diff --git a/app1.py b/app1.py new file mode 100644 index 0000000..cbc5ab6 --- /dev/null +++ b/app1.py @@ -0,0 +1,40 @@ +# Let's write your code here! +from flask import Flask, request + +app = Flask(__name__) + +@app.route("/") +def hello_world(): + return "Hello!" + +@app.route("/morning") +def good_morning(): + return "Good Morning" +@app.route("/evening/") +def evening(firstname): + return f"Good evening, {firstname} " + +@app.route("/greetings//") +def greetings(period_of_the_day,firstname): + return f"Good {period_of_the_day}, {firstname}" + +@app.route("/add//") +def add(first,second): + return str( first + second ) + +@app.route("/afternoon") +def good_afternoon(): + firstname = request.args.get("firstname", "who are you") + other_param=int(request.args.get('second','0')) + other_param_2=int(request.args.get('third','0')) + return f"Good afternoon {firstname} - {other_param} - {other_param+other_param_2}!" + +@app.route("/substract") +def difference(): + first=int(request.args.get('first','0')) + second=int(request.args.get('second','0')) + return str(first-second) + +@app.route("/hello") +def hello_api(): + return{"message": "Hello!", "hey": "I'm an API!"} \ No newline at end of file diff --git a/app2.py b/app2.py new file mode 100644 index 0000000..19404f5 --- /dev/null +++ b/app2.py @@ -0,0 +1,162 @@ +# Let's write your code here! +from flask import Flask +from flask_basicauth import BasicAuth +from flask import abort +from flask import request +from flask_swagger_ui import get_swaggerui_blueprint +import math +import json +import pymysql +import os + + + +app = Flask(__name__) +app.config.from_file("flask_config.json", load=json.load) +auth = BasicAuth(app) + +swaggerui_blueprint = get_swaggerui_blueprint( + base_url='/docs', + api_url='/static/openapi.yaml',) +app.register_blueprint(swaggerui_blueprint) + +def remove_null_fields(obj): + return {k:v for k, v in obj.items() if v is not None} +@app.route("/movies/") +@auth.required +def movie(movie_id): + db_conn = pymysql.connect(host="localhost", + user="root", + password="warp4818", + database="bechdel", + cursorclass=pymysql.cursors.DictCursor) + with db_conn.cursor() as cursor: + cursor.execute("""SELECT + M.movieId, + M.originalTitle, + M.primaryTitle AS englishTitle, + B.rating AS bechdelScore, + M.runtimeMinutes, + M.startYear AS Year, + M.movieType, + M.isAdult + FROM Movies M + JOIN Bechdel B ON B.movieId = M.movieId + WHERE M.movieId=%s""" + , (movie_id, )) + movie = cursor.fetchone() + if not movie: + abort(404) + + movie = remove_null_fields(movie) + + + with db_conn.cursor() as cursor: + cursor.execute(" SELECT * FROM MoviesGenres WHERE movieId=%s", (movie_id, )) + genres=cursor.fetchall() + + movie['genres']=[g['genre'] for g in genres] + + with db_conn.cursor() as cursor: + cursor.execute("""SELECT + P.personId, + P.primaryName AS name, + P.birthYear, + P.deathYear, + MP.job, + MP.category AS role + FROM MoviesPeople MP + JOIN People P on P.personId = MP.personId + WHERE MP.movieId=%s""", (movie_id, )) + actors=cursor.fetchall() + + movie['actors']=[a['name'] for a in actors] + movie['actor'] = [remove_null_fields(p) for p in actors] + + + db_conn.close() + return movie + + +MAX_PAGE_SIZE = 100 + +@app.route("/movies") +def movies(): + page = int(request.args.get('page', 0)) + page_size = int(request.args.get('page_size', MAX_PAGE_SIZE)) + page_size = min(page_size, MAX_PAGE_SIZE) + + db_conn = pymysql.connect(host="localhost", user="root",password='warp4818' ,database="bechdel", + cursorclass=pymysql.cursors.DictCursor) + with db_conn.cursor() as cursor: + cursor.execute(""" + SELECT * FROM Movies + ORDER BY movieId + LIMIT %s + OFFSET %s + """, (page_size, page * page_size)) + movies = cursor.fetchall() + + with db_conn.cursor() as cursor: + cursor.execute("SELECT COUNT(*) AS total FROM Movies") + total = cursor.fetchone() + last_page = math.ceil(total['total'] / page_size) + + db_conn.close() + return { + 'movies': movies, + 'next_page': f'/movies?page={page+1}&page_size={page_size}', + 'last_page': f'/movies?page={last_page}&page_size={page_size}', + } + +@app.route("/people/") +def people(person_id): + db_conn = pymysql.connect(host="localhost", + user="root", + password="warp4818", + database="bechdel", + cursorclass=pymysql.cursors.DictCursor) + with db_conn.cursor() as cursor: + cursor.execute(""" select * from bechdel.People p where p.personId=%s """,(person_id,)) + people=cursor.fetchone() + + return people + +@app.route("/people") +def peoples(): + page = int(request.args.get('page', 0)) + page_size = int(request.args.get('page_size', MAX_PAGE_SIZE)) + page_size = min(page_size, MAX_PAGE_SIZE) + + db_conn = pymysql.connect(host="localhost", user="root",password='warp4818' ,database="bechdel", + cursorclass=pymysql.cursors.DictCursor) + with db_conn.cursor() as cursor: + cursor.execute(""" + SELECT * FROM People p + ORDER BY p.personId + LIMIT %s + OFFSET %s + """, (page_size, page * page_size)) + movies = cursor.fetchall() + + with db_conn.cursor() as cursor: + cursor.execute("SELECT COUNT(*) AS total FROM People") + total = cursor.fetchone() + last_page = math.ceil(total['total'] / page_size) + + db_conn.close() + return { + 'People': movies, + 'next_page': f'/People?page={page+1}&page_size={page_size}', + 'last_page': f'/People?page={last_page}&page_size={page_size}', + } + + + + + +#select * +#from bechdel.MoviesPeople mp +#oin bechdel.people p on mp.personId=p.personId +#join bechdel.movies m on mp.movieId=m.movieId +#where mp.personId=%s \ No newline at end of file diff --git a/app3.py b/app3.py new file mode 100644 index 0000000..183d6ed --- /dev/null +++ b/app3.py @@ -0,0 +1,161 @@ +import json +import math +from collections import defaultdict +from flask import Flask, abort, request +from flask_basicauth import BasicAuth +from flask_swagger_ui import get_swaggerui_blueprint +import pymysql + +app = Flask(__name__) +app.config.from_file("flask_config.json", load=json.load) +auth = BasicAuth(app) + +swaggerui_blueprint = get_swaggerui_blueprint( + base_url='/docs', + api_url='/static/openapi.yaml', +) +app.register_blueprint(swaggerui_blueprint) + +MAX_PAGE_SIZE = 100 + +def remove_null_fields(obj): + return {k:v for k, v in obj.items() if v is not None} + +@app.route("/movies/") +@auth.required +def movie(movie_id): + db_conn = pymysql.connect(host="localhost", user="root", database="bechdel", + cursorclass=pymysql.cursors.DictCursor) + + with db_conn.cursor() as cursor: + cursor.execute(""" + SELECT + M.movieId, + M.originalTitle, + M.primaryTitle AS englishTitle, + B.rating AS bechdelScore, + M.runtimeMinutes, + M.startYear AS Year, + M.movieType, + M.isAdult + FROM Movies M + JOIN Bechdel B ON B.movieId = M.movieId + WHERE M.movieId=%s + """, (movie_id, )) + movie = cursor.fetchone() + if not movie: + abort(404) + movie = remove_null_fields(movie) + movie['bechdelTest'] = movie['bechdelScore'] == 3 + + with db_conn.cursor() as cursor: + cursor.execute("SELECT * FROM MoviesGenres WHERE movieId=%s", (movie_id, )) + genres = cursor.fetchall() + movie['genres'] = [g['genre'] for g in genres] + + with db_conn.cursor() as cursor: + cursor.execute(""" + SELECT + P.personId, + P.primaryName AS name, + P.birthYear, + P.deathYear, + MP.category AS role + FROM MoviesPeople MP + JOIN People P on P.personId = MP.personId + WHERE MP.movieId=%s + """, (movie_id, )) + people = cursor.fetchall() + movie['people'] = [remove_null_fields(p) for p in people] + + db_conn.close() + return movie + + +@app.route("/movies") +@auth.required +def movies(): + # URL parameters + page = int(request.args.get('page', 0)) + page_size = int(request.args.get('page_size', MAX_PAGE_SIZE)) + page_size = min(page_size, MAX_PAGE_SIZE) + include_details = bool(int(request.args.get('include_details', 0))) + + db_conn = pymysql.connect(host="localhost", user="root", database="bechdel", + cursorclass=pymysql.cursors.DictCursor) + # Get the movies + with db_conn.cursor() as cursor: + cursor.execute(""" + SELECT + M.movieId, + M.originalTitle, + M.primaryTitle AS englishTitle, + B.rating AS bechdelScore, + M.runtimeMinutes, + M.startYear AS year, + M.movieType, + M.isAdult + FROM Movies M + JOIN Bechdel B ON B.movieId = M.movieId + ORDER BY movieId + LIMIT %s + OFFSET %s + """, (page_size, page * page_size)) + movies = cursor.fetchall() + movie_ids = [mov['movieId'] for mov in movies] + + if include_details: + # Get genres + with db_conn.cursor() as cursor: + placeholder = ','.join(['%s'] * len(movie_ids)) + cursor.execute(f"SELECT * FROM MoviesGenres WHERE movieId IN ({placeholder})", + movie_ids) + genres = cursor.fetchall() + genres_dict = defaultdict(list) + for obj in genres: + genres_dict[obj['movieId']].append(obj['genre']) + + # Get people + with db_conn.cursor() as cursor: + placeholder = ','.join(['%s'] * len(movie_ids)) + cursor.execute(f""" + SELECT + MP.movieId, + P.personId, + P.primaryName AS name, + P.birthYear, + P.deathYear, + MP.category AS role + FROM MoviesPeople MP + JOIN People P on P.personId = MP.personId + WHERE movieId IN ({placeholder}) + """, movie_ids) + people = cursor.fetchall() + people_dict = defaultdict(list) + for obj in people: + movieId = obj['movieId'] + del obj['movieId'] + people_dict[movieId].append(obj) + + # Merge genres and people into movies + for movie in movies: + movieId = movie['movieId'] + movie['genres'] = genres_dict[movieId] + movie['people'] = people_dict[movieId] + + # Get the total movies count + with db_conn.cursor() as cursor: + cursor.execute("SELECT COUNT(*) AS total FROM Movies") + total = cursor.fetchone() + last_page = math.ceil(total['total'] / page_size) + + db_conn.close() + return { + 'movies': movies, + 'next_page': f'/movies?page={page+1}&page_size={page_size}&include_details={int(include_details)}', + 'last_page': f'/movies?page={last_page}&page_size={page_size}&include_details={int(include_details)}', + } + + + + diff --git a/appX.py b/appX.py new file mode 100644 index 0000000..906b783 --- /dev/null +++ b/appX.py @@ -0,0 +1,362 @@ +# Let's write your code here! +from flask import Flask, abort, request +from flask_basicauth import BasicAuth +from flask_swagger_ui import get_swaggerui_blueprint +from collections import defaultdict +import json +import pymysql +import os +import math + + + +app = Flask(__name__) +app.config.from_file("flask_config.json", load=json.load) +auth = BasicAuth(app) + +swaggerui_blueprint = get_swaggerui_blueprint( + base_url='/docs', + api_url='/static/openapi.yaml', +) +app.register_blueprint(swaggerui_blueprint) + +MAX_PAGE_SIZE = 100 + +def remove_null_fields(obj): + return {k:v for k, v in obj.items() if v is not None} + +@app.route("/movies/") +@auth.required + +def movie(movie_id): + db_conn = pymysql.connect(host="localhost", + user="root", + password= "warp4818", + database="bechdel", + cursorclass=pymysql.cursors.DictCursor) + with db_conn.cursor() as cursor: + + cursor.execute("""SELECT + M.movieId, + M.originalTitle, + M.primaryTitle AS englishTitle, + B.rating AS bechdelScore, + M.runtimeMinutes, + M.startYear AS Year, + M.movieType, + M.isAdult + FROM Movies M + JOIN Bechdel B ON B.movieId = M.movieId + WHERE M.movieId=%s""", + (movie_id, )) + movie = cursor.fetchone() + if not movie: + abort(404, description="Movie not found") + movie = remove_null_fields(movie) + + with db_conn.cursor() as cursor: + cursor.execute("SELECT * FROM MoviesGenres WHERE movieId=%s", (movie_id, )) + genres = cursor.fetchall() + movie['genres'] = [g['genre'] for g in genres] + + with db_conn.cursor() as cursor: + cursor.execute(""" + SELECT + P.personId, + P.primaryName AS name, + P.birthYear, + P.deathYear, + MP.job, + MP.category AS role + FROM MoviesPeople MP + INNER JOIN People P on P.personId = MP.personId + WHERE MP.movieId=%s + """, (movie_id, )) + people = cursor.fetchall() + movie['people'] = [remove_null_fields(p) for p in people] + + + db_conn.close() + return movie + +@app.route("/movies") +@auth.required +def movies(): + #URL Parameters + page = int(request.args.get('page', 0)) + page_size = int(request.args.get('page_size', MAX_PAGE_SIZE)) + page_size = min(page_size, MAX_PAGE_SIZE) + include_details = bool(int(request.args.get('include_details',0))) + + filters = [] + params = [] + + # Filtering + originalTitle = request.args.get('originalTitle') + if originalTitle: + filters.append("originalTitle LIKE %s") + params.append(f"%{originalTitle}%") + + year = request.args.get('year') + if year: + filters.append("startYear = %s") + params.append(year) + + filter_query = " AND ".join(filters) + if filter_query: + filter_query = "WHERE " + filter_query + + + db_conn = pymysql.connect(host="localhost", user="root", password= "warp4818",database="bechdel", + cursorclass=pymysql.cursors.DictCursor) + with db_conn.cursor() as cursor: + cursor.execute(f""" + SELECT M.movieId, + M.originalTitle, + M.primaryTitle AS englishTitle, + B.rating AS bechdelScore, + M.runtimeMinutes, + M.startYear AS year, + M.movieType, + M.isAdult + FROM Movies M + JOIN Bechdel B ON B.movieId = M.movieId + {filter_query} + ORDER BY movieId + LIMIT %s + OFFSET %s + """, (*params, page_size, page * page_size)) + movies = cursor.fetchall() + movie_ids = [mov['movieId'] for mov in movies] + + if include_details: + # Get genres + with db_conn.cursor() as cursor: + placeholder = ','.join(['%s'] * len(movie_ids)) + cursor.execute(f"SELECT * FROM MoviesGenres WHERE movieId IN ({placeholder})", + movie_ids) + genres = cursor.fetchall() + genres_dict = defaultdict(list) + for obj in genres: + genres_dict[obj['movieId']].append(obj['genre']) + + # Get people + with db_conn.cursor() as cursor: + placeholder = ','.join(['%s'] * len(movie_ids)) + cursor.execute(f""" + SELECT + MP.movieId, + P.personId, + P.primaryName AS name, + P.birthYear, + P.deathYear, + MP.category AS role + FROM MoviesPeople MP + JOIN People P on P.personId = MP.personId + WHERE movieId IN ({placeholder}) + """, movie_ids) + people = cursor.fetchall() + people_dict = defaultdict(list) + for obj in people: + movieId = obj['movieId'] + del obj['movieId'] + people_dict[movieId].append(obj) + + # Merge genres and people into movies + for movie in movies: + movieId = movie['movieId'] + movie['genres'] = genres_dict[movieId] + movie['people'] = people_dict[movieId] + + + with db_conn.cursor() as cursor: + cursor.execute("SELECT COUNT(*) AS total FROM Movies") + total = cursor.fetchone() + last_page = math.ceil(total['total'] / page_size) + + db_conn.close() + return { + 'movies': movies, + 'next_page': f'/movies?page={page+1}&page_size={page_size}', + 'last_page': f'/movies?page={last_page}&page_size={page_size}', + } + +@app.route("/peoples") +def peoples(): + page = int(request.args.get('page', 0)) + page_size = int(request.args.get('page_size', MAX_PAGE_SIZE)) + page_size = min(page_size, MAX_PAGE_SIZE) + include_details = bool(int(request.args.get('include_details',0))) + filters = [] + params = [] + + # Filtering + primaryName = request.args.get('primaryName') + if primaryName: + filters.append("primaryName LIKE %s") + params.append(f"%{primaryName}%") + + birthYear = request.args.get('birthYear') + if birthYear: + filters.append("birthYear = %s") + params.append(birthYear) + + filter_query = " AND ".join(filters) + if filter_query: + filter_query = "WHERE " + filter_query + + + db_conn = pymysql.connect(host="localhost", user="root", password= "warp4818",database="bechdel", + cursorclass=pymysql.cursors.DictCursor) + with db_conn.cursor() as cursor: + cursor.execute(f""" + SELECT * FROM People + {filter_query} + ORDER BY personId + LIMIT %s + OFFSET %s + """, (*params, page_size, page * page_size)) + peoples = cursor.fetchall() + person_ids = [pers['personId'] for pers in peoples] +## + if include_details: + # Get role + with db_conn.cursor() as cursor: + placeholder = ','.join(['%s'] * len(person_ids)) + cursor.execute(f"SELECT * FROM MoviesPeople WHERE personId IN ({placeholder})", + person_ids) + role = cursor.fetchall() + role_dict = defaultdict(list) + for obj in role: + role_dict[obj['personId']].append(obj['category']) + + # Get people + with db_conn.cursor() as cursor: + placeholder = ','.join(['%s'] * len(person_ids)) + cursor.execute(f""" + SELECT + MP.movieId, + P.personId, + P.primaryName AS name, + P.birthYear, + P.deathYear, + MP.category AS role + FROM MoviesPeople MP + JOIN People P on P.personId = MP.personId + WHERE P.personId IN ({placeholder}) + """, person_ids) + people2 = cursor.fetchall() + people_dict = defaultdict(list) + for obj in people2: + personId = obj['personId'] + del obj['personId'] + people_dict[personId].append(obj) + + # Merge genres and people into movies + for people in peoples: + personId = people['personId'] + people['category'] = role_dict[personId] + people['people'] = people_dict[personId] +## + with db_conn.cursor() as cursor: + cursor.execute("SELECT COUNT(*) AS total FROM People") + total = cursor.fetchone() + last_page = math.ceil(total['total'] / page_size) + + db_conn.close() + return { + 'peoples': peoples, + 'next_page': f'/peoples?page={page+1}&page_size={page_size}', + 'last_page': f'/peoples?page={last_page}&page_size={page_size}', + } + +@app.route("/peoples/") +@auth.required + +def people(personId): + db_conn = pymysql.connect(host="localhost", + user="root", + password="warp4818", + database="bechdel", + cursorclass=pymysql.cursors.DictCursor) + with db_conn.cursor() as cursor: + + cursor.execute("""SELECT * + FROM people M + WHERE personId=%s""", + (personId, )) + + people = cursor.fetchone() + if not people: + abort(404) + people = remove_null_fields(people) + + with db_conn.cursor() as cursor: + cursor.execute("""SELECT + mp.category AS role, + mp.characters, + m.originalTitle + FROM people p + INNER JOIN moviespeople mp ON p.personId = mp.personId + JOIN movies m on m.movieId = mp.movieId + WHERE p.personId=%s""", + (personId, )) + genres = cursor.fetchall() + people['characters'] = [g['characters'] for g in genres] + people['originalTitle '] = [g['originalTitle'] for g in genres] + + db_conn.close() + return people + +#new route POST +@app.route("/movies/", methods=["POST"]) +def post_movie(movie_id): + db_conn = pymysql.connect(host="localhost", + user="root", + password= "warp4818", + database="bechdel", + cursorclass=pymysql.cursors.DictCursor) + with db_conn.cursor() as cursor: + + cursor.execute("""SELECT + M.movieId, + M.originalTitle, + M.primaryTitle AS englishTitle, + B.rating AS bechdelScore, + M.runtimeMinutes, + M.startYear AS Year, + M.movieType, + M.isAdult + FROM Movies M + JOIN Bechdel B ON B.movieId = M.movieId + WHERE M.movieId=%s""", + (movie_id, )) + movie = cursor.fetchone() + if not movie: + abort(404, description="Movie not found") + movie = remove_null_fields(movie) + + with db_conn.cursor() as cursor: + cursor.execute("SELECT * FROM MoviesGenres WHERE movieId=%s", (movie_id, )) + genres = cursor.fetchall() + movie['genres'] = [g['genre'] for g in genres] + + with db_conn.cursor() as cursor: + cursor.execute(""" + SELECT + P.personId, + P.primaryName AS name, + P.birthYear, + P.deathYear, + MP.job, + MP.category AS role + FROM MoviesPeople MP + INNER JOIN People P on P.personId = MP.personId + WHERE MP.movieId=%s + """, (movie_id, )) + people = cursor.fetchall() + movie['people'] = [remove_null_fields(p) for p in people] + + + db_conn.close() + return movie diff --git a/bechdel.sql b/bechdel.sql new file mode 100644 index 0000000..8c97ea8 --- /dev/null +++ b/bechdel.sql @@ -0,0 +1,171 @@ +-- MySQL dump 10.13 Distrib 8.0.33, for macos13.3 (arm64) +-- +-- Host: localhost Database: bechdel +-- ------------------------------------------------------ +-- Server version 8.0.33 + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!50503 SET NAMES utf8mb4 */; +/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; +/*!40103 SET TIME_ZONE='+00:00' */; +/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; +/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; + +-- +-- Table structure for table `Bechdel` +-- + +DROP TABLE IF EXISTS `Bechdel`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `Bechdel` ( + `movieId` bigint DEFAULT NULL, + `rating` bigint DEFAULT NULL, + KEY `ix_Bechdel_movieId` (`movieId`), + CONSTRAINT `FK_Bechdel_movieId` FOREIGN KEY (`movieId`) REFERENCES `Movies` (`movieId`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `Bechdel` +-- + +LOCK TABLES `Bechdel` WRITE; +/*!40000 ALTER TABLE `Bechdel` DISABLE KEYS */; +INSERT INTO `Bechdel` VALUES (3155794,0),(14495706,0),(2221420,0),(12592084,0),(7816420,0),(5459794,0),(8588366,0),(2075247,0),(8133192,0),(7411790,0),(7541160,0),(7754902,0),(8361552,0),(392728,0),(1758563,0),(343112,0),(3274100,0),(2116853,0),(466876,0),(2116898,0),(361921,0),(416046,0),(1202028,0),(416047,0),(5285442,0),(2116968,0),(241373,0),(241715,0),(241763,0),(241393,0),(241392,0),(241394,0),(241735,0),(3201916,0),(3508566,0),(5447082,0),(3,0),(4,0),(2,0),(241446,0),(234520,0),(242148,0),(241266,0),(5,0),(229217,0),(15,0),(229235,0),(309396,0),(309402,0),(1,0),(8,0),(177707,0),(6,0),(7,0),(2049440,0),(312728,0),(256782,0),(203646,0),(277115,0),(2161519,0),(2161521,0),(413219,0),(9,0),(14,0),(132134,0),(11,1),(154152,0),(17,0),(29,1),(477266,0),(22,0),(16,0),(91,0),(131,0),(223341,0),(12,0),(1428455,0),(1672718,0),(1736599,0),(222137,0),(41,0),(135696,0),(211,0),(224240,0),(246,0),(230,3),(291476,0),(300,0),(304,0),(272,0),(257654,0),(306,0),(135453,0),(377995,0),(230746,0),(313,0),(227438,0),(359,0),(258104,0),(131934,0),(417,0),(229024,0),(367177,0),(413,0),(439,0),(135180,0),(455,0),(223755,0),(189498,0),(215664,0),(135179,0),(135631,0),(499,0),(135690,0),(215575,0),(574,1),(216016,0),(554,0),(135122,0),(567,0),(449172,0),(1260944,0),(215737,0),(215817,0),(1802750,0),(1009,2),(127948,0),(277596,1),(232821,3),(486978,0),(1515725,0),(2101,2),(2281,0),(277865,0),(3512,0),(3424,0),(3973,2),(4972,2),(6745,3),(279914,3),(7507,0),(6864,0),(7361,3),(8652,3),(8499,3),(8443,3),(8519,0),(8489,2),(9682,3),(9652,3),(8844,0),(10281,3),(10879,3),(9968,0),(10323,0),(11588,3),(11870,3),(12532,3),(12349,0),(11979,3),(12364,2),(13442,2),(13496,2),(13428,2),(13367,1),(13257,3),(12543,0),(13427,1),(13140,3),(13086,3),(14429,0),(14611,0),(14469,2),(13626,3),(14341,0),(14624,2),(15175,2),(15174,2),(15400,0),(15498,0),(15163,0),(15324,0),(14945,0),(15116,3),(1764657,0),(13845,0),(15881,3),(16220,2),(15648,0),(15864,0),(15863,0),(15841,0),(16332,0),(16039,2),(15624,2),(15361,0),(17449,1),(16884,1),(17925,0),(16895,0),(17410,3),(15532,1),(18033,3),(17136,1),(18192,2),(18528,0),(18455,2),(18051,0),(18199,0),(18183,3),(18578,1),(18037,1),(17825,1),(19254,0),(19412,0),(18773,0),(18742,0),(19421,0),(19304,0),(18684,0),(19290,1),(18937,0),(19258,3),(19571,2),(19130,2),(18806,1),(18839,2),(19237,2),(20530,0),(19777,2),(20572,0),(18737,3),(19760,0),(19702,2),(20286,0),(21015,3),(19729,3),(20697,1),(20629,0),(20641,3),(21040,3),(21577,0),(21156,1),(21148,3),(20670,2),(20668,3),(21165,3),(20640,3),(22100,3),(22183,3),(22208,3),(21884,1),(20642,3),(23196,3),(22458,0),(22000,3),(22054,0),(22251,0),(21814,2),(22158,1),(21749,3),(22074,2),(21735,3),(22286,3),(21739,3),(22599,1),(21079,1),(22395,3),(23395,2),(21815,3),(21746,3),(21985,1),(22397,3),(21730,1),(23042,1),(22958,3),(22614,2),(23027,1),(23694,0),(22718,1),(23634,1),(23238,0),(22913,2),(24188,1),(23293,3),(23213,3),(22940,2),(23649,3),(23458,3),(23590,3),(23158,2),(23427,1),(23385,3),(23935,1),(23582,3),(22694,1),(23285,0),(23814,3),(24028,3),(24481,3),(24473,1),(24216,0),(24264,3),(23753,3),(24727,3),(24034,3),(23932,3),(23969,1),(24679,3),(24069,3),(24008,3),(24625,3),(24432,0),(24184,1),(23775,3),(23940,1),(23876,3),(24210,1),(24548,2),(24601,3),(25316,3),(24961,1),(25746,3),(25617,1),(25004,1),(24991,1),(25586,1),(24844,0),(25423,0),(25822,3),(25465,3),(24831,3),(25424,2),(25755,3),(25091,3),(25452,3),(25301,3),(25543,0),(25318,3),(27125,2),(26029,3),(26071,2),(26752,1),(26768,3),(26942,3),(26667,3),(26778,1),(26138,3),(26599,2),(26939,2),(26663,2),(28333,1),(27977,0),(27438,1),(28216,1),(28505,2),(28096,3),(27996,3),(27387,3),(28174,0),(27562,1),(28021,3),(28355,3),(27698,3),(29207,3),(27752,3),(28683,3),(28092,3),(28203,3),(27407,3),(28010,2),(28212,3),(27652,2),(28000,3),(3427056,0),(28356,2),(28231,3),(27545,3),(29546,1),(29604,3),(29608,3),(28739,2),(29682,2),(29162,2),(29442,1),(29087,2),(29377,2),(29583,3),(28772,2),(29322,0),(29192,3),(29565,1),(29453,2),(28597,3),(29811,3),(29217,3),(27552,3),(29146,1),(29751,3),(28691,0),(29971,2),(30341,3),(30241,3),(30044,0),(30287,2),(30755,2),(29942,0),(30473,1),(29843,2),(29929,2),(29947,3),(30149,3),(30396,3),(30127,1),(29870,1),(32138,3),(31381,3),(31235,2),(32143,3),(31971,3),(32145,2),(31385,2),(31725,3),(31516,2),(31210,3),(31826,2),(32155,2),(31507,2),(31252,2),(31981,2),(31322,0),(31455,0),(31060,2),(31387,3),(31680,1),(31742,1),(31885,3),(31066,3),(31225,3),(31709,3),(31022,3),(31679,2),(31505,3),(31514,2),(31397,0),(31593,3),(31398,0),(31762,2),(32910,1),(32976,3),(33152,0),(32811,3),(32349,2),(32273,1),(33105,0),(32983,0),(32194,2),(32701,2),(32551,3),(32339,0),(32215,3),(33021,1),(32599,3),(33028,3),(32553,3),(32943,3),(32946,3),(32406,2),(32376,3),(32904,3),(32455,0),(32211,3),(31359,3),(32690,3),(32484,1),(33045,3),(32676,1),(34328,2),(34175,3),(33870,1),(33467,1),(33563,2),(33836,2),(33804,2),(33533,3),(33727,1),(33717,1),(34398,2),(33459,3),(33902,1),(33627,0),(33436,3),(33723,3),(33891,3),(34240,3),(33928,3),(33802,1),(34248,3),(34241,0),(33729,3),(34091,3),(33787,3),(33373,2),(35019,3),(35140,3),(34583,1),(35015,2),(34492,1),(35360,1),(34746,3),(34882,3),(34587,3),(34521,0),(34591,0),(35415,2),(33874,3),(35567,3),(35446,0),(35317,1),(35279,1),(35093,3),(36326,0),(34613,1),(34770,3),(36230,3),(36515,3),(35942,1),(36027,3),(36363,1),(36323,0),(35957,0),(36418,3),(36506,3),(36112,2),(35753,3),(36342,3),(36400,0),(35770,3),(35881,0),(36244,1),(36367,3),(36969,3),(36172,1),(35017,1),(35636,3),(36341,3),(35735,3),(35160,1),(36160,3),(35979,3),(36613,3),(36775,3),(37094,2),(37059,3),(36891,2),(36914,0),(37469,1),(37008,3),(36723,3),(37280,3),(37382,3),(36940,3),(37120,3),(36947,3),(37017,3),(38166,0),(37076,1),(36695,3),(37415,3),(36818,1),(37913,3),(37800,3),(38924,3),(37558,3),(37508,0),(37820,3),(37671,3),(37954,0),(37884,2),(37638,1),(38109,3),(38890,3),(38057,3),(37674,2),(37843,3),(38259,3),(37514,0),(37365,2),(38017,1),(37635,3),(37630,3),(38250,3),(37865,3),(37614,3),(37536,3),(38787,2),(38589,3),(38355,1),(38854,1),(38733,0),(38348,3),(38461,0),(38474,3),(39054,3),(38650,3),(38661,1),(38559,0),(38990,3),(38762,1),(36868,2),(38494,3),(38499,2),(38409,1),(38969,2),(39017,1),(38453,1),(38991,3),(38718,1),(39112,3),(38574,2),(38934,3),(39192,3),(39360,1),(39677,2),(39431,2),(39819,3),(39349,3),(39694,2),(39420,3),(39441,2),(39286,2),(39236,2),(39689,2),(39650,3),(39404,1),(39204,3),(39324,3),(39938,3),(40525,0),(39628,3),(39416,1),(39969,3),(39302,2),(39631,3),(40724,0),(40725,3),(40416,1),(40183,2),(40321,3),(40098,2),(40242,0),(156031,0),(40308,3),(40746,0),(40806,3),(40214,1),(40379,1),(40613,3),(40897,0),(40458,3),(41088,2),(40202,1),(40491,3),(40522,2),(40580,1),(40558,1),(39949,0),(40068,3),(40636,1),(40506,3),(39220,3),(189219,3),(41959,0),(41158,3),(41716,3),(41090,3),(41746,3),(40221,3),(41859,0),(41594,3),(41650,0),(41628,2),(41154,3),(41587,3),(41546,1),(41386,1),(41452,3),(41498,2),(41094,0),(42004,3),(41113,1),(41947,0),(40497,0),(42031,3),(41373,3),(41257,3),(42192,3),(43014,3),(42332,3),(42876,0),(43012,3),(42208,1),(42546,2),(41719,2),(42276,3),(42469,1),(42593,2),(43871,3),(42792,3),(42369,1),(42994,3),(42958,3),(42436,3),(43045,3),(43025,0),(42296,3),(42832,0),(42530,3),(43137,1),(43338,2),(44079,2),(43274,3),(43265,0),(43456,3),(44081,3),(44030,3),(42619,1),(43278,1),(43313,3),(44121,1),(43332,3),(44100,3),(43949,3),(43390,3),(44205,3),(43614,3),(44092,3),(43695,1),(45152,3),(43769,2),(44419,0),(44855,3),(44706,2),(45061,1),(44502,3),(43686,3),(44837,1),(45162,1),(44741,1),(44391,2),(43511,3),(44672,2),(45220,0),(215033,2),(45197,3),(44446,3),(44760,2),(45943,1),(46183,3),(46268,1),(46250,3),(46085,2),(46438,3),(45537,1),(46359,0),(46534,1),(45591,3),(45810,3),(45659,3),(46076,3),(46269,3),(46303,1),(46066,1),(45793,3),(45877,0),(45897,1),(45555,3),(45891,3),(45758,0),(46187,3),(46487,3),(46478,2),(46345,3),(45826,0),(47677,1),(45546,1),(45911,0),(45464,0),(45920,2),(46022,3),(45888,3),(46404,1),(45609,3),(46031,3),(47349,2),(46451,1),(47472,3),(47673,3),(47136,2),(47296,0),(46672,0),(47396,3),(47573,1),(47437,3),(47094,3),(47152,1),(46912,0),(47478,0),(47522,1),(46963,2),(46511,3),(47030,2),(47580,3),(46750,3),(46876,0),(46731,2),(47443,3),(47034,1),(47834,0),(47638,3),(45665,3),(46705,1),(46828,3),(47238,3),(47127,3),(46816,1),(47469,1),(48728,3),(48424,3),(48280,2),(47969,3),(48641,2),(48281,3),(48140,3),(46911,3),(46889,1),(48545,1),(46969,3),(47878,2),(48021,1),(48801,3),(47898,3),(48696,0),(48356,3),(48445,3),(48605,1),(48673,3),(48254,1),(48473,3),(48127,2),(47577,0),(48124,3),(48401,3),(48512,0),(48750,2),(48517,3),(48133,3),(48432,2),(47821,3),(47811,3),(48308,3),(47849,0),(49674,3),(48103,3),(49730,3),(49787,2),(48977,3),(49408,2),(49369,1),(51207,1),(49223,0),(49287,3),(49366,3),(49096,2),(49934,3),(49010,0),(49833,2),(49189,3),(48960,0),(49640,3),(49363,1),(49038,3),(49406,1),(48956,3),(49902,0),(49782,1),(49471,3),(49314,3),(49043,3),(49470,2),(49537,3),(49904,1),(49196,3),(49762,3),(48981,2),(49293,1),(49095,3),(48967,3),(48973,3),(49019,3),(49452,2),(49483,3),(50083,0),(51114,2),(50307,3),(50634,3),(50539,0),(50825,0),(50798,1),(51077,0),(50419,3),(50783,3),(50585,1),(50356,0),(50976,1),(50766,3),(51036,1),(50397,0),(50490,0),(50986,2),(50933,2),(51051,3),(50212,1),(50861,3),(50105,2),(50792,1),(50371,1),(50998,3),(51201,1),(50251,3),(50599,2),(50407,2),(50613,0),(50116,3),(51151,3),(50549,3),(50610,0),(50421,3),(51133,2),(50470,2),(52357,1),(51964,3),(52374,0),(52365,2),(52151,0),(52278,1),(51622,2),(51951,1),(51554,3),(52394,3),(52169,2),(50706,3),(52311,1),(51658,2),(51525,0),(51383,3),(52182,3),(52225,3),(51773,3),(51755,1),(51776,3),(51459,3),(51579,3),(51422,0),(51808,0),(51786,1),(52017,3),(51758,3),(51911,3),(52218,2),(51608,2),(51818,1),(50193,3),(53198,0),(53285,3),(52618,3),(52948,1),(53131,3),(52722,3),(53291,3),(52918,3),(53125,1),(53318,3),(52846,3),(51372,3),(53363,1),(53428,3),(53134,3),(52861,1),(52844,3),(52655,2),(52561,1),(51744,3),(54462,3),(52602,3),(52847,3),(53388,1),(52572,0),(53221,1),(53172,3),(53454,0),(52077,1),(156843,1),(52654,3),(52595,3),(52600,1),(54469,2),(53459,3),(53472,0),(54047,0),(54331,2),(53946,3),(53604,3),(54215,3),(53804,3),(54022,2),(53579,3),(54333,3),(54248,2),(54067,3),(54377,1),(154683,3),(53719,3),(54494,3),(54049,3),(54452,3),(54343,3),(53976,3),(54476,3),(53779,2),(54749,3),(54167,2),(54407,0),(53677,3),(54389,2),(54279,1),(53732,3),(54198,2),(53250,1),(54387,0),(54460,1),(53666,3),(54017,0),(53619,3),(54483,2),(53848,2),(53825,1),(53902,2),(55630,1),(54743,3),(55294,0),(54698,2),(55207,0),(55571,3),(55254,3),(54847,1),(55184,3),(54997,0),(55256,3),(55614,3),(54673,0),(54692,3),(55278,3),(55471,3),(55506,3),(55277,3),(55353,3),(55458,3),(54130,3),(55198,0),(55572,0),(54953,1),(54777,3),(55082,3),(54599,3),(55499,0),(55018,3),(54879,3),(55093,2),(55047,3),(54700,3),(54885,2),(55621,2),(55623,3),(203040,3),(55032,1),(56111,1),(56172,0),(56687,3),(56193,3),(56592,3),(55894,3),(56218,1),(57427,1),(56262,3),(55830,3),(55852,3),(52646,2),(56048,3),(59616,0),(57239,3),(56119,0),(55902,2),(55910,3),(56575,2),(55928,1),(56241,3),(56142,3),(56059,3),(56194,3),(55805,2),(55728,3),(54949,0),(55832,1),(55763,1),(56671,3),(56663,3),(56197,0),(56452,1),(1180329,0),(56058,0),(56736,3),(56732,3),(56404,3),(56308,3),(55992,3),(56138,1),(56023,2),(143088,3),(56700,3),(57115,0),(57187,2),(57413,1),(56800,1),(56884,1),(56923,2),(57261,0),(57495,0),(56869,3),(56860,2),(56912,3),(57345,1),(56891,3),(57546,0),(336693,0),(57129,3),(57226,2),(57542,3),(56983,3),(57590,3),(57076,3),(57693,1),(57329,3),(57611,3),(57449,1),(58164,0),(56801,3),(56443,3),(57643,1),(57215,0),(57541,3),(57490,3),(56910,3),(57358,1),(57180,1),(57623,1),(57193,3),(56937,3),(57687,1),(58636,3),(57191,3),(57012,0),(58461,1),(58331,3),(58536,1),(58139,2),(58625,0),(57878,1),(58100,1),(57259,1),(58385,3),(58182,1),(57869,3),(57840,2),(58777,0),(57887,2),(58324,2),(58335,3),(58213,3),(58715,1),(58263,0),(58430,0),(58083,1),(58725,0),(58150,1),(57997,3),(58450,3),(58700,1),(58658,3),(59825,1),(58544,3),(57918,1),(58708,3),(58003,3),(58379,1),(58329,3),(58586,1),(57933,3),(58409,3),(58695,3),(58564,3),(58659,2),(57380,1),(58751,1),(58709,0),(58553,1),(57227,2),(58091,3),(58204,3),(58249,3),(58534,2),(58092,3),(59742,3),(59212,0),(59229,3),(59646,3),(59764,3),(59800,2),(59793,3),(59319,1),(58898,1),(59578,0),(59183,0),(59956,3),(59314,3),(59084,3),(59170,3),(59607,3),(59113,1),(58997,3),(59346,2),(59080,2),(59205,1),(59348,0),(59100,3),(58361,3),(58212,0),(59573,3),(59631,0),(59958,1),(59915,0),(59538,1),(59621,1),(59682,1),(58888,3),(59362,0),(59017,3),(58969,3),(57685,3),(56585,2),(59224,3),(60371,0),(60827,3),(58946,1),(60196,1),(60959,3),(60086,1),(61879,3),(61122,3),(60397,0),(60176,0),(60165,1),(60479,3),(61184,1),(60558,1),(60424,1),(59557,2),(59020,3),(60390,3),(60934,1),(60453,3),(60665,1),(60315,0),(60107,1),(60174,2),(60125,1),(60522,0),(61107,3),(60464,1),(62851,1),(62852,0),(62853,0),(60446,0),(60758,3),(64208,0),(60782,1),(60841,3),(59127,1),(61101,1),(60223,0),(60666,3),(60637,1),(60879,1),(61619,1),(61197,1),(61198,1),(246913,2),(60980,1),(60728,1),(61634,3),(60640,1),(60647,1),(60891,3),(59563,3),(60429,2),(61015,1),(61512,1),(61852,1),(61722,2),(63278,1),(61418,3),(62512,1),(62362,3),(61452,2),(61834,3),(61620,0),(61578,0),(62430,3),(61395,3),(61811,1),(61391,3),(62407,3),(62467,3),(61398,3),(61655,1),(62229,1),(61495,1),(62136,3),(62990,3),(61369,0),(62502,3),(61735,3),(62281,3),(61856,0),(62411,3),(61695,0),(61882,1),(62113,1),(62873,3),(61385,3),(62373,0),(61523,3),(61328,1),(61576,0),(62082,0),(62657,2),(61590,3),(62376,3),(62534,3),(61489,1),(61595,3),(62207,0),(61785,3),(63668,0),(63442,1),(62794,2),(63462,0),(63522,3),(62622,0),(65207,3),(63518,3),(63823,0),(63642,3),(63060,2),(62711,3),(64116,1),(63415,3),(63227,3),(63850,1),(63049,0),(61747,2),(63350,3),(62782,3),(62426,3),(61955,3),(62687,0),(62994,3),(63185,3),(63759,1),(63172,0),(63010,0),(63000,2),(62765,1),(63493,0),(63121,0),(62909,2),(62164,0),(62925,1),(130141,3),(65225,3),(62803,3),(63379,0),(63385,2),(63818,0),(62151,0),(62446,3),(63787,3),(63268,2),(63231,1),(63663,1),(63592,3),(63634,3),(66579,3),(64437,3),(65051,1),(64708,1),(64782,2),(64115,1),(64276,1),(65566,1),(64253,0),(64840,3),(64505,1),(64156,0),(64541,1),(65126,3),(64002,1),(64665,1),(64990,3),(64040,0),(64757,2),(64418,3),(64373,0),(65088,1),(63991,3),(65063,1),(65234,1),(64612,3),(64793,1),(64816,3),(64240,0),(62870,3),(65125,3),(64155,1),(64370,1),(64324,1),(65537,3),(64333,3),(65531,0),(65466,3),(65421,3),(66327,1),(64806,1),(65134,3),(66122,1),(66518,3),(65449,3),(65724,3),(66011,1),(188484,3),(66164,3),(65488,0),(67713,1),(65073,3),(65856,2),(65377,3),(66109,1),(65571,3),(65611,3),(64177,0),(65569,1),(65649,3),(66491,2),(66207,3),(65988,1),(66549,0),(65772,3),(66473,1),(64165,1),(65528,3),(66279,3),(67961,3),(67355,2),(66227,3),(66301,1),(66206,1),(65904,3),(64106,1),(65889,0),(67866,2),(66115,3),(66601,1),(65375,1),(67959,1),(67992,2),(66434,0),(66921,1),(66728,1),(67820,3),(249577,1),(66817,3),(66765,1),(67185,3),(67328,2),(67800,1),(67741,1),(67065,1),(67810,1),(67451,3),(67881,3),(67439,3),(67588,3),(67637,3),(67402,3),(67367,3),(67341,3),(67116,1),(66808,1),(67411,3),(67322,3),(67445,0),(66995,1),(66919,1),(67023,0),(67148,3),(67541,1),(67309,3),(65854,3),(66993,3),(67483,3),(66380,3),(67128,1),(66824,2),(66730,1),(67372,1),(67972,1),(68675,0),(67919,3),(67633,3),(67690,3),(67482,3),(67927,0),(67418,2),(66763,2),(68154,1),(67277,1),(66769,3),(67736,3),(68569,3),(66857,2),(69293,1),(69089,3),(69442,3),(201820,3),(68205,2),(69467,3),(67977,2),(68646,2),(68240,3),(68182,2),(69019,2),(68473,1),(68762,1),(68156,1),(69404,3),(68326,3),(68161,3),(69495,2),(68327,3),(70849,3),(69113,1),(70694,3),(69281,0),(244730,3),(68346,0),(66798,0),(70641,1),(68371,1),(69489,3),(68468,3),(68278,3),(68284,3),(68833,3),(68611,3),(70959,0),(68361,3),(68828,3),(68815,0),(68816,2),(143348,0),(68817,0),(70698,3),(67206,3),(68273,3),(69095,0),(68768,1),(68281,1),(227051,3),(68638,1),(70233,1),(69762,0),(69995,3),(70047,3),(70917,3),(69747,2),(68282,3),(70040,3),(70735,1),(70819,2),(70707,1),(70300,3),(70666,1),(70723,1),(71615,1),(70511,0),(70510,3),(70239,0),(69704,2),(70608,3),(70294,3),(68699,1),(69067,2),(70379,1),(70328,1),(69990,3),(70460,3),(68359,2),(68370,3),(70122,0),(158714,3),(69754,3),(70842,3),(68232,3),(69895,3),(69987,3),(70904,2),(70634,1),(70518,1),(70782,3),(70034,1),(70468,0),(70544,0),(70534,0),(74080,0),(69745,3),(66914,3),(126004,0),(70215,0),(72281,2),(70453,3),(70898,3),(70926,3),(71129,2),(71396,3),(69897,2),(69848,3),(69890,3),(71203,0),(71381,3),(71230,1),(72431,2),(70948,2),(69945,0),(71935,3),(71115,3),(71315,2),(71583,1),(72271,1),(71803,3),(71222,3),(71562,2),(71360,1),(72308,1),(74462,1),(71141,3),(71807,1),(71402,3),(71994,0),(72979,3),(71970,0),(71517,3),(72325,3),(71565,1),(71247,3),(72353,2),(71464,3),(72417,3),(70297,1),(71690,3),(71431,2),(70003,3),(72354,3),(72226,2),(71110,3),(71717,0),(71695,0),(69729,3),(69697,0),(71233,3),(72435,2),(71762,0),(73540,3),(73747,3),(73802,1),(73179,2),(73076,3),(73812,1),(73486,2),(73629,3),(72500,3),(71411,0),(71853,2),(72684,1),(73195,3),(71427,3),(71798,3),(73198,3),(72443,3),(72890,3),(73115,3),(73440,3),(72895,0),(72448,1),(73373,1),(72730,0),(73778,3),(73598,3),(72933,3),(73582,3),(73650,3),(73233,3),(73312,3),(73172,1),(72856,3),(73471,3),(73541,1),(73349,2),(72824,1),(73114,3),(72791,3),(73768,2),(72905,2),(73697,0),(285663,1),(74156,3),(74285,3),(75029,2),(74851,1),(75005,3),(74812,2),(74958,3),(75314,1),(75148,1),(75222,1),(72901,1),(74256,3),(75249,3),(75137,1),(74937,3),(75177,1),(74102,3),(74860,1),(75265,0),(74152,3),(74806,3),(75178,1),(74512,3),(75223,1),(74400,0),(74119,1),(73518,1),(75342,1),(74811,1),(75467,1),(74597,3),(75359,1),(74121,0),(74740,1),(131335,0),(74437,2),(74855,1),(74471,2),(76054,3),(73972,1),(75376,3),(76759,1),(76727,3),(76843,3),(76245,3),(76666,1),(76363,0),(76618,3),(75276,0),(75686,3),(76095,3),(76734,1),(76786,3),(75612,3),(76162,3),(76085,2),(75784,1),(75938,2),(75617,1),(74455,3),(75860,1),(76319,3),(76155,1),(74486,0),(76683,3),(76661,0),(76141,1),(74611,3),(76723,3),(75909,0),(76752,1),(77914,1),(77681,3),(75936,3),(76257,1),(76271,3),(76504,1),(76538,2),(76591,3),(75968,1),(75666,3),(75679,3),(75939,3),(78089,3),(76590,3),(74853,2),(76578,0),(77497,3),(74548,3),(76175,0),(77687,0),(75988,3),(77405,3),(77975,2),(76584,0),(77711,3),(77631,3),(193524,1),(78259,0),(77394,2),(77402,0),(77742,3),(78346,1),(78480,1),(77189,2),(77416,1),(77651,3),(77413,3),(77613,3),(78509,3),(77928,0),(76161,3),(77288,2),(306646,0),(77713,0),(78503,3),(78504,3),(77215,3),(77578,3),(77889,1),(77269,1),(77766,2),(79946,3),(77869,1),(77629,2),(78111,2),(77275,1),(77474,0),(77369,0),(77864,0),(76240,3),(78295,3),(78087,3),(77838,1),(78444,3),(78748,3),(79522,1),(80120,1),(79470,3),(79180,1),(78875,3),(79945,1),(78754,2),(78841,2),(79095,3),(79336,3),(78788,0),(78966,3),(79367,1),(79641,0),(79116,0),(79574,1),(79944,1),(79766,1),(78767,3),(79813,3),(77707,0),(79596,3),(80025,2),(79540,3),(78778,3),(78843,3),(79501,3),(79817,1),(79714,1),(78869,0),(79261,3),(79417,1),(80040,3),(79833,3),(79593,1),(79588,2),(79679,1),(79871,0),(78913,0),(79639,3),(79826,1),(79638,3),(78846,2),(80455,1),(80716,3),(80684,0),(79579,3),(80319,3),(80339,3),(81505,2),(81398,1),(80388,3),(81616,3),(81249,1),(76582,1),(80377,1),(81414,1),(78935,1),(80711,3),(80749,3),(81060,3),(81375,3),(81777,3),(80569,0),(81323,3),(80745,3),(81534,2),(80492,3),(81573,3),(80761,3),(80855,0),(80549,3),(80453,0),(81237,0),(81283,2),(80421,2),(80931,3),(80736,0),(79820,0),(81163,3),(81114,3),(121403,1),(81353,3),(82100,3),(80365,3),(80979,0),(79256,3),(80487,2),(82971,3),(82186,3),(82783,0),(82776,3),(82992,3),(83111,0),(82406,2),(82340,0),(82517,1),(82370,3),(83248,3),(82484,1),(82926,3),(82474,3),(82096,0),(82640,3),(82979,3),(81633,1),(82869,1),(82010,2),(82509,1),(82089,2),(82766,3),(83907,1),(82176,3),(82894,1),(82677,1),(82418,2),(82495,3),(83131,2),(84090,3),(82533,3),(82398,3),(83137,3),(82714,3),(82477,3),(82158,1),(82719,1),(82085,3),(82288,1),(82307,3),(82498,3),(82424,0),(83067,3),(82269,1),(82951,3),(82431,3),(82970,2),(82348,1),(83190,0),(82846,1),(82242,1),(81974,3),(82153,0),(81455,1),(83284,0),(82817,0),(82700,3),(82933,1),(82405,3),(277122,3),(84589,3),(83658,1),(82198,1),(82639,3),(83564,3),(84726,3),(84827,0),(84707,3),(83791,1),(84649,3),(84237,3),(83866,3),(85852,3),(84787,0),(83806,3),(85794,1),(83929,2),(83851,2),(84698,3),(83745,3),(83722,3),(84805,1),(84021,3),(83922,3),(84695,3),(83944,0),(83959,3),(84481,3),(84522,2),(85809,0),(83642,3),(83833,1),(84516,3),(83762,0),(83972,3),(82045,0),(83967,3),(83511,2),(84503,0),(84234,3),(83942,3),(84855,1),(84602,0),(84725,3),(84777,2),(84745,2),(84434,3),(83629,1),(4238858,1),(82748,1),(84335,3),(83908,3),(84637,2),(82334,3),(84865,3),(84783,2),(84352,1),(83686,3),(83987,2),(83824,2),(82911,1),(86340,3),(84917,3),(84690,2),(86312,3),(85333,1),(86190,1),(85478,3),(86465,1),(85701,3),(84390,3),(86618,1),(85276,0),(86216,2),(85482,3),(85496,3),(85859,1),(85267,3),(85838,3),(86567,1),(86541,2),(85549,3),(86393,3),(86425,1),(86425,3),(85601,0),(85894,1),(224005,3),(85672,3),(86250,1),(85407,1),(85334,1),(85933,0),(85811,1),(85936,1),(86034,2),(85959,1),(86543,1),(85750,3),(84358,3),(86104,1),(86066,2),(86619,3),(85382,3),(85218,3),(86373,1),(87127,1),(84904,3),(85231,3),(86589,3),(86200,3),(86510,1),(86394,1),(85250,3),(86551,2),(86542,3),(87332,2),(87363,1),(87078,3),(86992,3),(87544,3),(87928,3),(86879,3),(86856,3),(87884,1),(87469,0),(88461,3),(88170,1),(88247,3),(88128,3),(87538,3),(87182,3),(88258,1),(86960,0),(88206,3),(88146,0),(86739,3),(86973,3),(87644,3),(87799,3),(89838,3),(88161,1),(87781,1),(135033,3),(88323,1),(87800,3),(87957,3),(87995,2),(87814,1),(87951,3),(86837,1),(87597,3),(87755,3),(88286,0),(87892,3),(86984,2),(87298,3),(88075,3),(86979,1),(88000,1),(86904,0),(88172,0),(87050,3),(90192,1),(87843,1),(86927,3),(87507,3),(87344,0),(88117,3),(88040,3),(87910,1),(87451,2),(86955,2),(86896,3),(87981,1),(87913,1),(87803,1),(88011,3),(87472,3),(86873,2),(88001,3),(87015,2),(87681,1),(88459,1),(88379,0),(90009,1),(85486,3),(87481,0),(87075,3),(88763,2),(88847,3),(89393,3),(89893,3),(89748,3),(90305,3),(89822,1),(88683,3),(380761,2),(89208,3),(88846,3),(88727,3),(89960,3),(88939,3),(89886,1),(90319,1),(88930,3),(89457,0),(91867,3),(87150,3),(89017,3),(87433,0),(90203,3),(89155,1),(88814,3),(89092,0),(89126,0),(89371,1),(89881,1),(88748,0),(88944,1),(90310,3),(89908,3),(89218,3),(88794,3),(90065,1),(89015,3),(88915,3),(90110,3),(88993,0),(88680,2),(89469,3),(88885,3),(89066,1),(88771,3),(87909,3),(89276,3),(91578,2),(89853,3),(90103,3),(89173,3),(89885,0),(90056,1),(90329,3),(89470,3),(92048,1),(89175,2),(89686,3),(89755,3),(91251,0),(90264,1),(89869,0),(89424,2),(89880,0),(89052,3),(89927,2),(208502,0),(89153,3),(89206,0),(199849,2),(5739786,1),(89108,3),(89308,2),(2292794,0),(137226,2),(89791,1),(88167,0),(89461,3),(90142,2),(89767,2),(471287,3),(155180,2),(89077,1),(89606,1),(89730,3),(91949,3),(91042,3),(91369,3),(90605,3),(92067,3),(91777,1),(92005,0),(91167,3),(91203,2),(91341,0),(90848,3),(92099,2),(91306,3),(91419,1),(91738,3),(90728,3),(91541,2),(90660,1),(90633,3),(92007,3),(91993,3),(90756,1),(90315,0),(91064,2),(97050,1),(90556,3),(90967,1),(91794,3),(91763,0),(90555,3),(91149,1),(92106,0),(91790,3),(89297,3),(91059,3),(91721,3),(90685,1),(91877,3),(91225,3),(91499,2),(89118,1),(90667,0),(90793,1),(92086,2),(91869,3),(91474,1),(90805,0),(90952,3),(91326,1),(90830,3),(90655,3),(91530,0),(91083,3),(91605,0),(91472,2),(91495,3),(91093,0),(91757,0),(90887,2),(90837,3),(90917,2),(179955,1),(91355,2),(91939,3),(92133,3),(92263,0),(90583,3),(90859,1),(91278,1),(90927,1),(89695,0),(89010,0),(91080,3),(92076,0),(90563,2),(91065,3),(91217,1),(93105,1),(92890,3),(93779,2),(93870,1),(93756,1),(93058,0),(92603,3),(93225,3),(93693,3),(93409,1),(94012,3),(93940,3),(94315,3),(92644,1),(92581,3),(94336,1),(90570,3),(93773,0),(93223,3),(95801,3),(93239,3),(93191,0),(94332,3),(93146,3),(93818,1),(92563,1),(92605,3),(93512,2),(95305,3),(93011,2),(93565,3),(93748,1),(93437,1),(93389,3),(313254,3),(93177,3),(93617,3),(93777,3),(93822,3),(92752,3),(93615,3),(92991,3),(93690,3),(94074,3),(93075,2),(90738,3),(92925,3),(93010,3),(93415,3),(94089,0),(93144,3),(92699,3),(92965,1),(93220,3),(93629,3),(94286,3),(92593,1),(92796,3),(93300,3),(94137,1),(93209,3),(92610,0),(92513,3),(92693,3),(93412,3),(92972,1),(93936,1),(93894,3),(93589,2),(94357,0),(92718,3),(92860,3),(97991,1),(93507,3),(94142,1),(92546,2),(92962,0),(92730,2),(93640,1),(93991,3),(93342,0),(93493,1),(94226,1),(96438,1),(94898,3),(96283,3),(96320,3),(95882,1),(95016,3),(94721,3),(96446,3),(95583,3),(97493,3),(95690,3),(96463,3),(96256,0),(95776,2),(92675,1),(94947,3),(96523,3),(95889,3),(95705,1),(95444,0),(95159,3),(95631,2),(94625,1),(95675,3),(95270,3),(96037,3),(94715,3),(94608,3),(94739,3),(95145,3),(94612,1),(94631,1),(95489,3),(95037,3),(96289,1),(189071,3),(95953,1),(95593,3),(94668,3),(96487,1),(96001,3),(96324,3),(94964,2),(94862,3),(95687,3),(96465,3),(93171,3),(96061,3),(94921,3),(95765,1),(95497,2),(330312,0),(96176,3),(95294,1),(94737,1),(94663,3),(94824,3),(96764,1),(95327,0),(96163,1),(95742,3),(96461,0),(95925,3),(94606,2),(93840,2),(94919,3),(97257,2),(95484,1),(95243,3),(94812,2),(97561,0),(95800,0),(95956,0),(95250,2),(96378,1),(224412,3),(95088,3),(94588,0),(96114,3),(95094,3),(98180,0),(94791,0),(94027,1),(95031,1),(93371,3),(95253,3),(92493,2),(94868,3),(92559,3),(93952,3),(96874,3),(98554,3),(98635,3),(98189,1),(98206,1),(98105,1),(97940,3),(97757,3),(97814,3),(97336,1),(98519,3),(98384,3),(96895,1),(97576,0),(98382,1),(98319,3),(84548,3),(97428,2),(97523,3),(100934,3),(96754,3),(97731,2),(97366,1),(98627,1),(97423,3),(98724,2),(96734,1),(97499,3),(97165,1),(96928,2),(98309,3),(96787,3),(97123,3),(97815,1),(98327,3),(97737,3),(97240,2),(98546,1),(97858,3),(98300,3),(98258,2),(97742,2),(98032,3),(97235,0),(97108,1),(97162,0),(97728,0),(98453,3),(98536,1),(103959,3),(96969,3),(97981,3),(97216,2),(97388,3),(97441,0),(97790,3),(97444,3),(97733,3),(97239,3),(97351,2),(97937,3),(97883,3),(97182,3),(97958,3),(94849,3),(96869,3),(98257,3),(97659,0),(96945,1),(97647,0),(97202,0),(97334,0),(98439,0),(98193,3),(98141,1),(98325,2),(98067,3),(98273,0),(97027,0),(100802,1),(99088,1),(100944,3),(99785,3),(100140,3),(99864,1),(100157,1),(100395,3),(100024,3),(100263,3),(99731,3),(100151,3),(99653,3),(100332,3),(100814,3),(100990,3),(100928,1),(100405,3),(99685,3),(99365,0),(196378,3),(99040,3),(99165,2),(99487,3),(100935,2),(99892,2),(99582,3),(99423,3),(99810,1),(99733,3),(100530,0),(100234,1),(98147,3),(99817,0),(359610,3),(100046,3),(99818,0),(102993,3),(99819,3),(99253,3),(105643,3),(100150,0),(99005,0),(100403,2),(100502,1),(100758,2),(97106,3),(98532,3),(99776,2),(98897,3),(100054,0),(100691,2),(100911,3),(99871,1),(100924,3),(100404,1),(142233,1),(99012,3),(99321,3),(99938,3),(99329,3),(100557,3),(142245,0),(99348,1),(100519,1),(99768,3),(99277,2),(100477,1),(99674,3),(100142,3),(100469,1),(103768,3),(100594,0),(99426,1),(100232,0),(99399,1),(100222,1),(100266,0),(100029,1),(100507,0),(99772,3),(99700,2),(100260,3),(100449,0),(101258,2),(99160,2),(101399,3),(99371,2),(102926,3),(101414,3),(103074,3),(102587,3),(102609,3),(102685,0),(103030,3),(101921,3),(103064,3),(102898,3),(102103,3),(102057,2),(101898,2),(101640,3),(103247,1),(101597,0),(101745,1),(102798,3),(101889,3),(103112,0),(102510,1),(102943,3),(101765,3),(102829,3),(101410,1),(101465,1),(102436,3),(104057,3),(101329,3),(101757,3),(103060,3),(101701,1),(102536,3),(104922,1),(101627,3),(102817,0),(102573,3),(101452,1),(103241,2),(102070,3),(102059,1),(102975,2),(101272,3),(102803,1),(99851,3),(102266,3),(104981,3),(102303,0),(101698,3),(102250,3),(101829,0),(107875,3),(100009,3),(102370,3),(102492,3),(101318,1),(101507,2),(102313,3),(101891,1),(99422,1),(101917,2),(1125254,0),(102522,1),(102951,3),(102797,1),(105121,3),(101991,3),(98063,3),(102138,3),(101587,3),(100491,0),(101912,1),(102494,1),(102603,2),(101540,3),(102426,2),(101458,3),(130236,1),(102034,1),(99388,1),(101702,0),(102202,0),(101764,1),(102397,3),(103956,2),(102915,3),(101605,3),(101844,0),(101775,3),(102526,0),(101393,1),(101902,3),(105236,0),(103639,0),(103644,0),(104431,3),(104348,0),(104257,1),(104694,3),(103893,3),(103850,1),(103776,0),(104321,3),(105417,3),(106308,2),(104940,3),(104868,1),(104254,3),(105629,3),(105851,1),(104070,3),(107756,2),(104815,0),(104952,1),(101811,3),(105107,3),(104454,3),(105665,3),(105316,3),(104697,3),(105414,3),(105577,3),(104990,1),(105481,3),(104036,2),(104652,1),(100963,2),(105151,3),(105323,1),(103767,0),(103873,3),(104797,3),(105793,1),(105477,2),(103939,1),(104040,3),(104670,3),(103994,3),(104466,3),(103772,1),(103874,3),(104237,3),(104412,1),(103919,3),(104692,1),(103859,3),(105682,3),(103812,3),(1517470,0),(105435,1),(142237,0),(105265,2),(105415,2),(104409,3),(105130,3),(105859,3),(105695,3),(104298,1),(104691,2),(105459,0),(105616,3),(104684,0),(104452,1),(104779,3),(101628,1),(104695,2),(104187,1),(103855,2),(104575,1),(104389,3),(104105,0),(101316,1),(105466,2),(105488,1),(105104,1),(105328,3),(104231,3),(103786,3),(107290,3),(107048,2),(106697,0),(107614,3),(107843,3),(108160,2),(108432,3),(107120,3),(108265,1),(107507,3),(108000,3),(106677,3),(108037,0),(106341,1),(108394,3),(107977,3),(106611,1),(106471,1),(107156,3),(107131,1),(106673,3),(108071,3),(106220,3),(108147,3),(108442,1),(108052,3),(104246,2),(106689,3),(106834,3),(106873,3),(112389,0),(108388,1),(107822,3),(107745,3),(107688,1),(108188,0),(107426,1),(106977,2),(107282,3),(106226,3),(107091,2),(311648,3),(108358,3),(106417,3),(108065,0),(106582,1),(108451,3),(105619,3),(107653,3),(108624,3),(106400,3),(107065,3),(107943,1),(115819,0),(107214,0),(108255,3),(108310,3),(106598,3),(106364,0),(107007,0),(107212,3),(106770,3),(107978,3),(106453,3),(107099,3),(108122,3),(106452,3),(107969,1),(106918,3),(106469,0),(106408,3),(107818,2),(108162,3),(107144,3),(106332,0),(108399,1),(108550,3),(107529,1),(106303,1),(142247,1),(106449,1),(107798,3),(107492,1),(107207,2),(108551,3),(107808,1),(106387,1),(107211,0),(107206,1),(107315,3),(107151,3),(107840,3),(107501,1),(107566,3),(107096,2),(108149,3),(107616,1),(106880,1),(166222,3),(107362,1),(107076,1),(314713,0),(107387,1),(107057,2),(106965,1),(108174,3),(107050,1),(108308,2),(106989,1),(110912,3),(110357,1),(110148,1),(110008,1),(111161,0),(111257,3),(109040,2),(109445,1),(108941,3),(110005,3),(109676,2),(111438,1),(109830,1),(110950,3),(109686,2),(111282,1),(110367,3),(111070,1),(107952,0),(110763,1),(109127,1),(111503,3),(109446,3),(109093,3),(124829,3),(110413,3),(109198,3),(109913,3),(110622,2),(109254,0),(110857,1),(109707,3),(111797,3),(110598,3),(110521,3),(109504,3),(111143,0),(110889,3),(110054,3),(109440,3),(109306,3),(110171,3),(111470,3),(110074,1),(110308,1),(111800,2),(109900,3),(109770,1),(110091,3),(110678,0),(109277,3),(110722,0),(109045,3),(111301,3),(110524,0),(111255,1),(109506,3),(109484,3),(111333,1),(109424,1),(111001,3),(110169,3),(111507,1),(111205,3),(111280,3),(109275,3),(110475,1),(109791,1),(110322,3),(111549,3),(109327,1),(110932,2),(109456,3),(109849,3),(113409,1),(109144,1),(109068,1),(110632,3),(109813,3),(111751,3),(110366,2),(111686,3),(110958,1),(109831,3),(111127,3),(109279,3),(109699,3),(109520,1),(109579,0),(110099,0),(109644,1),(110167,1),(111512,3),(110297,3),(110236,0),(111033,3),(111112,3),(111201,3),(3289712,3),(5818818,3),(109066,0),(110527,3),(109444,0),(110657,3),(109798,3),(110490,1),(110805,0),(111520,2),(111640,1),(114129,3),(110971,2),(111693,3),(111341,2),(110955,3),(109447,3),(114814,1),(114369,1),(114709,1),(113243,2),(112642,3),(114069,3),(112864,1),(112950,3),(112508,1),(112573,2),(114148,3),(114388,3),(113824,3),(112579,3),(113749,2),(114436,3),(114614,3),(112701,3),(113347,3),(113568,0),(114558,3),(112697,3),(114011,3),(112679,3),(114916,3),(113855,1),(114906,3),(112379,3),(113101,3),(112462,1),(112453,2),(114924,3),(113277,2),(115491,1),(112130,3),(113117,2),(113198,2),(113188,3),(113670,3),(114319,3),(112384,3),(112571,3),(112722,3),(114682,3),(112641,2),(112792,3),(114898,2),(114323,3),(109642,3),(112604,3),(109370,1),(112288,3),(112651,3),(113326,1),(114746,1),(113957,3),(113416,3),(114395,3),(112435,3),(114117,3),(114108,2),(112913,1),(112513,3),(113820,3),(112346,3),(113497,3),(113247,0),(112471,0),(114508,3),(114214,3),(112401,1),(113725,3),(114787,1),(112040,3),(112715,0),(113321,3),(112896,3),(235133,1),(112857,1),(112682,3),(142243,2),(112281,0),(112870,3),(113540,3),(112819,3),(113071,2),(113305,3),(113189,3),(114057,2),(112851,1),(114095,3),(113918,3),(112431,3),(112922,3),(114852,3),(113221,3),(114689,3),(113972,3),(114671,1),(113083,3),(113118,2),(114694,3),(113492,3),(113737,1),(112818,3),(112461,1),(114702,1),(111359,1),(113627,2),(110006,0),(112966,0),(114885,2),(113442,1),(114287,0),(121401,2),(110443,0),(112769,3),(112386,1),(114736,3),(112757,1),(113862,3),(112442,1),(113228,3),(112760,1),(113114,3),(112740,0),(113362,3),(117500,1),(116684,3),(117723,1),(117951,2),(115736,3),(117008,3),(115759,0),(117705,1),(116629,3),(117060,1),(116367,1),(115798,1),(117420,0),(116130,0),(117571,3),(113649,3),(116493,3),(116308,3),(116313,3),(116594,3),(116418,3),(116353,3),(116361,3),(116136,2),(116583,1),(116908,3),(116931,3),(117589,3),(116477,1),(117477,1),(117110,1),(115963,3),(116225,1),(116329,3),(115433,3),(377683,0),(116552,1),(117998,3),(116705,1),(116293,3),(117765,3),(116282,2),(115580,3),(115133,3),(116692,3),(117603,3),(116442,3),(116191,3),(116209,3),(117718,3),(117057,3),(117407,0),(117797,3),(117887,3),(115744,3),(118113,3),(115639,3),(115856,3),(117093,1),(115591,3),(117731,3),(116421,1),(119256,0),(116426,1),(116365,3),(116767,3),(116778,1),(115678,3),(116683,3),(117509,3),(116287,3),(117534,3),(117968,2),(116996,3),(116277,1),(117102,3),(116650,3),(116260,3),(117979,3),(115857,1),(114151,3),(115685,2),(116985,3),(116514,1),(116905,2),(117372,3),(313773,0),(117802,2),(115641,1),(115964,3),(115640,3),(116041,3),(118111,3),(115485,1),(117737,3),(117876,3),(115632,2),(118105,3),(117128,1),(116212,3),(117038,3),(115994,3),(115650,3),(116213,3),(117991,3),(116378,3),(117665,1),(118015,3),(116250,3),(116669,2),(117381,1),(114720,0),(115988,3),(116695,2),(116999,3),(237765,0),(116830,1),(115438,3),(117918,3),(118125,3),(117091,3),(116770,3),(116040,1),(115624,1),(207061,3),(117039,1),(117331,3),(116932,1),(115956,1),(116483,0),(118655,2),(119116,1),(119174,1),(119731,1),(119177,1),(119654,1),(118971,3),(120201,3),(118583,3),(118883,2),(119698,3),(120514,3),(120338,3),(118928,3),(119528,1),(119137,2),(119173,3),(118880,2),(118799,0),(119217,0),(119925,1),(119081,3),(119282,3),(120032,3),(123755,3),(118884,3),(118818,1),(119822,3),(119229,3),(118688,2),(119432,2),(119142,3),(118571,1),(120521,3),(119369,3),(120512,2),(119167,3),(119738,2),(118617,3),(118570,1),(119215,1),(128996,3),(120185,3),(115462,3),(120265,0),(119115,1),(118826,3),(118866,3),(118829,3),(119080,3),(119396,3),(119488,1),(118749,3),(120461,3),(118842,3),(119859,3),(120493,3),(120434,3),(120094,3),(120133,3),(118845,0),(120389,3),(120177,3),(119468,2),(124819,1),(119227,3),(119707,3),(116922,1),(120152,3),(119590,3),(119114,3),(119190,3),(117056,3),(119874,3),(119361,1),(119723,3),(120536,1),(120082,3),(119345,3),(125209,3),(178844,3),(118550,3),(119567,3),(169858,3),(119152,1),(119472,1),(119896,3),(119094,1),(120169,3),(119784,3),(131620,3),(124317,3),(118414,2),(122648,2),(125659,1),(119324,3),(127302,3),(119250,1),(119164,2),(123948,1),(119918,0),(119535,2),(119008,1),(120102,1),(118604,1),(118819,2),(118906,1),(119237,3),(118887,0),(119558,3),(118615,2),(119280,3),(120347,1),(119303,3),(117468,2),(119360,2),(120207,2),(118849,3),(118755,3),(126774,2),(120089,3),(118607,0),(119809,3),(120768,1),(120611,1),(120647,3),(158409,1),(120762,3),(120382,1),(120631,3),(120863,1),(120692,3),(120777,3),(165078,3),(128445,3),(120184,1),(118636,1),(118715,1),(120669,1),(120879,2),(133751,3),(120888,3),(147004,3),(123865,3),(120591,1),(128853,3),(139362,3),(119891,3),(136244,3),(120802,3),(147612,3),(150662,3),(120577,1),(120844,3),(120746,1),(120828,1),(171725,1),(120449,3),(120791,3),(120789,3),(120744,1),(120815,0),(120783,3),(120686,3),(120812,1),(128442,1),(138704,2),(120794,3),(120735,1),(119517,3),(118929,1),(138097,3),(120800,3),(156887,3),(120902,3),(168972,3),(127536,3),(118789,1),(130827,3),(120623,3),(120685,3),(120780,2),(162973,2),(119942,3),(154421,3),(120586,2),(120643,3),(120831,3),(154420,3),(122718,1),(129023,1),(133189,1),(120813,0),(166792,3),(120321,3),(165499,1),(120131,3),(120749,1),(131857,1),(134619,1),(120877,0),(120148,3),(120728,3),(120603,3),(120841,3),(140888,3),(119204,3),(119313,3),(120108,2),(144120,1),(146336,3),(178868,3),(120694,3),(120890,3),(118843,3),(118661,3),(241073,3),(120660,1),(120738,3),(129387,3),(158011,3),(134928,1),(119038,1),(120756,0),(120632,3),(119336,1),(154506,0),(129290,3),(134067,3),(130018,3),(172684,3),(142964,1),(126604,3),(122690,1),(143127,2),(197626,3),(120484,2),(140627,2),(156729,1),(120832,1),(120274,1),(146468,3),(120533,3),(158446,3),(119223,1),(119643,1),(151691,3),(124901,1),(122151,1),(123987,3),(120787,3),(120587,3),(127723,1),(181627,2),(120889,1),(134230,2),(173886,3),(165598,2),(168740,1),(118892,3),(143808,3),(119778,3),(119699,0),(124595,2),(120696,2),(129924,3),(246734,0),(152930,1),(145660,1),(144640,1),(151804,1),(133093,3),(169547,3),(120363,1),(162661,3),(134273,1),(181316,1),(137523,1),(165798,1),(179116,3),(172493,3),(171804,2),(155776,3),(185125,3),(147800,3),(120915,3),(167404,3),(177242,1),(155711,1),(144117,0),(120655,3),(120663,3),(123209,3),(139239,3),(126886,3),(129167,0),(120601,3),(177789,1),(215364,3),(199683,0),(120855,2),(120891,2),(140379,2),(166485,3),(190641,1),(162556,3),(164912,1),(168987,3),(157503,3),(209189,3),(149691,3),(266075,3),(158983,3),(163651,2),(189584,0),(175880,3),(120866,3),(139134,3),(235154,3),(165643,3),(213121,3),(139151,2),(144715,3),(120616,1),(210358,3),(120458,3),(185937,3),(120657,1),(122933,1),(151738,3),(125439,3),(120784,1),(144814,3),(120689,1),(177721,3),(124315,3),(127296,3),(126916,2),(163178,3),(243558,3),(134119,3),(132347,1),(151568,3),(205214,3),(218553,3),(167752,3),(129332,1),(131646,2),(158811,3),(171363,3),(133046,3),(177507,1),(144168,3),(120907,1),(207972,3),(125664,1),(124298,3),(160862,3),(166896,3),(120620,3),(131369,1),(159097,3),(178737,3),(120613,3),(135659,3),(162710,3),(209933,3),(240119,3),(284565,2),(131325,3),(120857,3),(158692,0),(188674,3),(235198,1),(174856,2),(169299,3),(172348,3),(142688,1),(137338,3),(130444,3),(158371,1),(289424,3),(204082,3),(133385,1),(143145,2),(182576,3),(120910,1),(222368,3),(182789,3),(139462,1),(311926,3),(205000,3),(155267,1),(166175,3),(120646,2),(159272,1),(145531,3),(139414,3),(192618,3),(200208,2),(150377,3),(166943,3),(219964,0),(162735,1),(194800,0),(149261,1),(194722,1),(132477,1),(163187,1),(196931,3),(2049430,0),(138510,2),(206064,3),(146838,2),(142342,2),(141098,2),(199753,0),(209144,1),(144084,3),(164052,3),(183523,1),(120903,1),(190865,1),(184894,1),(242423,2),(190138,3),(120917,3),(160611,1),(197096,3),(134847,3),(212826,3),(217355,3),(195685,3),(210070,3),(212604,0),(181984,1),(212346,3),(120630,3),(204946,3),(241303,3),(190332,3),(250440,3),(181875,3),(198021,3),(218839,3),(191754,3),(146882,2),(120913,3),(138749,0),(161081,3),(122459,3),(210945,3),(260991,2),(208092,0),(208185,1),(210075,3),(203119,2),(210616,3),(214641,0),(266308,3),(217869,0),(160127,3),(172495,0),(200550,3),(207201,1),(206036,3),(168629,3),(210299,3),(203540,3),(256127,3),(180093,3),(221889,3),(255094,3),(205177,3),(156807,3),(182508,1),(206917,3),(212338,2),(264734,3),(199725,3),(203166,3),(187078,1),(187393,3),(249462,3),(255589,1),(233298,3),(195234,3),(118694,3),(255067,3),(190590,0),(185431,1),(146309,1),(162222,2),(219699,3),(163978,1),(204640,3),(155723,3),(215545,1),(200809,3),(286137,3),(173716,3),(240684,3),(165929,0),(209958,2),(249380,3),(195714,1),(205873,3),(247380,3),(134084,3),(202677,2),(142032,3),(213203,3),(236027,1),(175526,3),(260191,3),(235712,3),(243862,3),(263215,3),(252227,3),(229440,1),(213847,3),(216216,3),(260332,3),(220099,0),(175142,3),(120755,0),(235327,0),(244870,3),(245712,1),(282753,1),(186894,2),(211181,3),(156757,1),(279474,3),(271219,2),(209095,1),(193019,3),(330500,3),(330501,2),(230183,3),(162983,3),(134983,3),(204761,3),(251382,1),(282936,3),(218616,2),(229340,3),(186566,2),(330994,3),(223897,3),(231844,2),(130623,3),(181536,2),(174480,1),(163983,2),(195945,2),(170016,3),(181865,3),(4281724,3),(248254,1),(185014,1),(203019,1),(218967,3),(217990,3),(210567,3),(177971,2),(183505,1),(227200,0),(191397,3),(244316,3),(210044,2),(354772,3),(205271,3),(247840,3),(208874,2),(269856,1),(160399,0),(240772,1),(212720,1),(227984,0),(260866,3),(268995,1),(211443,3),(164334,3),(198781,1),(218817,2),(261392,3),(253126,3),(126029,1),(251075,3),(258273,3),(268978,1),(286975,3),(162346,3),(169102,3),(236348,3),(120737,1),(245238,3),(228333,3),(247638,3),(265666,3),(183790,2),(146316,0),(265343,3),(166924,3),(264761,3),(265086,0),(250494,3),(244353,3),(245574,0),(243664,3),(230600,3),(245429,3),(246578,3),(243017,3),(211915,3),(263467,3),(254686,3),(209475,3),(280707,3),(244000,1),(246772,3),(219822,3),(230011,1),(282771,2),(35423,2),(196229,3),(247745,1),(203009,3),(180679,0),(241527,3),(296658,3),(227538,3),(291350,2),(252684,3),(290879,3),(248845,3),(287471,2),(192023,1),(233657,1),(277925,3),(244970,3),(213149,2),(312687,3),(243655,3),(265104,0),(172543,3),(243255,3),(233841,0),(263725,3),(237534,2),(263488,3),(139654,1),(286112,0),(299937,2),(240462,3),(312843,3),(166276,3),(161860,3),(2321187,3),(244297,3),(256380,3),(276613,0),(275913,3),(242587,1),(212985,3),(279204,3),(274117,3),(290661,3),(267804,0),(279231,3),(265171,3),(275277,3),(271027,1),(251110,3),(295671,1),(242998,2),(259711,1),(306474,3),(196069,0),(120681,3),(206275,3),(272127,3),(274497,3),(243155,3),(221027,1),(245674,1),(221218,3),(181739,3),(274155,1),(300657,3),(232500,1),(277027,3),(200027,3),(125022,3),(214529,3),(252503,3),(250687,3),(240890,3),(253595,3),(252866,3),(250739,3),(285742,2),(265116,3),(301429,3),(248126,3),(245046,3),(133152,3),(163025,2),(257106,3),(244244,1),(272152,1),(283015,3),(118589,3),(256692,1),(348225,3),(209163,3),(278488,1),(277371,3),(246278,3),(256009,1),(286751,3),(265632,3),(256524,3),(279977,1),(271972,3),(264508,3),(273300,3),(159273,0),(266915,3),(287986,1),(218922,1),(259685,3),(185906,1),(247425,3),(227445,0),(236493,1),(230838,1),(251474,3),(273840,2),(186589,3),(240419,3),(268397,3),(240515,0),(288441,3),(266987,1),(296042,1),(173840,1),(301526,3),(311361,1),(193364,0),(259060,3),(271271,3),(248408,0),(264616,0),(436071,0),(204700,1),(281634,3),(215750,2),(295178,1),(293662,0),(268380,0),(120912,1),(257756,3),(181689,1),(280590,2),(297181,1),(278504,1),(183649,1),(258463,1),(180052,2),(253754,1),(258153,3),(238380,1),(274558,3),(299658,3),(286499,3),(252444,3),(167261,3),(120804,3),(283832,3),(258068,2),(300532,3),(298228,3),(282593,0),(264464,2),(289043,3),(121765,3),(275847,3),(299977,3),(324158,3),(298130,3),(285627,3),(259446,3),(265651,1),(279778,3),(304669,1),(278500,3),(283084,3),(289408,3),(291988,3),(303361,3),(253556,1),(274812,3),(292644,3),(347618,3),(301978,3),(281373,1),(120679,2),(145487,1),(305589,3),(283139,3),(334754,2),(324264,3),(287717,3),(290095,0),(268126,3),(166813,1),(133240,3),(317248,1),(296166,3),(187738,1),(313255,0),(279113,3),(313737,3),(295701,1),(297884,3),(295297,3),(318411,3),(351817,3),(274309,1),(329355,3),(257044,0),(303816,3),(258000,3),(298203,1),(217505,1),(329767,3),(303933,1),(264689,3),(289765,1),(266452,2),(257360,1),(341384,1),(283003,3),(303297,3),(280460,3),(286261,3),(190975,3),(284655,3),(267913,3),(219400,3),(310775,3),(319970,3),(253867,3),(246460,2),(290673,1),(327753,3),(252076,3),(285492,3),(238924,1),(426089,3),(303678,1),(238546,3),(257778,1),(300140,3),(275022,3),(280760,2),(308379,3),(145937,0),(288439,1),(302674,0),(307479,1),(284978,1),(277434,3),(284034,3),(168786,1),(307901,2),(302640,3),(286106,1),(272338,1),(281358,3),(279493,3),(283632,3),(270688,3),(276816,0),(179098,3),(253474,1),(364385,3),(295427,1),(301199,3),(270288,2),(265349,2),(238936,3),(282687,3),(284478,2),(265459,1),(293113,1),(282120,3),(282418,3),(250223,3),(294425,3),(315850,1),(295725,0),(338564,1),(291213,3),(348226,3),(290916,3),(277296,0),(250797,3),(267626,0),(319769,1),(278731,2),(244283,0),(313670,0),(256415,3),(276751,2),(280653,1),(303184,1),(259288,1),(291579,3),(306432,3),(313410,1),(259153,3),(280609,0),(245562,0),(287467,3),(293815,2),(280665,3),(310567,1),(300214,3),(250292,3),(285300,3),(187512,3),(288477,3),(282123,3),(282521,3),(296251,3),(309404,1),(364986,1),(268695,1),(376078,3),(278435,2),(164184,1),(297037,2),(246592,3),(265298,3),(290664,3),(280486,1),(300949,3),(246464,3),(322802,0),(284837,1),(283877,3),(318997,3),(257076,3),(313542,1),(317740,1),(320691,3),(292506,1),(234215,2),(242653,3),(290334,3),(300471,1),(309698,1),(315327,3),(167260,1),(340855,3),(337909,3),(388473,3),(298814,3),(306047,3),(325703,3),(266697,3),(325980,3),(263757,3),(266543,1),(314331,3),(368226,3),(311113,0),(328589,3),(286244,3),(165982,2),(324133,3),(335266,3),(283426,0),(329717,1),(354575,0),(311289,2),(251127,3),(339071,3),(264150,3),(322330,3),(300015,3),(159365,3),(304415,3),(363226,2),(298482,0),(277986,3),(309530,3),(325710,0),(338188,3),(380726,2),(346336,3),(333780,3),(338459,3),(306734,3),(301357,3),(311429,0),(351238,3),(348913,3),(287978,0),(199626,3),(365376,3),(328538,3),(339840,3),(319061,1),(338135,3),(337741,3),(307351,3),(276919,3),(323944,2),(368310,3),(315983,3),(362387,3),(309593,3),(303830,3),(327137,1),(309987,2),(376263,0),(335119,3),(316396,3),(339882,1),(330859,3),(286716,1),(305357,3),(332379,3),(301470,3),(181852,3),(295700,3),(317303,3),(370754,0),(327056,3),(344604,3),(310778,3),(377094,1),(285531,0),(364569,1),(368667,0),(379217,3),(323298,3),(306685,1),(368909,0),(342167,3),(300556,1),(366920,3),(342492,1),(379363,3),(322259,1),(386862,3),(315733,3),(282209,1),(374546,1),(317676,2),(363589,3),(367174,3),(367859,2),(348836,3),(338467,3),(318725,3),(406709,0),(270980,3),(264395,3),(138524,3),(338095,3),(329679,3),(306841,3),(289944,1),(340377,3),(337711,3),(367913,3),(285823,1),(274166,1),(301777,3),(324197,2),(377556,0),(302886,2),(800318,3),(324013,3),(328880,0),(353969,3),(338309,1),(251736,3),(286788,1),(364517,1),(314412,3),(377191,1),(307987,0),(319343,1),(326977,3),(329101,3),(374102,1),(332285,3),(305224,1),(373981,0),(348853,3),(257568,1),(325007,3),(323810,3),(349205,1),(383206,3),(285861,1),(325055,3),(331698,3),(384819,0),(314353,3),(5657412,2),(338828,1),(338337,2),(338806,3),(339135,0),(299930,0),(330099,3),(420076,3),(312528,3),(172156,1),(317640,2),(349345,2),(337824,0),(343818,1),(317705,3),(319262,3),(289879,2),(372183,2),(327247,1),(338013,2),(362269,3),(298148,3),(377092,3),(366551,3),(347149,3),(318627,3),(360201,3),(380366,2),(357413,3),(377062,0),(349903,2),(378194,3),(367631,3),(338139,3),(332375,3),(346156,3),(371246,3),(365125,3),(279967,3),(334965,3),(332280,3),(416220,3),(387564,2),(327679,3),(414852,0),(356721,3),(371835,3),(388789,3),(377713,3),(332452,1),(338526,3),(377084,3),(365748,3),(368933,3),(327554,3),(371823,2),(365135,3),(390384,1),(417349,3),(343660,2),(378793,3),(367462,3),(327162,3),(405159,3),(327437,1),(385267,1),(375233,3),(296572,2),(381668,0),(349825,1),(406649,1),(344510,3),(316654,1),(356470,3),(363163,3),(401233,3),(388311,3),(308644,3),(386820,1),(376541,3),(362227,1),(382189,3),(339291,3),(314063,3),(370263,3),(375063,3),(333766,3),(374900,1),(304141,3),(372588,2),(379306,3),(293508,2),(407851,3),(359423,3),(362004,1),(407246,1),(369339,1),(384504,3),(383694,3),(420251,3),(370986,1),(347048,3),(337921,3),(364343,2),(396184,3),(360845,1),(350258,3),(363547,3),(363282,3),(212712,3),(338751,1),(390221,3),(369672,3),(221637,1),(331632,3),(350028,3),(373074,0),(423866,1),(390205,1),(375679,3),(391198,3),(337563,3),(378661,3),(381348,1),(338479,3),(338348,1),(375912,1),(345074,3),(339072,3),(403358,1),(353489,3),(381707,3),(167190,1),(415819,3),(414923,3),(362270,2),(299172,3),(1469259,3),(316732,3),(349416,3),(363988,1),(361696,3),(439491,3),(361411,3),(435224,1),(399412,3),(367000,3),(381966,3),(300270,3),(368447,3),(317198,3),(307453,1),(439623,3),(409842,3),(381681,0),(364725,3),(290002,3),(368891,2),(382761,3),(412915,3),(367479,3),(364045,2),(377752,3),(300051,2),(387658,0),(361862,1),(314498,3),(384533,2),(340012,3),(346491,1),(440803,1),(388419,3),(420332,3),(367110,3),(364751,3),(431340,3),(318403,1),(304377,3),(426955,3),(337697,1),(459175,3),(411705,0),(348593,1),(476680,3),(369702,3),(419677,1),(364961,1),(390450,3),(403703,0),(374180,2),(368658,2),(345950,3),(368975,3),(328400,0),(384369,1),(372334,1),(297284,1),(317042,1),(338096,3),(330793,1),(359013,3),(408777,3),(335345,3),(370919,0),(379071,2),(349260,3),(415855,3),(330588,1),(410696,3),(367085,3),(435286,1),(351977,1),(360779,3),(384116,2),(361467,3),(372832,3),(356150,1),(421051,1),(459449,2),(334541,3),(167456,3),(439533,3),(435434,3),(356634,0),(423849,3),(318462,1),(395169,2),(365957,3),(425357,3),(448179,3),(372784,1),(401792,3),(371724,1),(434409,3),(358082,1),(358273,3),(379786,3),(398712,3),(373469,1),(418763,0),(407265,3),(400497,3),(424205,0),(418773,3),(331933,3),(435625,3),(427944,1),(424136,3),(433383,1),(382077,3),(399201,3),(393109,1),(435623,0),(121766,1),(240200,3),(360717,0),(421994,3),(451094,3),(395972,3),(380599,1),(405422,3),(397101,3),(412019,3),(402894,3),(478160,0),(426578,3),(386140,1),(407304,3),(385307,3),(363771,3),(417658,1),(432348,3),(473753,0),(419706,1),(320661,0),(422778,3),(402399,3),(424287,3),(121164,3),(425123,3),(402022,3),(387131,3),(439817,0),(388125,3),(367089,2),(348333,3),(456912,2),(405325,3),(366627,2),(424774,1),(342258,1),(403508,3),(421229,3),(478988,0),(388795,2),(399295,2),(415978,3),(1016268,1),(396269,3),(421239,3),(338427,2),(421054,3),(434124,3),(330373,1),(352248,2),(471834,3),(361693,3),(294870,3),(367594,3),(474361,3),(408790,3),(369994,3),(369441,3),(382628,3),(120667,1),(423409,2),(357110,3),(393162,3),(423651,3),(410764,3),(342272,1),(443536,3),(420015,3),(402158,3),(385700,3),(351283,0),(446719,1),(397535,3),(410097,3),(366780,3),(377107,3),(356910,2),(395584,3),(435665,3),(377109,3),(396652,3),(360486,1),(450278,1),(443295,3),(372532,3),(441041,3),(379725,3),(388500,3),(450982,3),(416320,3),(386588,2),(408961,3),(417001,2),(448120,3),(417385,3),(383222,3),(398375,3),(382992,1),(473105,3),(414387,3),(415833,2),(492571,3),(421238,1),(432291,3),(372122,3),(408306,1),(404032,3),(374536,3),(419294,3),(421528,3),(257516,3),(445620,1),(384806,3),(362165,1),(489134,0),(439478,3),(422015,3),(375210,1),(369053,1),(444653,3),(388482,1),(419773,3),(418455,0),(357507,2),(449092,1),(428038,3),(423382,3),(415679,2),(349349,1),(415167,3),(355702,2),(406375,0),(480345,3),(420509,1),(457489,3),(361089,1),(455577,3),(466405,3),(451957,3),(384573,3),(368222,3),(478976,3),(401085,3),(422272,3),(399146,3),(451966,1),(411195,2),(456630,3),(432325,3),(406158,3),(398165,1),(451829,3),(412922,3),(395699,3),(397065,2),(369735,0),(357277,3),(441761,3),(443231,3),(371606,1),(416315,3),(468795,3),(413573,0),(756522,1),(475169,1),(438575,1),(380623,3),(430105,1),(384286,3),(401398,3),(395251,0),(467421,1),(382810,3),(373450,3),(411098,3),(371257,1),(414951,3),(402115,2),(401385,2),(418239,0),(368709,3),(312004,1),(428856,2),(431641,3),(377309,2),(449869,2),(393685,3),(422093,3),(356680,3),(452598,2),(385002,0),(387808,1),(458352,3),(383574,2),(472160,3),(454921,0),(457939,3),(381061,1),(284363,1),(443455,3),(479884,0),(422720,3),(376994,3),(206634,3),(441909,3),(416496,3),(477095,2),(477347,3),(457430,3),(404203,3),(907657,2),(420223,3),(492481,3),(437800,3),(454945,3),(449059,3),(460732,3),(499537,3),(460989,1),(454776,1),(490822,3),(405094,0),(384537,3),(389557,3),(443543,0),(483726,1),(460829,3),(779982,1),(859765,2),(408985,3),(435706,3),(479917,3),(783238,3),(380066,3),(463034,1),(435680,3),(493430,1),(407887,1),(832958,0),(934427,3),(416449,0),(436331,3),(425210,1),(449010,1),(364955,3),(375785,3),(367027,3),(447854,1),(460792,3),(438097,1),(446442,3),(460721,3),(436697,3),(470765,3),(430634,3),(439815,3),(473514,1),(475394,3),(383060,3),(851578,3),(454082,3),(808506,3),(396171,3),(417148,3),(482546,3),(439289,3),(405336,3),(414993,3),(317219,1),(831888,0),(457510,0),(482571,1),(855729,3),(454848,3),(466665,3),(768116,3),(464061,2),(487195,3),(417614,3),(473488,1),(343737,0),(468489,3),(405296,1),(487503,3),(465551,3),(420087,3),(460791,3),(370032,1),(406816,1),(462309,1),(888019,3),(479647,1),(758794,1),(498380,1),(451176,3),(457655,2),(454931,3),(477139,1),(816520,3),(429727,3),(497137,3),(354899,3),(489010,1),(473074,3),(424345,3),(772154,3),(464049,1),(804513,3),(461612,3),(473444,2),(401711,3),(478724,3),(876294,3),(493459,3),(818940,3),(433412,3),(417225,3),(429591,3),(446046,3),(769508,1),(455967,3),(433386,3),(385880,3),(471030,3),(405508,3),(429589,2),(765458,3),(400717,1),(424095,0),(1273816,3),(450506,3),(468492,3),(855805,0),(824316,3),(387877,1),(444112,3),(398913,3),(452637,2),(465925,3),(348150,1),(457572,2),(448124,3),(460740,3),(323120,3),(412798,3),(491738,3),(414982,3),(446755,3),(450259,1),(455857,3),(444628,3),(790781,3),(344854,0),(778631,1),(490166,3),(863091,3),(876154,3),(410297,3),(452594,1),(423169,3),(409182,2),(445935,3),(457275,0),(770739,1),(470705,3),(443453,1),(382625,1),(827517,1),(424880,3),(807840,0),(475293,3),(462485,1),(809407,1),(476013,3),(472043,3),(389860,3),(455596,1),(427969,2),(489007,3),(859594,3),(383216,1),(441774,3),(317919,1),(452624,1),(483022,3),(443489,3),(499455,3),(456554,3),(795338,3),(449467,3),(464029,3),(494199,3),(480025,3),(494271,3),(384793,1),(475944,3),(486551,3),(877368,3),(489270,3),(486731,3),(443431,3),(455612,0),(405676,1),(476298,3),(1105263,3),(643110,2),(643106,0),(757061,0),(782399,2),(817401,0),(454841,3),(779496,1),(833098,3),(817400,0),(785532,3),(805420,3),(493093,1),(461826,3),(430164,3),(477311,3),(449144,3),(460897,1),(414853,3),(477072,3),(768132,0),(462590,3),(489682,1),(366548,3),(362120,3),(449089,3),(365830,0),(385726,3),(807965,1),(951297,3),(456111,2),(830896,1),(823158,2),(495596,1),(413268,3),(430357,1),(437857,1),(463985,1),(785002,1),(450345,1),(491747,3),(393735,2),(415306,2),(427229,1),(469641,2),(450121,1),(327084,3),(479143,1),(462329,3),(458471,0),(417056,3),(453467,1),(492506,3),(425326,1),(489244,3),(397313,0),(465624,3),(491603,3),(470055,3),(419946,3),(455590,2),(418689,1),(1028528,3),(471711,2),(467406,3),(435705,2),(758771,1),(382932,1),(293564,1),(432021,3),(476964,3),(756683,1),(413267,3),(477071,3),(1077258,3),(411061,1),(825232,1),(884819,3),(449088,3),(469494,0),(478311,3),(427327,3),(845046,1),(808417,3),(861739,3),(758758,1),(481141,3),(486655,3),(425112,1),(373889,3),(787523,3),(486583,1),(462538,3),(787475,1),(418279,3),(455805,3),(496806,1),(486822,3),(385752,3),(775529,3),(459102,3),(452702,0),(480249,3),(448134,1),(838221,1),(408236,1),(1179904,3),(829482,3),(419887,0),(477348,3),(416508,3),(473308,3),(972785,3),(431308,3),(461770,3),(337978,1),(381849,0),(486946,1),(765447,3),(783233,3),(848557,3),(475243,2),(423977,2),(496436,1),(1048174,3),(1032207,1),(465375,3),(283503,3),(822854,1),(780622,3),(465494,0),(464141,3),(496328,3),(925230,3),(866437,3),(427470,3),(810868,2),(795368,3),(995829,3),(970472,3),(909010,3),(806940,3),(904049,3),(862856,3),(996605,3),(1043842,3),(1032856,1),(1094278,3),(1032846,3),(758732,0),(964587,3),(401383,2),(465538,2),(887745,3),(457419,0),(880502,3),(983213,1),(396555,1),(472205,1),(389722,2),(463854,3),(857191,3),(758766,3),(848542,3),(756729,3),(388182,1),(780607,2),(452623,3),(757361,3),(804452,3),(498353,3),(494222,3),(488120,1),(913445,1),(472062,3),(401997,1),(443473,1),(1121794,3),(844794,3),(942384,1),(765120,3),(1107809,3),(415127,3),(805564,3),(892100,3),(814795,0),(792965,3),(466839,3),(472071,3),(997174,3),(765443,3),(442933,3),(450188,3),(815244,3),(450385,3),(414055,3),(489237,3),(884328,3),(398808,3),(480669,0),(446463,3),(860528,1),(1016301,0),(762110,3),(482374,3),(816436,3),(459959,3),(1024856,0),(758753,2),(480242,3),(1083845,3),(856288,3),(1038988,3),(373883,3),(829297,3),(825236,2),(923811,3),(923985,0),(445934,3),(453556,1),(875113,1),(488023,3),(869977,3),(292963,2),(897361,3),(445922,3),(481369,1),(1092053,3),(795439,1),(959342,3),(995031,1),(889600,3),(1095496,3),(923752,1),(498399,0),(367959,1),(1077274,3),(2330312,3),(490084,3),(816530,3),(896986,1),(435528,2),(910847,1),(887732,3),(860866,3),(486651,3),(804516,3),(780583,3),(463998,1),(815178,3),(425430,3),(765430,3),(801526,3),(486576,3),(871510,3),(492486,3),(780608,3),(841044,3),(960835,3),(465602,1),(441007,3),(413300,2),(808357,3),(780565,3),(440963,2),(348062,3),(455760,1),(477051,2),(812243,1),(782867,3),(840363,3),(810900,3),(825244,1),(1095573,2),(890870,3),(799949,3),(784972,2),(479500,3),(425413,1),(950740,3),(814106,2),(796302,3),(808230,2),(368794,1),(952682,3),(1148261,2),(421082,2),(211933,3),(891527,0),(809533,3),(871197,1),(817402,3),(785533,0),(854548,3),(868394,1),(971205,0),(1166805,0),(838192,3),(443706,1),(807721,3),(765429,1),(389790,1),(768212,3),(393956,3),(807054,3),(1007920,3),(896798,1),(1039960,0),(444682,3),(1226251,3),(760329,0),(443680,1),(758730,3),(997260,3),(974959,2),(467110,1),(408839,2),(1765847,3),(453451,0),(259324,0),(457433,3),(889665,0),(485851,3),(428579,2),(8021928,0),(762148,3),(943232,3),(426931,3),(796307,3),(465234,3),(423294,1),(937375,3),(1097636,3),(1116560,2),(870090,1),(844760,3),(910970,1),(200465,3),(489099,1),(780536,1),(478087,3),(468569,3),(811138,1),(448157,0),(490181,1),(410377,3),(425061,1),(493464,1),(1054485,2),(871426,3),(1029134,3),(799934,1),(443274,3),(371746,2),(1033643,3),(887883,1),(811080,3),(765476,1),(373051,1),(800080,1),(800308,1),(981227,3),(988595,3),(411477,1),(430922,1),(397892,3),(452608,1),(929425,1),(1129442,0),(1013753,1),(497465,3),(1010048,1),(978759,3),(918927,3),(838283,1),(942385,0),(981072,3),(976051,1),(959337,3),(1174954,3),(1125849,1),(824747,3),(970416,3),(1068680,1),(494238,3),(467197,3),(960731,3),(795421,3),(1054486,1),(862846,3),(970468,3),(430770,3),(861689,3),(910936,2),(936501,3),(406759,3),(940709,1),(1059786,1),(962726,3),(830515,1),(876563,3),(1054588,1),(823671,3),(964516,3),(887912,1),(1084950,3),(808244,3),(1099212,3),(1205489,2),(892255,1),(421715,3),(995039,1),(1129435,3),(818165,3),(1082868,3),(963194,3),(832266,3),(893402,2),(1139797,1),(441773,3),(1270769,1),(1050160,3),(1000774,3),(489049,0),(1128075,3),(1069238,3),(1316037,3),(1060277,3),(870089,0),(1018785,3),(369436,3),(416212,3),(1226681,0),(1068649,3),(870111,1),(970411,3),(852713,3),(367882,1),(1103193,3),(499448,3),(1216477,3),(929629,1),(1045670,3),(1077084,3),(1023481,3),(1305138,2),(451079,1),(865556,1),(822832,2),(465502,2),(449487,3),(447166,3),(1259014,1),(1046997,2),(1288589,3),(1032755,1),(1186369,3),(942903,3),(1024255,3),(1029234,3),(383028,3),(1124394,1),(467200,3),(420238,3),(1129423,2),(926063,1),(986230,3),(938341,1),(1152850,3),(1185616,0),(425637,1),(1370212,3),(1056437,3),(800039,3),(455824,2),(109688,1),(443559,1),(951216,3),(1284591,1),(1056444,0),(1152397,3),(1048171,3),(814314,3),(1094661,3),(1095442,1),(951257,3),(1034325,3),(960890,3),(1104733,3),(800240,1),(1133991,1),(896031,3),(844286,3),(1179080,3),(965440,3),(1100048,3),(961066,3),(1279083,3),(1126596,2),(985699,1),(1117379,3),(892899,0),(1178197,1),(800241,3),(1199099,3),(1077094,3),(887971,3),(1172203,1),(1356380,3),(489018,3),(963743,3),(1227929,3),(1294138,3),(882978,1),(1022606,3),(1111890,3),(902290,1),(864761,3),(948535,1),(819714,3),(1263778,3),(476991,3),(482606,3),(1260502,3),(1034303,3),(483607,3),(1082853,2),(486321,0),(1266097,3),(765432,3),(494652,3),(487928,3),(932669,3),(1052040,0),(831887,2),(915460,3),(1277728,3),(984130,3),(866439,2),(368563,3),(896534,0),(926129,3),(2132415,2),(1052352,3),(790686,1),(785007,3),(426592,3),(1340664,3),(1172570,1),(963794,3),(1153103,3),(830570,3),(859163,3),(1049948,3),(1143155,3),(1142798,3),(1173745,1),(1190539,0),(396707,3),(1073241,3),(435679,3),(1046947,3),(1068641,3),(1064932,2),(1055366,3),(964586,3),(443701,3),(1286742,3),(948530,3),(804529,0),(874425,3),(443649,1),(1037146,3),(491044,0),(1226291,2),(1206285,3),(1221141,3),(1172963,3),(462499,0),(914798,3),(1339302,3),(1078600,3),(1063669,3),(1280558,1),(412536,1),(986233,0),(1067733,1),(1076252,2),(1227926,0),(1267379,2),(1284526,1),(1092019,1),(1114723,1),(1235075,1),(914797,1),(830535,3),(416236,0),(816556,1),(1286124,3),(1132626,3),(947802,3),(1220719,0),(1073498,1),(1023111,2),(489282,0),(1185834,1),(1172206,1),(960144,1),(969647,3),(479952,0),(997047,1),(758774,2),(1097643,2),(1014775,3),(1054487,3),(1079444,3),(1112782,1),(1091722,3),(327597,3),(974661,3),(796366,3),(808151,0),(1049413,1),(438488,2),(821642,1),(465580,3),(448011,1),(409459,3),(1119646,1),(1152836,1),(417741,3),(758751,3),(1196339,3),(1201167,1),(806027,3),(1135503,3),(1022603,1),(1046173,1),(1111422,0),(1080016,1),(1136608,1),(1148204,3),(1055369,3),(889583,0),(1132620,3),(472033,0),(1226774,3),(1178663,3),(1135487,2),(458525,3),(1124039,0),(1155056,2),(1172233,3),(986263,1),(1156398,3),(1107860,0),(844471,1),(1424431,1),(834001,1),(1182345,1),(1234548,0),(432283,1),(1058017,2),(361748,3),(780521,3),(1186367,1),(1193138,2),(499549,3),(988045,1),(929632,3),(1212974,3),(1172994,3),(971209,3),(1131734,3),(870984,0),(1127180,3),(1252595,3),(1272041,3),(1216496,3),(814331,3),(1186830,1),(1054606,1),(1315981,1),(485601,0),(875034,2),(1379182,3),(898367,1),(1012729,3),(380510,3),(1426374,1),(1259574,1),(1232207,1),(1045772,1),(1349482,3),(1230414,3),(1134629,3),(1259571,3),(1078588,3),(1176740,3),(1244668,1),(1405808,1),(1131729,3),(1232776,3),(1174732,3),(810784,3),(1077262,2),(1197624,3),(1017460,3),(375568,3),(433362,1),(1093908,3),(1334537,1),(910554,2),(824758,3),(1210042,1),(1467304,3),(1130080,1),(1133993,2),(1339268,3),(1183672,3),(1348327,3),(1371630,1),(1057500,1),(1352824,3),(1135952,3),(995850,3),(1389374,2),(448182,3),(1426362,1),(808526,3),(485947,1),(762125,1),(1315214,3),(1368491,3),(381940,3),(914837,1),(1320352,3),(403702,1),(881891,3),(1227787,3),(1041829,2),(1308138,3),(1340768,1),(1473149,3),(1305806,1),(1121977,3),(896529,3),(1185376,1),(1258197,3),(1479676,3),(1504429,3),(1474276,3),(765010,3),(1135525,3),(962736,3),(1003034,0),(1268989,3),(1103982,3),(901476,3),(1278340,2),(1360860,3),(1023441,2),(1463188,2),(1190080,1),(1198153,3),(1134854,1),(1139668,3),(1142988,2),(762073,3),(795351,3),(1235166,1),(1149361,3),(1135092,1),(1116186,3),(1483831,0),(1406160,3),(1405809,3),(1337051,1),(1206488,3),(1379177,0),(1035736,3),(1303828,1),(1019452,2),(1020885,3),(452694,3),(780511,2),(1022885,2),(924129,3),(878804,2),(768239,3),(1247662,3),(1343097,3),(1512201,3),(1235796,3),(1323605,1),(1216487,3),(1179794,2),(471041,0),(1424797,2),(362478,3),(1050002,3),(1194263,1),(790627,0),(386117,1),(1086216,3),(436339,1),(1183665,3),(1013752,1),(1331064,3),(1095217,3),(1442519,3),(1424327,1),(1461312,3),(1309449,0),(1350498,0),(1179891,2),(1034032,1),(896923,3),(1433540,1),(1300851,0),(1146320,3),(1521783,2),(1054580,3),(892782,3),(978762,1),(1191111,1),(1242423,3),(1326956,3),(790712,1),(1071804,3),(913425,3),(1379222,3),(1442437,3),(1185242,3),(1068678,3),(1372306,3),(1167660,1),(1187043,1),(1488591,3),(1233219,2),(1183276,0),(1314645,3),(1001508,3),(1289406,1),(1322315,1),(1243375,0),(1463167,3),(1320082,2),(1381512,3),(1426371,3),(1186373,3),(1532957,2),(860906,3),(1187044,3),(913354,0),(435711,3),(1050001,3),(432314,3),(1230424,3),(1342378,3),(1216516,3),(1372301,3),(1059925,3),(1190536,2),(1020543,3),(1312251,3),(862467,0),(1188729,1),(1242618,3),(1220198,3),(910905,2),(493451,1),(1083456,1),(1425928,3),(1422201,2),(1185836,2),(1024744,0),(365929,3),(1508661,3),(1504362,1),(1493886,1),(874271,3),(758746,2),(1144884,3),(806203,3),(1245112,1),(815245,3),(1273204,3),(1194238,3),(804539,3),(1440741,2),(1072438,2),(1446201,3),(473705,3),(1235842,3),(1351177,0),(1257579,3),(1485698,1),(1266029,3),(2177683,3),(1220214,1),(1527679,3),(1137436,2),(844708,3),(1129445,3),(1326221,3),(1123894,3),(1268962,3),(1305714,3),(1075749,3),(1285309,3),(775552,3),(1648194,3),(1082009,3),(1479163,3),(1187064,3),(1269560,3),(1290135,1),(1422675,3),(1422674,3),(1332054,3),(899106,3),(1148165,1),(1483797,3),(970452,3),(1263772,3),(1461305,3),(1232783,3),(1127896,1),(838247,1),(1073105,3),(3671900,0),(1142800,0),(1034302,0),(1082876,3),(1209377,3),(1385912,1),(1320286,3),(1362534,3),(457400,0),(1132193,1),(1119123,3),(1248971,1),(1235124,1),(1144825,1),(1242545,1),(1242422,0),(1085779,3),(1237838,1),(446043,3),(1028532,1),(1247644,3),(1340108,0),(1045778,3),(1127877,1),(1242530,2),(458455,3),(1078912,1),(408060,3),(1226232,3),(976238,3),(1114677,2),(1114740,1),(5868326,3),(1263670,1),(1082601,1),(1233227,3),(455407,3),(1014759,3),(1305583,3),(947810,0),(1196141,3),(892769,3),(1231587,1),(1130884,1),(780653,1),(1053424,3),(1250777,1),(1196204,2),(1279935,3),(1228705,3),(1212436,3),(955308,3),(892318,3),(1470023,1),(1139328,2),(473075,0),(1017451,3),(1261945,3),(1037705,3),(1226229,1),(1234654,1),(892791,1),(1407061,3),(878835,3),(1399683,3),(1155076,3),(1570989,3),(435761,3),(1188113,1),(1443518,0),(429493,0),(1038686,3),(1375670,3),(1587707,0),(817230,3),(1593655,3),(1226236,3),(1576382,3),(1560139,1),(938283,1),(889573,2),(493949,3),(1020558,1),(1336999,3),(1320253,1),(1179069,3),(963966,1),(1403981,3),(840361,1),(1251757,1),(1386588,2),(1455151,1),(1182350,3),(1287878,3),(1220634,3),(944835,3),(1013743,2),(1425933,3),(1161411,3),(842926,3),(1511354,3),(1325004,3),(1323594,3),(1336617,1),(1424381,0),(1375666,3),(1282140,3),(1440728,1),(1385867,1),(480255,1),(1322385,1),(1604900,1),(1646985,3),(879870,3),(985694,3),(427152,1),(446029,3),(1314652,3),(1322312,3),(1320244,3),(1525915,3),(1653853,3),(1600524,2),(1285016,1),(1542852,3),(1414382,3),(1228987,1),(1462758,1),(1479668,3),(1371155,3),(1274300,3),(1584016,0),(1027718,3),(947798,3),(1028576,3),(1477171,3),(1436045,1),(1245526,2),(1314655,3),(1592876,2),(1126618,3),(1126591,3),(1668200,3),(1001526,0),(1542344,3),(477080,3),(1431181,3),(800320,3),(926084,3),(1588895,3),(1458175,3),(398286,3),(1588337,0),(1235830,2),(1470827,0),(1104001,1),(1403865,3),(1504320,3),(1438254,1),(1278469,3),(1243957,0),(1564585,3),(980970,3),(1302067,0),(1174693,3),(1334260,3),(1079968,1),(1376195,2),(1625340,2),(1624408,3),(1559549,0),(964517,2),(1183923,3),(1686313,1),(775489,0),(1723115,3),(1571724,0),(1164999,1),(1590089,3),(1120985,2),(1273678,3),(758752,2),(1588875,0),(1232838,3),(1391034,3),(804497,1),(1523483,3),(1020773,3),(1421051,3),(989757,0),(1673430,3),(473364,0),(1263750,3),(1433108,0),(1255953,3),(1440292,1),(1231583,1),(1600383,3),(1423894,3),(1438216,3),(1518812,2),(1244754,3),(935075,3),(1612774,3),(1252380,3),(1521848,3),(1135084,1),(1515935,3),(1591095,3),(1512235,1),(1531663,1),(1405500,3),(1569923,1),(1194417,1),(1311075,1),(1583323,0),(1486190,3),(1723120,3),(1415283,3),(1313092,1),(1721685,3),(482459,3),(1532503,1),(1714886,1),(1481572,1),(1568921,3),(814255,3),(1740047,1),(1235189,1),(1518861,3),(1671616,2),(1424432,1),(1514041,3),(1226753,3),(1740707,1),(1270761,3),(1341341,2),(1123373,3),(1429392,3),(1754351,3),(1602617,0),(1509787,3),(1805297,3),(1440232,3),(1179025,3),(1229381,1),(1049402,0),(977855,3),(1561768,0),(1270842,3),(1465522,3),(1403988,3),(1536044,3),(1734113,0),(1447479,3),(1464580,1),(1013860,0),(1369706,3),(1462053,3),(1996211,0),(1618390,2),(2008009,3),(1332134,1),(1345772,3),(968264,3),(1610452,3),(1212454,3),(1401643,3),(1341710,3),(1494772,1),(1393746,3),(1340773,3),(1548603,0),(896872,3),(1386932,1),(1316622,0),(1764141,3),(1190072,1),(1621444,3),(1272051,3),(1412541,3),(411951,2),(1588170,1),(1194424,1),(1341167,1),(1667079,3),(1226273,1),(1451762,3),(1488598,3),(1450332,1),(1529233,3),(1626201,3),(1323045,1),(1426320,0),(1555064,3),(1216520,3),(1270120,3),(1270296,3),(1646959,3),(1578261,3),(1646876,3),(1305797,3),(1581835,3),(1216515,3),(1673702,3),(954947,1),(1560779,3),(1398428,3),(1452628,1),(1565958,3),(1441912,0),(1441956,3),(775543,3),(1574639,1),(1706365,3),(1536053,3),(1307858,3),(1575539,3),(1614408,3),(1640571,3),(1381413,1),(1236371,3),(1401143,0),(1313244,3),(997152,0),(1673423,3),(1719009,3),(1303803,3),(1666642,3),(1512685,3),(1456060,3),(1788453,0),(1185416,3),(1692504,3),(1319722,3),(1496884,3),(1456941,3),(1684911,0),(1610301,3),(1669706,2),(1213648,1),(1744641,2),(1520453,3),(1405810,3),(1585255,3),(1504443,3),(1735853,3),(1602479,1),(1270291,0),(1320304,3),(1294226,3),(1179056,3),(1614338,3),(1291652,1),(1648133,3),(1433802,1),(1341188,3),(1221208,3),(1219817,1),(1624426,3),(1106860,0),(1278379,1),(817177,3),(1361835,3),(1653911,3),(1023114,0),(1278449,0),(1587386,1),(1320291,1),(1629377,3),(872230,3),(1731767,3),(1167638,1),(1480660,1),(1578873,3),(1216492,3),(1510906,1),(1667691,1),(1534085,2),(1666300,2),(1545097,3),(1055292,3),(1334553,2),(1268987,3),(1778258,1),(1598538,0),(1587157,1),(1193631,3),(1642252,3),(1525835,1),(4259780,0),(1646123,1),(1572781,3),(1813757,3),(978764,3),(990407,1),(1679235,3),(1092026,3),(1161864,3),(1464540,1),(1787729,3),(1034389,0),(1385826,3),(1192628,1),(1217613,1),(1478338,3),(1486185,3),(1152398,1),(377981,3),(1621429,1),(1296899,3),(1189340,1),(945513,1),(1219289,1),(993842,3),(1240982,1),(1334512,2),(1262416,3),(1411704,2),(1436562,1),(480239,3),(800369,3),(1596343,3),(1411238,3),(1454029,3),(1606392,3),(1403177,1),(1527186,3),(1298650,1),(1067583,1),(1742683,1),(1411697,1),(478304,0),(1270798,3),(1229822,3),(1650062,3),(1133985,1),(1396218,1),(1718807,3),(1284575,3),(1399103,3),(1605783,3),(1756832,3),(1499658,3),(1201607,3),(1632708,3),(458339,1),(1570728,3),(409847,1),(1827358,3),(1318514,1),(1449283,0),(1822304,1),(1622547,1),(1189073,3),(1319708,3),(816462,3),(1941600,3),(472181,3),(1832382,3),(1772240,0),(1540133,1),(1598778,3),(780504,3),(1302011,3),(1714208,3),(1564349,2),(999913,3),(873886,3),(1716772,1),(1672845,3),(1781812,3),(1582270,1),(1743922,1),(1448755,0),(1592281,3),(1210166,1),(1684628,3),(1562568,3),(1691323,3),(1531930,3),(1832405,1),(1604225,3),(1756750,1),(1592527,3),(1675439,2),(1478964,3),(1124035,1),(1340800,1),(1787777,1),(433035,1),(472399,0),(1068242,3),(1655442,1),(1946421,1),(905372,3),(1216475,2),(1509767,2),(1053810,2),(1440118,3),(1498569,3),(1242460,3),(1630027,3),(1674692,3),(1637688,1),(983193,1),(1306980,2),(1615147,1),(1720182,3),(1235170,3),(1813314,3),(1675192,3),(1462041,3),(1376233,3),(1441326,3),(1253864,2),(1268799,1),(1699185,1),(1758692,3),(1033575,3),(1900856,3),(1564367,3),(1622979,2),(1778304,3),(448694,1),(1596346,3),(1655420,3),(1204342,1),(1508675,3),(844993,3),(822847,1),(1675434,1),(1661420,3),(1541160,3),(1515091,1),(480687,2),(1265990,3),(1615918,3),(1625346,3),(1568346,1),(1650043,1),(1093357,3),(1568911,1),(1510938,0),(471042,1),(1229238,1),(1438176,3),(1621994,3),(970179,3),(376136,1),(1692486,3),(1435513,3),(1506999,0),(1827487,1),(1772398,3),(1637706,3),(1860152,3),(1606618,3),(1477837,1),(477302,2),(1291584,1),(2140371,3),(1492030,3),(1602098,3),(1007029,3),(1071875,0),(1798188,3),(1699231,3),(1568816,0),(1720616,3),(1641410,3),(1389137,2),(1530509,1),(906778,3),(1067774,3),(1588334,3),(1412386,3),(2011971,3),(1259521,3),(1667905,1),(1687901,3),(1440161,3),(1181614,2),(1859446,3),(1671457,1),(1371585,3),(1700844,3),(1906426,2),(1683921,1),(1550312,3),(1701210,0),(1441952,2),(1233334,3),(1667307,3),(1445520,2),(1897941,3),(1634122,3),(1899353,0),(2007418,3),(1847731,3),(1541149,3),(1719071,3),(1204340,2),(1650407,3),(1439572,3),(1890373,3),(1886493,3),(1541995,3),(1614989,1),(2043879,3),(1456472,1),(1536048,3),(1930315,3),(1788391,3),(2042432,3),(1762248,3),(810913,3),(1549572,3),(1728196,0),(466893,3),(1571222,3),(1535616,3),(1645080,1),(1723811,1),(1784575,3),(1742336,3),(1836987,3),(1674057,2),(1640459,0),(1707392,3),(1821593,2),(1594562,3),(1987018,3),(1440345,1),(1640484,3),(1407065,3),(1650058,3),(1772424,3),(1686067,3),(770802,0),(1657507,1),(1748207,3),(1772925,0),(1324999,3),(1900893,3),(1610996,3),(1629705,1),(1672723,3),(1930371,3),(1809231,1),(1701990,3),(1910498,3),(1594917,0),(1372686,2),(1298554,3),(1630626,3),(1536410,3),(1205558,3),(1891942,1),(1735200,1),(1638328,3),(1669794,3),(1753887,1),(1700467,3),(1349451,3),(1561770,3),(1525552,3),(1410063,3),(1909270,3),(1838571,1),(1643222,3),(1466054,3),(1757944,3),(1845866,3),(1828224,3),(1649780,3),(2009643,0),(1787127,3),(1853739,3),(1646980,1),(1598822,3),(1638350,3),(1525890,3),(1657299,3),(1948150,2),(1833781,3),(1714210,1),(1695405,0),(1772373,3),(1582271,3),(1757742,3),(2043900,3),(770703,3),(1430607,1),(1305591,3),(1588398,3),(1422136,3),(1623745,3),(1783798,3),(1366344,3),(1854506,3),(1641624,3),(893412,3),(1634136,3),(1737090,3),(1680051,3),(1764666,3),(1630036,3),(1836212,1),(2008006,3),(1648204,3),(1198199,3),(1660379,3),(1682246,3),(1665418,3),(1488555,1),(1726589,3),(1859522,3),(1703199,0),(1767382,3),(1487118,3),(1703148,3),(1604171,3),(1316540,0),(1705134,1),(1742650,3),(4627404,1),(1401152,1),(1942120,3),(1857913,3),(1683526,3),(1504508,3),(2150139,3),(1732730,3),(1736633,1),(1316624,3),(1437358,1),(1772250,1),(1843678,3),(1563738,1),(1547090,3),(1961281,0),(1734110,3),(1815836,2),(1437357,1),(1355638,3),(1313139,3),(1704573,1),(2066832,3),(1872328,3),(1909796,3),(1995242,3),(1711366,2),(1600195,1),(1456635,0),(1578275,1),(1793931,3),(2190475,1),(1625155,3),(1862457,1),(1525836,1),(1233301,1),(1650555,0),(1986806,3),(1846442,3),(1707391,0),(2070649,1),(1402488,3),(2061702,3),(1825918,3),(102411,0),(1498878,0),(1486193,1),(1954780,3),(2224455,2),(1560985,3),(1496025,3),(485985,2),(1601913,0),(1706593,1),(1596350,2),(1430615,3),(1838544,3),(1596365,1),(1606389,3),(401729,3),(1716777,3),(1392170,3),(1646987,1),(1667353,3),(1034314,3),(1430626,1),(2185503,1),(1915581,3),(2107835,3),(1700808,3),(1440129,1),(848228,1),(1195478,3),(1586265,3),(1277953,2),(1047540,3),(1077368,3),(1486192,1),(1232200,1),(1409024,1),(1991245,1),(1645170,1),(1568338,1),(1735898,3),(1446714,3),(2178941,3),(1748122,3),(1862079,3),(1336608,3),(1926992,3),(1232829,2),(1217209,3),(1615065,3),(948470,2),(2125435,3),(1637725,2),(1699498,3),(2005156,3),(1730189,1),(1859650,2),(1345836,1),(1800741,3),(1298649,2),(1623288,3),(1194173,3),(1655460,3),(1996264,3),(1611224,3),(1971352,3),(1405365,3),(1480656,1),(1764651,3),(1462769,3),(1212450,1),(1726669,2),(2076220,1),(1482459,1),(1790886,1),(1547234,3),(431021,3),(1990314,1),(2077851,2),(1840417,1),(1343727,3),(1307068,1),(1386703,1),(1855325,3),(1839492,3),(2151543,3),(1560747,1),(1276104,1),(1582507,3),(1764234,0),(2106739,3),(2040560,3),(1981677,3),(1492841,3),(1655416,3),(1142977,0),(1931533,1),(1922777,2),(2025667,3),(837562,3),(1371111,3),(850677,3),(1535438,3),(1658837,3),(2387222,3),(1074638,3),(1024648,3),(2063781,3),(938330,3),(1772341,3),(443272,3),(2082197,2),(1674773,3),(1673697,3),(2115295,3),(1591071,3),(2008602,3),(1876451,3),(1866249,2),(1234719,1),(1920849,3),(2098627,3),(1821480,3),(1701215,3),(1781769,2),(2168910,3),(1790885,3),(1845849,3),(2346744,3),(860907,3),(903624,0),(790724,1),(1707386,3),(975645,2),(1673434,3),(1446192,1),(1760967,3),(1764183,2),(454876,1),(1758830,3),(2112131,1),(1602620,3),(1397280,2),(1853728,1),(2153963,3),(2023690,3),(2181931,3),(2258337,2),(1217213,3),(1045658,3),(1848902,3),(1977739,3),(2313197,3),(1230215,3),(1194577,3),(1441951,3),(1659337,3),(1839654,3),(1833844,1),(2322603,3),(1656190,1),(2101441,3),(2059255,1),(2326087,3),(1907668,3),(1477855,2),(1979319,3),(2142955,3),(1649419,2),(2258281,3),(2393787,3),(1870529,3),(2105044,1),(1978480,3),(2601160,3),(2377396,3),(1996310,3),(1308729,0),(1226240,3),(1524137,3),(1613750,0),(2008562,1),(2298820,3),(2070776,3),(2287655,3),(1836202,3),(1945062,3),(1595656,3),(2147550,3),(1817273,1),(2106476,2),(2024519,3),(1403214,3),(1854236,3),(1954701,1),(1924394,1),(2179121,3),(1602472,3),(2446108,3),(1781840,3),(2347569,3),(1959438,3),(1930294,3),(2035630,3),(1932767,3),(404978,1),(2254131,3),(1733114,3),(2243973,3),(1478804,1),(2191671,3),(1822302,3),(2370034,0),(1258972,1),(2094064,3),(1817676,3),(1829012,3),(2006810,1),(1791614,3),(2098628,3),(1132285,3),(1855401,0),(2304517,3),(2150332,3),(1885331,3),(1531901,3),(2061712,1),(2097307,3),(2392261,3),(1783732,1),(1381404,1),(2109184,3),(2008633,3),(2094155,0),(2366450,3),(1874789,2),(1959332,3),(1995341,3),(1937149,3),(3100510,0),(1731697,3),(1641975,1),(2336960,3),(1496422,3),(1900908,3),(2140203,3),(1757746,1),(2088714,3),(2396701,3),(1591479,0),(2215395,3),(2046090,3),(1621045,3),(1758575,3),(1869653,1),(2076850,3),(2504614,3),(1984153,3),(2354196,0),(1713476,1),(1857718,3),(2216240,1),(1649444,3),(423455,2),(2245195,2),(1525366,3),(1362058,2),(2107648,3),(1995304,0),(1885300,3),(2328749,3),(2175927,3),(1816518,1),(1764645,3),(2318360,3),(1918806,3),(2523692,3),(2285752,0),(2081178,3),(2243621,3),(1855199,3),(1327194,3),(1694020,3),(2275990,3),(1587309,3),(1844025,3),(2108546,3),(1900854,0),(2404153,2),(1842356,3),(763831,2),(1745686,0),(1920945,3),(1770734,3),(2435166,3),(2189240,3),(2119383,3),(2678152,1),(1748260,3),(1935902,3),(2093109,3),(1764625,1),(1769363,3),(1735839,2),(1928337,3),(1965065,2),(1928335,1),(1645155,1),(2202750,1),(2205697,3),(2496366,1),(2190367,3),(2204379,1),(455323,1),(2293276,3),(2139843,3),(1753722,1),(1555093,3),(2062969,2),(1976633,0),(2034761,3),(598828,3),(1942798,3),(1872818,1),(1801123,0),(2208216,1),(1606339,0),(2275949,1),(2368749,3),(1854513,3),(2147319,3),(1276419,3),(1942989,1),(1597522,1),(2328503,3),(1545106,3),(2249628,0),(2509008,0),(1823125,2),(2592512,1),(1636826,1),(2318625,0),(1710417,3),(1853643,3),(2287663,3),(2091243,3),(2262308,3),(1764275,1),(1766094,3),(1964624,3),(2106403,3),(2023453,3),(1937264,3),(1397514,1),(1999995,3),(2142801,3),(1667889,2),(1879012,3),(1865368,1),(1891974,3),(2395337,1),(1629757,2),(2051879,3),(1321870,1),(2023587,3),(1428538,3),(2287715,2),(1588173,2),(2580928,1),(2024432,2),(2303110,2),(1702439,3),(2053463,3),(1559547,3),(1939659,3),(2511190,3),(765446,3),(1351685,0),(1623205,3),(2101341,3),(790628,1),(1814621,3),(1869716,3),(1583421,3),(2302755,1),(1517260,3),(1288558,3),(1924429,0),(1911644,3),(453562,2),(1483013,3),(2357263,3),(1300854,3),(1935179,1),(2617828,1),(2220408,1),(1408101,1),(2034139,3),(481499,3),(1343092,3),(1572315,3),(1931435,3),(2187115,3),(1462900,1),(1904996,3),(2651924,3),(1245492,1),(1291580,1),(848537,3),(1951261,2),(1670345,1),(2094762,3),(1815862,1),(1905041,3),(1711425,1),(1980209,1),(2404463,3),(1869416,3),(2250234,1),(1699755,3),(2628260,3),(2234155,1),(2184339,3),(1659338,1),(770828,3),(1453405,1),(816711,3),(2255372,3),(2908228,3),(2209418,3),(2542420,3),(1210819,1),(1682180,3),(2027140,3),(2132285,3),(1690953,3),(2258858,3),(2243389,2),(2284766,3),(2334879,2),(1663662,1),(2724064,3),(1602613,3),(1821426,3),(1457767,3),(1860353,3),(2343371,3),(790736,1),(2081194,3),(1430132,3),(1821694,3),(1213663,2),(2017020,3),(2191701,2),(1727388,3),(2106550,3),(1758795,3),(1684233,1),(2334873,3),(2334649,3),(1913178,3),(1272878,1),(2201251,3),(2396566,3),(1535108,3),(2007360,1),(2387433,2),(1691917,1),(1650554,3),(1698648,3),(2294677,3),(2188560,2),(2387413,3),(2294189,3),(2195548,0),(2279864,2),(1538403,3),(2585078,3),(1723121,3),(2312390,3),(1327773,3),(1480295,1),(2664258,1),(1160996,1),(1411250,0),(1433811,2),(2309295,3),(2054790,1),(2229499,3),(1426329,3),(2218003,2),(2370248,3),(2094877,3),(2865802,2),(2404311,3),(2375574,0),(2005374,3),(2312890,3),(2265398,3),(2818348,3),(1392214,3),(2401711,3),(2364975,3),(2002718,3),(2378281,3),(2364841,0),(1454468,0),(2338864,1),(1821549,3),(790636,3),(1171222,3),(1535109,1),(1450321,1),(1211956,2),(1813609,3),(2278871,3),(2194499,3),(1837703,1),(2066133,3),(1982177,2),(3066242,3),(2193215,3),(2147728,3),(2247432,3),(1731141,2),(1981115,3),(2481198,3),(2404738,3),(3212568,1),(2017038,0),(2390361,3),(2018086,3),(1932718,2),(2881698,0),(2103267,3),(2042568,1),(1509788,3),(2752200,3),(2296697,3),(1654523,1),(1951264,3),(2415174,3),(2969656,3),(2350496,3),(2294629,3),(1798709,2),(2330546,3),(2431286,3),(2779318,3),(1716767,3),(2415464,3),(2226417,2),(1322269,3),(1854564,3),(2016940,3),(1206543,1),(1800241,3),(359950,3),(1170358,3),(993846,3),(2332579,3),(1894476,3),(2388759,3),(2309021,3),(2944454,3),(2140373,3),(1606378,1),(2457282,3),(1335975,2),(2403419,3),(1714915,3),(2446502,3),(2101473,1),(816442,3),(1905040,3),(2298416,3),(1937118,3),(2315200,1),(2304771,1),(2024544,3),(2234222,3),(1979320,1),(2058107,0),(1937390,3),(2395417,1),(3183630,0),(2792728,3),(2429414,3),(2369396,3),(2404461,3),(1985019,3),(1985966,3),(2403029,3),(2829458,3),(2201221,1),(3103576,2),(2382009,3),(2450186,3),(1657510,1),(1545660,3),(2395385,3),(2224073,3),(1204975,1),(1951216,3),(1321511,2),(2355540,0),(1674047,3),(2425486,3),(2345567,3),(2582008,3),(2331143,3),(1858481,3),(2523600,1),(2083355,3),(2388821,0),(2244901,3),(2349460,3),(2113681,1),(2987732,3),(2896036,0),(2263944,3),(1706620,3),(1821641,3),(1229340,3),(2328549,3),(2265534,3),(2718492,3),(2776074,3),(1311071,1),(2656122,0),(2289538,3),(2406252,0),(2545118,3),(2281159,3),(2258345,2),(1766175,3),(2169322,1),(2017561,2),(2170299,2),(2380331,3),(2599226,3),(2429074,3),(1767354,3),(2352488,1),(2364949,3),(1785612,3),(2499414,3),(1951181,3),(2479800,3),(2692904,0),(2289920,3),(1464191,3),(2140577,3),(1549920,1),(2179116,2),(2013293,3),(2543508,3),(2319580,1),(2991296,0),(1981107,3),(2495118,3),(2167266,3),(2981768,0),(2527186,3),(2235902,3),(2312718,2),(2531258,0),(2333804,0),(3106846,3),(2359024,3),(1847746,3),(2166616,1),(2395421,1),(2440362,3),(2288044,3),(1545754,3),(2165859,0),(1700845,3),(2234261,3),(1483324,3),(2317225,3),(2085957,3),(2084093,3),(2217458,3),(2386278,3),(2770480,3),(3100636,3),(2852460,3),(3122122,3),(1816608,3),(1528071,3),(3321254,3),(2576852,3),(1838520,3),(884726,3),(2991316,3),(1714206,2),(2202928,3),(3521332,3),(1385956,3),(3089388,2),(3252208,3),(1486834,3),(2401715,3),(3074732,3),(2093270,3),(1922679,3),(2207050,2),(2992146,2),(2392326,1),(2524674,3),(2230358,3),(3078718,0),(2226519,3),(1181840,3),(2358891,3),(2414766,3),(2508258,3),(1817287,0),(2334896,3),(2193185,1),(2520512,0),(2325989,3),(2866360,3),(2084989,0),(1067765,3),(2555268,3),(2351098,3),(2042583,0),(1966566,1),(2316411,1),(2304426,1),(1667355,3),(2450440,3),(1856010,1),(2964334,1),(2379082,2),(3348476,1),(2831440,0),(2795478,0),(2796584,0),(3306776,3),(2820466,2),(2967286,3),(2389182,1),(2407574,3),(2991224,0),(2306299,3),(1924396,1),(2201548,3),(1931602,3),(469021,3),(1817081,3),(1864750,1),(1647413,3),(2336846,1),(2243537,3),(3015110,3),(2503154,3),(2620736,3),(1091191,0),(1925435,0),(2386257,3),(2178470,3),(2464018,3),(1786751,1),(2286988,3),(2358592,3),(3198652,3),(2387559,1),(3856638,0),(1825157,1),(2193418,1),(2630134,3),(2852458,0),(3298820,1),(3159812,1),(2262532,1),(1196948,1),(2460488,2),(1621039,0),(1043726,2),(1205537,1),(2404181,3),(1408253,0),(1490017,3),(1686821,3),(2177771,0),(2832470,3),(3186838,3),(2614684,0),(1234721,2),(3118958,3),(2172934,3),(3504064,3),(1921064,3),(1376213,1),(3515892,2),(2024469,3),(1418377,1),(2473682,2),(1837709,3),(864835,1),(2278388,1),(1800246,3),(1253863,1),(3074694,3),(3322420,3),(2771372,3),(3528906,3),(1840309,3),(3469518,3),(2528814,3),(2357291,3),(1621046,3),(458413,3),(1959490,3),(3097084,3),(1843866,3),(2287861,3),(1647668,1),(1702014,3),(2382396,2),(1441395,0),(2209764,1),(2536428,3),(2355495,3),(2388715,3),(3152098,3),(2707858,2),(2203939,3),(1872181,1),(2223990,2),(1430612,3),(3638604,1),(2483260,3),(2582846,3),(3457342,0),(2463288,3),(831387,2),(3257692,3),(2281587,1),(2883512,1),(2004420,3),(2199543,1),(1976000,3),(1877832,1),(1065073,3),(1587310,3),(2095649,3),(2461126,3),(2557490,2),(1631867,1),(1571249,3),(2212008,1),(2412568,2),(2345737,0),(2545186,2),(3184934,2),(2910274,3),(3421270,3),(3416742,1),(2109248,3),(3175038,2),(2103254,3),(1980929,3),(1646971,1),(3777462,3),(2234003,2),(2103281,1),(1742334,3),(3560546,3),(2975578,3),(2761578,3),(1742044,2),(2872732,3),(1267297,2),(2294449,2),(1086772,3),(3307774,2),(2015381,3),(2980706,1),(3110960,1),(2106361,3),(2800240,3),(1291150,3),(2751390,2),(2980648,3),(2369135,1),(787474,2),(435651,3),(1626146,1),(1924435,0),(2333784,0),(2247476,1),(1972571,2),(458481,1),(2835536,3),(1605717,1),(2473602,2),(1355630,3),(2756032,3),(3992752,3),(2402157,1),(3504048,3),(2870612,3),(1600196,1),(3014666,3),(2800038,3),(2231489,2),(2141751,3),(1790864,1),(3169706,3),(2172584,3),(2618500,3),(2717860,1),(365907,1),(3729920,3),(455944,1),(3013588,3),(3983072,3),(2267998,3),(3322940,3),(2140619,3),(3529198,3),(2870708,3),(2011159,3),(3125324,3),(2582802,1),(3097204,1),(3971202,0),(2034031,3),(2652092,3),(3138192,3),(3042408,2),(1679276,1),(1872194,2),(1698641,3),(3720802,0),(2262227,3),(2713180,1),(2955096,3),(2720680,1),(2872718,3),(1971325,1),(2911666,1),(3832158,3),(2675914,1),(816692,3),(2788710,1),(2245084,3),(2562232,3),(2235108,3),(1791528,1),(4114744,2),(2452254,3),(1951265,3),(4044364,1),(2764784,3),(2084970,2),(1100089,1),(2870756,3),(1911658,0),(2465140,3),(3921852,3),(3334794,3),(1020072,3),(1883180,1),(2180411,3),(2980516,3),(2305051,3),(1371150,2),(2802154,3),(1204977,3),(2398231,1),(4150316,0),(2310332,1),(1109624,3),(1823664,3),(3612616,3),(2473794,1),(2170593,3),(2321549,3),(1809398,0),(1528100,2),(4299406,3),(2238050,3),(2784678,3),(3077108,3),(2398249,3),(1361318,3),(2326554,3),(1198156,3),(4056574,3),(2884206,3),(3576084,3),(2737050,3),(2808680,2),(1791681,3),(3316960,3),(2784512,3),(2802144,3),(2436386,3),(3720788,3),(2937898,3),(2179136,1),(1684226,1),(3442006,3),(3479316,3),(3089326,3),(3655522,3),(2093990,1),(1126590,3),(2397535,3),(2920808,1),(3368814,3),(3570168,3),(1865505,3),(1726592,3),(1638002,3),(1121096,3),(2639344,2),(900387,3),(1978532,2),(3800012,0),(2396721,3),(2844798,3),(2788716,3),(2390237,1),(3284618,3),(2474024,1),(3011894,3),(3499048,2),(3565264,2),(3007302,3),(2908856,3),(2955316,1),(3398268,3),(903657,2),(3804984,1),(2515030,2),(3139086,3),(1958043,0),(3263614,3),(2339741,3),(3253930,2),(3062976,3),(1969062,3),(2123146,3),(1767372,3),(1552224,3),(2626350,2),(2261331,0),(3149038,1),(3120408,3),(3086442,0),(1605798,3),(2490326,1),(3661798,3),(2340650,3),(3294200,3),(3328716,1),(3713166,3),(3483194,3),(2088003,0),(3235888,3),(2106529,3),(3387648,3),(2535470,3),(3148348,3),(2752688,1),(3598222,3),(2251281,1),(3145220,3),(3128900,3),(2965412,1),(2593224,3),(2505294,3),(1724965,3),(3344922,2),(1791682,3),(3395184,0),(3104818,3),(3717068,1),(2870808,3),(3003800,2),(3569356,3),(2494280,1),(3696086,2),(1661820,3),(3529612,3),(2645188,3),(3812402,3),(1706598,3),(2274604,3),(3572132,3),(3230162,3),(2936470,3),(3726220,0),(3263732,3),(3021360,3),(2494384,3),(443465,3),(3283556,3),(2933544,3),(3748076,1),(2199436,1),(1384925,0),(3318220,1),(3546114,3),(3139072,2),(4800178,3),(2693664,1),(3365778,3),(1780798,3),(3386954,1),(2929690,3),(3566726,3),(2818178,1),(3060952,3),(4211680,0),(2170439,1),(3457734,1),(3749900,3),(2567038,3),(2316801,3),(3904770,3),(2872724,3),(1555440,3),(2027231,3),(3390572,2),(3104930,3),(3666210,1),(3062074,3),(1921149,1),(2497980,3),(2428170,0),(2965466,3),(1929263,2),(3438514,1),(2758904,2),(1609479,1),(2382422,3),(3717532,2),(3595966,3),(2096672,3),(2561546,3),(2978462,3),(2692250,1),(829150,0),(2183034,1),(1826590,2),(2725962,3),(2377322,2),(2474310,1),(3148952,1),(3717242,3),(3958098,3),(1878942,2),(3010990,3),(2980794,0),(3428912,1),(2751310,3),(2977090,3),(2446042,1),(3840898,3),(5825186,0),(2338151,2),(3153524,1),(4264406,0),(2371399,3),(3068894,3),(3254796,3),(2762970,3),(1821658,3),(3579698,3),(3468260,3),(2145829,1),(3625970,3),(4180032,3),(3107288,1),(3099498,0),(3854234,1),(4003774,3),(2224026,3),(4216934,3),(884732,3),(470752,1),(4191054,3),(2994832,3),(3045616,1),(1617661,3),(2279373,2),(2570858,3),(2322441,3),(1666801,3),(3856042,3),(1823672,1),(1661199,3),(4247740,3),(2908446,3),(3397082,1),(2918436,3),(2820852,3),(4392438,3),(2210769,3),(3711622,3),(2395427,3),(4056738,3),(2273657,1),(3077214,3),(3661298,3),(4145324,3),(2848292,3),(2935476,3),(1392190,3),(3480446,2),(2381941,1),(2096673,3),(4000768,3),(4265878,3),(3707396,3),(3079380,3),(1964418,3),(1655441,3),(2639254,3),(1950135,2),(4171032,3),(3472226,2),(4428814,1),(2126355,3),(4171544,0),(2404425,3),(3704352,3),(3195644,3),(4714032,3),(4466936,3),(2493486,1),(2199571,1),(3058674,1),(1674771,2),(369610,3),(3877674,1),(2872750,0),(4780834,3),(1441953,3),(2515034,1),(2561572,1),(3430042,0),(3019620,0),(4026600,1),(2293640,3),(1340138,0),(3878542,3),(4226388,0),(2637276,1),(1014763,2),(3966404,3),(3844362,3),(3152624,3),(478970,2),(2555736,3),(3205376,0),(4359416,3),(1798684,2),(2120120,1),(1731701,3),(2268016,3),(3715320,2),(4895704,3),(4270516,3),(3440298,3),(3622592,2),(2381249,0),(3824458,3),(1502712,0),(3969208,3),(3764966,3),(4897214,3),(1638355,3),(3416744,1),(3623726,3),(3742378,3),(3278330,3),(3236120,3),(2334733,2),(2140379,1),(4437640,1),(3168230,1),(3487994,2),(1754656,3),(1398426,1),(2582496,3),(3862750,2),(2742544,3),(4046784,3),(2510894,3),(3316948,1),(3659388,3),(1243974,3),(3291148,1),(3397884,0),(1596345,1),(2403021,3),(3850214,1),(4450396,3),(1355683,1),(2118624,3),(2554274,3),(3480796,3),(3682448,1),(2080374,3),(1051904,2),(3488710,1),(2379713,1),(2479478,2),(4298966,3),(2710826,3),(3430416,2),(4979652,0),(2452042,3),(2381111,3),(1976009,0),(1979388,3),(1951266,3),(2402927,3),(3203606,3),(2910904,3),(1663202,0),(2717822,1),(3368222,3),(3170832,3),(1658801,3),(3076658,2),(1390411,1),(4472596,3),(2279339,3),(1524930,3),(3850590,3),(1850457,3),(2488496,3),(3332064,1),(3707106,3),(2131532,3),(3464902,3),(2872462,3),(3460252,3),(2058673,0),(3322364,1),(4767274,3),(2446980,3),(4858280,0),(2884018,1),(2361509,3),(3268668,3),(1596363,1),(3064298,3),(1528854,1),(810819,3),(4594834,3),(3478232,3),(1870548,3),(3717016,3),(3569230,3),(3303652,3),(2978576,2),(2401878,2),(2938956,3),(4576612,1),(1618442,3),(3090670,3),(2321502,0),(4069042,3),(2245003,3),(1895587,1),(3312830,1),(3715122,3),(3757648,1),(3993894,3),(4515684,1),(2537390,3),(4420110,3),(4319698,3),(3172532,3),(4093680,3),(2461340,3),(3529656,3),(4501454,3),(4428788,3),(4392726,3),(4010918,3),(4691166,3),(4263482,3),(4466872,3),(2726560,3),(2911674,3),(4125300,3),(2057392,3),(3397918,3),(3620762,3),(2631186,1),(4439120,3),(4485178,3),(4062536,3),(3953626,3),(2097331,3),(2719848,2),(3766394,3),(3577624,2),(2262161,3),(3616916,3),(1598642,0),(3369806,3),(3722070,3),(3726704,2),(3672742,1),(3775086,1),(5105218,3),(3471098,3),(787524,0),(3756788,3),(3289728,3),(1172049,1),(3567288,3),(3859304,3),(3614530,3),(4084744,3),(2217859,1),(3247714,3),(3544082,3),(4005402,3),(4080768,3),(3833474,1),(2625810,3),(3978720,1),(3296658,1),(4341864,2),(1837562,3),(3422078,3),(790770,0),(3532278,0),(3605262,3),(4153324,3),(3685622,0),(3205394,1),(4145304,3),(3503460,1),(4291590,0),(1254322,3),(2006295,3),(3043252,3),(3819668,1),(5005684,3),(4298958,3),(2262345,1),(3977462,3),(3817188,1),(3700804,2),(4060576,3),(2109127,1),(4899406,3),(6663788,3),(4108134,1),(3727982,3),(4195368,3),(3391348,3),(2582502,3),(3801372,3),(4731504,3),(4425152,3),(4489160,0),(4009278,3),(2049543,2),(3165612,3),(2948840,3),(1365050,0),(3981858,3),(4308714,3),(4503598,3),(3627488,3),(4341532,1),(420293,1),(2967224,2),(3286052,3),(4085084,0),(3837248,3),(2358925,2),(1727776,1),(4178092,3),(2679042,0),(3899796,3),(3654680,3),(2322517,1),(2974918,1),(462335,2),(4235644,1),(2935662,3),(3896100,1),(1727770,3),(1178665,2),(1226766,3),(3735246,2),(3450650,1),(4766604,1),(4183692,1),(12145728,3),(2400463,3),(3118452,1),(3319018,3),(4692234,3),(3431798,0),(2662716,1),(3977428,3),(4794188,3),(2888046,1),(3622332,0),(3508840,2),(12268798,0),(4718770,3),(3564794,1),(5573580,3),(4926026,2),(5284414,3),(2933474,3),(4382872,2),(2552394,3),(2140037,0),(2938496,3),(2304933,2),(475290,1),(1374989,3),(3838728,3),(4370784,3),(1431045,1),(2948356,3),(3882082,3),(3553442,3),(2652118,3),(3410834,3),(1179933,3),(3544218,1),(1712261,3),(2649554,1),(2975590,2),(2381991,3),(2267968,3),(5091548,3),(3072482,1),(2702724,3),(5022702,3),(3040964,2),(3387542,3),(3498820,3),(4139124,3),(2865120,3),(4824302,3),(5538078,3),(3068194,3),(3385516,3),(3453052,3),(3799694,3),(2567026,3),(4438848,3),(803096,3),(3544112,1),(3949660,3),(1292566,3),(2404233,2),(3110958,1),(2674426,3),(2241351,3),(3065204,3),(2277860,3),(2674430,0),(5512872,3),(1628841,3),(1974419,3),(4052882,3),(4094724,3),(2709768,2),(3691740,3),(3960412,1),(4034354,2),(4104054,3),(2452386,3),(2823054,3),(1289401,3),(2112096,3),(4513674,1),(1594972,3),(3014866,3),(2660888,1),(4172430,2),(1083452,2),(4258698,2),(4853102,1),(2093991,2),(2937696,0),(1639084,3),(3531824,3),(3451230,2),(1386697,3),(4651520,3),(4786282,3),(1700841,3),(4196776,1),(2927212,3),(3263904,1),(2005151,1),(4699388,3),(5700672,3),(4302938,1),(4160708,3),(3553976,3),(2547584,3),(2667380,1),(3958780,3),(5348774,1),(3631112,3),(4456850,3),(5274066,3),(4366830,3),(2582782,1),(4520364,3),(5474644,3),(3655972,3),(3774114,1),(5294198,3),(2404435,0),(1355631,3),(5521550,3),(4621872,3),(4326444,3),(4624424,1),(3721936,3),(4262980,1),(2140479,2),(4551882,1),(4361050,3),(1267299,3),(1211837,1),(4016934,3),(1935859,3),(2025690,3),(4667788,3),(1679335,3),(5168192,3),(4468634,3),(2543164,3),(2869728,0),(3183660,3),(4730986,3),(4669986,3),(3393786,3),(2119532,1),(5973626,1),(1473832,3),(918940,0),(4144190,1),(1489889,2),(3521164,3),(3716530,3),(4550098,3),(2261287,3),(4738360,1),(2436682,1),(5153952,3),(4196848,3),(5311514,3),(1124037,2),(3748528,3),(4846340,3),(5526028,0),(1542768,0),(4698584,0),(2094766,1),(3783958,3),(3470600,3),(1355644,0),(3608930,2),(1619029,3),(5247022,1),(5786040,3),(5664684,3),(4007248,3),(4385888,3),(5074352,3),(2671706,3),(4034228,3),(4698684,3),(1860357,2),(3062096,2),(5595168,3),(5078204,3),(4857264,1),(4262174,3),(2788732,3),(4975722,1),(4972582,3),(4247682,3),(490215,0),(2592614,3),(4136084,3),(3882074,1),(3686998,3),(4645368,3),(4048272,3),(5221584,3),(4714782,3),(4731136,1),(2091935,2),(3963816,1),(3741834,2),(4273292,3),(2034800,0),(4666726,3),(4120176,1),(5434870,3),(5974388,3),(3717252,2),(4158876,3),(5254640,3),(1878870,3),(4714568,3),(4392770,3),(3095734,0),(4869556,1),(1212428,1),(3908142,3),(4540710,3),(4645330,3),(4341582,3),(5073620,3),(2361317,1),(4644822,3),(4158096,0),(4954522,3),(1082807,3),(4680182,0),(4547056,3),(3708886,3),(2290819,3),(3991412,1),(4322180,1),(2387499,3),(5059406,3),(2262129,3),(5954304,1),(5898034,3),(4255304,3),(2315582,2),(4649416,3),(5695764,3),(5265960,3),(1878841,2),(3610746,0),(1663655,3),(3387266,3),(1661275,3),(3666024,0),(2321405,3),(2392830,3),(5918104,2),(5789664,3),(1183374,2),(5154288,3),(5598100,1),(3922798,1),(4191702,1),(5867800,3),(1711525,3),(5709236,3),(3289956,1),(5022298,3),(4805316,0),(3896738,3),(3838992,2),(5791884,1),(4961380,3),(4788934,3),(5096536,1),(5571734,3),(4680196,3),(4746506,2),(4443658,3),(5165344,3),(4836736,3),(5908566,2),(1995390,3),(5697078,3),(3721954,3),(5039088,0),(4682708,0),(5629964,3),(4911940,1),(3760922,3),(3797868,3),(5563932,3),(4196450,1),(4871980,2),(3381008,1),(5323662,1),(1985949,1),(3416828,3),(1540011,2),(4682786,2),(3640424,3),(4270492,3),(4981636,3),(4191580,3),(3416532,3),(3628584,3),(1860213,2),(2461150,3),(1316541,3),(5662932,2),(4779026,1),(4396662,3),(4331970,3),(3973012,3),(3352390,3),(3845670,0),(3589968,0),(5173166,1),(5340882,3),(3774802,3),(2638144,1),(4383594,1),(4211044,3),(4277264,3),(3838802,1),(4972062,3),(4991906,3),(4991512,1),(3893280,1),(5016946,1),(4895668,1),(4305148,3),(1920885,3),(4273562,1),(5923962,1),(6261136,1),(4831420,3),(2788432,3),(6162808,2),(4074928,1),(5553782,3),(4950110,3),(3115906,3),(6818880,1),(4870838,3),(5143586,3),(3556230,3),(4197642,3),(4954660,3),(5973032,3),(5709536,3),(451279,3),(4030600,3),(5740806,3),(5540622,2),(1293847,3),(5493706,3),(4116284,3),(3922818,3),(4425200,1),(4465564,3),(3315342,3),(4157510,3),(1412528,3),(1691916,3),(5598192,3),(3731562,1),(5052448,3),(2771200,3),(4144332,3),(3717490,3),(5442430,3),(1219827,3),(3874544,1),(5834660,3),(1734493,3),(5710514,3),(4630562,3),(5155780,3),(3462710,3),(3896198,3),(4287320,3),(2316204,3),(1972591,1),(1790809,1),(4481414,3),(5001718,3),(2334871,3),(2763304,3),(2345759,2),(4411596,3),(4899370,3),(2091256,1),(4799050,3),(5140878,3),(5929750,3),(2872518,3),(3606752,3),(3469046,3),(3890160,1),(5462602,3),(2250912,3),(2406566,3),(5023260,3),(5666304,3),(4695012,3),(6536944,3),(3450958,1),(3967856,3),(5362988,3),(5592248,3),(5322012,3),(5013056,0),(2239822,1),(5390504,2),(5990342,3),(3564472,3),(6524480,1),(1648190,1),(4877122,1),(5541240,3),(1959563,3),(3532216,1),(5439796,3),(491203,3),(6048930,2),(1241317,0),(1536537,3),(1396484,3),(5109784,2),(5580036,3),(5962210,3),(5142400,3),(1935897,3),(4218696,0),(1981128,3),(4995790,1),(1615160,1),(5296086,3),(4649466,1),(1961175,3),(5308322,3),(4622512,3),(5816374,3),(5607714,3),(6738136,0),(5980798,3),(4925292,3),(4956232,3),(1856101,3),(3748172,3),(4131800,3),(4846232,3),(6133130,3),(6423776,2),(5816682,2),(5719700,3),(5723286,1),(3531202,0),(3829920,2),(4686844,1),(3501632,1),(2932536,3),(3348730,3),(3887208,3),(6595896,3),(5997830,3),(7341676,3),(5536736,1),(5649144,3),(5301662,1),(2543472,3),(6029106,3),(974015,3),(4703048,0),(2582576,0),(3296908,1),(5675620,3),(3402236,3),(6142314,3),(2380307,3),(3371366,1),(3486626,3),(6868216,3),(460890,1),(5914996,3),(7608418,3),(3255590,2),(2527336,3),(4209788,3),(4225622,3),(3521126,3),(5580390,3),(5027774,3),(5825380,3),(2396589,3),(1458169,3),(2283362,3),(5519340,3),(5726616,3),(1781058,3),(5294550,2),(1389072,1),(4720702,3),(3654796,0),(1485796,3),(3203620,3),(5862312,3),(4765284,3),(4807950,0),(7401540,3),(5878326,1),(5117876,3),(6265828,1),(2582498,3),(6336356,3),(5776858,3),(4555426,2),(6776462,3),(4468740,3),(3335606,1),(7131870,1),(5176252,3),(4065552,3),(5478478,3),(5657846,3),(6000478,3),(6303866,3),(4348012,3),(3411444,3),(3262342,1),(5462326,3),(6214928,1),(2568862,1),(5715874,3),(7342204,3),(7160070,1),(5829040,3),(6359956,3),(5649108,3),(6294822,3),(6304046,3),(6194530,3),(5859238,2),(5742374,1),(4547194,3),(2291540,1),(5638642,0),(2378507,3),(1469304,1),(3401882,3),(4795124,2),(6805302,1),(2582784,3),(5539054,3),(1753383,1),(1666185,1),(6298780,3),(3986820,1),(3901826,3),(6003368,0),(4082644,3),(6069126,3),(6814914,3),(6053438,1),(5635086,0),(6539420,2),(2226597,3),(4738802,3),(5727282,1),(4717402,0),(4729896,3),(6108178,3),(5795086,3),(5833846,2),(5633706,3),(5328952,3),(6441072,3),(5175450,2),(5687334,1),(5516328,1),(498381,2),(3750872,3),(6108090,3),(6870750,3),(6548966,3),(2338454,3),(6002232,3),(6467968,1),(6095090,3),(6249434,3),(6212496,3),(3906082,3),(2417712,2),(4758646,0),(1034385,0),(5826432,2),(6053440,3),(5791732,0),(4823434,0),(4693358,1),(5247704,2),(4738174,1),(5698320,3),(5348236,3),(5665452,2),(6433880,3),(5651952,3),(5157326,1),(6275840,3),(5340300,1),(3463106,3),(6387232,3),(5833412,3),(3829378,3),(5143226,3),(5723416,3),(11644096,0),(3901340,0),(4513316,3),(5737862,3),(5752360,3),(6185658,3),(3859272,3),(6096194,3),(7260048,3),(5034474,1),(5121816,3),(4126568,0),(3844962,2),(7479784,3),(5164214,3),(6772950,3),(3892172,3),(2557478,3),(2873282,3),(7784604,3),(4500922,3),(1825683,3),(7853242,3),(4701724,1),(2798920,3),(2704998,3),(2548396,3),(5164432,1),(7158430,3),(6878820,3),(5104604,3),(5783956,2),(1365519,3),(1677720,3),(7869818,3),(7875464,3),(4986098,2),(5619332,3),(6644200,3),(7555774,1),(4154756,3),(1289403,3),(5688932,1),(3799232,3),(7768846,0),(5463162,2),(7156222,0),(5095030,3),(5610554,3),(6212478,1),(3778644,2),(1318517,1),(2854926,3),(3606756,3),(6929642,3),(5688996,2),(5304992,3),(4881806,3),(6911608,3),(4912910,1),(6133466,3),(7424200,3),(7279188,3),(7242142,1),(7014006,3),(6663582,3),(4575576,2),(6791096,3),(7349662,3),(4779682,3),(3104988,3),(4073790,3),(2231461,3),(6892462,2),(3458254,1),(3846674,3),(4244998,0),(7485508,3),(6142496,3),(7282468,0),(8459250,3),(6628102,2),(5690360,3),(3829266,1),(7040874,3),(7745068,3),(365545,3),(6921996,1),(2119543,1),(6182908,3),(1517451,3),(1270797,1),(7615302,3),(2531344,3),(3120280,3),(8020896,0),(6217306,3),(1213641,3),(1502407,3),(5177088,3),(1620680,3),(6998518,3),(1727824,2),(1034415,3),(7668870,1),(7534068,2),(6857166,3),(7527538,2),(4633694,1),(4123430,2),(4595882,3),(4652650,3),(5083738,3),(4218572,3),(5848272,3),(5057140,1),(1477834,3),(6412452,1),(5580266,3),(5613484,1),(7365604,3),(6966692,1),(4878482,3),(5861756,3),(6343314,3),(5085924,3),(5437928,3),(6155172,3),(1571234,3),(2328900,3),(2737304,3),(5028340,3),(6266538,2),(2837574,1),(7545566,3),(7775622,1),(1563742,3),(4701182,3),(4669788,3),(7125860,3),(6543652,3),(7545524,3),(8286894,3),(6169920,3),(6257174,3),(3458510,3),(8075192,3),(6776106,3),(4971344,1),(3385524,3),(7959026,2),(6061074,3),(8361028,3),(3525168,1),(5523010,3),(2368254,1),(5427194,3),(6205872,3),(2639336,3),(7231342,1),(7401588,3),(5960374,3),(6485304,3),(4532826,1),(6842126,3),(6140148,3),(6987770,0),(4042818,2),(7137380,3),(8327492,1),(8717590,3),(7074886,2),(5117428,3),(7905466,0),(7250378,3),(5639446,1),(8108198,2),(1259528,2),(7689958,3),(7335184,3),(7098658,3),(8900098,3),(8457260,0),(7237666,3),(8287690,0),(6975598,3),(7134690,3),(4867110,2),(7636672,3),(3208026,1),(6859352,3),(5314190,0),(7008872,1),(6510332,0),(6628394,2),(2126357,1),(4477536,1),(4669296,0),(3289724,2),(6781982,3),(2690226,3),(7464188,3),(8633950,3),(7212726,1),(1308728,3),(6678876,3),(7317324,3),(8331988,3),(6404896,2),(3294746,3),(8479120,3),(5936578,3),(6063050,1),(5001754,3),(5952138,3),(5322168,3),(6204018,0),(4357394,3),(6164698,3),(7791048,0),(6889032,3),(7893992,3),(6258766,0),(6708044,3),(5690810,3),(2709692,3),(6857988,3),(6927152,1),(8359848,3),(5980638,3),(7755856,3),(6522668,3),(8267604,3),(7785128,3),(6081670,0),(4003440,1),(8954732,3),(4006302,3),(8031422,3),(7543930,1),(7241926,3),(5291792,3),(2069797,1),(7838252,1),(6466058,3),(6499752,2),(7086706,1),(7262882,3),(5397194,0),(6728096,3),(7745956,3),(11791228,3),(6435258,1),(7225144,3),(6342316,3),(7468616,0),(7073710,3),(6010628,3),(5511582,3),(6908274,3),(7689052,3),(1285009,3),(8001346,2),(5176580,3),(3322314,1),(2296777,3),(7133686,3),(7236034,3),(5160938,1),(5989218,3),(7167658,3),(5208252,1),(8760724,0),(1235187,3),(1759744,3),(8010544,1),(6418778,3),(5847768,3),(1226837,1),(8332772,0),(5834262,3),(4530422,0),(3203528,1),(7451284,1),(7167630,1),(7467476,0),(8781414,3),(9381998,3),(5571754,3),(5461944,2),(4827558,3),(5117670,3),(8179388,0),(2386490,2),(2386490,3),(9358120,2),(6811018,1),(4139588,2),(5316540,3),(6476140,1),(6078866,3),(6857112,3),(5719748,1),(7605074,3),(437086,3),(3513498,3),(9109492,3),(7458762,0),(2452244,3),(4154664,3),(6513120,3),(8155288,3),(1488606,1),(448115,3),(2395469,1),(8734872,3),(8075260,3),(9670282,3),(4154796,3),(4913966,3),(8858104,2),(7315484,3),(5941692,3),(5884052,3),(1298644,3),(9024106,3),(8169446,3),(1489887,3),(6139732,3),(8323104,3),(6146586,1),(7958736,3),(7374948,3),(6565702,3),(8201170,2),(6107548,3),(7752126,2),(3741700,3),(6292852,3),(6751668,3),(1979376,3),(8350360,3),(9075008,3),(10324144,1),(6590856,2),(6320628,1),(8772262,3),(7456310,3),(6105098,3),(8364368,3),(7131622,3),(8484012,3),(8637428,3),(6806448,2),(4426738,3),(6472976,3),(7979492,3),(1478839,2),(8022928,3),(837563,3),(3361792,2),(8743064,3),(8169552,2),(2365580,3),(6450804,3),(7671064,3),(7547410,3),(8499102,0),(10515852,3),(7711764,1),(9252508,3),(2935510,1),(2762506,3),(7798634,3),(4682804,3),(7286456,3),(9239816,3),(6398184,3),(3387520,3),(1025100,1),(1950186,0),(5503686,3),(4777008,3),(5865326,3),(7984766,1),(8613070,3),(8367814,3),(7634968,1),(4126476,3),(6324278,3),(4648786,3),(7653254,2),(7984734,0),(7349950,3),(8623904,3),(7616148,3),(4729430,1),(10060094,3),(2584384,3),(6924650,1),(5033998,3),(8946378,3),(385887,3),(3224458,2),(7311036,3),(8722346,2),(5606664,3),(1302006,1),(4520988,3),(7909970,3),(10199590,0),(1560220,3),(10767426,1),(8510350,3),(2527338,3),(8079248,1),(7942742,3),(5697572,3),(1206885,2),(8385474,3),(6062774,3),(3281548,3),(6141246,3),(5727208,2),(8359816,3),(3864056,1),(8404614,1),(8579674,0),(4916630,2),(9204204,3),(7488288,3),(9617456,3),(2404465,3),(4477292,0),(8669356,3),(6918220,0),(9632590,3),(4687108,1),(9243946,1),(9426210,3),(7975244,1),(10244726,0),(8041276,0),(1780967,3),(8855960,3),(8707922,3),(9806192,0),(8228288,1),(3038708,3),(8655470,1),(5073642,2),(4180560,3),(6436726,1),(9419834,1),(10308528,1),(5814534,3),(8108206,3),(6348138,1),(1618434,1),(8425034,3),(8659948,3),(6065988,3),(8695030,3),(8236336,0),(9412268,3),(2066051,3),(5691670,0),(6803046,3),(2139881,3),(6902676,3),(783640,1),(8206668,3),(8368406,3),(8856090,3),(7902124,3),(6511932,1),(9217514,3),(8230872,3),(9016016,3),(8019694,3),(8932338,3),(7555072,3),(9486226,3),(2076298,3),(8399664,3),(8758086,3),(1620981,3),(10867768,1),(10521814,3),(8816194,1),(10734928,0),(8949056,3),(5822564,3),(6428676,3),(8712750,3),(9201720,1),(3513548,3),(11107074,3),(7594584,3),(7329656,3),(5363618,1),(9000224,3),(4364194,1),(6439020,3),(9602378,3),(4693588,1),(11334312,3),(8110640,1),(7985692,3),(11621206,3),(9507276,3),(2283336,3),(6259380,1),(9522080,3),(10011336,3),(8856470,3),(7698468,3),(6294226,3),(1860242,1),(6920356,3),(8892756,3),(7715070,3),(6189022,1),(11748354,3),(7280218,3),(6197070,3),(15324860,3),(11052808,3),(9288776,3),(5360232,1),(7825208,3),(6394270,3),(7549996,3),(8456696,3),(8375936,3),(4807408,3),(10334456,0),(7557108,3),(8752440,3),(9116358,3),(9146058,1),(10189300,1),(7167686,1),(7201830,3),(1950235,1),(5563334,3),(7976208,3),(6739094,0),(10244760,3),(8106534,3),(11106266,3),(9021234,1),(5097410,3),(8108164,3),(9418878,3),(11054164,3),(8009938,3),(7781432,1),(6823368,2),(9184592,3),(7765404,3),(9775360,3),(10885406,3),(6535880,3),(5886046,3),(11136630,3),(2948372,3),(8461042,3),(7545266,3),(8151874,0),(7134096,2),(7510346,3),(7713068,3),(9737798,3),(11388406,3),(3794354,3),(10633456,3),(10752062,2),(11895476,3),(7146812,3),(3907584,3),(3111426,3),(9766166,3),(1051906,3),(9214832,3),(1502397,2),(8299768,3),(4858674,3),(6587640,3),(8242084,3),(8936646,3),(9683478,3),(12261880,3),(10816484,3),(3152592,3),(8430598,3),(1552211,0),(9308382,3),(8244784,3),(7772582,3),(9484998,3),(7556122,3),(6048922,0),(10426916,1),(3089630,3),(6834916,3),(8503618,3),(5774060,3),(10276470,3),(6723592,1),(1086064,3),(4566758,3),(5198068,3),(1817232,3),(11905962,0),(7846844,3),(4682266,3),(9686708,3),(10059518,3),(8580274,3),(10288566,1),(6841122,1),(1070874,1),(4798836,3),(10126434,1),(7488208,3),(12841698,1),(10530176,3),(10919380,3),(9624766,1),(7212754,3),(805647,2),(11769162,1),(11681250,3),(13017992,3),(983946,3),(12749596,3),(9072352,3),(10161886,3),(8522006,3),(9086228,3),(2850386,3),(10539608,3),(7126948,3),(13143964,3),(7178640,3),(9902160,3),(6878306,3),(11456054,3),(11161474,3),(10243992,3),(10556022,3),(11284280,3),(8850222,3),(10618286,1),(9820556,1),(8633478,3),(10514222,3),(9770150,3),(9620292,3),(7983894,3),(9893250,3),(4257940,3),(7703924,3),(6475714,3),(6317656,3),(11946300,1),(8368512,3),(10213380,3),(9741310,3),(10441958,3),(2222042,2),(13079086,1),(9148706,3),(10457128,1),(12198524,0),(11771622,0),(9691136,0),(9866072,3),(2222052,3),(6074542,3),(9765226,2),(10612922,2),(9059760,3),(8332922,3),(9354842,3),(9224288,3),(11320192,3),(9900092,3),(9059704,1),(13266132,3),(13152234,0),(11177804,2),(7737786,3),(4685762,3),(9738716,3),(7939766,0),(6673612,3),(7873348,3),(11032374,0),(10525672,2),(11697690,3),(10065694,3),(10279362,3),(9572534,3),(8784956,2),(9729768,1),(10600398,3),(11079148,3),(11007444,3),(12838958,3),(8508734,3),(6285944,1),(7638348,2),(10782876,1),(11394332,3),(8143990,3),(10692788,3),(9843470,3),(8962124,2),(9138170,0),(10344522,3),(7521214,3),(7600716,3),(11612120,1),(4569374,1),(5439812,3),(11394158,3),(8592498,0),(10003008,3),(9777666,2),(10332588,3),(5144174,3),(9286908,2),(5109280,3),(10919362,3),(9784798,2),(6802400,3),(6432466,3),(9130508,0),(11734264,3),(12361974,3),(8521718,3),(8114980,3),(4761112,3),(7888964,1),(10121392,3),(10483044,3),(14091818,3),(9203694,3),(293429,2),(3797512,3),(7979580,3),(14062858,0),(10888594,0),(6341832,3),(499097,1),(3480822,3),(14544192,0),(3228774,3),(12783454,3),(3811906,3),(9115530,3),(10342730,3),(11742798,3),(9844522,3),(1321510,3),(9376612,3),(10155932,3),(6733874,3),(4733624,3),(7069210,1),(5433138,3),(6566576,3),(12801262,1),(9701940,3),(13172796,3),(10676012,3),(3554046,3),(10731768,3),(10954652,3),(8385148,0),(870154,3),(8368408,3),(11003218,0),(10355058,1),(3215824,1),(6334354,3),(9701942,3),(10944760,2),(6902332,2),(6264654,1),(14039582,3),(9243804,1),(8231668,3),(3272066,2),(10307724,3),(993840,3),(10868922,3),(11525644,3),(10016180,3),(14156262,0),(1160419,3),(14843560,0),(10366460,3),(2382320,2),(8110232,2),(9421570,1),(10872600,3),(11804152,0),(4244994,3),(10696784,3),(8893974,3),(7097896,2),(10763820,2),(5492808,3),(9032400,3),(2452150,3),(9639470,3),(8847712,3),(9100054,3),(15526040,3),(7991608,1),(13204490,3),(8399288,3),(8150814,3),(11392272,3),(2953050,3),(10752004,2),(3581652,3),(15943414,3),(14315756,3),(10838180,3),(11286314,3),(7737528,2),(12877640,3),(3108894,1),(11271038,3),(7740496,1),(9274670,3),(8721424,3),(10370710,3),(4995540,3),(11127680,3),(10293406,0),(11389748,3),(12789558,1),(6856242,1),(11847410,3),(9357050,1),(6467266,3),(13069986,1),(12618926,3),(7504818,3),(5034838,3),(14371426,3),(12536294,3),(4552196,3),(14775784,0),(8110246,3),(8456190,3),(14034966,3),(11196036,1),(4513678,3),(9812474,1),(6823148,3),(14324650,3),(14402926,1),(5012504,1),(13575806,3),(8338076,3),(10228134,3),(10341034,1),(13024674,3),(13266998,1),(9620288,3),(11214590,2),(9389998,2),(11700260,1),(9174578,3),(13651628,3),(6992978,3),(12708658,3),(13462472,3),(8718158,3),(9714030,3),(11621960,3),(8521876,3),(13086274,0),(14371818,3),(14331144,1),(10101702,3),(4028464,1),(14164234,1),(11160650,1),(13845792,1),(12889404,2),(15206378,3),(11212276,3),(9054192,3),(8633464,1),(16492574,1),(11379572,3),(2397461,1),(11555492,3),(5164438,3),(13675832,0),(9731598,3),(8356942,3),(13989030,3),(11245972,3),(1464335,2),(15248702,3),(1877830,3),(7550014,3),(13235822,3),(4998632,2),(8097030,3),(6710474,3),(11755740,3),(14817272,3),(2463208,1),(13403046,3),(13320622,3),(13610562,3),(12412888,3),(8115900,3),(8851148,1),(5108870,1),(7657566,3),(15387742,1),(9419884,3),(11138512,1),(5315212,3),(13841850,3),(4123432,1),(1745960,3),(14128670,2),(10298840,3),(8041270,3),(9783600,1),(13352968,3),(12141112,1),(13560574,3),(13145534,1),(10298810,2),(3513500,3),(14145426,0),(15521050,3),(3704428,1),(18250460,3),(10648342,3),(11703050,3),(15255876,3),(11934846,3),(5113044,1),(5151570,3),(7466442,3),(1649418,2),(13650600,3),(12048234,3),(10623646,3),(14866710,3),(12593682,1),(16953666,3),(11866324,3),(9288046,3),(3706352,3),(10954984,1),(12262116,0),(14614892,3),(15090124,0),(8110652,3),(10083340,3),(14814040,3),(8246646,1),(14298328,3),(10935560,3),(13327038,3),(10731256,3),(14152140,3),(4593060,1),(11909878,3),(7322224,3),(15109082,3),(17146978,3),(15010292,3),(9764362,3),(18925334,3),(1655389,2),(12873562,3),(5500218,1),(15474916,3),(15006566,3),(15445056,2),(14913250,3),(4614584,3),(10999120,3),(11128440,1),(15791034,3),(10373934,1),(5181830,3),(8093700,3),(14317880,3),(10665338,3),(14145004,2),(10541410,3),(11727866,3),(10403420,3),(14362474,3),(15096128,1),(14444726,3),(11897478,3),(14309446,1),(13139228,2),(14641788,3),(15218000,3),(11671006,2),(4139928,3),(9114286,3),(13932410,0),(15438542,3),(3726682,3),(11488024,3),(13482828,3),(17076046,1),(11813216,3),(1596342,3),(4273800,3),(21848598,1),(16183464,3),(13623880,3),(21994906,3),(24803056,0),(1630029,2),(9411972,3),(6277462,1),(11564570,3),(10931784,3),(11291274,3),(10278918,3),(10168670,3),(7405458,2),(3447590,3),(1488589,1),(3915174,3),(9288822,3),(6160448,3),(13056052,3),(11306932,3),(8178634,2),(22227936,3),(14859416,1),(14428598,3),(15426294,2),(8745676,3),(10640346,3),(13430858,1),(14300504,3),(12610794,3),(14905650,3),(13833688,2),(12718300,3),(1016150,0),(13669038,3),(14888898,3),(15325794,3),(8760708,3),(14644048,1),(20227026,0),(16377816,3),(2935622,3),(9784708,3),(21307994,0),(16428256,3),(14668630,1),(10638522,3),(14208870,2),(10665342,3),(9362722,3),(14966324,3),(10954600,3),(12844910,3),(10855768,3),(10365998,2),(11210390,3),(14209916,3),(25971180,1),(12261776,2),(17663992,3),(11145118,3),(2906216,3),(6718170,1),(16419074,0),(26537229,3),(14923260,0),(13345606,3),(12758060,3),(9185206,3),(9583840,3),(24070754,3),(14007288,3),(26440896,3),(439572,1),(5433140,3),(13539646,1),(26744173,1),(5971474,3),(1517268,3),(1462764,1),(19500164,3),(24068064,0),(15671028,3),(9603212,3),(27502426,3),(15398776,2),(15326988,2),(8400584,3),(14230388,3),(18257464,3),(6791350,3),(15428940,3),(27816768,3),(11358390,3),(15509244,3),(15339570,0),(13603966,3),(9362930,3),(13375076,3),(13086266,3),(13521006,2),(17527468,3),(19623240,3),(1695843,3),(11820950,3),(17009710,3),(15422224,3); +/*!40000 ALTER TABLE `Bechdel` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `Movies` +-- + +DROP TABLE IF EXISTS `Movies`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `Movies` ( + `movieId` bigint DEFAULT NULL, + `movieType` text, + `primaryTitle` text, + `originalTitle` text, + `isAdult` tinyint(1) DEFAULT NULL, + `startYear` bigint DEFAULT NULL, + `endYear` bigint DEFAULT NULL, + `runtimeMinutes` text, + KEY `ix_Movies_movieId` (`movieId`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `Movies` +-- + +LOCK TABLES `Movies` WRITE; +/*!40000 ALTER TABLE `Movies` DISABLE KEYS */; +INSERT INTO `Movies` VALUES (1,'short','Carmencita','Carmencita',1,1894,NULL,'1'),(2,'short','Le clown et ses chiens','Le clown et ses chiens',1,1892,NULL,'5'),(3,'short','Pauvre Pierrot','Pauvre Pierrot',1,1892,NULL,'4'),(4,'short','Un bon bock','Un bon bock',1,1892,NULL,'12'),(5,'short','Blacksmith Scene','Blacksmith Scene',1,1893,NULL,'1'),(6,'short','Chinese Opium Den','Chinese Opium Den',1,1894,NULL,'1'),(7,'short','Corbett and Courtney Before the Kinetograph','Corbett and Courtney Before the Kinetograph',1,1894,NULL,'1'),(8,'short','Edison Kinetoscopic Record of a Sneeze','Edison Kinetoscopic Record of a Sneeze',1,1894,NULL,'1'),(9,'movie','Miss Jerry','Miss Jerry',1,1894,NULL,'45'),(11,'short','Akrobatisches Potpourri','Akrobatisches Potpourri',1,1895,NULL,'1'),(12,'short','The Arrival of a Train','L\'arrivée d\'un train à La Ciotat',1,1896,NULL,'1'),(14,'short','The Waterer Watered','L\'arroseur arrosé',1,1895,NULL,'1'),(15,'short','Autour d\'une cabine','Autour d\'une cabine',1,1894,NULL,'2'),(16,'short','Boat Leaving the Port','Barque sortant du port',1,1895,NULL,'1'),(17,'short','Italienischer Bauerntanz','Italienischer Bauerntanz',1,1895,NULL,'1'),(22,'short','Blacksmith Scene','Les forgerons',1,1895,NULL,'1'),(29,'short','Baby\'s Meal','Repas de bébé',1,1895,NULL,'1'),(41,'short','Bataille de neige','Bataille de neige',1,1897,NULL,'1'),(91,'short','The House of the Devil','Le manoir du diable',1,1896,NULL,'3'),(131,'short','A Terrible Night','Une nuit terrible',1,1896,NULL,'1'),(211,'short','The Astronomer\'s Dream; or, the Man in the Moon','La lune à un mètre',1,1898,NULL,'3'),(230,'short','Cinderella','Cendrillon',1,1899,NULL,'6'),(246,'short','A Turn of the Century Illusionist','L\'impressionniste fin de siècle',1,1899,NULL,'1'),(272,'short','As Seen Through a Telescope','As Seen Through a Telescope',1,1900,NULL,'1'),(300,'short','The Enchanted Drawing','The Enchanted Drawing',1,1900,NULL,'2'),(304,'short','Grandma\'s Reading Glass','Grandma\'s Reading Glass',1,1900,NULL,'2'),(306,'short','Le duel d\'Hamlet','Le duel d\'Hamlet',1,1900,NULL,'2'),(313,'short','Let Me Dream Again','Let Me Dream Again',1,1900,NULL,'1'),(359,'short','The India Rubber Head','L\'homme à la tête en caoutchouc',1,1901,NULL,'3'),(413,'short','The Devil\'s Money Bags','Les trésors de satan',1,1902,NULL,'3'),(417,'short','A Trip to the Moon','Le voyage dans la lune',1,1902,NULL,'13'),(439,'short','The Great Train Robbery','The Great Train Robbery',1,1903,NULL,'11'),(455,'short','The Music Lover','Le mélomane',1,1903,NULL,'3'),(499,'short','An Impossible Voyage','Le voyage à travers l\'impossible',1,1904,NULL,'24'),(554,'short','Humorous Phases of Funny Faces','Humorous Phases of Funny Faces',1,1906,NULL,'3'),(567,'short','The 400 Tricks of the Devil','Les quatre cents farces du diable',1,1906,NULL,'17'),(574,'movie','The Story of the Kelly Gang','The Story of the Kelly Gang',1,1906,NULL,'70'),(1009,'short','Princess Nicotine; or, the Smoke Fairy','Princess Nicotine; or, The Smoke Fairy',1,1909,NULL,'5'),(2101,'movie','Cleopatra','Cleopatra',1,1912,NULL,'100'),(2281,'short','The Invaders','The Invaders',1,1912,NULL,'41'),(3424,'short','Suspense','Suspense',1,1913,NULL,'10'),(3512,'short','The Voyage of the Bourrichon Family','Le voyage de la famille Bourrichon',1,1913,NULL,'15'),(3973,'movie','A Florida Enchantment','A Florida Enchantment',1,1914,NULL,'63'),(4972,'movie','The Birth of a Nation','The Birth of a Nation',1,1915,NULL,'195'),(6745,'movie','Gretchen the Greenhorn','Gretchen the Greenhorn',1,1916,NULL,'58'),(6864,'movie','Intolerance','Intolerance: Love\'s Struggle Throughout the Ages',1,1916,NULL,'163'),(7361,'movie','Snow White','Snow White',1,1916,NULL,'63'),(7507,'short','The Vagabond','The Vagabond',1,1916,NULL,'34'),(8443,'movie','The Poor Little Rich Girl','The Poor Little Rich Girl',1,1917,NULL,'78'),(8489,'movie','Raffles, the Amateur Cracksman','Raffles, the Amateur Cracksman',1,1917,NULL,'70'),(8499,'movie','Rebecca of Sunnybrook Farm','Rebecca of Sunnybrook Farm',1,1917,NULL,'78'),(8519,'movie','A Romance of the Redwoods','A Romance of the Redwoods',1,1917,NULL,'91'),(8652,'movie','A Tale of Two Cities','A Tale of Two Cities',1,1917,NULL,'70'),(8844,'short','Are Crooks Dishonest?','Are Crooks Dishonest?',1,1918,NULL,'13'),(9652,'movie','Stella Maris','Stella Maris',1,1918,NULL,'84'),(9682,'movie','Tarzan of the Apes','Tarzan of the Apes',1,1918,NULL,'73'),(9968,'movie','Broken Blossoms','Broken Blossoms or The Yellow Man and the Girl',1,1919,NULL,'90'),(10281,'movie','I Don\'t Want to Be a Man','Ich möchte kein Mann sein',1,1918,NULL,'45'),(10323,'movie','The Cabinet of Dr. Caligari','Das Cabinet des Dr. Caligari',1,1920,NULL,'76'),(10879,'movie','When the Clouds Roll by','When the Clouds Roll By',1,1919,NULL,'85'),(11588,'movie','Pollyanna','Pollyanna',1,1920,NULL,'58'),(11870,'movie','Within Our Gates','Within Our Gates',1,1920,NULL,'79'),(11979,'movie','The Blot','The Blot',1,1921,NULL,'91'),(12349,'movie','The Kid','The Kid',1,1921,NULL,'68'),(12364,'movie','The Phantom Carriage','Körkarlen',1,1921,NULL,'107'),(12532,'movie','Orphans of the Storm','Orphans of the Storm',1,1921,NULL,'150'),(12543,'short','The Paleface','The Paleface',1,1922,NULL,'20'),(13086,'movie','Dr. Mabuse, the Gambler','Dr. Mabuse, der Spieler',1,1922,NULL,'242'),(13140,'movie','Foolish Wives','Foolish Wives',1,1922,NULL,'117'),(13257,'movie','Häxan','Häxan',1,1922,NULL,'91'),(13367,'movie','The Man from Beyond','The Man from Beyond',1,1922,NULL,'74'),(13427,'movie','Nanook of the North','Nanook of the North',1,1922,NULL,'78'),(13428,'movie','Nathan der Weise','Nathan der Weise',1,1922,NULL,'128'),(13442,'movie','Nosferatu','Nosferatu, eine Symphonie des Grauens',1,1922,NULL,'94'),(13496,'movie','Phantom','Phantom',1,1922,NULL,'125'),(13626,'short','The Smiling Madame Beudet','La souriante Madame Beudet',1,1923,NULL,'38'),(13845,'short','Help!','Au secours!',1,1924,NULL,'18'),(14341,'movie','Our Hospitality','Our Hospitality',1,1923,NULL,'65'),(14429,'movie','Safety Last!','Safety Last!',1,1923,NULL,'74'),(14469,'movie','The Silent Command','The Silent Command',1,1923,NULL,'80'),(14611,'movie','Why Worry?','Why Worry?',1,1923,NULL,'63'),(14624,'movie','A Woman of Paris: A Drama of Fate','A Woman of Paris: A Drama of Fate',1,1923,NULL,'82'),(14945,'movie','Girl Shy','Girl Shy',1,1924,NULL,'87'),(15116,'movie','Manhandled','Manhandled',1,1924,NULL,'75'),(15163,'movie','The Navigator','The Navigator',1,1924,NULL,'59'),(15174,'movie','Die Nibelungen: Kriemhild\'s Revenge','Die Nibelungen: Kriemhilds Rache',1,1924,NULL,'129'),(15175,'movie','Die Nibelungen: Siegfried','Die Nibelungen: Siegfried',1,1924,NULL,'143'),(15324,'movie','Sherlock Jr.','Sherlock Jr.',1,1924,NULL,'45'),(15361,'movie','Strike','Stachka',1,1925,NULL,'82'),(15400,'movie','The Thief of Bagdad','The Thief of Bagdad',1,1924,NULL,'155'),(15498,'movie','Wild Oranges','Wild Oranges',1,1924,NULL,'88'),(15532,'movie','The Adventures of Prince Achmed','Die Abenteuer des Prinzen Achmed',1,1926,NULL,'80'),(15624,'movie','The Big Parade','The Big Parade',1,1925,NULL,'151'),(15648,'movie','Battleship Potemkin','Bronenosets Potemkin',1,1925,NULL,'75'),(15841,'movie','The Freshman','The Freshman',1,1925,NULL,'77'),(15863,'movie','Go West','Go West',1,1925,NULL,'69'),(15864,'movie','The Gold Rush','The Gold Rush',1,1925,NULL,'95'),(15881,'movie','Greed','Greed',1,1924,NULL,'140'),(16039,'movie','The Lost World','The Lost World',1,1925,NULL,'110'),(16220,'movie','The Phantom of the Opera','The Phantom of the Opera',1,1925,NULL,'93'),(16332,'movie','Seven Chances','Seven Chances',1,1925,NULL,'56'),(16884,'movie','Flesh and the Devil','Flesh and the Devil',1,1926,NULL,'112'),(16895,'movie','For Heaven\'s Sake','For Heaven\'s Sake',1,1926,NULL,'58'),(17136,'movie','Metropolis','Metropolis',1,1927,NULL,'153'),(17410,'movie','So\'s Your Old Man','So\'s Your Old Man',1,1926,NULL,'67'),(17449,'movie','The Temptress','The Temptress',1,1926,NULL,'62'),(17825,'movie','When Boys Leave Home','Downhill',1,1927,NULL,'80'),(17925,'movie','The General','The General',1,1926,NULL,'78'),(18033,'movie','It','It',1,1927,NULL,'72'),(18037,'movie','The Jazz Singer','The Jazz Singer',1,1927,NULL,'88'),(18051,'movie','The Kid Brother','The Kid Brother',1,1927,NULL,'82'),(18183,'movie','My Best Girl','My Best Girl',1,1927,NULL,'80'),(18192,'movie','Napoleon','Napoléon vu par Abel Gance',1,1927,NULL,'330'),(18199,'movie','Nevada','Nevada',1,1927,NULL,'70'),(18455,'movie','Sunrise','Sunrise: A Song of Two Humans',1,1927,NULL,'94'),(18528,'movie','The Unknown','The Unknown',1,1927,NULL,'63'),(18578,'movie','Wings','Wings',1,1927,NULL,'144'),(18684,'movie','Beggars of Life','Beggars of Life',1,1928,NULL,'84'),(18737,'movie','Pandora\'s Box','Die Büchse der Pandora',1,1929,NULL,'109'),(18742,'movie','The Cameraman','The Cameraman',1,1928,NULL,'76'),(18773,'movie','The Circus','The Circus',1,1928,NULL,'72'),(18806,'movie','The Crowd','The Crowd',1,1928,NULL,'98'),(18839,'movie','The Docks of New York','The Docks of New York',1,1928,NULL,'76'),(18937,'movie','A Girl in Every Port','A Girl in Every Port',1,1928,NULL,'78'),(19130,'movie','The Man Who Laughs','The Man Who Laughs',1,1928,NULL,'110'),(19237,'movie','Our Dancing Daughters','Our Dancing Daughters',1,1928,NULL,'85'),(19254,'movie','The Passion of Joan of Arc','La passion de Jeanne d\'Arc',1,1928,NULL,'110'),(19258,'movie','The Patsy','The Patsy',1,1928,NULL,'78'),(19290,'movie','The Power of the Press','The Power of the Press',1,1928,NULL,'62'),(19304,'movie','The Racket','The Racket',1,1928,NULL,'84'),(19412,'movie','Speedy','Speedy',1,1928,NULL,'85'),(19421,'movie','Steamboat Bill, Jr.','Steamboat Bill, Jr.',1,1928,NULL,'70'),(19571,'movie','While the City Sleeps','While the City Sleeps',1,1928,NULL,'66'),(19702,'movie','Blackmail','Blackmail',1,1929,NULL,'85'),(19729,'movie','The Broadway Melody','The Broadway Melody',1,1929,NULL,'100'),(19760,'movie','Man with a Movie Camera','Chelovek s kino-apparatom',1,1929,NULL,'68'),(19777,'movie','The Cocoanuts','The Cocoanuts',1,1929,NULL,'96'),(20286,'movie','A Throw of Dice','Prapanch Pash',1,1929,NULL,'74'),(20530,'short','An Andalusian Dog','Un chien andalou',1,1929,NULL,'16'),(20572,'movie','Welcome Danger','Welcome Danger',1,1929,NULL,'113'),(20629,'movie','All Quiet on the Western Front','All Quiet on the Western Front',1,1930,NULL,'152'),(20640,'movie','Animal Crackers','Animal Crackers',1,1930,NULL,'97'),(20641,'movie','Anna Christie','Anna Christie',1,1930,NULL,'89'),(20642,'movie','Anna Christie','Anna Christie',1,1930,NULL,'85'),(20668,'movie','The Bat Whispers','The Bat Whispers',1,1930,NULL,'83'),(20670,'movie','Be Yourself!','Be Yourself!',1,1930,NULL,'65'),(20697,'movie','The Blue Angel','Der blaue Engel',1,1930,NULL,'104'),(21015,'movie','Juno and the Paycock','Juno and the Paycock',1,1929,NULL,'85'),(21040,'movie','Ladies of Leisure','Ladies of Leisure',1,1930,NULL,'99'),(21079,'movie','Little Caesar','Little Caesar',1,1931,NULL,'79'),(21148,'movie','Min and Bill','Min and Bill',1,1930,NULL,'69'),(21156,'movie','Morocco','Morocco',1,1930,NULL,'92'),(21165,'movie','Murder!','Murder!',1,1930,NULL,'104'),(21577,'movie','L\'Age d\'Or','L\'âge d\'or',1,1930,NULL,'60'),(21730,'movie','The Champ','The Champ',1,1931,NULL,'86'),(21735,'movie','The Cheat','The Cheat',1,1931,NULL,'74'),(21739,'movie','La Chienne','La chienne',1,1931,NULL,'91'),(21746,'movie','Cimarron','Cimarron',1,1931,NULL,'123'),(21749,'movie','City Lights','City Lights',1,1931,NULL,'87'),(21814,'movie','Dracula','Dracula',1,1931,NULL,'75'),(21815,'movie','Drácula','Drácula',1,1931,NULL,'104'),(21884,'movie','Frankenstein','Frankenstein',1,1931,NULL,'70'),(21985,'movie','Hyppolit, the Butler','Hyppolit a lakáj',1,1931,NULL,'72'),(22000,'movie','Indiscreet','Indiscreet',1,1931,NULL,'92'),(22054,'movie','The Last Flight','The Last Flight',1,1931,NULL,'76'),(22074,'movie','The Smiling Lieutenant','The Smiling Lieutenant',1,1931,NULL,'93'),(22100,'movie','M','M - Eine Stadt sucht einen Mörder',1,1931,NULL,'117'),(22158,'movie','Monkey Business','Monkey Business',1,1931,NULL,'77'),(22183,'movie','Mädchen in Uniform','Mädchen in Uniform',1,1931,NULL,'88'),(22208,'movie','Night Nurse','Night Nurse',1,1931,NULL,'72'),(22251,'movie','Pardon Us','Pardon Us',1,1931,NULL,'56'),(22286,'movie','The Public Enemy','The Public Enemy',1,1931,NULL,'83'),(22395,'movie','The Skin Game','The Skin Game',1,1931,NULL,'85'),(22397,'movie','Skippy','Skippy',1,1931,NULL,'85'),(22458,'movie','Tabu: A Story of the South Seas','Tabu: A Story of the South Seas',1,1931,NULL,'86'),(22599,'movie','À Nous la Liberté','À nous la liberté',1,1931,NULL,'104'),(22614,'movie','The Age of Consent','The Age of Consent',1,1932,NULL,'63'),(22694,'movie','The Blue Light','Das blaue Licht - Eine Berglegende aus den Dolomiten',1,1932,NULL,'85'),(22718,'movie','Boudu Saved from Drowning','Boudu sauvé des eaux',1,1932,NULL,'85'),(22913,'movie','Freaks','Freaks',1,1932,NULL,'64'),(22940,'movie','The Girl from Calgary','The Girl from Calgary',1,1932,NULL,'64'),(22958,'movie','Grand Hotel','Grand Hotel',1,1932,NULL,'112'),(23027,'movie','Horse Feathers','Horse Feathers',1,1932,NULL,'68'),(23042,'movie','I Am a Fugitive from a Chain Gang','I Am a Fugitive from a Chain Gang',1,1932,NULL,'92'),(23158,'movie','Love Me Tonight','Love Me Tonight',1,1932,NULL,'104'),(23196,'movie','Mata Hari','Mata Hari',1,1931,NULL,'89'),(23213,'movie','Merrily We Go to Hell','Merrily We Go to Hell',1,1932,NULL,'83'),(23238,'movie','The Most Dangerous Game','The Most Dangerous Game',1,1932,NULL,'63'),(23285,'movie','Number 17','Number Seventeen',1,1932,NULL,'66'),(23293,'movie','The Old Dark House','The Old Dark House',1,1932,NULL,'72'),(23385,'movie','Red-Headed Woman','Red-Headed Woman',1,1932,NULL,'79'),(23395,'movie','East of Shanghai','Rich and Strange',1,1931,NULL,'110'),(23427,'movie','Scarface','Scarface',1,1932,NULL,'93'),(23458,'movie','Shanghai Express','Shanghai Express',1,1932,NULL,'82'),(23582,'movie','Thirteen Women','Thirteen Women',1,1932,NULL,'73'),(23590,'movie','Three on a Match','Three on a Match',1,1932,NULL,'63'),(23634,'movie','I Was Born, But...','Otona no miru ehon - Umarete wa mita keredo',1,1932,NULL,'100'),(23649,'movie','Vampyr','Vampyr',1,1932,NULL,'75'),(23694,'movie','White Zombie','White Zombie',1,1932,NULL,'69'),(23753,'movie','Alice in Wonderland','Alice in Wonderland',1,1933,NULL,'76'),(23775,'movie','Baby Face','Baby Face',1,1933,NULL,'71'),(23814,'movie','The Bitter Tea of General Yen','The Bitter Tea of General Yen',1,1932,NULL,'88'),(23876,'movie','Cavalcade','Cavalcade',1,1933,NULL,'112'),(23932,'movie','Day of Reckoning','Day of Reckoning',1,1933,NULL,'69'),(23935,'movie','The Death Kiss','The Death Kiss',1,1932,NULL,'75'),(23940,'movie','Design for Living','Design for Living',1,1933,NULL,'91'),(23969,'movie','Duck Soup','Duck Soup',1,1933,NULL,'69'),(24008,'movie','Female','Female',1,1933,NULL,'60'),(24028,'movie','Footlight Parade','Footlight Parade',1,1933,NULL,'104'),(24034,'movie','42nd Street','42nd Street',1,1933,NULL,'89'),(24069,'movie','Gold Diggers of 1933','Gold Diggers of 1933',1,1933,NULL,'97'),(24184,'movie','The Invisible Man','The Invisible Man',1,1933,NULL,'71'),(24188,'movie','Island of Lost Souls','Island of Lost Souls',1,1932,NULL,'70'),(24210,'movie','The Kennel Murder Case','The Kennel Murder Case',1,1933,NULL,'73'),(24216,'movie','King Kong','King Kong',1,1933,NULL,'100'),(24264,'movie','Little Women','Little Women',1,1933,NULL,'115'),(24432,'short','The Peanut Vendor','The Peanut Vendor',1,1933,NULL,'11'),(24473,'movie','The Private Life of Henry VIII','The Private Life of Henry VIII',1,1933,NULL,'97'),(24481,'movie','Queen Christina','Queen Christina',1,1933,NULL,'99'),(24548,'movie','She Done Him Wrong','She Done Him Wrong',1,1933,NULL,'66'),(24601,'movie','Sons of the Desert','Sons of the Desert',1,1933,NULL,'68'),(24625,'movie','A Study in Scarlet','A Study in Scarlet',1,1933,NULL,'72'),(24679,'movie','Tomorrow at Seven','Tomorrow at Seven',1,1933,NULL,'62'),(24727,'movie','The Vampire Bat','The Vampire Bat',1,1933,NULL,'65'),(24831,'movie','Anne of Green Gables','Anne of Green Gables',1,1934,NULL,'78'),(24844,'movie','L\'Atalante','L\'Atalante',1,1934,NULL,'89'),(24961,'movie','The Cat\'s-Paw','The Cat\'s-Paw',1,1934,NULL,'102'),(24991,'movie','Cleopatra','Cleopatra',1,1934,NULL,'100'),(25004,'movie','The Count of Monte Cristo','The Count of Monte Cristo',1,1934,NULL,'113'),(25091,'movie','Evelyn Prentice','Evelyn Prentice',1,1934,NULL,'79'),(25301,'movie','Imitation of Life','Imitation of Life',1,1934,NULL,'111'),(25316,'movie','It Happened One Night','It Happened One Night',1,1934,NULL,'105'),(25318,'movie','It\'s a Gift','It\'s a Gift',1,1934,NULL,'68'),(25423,'movie','The Lost Patrol','The Lost Patrol',1,1934,NULL,'73'),(25424,'movie','Lost in the Stratosphere','Lost in the Stratosphere',1,1934,NULL,'64'),(25452,'movie','The Man Who Knew Too Much','The Man Who Knew Too Much',1,1934,NULL,'75'),(25465,'movie','Maniac','Maniac',1,1934,NULL,'51'),(25543,'movie','Mystery Liner','Mystery Liner',1,1934,NULL,'62'),(25586,'movie','Of Human Bondage','Of Human Bondage',1,1934,NULL,'83'),(25617,'movie','The Painted Veil','The Painted Veil',1,1934,NULL,'85'),(25746,'movie','The Scarlet Empress','The Scarlet Empress',1,1934,NULL,'104'),(25755,'movie','Search for Beauty','Search for Beauty',1,1934,NULL,'78'),(25822,'movie','Spitfire','Spitfire',1,1934,NULL,'87'),(26029,'movie','The 39 Steps','The 39 Steps',1,1935,NULL,'86'),(26071,'movie','Anna Karenina','Anna Karenina',1,1935,NULL,'95'),(26138,'movie','The Bride of Frankenstein','Bride of Frankenstein',1,1935,NULL,'75'),(26599,'movie','The Lady in Scarlet','The Lady in Scarlet',1,1935,NULL,'65'),(26663,'movie','Mad Love','Mad Love',1,1935,NULL,'68'),(26667,'movie','Magnificent Obsession','Magnificent Obsession',1,1935,NULL,'112'),(26752,'movie','Mutiny on the Bounty','Mutiny on the Bounty',1,1935,NULL,'132'),(26768,'movie','Naughty Marietta','Naughty Marietta',1,1935,NULL,'105'),(26778,'movie','A Night at the Opera','A Night at the Opera',1,1935,NULL,'96'),(26939,'movie','The Riverside Murder','The Riverside Murder',1,1935,NULL,'64'),(26942,'movie','Roberta','Roberta',1,1935,NULL,'106'),(27125,'movie','Top Hat','Top Hat',1,1935,NULL,'101'),(27387,'movie','Born to Dance','Born to Dance',1,1936,NULL,'106'),(27407,'movie','Bullets or Ballots','Bullets or Ballots',1,1936,NULL,'82'),(27438,'movie','The Charge of the Light Brigade','The Charge of the Light Brigade',1,1936,NULL,'115'),(27545,'movie','Dracula\'s Daughter','Dracula\'s Daughter',1,1936,NULL,'71'),(27552,'movie','Bizarre, Bizarre','Drôle de drame',1,1937,NULL,'94'),(27562,'movie','Earthworm Tractors','Earthworm Tractors',1,1936,NULL,'69'),(27652,'movie','Fury','Fury',1,1936,NULL,'92'),(27698,'movie','The Great Ziegfeld','The Great Ziegfeld',1,1936,NULL,'176'),(27752,'movie','The Only Son','Hitori musuko',1,1936,NULL,'87'),(27977,'movie','Modern Times','Modern Times',1,1936,NULL,'87'),(27996,'movie','Mr. Deeds Goes to Town','Mr. Deeds Goes to Town',1,1936,NULL,'115'),(28000,'movie','The Criminal Within','Murder at Glen Athol',1,1936,NULL,'67'),(28010,'movie','My Man Godfrey','My Man Godfrey',1,1936,NULL,'94'),(28021,'movie','Osaka Elegy','Naniwa erejî',1,1936,NULL,'71'),(28092,'movie','Pennies from Heaven','Pennies from Heaven',1,1936,NULL,'81'),(28096,'movie','The Petrified Forest','The Petrified Forest',1,1936,NULL,'82'),(28174,'movie','Revolt of the Zombies','Revolt of the Zombies',1,1936,NULL,'65'),(28203,'movie','Romeo and Juliet','Romeo and Juliet',1,1936,NULL,'125'),(28212,'movie','Sabotage','Sabotage',1,1936,NULL,'76'),(28216,'movie','San Francisco','San Francisco',1,1936,NULL,'115'),(28231,'movie','Secret Agent','Secret Agent',1,1936,NULL,'86'),(28333,'movie','Swing Time','Swing Time',1,1936,NULL,'103'),(28355,'movie','Theodora Goes Wild','Theodora Goes Wild',1,1936,NULL,'94'),(28356,'movie','These Three','These Three',1,1936,NULL,'93'),(28505,'movie','Wife vs. Secretary','Wife vs. Secretary',1,1936,NULL,'88'),(28597,'movie','The Awful Truth','The Awful Truth',1,1937,NULL,'90'),(28683,'movie','Camille','Camille',1,1936,NULL,'109'),(28691,'movie','Captains Courageous','Captains Courageous',1,1937,NULL,'117'),(28739,'movie','Conquest','Conquest',1,1937,NULL,'113'),(28772,'movie','A Day at the Races','A Day at the Races',1,1937,NULL,'111'),(29087,'movie','Knight Without Armor','Knight Without Armour',1,1937,NULL,'107'),(29146,'movie','The Life of Emile Zola','The Life of Emile Zola',1,1937,NULL,'116'),(29162,'movie','Lost Horizon','Lost Horizon',1,1937,NULL,'132'),(29192,'movie','Make Way for Tomorrow','Make Way for Tomorrow',1,1937,NULL,'91'),(29207,'movie','The Mandarin Mystery','The Mandarin Mystery',1,1936,NULL,'66'),(29217,'movie','Marked Woman','Marked Woman',1,1937,NULL,'96'),(29322,'movie','Nothing Sacred','Nothing Sacred',1,1937,NULL,'77'),(29377,'movie','Parnell','Parnell',1,1937,NULL,'118'),(29442,'movie','The Prisoner of Zenda','The Prisoner of Zenda',1,1937,NULL,'101'),(29453,'movie','Pépé le Moko','Pépé le Moko',1,1937,NULL,'94'),(29546,'movie','Shall We Dance','Shall We Dance',1,1937,NULL,'109'),(29565,'movie','Murder at the Baskervilles','Silver Blaze',1,1937,NULL,'71'),(29583,'movie','Snow White and the Seven Dwarfs','Snow White and the Seven Dwarfs',1,1937,NULL,'83'),(29604,'movie','Stage Door','Stage Door',1,1937,NULL,'92'),(29608,'movie','Stella Dallas','Stella Dallas',1,1937,NULL,'106'),(29682,'movie','Topper','Topper',1,1937,NULL,'97'),(29751,'movie','Wee Willie Winkie','Wee Willie Winkie',1,1937,NULL,'100'),(29811,'movie','Young and Innocent','Young and Innocent',1,1937,NULL,'80'),(29843,'movie','The Adventures of Robin Hood','The Adventures of Robin Hood',1,1938,NULL,'102'),(29870,'movie','Angels with Dirty Faces','Angels with Dirty Faces',1,1938,NULL,'97'),(29929,'movie','Bluebeard\'s Eighth Wife','Bluebeard\'s Eighth Wife',1,1938,NULL,'85'),(29942,'movie','Boys Town','Boys Town',1,1938,NULL,'96'),(29947,'movie','Bringing Up Baby','Bringing Up Baby',1,1938,NULL,'102'),(29971,'movie','Carefree','Carefree',1,1938,NULL,'83'),(30044,'movie','The Dawn Patrol','The Dawn Patrol',1,1938,NULL,'103'),(30127,'movie','The Baker\'s Wife','La femme du boulanger',1,1938,NULL,'133'),(30149,'movie','Four Daughters','Four Daughters',1,1938,NULL,'90'),(30241,'movie','Holiday','Holiday',1,1938,NULL,'95'),(30287,'movie','Jezebel','Jezebel',1,1938,NULL,'104'),(30341,'movie','The Lady Vanishes','The Lady Vanishes',1,1938,NULL,'96'),(30396,'movie','The Mad Miss Manton','The Mad Miss Manton',1,1938,NULL,'80'),(30473,'movie','Mr. Wong, Detective','Mr. Wong, Detective',1,1938,NULL,'69'),(30755,'movie','The Sisters','The Sisters',1,1938,NULL,'99'),(31022,'movie','The Adventures of Sherlock Holmes','The Adventures of Sherlock Holmes',1,1939,NULL,'85'),(31060,'movie','At the Circus','At the Circus',1,1939,NULL,'87'),(31066,'movie','Babes in Arms','Babes in Arms',1,1939,NULL,'94'),(31210,'movie','Dark Victory','Dark Victory',1,1939,NULL,'104'),(31225,'movie','Destry Rides Again','Destry Rides Again',1,1939,NULL,'95'),(31235,'movie','Dodge City','Dodge City',1,1939,NULL,'104'),(31252,'movie','Drums Along the Mohawk','Drums Along the Mohawk',1,1939,NULL,'104'),(31322,'movie','The Flying Deuces','The Flying Deuces',1,1939,NULL,'69'),(31359,'movie','Gaslight','Gaslight',1,1940,NULL,'84'),(31381,'movie','Gone with the Wind','Gone with the Wind',1,1939,NULL,'238'),(31385,'movie','Goodbye, Mr. Chips','Goodbye, Mr. Chips',1,1939,NULL,'114'),(31387,'movie','The Gorilla','The Gorilla',1,1939,NULL,'66'),(31397,'movie','Gulliver\'s Travels','Gulliver\'s Travels',1,1939,NULL,'76'),(31398,'movie','Gunga Din','Gunga Din',1,1939,NULL,'117'),(31455,'movie','The Hunchback of Notre Dame','The Hunchback of Notre Dame',1,1939,NULL,'116'),(31505,'movie','Jamaica Inn','Jamaica Inn',1,1939,NULL,'108'),(31507,'movie','Jesse James','Jesse James',1,1939,NULL,'106'),(31514,'movie','Le Jour Se Leve','Le jour se lève',1,1939,NULL,'93'),(31516,'movie','Juarez','Juarez',1,1939,NULL,'125'),(31593,'movie','Love Affair','Love Affair',1,1939,NULL,'88'),(31679,'movie','Mr. Smith Goes to Washington','Mr. Smith Goes to Washington',1,1939,NULL,'129'),(31680,'movie','Mr. Wong in Chinatown','Mr. Wong in Chinatown',1,1939,NULL,'71'),(31709,'movie','Nancy Drew... Reporter','Nancy Drew... Reporter',1,1939,NULL,'68'),(31725,'movie','Ninotchka','Ninotchka',1,1939,NULL,'110'),(31742,'movie','Of Mice and Men','Of Mice and Men',1,1939,NULL,'106'),(31762,'movie','Only Angels Have Wings','Only Angels Have Wings',1,1939,NULL,'121'),(31826,'movie','The Private Lives of Elizabeth and Essex','The Private Lives of Elizabeth and Essex',1,1939,NULL,'106'),(31885,'movie','The Rules of the Game','La règle du jeu',1,1939,NULL,'110'),(31971,'movie','Stagecoach','Stagecoach',1,1939,NULL,'96'),(31981,'movie','The Story of Alexander Graham Bell','The Story of Alexander Graham Bell',1,1939,NULL,'98'),(32138,'movie','The Wizard of Oz','The Wizard of Oz',1,1939,NULL,'102'),(32143,'movie','The Women','The Women',1,1939,NULL,'133'),(32145,'movie','Wuthering Heights','Wuthering Heights',1,1939,NULL,'104'),(32155,'movie','Young Mr. Lincoln','Young Mr. Lincoln',1,1939,NULL,'100'),(32194,'movie','All This, and Heaven Too','All This, and Heaven Too',1,1940,NULL,'141'),(32211,'movie','Anne of Windy Poplars','Anne of Windy Poplars',1,1940,NULL,'86'),(32215,'movie','The Ape','The Ape',1,1940,NULL,'62'),(32273,'movie','Boom Town','Boom Town',1,1940,NULL,'119'),(32339,'movie','A Chump at Oxford','A Chump at Oxford',1,1940,NULL,'62'),(32349,'movie','Comrade X','Comrade X',1,1940,NULL,'104'),(32376,'movie','Dance, Girl, Dance','Dance, Girl, Dance',1,1940,NULL,'90'),(32406,'movie','Chamber of Horrors','The Door with Seven Locks',1,1940,NULL,'89'),(32455,'movie','Fantasia','Fantasia',1,1940,NULL,'124'),(32484,'movie','Foreign Correspondent','Foreign Correspondent',1,1940,NULL,'120'),(32551,'movie','The Grapes of Wrath','The Grapes of Wrath',1,1940,NULL,'129'),(32553,'movie','The Great Dictator','The Great Dictator',1,1940,NULL,'125'),(32599,'movie','His Girl Friday','His Girl Friday',1,1939,NULL,'92'),(32676,'movie','Knute Rockne All American','Knute Rockne All American',1,1940,NULL,'98'),(32690,'movie','The Last Alarm','The Last Alarm',1,1940,NULL,'61'),(32701,'movie','The Letter','The Letter',1,1940,NULL,'95'),(32811,'movie','The Mortal Storm','The Mortal Storm',1,1940,NULL,'100'),(32904,'movie','The Philadelphia Story','The Philadelphia Story',1,1940,NULL,'112'),(32910,'movie','Pinocchio','Pinocchio',1,1940,NULL,'88'),(32943,'movie','Pride and Prejudice','Pride and Prejudice',1,1940,NULL,'118'),(32946,'movie','Primrose Path','Primrose Path',1,1940,NULL,'93'),(32976,'movie','Rebecca','Rebecca',1,1940,NULL,'130'),(32983,'movie','The Return of Frank James','The Return of Frank James',1,1940,NULL,'92'),(33021,'movie','Santa Fe Trail','Santa Fe Trail',1,1940,NULL,'110'),(33028,'movie','The Sea Hawk','The Sea Hawk',1,1940,NULL,'127'),(33045,'movie','The Shop Around the Corner','The Shop Around the Corner',1,1940,NULL,'99'),(33105,'movie','Strange Cargo','Strange Cargo',1,1940,NULL,'113'),(33152,'movie','The Thief of Bagdad','The Thief of Bagdad',1,1940,NULL,'106'),(33373,'movie','Ball of Fire','Ball of Fire',1,1941,NULL,'111'),(33436,'movie','Buck Privates','Buck Privates',1,1941,NULL,'84'),(33459,'movie','Cheers for Miss Bishop','Cheers for Miss Bishop',1,1941,NULL,'95'),(33467,'movie','Citizen Kane','Citizen Kane',1,1941,NULL,'119'),(33533,'movie','The Devil and Miss Jones','The Devil and Miss Jones',1,1941,NULL,'92'),(33563,'movie','Dumbo','Dumbo',1,1941,NULL,'64'),(33627,'movie','49th Parallel','49th Parallel',1,1941,NULL,'123'),(33717,'movie','High Sierra','High Sierra',1,1940,NULL,'100'),(33723,'movie','Hold That Ghost','Hold That Ghost',1,1941,NULL,'86'),(33727,'movie','Mr. Bug Goes to Town','Mr. Bug Goes to Town',1,1941,NULL,'78'),(33729,'movie','How Green Was My Valley','How Green Was My Valley',1,1941,NULL,'118'),(33787,'movie','King of the Zombies','King of the Zombies',1,1941,NULL,'67'),(33802,'movie','Ladies in Retirement','Ladies in Retirement',1,1941,NULL,'91'),(33804,'movie','The Lady Eve','The Lady Eve',1,1941,NULL,'94'),(33836,'movie','The Little Foxes','The Little Foxes',1,1941,NULL,'116'),(33870,'movie','The Maltese Falcon','The Maltese Falcon',1,1941,NULL,'100'),(33874,'movie','The Man Who Came to Dinner','The Man Who Came to Dinner',1,1941,NULL,'112'),(33891,'movie','Meet John Doe','Meet John Doe',1,1941,NULL,'135'),(33902,'movie','Men of Boys Town','Men of Boys Town',1,1941,NULL,'106'),(33928,'movie','Murder by Invitation','Murder by Invitation',1,1941,NULL,'67'),(34091,'movie','The Reluctant Dragon','The Reluctant Dragon',1,1941,NULL,'74'),(34175,'movie','The Shanghai Gesture','The Shanghai Gesture',1,1941,NULL,'95'),(34240,'movie','Sullivan\'s Travels','Sullivan\'s Travels',1,1941,NULL,'90'),(34241,'movie','Sun Valley Serenade','Sun Valley Serenade',1,1941,NULL,'86'),(34248,'movie','Suspicion','Suspicion',1,1941,NULL,'99'),(34328,'movie','Two-Faced Woman','Two-Faced Woman',1,1941,NULL,'90'),(34398,'movie','The Wolf Man','The Wolf Man',1,1941,NULL,'70'),(34492,'movie','Bambi','Bambi',1,1942,NULL,'69'),(34521,'movie','Black Dragons','Black Dragons',1,1942,NULL,'64'),(34583,'movie','Casablanca','Casablanca',1,1942,NULL,'102'),(34587,'movie','Cat People','Cat People',1,1942,NULL,'73'),(34591,'movie','There Was a Father','Chichi ariki',1,1942,NULL,'94'),(34613,'movie','The Corpse Vanishes','The Corpse Vanishes',1,1942,NULL,'64'),(34746,'movie','For Me and My Gal','For Me and My Gal',1,1942,NULL,'104'),(34770,'movie','The Gay Sisters','The Gay Sisters',1,1942,NULL,'110'),(34882,'movie','I Married an Angel','I Married an Angel',1,1942,NULL,'84'),(35015,'movie','The Magnificent Ambersons','The Magnificent Ambersons',1,1942,NULL,'88'),(35017,'movie','Carnival of Sinners','La main du diable',1,1943,NULL,'78'),(35019,'movie','The Major and the Minor','The Major and the Minor',1,1942,NULL,'100'),(35093,'movie','Mrs. Miniver','Mrs. Miniver',1,1942,NULL,'134'),(35140,'movie','Now, Voyager','Now, Voyager',1,1942,NULL,'117'),(35160,'movie','Obsession','Ossessione',1,1943,NULL,'140'),(35279,'movie','Saboteur','Saboteur',1,1942,NULL,'109'),(35317,'movie','Sherlock Holmes and the Secret Weapon','Sherlock Holmes and the Secret Weapon',1,1942,NULL,'68'),(35360,'movie','Son of Fury: The Story of Benjamin Blake','Son of Fury: The Story of Benjamin Blake',1,1942,NULL,'98'),(35415,'movie','Tales of Manhattan','Tales of Manhattan',1,1942,NULL,'118'),(35423,'movie','Kate & Leopold','Kate & Leopold',1,2001,NULL,'118'),(35446,'movie','To Be or Not to Be','To Be or Not to Be',1,1942,NULL,'99'),(35567,'movie','Woman of the Year','Woman of the Year',1,1942,NULL,'114'),(35636,'movie','Angels of Sin','Les anges du péché',1,1943,NULL,'97'),(35735,'movie','China','China',1,1943,NULL,'79'),(35753,'movie','Le Corbeau','Le corbeau',1,1943,NULL,'92'),(35770,'movie','Cry \'Havoc\'','Cry \'Havoc\'',1,1943,NULL,'97'),(35881,'movie','Fires Were Started','Fires Were Started',1,1943,NULL,'63'),(35942,'movie','Girl Crazy','Girl Crazy',1,1943,NULL,'99'),(35957,'movie','Guadalcanal Diary','Guadalcanal Diary',1,1943,NULL,'93'),(35979,'movie','Heaven Can Wait','Heaven Can Wait',1,1943,NULL,'112'),(36027,'movie','I Walked with a Zombie','I Walked with a Zombie',1,1943,NULL,'69'),(36112,'movie','The Life and Death of Colonel Blimp','The Life and Death of Colonel Blimp',1,1943,NULL,'163'),(36160,'movie','Millions Like Us','Millions Like Us',1,1943,NULL,'103'),(36172,'movie','The More the Merrier','The More the Merrier',1,1943,NULL,'104'),(36230,'movie','Old Acquaintance','Old Acquaintance',1,1943,NULL,'110'),(36244,'movie','The Ox-Bow Incident','The Ox-Bow Incident',1,1943,NULL,'75'),(36323,'movie','Sahara','Sahara',1,1943,NULL,'97'),(36326,'short','Saludos Amigos','Saludos Amigos',1,1942,NULL,'42'),(36341,'movie','The Seventh Victim','The Seventh Victim',1,1943,NULL,'71'),(36342,'movie','Shadow of a Doubt','Shadow of a Doubt',1,1943,NULL,'108'),(36363,'movie','The Sky\'s the Limit','The Sky\'s the Limit',1,1943,NULL,'89'),(36367,'movie','So Proudly We Hail!','So Proudly We Hail!',1,1943,NULL,'126'),(36400,'movie','Sanshiro Sugata','Sugata Sanshirô',1,1943,NULL,'79'),(36418,'movie','Tender Comrade','Tender Comrade',1,1943,NULL,'102'),(36506,'movie','Day of Wrath','Vredens dag',1,1943,NULL,'97'),(36515,'movie','Watch on the Rhine','Watch on the Rhine',1,1943,NULL,'114'),(36613,'movie','Arsenic and Old Lace','Arsenic and Old Lace',1,1944,NULL,'118'),(36695,'movie','A Canterbury Tale','A Canterbury Tale',1,1944,NULL,'124'),(36723,'movie','Cover Girl','Cover Girl',1,1944,NULL,'107'),(36775,'movie','Double Indemnity','Double Indemnity',1,1944,NULL,'107'),(36818,'movie','The Punch Bowl','Die Feuerzangenbowle',1,1944,NULL,'97'),(36868,'movie','The Best Years of Our Lives','The Best Years of Our Lives',1,1946,NULL,'170'),(36891,'movie','Hail the Conquering Hero','Hail the Conquering Hero',1,1944,NULL,'101'),(36914,'movie','Torment','Hets',1,1944,NULL,'101'),(36940,'movie','I\'ll Be Seeing You','I\'ll Be Seeing You',1,1944,NULL,'85'),(36947,'movie','The Most Beautiful','Ichiban utsukushiku',1,1944,NULL,'85'),(36969,'movie','Jane Eyre','Jane Eyre',1,1943,NULL,'97'),(37008,'movie','Laura','Laura',1,1944,NULL,'88'),(37017,'movie','Lifeboat','Lifeboat',1,1944,NULL,'97'),(37059,'movie','Meet Me in St. Louis','Meet Me in St. Louis',1,1944,NULL,'113'),(37076,'movie','Minstrel Man','Minstrel Man',1,1944,NULL,'67'),(37094,'movie','Mr. Skeffington','Mr. Skeffington',1,1944,NULL,'146'),(37120,'movie','National Velvet','National Velvet',1,1944,NULL,'123'),(37280,'movie','Since You Went Away','Since You Went Away',1,1944,NULL,'177'),(37365,'movie','The Thin Man Goes Home','The Thin Man Goes Home',1,1944,NULL,'100'),(37382,'movie','To Have and Have Not','To Have and Have Not',1,1944,NULL,'100'),(37415,'movie','The Uninvited','The Uninvited',1,1944,NULL,'99'),(37469,'movie','The Woman in the Window','The Woman in the Window',1,1944,NULL,'107'),(37508,'movie','Along Came Jones','Along Came Jones',1,1945,NULL,'90'),(37514,'movie','Anchors Aweigh','Anchors Aweigh',1,1945,NULL,'140'),(37536,'movie','The Bells of St. Mary\'s','The Bells of St. Mary\'s',1,1945,NULL,'126'),(37558,'movie','Brief Encounter','Brief Encounter',1,1945,NULL,'86'),(37614,'movie','The Corn Is Green','The Corn Is Green',1,1945,NULL,'115'),(37630,'movie','Les Dames du Bois de Boulogne','Les dames du Bois de Boulogne',1,1945,NULL,'86'),(37635,'movie','Dead of Night','Dead of Night',1,1945,NULL,'103'),(37638,'movie','Detour','Detour',1,1945,NULL,'66'),(37671,'movie','The Enchanted Cottage','The Enchanted Cottage',1,1945,NULL,'91'),(37674,'movie','Children of Paradise','Les enfants du paradis',1,1945,NULL,'189'),(37800,'movie','I Know Where I\'m Going!','I Know Where I\'m Going!',1,1945,NULL,'92'),(37820,'movie','Isle of the Dead','Isle of the Dead',1,1945,NULL,'71'),(37843,'movie','Keep Your Powder Dry','Keep Your Powder Dry',1,1945,NULL,'93'),(37865,'movie','Leave Her to Heaven','Leave Her to Heaven',1,1945,NULL,'110'),(37884,'movie','The Lost Weekend','The Lost Weekend',1,1945,NULL,'101'),(37913,'movie','Mildred Pierce','Mildred Pierce',1,1945,NULL,'111'),(37954,'movie','Objective, Burma!','Objective, Burma!',1,1945,NULL,'142'),(38017,'movie','The Red Dragon','The Red Dragon',1,1945,NULL,'64'),(38057,'movie','Scarlet Street','Scarlet Street',1,1945,NULL,'102'),(38109,'movie','Spellbound','Spellbound',1,1945,NULL,'111'),(38166,'movie','The Three Caballeros','The Three Caballeros',1,1944,NULL,'71'),(38250,'movie','The Wicked Lady','The Wicked Lady',1,1945,NULL,'104'),(38259,'movie','The Woman in Green','The Woman in Green',1,1945,NULL,'68'),(38348,'movie','Beauty and the Beast','La Belle et la Bête',1,1946,NULL,'96'),(38355,'movie','The Big Sleep','The Big Sleep',1,1946,NULL,'114'),(38409,'movie','The Chase','The Chase',1,1946,NULL,'86'),(38453,'movie','The Dark Corner','The Dark Corner',1,1946,NULL,'99'),(38461,'movie','Deception','Deception',1,1946,NULL,'115'),(38474,'movie','Devotion','Devotion',1,1946,NULL,'107'),(38494,'movie','Dressed to Kill','Dressed to Kill',1,1946,NULL,'76'),(38499,'movie','Duel in the Sun','Duel in the Sun',1,1946,NULL,'146'),(38559,'movie','Gilda','Gilda',1,1946,NULL,'110'),(38574,'movie','Great Expectations','Great Expectations',1,1946,NULL,'118'),(38589,'movie','The Harvey Girls','The Harvey Girls',1,1946,NULL,'102'),(38650,'movie','It\'s a Wonderful Life','It\'s a Wonderful Life',1,1946,NULL,'130'),(38661,'movie','The Jolson Story','The Jolson Story',1,1946,NULL,'128'),(38718,'movie','Make Mine Music','Make Mine Music',1,1946,NULL,'75'),(38733,'movie','Stairway to Heaven','A Matter of Life and Death',1,1946,NULL,'104'),(38762,'movie','My Darling Clementine','My Darling Clementine',1,1946,NULL,'97'),(38787,'movie','Notorious','Notorious',1,1946,NULL,'102'),(38854,'movie','The Postman Always Rings Twice','The Postman Always Rings Twice',1,1946,NULL,'113'),(38890,'movie','Rome, Open City','Roma città aperta',1,1945,NULL,'103'),(38924,'movie','The Seventh Veil','The Seventh Veil',1,1945,NULL,'94'),(38934,'movie','She-Wolf of London','She-Wolf of London',1,1946,NULL,'61'),(38969,'movie','Song of the South','Song of the South',1,1946,NULL,'94'),(38990,'movie','The Strange Woman','The Strange Woman',1,1946,NULL,'100'),(38991,'movie','The Stranger','The Stranger',1,1946,NULL,'95'),(39017,'movie','Terror by Night','Terror by Night',1,1946,NULL,'60'),(39054,'movie','Two Sisters from Boston','Two Sisters from Boston',1,1946,NULL,'112'),(39112,'movie','The Years Between','The Years Between',1,1946,NULL,'88'),(39192,'movie','Black Narcissus','Black Narcissus',1,1947,NULL,'101'),(39204,'movie','Body and Soul','Body and Soul',1,1947,NULL,'104'),(39220,'movie','Brighton Rock','Brighton Rock',1,1948,NULL,'92'),(39236,'movie','Calendar Girl','Calendar Girl',1,1947,NULL,'88'),(39286,'movie','Crossfire','Crossfire',1,1947,NULL,'86'),(39302,'movie','Dark Passage','Dark Passage',1,1947,NULL,'106'),(39324,'movie','Dishonored Lady','Dishonored Lady',1,1947,NULL,'85'),(39349,'movie','The Egg and I','The Egg and I',1,1947,NULL,'108'),(39360,'movie','The Exile','The Exile',1,1947,NULL,'95'),(39404,'movie','Fun and Fancy Free','Fun & Fancy Free',1,1947,NULL,'73'),(39416,'movie','Gentleman\'s Agreement','Gentleman\'s Agreement',1,1947,NULL,'118'),(39420,'movie','The Ghost and Mrs. Muir','The Ghost and Mrs. Muir',1,1947,NULL,'104'),(39431,'movie','Good News','Good News',1,1947,NULL,'93'),(39441,'movie','Gunfighters','Gunfighters',1,1947,NULL,'87'),(39628,'movie','Miracle on 34th Street','Miracle on 34th Street',1,1947,NULL,'96'),(39631,'movie','Monsieur Verdoux','Monsieur Verdoux',1,1947,NULL,'124'),(39650,'movie','Nada','Nada',1,1947,NULL,'76'),(39677,'movie','Odd Man Out','Odd Man Out',1,1947,NULL,'116'),(39689,'movie','Out of the Past','Out of the Past',1,1947,NULL,'97'),(39694,'movie','The Paradine Case','The Paradine Case',1,1947,NULL,'125'),(39819,'movie','The Shocking Miss Pilgrim','The Shocking Miss Pilgrim',1,1947,NULL,'85'),(39938,'movie','The Unfinished Dance','The Unfinished Dance',1,1947,NULL,'101'),(39949,'movie','It Happened in Europe','Valahol Európában',1,1947,NULL,'100'),(39969,'movie','The Voice of the Turtle','The Voice of the Turtle',1,1947,NULL,'103'),(40068,'movie','Abbott and Costello Meet Frankenstein','Bud Abbott and Lou Costello Meet Frankenstein',1,1948,NULL,'83'),(40098,'movie','Anna Karenina','Anna Karenina',1,1948,NULL,'139'),(40183,'movie','Bonnie Prince Charlie','Bonnie Prince Charlie',1,1948,NULL,'136'),(40202,'movie','Call Northside 777','Call Northside 777',1,1948,NULL,'112'),(40214,'movie','Casbah','Casbah',1,1948,NULL,'94'),(40221,'movie','Caught','Caught',1,1949,NULL,'88'),(40242,'movie','Command Decision','Command Decision',1,1948,NULL,'112'),(40308,'movie','Easter Parade','Easter Parade',1,1948,NULL,'103'),(40321,'movie','Enchantment','Enchantment',1,1948,NULL,'100'),(40379,'movie','The Fuller Brush Man','The Fuller Brush Man',1,1948,NULL,'93'),(40416,'movie','Hamlet','Hamlet',1,1948,NULL,'154'),(40458,'movie','I Remember Mama','I Remember Mama',1,1948,NULL,'134'),(40491,'movie','Joan of Arc','Joan of Arc',1,1948,NULL,'145'),(40497,'movie','Jour de Fête','Jour de fête',1,1949,NULL,'70'),(40506,'movie','Key Largo','Key Largo',1,1948,NULL,'100'),(40522,'movie','Bicycle Thieves','Ladri di biciclette',1,1948,NULL,'89'),(40525,'movie','The Lady from Shanghai','The Lady from Shanghai',1,1947,NULL,'87'),(40558,'movie','Macbeth','Macbeth',1,1948,NULL,'107'),(40580,'movie','Melody Time','Melody Time',1,1948,NULL,'75'),(40613,'movie','Mr. Blandings Builds His Dream House','Mr. Blandings Builds His Dream House',1,1948,NULL,'94'),(40636,'movie','The Naked City','The Naked City',1,1948,NULL,'96'),(40724,'movie','Red River','Red River',1,1948,NULL,'133'),(40725,'movie','The Red Shoes','The Red Shoes',1,1948,NULL,'135'),(40746,'movie','Rope','Rope',1,1948,NULL,'80'),(40806,'movie','The Snake Pit','The Snake Pit',1,1948,NULL,'108'),(40897,'movie','The Treasure of the Sierra Madre','The Treasure of the Sierra Madre',1,1947,NULL,'126'),(41088,'movie','Act of Violence','Act of Violence',1,1948,NULL,'82'),(41090,'movie','Adam\'s Rib','Adam\'s Rib',1,1949,NULL,'101'),(41094,'movie','The Adventures of Ichabod and Mr. Toad','The Adventures of Ichabod and Mr. Toad',1,1949,NULL,'68'),(41113,'movie','All the King\'s Men','All the King\'s Men',1,1949,NULL,'110'),(41154,'movie','Late Spring','Banshun',1,1949,NULL,'108'),(41158,'movie','The Barkleys of Broadway','The Barkleys of Broadway',1,1949,NULL,'109'),(41257,'movie','Come to the Stable','Come to the Stable',1,1949,NULL,'94'),(41373,'movie','Flamingo Road','Flamingo Road',1,1949,NULL,'94'),(41386,'movie','The Fountainhead','The Fountainhead',1,1949,NULL,'114'),(41452,'movie','The Heiress','The Heiress',1,1949,NULL,'115'),(41498,'movie','I Was a Male War Bride','I Was a Male War Bride',1,1949,NULL,'105'),(41546,'movie','Kind Hearts and Coronets','Kind Hearts and Coronets',1,1949,NULL,'106'),(41587,'movie','A Letter to Three Wives','A Letter to Three Wives',1,1949,NULL,'103'),(41594,'movie','Little Women','Little Women',1,1949,NULL,'122'),(41628,'movie','The Man on the Eiffel Tower','The Man on the Eiffel Tower',1,1949,NULL,'97'),(41650,'movie','Mighty Joe Young','Mighty Joe Young',1,1949,NULL,'94'),(41716,'movie','On the Town','On the Town',1,1949,NULL,'98'),(41719,'movie','Orpheus','Orphée',1,1950,NULL,'112'),(41746,'movie','Pinky','Pinky',1,1949,NULL,'102'),(41859,'movie','The Set-Up','The Set-Up',1,1949,NULL,'73'),(41947,'movie','Tarzan\'s Magic Fountain','Tarzan\'s Magic Fountain',1,1949,NULL,'73'),(41959,'movie','The Third Man','The Third Man',1,1949,NULL,'104'),(42004,'movie','Under Capricorn','Under Capricorn',1,1949,NULL,'117'),(42031,'movie','Flame of My Love','Waga koi wa moenu',1,1949,NULL,'96'),(42192,'movie','All About Eve','All About Eve',1,1950,NULL,'138'),(42208,'movie','The Asphalt Jungle','The Asphalt Jungle',1,1950,NULL,'112'),(42276,'movie','Born Yesterday','Born Yesterday',1,1950,NULL,'103'),(42296,'movie','Caged','Caged',1,1950,NULL,'96'),(42332,'movie','Cinderella','Cinderella',1,1950,NULL,'74'),(42369,'movie','D.O.A.','D.O.A.',1,1949,NULL,'83'),(42436,'movie','Les Enfants Terribles','Les enfants terribles',1,1950,NULL,'105'),(42469,'movie','The Flying Saucer','The Flying Saucer',1,1950,NULL,'69'),(42530,'movie','Gun Crazy','Gun Crazy',1,1950,NULL,'87'),(42546,'movie','Harvey','Harvey',1,1950,NULL,'104'),(42593,'movie','In a Lonely Place','In a Lonely Place',1,1950,NULL,'94'),(42619,'movie','Diary of a Country Priest','Journal d\'un curé de campagne',1,1951,NULL,'115'),(42792,'movie','No Way Out','No Way Out',1,1950,NULL,'106'),(42832,'movie','Panic in the Streets','Panic in the Streets',1,1950,NULL,'96'),(42876,'movie','Rashomon','Rashômon',1,1950,NULL,'88'),(42958,'movie','Scandal','Shûbun',1,1950,NULL,'104'),(42994,'movie','Stage Fright','Stage Fright',1,1950,NULL,'110'),(43012,'movie','Summer Stock','Summer Stock',1,1950,NULL,'108'),(43014,'movie','Sunset Blvd.','Sunset Blvd.',1,1950,NULL,'110'),(43025,'movie','Tarzan and the Slave Girl','Tarzan and the Slave Girl',1,1950,NULL,'74'),(43045,'movie','Three Secrets','Three Secrets',1,1950,NULL,'98'),(43137,'movie','Winchester \'73','Winchester \'73',1,1950,NULL,'92'),(43265,'movie','The African Queen','The African Queen',1,1951,NULL,'105'),(43274,'movie','Alice in Wonderland','Alice in Wonderland',1,1951,NULL,'75'),(43278,'movie','An American in Paris','An American in Paris',1,1951,NULL,'114'),(43313,'movie','Early Summer','Bakushû',1,1951,NULL,'125'),(43332,'movie','Beautiful','Bellissima',1,1951,NULL,'114'),(43338,'movie','Ace in the Hole','Ace in the Hole',1,1951,NULL,'111'),(43390,'movie','Cause for Alarm!','Cause for Alarm!',1,1951,NULL,'74'),(43456,'movie','The Day the Earth Stood Still','The Day the Earth Stood Still',1,1951,NULL,'92'),(43511,'movie','Europe \'51','Europa \'51',1,1952,NULL,'118'),(43614,'movie','The Idiot','Hakuchi',1,1951,NULL,'166'),(43686,'movie','Forbidden Games','Jeux interdits',1,1952,NULL,'86'),(43695,'movie','Tarzan\'s Peril','Tarzan\'s Peril',1,1951,NULL,'78'),(43769,'movie','The Magic Box','The Magic Box',1,1951,NULL,'118'),(43871,'movie','Odette','Odette',1,1950,NULL,'124'),(43949,'movie','Quo Vadis','Quo Vadis',1,1951,NULL,'171'),(44030,'movie','Show Boat','Show Boat',1,1951,NULL,'108'),(44079,'movie','Strangers on a Train','Strangers on a Train',1,1951,NULL,'101'),(44081,'movie','A Streetcar Named Desire','A Streetcar Named Desire',1,1951,NULL,'122'),(44092,'movie','Surcos','Surcos',1,1951,NULL,'104'),(44100,'movie','Take Care of My Little Girl','Take Care of My Little Girl',1,1951,NULL,'93'),(44121,'movie','The Thing from Another World','The Thing from Another World',1,1951,NULL,'87'),(44205,'movie','Westward the Women','Westward the Women',1,1951,NULL,'118'),(44391,'movie','The Bad and the Beautiful','The Bad and the Beautiful',1,1952,NULL,'118'),(44419,'movie','The Big Sky','The Big Sky',1,1952,NULL,'140'),(44446,'movie','The Sound Barrier','The Sound Barrier',1,1952,NULL,'118'),(44502,'movie','Clash by Night','Clash by Night',1,1952,NULL,'105'),(44672,'movie','The Greatest Show on Earth','The Greatest Show on Earth',1,1952,NULL,'152'),(44706,'movie','High Noon','High Noon',1,1952,NULL,'85'),(44741,'movie','Ikiru','Ikiru',1,1952,NULL,'143'),(44760,'movie','Ivanhoe','Ivanhoe',1,1952,NULL,'106'),(44837,'movie','Limelight','Limelight',1,1952,NULL,'137'),(44855,'movie','Lovely to Look At','Lovely to Look At',1,1952,NULL,'103'),(45061,'movie','The Quiet Man','The Quiet Man',1,1952,NULL,'129'),(45152,'movie','Singin\' in the Rain','Singin\' in the Rain',1,1952,NULL,'103'),(45162,'movie','The Snows of Kilimanjaro','The Snows of Kilimanjaro',1,1952,NULL,'114'),(45197,'movie','The Story of Robin Hood and His Merrie Men','The Story of Robin Hood and His Merrie Men',1,1952,NULL,'84'),(45220,'movie','Tarzan\'s Savage Fury','Tarzan\'s Savage Fury',1,1952,NULL,'81'),(45464,'movie','The 5,000 Fingers of Dr. T.','The 5,000 Fingers of Dr. T.',1,1953,NULL,'89'),(45537,'movie','The Band Wagon','The Band Wagon',1,1953,NULL,'112'),(45546,'movie','The Beast from 20,000 Fathoms','The Beast from 20,000 Fathoms',1,1953,NULL,'80'),(45555,'movie','The Big Heat','The Big Heat',1,1953,NULL,'89'),(45591,'movie','Calamity Jane','Calamity Jane',1,1953,NULL,'101'),(45609,'movie','Cat-Women of the Moon','Cat-Women of the Moon',1,1953,NULL,'64'),(45659,'movie','The Cruel Sea','The Cruel Sea',1,1953,NULL,'126'),(45665,'movie','Cómicos','Cómicos',1,1954,NULL,'92'),(45758,'movie','Fear and Desire','Fear and Desire',1,1952,NULL,'62'),(45793,'movie','From Here to Eternity','From Here to Eternity',1,1953,NULL,'118'),(45810,'movie','Gentlemen Prefer Blondes','Gentlemen Prefer Blondes',1,1953,NULL,'91'),(45826,'movie','Glen or Glenda','Glen or Glenda',1,1953,NULL,'65'),(45877,'movie','The Hitch-Hiker','The Hitch-Hiker',1,1953,NULL,'71'),(45888,'movie','House of Wax','House of Wax',1,1953,NULL,'88'),(45891,'movie','How to Marry a Millionaire','How to Marry a Millionaire',1,1953,NULL,'95'),(45897,'movie','I Confess','I Confess',1,1953,NULL,'95'),(45911,'movie','Inferno','Inferno',1,1953,NULL,'83'),(45920,'movie','It Came from Outer Space','It Came from Outer Space',1,1953,NULL,'81'),(45943,'movie','Julius Caesar','Julius Caesar',1,1953,NULL,'120'),(46022,'movie','The Earrings of Madame De...','Madame de...',1,1953,NULL,'105'),(46031,'movie','The Man Between','The Man Between',1,1953,NULL,'100'),(46066,'movie','Mesa of Lost Women','Mesa of Lost Women',1,1953,NULL,'70'),(46076,'movie','Miss Sadie Thompson','Miss Sadie Thompson',1,1953,NULL,'91'),(46085,'movie','Mogambo','Mogambo',1,1953,NULL,'116'),(46183,'movie','Peter Pan','Peter Pan',1,1953,NULL,'77'),(46187,'movie','Pickup on South Street','Pickup on South Street',1,1953,NULL,'80'),(46250,'movie','Roman Holiday','Roman Holiday',1,1953,NULL,'118'),(46268,'movie','The Wages of Fear','Le salaire de la peur',1,1953,NULL,'131'),(46269,'movie','Salome','Salome',1,1953,NULL,'103'),(46303,'movie','Shane','Shane',1,1953,NULL,'118'),(46345,'movie','Summer with Monika','Sommaren med Monika',1,1953,NULL,'96'),(46359,'movie','Stalag 17','Stalag 17',1,1953,NULL,'120'),(46404,'movie','Tarzan and the She-Devil','Tarzan and the She-Devil',1,1953,NULL,'75'),(46438,'movie','Tokyo Story','Tôkyô monogatari',1,1953,NULL,'136'),(46451,'movie','Touchez Pas au Grisbi','Touchez pas au grisbi',1,1954,NULL,'96'),(46478,'movie','Ugetsu','Ugetsu monogatari',1,1953,NULL,'96'),(46487,'movie','Monsieur Hulot\'s Holiday','Les vacances de Monsieur Hulot',1,1953,NULL,'114'),(46511,'movie','Journey to Italy','Viaggio in Italia',1,1954,NULL,'85'),(46534,'movie','The War of the Worlds','The War of the Worlds',1,1953,NULL,'85'),(46672,'movie','20,000 Leagues Under the Sea','20,000 Leagues Under the Sea',1,1954,NULL,'127'),(46705,'movie','An American in Rome','Un americano a Roma',1,1954,NULL,'94'),(46731,'movie','Attila','Attila',1,1954,NULL,'80'),(46750,'movie','Late Chrysanthemums','Bangiku',1,1954,NULL,'101'),(46816,'movie','The Caine Mutiny','The Caine Mutiny',1,1954,NULL,'124'),(46828,'movie','Carmen Jones','Carmen Jones',1,1954,NULL,'105'),(46876,'movie','Creature from the Black Lagoon','Creature from the Black Lagoon',1,1954,NULL,'79'),(46889,'movie','The Dam Busters','The Dam Busters',1,1955,NULL,'124'),(46911,'movie','Diabolique','Les diaboliques',1,1955,NULL,'117'),(46912,'movie','Dial M for Murder','Dial M for Murder',1,1954,NULL,'105'),(46963,'movie','Executive Suite','Executive Suite',1,1954,NULL,'104'),(46969,'movie','The Fast and the Furious','The Fast and the Furious',1,1954,NULL,'73'),(47030,'movie','The Glenn Miller Story','The Glenn Miller Story',1,1954,NULL,'115'),(47034,'movie','Godzilla','Gojira',1,1954,NULL,'96'),(47094,'movie','Hobson\'s Choice','Hobson\'s Choice',1,1954,NULL,'108'),(47127,'movie','Jail Bait','Jail Bait',1,1954,NULL,'71'),(47136,'movie','Johnny Guitar','Johnny Guitar',1,1954,NULL,'110'),(47152,'movie','Knock on Wood','Knock on Wood',1,1954,NULL,'103'),(47238,'movie','Miseria e nobiltà','Miseria e nobiltà',1,1954,NULL,'94'),(47296,'movie','On the Waterfront','On the Waterfront',1,1954,NULL,'108'),(47349,'movie','Phffft','Phffft',1,1954,NULL,'88'),(47396,'movie','Rear Window','Rear Window',1,1954,NULL,'112'),(47437,'movie','Sabrina','Sabrina',1,1954,NULL,'113'),(47443,'movie','Salt of the Earth','Salt of the Earth',1,1954,NULL,'94'),(47469,'movie','Senso','Senso',1,1954,NULL,'123'),(47472,'movie','Seven Brides for Seven Brothers','Seven Brides for Seven Brothers',1,1954,NULL,'102'),(47478,'movie','Seven Samurai','Shichinin no samurai',1,1954,NULL,'207'),(47522,'movie','A Star Is Born','A Star Is Born',1,1954,NULL,'154'),(47573,'movie','Them!','Them!',1,1954,NULL,'94'),(47577,'movie','This Island Earth','This Island Earth',1,1955,NULL,'86'),(47580,'movie','Three Coins in the Fountain','Three Coins in the Fountain',1,1954,NULL,'102'),(47638,'movie','The Woman of Rumour','Uwasa no onna',1,1954,NULL,'83'),(47673,'movie','White Christmas','White Christmas',1,1954,NULL,'120'),(47677,'movie','The Wild One','The Wild One',1,1953,NULL,'79'),(47811,'movie','All That Heaven Allows','All That Heaven Allows',1,1955,NULL,'89'),(47821,'movie','Le Amiche','Le amiche',1,1955,NULL,'104'),(47834,'movie','Animal Farm','Animal Farm',1,1954,NULL,'72'),(47849,'movie','Bad Day at Black Rock','Bad Day at Black Rock',1,1955,NULL,'81'),(47878,'movie','The Big Combo','The Big Combo',1,1955,NULL,'87'),(47898,'movie','Bride of the Monster','Bride of the Monster',1,1955,NULL,'69'),(47969,'movie','Daddy Long Legs','Daddy Long Legs',1,1955,NULL,'126'),(48021,'movie','Rififi','Du rififi chez les hommes',1,1955,NULL,'118'),(48103,'movie','School for Love','Futures vedettes',1,1955,NULL,'96'),(48124,'movie','The Glass Slipper','The Glass Slipper',1,1955,NULL,'93'),(48127,'movie','Godzilla Raids Again','Gojira no gyakushû',1,1955,NULL,'82'),(48133,'movie','The Grand Maneuver','Les grandes manoeuvres',1,1955,NULL,'106'),(48140,'movie','Guys and Dolls','Guys and Dolls',1,1955,NULL,'150'),(48254,'movie','Killer\'s Kiss','Killer\'s Kiss',1,1955,NULL,'67'),(48280,'movie','Lady and the Tramp','Lady and the Tramp',1,1955,NULL,'76'),(48281,'movie','The Ladykillers','The Ladykillers',1,1955,NULL,'91'),(48308,'movie','Lola Montès','Lola Montès',1,1955,NULL,'116'),(48356,'movie','Marty','Marty',1,1955,NULL,'90'),(48401,'movie','My Sister Eileen','My Sister Eileen',1,1955,NULL,'108'),(48424,'movie','The Night of the Hunter','The Night of the Hunter',1,1955,NULL,'92'),(48432,'movie','Not as a Stranger','Not as a Stranger',1,1955,NULL,'135'),(48445,'movie','Oklahoma!','Oklahoma!',1,1955,NULL,'145'),(48473,'movie','Pather Panchali','Pather Panchali',1,1955,NULL,'125'),(48512,'movie','The Prisoner','The Prisoner',1,1955,NULL,'95'),(48517,'movie','The Prodigal','The Prodigal',1,1955,NULL,'112'),(48545,'movie','Rebel Without a Cause','Rebel Without a Cause',1,1955,NULL,'111'),(48605,'movie','The Seven Year Itch','The Seven Year Itch',1,1955,NULL,'105'),(48641,'movie','Smiles of a Summer Night','Sommarnattens leende',1,1955,NULL,'109'),(48673,'movie','Summertime','Summertime',1,1955,NULL,'102'),(48696,'movie','Tarantula','Tarantula',1,1955,NULL,'80'),(48728,'movie','To Catch a Thief','To Catch a Thief',1,1955,NULL,'106'),(48750,'movie','The Trouble with Harry','The Trouble with Harry',1,1955,NULL,'99'),(48801,'movie','We\'re No Angels','We\'re No Angels',1,1955,NULL,'106'),(48956,'movie','Aparajito','Aparajito',1,1956,NULL,'110'),(48960,'movie','Around the World in 80 Days','Around the World in 80 Days',1,1956,NULL,'167'),(48967,'movie','Autumn Leaves','Autumn Leaves',1,1956,NULL,'107'),(48973,'movie','Baby Doll','Baby Doll',1,1956,NULL,'114'),(48977,'movie','The Bad Seed','The Bad Seed',1,1956,NULL,'129'),(48981,'movie','The Band of Honest Men','La banda degli onesti',1,1956,NULL,'106'),(49010,'movie','Bigger Than Life','Bigger Than Life',1,1956,NULL,'95'),(49019,'movie','Blonde Sinner','Yield to the Night',1,1956,NULL,'99'),(49038,'movie','Bus Stop','Bus Stop',1,1956,NULL,'96'),(49043,'movie','Main Street','Calle Mayor',1,1956,NULL,'99'),(49095,'short','Fool\'s Mate','Le coup du berger',1,1956,NULL,'28'),(49096,'movie','The Court Jester','The Court Jester',1,1955,NULL,'101'),(49189,'movie','...And God Created Woman','Et Dieu... créa la femme',1,1956,NULL,'95'),(49196,'movie','Eyewitness','Eyewitness',1,1956,NULL,'82'),(49223,'movie','Forbidden Planet','Forbidden Planet',1,1956,NULL,'98'),(49287,'movie','Gunslinger','Gunslinger',1,1956,NULL,'78'),(49293,'movie','The Captain from Köpenick','Der Hauptmann von Köpenick',1,1956,NULL,'93'),(49314,'movie','High Society','High Society',1,1956,NULL,'111'),(49363,'movie','Indestructible Man','Indestructible Man',1,1956,NULL,'72'),(49366,'movie','Invasion of the Body Snatchers','Invasion of the Body Snatchers',1,1956,NULL,'80'),(49369,'movie','The Iron Petticoat','The Iron Petticoat',1,1956,NULL,'87'),(49406,'movie','The Killing','The Killing',1,1956,NULL,'84'),(49408,'movie','The King and I','The King and I',1,1956,NULL,'133'),(49452,'movie','Love Me Tender','Love Me Tender',1,1956,NULL,'89'),(49470,'movie','The Man Who Knew Too Much','The Man Who Knew Too Much',1,1956,NULL,'120'),(49471,'movie','The Man Who Never Was','The Man Who Never Was',1,1956,NULL,'103'),(49483,'movie','Her Bridal Night','La mariée est trop belle',1,1956,NULL,'95'),(49537,'movie','Flowing','Nagareru',1,1956,NULL,'117'),(49640,'movie','The Proud and Profane','The Proud and Profane',1,1956,NULL,'111'),(49674,'movie','Richard III','Richard III',1,1955,NULL,'161'),(49730,'movie','The Searchers','The Searchers',1,1956,NULL,'119'),(49762,'movie','Sissi: The Young Empress','Sissi - Die junge Kaiserin',1,1956,NULL,'107'),(49782,'movie','Rodan','Sora no daikaijû Radon',1,1956,NULL,'82'),(49787,'movie','The Spanish Gardener','The Spanish Gardener',1,1956,NULL,'97'),(49833,'movie','The Ten Commandments','The Ten Commandments',1,1956,NULL,'220'),(49902,'movie','A Man Escaped','Un condamné à mort s\'est échappé ou Le vent souffle où il veut',1,1956,NULL,'101'),(49904,'movie','The Unguarded Moment','The Unguarded Moment',1,1956,NULL,'95'),(49934,'movie','War and Peace','War and Peace',1,1956,NULL,'208'),(50083,'movie','12 Angry Men','12 Angry Men',1,1957,NULL,'96'),(50105,'movie','An Affair to Remember','An Affair to Remember',1,1957,NULL,'115'),(50116,'movie','Whom God Forgives','Amanecer en Puerta Oscura',1,1957,NULL,'85'),(50193,'movie','The Night Heaven Fell','Les bijoutiers du clair de lune',1,1958,NULL,'95'),(50212,'movie','The Bridge on the River Kwai','The Bridge on the River Kwai',1,1957,NULL,'161'),(50251,'movie','The Mysterians','Chikyû Bôeigun',1,1957,NULL,'89'),(50307,'movie','Desk Set','Desk Set',1,1957,NULL,'103'),(50356,'movie','The Enemy Below','The Enemy Below',1,1957,NULL,'98'),(50371,'movie','A Face in the Crowd','A Face in the Crowd',1,1957,NULL,'126'),(50397,'movie','Fire Down Below','Fire Down Below',1,1957,NULL,'116'),(50407,'movie','Forty Guns','Forty Guns',1,1957,NULL,'80'),(50419,'movie','Funny Face','Funny Face',1,1957,NULL,'103'),(50421,'movie','Danger Stalks Near','Fûzen no tomoshibi',1,1957,NULL,'79'),(50470,'movie','The Guns of Fort Petticoat','The Guns of Fort Petticoat',1,1957,NULL,'82'),(50490,'movie','Heaven Knows, Mr. Allison','Heaven Knows, Mr. Allison',1,1957,NULL,'107'),(50539,'movie','The Incredible Shrinking Man','The Incredible Shrinking Man',1,1957,NULL,'81'),(50549,'movie','Island in the Sun','Island in the Sun',1,1957,NULL,'119'),(50585,'movie','Kanal','Kanal',1,1957,NULL,'91'),(50599,'movie','Kiss Them for Me','Kiss Them for Me',1,1957,NULL,'105'),(50610,'movie','Kronos','Kronos',1,1957,NULL,'78'),(50613,'movie','Throne of Blood','Kumonosu-jô',1,1957,NULL,'110'),(50634,'movie','The Cranes Are Flying','Letyat zhuravli',1,1957,NULL,'95'),(50706,'movie','Mon Oncle','Mon oncle',1,1958,NULL,'116'),(50766,'movie','Curse of the Demon','Night of the Demon',1,1957,NULL,'95'),(50783,'movie','Nights of Cabiria','Le notti di Cabiria',1,1957,NULL,'110'),(50792,'movie','Oedipus Rex','Oedipus Rex',1,1957,NULL,'87'),(50798,'movie','Old Yeller','Old Yeller',1,1957,NULL,'83'),(50825,'movie','Paths of Glory','Paths of Glory',1,1957,NULL,'88'),(50861,'movie','The Prince and the Showgirl','The Prince and the Showgirl',1,1957,NULL,'115'),(50933,'movie','Sayonara','Sayonara',1,1957,NULL,'147'),(50976,'movie','The Seventh Seal','Det sjunde inseglet',1,1957,NULL,'96'),(50986,'movie','Wild Strawberries','Smultronstället',1,1957,NULL,'91'),(50998,'movie','Sorority Girl','Sorority Girl',1,1957,NULL,'61'),(51036,'movie','Sweet Smell of Success','Sweet Smell of Success',1,1957,NULL,'96'),(51051,'movie','Tammy and the Bachelor','Tammy and the Bachelor',1,1957,NULL,'89'),(51077,'movie','The Three Faces of Eve','The Three Faces of Eve',1,1957,NULL,'91'),(51114,'movie','The True Story of Jesse James','The True Story of Jesse James',1,1957,NULL,'92'),(51133,'movie','La Parisienne','Une parisienne',1,1957,NULL,'86'),(51151,'movie','El vampiro','El vampiro',1,1957,NULL,'95'),(51201,'movie','Witness for the Prosecution','Witness for the Prosecution',1,1957,NULL,'116'),(51207,'movie','The Wrong Man','The Wrong Man',1,1956,NULL,'105'),(51372,'movie','Araya','Araya',1,1959,NULL,'90'),(51383,'movie','Auntie Mame','Auntie Mame',1,1958,NULL,'143'),(51422,'movie','Blood of the Vampire','Blood of the Vampire',1,1958,NULL,'87'),(51459,'movie','Cat on a Hot Tin Roof','Cat on a Hot Tin Roof',1,1958,NULL,'108'),(51525,'movie','The Defiant Ones','The Defiant Ones',1,1958,NULL,'96'),(51554,'movie','Horror of Dracula','Dracula',1,1958,NULL,'82'),(51579,'movie','Love Is My Profession','En cas de malheur',1,1958,NULL,'122'),(51608,'movie','The Female','La femme et le pantin',1,1958,NULL,'101'),(51622,'movie','The Fly','The Fly',1,1958,NULL,'94'),(51658,'movie','Gigi','Gigi',1,1958,NULL,'115'),(51744,'movie','House on Haunted Hill','House on Haunted Hill',1,1959,NULL,'75'),(51755,'movie','I Bury the Living','I Bury the Living',1,1958,NULL,'77'),(51758,'movie','I Want to Live!','I Want to Live!',1,1958,NULL,'120'),(51773,'movie','Indiscreet','Indiscreet',1,1958,NULL,'100'),(51776,'movie','The Inn of the Sixth Happiness','The Inn of the Sixth Happiness',1,1958,NULL,'158'),(51786,'movie','It! The Terror from Beyond Space','It! The Terror from Beyond Space',1,1958,NULL,'69'),(51808,'movie','The Hidden Fortress','Kakushi-toride no san-akunin',1,1958,NULL,'139'),(51818,'movie','King Creole','King Creole',1,1958,NULL,'116'),(51911,'movie','Marjorie Morningstar','Marjorie Morningstar',1,1958,NULL,'128'),(51951,'movie','The Day the Sky Exploded','La morte viene dallo spazio',1,1958,NULL,'82'),(51964,'movie','Mädchen in Uniform','Mädchen in Uniform',1,1958,NULL,'95'),(52017,'movie','Brink of Life','Nära livet',1,1958,NULL,'84'),(52077,'movie','Plan 9 from Outer Space','Plan 9 from Outer Space',1,1957,NULL,'79'),(52151,'movie','Run Silent Run Deep','Run Silent, Run Deep',1,1958,NULL,'93'),(52169,'movie','The Screaming Skull','The Screaming Skull',1,1958,NULL,'68'),(52182,'movie','Separate Tables','Separate Tables',1,1958,NULL,'100'),(52218,'movie','Some Came Running','Some Came Running',1,1958,NULL,'137'),(52225,'movie','South Pacific','South Pacific',1,1958,NULL,'157'),(52278,'movie','Teacher\'s Pet','Teacher\'s Pet',1,1958,NULL,'120'),(52311,'movie','Touch of Evil','Touch of Evil',1,1958,NULL,'95'),(52357,'movie','Vertigo','Vertigo',1,1958,NULL,'128'),(52365,'movie','The Vikings','The Vikings',1,1958,NULL,'116'),(52374,'movie','Invention for Destruction','Vynález zkázy',1,1958,NULL,'84'),(52394,'movie','The Wild Women of Wongo','The Wild Women of Wongo',1,1959,NULL,'72'),(52561,'movie','Anatomy of a Murder','Anatomy of a Murder',1,1959,NULL,'161'),(52572,'movie','The World of Apu','Apur Sansar',1,1959,NULL,'105'),(52595,'movie','Babette Goes to War','Babette s\'en va-t-en guerre',1,1959,NULL,'106'),(52600,'movie','Ballad of a Soldier','Ballada o soldate',1,1959,NULL,'88'),(52602,'movie','The Bat','The Bat',1,1959,NULL,'80'),(52618,'movie','Ben-Hur','Ben-Hur',1,1959,NULL,'212'),(52646,'movie','The Brain That Wouldn\'t Die','The Brain That Wouldn\'t Die',1,1962,NULL,'82'),(52654,'movie','The Bridge','Die Brücke',1,1959,NULL,'103'),(52655,'movie','A Bucket of Blood','A Bucket of Blood',1,1959,NULL,'66'),(52722,'movie','Darby O\'Gill and the Little People','Darby O\'Gill and the Little People',1,1959,NULL,'93'),(52844,'movie','Ghost of Dragstrip Hollow','Ghost of Dragstrip Hollow',1,1959,NULL,'65'),(52846,'movie','The Giant Gila Monster','The Giant Gila Monster',1,1959,NULL,'74'),(52847,'movie','Gidget','Gidget',1,1959,NULL,'95'),(52861,'movie','The Great War','La grande guerra',1,1959,NULL,'137'),(52918,'movie','Imitation of Life','Imitation of Life',1,1959,NULL,'125'),(52948,'movie','Journey to the Center of the Earth','Journey to the Center of the Earth',1,1959,NULL,'129'),(53125,'movie','North by Northwest','North by Northwest',1,1959,NULL,'136'),(53131,'movie','The Nun\'s Story','The Nun\'s Story',1,1959,NULL,'149'),(53134,'movie','Good Morning','Ohayô',1,1959,NULL,'94'),(53172,'movie','Pillow Talk','Pillow Talk',1,1959,NULL,'102'),(53198,'movie','The 400 Blows','Les quatre cents coups',1,1959,NULL,'99'),(53221,'movie','Rio Bravo','Rio Bravo',1,1959,NULL,'141'),(53250,'movie','First Spaceship on Venus','Der schweigende Stern',1,1960,NULL,'93'),(53285,'movie','Sleeping Beauty','Sleeping Beauty',1,1959,NULL,'75'),(53291,'movie','Some Like It Hot','Some Like It Hot',1,1959,NULL,'121'),(53318,'movie','Suddenly, Last Summer','Suddenly, Last Summer',1,1959,NULL,'114'),(53363,'movie','The Tingler','The Tingler',1,1959,NULL,'82'),(53388,'movie','Battle in Outer Space','Uchû daisensô',1,1959,NULL,'90'),(53428,'movie','Come Dance with Me!','Voulez-vous danser avec moi?',1,1959,NULL,'91'),(53454,'movie','The World, the Flesh and the Devil','The World, the Flesh and the Devil',1,1959,NULL,'95'),(53459,'movie','Eyes Without a Face','Les yeux sans visage',1,1960,NULL,'90'),(53472,'movie','Breathless','À bout de souffle',1,1960,NULL,'90'),(53579,'movie','Late Autumn','Akibiyori',1,1960,NULL,'128'),(53604,'movie','The Apartment','The Apartment',1,1960,NULL,'125'),(53619,'movie','L\'Avventura','L\'avventura',1,1960,NULL,'144'),(53666,'movie','Les Bonnes Femmes','Les bonnes femmes',1,1960,NULL,'100'),(53677,'movie','The Brides of Dracula','The Brides of Dracula',1,1960,NULL,'85'),(53719,'movie','The City of the Dead','The City of the Dead',1,1960,NULL,'78'),(53732,'movie','Conspiracy of Hearts','Conspiracy of Hearts',1,1960,NULL,'113'),(53779,'movie','La Dolce Vita','La dolce vita',1,1960,NULL,'174'),(53804,'movie','Exodus','Exodus',1,1960,NULL,'208'),(53825,'movie','Flaming Star','Flaming Star',1,1960,NULL,'101'),(53848,'movie','G.I. Blues','G.I. Blues',1,1960,NULL,'104'),(53902,'movie','Heller in Pink Tights','Heller in Pink Tights',1,1960,NULL,'100'),(53946,'movie','Inherit the Wind','Inherit the Wind',1,1960,NULL,'128'),(53976,'movie','The Virgin Spring','Jungfrukällan',1,1960,NULL,'89'),(54017,'movie','Last Woman on Earth','Last Woman on Earth',1,1960,NULL,'71'),(54022,'movie','Let\'s Make Love','Let\'s Make Love',1,1960,NULL,'119'),(54047,'movie','The Magnificent Seven','The Magnificent Seven',1,1960,NULL,'128'),(54049,'movie','Make Mine Mink','Make Mine Mink',1,1960,NULL,'101'),(54067,'movie','Black Sunday','La maschera del demonio',1,1960,NULL,'87'),(54130,'movie','La Notte','La notte',1,1961,NULL,'122'),(54167,'movie','Peeping Tom','Peeping Tom',1,1960,NULL,'101'),(54198,'movie','Never on Sunday','Pote tin Kyriaki',1,1960,NULL,'91'),(54215,'movie','Psycho','Psycho',1,1960,NULL,'109'),(54248,'movie','Rocco and His Brothers','Rocco e i suoi fratelli',1,1960,NULL,'179'),(54279,'movie','School for Scoundrels','School for Scoundrels',1,1960,NULL,'97'),(54331,'movie','Spartacus','Spartacus',1,1960,NULL,'197'),(54333,'movie','Horrors of Spider Island','Ein Toter hing im Netz',1,1960,NULL,'89'),(54343,'movie','The Story of Ruth','The Story of Ruth',1,1960,NULL,'132'),(54377,'movie','Testament of Orpheus','Le testament d\'Orphée ou ne me demandez pas pourquoi',1,1960,NULL,'77'),(54387,'movie','The Time Machine','The Time Machine',1,1960,NULL,'103'),(54389,'movie','Shoot the Piano Player','Tirez sur le pianiste',1,1960,NULL,'81'),(54407,'movie','Le Trou','Le trou',1,1960,NULL,'131'),(54452,'movie','La Vérité','La vérité',1,1960,NULL,'128'),(54460,'movie','The Bad Sleep Well','Warui yatsu hodo yoku nemuru',1,1960,NULL,'151'),(54462,'movie','The Wasp Woman','The Wasp Woman',1,1959,NULL,'63'),(54469,'movie','Where the Boys Are','Where the Boys Are',1,1960,NULL,'99'),(54476,'movie','Wild River','Wild River',1,1960,NULL,'110'),(54483,'movie','The World of Suzie Wong','The World of Suzie Wong',1,1960,NULL,'126'),(54494,'movie','Zazie dans le Métro','Zazie dans le métro',1,1960,NULL,'93'),(54599,'movie','Accattone','Accattone',1,1961,NULL,'117'),(54673,'movie','The Beast of Yucca Flats','The Beast of Yucca Flats',1,1961,NULL,'54'),(54692,'movie','Blue Hawaii','Blue Hawaii',1,1961,NULL,'102'),(54698,'movie','Breakfast at Tiffany\'s','Breakfast at Tiffany\'s',1,1961,NULL,'115'),(54700,'movie','Please, Not Now!','La bride sur le cou',1,1961,NULL,'85'),(54743,'movie','The Children\'s Hour','The Children\'s Hour',1,1961,NULL,'108'),(54749,'movie','Two Women','La ciociara',1,1960,NULL,'101'),(54777,'movie','The Curse of the Werewolf','The Curse of the Werewolf',1,1961,NULL,'93'),(54847,'movie','El Cid','El Cid',1,1961,NULL,'182'),(54879,'movie','Flame in the Streets','Flame in the Streets',1,1961,NULL,'93'),(54885,'movie','Flower Drum Song','Flower Drum Song',1,1961,NULL,'133'),(54949,'movie','War of the Buttons','La guerre des boutons',1,1962,NULL,'90'),(54953,'movie','The Guns of Navarone','The Guns of Navarone',1,1961,NULL,'158'),(54997,'movie','The Hustler','The Hustler',1,1961,NULL,'134'),(55018,'movie','The Innocents','The Innocents',1,1961,NULL,'100'),(55032,'movie','Jules and Jim','Jules et Jim',1,1962,NULL,'105'),(55047,'movie','King of Kings','King of Kings',1,1961,NULL,'168'),(55082,'movie','Léon Morin, Priest','Léon Morin, prêtre',1,1961,NULL,'117'),(55093,'movie','Lola','Lola',1,1961,NULL,'90'),(55184,'movie','The Misfits','The Misfits',1,1961,NULL,'125'),(55198,'movie','Mothra','Mosura',1,1961,NULL,'101'),(55207,'movie','Mysterious Island','Mysterious Island',1,1961,NULL,'101'),(55254,'movie','One Hundred and One Dalmatians','One Hundred and One Dalmatians',1,1961,NULL,'79'),(55256,'movie','One, Two, Three','One, Two, Three',1,1961,NULL,'104'),(55277,'movie','The Parent Trap','The Parent Trap',1,1961,NULL,'129'),(55278,'movie','Paris Blues','Paris Blues',1,1961,NULL,'98'),(55294,'movie','The Phantom Planet','The Phantom Planet',1,1961,NULL,'82'),(55353,'movie','A Raisin in the Sun','A Raisin in the Sun',1,1961,NULL,'128'),(55458,'movie','Snow White and the Three Stooges','Snow White and the Three Stooges',1,1961,NULL,'107'),(55471,'movie','Splendor in the Grass','Splendor in the Grass',1,1961,NULL,'124'),(55499,'movie','Through a Glass Darkly','Såsom i en spegel',1,1961,NULL,'90'),(55506,'movie','A Taste of Honey','A Taste of Honey',1,1961,NULL,'101'),(55571,'movie','Underworld U.S.A.','Underworld U.S.A.',1,1961,NULL,'99'),(55572,'movie','A Woman Is a Woman','Une femme est une femme',1,1961,NULL,'85'),(55614,'movie','West Side Story','West Side Story',1,1961,NULL,'153'),(55621,'movie','Why Bother to Knock','Don\'t Bother to Knock',1,1961,NULL,'89'),(55623,'movie','Wild in the Country','Wild in the Country',1,1961,NULL,'114'),(55630,'movie','Yojimbo','Yôjinbô',1,1961,NULL,'110'),(55728,'movie','Advise & Consent','Advise & Consent',1,1962,NULL,'139'),(55763,'movie','Robbery at 3 O\'clock','Atraco a las tres',1,1962,NULL,'92'),(55805,'movie','Boccaccio \'70','Boccaccio \'70',1,1962,NULL,'205'),(55830,'movie','Carnival of Souls','Carnival of Souls',1,1962,NULL,'78'),(55832,'movie','Cartouche','Cartouche',1,1962,NULL,'114'),(55852,'movie','Cléo from 5 to 7','Cléo de 5 à 7',1,1962,NULL,'90'),(55894,'movie','The Day of the Triffids','The Day of the Triffids',1,1963,NULL,'93'),(55902,'movie','The Devil\'s Hand','The Devil\'s Hand',1,1961,NULL,'71'),(55910,'movie','Sundays and Cybèle','Les dimanches de Ville d\'Avray',1,1962,NULL,'111'),(55928,'movie','Dr. No','Dr. No',1,1962,NULL,'110'),(55992,'movie','Follow That Dream','Follow That Dream',1,1962,NULL,'109'),(56023,'movie','Girls! Girls! Girls!','Girls! Girls! Girls!',1,1962,NULL,'106'),(56048,'movie','Gypsy','Gypsy',1,1962,NULL,'143'),(56058,'movie','Harakiri','Seppuku',1,1962,NULL,'133'),(56059,'movie','Hatari!','Hatari!',1,1962,NULL,'157'),(56111,'movie','Ivan\'s Childhood','Ivanovo detstvo',1,1962,NULL,'95'),(56119,'short','La Jetée','La jetée',1,1962,NULL,'28'),(56138,'movie','Kid Galahad','Kid Galahad',1,1962,NULL,'96'),(56142,'movie','King Kong vs. Godzilla','King Kong vs. Godzilla',1,1963,NULL,'97'),(56172,'movie','Lawrence of Arabia','Lawrence of Arabia',1,1962,NULL,'218'),(56193,'movie','Lolita','Lolita',1,1962,NULL,'153'),(56194,'movie','The Loneliness of the Long Distance Runner','The Loneliness of the Long Distance Runner',1,1962,NULL,'104'),(56197,'movie','The Longest Day','The Longest Day',1,1962,NULL,'178'),(56218,'movie','The Manchurian Candidate','The Manchurian Candidate',1,1962,NULL,'126'),(56241,'movie','The Miracle Worker','The Miracle Worker',1,1962,NULL,'106'),(56262,'movie','The Music Man','The Music Man',1,1962,NULL,'151'),(56308,'movie','Only Two Can Play','Only Two Can Play',1,1962,NULL,'106'),(56404,'movie','Love on a Pillow','Le repos du guerrier',1,1962,NULL,'102'),(56443,'movie','Sanjuro','Tsubaki Sanjûrô',1,1962,NULL,'96'),(56452,'movie','The Treasure of the Silver Lake','Der Schatz im Silbersee',1,1962,NULL,'111'),(56575,'movie','That Touch of Mink','That Touch of Mink',1,1962,NULL,'99'),(56585,'movie','Tickle Me','Tickle Me',1,1965,NULL,'90'),(56592,'movie','To Kill a Mockingbird','To Kill a Mockingbird',1,1962,NULL,'129'),(56663,'movie','Vivre Sa Vie','Vivre sa vie: Film en douze tableaux',1,1962,NULL,'80'),(56671,'movie','Walk on the Wild Side','Walk on the Wild Side',1,1962,NULL,'114'),(56687,'movie','What Ever Happened to Baby Jane?','What Ever Happened to Baby Jane?',1,1962,NULL,'134'),(56700,'movie','The Wonderful World of the Brothers Grimm','The Wonderful World of the Brothers Grimm',1,1962,NULL,'135'),(56732,'movie','The Exterminating Angel','El ángel exterminador',1,1962,NULL,'95'),(56736,'movie','L\'Eclisse','L\'eclisse',1,1962,NULL,'126'),(56800,'movie','55 Days at Peking','55 Days at Peking',1,1963,NULL,'154'),(56801,'movie','8½','8½',1,1963,NULL,'138'),(56860,'movie','Beach Party','Beach Party',1,1963,NULL,'101'),(56869,'movie','The Birds','The Birds',1,1963,NULL,'119'),(56884,'short','The Bakery Girl of Monceau','La boulangère de Monceau',1,1963,NULL,'23'),(56891,'movie','Bye Bye Birdie','Bye Bye Birdie',1,1963,NULL,'112'),(56910,'movie','Suzanne\'s Career','La carrière de Suzanne',1,1963,NULL,'54'),(56912,'movie','Carry on Cabby','Carry on Cabby',1,1963,NULL,'91'),(56923,'movie','Charade','Charade',1,1963,NULL,'113'),(56937,'movie','Cleopatra','Cleopatra',1,1963,NULL,'192'),(56983,'movie','Dementia 13','Dementia 13',1,1963,NULL,'75'),(57012,'movie','Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb','Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb',1,1964,NULL,'95'),(57076,'movie','From Russia with Love','From Russia with Love',1,1963,NULL,'115'),(57115,'movie','The Great Escape','The Great Escape',1,1963,NULL,'172'),(57129,'movie','The Haunting','The Haunting',1,1963,NULL,'112'),(57180,'movie','The Incredible Journey','The Incredible Journey',1,1963,NULL,'80'),(57187,'movie','Irma la Douce','Irma la Douce',1,1963,NULL,'147'),(57191,'movie','It Happened at the World\'s Fair','It Happened at the World\'s Fair',1,1963,NULL,'105'),(57193,'movie','It\'s a Mad Mad Mad Mad World','It\'s a Mad Mad Mad Mad World',1,1963,NULL,'210'),(57215,'movie','Atragon','Kaitei gunkan',1,1963,NULL,'94'),(57226,'movie','The Kiss of the Vampire','The Kiss of the Vampire',1,1963,NULL,'88'),(57227,'movie','Kissin\' Cousins','Kissin\' Cousins',1,1964,NULL,'96'),(57239,'movie','The L-Shaped Room','The L-Shaped Room',1,1962,NULL,'126'),(57259,'movie','The Long Ships','The Long Ships',1,1964,NULL,'126'),(57261,'movie','Lord of the Flies','Lord of the Flies',1,1963,NULL,'92'),(57329,'movie','Move Over, Darling','Move Over, Darling',1,1963,NULL,'103'),(57345,'movie','Contempt','Le mépris',1,1963,NULL,'103'),(57358,'movie','Winter Light','Nattvardsgästerna',1,1963,NULL,'81'),(57380,'movie','Old Shatterhand','Old Shatterhand',1,1964,NULL,'122'),(57413,'movie','The Pink Panther','The Pink Panther',1,1963,NULL,'115'),(57427,'movie','The Trial','Le procès',1,1962,NULL,'119'),(57449,'movie','The Raven','The Raven',1,1963,NULL,'86'),(57490,'movie','The Servant','The Servant',1,1963,NULL,'116'),(57495,'movie','Shock Corridor','Shock Corridor',1,1963,NULL,'101'),(57541,'movie','Summer Holiday','Summer Holiday',1,1963,NULL,'107'),(57542,'movie','Summer Magic','Summer Magic',1,1963,NULL,'110'),(57546,'movie','The Sword in the Stone','The Sword in the Stone',1,1963,NULL,'79'),(57590,'movie','Tom Jones','Tom Jones',1,1963,NULL,'129'),(57611,'movie','The Silence','Tystnaden',1,1963,NULL,'96'),(57623,'movie','Unearthly Stranger','Unearthly Stranger',1,1963,NULL,'78'),(57643,'movie','The Executioner','El verdugo',1,1963,NULL,'87'),(57685,'movie','The Wild Affair','The Wild Affair',1,1965,NULL,'88'),(57687,'movie','Winnetou','Winnetou - 1. Teil',1,1963,NULL,'101'),(57693,'movie','X: The Man with the X-Ray Eyes','X',1,1963,NULL,'79'),(57840,'movie','The Americanization of Emily','The Americanization of Emily',1,1964,NULL,'115'),(57869,'movie','Band of Outsiders','Bande à part',1,1964,NULL,'95'),(57878,'movie','Bedtime Story','Bedtime Story',1,1964,NULL,'99'),(57887,'movie','Bikini Beach','Bikini Beach',1,1964,NULL,'99'),(57918,'movie','Carry on Cleo','Carry on Cleo',1,1964,NULL,'92'),(57933,'movie','The Chalk Garden','The Chalk Garden',1,1964,NULL,'106'),(57997,'movie','Dead Ringer','Dead Ringer',1,1964,NULL,'116'),(58003,'movie','Red Desert','Il deserto rosso',1,1964,NULL,'117'),(58083,'movie','Fail Safe','Fail Safe',1,1964,NULL,'112'),(58091,'movie','Fate Is the Hunter','Fate Is the Hunter',1,1964,NULL,'106'),(58092,'movie','Father Goose','Father Goose',1,1964,NULL,'118'),(58100,'movie','First Men in the Moon','First Men in the Moon',1,1964,NULL,'103'),(58139,'movie','The Divided Heaven','Der geteilte Himmel',1,1964,NULL,'116'),(58150,'movie','Goldfinger','Goldfinger',1,1964,NULL,'110'),(58164,'movie','The Guest','The Caretaker',1,1963,NULL,'105'),(58182,'movie','A Hard Day\'s Night','A Hard Day\'s Night',1,1964,NULL,'87'),(58204,'movie','Honeymoon Hotel','Honeymoon Hotel',1,1964,NULL,'89'),(58212,'movie','How to Murder Your Wife','How to Murder Your Wife',1,1965,NULL,'118'),(58213,'movie','Hush...Hush, Sweet Charlotte','Hush...Hush, Sweet Charlotte',1,1964,NULL,'133'),(58249,'movie','Diary of a Chambermaid','Le journal d\'une femme de chambre',1,1964,NULL,'97'),(58263,'movie','King & Country','King & Country',1,1964,NULL,'88'),(58324,'movie','Man\'s Favorite Sport?','Man\'s Favorite Sport?',1,1964,NULL,'120'),(58329,'movie','Marnie','Marnie',1,1964,NULL,'130'),(58331,'movie','Mary Poppins','Mary Poppins',1,1964,NULL,'139'),(58335,'movie','Marriage Italian Style','Matrimonio all\'italiana',1,1964,NULL,'102'),(58361,'movie','I Am Twenty','Mne dvadtsat let',1,1965,NULL,'189'),(58379,'movie','Mothra vs. Godzilla','Mosura tai Gojira',1,1964,NULL,'89'),(58385,'movie','My Fair Lady','My Fair Lady',1,1964,NULL,'170'),(58409,'movie','Gate of Flesh','Nikutai no mon',1,1964,NULL,'90'),(58430,'movie','Onibaba','Onibaba',1,1964,NULL,'103'),(58450,'movie','The Umbrellas of Cherbourg','Les parapluies de Cherbourg',1,1964,NULL,'91'),(58461,'movie','A Fistful of Dollars','Per un pugno di dollari',1,1964,NULL,'99'),(58534,'movie','Roustabout','Roustabout',1,1964,NULL,'101'),(58536,'tvMovie','Rudolph the Red-Nosed Reindeer','Rudolph the Red-Nosed Reindeer',1,1964,NULL,'47'),(58544,'movie','Ghidorah, the Three-Headed Monster','San daikaijû: Chikyû saidai no kessen',1,1964,NULL,'93'),(58553,'movie','The Yellow One','Der Schut',1,1964,NULL,'118'),(58564,'movie','Seduced and Abandoned','Sedotta e abbandonata',1,1964,NULL,'118'),(58586,'movie','A Shot in the Dark','A Shot in the Dark',1,1964,NULL,'102'),(58625,'movie','Woman in the Dunes','Suna no onna',1,1964,NULL,'147'),(58636,'movie','Tamahine','Tamahine',1,1963,NULL,'95'),(58658,'movie','Code Name: Tiger','Le Tigre aime la chair fraîche',1,1964,NULL,'90'),(58659,'movie','The Time Travelers','The Time Travelers',1,1964,NULL,'84'),(58695,'movie','Aunt Tula','La tía Tula',1,1964,NULL,'109'),(58700,'movie','The Last Man on Earth','The Last Man on Earth',1,1964,NULL,'86'),(58708,'movie','The Unsinkable Molly Brown','The Unsinkable Molly Brown',1,1964,NULL,'128'),(58709,'movie','Amongst Vultures','Unter Geiern',1,1964,NULL,'98'),(58715,'movie','The Gospel According to St. Matthew','Il vangelo secondo Matteo',1,1964,NULL,'137'),(58725,'movie','Viva Las Vegas','Viva Las Vegas',1,1964,NULL,'85'),(58751,'movie','Winnetou: The Red Gentleman','Winnetou - 2. Teil',1,1964,NULL,'94'),(58777,'movie','Zulu','Zulu',1,1964,NULL,'138'),(58888,'movie','Red Beard','Akahige',1,1965,NULL,'185'),(58898,'movie','Alphaville','Alphaville: Une étrange aventure de Lemmy Caution',1,1965,NULL,'99'),(58946,'movie','The Battle of Algiers','La battaglia di Algeri',1,1966,NULL,'121'),(58969,'movie','The Big Job','The Big Job',1,1965,NULL,'85'),(58997,'movie','Bunny Lake Is Missing','Bunny Lake Is Missing',1,1965,NULL,'107'),(59017,'movie','Cat Ballou','Cat Ballou',1,1965,NULL,'97'),(59020,'tvEpisode','Cathy Come Home','Cathy Come Home',1,1966,NULL,'75'),(59080,'movie','Gamera: The Giant Monster','Daikaijû Gamera',1,1965,NULL,'78'),(59084,'movie','Darling','Darling',1,1965,NULL,'128'),(59100,'movie','Devils of Darkness','Devils of Darkness',1,1965,NULL,'88'),(59113,'movie','Doctor Zhivago','Doctor Zhivago',1,1965,NULL,'197'),(59127,'movie','Dracula: Prince of Darkness','Dracula, Prince of Darkness',1,1966,NULL,'90'),(59170,'movie','Faster, Pussycat! Kill! Kill!','Faster, Pussycat! Kill! Kill!',1,1965,NULL,'83'),(59183,'movie','The Flight of the Phoenix','The Flight of the Phoenix',1,1965,NULL,'142'),(59205,'movie','Frankenstein vs. Baragon','Frankenstein tai Baragon',1,1965,NULL,'90'),(59212,'movie','Gulliver\'s Space Travels: Beyond the Moon','Garibaa no uchû ryokô',1,1965,NULL,'80'),(59224,'movie','Girl Happy','Girl Happy',1,1965,NULL,'96'),(59229,'movie','Juliet of the Spirits','Giulietta degli spiriti',1,1965,NULL,'137'),(59314,'movie','Inside Daisy Clover','Inside Daisy Clover',1,1965,NULL,'128'),(59319,'movie','The Ipcress File','The Ipcress File',1,1965,NULL,'109'),(59346,'movie','Invasion of Astro-Monster','Kaijû daisensô',1,1965,NULL,'94'),(59348,'movie','The Coward','Kapurush',1,1965,NULL,'70'),(59362,'movie','The Knack... and How to Get It','The Knack ...and How to Get It',1,1965,NULL,'85'),(59538,'movie','Old Surehand','Old Surehand',1,1965,NULL,'90'),(59557,'movie','Our Man Flint','Our Man Flint',1,1966,NULL,'108'),(59563,'movie','Paradise, Hawaiian Style','Paradise, Hawaiian Style',1,1966,NULL,'91'),(59573,'movie','A Patch of Blue','A Patch of Blue',1,1965,NULL,'105'),(59578,'movie','For a Few Dollars More','Per qualche dollaro in più',1,1965,NULL,'132'),(59607,'movie','The Pleasure Girls','The Pleasure Girls',1,1965,NULL,'88'),(59616,'movie','The Trial of Joan of Arc','Procès de Jeanne d\'Arc',1,1962,NULL,'65'),(59621,'movie','Pyramid of the Sun God','Die Pyramide des Sonnengottes',1,1965,NULL,'102'),(59631,'short','The Railrodder','The Railrodder',1,1965,NULL,'24'),(59646,'movie','Repulsion','Repulsion',1,1965,NULL,'105'),(59682,'movie','Treasure of the Aztecs','Der Schatz der Azteken',1,1965,NULL,'101'),(59742,'movie','The Sound of Music','The Sound of Music',1,1965,NULL,'172'),(59764,'movie','A Study in Terror','A Study in Terror',1,1965,NULL,'95'),(59793,'movie','That Darn Cat!','That Darn Cat!',1,1965,NULL,'116'),(59800,'movie','Thunderball','Thunderball',1,1965,NULL,'130'),(59825,'movie','The Train','The Train',1,1964,NULL,'133'),(59915,'movie','Winnetou: The Last Shot','Winnetou - 3. Teil',1,1965,NULL,'93'),(59956,'movie','Viva Maria!','Viva Maria!',1,1965,NULL,'120'),(59958,'movie','The Oil Prince','Der Ölprinz',1,1965,NULL,'89'),(60086,'movie','Alfie','Alfie',1,1966,NULL,'114'),(60107,'movie','Andrei Rublev','Andrey Rublyov',1,1966,NULL,'205'),(60125,'movie','For Love and Gold','L\'armata Brancaleone',1,1966,NULL,'120'),(60165,'movie','A Big Hand for the Little Lady','A Big Hand for the Little Lady',1,1966,NULL,'95'),(60174,'movie','Blood Bath','Blood Bath',1,1966,NULL,'62'),(60176,'movie','Blow-Up','Blow-Up',1,1966,NULL,'111'),(60196,'movie','The Good, the Bad and the Ugly','Il buono, il brutto, il cattivo',1,1966,NULL,'161'),(60223,'movie','The Hunt','La caza',1,1966,NULL,'91'),(60315,'movie','Django','Django',1,1966,NULL,'91'),(60371,'movie','The Endless Summer','The Endless Summer',1,1966,NULL,'95'),(60390,'movie','Fahrenheit 451','Fahrenheit 451',1,1966,NULL,'112'),(60397,'movie','Fantastic Voyage','Fantastic Voyage',1,1966,NULL,'100'),(60424,'movie','The Fortune Cookie','The Fortune Cookie',1,1966,NULL,'125'),(60429,'movie','Frankie and Johnny','Frankie and Johnny',1,1966,NULL,'87'),(60446,'movie','Gamera vs. Barugon','Daikaijû kettô: Gamera tai Barugon',1,1966,NULL,'106'),(60453,'movie','Georgy Girl','Georgy Girl',1,1966,NULL,'99'),(60464,'movie','Ebirah, Horror of the Deep','Gojira, Ebirâ, Mosura: Nankai no daiketto',1,1966,NULL,'87'),(60479,'movie','The Group','The Group',1,1966,NULL,'150'),(60522,'movie','How to Steal a Million','How to Steal a Million',1,1966,NULL,'123'),(60558,'movie','Jesse James Meets Frankenstein\'s Daughter','Jesse James Meets Frankenstein\'s Daughter',1,1966,NULL,'88'),(60637,'movie','Lost Command','Lost Command',1,1966,NULL,'129'),(60640,'movie','Lt. Robin Crusoe, U.S.N.','Lt. Robin Crusoe, U.S.N.',1,1966,NULL,'110'),(60647,'movie','Made in U.S.A','Made in U.S.A',1,1966,NULL,'90'),(60665,'movie','A Man for All Seasons','A Man for All Seasons',1,1966,NULL,'120'),(60666,'movie','Manos: The Hands of Fate','Manos: The Hands of Fate',1,1966,NULL,'70'),(60728,'movie','Murderers\' Row','Murderers\' Row',1,1966,NULL,'105'),(60758,'movie','Black Girl','La noire de...',1,1966,NULL,'65'),(60782,'movie','One Million Years B.C.','One Million Years B.C.',1,1966,NULL,'100'),(60827,'movie','Persona','Persona',1,1966,NULL,'85'),(60841,'movie','The Plague of the Zombies','The Plague of the Zombies',1,1966,NULL,'90'),(60879,'movie','Who Are You, Polly Maggoo?','Qui êtes-vous, Polly Maggoo ?',1,1966,NULL,'102'),(60891,'movie','The Nun','La religieuse',1,1966,NULL,'140'),(60934,'movie','The Sand Pebbles','The Sand Pebbles',1,1966,NULL,'182'),(60959,'movie','Daisies','Sedmikrásky',1,1966,NULL,'75'),(60980,'movie','The Silencers','The Silencers',1,1966,NULL,'102'),(61015,'movie','Spinout','Spinout',1,1966,NULL,'90'),(61101,'movie','Tokyo Drifter','Tôkyô nagaremono',1,1966,NULL,'89'),(61107,'movie','Torn Curtain','Torn Curtain',1,1966,NULL,'128'),(61122,'movie','The Trouble with Angels','The Trouble with Angels',1,1966,NULL,'112'),(61184,'movie','Who\'s Afraid of Virginia Woolf?','Who\'s Afraid of Virginia Woolf?',1,1966,NULL,'131'),(61197,'movie','Winnetou and the Crossbreed','Winnetou und das Halbblut Apanatschi',1,1966,NULL,'90'),(61198,'movie','Old Firehand','Winnetou und sein Freund Old Firehand',1,1966,NULL,'98'),(61328,'movie','Accident','Accident',1,1967,NULL,'105'),(61369,'movie','Asterix the Gaul','Astérix le Gaulois',1,1967,NULL,'68'),(61385,'movie','Barefoot in the Park','Barefoot in the Park',1,1967,NULL,'106'),(61391,'movie','Bedazzled','Bedazzled',1,1967,NULL,'103'),(61395,'movie','Belle de Jour','Belle de jour',1,1967,NULL,'100'),(61398,'movie','Berserk','Berserk',1,1967,NULL,'96'),(61418,'movie','Bonnie and Clyde','Bonnie and Clyde',1,1967,NULL,'111'),(61452,'movie','Casino Royale','Casino Royale',1,1967,NULL,'131'),(61489,'movie','Clambake','Clambake',1,1967,NULL,'99'),(61495,'movie','The Collector','La collectionneuse',1,1967,NULL,'89'),(61512,'movie','Cool Hand Luke','Cool Hand Luke',1,1967,NULL,'127'),(61523,'movie','A Countess from Hong Kong','A Countess from Hong Kong',1,1967,NULL,'120'),(61576,'movie','God Forgives... I Don\'t!','Dio perdona... Io no!',1,1967,NULL,'113'),(61578,'movie','The Dirty Dozen','The Dirty Dozen',1,1967,NULL,'150'),(61590,'movie','Don\'t Make Waves','Don\'t Make Waves',1,1967,NULL,'97'),(61595,'movie','Double Trouble','Double Trouble',1,1967,NULL,'91'),(61619,'movie','El Dorado','El Dorado',1,1966,NULL,'126'),(61620,'movie','Elvira Madigan','Elvira Madigan',1,1967,NULL,'91'),(61634,'movie','Eye of the Devil','Eye of the Devil',1,1966,NULL,'96'),(61655,'movie','The Fearless Vampire Killers','Dance of the Vampires',1,1967,NULL,'108'),(61695,'movie','Gamera vs. Gyaos','Daikaijû kûchûsen: Gamera tai Gyaosu',1,1967,NULL,'86'),(61722,'movie','The Graduate','The Graduate',1,1967,NULL,'106'),(61735,'movie','Guess Who\'s Coming to Dinner','Guess Who\'s Coming to Dinner',1,1967,NULL,'108'),(61747,'movie','Hang \'Em High','Hang \'Em High',1,1968,NULL,'114'),(61785,'movie','Hot Thrills and Warm Chills','Hot Thrills and Warm Chills',1,1967,NULL,'80'),(61811,'movie','In the Heat of the Night','In the Heat of the Night',1,1967,NULL,'110'),(61834,'movie','I Am Curious (Yellow)','Jag är nyfiken - En film i gult',1,1967,NULL,'121'),(61852,'movie','The Jungle Book','The Jungle Book',1,1967,NULL,'78'),(61856,'movie','Son of Godzilla','Kaijûtô no kessen: Gojira no musuko',1,1967,NULL,'86'),(61879,'movie','Late August at the Hotel Ozone','Konec srpna v Hotelu Ozon',1,1967,NULL,'77'),(61882,'movie','Branded to Kill','Koroshi no rakuin',1,1967,NULL,'91'),(61955,'movie','The Bride Wore Black','La mariée était en noir',1,1968,NULL,'107'),(62082,'movie','Django Kill... If You Live, Shoot!','Se sei vivo spara',1,1967,NULL,'100'),(62113,'movie','Peppermint Frappé','Peppermint Frappé',1,1967,NULL,'94'),(62136,'movie','Playtime','Playtime',1,1967,NULL,'155'),(62151,'movie','Django, Prepare a Coffin','Preparati la bara!',1,1968,NULL,'92'),(62164,'movie','The Boys of Paul Street','A Pál utcai fiúk',1,1968,NULL,'110'),(62207,'movie','Robbery','Robbery',1,1967,NULL,'110'),(62229,'movie','Le Samouraï','Le Samouraï',1,1967,NULL,'105'),(62281,'movie','Smashing Time','Smashing Time',1,1967,NULL,'96'),(62362,'movie','Thoroughly Modern Millie','Thoroughly Modern Millie',1,1967,NULL,'138'),(62373,'movie','A Time for Killing','A Time for Killing',1,1967,NULL,'88'),(62376,'movie','To Sir, with Love','To Sir, with Love',1,1967,NULL,'105'),(62407,'movie','Two for the Road','Two for the Road',1,1967,NULL,'111'),(62411,'movie','The X from Outer Space','Uchû daikaijû Girara',1,1967,NULL,'89'),(62426,'movie','Up the Junction','Up the Junction',1,1968,NULL,'119'),(62430,'movie','Valley of the Dolls','Valley of the Dolls',1,1967,NULL,'123'),(62446,'movie','The Rape of the Vampire','Le viol du vampire',1,1968,NULL,'95'),(62467,'movie','Wait Until Dark','Wait Until Dark',1,1967,NULL,'108'),(62502,'movie','Woman Times Seven','Woman Times Seven',1,1967,NULL,'99'),(62512,'movie','You Only Live Twice','You Only Live Twice',1,1967,NULL,'117'),(62534,'movie','Two Weeks in September','À coeur joie',1,1967,NULL,'96'),(62622,'movie','2001: A Space Odyssey','2001: A Space Odyssey',1,1968,NULL,'149'),(62657,'movie','The Ambushers','The Ambushers',1,1967,NULL,'102'),(62687,'movie','Asterix and Cleopatra','Astérix et Cléopâtre',1,1968,NULL,'72'),(62711,'movie','Barbarella','Barbarella',1,1968,NULL,'98'),(62765,'movie','Bullitt','Bullitt',1,1968,NULL,'114'),(62782,'movie','Carry on Up the Khyber','Carry on Up the Khyber',1,1968,NULL,'88'),(62794,'movie','Charly','Charly',1,1968,NULL,'103'),(62803,'movie','Chitty Chitty Bang Bang','Chitty Chitty Bang Bang',1,1968,NULL,'144'),(62851,'movie','Daimajin','Daimajin',1,1966,NULL,'84'),(62852,'movie','Wrath of Daimajin','Daimajin gyakushû',1,1966,NULL,'87'),(62853,'movie','Return of Daimajin','Daimajin ikaru',1,1966,NULL,'79'),(62870,'movie','Marquis de Sade\'s Justine','Marquis de Sade: Justine',1,1969,NULL,'90'),(62873,'movie','The Young Girls of Rochefort','Les demoiselles de Rochefort',1,1967,NULL,'120'),(62909,'movie','Dracula Has Risen from the Grave','Dracula Has Risen from the Grave',1,1968,NULL,'92'),(62925,'movie','Stars of Eger','Egri csillagok',1,1968,NULL,'157'),(62990,'movie','The Fox','The Fox',1,1967,NULL,'110'),(62994,'movie','Funny Girl','Funny Girl',1,1968,NULL,'151'),(63000,'movie','Gamera vs. Viras','Gamera tai uchu kaijû Bairasu',1,1968,NULL,'75'),(63010,'movie','Mafia','Il giorno della civetta',1,1968,NULL,'108'),(63049,'movie','Head','Head',1,1968,NULL,'86'),(63060,'movie','Hellfighters','Hellfighters',1,1968,NULL,'121'),(63121,'movie','Ice Station Zebra','Ice Station Zebra',1,1968,NULL,'148'),(63172,'movie','Destroy All Monsters','Kaijû sôshingeki',1,1968,NULL,'89'),(63185,'movie','The Killing of Sister George','The Killing of Sister George',1,1968,NULL,'138'),(63227,'movie','The Lion in Winter','The Lion in Winter',1,1968,NULL,'134'),(63231,'movie','Live a Little, Love a Little','Live a Little, Love a Little',1,1968,NULL,'90'),(63268,'movie','Mandabi','Mandabi',1,1968,NULL,'92'),(63278,'movie','Marketa Lazarová','Marketa Lazarová',1,1967,NULL,'162'),(63350,'movie','Night of the Living Dead','Night of the Living Dead',1,1968,NULL,'96'),(63379,'movie','Today We Kill, Tomorrow We Die!','Oggi a me... domani a te!',1,1968,NULL,'105'),(63385,'movie','Oliver!','Oliver!',1,1968,NULL,'153'),(63415,'movie','The Party','The Party',1,1968,NULL,'99'),(63442,'movie','Planet of the Apes','Planet of the Apes',1,1968,NULL,'112'),(63462,'movie','The Producers','The Producers',1,1967,NULL,'88'),(63493,'movie','Reconstruction','Reconstituirea',1,1968,NULL,'100'),(63518,'movie','Romeo and Juliet','Romeo and Juliet',1,1968,NULL,'138'),(63522,'movie','Rosemary\'s Baby','Rosemary\'s Baby',1,1968,NULL,'137'),(63592,'movie','Shalako','Shalako',1,1968,NULL,'113'),(63634,'movie','Speedway','Speedway',1,1968,NULL,'94'),(63642,'movie','Star!','Star!',1,1968,NULL,'176'),(63663,'movie','The Swimmer','The Swimmer',1,1968,NULL,'95'),(63668,'movie','Horus: Prince of the Sun','Taiyô no ôji: Horusu no daibôken',1,1968,NULL,'82'),(63759,'movie','Hour of the Wolf','Vargtimmen',1,1968,NULL,'90'),(63787,'movie','Vixen!','Vixen!',1,1968,NULL,'70'),(63818,'movie','The Valley of Death','Winnetou und Shatterhand im Tal der Toten',1,1968,NULL,'89'),(63823,'movie','Yellow Submarine','Yellow Submarine',1,1968,NULL,'88'),(63850,'movie','If....','If....',1,1968,NULL,'111'),(63991,'movie','Age of Consent','Age of Consent',1,1969,NULL,'106'),(64002,'movie','Alice\'s Restaurant','Alice\'s Restaurant',1,1969,NULL,'111'),(64040,'movie','Army of Shadows','L\'armée des ombres',1,1969,NULL,'145'),(64106,'movie','Le Boucher','Le boucher',1,1970,NULL,'93'),(64115,'movie','Butch Cassidy and the Sundance Kid','Butch Cassidy and the Sundance Kid',1,1969,NULL,'110'),(64116,'movie','Once Upon a Time in the West','C\'era una volta il West',1,1968,NULL,'165'),(64155,'movie','Charro!','Charro!',1,1969,NULL,'98'),(64156,'movie','Chastity','Chastity',1,1969,NULL,'83'),(64165,'movie','The Things of Life','Les choses de la vie',1,1970,NULL,'89'),(64177,'movie','Colossus: The Forbin Project','Colossus: The Forbin Project',1,1970,NULL,'100'),(64208,'movie','Death Rides a Horse','Da uomo a uomo',1,1967,NULL,'120'),(64240,'movie','Django the Bastard','Django il bastardo',1,1969,NULL,'98'),(64253,'movie','Downhill Racer','Downhill Racer',1,1969,NULL,'101'),(64276,'movie','Easy Rider','Easy Rider',1,1969,NULL,'95'),(64324,'movie','Les femmes','Les femmes',1,1969,NULL,'86'),(64333,'movie','Flareup','Flareup',1,1969,NULL,'100'),(64370,'movie','The Girl Who Knew Too Much','The Girl Who Knew Too Much',1,1969,NULL,'95'),(64373,'movie','All Monsters Attack','Gojira-Minira-Gabara: Oru kaijû daishingeki',1,1969,NULL,'69'),(64418,'movie','Hello, Dolly!','Hello, Dolly!',1,1969,NULL,'146'),(64437,'movie','The Honeymoon Killers','The Honeymoon Killers',1,1970,NULL,'107'),(64505,'movie','The Italian Job','The Italian Job',1,1969,NULL,'99'),(64541,'movie','Kes','Kes',1,1969,NULL,'111'),(64612,'movie','My Night at Maud\'s','Ma nuit chez Maud',1,1969,NULL,'110'),(64665,'movie','Midnight Cowboy','Midnight Cowboy',1,1969,NULL,'113'),(64708,'movie','My Side of the Mountain','My Side of the Mountain',1,1969,NULL,'100'),(64757,'movie','On Her Majesty\'s Secret Service','On Her Majesty\'s Secret Service',1,1969,NULL,'142'),(64782,'movie','Paint Your Wagon','Paint Your Wagon',1,1969,NULL,'164'),(64793,'movie','The Passion of Anna','En passion',1,1969,NULL,'101'),(64806,'movie','The Phantom Tollbooth','The Phantom Tollbooth',1,1970,NULL,'90'),(64816,'movie','La Piscine','La piscine',1,1969,NULL,'122'),(64840,'movie','The Prime of Miss Jean Brodie','The Prime of Miss Jean Brodie',1,1969,NULL,'116'),(64990,'movie','Mississippi Mermaid','La sirène du Mississipi',1,1969,NULL,'123'),(65051,'movie','Support Your Local Sheriff!','Support Your Local Sheriff!',1,1969,NULL,'92'),(65063,'movie','Take the Money and Run','Take the Money and Run',1,1969,NULL,'85'),(65073,'movie','Taste the Blood of Dracula','Taste the Blood of Dracula',1,1970,NULL,'91'),(65088,'movie','They Shoot Horses, Don\'t They?','They Shoot Horses, Don\'t They?',1,1969,NULL,'129'),(65125,'movie','The Trouble with Girls','The Trouble with Girls',1,1969,NULL,'97'),(65126,'movie','True Grit','True Grit',1,1969,NULL,'128'),(65134,'movie','Two Mules for Sister Sara','Two Mules for Sister Sara',1,1970,NULL,'116'),(65207,'movie','Where Eagles Dare','Where Eagles Dare',1,1968,NULL,'158'),(65225,'movie','The Wrecking Crew','The Wrecking Crew',1,1968,NULL,'105'),(65234,'movie','Z','Z',1,1969,NULL,'127'),(65375,'movie','The Adventures of Gerard','The Adventures of Gerard',1,1970,NULL,'92'),(65377,'movie','Airport','Airport',1,1970,NULL,'137'),(65421,'movie','The Aristocats','The AristoCats',1,1970,NULL,'78'),(65449,'tvMovie','Bambule','Bambule',1,1970,NULL,'90'),(65466,'movie','Beyond the Valley of the Dolls','Beyond the Valley of the Dolls',1,1970,NULL,'109'),(65488,'movie','The Boys in the Band','The Boys in the Band',1,1970,NULL,'118'),(65528,'movie','Catch-22','Catch-22',1,1970,NULL,'122'),(65531,'movie','The Red Circle','Le cercle rouge',1,1970,NULL,'140'),(65537,'movie','Change of Habit','Change of Habit',1,1969,NULL,'93'),(65566,'movie','The Computer Wore Tennis Shoes','The Computer Wore Tennis Shoes',1,1969,NULL,'91'),(65569,'movie','Count Dracula','Nachts, wenn Dracula erwacht',1,1970,NULL,'98'),(65571,'movie','The Conformist','Il conformista',1,1970,NULL,'113'),(65611,'movie','Darling Lili','Darling Lili',1,1970,NULL,'136'),(65649,'movie','Dodes\'ka-den','Dodesukaden',1,1970,NULL,'140'),(65724,'movie','Five Easy Pieces','Five Easy Pieces',1,1970,NULL,'98'),(65772,'movie','Claire\'s Knee','Le genou de Claire',1,1970,NULL,'105'),(65854,'movie','The House That Dripped Blood','The House That Dripped Blood',1,1971,NULL,'102'),(65856,'movie','House of Dark Shadows','House of Dark Shadows',1,1970,NULL,'97'),(65889,'movie','Investigation of a Citizen Above Suspicion','Indagine su un cittadino al di sopra di ogni sospetto',1,1970,NULL,'115'),(65904,'movie','The Party at Kitty and Stud\'s','The Party at Kitty and Stud\'s',1,1970,NULL,'71'),(65988,'movie','Little Big Man','Little Big Man',1,1970,NULL,'139'),(66011,'movie','Love Story','Love Story',1,1970,NULL,'100'),(66109,'movie','The Music Lovers','The Music Lovers',1,1971,NULL,'123'),(66115,'movie','Myra Breckinridge','Myra Breckinridge',1,1970,NULL,'94'),(66122,'movie','Deep End','Deep End',1,1970,NULL,'92'),(66164,'movie','Les novices','Les novices',1,1970,NULL,'91'),(66206,'movie','Patton','Patton',1,1970,NULL,'172'),(66207,'movie','Donkey Skin','Peau d\'âne',1,1970,NULL,'91'),(66227,'movie','Pippi in the South Seas','Pippi Långstrump på de sju haven',1,1970,NULL,'86'),(66279,'movie','The Railway Children','The Railway Children',1,1970,NULL,'109'),(66301,'movie','Rio Lobo','Rio Lobo',1,1970,NULL,'114'),(66327,'tvMovie','Santa Claus Is Comin\' to Town','Santa Claus Is Comin\' to Town',1,1970,NULL,'48'),(66380,'movie','Vampyros Lesbos','Vampyros Lesbos',1,1971,NULL,'89'),(66434,'movie','THX 1138','THX 1138',1,1971,NULL,'86'),(66473,'movie','Tora! Tora! Tora!','Tora! Tora! Tora!',1,1970,NULL,'144'),(66491,'movie','Tristana','Tristana',1,1970,NULL,'99'),(66518,'movie','The Vampire Lovers','The Vampire Lovers',1,1970,NULL,'91'),(66549,'movie','Waterloo','Waterloo',1,1970,NULL,'134'),(66579,'movie','Women in Love','Women in Love',1,1969,NULL,'131'),(66601,'movie','Zabriskie Point','Zabriskie Point',1,1970,NULL,'113'),(66728,'movie','The Million Dollar Duck','The Million Dollar Duck',1,1971,NULL,'89'),(66730,'movie','10 Rillington Place','10 Rillington Place',1,1971,NULL,'111'),(66763,'movie','Anand','Anand',1,1971,NULL,'122'),(66765,'movie','And Now for Something Completely Different','And Now for Something Completely Different',1,1971,NULL,'88'),(66769,'movie','The Andromeda Strain','The Andromeda Strain',1,1971,NULL,'131'),(66798,'movie','Money Money Money','L\'aventure, c\'est l\'aventure',1,1972,NULL,'120'),(66808,'movie','Bananas','Bananas',1,1971,NULL,'82'),(66817,'movie','Bedknobs and Broomsticks','Bedknobs and Broomsticks',1,1971,NULL,'117'),(66824,'movie','A Girl in Australia','Bello onesto emigrato Australia sposerebbe compaesana illibata',1,1971,NULL,'113'),(66857,'movie','Rum Runners','Boulevard du Rhum',1,1971,NULL,'135'),(66914,'movie','A Virgin Among the Living Dead','La nuit des étoiles filantes',1,1973,NULL,'105'),(66919,'movie','Lulu the Tool','La classe operaia va in paradiso',1,1971,NULL,'125'),(66921,'movie','A Clockwork Orange','A Clockwork Orange',1,1971,NULL,'136'),(66993,'movie','The Devils','The Devils',1,1971,NULL,'111'),(66995,'movie','Diamonds Are Forever','Diamonds Are Forever',1,1971,NULL,'120'),(67023,'tvMovie','Duel','Duel',1,1971,NULL,'90'),(67065,'movie','Escape from the Planet of the Apes','Escape from the Planet of the Apes',1,1971,NULL,'98'),(67116,'movie','The French Connection','The French Connection',1,1971,NULL,'104'),(67128,'movie','Get Carter','Get Carter',1,1971,NULL,'112'),(67148,'movie','Godzilla vs. Hedorah','Gojira tai Hedora',1,1971,NULL,'85'),(67185,'movie','Harold and Maude','Harold and Maude',1,1971,NULL,'91'),(67206,'movie','The Hitchhikers','The Hitchhikers',1,1972,NULL,'92'),(67277,'movie','Johnny Got His Gun','Johnny Got His Gun',1,1971,NULL,'111'),(67309,'movie','Klute','Klute',1,1971,NULL,'114'),(67322,'movie','The Lady Hermit','Zhong kui niang zi',1,1971,NULL,'105'),(67328,'movie','The Last Picture Show','The Last Picture Show',1,1971,NULL,'118'),(67341,'movie','Let\'s Scare Jessica to Death','Let\'s Scare Jessica to Death',1,1971,NULL,'89'),(67355,'movie','They Call Me Trinity','Lo chiamavano Trinità...',1,1970,NULL,'115'),(67367,'movie','Lust for a Vampire','Lust for a Vampire',1,1971,NULL,'95'),(67372,'movie','Macbeth','The Tragedy of Macbeth',1,1971,NULL,'140'),(67402,'movie','Mary, Queen of Scots','Mary, Queen of Scots',1,1971,NULL,'128'),(67411,'movie','McCabe & Mrs. Miller','McCabe & Mrs. Miller',1,1971,NULL,'120'),(67418,'movie','Melody','Melody',1,1971,NULL,'103'),(67439,'movie','My Uncle Antoine','Mon oncle Antoine',1,1971,NULL,'104'),(67445,'movie','Death in Venice','Morte a Venezia',1,1971,NULL,'130'),(67451,'movie','Mrs. Pollifax-Spy','Mrs. Pollifax-Spy',1,1971,NULL,'110'),(67482,'movie','A New Leaf','A New Leaf',1,1971,NULL,'102'),(67483,'movie','Nicholas and Alexandra','Nicholas and Alexandra',1,1971,NULL,'183'),(67541,'movie','Wake in Fright','Wake in Fright',1,1971,NULL,'109'),(67588,'movie','Play Misty for Me','Play Misty for Me',1,1971,NULL,'102'),(67633,'movie','Punishment Park','Punishment Park',1,1971,NULL,'91'),(67637,'movie','The Legend of Frenchie King','Les pétroleuses',1,1971,NULL,'94'),(67690,'movie','Daughters of Darkness','Les lèvres rouges',1,1971,NULL,'87'),(67713,'movie','Scars of Dracula','Scars of Dracula',1,1970,NULL,'95'),(67736,'movie','The Seven Minutes','The Seven Minutes',1,1971,NULL,'115'),(67741,'movie','Shaft','Shaft',1,1971,NULL,'100'),(67800,'movie','Straw Dogs','Straw Dogs',1,1971,NULL,'113'),(67810,'movie','Sweet Sweetback\'s Baadasssss Song','Sweet Sweetback\'s Baad Asssss Song',1,1971,NULL,'97'),(67820,'movie','Taking Off','Taking Off',1,1971,NULL,'93'),(67866,'movie','El Topo','El Topo',1,1970,NULL,'125'),(67881,'movie','The Trojan Women','The Trojan Women',1,1971,NULL,'105'),(67919,'movie','The Emigrants','Utvandrarna',1,1971,NULL,'191'),(67927,'movie','Vanishing Point','Vanishing Point',1,1971,NULL,'99'),(67959,'movie','Walkabout','Walkabout',1,1971,NULL,'100'),(67961,'movie','Wanda','Wanda',1,1970,NULL,'102'),(67972,'movie','Werewolves on Wheels','Werewolves on Wheels',1,1971,NULL,'80'),(67977,'tvMovie','When Michael Calls','When Michael Calls',1,1972,NULL,'73'),(67992,'movie','Willy Wonka & the Chocolate Factory','Willy Wonka & the Chocolate Factory',1,1971,NULL,'100'),(68154,'movie','Trinity Is Still My Name','... continuavano a chiamarlo Trinità',1,1971,NULL,'117'),(68156,'movie','1776','1776',1,1972,NULL,'141'),(68161,'movie','The Dawns Here Are Quiet','...A zori zdes tikhie',1,1972,NULL,'188'),(68182,'movie','Aguirre, the Wrath of God','Aguirre, der Zorn Gottes',1,1972,NULL,'95'),(68205,'movie','Love in the Afternoon','L\'amour, l\'après-midi',1,1972,NULL,'97'),(68232,'movie','Return of the Evil Dead','El ataque de los muertos sin ojos',1,1973,NULL,'91'),(68240,'movie','Avanti!','Avanti!',1,1972,NULL,'144'),(68273,'movie','The Big Bird Cage','The Big Bird Cage',1,1972,NULL,'88'),(68278,'movie','The Bitter Tears of Petra von Kant','Die bitteren Tränen der Petra von Kant',1,1972,NULL,'124'),(68281,'movie','Black Gunn','Black Gunn',1,1972,NULL,'96'),(68282,'movie','Black Mama White Mama','Black Mama White Mama',1,1973,NULL,'87'),(68284,'movie','Blacula','Blacula',1,1972,NULL,'93'),(68326,'movie','Butterflies Are Free','Butterflies Are Free',1,1972,NULL,'109'),(68327,'movie','Cabaret','Cabaret',1,1972,NULL,'124'),(68346,'movie','The Mattei Affair','Il caso Mattei',1,1972,NULL,'116'),(68359,'tvShort','A Charlie Brown Thanksgiving','A Charlie Brown Thanksgiving',1,1973,NULL,'25'),(68361,'movie','The Discreet Charm of the Bourgeoisie','Le charme discret de la bourgeoisie',1,1972,NULL,'102'),(68370,'movie','Children Shouldn\'t Play with Dead Things','Children Shouldn\'t Play with Dead Things',1,1972,NULL,'87'),(68371,'movie','Godzilla vs. Gigan','Chikyû kogeki meirei: Gojira tai Gaigan',1,1972,NULL,'89'),(68468,'movie','Deep Throat','Deep Throat',1,1972,NULL,'61'),(68473,'movie','Deliverance','Deliverance',1,1972,NULL,'109'),(68569,'movie','Family Life','Family Life',1,1971,NULL,'108'),(68611,'movie','Frenzy','Frenzy',1,1972,NULL,'116'),(68638,'movie','The Getaway','The Getaway',1,1972,NULL,'123'),(68646,'movie','The Godfather','The Godfather',1,1972,NULL,'175'),(68675,'movie','Hannie Caulder','Hannie Caulder',1,1971,NULL,'85'),(68699,'movie','High Plains Drifter','High Plains Drifter',1,1973,NULL,'105'),(68762,'movie','Jeremiah Johnson','Jeremiah Johnson',1,1972,NULL,'108'),(68768,'movie','Joe Kidd','Joe Kidd',1,1972,NULL,'88'),(68815,'movie','Lone Wolf and Cub: Sword of Vengeance','Kozure Ôkami: Ko wo kashi ude kashi tsukamatsuru',1,1972,NULL,'84'),(68816,'movie','Lone Wolf and Cub: Baby Cart at the River Styx','Kozure Ôkami: Sanzu no kawa no ubaguruma',1,1972,NULL,'82'),(68817,'movie','Lone Wolf and Cub: Baby Cart to Hades','Kozure Ôkami: Shinikazeni mukau ubaguruma',1,1972,NULL,'89'),(68828,'movie','Lady Sings the Blues','Lady Sings the Blues',1,1972,NULL,'144'),(68833,'movie','The Last House on the Left','The Last House on the Left',1,1972,NULL,'84'),(69019,'movie','Don\'t Torture a Duckling','Non si sevizia un paperino',1,1972,NULL,'105'),(69067,'movie','Payday','Payday',1,1973,NULL,'103'),(69089,'movie','Pink Flamingos','Pink Flamingos',1,1972,NULL,'93'),(69095,'movie','All the Way Boys','...Più forte ragazzi!',1,1972,NULL,'120'),(69113,'movie','The Poseidon Adventure','The Poseidon Adventure',1,1972,NULL,'117'),(69281,'movie','Sleuth','Sleuth',1,1972,NULL,'138'),(69293,'movie','Solaris','Solyaris',1,1972,NULL,'167'),(69404,'movie','Travels with My Aunt','Travels with My Aunt',1,1972,NULL,'108'),(69442,'movie','A Gorgeous Girl Like Me','Une belle fille comme moi',1,1972,NULL,'98'),(69467,'movie','Cries & Whispers','Viskningar och rop',1,1972,NULL,'91'),(69489,'movie','Wedding in White','Wedding in White',1,1972,NULL,'103'),(69495,'movie','What\'s Up, Doc?','What\'s Up, Doc?',1,1972,NULL,'94'),(69697,'movie','Watch Out, We\'re Mad','...altrimenti ci arrabbiamo!',1,1974,NULL,'102'),(69704,'movie','American Graffiti','American Graffiti',1,1973,NULL,'110'),(69729,'movie','The Arena','The Arena',1,1974,NULL,'90'),(69745,'movie','Female Vampire','La comtesse noire',1,1973,NULL,'82'),(69747,'movie','The Mad Adventures of Rabbi Jacob','Les aventures de Rabbi Jacob',1,1973,NULL,'100'),(69754,'movie','The Baby','The Baby',1,1973,NULL,'84'),(69762,'movie','Badlands','Badlands',1,1973,NULL,'94'),(69848,'movie','Carry on Girls','Carry on Girls',1,1973,NULL,'88'),(69890,'movie','Cleopatra Jones','Cleopatra Jones',1,1973,NULL,'89'),(69895,'movie','The Crazies','The Crazies',1,1973,NULL,'103'),(69897,'movie','Coffy','Coffy',1,1973,NULL,'90'),(69945,'movie','Dark Star','Dark Star',1,1974,NULL,'83'),(69987,'movie','A Doll\'s House','A Doll\'s House',1,1973,NULL,'105'),(69990,'movie','Don Juan, or If Don Juan Were a Woman','Don Juan ou Si Don Juan était une femme...',1,1973,NULL,'90'),(69995,'movie','Don\'t Look Now','Don\'t Look Now',1,1973,NULL,'110'),(70003,'tvMovie','Dracula','Dracula',1,1974,NULL,'98'),(70034,'movie','Enter the Dragon','Enter the Dragon',1,1973,NULL,'102'),(70040,'movie','The Spirit of the Beehive','El espíritu de la colmena',1,1973,NULL,'98'),(70047,'movie','The Exorcist','The Exorcist',1,1973,NULL,'122'),(70122,'movie','Godzilla vs. Megalon','Gojira tai Megaro',1,1973,NULL,'81'),(70215,'movie','My Name Is Nobody','Il mio nome è Nessuno',1,1973,NULL,'116'),(70233,'movie','Ivan Vasilyevich Changes His Profession','Ivan Vasilevich menyaet professiyu',1,1973,NULL,'88'),(70239,'movie','Jesus Christ Superstar','Jesus Christ Superstar',1,1973,NULL,'106'),(70294,'movie','The Legend of Hell House','The Legend of Hell House',1,1973,NULL,'95'),(70297,'movie','The Legend of the 7 Golden Vampires','The Legend of the 7 Golden Vampires',1,1974,NULL,'89'),(70300,'movie','Lemora: A Child\'s Tale of the Supernatural','Lemora: A Child\'s Tale of the Supernatural',1,1973,NULL,'80'),(70328,'movie','Live and Let Die','Live and Let Die',1,1973,NULL,'121'),(70379,'movie','Mean Streets','Mean Streets',1,1973,NULL,'112'),(70453,'movie','Wedding in Blood','Les noces rouges',1,1973,NULL,'95'),(70460,'movie','Day for Night','La nuit américaine',1,1973,NULL,'116'),(70468,'movie','The Offence','The Offence',1,1973,NULL,'112'),(70510,'movie','Paper Moon','Paper Moon',1,1973,NULL,'102'),(70511,'movie','Papillon','Papillon',1,1973,NULL,'151'),(70518,'movie','Pat Garrett & Billy the Kid','Pat Garrett & Billy the Kid',1,1973,NULL,'122'),(70534,'movie','The Knock Out Cop','Piedone lo sbirro',1,1973,NULL,'107'),(70544,'movie','Fantastic Planet','La planète sauvage',1,1973,NULL,'72'),(70608,'movie','Robin Hood','Robin Hood',1,1973,NULL,'83'),(70634,'movie','The Satanic Rites of Dracula','The Satanic Rites of Dracula',1,1973,NULL,'87'),(70641,'movie','Slap the Monster on Page One','Sbatti il mostro in prima pagina',1,1972,NULL,'86'),(70666,'movie','Serpico','Serpico',1,1973,NULL,'130'),(70694,'movie','Silent Night, Bloody Night','Silent Night, Bloody Night',1,1972,NULL,'81'),(70698,'movie','Sisters','Sisters',1,1972,NULL,'93'),(70707,'movie','Sleeper','Sleeper',1,1973,NULL,'89'),(70723,'movie','Soylent Green','Soylent Green',1,1973,NULL,'97'),(70735,'movie','The Sting','The Sting',1,1973,NULL,'129'),(70782,'movie','Terminal Island','Terminal Island',1,1973,NULL,'88'),(70819,'movie','A Touch of Class','A Touch of Class',1,1973,NULL,'106'),(70842,'movie','Turkish Delight','Turks fruit',1,1973,NULL,'108'),(70849,'movie','Last Tango in Paris','Ultimo tango a Parigi',1,1972,NULL,'129'),(70898,'movie','A Warm December','A Warm December',1,1973,NULL,'99'),(70904,'tvMiniSeries','World on a Wire','Welt am Draht',1,1973,1973,'212'),(70917,'movie','The Wicker Man','The Wicker Man',1,1973,NULL,'88'),(70926,'movie','Wonder Women','Wonder Women',1,1973,NULL,'82'),(70948,'movie','Zardoz','Zardoz',1,1974,NULL,'105'),(70959,'movie','State of Siege','État de siège',1,1972,NULL,'130'),(71110,'movie','Airport 1975','Airport 1975',1,1974,NULL,'107'),(71115,'movie','Alice Doesn\'t Live Here Anymore','Alice Doesn\'t Live Here Anymore',1,1974,NULL,'112'),(71129,'movie','I Remember','Amarcord',1,1973,NULL,'123'),(71141,'movie','Ali: Fear Eats the Soul','Angst essen Seele auf',1,1974,NULL,'92'),(71203,'movie','Belladonna of Sadness','Kanashimi no Beradonna',1,1973,NULL,'86'),(71222,'movie','Black Christmas','Black Christmas',1,1974,NULL,'98'),(71230,'movie','Blazing Saddles','Blazing Saddles',1,1974,NULL,'93'),(71233,'movie','Blood for Dracula','Sangue per Dracula',1,1974,NULL,'103'),(71247,'tvMovie','Brief Encounter','Brief Encounter',1,1974,NULL,'103'),(71315,'movie','Chinatown','Chinatown',1,1974,NULL,'130'),(71360,'movie','The Conversation','The Conversation',1,1974,NULL,'113'),(71381,'movie','Celine and Julie Go Boating','Céline et Julie vont en bateau: Phantom Ladies Over Paris',1,1974,NULL,'193'),(71396,'movie','Messiah of Evil','Messiah of Evil',1,1974,NULL,'90'),(71402,'movie','Death Wish','Death Wish',1,1974,NULL,'93'),(71411,'movie','Dersu Uzala','Dersu Uzala',1,1975,NULL,'142'),(71427,'movie','Dialogues of Exiles','Diálogos de exiliados',1,1975,NULL,'100'),(71431,'movie','Let Sleeping Corpses Lie','No profanar el sueño de los muertos',1,1974,NULL,'95'),(71464,'movie','Emmanuelle','Emmanuelle',1,1974,NULL,'94'),(71517,'movie','Foxy Brown','Foxy Brown',1,1974,NULL,'92'),(71562,'movie','The Godfather Part II','The Godfather Part II',1,1974,NULL,'202'),(71565,'movie','Godzilla vs. Mechagodzilla','Gojira tai Mekagojira',1,1974,NULL,'84'),(71583,'movie','The Groove Tube','The Groove Tube',1,1974,NULL,'75'),(71615,'movie','The Holy Mountain','La montaña sagrada',1,1973,NULL,'114'),(71690,'movie','Je Tu Il Elle','Je tu il elle',1,1974,NULL,'86'),(71695,'movie','Lone Wolf and Cub: White Heaven in Hell','Kozure Ôkami: Jigoku e ikuzo! Daigorô',1,1974,NULL,'83'),(71717,'tvMovie','Killdozer','Killdozer',1,1974,NULL,'74'),(71762,'movie','The Little Prince','The Little Prince',1,1974,NULL,'88'),(71798,'movie','The Maids','The Maids',1,1975,NULL,'95'),(71803,'movie','Mame','Mame',1,1974,NULL,'132'),(71807,'movie','The Man with the Golden Gun','The Man with the Golden Gun',1,1974,NULL,'125'),(71853,'movie','Monty Python and the Holy Grail','Monty Python and the Holy Grail',1,1975,NULL,'91'),(71935,'movie','The Odessa File','The ODESSA File',1,1974,NULL,'130'),(71970,'movie','The Parallax View','The Parallax View',1,1974,NULL,'102'),(71994,'movie','Phantom of the Paradise','Phantom of the Paradise',1,1974,NULL,'91'),(72226,'movie','The Sugarland Express','The Sugarland Express',1,1974,NULL,'110'),(72271,'movie','The Texas Chain Saw Massacre','The Texas Chain Saw Massacre',1,1974,NULL,'83'),(72281,'movie','The Three Musketeers','The Three Musketeers',1,1973,NULL,'106'),(72308,'movie','The Towering Inferno','The Towering Inferno',1,1974,NULL,'165'),(72325,'movie','Truck Turner','Truck Turner',1,1974,NULL,'91'),(72353,'movie','Going Places','Les valseuses',1,1974,NULL,'118'),(72354,'movie','Vampyres','Vampyres',1,1974,NULL,'87'),(72417,'movie','A Woman Under the Influence','A Woman Under the Influence',1,1974,NULL,'155'),(72431,'movie','Young Frankenstein','Young Frankenstein',1,1974,NULL,'106'),(72435,'movie','Zandy\'s Bride','Zandy\'s Bride',1,1974,NULL,'97'),(72443,'movie','Mirror','Zerkalo',1,1975,NULL,'107'),(72448,'movie','Zorro','Zorro',1,1975,NULL,'124'),(72500,'tvSeries','Fawlty Towers','Fawlty Towers',1,1975,1979,'30'),(72684,'movie','Barry Lyndon','Barry Lyndon',1,1975,NULL,'185'),(72730,'movie','A Boy and His Dog','A Boy and His Dog',1,1975,NULL,'91'),(72791,'movie','Cleopatra Jones and the Casino of Gold','Cleopatra Jones and the Casino of Gold',1,1975,NULL,'94'),(72824,'tvMovie','The Count of Monte-Cristo','The Count of Monte-Cristo',1,1975,NULL,'119'),(72856,'movie','Death Race 2000','Death Race 2000',1,1975,NULL,'80'),(72890,'movie','Dog Day Afternoon','Dog Day Afternoon',1,1975,NULL,'125'),(72895,'movie','Dolemite','Dolemite',1,1975,NULL,'90'),(72901,'movie','The Twelve Tasks of Asterix','Les 12 travaux d\'Astérix',1,1976,NULL,'82'),(72905,'movie','Dr. Minx','Dr. Minx',1,1975,NULL,'94'),(72933,'movie','Emmanuelle II','Emmanuelle: L\'antivierge',1,1975,NULL,'83'),(72979,'movie','Female Trouble','Female Trouble',1,1974,NULL,'89'),(73076,'movie','Grey Gardens','Grey Gardens',1,1975,NULL,'95'),(73114,'movie','The Story of Adele H','L\'histoire d\'Adèle H.',1,1975,NULL,'96'),(73115,'movie','The Story of O','Histoire d\'O',1,1975,NULL,'105'),(73172,'movie','Inserts','Inserts',1,1975,NULL,'117'),(73179,'tvMovie','The Irony of Fate, or Enjoy Your Bath!','Ironiya sudby, ili S legkim parom!',1,1976,NULL,'192'),(73195,'movie','Jaws','Jaws',1,1975,NULL,'124'),(73198,'movie','Jeanne Dielman, 23, quai du commerce, 1080 Bruxelles','Jeanne Dielman, 23 quai du Commerce, 1080 Bruxelles',1,1975,NULL,'202'),(73233,'movie','Katie Tippel','Keetje Tippel',1,1975,NULL,'100'),(73312,'movie','Love and Death','Love and Death',1,1975,NULL,'85'),(73349,'movie','Mandingo','Mandingo',1,1975,NULL,'127'),(73373,'movie','Terror of Mechagodzilla','Mekagojira no gyakushu',1,1975,NULL,'83'),(73440,'movie','Nashville','Nashville',1,1975,NULL,'160'),(73471,'movie','Number Two','Numéro deux',1,1975,NULL,'88'),(73486,'movie','One Flew Over the Cuckoo\'s Nest','One Flew Over the Cuckoo\'s Nest',1,1975,NULL,'133'),(73518,'movie','Pascual Duarte','Pascual Duarte',1,1976,NULL,'94'),(73540,'movie','Picnic at Hanging Rock','Picnic at Hanging Rock',1,1975,NULL,'115'),(73541,'movie','Flatfoot in Hong Kong','Piedone a Hong Kong',1,1975,NULL,'115'),(73582,'movie','Deep Red','Profondo rosso',1,1975,NULL,'127'),(73598,'movie','Blonde in Black Leather','Qui comincia l\'avventura',1,1975,NULL,'100'),(73629,'movie','The Rocky Horror Picture Show','The Rocky Horror Picture Show',1,1975,NULL,'100'),(73650,'movie','Salò, or the 120 Days of Sodom','Salò o le 120 giornate di Sodoma',1,1975,NULL,'117'),(73697,'movie','\'Sheba, Baby\'','Sheba, Baby',1,1975,NULL,'90'),(73747,'movie','The Stepford Wives','The Stepford Wives',1,1975,NULL,'115'),(73768,'movie','Supervixens','Supervixens',1,1975,NULL,'106'),(73778,'movie','Switchblade Sisters','Switchblade Sisters',1,1975,NULL,'91'),(73802,'movie','Three Days of the Condor','Three Days of the Condor',1,1975,NULL,'117'),(73812,'movie','Tommy','Tommy',1,1975,NULL,'111'),(73972,'tvSeries','Charlie\'s Angels','Charlie\'s Angels',1,1976,1981,'60'),(74080,'movie','\'Gator Bait','\'Gator Bait',1,1973,NULL,'88'),(74102,'movie','In the Realm of the Senses','Ai no korîda',1,1976,NULL,'109'),(74119,'movie','All the President\'s Men','All the President\'s Men',1,1976,NULL,'138'),(74121,'movie','Allegro non troppo','Allegro non troppo',1,1976,NULL,'85'),(74152,'movie','Small Change','L\'argent de poche',1,1976,NULL,'104'),(74156,'movie','Assault on Precinct 13','Assault on Precinct 13',1,1976,NULL,'91'),(74256,'movie','Bugsy Malone','Bugsy Malone',1,1976,NULL,'93'),(74285,'movie','Carrie','Carrie',1,1976,NULL,'98'),(74400,'movie','The Desert of the Tartars','Il deserto dei tartari',1,1976,NULL,'140'),(74437,'movie','Drum','Drum',1,1976,NULL,'110'),(74455,'movie','Eaten Alive','Eaten Alive',1,1976,NULL,'91'),(74462,'tvMovie','Edvard Munch','Edvard Munch',1,1974,NULL,'210'),(74471,'movie','Passion Plantation','Emmanuelle bianca e nera',1,1976,NULL,'82'),(74486,'movie','Eraserhead','Eraserhead',1,1977,NULL,'89'),(74512,'movie','Family Plot','Family Plot',1,1976,NULL,'120'),(74548,'movie','Love Camp','Frauen im Liebeslager',1,1977,NULL,'79'),(74597,'movie','The Gumball Rally','The Gumball Rally',1,1976,NULL,'105'),(74611,'movie','The Haunting of Julia','Full Circle',1,1977,NULL,'98'),(74740,'movie','Keoma','Keoma',1,1976,NULL,'105'),(74806,'movie','The Little Girl Who Lives Down the Lane','The Little Girl Who Lives Down the Lane',1,1976,NULL,'91'),(74811,'movie','The Tenant','Le locataire',1,1976,NULL,'126'),(74812,'movie','Logan\'s Run','Logan\'s Run',1,1976,NULL,'119'),(74851,'movie','The Man Who Fell to Earth','The Man Who Fell to Earth',1,1976,NULL,'139'),(74853,'tvMovie','The Man in the Iron Mask','The Man in the Iron Mask',1,1977,NULL,'100'),(74855,'movie','Mandinga','Mandinga',1,1976,NULL,'86'),(74860,'movie','Marathon Man','Marathon Man',1,1976,NULL,'125'),(74937,'movie','Murder by Death','Murder by Death',1,1976,NULL,'95'),(74958,'movie','Network','Network',1,1976,NULL,'121'),(75005,'movie','The Omen','The Omen',1,1976,NULL,'111'),(75029,'movie','The Outlaw Josey Wales','The Outlaw Josey Wales',1,1976,NULL,'135'),(75137,'movie','Revenge of the Cheerleaders','Revenge of the Cheerleaders',1,1976,NULL,'87'),(75148,'movie','Rocky','Rocky',1,1976,NULL,'120'),(75177,'movie','Sebastiane','Sebastiane',1,1976,NULL,'86'),(75178,'movie','Fantozzi 2','Il secondo tragico Fantozzi',1,1976,NULL,'110'),(75222,'movie','Silent Movie','Silent Movie',1,1976,NULL,'87'),(75223,'movie','Silver Streak','Silver Streak',1,1976,NULL,'114'),(75249,'movie','Sparkle','Sparkle',1,1976,NULL,'98'),(75265,'movie','A Star Is Born','A Star Is Born',1,1976,NULL,'139'),(75276,'movie','Stroszek','Stroszek',1,1977,NULL,'115'),(75314,'movie','Taxi Driver','Taxi Driver',1,1976,NULL,'114'),(75342,'movie','The Town That Dreaded Sundown','The Town That Dreaded Sundown',1,1976,NULL,'90'),(75359,'movie','Two-Minute Warning','Two-Minute Warning',1,1976,NULL,'115'),(75376,'movie','Up!','Up!',1,1976,NULL,'80'),(75467,'movie','The Fifth Seal','Az ötödik pecsét',1,1976,NULL,'111'),(75612,'movie','3 Women','3 Women',1,1977,NULL,'124'),(75617,'movie','ABBA: The Movie','ABBA: The Movie',1,1977,NULL,'95'),(75666,'movie','Alucarda','Alucarda, la hija de las tinieblas',1,1977,NULL,'78'),(75679,'movie','Bad','Bad',1,1977,NULL,'105'),(75686,'movie','Annie Hall','Annie Hall',1,1977,NULL,'93'),(75784,'movie','A Bridge Too Far','A Bridge Too Far',1,1977,NULL,'175'),(75860,'movie','Close Encounters of the Third Kind','Close Encounters of the Third Kind',1,1977,NULL,'138'),(75909,'movie','Damnation Alley','Damnation Alley',1,1977,NULL,'91'),(75936,'movie','Desperate Living','Desperate Living',1,1977,NULL,'90'),(75938,'movie','The Devil, Probably','Le diable probablement',1,1977,NULL,'95'),(75939,'movie','Peppermint Soda','Diabolo menthe',1,1977,NULL,'101'),(75968,'movie','The Duellists','The Duellists',1,1977,NULL,'100'),(75988,'tvMovie','Emmet Otter\'s Jug-Band Christmas','Emmet Otter\'s Jug-Band Christmas',1,1977,NULL,'48'),(76054,'movie','Freaky Friday','Freaky Friday',1,1976,NULL,'95'),(76085,'movie','A Special Day','Una giornata particolare',1,1977,NULL,'106'),(76095,'movie','The Goodbye Girl','The Goodbye Girl',1,1977,NULL,'111'),(76141,'movie','High Anxiety','High Anxiety',1,1977,NULL,'94'),(76155,'movie','The Man Who Loved Women','L\'homme qui aimait les femmes',1,1977,NULL,'120'),(76161,'movie','The Hound of the Baskervilles','The Hound of the Baskervilles',1,1978,NULL,'85'),(76162,'movie','House','Hausu',1,1977,NULL,'88'),(76175,'movie','March or Die','March or Die',1,1977,NULL,'107'),(76240,'movie','Jubilee','Jubilee',1,1978,NULL,'106'),(76245,'movie','Julia','Julia',1,1977,NULL,'117'),(76257,'movie','The Kentucky Fried Movie','The Kentucky Fried Movie',1,1977,NULL,'83'),(76271,'movie','Kingdom of the Spiders','Kingdom of the Spiders',1,1977,NULL,'97'),(76319,'movie','A Little Night Music','A Little Night Music',1,1977,NULL,'124'),(76363,'movie','The Many Adventures of Winnie the Pooh','The Many Adventures of Winnie the Pooh',1,1977,NULL,'74'),(76504,'movie','Orca','Orca',1,1977,NULL,'92'),(76538,'movie','Pete\'s Dragon','Pete\'s Dragon',1,1977,NULL,'128'),(76578,'movie','Pumping Iron','Pumping Iron',1,1977,NULL,'86'),(76582,'movie','Coming Attractions','Loose Shoes',1,1978,NULL,'84'),(76584,'movie','The Inglorious Bastards','Quel maledetto treno blindato',1,1978,NULL,'99'),(76590,'movie','Rabid','Rabid',1,1977,NULL,'91'),(76591,'movie','Race for Your Life, Charlie Brown','Race for Your Life, Charlie Brown',1,1977,NULL,'76'),(76618,'movie','The Rescuers','The Rescuers',1,1977,NULL,'77'),(76661,'movie','The 36 Crazy Fists','San shi liu mi xing quan',1,1977,NULL,'90'),(76666,'movie','Saturday Night Fever','Saturday Night Fever',1,1977,NULL,'118'),(76683,'movie','The Sentinel','The Sentinel',1,1977,NULL,'92'),(76723,'movie','Slap Shot','Slap Shot',1,1977,NULL,'123'),(76727,'movie','Office Romance','Sluzhebnyy roman',1,1977,NULL,'159'),(76734,'movie','Soldier of Orange','Soldaat van Oranje',1,1977,NULL,'155'),(76752,'movie','The Spy Who Loved Me','The Spy Who Loved Me',1,1977,NULL,'125'),(76759,'movie','Star Wars: Episode IV - A New Hope','Star Wars',1,1977,NULL,'121'),(76786,'movie','Suspiria','Suspiria',1,1977,NULL,'99'),(76843,'movie','The Turning Point','The Turning Point',1,1977,NULL,'119'),(77189,'movie','Avalanche','Avalanche',1,1978,NULL,'91'),(77215,'movie','Battlestar Galactica','Battlestar Galactica',1,1978,NULL,'148'),(77269,'movie','The Boys from Brazil','The Boys from Brazil',1,1978,NULL,'125'),(77275,'movie','The Brink\'s Job','The Brink\'s Job',1,1978,NULL,'104'),(77288,'movie','La Cage aux Folles','La Cage aux folles',1,1978,NULL,'97'),(77369,'movie','Convoy','Convoy',1,1978,NULL,'110'),(77394,'movie','Damien: Omen II','Damien: Omen II',1,1978,NULL,'107'),(77402,'movie','Dawn of the Dead','Dawn of the Dead',1,1978,NULL,'127'),(77405,'movie','Days of Heaven','Days of Heaven',1,1978,NULL,'94'),(77413,'movie','Death on the Nile','Death on the Nile',1,1978,NULL,'140'),(77416,'movie','The Deer Hunter','The Deer Hunter',1,1978,NULL,'183'),(77474,'movie','The Driver','The Driver',1,1978,NULL,'91'),(77497,'movie','Emmanuelle 3','Goodbye Emmanuelle',1,1977,NULL,'98'),(77578,'movie','Foul Play','Foul Play',1,1978,NULL,'116'),(77613,'movie','Girlfriends','Girlfriends',1,1978,NULL,'88'),(77629,'movie','Gray Lady Down','Gray Lady Down',1,1978,NULL,'111'),(77631,'movie','Grease','Grease',1,1978,NULL,'110'),(77651,'movie','Halloween','Halloween',1,1978,NULL,'91'),(77681,'movie','The Hills Have Eyes','The Hills Have Eyes',1,1977,NULL,'90'),(77687,'tvMovie','The Hobbit','The Hobbit',1,1977,NULL,'77'),(77707,'movie','The Hypothesis of the Stolen Painting','L\'hypothèse du tableau volé',1,1978,NULL,'66'),(77711,'movie','Autumn Sonata','Höstsonaten',1,1978,NULL,'99'),(77713,'movie','I Spit on Your Grave','Day of the Woman',1,1978,NULL,'101'),(77742,'movie','Interiors','Interiors',1,1978,NULL,'92'),(77766,'movie','Jaws 2','Jaws 2',1,1978,NULL,'116'),(77838,'movie','The Last Waltz','The Last Waltz',1,1978,NULL,'117'),(77864,'movie','They Called Him Bulldozer','Lo chiamavano Bulldozer',1,1978,NULL,'115'),(77869,'movie','The Lord of the Rings','The Lord of the Rings',1,1978,NULL,'132'),(77889,'movie','Magic','Magic',1,1978,NULL,'107'),(77914,'movie','Martin','Martin',1,1977,NULL,'95'),(77928,'movie','Midnight Express','Midnight Express',1,1978,NULL,'121'),(77975,'movie','National Lampoon\'s Animal House','National Lampoon\'s Animal House',1,1978,NULL,'109'),(78087,'movie','Piranha','Piranha',1,1978,NULL,'94'),(78089,'movie','Planet of Dinosaurs','Planet of Dinosaurs',1,1977,NULL,'84'),(78111,'movie','Pretty Baby','Pretty Baby',1,1978,NULL,'110'),(78259,'movie','The Shout','The Shout',1,1978,NULL,'86'),(78295,'tvMovie','Someone\'s Watching Me!','Someone\'s Watching Me!',1,1978,NULL,'97'),(78346,'movie','Superman','Superman',1,1978,NULL,'143'),(78444,'movie','An Unmarried Woman','An Unmarried Woman',1,1978,NULL,'124'),(78480,'movie','Watership Down','Watership Down',1,1978,NULL,'91'),(78503,'short','Within the Woods','Within the Woods',1,1978,NULL,'31'),(78504,'movie','The Wiz','The Wiz',1,1978,NULL,'134'),(78509,'tvMiniSeries','A Woman Called Moses','A Woman Called Moses',1,1978,1978,'240'),(78748,'movie','Alien','Alien',1,1979,NULL,'117'),(78754,'movie','All That Jazz','All That Jazz',1,1979,NULL,'123'),(78767,'movie','The Amityville Horror','The Amityville Horror',1,1979,NULL,'117'),(78778,'movie','Angels\' Brigade','Angels\' Brigade',1,1979,NULL,'97'),(78788,'movie','Apocalypse Now','Apocalypse Now',1,1979,NULL,'147'),(78841,'movie','Being There','Being There',1,1979,NULL,'130'),(78843,'movie','The Bell Jar','The Bell Jar',1,1979,NULL,'107'),(78846,'movie','Beneath the Valley of the Ultra-Vixens','Beneath the Valley of the Ultra-Vixens',1,1979,NULL,'93'),(78869,'movie','The Black Hole','The Black Hole',1,1979,NULL,'98'),(78875,'movie','The Tin Drum','Die Blechtrommel',1,1979,NULL,'142'),(78913,'movie','Buffet Froid','Buffet Froid',1,1979,NULL,'89'),(78935,'movie','Cannibal Holocaust','Cannibal Holocaust',1,1980,NULL,'95'),(78966,'movie','The China Syndrome','The China Syndrome',1,1979,NULL,'122'),(79095,'movie','The Marriage of Maria Braun','Die Ehe der Maria Braun',1,1979,NULL,'120'),(79116,'movie','Escape from Alcatraz','Escape from Alcatraz',1,1979,NULL,'112'),(79180,'movie','The Frisco Kid','The Frisco Kid',1,1979,NULL,'119'),(79256,'movie','HealtH','HealtH',1,1980,NULL,'105'),(79261,'movie','Hair','Hair',1,1979,NULL,'121'),(79336,'movie','The In-Laws','The In-Laws',1,1979,NULL,'103'),(79367,'movie','The Jerk','The Jerk',1,1979,NULL,'94'),(79417,'movie','Kramer vs. Kramer','Kramer vs. Kramer',1,1979,NULL,'105'),(79470,'movie','Life of Brian','Life of Brian',1,1979,NULL,'94'),(79501,'movie','Mad Max','Mad Max',1,1979,NULL,'88'),(79522,'movie','Manhattan','Manhattan',1,1979,NULL,'96'),(79540,'movie','Meatballs','Meatballs',1,1979,NULL,'94'),(79574,'movie','Moonraker','Moonraker',1,1979,NULL,'126'),(79579,'movie','Moscow Does Not Believe in Tears','Moskva slezam ne verit',1,1980,NULL,'150'),(79588,'movie','The Muppet Movie','The Muppet Movie',1,1979,NULL,'95'),(79593,'tvMovie','Murder by Natural Causes','Murder by Natural Causes',1,1979,NULL,'100'),(79596,'movie','My Brilliant Career','My Brilliant Career',1,1979,NULL,'100'),(79638,'movie','Norma Rae','Norma Rae',1,1979,NULL,'114'),(79639,'movie','The North Avenue Irregulars','The North Avenue Irregulars',1,1979,NULL,'100'),(79641,'movie','Nosferatu the Vampyre','Nosferatu - Phantom der Nacht',1,1979,NULL,'107'),(79679,'movie','Autumn Marathon','Osenniy marafon',1,1979,NULL,'90'),(79714,'movie','Phantasm','Phantasm',1,1979,NULL,'89'),(79766,'movie','Quadrophenia','Quadrophenia',1,1979,NULL,'120'),(79813,'movie','Rock \'n\' Roll High School','Rock \'n\' Roll High School',1,1979,NULL,'93'),(79817,'movie','Rocky II','Rocky II',1,1979,NULL,'119'),(79820,'movie','The King and the Mockingbird','Le roi et l\'oiseau',1,1980,NULL,'83'),(79826,'movie','The Rose','The Rose',1,1979,NULL,'125'),(79833,'movie','Lupin III: The Castle of Cagliostro','Rupan sansei: Kariosutoro no shiro',1,1979,NULL,'100'),(79871,'movie','Scum','Scum',1,1979,NULL,'98'),(79944,'movie','Stalker','Stalker',1,1979,NULL,'162'),(79945,'movie','Star Trek: The Motion Picture','Star Trek: The Motion Picture',1,1979,NULL,'143'),(79946,'movie','Starcrash','Starcrash',1,1978,NULL,'92'),(80025,'movie','Time After Time','Time After Time',1,1979,NULL,'112'),(80040,'movie','Tourist Trap','Tourist Trap',1,1979,NULL,'90'),(80120,'movie','The Warriors','The Warriors',1,1979,NULL,'93'),(80319,'movie','9 to 5','Nine to Five',1,1980,NULL,'109'),(80339,'movie','Airplane!','Airplane!',1,1980,NULL,'88'),(80365,'movie','American Gigolo','American Gigolo',1,1980,NULL,'117'),(80377,'movie','Any Which Way You Can','Any Which Way You Can',1,1980,NULL,'116'),(80388,'movie','Atlantic City','Atlantic City',1,1980,NULL,'104'),(80421,'movie','Battle Beyond the Stars','Battle Beyond the Stars',1,1980,NULL,'104'),(80453,'movie','The Blue Lagoon','The Blue Lagoon',1,1980,NULL,'104'),(80455,'movie','The Blues Brothers','The Blues Brothers',1,1980,NULL,'133'),(80487,'movie','Caddyshack','Caddyshack',1,1980,NULL,'98'),(80492,'movie','Can\'t Stop the Music','Can\'t Stop the Music',1,1980,NULL,'124'),(80549,'movie','Coal Miner\'s Daughter','Coal Miner\'s Daughter',1,1980,NULL,'124'),(80569,'movie','Cruising','Cruising',1,1980,NULL,'102'),(80684,'movie','Star Wars: Episode V - The Empire Strikes Back','Star Wars: Episode V - The Empire Strikes Back',1,1980,NULL,'124'),(80711,'movie','Fade to Black','Fade to Black',1,1980,NULL,'102'),(80716,'movie','Fame','Fame',1,1980,NULL,'134'),(80736,'movie','The Final Countdown','The Final Countdown',1,1980,NULL,'103'),(80745,'movie','Flash Gordon','Flash Gordon',1,1980,NULL,'111'),(80749,'movie','The Fog','The Fog',1,1980,NULL,'89'),(80761,'movie','Friday the 13th','Friday the 13th',1,1980,NULL,'95'),(80855,'movie','Heaven\'s Gate','Heaven\'s Gate',1,1980,NULL,'219'),(80931,'movie','Nightmare City','Incubo sulla città contaminata',1,1980,NULL,'92'),(80979,'movie','Kagemusha','Kagemusha',1,1980,NULL,'180'),(81060,'movie','Little Darlings','Little Darlings',1,1980,NULL,'96'),(81114,'movie','Maniac','Maniac',1,1980,NULL,'87'),(81163,'movie','The Mirror Crack\'d','The Mirror Crack\'d',1,1980,NULL,'105'),(81237,'movie','The Ninth Configuration','The Ninth Configuration',1,1980,NULL,'118'),(81249,'movie','The Nude Bomb','The Nude Bomb',1,1980,NULL,'94'),(81283,'movie','Ordinary People','Ordinary People',1,1980,NULL,'124'),(81323,'movie','Pepi, Luci, Bom and Other Girls Like Mom','Pepi, Luci, Bom y otras chicas del montón',1,1980,NULL,'82'),(81353,'movie','Popeye','Popeye',1,1980,NULL,'114'),(81375,'movie','Private Benjamin','Private Benjamin',1,1980,NULL,'109'),(81398,'movie','Raging Bull','Raging Bull',1,1980,NULL,'129'),(81414,'movie','Resurrection','Resurrection',1,1980,NULL,'103'),(81455,'movie','Scanners','Scanners',1,1981,NULL,'103'),(81505,'movie','The Shining','The Shining',1,1980,NULL,'146'),(81534,'movie','Somewhere in Time','Somewhere in Time',1,1980,NULL,'103'),(81573,'movie','Superman II','Superman II',1,1980,NULL,'127'),(81616,'movie','La terrazza','La terrazza',1,1980,NULL,'150'),(81633,'movie','Time Bandits','Time Bandits',1,1981,NULL,'116'),(81777,'movie','Xanadu','Xanadu',1,1980,NULL,'96'),(81974,'movie','Absence of Malice','Absence of Malice',1,1981,NULL,'116'),(82010,'movie','An American Werewolf in London','An American Werewolf in London',1,1981,NULL,'97'),(82045,'movie','Banana Joe','Banana Joe',1,1982,NULL,'96'),(82085,'movie','Blow Out','Blow Out',1,1981,NULL,'108'),(82089,'movie','Body Heat','Body Heat',1,1981,NULL,'113'),(82096,'movie','Das Boot','Das Boot',1,1981,NULL,'149'),(82100,'movie','The Party','La boum',1,1980,NULL,'110'),(82153,'movie','The Masked Avengers','Cha shou',1,1981,NULL,'92'),(82158,'movie','Chariots of Fire','Chariots of Fire',1,1981,NULL,'125'),(82176,'movie','Christiane F.','Christiane F. - Wir Kinder vom Bahnhof Zoo',1,1981,NULL,'138'),(82186,'movie','Clash of the Titans','Clash of the Titans',1,1981,NULL,'118'),(82198,'movie','Conan the Barbarian','Conan the Barbarian',1,1982,NULL,'129'),(82242,'movie','Dead & Buried','Dead & Buried',1,1981,NULL,'94'),(82269,'movie','Diva','Diva',1,1981,NULL,'117'),(82288,'movie','Dragonslayer','Dragonslayer',1,1981,NULL,'108'),(82307,'movie','The Beyond','...E tu vivrai nel terrore! L\'aldilà',1,1981,NULL,'87'),(82334,'movie','The Entity','The Entity',1,1982,NULL,'125'),(82340,'movie','Escape from New York','Escape from New York',1,1981,NULL,'99'),(82348,'movie','Excalibur','Excalibur',1,1981,NULL,'140'),(82370,'movie','The Woman Next Door','La femme d\'à côté',1,1981,NULL,'106'),(82398,'movie','For Your Eyes Only','For Your Eyes Only',1,1981,NULL,'127'),(82405,'movie','The Four Seasons','The Four Seasons',1,1981,NULL,'107'),(82406,'movie','The Fox and the Hound','The Fox and the Hound',1,1981,NULL,'83'),(82418,'movie','Friday the 13th Part 2','Friday the 13th Part 2',1,1981,NULL,'87'),(82424,'movie','La fuga de Segovia','La fuga de Segovia',1,1981,NULL,'108'),(82431,'movie','Galaxy of Terror','Galaxy of Terror',1,1981,NULL,'81'),(82474,'movie','The Great Muppet Caper','The Great Muppet Caper',1,1981,NULL,'97'),(82477,'movie','Gregory\'s Girl','Gregory\'s Girl',1,1980,NULL,'91'),(82484,'movie','Quest for Fire','La guerre du feu',1,1981,NULL,'100'),(82495,'movie','Halloween II','Halloween II',1,1981,NULL,'92'),(82498,'movie','Happy Birthday to Me','Happy Birthday to Me',1,1981,NULL,'111'),(82509,'movie','Heavy Metal','Heavy Metal',1,1981,NULL,'86'),(82517,'movie','History of the World: Part I','History of the World: Part I',1,1981,NULL,'92'),(82533,'movie','The Howling','The Howling',1,1981,NULL,'91'),(82639,'movie','Ladies and Gentlemen, the Fabulous Stains','Ladies and Gentlemen, the Fabulous Stains',1,1982,NULL,'87'),(82640,'movie','Lady Chatterley\'s Lover','Lady Chatterley\'s Lover',1,1981,NULL,'104'),(82677,'movie','Looker','Looker',1,1981,NULL,'93'),(82700,'movie','Cannibal Ferox','Cannibal ferox',1,1981,NULL,'93'),(82714,'movie','Il marchese del Grillo','Il marchese del Grillo',1,1981,NULL,'135'),(82719,'tvMovie','The Marva Collins Story','The Marva Collins Story',1,1981,NULL,'100'),(82748,'movie','Pieces','Mil gritos tiene la noche',1,1982,NULL,'85'),(82766,'movie','Mommie Dearest','Mommie Dearest',1,1981,NULL,'129'),(82776,'movie','Ms .45','Ms .45',1,1981,NULL,'80'),(82783,'movie','My Dinner with Andre','My Dinner with Andre',1,1981,NULL,'110'),(82817,'movie','Nighthawks','Nighthawks',1,1981,NULL,'99'),(82846,'movie','On Golden Pond','On Golden Pond',1,1981,NULL,'109'),(82869,'movie','Outland','Outland',1,1981,NULL,'109'),(82894,'movie','Pennies from Heaven','Pennies from Heaven',1,1981,NULL,'108'),(82911,'movie','Piratensender Power Play','Piratensender Power Play',1,1982,NULL,'90'),(82926,'movie','Polyester','Polyester',1,1981,NULL,'86'),(82933,'movie','Possession','Possession',1,1981,NULL,'124'),(82951,'movie','The Prowler','The Prowler',1,1981,NULL,'89'),(82970,'movie','Ragtime','Ragtime',1,1981,NULL,'155'),(82971,'movie','Raiders of the Lost Ark','Raiders of the Lost Ark',1,1981,NULL,'115'),(82979,'movie','Reds','Reds',1,1981,NULL,'195'),(82992,'movie','Rich and Famous','Rich and Famous',1,1981,NULL,'117'),(83067,'movie','Shock Treatment','Shock Treatment',1,1981,NULL,'94'),(83111,'movie','Southern Comfort','Southern Comfort',1,1981,NULL,'106'),(83131,'movie','Stripes','Stripes',1,1981,NULL,'106'),(83137,'movie','Der subjektive Faktor','Der subjektive Faktor',1,1981,NULL,'183'),(83190,'movie','Thief','Thief',1,1981,NULL,'123'),(83248,'movie','Umrao Jaan','Umrao Jaan',1,1981,NULL,'145'),(83284,'movie','Victory','Victory',1,1981,NULL,'116'),(83511,'movie','48 Hrs.','48 Hrs.',1,1982,NULL,'96'),(83564,'movie','Annie','Annie',1,1982,NULL,'126'),(83629,'movie','The Beast Within','The Beast Within',1,1982,NULL,'98'),(83642,'movie','The Best Little Whorehouse in Texas','The Best Little Whorehouse in Texas',1,1982,NULL,'114'),(83658,'movie','Blade Runner','Blade Runner',1,1982,NULL,'117'),(83686,'movie','The Party 2','La boum 2',1,1982,NULL,'109'),(83722,'movie','Cat People','Cat People',1,1982,NULL,'118'),(83745,'movie','Come Back to the 5 & Dime Jimmy Dean, Jimmy Dean','Come Back to the 5 & Dime Jimmy Dean, Jimmy Dean',1,1982,NULL,'109'),(83762,'movie','Countryman','Countryman',1,1982,NULL,'102'),(83791,'movie','The Dark Crystal','The Dark Crystal',1,1982,NULL,'93'),(83806,'movie','Deathtrap','Deathtrap',1,1982,NULL,'116'),(83824,'movie','Quarter to Two Before Jesus Christ','Deux heures moins le quart avant Jésus-Christ',1,1982,NULL,'100'),(83833,'movie','Diner','Diner',1,1982,NULL,'110'),(83851,'movie','The Draughtsman\'s Contract','The Draughtsman\'s Contract',1,1982,NULL,'108'),(83866,'movie','E.T. the Extra-Terrestrial','E.T. the Extra-Terrestrial',1,1982,NULL,'115'),(83907,'movie','The Evil Dead','The Evil Dead',1,1981,NULL,'85'),(83908,'movie','Evil Under the Sun','Evil Under the Sun',1,1982,NULL,'117'),(83922,'movie','Fanny and Alexander','Fanny och Alexander',1,1982,NULL,'188'),(83929,'movie','Fast Times at Ridgemont High','Fast Times at Ridgemont High',1,1982,NULL,'90'),(83942,'movie','The Wind','Finye',1,1982,NULL,'100'),(83944,'movie','First Blood','First Blood',1,1982,NULL,'93'),(83959,'movie','Forbidden World','Forbidden World',1,1982,NULL,'77'),(83967,'movie','Frances','Frances',1,1982,NULL,'140'),(83972,'movie','Friday the 13th Part III','Friday the 13th Part III',1,1982,NULL,'95'),(83987,'movie','Gandhi','Gandhi',1,1982,NULL,'191'),(84021,'movie','Grease 2','Grease 2',1,1982,NULL,'115'),(84090,'movie','Horrorplanet','Inseminoid',1,1981,NULL,'93'),(84234,'movie','The Last American Virgin','The Last American Virgin',1,1982,NULL,'92'),(84237,'movie','The Last Unicorn','The Last Unicorn',1,1982,NULL,'92'),(84335,'movie','Missing','Missing',1,1982,NULL,'122'),(84352,'movie','Monty Python Live at the Hollywood Bowl','Monty Python Live at the Hollywood Bowl',1,1982,NULL,'77'),(84358,'movie','Deadly Circuit','Mortelle randonnée',1,1983,NULL,'120'),(84390,'movie','The Ballad of Narayama','Narayama bushikô',1,1983,NULL,'130'),(84434,'movie','An Officer and a Gentleman','An Officer and a Gentleman',1,1982,NULL,'124'),(84481,'movie','Passion','Passion',1,1982,NULL,'88'),(84503,'movie','Pink Floyd: The Wall','Pink Floyd: The Wall',1,1982,NULL,'95'),(84516,'movie','Poltergeist','Poltergeist',1,1982,NULL,'114'),(84522,'movie','Porky\'s','Porky\'s',1,1981,NULL,'94'),(84548,'movie','Interrogation','Przesluchanie',1,1989,NULL,'118'),(84589,'movie','The Return of Martin Guerre','Le retour de Martin Guerre',1,1982,NULL,'112'),(84602,'movie','Rocky III','Rocky III',1,1982,NULL,'99'),(84637,'tvMovie','The Scarlet Pimpernel','The Scarlet Pimpernel',1,1982,NULL,'142'),(84649,'movie','The Secret of NIMH','The Secret of NIMH',1,1982,NULL,'82'),(84690,'movie','Six Pack','Six Pack',1,1982,NULL,'108'),(84695,'movie','The Slumber Party Massacre','The Slumber Party Massacre',1,1982,NULL,'77'),(84698,'movie','Smithereens','Smithereens',1,1982,NULL,'93'),(84707,'movie','Sophie\'s Choice','Sophie\'s Choice',1,1982,NULL,'150'),(84725,'movie','The State of Things','Der Stand der Dinge',1,1982,NULL,'121'),(84726,'movie','Star Trek II: The Wrath of Khan','Star Trek II: The Wrath of Khan',1,1982,NULL,'113'),(84745,'movie','Swamp Thing','Swamp Thing',1,1982,NULL,'91'),(84777,'movie','Tenebrae','Tenebre',1,1982,NULL,'101'),(84783,'movie','Tex','Tex',1,1982,NULL,'103'),(84787,'movie','The Thing','The Thing',1,1982,NULL,'109'),(84805,'movie','Tootsie','Tootsie',1,1982,NULL,'116'),(84827,'movie','Tron','Tron',1,1982,NULL,'96'),(84855,'movie','The Verdict','The Verdict',1,1982,NULL,'129'),(84865,'movie','Victor/Victoria','Victor/Victoria',1,1982,NULL,'134'),(84904,'movie','Wild Style','Wild Style',1,1982,NULL,'82'),(84917,'movie','The World According to Garp','The World According to Garp',1,1982,NULL,'136'),(85218,'movie','Barefoot Gen','Hadashi no Gen',1,1983,NULL,'83'),(85231,'tvMovie','The Best Christmas Pageant Ever','The Best Christmas Pageant Ever',1,1983,NULL,'48'),(85250,'movie','Women\'s Prison Massacre','Blade Violent - I violenti',1,1983,NULL,'89'),(85267,'movie','Born in Flames','Born in Flames',1,1983,NULL,'79'),(85276,'movie','Breathless','Breathless',1,1983,NULL,'100'),(85333,'movie','Christine','Christine',1,1983,NULL,'110'),(85334,'movie','A Christmas Story','A Christmas Story',1,1983,NULL,'93'),(85382,'movie','Cujo','Cujo',1,1983,NULL,'93'),(85407,'movie','The Dead Zone','The Dead Zone',1,1983,NULL,'103'),(85478,'movie','Educating Rita','Educating Rita',1,1983,NULL,'110'),(85482,'movie','El Norte','El Norte',1,1983,NULL,'141'),(85486,'movie','Emmanuelle IV','Emmanuelle IV',1,1984,NULL,'92'),(85496,'movie','Dark Habits','Entre tinieblas',1,1983,NULL,'114'),(85549,'movie','Flashdance','Flashdance',1,1983,NULL,'95'),(85601,'movie','Go for It','Nati con la camicia',1,1983,NULL,'107'),(85672,'movie','Hercules','Hercules',1,1983,NULL,'98'),(85701,'movie','The Hunger','The Hunger',1,1983,NULL,'97'),(85750,'movie','Jaws 3-D','Jaws 3-D',1,1983,NULL,'99'),(85794,'movie','The King of Comedy','The King of Comedy',1,1982,NULL,'109'),(85809,'movie','Koyaanisqatsi','Koyaanisqatsi',1,1982,NULL,'86'),(85811,'movie','Krull','Krull',1,1983,NULL,'116'),(85838,'movie','Lianna','Lianna',1,1983,NULL,'110'),(85852,'movie','Liquid Sky','Liquid Sky',1,1982,NULL,'112'),(85859,'movie','Local Hero','Local Hero',1,1983,NULL,'111'),(85894,'movie','The Man with Two Brains','The Man with Two Brains',1,1983,NULL,'93'),(85933,'movie','Merry Christmas Mr. Lawrence','Merry Christmas, Mr. Lawrence',1,1983,NULL,'123'),(85936,'short','Mickey\'s Christmas Carol','Mickey\'s Christmas Carol',1,1983,NULL,'26'),(85959,'movie','The Meaning of Life','The Meaning of Life',1,1983,NULL,'107'),(86034,'movie','Octopussy','Octopussy',1,1983,NULL,'131'),(86066,'movie','The Outsiders','The Outsiders',1,1983,NULL,'91'),(86104,'movie','El pico','El pico',1,1983,NULL,'110'),(86190,'movie','Star Wars: Episode VI - Return of the Jedi','Star Wars: Episode VI - Return of the Jedi',1,1983,NULL,'131'),(86200,'movie','Risky Business','Risky Business',1,1983,NULL,'99'),(86216,'movie','Rumble Fish','Rumble Fish',1,1983,NULL,'94'),(86250,'movie','Scarface','Scarface',1,1983,NULL,'170'),(86312,'movie','Silkwood','Silkwood',1,1983,NULL,'131'),(86340,'movie','Sorceress','Sorceress',1,1982,NULL,'83'),(86373,'movie','Strange Brew','The Adventures of Bob & Doug McKenzie: Strange Brew',1,1983,NULL,'90'),(86393,'movie','Superman III','Superman III',1,1983,NULL,'125'),(86394,'movie','Die Supernasen','Die Supernasen',1,1983,NULL,'88'),(86425,'movie','Terms of Endearment','Terms of Endearment',1,1983,NULL,'132'),(86465,'movie','Trading Places','Trading Places',1,1983,NULL,'116'),(86510,'movie','Under Fire','Under Fire',1,1983,NULL,'128'),(86541,'movie','Videodrome','Videodrome',1,1983,NULL,'87'),(86542,'movie','Life Is a Bed of Roses','La vie est un roman',1,1983,NULL,'110'),(86543,'movie','The 4th Man','De vierde man',1,1983,NULL,'102'),(86551,'movie','Confidentially Yours','Vivement dimanche!',1,1983,NULL,'110'),(86567,'movie','WarGames','WarGames',1,1983,NULL,'114'),(86589,'movie','Suburbia','Suburbia',1,1983,NULL,'94'),(86618,'movie','Yellowbeard','Yellowbeard',1,1983,NULL,'96'),(86619,'movie','Yentl','Yentl',1,1983,NULL,'133'),(86739,'tvMiniSeries','The Jewel in the Crown','The Jewel in the Crown',1,1984,1984,'778'),(86837,'movie','2010: The Year We Make Contact','2010: The Year We Make Contact',1,1984,NULL,'116'),(86856,'movie','The Adventures of Buckaroo Banzai Across the 8th Dimension','The Adventures of Buckaroo Banzai Across the 8th Dimension',1,1984,NULL,'103'),(86873,'movie','All of Me','All of Me',1,1984,NULL,'93'),(86879,'movie','Amadeus','Amadeus',1,1984,NULL,'160'),(86896,'movie','Angel','Angel',1,1983,NULL,'94'),(86904,'movie','Another Country','Another Country',1,1984,NULL,'90'),(86927,'movie','Bachelor Party','Bachelor Party',1,1984,NULL,'105'),(86955,'movie','Best Defense','Best Defense',1,1984,NULL,'94'),(86960,'movie','Beverly Hills Cop','Beverly Hills Cop',1,1984,NULL,'105'),(86973,'movie','Blame It on Rio','Blame It on Rio',1,1984,NULL,'100'),(86979,'movie','Blood Simple','Blood Simple',1,1984,NULL,'99'),(86984,'movie','Body Double','Body Double',1,1984,NULL,'114'),(86992,'movie','The Bostonians','The Bostonians',1,1984,NULL,'122'),(87015,'movie','C.H.U.D.','C.H.U.D.',1,1984,NULL,'88'),(87050,'movie','Children of the Corn','Children of the Corn',1,1984,NULL,'92'),(87075,'movie','The Company of Wolves','The Company of Wolves',1,1984,NULL,'95'),(87078,'movie','Conan the Destroyer','Conan the Destroyer',1,1984,NULL,'103'),(87127,'movie','Deathstalker','Deathstalker',1,1983,NULL,'80'),(87150,'movie','Dim Sum: A Little Bit of Heart','Dim Sum: A Little Bit of Heart',1,1985,NULL,'88'),(87182,'movie','Dune','Dune',1,1984,NULL,'137'),(87298,'movie','Friday the 13th: The Final Chapter','Friday the 13th: The Final Chapter',1,1984,NULL,'91'),(87332,'movie','Ghostbusters','Ghostbusters',1,1984,NULL,'105'),(87344,'movie','Godzilla 1985','Godzilla 1985',1,1985,NULL,'87'),(87363,'movie','Gremlins','Gremlins',1,1984,NULL,'106'),(87433,'movie','Yellow Earth','Huang tu di',1,1984,NULL,'86'),(87451,'movie','The Ice Pirates','The Ice Pirates',1,1984,NULL,'91'),(87469,'movie','Indiana Jones and the Temple of Doom','Indiana Jones and the Temple of Doom',1,1984,NULL,'118'),(87472,'movie','The Initiation','The Initiation',1,1984,NULL,'97'),(87481,'movie','Double Trouble','Non c\'è due senza quattro',1,1984,NULL,'99'),(87507,'movie','Johnny Dangerously','Johnny Dangerously',1,1984,NULL,'90'),(87538,'movie','The Karate Kid','The Karate Kid',1,1984,NULL,'126'),(87544,'movie','Nausicaä of the Valley of the Wind','Kaze no tani no Naushika',1,1984,NULL,'117'),(87597,'movie','The Last Starfighter','The Last Starfighter',1,1984,NULL,'101'),(87644,'movie','Love Streams','Love Streams',1,1984,NULL,'141'),(87681,'movie','Marche à l\'ombre','Marche à l\'ombre',1,1984,NULL,'90'),(87755,'movie','The Muppets Take Manhattan','The Muppets Take Manhattan',1,1984,NULL,'94'),(87781,'movie','The Natural','The Natural',1,1984,NULL,'138'),(87799,'movie','Night of the Comet','Night of the Comet',1,1984,NULL,'95'),(87800,'movie','A Nightmare on Elm Street','A Nightmare on Elm Street',1,1984,NULL,'91'),(87803,'movie','1984','Nineteen Eighty-Four',1,1984,NULL,'113'),(87814,'movie','Nothing Left to Do but Cry','Non ci resta che piangere',1,1984,NULL,'113'),(87843,'movie','Once Upon a Time in America','Once Upon a Time in America',1,1984,NULL,'229'),(87884,'movie','Paris, Texas','Paris, Texas',1,1984,NULL,'145'),(87892,'movie','A Passage to India','A Passage to India',1,1984,NULL,'164'),(87909,'movie','Phenomena','Phenomena',1,1985,NULL,'116'),(87910,'movie','The Philadelphia Experiment','The Philadelphia Experiment',1,1984,NULL,'102'),(87913,'movie','El pico 2','El pico 2',1,1984,NULL,'120'),(87928,'movie','Police Academy','Police Academy',1,1984,NULL,'96'),(87951,'movie','Protocol','Protocol',1,1984,NULL,'96'),(87957,'movie','Purple Rain','Purple Rain',1,1984,NULL,'111'),(87981,'movie','Razorback','Razorback',1,1984,NULL,'95'),(87995,'movie','Repo Man','Repo Man',1,1984,NULL,'92'),(88000,'movie','Revenge of the Nerds','Revenge of the Nerds',1,1984,NULL,'90'),(88001,'movie','Rhinestone','Rhinestone',1,1984,NULL,'111'),(88011,'movie','Romancing the Stone','Romancing the Stone',1,1984,NULL,'106'),(88040,'movie','The Holy Innocents','Los santos inocentes',1,1984,NULL,'107'),(88075,'movie','Secret Places','Secret Places',1,1984,NULL,'98'),(88117,'movie','Silent Night, Deadly Night','Silent Night, Deadly Night',1,1984,NULL,'79'),(88128,'movie','Sixteen Candles','Sixteen Candles',1,1984,NULL,'93'),(88146,'movie','A Soldier\'s Story','A Soldier\'s Story',1,1984,NULL,'101'),(88161,'movie','Splash','Splash',1,1984,NULL,'111'),(88167,'movie','Les spécialistes','Les spécialistes',1,1985,NULL,'94'),(88170,'movie','Star Trek III: The Search for Spock','Star Trek III: The Search for Spock',1,1984,NULL,'105'),(88172,'movie','Starman','Starman',1,1984,NULL,'115'),(88206,'movie','Supergirl','Supergirl',1,1984,NULL,'124'),(88247,'movie','The Terminator','The Terminator',1,1984,NULL,'107'),(88258,'movie','This Is Spinal Tap','This Is Spinal Tap',1,1984,NULL,'82'),(88286,'movie','Top Secret!','Top Secret!',1,1984,NULL,'90'),(88323,'movie','The NeverEnding Story','Die unendliche Geschichte',1,1984,NULL,'102'),(88379,'movie','The Warrior and the Sorceress','The Warrior and the Sorceress',1,1984,NULL,'81'),(88459,'movie','Zwei Nasen tanken Super','Zwei Nasen tanken Super',1,1984,NULL,'95'),(88461,'movie','What Have I Done to Deserve This?','¿Qué he hecho YO para merecer esto!!',1,1984,NULL,'101'),(88680,'movie','After Hours','After Hours',1,1985,NULL,'97'),(88683,'movie','Agnes of God','Agnes of God',1,1985,NULL,'98'),(88727,'tvMiniSeries','Anne of Green Gables','Anne of Green Gables',1,1985,1985,'199'),(88748,'movie','Asterix Versus Caesar','Astérix et la surprise de César',1,1985,NULL,'79'),(88763,'movie','Back to the Future','Back to the Future',1,1985,NULL,'116'),(88771,'movie','Barbarian Queen','Barbarian Queen',1,1985,NULL,'74'),(88794,'movie','Better Off Dead...','Better Off Dead...',1,1985,NULL,'97'),(88814,'movie','The Black Cauldron','The Black Cauldron',1,1985,NULL,'80'),(88846,'movie','Brazil','Brazil',1,1985,NULL,'132'),(88847,'movie','The Breakfast Club','The Breakfast Club',1,1985,NULL,'97'),(88885,'movie','The Care Bears Movie','The Care Bears Movie',1,1985,NULL,'77'),(88915,'movie','A Chorus Line','A Chorus Line',1,1985,NULL,'113'),(88930,'movie','Clue','Clue',1,1985,NULL,'94'),(88939,'movie','The Color Purple','The Color Purple',1,1985,NULL,'154'),(88944,'movie','Commando','Commando',1,1985,NULL,'90'),(88993,'movie','Day of the Dead','Day of the Dead',1,1985,NULL,'101'),(89010,'tvMovie','The Defiant Ones','The Defiant Ones',1,1986,NULL,'100'),(89015,'movie','Desert Hearts','Desert Hearts',1,1985,NULL,'91'),(89017,'movie','Desperately Seeking Susan','Desperately Seeking Susan',1,1985,NULL,'104'),(89052,'movie','Dreamchild','Dreamchild',1,1985,NULL,'94'),(89066,'movie','Detective','Détective',1,1985,NULL,'95'),(89077,'movie','Die Einsteiger','Die Einsteiger',1,1985,NULL,'100'),(89092,'movie','Enemy Mine','Enemy Mine',1,1985,NULL,'108'),(89108,'movie','Waiting for the Hearse','Esperando la carroza',1,1985,NULL,'94'),(89118,'movie','F/X','F/X',1,1986,NULL,'109'),(89126,'movie','Fandango','Fandango',1,1985,NULL,'91'),(89153,'movie','Flesh+Blood','Flesh+Blood',1,1985,NULL,'126'),(89155,'movie','Fletch','Fletch',1,1985,NULL,'98'),(89173,'movie','Friday the 13th: A New Beginning','Friday the 13th: A New Beginning',1,1985,NULL,'92'),(89175,'movie','Fright Night','Fright Night',1,1985,NULL,'106'),(89206,'movie','Kenji Miyazawa\'s Night on the Galactic Railroad','Ginga-tetsudô no yoru',1,1985,NULL,'113'),(89208,'movie','Girls Just Want to Have Fun','Girls Just Want to Have Fun',1,1985,NULL,'90'),(89218,'movie','The Goonies','The Goonies',1,1985,NULL,'114'),(89276,'movie','The Official Story','La historia oficial',1,1985,NULL,'112'),(89297,'movie','Hour of the Star','A Hora da Estrela',1,1985,NULL,'96'),(89308,'movie','Howling II: ... Your Sister Is a Werewolf','Howling II: Stirba - Werewolf Bitch',1,1985,NULL,'91'),(89371,'movie','Mr. Vampire','Geung see sin sang',1,1985,NULL,'96'),(89393,'movie','Just One of the Guys','Just One of the Guys',1,1985,NULL,'100'),(89424,'movie','Kiss of the Spider Woman','Kiss of the Spider Woman',1,1985,NULL,'120'),(89457,'movie','Ladyhawke','Ladyhawke',1,1985,NULL,'121'),(89461,'movie','The Last Dragon','The Last Dragon',1,1985,NULL,'109'),(89469,'movie','Legend','Legend',1,1985,NULL,'94'),(89470,'movie','The Legend of Billie Jean','The Legend of Billie Jean',1,1985,NULL,'96'),(89606,'movie','My Life as a Dog','Mitt liv som hund',1,1985,NULL,'101'),(89686,'movie','A Nightmare on Elm Street 2: Freddy\'s Revenge','A Nightmare on Elm Street Part 2: Freddy\'s Revenge',1,1985,NULL,'87'),(89695,'movie','No Retreat, No Surrender','No Retreat No Surrender',1,1985,NULL,'85'),(89730,'movie','Once Bitten','Once Bitten',1,1985,NULL,'94'),(89748,'movie','When Father Was Away on Business','Otac na sluzbenom putu',1,1985,NULL,'136'),(89755,'movie','Out of Africa','Out of Africa',1,1985,NULL,'161'),(89767,'movie','Pale Rider','Pale Rider',1,1985,NULL,'115'),(89791,'movie','Pee-wee\'s Big Adventure','Pee-wee\'s Big Adventure',1,1985,NULL,'91'),(89822,'movie','Police Academy 2: Their First Assignment','Police Academy 2: Their First Assignment',1,1985,NULL,'87'),(89838,'movie','A Private Function','A Private Function',1,1984,NULL,'92'),(89853,'movie','The Purple Rose of Cairo','The Purple Rose of Cairo',1,1985,NULL,'82'),(89869,'movie','The Quiet Earth','The Quiet Earth',1,1985,NULL,'91'),(89880,'movie','Rambo: First Blood Part II','Rambo: First Blood Part II',1,1985,NULL,'96'),(89881,'movie','Ran','Ran',1,1985,NULL,'162'),(89885,'movie','Re-Animator','Re-Animator',1,1985,NULL,'84'),(89886,'movie','Real Genius','Real Genius',1,1985,NULL,'108'),(89893,'movie','Red Sonja','Red Sonja',1,1985,NULL,'89'),(89908,'movie','Return to Oz','Return to Oz',1,1985,NULL,'113'),(89927,'movie','Rocky IV','Rocky IV',1,1985,NULL,'91'),(89960,'movie','Vagabond','Sans toit ni loi',1,1985,NULL,'105'),(90009,'movie','She','She',1,1984,NULL,'106'),(90056,'movie','Spies Like Us','Spies Like Us',1,1985,NULL,'102'),(90065,'movie','Starchaser: The Legend of Orin','Starchaser: The Legend of Orin',1,1985,NULL,'100'),(90103,'movie','The Sure Thing','The Sure Thing',1,1985,NULL,'100'),(90110,'movie','Sweet Dreams','Sweet Dreams',1,1985,NULL,'115'),(90142,'movie','Teen Wolf','Teen Wolf',1,1985,NULL,'91'),(90192,'movie','Trancers','Trancers',1,1984,NULL,'76'),(90203,'movie','The Trip to Bountiful','The Trip to Bountiful',1,1985,NULL,'108'),(90264,'movie','A View to a Kill','A View to a Kill',1,1985,NULL,'131'),(90305,'movie','Weird Science','Weird Science',1,1985,NULL,'94'),(90310,'movie','Wetherby','Wetherby',1,1985,NULL,'102'),(90315,'movie','When the Wind Blows','When the Wind Blows',1,1986,NULL,'84'),(90319,'movie','White Nights','White Nights',1,1985,NULL,'136'),(90329,'movie','Witness','Witness',1,1985,NULL,'112'),(90555,'movie','Crocodile Dundee','Crocodile Dundee',1,1986,NULL,'97'),(90556,'movie','\'night, Mother','\'night, Mother',1,1986,NULL,'96'),(90563,'movie','Betty Blue','37°2 le matin',1,1986,NULL,'119'),(90570,'movie','84 Charing Cross Road','84 Charing Cross Road',1,1987,NULL,'100'),(90583,'movie','About Last Night','About Last Night...',1,1986,NULL,'113'),(90605,'movie','Aliens','Aliens',1,1986,NULL,'137'),(90633,'movie','An American Tail','An American Tail',1,1986,NULL,'80'),(90655,'movie','April Fool\'s Day','April Fool\'s Day',1,1986,NULL,'89'),(90660,'movie','Armed and Dangerous','Armed and Dangerous',1,1986,NULL,'88'),(90667,'movie','Asterix in Britain','Astérix chez les Bretons',1,1986,NULL,'79'),(90685,'movie','Back to School','Back to School',1,1986,NULL,'96'),(90728,'movie','Big Trouble in Little China','Big Trouble in Little China',1,1986,NULL,'99'),(90738,'movie','Black Widow','Black Widow',1,1987,NULL,'102'),(90756,'movie','Blue Velvet','Blue Velvet',1,1986,NULL,'120'),(90793,'short','Captain EO','Captain EO',1,1986,NULL,'17'),(90805,'movie','Il caso Moro','Il caso Moro',1,1986,NULL,'110'),(90830,'movie','Children of a Lesser God','Children of a Lesser God',1,1986,NULL,'119'),(90837,'movie','Chopping Mall','Chopping Mall',1,1986,NULL,'77'),(90848,'movie','The Clan of the Cave Bear','The Clan of the Cave Bear',1,1986,NULL,'98'),(90859,'movie','Cobra','Cobra',1,1986,NULL,'87'),(90887,'movie','Critters','Critters',1,1986,NULL,'86'),(90917,'movie','Deadly Friend','Deadly Friend',1,1986,NULL,'91'),(90927,'movie','The Delta Force','The Delta Force',1,1986,NULL,'125'),(90952,'movie','Peking Opera Blues','Do ma daan',1,1986,NULL,'104'),(90967,'movie','Down by Law','Down by Law',1,1986,NULL,'107'),(91042,'movie','Ferris Bueller\'s Day Off','Ferris Bueller\'s Day Off',1,1986,NULL,'103'),(91059,'movie','Flight of the Navigator','Flight of the Navigator',1,1986,NULL,'90'),(91064,'movie','The Fly','The Fly',1,1986,NULL,'96'),(91065,'movie','Teenage Dream','Flying',1,1986,NULL,'90'),(91080,'movie','Friday the 13th Part VI: Jason Lives','Jason Lives: Friday the 13th Part VI',1,1986,NULL,'86'),(91083,'movie','From Beyond','From Beyond',1,1986,NULL,'85'),(91093,'movie','The Fugitives','Les fugitifs',1,1986,NULL,'95'),(91149,'movie','The Great Mouse Detective','The Great Mouse Detective',1,1986,NULL,'74'),(91167,'movie','Hannah and Her Sisters','Hannah and Her Sisters',1,1986,NULL,'107'),(91203,'movie','Highlander','Highlander',1,1986,NULL,'116'),(91217,'movie','Hoosiers','Hoosiers',1,1986,NULL,'114'),(91225,'movie','Howard the Duck','Howard the Duck',1,1986,NULL,'110'),(91251,'movie','Come and See','Idi i smotri',1,1985,NULL,'142'),(91278,'movie','Iron Eagle','Iron Eagle',1,1986,NULL,'117'),(91306,'movie','Jumpin\' Jack Flash','Jumpin\' Jack Flash',1,1986,NULL,'105'),(91326,'movie','The Karate Kid Part II','The Karate Kid Part II',1,1986,NULL,'113'),(91341,'movie','Kin-dza-dza!','Kin-dza-dza!',1,1986,NULL,'135'),(91355,'movie','The Terrorizers','Kong bu fen zi',1,1986,NULL,'109'),(91369,'movie','Labyrinth','Labyrinth',1,1986,NULL,'101'),(91419,'movie','Little Shop of Horrors','Little Shop of Horrors',1,1986,NULL,'94'),(91472,'movie','The Manhattan Project','The Manhattan Project',1,1986,NULL,'117'),(91474,'movie','Manhunter','Manhunter',1,1986,NULL,'120'),(91495,'movie','Matador','Matador',1,1986,NULL,'110'),(91499,'movie','Maximum Overdrive','Maximum Overdrive',1,1986,NULL,'98'),(91530,'movie','The Mission','The Mission',1,1986,NULL,'125'),(91541,'movie','The Money Pit','The Money Pit',1,1986,NULL,'91'),(91578,'movie','My Beautiful Laundrette','My Beautiful Laundrette',1,1985,NULL,'97'),(91605,'movie','The Name of the Rose','Der Name der Rose',1,1986,NULL,'130'),(91721,'tvMovie','The Parent Trap II','The Parent Trap II',1,1986,NULL,'81'),(91738,'movie','Peggy Sue Got Married','Peggy Sue Got Married',1,1986,NULL,'103'),(91757,'movie','Pirates','Pirates',1,1986,NULL,'121'),(91763,'movie','Platoon','Platoon',1,1986,NULL,'120'),(91777,'movie','Police Academy 3: Back in Training','Police Academy 3: Back in Training',1,1986,NULL,'83'),(91790,'movie','Pretty in Pink','Pretty in Pink',1,1986,NULL,'97'),(91794,'movie','Project A-Ko','Purojekuto A-ko',1,1986,NULL,'86'),(91867,'movie','A Room with a View','A Room with a View',1,1985,NULL,'117'),(91869,'movie','Rosa Luxemburg','Rosa Luxemburg',1,1986,NULL,'120'),(91877,'movie','Ruthless People','Ruthless People',1,1986,NULL,'93'),(91939,'movie','She\'s Gotta Have It','She\'s Gotta Have It',1,1986,NULL,'84'),(91949,'movie','Short Circuit','Short Circuit',1,1986,NULL,'98'),(91993,'movie','SpaceCamp','SpaceCamp',1,1986,NULL,'107'),(92005,'movie','Stand by Me','Stand by Me',1,1986,NULL,'89'),(92007,'movie','Star Trek IV: The Voyage Home','Star Trek IV: The Voyage Home',1,1986,NULL,'119'),(92048,'movie','Tampopo','Tanpopo',1,1985,NULL,'114'),(92067,'movie','Castle in the Sky','Tenkuu no Shiro Laputa',1,1986,NULL,'125'),(92076,'movie','The Texas Chainsaw Massacre 2','The Texas Chainsaw Massacre 2',1,1986,NULL,'101'),(92086,'movie','Three Amigos!','Three Amigos!',1,1986,NULL,'104'),(92099,'movie','Top Gun','Top Gun',1,1986,NULL,'109'),(92106,'movie','The Transformers: The Movie','The Transformers: The Movie',1,1986,NULL,'84'),(92133,'movie','Under the Cherry Moon','Under the Cherry Moon',1,1986,NULL,'100'),(92263,'movie','A Better Tomorrow','Ying hung boon sik',1,1986,NULL,'95'),(92493,'movie','Crocodile Dundee II','Crocodile Dundee II',1,1988,NULL,'108'),(92513,'movie','Adventures in Babysitting','Adventures in Babysitting',1,1987,NULL,'102'),(92546,'movie','Amazon Women on the Moon','Amazon Women on the Moon',1,1987,NULL,'85'),(92559,'movie','And God Created Woman','And God Created Woman',1,1988,NULL,'98'),(92563,'movie','Angel Heart','Angel Heart',1,1987,NULL,'113'),(92581,'movie','Around the World in Eighty Ways','Around the World in Eighty Ways',1,1987,NULL,'91'),(92593,'movie','Goodbye, Children','Au revoir les enfants',1,1987,NULL,'104'),(92603,'movie','Babette\'s Feast','Babettes gæstebud',1,1987,NULL,'103'),(92605,'movie','Baby Boom','Baby Boom',1,1987,NULL,'110'),(92610,'movie','Bad Taste','Bad Taste',1,1987,NULL,'91'),(92644,'movie','Beverly Hills Cop II','Beverly Hills Cop II',1,1987,NULL,'100'),(92675,'movie','Bloodsport','Bloodsport',1,1988,NULL,'92'),(92693,'movie','The Enchanted Forest','El bosque animado',1,1987,NULL,'107'),(92699,'movie','Broadcast News','Broadcast News',1,1987,NULL,'133'),(92718,'movie','Can\'t Buy Me Love','Can\'t Buy Me Love',1,1987,NULL,'94'),(92730,'tvMovie','Casanova','Casanova',1,1987,NULL,'123'),(92752,'movie','The Chipmunk Adventure','The Chipmunk Adventure',1,1987,NULL,'78'),(92796,'movie','Creepshow 2','Creepshow 2',1,1987,NULL,'92'),(92860,'movie','Deathstalker II','Deathstalker II',1,1987,NULL,'85'),(92890,'movie','Dirty Dancing','Dirty Dancing',1,1987,NULL,'100'),(92925,'movie','Dragnet','Dragnet',1,1987,NULL,'106'),(92962,'movie','Emmanuelle 5','Emmanuelle 5',1,1987,NULL,'85'),(92965,'movie','Empire of the Sun','Empire of the Sun',1,1987,NULL,'153'),(92972,'movie','Epidemic','Epidemic',1,1987,NULL,'106'),(92991,'movie','Evil Dead II','Evil Dead II',1,1987,NULL,'84'),(93010,'movie','Fatal Attraction','Fatal Attraction',1,1987,NULL,'119'),(93011,'movie','Fatal Beauty','Fatal Beauty',1,1987,NULL,'104'),(93058,'movie','Full Metal Jacket','Full Metal Jacket',1,1987,NULL,'116'),(93075,'movie','The Gate','The Gate',1,1987,NULL,'85'),(93105,'movie','Good Morning, Vietnam','Good Morning, Vietnam',1,1987,NULL,'121'),(93144,'movie','Hansel and Gretel','Hansel and Gretel',1,1988,NULL,'84'),(93146,'movie','Hard Ticket to Hawaii','Hard Ticket to Hawaii',1,1987,NULL,'96'),(93171,'movie','Hell Comes to Frogtown','Hell Comes to Frogtown',1,1988,NULL,'86'),(93177,'movie','Hellraiser','Hellraiser',1,1987,NULL,'94'),(93191,'movie','Wings of Desire','Der Himmel über Berlin',1,1987,NULL,'128'),(93209,'movie','Hope and Glory','Hope and Glory',1,1987,NULL,'113'),(93220,'movie','House II: The Second Story','House II: The Second Story',1,1987,NULL,'88'),(93223,'movie','House of Games','House of Games',1,1987,NULL,'102'),(93225,'movie','Housekeeping','Housekeeping',1,1987,NULL,'116'),(93239,'movie','I\'ve Heard the Mermaids Singing','I\'ve Heard the Mermaids Singing',1,1987,NULL,'83'),(93300,'movie','Jaws: The Revenge','Jaws: The Revenge',1,1987,NULL,'89'),(93342,'movie','Where Is the Friend\'s House?','Khane-ye doust kodjast?',1,1987,NULL,'83'),(93371,'movie','Kung-Fu Master!','Kung-fu master!',1,1988,NULL,'80'),(93389,'movie','The Last Emperor','The Last Emperor',1,1987,NULL,'163'),(93409,'movie','Lethal Weapon','Lethal Weapon',1,1987,NULL,'109'),(93412,'movie','Law of Desire','La ley del deseo',1,1987,NULL,'102'),(93415,'movie','Light of Day','Light of Day',1,1987,NULL,'107'),(93437,'movie','The Lost Boys','The Lost Boys',1,1987,NULL,'97'),(93493,'movie','Mannequin','Mannequin',1,1987,NULL,'90'),(93507,'movie','Masters of the Universe','Masters of the Universe',1,1987,NULL,'106'),(93512,'movie','Maurice','Maurice',1,1987,NULL,'140'),(93565,'movie','Moonstruck','Moonstruck',1,1987,NULL,'102'),(93589,'movie','My Demon Lover','My Demon Lover',1,1987,NULL,'88'),(93615,'movie','Ngati','Ngati',1,1987,NULL,'92'),(93617,'movie','Nice Girls Don\'t Explode','Nice Girls Don\'t Explode',1,1987,NULL,'92'),(93629,'movie','A Nightmare on Elm Street 3: Dream Warriors','A Nightmare on Elm Street 3: Dream Warriors',1,1987,NULL,'96'),(93640,'movie','No Way Out','No Way Out',1,1987,NULL,'114'),(93690,'movie','Outrageous Fortune','Outrageous Fortune',1,1987,NULL,'99'),(93693,'movie','Overboard','Overboard',1,1987,NULL,'112'),(93748,'movie','Planes, Trains & Automobiles','Planes, Trains & Automobiles',1,1987,NULL,'93'),(93756,'movie','Police Academy 4: Citizens on Patrol','Police Academy 4: Citizens on Patrol',1,1987,NULL,'88'),(93773,'movie','Predator','Predator',1,1987,NULL,'107'),(93777,'movie','Prince of Darkness','Prince of Darkness',1,1987,NULL,'102'),(93779,'movie','The Princess Bride','The Princess Bride',1,1987,NULL,'98'),(93818,'movie','Radio Days','Radio Days',1,1987,NULL,'88'),(93822,'movie','Raising Arizona','Raising Arizona',1,1987,NULL,'94'),(93840,'movie','Rowing with the Wind','Remando al viento',1,1988,NULL,'95'),(93870,'movie','RoboCop','RoboCop',1,1987,NULL,'102'),(93894,'movie','The Running Man','The Running Man',1,1987,NULL,'101'),(93936,'movie','The Secret of My Success','The Secret of My Succe$s',1,1987,NULL,'111'),(93940,'movie','September','September',1,1987,NULL,'83'),(93952,'movie','Shame','Shame',1,1988,NULL,'94'),(93991,'movie','Slave Girls from Beyond Infinity','Slave Girls from Beyond Infinity',1,1987,NULL,'74'),(94012,'movie','Spaceballs','Spaceballs',1,1987,NULL,'96'),(94027,'movie','Stand and Deliver','Stand and Deliver',1,1988,NULL,'103'),(94074,'movie','Superman IV: The Quest for Peace','Superman IV: The Quest for Peace',1,1987,NULL,'90'),(94089,'movie','Swimming to Cambodia','Swimming to Cambodia',1,1987,NULL,'85'),(94137,'movie','Three Men and a Baby','3 Men and a Baby',1,1987,NULL,'102'),(94142,'movie','Throw Momma from the Train','Throw Momma from the Train',1,1987,NULL,'88'),(94226,'movie','The Untouchables','The Untouchables',1,1987,NULL,'119'),(94286,'movie','Waiting for the Moon','Waiting for the Moon',1,1987,NULL,'88'),(94315,'movie','The Whales of August','The Whales of August',1,1987,NULL,'90'),(94332,'movie','The Witches of Eastwick','The Witches of Eastwick',1,1987,NULL,'118'),(94336,'movie','Withnail & I','Withnail & I',1,1987,NULL,'107'),(94357,'movie','A Better Tomorrow II','Ying hung boon sik II',1,1987,NULL,'105'),(94588,'video','\'Gator Bait 2: Cajun Justice','\'Gator Bait 2: Cajun Justice',1,1988,NULL,'99'),(94606,'movie','The Accidental Tourist','The Accidental Tourist',1,1988,NULL,'121'),(94608,'movie','The Accused','The Accused',1,1988,NULL,'111'),(94612,'movie','Action Jackson','Action Jackson',1,1988,NULL,'96'),(94625,'movie','Akira','Akira',1,1988,NULL,'124'),(94631,'movie','Alien Nation','Alien Nation',1,1988,NULL,'91'),(94663,'movie','Another Woman','Another Woman',1,1988,NULL,'81'),(94668,'video','Appleseed','Appurushîdo',1,1988,NULL,'71'),(94715,'movie','Beaches','Beaches',1,1988,NULL,'123'),(94721,'movie','Beetlejuice','Beetlejuice',1,1988,NULL,'92'),(94737,'movie','Big','Big',1,1988,NULL,'104'),(94739,'movie','Big Business','Big Business',1,1988,NULL,'97'),(94791,'tvMiniSeries','The Bourne Identity','The Bourne Identity',1,1988,1988,'185'),(94812,'movie','Bull Durham','Bull Durham',1,1988,NULL,'108'),(94824,'movie','Caddyshack II','Caddyshack II',1,1988,NULL,'98'),(94849,'movie','Celia','Celia',1,1989,NULL,'102'),(94862,'movie','Child\'s Play','Child\'s Play',1,1988,NULL,'87'),(94868,'movie','Chocolat','Chocolat',1,1988,NULL,'105'),(94898,'movie','Coming to America','Coming to America',1,1988,NULL,'117'),(94919,'movie','Critters 2: The Main Course','Critters 2',1,1988,NULL,'86'),(94921,'movie','Crossing Delancey','Crossing Delancey',1,1988,NULL,'97'),(94947,'movie','Dangerous Liaisons','Dangerous Liaisons',1,1988,NULL,'119'),(94964,'movie','Dead Ringers','Dead Ringers',1,1988,NULL,'116'),(95016,'movie','Die Hard','Die Hard',1,1988,NULL,'132'),(95031,'movie','Dirty Rotten Scoundrels','Dirty Rotten Scoundrels',1,1988,NULL,'110'),(95037,'movie','Distant Voices, Still Lives','Distant Voices, Still Lives',1,1988,NULL,'84'),(95088,'movie','Elvira: Mistress of the Dark','Elvira: Mistress of the Dark',1,1988,NULL,'96'),(95094,'movie','Emmanuelle 6','Emmanuelle 6',1,1988,NULL,'90'),(95145,'movie','Feds','Feds',1,1988,NULL,'82'),(95159,'movie','A Fish Called Wanda','A Fish Called Wanda',1,1988,NULL,'108'),(95243,'movie','Gorillas in the Mist','Gorillas in the Mist: The Story of Dian Fossey',1,1988,NULL,'129'),(95250,'movie','The Big Blue','Le grand bleu',1,1988,NULL,'168'),(95253,'movie','The Great Outdoors','The Great Outdoors',1,1988,NULL,'91'),(95270,'movie','Hairspray','Hairspray',1,1988,NULL,'92'),(95294,'movie','Hellbound: Hellraiser II','Hellbound: Hellraiser II',1,1988,NULL,'97'),(95305,'movie','High Tide','High Tide',1,1987,NULL,'104'),(95327,'movie','Grave of the Fireflies','Hotaru no haka',1,1988,NULL,'89'),(95444,'movie','Killer Klowns from Outer Space','Killer Klowns from Outer Space',1,1988,NULL,'88'),(95484,'movie','Lady in White','Lady in White',1,1988,NULL,'113'),(95489,'movie','The Land Before Time','The Land Before Time',1,1988,NULL,'69'),(95497,'movie','The Last Temptation of Christ','The Last Temptation of Christ',1,1988,NULL,'164'),(95583,'movie','Maniac Cop','Maniac Cop',1,1988,NULL,'85'),(95593,'movie','Married to the Mob','Married to the Mob',1,1988,NULL,'104'),(95631,'movie','Midnight Run','Midnight Run',1,1988,NULL,'126'),(95675,'movie','Women on the Verge of a Nervous Breakdown','Mujeres al borde de un ataque de \"nervios\"',1,1988,NULL,'88'),(95687,'movie','My Stepmother Is an Alien','My Stepmother Is an Alien',1,1988,NULL,'105'),(95690,'movie','Mystic Pizza','Mystic Pizza',1,1988,NULL,'104'),(95705,'movie','The Naked Gun: From the Files of Police Squad!','The Naked Gun: From the Files of Police Squad!',1,1988,NULL,'85'),(95742,'movie','A Nightmare on Elm Street 4: The Dream Master','A Nightmare on Elm Street 4: The Dream Master',1,1988,NULL,'93'),(95765,'movie','Cinema Paradiso','Nuovo Cinema Paradiso',1,1988,NULL,'155'),(95776,'movie','Oliver & Company','Oliver & Company',1,1988,NULL,'74'),(95800,'movie','The Bear','L\'ours',1,1988,NULL,'96'),(95801,'movie','Bagdad Cafe','Out of Rosenheim',1,1987,NULL,'95'),(95882,'movie','Police Academy 5: Assignment: Miami Beach','Police Academy 5: Assignment: Miami Beach',1,1988,NULL,'90'),(95889,'movie','Poltergeist III','Poltergeist III',1,1988,NULL,'98'),(95925,'movie','Pumpkinhead','Pumpkinhead',1,1988,NULL,'86'),(95953,'movie','Rain Man','Rain Man',1,1988,NULL,'133'),(95956,'movie','Rambo III','Rambo III',1,1988,NULL,'102'),(96001,'tvEpisode','Rock \'n\' Roll Mom','Rock \'n\' Roll Mom',1,1988,NULL,'100'),(96037,'movie','Satisfaction','Satisfaction',1,1988,NULL,'92'),(96061,'movie','Scrooged','Scrooged',1,1988,NULL,'101'),(96114,'movie','The Sisterhood','The Sisterhood',1,1988,NULL,'75'),(96163,'movie','The Vanishing','Spoorloos',1,1988,NULL,'107'),(96176,'movie','Sticky Fingers','Sticky Fingers',1,1988,NULL,'97'),(96256,'movie','They Live','They Live',1,1988,NULL,'94'),(96283,'movie','My Neighbor Totoro','Tonari no Totoro',1,1988,NULL,'86'),(96289,'movie','Torch Song Trilogy','Torch Song Trilogy',1,1988,NULL,'120'),(96320,'movie','Twins','Twins',1,1988,NULL,'107'),(96324,'movie','Two Moon Junction','Two Moon Junction',1,1988,NULL,'104'),(96378,'movie','Vibes','Vibes',1,1988,NULL,'99'),(96438,'movie','Who Framed Roger Rabbit','Who Framed Roger Rabbit',1,1988,NULL,'104'),(96446,'movie','Willow','Willow',1,1988,NULL,'126'),(96461,'movie','As Tears Go By','Wong Gok ka moon',1,1988,NULL,'102'),(96463,'movie','Working Girl','Working Girl',1,1988,NULL,'113'),(96465,'movie','World Gone Wild','World Gone Wild',1,1987,NULL,'95'),(96487,'movie','Young Guns','Young Guns',1,1988,NULL,'107'),(96523,'movie','The Student','L\'étudiante',1,1988,NULL,'104'),(96734,'movie','The \'Burbs','The \'Burbs',1,1989,NULL,'102'),(96754,'movie','The Abyss','The Abyss',1,1989,NULL,'140'),(96764,'movie','The Adventures of Baron Munchausen','The Adventures of Baron Munchausen',1,1988,NULL,'126'),(96787,'movie','All Dogs Go to Heaven','All Dogs Go to Heaven',1,1989,NULL,'84'),(96869,'movie','Babar: The Movie','Babar: The Movie',1,1989,NULL,'70'),(96874,'movie','Back to the Future Part II','Back to the Future Part II',1,1989,NULL,'108'),(96895,'movie','Batman','Batman',1,1989,NULL,'126'),(96928,'movie','Bill & Ted\'s Excellent Adventure','Bill & Ted\'s Excellent Adventure',1,1989,NULL,'90'),(96945,'movie','Blind Fury','Blind Fury',1,1989,NULL,'86'),(96969,'movie','Born on the Fourth of July','Born on the Fourth of July',1,1989,NULL,'145'),(97027,'movie','Casualties of War','Casualties of War',1,1989,NULL,'113'),(97050,'movie','The Adventures of Milo and Otis','Koneko monogatari',1,1986,NULL,'90'),(97106,'movie','A Tale of Springtime','Conte de printemps',1,1990,NULL,'108'),(97108,'movie','The Cook, the Thief, His Wife & Her Lover','The Cook, the Thief, His Wife & Her Lover',1,1989,NULL,'124'),(97123,'movie','Crimes and Misdemeanors','Crimes and Misdemeanors',1,1989,NULL,'104'),(97162,'movie','Dead Calm','Dead Calm',1,1989,NULL,'96'),(97165,'movie','Dead Poets Society','Dead Poets Society',1,1989,NULL,'128'),(97182,'movie','The Delinquents','The Delinquents',1,1989,NULL,'101'),(97202,'movie','The Killer','Dip huet seung hung',1,1989,NULL,'111'),(97216,'movie','Do the Right Thing','Do the Right Thing',1,1989,NULL,'120'),(97235,'movie','The Dream Team','The Dream Team',1,1989,NULL,'113'),(97239,'movie','Driving Miss Daisy','Driving Miss Daisy',1,1989,NULL,'99'),(97240,'movie','Drugstore Cowboy','Drugstore Cowboy',1,1989,NULL,'101'),(97257,'movie','Earth Girls Are Easy','Earth Girls Are Easy',1,1988,NULL,'100'),(97334,'movie','Farewell to the King','Farewell to the King',1,1989,NULL,'117'),(97336,'movie','Fat Man and Little Boy','Fat Man and Little Boy',1,1989,NULL,'127'),(97351,'movie','Field of Dreams','Field of Dreams',1,1989,NULL,'107'),(97366,'movie','Fletch Lives','Fletch Lives',1,1989,NULL,'95'),(97388,'movie','Friday the 13th Part VIII: Jason Takes Manhattan','Friday the 13th Part VIII: Jason Takes Manhattan',1,1989,NULL,'100'),(97423,'tvMovie','Get Smart, Again!','Get Smart, Again!',1,1989,NULL,'96'),(97428,'movie','Ghostbusters II','Ghostbusters II',1,1989,NULL,'108'),(97441,'movie','Glory','Glory',1,1989,NULL,'122'),(97444,'movie','Godzilla vs. Biollante','Gojira vs. Biorante',1,1989,NULL,'104'),(97493,'movie','Heathers','Heathers',1,1988,NULL,'103'),(97499,'movie','Henry V','Henry V',1,1989,NULL,'137'),(97523,'movie','Honey, I Shrunk the Kids','Honey, I Shrunk the Kids',1,1989,NULL,'93'),(97561,'movie','The Needle','Igla',1,1988,NULL,'81'),(97576,'movie','Indiana Jones and the Last Crusade','Indiana Jones and the Last Crusade',1,1989,NULL,'127'),(97647,'movie','The Karate Kid Part III','The Karate Kid Part III',1,1989,NULL,'112'),(97659,'movie','Kickboxer','Kickboxer',1,1989,NULL,'97'),(97728,'movie','Leningrad Cowboys Go America','Leningrad Cowboys Go America',1,1989,NULL,'79'),(97731,'movie','Let It Ride','Let It Ride',1,1989,NULL,'90'),(97733,'movie','Lethal Weapon 2','Lethal Weapon 2',1,1989,NULL,'114'),(97737,'movie','Leviathan','Leviathan',1,1989,NULL,'98'),(97742,'movie','Licence to Kill','Licence to Kill',1,1989,NULL,'133'),(97757,'movie','The Little Mermaid','The Little Mermaid',1,1989,NULL,'83'),(97790,'movie','Loverboy','Loverboy',1,1989,NULL,'98'),(97814,'movie','Kiki\'s Delivery Service','Majo no takkyûbin',1,1989,NULL,'103'),(97815,'movie','Major League','Major League',1,1989,NULL,'107'),(97858,'movie','Meet the Feebles','Meet the Feebles',1,1989,NULL,'97'),(97883,'movie','Millennium','Millennium',1,1989,NULL,'108'),(97937,'movie','My Left Foot','My Left Foot: The Story of Christy Brown',1,1989,NULL,'103'),(97940,'movie','Mystery Train','Mystery Train',1,1989,NULL,'110'),(97958,'movie','National Lampoon\'s Christmas Vacation','National Lampoon\'s Christmas Vacation',1,1989,NULL,'97'),(97981,'movie','A Nightmare on Elm Street: The Dream Child','A Nightmare on Elm Street: The Dream Child',1,1989,NULL,'89'),(97991,'movie','No Retreat, No Surrender 2','No Retreat, No Surrender 2: Raging Thunder',1,1987,NULL,'104'),(98032,'tvMiniSeries','Oranges Are Not the Only Fruit','Oranges Are Not the Only Fruit',1,1989,1990,'165'),(98063,'movie','Paprika','Paprika',1,1991,NULL,'99'),(98067,'movie','Parenthood','Parenthood',1,1989,NULL,'124'),(98105,'movie','Police Academy 6: City Under Siege','Police Academy 6: City Under Siege',1,1989,NULL,'84'),(98141,'movie','The Punisher','The Punisher',1,1989,NULL,'89'),(98147,'movie','A Terra-Cotta Warrior','Qin yong',1,1989,NULL,'145'),(98180,'movie','Red Scorpion','Red Scorpion',1,1988,NULL,'105'),(98189,'movie','The Journey to Melonia','Resan till Melonia',1,1989,NULL,'104'),(98193,'movie','The Return of Swamp Thing','The Return of Swamp Thing',1,1989,NULL,'89'),(98206,'movie','Road House','Road House',1,1989,NULL,'114'),(98257,'movie','Savage Beach','Savage Beach',1,1989,NULL,'92'),(98258,'movie','Say Anything','Say Anything...',1,1989,NULL,'100'),(98273,'movie','Sea of Love','Sea of Love',1,1989,NULL,'113'),(98300,'movie','Shag','Shag',1,1988,NULL,'98'),(98309,'movie','She-Devil','She-Devil',1,1989,NULL,'99'),(98319,'movie','Shirley Valentine','Shirley Valentine',1,1989,NULL,'108'),(98325,'movie','Sidewalk Stories','Sidewalk Stories',1,1989,NULL,'97'),(98327,'movie','The Seventh Continent','Der siebente Kontinent',1,1989,NULL,'108'),(98382,'movie','Star Trek V: The Final Frontier','Star Trek V: The Final Frontier',1,1989,NULL,'107'),(98384,'movie','Steel Magnolias','Steel Magnolias',1,1989,NULL,'117'),(98439,'movie','Tango & Cash','Tango & Cash',1,1989,NULL,'104'),(98453,'movie','Teen Witch','Teen Witch',1,1989,NULL,'93'),(98519,'movie','Troop Beverly Hills','Troop Beverly Hills',1,1989,NULL,'105'),(98532,'movie','The Match Factory Girl','Tulitikkutehtaan tyttö',1,1990,NULL,'69'),(98536,'movie','Turner & Hooch','Turner & Hooch',1,1989,NULL,'97'),(98546,'movie','UHF','UHF',1,1989,NULL,'97'),(98554,'movie','Uncle Buck','Uncle Buck',1,1989,NULL,'100'),(98627,'movie','Weekend at Bernie\'s','Weekend at Bernie\'s',1,1989,NULL,'97'),(98635,'movie','When Harry Met Sally...','When Harry Met Sally...',1,1989,NULL,'95'),(98724,'movie','Sex, Lies, and Videotape','Sex, Lies, and Videotape',1,1989,NULL,'100'),(98897,'tvMiniSeries','Portrait of a Marriage','Portrait of a Marriage',1,1990,NULL,'219'),(99005,'movie','Air America','Air America',1,1990,NULL,'113'),(99012,'movie','Alice','Alice',1,1990,NULL,'106'),(99040,'movie','An Angel at My Table','An Angel at My Table',1,1990,NULL,'158'),(99088,'movie','Back to the Future Part III','Back to the Future Part III',1,1990,NULL,'118'),(99160,'movie','Blue Steel','Blue Steel',1,1990,NULL,'102'),(99165,'movie','The Bonfire of the Vanities','The Bonfire of the Vanities',1,1990,NULL,'125'),(99253,'movie','Child\'s Play 2','Child\'s Play 2',1,1990,NULL,'84'),(99277,'movie','Class of 1999','Class of 1999',1,1990,NULL,'99'),(99321,'tvMovie','Criminal Justice','Criminal Justice',1,1990,NULL,'90'),(99329,'movie','Cry-Baby','Cry-Baby',1,1990,NULL,'85'),(99348,'movie','Dances with Wolves','Dances with Wolves',1,1990,NULL,'181'),(99365,'movie','Darkman','Darkman',1,1990,NULL,'96'),(99371,'movie','Days of Thunder','Days of Thunder',1,1990,NULL,'107'),(99388,'movie','Deathstalker IV: Match of Titans','Deathstalker IV: Match of Titans',1,1991,NULL,'91'),(99399,'movie','Delta Force 2: The Colombian Connection','Delta Force 2: The Colombian Connection',1,1990,NULL,'111'),(99422,'movie','Dick Tracy','Dick Tracy',1,1990,NULL,'105'),(99423,'movie','Die Hard 2','Die Hard 2',1,1990,NULL,'124'),(99426,'movie','Bullet in the Head','Dip huet gai tau',1,1990,NULL,'136'),(99487,'movie','Edward Scissorhands','Edward Scissorhands',1,1990,NULL,'105'),(99582,'movie','Flatliners','Flatliners',1,1990,NULL,'115'),(99653,'movie','Ghost','Ghost',1,1990,NULL,'127'),(99674,'movie','The Godfather Part III','The Godfather Part III',1,1990,NULL,'162'),(99685,'movie','Goodfellas','Goodfellas',1,1990,NULL,'145'),(99700,'movie','Gremlins 2: The New Batch','Gremlins 2: The New Batch',1,1990,NULL,'106'),(99731,'movie','The Handmaid\'s Tale','The Handmaid\'s Tale',1,1990,NULL,'109'),(99733,'movie','Happily Ever After','Happily Ever After',1,1989,NULL,'75'),(99768,'movie','Hidden Agenda','Hidden Agenda',1,1990,NULL,'108'),(99772,'tvMovie','Hiroshima: Out of the Ashes','Hiroshima: Out of the Ashes',1,1990,NULL,'100'),(99776,'movie','Europa Europa','Europa Europa',1,1990,NULL,'112'),(99785,'movie','Home Alone','Home Alone',1,1990,NULL,'103'),(99810,'movie','The Hunt for Red October','The Hunt for Red October',1,1990,NULL,'135'),(99817,'movie','Dark Angel','Dark Angel',1,1990,NULL,'91'),(99818,'movie','I Hired a Contract Killer','I Hired a Contract Killer',1,1990,NULL,'79'),(99819,'movie','I Love You to Death','I Love You to Death',1,1990,NULL,'97'),(99851,'tvEpisode','Into the Woods','Into the Woods',1,1991,NULL,'151'),(99864,'tvMiniSeries','It','It',1,1990,1990,'192'),(99871,'movie','Jacob\'s Ladder','Jacob\'s Ladder',1,1990,NULL,'113'),(99892,'movie','Joe Versus the Volcano','Joe Versus the Volcano',1,1990,NULL,'102'),(99938,'movie','Kindergarten Cop','Kindergarten Cop',1,1990,NULL,'111'),(100009,'movie','Lethal Games','Lethal Games',1,1991,NULL,'83'),(100024,'movie','Life Is Sweet','Life Is Sweet',1,1990,NULL,'103'),(100029,'movie','Lionheart','Lionheart',1,1990,NULL,'108'),(100046,'movie','The Long Walk Home','The Long Walk Home',1,1990,NULL,'97'),(100054,'movie','Lord of the Flies','Lord of the Flies',1,1990,NULL,'90'),(100140,'movie','Mermaids','Mermaids',1,1990,NULL,'110'),(100142,'movie','Metropolitan','Metropolitan',1,1990,NULL,'98'),(100150,'movie','Miller\'s Crossing','Miller\'s Crossing',1,1990,NULL,'115'),(100151,'movie','Mindwalk','Mindwalk',1,1990,NULL,'112'),(100157,'movie','Misery','Misery',1,1990,NULL,'107'),(100222,'movie','Naked Tango','Naked Tango',1,1990,NULL,'90'),(100232,'movie','Navy Seals','Navy Seals',1,1990,NULL,'113'),(100234,'movie','Close-Up','Nema-ye Nazdik',1,1990,NULL,'98'),(100260,'movie','Nightbreed','Nightbreed',1,1990,NULL,'102'),(100263,'movie','Nikita','Nikita',1,1990,NULL,'117'),(100266,'movie','No Retreat, No Surrender 3: Blood Brothers','No Retreat, No Surrender 3: Blood Brothers',1,1990,NULL,'101'),(100332,'movie','Paris Is Burning','Paris Is Burning',1,1990,NULL,'78'),(100395,'movie','Postcards from the Edge','Postcards from the Edge',1,1990,NULL,'101'),(100403,'movie','Predator 2','Predator 2',1,1990,NULL,'108'),(100404,'movie','Presumed Innocent','Presumed Innocent',1,1990,NULL,'127'),(100405,'movie','Pretty Woman','Pretty Woman',1,1990,NULL,'119'),(100449,'movie','Quick Change','Quick Change',1,1990,NULL,'89'),(100469,'movie','The Reflecting Skin','The Reflecting Skin',1,1990,NULL,'96'),(100477,'movie','The Rescuers Down Under','The Rescuers Down Under',1,1990,NULL,'77'),(100491,'movie','Riff-Raff','Riff-Raff',1,1991,NULL,'95'),(100502,'movie','RoboCop 2','RoboCop 2',1,1990,NULL,'117'),(100507,'movie','Rocky V','Rocky V',1,1990,NULL,'104'),(100519,'movie','Rosencrantz & Guildenstern Are Dead','Rosencrantz & Guildenstern Are Dead',1,1990,NULL,'117'),(100530,'movie','The Russia House','The Russia House',1,1990,NULL,'123'),(100557,'movie','The Nasty Girl','Das schreckliche Mädchen',1,1990,NULL,'94'),(100594,'movie','The Sheltering Sky','The Sheltering Sky',1,1990,NULL,'138'),(100691,'movie','Stella','Stella',1,1990,NULL,'109'),(100758,'movie','Teenage Mutant Ninja Turtles','Teenage Mutant Ninja Turtles',1,1990,NULL,'93'),(100802,'movie','Total Recall','Total Recall',1,1990,NULL,'113'),(100814,'movie','Tremors','Tremors',1,1990,NULL,'96'),(100911,'movie','Welcome Home, Roxy Carmichael','Welcome Home, Roxy Carmichael',1,1990,NULL,'95'),(100924,'movie','Where the Heart Is','Where the Heart Is',1,1990,NULL,'107'),(100928,'movie','White Hunter Black Heart','White Hunter Black Heart',1,1990,NULL,'112'),(100934,'movie','Wild Orchid','Wild Orchid',1,1989,NULL,'105'),(100935,'movie','Wild at Heart','Wild at Heart',1,1990,NULL,'125'),(100944,'movie','The Witches','The Witches',1,1990,NULL,'91'),(100963,'movie','King of Beggars','Mo jong yuen So Hak Yee',1,1992,NULL,'101'),(100990,'movie','I, the Worst of All','Yo, la peor de todas',1,1990,NULL,'105'),(101258,'movie','Days of Being Wild','Ah fei jing juen',1,1990,NULL,'100'),(101272,'movie','The Addams Family','The Addams Family',1,1991,NULL,'99'),(101316,'movie','The Lover','L\'amant',1,1992,NULL,'115'),(101318,'movie','The Lovers on the Bridge','Les amants du Pont-Neuf',1,1991,NULL,'125'),(101329,'movie','An American Tail: Fievel Goes West','An American Tail: Fievel Goes West',1,1991,NULL,'75'),(101393,'movie','Backdraft','Backdraft',1,1991,NULL,'137'),(101399,'movie','Bad Girls from Mars','Bad Girls from Mars',1,1990,NULL,'86'),(101410,'movie','Barton Fink','Barton Fink',1,1991,NULL,'116'),(101414,'movie','Beauty and the Beast','Beauty and the Beast',1,1991,NULL,'84'),(101452,'movie','Bill & Ted\'s Bogus Journey','Bill & Ted\'s Bogus Journey',1,1991,NULL,'93'),(101458,'movie','Until the End of the World','Bis ans Ende der Welt',1,1991,NULL,'158'),(101465,'movie','Black Robe','Black Robe',1,1991,NULL,'101'),(101507,'movie','Boyz n the Hood','Boyz n the Hood',1,1991,NULL,'112'),(101540,'movie','Cape Fear','Cape Fear',1,1991,NULL,'128'),(101587,'movie','City Slickers','City Slickers',1,1991,NULL,'113'),(101597,'movie','Closet Land','Closet Land',1,1991,NULL,'89'),(101605,'movie','The Commitments','The Commitments',1,1991,NULL,'118'),(101627,'movie','Critters 3','Critters 3',1,1991,NULL,'86'),(101628,'movie','Critters 4','Critters 4',1,1992,NULL,'87'),(101640,'movie','Raise the Red Lantern','Da hong denglong gaogao gua',1,1991,NULL,'125'),(101698,'movie','Defending Your Life','Defending Your Life',1,1991,NULL,'112'),(101701,'movie','Delirious','Delirious',1,1991,NULL,'96'),(101702,'movie','Delta Force 3: The Killing Game','Delta Force 3: The Killing Game',1,1991,NULL,'97'),(101745,'movie','Doc Hollywood','Doc Hollywood',1,1991,NULL,'104'),(101757,'movie','Don\'t Tell Mom the Babysitter\'s Dead','Don\'t Tell Mom the Babysitter\'s Dead',1,1991,NULL,'102'),(101764,'movie','Double Impact','Double Impact',1,1991,NULL,'110'),(101765,'movie','The Double Life of Véronique','La double vie de Véronique',1,1991,NULL,'98'),(101775,'movie','Drop Dead Fred','Drop Dead Fred',1,1991,NULL,'103'),(101811,'movie','Enchanted April','Enchanted April',1,1991,NULL,'95'),(101829,'movie','Europa','Europa',1,1991,NULL,'112'),(101844,'movie','Eyes of an Angel','Eyes of an Angel',1,1991,NULL,'95'),(101889,'movie','The Fisher King','The Fisher King',1,1991,NULL,'137'),(101891,'movie','The Five Heartbeats','The Five Heartbeats',1,1991,NULL,'121'),(101898,'movie','Flirting','Flirting',1,1991,NULL,'99'),(101902,'movie','For the Boys','For the Boys',1,1991,NULL,'138'),(101912,'movie','Frankie and Johnny','Frankie and Johnny',1,1991,NULL,'118'),(101917,'movie','Freddy\'s Dead: The Final Nightmare','Freddy\'s Dead: The Final Nightmare',1,1991,NULL,'89'),(101921,'movie','Fried Green Tomatoes','Fried Green Tomatoes',1,1991,NULL,'130'),(101991,'movie','Rhapsody in August','Hachigatsu no rapusodî',1,1991,NULL,'98'),(102034,'movie','Highlander II: The Quickening','Highlander II: The Quickening',1,1991,NULL,'91'),(102057,'movie','Hook','Hook',1,1991,NULL,'142'),(102059,'movie','Hot Shots!','Hot Shots!',1,1991,NULL,'84'),(102070,'movie','Hudson Hawk','Hudson Hawk',1,1991,NULL,'100'),(102103,'movie','Impromptu','Impromptu',1,1991,NULL,'107'),(102138,'movie','JFK','JFK',1,1991,NULL,'189'),(102202,'movie','Kickboxer 2: The Road Back','Kickboxer 2: The Road Back',1,1991,NULL,'90'),(102250,'movie','L.A. Story','L.A. Story',1,1991,NULL,'95'),(102266,'movie','The Last Boy Scout','The Last Boy Scout',1,1991,NULL,'105'),(102303,'movie','Life Stinks','Life Stinks',1,1991,NULL,'92'),(102313,'movie','The Linguini Incident','The Linguini Incident',1,1991,NULL,'108'),(102370,'movie','Madonna: Truth or Dare','Madonna: Truth or Dare',1,1991,NULL,'120'),(102397,'movie','Manta, Manta','Manta, Manta',1,1991,NULL,'91'),(102411,'movie','The Marrying Man','The Marrying Man',1,1991,NULL,'115'),(102426,'movie','Mediterraneo','Mediterraneo',1,1991,NULL,'96'),(102436,'movie','Merci La Vie','Merci la vie',1,1991,NULL,'117'),(102492,'movie','My Girl','My Girl',1,1991,NULL,'102'),(102494,'movie','My Own Private Idaho','My Own Private Idaho',1,1991,NULL,'104'),(102510,'movie','The Naked Gun 2½: The Smell of Fear','The Naked Gun 2½: The Smell of Fear',1,1991,NULL,'85'),(102522,'movie','Nekromantik 2','Nekromantik 2',1,1991,NULL,'104'),(102526,'movie','New Jack City','New Jack City',1,1991,NULL,'97'),(102536,'movie','Night on Earth','Night on Earth',1,1991,NULL,'129'),(102573,'movie','The Object of Beauty','The Object of Beauty',1,1991,NULL,'103'),(102587,'movie','Only Yesterday','Omohide poro poro',1,1991,NULL,'119'),(102603,'movie','Oscar','Oscar',1,1991,NULL,'109'),(102609,'movie','Other People\'s Money','Other People\'s Money',1,1991,NULL,'103'),(102685,'movie','Point Break','Point Break',1,1991,NULL,'122'),(102797,'movie','Robin Hood','Robin Hood',1,1991,NULL,'104'),(102798,'movie','Robin Hood: Prince of Thieves','Robin Hood: Prince of Thieves',1,1991,NULL,'143'),(102803,'movie','The Rocketeer','The Rocketeer',1,1991,NULL,'108'),(102817,'movie','Rubin and Ed','Rubin and Ed',1,1991,NULL,'82'),(102829,'movie','Salmonberries','Salmonberries',1,1991,NULL,'95'),(102898,'movie','Shakes the Clown','Shakes the Clown',1,1991,NULL,'87'),(102915,'movie','Showdown in Little Tokyo','Showdown in Little Tokyo',1,1991,NULL,'79'),(102926,'movie','The Silence of the Lambs','The Silence of the Lambs',1,1991,NULL,'118'),(102943,'movie','Slacker','Slacker',1,1990,NULL,'97'),(102951,'movie','Soapdish','Soapdish',1,1991,NULL,'97'),(102975,'movie','Star Trek VI: The Undiscovered Country','Star Trek VI: The Undiscovered Country',1,1991,NULL,'110'),(102993,'movie','Strangers in Good Company','Strangers in Good Company',1,1990,NULL,'101'),(103030,'movie','High Heels','Tacones lejanos',1,1991,NULL,'112'),(103060,'movie','Teenage Mutant Ninja Turtles II: The Secret of the Ooze','Teenage Mutant Ninja Turtles II: The Secret of the Ooze',1,1991,NULL,'88'),(103064,'movie','Terminator 2: Judgment Day','Terminator 2: Judgment Day',1,1991,NULL,'137'),(103074,'movie','Thelma & Louise','Thelma & Louise',1,1991,NULL,'130'),(103112,'movie','Toy Soldiers','Toy Soldiers',1,1991,NULL,'111'),(103241,'movie','What About Bob?','What About Bob?',1,1991,NULL,'99'),(103247,'movie','White Fang','White Fang',1,1991,NULL,'107'),(103639,'movie','Aladdin','Aladdin',1,1992,NULL,'90'),(103644,'movie','Alien³','Alien³',1,1992,NULL,'114'),(103767,'movie','Baraka','Baraka',1,1992,NULL,'96'),(103768,'video','Barbarian Queen II: The Empress Strikes Back','Barbarian Queen II: The Empress Strikes Back',1,1990,NULL,'80'),(103772,'movie','Basic Instinct','Basic Instinct',1,1992,NULL,'127'),(103776,'movie','Batman Returns','Batman Returns',1,1992,NULL,'126'),(103786,'movie','Beethoven','Beethoven',1,1992,NULL,'87'),(103812,'movie','The Bikini Carwash Company','The Bikini Carwash Company',1,1992,NULL,'87'),(103850,'movie','Bob Roberts','Bob Roberts',1,1992,NULL,'102'),(103855,'movie','The Bodyguard','The Bodyguard',1,1992,NULL,'129'),(103859,'movie','Boomerang','Boomerang',1,1992,NULL,'117'),(103873,'movie','Dead Alive','Braindead',1,1992,NULL,'104'),(103874,'movie','Bram Stoker\'s Dracula','Bram Stoker\'s Dracula',1,1992,NULL,'128'),(103893,'movie','Buffy the Vampire Slayer','Buffy the Vampire Slayer',1,1992,NULL,'86'),(103919,'movie','Candyman','Candyman',1,1992,NULL,'99'),(103939,'movie','Chaplin','Chaplin',1,1992,NULL,'143'),(103956,'movie','Child\'s Play 3','Child\'s Play 3',1,1991,NULL,'90'),(103959,'movie','Chopper Chicks in Zombietown','Chrome Hearts',1,1989,NULL,'86'),(103994,'movie','Like Water for Chocolate','Como agua para chocolate',1,1992,NULL,'105'),(104036,'movie','The Crying Game','The Crying Game',1,1992,NULL,'112'),(104040,'movie','The Cutting Edge','The Cutting Edge',1,1992,NULL,'101'),(104057,'movie','Daughters of the Dust','Daughters of the Dust',1,1991,NULL,'113'),(104070,'movie','Death Becomes Her','Death Becomes Her',1,1992,NULL,'104'),(104105,'movie','Diên Biên Phú','Diên Biên Phú',1,1992,NULL,'140'),(104187,'movie','Encino Man','Encino Man',1,1992,NULL,'88'),(104231,'movie','Far and Away','Far and Away',1,1992,NULL,'140'),(104237,'movie','Damage','Damage',1,1992,NULL,'111'),(104246,'movie','The Sword of Many Lovers','Fei hu wai zhuan',1,1993,NULL,'111'),(104254,'movie','FernGully: The Last Rainforest','FernGully: The Last Rainforest',1,1992,NULL,'76'),(104257,'movie','A Few Good Men','A Few Good Men',1,1992,NULL,'138'),(104298,'movie','Freddie as F.R.O.7.','Freddie as F.R.O.7.',1,1992,NULL,'91'),(104321,'movie','Gas Food Lodging','Gas Food Lodging',1,1992,NULL,'101'),(104348,'movie','Glengarry Glen Ross','Glengarry Glen Ross',1,1992,NULL,'100'),(104389,'movie','The Hand That Rocks the Cradle','The Hand That Rocks the Cradle',1,1992,NULL,'110'),(104409,'movie','Hellraiser III: Hell on Earth','Hellraiser III: Hell on Earth',1,1992,NULL,'97'),(104412,'movie','Hero','Hero',1,1992,NULL,'119'),(104431,'movie','Home Alone 2: Lost in New York','Home Alone 2: Lost in New York',1,1992,NULL,'120'),(104452,'movie','HouseSitter','Housesitter',1,1992,NULL,'102'),(104454,'movie','Howards End','Howards End',1,1992,NULL,'142'),(104466,'movie','Husbands and Wives','Husbands and Wives',1,1992,NULL,'108'),(104575,'movie','Just Another Girl on the I.R.T.','Just Another Girl on the I.R.T.',1,1992,NULL,'92'),(104652,'movie','Porco Rosso','Kurenai no buta',1,1992,NULL,'94'),(104670,'movie','Ladybugs','Ladybugs',1,1992,NULL,'90'),(104684,'movie','Hard Boiled','Lat sau san taam',1,1992,NULL,'128'),(104691,'movie','The Last of the Mohicans','The Last of the Mohicans',1,1992,NULL,'112'),(104692,'movie','The Lawnmower Man','The Lawnmower Man',1,1992,NULL,'108'),(104694,'movie','A League of Their Own','A League of Their Own',1,1992,NULL,'128'),(104695,'movie','Leap of Faith','Leap of Faith',1,1992,NULL,'108'),(104697,'movie','Leaving Normal','Leaving Normal',1,1992,NULL,'110'),(104779,'movie','Bitter Moon','Bitter Moon',1,1992,NULL,'139'),(104797,'movie','Malcolm X','Malcolm X',1,1992,NULL,'202'),(104815,'movie','El Mariachi','El mariachi',1,1992,NULL,'81'),(104868,'movie','The Mighty Ducks','The Mighty Ducks',1,1992,NULL,'104'),(104922,'movie','Motorama','Motorama',1,1991,NULL,'90'),(104940,'movie','The Muppet Christmas Carol','The Muppet Christmas Carol',1,1992,NULL,'85'),(104952,'movie','My Cousin Vinny','My Cousin Vinny',1,1992,NULL,'120'),(104981,'movie','Neon City','Neon City',1,1991,NULL,'99'),(104990,'movie','Newsies','Newsies',1,1992,NULL,'121'),(105104,'movie','Passenger 57','Passenger 57',1,1992,NULL,'84'),(105107,'movie','Passion Fish','Passion Fish',1,1992,NULL,'135'),(105121,'movie','The People Under the Stairs','The People Under the Stairs',1,1991,NULL,'102'),(105130,'movie','Peter\'s Friends','Peter\'s Friends',1,1992,NULL,'101'),(105151,'movie','The Player','The Player',1,1992,NULL,'124'),(105236,'movie','Reservoir Dogs','Reservoir Dogs',1,1992,NULL,'99'),(105265,'movie','A River Runs Through It','A River Runs Through It',1,1992,NULL,'123'),(105316,'movie','Sarafina!','Sarafina!',1,1992,NULL,'117'),(105323,'movie','Scent of a Woman','Scent of a Woman',1,1992,NULL,'156'),(105328,'movie','Schtonk','Schtonk',1,1992,NULL,'115'),(105414,'movie','Single White Female','Single White Female',1,1992,NULL,'107'),(105415,'movie','Singles','Singles',1,1992,NULL,'99'),(105417,'movie','Sister Act','Sister Act',1,1992,NULL,'100'),(105435,'movie','Sneakers','Sneakers',1,1992,NULL,'126'),(105459,'movie','Split Second','Split Second',1,1992,NULL,'90'),(105466,'movie','Stay Tuned','Stay Tuned',1,1992,NULL,'88'),(105477,'movie','Stop! Or My Mom Will Shoot','Stop! Or My Mom Will Shoot',1,1992,NULL,'87'),(105481,'movie','Straight Talk','Straight Talk',1,1992,NULL,'91'),(105488,'movie','Strictly Ballroom','Strictly Ballroom',1,1992,NULL,'94'),(105577,'movie','This Is My Life','This Is My Life',1,1992,NULL,'105'),(105616,'movie','Tom and Jerry: The Movie','Tom and Jerry: The Movie',1,1992,NULL,'84'),(105619,'movie','The Heroic Trio','Dung fong sam hap',1,1993,NULL,'88'),(105629,'movie','Toys','Toys',1,1992,NULL,'118'),(105643,'movie','Troll 2','Troll 2',1,1990,NULL,'95'),(105665,'movie','Twin Peaks: Fire Walk with Me','Twin Peaks: Fire Walk with Me',1,1992,NULL,'134'),(105682,'movie','A Heart in Winter','Un coeur en hiver',1,1992,NULL,'105'),(105695,'movie','Unforgiven','Unforgiven',1,1992,NULL,'130'),(105793,'movie','Wayne\'s World','Wayne\'s World',1,1992,NULL,'94'),(105851,'movie','Full Contact','Hap do Ko Fei',1,1992,NULL,'99'),(105859,'movie','Dragon Inn','San lung moon hak chan',1,1992,NULL,'88'),(106220,'movie','Addams Family Values','Addams Family Values',1,1993,NULL,'94'),(106226,'movie','The Age of Innocence','The Age of Innocence',1,1993,NULL,'139'),(106303,'movie','Arctic Blue','Arctic Blue',1,1993,NULL,'95'),(106308,'movie','Army of Darkness','Army of Darkness',1,1992,NULL,'81'),(106332,'movie','Farewell My Concubine','Ba wang bie ji',1,1992,NULL,'171'),(106341,'movie','Bad Boy Bubby','Bad Boy Bubby',1,1993,NULL,'114'),(106364,'movie','Batman: Mask of the Phantasm','Batman: Mask of the Phantasm',1,1993,NULL,'76'),(106387,'movie','Benny & Joon','Benny & Joon',1,1993,NULL,'98'),(106400,'movie','The Beverly Hillbillies','The Beverly Hillbillies',1,1993,NULL,'92'),(106408,'movie','Bhaji on the Beach','Bhaji on the Beach',1,1993,NULL,'101'),(106417,'movie','Sailor Moon R: The Movie: The Promise of the Rose','Gekijô-ban - Bishôjo senshi Sêrâ Mûn R',1,1993,NULL,'61'),(106449,'tvMovie','Body Bags','Body Bags',1,1993,NULL,'94'),(106452,'movie','Body Snatchers','Body Snatchers',1,1993,NULL,'87'),(106453,'movie','Body of Evidence','Body of Evidence',1,1992,NULL,'99'),(106469,'movie','Bound by Honor','Bound by Honor',1,1993,NULL,'180'),(106471,'movie','Boxing Helena','Boxing Helena',1,1993,NULL,'107'),(106582,'movie','Cliffhanger','Cliffhanger',1,1993,NULL,'113'),(106598,'movie','Coneheads','Coneheads',1,1993,NULL,'88'),(106611,'movie','Cool Runnings','Cool Runnings',1,1993,NULL,'98'),(106673,'movie','Dave','Dave',1,1993,NULL,'110'),(106677,'movie','Dazed and Confused','Dazed and Confused',1,1993,NULL,'103'),(106689,'tvMovie','Detonator','Death Train',1,1993,NULL,'98'),(106697,'movie','Demolition Man','Demolition Man',1,1993,NULL,'115'),(106770,'movie','Dragon: The Bruce Lee Story','Dragon: The Bruce Lee Story',1,1993,NULL,'120'),(106834,'movie','Even Cowgirls Get the Blues','Even Cowgirls Get the Blues',1,1993,NULL,'106'),(106873,'movie','Fatal Instinct','Fatal Instinct',1,1993,NULL,'91'),(106880,'movie','Fear of a Black Hat','Fear of a Black Hat',1,1993,NULL,'88'),(106918,'movie','The Firm','The Firm',1,1993,NULL,'154'),(106965,'movie','Free Willy','Free Willy',1,1993,NULL,'112'),(106977,'movie','The Fugitive','The Fugitive',1,1993,NULL,'130'),(106989,'movie','Gatica, the Monkey','Gatica, el mono',1,1993,NULL,'136'),(107007,'movie','Gettysburg','Gettysburg',1,1993,NULL,'271'),(107048,'movie','Groundhog Day','Groundhog Day',1,1993,NULL,'101'),(107050,'movie','Grumpy Old Men','Grumpy Old Men',1,1993,NULL,'103'),(107057,'movie','Guilty as Sin','Guilty as Sin',1,1993,NULL,'107'),(107065,'tvMovie','Gypsy','Gypsy',1,1993,NULL,'153'),(107076,'movie','Hard Target','Hard Target',1,1993,NULL,'97'),(107091,'movie','Heart and Souls','Heart and Souls',1,1993,NULL,'104'),(107096,'movie','Heaven & Earth','Heaven & Earth',1,1993,NULL,'140'),(107099,'tvMiniSeries','Heidi','Heidi',1,1993,1993,'193'),(107120,'movie','Hocus Pocus','Hocus Pocus',1,1993,NULL,'96'),(107131,'movie','Homeward Bound: The Incredible Journey','Homeward Bound: The Incredible Journey',1,1993,NULL,'84'),(107144,'movie','Hot Shots! Part Deux','Hot Shots! Part Deux',1,1993,NULL,'86'),(107151,'movie','The House of the Spirits','The House of the Spirits',1,1993,NULL,'145'),(107156,'movie','The Wedding Banquet','Xi yan',1,1993,NULL,'106'),(107206,'movie','In the Line of Fire','In the Line of Fire',1,1993,NULL,'128'),(107207,'movie','In the Name of the Father','In the Name of the Father',1,1993,NULL,'133'),(107211,'movie','Indecent Proposal','Indecent Proposal',1,1993,NULL,'117'),(107212,'movie','Indian Summer','Indian Summer',1,1993,NULL,'97'),(107214,'movie','India','Indien',1,1993,NULL,'90'),(107282,'movie','The Joy Luck Club','The Joy Luck Club',1,1993,NULL,'139'),(107290,'movie','Jurassic Park','Jurassic Park',1,1993,NULL,'127'),(107315,'movie','Kika','Kika',1,1993,NULL,'114'),(107362,'movie','Last Action Hero','Last Action Hero',1,1993,NULL,'130'),(107387,'movie','Leprechaun','Leprechaun',1,1992,NULL,'92'),(107426,'movie','Little Buddha','Little Buddha',1,1993,NULL,'123'),(107492,'movie','The Making of \'...and God Spoke\'','The Making of \'...And God Spoke\'',1,1993,NULL,'82'),(107501,'movie','The Man Without a Face','The Man Without a Face',1,1993,NULL,'115'),(107507,'movie','Manhattan Murder Mystery','Manhattan Murder Mystery',1,1993,NULL,'104'),(107529,'movie','Matinee','Matinee',1,1993,NULL,'99'),(107566,'movie','Mi vida loca','Mi vida loca',1,1993,NULL,'92'),(107614,'movie','Mrs. Doubtfire','Mrs. Doubtfire',1,1993,NULL,'125'),(107616,'movie','Much Ado About Nothing','Much Ado About Nothing',1,1993,NULL,'111'),(107653,'movie','Naked','Naked',1,1993,NULL,'131'),(107688,'movie','The Nightmare Before Christmas','The Nightmare Before Christmas',1,1993,NULL,'76'),(107745,'movie','Once Upon a Forest','Once Upon a Forest',1,1993,NULL,'71'),(107756,'movie','Orlando','Orlando',1,1992,NULL,'94'),(107798,'movie','The Pelican Brief','The Pelican Brief',1,1993,NULL,'141'),(107808,'movie','A Perfect World','A Perfect World',1,1993,NULL,'138'),(107818,'movie','Philadelphia','Philadelphia',1,1993,NULL,'125'),(107822,'movie','The Piano','The Piano',1,1993,NULL,'121'),(107840,'movie','Poetic Justice','Poetic Justice',1,1993,NULL,'109'),(107843,'movie','Point of No Return','Point of No Return',1,1993,NULL,'109'),(107875,'movie','The Princess and the Goblin','The Princess and the Goblin',1,1991,NULL,'82'),(107943,'movie','The Remains of the Day','The Remains of the Day',1,1993,NULL,'134'),(107952,'video','Aladdin 2: The Return of Jafar','The Return of Jafar',1,1994,NULL,'69'),(107969,'movie','Rising Sun','Rising Sun',1,1993,NULL,'125'),(107977,'movie','Robin Hood: Men in Tights','Robin Hood: Men in Tights',1,1993,NULL,'104'),(107978,'movie','RoboCop 3','RoboCop 3',1,1993,NULL,'104'),(108000,'movie','Ruby in Paradise','Ruby in Paradise',1,1993,NULL,'114'),(108037,'movie','The Sandlot','The Sandlot',1,1993,NULL,'101'),(108052,'movie','Schindler\'s List','Schindler\'s List',1,1993,NULL,'195'),(108065,'movie','Searching for Bobby Fischer','Searching for Bobby Fischer',1,1993,NULL,'109'),(108071,'movie','The Secret Garden','The Secret Garden',1,1993,NULL,'101'),(108122,'movie','Short Cuts','Short Cuts',1,1993,NULL,'188'),(108147,'movie','Sister Act 2: Back in the Habit','Sister Act 2: Back in the Habit',1,1993,NULL,'107'),(108149,'movie','Six Degrees of Separation','Six Degrees of Separation',1,1993,NULL,'112'),(108160,'movie','Sleepless in Seattle','Sleepless in Seattle',1,1993,NULL,'105'),(108162,'movie','Sliver','Sliver',1,1993,NULL,'107'),(108174,'movie','So I Married an Axe Murderer','So I Married an Axe Murderer',1,1993,NULL,'93'),(108188,'movie','Sonatine','Sonatine',1,1993,NULL,'94'),(108255,'movie','Super Mario Bros.','Super Mario Bros.',1,1993,NULL,'104'),(108265,'movie','Swing Kids','Swing Kids',1,1993,NULL,'112'),(108308,'movie','Teenage Mutant Ninja Turtles III','Teenage Mutant Ninja Turtles III',1,1993,NULL,'96'),(108310,'tvMovie','Telling Secrets','Telling Secrets',1,1993,NULL,'240'),(108358,'movie','Tombstone','Tombstone',1,1993,NULL,'130'),(108388,'movie','The Trial','The Trial',1,1993,NULL,'120'),(108394,'movie','Three Colors: Blue','Trois couleurs: Bleu',1,1993,NULL,'94'),(108399,'movie','True Romance','True Romance',1,1993,NULL,'119'),(108432,'tvMovie','Ocean Waves','Umi ga kikoeru',1,1993,NULL,'72'),(108442,'movie','Undercover Blues','Undercover Blues',1,1993,NULL,'90'),(108451,'movie','Untamed Heart','Untamed Heart',1,1993,NULL,'102'),(108550,'movie','What\'s Eating Gilbert Grape','What\'s Eating Gilbert Grape',1,1993,NULL,'118'),(108551,'movie','What\'s Love Got to Do with It','What\'s Love Got to Do with It',1,1993,NULL,'118'),(108624,'movie','Kung Fu Cult Master','Yi tin to lung gei: Moh gaau gaau jue',1,1993,NULL,'107'),(108941,'tvMiniSeries','The Stand','The Stand',1,1994,1994,'361'),(109040,'movie','Ace Ventura: Pet Detective','Ace Ventura: Pet Detective',1,1994,NULL,'86'),(109045,'movie','The Adventures of Priscilla, Queen of the Desert','The Adventures of Priscilla, Queen of the Desert',1,1994,NULL,'104'),(109066,'movie','Vive L\'Amour','Ai qing wan sui',1,1994,NULL,'118'),(109068,'movie','Airheads','Airheads',1,1994,NULL,'92'),(109093,'movie','Amateur','Amateur',1,1994,NULL,'105'),(109127,'movie','Angels in the Outfield','Angels in the Outfield',1,1994,NULL,'102'),(109144,'movie','A.P.E.X.','A.P.E.X.',1,1994,NULL,'98'),(109198,'movie','Bad Girls','Bad Girls',1,1994,NULL,'99'),(109254,'movie','Beverly Hills Cop III','Beverly Hills Cop III',1,1994,NULL,'104'),(109275,'tvMovie','The Birds II: Land\'s End','The Birds II: Land\'s End',1,1994,NULL,'87'),(109277,'movie','Sailor Moon S: The Movie - Hearts in Ice','Gekijô-ban - Bishôjo senshi Sêrâ Mûn S',1,1994,NULL,'60'),(109279,'movie','Black Beauty','Black Beauty',1,1994,NULL,'88'),(109306,'movie','Blue Sky','Blue Sky',1,1994,NULL,'101'),(109327,'movie','Brainscan','Brainscan',1,1994,NULL,'96'),(109370,'movie','Canadian Bacon','Canadian Bacon',1,1995,NULL,'91'),(109424,'movie','Chungking Express','Chung Hing sam lam',1,1994,NULL,'102'),(109440,'movie','Fear City: A Family-Style Comedy','La cité de la peur',1,1994,NULL,'100'),(109444,'movie','Clear and Present Danger','Clear and Present Danger',1,1994,NULL,'141'),(109445,'movie','Clerks','Clerks',1,1994,NULL,'92'),(109446,'movie','The Client','The Client',1,1994,NULL,'119'),(109447,'movie','Clifford','Clifford',1,1994,NULL,'90'),(109456,'movie','Color of Night','Color of Night',1,1994,NULL,'121'),(109484,'movie','Corrina, Corrina','Corrina, Corrina',1,1994,NULL,'115'),(109504,'movie','Crooklyn','Crooklyn',1,1994,NULL,'115'),(109506,'movie','The Crow','The Crow',1,1994,NULL,'102'),(109520,'movie','D2: The Mighty Ducks','D2: The Mighty Ducks',1,1994,NULL,'106'),(109579,'movie','Death and the Maiden','Death and the Maiden',1,1994,NULL,'103'),(109642,'movie','Dolores Claiborne','Dolores Claiborne',1,1995,NULL,'132'),(109644,'tvMovie','Don\'t Drink the Water','Don\'t Drink the Water',1,1994,NULL,'92'),(109676,'movie','Drop Zone','Drop Zone',1,1994,NULL,'101'),(109686,'movie','Dumb and Dumber','Dumb and Dumber',1,1994,NULL,'107'),(109688,'movie','Ashes of Time','Dung che sai duk',1,1994,NULL,'100'),(109699,'movie','Numbered Days','Días contados',1,1994,NULL,'93'),(109707,'movie','Ed Wood','Ed Wood',1,1994,NULL,'127'),(109770,'movie','The Fantastic Four','The Fantastic Four',1,1994,NULL,'90'),(109791,'movie','Felidae','Felidae',1,1994,NULL,'82'),(109798,'movie','Revenge of the Musketeers','La fille de d\'Artagnan',1,1994,NULL,'125'),(109813,'movie','The Flintstones','The Flintstones',1,1994,NULL,'91'),(109830,'movie','Forrest Gump','Forrest Gump',1,1994,NULL,'142'),(109831,'movie','Four Weddings and a Funeral','Four Weddings and a Funeral',1,1994,NULL,'117'),(109849,'video','Fritänkaren','Fritänkaren',1,1994,NULL,'276'),(109900,'movie','Giorgino','Giorgino',1,1994,NULL,'177'),(109913,'movie','Go Fish','Go Fish',1,1994,NULL,'83'),(110005,'movie','Heavenly Creatures','Heavenly Creatures',1,1994,NULL,'99'),(110006,'movie','Heavyweights','Heavyweights',1,1995,NULL,'100'),(110008,'movie','Pom Poko','Heisei tanuki gassen ponpoko',1,1994,NULL,'119'),(110054,'movie','The New Legend of Shaolin','Hung Hei Kwun: Siu Lam ng zou',1,1994,NULL,'95'),(110074,'movie','The Hudsucker Proxy','The Hudsucker Proxy',1,1994,NULL,'111'),(110091,'movie','I Like It Like That','I Like It Like That',1,1994,NULL,'104'),(110099,'movie','I.Q.','I.Q.',1,1994,NULL,'100'),(110148,'movie','Interview with the Vampire: The Vampire Chronicles','Interview with the Vampire: The Vampire Chronicles',1,1994,NULL,'123'),(110167,'movie','It Could Happen to You','It Could Happen to You',1,1994,NULL,'101'),(110169,'movie','It\'s Pat: The Movie','It\'s Pat: The Movie',1,1994,NULL,'77'),(110171,'movie','I Can\'t Sleep','J\'ai pas sommeil',1,1994,NULL,'110'),(110236,'tvMovie','Kan du vissla Johanna?','Kan du vissla Johanna?',1,1994,NULL,'55'),(110297,'tvMovie','Lakota Woman: Siege at Wounded Knee','Lakota Woman: Siege at Wounded Knee',1,1994,NULL,'100'),(110308,'movie','The Last Seduction','The Last Seduction',1,1994,NULL,'110'),(110322,'movie','Legends of the Fall','Legends of the Fall',1,1994,NULL,'133'),(110357,'movie','The Lion King','The Lion King',1,1994,NULL,'88'),(110366,'movie','The Little Rascals','The Little Rascals',1,1994,NULL,'82'),(110367,'movie','Little Women','Little Women',1,1994,NULL,'115'),(110413,'movie','Léon: The Professional','Léon',1,1994,NULL,'110'),(110443,'movie','Major Payne','Major Payne',1,1995,NULL,'95'),(110475,'movie','The Mask','The Mask',1,1994,NULL,'101'),(110490,'movie','Men of War','Men of War',1,1994,NULL,'102'),(110521,'movie','Mina Tannenbaum','Mina Tannenbaum',1,1994,NULL,'128'),(110524,'movie','Getting Any?','Minnâ-yatteruka!',1,1994,NULL,'108'),(110527,'movie','Miracle on 34th Street','Miracle on 34th Street',1,1994,NULL,'114'),(110598,'movie','Muriel\'s Wedding','Muriel\'s Wedding',1,1994,NULL,'106'),(110622,'movie','Naked Gun 33 1/3: The Final Insult','Naked Gun 33 1/3: The Final Insult',1,1994,NULL,'83'),(110632,'movie','Natural Born Killers','Natural Born Killers',1,1994,NULL,'119'),(110657,'movie','The Next Karate Kid','The Next Karate Kid',1,1994,NULL,'107'),(110678,'movie','No Escape','No Escape',1,1994,NULL,'118'),(110722,'movie','Oleanna','Oleanna',1,1994,NULL,'89'),(110763,'movie','The Pagemaster','The Pagemaster',1,1994,NULL,'80'),(110805,'movie','Pentathlon','Pentathlon',1,1994,NULL,'101'),(110857,'movie','Police Academy: Mission to Moscow','Police Academy: Mission to Moscow',1,1994,NULL,'83'),(110889,'movie','Priest','Priest',1,1994,NULL,'105'),(110912,'movie','Pulp Fiction','Pulp Fiction',1,1994,NULL,'154'),(110932,'movie','Quiz Show','Quiz Show',1,1994,NULL,'133'),(110950,'movie','Reality Bites','Reality Bites',1,1994,NULL,'99'),(110955,'movie','The Ref','The Ref',1,1994,NULL,'97'),(110958,'movie','See How They Fall','Regarde les hommes tomber',1,1994,NULL,'90'),(110971,'movie','Renaissance Man','Renaissance Man',1,1994,NULL,'128'),(111001,'movie','The Road to Wellville','The Road to Wellville',1,1994,NULL,'118'),(111033,'tvEpisode','Runaway Daughters','Runaway Daughters',1,1994,NULL,'83'),(111070,'movie','The Santa Clause','The Santa Clause',1,1994,NULL,'97'),(111112,'movie','The Secret of Roan Inish','The Secret of Roan Inish',1,1994,NULL,'103'),(111127,'movie','Serial Mom','Serial Mom',1,1994,NULL,'95'),(111143,'movie','The Shadow','The Shadow',1,1994,NULL,'108'),(111161,'movie','The Shawshank Redemption','The Shawshank Redemption',1,1994,NULL,'142'),(111201,'movie','Sirens','Sirens',1,1994,NULL,'98'),(111205,'movie','Sister My Sister','Sister My Sister',1,1994,NULL,'89'),(111255,'movie','The Specialist','The Specialist',1,1994,NULL,'110'),(111257,'movie','Speed','Speed',1,1994,NULL,'116'),(111280,'movie','Star Trek: Generations','Star Trek: Generations',1,1994,NULL,'118'),(111282,'movie','Stargate','Stargate',1,1994,NULL,'116'),(111301,'movie','Street Fighter','Street Fighter',1,1994,NULL,'102'),(111333,'movie','The Swan Princess','The Swan Princess',1,1994,NULL,'93'),(111341,'movie','Satantango','Sátántangó',1,1994,NULL,'439'),(111359,'movie','Tall Tale','Tall Tale',1,1995,NULL,'96'),(111438,'movie','Timecop','Timecop',1,1994,NULL,'99'),(111470,'movie','Trading Mom','Trading Mom',1,1994,NULL,'85'),(111503,'movie','True Lies','True Lies',1,1994,NULL,'141'),(111507,'movie','Three Colors: White','Trois couleurs: Blanc',1,1994,NULL,'92'),(111512,'movie','The Legend of Drunken Master','Jui kuen II',1,1994,NULL,'102'),(111520,'tvMovie','Twilight Zone: Rod Serling\'s Lost Classics','Twilight Zone: Rod Serling\'s Lost Classics',1,1994,NULL,'89'),(111549,'movie','Uncovered','Uncovered',1,1994,NULL,'103'),(111640,'movie','Voll normaaal','Voll normaaal',1,1994,NULL,'91'),(111686,'movie','New Nightmare','Wes Craven\'s New Nightmare',1,1994,NULL,'112'),(111693,'movie','When a Man Loves a Woman','When a Man Loves a Woman',1,1994,NULL,'126'),(111751,'movie','Crows','Wrony',1,1994,NULL,'66'),(111797,'movie','Eat Drink Man Woman','Yin shi nan nu',1,1994,NULL,'124'),(111800,'movie','Wing Chun','Wing Chun',1,1994,NULL,'96'),(112040,'tvMiniSeries','The Langoliers','The Langoliers',1,1995,1995,'180'),(112130,'tvMiniSeries','Pride and Prejudice','Pride and Prejudice',1,1995,1995,'327'),(112281,'movie','Ace Ventura: When Nature Calls','Ace Ventura: When Nature Calls',1,1995,NULL,'90'),(112288,'movie','The Addiction','The Addiction',1,1995,NULL,'82'),(112346,'movie','The American President','The American President',1,1995,NULL,'114'),(112379,'movie','Antonia\'s Line','Antonia',1,1995,NULL,'102'),(112384,'movie','Apollo 13','Apollo 13',1,1995,NULL,'140'),(112386,'movie','The Apprentices','Les apprentis',1,1995,NULL,'95'),(112389,'movie','The Thief and the Cobbler','The Thief and the Cobbler',1,1993,NULL,'99'),(112401,'movie','Assassins','Assassins',1,1995,NULL,'133'),(112431,'movie','Babe','Babe',1,1995,NULL,'91'),(112435,'movie','The Baby-Sitters Club','The Baby-Sitters Club',1,1995,NULL,'94'),(112442,'movie','Bad Boys','Bad Boys',1,1995,NULL,'119'),(112453,'movie','Balto','Balto',1,1995,NULL,'78'),(112461,'movie','The Basketball Diaries','The Basketball Diaries',1,1995,NULL,'102'),(112462,'movie','Batman Forever','Batman Forever',1,1995,NULL,'121'),(112471,'movie','Before Sunrise','Before Sunrise',1,1995,NULL,'101'),(112508,'movie','Billy Madison','Billy Madison',1,1995,NULL,'89'),(112513,'movie','Sailor Moon SuperS: The Movie: Black Dream Hole','Bishôjo senshi Sêrâ Mûn super S: Sêrâ 9 senshi shûketsu! Burakku dorîmu hôru no kiseki',1,1995,NULL,'60'),(112571,'movie','Boys on the Side','Boys on the Side',1,1995,NULL,'115'),(112573,'movie','Braveheart','Braveheart',1,1995,NULL,'178'),(112579,'movie','The Bridges of Madison County','The Bridges of Madison County',1,1995,NULL,'135'),(112604,'movie','Butterfly Kiss','Butterfly Kiss',1,1995,NULL,'88'),(112641,'movie','Casino','Casino',1,1995,NULL,'178'),(112642,'movie','Casper','Casper',1,1995,NULL,'100'),(112651,'movie','The Celluloid Closet','The Celluloid Closet',1,1995,NULL,'102'),(112679,'movie','Circle of Friends','Circle of Friends',1,1995,NULL,'103'),(112682,'movie','The City of Lost Children','La cité des enfants perdus',1,1995,NULL,'112'),(112697,'movie','Clueless','Clueless',1,1995,NULL,'97'),(112701,'tvMovie','Cold Comfort Farm','Cold Comfort Farm',1,1995,NULL,'105'),(112715,'movie','Congo','Congo',1,1995,NULL,'109'),(112722,'movie','Copycat','Copycat',1,1995,NULL,'123'),(112740,'movie','Crimson Tide','Crimson Tide',1,1995,NULL,'116'),(112757,'movie','The Cure','The Cure',1,1995,NULL,'97'),(112760,'movie','Cutthroat Island','Cutthroat Island',1,1995,NULL,'124'),(112769,'movie','La Cérémonie','La cérémonie',1,1995,NULL,'111'),(112792,'movie','Dangerous Minds','Dangerous Minds',1,1995,NULL,'99'),(112818,'movie','Dead Man Walking','Dead Man Walking',1,1995,NULL,'122'),(112819,'movie','Dead Presidents','Dead Presidents',1,1995,NULL,'119'),(112851,'movie','Desperado','Desperado',1,1995,NULL,'104'),(112857,'movie','Devil in a Blue Dress','Devil in a Blue Dress',1,1995,NULL,'102'),(112864,'movie','Die Hard with a Vengeance','Die Hard with a Vengeance',1,1995,NULL,'128'),(112870,'movie','Dilwale Dulhania Le Jayenge','Dilwale Dulhania Le Jayenge',1,1995,NULL,'189'),(112896,'movie','Dracula: Dead and Loving It','Dracula: Dead and Loving It',1,1995,NULL,'88'),(112913,'movie','Fallen Angels','Do lok tin si',1,1995,NULL,'99'),(112922,'movie','The Day of the Beast','El día de la bestia',1,1995,NULL,'103'),(112950,'movie','Empire Records','Empire Records',1,1995,NULL,'90'),(112966,'movie','The Englishman Who Went Up a Hill But Came Down a Mountain','The Englishman Who Went Up a Hill But Came Down a Mountain',1,1995,NULL,'99'),(113071,'movie','First Knight','First Knight',1,1995,NULL,'134'),(113083,'movie','The Flower of My Secret','La flor de mi secreto',1,1995,NULL,'103'),(113101,'movie','Four Rooms','Four Rooms',1,1995,NULL,'98'),(113114,'movie','Free Willy 2: The Adventure Home','Free Willy 2: The Adventure Home',1,1995,NULL,'95'),(113117,'movie','French Kiss','French Kiss',1,1995,NULL,'111'),(113118,'movie','Friday','Friday',1,1995,NULL,'91'),(113188,'movie','Gold Diggers: The Secret of Bear Mountain','Gold Diggers: The Secret of Bear Mountain',1,1995,NULL,'94'),(113189,'movie','GoldenEye','GoldenEye',1,1995,NULL,'130'),(113198,'movie','A Goofy Movie','A Goofy Movie',1,1995,NULL,'78'),(113221,'movie','Grim','Grim',1,1996,NULL,'86'),(113228,'movie','Grumpier Old Men','Grumpier Old Men',1,1995,NULL,'101'),(113243,'movie','Hackers','Hackers',1,1995,NULL,'105'),(113247,'movie','La haine','La haine',1,1995,NULL,'98'),(113277,'movie','Heat','Heat',1,1995,NULL,'170'),(113305,'movie','Higher Learning','Higher Learning',1,1995,NULL,'128'),(113321,'movie','Home for the Holidays','Home for the Holidays',1,1995,NULL,'103'),(113326,'movie','Rumble in the Bronx','Hung fan kui',1,1995,NULL,'104'),(113347,'movie','How to Make an American Quilt','How to Make an American Quilt',1,1995,NULL,'117'),(113362,'movie','The Horseman on the Roof','Le hussard sur le toit',1,1995,NULL,'135'),(113409,'movie','In the Mouth of Madness','In the Mouth of Madness',1,1994,NULL,'95'),(113416,'movie','The Incredibly True Adventure of Two Girls in Love','The Incredibly True Adventure of Two Girls in Love',1,1995,NULL,'94'),(113442,'movie','It Takes Two','It Takes Two',1,1995,NULL,'101'),(113492,'movie','Judge Dredd','Judge Dredd',1,1995,NULL,'96'),(113497,'movie','Jumanji','Jumanji',1,1995,NULL,'104'),(113540,'movie','Kids','Kids',1,1995,NULL,'91'),(113568,'movie','Ghost in the Shell','Kôkaku kidôtai',1,1995,NULL,'83'),(113627,'movie','Leaving Las Vegas','Leaving Las Vegas',1,1995,NULL,'111'),(113649,'movie','Freedomfighters','Libertarias',1,1996,NULL,'125'),(113670,'movie','A Little Princess','A Little Princess',1,1995,NULL,'97'),(113725,'movie','Maborosi','Maboroshi no hikari',1,1995,NULL,'110'),(113737,'movie','Magic in the Water','Magic in the Water',1,1995,NULL,'98'),(113749,'movie','Mallrats','Mallrats',1,1995,NULL,'94'),(113820,'movie','Mighty Morphin Power Rangers','Mighty Morphin Power Rangers: The Movie',1,1995,NULL,'95'),(113824,'movie','Whisper of the Heart','Mimi wo sumaseba',1,1995,NULL,'111'),(113855,'movie','Mortal Kombat','Mortal Kombat',1,1995,NULL,'101'),(113862,'movie','Mr. Holland\'s Opus','Mr. Holland\'s Opus',1,1995,NULL,'143'),(113918,'movie','Nobody Will Speak of Us When We\'re Dead','Nadie hablará de nosotras cuando hayamos muerto',1,1995,NULL,'104'),(113957,'movie','The Net','The Net',1,1995,NULL,'114'),(113972,'movie','Nick of Time','Nick of Time',1,1995,NULL,'90'),(114011,'movie','Now and Then','Now and Then',1,1995,NULL,'102'),(114057,'movie','Othello','Othello',1,1995,NULL,'123'),(114069,'movie','Outbreak','Outbreak',1,1995,NULL,'127'),(114095,'movie','Party Girl','Party Girl',1,1995,NULL,'94'),(114108,'movie','The Pebble and the Penguin','The Pebble and the Penguin',1,1995,NULL,'74'),(114117,'tvEpisode','Persuasion','Persuasion',1,1995,NULL,'107'),(114129,'movie','Picture Bride','Picture Bride',1,1994,NULL,'94'),(114148,'movie','Pocahontas','Pocahontas',1,1995,NULL,'81'),(114151,'movie','Poison Ivy II','Poison Ivy II',1,1996,NULL,'106'),(114214,'movie','The Quick and the Dead','The Quick and the Dead',1,1995,NULL,'108'),(114287,'movie','Rob Roy','Rob Roy',1,1995,NULL,'139'),(114319,'movie','Sabrina','Sabrina',1,1995,NULL,'127'),(114323,'movie','Safe','Safe',1,1995,NULL,'119'),(114369,'movie','Se7en','Se7en',1,1995,NULL,'127'),(114388,'movie','Sense and Sensibility','Sense and Sensibility',1,1995,NULL,'136'),(114395,'tvMovie','Serving in Silence: The Margarethe Cammermeyer Story','Serving in Silence: The Margarethe Cammermeyer Story',1,1995,NULL,'91'),(114436,'movie','Showgirls','Showgirls',1,1995,NULL,'128'),(114508,'movie','Species','Species',1,1995,NULL,'108'),(114558,'movie','Strange Days','Strange Days',1,1995,NULL,'145'),(114614,'movie','Tank Girl','Tank Girl',1,1995,NULL,'104'),(114671,'movie','Land and Freedom','Land and Freedom',1,1995,NULL,'109'),(114682,'movie','To Wong Foo, Thanks for Everything! Julie Newmar','To Wong Foo Thanks for Everything, Julie Newmar',1,1995,NULL,'109'),(114689,'movie','Catnapped! The Movie','Totsuzen! Neko no kuni banipal witt',1,1995,NULL,'77'),(114694,'movie','Tommy Boy','Tommy Boy',1,1995,NULL,'97'),(114702,'movie','Total Eclipse','Total Eclipse',1,1995,NULL,'111'),(114709,'movie','Toy Story','Toy Story',1,1995,NULL,'81'),(114720,'video','Tremors II: Aftershocks','Tremors II: Aftershocks',1,1996,NULL,'100'),(114736,'video','True Crime','True Crime',1,1995,NULL,'94'),(114746,'movie','12 Monkeys','Twelve Monkeys',1,1995,NULL,'129'),(114787,'movie','Underground','Underground',1,1995,NULL,'170'),(114814,'movie','The Usual Suspects','The Usual Suspects',1,1995,NULL,'106'),(114852,'movie','Village of the Damned','Village of the Damned',1,1995,NULL,'98'),(114885,'movie','Waiting to Exhale','Waiting to Exhale',1,1995,NULL,'124'),(114898,'movie','Waterworld','Waterworld',1,1995,NULL,'135'),(114906,'movie','Welcome to the Dollhouse','Welcome to the Dollhouse',1,1995,NULL,'88'),(114916,'movie','When Night Is Falling','When Night Is Falling',1,1995,NULL,'94'),(114924,'movie','While You Were Sleeping','While You Were Sleeping',1,1995,NULL,'103'),(115133,'tvMiniSeries','Charlot og Charlotte','Charlot og Charlotte',1,1996,1996,NULL),(115433,'movie','101 Dalmatians','101 Dalmatians',1,1996,NULL,'103'),(115438,'movie','2 Days in the Valley','2 Days in the Valley',1,1996,NULL,'104'),(115462,'movie','Actresses','Actrius',1,1997,NULL,'100'),(115485,'movie','The Stunt Woman','Ah Kam',1,1996,NULL,'95'),(115491,'video','Aladdin and the King of Thieves','Aladdin and the King of Thieves',1,1996,NULL,'81'),(115580,'movie','The Associate','The Associate',1,1996,NULL,'114'),(115591,'movie','August','August',1,1996,NULL,'94'),(115624,'movie','Barb Wire','Barb Wire',1,1996,NULL,'98'),(115632,'movie','Basquiat','Basquiat',1,1996,NULL,'107'),(115639,'movie','Beautiful Girls','Beautiful Girls',1,1996,NULL,'112'),(115640,'movie','Beautiful Thing','Beautiful Thing',1,1996,NULL,'90'),(115641,'movie','Beavis and Butt-Head Do America','Beavis and Butt-Head Do America',1,1996,NULL,'81'),(115650,'movie','The Green Planet','La belle verte',1,1996,NULL,'99'),(115678,'movie','Big Night','Big Night',1,1996,NULL,'109'),(115685,'movie','The Birdcage','The Birdcage',1,1996,NULL,'117'),(115736,'movie','Bound','Bound',1,1996,NULL,'109'),(115744,'movie','Brassed Off','Brassed Off',1,1996,NULL,'108'),(115759,'movie','Broken Arrow','Broken Arrow',1,1996,NULL,'108'),(115798,'movie','The Cable Guy','The Cable Guy',1,1996,NULL,'96'),(115819,'movie','Cannibal! The Musical','Alferd Packer: The Musical',1,1993,NULL,'95'),(115856,'movie','When the Cat\'s Away','Chacun cherche son chat',1,1996,NULL,'91'),(115857,'movie','Chain Reaction','Chain Reaction',1,1996,NULL,'107'),(115956,'movie','Courage Under Fire','Courage Under Fire',1,1996,NULL,'116'),(115963,'movie','The Craft','The Craft',1,1996,NULL,'101'),(115964,'movie','Crash','Crash',1,1996,NULL,'100'),(115988,'movie','The Crucible','The Crucible',1,1996,NULL,'124'),(115994,'movie','Curdled','Curdled',1,1996,NULL,'88'),(116040,'movie','Daylight','Daylight',1,1996,NULL,'114'),(116041,'movie','The Daytrippers','The Daytrippers',1,1996,NULL,'87'),(116130,'movie','Down Periscope','Down Periscope',1,1996,NULL,'92'),(116136,'movie','DragonHeart','DragonHeart',1,1996,NULL,'103'),(116191,'movie','Emma','Emma',1,1996,NULL,'120'),(116209,'movie','The English Patient','The English Patient',1,1996,NULL,'162'),(116212,'movie','Entertaining Angels: The Dorothy Day Story','Entertaining Angels: The Dorothy Day Story',1,1996,NULL,'110'),(116213,'movie','Eraser','Eraser',1,1996,NULL,'115'),(116225,'movie','Escape from L.A.','Escape from L.A.',1,1996,NULL,'101'),(116250,'movie','Evita','Evita',1,1996,NULL,'135'),(116260,'movie','Eye for an Eye','Eye for an Eye',1,1996,NULL,'101'),(116277,'movie','The Fan','The Fan',1,1996,NULL,'116'),(116282,'movie','Fargo','Fargo',1,1996,NULL,'98'),(116287,'movie','Fear','Fear',1,1996,NULL,'97'),(116293,'movie','Female Perversions','Female Perversions',1,1996,NULL,'120'),(116308,'movie','Fire','Fire',1,1996,NULL,'108'),(116313,'movie','The First Wives Club','The First Wives Club',1,1996,NULL,'103'),(116329,'movie','Fly Away Home','Fly Away Home',1,1996,NULL,'107'),(116353,'movie','Foxfire','Foxfire',1,1996,NULL,'102'),(116361,'movie','Freeway','Freeway',1,1996,NULL,'102'),(116365,'movie','The Frighteners','The Frighteners',1,1996,NULL,'110'),(116367,'movie','From Dusk Till Dawn','From Dusk Till Dawn',1,1996,NULL,'108'),(116378,'movie','The Funeral','The Funeral',1,1996,NULL,'99'),(116418,'movie','Girls Town','Girls Town',1,1996,NULL,'90'),(116421,'movie','The Glimmer Man','The Glimmer Man',1,1996,NULL,'91'),(116426,'movie','The Cooking God','Sik san',1,1996,NULL,'88'),(116442,'movie','Grace of My Heart','Grace of My Heart',1,1996,NULL,'116'),(116477,'movie','Hamlet','Hamlet',1,1996,NULL,'242'),(116483,'movie','Happy Gilmore','Happy Gilmore',1,1996,NULL,'92'),(116493,'movie','Harriet the Spy','Harriet the Spy',1,1996,NULL,'100'),(116514,'movie','Hellraiser: Bloodline','Hellraiser: Bloodline',1,1996,NULL,'85'),(116552,'movie','Homeward Bound II: Lost in San Francisco','Homeward Bound II: Lost in San Francisco',1,1996,NULL,'88'),(116583,'movie','The Hunchback of Notre Dame','The Hunchback of Notre Dame',1,1996,NULL,'91'),(116594,'movie','I Shot Andy Warhol','I Shot Andy Warhol',1,1996,NULL,'103'),(116629,'movie','Independence Day','Independence Day',1,1996,NULL,'145'),(116650,'movie','Irma Vep','Irma Vep',1,1996,NULL,'99'),(116669,'movie','Jack','Jack',1,1996,NULL,'113'),(116683,'movie','James and the Giant Peach','James and the Giant Peach',1,1996,NULL,'79'),(116684,'movie','Jane Eyre','Jane Eyre',1,1996,NULL,'112'),(116692,'movie','Beyond Silence','Jenseits der Stille',1,1996,NULL,'109'),(116695,'movie','Jerry Maguire','Jerry Maguire',1,1996,NULL,'139'),(116705,'movie','Jingle All the Way','Jingle All the Way',1,1996,NULL,'89'),(116767,'movie','Kids Return','Kizzu ritân',1,1996,NULL,'107'),(116770,'movie','Killer Tongue','La lengua asesina',1,1996,NULL,'100'),(116778,'movie','Kingpin','Kingpin',1,1996,NULL,'114'),(116830,'movie','Last Man Standing','Last Man Standing',1,1996,NULL,'101'),(116905,'movie','Lone Star','Lone Star',1,1996,NULL,'135'),(116908,'movie','The Long Kiss Goodnight','The Long Kiss Goodnight',1,1996,NULL,'121'),(116922,'movie','Lost Highway','Lost Highway',1,1997,NULL,'134'),(116931,'movie','Love and Other Catastrophes','Love and Other Catastrophes',1,1996,NULL,'76'),(116932,'movie','Love, etc.','Love, etc.',1,1996,NULL,'105'),(116985,'movie','Manny & Lo','Manny & Lo',1,1996,NULL,'88'),(116996,'movie','Mars Attacks!','Mars Attacks!',1,1996,NULL,'106'),(116999,'movie','Marvin\'s Room','Marvin\'s Room',1,1996,NULL,'98'),(117008,'movie','Matilda','Matilda',1,1996,NULL,'98'),(117038,'movie','Michael','Michael',1,1996,NULL,'105'),(117039,'movie','Michael Collins','Michael Collins',1,1996,NULL,'133'),(117056,'movie','The Mirror','Ayneh',1,1997,NULL,'95'),(117057,'movie','The Mirror Has Two Faces','The Mirror Has Two Faces',1,1996,NULL,'126'),(117060,'movie','Mission: Impossible','Mission: Impossible',1,1996,NULL,'110'),(117091,'movie','Mother','Mother',1,1996,NULL,'104'),(117093,'movie','Mother Night','Mother Night',1,1996,NULL,'114'),(117102,'movie','Mr. Wrong','Mr. Wrong',1,1996,NULL,'96'),(117110,'movie','Muppet Treasure Island','Muppet Treasure Island',1,1996,NULL,'99'),(117128,'movie','Mystery Science Theater 3000: The Movie','Mystery Science Theater 3000: The Movie',1,1996,NULL,'73'),(117331,'movie','The Phantom','The Phantom',1,1996,NULL,'100'),(117372,'movie','The Preacher\'s Wife','The Preacher\'s Wife',1,1996,NULL,'123'),(117381,'movie','Primal Fear','Primal Fear',1,1996,NULL,'129'),(117407,'movie','Pusher','Pusher',1,1996,NULL,'110'),(117420,'movie','The Quest','The Quest',1,1996,NULL,'95'),(117468,'movie','Retroactive','Retroactive',1,1997,NULL,'91'),(117477,'movie','Ridicule','Ridicule',1,1996,NULL,'102'),(117500,'movie','The Rock','The Rock',1,1996,NULL,'136'),(117509,'movie','Romeo + Juliet','Romeo + Juliet',1,1996,NULL,'120'),(117534,'tvMovie','Sabrina the Teenage Witch','Sabrina the Teenage Witch',1,1996,NULL,'91'),(117571,'movie','Scream','Scream',1,1996,NULL,'111'),(117589,'movie','Secrets & Lies','Secrets & Lies',1,1996,NULL,'136'),(117603,'movie','Set It Off','Set It Off',1,1996,NULL,'123'),(117665,'movie','Sleepers','Sleepers',1,1996,NULL,'147'),(117705,'movie','Space Jam','Space Jam',1,1996,NULL,'88'),(117718,'movie','The Spitfire Grill','The Spitfire Grill',1,1996,NULL,'117'),(117723,'movie','Spy Hard','Spy Hard',1,1996,NULL,'81'),(117731,'movie','Star Trek: First Contact','Star Trek: First Contact',1,1996,NULL,'111'),(117737,'movie','Stealing Beauty','Stealing Beauty',1,1996,NULL,'118'),(117765,'movie','Striptease','Striptease',1,1996,NULL,'115'),(117797,'movie','Swallowtail Butterfly','Suwarôteiru',1,1996,NULL,'148'),(117802,'movie','Swingers','Swingers',1,1996,NULL,'96'),(117876,'movie','Tenchi the Movie - Tenchi Muyo in Love','Tenchi Muyô! In Love',1,1996,NULL,'95'),(117887,'movie','That Thing You Do!','That Thing You Do!',1,1996,NULL,'108'),(117918,'movie','Tin Cup','Tin Cup',1,1996,NULL,'135'),(117951,'movie','Trainspotting','Trainspotting',1,1996,NULL,'93'),(117968,'movie','Three Lives and Only One Death','Trois vies et une seule mort',1,1996,NULL,'123'),(117979,'movie','The Truth About Cats & Dogs','The Truth About Cats & Dogs',1,1996,NULL,'97'),(117991,'movie','Twelfth Night','Twelfth Night or What You Will',1,1996,NULL,'134'),(117998,'movie','Twister','Twister',1,1996,NULL,'113'),(118015,'movie','Family Resemblances','Un air de famille',1,1996,NULL,'110'),(118105,'movie','Va\' dove ti porta il cuore','Va\' dove ti porta il cuore',1,1996,NULL,'110'),(118111,'movie','Waiting for Guffman','Waiting for Guffman',1,1996,NULL,'84'),(118113,'movie','Walking and Talking','Walking and Talking',1,1996,NULL,'86'),(118125,'movie','The Watermelon Woman','The Watermelon Woman',1,1996,NULL,'90'),(118414,'tvMiniSeries','The Odyssey','The Odyssey',1,1997,1997,'176'),(118550,'movie','Le acrobate','Le acrobate',1,1997,NULL,'123'),(118570,'movie','Air Bud','Air Bud',1,1997,NULL,'98'),(118571,'movie','Air Force One','Air Force One',1,1997,NULL,'124'),(118583,'movie','Alien: Resurrection','Alien Resurrection',1,1997,NULL,'109'),(118589,'movie','Glitter','Glitter',1,2001,NULL,'104'),(118604,'movie','An American Werewolf in Paris','An American Werewolf in Paris',1,1997,NULL,'98'),(118607,'movie','Amistad','Amistad',1,1997,NULL,'155'),(118615,'movie','Anaconda','Anaconda',1,1997,NULL,'89'),(118617,'movie','Anastasia','Anastasia',1,1997,NULL,'94'),(118636,'movie','Apt Pupil','Apt Pupil',1,1998,NULL,'111'),(118655,'movie','Austin Powers: International Man of Mystery','Austin Powers: International Man of Mystery',1,1997,NULL,'94'),(118661,'movie','The Avengers','The Avengers',1,1998,NULL,'89'),(118688,'movie','Batman & Robin','Batman & Robin',1,1997,NULL,'125'),(118694,'movie','In the Mood for Love','Fa yeung nin wah',1,2000,NULL,'98'),(118715,'movie','The Big Lebowski','The Big Lebowski',1,1998,NULL,'117'),(118749,'movie','Boogie Nights','Boogie Nights',1,1997,NULL,'155'),(118755,'movie','The Borrowers','The Borrowers',1,1997,NULL,'89'),(118789,'movie','Buffalo \'66','Buffalo \'66',1,1998,NULL,'110'),(118799,'movie','Life Is Beautiful','La vita è bella',1,1997,NULL,'116'),(118818,'movie','Career Girls','Career Girls',1,1997,NULL,'83'),(118819,'movie','Live Flesh','Carne trémula',1,1997,NULL,'103'),(118826,'movie','The Castle','The Castle',1,1997,NULL,'85'),(118829,'movie','Cats Don\'t Dance','Cats Don\'t Dance',1,1997,NULL,'75'),(118842,'movie','Chasing Amy','Chasing Amy',1,1997,NULL,'113'),(118843,'movie','Black Cat, White Cat','Crna macka, beli macor',1,1998,NULL,'127'),(118845,'movie','Happy Together','Chun gwong cha sit',1,1997,NULL,'96'),(118849,'movie','Children of Heaven','Bacheha-Ye aseman',1,1997,NULL,'89'),(118866,'movie','Clockwatchers','Clockwatchers',1,1997,NULL,'96'),(118880,'movie','Con Air','Con Air',1,1997,NULL,'115'),(118883,'movie','Conspiracy Theory','Conspiracy Theory',1,1997,NULL,'135'),(118884,'movie','Contact','Contact',1,1997,NULL,'150'),(118887,'movie','Cop Land','Cop Land',1,1997,NULL,'105'),(118892,'movie','Dangerous Beauty','Dangerous Beauty',1,1998,NULL,'111'),(118906,'movie','Csinibaba','Csinibaba',1,1997,NULL,'100'),(118928,'movie','Dante\'s Peak','Dante\'s Peak',1,1997,NULL,'108'),(118929,'movie','Dark City','Dark City',1,1998,NULL,'100'),(118971,'movie','The Devil\'s Advocate','The Devil\'s Advocate',1,1997,NULL,'144'),(119008,'movie','Donnie Brasco','Donnie Brasco',1,1997,NULL,'127'),(119038,'movie','Le Dîner de Cons','Le dîner de cons',1,1998,NULL,'80'),(119080,'movie','Eve\'s Bayou','Eve\'s Bayou',1,1997,NULL,'108'),(119081,'movie','Event Horizon','Event Horizon',1,1997,NULL,'96'),(119094,'movie','Face/Off','Face/Off',1,1997,NULL,'138'),(119114,'movie','Fever Pitch','Fever Pitch',1,1997,NULL,'102'),(119115,'movie','Fierce Creatures','Fierce Creatures',1,1997,NULL,'93'),(119116,'movie','The Fifth Element','The Fifth Element',1,1997,NULL,'126'),(119137,'movie','Flubber','Flubber',1,1997,NULL,'93'),(119142,'movie','For Richer or Poorer','For Richer or Poorer',1,1997,NULL,'115'),(119152,'movie','Free Willy 3: The Rescue','Free Willy 3: The Rescue',1,1997,NULL,'86'),(119164,'movie','The Full Monty','The Full Monty',1,1997,NULL,'91'),(119167,'movie','Funny Games','Funny Games',1,1997,NULL,'108'),(119173,'movie','G.I. Jane','G.I. Jane',1,1997,NULL,'125'),(119174,'movie','The Game','The Game',1,1997,NULL,'129'),(119177,'movie','Gattaca','GATTACA',1,1997,NULL,'106'),(119190,'movie','George of the Jungle','George of the Jungle',1,1997,NULL,'92'),(119204,'movie','The Glassblower\'s Children','Glasblåsarns barn',1,1998,NULL,'110'),(119215,'movie','Good Burger','Good Burger',1,1997,NULL,'95'),(119217,'movie','Good Will Hunting','Good Will Hunting',1,1997,NULL,'126'),(119223,'movie','Great Expectations','Great Expectations',1,1998,NULL,'111'),(119227,'movie','Snow White: A Tale of Terror','Snow White: A Tale of Terror',1,1997,NULL,'100'),(119229,'movie','Grosse Pointe Blank','Grosse Pointe Blank',1,1997,NULL,'107'),(119237,'movie','Gummo','Gummo',1,1997,NULL,'89'),(119250,'movie','Fireworks','Hana-bi',1,1997,NULL,'103'),(119256,'movie','Hard Eight','Sydney',1,1996,NULL,'102'),(119280,'movie','Mrs. Brown','Mrs Brown',1,1997,NULL,'101'),(119282,'movie','Hercules','Hercules',1,1997,NULL,'93'),(119303,'movie','Home Alone 3','Home Alone 3',1,1997,NULL,'102'),(119313,'movie','Hope Floats','Hope Floats',1,1998,NULL,'114'),(119324,'movie','The House of Yes','The House of Yes',1,1997,NULL,'85'),(119336,'movie','Hurlyburly','Hurlyburly',1,1998,NULL,'122'),(119345,'movie','I Know What You Did Last Summer','I Know What You Did Last Summer',1,1997,NULL,'101'),(119360,'movie','In & Out','In & Out',1,1997,NULL,'90'),(119361,'movie','In the Company of Men','In the Company of Men',1,1997,NULL,'97'),(119369,'tvMovie','The Inheritance','The Inheritance',1,1997,NULL,'95'),(119396,'movie','Jackie Brown','Jackie Brown',1,1997,NULL,'154'),(119432,'movie','Jungle 2 Jungle','Jungle 2 Jungle',1,1997,NULL,'105'),(119468,'movie','Kiss the Girls','Kiss the Girls',1,1997,NULL,'115'),(119472,'movie','Knockin\' on Heaven\'s Door','Knockin\' on Heaven\'s Door',1,1997,NULL,'87'),(119488,'movie','L.A. Confidential','L.A. Confidential',1,1997,NULL,'138'),(119517,'movie','Your Friends and Neighbors','Your Friends and Neighbors',1,1998,NULL,'100'),(119528,'movie','Liar Liar','Liar Liar',1,1997,NULL,'86'),(119535,'movie','A Life Less Ordinary','A Life Less Ordinary',1,1997,NULL,'103'),(119558,'movie','Lolita','Lolita',1,1997,NULL,'137'),(119567,'movie','The Lost World: Jurassic Park','The Lost World: Jurassic Park',1,1997,NULL,'129'),(119590,'movie','Ma vie en rose','Ma vie en rose',1,1997,NULL,'88'),(119643,'movie','Meet Joe Black','Meet Joe Black',1,1998,NULL,'178'),(119654,'movie','Men in Black','Men in Black',1,1997,NULL,'98'),(119698,'movie','Princess Mononoke','Mononoke-hime',1,1997,NULL,'134'),(119699,'movie','Montana','Montana',1,1998,NULL,'96'),(119707,'movie','Mortal Kombat: Annihilation','Mortal Kombat: Annihilation',1,1997,NULL,'95'),(119723,'movie','Mrs Dalloway','Mrs Dalloway',1,1997,NULL,'97'),(119731,'movie','Murder at 1600','Murder at 1600',1,1997,NULL,'107'),(119738,'movie','My Best Friend\'s Wedding','My Best Friend\'s Wedding',1,1997,NULL,'105'),(119778,'movie','Next Stop Wonderland','Next Stop Wonderland',1,1998,NULL,'104'),(119784,'movie','The Night Flier','The Night Flier',1,1997,NULL,'97'),(119809,'movie','Nowhere','Nowhere',1,1997,NULL,'82'),(119822,'movie','As Good as It Gets','As Good as It Gets',1,1997,NULL,'139'),(119859,'movie','Paradise Road','Paradise Road',1,1997,NULL,'122'),(119874,'movie','The Peacemaker','The Peacemaker',1,1997,NULL,'124'),(119891,'movie','Phantoms','Phantoms',1,1998,NULL,'96'),(119896,'movie','Picture Perfect','Picture Perfect',1,1997,NULL,'101'),(119918,'video','Pooh\'s Grand Adventure: The Search for Christopher Robin','Pooh\'s Grand Adventure: The Search for Christopher Robin',1,1997,NULL,'76'),(119925,'movie','The Postman','The Postman',1,1997,NULL,'177'),(119942,'movie','Primary Colors','Primary Colors',1,1998,NULL,'143'),(120032,'movie','Romy and Michele\'s High School Reunion','Romy and Michele\'s High School Reunion',1,1997,NULL,'92'),(120082,'movie','Scream 2','Scream 2',1,1997,NULL,'120'),(120089,'tvMovie','The Killing Secret','The Killing Secret',1,1997,NULL,'86'),(120094,'movie','Selena','Selena',1,1997,NULL,'127'),(120102,'movie','Seven Years in Tibet','Seven Years in Tibet',1,1997,NULL,'136'),(120108,'movie','The Proposition','The Proposition',1,1998,NULL,'110'),(120131,'video','The Lion King II: Simba\'s Pride','The Lion King II: Simba\'s Pride',1,1998,NULL,'81'),(120133,'movie','A Simple Wish','A Simple Wish',1,1997,NULL,'89'),(120148,'movie','Sliding Doors','Sliding Doors',1,1998,NULL,'99'),(120152,'movie','Smilla\'s Sense of Snow','Smilla\'s Sense of Snow',1,1997,NULL,'121'),(120169,'movie','Soul Food','Soul Food',1,1997,NULL,'115'),(120177,'movie','Spawn','Spawn',1,1997,NULL,'96'),(120184,'movie','Sphere','Sphere',1,1998,NULL,'134'),(120185,'movie','Spice World','Spice World',1,1997,NULL,'93'),(120201,'movie','Starship Troopers','Starship Troopers',1,1997,NULL,'129'),(120207,'movie','Steel','Steel',1,1997,NULL,'97'),(120265,'movie','Taste of Cherry','Ta\'m e guilass',1,1997,NULL,'95'),(120274,'movie','Tango','Tango',1,1998,NULL,'115'),(120321,'movie','Smoke Signals','Smoke Signals',1,1998,NULL,'89'),(120338,'movie','Titanic','Titanic',1,1997,NULL,'194'),(120347,'movie','Tomorrow Never Dies','Tomorrow Never Dies',1,1997,NULL,'119'),(120363,'movie','Toy Story 2','Toy Story 2',1,1999,NULL,'92'),(120382,'movie','The Truman Show','The Truman Show',1,1998,NULL,'103'),(120389,'movie','Turbo: A Power Rangers Movie','Turbo: A Power Rangers Movie',1,1997,NULL,'99'),(120434,'movie','Vegas Vacation','Vegas Vacation',1,1997,NULL,'93'),(120449,'movie','The Dreamlife of Angels','La vie rêvée des anges',1,1998,NULL,'113'),(120458,'movie','Virus','Virus',1,1999,NULL,'99'),(120461,'movie','Volcano','Volcano',1,1997,NULL,'104'),(120484,'movie','The Waterboy','The Waterboy',1,1998,NULL,'90'),(120493,'movie','The Well','The Well',1,1997,NULL,'101'),(120512,'movie','Wild America','Wild America',1,1997,NULL,'106'),(120514,'movie','Wilde','Wilde',1,1997,NULL,'118'),(120521,'movie','The Winter Guest','The Winter Guest',1,1997,NULL,'108'),(120533,'movie','Celebrity','Celebrity',1,1998,NULL,'113'),(120536,'movie','The Wrong Guy','The Wrong Guy',1,1997,NULL,'92'),(120577,'movie','54','54',1,1998,NULL,'93'),(120586,'movie','American History X','American History X',1,1998,NULL,'119'),(120587,'movie','Antz','Antz',1,1998,NULL,'83'),(120591,'movie','Armageddon','Armageddon',1,1998,NULL,'151'),(120601,'movie','Being John Malkovich','Being John Malkovich',1,1999,NULL,'113'),(120603,'movie','Beloved','Beloved',1,1998,NULL,'172'),(120611,'movie','Blade','Blade',1,1998,NULL,'120'),(120613,'movie','A Walk on the Moon','A Walk on the Moon',1,1999,NULL,'107'),(120616,'movie','The Mummy','The Mummy',1,1999,NULL,'124'),(120620,'movie','Brokedown Palace','Brokedown Palace',1,1999,NULL,'100'),(120623,'movie','A Bug\'s Life','A Bug\'s Life',1,1998,NULL,'95'),(120630,'movie','Chicken Run','Chicken Run',1,2000,NULL,'84'),(120631,'movie','Ever After: A Cinderella Story','Ever After',1,1998,NULL,'121'),(120632,'movie','City of Angels','City of Angels',1,1998,NULL,'114'),(120643,'movie','Dancing at Lughnasa','Dancing at Lughnasa',1,1998,NULL,'95'),(120646,'movie','The Deep End of the Ocean','The Deep End of the Ocean',1,1999,NULL,'106'),(120647,'movie','Deep Impact','Deep Impact',1,1998,NULL,'120'),(120655,'movie','Dogma','Dogma',1,1999,NULL,'130'),(120657,'movie','The 13th Warrior','The 13th Warrior',1,1999,NULL,'102'),(120660,'movie','Enemy of the State','Enemy of the State',1,1998,NULL,'132'),(120663,'movie','Eyes Wide Shut','Eyes Wide Shut',1,1999,NULL,'159'),(120667,'movie','Fantastic Four','Fantastic Four',1,2005,NULL,'106'),(120669,'movie','Fear and Loathing in Las Vegas','Fear and Loathing in Las Vegas',1,1998,NULL,'118'),(120679,'movie','Frida','Frida',1,2002,NULL,'123'),(120681,'movie','From Hell','From Hell',1,2001,NULL,'122'),(120685,'movie','Godzilla','Godzilla',1,1998,NULL,'139'),(120686,'movie','Stepmom','Stepmom',1,1998,NULL,'125'),(120689,'movie','The Green Mile','The Green Mile',1,1999,NULL,'189'),(120692,'movie','Strike!','Strike!',1,1998,NULL,'97'),(120694,'movie','Halloween H20: 20 Years Later','Halloween H20: 20 Years Later',1,1998,NULL,'86'),(120696,'movie','Hard Rain','Hard Rain',1,1998,NULL,'97'),(120728,'movie','The Last Days of Disco','The Last Days of Disco',1,1998,NULL,'113'),(120735,'movie','Lock, Stock and Two Smoking Barrels','Lock, Stock and Two Smoking Barrels',1,1998,NULL,'107'),(120737,'movie','The Lord of the Rings: The Fellowship of the Ring','The Lord of the Rings: The Fellowship of the Ring',1,2001,NULL,'178'),(120738,'movie','Lost in Space','Lost in Space',1,1998,NULL,'130'),(120744,'movie','The Man in the Iron Mask','The Man in the Iron Mask',1,1998,NULL,'132'),(120746,'movie','The Mask of Zorro','The Mask of Zorro',1,1998,NULL,'136'),(120749,'movie','Mercury Rising','Mercury Rising',1,1998,NULL,'111'),(120755,'movie','Mission: Impossible II','Mission: Impossible II',1,2000,NULL,'123'),(120756,'tvMiniSeries','Moby Dick','Moby Dick',1,1998,1998,'180'),(120762,'movie','Mulan','Mulan',1,1998,NULL,'87'),(120768,'movie','The Negotiator','The Negotiator',1,1998,NULL,'140'),(120777,'movie','The Opposite of Sex','The Opposite of Sex',1,1998,NULL,'105'),(120780,'movie','Out of Sight','Out of Sight',1,1998,NULL,'123'),(120783,'movie','The Parent Trap','The Parent Trap',1,1998,NULL,'128'),(120784,'movie','Payback','Payback',1,1999,NULL,'100'),(120787,'movie','A Perfect Murder','A Perfect Murder',1,1998,NULL,'107'),(120789,'movie','Pleasantville','Pleasantville',1,1998,NULL,'124'),(120791,'movie','Practical Magic','Practical Magic',1,1998,NULL,'104'),(120794,'movie','The Prince of Egypt','The Prince of Egypt',1,1998,NULL,'99'),(120800,'movie','Quest for Camelot','Quest for Camelot',1,1998,NULL,'86'),(120802,'movie','The Red Violin','Le violon rouge',1,1998,NULL,'130'),(120804,'movie','Resident Evil','Resident Evil',1,2002,NULL,'100'),(120812,'movie','Rush Hour','Rush Hour',1,1998,NULL,'98'),(120813,'movie','Safe Men','Safe Men',1,1998,NULL,'88'),(120815,'movie','Saving Private Ryan','Saving Private Ryan',1,1998,NULL,'169'),(120828,'movie','Six Days Seven Nights','Six Days Seven Nights',1,1998,NULL,'102'),(120831,'movie','Slums of Beverly Hills','Slums of Beverly Hills',1,1998,NULL,'91'),(120832,'movie','Snake Eyes','Snake Eyes',1,1998,NULL,'98'),(120841,'movie','Species II','Species II',1,1998,NULL,'93'),(120844,'movie','Star Trek: Insurrection','Star Trek: Insurrection',1,1998,NULL,'103'),(120855,'movie','Tarzan','Tarzan',1,1999,NULL,'88'),(120857,'movie','Tea with Mussolini','Un tè con Mussolini',1,1999,NULL,'117'),(120863,'movie','The Thin Red Line','The Thin Red Line',1,1998,NULL,'170'),(120866,'movie','Titus','Titus',1,1999,NULL,'162'),(120877,'movie','Vampires','Vampires',1,1998,NULL,'108'),(120879,'movie','Velvet Goldmine','Velvet Goldmine',1,1998,NULL,'118'),(120888,'movie','The Wedding Singer','The Wedding Singer',1,1998,NULL,'97'),(120889,'movie','What Dreams May Come','What Dreams May Come',1,1998,NULL,'113'),(120890,'movie','Wild Things','Wild Things',1,1998,NULL,'108'),(120891,'movie','Wild Wild West','Wild Wild West',1,1999,NULL,'106'),(120902,'movie','The X Files','The X Files',1,1998,NULL,'121'),(120903,'movie','X-Men','X-Men',1,2000,NULL,'104'),(120907,'movie','eXistenZ','eXistenZ',1,1999,NULL,'97'),(120910,'movie','Fantasia 2000','Fantasia 2000',1,1999,NULL,'75'),(120912,'movie','Men in Black II','Men in Black II',1,2002,NULL,'88'),(120913,'movie','Titan A.E.','Titan A.E.',1,2000,NULL,'94'),(120915,'movie','Star Wars: Episode I - The Phantom Menace','Star Wars: Episode I - The Phantom Menace',1,1999,NULL,'136'),(120917,'movie','The Emperor\'s New Groove','The Emperor\'s New Groove',1,2000,NULL,'78'),(121164,'movie','Corpse Bride','Corpse Bride',1,2005,NULL,'77'),(121401,'movie','Indira','Indira',1,1995,NULL,'143'),(121403,'tvMovie','The Stationmaster Meets His Match','Indul a bakterház',1,1980,NULL,'66'),(121765,'movie','Star Wars: Episode II - Attack of the Clones','Star Wars: Episode II - Attack of the Clones',1,2002,NULL,'142'),(121766,'movie','Star Wars: Episode III - Revenge of the Sith','Star Wars: Episode III - Revenge of the Sith',1,2005,NULL,'140'),(122151,'movie','Lethal Weapon 4','Lethal Weapon 4',1,1998,NULL,'127'),(122459,'movie','Return to Me','Return to Me',1,2000,NULL,'115'),(122648,'movie','Hardboiled Egg','Ovosodo',1,1997,NULL,'100'),(122690,'movie','Ronin','Ronin',1,1998,NULL,'122'),(122718,'movie','Small Soldiers','Small Soldiers',1,1998,NULL,'108'),(122933,'movie','Analyze This','Analyze This',1,1999,NULL,'103'),(123209,'movie','The Other Sister','The Other Sister',1,1999,NULL,'129'),(123755,'movie','Cube','Cube',1,1997,NULL,'90'),(123865,'tvMovie','Gia','Gia',1,1998,NULL,'120'),(123948,'movie','Cure','Cure',1,1997,NULL,'111'),(123987,'movie','Madeline','Madeline',1,1998,NULL,'88'),(124298,'movie','Blast from the Past','Blast from the Past',1,1999,NULL,'112'),(124315,'movie','The Cider House Rules','The Cider House Rules',1,1999,NULL,'126'),(124317,'tvMovie','Clover','Clover',1,1997,NULL,'92'),(124595,'movie','Return to Paradise','Return to Paradise',1,1998,NULL,'111'),(124819,'movie','Orgazmo','Orgazmo',1,1997,NULL,'94'),(124829,'tvEpisode','Pat and Margaret','Pat and Margaret',1,1994,NULL,'84'),(124901,'movie','Thursday','Thursday',1,1998,NULL,'87'),(125022,'movie','Heartbreakers','Heartbreakers',1,2001,NULL,'123'),(125209,'movie','I Think I Do','I Think I Do',1,1997,NULL,'90'),(125439,'movie','Notting Hill','Notting Hill',1,1999,NULL,'124'),(125659,'movie','Open Your Eyes','Abre los ojos',1,1997,NULL,'119'),(125664,'movie','Man on the Moon','Man on the Moon',1,1999,NULL,'118'),(126004,'movie','The Iron Rose','La rose de fer',1,1973,NULL,'86'),(126029,'movie','Shrek','Shrek',1,2001,NULL,'90'),(126604,'movie','Pecker','Pecker',1,1998,NULL,'87'),(126774,'tvMovie','The Advocate\'s Devil','The Advocate\'s Devil',1,1997,NULL,'89'),(126886,'movie','Election','Election',1,1999,NULL,'103'),(126916,'movie','For Love of the Game','For Love of the Game',1,1999,NULL,'137'),(127296,'movie','Splendor','Splendor',1,1999,NULL,'93'),(127302,'movie','The Sticky Fingers of Time','The Sticky Fingers of Time',1,1997,NULL,'81'),(127536,'movie','Elizabeth','Elizabeth',1,1998,NULL,'124'),(127723,'movie','Can\'t Hardly Wait','Can\'t Hardly Wait',1,1998,NULL,'100'),(127948,'short','The Devilish Tenant','Le locataire diabolique',1,1909,NULL,'6'),(128442,'movie','Rounders','Rounders',1,1998,NULL,'121'),(128445,'movie','Rushmore','Rushmore',1,1998,NULL,'93'),(128853,'movie','You\'ve Got Mail','You\'ve Got Mail',1,1998,NULL,'119'),(128996,'tvMovie','Cinderella','Cinderella',1,1997,NULL,'88'),(129023,'movie','Dark Harbor','Dark Harbor',1,1998,NULL,'96'),(129167,'movie','The Iron Giant','The Iron Giant',1,1999,NULL,'86'),(129290,'movie','Patch Adams','Patch Adams',1,1998,NULL,'115'),(129332,'movie','Ravenous','Ravenous',1,1999,NULL,'101'),(129387,'movie','There\'s Something About Mary','There\'s Something About Mary',1,1998,NULL,'119'),(129924,'video','FernGully 2: The Magical Rescue','FernGully 2: The Magical Rescue',1,1998,NULL,'75'),(130018,'movie','I Still Know What You Did Last Summer','I Still Know What You Did Last Summer',1,1998,NULL,'100'),(130141,'movie','The Cat Has Nine Lives','Neun Leben hat die Katze',1,1968,NULL,'91'),(130236,'movie','Samurai Cop','Samurai Cop',1,1991,NULL,'96'),(130444,'movie','Aimee & Jaguar','Aimée & Jaguar',1,1999,NULL,'125'),(130623,'movie','Dinosaur','Dinosaur',1,2000,NULL,'82'),(130827,'movie','Run Lola Run','Lola rennt',1,1998,NULL,'81'),(131325,'movie','Bowfinger','Bowfinger',1,1999,NULL,'97'),(131335,'movie','Canoa: A Shameful Memory','Canoa',1,1976,NULL,'115'),(131369,'movie','Edtv','Edtv',1,1999,NULL,'122'),(131620,'tvEpisode','Tower of Terror','Tower of Terror',1,1997,NULL,'89'),(131646,'movie','Wing Commander','Wing Commander',1,1999,NULL,'100'),(131857,'movie','BASEketball','BASEketball',1,1998,NULL,'103'),(131934,'short','Bluebeard','Barbe-bleue',1,1901,NULL,'12'),(132134,'short','The Execution of Mary, Queen of Scots','The Execution of Mary, Queen of Scots',1,1895,NULL,'1'),(132347,'movie','Mystery Men','Mystery Men',1,1999,NULL,'121'),(132477,'movie','October Sky','October Sky',1,1999,NULL,'108'),(133046,'movie','Teaching Mrs. Tingle','Teaching Mrs. Tingle',1,1999,NULL,'96'),(133093,'movie','The Matrix','The Matrix',1,1999,NULL,'136'),(133152,'movie','Planet of the Apes','Planet of the Apes',1,2001,NULL,'120'),(133189,'movie','SLC Punk!','SLC Punk!',1,1998,NULL,'97'),(133240,'movie','Treasure Planet','Treasure Planet',1,2002,NULL,'95'),(133385,'movie','Asterix and Obelix vs. Caesar','Astérix & Obélix contre César',1,1999,NULL,'109'),(133751,'movie','The Faculty','The Faculty',1,1998,NULL,'104'),(134067,'movie','The Rugrats Movie','The Rugrats Movie',1,1998,NULL,'79'),(134084,'movie','Scream 3','Scream 3',1,2000,NULL,'116'),(134119,'movie','The Talented Mr. Ripley','The Talented Mr. Ripley',1,1999,NULL,'139'),(134230,'movie','Zimmer Feri','Zimmer Feri',1,1998,NULL,'97'),(134273,'movie','8MM','8MM',1,1999,NULL,'123'),(134619,'movie','Disturbing Behavior','Disturbing Behavior',1,1998,NULL,'84'),(134847,'movie','Pitch Black','Pitch Black',1,2000,NULL,'109'),(134928,'movie','Spiral','Rasen',1,1998,NULL,'97'),(134983,'movie','Supernova','Supernova',1,2000,NULL,'90'),(135033,'movie','Poison for the Fairies','Veneno para las hadas',1,1986,NULL,'90'),(135122,'short','The Hilarious Posters','Les affiches en goguette',1,1906,NULL,'3'),(135179,'short','The Living Playing Cards','Les cartes vivantes',1,1905,NULL,'3'),(135180,'short','The Infernal Cauldron','Le chaudron infernal',1,1903,NULL,'2'),(135453,'short','The One-Man Band','L\'homme orchestre',1,1900,NULL,'2'),(135631,'short','The Untamable Whiskers','Le roi du maquillage',1,1904,NULL,'3'),(135659,'tvMiniSeries','Storm of the Century','Storm of the Century',1,1999,1999,'257'),(135690,'short','The Scheming Gambler\'s Paradise','Le tripot clandestin',1,1905,NULL,'3'),(135696,'short','Four Heads Are Better Than One','Un homme de têtes',1,1898,NULL,'1'),(136244,'movie','Hideous Kinky','Hideous Kinky',1,1998,NULL,'98'),(137226,'movie','The Treasure of Swamp Castle','The Treasure of Swamp Castle',1,1985,NULL,'76'),(137338,'movie','200 Cigarettes','200 Cigarettes',1,1999,NULL,'101'),(137523,'movie','Fight Club','Fight Club',1,1999,NULL,'139'),(138097,'movie','Shakespeare in Love','Shakespeare in Love',1,1998,NULL,'123'),(138510,'movie','Idle Hands','Idle Hands',1,1999,NULL,'92'),(138524,'movie','Intolerable Cruelty','Intolerable Cruelty',1,2003,NULL,'100'),(138704,'movie','Pi','Pi',1,1998,NULL,'84'),(138749,'movie','The Road to El Dorado','The Road to El Dorado',1,2000,NULL,'89'),(139134,'movie','Cruel Intentions','Cruel Intentions',1,1999,NULL,'97'),(139151,'movie','Inferno','Desert Heat',1,1999,NULL,'95'),(139239,'movie','Go','Go',1,1999,NULL,'102'),(139362,'movie','High Art','High Art',1,1998,NULL,'101'),(139414,'movie','Lake Placid','Lake Placid',1,1999,NULL,'82'),(139462,'movie','Message in a Bottle','Message in a Bottle',1,1999,NULL,'126'),(139654,'movie','Training Day','Training Day',1,2001,NULL,'122'),(140379,'movie','A Midsummer Night\'s Dream','A Midsummer Night\'s Dream',1,1999,NULL,'116'),(140627,'movie','Tomorrow Night','Tomorrow Night',1,1998,NULL,'87'),(140888,'movie','Central Station','Central do Brasil',1,1998,NULL,'110'),(141098,'movie','Forces of Nature','Forces of Nature',1,1999,NULL,'105'),(142032,'tvMiniSeries','Dune','Dune',1,2000,2000,'265'),(142233,'movie','Dragon Ball Z: Tree of Might','Dragon Ball Z: Chikyû Marugoto Chôkessen',1,1990,NULL,'60'),(142237,'movie','Dragon Ball Z: The Return of Cooler','Dragon Ball Z: Gekitotsu!! 100-oku Power no Senshi-tachi',1,1992,NULL,'45'),(142243,'movie','Dragon Ball Z: Wrath of the Dragon','Dragon Ball Z - Doragon bôru zetto: Ryûken bakuhatsu!! Gokû ga yaraneba dare ga yaru',1,1995,NULL,'52'),(142245,'tvMovie','Dragon Ball Z: Bardock - The Father of Goku','Dragon Ball Z Special: Tatta Hitori no Saishû Kessen ~Freeza ni Idonda Z Senshi Son Gokû no Chichi~',1,1990,NULL,'48'),(142247,'tvMovie','Dragon Ball Z: The History of Trunks','Dragon Ball Z Special: Zetsubô e no Hankô!! Nokosareta Chô Senshi - Gohan to Trunks',1,1993,NULL,'47'),(142342,'movie','Big Daddy','Big Daddy',1,1999,NULL,'93'),(142688,'movie','The Ninth Gate','The Ninth Gate',1,1999,NULL,'133'),(142964,'movie','Wildside','Vildspor',1,1998,NULL,'95'),(143088,'movie','Adieu Philippine','Adieu Philippine',1,1962,NULL,'106'),(143127,'video','Batman & Mr. Freeze: SubZero','Batman & Mr. Freeze: SubZero',1,1998,NULL,'70'),(143145,'movie','The World Is Not Enough','The World Is Not Enough',1,1999,NULL,'128'),(143348,'movie','Lone Wolf and Cub: Baby Cart in Peril','Kozure Ôkami: Oya no kokoro ko no kokoro',1,1972,NULL,'81'),(143808,'video','Pocahontas 2: Journey to a New World','Pocahontas II: Journey to a New World',1,1998,NULL,'73'),(144084,'movie','American Psycho','American Psycho',1,2000,NULL,'102'),(144117,'movie','The Boondock Saints','The Boondock Saints',1,1999,NULL,'108'),(144120,'movie','Bride of Chucky','Bride of Chucky',1,1998,NULL,'89'),(144168,'movie','Dick','Dick',1,1999,NULL,'94'),(144640,'movie','Three to Tango','Three to Tango',1,1999,NULL,'98'),(144715,'movie','Holy Smoke','Holy Smoke',1,1999,NULL,'115'),(144814,'movie','The Rage: Carrie 2','The Rage: Carrie 2',1,1999,NULL,'104'),(145487,'movie','Spider-Man','Spider-Man',1,2002,NULL,'121'),(145531,'movie','Stigmata','Stigmata',1,1999,NULL,'103'),(145660,'movie','Austin Powers: The Spy Who Shagged Me','Austin Powers: The Spy Who Shagged Me',1,1999,NULL,'95'),(145937,'movie','Naqoyqatsi','Naqoyqatsi',1,2002,NULL,'89'),(146309,'movie','Thirteen Days','Thirteen Days',1,2000,NULL,'145'),(146316,'movie','Lara Croft: Tomb Raider','Lara Croft: Tomb Raider',1,2001,NULL,'100'),(146336,'movie','Urban Legend','Urban Legend',1,1998,NULL,'99'),(146468,'movie','Barrio','Barrio',1,1998,NULL,'94'),(146838,'movie','Any Given Sunday','Any Given Sunday',1,1999,NULL,'162'),(146882,'movie','High Fidelity','High Fidelity',1,2000,NULL,'113'),(147004,'movie','Little Voice','Little Voice',1,1998,NULL,'97'),(147612,'movie','Happiness','Happiness',1,1998,NULL,'134'),(147800,'movie','10 Things I Hate About You','10 Things I Hate About You',1,1999,NULL,'97'),(149261,'movie','Deep Blue Sea','Deep Blue Sea',1,1999,NULL,'105'),(149691,'movie','Anywhere But Here','Anywhere But Here',1,1999,NULL,'114'),(150377,'movie','Double Jeopardy','Double Jeopardy',1,1999,NULL,'105'),(150662,'movie','Show Me Love','Fucking Åmål',1,1998,NULL,'89'),(151568,'movie','Topsy-Turvy','Topsy-Turvy',1,1999,NULL,'160'),(151691,'movie','My Name Is Joe','My Name Is Joe',1,1998,NULL,'105'),(151738,'movie','Never Been Kissed','Never Been Kissed',1,1999,NULL,'107'),(151804,'movie','Office Space','Office Space',1,1999,NULL,'89'),(152930,'movie','Taxi','Taxi',1,1998,NULL,'89'),(154152,'short','Annabelle Serpentine Dance','Annabelle Serpentine Dance',1,1895,NULL,'1'),(154420,'movie','The Celebration','Festen',1,1998,NULL,'105'),(154421,'movie','The Idiots','Idioterne',1,1998,NULL,'117'),(154506,'movie','Following','Following',1,1998,NULL,'69'),(154683,'movie','The Sinners of Hell','Jigoku',1,1960,NULL,'101'),(155180,'movie','Sindhu Bhairavi','Sindhu Bhairavi',1,1985,NULL,'159'),(155267,'movie','The Thomas Crown Affair','The Thomas Crown Affair',1,1999,NULL,'113'),(155711,'movie','Flawless','Flawless',1,1999,NULL,'112'),(155723,'movie','A Good Baby','A Good Baby',1,1999,NULL,'87'),(155776,'movie','Jawbreaker','Jawbreaker',1,1999,NULL,'86'),(156031,'short','Rudolph the Red-Nosed Reindeer','Rudolph the Red-Nosed Reindeer',1,1948,NULL,'8'),(156729,'movie','Last Night','Last Night',1,1998,NULL,'95'),(156757,'movie','Mad About Mambo','Mad About Mambo',1,2000,NULL,'92'),(156807,'movie','Mr. Accident','Mr. Accident',1,2000,NULL,'89'),(156843,'movie','Night of the Ghouls','Night of the Ghouls',1,1959,NULL,'69'),(156887,'movie','Perfect Blue','Pâfekuto burû',1,1997,NULL,'81'),(157503,'movie','Drop Dead Gorgeous','Drop Dead Gorgeous',1,1999,NULL,'97'),(158011,'movie','The Eternal','Trance',1,1998,NULL,'95'),(158371,'movie','Sweet and Lowdown','Sweet and Lowdown',1,1999,NULL,'95'),(158409,'tvMovie','Futuresport','Futuresport',1,1998,NULL,'91'),(158446,'movie','2 Seconds','2 secondes',1,1998,NULL,'100'),(158692,'movie','Juha','Juha',1,1999,NULL,'78'),(158714,'movie','Lady Snowblood','Shurayukihime',1,1973,NULL,'97'),(158811,'movie','Muppets from Space','Muppets from Space',1,1999,NULL,'87'),(158983,'movie','South Park: Bigger, Longer & Uncut','South Park: Bigger, Longer & Uncut',1,1999,NULL,'81'),(159097,'movie','The Virgin Suicides','The Virgin Suicides',1,1999,NULL,'97'),(159272,'movie','Beautiful People','Beautiful People',1,1999,NULL,'107'),(159273,'movie','Behind Enemy Lines','Behind Enemy Lines',1,2001,NULL,'106'),(159365,'movie','Cold Mountain','Cold Mountain',1,2003,NULL,'154'),(160127,'movie','Charlie\'s Angels','Charlie\'s Angels',1,2000,NULL,'98'),(160399,'movie','Impostor','Impostor',1,2001,NULL,'95'),(160611,'movie','Ordinary Decent Criminal','Ordinary Decent Criminal',1,2000,NULL,'93'),(160862,'movie','She\'s All That','She\'s All That',1,1999,NULL,'95'),(161081,'movie','What Lies Beneath','What Lies Beneath',1,2000,NULL,'130'),(161860,'movie','Nowhere in Africa','Nirgendwo in Afrika',1,2001,NULL,'141'),(162222,'movie','Cast Away','Cast Away',1,2000,NULL,'143'),(162346,'movie','Ghost World','Ghost World',1,2001,NULL,'111'),(162556,'movie','Why Not Me?','Pourquoi pas moi?',1,1999,NULL,'96'),(162661,'movie','Sleepy Hollow','Sleepy Hollow',1,1999,NULL,'105'),(162710,'movie','Trick','Trick',1,1999,NULL,'89'),(162735,'tvMovie','Vendetta','Vendetta',1,1999,NULL,'117'),(162973,'movie','Get Real','Get Real',1,1998,NULL,'108'),(162983,'movie','Hanging Up','Hanging Up',1,2000,NULL,'94'),(163025,'movie','Jurassic Park III','Jurassic Park III',1,2001,NULL,'92'),(163178,'movie','Redball','Redball',1,1999,NULL,'91'),(163187,'movie','Runaway Bride','Runaway Bride',1,1999,NULL,'116'),(163651,'movie','American Pie','American Pie',1,1999,NULL,'95'),(163978,'movie','The Beach','The Beach',1,2000,NULL,'119'),(163983,'movie','Bless the Child','Bless the Child',1,2000,NULL,'107'),(164052,'movie','Hollow Man','Hollow Man',1,2000,NULL,'112'),(164184,'movie','The Sum of All Fears','The Sum of All Fears',1,2002,NULL,'124'),(164334,'movie','Along Came a Spider','Along Came a Spider',1,2001,NULL,'104'),(164912,'movie','Stuart Little','Stuart Little',1,1999,NULL,'84'),(165078,'movie','After Life','Wandafuru raifu',1,1998,NULL,'119'),(165499,'movie','The Storm Riders','Fung wan: Hung ba tin ha',1,1998,NULL,'128'),(165598,'tvSeries','That \'70s Show','That \'70s Show',1,1998,2006,'22'),(165643,'movie','Black & White','Black and White',1,1999,NULL,'98'),(165798,'movie','Ghost Dog: The Way of the Samurai','Ghost Dog: The Way of the Samurai',1,1999,NULL,'116'),(165929,'movie','Romeo Must Die','Romeo Must Die',1,2000,NULL,'115'),(165982,'movie','Sinbad: Legend of the Seven Seas','Sinbad: Legend of the Seven Seas',1,2003,NULL,'88'),(166175,'movie','East Is East','East Is East',1,1999,NULL,'96'),(166222,'short','I Killed My Lesbian Wife, Hung Her on a Meathook, and Now I Have a Three Picture Deal at Disney','I Killed My Lesbian Wife, Hung Her on a Meathook, and Now I Have a Three Picture Deal at Disney',1,1993,NULL,'16'),(166276,'movie','Monkeybone','Monkeybone',1,2001,NULL,'93'),(166485,'movie','Anna and the King','Anna and the King',1,1999,NULL,'148'),(166792,'video','Scooby-Doo on Zombie Island','Scooby-Doo on Zombie Island',1,1998,NULL,'77'),(166813,'movie','Spirit: Stallion of the Cimarron','Spirit: Stallion of the Cimarron',1,2002,NULL,'83'),(166896,'movie','The Straight Story','The Straight Story',1,1999,NULL,'112'),(166924,'movie','Mulholland Drive','Mulholland Dr.',1,2001,NULL,'147'),(166943,'movie','Music of the Heart','Music of the Heart',1,1999,NULL,'124'),(167190,'movie','Hellboy','Hellboy',1,2004,NULL,'122'),(167260,'movie','The Lord of the Rings: The Return of the King','The Lord of the Rings: The Return of the King',1,2003,NULL,'201'),(167261,'movie','The Lord of the Rings: The Two Towers','The Lord of the Rings: The Two Towers',1,2002,NULL,'179'),(167404,'movie','The Sixth Sense','The Sixth Sense',1,1999,NULL,'107'),(167456,'movie','Thunderbirds','Thunderbirds',1,2004,NULL,'95'),(167752,'movie','The 4th Floor','The 4th Floor',1,1999,NULL,'90'),(168629,'movie','Dancer in the Dark','Dancer in the Dark',1,2000,NULL,'140'),(168740,'movie','Boredom','L\'ennui',1,1998,NULL,'122'),(168786,'movie','Antwone Fisher','Antwone Fisher',1,2002,NULL,'120'),(168972,'movie','Love & Pop','Love & Pop',1,1998,NULL,'110'),(168987,'movie','Better Than Chocolate','Better Than Chocolate',1,1999,NULL,'101'),(169102,'movie','Lagaan: Once Upon a Time in India','Lagaan: Once Upon a Time in India',1,2001,NULL,'224'),(169299,'movie','Terror Firmer','Terror Firmer',1,1999,NULL,'124'),(169547,'movie','American Beauty','American Beauty',1,1999,NULL,'122'),(169858,'movie','Neon Genesis Evangelion: The End of Evangelion','Shin seiki Evangelion Gekijô-ban: Air/Magokoro wo, kimi ni',1,1997,NULL,'87'),(170016,'movie','How the Grinch Stole Christmas','How the Grinch Stole Christmas',1,2000,NULL,'104'),(171363,'movie','The Haunting','The Haunting',1,1999,NULL,'113'),(171725,'video','The Secret of NIMH 2: Timmy to the Rescue','The Secret of NIMH 2: Timmy to the Rescue',1,1998,NULL,'66'),(171804,'movie','Boys Don\'t Cry','Boys Don\'t Cry',1,1999,NULL,'118'),(172156,'movie','Bad Boys II','Bad Boys II',1,2003,NULL,'147'),(172348,'tvMovie','Introducing Dorothy Dandridge','Introducing Dorothy Dandridge',1,1999,NULL,'120'),(172493,'movie','Girl, Interrupted','Girl, Interrupted',1,1999,NULL,'127'),(172495,'movie','Gladiator','Gladiator',1,2000,NULL,'155'),(172543,'movie','He Died with a Felafel in His Hand','He Died with a Felafel in His Hand',1,2001,NULL,'107'),(172684,'movie','Kuch Kuch Hota Hai','Kuch Kuch Hota Hai',1,1998,NULL,'177'),(173716,'movie','Cecil B. Demented','Cecil B. Demented',1,2000,NULL,'87'),(173840,'movie','Final Fantasy: The Spirits Within','Final Fantasy: The Spirits Within',1,2001,NULL,'106'),(173886,'tvMovie','Halloweentown','Halloweentown',1,1998,NULL,'84'),(174480,'movie','Autumn in New York','Autumn in New York',1,2000,NULL,'103'),(174856,'movie','The Hurricane','The Hurricane',1,1999,NULL,'146'),(175142,'movie','Scary Movie','Scary Movie',1,2000,NULL,'88'),(175526,'movie','Cherry Falls','Cherry Falls',1,2000,NULL,'92'),(175880,'movie','Magnolia','Magnolia',1,1999,NULL,'188'),(177242,'movie','Sun Alley','Sonnenallee',1,1999,NULL,'101'),(177507,'movie','Gigantic','Absolute Giganten',1,1999,NULL,'80'),(177707,'short','Dickson Experimental Sound Film','Dickson Experimental Sound Film',1,1894,NULL,'1'),(177721,'tvMovie','Double Platinum','Double Platinum',1,1999,NULL,'94'),(177789,'movie','Galaxy Quest','Galaxy Quest',1,1999,NULL,'102'),(177971,'movie','The Perfect Storm','The Perfect Storm',1,2000,NULL,'130'),(178737,'movie','Mansfield Park','Mansfield Park',1,1999,NULL,'112'),(178844,'tvMovie','The Princess and the Pauper','La principessa e il povero',1,1997,NULL,'180'),(178868,'movie','Ringu','Ringu',1,1998,NULL,'96'),(179098,'movie','Moonlight Mile','Moonlight Mile',1,2002,NULL,'117'),(179116,'movie','But I\'m a Cheerleader','But I\'m a Cheerleader',1,1999,NULL,'85'),(179955,'movie','Cat City','Macskafogó',1,1986,NULL,'96'),(180052,'movie','The Adventures of Pluto Nash','The Adventures of Pluto Nash',1,2002,NULL,'95'),(180093,'movie','Requiem for a Dream','Requiem for a Dream',1,2000,NULL,'102'),(180679,'movie','Escanaba in da Moonlight','Escanaba in da Moonlight',1,2001,NULL,'91'),(181316,'movie','Blue Streak','Blue Streak',1,1999,NULL,'93'),(181536,'movie','Finding Forrester','Finding Forrester',1,2000,NULL,'136'),(181627,'movie','Kirikou and the Sorceress','Kirikou et la sorcière',1,1998,NULL,'71'),(181689,'movie','Minority Report','Minority Report',1,2002,NULL,'145'),(181739,'movie','Osmosis Jones','Osmosis Jones',1,2001,NULL,'95'),(181852,'movie','Terminator 3: Rise of the Machines','Terminator 3: Rise of the Machines',1,2003,NULL,'109'),(181865,'movie','Traffic','Traffic',1,2000,NULL,'147'),(181875,'movie','Almost Famous','Almost Famous',1,2000,NULL,'122'),(181984,'movie','Boiler Room','Boiler Room',1,2000,NULL,'120'),(182508,'movie','Urbania','Urbania',1,2000,NULL,'103'),(182576,'tvSeries','Family Guy','Family Guy',1,1999,NULL,'22'),(182789,'movie','Bicentennial Man','Bicentennial Man',1,1999,NULL,'132'),(183505,'movie','Me, Myself & Irene','Me, Myself & Irene',1,2000,NULL,'116'),(183523,'movie','Mission to Mars','Mission to Mars',1,2000,NULL,'114'),(183649,'movie','Phone Booth','Phone Booth',1,2002,NULL,'81'),(183790,'movie','A Knight\'s Tale','A Knight\'s Tale',1,2001,NULL,'132'),(184894,'movie','Shanghai Noon','Shanghai Noon',1,2000,NULL,'110'),(185014,'movie','Wonder Boys','Wonder Boys',1,2000,NULL,'107'),(185125,'movie','All About My Mother','Todo sobre mi madre',1,1999,NULL,'101'),(185431,'movie','Little Nicky','Little Nicky',1,2000,NULL,'90'),(185906,'tvMiniSeries','Band of Brothers','Band of Brothers',1,2001,2001,'594'),(185937,'movie','The Blair Witch Project','The Blair Witch Project',1,1999,NULL,'81'),(186566,'movie','Space Cowboys','Space Cowboys',1,2000,NULL,'130'),(186589,'movie','Sugar & Spice','Sugar & Spice',1,2001,NULL,'81'),(186894,'movie','Bounce','Bounce',1,2000,NULL,'106'),(187078,'movie','Gone in 60 Seconds','Gone in Sixty Seconds',1,2000,NULL,'118'),(187393,'movie','The Patriot','The Patriot',1,2000,NULL,'165'),(187512,'movie','She Gets What She Wants','Slap Her, She\'s French!',1,2002,NULL,'92'),(187738,'movie','Blade II','Blade II',1,2002,NULL,'117'),(188484,'movie','Carry It On','Carry It On',1,1970,NULL,'80'),(188674,'movie','Human Traffic','Human Traffic',1,1999,NULL,'99'),(189071,'tvMovie','Scooby-Doo and the Ghoul School','Scooby-Doo and the Ghoul School',1,1988,NULL,'92'),(189219,'movie','Spring in a Small Town','Xiao cheng zhi chun',1,1948,NULL,'98'),(189498,'short','The Enchanted Well','Le puits fantastique',1,1903,NULL,'4'),(189584,'movie','The Big Kahuna','The Big Kahuna',1,1999,NULL,'90'),(190138,'movie','The Whole Nine Yards','The Whole Nine Yards',1,2000,NULL,'98'),(190332,'movie','Crouching Tiger, Hidden Dragon','Wo hu cang long',1,2000,NULL,'120'),(190590,'movie','O Brother, Where Art Thou?','O Brother, Where Art Thou?',1,2000,NULL,'107'),(190641,'movie','Pokémon: The First Movie - Mewtwo Strikes Back','Gekijô-ban poketto monsutâ - Myûtsû no gyakushû',1,1998,NULL,'96'),(190865,'movie','Vertical Limit','Vertical Limit',1,2000,NULL,'124'),(190975,'movie','Low-Flying Aircraft','Aparelho Voador a Baixa Altitude',1,2002,NULL,'80'),(191397,'movie','The Replacements','The Replacements',1,2000,NULL,'118'),(191754,'movie','28 Days','28 Days',1,2000,NULL,'103'),(192023,'movie','Finder\'s Fee','Finder\'s Fee',1,2001,NULL,'100'),(192618,'tvMovie','Smart House','Smart House',1,1999,NULL,'82'),(193019,'video','Blue\'s Big Musical Movie','Blue\'s Big Musical Movie',1,2000,NULL,'78'),(193364,'movie','The Order','The Order',1,2001,NULL,'89'),(193524,'tvMovie','The Star Wars Holiday Special','The Star Wars Holiday Special',1,1978,NULL,'97'),(194722,'movie','Bridge of Dragons','Bridge of Dragons',1,1999,NULL,'92'),(194800,'movie','Operation Delta Force 4: Deep Fault','Operation Delta Force 4: Deep Fault',1,1999,NULL,'96'),(195234,'movie','Saving Grace','Saving Grace',1,2000,NULL,'93'),(195685,'movie','Erin Brockovich','Erin Brockovich',1,2000,NULL,'131'),(195714,'movie','Final Destination','Final Destination',1,2000,NULL,'98'),(195945,'movie','Next Friday','Next Friday',1,2000,NULL,'98'),(196069,'movie','Samsara','Samsara',1,2001,NULL,'145'),(196229,'movie','Zoolander','Zoolander',1,2001,NULL,'90'),(196378,'video','Bimbos B.C.','Bimbos B.C.',1,1990,NULL,'90'),(196931,'video','Scooby-Doo and the Witch\'s Ghost','Scooby-Doo and the Witch\'s Ghost',1,1999,NULL,'66'),(197096,'movie','What\'s Cooking?','What\'s Cooking?',1,2000,NULL,'109'),(197626,'short','Lick the Star','Lick the Star',1,1998,NULL,'14'),(198021,'movie','Where the Heart Is','Where the Heart Is',1,2000,NULL,'120'),(198781,'movie','Monsters, Inc.','Monsters, Inc.',1,2001,NULL,'92'),(199626,'movie','In the Cut','In the Cut',1,2003,NULL,'119'),(199683,'movie','Kikujiro','Kikujirô no natsu',1,1999,NULL,'122'),(199725,'movie','Love & Basketball','Love & Basketball',1,2000,NULL,'124'),(199753,'movie','Red Planet','Red Planet',1,2000,NULL,'106'),(199849,'movie','Ninja Terminator','Ninja Terminator',1,1986,NULL,'88'),(200027,'movie','Riding in Cars with Boys','Riding in Cars with Boys',1,2001,NULL,'132'),(200208,'tvMovie','The Thirteenth Year','The Thirteenth Year',1,1999,NULL,'95'),(200465,'movie','The Bank Job','The Bank Job',1,2008,NULL,'111'),(200550,'movie','Coyote Ugly','Coyote Ugly',1,2000,NULL,'100'),(200809,'tvEpisode','Life-Size','Life-Size',1,2000,NULL,'89'),(201820,'movie','The Other Side of Underneath','The Other Side of the Underneath',1,1972,NULL,'142'),(202677,'movie','The Way of the Gun','The Way of the Gun',1,2000,NULL,'119'),(203009,'movie','Moulin Rouge!','Moulin Rouge!',1,2001,NULL,'127'),(203019,'movie','Men of Honor','Men of Honor',1,2000,NULL,'129'),(203040,'movie','Girl of Dark','Onna bakari no yoru',1,1961,NULL,'93'),(203119,'movie','Sexy Beast','Sexy Beast',1,2000,NULL,'89'),(203166,'movie','Together','Tillsammans',1,2000,NULL,'106'),(203540,'movie','Greenfingers','Greenfingers',1,2000,NULL,'91'),(203646,'short','Leonard-Cushing Fight','Leonard-Cushing Fight',1,1894,NULL,'1'),(204082,'tvMiniSeries','Aristocrats','Aristocrats',1,1999,1999,'300'),(204640,'movie','Sordid Lives','Sordid Lives',1,2000,NULL,'111'),(204700,'movie','Trouble Every Day','Trouble Every Day',1,2001,NULL,'101'),(204761,'movie','Fidelity','La fidélité',1,2000,NULL,'166'),(204946,'movie','Bring It On','Bring It On',1,2000,NULL,'98'),(205000,'movie','Deuce Bigalow: Male Gigolo','Deuce Bigalow: Male Gigolo',1,1999,NULL,'88'),(205177,'movie','Kevin & Perry Go Large','Kevin & Perry Go Large',1,2000,NULL,'82'),(205214,'tvMiniSeries','The Magical Legend of the Leprechauns','The Magical Legend of the Leprechauns',1,1999,1999,'139'),(205271,'movie','Dr. T & the Women','Dr. T & the Women',1,2000,NULL,'122'),(205873,'movie','The Dish','The Dish',1,2000,NULL,'101'),(206036,'tvMovie','If These Walls Could Talk 2','If These Walls Could Talk 2',1,2000,NULL,'96'),(206064,'tvMovie','Johnny Tsunami','Johnny Tsunami',1,1999,NULL,'88'),(206275,'movie','Save the Last Dance','Save the Last Dance',1,2001,NULL,'112'),(206634,'movie','Children of Men','Children of Men',1,2006,NULL,'109'),(206917,'movie','The Man Who Cried','The Man Who Cried',1,2000,NULL,'100'),(207061,'movie','Rollergator','Rollergator',1,1996,NULL,'83'),(207201,'movie','What Women Want','What Women Want',1,2000,NULL,'127'),(207972,'tvEpisode','Annie','Annie',1,1999,NULL,'90'),(208092,'movie','Snatch','Snatch',1,2000,NULL,'104'),(208185,'video','An Extremely Goofy Movie','An Extremely Goofy Movie',1,2000,NULL,'79'),(208502,'video','Angel\'s Egg','Tenshi no tamago',1,1985,NULL,'71'),(208874,'movie','The Contender','The Contender',1,2000,NULL,'126'),(209095,'video','Leprechaun 5: In the Hood','Leprechaun 5: In the Hood',1,2000,NULL,'90'),(209144,'movie','Memento','Memento',1,2000,NULL,'113'),(209163,'movie','The Mummy Returns','The Mummy Returns',1,2001,NULL,'130'),(209189,'movie','Not One Less','Yi ge dou bu neng shao',1,1999,NULL,'106'),(209475,'movie','The Wedding Planner','The Wedding Planner',1,2001,NULL,'103'),(209933,'movie','Beau travail','Beau travail',1,1999,NULL,'92'),(209958,'movie','The Cell','The Cell',1,2000,NULL,'107'),(210044,'tvMovie','Flowers for Algernon','Flowers for Algernon',1,2000,NULL,'120'),(210070,'movie','Ginger Snaps','Ginger Snaps',1,2000,NULL,'108'),(210075,'movie','Girlfight','Girlfight',1,2000,NULL,'110'),(210299,'movie','Songcatcher','Songcatcher',1,2000,NULL,'109'),(210358,'movie','Things You Can Tell Just by Looking at Her','Things You Can Tell Just by Looking at Her',1,2000,NULL,'109'),(210567,'movie','Beautiful','Beautiful',1,2000,NULL,'112'),(210616,'movie','Center Stage','Center Stage',1,2000,NULL,'115'),(210945,'movie','Remember the Titans','Remember the Titans',1,2000,NULL,'113'),(211181,'movie','102 Dalmatians','102 Dalmatians',1,2000,NULL,'100'),(211443,'movie','Jason X','Jason X',1,2001,NULL,'92'),(211915,'movie','Amélie','Le fabuleux destin d\'Amélie Poulain',1,2001,NULL,'122'),(211933,'movie','Awake','Awake',1,2007,NULL,'84'),(212338,'movie','Meet the Parents','Meet the Parents',1,2000,NULL,'108'),(212346,'movie','Miss Congeniality','Miss Congeniality',1,2000,NULL,'109'),(212604,'movie','Tully','Tully',1,2000,NULL,'102'),(212712,'movie','2046','2046',1,2004,NULL,'129'),(212720,'movie','A.I. Artificial Intelligence','A.I. Artificial Intelligence',1,2001,NULL,'146'),(212826,'movie','Bread and Roses','Bread and Roses',1,2000,NULL,'110'),(212985,'movie','Hannibal','Hannibal',1,2001,NULL,'131'),(213121,'movie','New Waterford Girl','New Waterford Girl',1,1999,NULL,'97'),(213149,'movie','Pearl Harbor','Pearl Harbor',1,2001,NULL,'183'),(213203,'movie','Rugrats in Paris','Rugrats in Paris: The Movie - Rugrats II',1,2000,NULL,'78'),(213847,'movie','Malena','Malèna',1,2000,NULL,'108'),(214529,'movie','Belphegor: Phantom of the Louvre','Belphégor - Le fantôme du Louvre',1,2001,NULL,'97'),(214641,'video','Dragonheart: A New Beginning','Dragonheart: A New Beginning',1,1999,NULL,'84'),(215033,'movie','Parasakthi','Parasakthi',1,1952,NULL,'188'),(215364,'tvMiniSeries','Wives and Daughters','Wives and Daughters',1,1999,1999,'301'),(215545,'movie','Bamboozled','Bamboozled',1,2000,NULL,'135'),(215575,'short','The Black Imp','Le diable noir',1,1905,NULL,'4'),(215664,'short','The Cook in Trouble','Sorcellerie culinaire',1,1904,NULL,'4'),(215737,'short','The Eclipse: Courtship of the Sun and Moon','L\'éclipse du soleil en pleine lune',1,1907,NULL,'9'),(215750,'movie','Enemy at the Gates','Enemy at the Gates',1,2001,NULL,'131'),(215817,'short','Good Glue Sticks','La colle universelle',1,1907,NULL,'5'),(216016,'short','The Mysterious Retort','Alchimiste Parafaragaramus ou La cornue infernale',1,1906,NULL,'3'),(216216,'movie','The 6th Day','The 6th Day',1,2000,NULL,'123'),(217355,'movie','Dancing at the Blue Iguana','Dancing at the Blue Iguana',1,2000,NULL,'123'),(217505,'movie','Gangs of New York','Gangs of New York',1,2002,NULL,'167'),(217869,'movie','Unbreakable','Unbreakable',1,2000,NULL,'106'),(217990,'tvMovie','Alley Cats Strike','Alley Cats Strike',1,2000,NULL,'103'),(218553,'movie','Ring 2','Ringu 2',1,1999,NULL,'95'),(218616,'movie','Some Voices','Some Voices',1,2000,NULL,'101'),(218817,'movie','Antitrust','Antitrust',1,2001,NULL,'108'),(218839,'movie','Best in Show','Best in Show',1,2000,NULL,'90'),(218922,'movie','Original Sin','Original Sin',1,2001,NULL,'116'),(218967,'movie','The Family Man','The Family Man',1,2000,NULL,'125'),(219400,'movie','Waking Up in Reno','Waking Up in Reno',1,2002,NULL,'91'),(219699,'movie','The Gift','The Gift',1,2000,NULL,'112'),(219822,'movie','Human Nature','Human Nature',1,2001,NULL,'96'),(219964,'short','Outer Space','Outer Space',1,1999,NULL,'10'),(220099,'movie','The Tigger Movie','The Tigger Movie',1,2000,NULL,'77'),(221027,'movie','Blow','Blow',1,2001,NULL,'124'),(221218,'movie','The Glass House','The Glass House',1,2001,NULL,'106'),(221637,'movie','The Third Society','The Third Society',1,2002,NULL,'84'),(221889,'movie','Beautiful Creatures','Beautiful Creatures',1,2000,NULL,'86'),(222137,'short','Lancement d\'un navire','Lancement d\'un navire',1,1896,NULL,'1'),(222368,'movie','The Nameless','Los sin nombre',1,1999,NULL,'102'),(223341,'short','La fée aux choux','La fée aux choux',1,1896,NULL,'1'),(223755,'short','The Monster','Le monstre',1,1903,NULL,'3'),(223897,'movie','Pay It Forward','Pay It Forward',1,2000,NULL,'123'),(224005,'movie','God\'s Crooked Lines','Los renglones torcidos de Dios',1,1983,NULL,'103'),(224240,'short','The Temptation of St. Anthony','La tentation de Saint-Antoine',1,1898,NULL,'1'),(224412,'tvSpecial','Hiroshima Maiden','Hiroshima Maiden',1,1988,NULL,'53'),(227051,'movie','Night of the Felines','Mesunekotachi no yoru',1,1972,NULL,'70'),(227200,'movie','Operation Delta Force 5: Random Fire','Operation Delta Force 5: Random Fire',1,2000,NULL,'91'),(227438,'short','The Doctor and the Monkey','Le savant et le chimpanze',1,1900,NULL,'1'),(227445,'movie','The Score','The Score',1,2001,NULL,'124'),(227538,'movie','Spy Kids','Spy Kids',1,2001,NULL,'88'),(227984,'movie','Formula 51','The 51st State',1,2001,NULL,'93'),(228333,'movie','Ghosts of Mars','Ghosts of Mars',1,2001,NULL,'98'),(229024,'short','Gulliver\'s Travels','Le voyage de Gulliver à Lilliput et chez les géants',1,1902,NULL,'4'),(229217,'short','Annabelle Butterfly Dance','Annabelle Butterfly Dance',1,1894,NULL,'1'),(229235,'short','The Barbershop','The Barbershop',1,1894,NULL,'1'),(229340,'movie','Dinner Rush','Dinner Rush',1,2000,NULL,'99'),(229440,'video','Hellraiser: Inferno','Hellraiser: Inferno',1,2000,NULL,'99'),(230011,'movie','Atlantis: The Lost Empire','Atlantis: The Lost Empire',1,2001,NULL,'95'),(230183,'movie','Eeny Meeny','Ene bene',1,2000,NULL,'104'),(230600,'movie','The Others','The Others',1,2001,NULL,'101'),(230746,'short','Searching Ruins on Broadway, Galveston, for Dead Bodies','Searching Ruins on Broadway, Galveston, for Dead Bodies',1,1900,NULL,'1'),(230838,'movie','Sweet November','Sweet November',1,2001,NULL,'119'),(231844,'tvMovie','Just a Question of Love','Juste une question d\'amour',1,2000,NULL,'88'),(232500,'movie','The Fast and the Furious','The Fast and the Furious',1,2001,NULL,'106'),(232821,'short','Tilly the Tomboy Visits the Poor','Tilly the Tomboy Visits the Poor',1,1910,NULL,'6'),(233298,'video','Batman Beyond: Return of the Joker','Batman Beyond: Return of the Joker',1,2000,NULL,'76'),(233657,'tvMovie','Epoch','Epoch',1,2001,NULL,'96'),(233841,'movie','Baran','Baran',1,2001,NULL,'94'),(234215,'movie','The Matrix Reloaded','The Matrix Reloaded',1,2003,NULL,'138'),(234520,'short','Le prince de Galles','Le prince de Galles',1,1902,NULL,NULL),(235133,'tvMovie','Ring','Ringu',1,1995,NULL,'95'),(235154,'movie','6ixtynin9','Ruang talok 69',1,1999,NULL,'118'),(235198,'movie','Audition','Ôdishon',1,1999,NULL,'115'),(235327,'movie','Dark Days','Dark Days',1,2000,NULL,'82'),(235712,'movie','Ring 0: Birthday','Ringu 0: Bâsudei',1,2000,NULL,'99'),(236027,'movie','Flickering Lights','Blinkende lygter',1,2000,NULL,'109'),(236348,'movie','Josie and the Pussycats','Josie and the Pussycats',1,2001,NULL,'98'),(236493,'movie','The Mexican','The Mexican',1,2001,NULL,'123'),(237534,'movie','Brotherhood of the Wolf','Le pacte des loups',1,2001,NULL,'142'),(237765,'tvMiniSeries','Sonic the Hedgehog: The Movie','Sonikku za hejjihoggu',1,1996,1996,'60'),(238380,'movie','Equilibrium','Equilibrium',1,2002,NULL,'107'),(238546,'movie','Queen of the Damned','Queen of the Damned',1,2002,NULL,'101'),(238924,'movie','The Dangerous Lives of Altar Boys','The Dangerous Lives of Altar Boys',1,2002,NULL,'104'),(238936,'movie','Devdas','Devdas',1,2002,NULL,'185'),(240119,'movie','Tomie','Tomie',1,1998,NULL,'95'),(240200,'movie','Water','Water',1,2005,NULL,'117'),(240419,'movie','La Ciénaga','La Ciénaga',1,2001,NULL,'103'),(240462,'movie','Dr. Dolittle 2','Dr. Dolittle 2',1,2001,NULL,'87'),(240515,'movie','Freddy Got Fingered','Freddy Got Fingered',1,2001,NULL,'87'),(240684,'video','The Little Mermaid II: Return to the Sea','The Little Mermaid II: Return to the Sea',1,2000,NULL,'75'),(240772,'movie','Ocean\'s Eleven','Ocean\'s Eleven',1,2001,NULL,'116'),(240890,'movie','Serendipity','Serendipity',1,2001,NULL,'90'),(241073,'movie','Whispering Corridors','Yeogo goedam',1,1998,NULL,'105'),(241266,'short','Boxing','Boxing',1,1892,NULL,NULL),(241303,'movie','Chocolat','Chocolat',1,2000,NULL,'121'),(241373,'short','Dickson Greeting','Dickson Greeting',1,1891,NULL,'1'),(241392,'short','Duncan Smoking','Duncan Smoking',1,1891,NULL,'1'),(241393,'short','Duncan and Another, Blacksmith Shop','Duncan and Another, Blacksmith Shop',1,1891,NULL,NULL),(241394,'short','Duncan or Devonald with Muslin Cloud','Duncan or Devonald with Muslin Cloud',1,1891,NULL,NULL),(241446,'short','Fencing','Fencing',1,1892,NULL,'1'),(241527,'movie','Harry Potter and the Sorcerer\'s Stone','Harry Potter and the Sorcerer\'s Stone',1,2001,NULL,'152'),(241715,'short','Men Boxing','Men Boxing',1,1891,NULL,'1'),(241735,'short','Monkey and Another, Boxing','Monkey and Another, Boxing',1,1891,NULL,NULL),(241763,'short','Newark Athlete','Newark Athlete',1,1891,NULL,'1'),(242148,'short','Wrestling','Wrestling',1,1892,NULL,NULL),(242423,'movie','Dude, Where\'s My Car?','Dude, Where\'s My Car?',1,2000,NULL,'83'),(242587,'movie','L.I.E.','L.I.E.',1,2001,NULL,'97'),(242653,'movie','The Matrix Revolutions','The Matrix Revolutions',1,2003,NULL,'129'),(242998,'movie','Valentine','Valentine',1,2001,NULL,'96'),(243017,'movie','Waking Life','Waking Life',1,2001,NULL,'99'),(243155,'movie','Bridget Jones\'s Diary','Bridget Jones\'s Diary',1,2001,NULL,'97'),(243255,'movie','Fat Girl','À ma soeur!',1,2001,NULL,'95'),(243558,'movie','Revolutionary Girl Utena: The Movie','Shôjo kakumei Utena: Adolescence mokushiroku',1,1999,NULL,'85'),(243655,'movie','Wet Hot American Summer','Wet Hot American Summer',1,2001,NULL,'97'),(243664,'tvMovie','Wit','Wit',1,2001,NULL,'99'),(243862,'movie','Italian for Beginners','Italiensk for begyndere',1,2000,NULL,'112'),(244000,'movie','American Outlaws','American Outlaws',1,2001,NULL,'94'),(244244,'movie','Swordfish','Swordfish',1,2001,NULL,'99'),(244283,'tvMovie','The Vagina Monologues','The Vagina Monologues',1,2002,NULL,'77'),(244297,'movie','War Bride','The War Bride',1,2001,NULL,'111'),(244316,'movie','Yi Yi: A One and a Two...','Yi yi',1,2000,NULL,'173'),(244353,'tvMiniSeries','The Mists of Avalon','The Mists of Avalon',1,2001,2001,'183'),(244730,'movie','Prison Girls','Prison Girls',1,1972,NULL,'93'),(244870,'movie','Spiral','Uzumaki',1,2000,NULL,'90'),(244970,'movie','Someone Like You','Someone Like You...',1,2001,NULL,'97'),(245046,'movie','Charlotte Gray','Charlotte Gray',1,2001,NULL,'121'),(245238,'movie','Lost and Delirious','Lost and Delirious',1,2001,NULL,'103'),(245429,'movie','Spirited Away','Sen to Chihiro no kamikakushi',1,2001,NULL,'125'),(245562,'movie','Windtalkers','Windtalkers',1,2002,NULL,'134'),(245574,'movie','And Your Mother Too','Y tu mamá también',1,2001,NULL,'106'),(245674,'movie','Thir13en Ghosts','Thir13en Ghosts',1,2001,NULL,'91'),(245712,'movie','Amores Perros','Amores perros',1,2000,NULL,'154'),(246278,'movie','Oui, mais...','Oui, mais...',1,2001,NULL,'104'),(246460,'movie','Die Another Day','Die Another Day',1,2002,NULL,'133'),(246464,'movie','Big Trouble','Big Trouble',1,2002,NULL,'85'),(246578,'movie','Donnie Darko','Donnie Darko',1,2001,NULL,'113'),(246592,'movie','Dummy','Dummy',1,2002,NULL,'91'),(246734,'tvMiniSeries','Kite','A kaito',1,1998,1998,'50'),(246772,'movie','Mostly Martha','Bella Martha',1,2001,NULL,'109'),(246913,'movie','Saraswathi Sabatham','Saraswathi Sabatham',1,1966,NULL,'159'),(247380,'movie','The Gleaners & I','Les glaneurs et la glaneuse',1,2000,NULL,'82'),(247425,'movie','In the Bedroom','In the Bedroom',1,2001,NULL,'131'),(247638,'movie','The Princess Diaries','The Princess Diaries',1,2001,NULL,'115'),(247745,'movie','Super Troopers','Super Troopers',1,2001,NULL,'100'),(247840,'tvMovie','El zoo d\'en Pitus','El zoo d\'en Pitus',1,2000,NULL,'90'),(248126,'movie','Kabhi Khushi Kabhie Gham...','Kabhi Khushi Kabhie Gham...',1,2001,NULL,'210'),(248254,'movie','Old School','Old School',1,2000,NULL,'88'),(248408,'movie','Manitou\'s Shoe','Der Schuh des Manitu',1,2001,NULL,'87'),(248845,'movie','Hedwig and the Angry Inch','Hedwig and the Angry Inch',1,2001,NULL,'95'),(249380,'movie','Baise-moi','Baise-moi',1,2000,NULL,'77'),(249462,'movie','Billy Elliot','Billy Elliot',1,2000,NULL,'110'),(249577,'tvMovie','Here Comes Peter Cottontail','Here Comes Peter Cottontail',1,1971,NULL,'60'),(250223,'movie','Asterix & Obelix: Mission Cleopatra','Astérix & Obélix : Mission Cléopâtre',1,2002,NULL,'107'),(250292,'movie','Cheats','Cheats',1,2002,NULL,'86'),(250440,'tvMovie','Daria in \'Is It Fall Yet?\'','Daria in \'Is It Fall Yet?\'',1,2000,NULL,'75'),(250494,'movie','Legally Blonde','Legally Blonde',1,2001,NULL,'96'),(250687,'movie','Rat Race','Rat Race',1,2001,NULL,'112'),(250739,'tvMovie','Sister Mary Explains It All','Sister Mary Explains It All',1,2001,NULL,'77'),(250797,'movie','Unfaithful','Unfaithful',1,2002,NULL,'124'),(251075,'movie','Evolution','Evolution',1,2001,NULL,'101'),(251110,'movie','Gypsy 83','Gypsy 83',1,2001,NULL,'94'),(251127,'movie','How to Lose a Guy in 10 Days','How to Lose a Guy in 10 Days',1,2003,NULL,'116'),(251382,'tvEpisode','Santa Who?','Santa Who?',1,2000,NULL,'92'),(251474,'tvMovie','What Makes a Family','What Makes a Family',1,2001,NULL,'91'),(251736,'movie','House of 1000 Corpses','House of 1000 Corpses',1,2003,NULL,'89'),(252076,'movie','Maid in Manhattan','Maid in Manhattan',1,2002,NULL,'105'),(252227,'video','Alvin and the Chipmunks Meet the Wolfman','Alvin and the Chipmunks Meet the Wolfman',1,2000,NULL,'77'),(252444,'movie','Rabbit-Proof Fence','Rabbit-Proof Fence',1,2002,NULL,'94'),(252503,'movie','Heist','Heist',1,2001,NULL,'109'),(252684,'movie','Manic','Manic',1,2001,NULL,'100'),(252866,'movie','American Pie 2','American Pie 2',1,2001,NULL,'108'),(253126,'movie','High Heels and Low Lifes','High Heels and Low Lifes',1,2001,NULL,'86'),(253474,'movie','The Pianist','The Pianist',1,2002,NULL,'150'),(253556,'movie','Reign of Fire','Reign of Fire',1,2002,NULL,'101'),(253595,'tvMovie','The Atlantis Conspiracy','The Atlantis Conspiracy',1,2001,NULL,'90'),(253754,'movie','Star Trek: Nemesis','Star Trek: Nemesis',1,2002,NULL,'116'),(253867,'movie','The Sweetest Thing','The Sweetest Thing',1,2002,NULL,'84'),(254686,'movie','The Piano Teacher','La pianiste',1,2001,NULL,'131'),(255067,'movie','Common Wealth','La comunidad',1,2000,NULL,'110'),(255094,'movie','The Circle','Dayereh',1,2000,NULL,'90'),(255589,'movie','The Isle','Seom',1,2000,NULL,'90'),(256009,'movie','The Devil\'s Backbone','El espinazo del diablo',1,2001,NULL,'106'),(256127,'movie','Face','Kao',1,2000,NULL,'124'),(256380,'movie','Shallow Hal','Shallow Hal',1,2001,NULL,'114'),(256415,'movie','Sweet Home Alabama','Sweet Home Alabama',1,2002,NULL,'108'),(256524,'movie','The Curse of the Jade Scorpion','The Curse of the Jade Scorpion',1,2001,NULL,'103'),(256692,'movie','Chori Chori Chupke Chupke','Chori Chori Chupke Chupke',1,2001,NULL,'165'),(256782,'short','Glenroy Brothers (Comic Boxing)','Glenroy Brothers (Comic Boxing)',1,1894,NULL,'1'),(257044,'movie','Road to Perdition','Road to Perdition',1,2002,NULL,'117'),(257076,'movie','S.W.A.T.','S.W.A.T.',1,2003,NULL,'117'),(257106,'movie','Scary Movie 2','Scary Movie 2',1,2001,NULL,'83'),(257360,'movie','About Schmidt','About Schmidt',1,2002,NULL,'125'),(257516,'movie','Cursed','Cursed',1,2005,NULL,'97'),(257568,'movie','Kangaroo Jack','Kangaroo Jack',1,2003,NULL,'89'),(257654,'short','The Delights of Automobiling','Explosion of a Motor Car',1,1900,NULL,'1'),(257756,'movie','High Crimes','High Crimes',1,2002,NULL,'115'),(257778,'video','The Hunchback of Notre Dame II','The Hunchback of Notre Dame II',1,2002,NULL,'68'),(258000,'movie','Panic Room','Panic Room',1,2002,NULL,'112'),(258068,'movie','The Quiet American','The Quiet American',1,2002,NULL,'101'),(258104,'short','Rêve et réalité','Rêve et réalité',1,1901,NULL,'1'),(258153,'movie','S1m0ne','S1m0ne',1,2002,NULL,'117'),(258273,'movie','Lovely & Amazing','Lovely & Amazing',1,2001,NULL,'91'),(258463,'movie','The Bourne Identity','The Bourne Identity',1,2002,NULL,'119'),(259060,'movie','Don\'t Die Too Hard!','La tour Montparnasse infernale',1,2001,NULL,'92'),(259153,'tvMiniSeries','Rose Red','Rose Red',1,2002,2002,'254'),(259288,'movie','Dragonfly','Dragonfly',1,2002,NULL,'104'),(259324,'movie','Ghost Rider','Ghost Rider',1,2007,NULL,'110'),(259446,'movie','My Big Fat Greek Wedding','My Big Fat Greek Wedding',1,2002,NULL,'95'),(259685,'video','Tremors 3: Back to Perfection','Tremors 3: Back to Perfection',1,2001,NULL,'104'),(259711,'movie','Vanilla Sky','Vanilla Sky',1,2001,NULL,'136'),(260191,'tvMovie','Gundam Wing: The Movie - Endless Waltz','Shin Kido Senki Gundam Wing Endless Waltz',1,1998,NULL,'90'),(260332,'movie','The Day I Became a Woman','Roozi ke zan shodam',1,2000,NULL,'78'),(260866,'movie','Don\'t Say a Word','Don\'t Say a Word',1,2001,NULL,'113'),(260991,'movie','Joint Security Area','Gongdong gyeongbi guyeok JSA',1,2000,NULL,'110'),(261392,'movie','Jay and Silent Bob Strike Back','Jay and Silent Bob Strike Back',1,2001,NULL,'104'),(263215,'movie','Picture Claire','Picture Claire',1,2001,NULL,'91'),(263467,'tvMovie','In the Time of the Butterflies','In the Time of the Butterflies',1,2001,NULL,'95'),(263488,'movie','Jeepers Creepers','Jeepers Creepers',1,2001,NULL,'90'),(263725,'movie','Me Without You','Me Without You',1,2001,NULL,'107'),(263757,'movie','Uptown Girls','Uptown Girls',1,2003,NULL,'92'),(264150,'movie','View from the Top','View from the Top',1,2003,NULL,'87'),(264395,'movie','Basic','Basic',1,2003,NULL,'98'),(264464,'movie','Catch Me If You Can','Catch Me If You Can',1,2002,NULL,'141'),(264508,'movie','Dagon','Dagon',1,2001,NULL,'98'),(264616,'movie','Frailty','Frailty',1,2001,NULL,'100'),(264689,'movie','Home Room','Home Room',1,2002,NULL,'133'),(264734,'video','Joseph: King of Dreams','Joseph: King of Dreams',1,2000,NULL,'74'),(264761,'movie','Kissing Jessica Stein','Kissing Jessica Stein',1,2001,NULL,'97'),(265086,'movie','Black Hawk Down','Black Hawk Down',1,2001,NULL,'144'),(265104,'movie','The Breed','The Breed',1,2001,NULL,'91'),(265116,'movie','Chaos','Chaos',1,2001,NULL,'109'),(265171,'movie','Elvira\'s Haunted Hills','Elvira\'s Haunted Hills',1,2001,NULL,'90'),(265298,'movie','Big Fat Liar','Big Fat Liar',1,2002,NULL,'88'),(265343,'movie','Monsoon Wedding','Monsoon Wedding',1,2001,NULL,'114'),(265349,'movie','The Mothman Prophecies','The Mothman Prophecies',1,2002,NULL,'119'),(265459,'movie','One Hour Photo','One Hour Photo',1,2002,NULL,'96'),(265632,'movie','Recess: School\'s Out','Recess: School\'s Out',1,2001,NULL,'82'),(265651,'movie','Ripley\'s Game','Ripley\'s Game',1,2002,NULL,'110'),(265666,'movie','The Royal Tenenbaums','The Royal Tenenbaums',1,2001,NULL,'110'),(266075,'movie','Memento Mori','Yeogo goedam II',1,1999,NULL,'98'),(266308,'movie','Battle Royale','Batoru rowaiaru',1,2000,NULL,'114'),(266452,'movie','Death to Smoochy','Death to Smoochy',1,2002,NULL,'109'),(266543,'movie','Finding Nemo','Finding Nemo',1,2003,NULL,'100'),(266697,'movie','Kill Bill: Vol. 1','Kill Bill: Vol. 1',1,2003,NULL,'111'),(266915,'movie','Rush Hour 2','Rush Hour 2',1,2001,NULL,'90'),(266987,'movie','Spy Game','Spy Game',1,2001,NULL,'126'),(267626,'movie','K-19: The Widowmaker','K-19: The Widowmaker',1,2002,NULL,'138'),(267804,'movie','The One','The One',1,2001,NULL,'87'),(267913,'movie','Scooby-Doo','Scooby-Doo',1,2002,NULL,'89'),(268126,'movie','Adaptation.','Adaptation.',1,2002,NULL,'115'),(268380,'movie','Ice Age','Ice Age',1,2002,NULL,'81'),(268397,'movie','Jimmy Neutron: Boy Genius','Jimmy Neutron: Boy Genius',1,2001,NULL,'82'),(268695,'movie','The Time Machine','The Time Machine',1,2002,NULL,'96'),(268978,'movie','A Beautiful Mind','A Beautiful Mind',1,2001,NULL,'135'),(268995,'movie','The Majestic','The Majestic',1,2001,NULL,'152'),(269856,'movie','Ritual','Shiki-Jitsu',1,2000,NULL,'128'),(270288,'movie','Confessions of a Dangerous Mind','Confessions of a Dangerous Mind',1,2002,NULL,'113'),(270688,'movie','Teknolust','Teknolust',1,2002,NULL,'85'),(270980,'movie','My Boss\'s Daughter','My Boss\'s Daughter',1,2003,NULL,'86'),(271027,'movie','Kiss of the Dragon','Kiss of the Dragon',1,2001,NULL,'98'),(271219,'movie','Tadpole','Tadpole',1,2002,NULL,'78'),(271271,'tvMovie','Zenon: The Zequel','Zenon: The Zequel',1,2001,NULL,'100'),(271972,'movie','Arachnid','Arachnid',1,2001,NULL,'95'),(272127,'tvMovie','Hitched','Hitched',1,2001,NULL,'89'),(272152,'movie','K-PAX','K-PAX',1,2001,NULL,'120'),(272338,'movie','Punch-Drunk Love','Punch-Drunk Love',1,2002,NULL,'95'),(273300,'movie','Jump Tomorrow','Jump Tomorrow',1,2001,NULL,'97'),(273840,'movie','Moscow Square','Moszkva tér',1,2001,NULL,'88'),(274117,'movie','Read My Lips','Sur mes lèvres',1,2001,NULL,'115'),(274155,'movie','Tanguy','Tanguy',1,2001,NULL,'108'),(274166,'movie','Johnny English','Johnny English',1,2003,NULL,'89'),(274309,'movie','24 Hour Party People','24 Hour Party People',1,2002,NULL,'117'),(274497,'movie','The Ignorant Fairies','Le fate ignoranti',1,2001,NULL,'106'),(274558,'movie','The Hours','The Hours',1,2002,NULL,'110'),(274812,'movie','Secretary','Secretary',1,2002,NULL,'107'),(275022,'movie','Crossroads','Crossroads',1,2002,NULL,'93'),(275277,'movie','Cowboy Bebop: The Movie','Cowboy Bebop: Tengoku no tobira',1,2001,NULL,'115'),(275847,'movie','Lilo & Stitch','Lilo & Stitch',1,2002,NULL,'85'),(275913,'movie','Amazons and Gladiators','Amazons and Gladiators',1,2001,NULL,'94'),(276613,'tvMovie','Waiting for Godot','Waiting for Godot',1,2001,NULL,'120'),(276751,'movie','About a Boy','About a Boy',1,2002,NULL,'101'),(276816,'movie','Below','Below',1,2002,NULL,'105'),(276919,'movie','Dogville','Dogville',1,2003,NULL,'178'),(277027,'movie','I Am Sam','I Am Sam',1,2001,NULL,'132'),(277115,'short','Luis Martinetti, Contortionist','Luis Martinetti, Contortionist',1,1894,NULL,'1'),(277122,'movie','Maeve','Maeve',1,1981,NULL,'110'),(277296,'movie','The Scorpion King','The Scorpion King',1,2002,NULL,'92'),(277371,'movie','Not Another Teen Movie','Not Another Teen Movie',1,2001,NULL,'89'),(277434,'movie','We Were Soldiers','We Were Soldiers',1,2002,NULL,'138'),(277596,'short','Le baromètre de la fidélité','Le baromètre de la fidélité',1,1915,NULL,'15'),(277865,'short','L\'âne jaloux','L\'âne jaloux',1,1912,NULL,'7'),(277925,'movie','The Hidden Half','Nimeh-ye penhan',1,2001,NULL,'103'),(277986,'movie','Killer Rats','Rats',1,2003,NULL,'92'),(278435,'movie','Enough','Enough',1,2002,NULL,'115'),(278488,'movie','How High','How High',1,2001,NULL,'93'),(278500,'movie','The Importance of Being Earnest','The Importance of Being Earnest',1,2002,NULL,'97'),(278504,'movie','Insomnia','Insomnia',1,2002,NULL,'118'),(278731,'movie','Spider','Spider',1,2002,NULL,'98'),(279113,'movie','The Good Girl','The Good Girl',1,2002,NULL,'93'),(279204,'tvMovie','My Daughter\'s Secret Life','Lucky Girl',1,2001,NULL,'100'),(279231,'movie','Miss Minoes','Minoes',1,2001,NULL,'86'),(279474,'movie','Tomie: Replay','Tomie: Replay',1,2000,NULL,'95'),(279493,'movie','Undercover Brother','Undercover Brother',1,2002,NULL,'86'),(279778,'movie','Divine Secrets of the Ya-Ya Sisterhood','Divine Secrets of the Ya-Ya Sisterhood',1,2002,NULL,'116'),(279914,'movie','Lady Windermere\'s Fan','Lady Windermere\'s Fan',1,1916,NULL,'66'),(279967,'video','Mulan II','Mulan II',1,2004,NULL,'79'),(279977,'movie','The Navigators','The Navigators',1,2001,NULL,'96'),(280460,'movie','The Banger Sisters','The Banger Sisters',1,2002,NULL,'98'),(280486,'movie','Bad Company','Bad Company',1,2002,NULL,'116'),(280590,'movie','Mr. Deeds','Mr. Deeds',1,2002,NULL,'96'),(280609,'movie','Dog Soldiers','Dog Soldiers',1,2002,NULL,'105'),(280653,'movie','Amen.','Amen.',1,2002,NULL,'132'),(280665,'movie','Femme Fatale','Femme Fatale',1,2002,NULL,'114'),(280707,'movie','Gosford Park','Gosford Park',1,2001,NULL,'137'),(280760,'movie','Igby Goes Down','Igby Goes Down',1,2002,NULL,'98'),(281358,'movie','A Walk to Remember','A Walk to Remember',1,2002,NULL,'101'),(281373,'movie','Snow Dogs','Snow Dogs',1,2002,NULL,'99'),(281634,'video','Balto: Wolf Quest','Balto: Wolf Quest',1,2001,NULL,'76'),(282120,'movie','The Wild Thornberrys','The Wild Thornberrys Movie',1,2002,NULL,'85'),(282123,'tvMovie','A Ring of Endless Light','A Ring of Endless Light',1,2002,NULL,'88'),(282209,'movie','Darkness Falls','Darkness Falls',1,2003,NULL,'86'),(282418,'tvMovie','The Rats','The Rats',1,2002,NULL,'94'),(282521,'tvMovie','Get a Clue','Get a Clue',1,2002,NULL,'83'),(282593,'movie','I\'m with Lucy','I\'m with Lucy',1,2002,NULL,'90'),(282687,'movie','Life or Something Like It','Life or Something Like It',1,2002,NULL,'103'),(282753,'movie','Spacked Out','Mo yan ka sai',1,2000,NULL,'91'),(282771,'movie','The Mystic Masseur','The Mystic Masseur',1,2001,NULL,'117'),(282936,'movie','Sakuya: Slayer of Demons','Sakuya: yôkaiden',1,2000,NULL,'88'),(283003,'movie','Spun','Spun',1,2002,NULL,'101'),(283015,'movie','Stranded','Stranded',1,2001,NULL,'95'),(283084,'movie','Tuck Everlasting','Tuck Everlasting',1,2002,NULL,'90'),(283139,'movie','White Oleander','White Oleander',1,2002,NULL,'109'),(283426,'movie','The Jungle Book 2','The Jungle Book 2',1,2003,NULL,'72'),(283503,'movie','Brooklyn Rules','Brooklyn Rules',1,2007,NULL,'99'),(283632,'movie','They','They',1,2002,NULL,'89'),(283832,'movie','8 Women','8 femmes',1,2002,NULL,'111'),(283877,'video','American Psycho II: All American Girl','American Psycho II: All American Girl',1,2002,NULL,'88'),(284034,'movie','Demonlover','Demonlover',1,2002,NULL,'129'),(284363,'movie','I Served the King of England','Obsluhoval jsem anglického krále',1,2006,NULL,'113'),(284478,'movie','Charlotte Sometimes','Charlotte Sometimes',1,2002,NULL,'85'),(284565,'video','Tomie: Another Face','Tomie: anaza feisu',1,1999,NULL,'72'),(284655,'movie','WiseGirls','WiseGirls',1,2002,NULL,'96'),(284837,'movie','Ali G Indahouse','Ali G Indahouse',1,2002,NULL,'85'),(284978,'movie','Cypher','Cypher',1,2002,NULL,'95'),(285300,'movie','Loonies','Loenatik - De moevie',1,2002,NULL,'90'),(285492,'movie','Cube²: Hypercube','Cube 2: Hypercube',1,2002,NULL,'94'),(285531,'movie','Dreamcatcher','Dreamcatcher',1,2003,NULL,'136'),(285627,'tvMovie','Daria in \'Is It College Yet?\'','Daria in \'Is It College Yet?\'',1,2002,NULL,'90'),(285663,'movie','Ecstasy of the Black Rose','Kurobara shôten',1,1975,NULL,'72'),(285742,'movie','Monster\'s Ball','Monster\'s Ball',1,2001,NULL,'111'),(285823,'movie','Once Upon a Time in Mexico','Once Upon a Time in Mexico',1,2003,NULL,'102'),(285861,'movie','Owning Mahowny','Owning Mahowny',1,2003,NULL,'104'),(286106,'movie','Signs','Signs',1,2002,NULL,'106'),(286112,'movie','Shaolin Soccer','Siu Lam juk kau',1,2001,NULL,'113'),(286137,'movie','Something Between Us','Something Between Us',1,2000,NULL,'79'),(286244,'movie','The Triplets of Belleville','Les triplettes de Belleville',1,2003,NULL,'80'),(286261,'movie','All or Nothing','All or Nothing',1,2002,NULL,'128'),(286499,'movie','Bend It Like Beckham','Bend It Like Beckham',1,2002,NULL,'112'),(286716,'movie','Hulk','Hulk',1,2003,NULL,'138'),(286751,'movie','Pulse','Kairo',1,2001,NULL,'119'),(286788,'movie','What a Girl Wants','What a Girl Wants',1,2003,NULL,'105'),(286975,'video','Slashers','Slashers',1,2001,NULL,'99'),(287467,'movie','Talk to Her','Hable con ella',1,2002,NULL,'112'),(287471,'movie','Late Marriage','Hatuna Meuheret',1,2001,NULL,'102'),(287717,'movie','Spy Kids 2: Island of Lost Dreams','Spy Kids 2: Island of Lost Dreams',1,2002,NULL,'100'),(287978,'movie','Daredevil','Daredevil',1,2003,NULL,'103'),(287986,'movie','God Is Great and I\'m Not','Dieu est grand, je suis toute petite',1,2001,NULL,'95'),(288439,'movie','Bang Bang You\'re Dead','Bang Bang You\'re Dead',1,2002,NULL,'93'),(288441,'video','Barbie in the Nutcracker','Barbie in the Nutcracker',1,2001,NULL,'76'),(288477,'movie','Ghost Ship','Ghost Ship',1,2002,NULL,'91'),(289043,'movie','28 Days Later','28 Days Later...',1,2002,NULL,'113'),(289408,'movie','The Powerpuff Girls Movie','The Powerpuff Girls Movie',1,2002,NULL,'73'),(289424,'movie','The Ring Virus','Ling',1,1999,NULL,'108'),(289765,'movie','Red Dragon','Red Dragon',1,2002,NULL,'124'),(289879,'movie','The Butterfly Effect','The Butterfly Effect',1,2004,NULL,'113'),(289944,'movie','Fear X','Fear X',1,2003,NULL,'91'),(290002,'movie','Meet the Fockers','Meet the Fockers',1,2004,NULL,'115'),(290095,'movie','The Tuxedo','The Tuxedo',1,2002,NULL,'98'),(290334,'movie','X2','X2',1,2003,NULL,'134'),(290661,'movie','Dog Days','Hundstage',1,2001,NULL,'121'),(290664,'tvMovie','Hysterical Blindness','Hysterical Blindness',1,2002,NULL,'99'),(290673,'movie','Irreversible','Irréversible',1,2002,NULL,'97'),(290879,'movie','The Legend of Suriyothai','Suriyothai',1,2001,NULL,'185'),(290916,'movie','Summer Things','Embrassez qui vous voudrez',1,2002,NULL,'103'),(291213,'movie','Big Girls Don\'t Cry','Große Mädchen weinen nicht',1,2002,NULL,'87'),(291350,'movie','Millennium Actress','Sennen joyû',1,2001,NULL,'87'),(291476,'short','Sherlock Holmes Baffled','Sherlock Holmes Baffled',1,1900,NULL,'1'),(291579,'movie','He Loves Me, He Loves Me Not','À la folie... pas du tout',1,2002,NULL,'92'),(291988,'movie','Intimate Stories','Historias mínimas',1,2002,NULL,'92'),(292506,'movie','The Recruit','The Recruit',1,2003,NULL,'115'),(292644,'movie','The Rules of Attraction','The Rules of Attraction',1,2002,NULL,'110'),(292963,'movie','Before the Devil Knows You\'re Dead','Before the Devil Knows You\'re Dead',1,2007,NULL,'117'),(293113,'movie','Dracula: Pages from a Virgin\'s Diary','Dracula: Pages from a Virgin\'s Diary',1,2002,NULL,'73'),(293429,'movie','Mortal Kombat','Mortal Kombat',1,2021,NULL,'110'),(293508,'movie','The Phantom of the Opera','The Phantom of the Opera',1,2004,NULL,'143'),(293564,'movie','Rush Hour 3','Rush Hour 3',1,2007,NULL,'91'),(293662,'movie','The Transporter','The Transporter',1,2002,NULL,'92'),(293815,'movie','Friday After Next','Friday After Next',1,2002,NULL,'85'),(294425,'tvMovie','Cadet Kelly','Cadet Kelly',1,2002,NULL,'101'),(294870,'movie','Rent','Rent',1,2005,NULL,'135'),(295178,'movie','Austin Powers in Goldmember','Austin Powers in Goldmember',1,2002,NULL,'94'),(295297,'movie','Harry Potter and the Chamber of Secrets','Harry Potter and the Chamber of Secrets',1,2002,NULL,'161'),(295427,'movie','The Master of Disguise','The Master of Disguise',1,2002,NULL,'80'),(295671,'movie','L\'uomo in più','L\'uomo in più',1,2001,NULL,'100'),(295700,'movie','Wrong Turn','Wrong Turn',1,2003,NULL,'84'),(295701,'movie','xXx','xXx',1,2002,NULL,'124'),(295725,'movie','Time Changer','Time Changer',1,2002,NULL,'95'),(296042,'movie','Ichi the Killer','Koroshiya 1',1,2001,NULL,'129'),(296166,'movie','Real Women Have Curves','Real Women Have Curves',1,2002,NULL,'90'),(296251,'tvMovie','Tru Confessions','Tru Confessions',1,2002,NULL,'112'),(296572,'movie','The Chronicles of Riddick','The Chronicles of Riddick',1,2004,NULL,'119'),(296658,'movie','Take Care of My Cat','Go-yang-i-leul boo-tak-hae',1,2001,NULL,'112'),(297037,'movie','Brown Sugar','Brown Sugar',1,2002,NULL,'109'),(297181,'movie','I Spy','I Spy',1,2002,NULL,'97'),(297284,'movie','Mindhunters','Mindhunters',1,2004,NULL,'106'),(297884,'movie','Far from Heaven','Far from Heaven',1,2002,NULL,'107'),(298130,'movie','The Ring','The Ring',1,2002,NULL,'115'),(298148,'movie','Shrek 2','Shrek 2',1,2004,NULL,'93'),(298203,'movie','8 Mile','8 Mile',1,2002,NULL,'110'),(298228,'movie','Whale Rider','Whale Rider',1,2002,NULL,'101'),(298482,'movie','Nothing','Nothing',1,2003,NULL,'90'),(298814,'movie','The Core','The Core',1,2003,NULL,'135'),(299172,'movie','Home on the Range','Home on the Range',1,2004,NULL,'76'),(299658,'movie','Chicago','Chicago',1,2002,NULL,'113'),(299930,'movie','Gigli','Gigli',1,2003,NULL,'121'),(299937,'movie','Go','Go',1,2001,NULL,'122'),(299977,'movie','Hero','Ying xiong',1,2002,NULL,'120'),(300015,'movie','I Capture the Castle','I Capture the Castle',1,2003,NULL,'113'),(300051,'movie','Jersey Girl','Jersey Girl',1,2004,NULL,'102'),(300140,'movie','Lilya 4-Ever','Lilja 4-ever',1,2002,NULL,'109'),(300214,'movie','Morvern Callar','Morvern Callar',1,2002,NULL,'97'),(300270,'movie','The Holy Girl','La niña santa',1,2004,NULL,'106'),(300471,'movie','Shanghai Knights','Shanghai Knights',1,2003,NULL,'114'),(300532,'movie','Blue Crush','Blue Crush',1,2002,NULL,'104'),(300556,'movie','Timeline','Timeline',1,2003,NULL,'116'),(300657,'movie','The Hexer','Wiedzmin',1,2001,NULL,'130'),(300949,'movie','Apartment #5C','Apartment #5C',1,2002,NULL,'88'),(301199,'movie','Dirty Pretty Things','Dirty Pretty Things',1,2002,NULL,'97'),(301357,'movie','Good Bye Lenin!','Good Bye Lenin!',1,2003,NULL,'121'),(301429,'movie','Volcano High','Hwasango',1,2001,NULL,'120'),(301470,'movie','Jeepers Creepers 2','Jeepers Creepers 2',1,2003,NULL,'106'),(301526,'video','The Land Before Time VIII: The Big Freeze','The Land Before Time VIII: The Big Freeze',1,2001,NULL,'75'),(301777,'movie','Robot Stories','Robot Stories',1,2003,NULL,'85'),(301978,'movie','Ten','Dah',1,2002,NULL,'89'),(302640,'movie','The Hot Chick','The Hot Chick',1,2002,NULL,'104'),(302674,'movie','Gerry','Gerry',1,2002,NULL,'103'),(302886,'movie','Old School','Old School',1,2003,NULL,'88'),(303184,'movie','A Kind of America','Valami Amerika',1,2002,NULL,'115'),(303297,'movie','Amandla!','Amandla! A Revolution in Four Part Harmony',1,2002,NULL,'108'),(303361,'movie','May','May',1,2002,NULL,'93'),(303678,'video','Armitage III: Dual Matrix','Armitage: Dual Matrix',1,2001,NULL,'90'),(303816,'movie','Cabin Fever','Cabin Fever',1,2002,NULL,'93'),(303830,'movie','Casa de los babys','Casa de los babys',1,2003,NULL,'95'),(303933,'movie','Drumline','Drumline',1,2002,NULL,'118'),(304141,'movie','Harry Potter and the Prisoner of Azkaban','Harry Potter and the Prisoner of Azkaban',1,2004,NULL,'142'),(304377,'movie','Mango Kiss','Mango Kiss',1,2004,NULL,'84'),(304415,'movie','Mona Lisa Smile','Mona Lisa Smile',1,2003,NULL,'117'),(304669,'movie','The Santa Clause 2','The Santa Clause 2',1,2002,NULL,'104'),(305224,'movie','Anger Management','Anger Management',1,2003,NULL,'106'),(305357,'movie','Charlie\'s Angels: Full Throttle','Charlie\'s Angels: Full Throttle',1,2003,NULL,'106'),(305589,'tvMovie','Cold as Summer','Froid comme l\'été',1,2002,NULL,'88'),(306047,'movie','Scary Movie 3','Scary Movie 3',1,2003,NULL,'84'),(306432,'movie','My Mother Likes Women','A mi madre le gustan las mujeres',1,2002,NULL,'96'),(306474,'movie','Princess Arete','Arîte hime',1,2001,NULL,'105'),(306646,'movie','Ringing Bell','Chirin no suzu',1,1978,NULL,'47'),(306685,'movie','Cradle 2 the Grave','Cradle 2 the Grave',1,2003,NULL,'101'),(306734,'movie','The Divorce','Le divorce',1,2003,NULL,'117'),(306841,'movie','The Lizzie McGuire Movie','The Lizzie McGuire Movie',1,2003,NULL,'94'),(307351,'movie','Prey for Rock & Roll','Prey for Rock & Roll',1,2003,NULL,'104'),(307453,'movie','Shark Tale','Shark Tale',1,2004,NULL,'90'),(307479,'movie','Solaris','Solaris',1,2002,NULL,'99'),(307901,'movie','25th Hour','25th Hour',1,2002,NULL,'135'),(307987,'movie','Bad Santa','Bad Santa',1,2003,NULL,'92'),(308379,'movie','Dark Water','Honogurai mizu no soko kara',1,2002,NULL,'101'),(308644,'movie','Finding Neverland','Finding Neverland',1,2004,NULL,'106'),(309396,'short','Bucking Broncho','Bucking Broncho',1,1894,NULL,'1'),(309402,'short','Buffalo Dance','Buffalo Dance',1,1894,NULL,'1'),(309404,'movie','Bungalow','Bungalow',1,2002,NULL,'85'),(309530,'movie','Down with Love','Down with Love',1,2003,NULL,'101'),(309593,'movie','Final Destination 2','Final Destination 2',1,2003,NULL,'90'),(309698,'movie','Identity','Identity',1,2003,NULL,'90'),(309987,'movie','The Dreamers','The Dreamers',1,2003,NULL,'115'),(310567,'movie','The Bridgeman','A hídember',1,2002,NULL,'140'),(310775,'movie','Sympathy for Mr. Vengeance','Boksuneun naui geot',1,2002,NULL,'129'),(310778,'movie','Bon Voyage','Bon voyage',1,2003,NULL,'114'),(311113,'movie','Master and Commander: The Far Side of the World','Master and Commander: The Far Side of the World',1,2003,NULL,'138'),(311289,'movie','Holes','Holes',1,2003,NULL,'117'),(311361,'movie','Jesus Christ Vampire Hunter','Jesus Christ Vampire Hunter',1,2001,NULL,'85'),(311429,'movie','The League of Extraordinary Gentlemen','The League of Extraordinary Gentlemen',1,2003,NULL,'110'),(311648,'movie','Pieces of April','Pieces of April',1,2003,NULL,'80'),(311926,'tvMovie','Screwed in Tallinn','Torsk på Tallinn - En liten film om ensamhet',1,1999,NULL,'59'),(312004,'movie','Wallace & Gromit: The Curse of the Were-Rabbit','The Curse of the Were-Rabbit',1,2005,NULL,'85'),(312528,'movie','The Cat in the Hat','The Cat in the Hat',1,2003,NULL,'82'),(312687,'movie','Daughter of Keltoum','La fille de Keltoum',1,2001,NULL,'106'),(312728,'short','Glenroy Bros., No. 2','Glenroy Bros., No. 2',1,1894,NULL,'1'),(312843,'movie','Suicide Club','Jisatsu sâkuru',1,2001,NULL,'99'),(313254,'tvMovie','Barbie and the Rockers: Out of This World','Barbie and the Rockers: Out of This World',1,1987,NULL,'25'),(313255,'video','Barbie as Rapunzel','Barbie as Rapunzel',1,2002,NULL,'84'),(313410,'tvMovie','No Night Is Too Long','No Night Is Too Long',1,2002,NULL,'116'),(313542,'movie','Runaway Jury','Runaway Jury',1,2003,NULL,'127'),(313670,'movie','Sweet Sixteen','Sweet Sixteen',1,2002,NULL,'106'),(313737,'movie','Two Weeks Notice','Two Weeks Notice',1,2002,NULL,'101'),(313773,'short','Welcome to the Discworld','Welcome to the Discworld',1,1996,NULL,'8'),(314063,'movie','Immortal','Immortel (ad vitam)',1,2004,NULL,'103'),(314331,'movie','Love Actually','Love Actually',1,2003,NULL,'135'),(314353,'movie','Tears of the Sun','Tears of the Sun',1,2003,NULL,'121'),(314412,'movie','My Life Without Me','My Life Without Me',1,2003,NULL,'106'),(314498,'movie','The Perfect Score','The Perfect Score',1,2004,NULL,'93'),(314713,'video','Space Zombie Bingo!!!','Space Zombie Bingo!!!',1,1993,NULL,'75'),(315327,'movie','Bruce Almighty','Bruce Almighty',1,2003,NULL,'101'),(315733,'movie','21 Grams','21 Grams',1,2003,NULL,'124'),(315850,'movie','El bonaerense','El bonaerense',1,2002,NULL,'105'),(315983,'movie','House of Sand and Fog','House of Sand and Fog',1,2003,NULL,'126'),(316396,'movie','Peter Pan','Peter Pan',1,2003,NULL,'113'),(316654,'movie','Spider-Man 2','Spider-Man 2',1,2004,NULL,'127'),(316732,'movie','Taxi','Taxi',1,2004,NULL,'97'),(317042,'movie','One Point O','One Point O',1,2004,NULL,'95'),(317198,'movie','Bridget Jones: The Edge of Reason','Bridget Jones: The Edge of Reason',1,2004,NULL,'108'),(317219,'movie','Cars','Cars',1,2006,NULL,'117'),(317248,'movie','City of God','Cidade de Deus',1,2002,NULL,'130'),(317303,'movie','Daddy Day Care','Daddy Day Care',1,2003,NULL,'92'),(317640,'movie','The Hebrew Hammer','The Hebrew Hammer',1,2003,NULL,'85'),(317676,'movie','House of the Dead','House of the Dead',1,2003,NULL,'90'),(317705,'movie','The Incredibles','The Incredibles',1,2004,NULL,'115'),(317740,'movie','The Italian Job','The Italian Job',1,2003,NULL,'111'),(317919,'movie','Mission: Impossible III','Mission: Impossible III',1,2006,NULL,'126'),(318403,'video','The Lion King 1½','The Lion King 1½',1,2004,NULL,'77'),(318411,'movie','The Magdalene Sisters','The Magdalene Sisters',1,2002,NULL,'114'),(318462,'movie','The Motorcycle Diaries','Diarios de motocicleta',1,2004,NULL,'126'),(318627,'movie','Resident Evil: Apocalypse','Resident Evil: Apocalypse',1,2004,NULL,'94'),(318725,'movie','Fear and Trembling','Stupeur et tremblements',1,2003,NULL,'107'),(318997,'tvMiniSeries','Angels in America','Angels in America',1,2003,2003,'352'),(319061,'movie','Big Fish','Big Fish',1,2003,NULL,'125'),(319262,'movie','The Day After Tomorrow','The Day After Tomorrow',1,2004,NULL,'124'),(319343,'movie','Elf','Elf',1,2003,NULL,'97'),(319769,'movie','Mondays in the Sun','Los lunes al sol',1,2002,NULL,'113'),(319970,'tvMovie','Carrie','Carrie',1,2002,NULL,'132'),(320661,'movie','Kingdom of Heaven','Kingdom of Heaven',1,2005,NULL,'144'),(320691,'movie','Underworld','Underworld',1,2003,NULL,'121'),(322259,'movie','2 Fast 2 Furious','2 Fast 2 Furious',1,2003,NULL,'107'),(322330,'movie','Freaky Friday','Freaky Friday',1,2003,NULL,'97'),(322802,'movie','Jackass: The Movie','Jackass: The Movie',1,2002,NULL,'85'),(323120,'movie','Loving Annabelle','Loving Annabelle',1,2006,NULL,'77'),(323298,'movie','The Mother','The Mother',1,2003,NULL,'112'),(323810,'tvMovie','Right on Track','Right on Track',1,2003,NULL,'89'),(323944,'movie','Shattered Glass','Shattered Glass',1,2003,NULL,'94'),(324013,'tvMovie','Soldier\'s Girl','Soldier\'s Girl',1,2003,NULL,'112'),(324133,'movie','Swimming Pool','Swimming Pool',1,2003,NULL,'102'),(324158,'movie','Suddenly','Tan de repente',1,2002,NULL,'92'),(324197,'movie','Time of the Wolf','Le temps du loup',1,2003,NULL,'114'),(324264,'tvMiniSeries','Tipping the Velvet','Tipping the Velvet',1,2002,2002,'177'),(325007,'movie','April\'s Shower','April\'s Shower',1,2003,NULL,'100'),(325055,'movie','Sylvia','Sylvia',1,2003,NULL,'110'),(325703,'movie','Lara Croft: Tomb Raider - The Cradle of Life','Lara Croft: Tomb Raider - The Cradle of Life',1,2003,NULL,'117'),(325710,'movie','The Last Samurai','The Last Samurai',1,2003,NULL,'154'),(325980,'movie','Pirates of the Caribbean: The Curse of the Black Pearl','Pirates of the Caribbean: The Curse of the Black Pearl',1,2003,NULL,'143'),(326977,'movie','I\'m Not Scared','Io non ho paura',1,2003,NULL,'108'),(327056,'movie','Mystic River','Mystic River',1,2003,NULL,'138'),(327084,'movie','Over the Hedge','Over the Hedge',1,2006,NULL,'83'),(327137,'movie','Secondhand Lions','Secondhand Lions',1,2003,NULL,'111'),(327162,'movie','The Stepford Wives','The Stepford Wives',1,2004,NULL,'93'),(327247,'movie','The Whole Ten Yards','The Whole Ten Yards',1,2004,NULL,'98'),(327437,'movie','Around the World in 80 Days','Around the World in 80 Days',1,2004,NULL,'120'),(327554,'movie','Catwoman','Catwoman',1,2004,NULL,'104'),(327597,'movie','Coraline','Coraline',1,2009,NULL,'100'),(327679,'movie','Ella Enchanted','Ella Enchanted',1,2004,NULL,'96'),(327753,'movie','Funny Ha Ha','Funny Ha Ha',1,2002,NULL,'90'),(328400,'tvMovie','A Separate Peace','A Separate Peace',1,2004,NULL,'92'),(328538,'movie','Thirteen','Thirteen',1,2003,NULL,'100'),(328589,'movie','Under the Tuscan Sun','Under the Tuscan Sun',1,2003,NULL,'113'),(328880,'movie','Brother Bear','Brother Bear',1,2003,NULL,'85'),(329101,'movie','Freddy vs. Jason','Freddy vs. Jason',1,2003,NULL,'97'),(329355,'movie','Marion Bridge','Marion Bridge',1,2002,NULL,'90'),(329679,'tvMovie','An Unexpected Love','An Unexpected Love',1,2003,NULL,'90'),(329717,'movie','Hollywood Homicide','Hollywood Homicide',1,2003,NULL,'116'),(329767,'movie','Wilbur Wants to Kill Himself','Wilbur Wants to Kill Himself',1,2002,NULL,'111'),(330099,'movie','The Brown Bunny','The Brown Bunny',1,2003,NULL,'93'),(330312,'tvMovie','Gakkô no kaidan G','Gakkô no kaidan G',1,1998,NULL,'71'),(330373,'movie','Harry Potter and the Goblet of Fire','Harry Potter and the Goblet of Fire',1,2005,NULL,'157'),(330500,'video','Ju-on: The Curse','Ju-on',1,2000,NULL,'70'),(330501,'movie','Ju-on: The Curse 2','Ju-on 2',1,2000,NULL,'76'),(330588,'video','MXP: Most Xtreme Primate','MXP: Most Xtreme Primate',1,2004,NULL,'87'),(330793,'movie','The Punisher','The Punisher',1,2004,NULL,'124'),(330859,'tvMovie','Scary Godmother: Halloween Spooktakular','Scary Godmother: Halloween Spooktakular',1,2003,NULL,'47'),(330994,'movie','Titanic: The Legend Goes On...','Titanic - La leggenda continua',1,2000,NULL,'90'),(331632,'movie','Scooby-Doo 2: Monsters Unleashed','Scooby-Doo 2: Monsters Unleashed',1,2004,NULL,'93'),(331698,'movie','This Very Moment','Milchwald',1,2003,NULL,'87'),(331933,'movie','Man of the House','Man of the House',1,2005,NULL,'100'),(332280,'movie','The Notebook','The Notebook',1,2004,NULL,'123'),(332285,'movie','Off the Map','Off the Map',1,2003,NULL,'108'),(332375,'movie','Saved!','Saved!',1,2004,NULL,'92'),(332379,'movie','School of Rock','School of Rock',1,2003,NULL,'109'),(332452,'movie','Troy','Troy',1,2004,NULL,'163'),(333766,'movie','Garden State','Garden State',1,2004,NULL,'102'),(333780,'movie','Legally Blonde 2: Red, White & Blonde','Legally Blonde 2: Red, White & Blonde',1,2003,NULL,'95'),(334541,'video','Tremors 4: The Legend Begins','Tremors 4: The Legend Begins',1,2004,NULL,'101'),(334754,'movie','Yossi & Jagger','Yossi & Jagger',1,2002,NULL,'65'),(334965,'video','Bring It on: Again','Bring It On: Again',1,2004,NULL,'90'),(335119,'movie','Girl with a Pearl Earring','Girl with a Pearl Earring',1,2003,NULL,'100'),(335266,'movie','Lost in Translation','Lost in Translation',1,2003,NULL,'102'),(335345,'movie','The Passion of the Christ','The Passion of the Christ',1,2004,NULL,'127'),(336693,'short','The House Is Black','Khaneh siah ast',1,1963,NULL,'20'),(337563,'movie','13 Going on 30','13 Going on 30',1,2004,NULL,'98'),(337697,'movie','The Prince and Me','The Prince & Me',1,2004,NULL,'111'),(337711,'movie','Rugrats Go Wild','Rugrats Go Wild',1,2003,NULL,'81'),(337741,'movie','Something\'s Gotta Give','Something\'s Gotta Give',1,2003,NULL,'128'),(337824,'tvMovie','And Starring Pancho Villa as Himself','And Starring Pancho Villa as Himself',1,2003,NULL,'112'),(337909,'movie','Calendar Girls','Calendar Girls',1,2003,NULL,'108'),(337921,'movie','Cellular','Cellular',1,2004,NULL,'94'),(337978,'movie','Live Free or Die Hard','Live Free or Die Hard',1,2007,NULL,'128'),(338013,'movie','Eternal Sunshine of the Spotless Mind','Eternal Sunshine of the Spotless Mind',1,2004,NULL,'108'),(338095,'movie','High Tension','Haute tension',1,2003,NULL,'91'),(338096,'movie','Dirty Dancing: Havana Nights','Dirty Dancing: Havana Nights',1,2004,NULL,'86'),(338135,'movie','The Barbarian Invasions','Les invasions barbares',1,2003,NULL,'99'),(338139,'tvMovie','Iron Jawed Angels','Iron Jawed Angels',1,2004,NULL,'123'),(338188,'movie','The Missing','The Missing',1,2003,NULL,'137'),(338309,'movie','Evil','Ondskan',1,2003,NULL,'113'),(338337,'movie','Paycheck','Paycheck',1,2003,NULL,'119'),(338348,'movie','The Polar Express','The Polar Express',1,2004,NULL,'100'),(338427,'movie','Shopgirl','Shopgirl',1,2005,NULL,'106'),(338459,'movie','Spy Kids 3: Game Over','Spy Kids 3: Game Over',1,2003,NULL,'84'),(338467,'movie','High Roller: The Stu Ungar Story','Stuey',1,2003,NULL,'120'),(338479,'video','Tales from the Crapper','Tales from the Crapper',1,2004,NULL,'90'),(338526,'movie','Van Helsing','Van Helsing',1,2004,NULL,'131'),(338564,'movie','Infernal Affairs','Mou gaan dou',1,2002,NULL,'101'),(338751,'movie','The Aviator','The Aviator',1,2004,NULL,'170'),(338806,'tvMovie','Warrior Queen','Boudica',1,2003,NULL,'99'),(338828,'movie','But who killed Pamela Rose?','Mais qui a tué Pamela Rose?',1,2003,NULL,'95'),(339071,'movie','Girls Will Be Girls','Girls Will Be Girls',1,2003,NULL,'79'),(339072,'movie','Gladiatress','Gladiatress',1,2004,NULL,'89'),(339135,'movie','In Hell','In Hell',1,2003,NULL,'98'),(339291,'movie','A Series of Unfortunate Events','A Series of Unfortunate Events',1,2004,NULL,'108'),(339840,'movie','Undead','Undead',1,2003,NULL,'104'),(339882,'movie','It\'s Better to Be Wanted for Murder Than Not to Be Wanted at All','It\'s Better to Be Wanted for Murder Than Not to Be Wanted at All',1,2003,NULL,'127'),(340012,'movie','Being Julia','Being Julia',1,2004,NULL,'104'),(340377,'movie','The Station Agent','The Station Agent',1,2003,NULL,'89'),(340855,'movie','Monster','Monster',1,2003,NULL,'109'),(341384,'movie','The Coast Guard','Hae anseon',1,2002,NULL,'91'),(342167,'movie','Camp','Camp',1,2003,NULL,'114'),(342258,'movie','Unleashed','Unleashed',1,2005,NULL,'103'),(342272,'movie','Dear Wendy','Dear Wendy',1,2005,NULL,'105'),(342492,'movie','The Green Butchers','De grønne slagtere',1,2003,NULL,'100'),(343112,'short','Traffic Crossing Leeds Bridge','Traffic Crossing Leeds Bridge',1,1888,NULL,'1'),(343660,'movie','50 First Dates','50 First Dates',1,2004,NULL,'99'),(343737,'movie','The Good Shepherd','The Good Shepherd',1,2006,NULL,'167'),(343818,'movie','I, Robot','I, Robot',1,2004,NULL,'115'),(344510,'movie','A Very Long Engagement','Un long dimanche de fiançailles',1,2004,NULL,'133'),(344604,'movie','Après Vous','Après vous...',1,2003,NULL,'110'),(344854,'movie','Arthur and the Invisibles','Arthur et les Minimoys',1,2006,NULL,'94'),(345074,'movie','Connie and Carla','Connie and Carla',1,2004,NULL,'108'),(345950,'movie','The SpongeBob SquarePants Movie','The SpongeBob SquarePants Movie',1,2004,NULL,'87'),(346156,'movie','Sky Captain and the World of Tomorrow','Sky Captain and the World of Tomorrow',1,2004,NULL,'106'),(346336,'movie','The Best of Youth','La meglio gioventù',1,2003,NULL,'366'),(346491,'movie','Alexander','Alexander',1,2004,NULL,'175'),(347048,'movie','Head-On','Gegen die Wand',1,2004,NULL,'121'),(347149,'movie','Howl\'s Moving Castle','Hauru no ugoku shiro',1,2004,NULL,'119'),(347618,'movie','The Cat Returns','Neko no ongaeshi',1,2002,NULL,'75'),(348062,'movie','So, You\'ve Downloaded a Demon','So, You\'ve Downloaded a Demon',1,2007,NULL,'90'),(348150,'movie','Superman Returns','Superman Returns',1,2006,NULL,'154'),(348225,'movie','Tomie: Re-birth','Tomie: Re-birth',1,2001,NULL,'101'),(348226,'movie','Tomie: Forbidden Fruit','Tomie: Saishuu-shô - kindan no kajitsu',1,2002,NULL,'91'),(348333,'movie','Waiting...','Waiting...',1,2005,NULL,'94'),(348593,'movie','The Door in the Floor','The Door in the Floor',1,2004,NULL,'111'),(348836,'movie','Gothika','Gothika',1,2003,NULL,'98'),(348853,'movie','Nathalie...','Nathalie...',1,2003,NULL,'106'),(348913,'tvSeries','Dead Like Me','Dead Like Me',1,2003,2004,'60'),(349205,'movie','Cheaper by the Dozen','Cheaper by the Dozen',1,2003,NULL,'98'),(349260,'movie','In My Country','Country of My Skull',1,2004,NULL,'105'),(349345,'video','Despiser','Despiser',1,2003,NULL,'105'),(349349,'movie','Die You Zombie Bastards!','Die You Zombie Bastards!',1,2005,NULL,'97'),(349416,'movie','Eulogy','Eulogy',1,2004,NULL,'91'),(349825,'movie','Miracle','Miracle',1,2004,NULL,'135'),(349903,'movie','Ocean\'s Twelve','Ocean\'s Twelve',1,2004,NULL,'125'),(350028,'movie','Raising Helen','Raising Helen',1,2004,NULL,'119'),(350258,'movie','Ray','Ray',1,2004,NULL,'152'),(351238,'movie','Distant Lights','Lichter',1,2003,NULL,'105'),(351283,'movie','Madagascar','Madagascar',1,2005,NULL,'86'),(351817,'movie','The Twilight Samurai','Tasogare Seibei',1,2002,NULL,'129'),(351977,'movie','Walking Tall','Walking Tall',1,2004,NULL,'86'),(352248,'movie','Cinderella Man','Cinderella Man',1,2005,NULL,'144'),(353489,'movie','Ginger Snaps 2: Unleashed','Ginger Snaps: Unleashed',1,2004,NULL,'94'),(353969,'movie','Memories of Murder','Salinui chueok',1,2003,NULL,'131'),(354575,'movie','The Five Obstructions','De fem benspænd',1,2003,NULL,'90'),(354772,'video','Playboy\'s No Boys Allowed','Playboy\'s No Boys Allowed',1,2000,NULL,'51'),(354899,'movie','The Science of Sleep','La science des rêves',1,2006,NULL,'105'),(355702,'movie','Lords of Dogtown','Lords of Dogtown',1,2005,NULL,'107'),(356150,'movie','EuroTrip','EuroTrip',1,2004,NULL,'92'),(356470,'movie','A Cinderella Story','A Cinderella Story',1,2004,NULL,'95'),(356634,'movie','Garfield','Garfield',1,2004,NULL,'80'),(356680,'movie','The Family Stone','The Family Stone',1,2005,NULL,'103'),(356721,'movie','I Heart Huckabees','I Heart Huckabees',1,2004,NULL,'107'),(356910,'movie','Mr. & Mrs. Smith','Mr. & Mrs. Smith',1,2005,NULL,'120'),(357110,'movie','The Ballad of Jack and Rose','The Ballad of Jack and Rose',1,2005,NULL,'112'),(357277,'movie','Elektra','Elektra',1,2005,NULL,'97'),(357413,'movie','Anchorman: The Legend of Ron Burgundy','Anchorman: The Legend of Ron Burgundy',1,2004,NULL,'94'),(357507,'movie','Boogeyman','Boogeyman',1,2005,NULL,'89'),(358082,'movie','Robots','Robots',1,2005,NULL,'91'),(358273,'movie','Walk the Line','Walk the Line',1,2005,NULL,'136'),(359013,'movie','Blade: Trinity','Blade: Trinity',1,2004,NULL,'113'),(359423,'movie','A Home at the End of the World','A Home at the End of the World',1,2004,NULL,'97'),(359610,'tvEpisode','New York City Opera: A Little Night Music','New York City Opera: A Little Night Music',1,1990,NULL,'178'),(359950,'movie','The Secret Life of Walter Mitty','The Secret Life of Walter Mitty',1,2013,NULL,'114'),(360201,'movie','Wimbledon','Wimbledon',1,2004,NULL,'98'),(360486,'movie','Constantine','Constantine',1,2005,NULL,'121'),(360717,'movie','King Kong','King Kong',1,2005,NULL,'187'),(360779,'movie','Marseille','Marseille',1,2004,NULL,'95'),(360845,'movie','Notre musique','Notre musique',1,2004,NULL,'80'),(361089,'movie','Valiant','Valiant',1,2005,NULL,'76'),(361411,'movie','Bride & Prejudice','Bride & Prejudice',1,2004,NULL,'122'),(361467,'movie','Confessions of a Teenage Drama Queen','Confessions of a Teenage Drama Queen',1,2004,NULL,'89'),(361693,'movie','Happy Endings','Happy Endings',1,2005,NULL,'128'),(361696,'movie','Raise Your Voice','Raise Your Voice',1,2004,NULL,'107'),(361748,'movie','Inglourious Basterds','Inglourious Basterds',1,2009,NULL,'153'),(361862,'movie','The Machinist','The Machinist',1,2004,NULL,'101'),(361921,'short','Monkeyshines, No. 1','Monkeyshines, No. 1',1,1890,NULL,'1'),(362004,'movie','Palindromes','Palindromes',1,2004,NULL,'100'),(362120,'movie','Scary Movie 4','Scary Movie 4',1,2006,NULL,'83'),(362165,'movie','Son of the Mask','Son of the Mask',1,2005,NULL,'94'),(362227,'movie','The Terminal','The Terminal',1,2004,NULL,'128'),(362269,'movie','Kinsey','Kinsey',1,2004,NULL,'118'),(362270,'movie','The Life Aquatic with Steve Zissou','The Life Aquatic with Steve Zissou',1,2004,NULL,'119'),(362387,'movie','2LDK','2LDK',1,2003,NULL,'70'),(362478,'movie','The Box','The Box',1,2009,NULL,'115'),(363163,'movie','Downfall','Der Untergang',1,2004,NULL,'156'),(363226,'movie','The Blind Swordsman: Zatoichi','Zatôichi',1,2003,NULL,'116'),(363282,'movie','New York Minute','New York Minute',1,2004,NULL,'91'),(363547,'movie','Dawn of the Dead','Dawn of the Dead',1,2004,NULL,'101'),(363589,'movie','Elephant','Elephant',1,2003,NULL,'81'),(363771,'movie','The Chronicles of Narnia: The Lion, the Witch and the Wardrobe','The Chronicles of Narnia: The Lion, the Witch and the Wardrobe',1,2005,NULL,'143'),(363988,'movie','Secret Window','Secret Window',1,2004,NULL,'96'),(364045,'movie','Taking Lives','Taking Lives',1,2004,NULL,'103'),(364343,'movie','The Final Cut','The Final Cut',1,2004,NULL,'95'),(364385,'movie','Ju-on: The Grudge','Ju-on',1,2002,NULL,'92'),(364517,'movie','Love Me If You Dare','Jeux d\'enfants',1,2003,NULL,'93'),(364569,'movie','Oldboy','Oldeuboi',1,2003,NULL,'120'),(364725,'movie','Dodgeball: A True Underdog Story','Dodgeball: A True Underdog Story',1,2004,NULL,'92'),(364751,'movie','Without a Paddle','Without a Paddle',1,2004,NULL,'95'),(364955,'movie','Art School Confidential','Art School Confidential',1,2006,NULL,'102'),(364961,'movie','The Assassination of Richard Nixon','The Assassination of Richard Nixon',1,2004,NULL,'95'),(364986,'movie','Ben & Arthur','Ben & Arthur',1,2002,NULL,'85'),(365125,'movie','A Dirty Shame','A Dirty Shame',1,2004,NULL,'89'),(365135,'movie','Double Dare','Double Dare',1,2004,NULL,'81'),(365376,'movie','A Tale of Two Sisters','Janghwa, Hongryeon',1,2003,NULL,'114'),(365545,'movie','Nappily Ever After','Nappily Ever After',1,2018,NULL,'98'),(365748,'movie','Shaun of the Dead','Shaun of the Dead',1,2004,NULL,'99'),(365830,'movie','Tenacious D in the Pick of Destiny','Tenacious D in The Pick of Destiny',1,2006,NULL,'94'),(365907,'movie','A Walk Among the Tombstones','A Walk Among the Tombstones',1,2014,NULL,'114'),(365929,'movie','Whiteout','Whiteout',1,2009,NULL,'101'),(365957,'movie','You Got Served','You Got Served',1,2004,NULL,'95'),(366548,'movie','Happy Feet','Happy Feet',1,2006,NULL,'108'),(366551,'movie','Harold & Kumar Go to White Castle','Harold & Kumar Go to White Castle',1,2004,NULL,'88'),(366627,'movie','The Jacket','The Jacket',1,2005,NULL,'103'),(366780,'movie','Mirrormask','Mirrormask',1,2005,NULL,'101'),(366920,'movie','Pride and Prejudice','Pride and Prejudice',1,2003,NULL,'104'),(367000,'movie','House of Voices','Saint Ange',1,2004,NULL,'98'),(367027,'movie','Shortbus','Shortbus',1,2006,NULL,'101'),(367085,'movie','Soul Plane','Soul Plane',1,2004,NULL,'86'),(367089,'movie','The Squid and the Whale','The Squid and the Whale',1,2005,NULL,'81'),(367110,'movie','Swades','Swades: We, the People',1,2004,NULL,'210'),(367174,'movie','Turn Left, Turn Right','Heung joh chow heung yau chow',1,2003,NULL,'95'),(367177,'short','The Twentieth Century Tramp; or, Happy Hooligan and His Airship','The Twentieth Century Tramp; or, Happy Hooligan and His Airship',1,1902,NULL,'1'),(367462,'movie','Say Yes Quickly','Say Yes Quickly',1,2004,NULL,'88'),(367479,'movie','After the Sunset','After the Sunset',1,2004,NULL,'97'),(367594,'movie','Charlie and the Chocolate Factory','Charlie and the Chocolate Factory',1,2005,NULL,'115'),(367631,'movie','D.E.B.S.','D.E.B.S.',1,2004,NULL,'91'),(367859,'movie','The Man Who Copied','O Homem Que Copiava',1,2003,NULL,'123'),(367882,'movie','Indiana Jones and the Kingdom of the Crystal Skull','Indiana Jones and the Kingdom of the Crystal Skull',1,2008,NULL,'122'),(367913,'movie','Ju-On: The Grudge 2','Ju-on 2',1,2003,NULL,'92'),(367959,'movie','Hannibal Rising','Hannibal Rising',1,2007,NULL,'121'),(368222,'movie','Romance & Cigarettes','Romance & Cigarettes',1,2005,NULL,'105'),(368226,'movie','The Room','The Room',1,2003,NULL,'99'),(368310,'movie','Sunset Story','Sunset Story',1,2003,NULL,'73'),(368447,'movie','The Village','The Village',1,2004,NULL,'108'),(368563,'movie','Possession','Possession',1,2009,NULL,'86'),(368658,'movie','Stage Beauty','Stage Beauty',1,2004,NULL,'106'),(368667,'movie','Interstella 5555: The 5tory of the 5ecret 5tar 5ystem','Interstella 5555: The 5tory of the 5ecret 5tar 5ystem',1,2003,NULL,'68'),(368709,'movie','Elizabethtown','Elizabethtown',1,2005,NULL,'123'),(368794,'movie','I\'m Not There','I\'m Not There',1,2007,NULL,'135'),(368891,'movie','National Treasure','National Treasure',1,2004,NULL,'131'),(368909,'movie','Ong-Bak: The Thai Warrior','Ong-Bak',1,2003,NULL,'108'),(368933,'movie','The Princess Diaries 2: Royal Engagement','The Princess Diaries 2: Royal Engagement',1,2004,NULL,'113'),(368975,'movie','Sleepover','Sleepover',1,2004,NULL,'89'),(369053,'movie','Separate Lies','Separate Lies',1,2005,NULL,'85'),(369339,'movie','Collateral','Collateral',1,2004,NULL,'120'),(369436,'movie','Four Christmases','Four Christmases',1,2008,NULL,'88'),(369441,'movie','Fun with Dick and Jane','Fun with Dick and Jane',1,2005,NULL,'90'),(369610,'movie','Jurassic World','Jurassic World',1,2015,NULL,'124'),(369672,'movie','A Love Song for Bobby Long','A Love Song for Bobby Long',1,2004,NULL,'119'),(369702,'movie','The Sea Inside','Mar adentro',1,2004,NULL,'126'),(369735,'movie','Monster-in-Law','Monster-in-Law',1,2005,NULL,'101'),(369994,'movie','Strangers with Candy','Strangers with Candy',1,2005,NULL,'97'),(370032,'movie','Ultraviolet','Ultraviolet',1,2006,NULL,'88'),(370263,'movie','Alien vs. Predator','AVP: Alien vs. Predator',1,2004,NULL,'101'),(370754,'short','Voices of a Distant Star','Hoshi no koe',1,2002,NULL,'25'),(370919,'movie','Hungarian Vagabond','Magyar vándor',1,2004,NULL,'109'),(370986,'movie','Mysterious Skin','Mysterious Skin',1,2004,NULL,'105'),(371246,'movie','Spanglish','Spanglish',1,2004,NULL,'131'),(371257,'movie','Stay','Stay',1,2005,NULL,'99'),(371606,'movie','Chicken Little','Chicken Little',1,2005,NULL,'81'),(371724,'movie','The Hitchhiker\'s Guide to the Galaxy','The Hitchhiker\'s Guide to the Galaxy',1,2005,NULL,'109'),(371746,'movie','Iron Man','Iron Man',1,2008,NULL,'126'),(371823,'video','Mickey, Donald, Goofy: The Three Musketeers','Mickey, Donald, Goofy: The Three Musketeers',1,2004,NULL,'67'),(371835,'tvMovie','Ghost Cat','Mrs. Ashboro\'s Cat',1,2004,NULL,'90'),(372122,'movie','Adam & Steve','Adam & Steve',1,2005,NULL,'99'),(372183,'movie','The Bourne Supremacy','The Bourne Supremacy',1,2004,NULL,'108'),(372334,'movie','House of D','House of D',1,2004,NULL,'97'),(372532,'movie','The Wedding Date','The Wedding Date',1,2005,NULL,'90'),(372588,'movie','Team America: World Police','Team America: World Police',1,2004,NULL,'98'),(372784,'movie','Batman Begins','Batman Begins',1,2005,NULL,'140'),(372832,'tvMovie','Skeleton Man','Skeleton Man',1,2004,NULL,'95'),(373051,'movie','Journey to the Center of the Earth','Journey to the Center of the Earth',1,2008,NULL,'93'),(373074,'movie','Kung Fu Hustle','Kung fu',1,2004,NULL,'99'),(373450,'movie','Where the Truth Lies','Where the Truth Lies',1,2005,NULL,'107'),(373469,'movie','Kiss Kiss Bang Bang','Kiss Kiss Bang Bang',1,2005,NULL,'103'),(373883,'movie','Halloween','Halloween',1,2007,NULL,'109'),(373889,'movie','Harry Potter and the Order of the Phoenix','Harry Potter and the Order of the Phoenix',1,2007,NULL,'138'),(373981,'movie','Control','Kontroll',1,2003,NULL,'111'),(374102,'movie','Open Water','Open Water',1,2003,NULL,'79'),(374180,'movie','Romasanta: The Werewolf Hunt','Romasanta',1,2004,NULL,'90'),(374536,'movie','Bewitched','Bewitched',1,2005,NULL,'102'),(374546,'movie','Spring, Summer, Fall, Winter... and Spring','Bom yeoreum gaeul gyeoul geurigo bom',1,2003,NULL,'103'),(374900,'movie','Napoleon Dynamite','Napoleon Dynamite',1,2004,NULL,'96'),(375063,'movie','Sideways','Sideways',1,2004,NULL,'127'),(375210,'movie','White Noise','White Noise',1,2005,NULL,'101'),(375233,'movie','Innocence','Innocence',1,2004,NULL,'122'),(375568,'movie','Astro Boy','Astro Boy',1,2009,NULL,'94'),(375679,'movie','Crash','Crash',1,2004,NULL,'112'),(375785,'movie','Gray Matters','Gray Matters',1,2006,NULL,'96'),(375912,'movie','Layer Cake','Layer Cake',1,2004,NULL,'105'),(376078,'video','Planet of the Erotic Ape','Planet of the Erotic Ape',1,2002,NULL,'68'),(376136,'movie','The Rum Diary','The Rum Diary',1,2011,NULL,'119'),(376263,'movie','Tough Luck','Tough Luck',1,2003,NULL,'88'),(376541,'movie','Closer','Closer',1,2004,NULL,'104'),(376994,'movie','X-Men: The Last Stand','X-Men: The Last Stand',1,2006,NULL,'104'),(377062,'movie','Flight of the Phoenix','Flight of the Phoenix',1,2004,NULL,'113'),(377084,'movie','Ladies in Lavender','Ladies in Lavender',1,2004,NULL,'104'),(377092,'movie','Mean Girls','Mean Girls',1,2004,NULL,'97'),(377094,'movie','Moi et mon blanc','Moi et mon blanc',1,2003,NULL,'97'),(377107,'movie','Proof','Proof',1,2005,NULL,'100'),(377109,'movie','The Ring Two','The Ring Two',1,2005,NULL,'110'),(377191,'tvSeries','Hot Wheels Highway 35 World Race','Hot Wheels Highway 35 World Race',1,2003,2006,NULL),(377309,'movie','Survival Island','Three',1,2005,NULL,'95'),(377556,'movie','Goodbye, Dragon Inn','Bu san',1,2003,NULL,'82'),(377683,'video','Connie Gomper & the Pack','Connie Gomper & the Pack',1,1996,NULL,NULL),(377713,'movie','Cube Zero','Cube Zero',1,2004,NULL,'97'),(377752,'movie','Dear Frankie','Dear Frankie',1,2004,NULL,'105'),(377981,'movie','Gnomeo & Juliet','Gnomeo & Juliet',1,2011,NULL,'84'),(377995,'short','Grandma Threading Her Needle','Grandma Threading Her Needle',1,1900,NULL,'1'),(378194,'movie','Kill Bill: Vol. 2','Kill Bill: Vol. 2',1,2004,NULL,'137'),(378661,'movie','They Came Back','Les Revenants',1,2004,NULL,'102'),(378793,'movie','Speak','Speak',1,2004,NULL,'89'),(379071,'movie','Stop Mom Teresa!','Állítsátok meg Terézanyut!',1,2004,NULL,'127'),(379217,'movie','Coffee and Cigarettes','Coffee and Cigarettes',1,2003,NULL,'95'),(379306,'movie','A Good Woman','A Good Woman',1,2004,NULL,'93'),(379363,'movie','Malibu Spring Break','Malibu Spring Break',1,2003,NULL,'77'),(379725,'movie','Capote','Capote',1,2005,NULL,'114'),(379786,'movie','Serenity','Serenity',1,2005,NULL,'119'),(380066,'movie','The Woods','The Woods',1,2006,NULL,'91'),(380366,'movie','A Fond Kiss','Ae Fond Kiss...',1,2004,NULL,'104'),(380510,'movie','The Lovely Bones','The Lovely Bones',1,2009,NULL,'135'),(380599,'movie','Oliver Twist','Oliver Twist',1,2005,NULL,'130'),(380623,'movie','The Perfect Man','The Perfect Man',1,2005,NULL,'100'),(380726,'movie','Ancient Tale: When the Sun Was God','Stara basn. Kiedy slonce bylo bogiem',1,2003,NULL,'103'),(380761,'movie','Let Him Rest in Peace','Tomo yo shizukani nemure',1,1985,NULL,'103'),(381061,'movie','Casino Royale','Casino Royale',1,2006,NULL,'144'),(381348,'movie','The Place Promised in Our Early Days','Kumo no mukô, yakusoku no basho',1,2004,NULL,'90'),(381668,'movie','Tropical Malady','Sud pralad',1,2004,NULL,'118'),(381681,'movie','Before Sunset','Before Sunset',1,2004,NULL,'80'),(381707,'movie','White Chicks','White Chicks',1,2004,NULL,'109'),(381849,'movie','3:10 to Yuma','3:10 to Yuma',1,2007,NULL,'122'),(381940,'movie','Cargo','Cargo',1,2009,NULL,'112'),(381966,'movie','Creep','Creep',1,2004,NULL,'85'),(382077,'movie','Hide and Seek','Hide and Seek',1,2005,NULL,'101'),(382189,'movie','My Summer of Love','My Summer of Love',1,2004,NULL,'86'),(382625,'movie','The Da Vinci Code','The Da Vinci Code',1,2006,NULL,'149'),(382628,'movie','Dark Water','Dark Water',1,2005,NULL,'105'),(382761,'movie','Jennifer\'s Shadow','Jennifer\'s Shadow',1,2004,NULL,'96'),(382810,'movie','Little Fish','Little Fish',1,2005,NULL,'114'),(382932,'movie','Ratatouille','Ratatouille',1,2007,NULL,'111'),(382992,'movie','Stealth','Stealth',1,2005,NULL,'121'),(383028,'movie','Synecdoche, New York','Synecdoche, New York',1,2008,NULL,'124'),(383060,'movie','Zoom','Zoom',1,2006,NULL,'93'),(383206,'video','Barbie of Swan Lake','Barbie of Swan Lake',1,2003,NULL,'81'),(383216,'movie','The Pink Panther','The Pink Panther',1,2006,NULL,'93'),(383222,'movie','BloodRayne','BloodRayne',1,2005,NULL,'95'),(383574,'movie','Pirates of the Caribbean: Dead Man\'s Chest','Pirates of the Caribbean: Dead Man\'s Chest',1,2006,NULL,'151'),(383694,'movie','Vera Drake','Vera Drake',1,2004,NULL,'125'),(384116,'movie','G.O.R.A.','G.O.R.A.',1,2004,NULL,'127'),(384286,'movie','Cry Wolf','Cry Wolf',1,2005,NULL,'90'),(384369,'movie','Before the Fall','Napola - Elite für den Führer',1,2004,NULL,'110'),(384504,'movie','Saving Face','Saving Face',1,2004,NULL,'91'),(384533,'movie','She Hate Me','She Hate Me',1,2004,NULL,'138'),(384537,'movie','Silent Hill','Silent Hill',1,2006,NULL,'125'),(384573,'movie','Swimmers','Swimmers',1,2005,NULL,'90'),(384793,'movie','Accepted','Accepted',1,2006,NULL,'93'),(384806,'movie','The Amityville Horror','The Amityville Horror',1,2005,NULL,'90'),(384819,'movie','Azumi','Azumi',1,2003,NULL,'128'),(385002,'movie','Green Street Hooligans','Hooligans',1,2005,NULL,'109'),(385267,'movie','In Good Company','In Good Company',1,2004,NULL,'110'),(385307,'movie','Miss Congeniality 2: Armed & Fabulous','Miss Congeniality 2: Armed & Fabulous',1,2005,NULL,'115'),(385700,'movie','Final Fantasy VII: Advent Children','Fainaru fantajî sebun adobento chirudoren',1,2005,NULL,'101'),(385726,'movie','Glory Road','Glory Road',1,2006,NULL,'118'),(385752,'movie','The Golden Compass','The Golden Compass',1,2007,NULL,'113'),(385880,'movie','Monster House','Monster House',1,2006,NULL,'91'),(385887,'movie','Motherless Brooklyn','Motherless Brooklyn',1,2019,NULL,'144'),(386117,'movie','Where the Wild Things Are','Where the Wild Things Are',1,2009,NULL,'101'),(386140,'movie','The Legend of Zorro','The Legend of Zorro',1,2005,NULL,'129'),(386588,'movie','Hitch','Hitch',1,2005,NULL,'118'),(386820,'movie','The Trouble with Terkel','Terkel i knibe',1,2004,NULL,'77'),(386862,'movie','The Forest for the Trees','Der Wald vor lauter Bäumen',1,2003,NULL,'81'),(387131,'movie','The Constant Gardener','The Constant Gardener',1,2005,NULL,'129'),(387564,'movie','Saw','Saw',1,2004,NULL,'103'),(387658,'video','Bionicle 2: Legends of Metru Nui','Bionicle 2: Legends of Metru Nui',1,2004,NULL,'75'),(387808,'movie','Idiocracy','Idiocracy',1,2006,NULL,'84'),(387877,'movie','The Black Dahlia','The Black Dahlia',1,2006,NULL,'121'),(388125,'movie','In Her Shoes','In Her Shoes',1,2005,NULL,'130'),(388182,'movie','King of California','King of California',1,2007,NULL,'93'),(388311,'movie','Or (My Treasure)','Or',1,2004,NULL,'97'),(388419,'movie','Christmas with the Kranks','Christmas with the Kranks',1,2004,NULL,'99'),(388473,'movie','Tokyo Godfathers','Tôkyô goddofâzâzu',1,2003,NULL,'92'),(388482,'movie','Transporter 2','Transporter 2',1,2005,NULL,'87'),(388500,'movie','Beauty Shop','Beauty Shop',1,2005,NULL,'105'),(388789,'movie','Born Into Brothels: Calcutta\'s Red Light Kids','Born Into Brothels: Calcutta\'s Red Light Kids',1,2004,NULL,'85'),(388795,'movie','Brokeback Mountain','Brokeback Mountain',1,2005,NULL,'134'),(389557,'movie','Black Book','Zwartboek',1,2006,NULL,'145'),(389722,'movie','30 Days of Night','30 Days of Night',1,2007,NULL,'113'),(389790,'movie','Bee Movie','Bee Movie',1,2007,NULL,'91'),(389860,'movie','Click','Click',1,2006,NULL,'107'),(390205,'movie','Once Upon a Time in High School: The Spirit of Jeet Kune Do','Maljukgeori janhoksa',1,2004,NULL,'116'),(390221,'movie','Maria Full of Grace','Maria Full of Grace',1,2004,NULL,'101'),(390384,'movie','Primer','Primer',1,2004,NULL,'77'),(390450,'movie','Blessed','Blessed',1,2004,NULL,'94'),(391198,'movie','The Grudge','The Grudge',1,2004,NULL,'91'),(392728,'short','Roundhay Garden Scene','Roundhay Garden Scene',1,1888,NULL,'1'),(393109,'movie','Brick','Brick',1,2005,NULL,'110'),(393162,'movie','Coach Carter','Coach Carter',1,2005,NULL,'136'),(393685,'movie','Santa\'s Slay','Santa\'s Slay',1,2005,NULL,'78'),(393735,'movie','The Shaggy Dog','The Shaggy Dog',1,2006,NULL,'98'),(393956,'movie','Viva','Viva',1,2007,NULL,'120'),(395169,'movie','Hotel Rwanda','Hotel Rwanda',1,2004,NULL,'121'),(395251,'movie','The Producers','The Producers',1,2005,NULL,'134'),(395584,'movie','The Devil\'s Rejects','The Devil\'s Rejects',1,2005,NULL,'107'),(395699,'movie','The Pacifier','The Pacifier',1,2005,NULL,'95'),(395972,'movie','North Country','North Country',1,2005,NULL,'126'),(396171,'movie','Perfume: The Story of a Murderer','Perfume: The Story of a Murderer',1,2006,NULL,'147'),(396184,'movie','Pusher II','Pusher II',1,2004,NULL,'100'),(396269,'movie','Wedding Crashers','Wedding Crashers',1,2005,NULL,'119'),(396555,'movie','Meet the Robinsons','Meet the Robinsons',1,2007,NULL,'95'),(396652,'movie','Ice Princess','Ice Princess',1,2005,NULL,'98'),(396707,'movie','The Secret of Moonacre','The Secret of Moonacre',1,2008,NULL,'103'),(397065,'movie','House of Wax','House of Wax',1,2005,NULL,'113'),(397101,'movie','The Skeleton Key','The Skeleton Key',1,2005,NULL,'104'),(397313,'movie','Eight Below','Eight Below',1,2006,NULL,'120'),(397535,'movie','Memoirs of a Geisha','Memoirs of a Geisha',1,2005,NULL,'145'),(397892,'movie','Bolt','Bolt',1,2008,NULL,'96'),(398165,'movie','The Longest Yard','The Longest Yard',1,2005,NULL,'113'),(398286,'movie','Tangled','Tangled',1,2010,NULL,'100'),(398375,'movie','Rumor Has It...','Rumor Has It...',1,2005,NULL,'97'),(398712,'movie','Assault on Precinct 13','Assault on Precinct 13',1,2005,NULL,'109'),(398808,'movie','Bridge to Terabithia','Bridge to Terabithia',1,2007,NULL,'96'),(398913,'movie','DOA: Dead or Alive','DOA: Dead or Alive',1,2006,NULL,'87'),(399146,'movie','A History of Violence','A History of Violence',1,2005,NULL,'96'),(399201,'movie','The Island','The Island',1,2005,NULL,'136'),(399295,'movie','Lord of War','Lord of War',1,2005,NULL,'122'),(399412,'movie','Nina','Nina',1,2004,NULL,'85'),(400497,'movie','Herbie Fully Loaded','Herbie Fully Loaded',1,2005,NULL,'101'),(400717,'movie','Open Season','Open Season',1,2006,NULL,'86'),(401085,'movie','C.R.A.Z.Y.','C.R.A.Z.Y.',1,2005,NULL,'129'),(401233,'movie','Appleseed','Appurushîdo',1,2004,NULL,'101'),(401383,'movie','The Diving Bell and the Butterfly','Le scaphandre et le papillon',1,2007,NULL,'112'),(401385,'movie','Say Uncle','Say Uncle',1,2005,NULL,'91'),(401398,'video','Kronk\'s New Groove','Kronk\'s New Groove',1,2005,NULL,'75'),(401711,'movie','Paris, je t\'aime','Paris, je t\'aime',1,2006,NULL,'120'),(401729,'movie','John Carter','John Carter',1,2012,NULL,'132'),(401792,'movie','Sin City','Sin City',1,2005,NULL,'124'),(401997,'movie','Breach','Breach',1,2007,NULL,'110'),(402022,'movie','Æon Flux','Æon Flux',1,2005,NULL,'93'),(402115,'movie','Just Sex and Nothing Else','Csak szex és más semmi',1,2005,NULL,'97'),(402158,'movie','Empire of the Wolves','L\'empire des loups',1,2005,NULL,'128'),(402399,'movie','The New World','The New World',1,2005,NULL,'135'),(402894,'movie','Casanova','Casanova',1,2005,NULL,'112'),(403358,'movie','Night Watch','Nochnoy dozor',1,2004,NULL,'114'),(403508,'movie','The Sisterhood of the Traveling Pants','The Sisterhood of the Traveling Pants',1,2005,NULL,'119'),(403702,'movie','Youth in Revolt','Youth in Revolt',1,2009,NULL,'90'),(403703,'movie','Yu-Gi-Oh!: The Movie - Pyramid of Light','Yu-Gi-Oh! The Movie',1,2004,NULL,'100'),(404032,'movie','The Exorcism of Emily Rose','The Exorcism of Emily Rose',1,2005,NULL,'119'),(404203,'movie','Little Children','Little Children',1,2006,NULL,'137'),(404978,'movie','Gambit','Gambit',1,2012,NULL,'89'),(405094,'movie','The Lives of Others','Das Leben der Anderen',1,2006,NULL,'137'),(405159,'movie','Million Dollar Baby','Million Dollar Baby',1,2004,NULL,'132'),(405296,'movie','A Scanner Darkly','A Scanner Darkly',1,2006,NULL,'100'),(405325,'movie','Sky High','Sky High',1,2005,NULL,'100'),(405336,'movie','Southland Tales','Southland Tales',1,2006,NULL,'145'),(405422,'movie','The 40-Year-Old Virgin','The 40 Year Old Virgin',1,2005,NULL,'116'),(405508,'movie','Rang De Basanti','Rang De Basanti',1,2006,NULL,'167'),(405676,'movie','All the King\'s Men','All the King\'s Men',1,2006,NULL,'128'),(406158,'movie','The Prize Winner of Defiance, Ohio','The Prize Winner of Defiance, Ohio',1,2005,NULL,'99'),(406375,'movie','Zathura: A Space Adventure','Zathura: A Space Adventure',1,2005,NULL,'101'),(406649,'tvMovie','A Christmas Carol: The Musical','A Christmas Carol',1,2004,NULL,'97'),(406709,'short','Dies irae','Dies irae',1,2003,NULL,'14'),(406759,'movie','The Eye','The Eye',1,2008,NULL,'98'),(406816,'movie','The Guardian','The Guardian',1,2006,NULL,'139'),(407246,'movie','Duck Season','Temporada de patos',1,2004,NULL,'90'),(407265,'movie','Transamerica','Transamerica',1,2005,NULL,'103'),(407304,'movie','War of the Worlds','War of the Worlds',1,2005,NULL,'116'),(407851,'movie','Hana and Alice','Hana to Arisu',1,2004,NULL,'135'),(407887,'movie','The Departed','The Departed',1,2006,NULL,'151'),(408060,'movie','1','1',1,2009,NULL,'91'),(408236,'movie','Sweeney Todd: The Demon Barber of Fleet Street','Sweeney Todd: The Demon Barber of Fleet Street',1,2007,NULL,'116'),(408306,'movie','Munich','Munich',1,2005,NULL,'164'),(408777,'movie','The Edukators','Die fetten Jahre sind vorbei',1,2004,NULL,'127'),(408790,'movie','Flightplan','Flightplan',1,2005,NULL,'98'),(408839,'movie','The Heartbreak Kid','The Heartbreak Kid',1,2007,NULL,'116'),(408961,'movie','Kids in America','Kids in America',1,2005,NULL,'91'),(408985,'movie','Last Holiday','Last Holiday',1,2006,NULL,'112'),(409182,'movie','Poseidon','Poseidon',1,2006,NULL,'98'),(409459,'movie','Watchmen','Watchmen',1,2009,NULL,'162'),(409842,'video','Corpses','Corpses',1,2004,NULL,'90'),(409847,'movie','Cowboys & Aliens','Cowboys & Aliens',1,2011,NULL,'119'),(410097,'movie','Hustle & Flow','Hustle & Flow',1,2005,NULL,'116'),(410297,'movie','The Lake House','The Lake House',1,2006,NULL,'99'),(410377,'movie','Nim\'s Island','Nim\'s Island',1,2008,NULL,'96'),(410696,'tvMovie','Stuck in the Suburbs','Stuck in the Suburbs',1,2004,NULL,'76'),(410764,'movie','Tideland','Tideland',1,2005,NULL,'120'),(411061,'movie','88 Minutes','88 Minutes',1,2007,NULL,'108'),(411098,'movie','All the Invisible Children','All the Invisible Children',1,2005,NULL,'124'),(411195,'movie','Breakfast on Pluto','Breakfast on Pluto',1,2005,NULL,'128'),(411477,'movie','Hellboy II: The Golden Army','Hellboy II: The Golden Army',1,2008,NULL,'120'),(411705,'movie','9 Songs','9 Songs',1,2004,NULL,'71'),(411951,'movie','Tekken','Tekken',1,2010,NULL,'91'),(412019,'movie','Broken Flowers','Broken Flowers',1,2005,NULL,'106'),(412536,'movie','Brideshead Revisited','Brideshead Revisited',1,2008,NULL,'134'),(412798,'movie','Half Light','Half Light',1,2006,NULL,'110'),(412915,'tvMovie','The Librarian: Quest for the Spear','The Librarian: Quest for the Spear',1,2004,NULL,'92'),(412922,'movie','Little Manhattan','Little Manhattan',1,2005,NULL,'84'),(413219,'short','Rêve au coin du feu','Rêve au coin du feu',1,1894,NULL,NULL),(413267,'movie','Shrek the Third','Shrek the Third',1,2007,NULL,'93'),(413268,'video','Sideline Secrets','Sideline Secrets',1,2006,NULL,'96'),(413300,'movie','Spider-Man 3','Spider-Man 3',1,2007,NULL,'139'),(413573,'tvSeries','Grey\'s Anatomy','Grey\'s Anatomy',1,2005,NULL,'41'),(414055,'movie','Elizabeth: The Golden Age','Elizabeth: The Golden Age',1,2007,NULL,'114'),(414387,'movie','Pride & Prejudice','Pride & Prejudice',1,2005,NULL,'129'),(414852,'movie','District B13','Banlieue 13',1,2004,NULL,'84'),(414853,'movie','Barnyard','Barnyard',1,2006,NULL,'90'),(414923,'tvMovie','Crimes of Fashion','Crimes of Fashion',1,2004,NULL,'90'),(414951,'movie','The Quiet','The Quiet',1,2005,NULL,'96'),(414982,'movie','Final Destination 3','Final Destination 3',1,2006,NULL,'93'),(414993,'movie','The Fountain','The Fountain',1,2006,NULL,'97'),(415127,'movie','The Man from London','A londoni férfi',1,2007,NULL,'139'),(415167,'movie','Mortuary','Mortuary',1,2005,NULL,'94'),(415306,'movie','Talladega Nights: The Ballad of Ricky Bobby','Talladega Nights: The Ballad of Ricky Bobby',1,2006,NULL,'108'),(415679,'movie','Boy Eats Girl','Boy Eats Girl',1,2005,NULL,'80'),(415819,'movie','The Guy Was Cool','Geu nom-eun meot-iss-eoss-da',1,2004,NULL,'113'),(415833,'movie','Hate Crime','Hate Crime',1,2005,NULL,'104'),(415855,'movie','Hotel','Hotel',1,2004,NULL,'76'),(415978,'movie','Me and You and Everyone We Know','Me and You and Everyone We Know',1,2005,NULL,'91'),(416046,'short','Monkeyshines, No. 2','Monkeyshines, No. 2',1,1890,NULL,'1'),(416047,'short','Monkeyshines, No. 3','Monkeyshines, No. 3',1,1890,NULL,'1'),(416212,'movie','The Secret Life of Bees','The Secret Life of Bees',1,2008,NULL,'114'),(416220,'movie','Kamikaze Girls','Shimotsuma monogatari',1,2004,NULL,'102'),(416236,'movie','The Spiderwick Chronicles','The Spiderwick Chronicles',1,2008,NULL,'96'),(416315,'movie','Wolf Creek','Wolf Creek',1,2005,NULL,'99'),(416320,'movie','Match Point','Match Point',1,2005,NULL,'124'),(416449,'movie','300','300',1,2006,NULL,'117'),(416496,'movie','Bandidas','Bandidas',1,2006,NULL,'93'),(416508,'movie','Becoming Jane','Becoming Jane',1,2007,NULL,'120'),(417001,'movie','Must Love Dogs','Must Love Dogs',1,2005,NULL,'98'),(417056,'movie','Pledge This!','Pledge This!',1,2006,NULL,'91'),(417148,'movie','Snakes on a Plane','Snakes on a Plane',1,2006,NULL,'105'),(417225,'movie','Idlewild','Idlewild',1,2006,NULL,'121'),(417349,'tvMiniSeries','North & South','North & South',1,2004,2004,'235'),(417385,'movie','12 and Holding','12 and Holding',1,2005,NULL,'95'),(417614,'movie','Dreamland','Dreamland',1,2006,NULL,'88'),(417658,'movie','Factotum','Factotum',1,2005,NULL,'94'),(417741,'movie','Harry Potter and the Half-Blood Prince','Harry Potter and the Half-Blood Prince',1,2009,NULL,'153'),(418239,'movie','Tickets','Tickets',1,2005,NULL,'109'),(418279,'movie','Transformers','Transformers',1,2007,NULL,'144'),(418455,'movie','Adam\'s Apples','Adams æbler',1,2005,NULL,'94'),(418689,'movie','Flags of Our Fathers','Flags of Our Fathers',1,2006,NULL,'135'),(418763,'movie','Jarhead','Jarhead',1,2005,NULL,'125'),(418773,'movie','Junebug','Junebug',1,2005,NULL,'106'),(419294,'movie','The Three Burials of Melquiades Estrada','The Three Burials of Melquiades Estrada',1,2005,NULL,'121'),(419677,'movie','Dead Man\'s Shoes','Dead Man\'s Shoes',1,2004,NULL,'90'),(419706,'movie','Doom','Doom',1,2005,NULL,'105'),(419773,'movie','Gespenster','Gespenster',1,2005,NULL,'85'),(419887,'movie','The Kite Runner','The Kite Runner',1,2007,NULL,'128'),(419946,'movie','The Marine','The Marine',1,2006,NULL,'92'),(420015,'movie','Nine Lives','Nine Lives',1,2005,NULL,'115'),(420076,'movie','Pokémon: Jirachi - Wish Maker','Gekijouban Poketto monsutâ Adobansu jenerêshon: Nanayo no negaiboshi Jirâchi',1,2003,NULL,'81'),(420087,'movie','A Prairie Home Companion','A Prairie Home Companion',1,2006,NULL,'105'),(420223,'movie','Stranger Than Fiction','Stranger Than Fiction',1,2006,NULL,'113'),(420238,'movie','The Tale of Despereaux','The Tale of Despereaux',1,2008,NULL,'93'),(420251,'movie','Three... Extremes','Sam gang 2',1,2004,NULL,'126'),(420293,'movie','The Stanford Prison Experiment','The Stanford Prison Experiment',1,2015,NULL,'122'),(420332,'movie','Veer-Zaara','Veer-Zaara',1,2004,NULL,'192'),(420509,'movie','The Aura','El aura',1,2005,NULL,'134'),(421051,'movie','Daniel the Wizard','Daniel der Zauberer',1,2004,NULL,'81'),(421054,'movie','Domino','Domino',1,2005,NULL,'127'),(421082,'movie','Control','Control',1,2007,NULL,'122'),(421229,'movie','Mrs Palfrey at the Claremont','Mrs Palfrey at the Claremont',1,2005,NULL,'108'),(421238,'movie','The Proposition','The Proposition',1,2005,NULL,'104'),(421239,'movie','Red Eye','Red Eye',1,2005,NULL,'85'),(421528,'movie','20 Centimeters','20 centímetros',1,2005,NULL,'112'),(421715,'movie','The Curious Case of Benjamin Button','The Curious Case of Benjamin Button',1,2008,NULL,'166'),(421994,'movie','Imagine Me & You','Imagine Me & You',1,2005,NULL,'90'),(422015,'movie','The Ax','Le couperet',1,2005,NULL,'117'),(422093,'movie','Diary of a Mad Black Woman','Diary of a Mad Black Woman',1,2005,NULL,'116'),(422272,'movie','Fragile','Frágiles',1,2005,NULL,'101'),(422720,'movie','Marie Antoinette','Marie Antoinette',1,2006,NULL,'123'),(422778,'tvMovie','The Muppets\' Wizard of Oz','The Muppets\' Wizard of Oz',1,2005,NULL,'120'),(423169,'movie','Sherrybaby','Sherrybaby',1,2006,NULL,'96'),(423294,'movie','Surf\'s Up','Surf\'s Up',1,2007,NULL,'85'),(423382,'movie','God Save the King','Tjenare kungen',1,2005,NULL,'94'),(423409,'movie','Tristram Shandy','A Cock and Bull Story',1,2005,NULL,'94'),(423455,'tvMovie','Hemingway & Gellhorn','Hemingway & Gellhorn',1,2012,NULL,'155'),(423651,'tvMiniSeries','Fingersmith','Fingersmith',1,2005,2005,'181'),(423849,'video','Balto III: Wings of Change','Balto III: Wings of Change',1,2004,NULL,'76'),(423866,'movie','3-Iron','Bin-jip',1,2004,NULL,'88'),(423977,'movie','Charlie Bartlett','Charlie Bartlett',1,2007,NULL,'97'),(424095,'movie','Flushed Away','Flushed Away',1,2006,NULL,'85'),(424136,'movie','Hard Candy','Hard Candy',1,2005,NULL,'104'),(424205,'movie','Joyeux Noel','Joyeux Noël',1,2005,NULL,'116'),(424287,'movie','The Mostly Unfabulous Social Life of Ethan Green','The Mostly Unfabulous Social Life of Ethan Green',1,2005,NULL,'88'),(424345,'movie','Clerks II','Clerks II',1,2006,NULL,'97'),(424774,'movie','The Adventures of Sharkboy and Lavagirl 3-D','The Adventures of Sharkboy and Lavagirl 3-D',1,2005,NULL,'93'),(424880,'movie','Candy','Candy',1,2006,NULL,'108'),(425061,'movie','Get Smart','Get Smart',1,2008,NULL,'110'),(425112,'movie','Hot Fuzz','Hot Fuzz',1,2007,NULL,'121'),(425123,'movie','Just Like Heaven','Just Like Heaven',1,2005,NULL,'95'),(425210,'movie','Lucky Number Slevin','Lucky Number Slevin',1,2006,NULL,'110'),(425326,'movie','Outsourced','Outsourced',1,2006,NULL,'103'),(425357,'movie','The Pleasure Drivers','The Pleasure Drivers',1,2006,NULL,'99'),(425413,'movie','Run Fatboy Run','Run Fatboy Run',1,2007,NULL,'100'),(425430,'movie','The Messengers','The Messengers',1,2007,NULL,'90'),(425637,'movie','Red Cliff','Chi bi',1,2008,NULL,'145'),(426089,'movie','Maggie and Annie','Maggie and Annie',1,2002,NULL,'105'),(426578,'movie','Sophie Scholl: The Final Days','Sophie Scholl - Die letzten Tage',1,2005,NULL,'120'),(426592,'movie','Superhero Movie','Superhero Movie',1,2008,NULL,'75'),(426931,'movie','August Rush','August Rush',1,2007,NULL,'114'),(426955,'video','Barbie as The Princess and the Pauper','Barbie as the Princess and the Pauper',1,2004,NULL,'85'),(427152,'movie','Dinner for Schmucks','Dinner for Schmucks',1,2010,NULL,'114'),(427229,'movie','Failure to Launch','Failure to Launch',1,2006,NULL,'97'),(427327,'movie','Hairspray','Hairspray',1,2007,NULL,'117'),(427470,'movie','The Lookout','The Lookout',1,2007,NULL,'99'),(427944,'movie','Thank You for Smoking','Thank You for Smoking',1,2005,NULL,'92'),(427969,'movie','Hollywoodland','Hollywoodland',1,2006,NULL,'126'),(428038,'movie','Sweet Land','Sweet Land',1,2005,NULL,'110'),(428579,'movie','Suburban Girl','Suburban Girl',1,2007,NULL,'97'),(428856,'movie','The Moustache','La moustache',1,2005,NULL,'87'),(429493,'movie','The A-Team','The A-Team',1,2010,NULL,'117'),(429589,'movie','The Ant Bully','The Ant Bully',1,2006,NULL,'88'),(429591,'movie','Aquamarine','Aquamarine',1,2006,NULL,'110'),(429727,'movie','The Caiman','Il caimano',1,2006,NULL,'112'),(430105,'movie','Four Brothers','Four Brothers',1,2005,NULL,'109'),(430164,'tvMovie','The Baby\'s Room','Películas para no dormir: La habitación del niño',1,2006,NULL,'77'),(430357,'movie','Miami Vice','Miami Vice',1,2006,NULL,'132'),(430634,'movie','Stick It','Stick It',1,2006,NULL,'103'),(430770,'movie','The Women','The Women',1,2008,NULL,'114'),(430922,'movie','Role Models','Role Models',1,2008,NULL,'99'),(431021,'movie','The Possession','The Possession',1,2012,NULL,'92'),(431308,'movie','P.S. I Love You','P.S. I Love You',1,2007,NULL,'126'),(431340,'tvMovie','Puppet Master vs Demonic Toys','Puppet Master vs Demonic Toys',1,2004,NULL,'88'),(431641,'movie','Azumi 2: Death or Love','Azumi 2: Death or Love',1,2005,NULL,'108'),(432021,'movie','Resident Evil: Extinction','Resident Evil: Extinction',1,2007,NULL,'94'),(432283,'movie','Fantastic Mr. Fox','Fantastic Mr. Fox',1,2009,NULL,'87'),(432291,'movie','The Fog','The Fog',1,2005,NULL,'100'),(432314,'movie','Leningrad','Leningrad',1,2009,NULL,'110'),(432325,'movie','The Cave of the Yellow Dog','Die Höhle des gelben Hundes',1,2005,NULL,'93'),(432348,'movie','Saw II','Saw II',1,2005,NULL,'93'),(433035,'movie','Real Steel','Real Steel',1,2011,NULL,'127'),(433362,'movie','Daybreakers','Daybreakers',1,2009,NULL,'98'),(433383,'movie','Good Night, and Good Luck.','Good Night, and Good Luck.',1,2005,NULL,'93'),(433386,'movie','The Grudge 2','The Grudge 2',1,2006,NULL,'102'),(433412,'movie','Material Girls','Material Girls',1,2006,NULL,'98'),(434124,'movie','Kinky Boots','Kinky Boots',1,2005,NULL,'107'),(434409,'movie','V for Vendetta','V for Vendetta',1,2005,NULL,'132'),(435224,'movie','Nemmeno il destino','Nemmeno il destino',1,2004,NULL,'110'),(435286,'movie','Pokémon the Movie: Destiny Deoxys','Gekijôban Poketto Monsutâ Adobansu Jenerêshon: Rekkû no hômonsha Deokishisu',1,2004,NULL,'98'),(435434,'movie','Swing Girls','Swing Girls',1,2004,NULL,'105'),(435528,'movie','Whisper','Whisper',1,2007,NULL,'94'),(435623,'movie','Conversations with Other Women','Conversations with Other Women',1,2005,NULL,'84'),(435625,'movie','The Descent','The Descent',1,2005,NULL,'99'),(435651,'movie','The Giver','The Giver',1,2014,NULL,'97'),(435665,'tvMovie','House of the Dead 2','House of the Dead 2',1,2005,NULL,'95'),(435679,'movie','Keith','Keith',1,2008,NULL,'95'),(435680,'movie','Kidulthood','Kidulthood',1,2006,NULL,'89'),(435705,'movie','Next','Next',1,2007,NULL,'96'),(435706,'movie','Nina\'s Heavenly Delights','Nina\'s Heavenly Delights',1,2006,NULL,'94'),(435711,'movie','Wild About Harry','American Primitive',1,2009,NULL,'96'),(435761,'movie','Toy Story 3','Toy Story 3',1,2010,NULL,'103'),(436071,'video','Animusic','Animusic',1,2001,NULL,'33'),(436331,'movie','Friends with Money','Friends with Money',1,2006,NULL,'88'),(436339,'movie','G-Force','G-Force',1,2009,NULL,'88'),(436697,'movie','The Queen','The Queen',1,2006,NULL,'103'),(437086,'movie','Alita: Battle Angel','Alita: Battle Angel',1,2019,NULL,'122'),(437800,'movie','Akeelah and the Bee','Akeelah and the Bee',1,2006,NULL,'112'),(437857,'movie','Behind the Mask: The Rise of Leslie Vernon','Behind the Mask: The Rise of Leslie Vernon',1,2006,NULL,'92'),(438097,'movie','Ice Age: The Meltdown','Ice Age: The Meltdown',1,2006,NULL,'91'),(438488,'movie','Terminator Salvation','Terminator Salvation',1,2009,NULL,'115'),(438575,'short','West Bank Story','West Bank Story',1,2005,NULL,'21'),(439289,'movie','Running with Scissors','Running with Scissors',1,2006,NULL,'116'),(439478,'movie','Boynton Beach Club','The Boynton Beach Bereavement Club',1,2005,NULL,'105'),(439491,'movie','Caribe','Caribe',1,2004,NULL,'90'),(439533,'movie','Dead Leaves','Deddo ribusu',1,2004,NULL,'55'),(439572,'movie','The Flash','The Flash',1,2023,NULL,'144'),(439623,'video','In Search of Santa','In Search of Santa',1,2004,NULL,'80'),(439815,'movie','Slither','Slither',1,2006,NULL,'95'),(439817,'movie','The Sun','Solntse',1,2005,NULL,'110'),(440803,'movie','Shutter','Shutter',1,2004,NULL,'97'),(440963,'movie','The Bourne Ultimatum','The Bourne Ultimatum',1,2007,NULL,'115'),(441007,'movie','Gracie','Gracie',1,2007,NULL,'95'),(441041,'video','Legion of the Dead','Legion of the Dead',1,2005,NULL,'82'),(441761,'movie','Free Zone','Free Zone',1,2005,NULL,'90'),(441773,'movie','Kung Fu Panda','Kung Fu Panda',1,2008,NULL,'92'),(441774,'movie','Lonely Hearts','Lonely Hearts',1,2006,NULL,'108'),(441909,'movie','Volver','Volver',1,2006,NULL,'121'),(442933,'movie','Beowulf','Beowulf',1,2007,NULL,'115'),(443231,'movie','Loft','Rofuto',1,2005,NULL,'115'),(443272,'movie','Lincoln','Lincoln',1,2012,NULL,'150'),(443274,'movie','Vantage Point','Vantage Point',1,2008,NULL,'90'),(443295,'movie','Yours, Mine & Ours','Yours, Mine & Ours',1,2005,NULL,'88'),(443431,'movie','Another Gay Movie','Another Gay Movie',1,2006,NULL,'92'),(443453,'movie','Borat','Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan',1,2006,NULL,'84'),(443455,'movie','Brand Upon the Brain!','Brand Upon the Brain! A Remembrance in 12 Chapters',1,2006,NULL,'95'),(443465,'movie','Before We Go','Before We Go',1,2014,NULL,'95'),(443473,'movie','The Condemned','The Condemned',1,2007,NULL,'114'),(443489,'movie','Dreamgirls','Dreamgirls',1,2006,NULL,'130'),(443536,'movie','Hoodwinked','Hoodwinked!',1,2005,NULL,'80'),(443543,'movie','The Illusionist','The Illusionist',1,2006,NULL,'110'),(443559,'movie','Killshot','Killshot',1,2008,NULL,'95'),(443649,'movie','10,000 BC','10,000 BC',1,2008,NULL,'109'),(443680,'movie','The Assassination of Jesse James by the Coward Robert Ford','The Assassination of Jesse James by the Coward Robert Ford',1,2007,NULL,'160'),(443701,'movie','The X Files: I Want to Believe','The X Files: I Want to Believe',1,2008,NULL,'104'),(443706,'movie','Zodiac','Zodiac',1,2007,NULL,'157'),(444112,'movie','Orchestra Seats','Fauteuils d\'orchestre',1,2006,NULL,'106'),(444628,'movie','Fay Grim','Fay Grim',1,2006,NULL,'118'),(444653,'movie','Keeping Mum','Keeping Mum',1,2005,NULL,'99'),(444682,'movie','The Reaping','The Reaping',1,2007,NULL,'99'),(445620,'movie','Paradise Now','Paradise Now',1,2005,NULL,'91'),(445922,'movie','Across the Universe','Across the Universe',1,2007,NULL,'133'),(445934,'movie','Blades of Glory','Blades of Glory',1,2007,NULL,'93'),(445935,'movie','Bordertown','Bordertown',1,2007,NULL,'112'),(446029,'movie','Scott Pilgrim vs. the World','Scott Pilgrim vs. the World',1,2010,NULL,'112'),(446043,'movie','Opie Gets Laid','Sunnyvale',1,2005,NULL,'75'),(446046,'movie','Take the Lead','Take the Lead',1,2006,NULL,'118'),(446442,'movie','A Few Days in September','Quelques jours en septembre',1,2006,NULL,'116'),(446463,'movie','The Secret','Si j\'étais toi',1,2007,NULL,'93'),(446719,'movie','Isolation','Isolation',1,2005,NULL,'95'),(446755,'movie','The Painted Veil','The Painted Veil',1,2006,NULL,'125'),(447166,'movie','The Gamers: Dorkness Rising','The Gamers: Dorkness Rising',1,2008,NULL,'105'),(447854,'video','Bambi 2: The Great Prince of the Forest','Bambi II',1,2006,NULL,'75'),(448011,'movie','Knowing','Knowing',1,2009,NULL,'121'),(448115,'movie','Shazam!','Shazam!',1,2019,NULL,'132'),(448120,'video','Single White Female 2: The Psycho','Single White Female 2: The Psycho',1,2005,NULL,'91'),(448124,'movie','Snow Cake','Snow Cake',1,2006,NULL,'112'),(448134,'movie','Sunshine','Sunshine',1,2007,NULL,'107'),(448157,'movie','Hancock','Hancock',1,2008,NULL,'92'),(448179,'video','Wild Things: Diamonds in the Rough','Wild Things: Diamonds in the Rough',1,2005,NULL,'87'),(448182,'movie','Yesterday Was a Lie','Yesterday Was a Lie',1,2009,NULL,'89'),(448694,'movie','Puss in Boots','Puss in Boots',1,2011,NULL,'90'),(449010,'movie','Eragon','Eragon',1,2006,NULL,'104'),(449059,'movie','Little Miss Sunshine','Little Miss Sunshine',1,2006,NULL,'101'),(449088,'movie','Pirates of the Caribbean: At World\'s End','Pirates of the Caribbean: At World\'s End',1,2007,NULL,'169'),(449089,'movie','RV','RV',1,2006,NULL,'99'),(449092,'video','Rings','Rings',1,2005,NULL,'16'),(449144,'tvMovie','Blame','Películas para no dormir: La culpa',1,2006,NULL,'72'),(449172,'short','A Funny Shave','Ah! La barbe!',1,1906,NULL,'2'),(449467,'movie','Babel','Babel',1,2006,NULL,'143'),(449487,'movie','Passengers','Passengers',1,2008,NULL,'93'),(449869,'movie','Chandramukhi','Chandramukhi',1,2005,NULL,'166'),(450121,'movie','Red Like the Sky','Rosso come il cielo',1,2006,NULL,'96'),(450188,'movie','La Vie En Rose','La Môme',1,2007,NULL,'140'),(450259,'movie','Blood Diamond','Blood Diamond',1,2006,NULL,'143'),(450278,'movie','Hostel','Hostel',1,2005,NULL,'94'),(450345,'movie','The Wicker Man','The Wicker Man',1,2006,NULL,'102'),(450385,'movie','1408','1408',1,2007,NULL,'104'),(450506,'movie','Suburban Mayhem','Suburban Mayhem',1,2006,NULL,'95'),(450982,'video','Barbie: Fairytopia','Barbie: Fairytopia',1,2005,NULL,'70'),(451079,'movie','Horton Hears a Who!','Horton Hears a Who!',1,2008,NULL,'86'),(451094,'movie','Lady Vengeance','Chinjeolhan geumjassi',1,2005,NULL,'115'),(451176,'movie','Quinceañera','Quinceañera',1,2006,NULL,'90'),(451279,'movie','Wonder Woman','Wonder Woman',1,2017,NULL,'141'),(451829,'movie','Funky Forest: The First Contact','Naisu no mori: The First Contact',1,2005,NULL,'150'),(451957,'video','Urban Legends: Bloody Mary','Urban Legends: Bloody Mary',1,2005,NULL,'93'),(451966,'movie','The Violin','El violín',1,2005,NULL,'98'),(452594,'movie','The Break-Up','The Break-Up',1,2006,NULL,'106'),(452598,'movie','Cheaper by the Dozen 2','Cheaper by the Dozen 2',1,2005,NULL,'94'),(452608,'movie','Death Race','Death Race',1,2008,NULL,'105'),(452623,'movie','Gone Baby Gone','Gone Baby Gone',1,2007,NULL,'114'),(452624,'movie','The Good German','The Good German',1,2006,NULL,'105'),(452637,'movie','Lady in the Water','Lady in the Water',1,2006,NULL,'110'),(452694,'movie','The Time Traveler\'s Wife','The Time Traveler\'s Wife',1,2009,NULL,'107'),(452702,'movie','Vacancy','Vacancy',1,2007,NULL,'85'),(453451,'movie','Mr. Bean\'s Holiday','Mr. Bean\'s Holiday',1,2007,NULL,'90'),(453467,'movie','Deja Vu','Deja Vu',1,2006,NULL,'126'),(453556,'movie','TMNT','TMNT',1,2007,NULL,'87'),(453562,'movie','42','42',1,2013,NULL,'128'),(454082,'movie','Black Christmas','Black Christmas',1,2006,NULL,'95'),(454776,'movie','Amazing Grace','Amazing Grace',1,2006,NULL,'118'),(454841,'movie','The Hills Have Eyes','The Hills Have Eyes',1,2006,NULL,'107'),(454848,'movie','Inside Man','Inside Man',1,2006,NULL,'129'),(454876,'movie','Life of Pi','Life of Pi',1,2012,NULL,'127'),(454921,'movie','The Pursuit of Happyness','The Pursuit of Happyness',1,2006,NULL,'117'),(454931,'movie','Requiem','Requiem',1,2006,NULL,'93'),(454945,'movie','She\'s the Man','She\'s the Man',1,2006,NULL,'105'),(455323,'movie','Being Flynn','Being Flynn',1,2012,NULL,'102'),(455407,'movie','The Crazies','The Crazies',1,2010,NULL,'101'),(455577,'movie','Turtles Swim Faster Than Expected','Kame wa igai to hayaku oyogu',1,2005,NULL,'90'),(455590,'movie','The Last King of Scotland','The Last King of Scotland',1,2006,NULL,'123'),(455596,'tvMovie','The Librarian: Return to King Solomon\'s Mines','The Librarian: Return to King Solomon\'s Mines',1,2006,NULL,'92'),(455612,'movie','Madea\'s Family Reunion','Madea\'s Family Reunion',1,2006,NULL,'107'),(455760,'movie','Dead Silence','Dead Silence',1,2007,NULL,'89'),(455805,'movie','Then She Found Me','Then She Found Me',1,2007,NULL,'100'),(455824,'movie','Australia','Australia',1,2008,NULL,'165'),(455857,'movie','When a Stranger Calls','When a Stranger Calls',1,2006,NULL,'87'),(455944,'movie','The Equalizer','The Equalizer',1,2014,NULL,'132'),(455967,'movie','John Tucker Must Die','John Tucker Must Die',1,2006,NULL,'89'),(456111,'movie','The Night of the Sunflowers','La noche de los girasoles',1,2006,NULL,'123'),(456554,'movie','Grandma\'s Boy','Grandma\'s Boy',1,2006,NULL,'94'),(456630,'movie','Reincarnation','Rinne',1,2005,NULL,'96'),(456912,'movie','A Bittersweet Life','Dalkomhan insaeng',1,2005,NULL,'119'),(457275,'movie','Altered','Altered',1,2006,NULL,'88'),(457400,'movie','Land of the Lost','Land of the Lost',1,2009,NULL,'102'),(457419,'movie','Mr. Magorium\'s Wonder Emporium','Mr. Magorium\'s Wonder Emporium',1,2007,NULL,'93'),(457430,'movie','Pan\'s Labyrinth','El laberinto del fauno',1,2006,NULL,'118'),(457433,'movie','Perfect Stranger','Perfect Stranger',1,2007,NULL,'109'),(457489,'video','Star Wars: Revelations','Star Wars: Revelations',1,2005,NULL,'47'),(457510,'movie','Nacho Libre','Nacho Libre',1,2006,NULL,'92'),(457572,'movie','Fido','Fido',1,2006,NULL,'93'),(457655,'movie','After the Wedding','Efter brylluppet',1,2006,NULL,'120'),(457939,'movie','The Holiday','The Holiday',1,2006,NULL,'136'),(458339,'movie','Captain America: The First Avenger','Captain America: The First Avenger',1,2011,NULL,'124'),(458352,'movie','The Devil Wears Prada','The Devil Wears Prada',1,2006,NULL,'109'),(458413,'movie','A Long Way Down','A Long Way Down',1,2014,NULL,'96'),(458455,'movie','Pope Joan','Die Päpstin',1,2009,NULL,'149'),(458471,'video','Second in Command','Second in Command',1,2006,NULL,'92'),(458481,'movie','Sin City: A Dame to Kill For','Sin City: A Dame to Kill For',1,2014,NULL,'102'),(458525,'movie','X-Men Origins: Wolverine','X-Men Origins: Wolverine',1,2009,NULL,'107'),(459102,'movie','Import Export','Import Export',1,2007,NULL,'141'),(459175,'movie','All the Ships at Sea','All the Ships at Sea',1,2004,NULL,'64'),(459449,'movie','M. Kumaran S/O Mahalakshmi','M. Kumaran S/O Mahalakshmi',1,2004,NULL,'166'),(459959,'movie','Princess of the Sun','La reine soleil',1,2007,NULL,'90'),(460721,'movie','The Big Bad Swim','The Big Bad Swim',1,2006,NULL,'96'),(460732,'movie','Caffeine','Caffeine',1,2006,NULL,'92'),(460740,'movie','Cashback','Cashback',1,2006,NULL,'102'),(460791,'movie','The Fall','The Fall',1,2006,NULL,'117'),(460792,'movie','Fast Food Nation','Fast Food Nation',1,2006,NULL,'116'),(460829,'movie','Inland Empire','Inland Empire',1,2006,NULL,'180'),(460890,'movie','The Only Living Boy in New York','The Only Living Boy in New York',1,2017,NULL,'89'),(460897,'tvMovie','Spectre','Películas para no dormir: Regreso a Moira',1,2006,NULL,'75'),(460989,'movie','The Wind that Shakes the Barley','The Wind that Shakes the Barley',1,2006,NULL,'127'),(461612,'movie','Arch Angels','Warau Mikaeru',1,2006,NULL,'92'),(461770,'movie','Enchanted','Enchanted',1,2007,NULL,'107'),(461826,'tvMovie','A Real Friend','Películas para no dormir: Adivina quién soy',1,2006,NULL,'73'),(462309,'movie','The Gigolos','The Gigolos',1,2006,NULL,'95'),(462329,'video','The Hard Corps','The Hard Corps',1,2006,NULL,'110'),(462335,'movie','High-Rise','High-Rise',1,2015,NULL,'119'),(462485,'movie','Poultrygeist: Night of the Chicken Dead','Poultrygeist: Night of the Chicken Dead',1,2006,NULL,'103'),(462499,'movie','Rambo','Rambo',1,2008,NULL,'92'),(462538,'movie','The Simpsons Movie','The Simpsons Movie',1,2007,NULL,'87'),(462590,'movie','Step Up','Step Up',1,2006,NULL,'104'),(463034,'movie','You, Me and Dupree','You, Me and Dupree',1,2006,NULL,'110'),(463854,'movie','28 Weeks Later','28 Weeks Later',1,2007,NULL,'100'),(463985,'movie','The Fast and the Furious: Tokyo Drift','The Fast and the Furious: Tokyo Drift',1,2006,NULL,'104'),(463998,'movie','Freedom Writers','Freedom Writers',1,2007,NULL,'123'),(464029,'movie','Grbavica: The Land of My Dreams','Grbavica',1,2006,NULL,'90'),(464049,'movie','The History Boys','The History Boys',1,2006,NULL,'109'),(464061,'movie','I\'m Reed Fish','I\'m Reed Fish',1,2006,NULL,'93'),(464141,'movie','The Orphanage','El orfanato',1,2007,NULL,'105'),(465234,'movie','National Treasure: Book of Secrets','National Treasure: Book of Secrets',1,2007,NULL,'124'),(465375,'movie','After Sex','After Sex',1,2007,NULL,'77'),(465494,'movie','Hitman','Hitman',1,2007,NULL,'100'),(465502,'movie','Igor','Igor',1,2008,NULL,'87'),(465538,'movie','Michael Clayton','Michael Clayton',1,2007,NULL,'119'),(465551,'movie','Notes on a Scandal','Notes on a Scandal',1,2006,NULL,'92'),(465580,'movie','Push','Push',1,2009,NULL,'111'),(465602,'movie','Shoot \'Em Up','Shoot \'Em Up',1,2007,NULL,'86'),(465624,'movie','My Super Ex-Girlfriend','My Super Ex-Girlfriend',1,2006,NULL,'96'),(465925,'video','Brother Bear 2','Brother Bear 2',1,2006,NULL,'74'),(466405,'movie','XxxHOLiC the Movie: A Midsummer Night\'s Dream','Gekijôban XXXHolic Manatsu no yoru no yume',1,2005,NULL,'60'),(466665,'movie','The Architect','The Architect',1,2006,NULL,'82'),(466839,'movie','I Could Never Be Your Woman','I Could Never Be Your Woman',1,2007,NULL,'97'),(466876,'short','Leisurely Pedestrians, Open Topped Buses and Hansom Cabs with Trotting Horses','Leisurely Pedestrians, Open Topped Buses and Hansom Cabs with Trotting Horses',1,1889,NULL,'1'),(466893,'movie','Margaret','Margaret',1,2011,NULL,'150'),(467110,'movie','Underdog','Underdog',1,2007,NULL,'100'),(467197,'movie','Max Payne','Max Payne',1,2008,NULL,'100'),(467200,'movie','The Other Boleyn Girl','The Other Boleyn Girl',1,2008,NULL,'115'),(467406,'movie','Juno','Juno',1,2007,NULL,'96'),(467421,'tvMovie','Twitches','Twitches',1,2005,NULL,'86'),(468489,'movie','Half Nelson','Half Nelson',1,2006,NULL,'106'),(468492,'movie','The Host','Gwoemul',1,2006,NULL,'120'),(468569,'movie','The Dark Knight','The Dark Knight',1,2008,NULL,'152'),(468795,'movie','Linda Linda Linda','Linda Linda Linda',1,2005,NULL,'114'),(469021,'movie','Alan Partridge','Alan Partridge: Alpha Papa',1,2013,NULL,'90'),(469494,'movie','There Will Be Blood','There Will Be Blood',1,2007,NULL,'158'),(469641,'movie','World Trade Center','World Trade Center',1,2006,NULL,'129'),(470055,'movie','Open Water 2: Adrift','Open Water 2: Adrift',1,2006,NULL,'95'),(470705,'movie','Bug','Bug',1,2006,NULL,'102'),(470752,'movie','Ex Machina','Ex Machina',1,2014,NULL,'108'),(470765,'movie','For Your Consideration','For Your Consideration',1,2006,NULL,'86'),(471030,'movie','Red Road','Red Road',1,2006,NULL,'113'),(471041,'movie','The Tournament','The Tournament',1,2009,NULL,'95'),(471042,'movie','Tower Heist','Tower Heist',1,2011,NULL,'104'),(471287,'movie','Ocean Drive Weekend','Ocean Drive Weekend',1,1985,NULL,'77'),(471711,'video','Futurama: Bender\'s Big Score','Futurama: Bender\'s Big Score',1,2007,NULL,'88'),(471834,'movie','Nana','Nana',1,2005,NULL,'113'),(472033,'movie','9','9',1,2009,NULL,'79'),(472043,'movie','Apocalypto','Apocalypto',1,2006,NULL,'139'),(472062,'movie','Charlie Wilson\'s War','Charlie Wilson\'s War',1,2007,NULL,'102'),(472071,'movie','Death Defying Acts','Death Defying Acts',1,2007,NULL,'97'),(472160,'movie','Penelope','Penelope',1,2006,NULL,'104'),(472181,'movie','The Smurfs','The Smurfs',1,2011,NULL,'103'),(472205,'movie','Watching the Detectives','Watching the Detectives',1,2007,NULL,'94'),(472399,'movie','The Mechanic','The Mechanic',1,2011,NULL,'93'),(473074,'movie','The Gymnast','The Gymnast',1,2006,NULL,'96'),(473075,'movie','Prince of Persia: The Sands of Time','Prince of Persia: The Sands of Time',1,2010,NULL,'116'),(473105,'tvMovie','Vampire Bats','Vampire Bats',1,2005,NULL,'90'),(473308,'movie','Waitress','Waitress',1,2007,NULL,'108'),(473364,'movie','The Heavy','The Heavy',1,2009,NULL,'102'),(473444,'movie','Curse of the Golden Flower','Man cheng jin dai huang jin jia',1,2006,NULL,'114'),(473488,'movie','A Guide to Recognizing Your Saints','A Guide to Recognizing Your Saints',1,2006,NULL,'100'),(473514,'movie','Mulberry St','Mulberry St',1,2006,NULL,'84'),(473705,'movie','State of Play','State of Play',1,2009,NULL,'127'),(473753,'movie','Angel-A','Angel-A',1,2005,NULL,'91'),(474361,'movie','Sisters in Law','Sisters in Law',1,2005,NULL,'104'),(475169,'movie','13','13 Tzameti',1,2005,NULL,'93'),(475243,'movie','Crashing','Crashing',1,2007,NULL,'79'),(475290,'movie','Hail, Caesar!','Hail, Caesar!',1,2016,NULL,'106'),(475293,'tvMovie','High School Musical','High School Musical',1,2006,NULL,'98'),(475394,'movie','Smokin\' Aces','Smokin\' Aces',1,2006,NULL,'109'),(475944,'movie','The Covenant','The Covenant',1,2006,NULL,'97'),(476013,'tvMovie','Hello Sister, Goodbye Life','Hello Sister, Goodbye Life',1,2006,NULL,'89'),(476298,'movie','Madeinusa','Madeinusa',1,2006,NULL,'100'),(476680,'movie','Naruto the Movie: Ninja Clash in the Land of Snow','Gekijô-ban Naruto: Daikatsugeki! Yukihime ninpôchô dattebayo!!',1,2004,NULL,'82'),(476964,'movie','The Brave One','The Brave One',1,2007,NULL,'122'),(476991,'movie','Were the World Mine','Were the World Mine',1,2008,NULL,'95'),(477051,'movie','Norbit','Norbit',1,2007,NULL,'103'),(477071,'movie','Premonition','Premonition',1,2007,NULL,'96'),(477072,'video','The Prince & Me II: The Royal Wedding','The Prince & Me II: The Royal Wedding',1,2006,NULL,'96'),(477080,'movie','Unstoppable','Unstoppable',1,2010,NULL,'98'),(477095,'movie','Starter for 10','Starter for 10',1,2006,NULL,'92'),(477139,'movie','Wristcutters: A Love Story','Wristcutters: A Love Story',1,2006,NULL,'88'),(477266,'short','Billy Edwards and the Unknown','Billy Edwards and the Unknown',1,1895,NULL,'1'),(477302,'movie','Extremely Loud & Incredibly Close','Extremely Loud & Incredibly Close',1,2011,NULL,'129'),(477311,'tvMovie','To Let','Películas para no dormir: Para entrar a vivir',1,2006,NULL,'68'),(477347,'movie','Night at the Museum','Night at the Museum',1,2006,NULL,'108'),(477348,'movie','No Country for Old Men','No Country for Old Men',1,2007,NULL,'122'),(478087,'movie','21','21',1,2008,NULL,'123'),(478160,'movie','Into Great Silence','Die große Stille',1,2005,NULL,'169'),(478304,'movie','The Tree of Life','The Tree of Life',1,2011,NULL,'139'),(478311,'movie','Knocked Up','Knocked Up',1,2007,NULL,'129'),(478724,'movie','I Do: How to Get Married and Stay Single','Prête-moi ta main',1,2006,NULL,'90'),(478970,'movie','Ant-Man','Ant-Man',1,2015,NULL,'117'),(478976,'movie','Bad Reputation','Bad Reputation',1,2007,NULL,'90'),(478988,'movie','The Call of Cthulhu','The Call of Cthulhu',1,2005,NULL,'47'),(479143,'movie','Rocky Balboa','Rocky Balboa',1,2006,NULL,'102'),(479500,'movie','Nancy Drew','Nancy Drew',1,2007,NULL,'99'),(479647,'movie','Bon Cop Bad Cop','Bon Cop, Bad Cop',1,2006,NULL,'117'),(479884,'movie','Crank','Crank',1,2006,NULL,'88'),(479917,'tvMovie','For the Love of a Child','For the Love of a Child',1,2006,NULL,'80'),(479952,'movie','Madagascar: Escape 2 Africa','Madagascar: Escape 2 Africa',1,2008,NULL,'89'),(480025,'movie','This Is England','This Is England',1,2006,NULL,'101'),(480239,'movie','Atlas Shrugged: Part I','Atlas Shrugged: Part I',1,2011,NULL,'97'),(480242,'movie','Dan in Real Life','Dan in Real Life',1,2007,NULL,'98'),(480249,'movie','I Am Legend','I Am Legend',1,2007,NULL,'101'),(480255,'movie','The Losers','The Losers',1,2010,NULL,'97'),(480345,'video','Barbie and the Magic of Pegasus 3-D','Barbie and the Magic of Pegasus',1,2005,NULL,'83'),(480669,'movie','Timecrimes','Los cronocrímenes',1,2007,NULL,'92'),(480687,'movie','Hall Pass','Hall Pass',1,2011,NULL,'105'),(481141,'movie','No Reservations','No Reservations',1,2007,NULL,'104'),(481369,'movie','The Number 23','The Number 23',1,2007,NULL,'98'),(481499,'movie','The Croods','The Croods',1,2013,NULL,'98'),(482374,'movie','Gone','Gone',1,2006,NULL,'88'),(482459,'movie','Bandage','Bandeiji',1,2010,NULL,'119'),(482546,'movie','Miss Potter','Miss Potter',1,2006,NULL,'88'),(482571,'movie','The Prestige','The Prestige',1,2006,NULL,'130'),(482606,'movie','The Strangers','The Strangers',1,2008,NULL,'86'),(483022,'movie','Kamome Diner','Kamome shokudô',1,2006,NULL,'102'),(483607,'movie','Doomsday','Doomsday',1,2008,NULL,'113'),(483726,'movie','Man of the Year','Man of the Year',1,2006,NULL,'115'),(485601,'movie','The Secret of Kells','The Secret of Kells',1,2009,NULL,'71'),(485851,'movie','The Air I Breathe','The Air I Breathe',1,2007,NULL,'95'),(485947,'movie','Mr. Nobody','Mr. Nobody',1,2009,NULL,'141'),(485985,'movie','Red Tails','Red Tails',1,2012,NULL,'125'),(486321,'movie','Fly Me to the Moon 3D','Fly Me to the Moon',1,2007,NULL,'84'),(486551,'movie','Beerfest','Beerfest',1,2006,NULL,'110'),(486576,'movie','Fantastic Four: Rise of the Silver Surfer','4: Rise of the Silver Surfer',1,2007,NULL,'92'),(486583,'movie','Fred Claus','Fred Claus',1,2007,NULL,'116'),(486651,'movie','Dark Mirror','Dark Mirror',1,2007,NULL,'86'),(486655,'movie','Stardust','Stardust',1,2007,NULL,'127'),(486731,'movie','U','U',1,2006,NULL,'75'),(486822,'movie','Disturbia','Disturbia',1,2007,NULL,'105'),(486946,'movie','Wild Hogs','Wild Hogs',1,2007,NULL,'100'),(486978,'short','The Automatic Moving Company','Mobilier fidèle',1,1910,NULL,'4'),(487195,'movie','Bonneville','Bonneville',1,2006,NULL,'93'),(487503,'movie','The Page Turner','La tourneuse de pages',1,2006,NULL,'85'),(487928,'movie','Dante 01','Dante 01',1,2008,NULL,'82'),(488023,'movie','Out at the Wedding','Out at the Wedding',1,2007,NULL,'96'),(488120,'movie','Fracture','Fracture',1,2007,NULL,'113'),(489007,'tvMovie','Cow Belles','Cow Belles',1,2006,NULL,'90'),(489010,'movie','A Crime','A Crime',1,2006,NULL,'103'),(489018,'video','Day of the Dead','Day of the Dead',1,2008,NULL,'86'),(489049,'movie','Fanboys','Fanboys',1,2009,NULL,'120'),(489099,'movie','Jumper','Jumper',1,2008,NULL,'88'),(489134,'video','Last Order: Final Fantasy VII','Last Order: Final Fantasy VII',1,2005,NULL,'25'),(489237,'movie','The Nanny Diaries','The Nanny Diaries',1,2007,NULL,'106'),(489244,'movie','Night of the Living Dead 3D','Night of the Living Dead',1,2006,NULL,'80'),(489270,'movie','Saw III','Saw III',1,2006,NULL,'108'),(489282,'movie','Strange Wilderness','Strange Wilderness',1,2008,NULL,'87'),(489682,'movie','Conversations with God','Conversations with God',1,2006,NULL,'109'),(490084,'movie','Because I Said So','Because I Said So',1,2007,NULL,'102'),(490166,'movie','London to Brighton','London to Brighton',1,2006,NULL,'85'),(490181,'movie','Mutant Chronicles','Mutant Chronicles',1,2008,NULL,'111'),(490215,'movie','Silence','Silence',1,2016,NULL,'161'),(490822,'video','Bring It on: All or Nothing','Bring It On: All or Nothing',1,2006,NULL,'99'),(491044,'movie','Sparrow','Man jeuk',1,2008,NULL,'87'),(491203,'movie','Tulip Fever','Tulip Fever',1,2017,NULL,'105'),(491603,'tvSeries','H2O: Just Add Water','H2O: Just Add Water',1,2006,2010,'23'),(491738,'tvSeries','Psych','Psych',1,2006,2014,'44'),(491747,'movie','Away from Her','Away from Her',1,2006,NULL,'110'),(492481,'movie','Puccini for Beginners','Puccini for Beginners',1,2006,NULL,'82'),(492486,'movie','Shrooms','Shrooms',1,2007,NULL,'84'),(492506,'movie','Wordplay','Wordplay',1,2006,NULL,'94'),(492571,'videoGame','Bratz Rock Angelz','Bratz Rock Angelz',1,2005,NULL,'77'),(493093,'tvSeries','Hannah Montana','Hannah Montana',1,2006,2011,'23'),(493430,'movie','Jackass Number Two','Jackass Number Two',1,2006,NULL,'92'),(493451,'movie','The Skeptic','The Skeptic',1,2009,NULL,'89'),(493459,'movie','This Film Is Not Yet Rated','This Film Is Not Yet Rated',1,2006,NULL,'98'),(493464,'movie','Wanted','Wanted',1,2008,NULL,'110'),(493949,'movie','Ramona and Beezus','Ramona and Beezus',1,2010,NULL,'104'),(494199,'movie','5ive Girls','5ive Girls',1,2006,NULL,'95'),(494222,'movie','Eagle vs Shark','Eagle vs Shark',1,2007,NULL,'93'),(494238,'movie','Inkheart','Inkheart',1,2008,NULL,'106'),(494271,'movie','The Unknown Woman','La sconosciuta',1,2006,NULL,'118'),(494652,'movie','Welcome Home, Roscoe Jenkins','Welcome Home, Roscoe Jenkins',1,2008,NULL,'104'),(495596,'movie','Tales from Earthsea','Gedo senki',1,2006,NULL,'115'),(496328,'movie','Itty Bitty Titty Committee','Itty Bitty Titty Committee',1,2007,NULL,'87'),(496436,'movie','White Noise 2: The Light','White Noise 2: The Light',1,2007,NULL,'99'),(496806,'movie','Ocean\'s Thirteen','Ocean\'s Thirteen',1,2007,NULL,'122'),(497137,'movie','I\'m a Cyborg, But That\'s OK','Ssa-i-bo-geu-ji-man-gwen-chan-a',1,2006,NULL,'107'),(497465,'movie','Vicky Cristina Barcelona','Vicky Cristina Barcelona',1,2008,NULL,'96'),(498353,'movie','Hostel: Part II','Hostel: Part II',1,2007,NULL,'94'),(498380,'movie','Letters from Iwo Jima','Letters from Iwo Jima',1,2006,NULL,'141'),(498381,'movie','Rings','Rings',1,2017,NULL,'102'),(498399,'movie','We Own the Night','We Own the Night',1,2007,NULL,'117'),(499097,'movie','Without Remorse','Without Remorse',1,2021,NULL,'109'),(499448,'movie','The Chronicles of Narnia: Prince Caspian','The Chronicles of Narnia: Prince Caspian',1,2008,NULL,'150'),(499455,'movie','Day Night Day Night','Day Night Day Night',1,2006,NULL,'94'),(499537,'movie','Offside','Afsaid',1,2006,NULL,'93'),(499549,'movie','Avatar','Avatar',1,2009,NULL,'162'),(598828,'tvEpisode','Dog Collar','Dog Collar',1,2000,NULL,NULL),(643106,'tvEpisode','Haeckel\'s Tale','Haeckel\'s Tale',1,2006,NULL,'59'),(643110,'tvEpisode','Pick Me Up','Pick Me Up',1,2006,NULL,'58'),(756522,'tvSeries','Little Einsteins','Little Einsteins',1,2005,2010,NULL),(756683,'movie','The Man from Earth','The Man from Earth',1,2007,NULL,'87'),(756729,'movie','Year of the Dog','Year of the Dog',1,2007,NULL,'97'),(757061,'tvEpisode','Imprint','Imprint',1,2006,NULL,'63'),(757361,'movie','Margot at the Wedding','Margot at the Wedding',1,2007,NULL,'93'),(758730,'movie','Aliens vs. Predator: Requiem','AVPR: Aliens vs Predator - Requiem',1,2007,NULL,'94'),(758732,'movie','Beaufort','Beaufort',1,2007,NULL,'131'),(758746,'movie','Friday the 13th','Friday the 13th',1,2009,NULL,'97'),(758751,'tvMovie','Grey Gardens','Grey Gardens',1,2009,NULL,'104'),(758752,'movie','Love & Other Drugs','Love & Other Drugs',1,2010,NULL,'112'),(758753,'movie','If I Had Known I Was a Genius','If I Had Known I Was a Genius',1,2007,NULL,'102'),(758758,'movie','Into the Wild','Into the Wild',1,2007,NULL,'148'),(758766,'movie','Music and Lyrics','Music and Lyrics',1,2007,NULL,'104'),(758771,'movie','Outlaw','Outlaw',1,2007,NULL,'103'),(758774,'movie','Body of Lies','Body of Lies',1,2008,NULL,'128'),(758794,'movie','We Are Marshall','We Are Marshall',1,2006,NULL,'131'),(760329,'movie','The Water Horse','The Water Horse',1,2007,NULL,'112'),(762073,'movie','Thirst','Bakjwi',1,2009,NULL,'134'),(762110,'movie','Irina Palm','Irina Palm',1,2007,NULL,'103'),(762125,'movie','Planet 51','Planet 51',1,2009,NULL,'91'),(762148,'video','Christmas Is Here Again','Christmas Is Here Again',1,2007,NULL,'74'),(763831,'movie','A Thousand Words','A Thousand Words',1,2012,NULL,'91'),(765010,'movie','Brothers','Brothers',1,2009,NULL,'105'),(765120,'movie','My Blueberry Nights','My Blueberry Nights',1,2007,NULL,'95'),(765429,'movie','American Gangster','American Gangster',1,2007,NULL,'157'),(765430,'movie','American Zombie','American Zombie',1,2007,NULL,'90'),(765432,'movie','The Baader Meinhof Complex','Der Baader Meinhof Komplex',1,2008,NULL,'150'),(765443,'movie','Eastern Promises','Eastern Promises',1,2007,NULL,'100'),(765446,'movie','Escape from Planet Earth','Escape from Planet Earth',1,2012,NULL,'89'),(765447,'movie','Evening','Evening',1,2007,NULL,'117'),(765458,'tvMovie','Hogfather','Hogfather',1,2006,NULL,'189'),(765476,'movie','Meet Dave','Meet Dave',1,2008,NULL,'90'),(768116,'movie','Hula Girls','Hura gâru',1,2006,NULL,'121'),(768132,'short','Monmon the Water Spider','Mizugumo Monmon',1,2006,NULL,'15'),(768212,'movie','The Last Mimzy','The Last Mimzy',1,2007,NULL,'90'),(768239,'movie','Storm','Storm',1,2009,NULL,'103'),(769508,'movie','Dans Paris','Dans Paris',1,2006,NULL,'92'),(770703,'movie','What\'s Your Number?','What\'s Your Number?',1,2011,NULL,'106'),(770739,'tvMovie','Dead & Deader','Dead & Deader',1,2006,NULL,'89'),(770802,'movie','Samsara','Samsara',1,2011,NULL,'102'),(770828,'movie','Man of Steel','Man of Steel',1,2013,NULL,'143'),(772154,'movie','Apart from That','Apart from That',1,2006,NULL,'120'),(775489,'movie','The Illusionist','L\'illusionniste',1,2010,NULL,'80'),(775529,'movie','The Savages','The Savages',1,2007,NULL,'114'),(775543,'movie','Night Catches Us','Night Catches Us',1,2010,NULL,'90'),(775552,'movie','Aliens in the Attic','Aliens in the Attic',1,2009,NULL,'86'),(778631,'movie','Brave Story','Brave Story',1,2006,NULL,'112'),(779496,'tvEpisode','Pelts','Pelts',1,2006,NULL,'58'),(779982,'movie','Black Sheep','Black Sheep',1,2006,NULL,'87'),(780504,'movie','Drive','Drive',1,2011,NULL,'100'),(780511,'movie','Everybody\'s Fine','Everybody\'s Fine',1,2009,NULL,'100'),(780521,'movie','The Princess and the Frog','The Princess and the Frog',1,2009,NULL,'97'),(780536,'movie','In Bruges','In Bruges',1,2008,NULL,'107'),(780565,'movie','Mataharis','Mataharis',1,2007,NULL,'100'),(780583,'movie','Flight of the Living Dead','Plane Dead',1,2007,NULL,'89'),(780607,'movie','The Signal','The Signal',1,2007,NULL,'103'),(780608,'movie','Smiley Face','Smiley Face',1,2007,NULL,'85'),(780622,'movie','Teeth','Teeth',1,2007,NULL,'94'),(780653,'movie','The Wolfman','The Wolfman',1,2010,NULL,'103'),(782399,'tvEpisode','Family','Family',1,2006,NULL,'58'),(782867,'movie','The Secrets','Ha-Sodot',1,2007,NULL,'127'),(783233,'movie','Atonement','Atonement',1,2007,NULL,'123'),(783238,'movie','The Dead Girl','The Dead Girl',1,2006,NULL,'85'),(783640,'movie','The Last Full Measure','The Last Full Measure',1,2019,NULL,'116'),(784972,'movie','The Brothers Solomon','The Brothers Solomon',1,2007,NULL,'93'),(785002,'movie','Heartbreak Hotel','Heartbreak Hotel',1,2006,NULL,'110'),(785007,'movie','Over Her Dead Body','Over Her Dead Body',1,2008,NULL,'95'),(785532,'tvEpisode','Pro-Life','Pro-Life',1,2006,NULL,'57'),(785533,'tvEpisode','The Black Cat','The Black Cat',1,2007,NULL,'58'),(787474,'movie','The Boxtrolls','The Boxtrolls',1,2014,NULL,'96'),(787475,'movie','Hot Rod','Hot Rod',1,2007,NULL,'88'),(787523,'movie','Towelhead','Nothing Is Private',1,2007,NULL,'124'),(787524,'movie','The Man Who Knew Infinity','The Man Who Knew Infinity',1,2015,NULL,'108'),(790627,'movie','Brief Interviews with Hideous Men','Brief Interviews with Hideous Men',1,2009,NULL,'80'),(790628,'movie','The Incredible Burt Wonderstone','The Incredible Burt Wonderstone',1,2013,NULL,'100'),(790636,'movie','Dallas Buyers Club','Dallas Buyers Club',1,2013,NULL,'117'),(790686,'movie','Mirrors','Mirrors',1,2008,NULL,'110'),(790712,'movie','The Messenger','The Messenger',1,2009,NULL,'113'),(790724,'movie','Jack Reacher','Jack Reacher',1,2012,NULL,'130'),(790736,'movie','R.I.P.D.','R.I.P.D.',1,2013,NULL,'96'),(790770,'movie','Miles Ahead','Miles Ahead',1,2015,NULL,'100'),(790781,'tvMovie','Wendy Wu: Homecoming Warrior','Wendy Wu: Homecoming Warrior',1,2006,NULL,'91'),(792965,'movie','Hunting and Gathering','Ensemble, c\'est tout',1,2007,NULL,'97'),(795338,'video','Barbie Diaries','The Barbie Diaries',1,2006,NULL,'70'),(795351,'movie','Case 39','Case 39',1,2009,NULL,'109'),(795368,'movie','Death at a Funeral','Death at a Funeral',1,2007,NULL,'90'),(795421,'movie','Mamma Mia!','Mamma Mia!',1,2008,NULL,'108'),(795439,'movie','Numb','Numb',1,2007,NULL,'93'),(796302,'movie','The Babysitters','The Babysitters',1,2007,NULL,'88'),(796307,'movie','Under the Same Moon','La misma luna',1,2007,NULL,'106'),(796366,'movie','Star Trek','Star Trek',1,2009,NULL,'127'),(799934,'movie','Be Kind Rewind','Be Kind Rewind',1,2008,NULL,'102'),(799949,'movie','Epic Movie','Epic Movie',1,2007,NULL,'86'),(800039,'movie','Forgetting Sarah Marshall','Forgetting Sarah Marshall',1,2008,NULL,'111'),(800080,'movie','The Incredible Hulk','The Incredible Hulk',1,2008,NULL,'112'),(800240,'movie','Deception','Deception',1,2008,NULL,'107'),(800241,'movie','Transsiberian','Transsiberian',1,2008,NULL,'111'),(800308,'movie','Appaloosa','Appaloosa',1,2008,NULL,'115'),(800318,'tvMovie','The Cheetah Girls 2','The Cheetah Girls 2',1,2005,NULL,'96'),(800320,'movie','Clash of the Titans','Clash of the Titans',1,2010,NULL,'106'),(800369,'movie','Thor','Thor',1,2011,NULL,'115'),(801526,'movie','The Tracey Fragments','The Tracey Fragments',1,2007,NULL,'77'),(803096,'movie','Warcraft','Warcraft',1,2016,NULL,'123'),(804452,'movie','Bratz','Bratz',1,2007,NULL,'110'),(804497,'movie','It\'s Kind of a Funny Story','It\'s Kind of a Funny Story',1,2010,NULL,'101'),(804513,'movie','Rainbow Song','Niji no megami',1,2006,NULL,'118'),(804516,'movie','P2','P2',1,2007,NULL,'98'),(804529,'movie','Sleep Dealer','Sleep Dealer',1,2008,NULL,'90'),(804539,'movie','Surviving Evil','Surviving Evil',1,2009,NULL,'90'),(805420,'tvEpisode','Valerie on the Stairs','Valerie on the Stairs',1,2006,NULL,'60'),(805564,'movie','Lars and the Real Girl','Lars and the Real Girl',1,2007,NULL,'106'),(805647,'movie','The Witches','The Witches',1,2020,NULL,'106'),(806027,'movie','Blood: The Last Vampire','Blood: The Last Vampire',1,2009,NULL,'91'),(806203,'movie','Carriers','Carriers',1,2009,NULL,'85'),(806940,'movie','Bad Girls','Niñas mal',1,2007,NULL,'100'),(807054,'movie','It\'s a Free World...','It\'s a Free World...',1,2007,NULL,'96'),(807721,'movie','Jellyfish','Meduzot',1,2007,NULL,'78'),(807840,'video','Elephants Dream','Elephants Dream',1,2006,NULL,'11'),(807965,'movie','La vie secrète des gens heureux','La vie secrète des gens heureux',1,2006,NULL,'101'),(808151,'movie','Angels & Demons','Angels & Demons',1,2009,NULL,'138'),(808230,'movie','Les deux mondes','Les deux mondes',1,2007,NULL,'105'),(808244,'movie','Easy Virtue','Easy Virtue',1,2008,NULL,'97'),(808357,'movie','Lust, Caution','Se, jie',1,2007,NULL,'157'),(808417,'movie','Persepolis','Persepolis',1,2007,NULL,'96'),(808506,'movie','The Girl Who Leapt Through Time','Toki o kakeru shôjo',1,2006,NULL,'98'),(808526,'movie','Life During Wartime','Life During Wartime',1,2009,NULL,'98'),(809407,'movie','12:08 East of Bucharest','A fost sau n-a fost?',1,2006,NULL,'89'),(809533,'movie','Las 13 rosas','Las 13 rosas',1,2007,NULL,'129'),(810784,'movie','Bright Star','Bright Star',1,2009,NULL,'119'),(810819,'movie','The Danish Girl','The Danish Girl',1,2015,NULL,'119'),(810868,'movie','Free Rainer','Free Rainer',1,2007,NULL,'130'),(810900,'tvMovie','High School Musical 2','High School Musical 2',1,2007,NULL,'104'),(810913,'movie','Jack and Jill','Jack and Jill',1,2011,NULL,'91'),(811080,'movie','Speed Racer','Speed Racer',1,2008,NULL,'135'),(811138,'movie','The Love Guru','The Love Guru',1,2008,NULL,'87'),(812243,'movie','Ex Drummer','Ex Drummer',1,2007,NULL,'104'),(814106,'short','Flatland: The Movie','Flatland: The Movie',1,2007,NULL,'34'),(814255,'movie','Percy Jackson & the Olympians: The Lightning Thief','Percy Jackson & the Olympians: The Lightning Thief',1,2010,NULL,'118'),(814314,'movie','Seven Pounds','Seven Pounds',1,2008,NULL,'123'),(814331,'movie','Spring Breakdown','Spring Breakdown',1,2009,NULL,'84'),(814795,'movie','In the Arms of My Enemy','Voleurs de chevaux',1,2007,NULL,'85'),(815178,'movie','The Life Before Her Eyes','The Life Before Her Eyes',1,2007,NULL,'90'),(815244,'movie','Sydney White','Sydney White',1,2007,NULL,'108'),(815245,'movie','The Uninvited','The Uninvited',1,2009,NULL,'87'),(816436,'movie','Black Water','Black Water',1,2007,NULL,'90'),(816442,'movie','The Book Thief','The Book Thief',1,2013,NULL,'131'),(816462,'movie','Conan the Barbarian','Conan the Barbarian',1,2011,NULL,'113'),(816520,'tvMovie','Return to Halloweentown','Return to Halloweentown',1,2006,NULL,'88'),(816530,'movie','Imprint','Imprint',1,2007,NULL,'84'),(816556,'movie','Lake Mungo','Lake Mungo',1,2008,NULL,'87'),(816692,'movie','Interstellar','Interstellar',1,2014,NULL,'169'),(816711,'movie','World War Z','World War Z',1,2013,NULL,'116'),(817177,'movie','Flipped','Flipped',1,2010,NULL,'90'),(817230,'movie','Valentine\'s Day','Valentine\'s Day',1,2010,NULL,'125'),(817400,'tvEpisode','Sounds Like','Sounds Like',1,2006,NULL,'58'),(817401,'tvEpisode','The V Word','The V Word',1,2006,NULL,'59'),(817402,'tvEpisode','We All Scream for Ice Cream','We All Scream for Ice Cream',1,2007,NULL,'57'),(818165,'movie','The Alphabet Killer','The Alphabet Killer',1,2008,NULL,'98'),(818940,'video','Love & Suicide','Love & Suicide',1,2006,NULL,'98'),(819714,'movie','The Edge of Love','The Edge of Love',1,2008,NULL,'110'),(821642,'movie','The Soloist','The Soloist',1,2009,NULL,'117'),(822832,'movie','Marley & Me','Marley & Me',1,2008,NULL,'111'),(822847,'movie','Priest','Priest',1,2011,NULL,'87'),(822854,'movie','Shooter','Shooter',1,2007,NULL,'124'),(823158,'tvMovie','Wedding Wars','Wedding Wars',1,2006,NULL,'87'),(823671,'video','Tinker Bell','Tinker Bell',1,2008,NULL,'78'),(824316,'movie','Dor','Dor',1,2006,NULL,'147'),(824747,'movie','Changeling','Changeling',1,2008,NULL,'141'),(824758,'movie','The Last Station','The Last Station',1,2009,NULL,'112'),(825232,'movie','The Bucket List','The Bucket List',1,2007,NULL,'97'),(825236,'movie','Caramel','Sukkar banat',1,2007,NULL,'95'),(825244,'movie','Conversations with My Gardener','Dialogue avec mon jardinier',1,2007,NULL,'109'),(827517,'movie','Reprise','Reprise',1,2006,NULL,'105'),(829150,'movie','Dracula Untold','Dracula Untold',1,2014,NULL,'92'),(829297,'movie','Ten Inch Hero','Ten Inch Hero',1,2007,NULL,'102'),(829482,'movie','Superbad','Superbad',1,2007,NULL,'113'),(830515,'movie','Quantum of Solace','Quantum of Solace',1,2008,NULL,'106'),(830535,'movie','Disfigured','Disfigured',1,2008,NULL,'96'),(830570,'movie','I Can\'t Think Straight','I Can\'t Think Straight',1,2008,NULL,'82'),(830896,'movie','Men in the Nude','Férfiakt',1,2006,NULL,'94'),(831387,'movie','Godzilla','Godzilla',1,2014,NULL,'123'),(831887,'movie','The Spirit','The Spirit',1,2008,NULL,'103'),(831888,'movie','Tekkonkinkreet','Tekkon kinkurîto',1,2006,NULL,'111'),(832266,'movie','Definitely, Maybe','Definitely, Maybe',1,2008,NULL,'112'),(832958,'movie','On the Trail of Igor Rizzi','Sur la trace d\'Igor Rizzi',1,2006,NULL,'91'),(833098,'tvEpisode','The Screwfly Solution','The Screwfly Solution',1,2006,NULL,'59'),(834001,'movie','Underworld: Rise of the Lycans','Underworld: Rise of the Lycans',1,2009,NULL,'92'),(837562,'movie','Hotel Transylvania','Hotel Transylvania',1,2012,NULL,'91'),(837563,'movie','Pet Sematary','Pet Sematary',1,2019,NULL,'101'),(838192,'movie','Fashion Victims','Reine Geschmacksache',1,2007,NULL,'105'),(838221,'movie','The Darjeeling Limited','The Darjeeling Limited',1,2007,NULL,'91'),(838247,'movie','After.Life','After.Life',1,2009,NULL,'104'),(838283,'movie','Step Brothers','Step Brothers',1,2008,NULL,'98'),(840361,'movie','The Town','The Town',1,2010,NULL,'125'),(840363,'movie','Racing Daylight','Racing Daylight',1,2007,NULL,'83'),(841044,'movie','Two Days in Paris','2 Days in Paris',1,2007,NULL,'96'),(842926,'movie','The Kids Are All Right','The Kids Are All Right',1,2010,NULL,'106'),(844286,'movie','The Brothers Bloom','The Brothers Bloom',1,2008,NULL,'114'),(844471,'movie','Cloudy with a Chance of Meatballs','Cloudy with a Chance of Meatballs',1,2009,NULL,'90'),(844708,'movie','The Last House on the Left','The Last House on the Left',1,2009,NULL,'110'),(844760,'video','Starship Troopers 3: Marauder','Starship Troopers 3: Marauder',1,2008,NULL,'105'),(844794,'tvMovie','Northanger Abbey','Northanger Abbey',1,2007,NULL,'84'),(844993,'movie','Hoodwinked 2: Hood vs. Evil','Hoodwinked Too! Hood vs. Evil',1,2011,NULL,'87'),(845046,'movie','Son of Rambow','Son of Rambow',1,2007,NULL,'96'),(848228,'movie','The Avengers','The Avengers',1,2012,NULL,'143'),(848537,'movie','Epic','Epic',1,2013,NULL,'102'),(848542,'movie','Arranged','Arranged',1,2007,NULL,'90'),(848557,'movie','Diary of the Dead','Diary of the Dead',1,2007,NULL,'95'),(850677,'movie','Jack & Diane','Jack & Diane',1,2012,NULL,'105'),(851578,'movie','Paprika','Paprika',1,2006,NULL,'90'),(852713,'movie','The House Bunny','The House Bunny',1,2008,NULL,'97'),(854548,'tvEpisode','The Washingtonians','The Washingtonians',1,2007,NULL,'57'),(855729,'movie','Times and Winds','Bes Vakit',1,2006,NULL,'111'),(855805,'movie','Falkenberg Farewell','Farväl Falkenberg',1,2006,NULL,'91'),(856288,'movie','Inside','À l\'intérieur',1,2007,NULL,'82'),(857191,'movie','The Visitor','The Visitor',1,2007,NULL,'104'),(859163,'movie','The Mummy: Tomb of the Dragon Emperor','The Mummy: Tomb of the Dragon Emperor',1,2008,NULL,'112'),(859594,'video','Barbie in the 12 Dancing Princesses','Barbie in the 12 Dancing Princesses',1,2006,NULL,'83'),(859765,'movie','Still Life','San xia hao ren',1,2006,NULL,'111'),(860528,'movie','Salvation','Salvation',1,2007,NULL,'86'),(860866,'movie','Far North','Far North',1,2007,NULL,'89'),(860906,'movie','Evangelion: 2.0 You Can (Not) Advance','Evangerion shin gekijôban: Ha',1,2009,NULL,'112'),(860907,'movie','Evangelion: 3.0 You Can (Not) Redo','Evangelion Shin Gekijôban: Kyu',1,2012,NULL,'96'),(861689,'movie','Blindness','Blindness',1,2008,NULL,'121'),(861739,'movie','Elite Squad','Tropa de Elite',1,2007,NULL,'115'),(862467,'movie','Valhalla Rising','Valhalla Rising',1,2009,NULL,'93'),(862846,'movie','Sunshine Cleaning','Sunshine Cleaning',1,2008,NULL,'91'),(862856,'movie','Trick \'r Treat','Trick \'r Treat',1,2007,NULL,'82'),(863091,'movie','Mukhsin','Mukhsin',1,2006,NULL,'95'),(864761,'movie','The Duchess','The Duchess',1,2008,NULL,'110'),(864835,'movie','Mr. Peabody & Sherman','Mr. Peabody & Sherman',1,2014,NULL,'92'),(865556,'movie','The Forbidden Kingdom','The Forbidden Kingdom',1,2008,NULL,'104'),(866437,'movie','The Jane Austen Book Club','The Jane Austen Book Club',1,2007,NULL,'106'),(866439,'movie','Made of Honor','Made of Honor',1,2008,NULL,'101'),(868394,'tvEpisode','Dream Cruise','Dream Cruise',1,2007,NULL,'87'),(869977,'movie','Water Lilies','Naissance des pieuvres',1,2007,NULL,'85'),(870089,'movie','Ciao','Ciao',1,2008,NULL,'87'),(870090,'movie','City of Men','Cidade dos Homens',1,2007,NULL,'106'),(870111,'movie','Frost/Nixon','Frost/Nixon',1,2008,NULL,'122'),(870154,'movie','Jungle Cruise','Jungle Cruise',1,2021,NULL,'127'),(870984,'movie','Antichrist','Antichrist',1,2009,NULL,'108'),(871197,'tvEpisode','Right to Die','Right to Die',1,2007,NULL,'58'),(871426,'movie','Baby Mama','Baby Mama',1,2008,NULL,'99'),(871510,'movie','Chak De! India','Chak De! India',1,2007,NULL,'153'),(872230,'movie','My Soul to Take','My Soul to Take',1,2010,NULL,'107'),(873886,'movie','Red State','Red State',1,2011,NULL,'88'),(874271,'movie','Elsewhere','Elsewhere',1,2009,NULL,'106'),(874425,'movie','Pretty Ugly People','Pretty Ugly People',1,2008,NULL,'99'),(875034,'movie','Nine','Nine',1,2009,NULL,'118'),(875113,'movie','99 francs','99 francs',1,2007,NULL,'100'),(876154,'tvMovie','To Have and to Hold','To Have and to Hold',1,2006,NULL,'90'),(876294,'movie','Zombie Diaries','The Zombie Diaries',1,2006,NULL,'85'),(876563,'movie','Ponyo','Gake no ue no Ponyo',1,2008,NULL,'101'),(877368,'video','Tales from the Grudge','Tales from the Grudge',1,2006,NULL,'7'),(878804,'movie','The Blind Side','The Blind Side',1,2009,NULL,'129'),(878835,'movie','Please Give','Please Give',1,2010,NULL,'87'),(879870,'movie','Eat Pray Love','Eat Pray Love',1,2010,NULL,'133'),(880502,'movie','The Edge of Heaven','Auf der anderen Seite',1,2007,NULL,'122'),(881891,'movie','All About Steve','All About Steve',1,2009,NULL,'99'),(882978,'movie','Three Kingdoms','San guo zhi jian long xie jia',1,2008,NULL,'102'),(884328,'movie','The Mist','The Mist',1,2007,NULL,'126'),(884726,'movie','Legends of Oz: Dorothy\'s Return','Legends of Oz: Dorothy\'s Return',1,2013,NULL,'88'),(884732,'movie','The Wedding Ringer','The Wedding Ringer',1,2015,NULL,'101'),(884819,'movie','Wool 100%','Wool 100%',1,2006,NULL,'100'),(887732,'movie','Days and Clouds','Giorni e nuvole',1,2007,NULL,'118'),(887745,'movie','How About You','How About You...',1,2007,NULL,'87'),(887883,'movie','Burn After Reading','Burn After Reading',1,2008,NULL,'96'),(887912,'movie','The Hurt Locker','The Hurt Locker',1,2008,NULL,'131'),(887971,'movie','While She Was Out','While She Was Out',1,2008,NULL,'86'),(888019,'movie','Five Across the Eyes','Five Across the Eyes',1,2006,NULL,'95'),(889573,'movie','The Switch','The Switch',1,2010,NULL,'101'),(889583,'movie','Brüno','Brüno',1,2009,NULL,'81'),(889600,'tvMovie','To Be Fat Like Me','To Be Fat Like Me',1,2007,NULL,'89'),(889665,'movie','Steak','Steak',1,2007,NULL,'82'),(890870,'movie','Saw IV','Saw IV',1,2007,NULL,'93'),(891527,'movie','Lions for Lambs','Lions for Lambs',1,2007,NULL,'92'),(892100,'movie','Steam','Steam',1,2007,NULL,'120'),(892255,'movie','Che: Part One','Che: Part One',1,2008,NULL,'134'),(892318,'movie','Letters to Juliet','Letters to Juliet',1,2010,NULL,'105'),(892769,'movie','How to Train Your Dragon','How to Train Your Dragon',1,2010,NULL,'98'),(892782,'movie','Monsters vs. Aliens','Monsters vs. Aliens',1,2009,NULL,'94'),(892791,'movie','Shrek Forever After','Shrek Forever After',1,2010,NULL,'95'),(892899,'movie','Outpost','Outpost',1,2008,NULL,'90'),(893402,'movie','Franklyn','Franklyn',1,2008,NULL,'98'),(893412,'movie','From Prada to Nada','From Prada to Nada',1,2011,NULL,'107'),(896031,'movie','The Loss of a Teardrop Diamond','The Loss of a Teardrop Diamond',1,2008,NULL,'102'),(896529,'movie','Cairo Time','Cairo Time',1,2009,NULL,'90'),(896534,'movie','Deadgirl','Deadgirl',1,2008,NULL,'101'),(896798,'movie','Cleaner','Cleaner',1,2007,NULL,'88'),(896872,'movie','The Whistleblower','The Whistleblower',1,2010,NULL,'112'),(896923,'movie','The City of Your Final Destination','The City of Your Final Destination',1,2009,NULL,'117'),(896986,'movie','La torre de Suso','La torre de Suso',1,2007,NULL,'95'),(897361,'movie','I Know Who Killed Me','I Know Who Killed Me',1,2007,NULL,'106'),(898367,'movie','The Road','The Road',1,2009,NULL,'111'),(899106,'movie','Love Happens','Love Happens',1,2009,NULL,'109'),(900387,'movie','Suite Française','Suite Française',1,2014,NULL,'107'),(901476,'movie','Bride Wars','Bride Wars',1,2009,NULL,'89'),(902290,'movie','I Sell the Dead','I Sell the Dead',1,2008,NULL,'85'),(903624,'movie','The Hobbit: An Unexpected Journey','The Hobbit: An Unexpected Journey',1,2012,NULL,'169'),(903657,'movie','Love & Mercy','Love & Mercy',1,2014,NULL,'121'),(904049,'movie','Exte: Hair Extensions','Ekusute',1,2007,NULL,'108'),(905372,'movie','The Thing','The Thing',1,2011,NULL,'103'),(906778,'movie','Black Butterflies','Black Butterflies',1,2011,NULL,'100'),(907657,'movie','Once','Once',1,2007,NULL,'86'),(909010,'tvMovie','The Bad Mother\'s Handbook','The Bad Mother\'s Handbook',1,2007,NULL,'71'),(910554,'movie','Frequently Asked Questions About Time Travel','Frequently Asked Questions About Time Travel',1,2009,NULL,'83'),(910847,'movie','Breakfast with Scot','Breakfast with Scot',1,2007,NULL,'90'),(910905,'movie','In the Electric Mist','In the Electric Mist',1,2009,NULL,'117'),(910936,'movie','Pineapple Express','Pineapple Express',1,2008,NULL,'111'),(910970,'movie','WALL·E','WALL·E',1,2008,NULL,'98'),(913354,'movie','Armored','Armored',1,2009,NULL,'88'),(913425,'movie','Broken Embraces','Los abrazos rotos',1,2009,NULL,'127'),(913445,'movie','YPF','Young People Fucking',1,2007,NULL,'87'),(914797,'movie','Bottle Shock','Bottle Shock',1,2008,NULL,'110'),(914798,'movie','The Boy in the Striped Pajamas','The Boy in the Striped Pajamas',1,2008,NULL,'94'),(914837,'movie','44 Inch Chest','44 Inch Chest',1,2009,NULL,'95'),(915460,'movie','Grizzly Park','Grizzly Park',1,2008,NULL,'95'),(918927,'movie','Doubt','Doubt',1,2008,NULL,'104'),(918940,'movie','The Legend of Tarzan','The Legend of Tarzan',1,2016,NULL,'110'),(923752,'movie','The King of Kong: A Fistful of Quarters','The King of Kong',1,2007,NULL,'79'),(923811,'movie','Evangelion: 1.0 You Are (Not) Alone','Evangelion Shin Gekijôban: Jo',1,2007,NULL,'98'),(923985,'movie','We Are the Strange','We Are the Strange',1,2007,NULL,'88'),(924129,'movie','Crossing Over','Crossing Over',1,2009,NULL,'113'),(925230,'movie','Cocalero','Cocalero',1,2007,NULL,'86'),(926063,'movie','Dance of the Dead','Dance of the Dead',1,2008,NULL,'87'),(926084,'movie','Harry Potter and the Deathly Hallows: Part 1','Harry Potter and the Deathly Hallows: Part 1',1,2010,NULL,'146'),(926129,'movie','Prom Night','Prom Night',1,2008,NULL,'88'),(929425,'movie','Gomorrah','Gomorra',1,2008,NULL,'137'),(929629,'video','Stargate: Continuum','Stargate: Continuum',1,2008,NULL,'98'),(929632,'movie','Precious','Precious',1,2009,NULL,'110'),(932669,'movie','Older Than America','Older Than America',1,2008,NULL,'102'),(934427,'movie','Exit No. 6','Liu hao chu kou',1,2006,NULL,'99'),(935075,'movie','Rabbit Hole','Rabbit Hole',1,2010,NULL,'91'),(936501,'movie','Taken','Taken',1,2008,NULL,'90'),(937375,'movie','This Christmas','This Christmas',1,2007,NULL,'119'),(938283,'movie','The Last Airbender','The Last Airbender',1,2010,NULL,'103'),(938330,'movie','Silent Hill: Revelation','Silent Hill: Revelation',1,2012,NULL,'95'),(938341,'movie','Tokyo Sonata','Tokyo Sonata',1,2008,NULL,'120'),(940709,'movie','CJ7','Cheung gong 7 hou',1,2008,NULL,'88'),(942384,'movie','Shelter','Shelter',1,2007,NULL,'97'),(942385,'movie','Tropic Thunder','Tropic Thunder',1,2008,NULL,'107'),(942903,'video','Stargate: The Ark of Truth','Stargate: The Ark of Truth',1,2008,NULL,'101'),(943232,'movie','Hands off Mississippi','Hände weg von Mississippi',1,2007,NULL,'98'),(944835,'movie','Salt','Salt',1,2010,NULL,'100'),(945513,'movie','Source Code','Source Code',1,2011,NULL,'93'),(947798,'movie','Black Swan','Black Swan',1,2010,NULL,'108'),(947802,'movie','Lakeview Terrace','Lakeview Terrace',1,2008,NULL,'110'),(947810,'movie','Green Zone','Green Zone',1,2010,NULL,'115'),(948470,'movie','The Amazing Spider-Man','The Amazing Spider-Man',1,2012,NULL,'136'),(948530,'movie','Moscow, Belgium','Aanrijding in Moscou',1,2008,NULL,'102'),(948535,'movie','Paris 36','Faubourg 36',1,2008,NULL,'120'),(950740,'tvMovie','A Grandpa for Christmas','A Grandpa for Christmas',1,2007,NULL,'84'),(951216,'movie','Mad Money','Mad Money',1,2008,NULL,'104'),(951257,'movie','Bi the Way','Bi the Way',1,2008,NULL,'85'),(951297,'movie','How Much Further','Qué tan lejos',1,2006,NULL,'92'),(952682,'movie','Shotgun Stories','Shotgun Stories',1,2007,NULL,'92'),(954947,'movie','The Killer Inside Me','The Killer Inside Me',1,2010,NULL,'109'),(955308,'movie','Robin Hood','Robin Hood',1,2010,NULL,'140'),(959337,'movie','Revolutionary Road','Revolutionary Road',1,2008,NULL,'119'),(959342,'movie','Mind the Gap','Se upp för dårarna',1,2007,NULL,'103'),(960144,'movie','You Don\'t Mess with the Zohan','You Don\'t Mess with the Zohan',1,2008,NULL,'113'),(960731,'movie','Bedtime Stories','Bedtime Stories',1,2008,NULL,'99'),(960835,'video','Transmorphers','Transmorphers',1,2007,NULL,'86'),(960890,'movie','Zombie Strippers!','Zombie Strippers!',1,2008,NULL,'94'),(961066,'movie','Everlasting Moments','Maria Larssons eviga ögonblick',1,2008,NULL,'131'),(962726,'movie','High School Musical 3: Senior Year','High School Musical 3: Senior Year',1,2008,NULL,'112'),(962736,'movie','The Young Victoria','The Young Victoria',1,2009,NULL,'105'),(963194,'movie','Repo! The Genetic Opera','Repo! The Genetic Opera',1,2008,NULL,'98'),(963743,'movie','Angus, Thongs and Perfect Snogging','Angus, Thongs and Perfect Snogging',1,2008,NULL,'100'),(963794,'movie','The Ruins','The Ruins',1,2008,NULL,'90'),(963966,'movie','The Sorcerer\'s Apprentice','The Sorcerer\'s Apprentice',1,2010,NULL,'109'),(964516,'movie','Fashion','Fashion',1,2008,NULL,'167'),(964517,'movie','The Fighter','The Fighter',1,2010,NULL,'116'),(964586,'movie','Skin','Skin',1,2008,NULL,'107'),(964587,'movie','St. Trinian\'s','St. Trinian\'s',1,2007,NULL,'101'),(965440,'movie','Rain','Rain',1,2008,NULL,'93'),(968264,'movie','The Conspirator','The Conspirator',1,2010,NULL,'122'),(969647,'video','The Little Mermaid: Ariel\'s Beginning','The Little Mermaid: Ariel\'s Beginning',1,2008,NULL,'77'),(970179,'movie','Hugo','Hugo',1,2011,NULL,'126'),(970411,'movie','City of Ember','City of Ember',1,2008,NULL,'90'),(970416,'movie','The Day the Earth Stood Still','The Day the Earth Stood Still',1,2008,NULL,'104'),(970452,'movie','Solomon Kane','Solomon Kane',1,2009,NULL,'104'),(970468,'movie','Miss Pettigrew Lives for a Day','Miss Pettigrew Lives for a Day',1,2008,NULL,'92'),(970472,'movie','Vexille','Bekushiru: 2077 Nihon sakoku',1,2007,NULL,'109'),(971205,'short','Lucky Blue','Lucky Blue',1,2007,NULL,'28'),(971209,'movie','A Perfect Getaway','A Perfect Getaway',1,2009,NULL,'98'),(972785,'video','Bring It On: In It to Win It','Bring It On: In It to Win It',1,2007,NULL,'90'),(974015,'movie','Justice League','Justice League',1,2017,NULL,'120'),(974661,'movie','17 Again','17 Again',1,2009,NULL,'102'),(974959,'video','American Pie Presents: Beta House','Beta House',1,2007,NULL,'85'),(975645,'movie','Hitchcock','Hitchcock',1,2012,NULL,'98'),(976051,'movie','The Reader','The Reader',1,2008,NULL,'124'),(976238,'movie','Old Dogs','Old Dogs',1,2009,NULL,'88'),(977855,'movie','Fair Game','Fair Game',1,2010,NULL,'108'),(978759,'movie','Frozen River','Frozen River',1,2008,NULL,'97'),(978762,'movie','Mary and Max','Mary and Max.',1,2009,NULL,'92'),(978764,'movie','Sucker Punch','Sucker Punch',1,2011,NULL,'110'),(980970,'movie','The Chronicles of Narnia: The Voyage of the Dawn Treader','The Chronicles of Narnia: The Voyage of the Dawn Treader',1,2010,NULL,'113'),(981072,'movie','The Lucky Ones','The Lucky Ones',1,2008,NULL,'115'),(981227,'movie','Nick and Norah\'s Infinite Playlist','Nick and Norah\'s Infinite Playlist',1,2008,NULL,'90'),(983193,'movie','The Adventures of Tintin','The Adventures of Tintin',1,2011,NULL,'107'),(983213,'movie','5 Centimeters per Second','Byôsoku 5 senchimêtoru',1,2007,NULL,'63'),(983946,'movie','Fantasy Island','Fantasy Island',1,2020,NULL,'109'),(984130,'movie','Miao Miao','Miao Miao',1,2008,NULL,'83'),(985694,'movie','Machete','Machete',1,2010,NULL,'105'),(985699,'movie','Valkyrie','Valkyrie',1,2008,NULL,'121'),(986230,'movie','French Film','French Film',1,2008,NULL,'87'),(986233,'movie','Hunger','Hunger',1,2008,NULL,'96'),(986263,'movie','Surrogates','Surrogates',1,2009,NULL,'89'),(988045,'movie','Sherlock Holmes','Sherlock Holmes',1,2009,NULL,'128'),(988595,'movie','27 Dresses','27 Dresses',1,2008,NULL,'111'),(989757,'movie','Dear John','Dear John',1,2010,NULL,'108'),(990407,'movie','The Green Hornet','The Green Hornet',1,2011,NULL,'119'),(993840,'movie','Army of the Dead','Army of the Dead',1,2021,NULL,'148'),(993842,'movie','Hanna','Hanna',1,2011,NULL,'111'),(993846,'movie','The Wolf of Wall Street','The Wolf of Wall Street',1,2013,NULL,'180'),(995031,'movie','Bhool Bhulaiyaa','Bhool Bhulaiyaa',1,2007,NULL,'159'),(995039,'movie','Ghost Town','Ghost Town',1,2008,NULL,'102'),(995829,'movie','XXY','XXY',1,2007,NULL,'86'),(995850,'movie','Vision','Vision - Aus dem Leben der Hildegard von Bingen',1,2009,NULL,'110'),(996605,'movie','Love Songs','Les chansons d\'amour',1,2007,NULL,'91'),(997047,'movie','College Road Trip','College Road Trip',1,2008,NULL,'83'),(997152,'movie','The Experiment','The Experiment',1,2010,NULL,'96'),(997174,'movie','Welcome to the Quiet Room','Quiet room ni yôkoso',1,2007,NULL,'118'),(997260,'movie','Rosa: The Movie','Rosa: The Movie',1,2007,NULL,'85'),(999913,'movie','Straw Dogs','Straw Dogs',1,2011,NULL,'110'),(10003008,'movie','The Rental','The Rental',1,2020,NULL,'88'),(1000774,'movie','Sex and the City','Sex and the City',1,2008,NULL,'145'),(10011336,'movie','Lucky Grandma','Lucky Grandma',1,2019,NULL,'87'),(1001508,'movie','He\'s Just Not That Into You','He\'s Just Not That Into You',1,2009,NULL,'129'),(1001526,'movie','Megamind','Megamind',1,2010,NULL,'95'),(10016180,'movie','The Little Things','The Little Things',1,2021,NULL,'128'),(1003034,'movie','Perrier\'s Bounty','Perrier\'s Bounty',1,2009,NULL,'88'),(10059518,'movie','Unhinged','Unhinged',1,2020,NULL,'90'),(10060094,'movie','The Knight Before Christmas','The Knight Before Christmas',1,2019,NULL,'92'),(10065694,'movie','Antebellum','Antebellum',1,2020,NULL,'105'),(1007029,'movie','The Iron Lady','The Iron Lady',1,2011,NULL,'105'),(1007920,'video','Barbie Fairytopia: Magic of the Rainbow','Barbie Fairytopia: Magic of the Rainbow',1,2007,NULL,'75'),(10083340,'movie','Gangubai Kathiawadi','Gangubai Kathiawadi',1,2022,NULL,'152'),(1010048,'movie','Slumdog Millionaire','Slumdog Millionaire',1,2008,NULL,'120'),(10101702,'movie','My Little Pony: A New Generation','My Little Pony: A New Generation',1,2021,NULL,'90'),(10121392,'movie','Thunder Force','Thunder Force',1,2021,NULL,'106'),(10126434,'movie','Scare Me','Scare Me',1,2020,NULL,'104'),(1012729,'movie','Helen','Helen',1,2009,NULL,'120'),(1013743,'movie','Knight and Day','Knight and Day',1,2010,NULL,'109'),(1013752,'movie','Fast & Furious','Fast & Furious',1,2009,NULL,'107'),(1013753,'movie','Milk','Milk',1,2008,NULL,'128'),(1013860,'movie','Dylan Dog: Dead of Night','Dylan Dog: Dead of Night',1,2010,NULL,'108'),(1014759,'movie','Alice in Wonderland','Alice in Wonderland',1,2010,NULL,'108'),(1014763,'movie','Child 44','Child 44',1,2015,NULL,'137'),(1014775,'movie','Beverly Hills Chihuahua','Beverly Hills Chihuahua',1,2008,NULL,'91'),(10155932,'movie','Cinderella','Cinderella',1,2021,NULL,'113'),(1016150,'movie','All Quiet on the Western Front','Im Westen nichts Neues',1,2022,NULL,'148'),(10161886,'movie','The Prom','The Prom',1,2020,NULL,'130'),(1016268,'movie','Enron: The Smartest Guys in the Room','Enron: The Smartest Guys in the Room',1,2005,NULL,'110'),(1016301,'movie','Fermat\'s Room','La habitación de Fermat',1,2007,NULL,'89'),(10168670,'movie','Bones and All','Bones and All',1,2022,NULL,'131'),(1017451,'movie','The Runaways','The Runaways',1,2010,NULL,'106'),(1017460,'movie','Splice','Splice',1,2009,NULL,'104'),(1018785,'movie','The Sisterhood of the Traveling Pants 2','The Sisterhood of the Traveling Pants 2',1,2008,NULL,'119'),(10189300,'movie','Lunana: A Yak in the Classroom','Lunana',1,2019,NULL,'110'),(1019452,'movie','A Serious Man','A Serious Man',1,2009,NULL,'106'),(10199590,'movie','Les Misérables','Les misérables',1,2019,NULL,'104'),(1020072,'movie','Selma','Selma',1,2014,NULL,'128'),(1020543,'movie','Infestation','Infestation',1,2009,NULL,'91'),(1020558,'movie','Centurion','Centurion',1,2010,NULL,'97'),(1020773,'movie','Certified Copy','Copie conforme',1,2010,NULL,'106'),(1020885,'movie','Vampire Killers','Lesbian Vampire Killers',1,2009,NULL,'86'),(10213380,'movie','Manor House','Malmkrog',1,2020,NULL,'201'),(1022603,'movie','500 Days of Summer','(500) Days of Summer',1,2009,NULL,'95'),(1022606,'movie','Lion\'s Den','Leonera',1,2008,NULL,'113'),(10228134,'movie','Jolt','Jolt',1,2021,NULL,'91'),(1022885,'movie','The Scouting Book for Boys','The Scouting Book for Boys',1,2009,NULL,'93'),(1023111,'movie','Never Back Down','Never Back Down',1,2008,NULL,'113'),(1023114,'movie','The Way Back','The Way Back',1,2010,NULL,'133'),(1023441,'movie','Coco Chanel & Igor Stravinsky','Coco Chanel & Igor Stravinsky',1,2009,NULL,'119'),(1023481,'movie','Step Up 2: The Streets','Step Up 2: The Streets',1,2008,NULL,'98'),(1024255,'movie','Wild Child','Wild Child',1,2008,NULL,'98'),(10243992,'movie','I\'m Your Woman','I\'m Your Woman',1,2020,NULL,'120'),(10244726,'movie','Bruno Aleixo\'s Film','O Filme do Bruno Aleixo',1,2019,NULL,'91'),(10244760,'movie','Ghost Tropic','Ghost Tropic',1,2019,NULL,'85'),(1024648,'movie','Argo','Argo',1,2012,NULL,'120'),(1024744,'movie','I Come with the Rain','I Come with the Rain',1,2009,NULL,'114'),(1024856,'movie','Negative Happy Chainsaw Edge','Negatibu happî chênsô ejji',1,2007,NULL,'109'),(1025100,'movie','Gemini Man','Gemini Man',1,2019,NULL,'117'),(10276470,'movie','Work It','Work It',1,2020,NULL,'93'),(1027718,'movie','Wall Street: Money Never Sleeps','Wall Street: Money Never Sleeps',1,2010,NULL,'133'),(10278918,'tvSeries','Willow','Willow',1,2022,2023,NULL),(10279362,'movie','French Exit','French Exit',1,2020,NULL,'113'),(1028528,'movie','Death Proof','Death Proof',1,2007,NULL,'127'),(1028532,'movie','Hachi: A Dog\'s Tale','Hachi: A Dog\'s Tale',1,2009,NULL,'93'),(1028576,'movie','Secretariat','Secretariat',1,2010,NULL,'123'),(10288566,'movie','Another Round','Druk',1,2020,NULL,'117'),(1029134,'movie','Birds of America','Birds of America',1,2008,NULL,'85'),(1029234,'movie','Martyrs','Martyrs',1,2008,NULL,'99'),(10293406,'movie','The Power of the Dog','The Power of the Dog',1,2021,NULL,'126'),(10298810,'movie','Lightyear','Lightyear',1,2022,NULL,'105'),(10298840,'movie','Strange World','Strange World',1,2022,NULL,'102'),(10307724,'movie','Madame Claude','Madame Claude',1,2021,NULL,'112'),(10308528,'movie','Helen','Helen',1,2020,NULL,'99'),(1032207,'movie','Lynch','Lynch',1,2007,NULL,'84'),(10324144,'movie','Article 15','Article 15',1,2019,NULL,'130'),(1032755,'movie','RocknRolla','RocknRolla',1,2008,NULL,'114'),(1032846,'movie','4 Months, 3 Weeks and 2 Days','4 luni, 3 saptamâni si 2 zile',1,2007,NULL,'113'),(1032856,'movie','The Band\'s Visit','Bikur Ha-Tizmoret',1,2007,NULL,'87'),(10332588,'movie','Finding \'Ohana','Finding \'Ohana',1,2021,NULL,'123'),(10334456,'movie','Once Were Brothers','Once Were Brothers: Robbie Robertson & The Band',1,2019,NULL,'100'),(1033575,'movie','The Descendants','The Descendants',1,2011,NULL,'115'),(1033643,'movie','What Happens in Vegas','What Happens in Vegas',1,2008,NULL,'99'),(1034032,'movie','Gamer','Gamer',1,2009,NULL,'95'),(10341034,'movie','Black Box','Boîte noire',1,2021,NULL,'129'),(10342730,'movie','Spiral','Spiral: From the Book of Saw',1,2021,NULL,'93'),(1034302,'movie','The Cry of the Owl','The Cry of the Owl',1,2009,NULL,'100'),(1034303,'movie','Defiance','Defiance',1,2008,NULL,'137'),(1034314,'movie','Iron Sky','Iron Sky',1,2012,NULL,'93'),(1034325,'movie','Phoebe in Wonderland','Phoebe in Wonderland',1,2008,NULL,'96'),(1034385,'movie','Cold Skin','Cold Skin',1,2017,NULL,'108'),(1034389,'movie','The Eagle','The Eagle',1,2011,NULL,'114'),(1034415,'movie','Suspiria','Suspiria',1,2018,NULL,'152'),(10344522,'movie','Four Good Days','Four Good Days',1,2020,NULL,'100'),(10355058,'movie','Secret Agent Dingledorf and His Trusty Dog Splat','Secret Agent Dingledorf and His Trusty Dog Splat',1,2021,NULL,'89'),(1035736,'movie','Coco Before Chanel','Coco avant Chanel',1,2009,NULL,'105'),(10365998,'movie','Infinity Pool','Infinity Pool',1,2023,NULL,'117'),(10366460,'movie','CODA','CODA',1,2021,NULL,'111'),(10370710,'movie','The Worst Person in the World','Verdens verste menneske',1,2021,NULL,'128'),(1037146,'movie','All About Women','Nu ren bu huai',1,2008,NULL,'120'),(10373934,'movie','Deep Woods','Deep Woods',1,2022,NULL,'93'),(1037705,'movie','The Book of Eli','The Book of Eli',1,2010,NULL,'118'),(1038686,'movie','Legion','Legion',1,2010,NULL,'100'),(1038988,'movie','REC','[Rec]',1,2007,NULL,'78'),(1039960,'movie','Estomago: A Gastronomic Story','Estômago',1,2007,NULL,'113'),(10403420,'movie','Terrifier 2','Terrifier 2',1,2022,NULL,'138'),(1041829,'movie','The Proposal','The Proposal',1,2009,NULL,'108'),(10426916,'movie','Simply Black','Tout simplement noir',1,2020,NULL,'90'),(1043726,'movie','The Legend of Hercules','The Legend of Hercules',1,2014,NULL,'99'),(1043842,'movie','Appleseed: Ex Machina','Appurushido: Ekusu makina',1,2007,NULL,'105'),(10441958,'movie','How to Be a Good Wife','La bonne épouse',1,2020,NULL,'109'),(1045658,'movie','Silver Linings Playbook','Silver Linings Playbook',1,2012,NULL,'122'),(1045670,'movie','Happy-Go-Lucky','Happy-Go-Lucky',1,2008,NULL,'118'),(10457128,'movie','Summer of 85','Été 85',1,2020,NULL,'101'),(1045772,'movie','I Love You Phillip Morris','I Love You Phillip Morris',1,2009,NULL,'102'),(1045778,'movie','Year One','Year One',1,2009,NULL,'97'),(1046173,'movie','G.I. Joe: The Rise of Cobra','G.I. Joe: The Rise of Cobra',1,2009,NULL,'118'),(1046947,'movie','Last Chance Harvey','Last Chance Harvey',1,2008,NULL,'93'),(1046997,'movie','Miracle at St. Anna','Miracle at St. Anna',1,2008,NULL,'160'),(1047540,'movie','Parental Guidance','Parental Guidance',1,2012,NULL,'105'),(1048171,'movie','Seraphine','Séraphine',1,2008,NULL,'125'),(1048174,'movie','The World Unseen','The World Unseen',1,2007,NULL,'93'),(10483044,'movie','Cousins','Cousins',1,2021,NULL,'98'),(1049402,'movie','Howl','Howl',1,2010,NULL,'84'),(1049413,'movie','Up','Up',1,2009,NULL,'96'),(1049948,'movie','Casi divas','Casi divas',1,2008,NULL,'107'),(1050001,'movie','Albino Farm','Albino Farm',1,2009,NULL,'90'),(1050002,'movie','My Last Five Girlfriends','My Last Five Girlfriends',1,2009,NULL,'90'),(1050160,'movie','The Machine Girl','Kataude mashin gâru',1,2008,NULL,'96'),(10514222,'movie','Ma Rainey\'s Black Bottom','Ma Rainey\'s Black Bottom',1,2020,NULL,'94'),(10515852,'movie','Steven Universe: The Movie','Steven Universe: The Movie',1,2019,NULL,'82'),(1051904,'movie','Goosebumps','Goosebumps',1,2015,NULL,'103'),(1051906,'movie','The Invisible Man','The Invisible Man',1,2020,NULL,'124'),(1052040,'movie','Seventh Moon','Seventh Moon',1,2008,NULL,'87'),(10521814,'movie','K-12','K-12',1,2019,NULL,'96'),(1052352,'tvMovie','Princess','Princess',1,2008,NULL,'88'),(10525672,'movie','Silver Skates','Serebryanye konki',1,2020,NULL,'130'),(10530176,'movie','The Call','Kol',1,2020,NULL,'112'),(1053424,'movie','Repo Men','Repo Men',1,2010,NULL,'111'),(1053810,'movie','The Big Year','The Big Year',1,2011,NULL,'102'),(10539608,'movie','The Midnight Sky','The Midnight Sky',1,2020,NULL,'118'),(10541410,'movie','A Fada do Lar','A Fada do Lar',1,2022,NULL,'103'),(1054485,'video','Futurama: The Beast with a Billion Backs','Futurama: The Beast with a Billion Backs',1,2008,NULL,'90'),(1054486,'video','Futurama: Bender\'s Game','Futurama: Bender\'s Game',1,2008,NULL,'88'),(1054487,'video','Futurama: Into the Wild Green Yonder','Futurama: Into the Wild Green Yonder',1,2009,NULL,'89'),(1054580,'movie','Desert Flower','Desert Flower',1,2009,NULL,'120'),(1054588,'movie','Flash of Genius','Flash of Genius',1,2008,NULL,'119'),(1054606,'movie','The Imaginarium of Doctor Parnassus','The Imaginarium of Doctor Parnassus',1,2009,NULL,'123'),(1055292,'movie','Life as We Know It','Life as We Know It',1,2010,NULL,'115'),(1055366,'tvMovie','Camp Rock','Camp Rock',1,2008,NULL,'94'),(1055369,'movie','Transformers: Revenge of the Fallen','Transformers: Revenge of the Fallen',1,2009,NULL,'149'),(10556022,'movie','Unpregnant','Unpregnant',1,2020,NULL,'103'),(1056437,'movie','The Sky Crawlers','Sukai kurora',1,2008,NULL,'122'),(1056444,'movie','Damn Bastard!','¡Maldito bastardo!',1,2008,NULL,'83'),(1057500,'movie','Invictus','Invictus',1,2009,NULL,'134'),(1058017,'movie','The Invention of Lying','The Invention of Lying',1,2009,NULL,'100'),(1059786,'movie','Eagle Eye','Eagle Eye',1,2008,NULL,'118'),(1059925,'movie','According to Greta','Greta',1,2009,NULL,'92'),(10600398,'movie','We Can Be Heroes','We Can Be Heroes',1,2020,NULL,'100'),(1060277,'movie','Cloverfield','Cloverfield',1,2008,NULL,'85'),(10612922,'movie','One Night in Miami...','One Night in Miami...',1,2020,NULL,'114'),(10618286,'movie','Mank','Mank',1,2020,NULL,'131'),(10623646,'tvSeries','Paper Girls','Paper Girls',1,2022,2022,'40'),(10633456,'movie','Minari','Minari',1,2020,NULL,'115'),(1063669,'movie','The Wave','Die Welle',1,2008,NULL,'107'),(10638522,'movie','Talk to Me','Talk to Me',1,2022,NULL,'95'),(10640346,'movie','Babylon','Babylon',1,2022,NULL,'189'),(10648342,'movie','Thor: Love and Thunder','Thor: Love and Thunder',1,2022,NULL,'118'),(1064932,'movie','Welcome to the Sticks','Bienvenue chez les Ch\'tis',1,2008,NULL,'106'),(1065073,'movie','Boyhood','Boyhood',1,2014,NULL,'165'),(10665338,'movie','Halloween Kills','Halloween Kills',1,2021,NULL,'105'),(10665342,'movie','Halloween Ends','Halloween Ends',1,2022,NULL,'111'),(1067583,'movie','Water for Elephants','Water for Elephants',1,2011,NULL,'122'),(10676012,'movie','To All the Boys: Always and Forever','To All the Boys: Always and Forever',1,2021,NULL,'109'),(1067733,'movie','Patrik, Age 1.5','Patrik 1,5',1,2008,NULL,'103'),(1067765,'movie','Adult World','Adult World',1,2013,NULL,'97'),(1067774,'movie','Monte Carlo','Monte Carlo',1,2011,NULL,'109'),(1068242,'movie','Footloose','Footloose',1,2011,NULL,'113'),(1068641,'movie','The Burning Plain','The Burning Plain',1,2008,NULL,'107'),(1068649,'movie','I\'ve Loved You So Long','Il y a longtemps que je t\'aime',1,2008,NULL,'117'),(1068678,'movie','Veronika Decides to Die','Veronika Decides to Die',1,2009,NULL,'103'),(1068680,'movie','Yes Man','Yes Man',1,2008,NULL,'104'),(1069238,'movie','Departures','Okuribito',1,2008,NULL,'130'),(10692788,'movie','After Love','After Love',1,2020,NULL,'89'),(10696784,'movie','The Harder They Fall','The Harder They Fall',1,2021,NULL,'139'),(1070874,'movie','The Trial of the Chicago 7','The Trial of the Chicago 7',1,2020,NULL,'129'),(1071804,'movie','Ink','Ink',1,2009,NULL,'107'),(1071875,'movie','Ghost Rider: Spirit of Vengeance','Ghost Rider: Spirit of Vengeance',1,2011,NULL,'96'),(1072438,'movie','Not Since You','Not Since You',1,2009,NULL,'90'),(1073105,'movie','The Descent: Part 2','The Descent: Part 2',1,2009,NULL,'94'),(10731256,'movie','Don\'t Worry Darling','Don\'t Worry Darling',1,2022,NULL,'123'),(10731768,'movie','Sweet Girl','Sweet Girl',1,2021,NULL,'110'),(1073241,'movie','Nothing But the Truth','Nothing But the Truth',1,2008,NULL,'108'),(10734928,'movie','The Legend of Hei','Luo Xiao Hei zhan ji',1,2019,NULL,'101'),(1073498,'movie','Meet the Spartans','Meet the Spartans',1,2008,NULL,'87'),(1074638,'movie','Skyfall','Skyfall',1,2012,NULL,'143'),(10752004,'movie','Love Hard','Love Hard',1,2021,NULL,'104'),(10752062,'short','Living aims','Living aims',1,2022,NULL,'15'),(1075749,'movie','Reykjavik Whale Watching Massacre','Reykjavik Whale Watching Massacre',1,2009,NULL,'87'),(1076252,'tvMovie','Picture This','Picture This',1,2008,NULL,'92'),(10763820,'movie','Night Teeth','Night Teeth',1,2021,NULL,'107'),(10767426,'movie','Text','Tekst',1,2019,NULL,'132'),(1077084,'movie','God\'s Forgotten Town','Intrusos en Manasés',1,2008,NULL,NULL),(1077094,'movie','One Million Yen and the Nigamushi Woman','Hyakuman-en to nigamushi onna',1,2008,NULL,'121'),(1077258,'movie','Planet Terror','Planet Terror',1,2007,NULL,'105'),(1077262,'movie','Ajami','Ajami',1,2009,NULL,'124'),(1077274,'movie','Yobi, the Five Tailed Fox','Cheon-nyeon-yeo-woo-yeo-woo-bi',1,2007,NULL,'86'),(1077368,'movie','Dark Shadows','Dark Shadows',1,2012,NULL,'113'),(10782876,'movie','Swimming for Gold','Swimming for Gold',1,2020,NULL,'91'),(1078588,'movie','My Sister\'s Keeper','My Sister\'s Keeper',1,2009,NULL,'109'),(1078600,'movie','Walking Vengeance','Solo quiero caminar',1,2008,NULL,'129'),(1078912,'movie','Night at the Museum: Battle of the Smithsonian','Night at the Museum: Battle of the Smithsonian',1,2009,NULL,'105'),(1079444,'video','Dead Like Me: Life After Death','Dead Like Me: Life After Death',1,2009,NULL,'87'),(1079968,'movie','Jack and the Beanstalk','Jack and the Beanstalk',1,2009,NULL,'94'),(1080016,'movie','Ice Age: Dawn of the Dinosaurs','Ice Age: Dawn of the Dinosaurs',1,2009,NULL,'94'),(10816484,'movie','18 Presents','18 regali',1,2020,NULL,'115'),(1082009,'movie','Queen to Play','Joueuse',1,2009,NULL,'97'),(1082601,'movie','Fighting','Fighting',1,2009,NULL,'105'),(1082807,'movie','The Belko Experiment','The Belko Experiment',1,2016,NULL,'89'),(1082853,'movie','Management','Management',1,2008,NULL,'94'),(1082868,'movie','Quarantine','Quarantine',1,2008,NULL,'89'),(1082876,'movie','Tales from the Catholic Church of Elvis!','Tales from the Catholic Church of Elvis!',1,2009,NULL,NULL),(1083452,'movie','Eddie the Eagle','Eddie the Eagle',1,2015,NULL,'106'),(1083456,'movie','Fired Up!','Fired Up!',1,2009,NULL,'90'),(10838180,'movie','The Matrix Resurrections','The Matrix Resurrections',1,2021,NULL,'148'),(1083845,'tvMovie','Ballet Shoes','Ballet Shoes',1,2007,NULL,'85'),(1084950,'movie','Rachel Getting Married','Rachel Getting Married',1,2008,NULL,'113'),(10855768,'movie','Missing','Missing',1,2023,NULL,'111'),(1085779,'movie','The Hole','The Hole',1,2009,NULL,'92'),(1086064,'movie','Bill & Ted Face the Music','Bill & Ted Face the Music',1,2020,NULL,'91'),(1086216,'movie','Uncertainty','Uncertainty',1,2008,NULL,'101'),(1086772,'movie','Blended','Blended',1,2014,NULL,'117'),(10867768,'movie','A Dark, Dark Man','A Dark, Dark Man',1,2019,NULL,'130'),(10868922,'movie','The Influencer','The Influencer',1,2021,NULL,'90'),(10872600,'movie','Spider-Man: No Way Home','Spider-Man: No Way Home',1,2021,NULL,'148'),(10885406,'tvSeries','Ascendance of a Bookworm','Honzuki no Gekokujou',1,2019,NULL,'23'),(10888594,'movie','Radhe','Radhe',1,2021,NULL,'109'),(1091191,'movie','Lone Survivor','Lone Survivor',1,2013,NULL,'121'),(1091722,'movie','Adventureland','Adventureland',1,2009,NULL,'107'),(10919362,'movie','Sweetheart','Sweetheart',1,2021,NULL,'103'),(10919380,'movie','Freaky','Freaky',1,2020,NULL,'102'),(1092019,'movie','Nothing to Lose','TBS',1,2008,NULL,'88'),(1092026,'movie','Paul','Paul',1,2011,NULL,'104'),(1092053,'video','Barbie as the Island Princess','Barbie as the Island Princess',1,2007,NULL,'86'),(10931784,'movie','Nanny','Nanny',1,2022,NULL,'99'),(1093357,'movie','The Darkest Hour','The Darkest Hour',1,2011,NULL,'89'),(10935560,'movie','Dark Glasses','Occhiali neri',1,2022,NULL,'86'),(1093908,'movie','Confessions of a Shopaholic','Confessions of a Shopaholic',1,2009,NULL,'104'),(1094278,'movie','Tricks','Sztuczki',1,2007,NULL,'95'),(10944760,'movie','Titane','Titane',1,2021,NULL,'108'),(1094661,'tvMovie','Coco Chanel','Coco Chanel',1,2008,NULL,'139'),(1095217,'movie','Bad Lieutenant: Port of Call New Orleans','The Bad Lieutenant: Port of Call - New Orleans',1,2009,NULL,'122'),(1095442,'movie','Goodbye Solo','Goodbye Solo',1,2008,NULL,'91'),(10954600,'movie','Ant-Man and the Wasp: Quantumania','Ant-Man and the Wasp: Quantumania',1,2023,NULL,'124'),(10954652,'movie','Old','Old',1,2021,NULL,'108'),(1095496,'movie','She\'s a Boy I Knew','She\'s a Boy I Knew',1,2007,NULL,'70'),(10954984,'movie','Nope','Nope',1,2022,NULL,'130'),(1095573,'tvEpisode','International Super Spy: Part 1','International Super Spy: Part 1',1,2007,NULL,'25'),(1097636,'video','Chill Out, Scooby-Doo!','Chill Out, Scooby-Doo!',1,2007,NULL,'72'),(1097643,'movie','Fifty Dead Men Walking','Fifty Dead Men Walking',1,2008,NULL,'117'),(1099212,'movie','Twilight','Twilight',1,2008,NULL,'122'),(10999120,'movie','Spirited','Spirited',1,2022,NULL,'127'),(1100048,'movie','35 Shots of Rum','35 rhums',1,2008,NULL,'100'),(1100089,'movie','Foxcatcher','Foxcatcher',1,2014,NULL,'134'),(11003218,'movie','Pig','Pig',1,2021,NULL,'92'),(11007444,'movie','Tove','Tove',1,2020,NULL,'103'),(1103193,'movie','My Prison Yard','El patio de mi cárcel',1,2008,NULL,'100'),(11032374,'movie','Demon Slayer the Movie: Mugen Train','Kimetsu no Yaiba: Mugen Ressha-Hen',1,2020,NULL,'117'),(1103982,'movie','The Girlfriend Experience','The Girlfriend Experience',1,2009,NULL,'77'),(1104001,'movie','TRON: Legacy','Tron',1,2010,NULL,'125'),(1104733,'movie','Hamlet 2','Hamlet 2',1,2008,NULL,'92'),(1105263,'movie','Bleach: Memories of Nobody','Bleach: Memories of Nobody',1,2006,NULL,'87'),(11052808,'movie','Kim Ji-young: Born 1982','82 nyeonsaeng Kim Ji-yeong',1,2019,NULL,'118'),(11054164,'movie','Yummy','Yummy',1,2019,NULL,'88'),(1106860,'movie','Ca$h','Ca$h',1,2010,NULL,'108'),(1107809,'short','Cutlass','Cutlass',1,2007,NULL,'16'),(1107860,'movie','The Maiden Heist','The Maiden Heist',1,2009,NULL,'90'),(11079148,'video','Justice League Dark: Apokolips War','Justice League Dark: Apokolips War',1,2020,NULL,'90'),(1109624,'movie','Paddington','Paddington',1,2014,NULL,'95'),(11106266,'short','Heian','Heian',1,2019,NULL,'18'),(11107074,'movie','My Hero Academia: Heroes Rising','Boku no hîrô akademia THE MOVIE - Hîrôzu: Raijingu',1,2019,NULL,'104'),(1111422,'movie','The Taking of Pelham 123','The Taking of Pelham 123',1,2009,NULL,'106'),(1111890,'movie','Diary of a Nymphomaniac','Diario de una ninfómana',1,2008,NULL,'101'),(11127680,'movie','Boiling Point','Boiling Point',1,2021,NULL,'92'),(1112782,'movie','The Code','Thick as Thieves',1,2009,NULL,'104'),(11128440,'movie','Clerks III','Clerks III',1,2022,NULL,'100'),(11136630,'tvEpisode','A Nasty Piece of Work','A Nasty Piece of Work',1,2019,NULL,'77'),(11138512,'movie','The Northman','The Northman',1,2022,NULL,'137'),(11145118,'movie','Creed III','Creed III',1,2023,NULL,'116'),(1114677,'movie','Hannah Montana: The Movie','Hannah Montana: The Movie',1,2009,NULL,'102'),(1114723,'movie','The Man Who Loved Yngve','Mannen som elsket Yngve',1,2008,NULL,'90'),(1114740,'movie','Paul Blart: Mall Cop','Paul Blart: Mall Cop',1,2009,NULL,'91'),(11160650,'movie','On the Count of Three','On the Count of Three',1,2021,NULL,'86'),(11161474,'movie','Pieces of a Woman','Pieces of a Woman',1,2020,NULL,'126'),(1116186,'video','Still Waiting...','Still Waiting...',1,2009,NULL,'88'),(1116560,'tvMiniSeries','Rain Shadow','Rain Shadow',1,2007,2007,'60'),(1117379,'movie','Bonnie & Clyde vs. Dracula','Bonnie & Clyde vs. Dracula',1,2008,NULL,'91'),(11177804,'movie','Legend of Deification','Jiang Ziya',1,2020,NULL,'110'),(1119123,'movie','Accidents Happen','Accidents Happen',1,2009,NULL,'92'),(11196036,'movie','The Card Counter','The Card Counter',1,2021,NULL,'111'),(1119646,'movie','The Hangover','The Hangover',1,2009,NULL,'100'),(1120985,'movie','Blue Valentine','Blue Valentine',1,2010,NULL,'112'),(11210390,'movie','Asterix & Obelix: The Middle Kingdom','Astérix & Obélix: L\'Empire du Milieu',1,2023,NULL,'112'),(1121096,'movie','Seventh Son','Seventh Son',1,2014,NULL,'102'),(11212276,'tvSeries','The Sex Lives of College Girls','The Sex Lives of College Girls',1,2021,NULL,'27'),(11214590,'movie','House of Gucci','House of Gucci',1,2021,NULL,'158'),(1121794,'movie','Sword of the Stranger','Stranger: Mukô hadan',1,2007,NULL,'103'),(1121977,'movie','Mother and Child','Mother and Child',1,2009,NULL,'125'),(1123373,'movie','Detective Dee: The Mystery of the Phantom Flame','Di Renjie zhi Tongtian diguo',1,2010,NULL,'123'),(1123894,'movie','And Then Came Lola','And Then Came Lola',1,2009,NULL,'71'),(1124035,'movie','The Ides of March','The Ides of March',1,2011,NULL,'101'),(1124037,'movie','Free State of Jones','Free State of Jones',1,2016,NULL,'139'),(1124039,'movie','Echelon Conspiracy','Echelon Conspiracy',1,2009,NULL,'105'),(1124394,'movie','Sauna','Sauna',1,2008,NULL,'83'),(11245972,'movie','Scream','Scream',1,2022,NULL,'114'),(1125254,'movie','Dragon Ball Z: Cooler\'s Revenge','Dragon Ball Z: Tobikkiri no Saikyô tai Saikyô',1,1991,NULL,'47'),(1125849,'movie','The Wrestler','The Wrestler',1,2008,NULL,'109'),(1126590,'movie','Big Eyes','Big Eyes',1,2014,NULL,'106'),(1126591,'movie','Burlesque','Burlesque',1,2010,NULL,'119'),(1126596,'movie','Adulthood','Adulthood',1,2008,NULL,'99'),(1126618,'movie','Morning Glory','Morning Glory',1,2010,NULL,'107'),(11271038,'movie','Licorice Pizza','Licorice Pizza',1,2021,NULL,'133'),(1127180,'movie','Drag Me to Hell','Drag Me to Hell',1,2009,NULL,'99'),(1127877,'movie','Cold Souls','Cold Souls',1,2009,NULL,'101'),(1127896,'movie','Taking Woodstock','Taking Woodstock',1,2009,NULL,'120'),(1128075,'movie','Love Exposure','Ai no mukidashi',1,2008,NULL,'237'),(11284280,'movie','Cadaver','Kadaver',1,2020,NULL,'86'),(11286314,'movie','Don\'t Look Up','Don\'t Look Up',1,2021,NULL,'138'),(11291274,'movie','The Unbearable Weight of Massive Talent','The Unbearable Weight of Massive Talent',1,2022,NULL,'107'),(1129423,'movie','Fireproof','Fireproof',1,2008,NULL,'122'),(1129435,'movie','The Beaches of Agnès','Les plages d\'Agnès',1,2008,NULL,'112'),(1129442,'movie','Transporter 3','Transporter 3',1,2008,NULL,'104'),(1129445,'movie','Amelia','Amelia',1,2009,NULL,'111'),(1130080,'movie','The Informant!','The Informant!',1,2009,NULL,'108'),(11306932,'movie','Noise','Ruido',1,2022,NULL,'105'),(1130884,'movie','Shutter Island','Shutter Island',1,2010,NULL,'138'),(1131729,'movie','The Boat That Rocked','The Boat That Rocked',1,2009,NULL,'135'),(1131734,'movie','Jennifer\'s Body','Jennifer\'s Body',1,2009,NULL,'102'),(11320192,'movie','The Evil Next Door','Andra sidan',1,2020,NULL,'87'),(1132193,'movie','(Untitled)','(Untitled)',1,2009,NULL,'96'),(1132285,'movie','The Factory','The Factory',1,2012,NULL,'104'),(1132620,'movie','The Girl with the Dragon Tattoo','Män som hatar kvinnor',1,2009,NULL,'152'),(1132626,'movie','Saw V','Saw V',1,2008,NULL,'92'),(11334312,'movie','The Final Level: Escaping Rancala','The Final Level: Escaping Rancala',1,2019,NULL,'87'),(1133985,'movie','Green Lantern','Green Lantern',1,2011,NULL,'114'),(1133991,'movie','What Doesn\'t Kill You','What Doesn\'t Kill You',1,2008,NULL,'100'),(1133993,'movie','Serious Moonlight','Serious Moonlight',1,2009,NULL,'81'),(1134629,'movie','The Private Lives of Pippa Lee','The Private Lives of Pippa Lee',1,2009,NULL,'98'),(1134854,'movie','Survival of the Dead','Survival of the Dead',1,2009,NULL,'90'),(1135084,'movie','Takers','Takers',1,2010,NULL,'107'),(1135092,'movie','The Limits of Control','The Limits of Control',1,2009,NULL,'116'),(1135487,'movie','Duplicity','Duplicity',1,2009,NULL,'125'),(1135503,'movie','Julie & Julia','Julie & Julia',1,2009,NULL,'123'),(1135525,'movie','The Slammin\' Salmon','The Slammin\' Salmon',1,2009,NULL,'99'),(11358390,'movie','Renfield','Renfield',1,2023,NULL,'93'),(1135952,'movie','White Material','White Material',1,2009,NULL,'106'),(1136608,'movie','District 9','District 9',1,2009,NULL,'112'),(1137436,'movie','Awaydays','Awaydays',1,2009,NULL,'105'),(11379572,'movie','The Hill Where Lionesses Roar','La colline où rugissent les lionnes',1,2021,NULL,'83'),(11388406,'movie','Horse Girl','Horse Girl',1,2020,NULL,'103'),(11389748,'movie','Mass','Mass',1,2021,NULL,'111'),(11392272,'movie','The Retreat','The Retreat',1,2021,NULL,'82'),(1139328,'movie','The Ghost Writer','The Ghost Writer',1,2010,NULL,'128'),(11394158,'movie','Miss Juneteenth','Miss Juneteenth',1,2020,NULL,'99'),(11394332,'movie','Spree','Spree',1,2020,NULL,'93'),(1139668,'movie','The Unborn','The Unborn',1,2009,NULL,'88'),(1139797,'movie','Let the Right One In','Låt den rätte komma in',1,2008,NULL,'114'),(1142798,'movie','The Family That Preys','The Family That Preys',1,2008,NULL,'111'),(1142800,'movie','Madea Goes to Jail','Madea Goes to Jail',1,2009,NULL,'103'),(1142977,'movie','Frankenweenie','Frankenweenie',1,2012,NULL,'87'),(1142988,'movie','The Ugly Truth','The Ugly Truth',1,2009,NULL,'96'),(1143155,'movie','Treeless Mountain','Na-moo-eobs-neun san',1,2008,NULL,'89'),(1144825,'movie','Fatal Rescue','Fatal Rescue',1,2009,NULL,'90'),(1144884,'movie','The Final Destination','The Final Destination',1,2009,NULL,'82'),(11456054,'movie','Run Hide Fight','Run Hide Fight',1,2020,NULL,'109'),(1146320,'movie','Mutants','Mutants',1,2009,NULL,'95'),(1148165,'movie','Bran Nue Dae','Bran Nue Dae',1,2009,NULL,'85'),(1148204,'movie','Orphan','Orphan',1,2009,NULL,'123'),(1148261,'movie','Bleach the Movie 2: The Diamond Dust Rebellion','Gekijô ban Bleach: The DiamondDust Rebellion - Mô hitotsu no hyôrinmaru',1,2007,NULL,'92'),(11488024,'movie','My Grandfather\'s Demons','Os Demónios do Meu Avô',1,2022,NULL,'90'),(1149361,'movie','Micmacs','Micmacs à tire-larigot',1,2009,NULL,'105'),(1152397,'movie','American Violet','American Violet',1,2008,NULL,'103'),(1152398,'movie','Beastly','Beastly',1,2011,NULL,'86'),(11525644,'movie','No Sudden Move','No Sudden Move',1,2021,NULL,'115'),(1152836,'movie','Public Enemies','Public Enemies',1,2009,NULL,'140'),(1152850,'movie','Wendy and Lucy','Wendy and Lucy',1,2008,NULL,'80'),(1153103,'tvMovie','Dead at 17','Dead at 17',1,2008,NULL,'90'),(1155056,'movie','I Love You, Man','I Love You, Man',1,2009,NULL,'105'),(1155076,'movie','The Karate Kid','The Karate Kid',1,2010,NULL,'140'),(11555492,'movie','Farha','Farha',1,2021,NULL,'92'),(1156398,'movie','Zombieland','Zombieland',1,2009,NULL,'88'),(11564570,'movie','Glass Onion','Glass Onion',1,2022,NULL,'139'),(1160419,'movie','Dune','Dune: Part One',1,2021,NULL,'155'),(1160996,'movie','The Colony','The Colony',1,2013,NULL,'95'),(11612120,'tvSeries','Sweet Home','Seuwiteuhom',1,2020,NULL,'52'),(1161411,'movie','Una hora más en Canarias','Una hora más en Canarias',1,2010,NULL,'96'),(1161864,'movie','The Rite','The Rite',1,2011,NULL,'114'),(11621206,'short','Breakwater','Quebramar',1,2019,NULL,'27'),(11621960,'movie','Bem Bom','Bem Bom',1,2021,NULL,'111'),(11644096,'short','What Did Jack Do?','What Did Jack Do?',1,2017,NULL,'17'),(1164999,'movie','Biutiful','Biutiful',1,2010,NULL,'148'),(1166805,'short','You, Me and Him','Café com Leite',1,2007,NULL,'18'),(11671006,'movie','The Man from Toronto','The Man from Toronto',1,2022,NULL,'110'),(1167638,'movie','22 Bullets','L\'immortel',1,2010,NULL,'117'),(1167660,'movie','OSS 117: Lost in Rio','OSS 117: Rio ne répond plus',1,2009,NULL,'101'),(11681250,'movie','Godmothered','Godmothered',1,2020,NULL,'110'),(11697690,'movie','The Woman Who Ran','Domangchin yeoja',1,2020,NULL,'77'),(11700260,'movie','Official Competition','Competencia oficial',1,2021,NULL,'115'),(11703050,'movie','The House','The House',1,2022,NULL,'97'),(1170358,'movie','The Hobbit: The Desolation of Smaug','The Hobbit: The Desolation of Smaug',1,2013,NULL,'161'),(1171222,'movie','Baggage Claim','Baggage Claim',1,2013,NULL,'96'),(1172049,'movie','Demolition','Demolition',1,2015,NULL,'101'),(1172203,'movie','Sita Sings the Blues','Sita Sings the Blues',1,2008,NULL,'82'),(1172206,'movie','Somers Town','Somers Town',1,2008,NULL,'71'),(1172233,'movie','Whip It','Whip It',1,2009,NULL,'111'),(1172570,'movie','Bronson','Bronson',1,2008,NULL,'92'),(11727866,'movie','Catherine Called Birdy','Catherine Called Birdy',1,2022,NULL,'108'),(1172963,'movie','Lemon Tree','Etz Limon',1,2008,NULL,'106'),(1172994,'movie','The House of the Devil','The House of the Devil',1,2009,NULL,'95'),(11734264,'movie','Sentinelle','Sentinelle',1,2021,NULL,'80'),(1173745,'movie','Revanche','Revanche',1,2008,NULL,'121'),(11742798,'movie','Afterlife of the Party','Afterlife of the Party',1,2021,NULL,'109'),(1174693,'movie','The Four-Faced Liar','The Four-Faced Liar',1,2010,NULL,'87'),(1174732,'movie','An Education','An Education',1,2009,NULL,'100'),(11748354,'movie','Perfumes','Les parfums',1,2019,NULL,'100'),(1174954,'movie','Resident Evil: Degeneration','Resident Evil: Degeneration',1,2008,NULL,'97'),(11755740,'movie','Texas Chainsaw Massacre','Texas Chainsaw Massacre',1,2022,NULL,'83'),(1176740,'movie','Away We Go','Away We Go',1,2009,NULL,'98'),(11769162,'movie','Santana','Santana',1,2020,NULL,'106'),(11771622,'short','Breath','Breath',1,2020,NULL,'44'),(1178197,'movie','The World is Big and Salvation Lurks Around the Corner','Svetat e golyam i spasenie debne otvsyakade',1,2008,NULL,'105'),(1178663,'movie','Whatever Works','Whatever Works',1,2009,NULL,'93'),(1178665,'movie','A Walk in the Woods','A Walk in the Woods',1,2015,NULL,'104'),(1179025,'movie','The Extraordinary Adventures of Adèle Blanc-Sec','Les aventures extraordinaires d\'Adèle Blanc-Sec',1,2010,NULL,'107'),(1179056,'movie','A Nightmare on Elm Street','A Nightmare on Elm Street',1,2010,NULL,'95'),(1179069,'movie','6 Souls','6 Souls',1,2010,NULL,'112'),(1179080,'movie','Rough Aunties','Rough Aunties',1,2008,NULL,'103'),(11791228,'movie','Fortnite: Battle, Build, Survive!','Fortnite: Battle, Build, Survive!',1,2018,NULL,'56'),(1179794,'movie','Timer','TiMER',1,2009,NULL,'99'),(1179891,'movie','My Bloody Valentine','My Bloody Valentine',1,2009,NULL,'101'),(1179904,'movie','Paranormal Activity','Paranormal Activity',1,2007,NULL,'86'),(1179933,'movie','10 Cloverfield Lane','10 Cloverfield Lane',1,2016,NULL,'103'),(1180329,'short','Antoine and Colette','Antoine et Colette',1,1962,NULL,'32'),(11804152,'movie','Till Death','Till Death',1,2021,NULL,'88'),(11813216,'movie','The Banshees of Inisherin','The Banshees of Inisherin',1,2022,NULL,'114'),(1181614,'movie','Wuthering Heights','Wuthering Heights',1,2011,NULL,'129'),(1181840,'movie','Jack and the Cuckoo-Clock Heart','Jack et la mécanique du coeur',1,2013,NULL,'94'),(11820950,'movie','The Portable Door','The Portable Door',1,2023,NULL,'116'),(1182345,'movie','Moon','Moon',1,2009,NULL,'97'),(1182350,'movie','You Will Meet a Tall Dark Stranger','You Will Meet a Tall Dark Stranger',1,2010,NULL,'98'),(1183276,'movie','The Horde','La horde',1,2009,NULL,'90'),(1183374,'movie','Pet','Pet',1,2016,NULL,'94'),(1183665,'movie','Cracks','Cracks',1,2009,NULL,'104'),(1183672,'movie','The Girl on the Train','La fille du RER',1,2009,NULL,'97'),(1183923,'movie','Welcome to the Rileys','Welcome to the Rileys',1,2010,NULL,'110'),(11847410,'movie','The Fallout','The Fallout',1,2021,NULL,'96'),(1185242,'movie','Finding Bliss','Finding Bliss',1,2009,NULL,'96'),(1185376,'movie','Map of the Sounds of Tokyo','Map of the Sounds of Tokyo',1,2009,NULL,'109'),(1185416,'movie','When in Rome','When in Rome',1,2010,NULL,'91'),(1185616,'movie','Waltz with Bashir','Vals Im Bashir',1,2008,NULL,'90'),(1185834,'movie','Star Wars: The Clone Wars','Star Wars: The Clone Wars',1,2008,NULL,'98'),(1185836,'movie','Adam','Adam',1,2009,NULL,'99'),(1186367,'movie','Ninja Assassin','Ninja Assassin',1,2009,NULL,'99'),(1186369,'movie','Lorna\'s Silence','Le silence de Lorna',1,2008,NULL,'105'),(1186373,'video','Wonder Woman','Wonder Woman',1,2009,NULL,'74'),(11866324,'movie','Prey','Prey',1,2022,NULL,'100'),(1186830,'movie','Agora','Agora',1,2009,NULL,'127'),(1187043,'movie','3 Idiots','3 Idiots',1,2009,NULL,'170'),(1187044,'movie','The Maid','La Nana',1,2009,NULL,'95'),(1187064,'movie','Triangle','Triangle',1,2009,NULL,'99'),(1188113,'movie','Peacock','Peacock',1,2010,NULL,'90'),(1188729,'movie','Pandorum','Pandorum',1,2009,NULL,'108'),(1189073,'movie','The Skin I Live In','La piel que habito',1,2011,NULL,'120'),(1189340,'movie','The Lincoln Lawyer','The Lincoln Lawyer',1,2011,NULL,'118'),(11895476,'short','The Veil','The Veil',1,2020,NULL,'39'),(11897478,'movie','The Stranger','The Stranger',1,2022,NULL,'117'),(1190072,'movie','The Hunter','Shekarchi',1,2010,NULL,'90'),(1190080,'movie','2012','2012',1,2009,NULL,'158'),(1190536,'movie','Black Dynamite','Black Dynamite',1,2009,NULL,'84'),(1190539,'movie','The Chaser','Chugyeokja',1,2008,NULL,'125'),(11905962,'movie','Sputnik','Sputnik',1,2020,NULL,'113'),(11909878,'movie','Hocus Pocus 2','Hocus Pocus 2',1,2022,NULL,'103'),(1191111,'movie','Enter the Void','Enter the Void',1,2009,NULL,'161'),(1192628,'movie','Rango','Rango',1,2011,NULL,'107'),(1193138,'movie','Up in the Air','Up in the Air',1,2009,NULL,'109'),(11934846,'movie','Badhaai Do','Badhaai Do',1,2022,NULL,'147'),(1193631,'movie','Step Up 3D','Step Up 3D',1,2010,NULL,'107'),(1194173,'movie','The Bourne Legacy','The Bourne Legacy',1,2012,NULL,'135'),(1194238,'movie','Polytechnique','Polytechnique',1,2009,NULL,'77'),(1194263,'movie','Get Low','Get Low',1,2009,NULL,'103'),(1194417,'movie','Casino Jack','Casino Jack',1,2010,NULL,'108'),(1194424,'movie','Denizen','Denizen',1,2010,NULL,'83'),(1194577,'movie','The Door','The Door',1,2012,NULL,'97'),(11946300,'video','Deep Blue Sea 3','Deep Blue Sea 3',1,2020,NULL,'100'),(1195478,'movie','The Five-Year Engagement','The Five-Year Engagement',1,2012,NULL,'124'),(1196141,'movie','Diary of a Wimpy Kid','Diary of a Wimpy Kid',1,2010,NULL,'94'),(1196204,'movie','Cemetery Junction','Cemetery Junction',1,2010,NULL,'95'),(1196339,'tvMovie','Princess Protection Program','Princess Protection Program',1,2009,NULL,'90'),(1196948,'movie','Charlie Countryman','The Necessary Death of Charlie Countryman',1,2013,NULL,'103'),(1197624,'movie','Law Abiding Citizen','Law Abiding Citizen',1,2009,NULL,'109'),(1198153,'movie','The Assassin Next Door','Kirot',1,2009,NULL,'103'),(1198156,'movie','You\'re Not You','You\'re Not You',1,2014,NULL,'102'),(1198199,'movie','About Sunny','Think of Me',1,2011,NULL,'103'),(1199099,'tvSeries','Merlin','Merlin',1,2008,2012,'45'),(1201167,'movie','Funny People','Funny People',1,2009,NULL,'146'),(1201607,'movie','Harry Potter and the Deathly Hallows: Part 2','Harry Potter and the Deathly Hallows: Part 2',1,2011,NULL,'130'),(1202028,'short','London\'s Trafalgar Square','London\'s Trafalgar Square',1,1890,NULL,'1'),(1204340,'movie','Tyrannosaur','Tyrannosaur',1,2011,NULL,'92'),(1204342,'movie','The Muppets','The Muppets',1,2011,NULL,'120'),(12048234,'movie','Save the Cinema','Save the Cinema',1,2022,NULL,'109'),(1204975,'movie','Last Vegas','Last Vegas',1,2013,NULL,'105'),(1204977,'movie','Ouija','Ouija',1,2014,NULL,'89'),(1205489,'movie','Gran Torino','Gran Torino',1,2008,NULL,'116'),(1205537,'movie','Jack Ryan: Shadow Recruit','Jack Ryan: Shadow Recruit',1,2014,NULL,'105'),(1205558,'movie','Hick','Hick',1,2011,NULL,'99'),(1206285,'movie','Camino','Camino',1,2008,NULL,'138'),(1206488,'movie','The Milk of Sorrow','La teta asustada',1,2009,NULL,'95'),(1206543,'movie','Out of the Furnace','Out of the Furnace',1,2013,NULL,'116'),(1206885,'movie','Rambo: Last Blood','Rambo: Last Blood',1,2019,NULL,'89'),(1209377,'movie','Beautiful Kate','Beautiful Kate',1,2009,NULL,'100'),(1210042,'movie','Brooklyn\'s Finest','Brooklyn\'s Finest',1,2009,NULL,'132'),(1210166,'movie','Moneyball','Moneyball',1,2011,NULL,'133'),(1210819,'movie','The Lone Ranger','The Lone Ranger',1,2013,NULL,'150'),(1211837,'movie','Doctor Strange','Doctor Strange',1,2016,NULL,'115'),(1211956,'movie','Escape Plan','Escape Plan',1,2013,NULL,'115'),(1212428,'movie','The Lost City of Z','The Lost City of Z',1,2016,NULL,'141'),(1212436,'movie','The Back-up Plan','The Back-up Plan',1,2010,NULL,'104'),(1212450,'movie','Lawless','Lawless',1,2012,NULL,'116'),(1212454,'movie','An Invisible Sign','An Invisible Sign',1,2010,NULL,'96'),(1212974,'movie','Bitch Slap','Bitch Slap',1,2009,NULL,'109'),(1213641,'movie','First Man','First Man',1,2018,NULL,'141'),(1213648,'movie','London Boulevard','London Boulevard',1,2010,NULL,'103'),(1213663,'movie','The World\'s End','The World\'s End',1,2013,NULL,'109'),(12141112,'movie','Metal Lords','Metal Lords',1,2022,NULL,'97'),(12145728,'movie','The Ethicist','The Ethicist',1,2015,NULL,'47'),(1216475,'movie','Cars 2','Cars 2',1,2011,NULL,'106'),(1216477,'movie','Dim Sum Funeral','Dim Sum Funeral',1,2008,NULL,'95'),(1216487,'movie','The Girl Who Played with Fire','Flickan som lekte med elden',1,2009,NULL,'129'),(1216492,'movie','Leap Year','Leap Year',1,2010,NULL,'100'),(1216496,'movie','Mother','Madeo',1,2009,NULL,'129'),(1216515,'video','Tinker Bell and the Great Fairy Rescue','Tinker Bell and the Great Fairy Rescue',1,2010,NULL,'76'),(1216516,'video','Tinker Bell and the Lost Treasure','Tinker Bell and the Lost Treasure',1,2009,NULL,'81'),(1216520,'movie','Womb','Womb',1,2010,NULL,'111'),(1217209,'movie','Brave','Brave',1,2012,NULL,'93'),(1217213,'movie','Secret of the Wings','Secret of the Wings',1,2012,NULL,'75'),(1217613,'movie','Battle Los Angeles','Battle: Los Angeles',1,2011,NULL,'116'),(1219289,'movie','Limitless','Limitless',1,2011,NULL,'105'),(1219817,'tvMiniSeries','Going Postal','Going Postal',1,2010,2010,'185'),(1219827,'movie','Ghost in the Shell','Ghost in the Shell',1,2017,NULL,'107'),(12198524,'movie','The Retreat','The Retreat',1,2020,NULL,'88'),(1220198,'movie','The Fourth Kind','The Fourth Kind',1,2009,NULL,'98'),(1220214,'movie','Heartless','Heartless',1,2009,NULL,'114'),(1220634,'movie','Resident Evil: Afterlife','Resident Evil: Afterlife',1,2010,NULL,'96'),(1220719,'movie','Ip Man','Ip Man',1,2008,NULL,'106'),(1221141,'movie','The Headless Woman','La mujer sin cabeza',1,2008,NULL,'87'),(1221208,'movie','Frankie & Alice','Frankie & Alice',1,2010,NULL,'101'),(12261776,'movie','65','65',1,2023,NULL,'93'),(12261880,'movie','The Methodists','The Methodists',1,NULL,NULL,'90'),(12262116,'movie','Thirteen Lives','Thirteen Lives',1,2022,NULL,'147'),(1226229,'movie','Get Him to the Greek','Get Him to the Greek',1,2010,NULL,'109'),(1226232,'movie','The Greatest','The Greatest',1,2009,NULL,'99'),(1226236,'movie','I Am Love','Io sono l\'amore',1,2009,NULL,'120'),(1226240,'movie','A Late Quartet','A Late Quartet',1,2012,NULL,'105'),(1226251,'movie','Pokémon: The Rise of Darkrai','Gekijô ban poketto monsutâ: Daiamondo pâru - Diaruga vs Parukia vs Dâkurai',1,2007,NULL,'95'),(1226273,'movie','Edge of Darkness','Edge of Darkness',1,2010,NULL,'117'),(1226291,'movie','Blind Loves','Slepé lásky',1,2008,NULL,'77'),(1226681,'movie','Pontypool','Pontypool',1,2008,NULL,'93'),(1226753,'movie','The Debt','The Debt',1,2010,NULL,'113'),(1226766,'movie','The Great Gilly Hopkins','The Great Gilly Hopkins',1,2015,NULL,'99'),(1226774,'movie','In the Loop','In the Loop',1,2009,NULL,'106'),(1226837,'movie','Beautiful Boy','Beautiful Boy',1,2018,NULL,'120'),(12268798,'short','Aluguel: O Filme','Aluguel: O Filme',1,2015,NULL,NULL),(1227787,'movie','London River','London River',1,2009,NULL,'84'),(1227926,'tvMiniSeries','Dr. Horrible\'s Sing-Along Blog','Dr. Horrible\'s Sing-Along Blog',1,2008,2008,'42'),(1227929,'movie','Herb & Dorothy','Herb & Dorothy',1,2008,NULL,'87'),(1228705,'movie','Iron Man 2','Iron Man 2',1,2010,NULL,'124'),(1228987,'movie','Let Me In','Let Me In',1,2010,NULL,'116'),(1229238,'movie','Mission: Impossible - Ghost Protocol','Mission: Impossible - Ghost Protocol',1,2011,NULL,'132'),(1229340,'movie','Anchorman 2: The Legend Continues','Anchorman 2: The Legend Continues',1,2013,NULL,'119'),(1229381,'movie','Outside the Law','Hors la loi',1,2010,NULL,'138'),(1229822,'movie','Jane Eyre','Jane Eyre',1,2011,NULL,'120'),(1230215,'movie','Not Fade Away','Not Fade Away',1,2012,NULL,'117'),(1230414,'movie','It\'s Complicated','It\'s Complicated',1,2009,NULL,'121'),(1230424,'movie','Dance Subaru','Dance Subaru',1,2009,NULL,'105'),(1231583,'movie','Due Date','Due Date',1,2010,NULL,'95'),(1231587,'movie','Hot Tub Time Machine','Hot Tub Time Machine',1,2010,NULL,'99'),(1232200,'movie','That\'s My Boy','That\'s My Boy',1,2012,NULL,'116'),(1232207,'movie','Capitalism: A Love Story','Capitalism: A Love Story',1,2009,NULL,'127'),(1232776,'movie','Fish Tank','Fish Tank',1,2009,NULL,'123'),(1232783,'movie','Sorority Row','Sorority Row',1,2009,NULL,'101'),(1232829,'movie','21 Jump Street','21 Jump Street',1,2012,NULL,'109'),(1232838,'movie','Triple Dog','Triple Dog',1,2010,NULL,'95'),(1233219,'movie','My Son, My Son, What Have Ye Done','My Son, My Son, What Have Ye Done',1,2009,NULL,'91'),(1233227,'movie','Saw VI','Saw VI',1,2009,NULL,'90'),(1233301,'movie','Ironclad','Ironclad',1,2011,NULL,'121'),(1233334,'movie','Pariah','Pariah',1,2011,NULL,'86'),(1234548,'movie','The Men Who Stare at Goats','The Men Who Stare at Goats',1,2009,NULL,'94'),(1234654,'movie','Greenberg','Greenberg',1,2010,NULL,'107'),(1234719,'movie','Red Dawn','Red Dawn',1,2012,NULL,'93'),(1234721,'movie','RoboCop','RoboCop',1,2014,NULL,'117'),(1235075,'movie','Valami Amerika 2','Valami Amerika 2',1,2008,NULL,'110'),(1235124,'movie','Dorian Gray','Dorian Gray',1,2009,NULL,'112'),(1235166,'movie','A Prophet','Un prophète',1,2009,NULL,'155'),(1235170,'movie','The Future','The Future',1,2011,NULL,'91'),(1235187,'movie','Where Hands Touch','Where Hands Touch',1,2018,NULL,'122'),(1235189,'movie','Wild Target','Wild Target',1,2010,NULL,'98'),(1235796,'movie','Ondine','Ondine',1,2009,NULL,'111'),(1235830,'movie','Chico & Rita','Chico & Rita',1,2010,NULL,'94'),(1235842,'movie','The Fish Child','El niño pez',1,2009,NULL,'96'),(12361974,'movie','Zack Snyder\'s Justice League','Zack Snyder\'s Justice League',1,2021,NULL,'242'),(1236371,'tvMiniSeries','Mysteries of Lisbon','Mistérios de Lisboa',1,2011,2020,'317'),(1237838,'movie','Mystery Team','Mystery Team',1,2009,NULL,'97'),(1240982,'movie','Your Highness','Your Highness',1,2011,NULL,'102'),(12412888,'movie','Sonic the Hedgehog 2','Sonic the Hedgehog 2',1,2022,NULL,'122'),(1241317,'movie','Death Note','Death Note',1,2017,NULL,'101'),(1242422,'movie','Cell 211','Celda 211',1,2009,NULL,'113'),(1242423,'movie','Dear Lemon Lima','Dear Lemon Lima',1,2009,NULL,'87'),(1242460,'movie','We Need to Talk About Kevin','We Need to Talk About Kevin',1,2011,NULL,'112'),(1242530,'movie','What\'s Your Raashee?','What\'s Your Raashee?',1,2009,NULL,'195'),(1242545,'movie','Looking for Eric','Looking for Eric',1,2009,NULL,'116'),(1242618,'movie','Deadline','Deadline',1,2009,NULL,'85'),(1243375,'movie','The Dancer and the Thief','El Baile de la Victoria',1,2009,NULL,'127'),(1243957,'movie','The Tourist','The Tourist',1,2010,NULL,'103'),(1243974,'movie','Aloha','Aloha',1,2015,NULL,'105'),(1244668,'movie','Soul Kitchen','Soul Kitchen',1,2009,NULL,'99'),(1244754,'movie','Conviction','Conviction',1,2010,NULL,'107'),(1245112,'movie','[Rec]²','[Rec]²',1,2009,NULL,'85'),(1245492,'movie','This Is the End','This Is the End',1,2013,NULL,'107'),(1245526,'movie','RED','RED',1,2010,NULL,'111'),(1247644,'movie','Breaking Upwards','Breaking Upwards',1,2009,NULL,'88'),(1247662,'movie','The Good Guy','The Good Guy',1,2009,NULL,'102'),(1248971,'movie','Cherrybomb','Cherrybomb',1,2009,NULL,'76'),(1250777,'movie','Kick-Ass','Kick-Ass',1,2010,NULL,'117'),(1251757,'movie','Middle Men','Middle Men',1,2009,NULL,'105'),(1252380,'tvMovie','Camp Rock 2: The Final Jam','Camp Rock 2: The Final Jam',1,2010,NULL,'97'),(1252595,'movie','Ghosted','Ghosted',1,2009,NULL,'89'),(12536294,'movie','Spencer','Spencer',1,2021,NULL,'117'),(1253863,'movie','300: Rise of an Empire','300: Rise of an Empire',1,2014,NULL,'102'),(1253864,'movie','Immortals','Immortals',1,2011,NULL,'110'),(1254322,'movie','The Girl King','The Girl King',1,2015,NULL,'106'),(1255953,'movie','Incendies','Incendies',1,2010,NULL,'131'),(1257579,'movie','Backyard','El Traspatio',1,2009,NULL,'122'),(1258197,'movie','Exam','Exam',1,2009,NULL,'101'),(1258972,'movie','The Man with the Iron Fists','The Man with the Iron Fists',1,2012,NULL,'95'),(1259014,'movie','Mesrine: Killer Instinct','L\'instinct de mort',1,2008,NULL,'113'),(12592084,'short','Le singe musicien','Le singe musicien',1,1878,NULL,'1'),(12593682,'movie','Bullet Train','Bullet Train',1,2022,NULL,'127'),(1259521,'movie','The Cabin in the Woods','The Cabin in the Woods',1,2011,NULL,'95'),(1259528,'movie','Den of Thieves','Den of Thieves',1,2018,NULL,'140'),(1259571,'movie','The Twilight Saga: New Moon','The Twilight Saga: New Moon',1,2009,NULL,'130'),(1259574,'tvMovie','Red Riding: The Year of Our Lord 1974','Red Riding: The Year of Our Lord 1974',1,2009,NULL,'102'),(1260502,'movie','Ghost in the Shell 2.0','Kôkaku kidôtai 2.0',1,2008,NULL,'83'),(1260944,'short','The Consequences of Feminism','Les résultats du féminisme',1,1906,NULL,'7'),(12610794,'movie','Blade of the 47 Ronin','Blade of the 47 Ronin',1,2022,NULL,'107'),(12618926,'movie','Parallel Mothers','Madres paralelas',1,2021,NULL,'123'),(1261945,'movie','Sex and the City 2','Sex and the City 2',1,2010,NULL,'146'),(1262416,'movie','Scream 4','Scream 4',1,2011,NULL,'111'),(1263670,'movie','Crazy Heart','Crazy Heart',1,2009,NULL,'112'),(1263750,'movie','Room in Rome','Habitación en Roma',1,2010,NULL,'107'),(1263772,'video','XXXHOLic: Shunmuki - Zenpen','XXXHOLic: Shunmuki - Zenpen',1,2009,NULL,'30'),(1263778,'movie','The Beautiful Person','La belle personne',1,2008,NULL,'97'),(1265990,'movie','The Roommate','The Roommate',1,2011,NULL,'94'),(1266029,'movie','Nowhere Boy','Nowhere Boy',1,2009,NULL,'98'),(1266097,'video','Pirates II: Stagnetti\'s Revenge','Pirates II: Stagnetti\'s Revenge',1,2008,NULL,'138'),(1267297,'movie','Hercules','Hercules',1,2014,NULL,'98'),(1267299,'tvMovie','The Rocky Horror Picture Show: Let\'s Do the Time Warp Again','The Rocky Horror Picture Show: Let\'s Do the Time Warp Again',1,2016,NULL,'88'),(1267379,'video','Dead Space: Downfall','Dead Space: Downfall',1,2008,NULL,'74'),(1268799,'movie','A Very Harold & Kumar Christmas','A Very Harold & Kumar 3D Christmas',1,2011,NULL,'90'),(1268962,'movie','Drool','Drool',1,2009,NULL,'85'),(1268987,'movie','Operation: Endgame','Rogues Gallery',1,2010,NULL,'87'),(1268989,'tvMovie','The Unloved','The Unloved',1,2009,NULL,'106'),(1269560,'tvMovie','Love Takes Wing','Love Takes Wing',1,2009,NULL,'88'),(1270120,'movie','Transfer','Transfer',1,2010,NULL,'93'),(1270291,'movie','Hunter Prey','Hunter Prey',1,2010,NULL,'88'),(1270296,'movie','The Killing Jar','The Killing Jar',1,2010,NULL,'92'),(1270761,'movie','Don\'t Be Afraid of the Dark','Don\'t Be Afraid of the Dark',1,2010,NULL,'99'),(1270769,'movie','Three Wise Men','Kolme viisasta miestä',1,2008,NULL,'105'),(1270797,'movie','Venom','Venom',1,2018,NULL,'112'),(1270798,'movie','X-Men: First Class','X: First Class',1,2011,NULL,'131'),(1270842,'movie','Norwegian Wood','Noruwei no mori',1,2010,NULL,'133'),(12708658,'movie','Paris, 13th District','Les Olympiades, Paris 13e',1,2021,NULL,'105'),(12718300,'movie','Confess, Fletch','Confess, Fletch',1,2022,NULL,'98'),(1272041,'movie','My Queen Karo','My Queen Karo',1,2009,NULL,'101'),(1272051,'movie','Space Dogs','Belka i Strelka. Zvyozdnye sobaki',1,2010,NULL,'85'),(1272878,'movie','2 Guns','2 Guns',1,2013,NULL,'109'),(1273204,'movie','David\'s Birthday','Il compleanno',1,2009,NULL,'106'),(1273678,'movie','The Spy Next Door','The Spy Next Door',1,2010,NULL,'94'),(1273816,'video','The University of Illinois vs. a Mummy','The University of Illinois vs. a Mummy',1,2006,NULL,'89'),(1274300,'movie','The Tempest','The Tempest',1,2010,NULL,'110'),(12749596,'movie','Host','Host',1,2020,NULL,'57'),(12758060,'movie','Tetris','Tetris',1,2023,NULL,'118'),(1276104,'movie','Looper','Looper',1,2012,NULL,'119'),(1276419,'movie','A Royal Affair','En kongelig affære',1,2012,NULL,'137'),(1277728,'movie','Mid-August Lunch','Pranzo di ferragosto',1,2008,NULL,'75'),(1277953,'movie','Madagascar 3: Europe\'s Most Wanted','Madagascar 3: Europe\'s Most Wanted',1,2012,NULL,'95'),(1278340,'movie','Dead Snow','Død snø',1,2009,NULL,'92'),(12783454,'movie','The Kissing Booth 3','The Kissing Booth 3',1,2021,NULL,'112'),(1278379,'movie','Jack Goes Boating','Jack Goes Boating',1,2010,NULL,'91'),(1278449,'movie','Sound of Noise','Sound of Noise',1,2010,NULL,'102'),(1278469,'tvMovie','Temple Grandin','Temple Grandin',1,2010,NULL,'107'),(12789558,'movie','Belfast','Belfast',1,2021,NULL,'98'),(1279083,'movie','Examined Life','Examined Life',1,2008,NULL,'87'),(1279935,'movie','Date Night','Date Night',1,2010,NULL,'88'),(12801262,'movie','Luca','Luca',1,2021,NULL,'95'),(1280558,'movie','A Wednesday','A Wednesday',1,2008,NULL,'104'),(1282140,'movie','Easy A','Easy A',1,2010,NULL,'92'),(12838958,'video','Happy Halloween, Scooby-Doo!','Happy Halloween, Scooby-Doo!',1,2020,NULL,'80'),(12841698,'video','The Stunt Double','The Stunt Double',1,2020,NULL,'9'),(12844910,'movie','Pathaan','Pathaan',1,2023,NULL,'146'),(1284526,'movie','The Country Teacher','Venkovský ucitel',1,2008,NULL,'117'),(1284575,'movie','Bad Teacher','Bad Teacher',1,2011,NULL,'92'),(1284591,'movie','Süt','Süt',1,2008,NULL,'102'),(1285009,'movie','The Strangers: Prey at Night','The Strangers: Prey at Night',1,2018,NULL,'85'),(1285016,'movie','The Social Network','The Social Network',1,2010,NULL,'120'),(1285309,'movie','The Joneses','The Joneses',1,2009,NULL,'96'),(1286124,'tvMovie','iCarly: iGo to Japan','iCarly: iGo to Japan',1,2008,NULL,'71'),(1286742,'tvMovie','Clash of the Santas','Clash of the Santas',1,2008,NULL,'120'),(12873562,'movie','The Invitation','The Invitation',1,2022,NULL,'105'),(12877640,'movie','A Classic Horror Story','A Classic Horror Story',1,2021,NULL,'95'),(1287878,'movie','Poetry','Shi',1,2010,NULL,'139'),(1288558,'movie','Evil Dead','Evil Dead',1,2013,NULL,'91'),(1288589,'movie','Helen','Helen',1,2008,NULL,'79'),(12889404,'movie','Cyrano','Cyrano',1,2021,NULL,'123'),(1289401,'movie','Ghostbusters','Ghostbusters',1,2016,NULL,'117'),(1289403,'movie','The Guernsey Literary and Potato Peel Pie Society','The Guernsey Literary and Potato Peel Pie Society',1,2018,NULL,'124'),(1289406,'movie','Harry Brown','Harry Brown',1,2009,NULL,'103'),(1290135,'tvMovie','Children of the Corn','Children of the Corn',1,2009,NULL,'92'),(1291150,'movie','Teenage Mutant Ninja Turtles','Teenage Mutant Ninja Turtles',1,2014,NULL,'101'),(1291580,'movie','Behind the Candelabra','Behind the Candelabra',1,2013,NULL,'118'),(1291584,'movie','Warrior','Warrior',1,2011,NULL,'140'),(1291652,'movie','Easy Money','Snabba cash',1,2010,NULL,'124'),(1292566,'movie','How to Be Single','How to Be Single',1,2016,NULL,'110'),(1293847,'movie','xXx: Return of Xander Cage','xXx: Return of Xander Cage',1,2017,NULL,'107'),(1294138,'video','Barbie and the Diamond Castle','Barbie and the Diamond Castle',1,2008,NULL,'79'),(1294226,'movie','The Last Song','The Last Song',1,2010,NULL,'108'),(1296899,'movie','Wake Wood','Wake Wood',1,2009,NULL,'90'),(1298554,'movie','Eva','Eva',1,2011,NULL,'94'),(1298644,'movie','The Hustle','The Hustle',1,2019,NULL,'93'),(1298649,'movie','The Watch','The Watch',1,2012,NULL,'102'),(1298650,'movie','Pirates of the Caribbean: On Stranger Tides','Pirates of the Caribbean: On Stranger Tides',1,2011,NULL,'137'),(1300851,'movie','The Boondock Saints II: All Saints Day','The Boondock Saints II: All Saints Day',1,2009,NULL,'118'),(1300854,'movie','Iron Man 3','Iron Man Three',1,2013,NULL,'130'),(13017992,'tvSpecial','Mariah Carey\'s Magical Christmas Special','Mariah Carey\'s Magical Christmas Special',1,2020,NULL,'43'),(1302006,'movie','The Irishman','The Irishman',1,2019,NULL,'209'),(1302011,'movie','Kung Fu Panda 2','Kung Fu Panda 2',1,2011,NULL,'90'),(1302067,'movie','Yogi Bear','Yogi Bear',1,2010,NULL,'81'),(13024674,'movie','Army of Thieves','Army of Thieves',1,2021,NULL,'127'),(1303803,'movie','Standing Ovation','Standing Ovation',1,2010,NULL,'105'),(1303828,'movie','Defendor','Defendor',1,2009,NULL,'101'),(1305138,'movie','El Regalo','El Regalo',1,2008,NULL,'108'),(1305583,'movie','Our Family Wedding','Our Family Wedding',1,2010,NULL,'103'),(1305591,'movie','Mars Needs Moms','Mars Needs Moms',1,2011,NULL,'88'),(13056052,'movie','Broker','Beurokeo',1,2022,NULL,'129'),(1305714,'movie','Make the Yuletide Gay','Make the Yuletide Gay',1,2009,NULL,'89'),(1305797,'movie','Enthiran','Enthiran',1,2010,NULL,'155'),(1305806,'movie','The Secret in Their Eyes','El secreto de sus ojos',1,2009,NULL,'129'),(1306980,'movie','50/50','50/50',1,2011,NULL,'100'),(13069986,'movie','After We Fell','After We Fell',1,2021,NULL,'98'),(1307068,'movie','Seeking a Friend for the End of the World','Seeking a Friend for the End of the World',1,2012,NULL,'101'),(1307858,'movie','All About Evil','All About Evil',1,2010,NULL,'98'),(13079086,'movie','From Stress to Happiness','From Stress to Happiness',1,2020,NULL,'60'),(1308138,'movie','Mulan: Rise of a Warrior','Hua Mulan',1,2009,NULL,'114'),(13086266,'movie','Concrete Utopia','Konkeuriteu yutopia',1,2023,NULL,'130'),(13086274,'movie','Everything Will Change','Everything Will Change',1,2021,NULL,'93'),(1308728,'movie','The Happytime Murders','The Happytime Murders',1,2018,NULL,'91'),(1308729,'movie','Bullet to the Head','Bullet to the Head',1,2012,NULL,'92'),(1309449,'movie','Kaiji: The Ultimate Gambler','Kaiji: Jinsei gyakuten gêmu',1,2009,NULL,'130'),(1311071,'movie','Kill Your Darlings','Kill Your Darlings',1,2013,NULL,'104'),(1311075,'movie','The Human Resources Manager','The Human Resources Manager',1,2010,NULL,'103'),(1312251,'tvMovie','The Good Witch\'s Garden','The Good Witch\'s Garden',1,2009,NULL,'86'),(1313092,'movie','Animal Kingdom','Animal Kingdom',1,2010,NULL,'113'),(1313139,'movie','The Oranges','The Oranges',1,2011,NULL,'90'),(1313244,'movie','Hypothermia','Hypothermia',1,2010,NULL,'73'),(13139228,'movie','My Policeman','My Policeman',1,2022,NULL,'113'),(13143964,'movie','Borat Subsequent Moviefilm','Borat Subsequent Moviefilm: Delivery of Prodigious Bribe to American Regime for Make Benefit Once Glorious Nation of Kazakhstan',1,2020,NULL,'95'),(13145534,'movie','Incredible But True','Incroyable mais vrai',1,2022,NULL,'74'),(1314645,'movie','C Me Dance','C Me Dance',1,2009,NULL,'89'),(1314652,'movie','The Housemaid','Hanyo',1,2010,NULL,'107'),(1314655,'movie','Devil','Devil',1,2010,NULL,'80'),(1315214,'movie','Hannah Free','Hannah Free',1,2009,NULL,'86'),(13152234,'short','Iskioma','Iskioma',1,2020,NULL,'15'),(1315981,'movie','A Single Man','A Single Man',1,2009,NULL,'99'),(1316037,'movie','Birdemic: Shock and Terror','Birdemic: Shock and Terror',1,2010,NULL,'105'),(1316540,'movie','The Turin Horse','A torinói ló',1,2011,NULL,'155'),(1316541,'movie','Bliss!','Bliss!',1,2016,NULL,'95'),(1316622,'movie','Wrecked','Wrecked',1,2010,NULL,'91'),(1316624,'movie','The Year Dolly Parton Was My Mom','The Year Dolly Parton Was My Mom',1,2011,NULL,'95'),(13172796,'movie','Plan B','Plan B',1,2021,NULL,'107'),(1318514,'movie','Rise of the Planet of the Apes','Rise of the Planet of the Apes',1,2011,NULL,'105'),(1318517,'movie','The Man Who Killed Don Quixote','The Man Who Killed Don Quixote',1,2018,NULL,'132'),(1319708,'videoGame','Deus Ex: Human Revolution','Deus Ex: Human Revolution',1,2011,NULL,NULL),(1319722,'movie','A Little Help','A Little Help',1,2010,NULL,'105'),(1320082,'movie','The Concert','Le concert',1,2009,NULL,'119'),(1320244,'movie','The Last Exorcism','The Last Exorcism',1,2010,NULL,'87'),(1320253,'movie','The Expendables','The Expendables',1,2010,NULL,'103'),(1320286,'tvMovie','Georgia O\'Keeffe','Georgia O\'Keeffe',1,2009,NULL,'89'),(1320291,'movie','The Reef','The Reef',1,2010,NULL,'94'),(1320304,'video','30 Days of Night: Dark Days','30 Days of Night: Dark Days',1,2010,NULL,'92'),(1320352,'movie','Nothing Personal','Nothing Personal',1,2009,NULL,'85'),(13204490,'movie','Petite Maman','Petite maman',1,2021,NULL,'73'),(1321510,'movie','In the Heights','In the Heights',1,2021,NULL,'143'),(1321511,'movie','Oldboy','Oldboy',1,2013,NULL,'104'),(1321870,'movie','Gangster Squad','Gangster Squad',1,2013,NULL,'113'),(1322269,'movie','August: Osage County','August: Osage County',1,2013,NULL,'121'),(1322312,'movie','Going the Distance','Going the Distance',1,2010,NULL,'103'),(1322315,'movie','Headhunter','Headhunter',1,2009,NULL,'108'),(1322385,'movie','Submarino','Submarino',1,2010,NULL,'105'),(1323045,'movie','Frozen','Frozen',1,2010,NULL,'93'),(13235822,'movie','Umma','Umma',1,2022,NULL,'83'),(1323594,'movie','Despicable Me','Despicable Me',1,2010,NULL,'95'),(1323605,'movie','Suck','Suck',1,2009,NULL,'91'),(1324999,'movie','The Twilight Saga: Breaking Dawn - Part 1','The Twilight Saga: Breaking Dawn - Part 1',1,2011,NULL,'117'),(1325004,'movie','The Twilight Saga: Eclipse','The Twilight Saga: Eclipse',1,2010,NULL,'124'),(1326221,'movie','Fruit Fly','Fruit Fly',1,2009,NULL,'94'),(13266132,'short','You Will Never Be Back','No podrás volver nunca',1,2020,NULL,'14'),(13266998,'movie','Bull','Bull',1,2021,NULL,'88'),(1326956,'movie','Our Summer in Tehran','Our Summer in Tehran',1,2009,NULL,NULL),(1327194,'movie','The Lucky One','The Lucky One',1,2012,NULL,'101'),(1327773,'movie','The Butler','Lee Daniels\' the Butler',1,2013,NULL,'132'),(1331064,'movie','Paper Heart','Paper Heart',1,2009,NULL,'88'),(1332054,'movie','Cosmonaut','Cosmonauta',1,2009,NULL,'85'),(13320622,'movie','The Lost City','The Lost City',1,2022,NULL,'112'),(1332134,'movie','King of Devil\'s Island','Kongen av Bastøy',1,2010,NULL,'116'),(13327038,'movie','Do Revenge','Do Revenge',1,2022,NULL,'118'),(1334260,'movie','Never Let Me Go','Never Let Me Go',1,2010,NULL,'103'),(1334512,'movie','Arthur','Arthur',1,2011,NULL,'110'),(1334537,'movie','Humpday','Humpday',1,2009,NULL,'94'),(1334553,'movie','The Perfect Host','The Perfect Host',1,2010,NULL,'93'),(13345606,'movie','Evil Dead Rise','Evil Dead Rise',1,2023,NULL,'96'),(13352968,'movie','Good Luck to You, Leo Grande','Good Luck to You, Leo Grande',1,2022,NULL,'97'),(1335975,'movie','47 Ronin','47 Ronin',1,2013,NULL,'128'),(1336608,'movie','Rock of Ages','Rock of Ages',1,2012,NULL,'123'),(1336617,'movie','Cyrus','Cyrus',1,2010,NULL,'91'),(1336999,'movie','Jucy','Jucy',1,2010,NULL,'90'),(1337051,'movie','Police, Adjective','Politist, adjectiv',1,2009,NULL,'115'),(13375076,'movie','The Pope\'s Exorcist','The Pope\'s Exorcist',1,2023,NULL,'103'),(1339268,'movie','Beeswax','Beeswax',1,2009,NULL,'100'),(1339302,'movie','Bleach: Fade to Black, I Call Your Name','Gekijô ban Bleach: Fade to Black - Kimi no na o yobu',1,2008,NULL,'94'),(1340108,'movie','Killer Bean Forever','Killer Bean Forever',1,2008,NULL,'85'),(1340138,'movie','Terminator Genisys','Terminator Genisys',1,2015,NULL,'126'),(13403046,'movie','Fresh','Fresh',1,2022,NULL,'114'),(1340664,'movie','Kenna','Kenna',1,2008,NULL,'86'),(1340768,'tvEpisode','Chess in Concert','Chess in Concert',1,2009,NULL,'145'),(1340773,'movie','Elektra Luxx','Elektra Luxx',1,2010,NULL,'104'),(1340800,'movie','Tinker Tailor Soldier Spy','Tinker Tailor Soldier Spy',1,2011,NULL,'127'),(1341167,'movie','Four Lions','Four Lions',1,2010,NULL,'97'),(1341188,'movie','How Do You Know','How Do You Know',1,2010,NULL,'121'),(1341341,'movie','Ceremony','Ceremony',1,2010,NULL,'89'),(1341710,'movie','The Shrine','The Shrine',1,2010,NULL,'85'),(1342378,'movie','The Girl','Flickan',1,2009,NULL,'100'),(13430858,'movie','What\'s Love Got to Do with It?','What\'s Love Got to Do with It?',1,2022,NULL,'108'),(1343092,'movie','The Great Gatsby','The Great Gatsby',1,2013,NULL,'143'),(1343097,'movie','The Girl Who Kicked the Hornet\'s Nest','Luftslottet som sprängdes',1,2009,NULL,'147'),(1343727,'movie','Dredd','Dredd',1,2012,NULL,'95'),(1345772,'movie','The Clinic','The Clinic',1,2010,NULL,'94'),(1345836,'movie','The Dark Knight Rises','The Dark Knight Rises',1,2012,NULL,'164'),(13462472,'movie','The Young Lovers','Les jeunes amants',1,2021,NULL,'114'),(13482828,'movie','One Fine Morning','Un beau matin',1,2022,NULL,'112'),(1348327,'movie','Villa Amalia','Villa Amalia',1,2009,NULL,'94'),(1349451,'movie','Butter','Butter',1,2011,NULL,'91'),(1349482,'video','Bring It on: Fight to the Finish','Bring It On: Fight to the Finish',1,2009,NULL,'102'),(1350498,'movie','Mega Shark vs. Giant Octopus','Mega Shark vs. Giant Octopus',1,2009,NULL,'88'),(1351177,'movie','Last of the Living','Last of the Living',1,2009,NULL,'88'),(1351685,'movie','Jack the Giant Slayer','Jack the Giant Slayer',1,2013,NULL,'114'),(13521006,'movie','Beau Is Afraid','Beau Is Afraid',1,2023,NULL,'179'),(1352824,'movie','Chloe','Chloe',1,2009,NULL,'96'),(13539646,'movie','The Wandering Earth II','Liu lang di qiu 2',1,2022,NULL,'173'),(1355630,'movie','If I Stay','If I Stay',1,2014,NULL,'107'),(1355631,'movie','The Infiltrator','The Infiltrator',1,2016,NULL,'127'),(1355638,'movie','The Rabbi\'s Cat','Le chat du rabbin',1,2011,NULL,'100'),(1355644,'movie','Passengers','Passengers',1,2016,NULL,'116'),(1355683,'movie','Black Mass','Black Mass',1,2015,NULL,'123'),(13560574,'movie','X','X',1,2022,NULL,'105'),(1356380,'tvSeries','The No. 1 Ladies\' Detective Agency','The No. 1 Ladies\' Detective Agency',1,2008,2009,'60'),(13575806,'movie','Back to the Outback','Back to the Outback',1,2021,NULL,'95'),(13603966,'movie','Heart of Stone','Heart of Stone',1,2023,NULL,'122'),(1360860,'movie','About Elly','Darbareye Elly',1,2009,NULL,'119'),(13610562,'movie','The Bubble','The Bubble',1,2022,NULL,'126'),(1361318,'movie','Good People','Good People',1,2014,NULL,'90'),(1361835,'movie','The Silence','Das letzte Schweigen',1,2010,NULL,'118'),(1362058,'movie','Cockneys vs Zombies','Cockneys vs Zombies',1,2012,NULL,'88'),(13623880,'movie','Night at the Museum: Kahmunrah Rises Again','Night at the Museum: Kahmunrah Rises Again',1,2022,NULL,'77'),(1362534,'tvMovie','Butter bei die Fische','Butter bei die Fische',1,2009,NULL,'90'),(1365050,'movie','Beasts of No Nation','Beasts of No Nation',1,2015,NULL,'137'),(13650600,'movie','Emergency','Emergency',1,2022,NULL,'105'),(13651628,'movie','Belle','Ryû to sobakasu no hime',1,2021,NULL,'121'),(1365519,'movie','Tomb Raider','Tomb Raider',1,2018,NULL,'119'),(1366344,'movie','The Sitter','The Sitter',1,2011,NULL,'81'),(13669038,'movie','Women Talking','Women Talking',1,2022,NULL,'104'),(13675832,'tvSeries','As If','Gibi',1,2021,NULL,'30'),(1368491,'movie','Undertow','Contracorriente',1,2009,NULL,'97'),(1369706,'movie','The Ward','The Ward',1,2010,NULL,'89'),(1370212,'movie','My Only Sunshine','Hayat Var',1,2008,NULL,'121'),(1371111,'movie','Cloud Atlas','Cloud Atlas',1,2012,NULL,'172'),(1371150,'movie','This Is Where I Leave You','This Is Where I Leave You',1,2014,NULL,'103'),(1371155,'movie','Made in Dagenham','Made in Dagenham',1,2010,NULL,'113'),(1371585,'movie','Life Without Principle','Duet ming gam',1,2011,NULL,'107'),(1371630,'movie','Air Doll','Kûki ningyô',1,2009,NULL,'125'),(1372301,'movie','Technotise: Edit & I','Technotise - Edit i ja',1,2009,NULL,'100'),(1372306,'movie','Year of the Carnivore','Year of the Carnivore',1,2009,NULL,'88'),(1372686,'movie','Coriolanus','Coriolanus',1,2011,NULL,'123'),(1374989,'movie','Pride and Prejudice and Zombies','Pride and Prejudice and Zombies',1,2016,NULL,'108'),(1375666,'movie','Inception','Inception',1,2010,NULL,'148'),(1375670,'movie','Grown Ups','Grown Ups',1,2010,NULL,'102'),(1376195,'movie','Gunless','Gunless',1,2010,NULL,'89'),(1376213,'movie','The Adventurer: The Curse of the Midas Box','The Adventurer: The Curse of the Midas Box',1,2013,NULL,'100'),(1376233,'movie','Rid of Me','Rid of Me',1,2011,NULL,'90'),(1379177,'movie','The Disappearance of Alice Creed','The Disappearance of Alice Creed',1,2009,NULL,'100'),(1379182,'movie','Dogtooth','Kynodontas',1,2009,NULL,'97'),(1379222,'movie','The Double Hour','La doppia ora',1,2009,NULL,'95'),(1381404,'movie','The Company You Keep','The Company You Keep',1,2012,NULL,'125'),(1381413,'movie','Pete Smalls Is Dead','Pete Smalls Is Dead',1,2010,NULL,'95'),(1381512,'movie','RoboGeisha','Robo-geisha',1,2009,NULL,'102'),(13833688,'movie','The Whale','The Whale',1,2022,NULL,'117'),(13841850,'movie','Men','Men',1,2022,NULL,'100'),(13845792,'movie','Immersion','Inmersión',1,2021,NULL,'82'),(1384925,'movie','Ardor','El Ardor',1,2014,NULL,'101'),(1385826,'movie','The Adjustment Bureau','The Adjustment Bureau',1,2011,NULL,'106'),(1385867,'movie','Cop Out','Cop Out',1,2010,NULL,'107'),(1385912,'movie','I Can Do Bad All by Myself','I Can Do Bad All by Myself',1,2009,NULL,'113'),(1385956,'movie','Particle Fever','Particle Fever',1,2013,NULL,'99'),(1386588,'movie','The Other Guys','The Other Guys',1,2010,NULL,'107'),(1386697,'movie','Suicide Squad','Suicide Squad',1,2016,NULL,'123'),(1386703,'movie','Total Recall','Total Recall',1,2012,NULL,'118'),(1386932,'movie','Ip Man 2','Yip Man 2',1,2010,NULL,'108'),(1389072,'movie','Downsizing','Downsizing',1,2017,NULL,'135'),(1389137,'movie','We Bought a Zoo','We Bought a Zoo',1,2011,NULL,'124'),(1389374,'movie','She, a Chinese','She, a Chinese',1,2009,NULL,'103'),(1390411,'movie','In the Heart of the Sea','In the Heart of the Sea',1,2015,NULL,'122'),(1391034,'movie','And Soon the Darkness','And Soon the Darkness',1,2010,NULL,'91'),(1392170,'movie','The Hunger Games','The Hunger Games',1,2012,NULL,'142'),(1392190,'movie','Mad Max: Fury Road','Mad Max: Fury Road',1,2015,NULL,'120'),(1392214,'movie','Prisoners','Prisoners',1,2013,NULL,'153'),(13932410,'movie','Four\'s a Crowd','El cuarto pasajero',1,2022,NULL,'99'),(1393746,'movie','Aftershock','Tang shan da di zhen',1,2010,NULL,'135'),(1396218,'movie','Mr. Popper\'s Penguins','Mr. Popper\'s Penguins',1,2011,NULL,'94'),(1396484,'movie','It','It',1,2017,NULL,'135'),(1397280,'movie','Taken 2','Taken 2',1,2012,NULL,'92'),(1397514,'movie','Journey 2: The Mysterious Island','Journey 2: The Mysterious Island',1,2012,NULL,'94'),(1398426,'movie','Straight Outta Compton','Straight Outta Compton',1,2015,NULL,'147'),(1398428,'movie','YellowBrickRoad','YellowBrickRoad',1,2010,NULL,'98'),(13989030,'movie','The Royal Treatment','The Royal Treatment',1,2022,NULL,'96'),(1399103,'movie','Transformers: Dark of the Moon','Transformers: Dark of the Moon',1,2011,NULL,'154'),(1399683,'movie','Winter\'s Bone','Winter\'s Bone',1,2010,NULL,'100'),(14007288,'movie','Bad Living','Mal Viver',1,2023,NULL,'127'),(1401143,'movie','Rare Exports','Rare Exports',1,2010,NULL,'84'),(1401152,'movie','Unknown','Unknown',1,2011,NULL,'113'),(1401643,'movie','Black Venus','Vénus noire',1,2010,NULL,'162'),(1402488,'movie','Happy Feet Two','Happy Feet Two',1,2011,NULL,'117'),(1403177,'movie','Hesher','Hesher',1,2010,NULL,'106'),(1403214,'movie','Paradise: Love','Paradies: Liebe',1,2012,NULL,'120'),(14034966,'movie','Wheel of Fortune and Fantasy','Gûzen to sôzô',1,2021,NULL,'121'),(1403865,'movie','True Grit','True Grit',1,2010,NULL,'110'),(14039582,'movie','Drive My Car','Doraibu mai kâ',1,2021,NULL,'179'),(1403981,'movie','Remember Me','Remember Me',1,2010,NULL,'113'),(1403988,'movie','The Romantics','The Romantics',1,2010,NULL,'95'),(1405365,'movie','Celeste & Jesse Forever','Celeste & Jesse Forever',1,2012,NULL,'92'),(1405500,'movie','For Colored Girls','For Colored Girls',1,2010,NULL,'134'),(1405808,'movie','Lost Persons Area','Lost Persons Area',1,2009,NULL,'109'),(1405809,'movie','Lourdes','Lourdes',1,2009,NULL,'96'),(1405810,'movie','Loose Cannons','Mine vaganti',1,2010,NULL,'110'),(1406160,'movie','Jaffa','Jaffa',1,2009,NULL,'106'),(14062858,'short','Us Again','Us Again',1,2021,NULL,'7'),(1407061,'movie','Just Wright','Just Wright',1,2010,NULL,'101'),(1407065,'movie','The Moth Diaries','The Moth Diaries',1,2011,NULL,'82'),(1408101,'movie','Star Trek Into Darkness','Star Trek Into Darkness',1,2013,NULL,'132'),(1408253,'movie','Ride Along','Ride Along',1,2014,NULL,'99'),(1409024,'movie','Men in Black 3','Men in Black 3',1,2012,NULL,'106'),(14091818,'movie','Ajeeb Daastaans','Ajeeb Daastaans',1,2021,NULL,'142'),(1410063,'movie','The Flowers of War','Jin ling shi san chai',1,2011,NULL,'146'),(1411238,'movie','No Strings Attached','No Strings Attached',1,2011,NULL,'108'),(1411250,'movie','Riddick','Riddick',1,2013,NULL,'119'),(1411697,'movie','The Hangover Part II','The Hangover Part II',1,2011,NULL,'102'),(1411704,'movie','Hop','Hop',1,2011,NULL,'95'),(1412386,'movie','The Best Exotic Marigold Hotel','The Best Exotic Marigold Hotel',1,2011,NULL,'124'),(1412528,'movie','Table 19','Table 19',1,2017,NULL,'87'),(1412541,'movie','Eat Me!','Eat Me!',1,2010,NULL,'90'),(14128670,'movie','Kimi','Kimi',1,2022,NULL,'89'),(1414382,'movie','You Again','You Again',1,2010,NULL,'105'),(14145004,'movie','Remains of the Wind','Restos do Vento',1,2022,NULL,'127'),(14145426,'movie','Beavis and Butt-Head Do the Universe','Beavis and Butt-Head Do the Universe',1,2022,NULL,'87'),(14152140,'movie','Darlings','Darlings',1,2022,NULL,'133'),(1415283,'movie','Nanny McPhee Returns','Nanny McPhee and the Big Bang',1,2010,NULL,'109'),(14156262,'short','La Luna, Tomasico y mi abuela','La Luna, Tomasico y mi abuela',1,2021,NULL,NULL),(14164234,'movie','Ride or Die','Kanojo',1,2021,NULL,'142'),(1418377,'movie','I, Frankenstein','I, Frankenstein',1,2014,NULL,'92'),(14208870,'movie','The Fabelmans','The Fabelmans',1,2022,NULL,'151'),(14209916,'movie','Cocaine Bear','Cocaine Bear',1,2023,NULL,'95'),(1421051,'movie','Somewhere','Somewhere',1,2010,NULL,'97'),(1422136,'movie','A Lonely Place to Die','A Lonely Place to Die',1,2011,NULL,'99'),(1422201,'tvMovie','One Hot Summer','One Hot Summer',1,2009,NULL,'89'),(1422674,'movie','Ju-on: Black Ghost','Ju-on: Kuroi shôjo',1,2009,NULL,'60'),(1422675,'movie','Ju-on: White Ghost','Ju-on: Shiroi rôjo',1,2009,NULL,'61'),(14230388,'movie','Asteroid City','Asteroid City',1,2023,NULL,'105'),(1423894,'movie','Barney\'s Version','Barney\'s Version',1,2010,NULL,'134'),(1424327,'movie','Eyes Wide Open','Einayim Pekukhoth',1,2009,NULL,'91'),(1424381,'movie','Predators','Predators',1,2010,NULL,'107'),(1424431,'movie','Tsar','Tsar',1,2009,NULL,'116'),(1424432,'movie','Senna','Senna',1,2010,NULL,'106'),(1424797,'movie','I Killed My Mother','J\'ai tué ma mère',1,2009,NULL,'96'),(1425928,'movie','Vampire Girl vs. Frankenstein Girl','Kyûketsu Shôjo tai Shôjo Furanken',1,2009,NULL,'84'),(1425933,'movie','Skeletons','Skeletons',1,2010,NULL,'94'),(1426320,'movie','BearCity','BearCity',1,2010,NULL,'104'),(1426329,'movie','Lovelace','Lovelace',1,2013,NULL,'93'),(1426362,'movie','Daddy Longlegs','Go Get Some Rosemary',1,2009,NULL,'100'),(1426371,'movie','Little Girl','La pivellina',1,2009,NULL,'100'),(1426374,'movie','The Wind Journeys','Los viajes del viento',1,2009,NULL,'117'),(1428455,'short','Sandow','Sandow',1,1896,NULL,'1'),(1428538,'movie','Hansel & Gretel: Witch Hunters','Hansel & Gretel: Witch Hunters',1,2013,NULL,'88'),(1429392,'movie','Small Town Murder Songs','Small Town Murder Songs',1,2010,NULL,'75'),(14298328,'movie','Look Both Ways','Look Both Ways',1,2022,NULL,'110'),(14300504,'movie','The Water','El agua',1,2022,NULL,'104'),(1430132,'movie','The Wolverine','The Wolverine',1,2013,NULL,'126'),(1430607,'movie','Arthur Christmas','Arthur Christmas',1,2011,NULL,'97'),(1430612,'movie','Brick Mansions','Brick Mansions',1,2014,NULL,'90'),(1430615,'movie','Big Miracle','Big Miracle',1,2012,NULL,'107'),(1430626,'movie','The Pirates! Band of Misfits','The Pirates! In an Adventure with Scientists!',1,2012,NULL,'88'),(14309446,'movie','Me Time','Me Time',1,2022,NULL,'101'),(1431045,'movie','Deadpool','Deadpool',1,2016,NULL,'108'),(1431181,'movie','Another Year','Another Year',1,2010,NULL,'129'),(14315756,'movie','Single All the Way','Single All the Way',1,2021,NULL,'99'),(14317880,'movie','Final Cut','Coupez!',1,2022,NULL,'112'),(14324650,'movie','Batman: The Long Halloween, Part One','Batman: The Long Halloween, Part One',1,2021,NULL,'85'),(1433108,'movie','Faster','Faster',1,2010,NULL,'98'),(14331144,'movie','Jujutsu Kaisen 0','Gekijouban Jujutsu Kaisen 0',1,2021,NULL,'105'),(1433540,'movie','A Town Called Panic','Panique au village',1,2009,NULL,'75'),(1433802,'movie','18 Years Later','Diciotto anni dopo',1,2010,NULL,'100'),(1433811,'movie','Disconnect','Disconnect',1,2012,NULL,'115'),(1435513,'movie','Hysteria','Hysteria',1,2011,NULL,'100'),(1436045,'movie','13 Assassins','Jûsan-nin no shikaku',1,2010,NULL,'141'),(14362474,'short','A Shore Away','L\'autre Rive',1,2022,NULL,'17'),(1436562,'movie','Rio','Rio',1,2011,NULL,'96'),(14371426,'movie','Flashback','Flashback',1,2021,NULL,'94'),(14371818,'movie','Hear Me Out','On est fait pour s\'entendre',1,2021,NULL,'93'),(1437357,'movie','Faust','Faust',1,2011,NULL,'140'),(1437358,'movie','Sleep Tight','Mientras duermes',1,2011,NULL,'102'),(1438176,'movie','Fright Night','Fright Night',1,2011,NULL,'106'),(1438216,'movie','Oranges and Sunshine','Oranges and Sunshine',1,2010,NULL,'105'),(1438254,'movie','Charlie St. Cloud','Charlie St. Cloud',1,2010,NULL,'100'),(1439572,'movie','Perfect Sense','Perfect Sense',1,2011,NULL,'92'),(1440118,'movie','I Am Nasrine','I Am Nasrine',1,2012,NULL,'93'),(1440129,'movie','Battleship','Battleship',1,2012,NULL,'131'),(1440161,'movie','A Little Bit of Heaven','A Little Bit of Heaven',1,2011,NULL,'107'),(1440232,'movie','Little White Lies','Les petits mouchoirs',1,2010,NULL,'154'),(14402926,'movie','Batman: The Long Halloween, Part Two','Batman: The Long Halloween, Part Two',1,2021,NULL,'87'),(1440292,'movie','Submarine','Submarine',1,2010,NULL,'97'),(1440345,'movie','This Must Be the Place','This Must Be the Place',1,2011,NULL,'118'),(1440728,'movie','The American','The American',1,2010,NULL,'105'),(1440741,'movie','From Beginning to End','Do Começo ao Fim',1,2009,NULL,'94'),(1441326,'movie','Martha Marcy May Marlene','Martha Marcy May Marlene',1,2011,NULL,'102'),(1441395,'movie','Under the Skin','Under the Skin',1,2013,NULL,'108'),(1441912,'movie','The Way','The Way',1,2010,NULL,'123'),(1441951,'movie','Quartet','Quartet',1,2012,NULL,'98'),(1441952,'movie','Salmon Fishing in the Yemen','Salmon Fishing in the Yemen',1,2011,NULL,'107'),(1441953,'movie','Testament of Youth','Testament of Youth',1,2014,NULL,'129'),(1441956,'movie','West Is West','West Is West',1,2010,NULL,'103'),(1442437,'tvSeries','Modern Family','Modern Family',1,2009,2020,'22'),(1442519,'movie','The Hedgehog','Le hérisson',1,2009,NULL,'100'),(14428598,'movie','Qala','Qala',1,2022,NULL,'119'),(1443518,'movie','R U There','R U There',1,2010,NULL,'90'),(14444726,'movie','Tár','Tár',1,2022,NULL,'158'),(1445520,'movie','Footnote','Hearat Shulayim',1,2011,NULL,'107'),(1446192,'movie','Rise of the Guardians','Rise of the Guardians',1,2012,NULL,'97'),(1446201,'tvMovie','12 Men of Christmas','12 Men of Christmas',1,2009,NULL,'95'),(1446714,'movie','Prometheus','Prometheus',1,2012,NULL,'124'),(1447479,'movie','A Marine Story','A Marine Story',1,2010,NULL,'98'),(1448755,'movie','Killer Elite','Killer Elite',1,2011,NULL,'116'),(1449283,'movie','Winnie the Pooh','Winnie the Pooh',1,2011,NULL,'63'),(14495706,'short','La Rosace Magique','La Rosace Magique',1,1877,NULL,'1'),(1450321,'movie','Filth','Filth',1,2013,NULL,'97'),(1450332,'movie','Surely Someday','Shuarî samudei',1,2010,NULL,'122'),(1451762,'movie','On Tour','Tournée',1,2010,NULL,'111'),(1452628,'movie','Vanishing on 7th Street','Vanishing on 7th Street',1,2010,NULL,'92'),(1453405,'movie','Monsters University','Monsters University',1,2013,NULL,'104'),(1454029,'movie','The Help','The Help',1,2011,NULL,'146'),(14544192,'tvSpecial','Inside','Bo Burnham: Inside',1,2021,NULL,'87'),(1454468,'movie','Gravity','Gravity',1,2013,NULL,'91'),(1455151,'movie','My Afternoons with Margueritte','La tête en friche',1,2010,NULL,'82'),(1456060,'movie','Boy Wonder','Boy Wonder',1,2010,NULL,'93'),(1456472,'movie','We Have a Pope','Habemus Papam',1,2011,NULL,'102'),(1456635,'movie','Goon','Goon',1,2011,NULL,'92'),(1456941,'movie','Tomorrow, When the War Began','Tomorrow, When the War Began',1,2010,NULL,'104'),(1457767,'movie','The Conjuring','The Conjuring',1,2013,NULL,'112'),(1458169,'movie','Kidnap','Kidnap',1,2017,NULL,'95'),(1458175,'movie','The Next Three Days','The Next Three Days',1,2010,NULL,'133'),(1461305,'video','XXXHOLiC: Shunmuki - Kouhen','XXXHOLiC: Shunmuki - Kouhen',1,2009,NULL,NULL),(1461312,'tvMiniSeries','Alice','Alice',1,2009,2009,'184'),(14614892,'movie','Dragon Ball Super: Super Hero','Dragon Ball Super: Super Hero',1,2022,NULL,'100'),(1462041,'movie','Dream House','Dream House',1,2011,NULL,'92'),(1462053,'movie','Leading Ladies','Leading Ladies',1,2010,NULL,'102'),(1462758,'movie','Buried','Buried',1,2010,NULL,'95'),(1462764,'movie','Indiana Jones and the Dial of Destiny','Indiana Jones and the Dial of Destiny',1,2023,NULL,'154'),(1462769,'movie','The Odd Life of Timothy Green','The Odd Life of Timothy Green',1,2012,NULL,'105'),(1462900,'movie','The Grandmaster','Yi dai zong shi',1,2013,NULL,'130'),(1463167,'movie','The Call','Il richiamo',1,2009,NULL,'93'),(1463188,'movie','Short of Love','Ngai chai dor ching',1,2009,NULL,'106'),(14641788,'movie','Enola Holmes 2','Enola Holmes 2',1,2022,NULL,'129'),(1464191,'movie','Decoding Annie Parker','Decoding Annie Parker',1,2013,NULL,'91'),(1464335,'movie','Uncharted','Uncharted',1,2022,NULL,'116'),(14644048,'movie','Sons of Ramses','Goutte d\'or',1,2022,NULL,'98'),(1464540,'movie','I Am Number Four','I Am Number Four',1,2011,NULL,'111'),(1464580,'movie','Stake Land','Stake Land',1,2010,NULL,'98'),(1465522,'movie','Tucker and Dale vs Evil','Tucker and Dale vs Evil',1,2010,NULL,'89'),(1466054,'movie','Cloudburst','Cloudburst',1,2011,NULL,'93'),(14668630,'movie','Lyle, Lyle, Crocodile','Lyle, Lyle, Crocodile',1,2022,NULL,'106'),(1467304,'movie','The Human Centipede (First Sequence)','The Human Centipede (First Sequence)',1,2009,NULL,'92'),(1469259,'video','Bratz the Video: Starrin\' & Stylin\'','Bratz the Video: Starrin\' & Stylin\'',1,2004,NULL,'59'),(1469304,'movie','Baywatch','Baywatch',1,2017,NULL,'116'),(1470023,'movie','MacGruber','MacGruber',1,2010,NULL,'90'),(1470827,'movie','Monsters','Monsters',1,2010,NULL,'94'),(1473149,'movie','Scheherazade, Tell Me a Story','Ehky ya Scheherazade',1,2009,NULL,'150'),(1473832,'movie','Bridget Jones\'s Baby','Bridget Jones\'s Baby',1,2016,NULL,'123'),(1474276,'movie','Summer Wars','Samâ uôzu',1,2009,NULL,'114'),(1477171,'movie','Amador','Amador',1,2010,NULL,'112'),(14775784,'movie','Great Freedom','Große Freiheit',1,2021,NULL,'116'),(1477834,'movie','Aquaman','Aquaman',1,2018,NULL,'143'),(1477837,'movie','Cedar Rapids','Cedar Rapids',1,2011,NULL,'87'),(1477855,'movie','Hyde Park on Hudson','Hyde Park on Hudson',1,2012,NULL,'94'),(1478338,'movie','Bridesmaids','Bridesmaids',1,2011,NULL,'125'),(1478804,'movie','Four Assassins','Four Assassins',1,2011,NULL,'87'),(1478839,'movie','The Art of Racing in the Rain','The Art of Racing in the Rain',1,2019,NULL,'109'),(1478964,'movie','Attack the Block','Attack the Block',1,2011,NULL,'88'),(1479163,'movie','Big Font. Large Spacing','Big Font. Large Spacing',1,2009,NULL,'81'),(1479668,'movie','Abel','Abel',1,2010,NULL,'82'),(1479676,'movie','Cooking with Stella','Cooking with Stella',1,2009,NULL,'104'),(1480295,'movie','Killing Season','Killing Season',1,2013,NULL,'91'),(1480656,'movie','Cosmopolis','Cosmopolis',1,2012,NULL,'109'),(1480660,'video','Halo Legends','Halo Legends',1,2010,NULL,'120'),(14814040,'movie','Not Okay','Not Okay',1,2022,NULL,'100'),(1481572,'movie','Happythankyoumoreplease','Happythankyoumoreplease',1,2010,NULL,'100'),(14817272,'movie','The Weekend Away','The Weekend Away',1,2022,NULL,'89'),(1482459,'movie','The Lorax','The Lorax',1,2012,NULL,'86'),(1483013,'movie','Oblivion','Oblivion',1,2013,NULL,'124'),(1483324,'movie','At Middleton','At Middleton',1,2013,NULL,'99'),(1483797,'movie','Redline','Redline',1,2009,NULL,'102'),(1483831,'movie','Lebanon','Lebanon',1,2009,NULL,'93'),(14843560,'short','#Nofilter','#Nofilter',1,2021,NULL,'13'),(1485698,'movie','The Dark House','Dom zly',1,2009,NULL,'105'),(1485796,'movie','The Greatest Showman','The Greatest Showman',1,2017,NULL,'105'),(14859416,'movie','Burning Days','Kurak Günler',1,2022,NULL,'129'),(1486185,'movie','Red Riding Hood','Red Riding Hood',1,2011,NULL,'100'),(1486190,'movie','Tamara Drewe','Tamara Drewe',1,2010,NULL,'107'),(1486192,'movie','The Raven','The Raven',1,2012,NULL,'110'),(1486193,'movie','5 Days of War','5 Days of War',1,2011,NULL,'113'),(14866710,'movie','Blasted','Blasted: Gutta vs aliens',1,2022,NULL,'114'),(1486834,'movie','What If','The F Word',1,2013,NULL,'98'),(1487118,'movie','Chalet Girl','Chalet Girl',1,2011,NULL,'97'),(1488555,'movie','The Change-Up','The Change-Up',1,2011,NULL,'112'),(1488589,'movie','Guillermo del Toro\'s Pinocchio','Guillermo del Toro\'s Pinocchio',1,2022,NULL,'117'),(1488591,'movie','Professor Layton and the Eternal Diva','Eiga Reiton-kyôju to eien no utahime',1,2009,NULL,'99'),(1488598,'tvMovie','Stonehenge Apocalypse','Stonehenge Apocalypse',1,2010,NULL,'90'),(1488606,'movie','Triple Frontier','Triple Frontier',1,2019,NULL,'125'),(14888898,'movie','Great Yarmouth: Provisional Figures','Great Yarmouth: Provisional Figures',1,2022,NULL,'113'),(1489887,'movie','Booksmart','Booksmart',1,2019,NULL,'102'),(1489889,'movie','Central Intelligence','Central Intelligence',1,2016,NULL,'107'),(1490017,'movie','The Lego Movie','The Lego Movie',1,2014,NULL,'100'),(14905650,'movie','Hellbender','Hellbender',1,2021,NULL,'86'),(14913250,'movie','Everybody Loves Jeanne','Tout le monde aime Jeanne',1,2022,NULL,'95'),(1492030,'tvMiniSeries','Mildred Pierce','Mildred Pierce',1,2011,2011,'336'),(14923260,'movie','Chupa','Chupa',1,2023,NULL,'95'),(1492841,'movie','Foreign Letters','Foreign Letters',1,2012,NULL,'99'),(1493886,'movie','The Wild Hunt','The Wild Hunt',1,2009,NULL,'96'),(1494772,'video','Justice League: Crisis on Two Earths','Justice League: Crisis on Two Earths',1,2010,NULL,'75'),(1496025,'movie','Underworld: Awakening','Underworld: Awakening',1,2012,NULL,'88'),(1496422,'movie','The Paperboy','The Paperboy',1,2012,NULL,'107'),(14966324,'movie','Reflect','Reflect',1,2024,NULL,NULL),(1496884,'movie','Spiderhole','Spiderhole',1,2010,NULL,'82'),(1498569,'movie','Restless','Restless',1,2011,NULL,'91'),(1498878,'movie','The Whisperer in Darkness','The Whisperer in Darkness',1,2011,NULL,'103'),(1499658,'movie','Horrible Bosses','Horrible Bosses',1,2011,NULL,'98'),(15006566,'movie','The Beasts','As bestas',1,2022,NULL,'137'),(15010292,'movie','Flux Gourmet','Flux Gourmet',1,2022,NULL,'111'),(1502397,'movie','Bad Boys for Life','Bad Boys for Life',1,2020,NULL,'124'),(1502407,'movie','Halloween','Halloween',1,2018,NULL,'106'),(1502712,'movie','Fantastic Four','Fantastic Four',1,2015,NULL,'100'),(1504320,'movie','The King\'s Speech','The King\'s Speech',1,2010,NULL,'118'),(1504362,'movie','Christmas in Beverly Hills','Natale a Beverly Hills',1,2009,NULL,'110'),(1504429,'movie','Hideaway','Le refuge',1,2009,NULL,'88'),(1504443,'tvMovie','Mongolian Death Worm','Mongolian Death Worm',1,2010,NULL,'90'),(1504508,'movie','Yelling to the Sky','Yelling to the Sky',1,2011,NULL,'94'),(1506999,'movie','Haywire','Haywire',1,2011,NULL,'93'),(1508661,'movie','Dead Hooker in a Trunk','Dead Hooker in a Trunk',1,2009,NULL,'92'),(1508675,'movie','Le Havre','Le Havre',1,2011,NULL,'93'),(15090124,'movie','Mad God','Mad God',1,2021,NULL,'83'),(15096128,'movie','Crush','Crush',1,2022,NULL,'93'),(1509767,'movie','The Three Musketeers','The Three Musketeers',1,2011,NULL,'110'),(1509787,'movie','A Bag of Hammers','A Bag of Hammers',1,2011,NULL,'85'),(1509788,'movie','Ass Backwards','Ass Backwards',1,2013,NULL,'85'),(1510906,'movie','Third Star','Third Star',1,2010,NULL,'92'),(15109082,'movie','The Quiet Girl','An Cailín Ciúin',1,2022,NULL,'95'),(1510938,'tvMovie','The Sunset Limited','The Sunset Limited',1,2011,NULL,'91'),(1511354,'movie','The God of Wood','El dios de madera',1,2010,NULL,'116'),(1512201,'movie','Last Train Home','Gui tu lie che',1,2009,NULL,'85'),(1512235,'movie','Super','Super',1,2010,NULL,'96'),(1512685,'movie','Los ojos de Julia','Los ojos de Julia',1,2010,NULL,'118'),(1514041,'movie','4.3.2.1.','4.3.2.1.',1,2010,NULL,'117'),(1515091,'movie','Sherlock Holmes: A Game of Shadows','Sherlock Holmes: A Game of Shadows',1,2011,NULL,'129'),(1515725,'short','A Trip to Mars','A Trip to Mars',1,1910,NULL,'5'),(1515935,'movie','The Lottery','The Lottery',1,2010,NULL,'81'),(1517260,'movie','The Host','The Host',1,2013,NULL,'125'),(1517268,'movie','Barbie','Barbie',1,2023,NULL,'114'),(1517451,'movie','A Star Is Born','A Star Is Born',1,2018,NULL,'136'),(1517470,'video','Dragon Ball Z: Gather Together! Goku\'s World','Doragon bôru Z: Atsumare! Gokû Wârudo',1,1992,NULL,'30'),(1518812,'movie','Meek\'s Cutoff','Meek\'s Cutoff',1,2010,NULL,'104'),(1518861,'tvMovie','Turbulent Skies','Turbulent Skies',1,2010,NULL,'82'),(1520453,'movie','Twelve Thirty','Twelve Thirty',1,2010,NULL,'126'),(15206378,'movie','7 Women and a Murder','7 donne e un mistero',1,2021,NULL,'82'),(1521783,'movie','Exit 117','Exit 117',1,2009,NULL,'89'),(15218000,'movie','Fire Island','Fire Island',1,2022,NULL,'105'),(1521848,'movie','Potiche','Potiche',1,2010,NULL,'103'),(1523483,'movie','Kaboom','Kaboom',1,2010,NULL,'86'),(1524137,'movie','Contraband','Contraband',1,2012,NULL,'109'),(15248702,'movie','Catwoman: Hunted','Catwoman: Hunted',1,2022,NULL,'78'),(1524930,'movie','Vacation','Vacation',1,2015,NULL,'99'),(1525366,'movie','Grabbers','Grabbers',1,2012,NULL,'94'),(1525552,'movie','Apart','Apart',1,2011,NULL,'85'),(15255876,'movie','Emily the Criminal','Emily the Criminal',1,2022,NULL,'97'),(1525835,'movie','Gantz','Gantz',1,2010,NULL,'130'),(1525836,'movie','Gantz: Perfect Answer','Gantz: Perfect Answer',1,2011,NULL,'141'),(1525890,'movie','The Caller','The Caller',1,2011,NULL,'92'),(1525915,'movie','The Great Vazquez','El Gran Vázquez',1,2010,NULL,'106'),(1527186,'movie','Melancholia','Melancholia',1,2011,NULL,'135'),(1527679,'movie','Nasty Old People','Nasty Old People',1,2009,NULL,'84'),(1528071,'movie','Horns','Horns',1,2013,NULL,'120'),(1528100,'movie','Exodus: Gods and Kings','Exodus: Gods and Kings',1,2014,NULL,'150'),(1528854,'movie','Daddy\'s Home','Daddy\'s Home',1,2015,NULL,'96'),(1529233,'movie','Basilicata Coast to Coast','Basilicata Coast to Coast',1,2010,NULL,'105'),(1530509,'movie','The Human Centipede 2 (Full Sequence)','The Human Centipede II (Full Sequence)',1,2011,NULL,'91'),(1531663,'movie','Everything Must Go','Everything Must Go',1,2010,NULL,'97'),(1531901,'movie','Byzantium','Byzantium',1,2012,NULL,'118'),(1531930,'movie','The Lie','The Lie',1,2011,NULL,'80'),(15324860,'movie','Katharine Hepburn','Katharine Hepburn',1,2019,NULL,'94'),(1532503,'movie','Beginners','Beginners',1,2010,NULL,'105'),(15325794,'movie','Fall','Fall',1,2022,NULL,'107'),(15326988,'movie','Ghosted','Ghosted',1,2023,NULL,'116'),(1532957,'movie','Paa','Paa',1,2009,NULL,'133'),(15339570,'movie','Champions','Champions',1,2023,NULL,'124'),(1534085,'movie','Beyond the Black Rainbow','Beyond the Black Rainbow',1,2010,NULL,'110'),(1535108,'movie','Elysium','Elysium',1,2013,NULL,'109'),(1535109,'movie','Captain Phillips','Captain Phillips',1,2013,NULL,'134'),(1535438,'movie','Hope Springs','Hope Springs',1,2012,NULL,'100'),(1535616,'movie','The Divide','The Divide',1,2011,NULL,'112'),(1536044,'movie','Paranormal Activity 2','Paranormal Activity 2',1,2010,NULL,'91'),(1536048,'movie','W.E.','W.E.',1,2011,NULL,'119'),(1536053,'movie','First Night','First Night',1,2010,NULL,'116'),(1536410,'movie','Faces in the Crowd','Faces in the Crowd',1,2011,NULL,'103'),(1536537,'movie','What Happened to Monday','What Happened to Monday',1,2017,NULL,'123'),(1538403,'movie','The Mortal Instruments: City of Bones','The Mortal Instruments: City of Bones',1,2013,NULL,'130'),(15387742,'movie','The Very Last Fishing Trip','Allra síðasta veiðiferðin',1,2022,NULL,'95'),(15398776,'movie','Oppenheimer','Oppenheimer',1,2023,NULL,'180'),(1540011,'movie','Blair Witch','Blair Witch',1,2016,NULL,'89'),(1540133,'movie','The Guard','The Guard',1,2011,NULL,'96'),(1541149,'movie','Albatross','Albatross',1,2011,NULL,'90'),(1541160,'movie','Flypaper','Flypaper',1,2011,NULL,'87'),(1541995,'movie','Snow Flower and the Secret Fan','Snow Flower and the Secret Fan',1,2011,NULL,'104'),(15422224,'movie','Slotherhouse','Slotherhouse',1,2023,NULL,'93'),(1542344,'movie','127 Hours','127 Hours',1,2010,NULL,'94'),(15426294,'movie','Gone in the Night','Gone in the Night',1,2022,NULL,'90'),(1542768,'movie','True Memoirs of an International Assassin','True Memoirs of an International Assassin',1,2016,NULL,'98'),(1542852,'movie','Carancho','Carancho',1,2010,NULL,'107'),(15428940,'movie','Jules','Jules',1,2023,NULL,'87'),(15438542,'movie','Code Name Banshee','Code Name Banshee',1,2022,NULL,'88'),(15445056,'movie','Athena','Athena',1,2022,NULL,'99'),(1545097,'tvMovie','Harriet the Spy: Blog Wars','Harriet the Spy: Blog Wars',1,2010,NULL,'87'),(1545106,'movie','Vamps','Vamps',1,2012,NULL,'92'),(1545660,'movie','Knights of Badassdom','Knights of Badassdom',1,2013,NULL,'86'),(1545754,'movie','Are You Here','Are You Here',1,2013,NULL,'114'),(1547090,'movie','Without Men','Without Men',1,2011,NULL,'87'),(1547234,'movie','Premium Rush','Premium Rush',1,2012,NULL,'91'),(15474916,'movie','Smile','Smile',1,2022,NULL,'115'),(1548603,'movie','Jo\'s Boy','Le fils à Jo',1,2011,NULL,'97'),(1549572,'movie','Another Earth','Another Earth',1,2011,NULL,'92'),(1549920,'movie','The Last Stand','The Last Stand',1,2013,NULL,'107'),(1550312,'movie','Café de Flore','Café de Flore',1,2011,NULL,'120'),(15509244,'movie','Happiness for Beginners','Happiness for Beginners',1,2023,NULL,'103'),(15521050,'movie','Love & Gelato','Love & Gelato',1,2022,NULL,'110'),(1552211,'movie','The Last Days of American Crime','The Last Days of American Crime',1,2020,NULL,'148'),(1552224,'movie','Outcast','Outcast',1,2014,NULL,'99'),(15526040,'short','Eye of the Beholder','Eye of the Beholder',1,2021,NULL,NULL),(1555064,'movie','Country Strong','Country Strong',1,2010,NULL,'117'),(1555093,'movie','The Seasoning House','The Seasoning House',1,2012,NULL,'90'),(1555440,'movie','Girltrash: All Night Long','Girltrash: All Night Long',1,2014,NULL,'86'),(1559547,'movie','Beautiful Creatures','Beautiful Creatures',1,2013,NULL,'124'),(1559549,'movie','Restrepo','Restrepo',1,2010,NULL,'93'),(1560139,'movie','Boy','Boy',1,2010,NULL,'87'),(1560220,'movie','Zombieland: Double Tap','Zombieland: Double Tap',1,2019,NULL,'99'),(1560747,'movie','The Master','The Master',1,2012,NULL,'138'),(1560779,'tvMovie','The Good Witch\'s Gift','The Good Witch\'s Gift',1,2010,NULL,'83'),(1560985,'movie','The Devil Inside','The Devil Inside',1,2012,NULL,'83'),(1561768,'movie','Essential Killing','Essential Killing',1,2010,NULL,'83'),(1561770,'tvMovie','The Shunning','The Shunning',1,2011,NULL,'88'),(1562568,'movie','Higher Ground','Higher Ground',1,2011,NULL,'109'),(1563738,'movie','One Day','One Day',1,2011,NULL,'107'),(1563742,'movie','Overboard','Overboard',1,2018,NULL,'112'),(1564349,'movie','Dolphin Tale','Dolphin Tale',1,2011,NULL,'113'),(1564367,'movie','Just Go with It','Just Go with It',1,2011,NULL,'117'),(1564585,'movie','Skyline','Skyline',1,2010,NULL,'92'),(1565958,'movie','Romantics Anonymous','Les émotifs anonymes',1,2010,NULL,'80'),(15671028,'movie','No Hard Feelings','No Hard Feelings',1,2023,NULL,'103'),(1568338,'movie','Man on a Ledge','Man on a Ledge',1,2012,NULL,'102'),(1568346,'movie','The Girl with the Dragon Tattoo','The Girl with the Dragon Tattoo',1,2011,NULL,'158'),(1568816,'movie','Phase 7','Fase 7',1,2010,NULL,'97'),(1568911,'movie','War Horse','War Horse',1,2011,NULL,'146'),(1568921,'movie','The Secret World of Arrietty','Karigurashi no Arietti',1,2010,NULL,'94'),(1569923,'video','Batman: Under the Red Hood','Batman: Under the Red Hood',1,2010,NULL,'75'),(1570728,'movie','Crazy, Stupid, Love.','Crazy, Stupid, Love.',1,2011,NULL,'118'),(1570989,'movie','Tiny Furniture','Tiny Furniture',1,2010,NULL,'98'),(1571222,'movie','A Dangerous Method','A Dangerous Method',1,2011,NULL,'99'),(1571234,'movie','Mortal Engines','Mortal Engines',1,2018,NULL,'128'),(1571249,'movie','The Skeleton Twins','The Skeleton Twins',1,2014,NULL,'93'),(1571724,'movie','Honey','Bal',1,2010,NULL,'103'),(1572315,'movie','Texas Chainsaw','Texas Chainsaw 3D',1,2013,NULL,'92'),(1572781,'movie','The Disappearance of Haruhi Suzumiya','Suzumiya Haruhi no shôshitsu',1,2010,NULL,'162'),(1574639,'movie','Predicament','Predicament',1,2010,NULL,'98'),(1575539,'movie','Elena Undone','Elena Undone',1,2010,NULL,'111'),(1576382,'movie','Brother and Sister','Dos hermanos',1,2010,NULL,'105'),(1578261,'movie','Break Ke Baad','Break Ke Baad',1,2010,NULL,'145'),(1578275,'movie','The Dilemma','The Dilemma',1,2011,NULL,'111'),(1578873,'tvSeries','Pretty Little Liars','Pretty Little Liars',1,2010,2017,'44'),(15791034,'movie','Barbarian','Barbarian',1,2022,NULL,'102'),(1581835,'movie','Daydream Nation','Daydream Nation',1,2010,NULL,'98'),(1582270,'movie','The Dead Inside','The Dead Inside',1,2011,NULL,'98'),(1582271,'movie','The Good Doctor','The Good Doctor',1,2011,NULL,'91'),(1582507,'movie','House at the End of the Street','House at the End of the Street',1,2012,NULL,'101'),(1583323,'movie','Steam of Life','Miesten vuoro',1,2010,NULL,'81'),(1583421,'movie','G.I. Joe: Retaliation','G.I. Joe: Retaliation',1,2013,NULL,'110'),(1584016,'movie','Catfish','Catfish',1,2010,NULL,'87'),(1585255,'movie','The Hairdresser','Die Friseuse',1,2010,NULL,'106'),(1586265,'movie','What to Expect When You\'re Expecting','What to Expect When You\'re Expecting',1,2012,NULL,'110'),(1587157,'movie','Yu-Gi-Oh! Bonds Beyond Time','Gekijouban Yuugiou: Chouyuugou! Jikuu o koeta kizuna',1,2010,NULL,'50'),(1587309,'movie','If I Were You','If I Were You',1,2012,NULL,'115'),(1587310,'movie','Maleficent','Maleficent',1,2014,NULL,'97'),(1587386,'short','Who We Are','Who We Are',1,2010,NULL,'18'),(1587707,'movie','Exit Through the Gift Shop','Exit Through the Gift Shop',1,2010,NULL,'87'),(1588170,'movie','I Saw the Devil','Ang-ma-reul bo-at-da',1,2010,NULL,'144'),(1588173,'movie','Warm Bodies','Warm Bodies',1,2013,NULL,'98'),(1588334,'movie','Jeff, Who Lives at Home','Jeff, Who Lives at Home',1,2011,NULL,'83'),(1588337,'movie','Of Gods and Men','Des hommes et des dieux',1,2010,NULL,'122'),(1588398,'movie','Sleeping Beauty','Sleeping Beauty',1,2011,NULL,'101'),(1588875,'movie','How I Ended This Summer','Kak ya provyol etim letom',1,2010,NULL,'130'),(1588895,'movie','Uncle Boonmee Who Can Recall His Past Lives','Loong Boonmee raleuk chat',1,2010,NULL,'114'),(1590089,'movie','Confessions','Kokuhaku',1,2010,NULL,'106'),(1591071,'movie','Qwerty','Qwerty',1,2012,NULL,'90'),(1591095,'movie','Insidious','Insidious',1,2010,NULL,'103'),(1591479,'movie','Act of Valor','Act of Valor',1,2012,NULL,'110'),(1592281,'movie','Take This Waltz','Take This Waltz',1,2011,NULL,'116'),(1592527,'movie','The Black Power Mixtape 1967-1975','The Black Power Mixtape 1967-1975',1,2011,NULL,'100'),(1592876,'movie','Score: A Hockey Musical','Score: A Hockey Musical',1,2010,NULL,'93'),(1593655,'movie','Browncoats: Redemption','Browncoats: Redemption',1,2010,NULL,'96'),(15943414,'tvMovie','Every Time a Bell Rings','Every Time a Bell Rings',1,2021,NULL,'84'),(1594562,'movie','The Innkeepers','The Innkeepers',1,2011,NULL,'101'),(1594917,'movie','Age of the Dragons','Age of the Dragons',1,2011,NULL,'91'),(1594972,'movie','Norm of the North','Norm of the North',1,2016,NULL,'88'),(1595656,'movie','To the Wonder','To the Wonder',1,2012,NULL,'112'),(1596342,'movie','Disenchanted','Disenchanted',1,2022,NULL,'119'),(1596343,'movie','Fast Five','Fast Five',1,2011,NULL,'130'),(1596345,'movie','Pawn Sacrifice','Pawn Sacrifice',1,2014,NULL,'115'),(1596346,'movie','Soul Surfer','Soul Surfer',1,2011,NULL,'112'),(1596350,'movie','This Means War','This Means War',1,2012,NULL,'103'),(1596363,'movie','The Big Short','The Big Short',1,2015,NULL,'130'),(1596365,'movie','The Woman in Black','The Woman in Black',1,2012,NULL,'95'),(1597522,'movie','Astérix and Obélix: God Save Britannia','Astérix & Obélix: Au service de sa Majesté',1,2012,NULL,'110'),(1598538,'movie','In the Shadows','Im Schatten',1,2010,NULL,'86'),(1598642,'movie','Z for Zachariah','Z for Zachariah',1,2015,NULL,'98'),(1598778,'movie','Contagion','Contagion',1,2011,NULL,'106'),(1598822,'movie','New Year\'s Eve','New Year\'s Eve',1,2011,NULL,'118'),(1600195,'movie','Abduction','Abduction',1,2011,NULL,'106'),(1600196,'movie','The Drop','The Drop',1,2014,NULL,'106'),(1600383,'movie','For 80 Days','80 egunean',1,2010,NULL,'104'),(1600524,'movie','Heartbeats','Les amours imaginaires',1,2010,NULL,'101'),(1601913,'movie','The Grey','The Grey',1,2011,NULL,'117'),(1602098,'movie','Albert Nobbs','Albert Nobbs',1,2011,NULL,'113'),(1602472,'movie','Two Days in New York','2 Days in New York',1,2012,NULL,'96'),(1602479,'movie','Love in a Puff','Chi Ming yi Chun Kiu',1,2010,NULL,'104'),(1602613,'movie','Only God Forgives','Only God Forgives',1,2013,NULL,'90'),(1602617,'movie','The Corridor','The Corridor',1,2010,NULL,'98'),(1602620,'movie','Amour','Amour',1,2012,NULL,'127'),(1604171,'movie','Prom','Prom',1,2011,NULL,'104'),(1604225,'movie','Thespians','Thespians',1,2010,NULL,'88'),(1604900,'movie','Monga','Báng-kah',1,2010,NULL,'140'),(1605717,'movie','Frank','Frank',1,2014,NULL,'95'),(1605783,'movie','Midnight in Paris','Midnight in Paris',1,2011,NULL,'94'),(1605798,'movie','Effie Gray','Effie Gray',1,2014,NULL,'104'),(1606339,'movie','Sushi Girl','Sushi Girl',1,2012,NULL,'98'),(1606378,'movie','A Good Day to Die Hard','A Good Day to Die Hard',1,2013,NULL,'98'),(1606389,'movie','The Vow','The Vow',1,2012,NULL,'104'),(1606392,'movie','Win Win','Win Win',1,2011,NULL,'106'),(1606618,'movie','Iris','Iris',1,2011,NULL,'85'),(1609479,'movie','Better Living Through Chemistry','Better Living Through Chemistry',1,2014,NULL,'91'),(1610301,'video','Barbie in a Mermaid Tale','Barbie in a Mermaid Tale',1,2010,NULL,'75'),(1610452,'movie','Band Baaja Baaraat','Band Baaja Baaraat',1,2010,NULL,'139'),(1610996,'movie','Absentia','Absentia',1,2011,NULL,'87'),(1611224,'movie','Abraham Lincoln: Vampire Hunter','Abraham Lincoln: Vampire Hunter',1,2012,NULL,'105'),(1612774,'movie','Rubber','Rubber',1,2010,NULL,'82'),(1613750,'movie','Kon-Tiki','Kon-Tiki',1,2012,NULL,'118'),(1614338,'movie','Fanny, Annie & Danny','Fanny, Annie & Danny',1,2010,NULL,'82'),(1614408,'movie','Time Traveller','Toki o kakeru shôjo',1,2010,NULL,'122'),(1614989,'movie','Headhunters','Hodejegerne',1,2011,NULL,'100'),(1615065,'movie','Savages','Savages',1,2012,NULL,'131'),(1615147,'movie','Margin Call','Margin Call',1,2011,NULL,'107'),(1615160,'movie','The Foreigner','The Foreigner',1,2017,NULL,'113'),(1615918,'movie','Alvin and the Chipmunks: Chipwrecked','Alvin and the Chipmunks: Chipwrecked',1,2011,NULL,'87'),(1617661,'movie','Jupiter Ascending','Jupiter Ascending',1,2015,NULL,'127'),(16183464,'movie','One Piece Film: Red','One Piece Film Red',1,2022,NULL,'115'),(1618390,'movie','The Disciple','The Disciple',1,2010,NULL,'101'),(1618434,'movie','Murder Mystery','Murder Mystery',1,2019,NULL,'97'),(1618442,'movie','The Last Witch Hunter','The Last Witch Hunter',1,2015,NULL,'106'),(1619029,'movie','Jackie','Jackie',1,2016,NULL,'100'),(1620680,'movie','A Wrinkle in Time','A Wrinkle in Time',1,2018,NULL,'109'),(1620981,'movie','The Addams Family','The Addams Family',1,2019,NULL,'86'),(1621039,'movie','Free Birds','Free Birds',1,2013,NULL,'91'),(1621045,'movie','Think Like a Man','Think Like a Man',1,2012,NULL,'123'),(1621046,'movie','Cesar Chavez','Cesar Chavez',1,2014,NULL,'102'),(1621429,'video','S.W.A.T.: Firefight','S.W.A.T.: Firefight',1,2011,NULL,'89'),(1621444,'movie','Bill Cunningham: New York','Bill Cunningham New York',1,2010,NULL,'84'),(1621994,'movie','Once Upon a Warrior','Anaganaga O Dheerudu',1,2011,NULL,'133'),(1622547,'movie','30 Minutes or Less','30 Minutes or Less',1,2011,NULL,'83'),(1622979,'movie','Final Destination 5','Final Destination 5',1,2011,NULL,'92'),(1623205,'movie','Oz the Great and Powerful','Oz the Great and Powerful',1,2013,NULL,'130'),(1623288,'movie','ParaNorman','ParaNorman',1,2012,NULL,'92'),(1623745,'movie','Little Birds','Little Birds',1,2011,NULL,'94'),(1624408,'movie','Trigger','Trigger',1,2010,NULL,'83'),(1624426,'movie','I Will Follow','I Will Follow',1,2010,NULL,'80'),(1625155,'movie','Blood of My Blood','Sangue do Meu Sangue',1,2011,NULL,'131'),(1625340,'tvMovie','The Client List','The Client List',1,2010,NULL,'88'),(1625346,'movie','Young Adult','Young Adult',1,2011,NULL,'94'),(1626146,'movie','Hector and the Search for Happiness','Hector and the Search for Happiness',1,2014,NULL,'120'),(1626201,'tvMovie','Red: Werewolf Hunter','Red: Werewolf Hunter',1,2010,NULL,'88'),(1628841,'movie','Independence Day: Resurgence','Independence Day: Resurgence',1,2016,NULL,'120'),(1629377,'movie','Kidnapped','Secuestrados',1,2010,NULL,'85'),(1629705,'movie','Blackthorn','Blackthorn',1,2011,NULL,'102'),(1629757,'movie','Chasing Mavericks','Chasing Mavericks',1,2012,NULL,'116'),(1630027,'movie','Almanya: Welcome to Germany','Almanya - Willkommen in Deutschland',1,2011,NULL,'101'),(1630029,'movie','Avatar: The Way of Water','Avatar: The Way of Water',1,2022,NULL,'192'),(1630036,'movie','Courageous','Courageous',1,2011,NULL,'130'),(1630626,'video','Blue Crush 2','Blue Crush 2',1,2011,NULL,'113'),(1631867,'movie','Edge of Tomorrow','Edge of Tomorrow',1,2014,NULL,'113'),(1632708,'movie','Friends with Benefits','Friends with Benefits',1,2011,NULL,'109'),(1634122,'movie','Johnny English Reborn','Johnny English Reborn',1,2011,NULL,'101'),(1634136,'movie','Violet & Daisy','Violet & Daisy',1,2011,NULL,'88'),(1636826,'movie','Project X','Project X',1,2012,NULL,'88'),(1637688,'movie','In Time','In Time',1,2011,NULL,'109'),(1637706,'movie','Our Idiot Brother','Our Idiot Brother',1,2011,NULL,'90'),(1637725,'movie','Ted','Ted',1,2012,NULL,'106'),(16377816,'movie','Mars One','Marte Um',1,2022,NULL,'115'),(1638002,'movie','Love, Rosie','Love, Rosie',1,2014,NULL,'102'),(1638328,'movie','Love Lasts Three Years','L\'amour dure trois ans',1,2011,NULL,'98'),(1638350,'movie','Skylab','Le Skylab',1,2011,NULL,'114'),(1638355,'movie','The Man from U.N.C.L.E.','The Man from U.N.C.L.E.',1,2015,NULL,'116'),(1639084,'movie','Tallulah','Tallulah',1,2016,NULL,'111'),(1640459,'movie','Hobo with a Shotgun','Hobo with a Shotgun',1,2011,NULL,'86'),(1640484,'movie','Jumping the Broom','Jumping the Broom',1,2011,NULL,'112'),(1640571,'video','Titanic II','Titanic II',1,2010,NULL,'90'),(1641410,'movie','Terraferma','Terraferma',1,2011,NULL,'88'),(1641624,'movie','My Piece of the Pie','Ma part du gâteau',1,2011,NULL,'109'),(16419074,'movie','Air','Air',1,2023,NULL,'111'),(1641975,'movie','Citadel','Citadel',1,2012,NULL,'84'),(1642252,'movie','The Big Tits Dragon','Kyonyû doragon: Onsen zonbi vs sutorippâ 5',1,2010,NULL,'73'),(16428256,'movie','Suzume','Suzume no Tojimari',1,2022,NULL,'122'),(1643222,'movie','Hell','Hell',1,2011,NULL,'89'),(1645080,'movie','The Art of Getting By','The Art of Getting By',1,2011,NULL,'83'),(1645155,'movie','Erased','Erased',1,2012,NULL,'100'),(1645170,'movie','The Dictator','The Dictator',1,2012,NULL,'83'),(1646123,'movie','Chongqing Blues','Rizhao Chongqing',1,2010,NULL,'110'),(1646876,'tvMovie','16 Wishes','16 Wishes',1,2010,NULL,'90'),(1646959,'movie','Bedevilled','Kim Bok-nam salinsageonui jeonmal',1,2010,NULL,'115'),(1646971,'movie','How to Train Your Dragon 2','How to Train Your Dragon 2',1,2014,NULL,'102'),(1646980,'movie','The Double','The Double',1,2011,NULL,'98'),(1646985,'movie','Love Like Poison','Un poison violent',1,2010,NULL,'92'),(1646987,'movie','Wrath of the Titans','Wrath of the Titans',1,2012,NULL,'99'),(1647413,'movie','Vino Veritas','Vino Veritas',1,2013,NULL,'96'),(1647668,'movie','Million Dollar Arm','Million Dollar Arm',1,2014,NULL,'124'),(1648133,'video','XXXHOLiC: Go','XXXHOLiC: Rô',1,2010,NULL,'45'),(1648190,'movie','The Dark Tower','The Dark Tower',1,2017,NULL,'95'),(1648194,'video','The Wrong House','The Wrong House',1,2009,NULL,'83'),(1648204,'tvMovie','Lemonade Mouth','Lemonade Mouth',1,2011,NULL,'103'),(16492574,'tvSeries','The Mandela Catalogue','The Mandela Catalogue',1,2021,NULL,NULL),(1649418,'movie','The Gray Man','The Gray Man',1,2022,NULL,'122'),(1649419,'movie','The Impossible','Lo imposible',1,2012,NULL,'114'),(1649444,'movie','[REC] 3: Genesis','[Rec]³: Génesis',1,2012,NULL,'80'),(1649780,'movie','Peace, Love & Misunderstanding','Peace, Love & Misunderstanding',1,2011,NULL,'96'),(1650043,'movie','Diary of a Wimpy Kid: Rodrick Rules','Diary of a Wimpy Kid: Rodrick Rules',1,2011,NULL,'100'),(1650058,'movie','The Perfect Family','The Perfect Family',1,2011,NULL,'84'),(1650062,'movie','Super 8','Super 8',1,2011,NULL,'112'),(1650407,'movie','Turn Me On, Dammit!','Få meg på, for faen',1,2011,NULL,'76'),(1650554,'movie','Kick-Ass 2','Kick-Ass 2',1,2013,NULL,'103'),(1650555,'movie','Game of Werewolves','Lobos de Arga',1,2011,NULL,'102'),(1653853,'movie','Into Our Own Hands','Entre nos mains',1,2010,NULL,'88'),(1653911,'movie','Mozart\'s Sister','Nannerl, la soeur de Mozart',1,2010,NULL,'120'),(1654523,'movie','Night Train to Lisbon','Night Train to Lisbon',1,2013,NULL,'111'),(1655389,'movie','Blonde','Blonde',1,2022,NULL,'167'),(1655416,'movie','Mental','Mental',1,2012,NULL,'116'),(1655420,'movie','My Week with Marilyn','My Week with Marilyn',1,2011,NULL,'99'),(1655441,'movie','The Age of Adaline','The Age of Adaline',1,2015,NULL,'112'),(1655442,'movie','The Artist','The Artist',1,2011,NULL,'100'),(1655460,'movie','Wanderlust','Wanderlust',1,2012,NULL,'98'),(1656190,'movie','Safe','Safe',1,2012,NULL,'94'),(1657299,'movie','The Decoy Bride','The Decoy Bride',1,2011,NULL,'89'),(1657507,'movie','Colombiana','Colombiana',1,2011,NULL,'108'),(1657510,'movie','Gimme Shelter','Gimme Shelter',1,2013,NULL,'120'),(1658801,'movie','Freeheld','Freeheld',1,2015,NULL,'103'),(1658837,'movie','The Tall Man','The Tall Man',1,2012,NULL,'106'),(1659337,'movie','The Perks of Being a Wallflower','The Perks of Being a Wallflower',1,2012,NULL,'103'),(1659338,'movie','The Numbers Station','The Numbers Station',1,2013,NULL,'89'),(1660379,'movie','House of Tolerance','L\'Apollonide (Souvenirs de la maison close)',1,2011,NULL,'122'),(1661199,'movie','Cinderella','Cinderella',1,2015,NULL,'105'),(1661275,'movie','Their Finest','Their Finest',1,2016,NULL,'117'),(1661420,'movie','Polisse','Polisse',1,2011,NULL,'127'),(1661820,'movie','Cut Bank','Cut Bank',1,2014,NULL,'93'),(1663202,'movie','The Revenant','The Revenant',1,2015,NULL,'156'),(1663655,'movie','Martyrs','Martyrs',1,2015,NULL,'86'),(1663662,'movie','Pacific Rim','Pacific Rim',1,2013,NULL,'131'),(1665418,'movie','Dorfman in Love','Dorfman',1,2011,NULL,'92'),(1666185,'movie','All Eyez on Me','All Eyez on Me',1,2017,NULL,'139'),(1666300,'movie','The Accursed','Donde duerme el horror',1,2010,NULL,'91'),(1666642,'tvMovie','Revenge of the Bridesmaids','Revenge of the Bridesmaids',1,2010,NULL,'95'),(1666801,'movie','The DUFF','The Duff',1,2015,NULL,'101'),(1667079,'movie','Food Stamped','Food Stamped',1,2010,NULL,'60'),(1667307,'movie','Damsels in Distress','Damsels in Distress',1,2011,NULL,'99'),(1667353,'movie','Mirror Mirror','Mirror Mirror',1,2012,NULL,'106'),(1667355,'movie','3096 Tage','3096 Tage',1,2013,NULL,'111'),(1667691,'movie','Sasha','Sasha',1,2010,NULL,'102'),(1667889,'movie','Ice Age: Continental Drift','Ice Age: Continental Drift',1,2012,NULL,'88'),(1667905,'movie','This Is Not a Film','In film nist',1,2011,NULL,'75'),(1668200,'movie','Sarah\'s Key','Elle s\'appelait Sarah',1,2010,NULL,'111'),(1669706,'movie','Valkaama','Valkaama',1,2010,NULL,'93'),(1669794,'movie','Miles from Anywhere','Au cul du loup',1,2011,NULL,'82'),(1670345,'movie','Now You See Me','Now You See Me',1,2013,NULL,'115'),(1671457,'movie','Familiar Grounds','En terrains connus',1,2011,NULL,'90'),(1671616,'movie','18 Meals','18 comidas',1,2010,NULL,'101'),(1672718,'short','Alger: rue Bab-Azoun','Alger: rue Bab-Azoun',1,1896,NULL,'1'),(1672723,'video','Batman: Year One','Batman: Year One',1,2011,NULL,'64'),(1672845,'movie','Tonight You\'re Mine','You Instead',1,2011,NULL,'80'),(1673423,'tvMovie','My Babysitter\'s a Vampire','My Babysitter\'s a Vampire',1,2010,NULL,'80'),(1673430,'video','Superman/Batman: Apocalypse','Superman/Batman: Apocalypse',1,2010,NULL,'78'),(1673434,'movie','The Twilight Saga: Breaking Dawn - Part 2','The Twilight Saga: Breaking Dawn - Part 2',1,2012,NULL,'115'),(1673697,'movie','The Sapphires','The Sapphires',1,2012,NULL,'103'),(1673702,'movie','A Cat in Paris','Une vie de chat',1,2010,NULL,'70'),(1674047,'movie','Birdemic 2: The Resurrection','Birdemic 2: The Resurrection',1,2013,NULL,'82'),(1674057,'movie','All Together','Et si on vivait tous ensemble?',1,2011,NULL,'96'),(1674692,'movie','French Immersion','French Immersion',1,2011,NULL,'99'),(1674771,'movie','Entourage','Entourage',1,2015,NULL,'104'),(1674773,'movie','Hannah Arendt','Hannah Arendt',1,2012,NULL,'113'),(1675192,'movie','Take Shelter','Take Shelter',1,2011,NULL,'121'),(1675434,'movie','The Intouchables','Intouchables',1,2011,NULL,'112'),(1675439,'movie','Lloyd the Conqueror','Lloyd the Conqueror',1,2011,NULL,'95'),(1677720,'movie','Ready Player One','Ready Player One',1,2018,NULL,'140'),(1679235,'tvMovie','Mean Girls 2','Mean Girls 2',1,2011,NULL,'96'),(1679276,'movie','The Pasta Detectives','Rico, Oskar und die Tieferschatten',1,2014,NULL,'97'),(1679335,'movie','Trolls','Trolls',1,2016,NULL,'92'),(1680051,'movie','Alyce Kills','Alyce',1,2011,NULL,'90'),(1682180,'movie','Stoker','Stoker',1,2013,NULL,'99'),(1682246,'movie','Girl Walks Into a Bar','Girl Walks Into a Bar',1,2011,NULL,'80'),(1683526,'movie','Detachment','Detachment',1,2011,NULL,'98'),(1683921,'movie','Sleepless Night','Nuit blanche',1,2011,NULL,'103'),(1684226,'tvMovie','The Normal Heart','The Normal Heart',1,2014,NULL,'132'),(1684233,'movie','Welcome to the Punch','Welcome to the Punch',1,2013,NULL,'99'),(1684628,'movie','Circumstance','Circumstance',1,2011,NULL,'107'),(1684911,'short','Oppressed Majority','Majorité opprimée',1,2010,NULL,'11'),(1686067,'movie','The Source','La source des femmes',1,2011,NULL,'135'),(1686313,'movie','Simple Simon','I rymden finns inga känslor',1,2010,NULL,'85'),(1686821,'movie','Vampire Academy','Vampire Academy',1,2014,NULL,'104'),(1687901,'movie','The Awakening','The Awakening',1,2011,NULL,'102'),(1690953,'movie','Despicable Me 2','Despicable Me 2',1,2013,NULL,'98'),(1691323,'movie','Attenberg','Attenberg',1,2010,NULL,'97'),(1691916,'movie','Before I Fall','Before I Fall',1,2017,NULL,'98'),(1691917,'movie','Planes','Planes',1,2013,NULL,'91'),(1692486,'movie','Carnage','Carnage',1,2011,NULL,'80'),(1692504,'movie','We Are the Night','Wir sind die Nacht',1,2010,NULL,'99'),(1694020,'movie','The Guilt Trip','The Guilt Trip',1,2012,NULL,'95'),(16953666,'movie','The Night of the 12th','La nuit du 12',1,2022,NULL,'115'),(1695405,'movie','The Loneliest Planet','The Loneliest Planet',1,2011,NULL,'113'),(1695843,'movie','Haunted Mansion','Haunted Mansion',1,2023,NULL,'123'),(1698641,'movie','Alexander and the Terrible, Horrible, No Good, Very Bad Day','Alexander and the Terrible, Horrible, No Good, Very Bad Day',1,2014,NULL,'81'),(1698648,'movie','Girl Most Likely','Girl Most Likely',1,2012,NULL,'103'),(1699185,'movie','Free Men','Les hommes libres',1,2011,NULL,'99'),(1699231,'movie','Quarantine 2: Terminal','Quarantine 2: Terminal',1,2011,NULL,'86'),(1699498,'tvMovie','Lake Effects','Lake Effects',1,2012,NULL,'90'),(1699755,'movie','Peeples','Peeples',1,2013,NULL,'95'),(1700467,'movie','The Art of Love','L\'art d\'aimer',1,2011,NULL,'85'),(1700808,'movie','Fast Girls','Fast Girls',1,2012,NULL,'91'),(1700841,'movie','Sausage Party','Sausage Party',1,2016,NULL,'89'),(1700844,'movie','The Deep Blue Sea','The Deep Blue Sea',1,2011,NULL,'98'),(1700845,'movie','The Invisible Woman','The Invisible Woman',1,2013,NULL,'111'),(17009710,'movie','Anatomy of a Fall','Anatomie d\'une chute',1,2023,NULL,'150'),(1701210,'movie','Day of the Falcon','Black Gold',1,2011,NULL,'130'),(1701215,'movie','Future Weather','Future Weather',1,2012,NULL,'100'),(1701990,'movie','Detention','Detention',1,2011,NULL,'95'),(1702014,'movie','The Way He Looks','Hoje Eu Quero Voltar Sozinho',1,2014,NULL,'96'),(1702439,'movie','Safe Haven','Safe Haven',1,2013,NULL,'115'),(1703148,'movie','The Hunter','The Hunter',1,2011,NULL,'102'),(1703199,'movie','Grave Encounters','Grave Encounters',1,2011,NULL,'92'),(1704573,'movie','Bernie','Bernie',1,2011,NULL,'99'),(1705134,'movie','State of Emergency','State of Emergency',1,2011,NULL,'90'),(1706365,'video','Feeding Frenzy','Feeding Frenzy',1,2010,NULL,'89'),(1706593,'movie','Chronicle','Chronicle',1,2012,NULL,'89'),(1706598,'movie','Every Secret Thing','Every Secret Thing',1,2014,NULL,'93'),(1706620,'movie','Snowpiercer','Snowpiercer',1,2013,NULL,'126'),(1707386,'movie','Les Misérables','Les Misérables',1,2012,NULL,'158'),(1707391,'movie','4:44 Last Day on Earth','4:44 Last Day on Earth',1,2011,NULL,'82'),(1707392,'movie','Lovely Molly','Lovely Molly',1,2011,NULL,'100'),(17076046,'movie','Weird: The Al Yankovic Story','Weird: The Al Yankovic Story',1,2022,NULL,'108'),(1710417,'movie','Lola Versus','Lola Versus',1,2012,NULL,'87'),(1711366,'video','Dead Space: Aftermath','Dead Space: Aftermath',1,2011,NULL,'78'),(1711425,'movie','21 & Over','21 & Over',1,2013,NULL,'93'),(1711525,'movie','Office Christmas Party','Office Christmas Party',1,2016,NULL,'105'),(1712261,'movie','Triple 9','Triple 9',1,2016,NULL,'115'),(1713476,'movie','The Bay','The Bay',1,2012,NULL,'84'),(1714206,'movie','The Spectacular Now','The Spectacular Now',1,2013,NULL,'95'),(1714208,'movie','The Woman','The Woman',1,2011,NULL,'101'),(1714210,'movie','Weekend','Weekend',1,2011,NULL,'97'),(17146978,'movie','The Novelist\'s Film','So-seol-ga-ui yeong-hwa',1,2022,NULL,'92'),(1714886,'movie','Post Mortem','Post Mortem',1,2010,NULL,'98'),(1714915,'movie','Only Lovers Left Alive','Only Lovers Left Alive',1,2013,NULL,'123'),(1716767,'movie','The Last Keepers','The Last Keepers',1,2013,NULL,'85'),(1716772,'movie','The Inbetweeners','The Inbetweeners Movie',1,2011,NULL,'97'),(1716777,'movie','People Like Us','People Like Us',1,2012,NULL,'114'),(1718807,'movie','Jamie and Jessie Are Not Together','Jamie and Jessie Are Not Together',1,2011,NULL,'95'),(1719009,'video','Bratz: Pampered Petz','Bratz: Pampered Petz',1,2010,NULL,'70'),(1719071,'movie','Another Happy Day','Another Happy Day',1,2011,NULL,'119'),(1720182,'movie','October Baby','October Baby',1,2011,NULL,'107'),(1720616,'movie','Friends with Kids','Friends with Kids',1,2011,NULL,'107'),(1721685,'movie','Pink Saris','Pink Saris',1,2010,NULL,'96'),(1723115,'movie','The Place in Between','Notre étrangère',1,2010,NULL,'82'),(1723120,'movie','Viva Riva!','Viva Riva!',1,2010,NULL,'98'),(1723121,'movie','We\'re the Millers','We\'re the Millers',1,2013,NULL,'110'),(1723811,'movie','Shame','Shame',1,2011,NULL,'101'),(1724965,'movie','Innocence','Innocence',1,2013,NULL,'96'),(1726589,'movie','Life Happens','L!fe Happens',1,2011,NULL,'101'),(1726592,'movie','Before I Go to Sleep','Before I Go to Sleep',1,2014,NULL,'92'),(1726669,'movie','Killer Joe','Killer Joe',1,2011,NULL,'102'),(1727388,'movie','The Way Way Back','The Way Way Back',1,2013,NULL,'103'),(1727770,'movie','Absolutely Anything','Absolutely Anything',1,2015,NULL,'85'),(1727776,'movie','Scouts Guide to the Zombie Apocalypse','Scouts Guide to the Zombie Apocalypse',1,2015,NULL,'93'),(1727824,'movie','Bohemian Rhapsody','Bohemian Rhapsody',1,2018,NULL,'134'),(1728196,'movie','Hara-Kiri: Death of a Samurai','Ichimei',1,2011,NULL,'128'),(1730189,'movie','Blood Fare','Blood Fare',1,2012,NULL,'86'),(1731141,'movie','Ender\'s Game','Ender\'s Game',1,2013,NULL,'114'),(1731697,'movie','The Lords of Salem','The Lords of Salem',1,2012,NULL,'101'),(1731701,'movie','Barely Lethal','Barely Lethal',1,2015,NULL,'96'),(1731767,'video','Scooby-Doo! Camp Scare','Scooby-Doo! Camp Scare',1,2010,NULL,'72'),(1732730,'movie','Roller Town','Roller Town',1,2011,NULL,'80'),(1733114,'movie','Cheesecake Casserole','Cheesecake Casserole',1,2012,NULL,'92'),(1734110,'movie','No One Killed Jessica','No One Killed Jessica',1,2011,NULL,'136'),(1734113,'movie','Heart and Yummie','Omae umasoudana',1,2010,NULL,'89'),(1734493,'movie','Unlocked','Unlocked',1,2017,NULL,'98'),(1735200,'movie','When Pigs Have Wings','When Pigs Have Wings',1,2011,NULL,'98'),(1735839,'movie','Any Questions for Ben?','Any Questions for Ben?',1,2012,NULL,'114'),(1735853,'movie','So Hard to Forget','Como Esquecer',1,2010,NULL,'100'),(1735898,'movie','Snow White and the Huntsman','Snow White and the Huntsman',1,2012,NULL,'127'),(1736599,'short','Lassage des boeufs pour le labour','Lassage des boeufs pour le labour',1,1896,NULL,'1'),(1736633,'movie','Oslo, August 31st','Oslo, 31. august',1,2011,NULL,'95'),(1737090,'movie','Amber Lake','Amber Lake',1,2011,NULL,'81'),(1740047,'movie','The Trip','The Trip',1,2010,NULL,'112'),(1740707,'movie','Troll Hunter','Trolljegeren',1,2010,NULL,'103'),(1742044,'movie','Jersey Boys','Jersey Boys',1,2014,NULL,'134'),(1742334,'movie','Sabotage','Sabotage',1,2014,NULL,'109'),(1742336,'movie','Your Sister\'s Sister','Your Sister\'s Sister',1,2011,NULL,'90'),(1742650,'movie','I Don\'t Know How She Does It','I Don\'t Know How She Does It',1,2011,NULL,'89'),(1742683,'tvMovie','Too Big to Fail','Too Big to Fail',1,2011,NULL,'99'),(1743922,'movie','Donovan\'s Echo','Donovan\'s Echo',1,2011,NULL,'91'),(1744641,'movie','Ramayana: The Epic','Ramayana: The Epic',1,2010,NULL,'98'),(1745686,'movie','The Wall','Die Wand',1,2012,NULL,'108'),(1745960,'movie','Top Gun: Maverick','Top Gun: Maverick',1,2022,NULL,'130'),(1748122,'movie','Moonrise Kingdom','Moonrise Kingdom',1,2012,NULL,'94'),(1748207,'movie','Sound of My Voice','Sound of My Voice',1,2011,NULL,'87'),(1748260,'movie','Tiger Eyes','Tiger Eyes',1,2012,NULL,'92'),(17527468,'movie','Bottoms','Bottoms',1,2023,NULL,'91'),(1753383,'movie','A Dog\'s Purpose','A Dog\'s Purpose',1,2017,NULL,'100'),(1753722,'movie','Two Rabbits','2 Coelhos',1,2012,NULL,'101'),(1753887,'movie','Come as You Are','Hasta la vista',1,2011,NULL,'115'),(1754351,'movie','The Hollywood Complex','The Hollywood Complex',1,2011,NULL,'90'),(1754656,'movie','The Little Prince','Le Petit Prince',1,2015,NULL,'108'),(1756750,'movie','Starbuck','Starbuck',1,2011,NULL,'109'),(1756832,'movie','The Unleashed','The Unleashed',1,2011,NULL,'106'),(1757742,'movie','Apartment 143','Emergo',1,2011,NULL,'80'),(1757746,'movie','Extracted','Extracted',1,2012,NULL,'89'),(1757944,'video','Princess and the Pony','Princess and the Pony',1,2011,NULL,'88'),(1758563,'short','Accordion Player','Accordion Player',1,1888,NULL,'1'),(1758575,'movie','Blue Like Jazz','Blue Like Jazz',1,2012,NULL,'108'),(1758692,'movie','Like Crazy','Like Crazy',1,2011,NULL,'86'),(1758795,'movie','The To Do List','The To Do List',1,2013,NULL,'104'),(1758830,'movie','This Is 40','This Is 40',1,2012,NULL,'134'),(1759744,'movie','Charlie Says','Charlie Says',1,2018,NULL,'110'),(1760967,'movie','Ill Manors','Ill Manors',1,2012,NULL,'121'),(1762248,'movie','Codependent Lesbian Space Alien Seeks Same','Codependent Lesbian Space Alien Seeks Same',1,2011,NULL,'76'),(1764141,'movie','Cairo 678','678',1,2010,NULL,'100'),(1764183,'movie','Arbitrage','Arbitrage',1,2012,NULL,'107'),(1764234,'movie','Killing Them Softly','Killing Them Softly',1,2012,NULL,'97'),(1764275,'movie','The Deep','Djúpið',1,2012,NULL,'95'),(1764625,'movie','Tad: The Lost Explorer','Las aventuras de Tadeo Jones',1,2012,NULL,'92'),(1764645,'movie','In the Dark Half','In the Dark Half',1,2012,NULL,'85'),(1764651,'movie','The Expendables 2','The Expendables 2',1,2012,NULL,'103'),(1764657,'movie','The Great White Silence','The Great White Silence',1,1922,NULL,'80'),(1764666,'movie','The Little Engine That Could','The Little Engine That Could',1,2011,NULL,'83'),(1765847,'video','Hungry Bitches','Hungry Bitches',1,2007,NULL,'62'),(1766094,'movie','So Undercover','So Undercover',1,2012,NULL,'94'),(1766175,'movie','Trap for Cinderella','Trap for Cinderella',1,2013,NULL,'100'),(17663992,'movie','Scream VI','Scream VI',1,2023,NULL,'122'),(1767354,'movie','Odd Thomas','Odd Thomas',1,2013,NULL,'100'),(1767372,'movie','She\'s Funny That Way','She\'s Funny That Way',1,2014,NULL,'93'),(1767382,'movie','Silent House','Silent House',1,2011,NULL,'86'),(1769363,'movie','The Giant Mechanical Man','The Giant Mechanical Man',1,2012,NULL,'95'),(1770734,'movie','Shadow Dancer','Shadow Dancer',1,2012,NULL,'101'),(1772240,'movie','Apollo 18','Apollo 18',1,2011,NULL,'86'),(1772250,'movie','The Hidden Face','La cara oculta',1,2011,NULL,'97'),(1772341,'movie','Wreck-It Ralph','Wreck-It Ralph',1,2012,NULL,'101'),(1772373,'tvMovie','The Craigslist Killer','The Craigslist Killer',1,2011,NULL,'87'),(1772398,'short','The Strange Thing About the Johnsons','The Strange Thing About the Johnsons',1,2011,NULL,'28'),(1772424,'movie','Where Do We Go Now?','Et maintenant on va où?',1,2011,NULL,'110'),(1772925,'movie','Jiro Dreams of Sushi','Jiro Dreams of Sushi',1,2011,NULL,'81'),(1778258,'movie','Revenge: A Love Story','Fuk sau che ji sei',1,2010,NULL,'90'),(1778304,'movie','Paranormal Activity 3','Paranormal Activity 3',1,2011,NULL,'83'),(1780798,'movie','Clown','Clown',1,2014,NULL,'100'),(1780967,'movie','Seberg','Seberg',1,2019,NULL,'102'),(1781058,'movie','Wilson','Wilson',1,2017,NULL,'94'),(1781769,'movie','Anna Karenina','Anna Karenina',1,2012,NULL,'129'),(1781812,'movie','Exit Humanity','Exit Humanity',1,2011,NULL,'114'),(1781840,'movie','Jayne Mansfield\'s Car','Jayne Mansfield\'s Car',1,2012,NULL,'122'),(1783732,'movie','John Dies at the End','John Dies at the End',1,2012,NULL,'99'),(1783798,'movie','Union Square','Union Square',1,2011,NULL,'80'),(1784575,'movie','The Parade','Parada',1,2011,NULL,'115'),(1785612,'movie','The Punk Singer','The Punk Singer',1,2013,NULL,'81'),(1786751,'movie','CBGB','CBGB',1,2013,NULL,'102'),(1787127,'movie','The Forgiveness of Blood','The Forgiveness of Blood',1,2011,NULL,'109'),(1787729,'movie','Inventory','Inventory',1,2011,NULL,'90'),(1787777,'movie','Page One','Page One: Inside the New York Times',1,2011,NULL,'92'),(1788391,'movie','Kill List','Kill List',1,2011,NULL,'95'),(1788453,'video','The Amazing Bulk','The Amazing Bulk',1,2012,NULL,'76'),(1790809,'movie','Pirates of the Caribbean: Dead Men Tell No Tales','Pirates of the Caribbean: Dead Men Tell No Tales',1,2017,NULL,'129'),(1790864,'movie','The Maze Runner','The Maze Runner',1,2014,NULL,'113'),(1790885,'movie','Zero Dark Thirty','Zero Dark Thirty',1,2012,NULL,'157'),(1790886,'movie','The Campaign','The Campaign',1,2012,NULL,'85'),(1791528,'movie','Inherent Vice','Inherent Vice',1,2014,NULL,'148'),(1791614,'movie','Struck by Lightning','Struck by Lightning',1,2012,NULL,'90'),(1791681,'movie','Treehouse','Treehouse',1,2014,NULL,'100'),(1791682,'movie','While We\'re Young','While We\'re Young',1,2014,NULL,'97'),(1793931,'movie','The Tuche Family','Les Tuche',1,2011,NULL,'95'),(1798188,'movie','From Up on Poppy Hill','Kokuriko-zaka kara',1,2011,NULL,'91'),(1798684,'movie','Southpaw','Southpaw',1,2015,NULL,'124'),(1798709,'movie','Her','Her',1,2013,NULL,'126'),(1800241,'movie','American Hustle','American Hustle',1,2013,NULL,'138'),(1800246,'movie','That Awkward Moment','That Awkward Moment',1,2014,NULL,'94'),(1800741,'movie','Step Up Revolution','Step Up Revolution',1,2012,NULL,'99'),(1801123,'movie','Travelling Salesman','Travelling Salesman',1,2012,NULL,'80'),(1802750,'short','Unusual Cooking','Cuisine abracadabrante',1,1908,NULL,'3'),(1805297,'movie','The Women on the 6th Floor','Les femmes du 6e étage',1,2010,NULL,'102'),(1809231,'movie','Jackpot','Arme Riddere',1,2011,NULL,'86'),(1809398,'movie','Unbroken','Unbroken',1,2014,NULL,'137'),(1813314,'movie','The Mountain','Fjellet',1,2011,NULL,'73'),(1813609,'movie','A Haunting at Silver Falls','A Haunting at Silver Falls',1,2013,NULL,'96'),(1813757,'movie','Who Killed Captain Alex?','Who Killed Captain Alex?',1,2015,NULL,'64'),(1814621,'movie','Admission','Admission',1,2013,NULL,'108'),(1815836,'movie','Moy papa Baryshnikov','Moy papa Baryshnikov',1,2011,NULL,'87'),(1815862,'movie','After Earth','After Earth',1,2013,NULL,'100'),(1816518,'movie','Ernest & Celestine','Ernest et Célestine',1,2012,NULL,'80'),(1816608,'movie','Another Me','Another Me',1,2013,NULL,'86'),(1817081,'movie','A Case of You','A Case of You',1,2013,NULL,'89'),(1817232,'movie','Phineas and Ferb the Movie: Candace Against the Universe','Phineas and Ferb the Movie: Candace Against the Universe',1,2020,NULL,'86'),(1817273,'movie','The Place Beyond the Pines','The Place Beyond the Pines',1,2012,NULL,'140'),(1817287,'movie','Is the Man Who Is Tall Happy?','Is the Man Who Is Tall Happy?: An Animated Conversation with Noam Chomsky',1,2013,NULL,'88'),(1817676,'movie','Girl in Progress','Girl in Progress',1,2012,NULL,'93'),(1821426,'movie','Family Weekend','Family Weekend',1,2013,NULL,'105'),(1821480,'movie','Kahaani','Kahaani',1,2012,NULL,'122'),(1821549,'movie','Nebraska','Nebraska',1,2013,NULL,'115'),(1821593,'movie','Bullhead','Rundskop',1,2011,NULL,'129'),(1821641,'movie','The Congress','The Congress',1,2013,NULL,'122'),(1821658,'movie','The Nut Job','The Nut Job',1,2014,NULL,'85'),(1821694,'movie','RED 2','RED 2',1,2013,NULL,'116'),(1822302,'movie','Sassy Pants','Sassy Pants',1,2012,NULL,'88'),(1822304,'movie','Sleeping Sickness','Schlafkrankheit',1,2011,NULL,'91'),(1823125,'movie','Greetings from Tim Buckley','Greetings from Tim Buckley',1,2012,NULL,'99'),(1823664,'movie','Annie','Annie',1,2014,NULL,'118'),(1823672,'movie','Chappie','Chappie',1,2015,NULL,'120'),(18250460,'movie','Teen Titans Go! & DC Super Hero Girls: Mayhem in the Multiverse','Teen Titans Go! & DC Super Hero Girls: Mayhem in the Multiverse',1,2022,NULL,'79'),(1825157,'movie','The Double','The Double',1,2013,NULL,'93'),(1825683,'movie','Black Panther','Black Panther',1,2018,NULL,'134'),(18257464,'movie','Polite Society','Polite Society',1,2023,NULL,'104'),(1825918,'tvMovie','Phineas and Ferb the Movie: Across the 2nd Dimension','Phineas and Ferb the Movie: Across the 2nd Dimension',1,2011,NULL,'78'),(1826590,'movie','About Last Night','About Last Night',1,2014,NULL,'100'),(1827358,'movie','She Monkeys','Apflickorna',1,2011,NULL,'84'),(1827487,'movie','Once Upon a Time in Anatolia','Bir Zamanlar Anadolu\'da',1,2011,NULL,'157'),(1828224,'movie','The Legend of La Llorona','La Leyenda de la Llorona',1,2011,NULL,'75'),(1829012,'movie','Passion','Passion',1,2012,NULL,'102'),(1832382,'movie','A Separation','Jodaeiye Nader az Simin',1,2011,NULL,'123'),(1832405,'movie','Moon Point','Moon Point',1,2011,NULL,'85'),(1833781,'movie','Rust','Ruggine',1,2011,NULL,'109'),(1833844,'movie','Berberian Sound Studio','Berberian Sound Studio',1,2012,NULL,'92'),(1836202,'movie','The Weekend','Das Wochenende',1,2012,NULL,'98'),(1836212,'movie','All Superheroes Must Die','All Superheroes Must Die',1,2011,NULL,'78'),(1836987,'movie','Trishna','Trishna',1,2011,NULL,'117'),(1837562,'movie','A Royal Night Out','A Royal Night Out',1,2015,NULL,'97'),(1837703,'movie','The Fifth Estate','The Fifth Estate',1,2013,NULL,'128'),(1837709,'movie','Winter\'s Tale','Winter\'s Tale',1,2014,NULL,'118'),(1838520,'movie','The Truth About Emanuel','The Truth About Emanuel',1,2013,NULL,'95'),(1838544,'movie','Gone','Gone',1,2012,NULL,'94'),(1838571,'movie','Juan of the Dead','Juan de los muertos',1,2011,NULL,'92'),(1839492,'movie','Ruby Sparks','Ruby Sparks',1,2012,NULL,'104'),(1839654,'movie','The Magic of Belle Isle','The Magic of Belle Isle',1,2012,NULL,'109'),(1840309,'movie','Divergent','Divergent',1,2014,NULL,'139'),(1840417,'movie','The Words','The Words',1,2012,NULL,'102'),(1842356,'movie','Entity','Entity',1,2012,NULL,'87'),(1843678,'tvSeries','Scott & Bailey','Scott & Bailey',1,2011,2016,'45'),(1843866,'movie','Captain America: The Winter Soldier','Captain America: The Winter Soldier',1,2014,NULL,'136'),(1844025,'movie','Sadako 3D','Sadako 3D',1,2012,NULL,'96'),(1845849,'movie','Price Check','Price Check',1,2012,NULL,'92'),(1845866,'tvMovie','Teen Angels Sings','Teen Spirit',1,2011,NULL,'82'),(1846442,'tvMovie','12 Dates of Christmas','12 Dates of Christmas',1,2011,NULL,'90'),(1847731,'movie','Tomboy','Tomboy',1,2011,NULL,'82'),(1847746,'movie','The German Doctor','Wakolda',1,2013,NULL,'93'),(1848902,'tvMovie','Game Change','Game Change',1,2012,NULL,'118'),(1850457,'movie','Sisters','Sisters',1,2015,NULL,'118'),(1853643,'movie','Why Stop Now?','Why Stop Now?',1,2012,NULL,'85'),(1853728,'movie','Django Unchained','Django Unchained',1,2012,NULL,'165'),(1853739,'movie','You\'re Next','You\'re Next',1,2011,NULL,'95'),(1854236,'movie','Love Is All You Need','Den skaldede frisør',1,2012,NULL,'116'),(1854506,'movie','Aliens vs. Avatars','Aliens vs. Avatars',1,2011,NULL,'80'),(1854513,'movie','Blancanieves','Blancanieves',1,2012,NULL,'104'),(1854564,'movie','Percy Jackson: Sea of Monsters','Percy Jackson: Sea of Monsters',1,2013,NULL,'106'),(1855199,'movie','End of Watch','End of Watch',1,2012,NULL,'109'),(1855325,'movie','Resident Evil: Retribution','Resident Evil: Retribution',1,2012,NULL,'95'),(1855401,'movie','Tim and Eric\'s Billion Dollar Movie','Tim and Eric\'s Billion Dollar Movie',1,2012,NULL,'93'),(1856010,'tvSeries','House of Cards','House of Cards',1,2013,2018,'51'),(1856101,'movie','Blade Runner 2049','Blade Runner 2049',1,2017,NULL,'164'),(1857718,'video','Gyo: Tokyo Fish Attack','Gyo',1,2012,NULL,'70'),(1857913,'movie','The Sorcerer and the White Snake','Bai she chuan shuo',1,2011,NULL,'102'),(1858481,'movie','Last Passenger','Last Passenger',1,2013,NULL,'97'),(1859446,'movie','Alps','Alpeis',1,2011,NULL,'93'),(1859522,'movie','Kiss Me','Kyss mig',1,2011,NULL,'105'),(1859650,'movie','To Rome with Love','To Rome with Love',1,2012,NULL,'112'),(1860152,'movie','17 Girls','17 filles',1,2011,NULL,'86'),(1860213,'movie','Dirty Grandpa','Dirty Grandpa',1,2016,NULL,'102'),(1860242,'movie','The Highwaymen','The Highwaymen',1,2019,NULL,'132'),(1860353,'movie','Turbo','Turbo',1,2013,NULL,'96'),(1860357,'movie','Deepwater Horizon','Deepwater Horizon',1,2016,NULL,'107'),(1862079,'movie','Safety Not Guaranteed','Safety Not Guaranteed',1,2012,NULL,'86'),(1862457,'movie','Catch Me... I\'m in Love','Catch Me... I\'m in Love',1,2011,NULL,'110'),(1864750,'tvSeries','The Time in Between','El tiempo entre costuras',1,2013,2014,'853'),(1865368,'tvMovie','Frenemies','Frenemies',1,2012,NULL,'87'),(1865505,'movie','Song of the Sea','Song of the Sea',1,2014,NULL,'93'),(1866249,'movie','The Sessions','The Sessions',1,2012,NULL,'95'),(1869416,'movie','Brazilian Western','Faroeste Caboclo',1,2013,NULL,'108'),(1869653,'movie','Rock Jocks','Rock Jocks',1,2012,NULL,'91'),(1869716,'movie','The East','The East',1,2013,NULL,'116'),(1870529,'movie','Won\'t Back Down','Won\'t Back Down',1,2012,NULL,'121'),(1870548,'movie','This Changes Everything','This Changes Everything',1,2015,NULL,'89'),(1872181,'movie','The Amazing Spider-Man 2','The Amazing Spider-Man 2',1,2014,NULL,'142'),(1872194,'movie','The Judge','The Judge',1,2014,NULL,'141'),(1872328,'tvMiniSeries','Gosick','Gosick',1,2011,2011,'24'),(1872818,'movie','Liberal Arts','Liberal Arts',1,2012,NULL,'97'),(1874789,'movie','Supporting Characters','Supporting Characters',1,2012,NULL,'87'),(1876451,'movie','Sparkle','Sparkle',1,2012,NULL,'116'),(1877830,'movie','The Batman','The Batman',1,2022,NULL,'176'),(1877832,'movie','X-Men: Days of Future Past','X-Men: Days of Future Past',1,2014,NULL,'132'),(1878841,'movie','The Darkness','The Darkness',1,2016,NULL,'92'),(1878870,'movie','The Edge of Seventeen','The Edge of Seventeen',1,2016,NULL,'104'),(1878942,'movie','Date and Switch','Date and Switch',1,2014,NULL,'91'),(1879012,'movie','Night of the Living Dead 3D: Re-Animation','Night of the Living Dead 3D: Re-Animation',1,2012,NULL,'88'),(1883180,'movie','A Pigeon Sat on a Branch Reflecting on Existence','En duva satt på en gren och funderade på tillvaron',1,2014,NULL,'101'),(1885300,'movie','Best Man Down','Best Man Down',1,2012,NULL,'89'),(1885331,'movie','Paris-Manhattan','Paris-Manhattan',1,2012,NULL,'77'),(1886493,'movie','Catch .44','Catch .44',1,2011,NULL,'94'),(1890373,'movie','Combat Girls','Kriegerin',1,2011,NULL,'107'),(1891942,'movie','Nicostratos the Pelican','Nicostratos le pélican',1,2011,NULL,'92'),(1891974,'movie','Ace Attorney','Gyakuten saiban',1,2012,NULL,'135'),(18925334,'movie','Pearl','Pearl',1,2022,NULL,'103'),(1894476,'movie','How I Live Now','How I Live Now',1,2013,NULL,'101'),(1895587,'movie','Spotlight','Spotlight',1,2015,NULL,'129'),(1897941,'movie','Mitsuko Delivers','Hara ga kore nande',1,2011,NULL,'109'),(1899353,'movie','The Raid: Redemption','Serbuan maut',1,2011,NULL,'101'),(1900854,'movie','Comes a Bright Day','Comes a Bright Day',1,2012,NULL,'91'),(1900856,'movie','Fabienne','Coup d\'éclat',1,2011,NULL,'92'),(1900893,'movie','Themis','Himizu',1,2011,NULL,'129'),(1900908,'movie','Clip','Klip',1,2012,NULL,'102'),(1904996,'movie','Parker','Parker',1,2013,NULL,'118'),(1905040,'movie','Devil\'s Pass','The Dyatlov Pass Incident',1,2013,NULL,'100'),(1905041,'movie','Fast & Furious 6','Furious 6',1,2013,NULL,'130'),(1906426,'movie','Michael','Michael',1,2011,NULL,'96'),(1907668,'movie','Flight','Flight',1,2012,NULL,'138'),(1909270,'movie','17 Miracles','17 Miracles',1,2011,NULL,'113'),(1909796,'movie','K-On! The Movie','Eiga Keion!',1,2011,NULL,'110'),(1910498,'movie','Alien Armageddon','Alien Armageddon',1,2011,NULL,'95'),(1911644,'movie','The Call','The Call',1,2013,NULL,'96'),(1911658,'movie','Penguins of Madagascar','Penguins of Madagascar',1,2014,NULL,'92'),(1913178,'movie','The Crown and the Dragon','The Crown and the Dragon',1,2013,NULL,'91'),(1915581,'movie','Magic Mike','Magic Mike',1,2012,NULL,'110'),(1918806,'movie','Entrance','Entrance',1,2012,NULL,'83'),(1920849,'movie','Bachelorette','Bachelorette',1,2012,NULL,'87'),(1920885,'movie','Big Fish & Begonia','Da yu hai tang',1,2016,NULL,'100'),(1920945,'movie','Good Vibrations','Good Vibrations',1,2012,NULL,'103'),(1921064,'movie','Pompeii','Pompeii',1,2014,NULL,'105'),(1921149,'movie','Trash','Trash',1,2014,NULL,'114'),(1922679,'movie','Open Road','Open Road',1,2013,NULL,'85'),(1922777,'movie','Sinister','Sinister',1,2012,NULL,'110'),(1924394,'movie','The Angels\' Share','The Angels\' Share',1,2012,NULL,'101'),(1924396,'movie','The Best Offer','La migliore offerta',1,2013,NULL,'131'),(1924429,'movie','Trance','Trance',1,2013,NULL,'101'),(1924435,'movie','Let\'s Be Cops','Let\'s Be Cops',1,2014,NULL,'104'),(1925435,'movie','Frankenstein\'s Army','Frankenstein\'s Army',1,2013,NULL,'84'),(1926992,'movie','Goodbye','Be omid-e didar',1,2011,NULL,'105'),(1928335,'movie','Kill \'em All','Kill \'em All',1,2012,NULL,'86'),(1928337,'movie','Mine Games','Mine Games',1,2012,NULL,'92'),(1929263,'movie','Heaven Is for Real','Heaven Is for Real',1,2014,NULL,'99'),(1930294,'movie','Black Rock','Black Rock',1,2012,NULL,'83'),(1930315,'tvMovie','Cyber Bully','Cyberbully',1,2011,NULL,'87'),(1930371,'movie','Joe + Belle','Joe + Belle',1,2011,NULL,'80'),(1931435,'movie','The Big Wedding','The Big Wedding',1,2013,NULL,'90'),(1931533,'movie','Seven Psychopaths','Seven Psychopaths',1,2012,NULL,'110'),(1931602,'movie','Very Good Girls','Very Good Girls',1,2013,NULL,'91'),(1932718,'movie','Thanks for Sharing','Thanks for Sharing',1,2012,NULL,'112'),(1932767,'movie','What Maisie Knew','What Maisie Knew',1,2012,NULL,'99'),(1935179,'movie','Mud','Mud',1,2012,NULL,'130'),(1935859,'movie','Miss Peregrine\'s Home for Peculiar Children','Miss Peregrine\'s Home for Peculiar Children',1,2016,NULL,'127'),(1935897,'movie','Amityville: The Awakening','Amityville: The Awakening',1,2017,NULL,'87'),(1935902,'movie','The Brass Teapot','The Brass Teapot',1,2012,NULL,'101'),(1937118,'movie','Chinese Puzzle','Casse-tête chinois',1,2013,NULL,'117'),(1937149,'movie','The Body','El cuerpo',1,2012,NULL,'112'),(1937264,'movie','Now Is Good','Now Is Good',1,2012,NULL,'103'),(1937390,'movie','Nymphomaniac: Vol. I','Nymphomaniac: Vol. I',1,2013,NULL,'117'),(1939659,'movie','Carrie','Carrie',1,2013,NULL,'100'),(1941600,'movie','Masks','Masks',1,2011,NULL,'112'),(1942120,'movie','All Our Desires','Toutes nos envies',1,2011,NULL,'120'),(1942798,'tvMovie','Tornado Warning','Alien Tornado',1,2012,NULL,'90'),(1942989,'movie','The Citizen','The Citizen',1,2012,NULL,'99'),(1945062,'movie','About Cherry','About Cherry',1,2012,NULL,'98'),(1946421,'movie','The Captains','The Captains',1,2011,NULL,'97'),(1948150,'movie','Singham','Singham',1,2011,NULL,'143'),(19500164,'movie','Nimona','Nimona',1,2023,NULL,'101'),(1950135,'movie','Drunk Wedding','Drunk Wedding',1,2015,NULL,'81'),(1950186,'movie','Ford v Ferrari','Ford v Ferrari',1,2019,NULL,'152'),(1950235,'movie','Let It Snow','Let It Snow',1,2019,NULL,'92'),(1951181,'movie','The Immigrant','The Immigrant',1,2013,NULL,'120'),(1951216,'movie','The Look of Love','The Look of Love',1,2013,NULL,'101'),(1951261,'movie','The Hangover Part III','The Hangover Part III',1,2013,NULL,'100'),(1951264,'movie','The Hunger Games: Catching Fire','The Hunger Games: Catching Fire',1,2013,NULL,'146'),(1951265,'movie','The Hunger Games: Mockingjay - Part 1','The Hunger Games: Mockingjay - Part 1',1,2014,NULL,'123'),(1951266,'movie','The Hunger Games: Mockingjay - Part 2','The Hunger Games: Mockingjay - Part 2',1,2015,NULL,'137'),(1954701,'movie','A Coffee in Berlin','Oh Boy',1,2012,NULL,'86'),(1954780,'movie','Rise of the Animals','Rise of the Animals',1,2011,NULL,'70'),(1958043,'movie','The Houses October Built','The Houses October Built',1,2014,NULL,'91'),(1959332,'movie','American Mary','American Mary',1,2012,NULL,'103'),(1959438,'movie','Kiss of the Damned','Kiss of the Damned',1,2012,NULL,'97'),(1959490,'movie','Noah','Noah',1,2014,NULL,'138'),(1959563,'movie','The Hitman\'s Bodyguard','The Hitman\'s Bodyguard',1,2017,NULL,'118'),(1961175,'movie','American Assassin','American Assassin',1,2017,NULL,'111'),(1961281,'short','The Boy Who Couldn\'t Swim','Drengen der ikke kunne svømme',1,2011,NULL,'33'),(19623240,'movie','Winnie the Pooh: Blood and Honey','Winnie-the-Pooh: Blood and Honey',1,2023,NULL,'84'),(1964418,'movie','Tomorrowland','Tomorrowland',1,2015,NULL,'130'),(1964624,'movie','In the House','Dans la maison',1,2012,NULL,'105'),(1965065,'movie','Save the Date','Save the Date',1,2012,NULL,'97'),(1966566,'movie','Stalingrad','Stalingrad',1,2013,NULL,'131'),(1969062,'movie','Infinitely Polar Bear','Infinitely Polar Bear',1,2014,NULL,'90'),(1971325,'movie','Automata','Autómata',1,2014,NULL,'109'),(1971352,'movie','Compliance','Compliance',1,2012,NULL,'90'),(1972571,'movie','A Most Wanted Man','A Most Wanted Man',1,2014,NULL,'122'),(1972591,'movie','King Arthur: Legend of the Sword','King Arthur: Legend of the Sword',1,2017,NULL,'126'),(1974419,'movie','The Neon Demon','The Neon Demon',1,2016,NULL,'117'),(1976000,'movie','The Two Faces of January','The Two Faces of January',1,2014,NULL,'96'),(1976009,'movie','Victor Frankenstein','Victor Frankenstein',1,2015,NULL,'110'),(1976633,'short','The Occupants','The Occupants',1,2012,NULL,'14'),(1977739,'movie','Call Girl','Call Girl',1,2012,NULL,'140'),(1978480,'movie','Mosquita y Mari','Mosquita y Mari',1,2012,NULL,'85'),(1978532,'movie','Someone Marry Barry','Someone Marry Barry',1,2014,NULL,'87'),(1979319,'movie','Rurouni Kenshin Part I: Origins','Rurôni Kenshin: Meiji kenkaku roman tan',1,2012,NULL,'134'),(1979320,'movie','Rush','Rush',1,2013,NULL,'123'),(1979376,'movie','Toy Story 4','Toy Story 4',1,2019,NULL,'100'),(1979388,'movie','The Good Dinosaur','The Good Dinosaur',1,2015,NULL,'93'),(1980209,'movie','Pain & Gain','Pain & Gain',1,2013,NULL,'129'),(1980929,'movie','Begin Again','Begin Again',1,2013,NULL,'104'),(1981107,'movie','The Young and Prodigious T.S. Spivet','The Young and Prodigious T.S. Spivet',1,2013,NULL,'105'),(1981115,'movie','Thor: The Dark World','Thor: The Dark World',1,2013,NULL,'112'),(1981128,'movie','Geostorm','Geostorm',1,2017,NULL,'109'),(1981677,'movie','Pitch Perfect','Pitch Perfect',1,2012,NULL,'112'),(1982177,'movie','Exit Marrakech','Exit Marrakech',1,2013,NULL,'123'),(1984153,'movie','Excision','Excision',1,2012,NULL,'81'),(1985019,'movie','Austenland','Austenland',1,2013,NULL,'97'),(1985949,'movie','The Angry Birds Movie','Angry Birds',1,2016,NULL,'97'),(1985966,'movie','Cloudy with a Chance of Meatballs 2','Cloudy with a Chance of Meatballs 2',1,2013,NULL,'95'),(1986806,'short','Catwoman','DC Showcase: Catwoman',1,2011,NULL,'15'),(1987018,'movie','A Happy Event','Un heureux événement',1,2011,NULL,'107'),(1990314,'movie','Robot & Frank','Robot & Frank',1,2012,NULL,'89'),(1991245,'movie','Chernobyl Diaries','Chernobyl Diaries',1,2012,NULL,'86'),(1995242,'movie','A tus espaldas','A tus espaldas',1,2011,NULL,'76'),(1995304,'movie','Fat Kid Rules the World','Fat Kid Rules the World',1,2012,NULL,'98'),(1995341,'movie','It\'s a Disaster','It\'s a Disaster',1,2012,NULL,'88'),(1995390,'movie','Our Kind of Traitor','Our Kind of Traitor',1,2016,NULL,'108'),(1996211,'movie','Chasing Legends','Chasing Legends',1,2010,NULL,'93'),(1996264,'movie','For a Good Time, Call...','For a Good Time, Call...',1,2012,NULL,'85'),(1996310,'movie','Lore','Lore',1,2012,NULL,'109'),(1999995,'movie','Would You Rather','Would You Rather',1,2012,NULL,'93'),(2002718,'movie','Machete Kills','Machete Kills',1,2013,NULL,'107'),(2004420,'movie','Neighbors','Neighbors',1,2014,NULL,'97'),(2005151,'movie','War Dogs','War Dogs',1,2016,NULL,'114'),(2005156,'movie','BearCity 2: The Proposal','BearCity 2: The Proposal',1,2012,NULL,'110'),(2005374,'movie','The Frozen Ground','The Frozen Ground',1,2013,NULL,'105'),(2006295,'movie','The 33','The 33',1,2015,NULL,'127'),(2006810,'movie','Papadopoulos & Sons','Papadopoulos & Sons',1,2012,NULL,'105'),(2007360,'movie','Computer Chess','Computer Chess',1,2013,NULL,'92'),(2007418,'movie','Les trois disparitions de Soad Hosni','Les trois disparitions de Soad Hosni',1,2011,NULL,'70'),(2008006,'movie','A Simple Life','Tou ze',1,2011,NULL,'118'),(2008009,'movie','The Clock','The Clock',1,2010,NULL,'1440'),(2008562,'movie','Not Dead','Le grand soir',1,2012,NULL,'92'),(2008602,'movie','Privacy','Privacy',1,2012,NULL,NULL),(2008633,'tvMovie','Radio Rebel','Radio Rebel',1,2012,NULL,'85'),(2009643,'movie','Either Way','Á annan veg',1,2011,NULL,'84'),(2011159,'movie','No Good Deed','No Good Deed',1,2014,NULL,'84'),(2011971,'movie','Monsieur Lazhar','Monsieur Lazhar',1,2011,NULL,'95'),(2013293,'movie','The Wind Rises','Kaze tachinu',1,2013,NULL,'126'),(2015381,'movie','Guardians of the Galaxy','Guardians of the Galaxy',1,2014,NULL,'121'),(2016940,'movie','Man of Tai Chi','Man of Tai Chi',1,2013,NULL,'105'),(2017020,'movie','The Smurfs 2','The Smurfs 2',1,2013,NULL,'105'),(2017038,'movie','All Is Lost','All Is Lost',1,2013,NULL,'106'),(2017561,'movie','Journey to the West','Xi you: Xiang mo pian',1,2013,NULL,'110'),(2018086,'movie','Camille Claudel 1915','Camille Claudel 1915',1,2013,NULL,'95'),(20227026,'movie','Grand Paris','Grand Paris',1,2022,NULL,'80'),(2023453,'movie','Diary of a Wimpy Kid: Dog Days','Diary of a Wimpy Kid: Dog Days',1,2012,NULL,'94'),(2023587,'movie','Mama','Mama',1,2013,NULL,'100'),(2023690,'movie','Sightseers','Sightseers',1,2012,NULL,'88'),(2024432,'movie','Identity Thief','Identity Thief',1,2013,NULL,'111'),(2024469,'movie','Non-Stop','Non-Stop',1,2014,NULL,'106'),(2024519,'movie','The Broken Circle Breakdown','The Broken Circle Breakdown',1,2012,NULL,'111'),(2024544,'movie','12 Years a Slave','12 Years a Slave',1,2013,NULL,'134'),(2025667,'movie','Smiley','Smiley',1,2012,NULL,'95'),(2025690,'movie','The Finest Hours','The Finest Hours',1,2016,NULL,'117'),(2027140,'movie','Mood Indigo','L\'écume des jours',1,2013,NULL,'131'),(2027231,'movie','Perfect Sisters','Perfect Sisters',1,2014,NULL,'96'),(2034031,'movie','Laggies','Laggies',1,2014,NULL,'99'),(2034139,'movie','The Last Exorcism Part II','The Last Exorcism Part II',1,2013,NULL,'88'),(2034761,'movie','Journey to the Christmas Star','Reisen til julestjernen',1,2012,NULL,'80'),(2034800,'movie','The Great Wall','The Great Wall',1,2016,NULL,'103'),(2035630,'movie','Starlet','Starlet',1,2012,NULL,'103'),(2040560,'movie','The Pact','The Pact',1,2012,NULL,'89'),(2042432,'movie','11 Flowers','Wo 11',1,2011,NULL,'110'),(2042568,'movie','Inside Llewyn Davis','Inside Llewyn Davis',1,2013,NULL,'104'),(2042583,'movie','The Golden Dream','La jaula de oro',1,2013,NULL,'108'),(2043879,'movie','Found Memories','Histórias que Só Existem Quando Lembradas',1,2011,NULL,'98'),(2043900,'movie','Last Call at the Oasis','Last Call at the Oasis',1,2011,NULL,'105'),(2046090,'movie','The End','Fin',1,2012,NULL,'88'),(2049430,'short','Digimon Adventure','Dejimon adobenchâ',1,1999,NULL,'20'),(2049440,'short','Falling Cat','Falling Cat',1,1894,NULL,'1'),(2049543,'movie','Synchronicity','Synchronicity',1,2015,NULL,'101'),(2051879,'movie','Europa Report','Europa Report',1,2013,NULL,'97'),(2053463,'movie','Side Effects','Side Effects',1,2013,NULL,'106'),(2054790,'movie','Age of Uprising: The Legend of Michael Kohlhaas','Michael Kohlhaas',1,2013,NULL,'122'),(2057392,'movie','Eye in the Sky','Eye in the Sky',1,2015,NULL,'102'),(2058107,'movie','The Railway Man','The Railway Man',1,2013,NULL,'116'),(2058673,'movie','Point Break','Point Break',1,2015,NULL,'114'),(2059255,'movie','No','No',1,2012,NULL,'118'),(2061702,'movie','To the Forest of Firefly Lights','Hotarubi no mori e',1,2011,NULL,'45'),(2061712,'movie','Interview with a Hitman','Interview with a Hitman',1,2012,NULL,'96'),(2062969,'movie','Sister','L\'enfant d\'en haut',1,2012,NULL,'97'),(2063781,'movie','Smashed','Smashed',1,2012,NULL,'81'),(2066051,'movie','Rocketman','Rocketman',1,2019,NULL,'121'),(2066133,'movie','The Wine of Summer','The Wine of Summer',1,2013,NULL,'90'),(2066832,'video','Barbie: Princess Charm School','Barbie: Princess Charm School',1,2011,NULL,'81'),(2069797,'movie','Delirium','Delirium',1,2018,NULL,'96'),(2070649,'movie','Silenced','Do-ga-ni',1,2011,NULL,'125'),(2070776,'movie','Populaire','Populaire',1,2012,NULL,'111'),(2075247,'short','Man Walking Around the Corner','Man Walking Around the Corner',1,1887,NULL,'1'),(2076220,'movie','Holy Motors','Holy Motors',1,2012,NULL,'115'),(2076298,'movie','Ip Man 4: The Finale','Yip Man 4',1,2019,NULL,'107'),(2076850,'movie','Escape','Flukt',1,2012,NULL,'78'),(2077851,'movie','Sleepwalk with Me','Sleepwalk with Me',1,2012,NULL,'81'),(2080374,'movie','Steve Jobs','Steve Jobs',1,2015,NULL,'122'),(2081178,'movie','Bad Parents','Bad Parents',1,2012,NULL,'100'),(2081194,'movie','Hansel & Gretel Get Baked','Hansel & Gretel Get Baked',1,2013,NULL,'86'),(2082197,'movie','Barfi!','Barfi!',1,2012,NULL,'151'),(2083355,'movie','The Best Man Holiday','The Best Man Holiday',1,2013,NULL,'123'),(2084093,'movie','Ashley','Ashley',1,2013,NULL,'93'),(2084970,'movie','The Imitation Game','The Imitation Game',1,2014,NULL,'114'),(2084989,'movie','Upstream Color','Upstream Color',1,2013,NULL,'96'),(2085957,'video','Kill for Me','Kill for Me',1,2013,NULL,'95'),(2088003,'movie','Big Game','Big Game',1,2014,NULL,'90'),(2088714,'movie','Call Me Kuchu','Call Me Kuchu',1,2012,NULL,'87'),(2091243,'movie','Bindlestiffs','Bindlestiffs',1,2012,NULL,'80'),(2091256,'movie','Captain Underpants: The First Epic Movie','Captain Underpants: The First Epic Movie',1,2017,NULL,'89'),(2091935,'movie','Mr. Right','Mr. Right',1,2015,NULL,'95'),(2093109,'movie','Escape Fire: The Fight to Rescue American Healthcare','Escape Fire: The Fight to Rescue American Healthcare',1,2012,NULL,'95'),(2093270,'movie','The Returned','The Returned',1,2013,NULL,'98'),(2093990,'movie','El nino','El Niño',1,2014,NULL,'136'),(2093991,'movie','Elvis & Nixon','Elvis & Nixon',1,2016,NULL,'86'),(2094064,'movie','Much Ado About Nothing','Much Ado About Nothing',1,2012,NULL,'109'),(2094155,'movie','Dead Man\'s Burden','Dead Man\'s Burden',1,2012,NULL,'93'),(2094762,'movie','And Now a Word from Our Sponsor','And Now a Word from Our Sponsor',1,2013,NULL,'87'),(2094766,'movie','Assassin\'s Creed','Assassin\'s Creed',1,2016,NULL,'115'),(2094877,'movie','Haute Cuisine','Les saveurs du Palais',1,2012,NULL,'95'),(2095649,'movie','Grace of Monaco','Grace of Monaco',1,2014,NULL,'103'),(2096672,'movie','Dumb and Dumber To','Dumb and Dumber To',1,2014,NULL,'109'),(2096673,'movie','Inside Out','Inside Out',1,2015,NULL,'95'),(2097307,'movie','Hit and Run','Hit and Run',1,2012,NULL,'100'),(2097331,'movie','The Family Fang','The Family Fang',1,2015,NULL,'105'),(2098627,'movie','Attack of the 50 Foot Cheerleader','Attack of the 50 Foot Cheerleader',1,2012,NULL,'83'),(2098628,'movie','Augustine','Augustine',1,2012,NULL,'102'),(2101341,'movie','Dead Man Down','Dead Man Down',1,2013,NULL,'118'),(2101441,'movie','Spring Breakers','Spring Breakers',1,2012,NULL,'94'),(2101473,'movie','The Physician','The Physician',1,2013,NULL,'155'),(2103254,'movie','Tammy','Tammy',1,2014,NULL,'97'),(2103267,'movie','Adore','Adoration',1,2013,NULL,'112'),(2103281,'movie','Dawn of the Planet of the Apes','Dawn of the Planet of the Apes',1,2014,NULL,'130'),(2105044,'movie','V/H/S','V/H/S',1,2012,NULL,'116'),(2106361,'movie','Into the Storm','Into the Storm',1,2014,NULL,'89'),(2106403,'tvMovie','Dripping in Chocolate','Dripping in Chocolate',1,2012,NULL,'90'),(2106476,'movie','The Hunt','Jagten',1,2012,NULL,'115'),(2106529,'movie','Lust for Love','Lust for Love',1,2014,NULL,'85'),(2106550,'movie','Möbius','Möbius',1,2013,NULL,'103'),(2106739,'movie','Gayby','Gayby',1,2012,NULL,'85'),(2107648,'movie','Here Comes the Devil','Ahí va el diablo',1,2012,NULL,'97'),(2107835,'movie','The Skinny','The Skinny',1,2012,NULL,'103'),(2108546,'movie','Jackie','Jackie',1,2012,NULL,'100'),(2109127,'movie','Eaters','Eaters',1,2015,NULL,'90'),(2109184,'movie','Paranormal Activity 4','Paranormal Activity 4',1,2012,NULL,'88'),(2109248,'movie','Transformers: Age of Extinction','Transformers: Age of Extinction',1,2014,NULL,'165'),(2112096,'movie','Absolutely Fabulous: The Movie','Absolutely Fabulous: The Movie',1,2016,NULL,'91'),(2112131,'movie','Fearless 2','Dabangg 2',1,2012,NULL,'120'),(2113681,'movie','The 100 Year-Old Man Who Climbed Out the Window and Disappeared','Hundraåringen som klev ut genom fönstret och försvann',1,2013,NULL,'114'),(2115295,'movie','Ginger & Rosa','Ginger & Rosa',1,2012,NULL,'90'),(2116853,'short','Brighton Street Scene','Brighton Street Scene',1,1888,NULL,NULL),(2116898,'short','Hyde Park Corner','Hyde Park Corner',1,1889,NULL,'1'),(2116968,'short','Traffic in King\'s Road, Chelsea','Traffic in King\'s Road, Chelsea',1,1890,NULL,NULL),(2118624,'movie','The Final Girls','The Final Girls',1,2015,NULL,'91'),(2119383,'movie','As High as the Sky','As High as the Sky',1,2012,NULL,'90'),(2119532,'movie','Hacksaw Ridge','Hacksaw Ridge',1,2016,NULL,'139'),(2119543,'movie','The House with a Clock in Its Walls','The House with a Clock in Its Walls',1,2018,NULL,'105'),(2120120,'movie','Pixels','Pixels',1,2015,NULL,'105'),(2123146,'movie','Angry Video Game Nerd: The Movie','Angry Video Game Nerd: The Movie',1,2014,NULL,'115'),(2125435,'movie','Beasts of the Southern Wild','Beasts of the Southern Wild',1,2012,NULL,'93'),(2126355,'movie','San Andreas','San Andreas',1,2015,NULL,'114'),(2126357,'movie','Second Act','Second Act',1,2018,NULL,'103'),(21307994,'movie','Skinamarink','Skinamarink',1,2022,NULL,'100'),(2131532,'movie','Hidden','Hidden',1,2015,NULL,'84'),(2132285,'movie','The Bling Ring','The Bling Ring',1,2013,NULL,'90'),(2132415,'movie','Overcome','Overcome',1,2008,NULL,'85'),(2139843,'movie','Electrick Children','Electrick Children',1,2012,NULL,'96'),(2139881,'movie','Long Shot','Long Shot',1,2019,NULL,'125'),(2140037,'movie','Jane Got a Gun','Jane Got a Gun',1,2015,NULL,'98'),(2140203,'movie','Wolf Children','Ôkami kodomo no Ame to Yuki',1,2012,NULL,'117'),(2140371,'short','Saving Face','Saving Face',1,2012,NULL,'40'),(2140373,'movie','Saving Mr. Banks','Saving Mr. Banks',1,2013,NULL,'125'),(2140379,'movie','Self/less','Self/less',1,2015,NULL,'117'),(2140479,'movie','The Accountant','The Accountant',1,2016,NULL,'128'),(2140577,'movie','The Pretty One','The Pretty One',1,2013,NULL,'90'),(2140619,'movie','Two Night Stand','Two Night Stand',1,2014,NULL,'86'),(2141751,'movie','God Help the Girl','God Help the Girl',1,2014,NULL,'112'),(2142801,'movie','Last Stop: Kurtulus','Kurtulus Son Durak',1,2012,NULL,'106'),(2142955,'movie','Stars Above','Tähtitaivas talon yllä',1,2012,NULL,'101'),(2145829,'movie','Robot Overlords','Robot Overlords',1,2014,NULL,'90'),(2147319,'movie','Helter Skelter','Herutâ sukerutâ',1,2012,NULL,'127'),(2147550,'movie','Life Is Not for Cowards','Das Leben ist nichts für Feiglinge',1,2012,NULL,'98'),(2147728,'movie','I Used to Be Darker','I Used to Be Darker',1,2013,NULL,'89'),(2150139,'movie','A 2nd Chance','A Second Chance',1,2011,NULL,'90'),(2150332,'movie','Renoir','Renoir',1,2012,NULL,'111'),(2151543,'tvMovie','Arachnoquake','Arachnoquake',1,2012,NULL,'96'),(2153963,'movie','Tabu','Tabu',1,2012,NULL,'118'),(2161519,'short','Sandow No. 2','Sandow No. 2',1,1894,NULL,NULL),(2161521,'short','Sandow No. 3','Sandow No. 3',1,1894,NULL,NULL),(2165859,'movie','In Fear','In Fear',1,2013,NULL,'85'),(2166616,'movie','Wrong Cops','Wrong Cops',1,2013,NULL,'83'),(2167266,'movie','Tracks','Tracks',1,2013,NULL,'112'),(2168910,'movie','Cocktail','Cocktail',1,2012,NULL,'146'),(2169322,'movie','Finding Mr. Right','Bei Jing yu shang Xi Ya Tu',1,2013,NULL,'121'),(2170299,'movie','Bad Words','Bad Words',1,2013,NULL,'89'),(2170439,'movie','Horrible Bosses 2','Horrible Bosses 2',1,2014,NULL,'108'),(2170593,'movie','St. Vincent','St. Vincent',1,2014,NULL,'102'),(2172584,'movie','Maps to the Stars','Maps to the Stars',1,2014,NULL,'111'),(2172934,'movie','3 Days to Kill','3 Days to Kill',1,2014,NULL,'117'),(2175927,'video','American Warships','American Battleship',1,2012,NULL,'89'),(2177683,'tvSeries','Reservoir Hill','Reservoir Hill',1,2009,NULL,NULL),(2177771,'movie','The Monuments Men','The Monuments Men',1,2014,NULL,'118'),(2178470,'movie','Yeh Jawaani Hai Deewani','Yeh Jawaani Hai Deewani',1,2013,NULL,'160'),(2178941,'movie','Barbara','Barbara',1,2012,NULL,'105'),(2179116,'movie','The Kings of Summer','The Kings of Summer',1,2013,NULL,'95'),(2179121,'movie','What\'s in a Name?','Le prénom',1,2012,NULL,'109'),(2179136,'movie','American Sniper','American Sniper',1,2014,NULL,'133'),(2180411,'movie','Into the Woods','Into the Woods',1,2014,NULL,'125'),(2181931,'movie','English Vinglish','English Vinglish',1,2012,NULL,'134'),(2183034,'movie','Earth to Echo','Earth to Echo',1,2014,NULL,'91'),(2184339,'movie','The Purge','The Purge',1,2013,NULL,'85'),(21848598,'movie','The Movie Star','The Movie Star',1,2022,NULL,'5'),(2185503,'movie','Snackbar','Snackbar',1,2012,NULL,'83'),(2187115,'movie','Child\'s Pose','Pozitia copilului',1,2013,NULL,'112'),(2188560,'movie','The After-Dinner Mysteries','Nazotoki wa dinâ no ato de',1,2013,NULL,'121'),(2189240,'tvSeries','Cybergeddon','Cybergeddon',1,2012,2012,'89'),(2190367,'movie','Neighboring Sounds','O Som ao Redor',1,2012,NULL,'131'),(2190475,'movie','The Outrage','U mong pa meung',1,2011,NULL,'108'),(2191671,'tvSeries','Elementary','Elementary',1,2012,2019,'60'),(2191701,'movie','Grown Ups 2','Grown Ups 2',1,2013,NULL,'101'),(2193185,'tvMovie','Rewind','Rewind',1,2013,NULL,'76'),(2193215,'movie','The Counselor','The Counselor',1,2013,NULL,'117'),(2193418,'movie','Hammer of the Gods','Hammer of the Gods',1,2013,NULL,'99'),(2194499,'movie','About Time','About Time',1,2013,NULL,'123'),(2195548,'movie','Prince Avalanche','Prince Avalanche',1,2013,NULL,'94'),(2199436,'movie','The Judgment','Sadilishteto',1,2014,NULL,'107'),(21994906,'movie','Your Christmas or Mine?','Your Christmas or Mine?',1,2022,NULL,'95'),(2199543,'movie','Futuro Beach','Praia do Futuro',1,2014,NULL,'106'),(2199571,'movie','Run All Night','Run All Night',1,2015,NULL,'114'),(2201221,'movie','Some Girl(S)','Some Girl(s)',1,2013,NULL,'90'),(2201251,'movie','The Hot Flashes','The Hot Flashes',1,2013,NULL,'99'),(2201548,'movie','A Teacher','A Teacher',1,2013,NULL,'75'),(2202750,'movie','Golden Winter','Golden Winter',1,2012,NULL,'89'),(2202928,'movie','Down River','Down River',1,2013,NULL,'93'),(2203939,'movie','The Other Woman','The Other Woman',1,2014,NULL,'109'),(2204379,'movie','The Devil\'s Carnival','The Devil\'s Carnival',1,2012,NULL,'56'),(2205697,'movie','Stuck in Love.','Stuck in Love',1,2012,NULL,'97'),(2207050,'movie','Bicycling with Molière','Alceste à bicyclette',1,2013,NULL,'104'),(2208216,'movie','Vanishing Waves','Aurora',1,2012,NULL,'124'),(2209418,'movie','Before Midnight','Before Midnight',1,2013,NULL,'109'),(2209764,'movie','Transcendence','Transcendence',1,2014,NULL,'119'),(2210769,'movie','Liza the Fox-Fairy','Liza, a rókatündér',1,2015,NULL,'98'),(2212008,'movie','The Bag Man','The Bag Man',1,2014,NULL,'108'),(2215395,'movie','Paulette','Paulette',1,2012,NULL,'87'),(2216240,'movie','A Hijacking','Kapringen',1,2012,NULL,'103'),(2217458,'movie','Reaching for the Moon','Flores Raras',1,2013,NULL,'118'),(2217859,'movie','Louder Than Bombs','Louder Than Bombs',1,2015,NULL,'109'),(2218003,'movie','Closed Circuit','Closed Circuit',1,2013,NULL,'96'),(2220408,'movie','Vai que dá Certo','Vai que dá Certo',1,2013,NULL,'110'),(2221420,'short','Sallie Gardner at a Gallop','Sallie Gardner at a Gallop',1,1878,NULL,'1'),(2222042,'movie','Love and Monsters','Love and Monsters',1,2020,NULL,'109'),(2222052,'movie','My Salinger Year','My Salinger Year',1,2020,NULL,'101'),(22227936,'movie','Gorgeous','Cici',1,2022,NULL,'151'),(2223990,'movie','Draft Day','Draft Day',1,2014,NULL,'110'),(2224026,'movie','Home','Home',1,2015,NULL,'94'),(2224073,'movie','Best Friends Forever','Best Friends Forever',1,2013,NULL,'113'),(2224455,'video','Superman vs. The Elite','Superman vs. The Elite',1,2012,NULL,'76'),(2226417,'movie','Insidious: Chapter 2','Insidious: Chapter 2',1,2013,NULL,'106'),(2226519,'movie','Plush','Plush',1,2013,NULL,'99'),(2226597,'movie','The Mountain Between Us','The Mountain Between Us',1,2017,NULL,'112'),(2229499,'movie','Don Jon','Don Jon',1,2013,NULL,'90'),(2230358,'movie','Curse of Chucky','Curse of Chucky',1,2013,NULL,'97'),(2231461,'movie','Rampage','Rampage',1,2018,NULL,'107'),(2231489,'movie','Saint Seiya: Legend of Sanctuary','Seinto Seiya: Legend of Sanctuary',1,2014,NULL,'93'),(2234003,'movie','Calvary','Calvary',1,2014,NULL,'102'),(2234155,'movie','The Internship','The Internship',1,2013,NULL,'119'),(2234222,'tvSeries','Orphan Black','Orphan Black',1,2013,2017,'44'),(2234261,'movie','The Love Punch','The Love Punch',1,2013,NULL,'94'),(2235108,'movie','Dear White People','Dear White People',1,2014,NULL,'108'),(2235902,'movie','Geography Club','Geography Club',1,2013,NULL,'84'),(2238050,'movie','White Bird in a Blizzard','White Bird in a Blizzard',1,2014,NULL,'91'),(2239822,'movie','Valerian and the City of a Thousand Planets','Valerian and the City of a Thousand Planets',1,2017,NULL,'136'),(2241351,'movie','Money Monster','Money Monster',1,2016,NULL,'98'),(2243389,'movie','I\'m So Excited!','Los amantes pasajeros',1,2013,NULL,'90'),(2243537,'movie','A Haunted House','A Haunted House',1,2013,NULL,'86'),(2243621,'movie','The Snow Queen','Snezhnaya koroleva',1,2012,NULL,'80'),(2243973,'tvSeries','Hannibal','Hannibal',1,2013,2015,'44'),(2244901,'movie','I Give It a Year','I Give It a Year',1,2013,NULL,'97'),(2245003,'movie','Miss You Already','Miss You Already',1,2015,NULL,'112'),(2245084,'movie','Big Hero 6','Big Hero 6',1,2014,NULL,'102'),(2245195,'movie','The History of Future Folk','The History of Future Folk',1,2012,NULL,'86'),(2247432,'movie','Go for Sisters','Go for Sisters',1,2013,NULL,'123'),(2247476,'movie','When the Game Stands Tall','When the Game Stands Tall',1,2014,NULL,'115'),(2249628,'short','Violine','Violine',1,2012,NULL,'12'),(2250234,'movie','SAGA: Curse of the Shadow','SAGA - Curse of the Shadow',1,2013,NULL,'111'),(2250912,'movie','Spider-Man: Homecoming','Spider-Man: Homecoming',1,2017,NULL,'133'),(2251281,'movie','Dark Was the Night','Dark Was the Night',1,2014,NULL,'99'),(2254131,'movie','Shelter','Shelter',1,2015,NULL,'97'),(2255372,'tvSeries','The Sisters Plotz','The Sisters Plotz',1,2012,NULL,NULL),(2258281,'movie','Beyond the Hills','Dupa dealuri',1,2012,NULL,'152'),(2258337,'movie','Eega','Eega',1,2012,NULL,'145'),(2258345,'movie','Fading Gigolo','Fading Gigolo',1,2013,NULL,'90'),(2258858,'movie','Wadjda','Wadjda',1,2012,NULL,'98'),(2261287,'movie','Leap!','Ballerina',1,2016,NULL,'89'),(2261331,'movie','Black Sea','Black Sea',1,2014,NULL,'114'),(2262129,'movie','Spidarlings','Spidarlings',1,2016,NULL,'125'),(2262161,'movie','Sunset Song','Sunset Song',1,2015,NULL,'135'),(2262227,'movie','The Book of Life','The Book of Life',1,2014,NULL,'95'),(2262308,'tvMiniSeries','Halo 4: Forward Unto Dawn','Halo 4: Forward Unto Dawn',1,2012,2012,'100'),(2262345,'movie','Long Way North','Tout en haut du monde',1,2015,NULL,'81'),(2262532,'tvSeries','The Fosters','The Fosters',1,2013,2018,'60'),(2263944,'movie','Dragon Ball Z: Battle of Gods','Dragon Ball Z: Doragon bôru Z - Kami to Kami',1,2013,NULL,'85'),(2265398,'movie','Drinking Buddies','Drinking Buddies',1,2013,NULL,'90'),(2265534,'movie','The Lifeguard','The Lifeguard',1,2013,NULL,'98'),(2267968,'movie','Kung Fu Panda 3','Kung Fu Panda 3',1,2016,NULL,'95'),(2267998,'movie','Gone Girl','Gone Girl',1,2014,NULL,'149'),(2268016,'movie','Magic Mike XXL','Magic Mike XXL',1,2015,NULL,'115'),(2273657,'movie','True Story','True Story',1,2015,NULL,'99'),(2274604,'movie','Eat with Me','Eat with Me',1,2014,NULL,'95'),(2275949,'movie','Silence','Silence',1,2012,NULL,'87'),(2275990,'tvSeries','The Bletchley Circle','The Bletchley Circle',1,2012,2014,'45'),(2277860,'movie','Finding Dory','Finding Dory',1,2016,NULL,'97'),(2278388,'movie','The Grand Budapest Hotel','The Grand Budapest Hotel',1,2014,NULL,'99'),(2278871,'movie','Blue Is the Warmest Colour','La vie d\'Adèle',1,2013,NULL,'180'),(2279339,'movie','Love the Coopers','Love the Coopers',1,2015,NULL,'107'),(2279373,'movie','The SpongeBob Movie: Sponge Out of Water','The SpongeBob Movie: Sponge Out of Water',1,2015,NULL,'92'),(2279864,'tvMovie','Clear History','Clear History',1,2013,NULL,'101'),(2281159,'movie','Contracted','Contracted',1,2013,NULL,'84'),(2281587,'movie','Muppets Most Wanted','Muppets Most Wanted',1,2014,NULL,'107'),(2283336,'movie','Men in Black: International','Men in Black: International',1,2019,NULL,'114'),(2283362,'movie','Jumanji: Welcome to the Jungle','Jumanji: Welcome to the Jungle',1,2017,NULL,'119'),(2284766,'tvMovie','Mary and Martha','Mary and Martha',1,2013,NULL,'95'),(2285752,'short','Tears of Steel','Tears of Steel',1,2012,NULL,'12'),(2286988,'movie','Sleeping with the Fishes','Sleeping with the Fishes',1,2013,NULL,'101'),(2287655,'movie','Bitch Hug','Bitchkram',1,2012,NULL,'101'),(2287663,'tvMovie','Blue Lagoon: The Awakening','Blue Lagoon: The Awakening',1,2012,NULL,'85'),(2287715,'movie','Ego','Ego',1,2013,NULL,'105'),(2287861,'movie','Lies I Told My Little Sister','Lies I Told My Little Sister',1,2014,NULL,'98'),(2288044,'movie','300 Worte Deutsch','300 Worte Deutsch',1,2013,NULL,'90'),(2289538,'movie','On My Way','Elle s\'en va',1,2013,NULL,'116'),(2289920,'movie','Justice Is Mind','Justice Is Mind',1,2013,NULL,'153'),(2290819,'movie','Cam-Girl','Cam-Girl',1,2016,NULL,'89'),(2291540,'movie','My Friend Dahmer','My Friend Dahmer',1,2017,NULL,'107'),(2292794,'movie','Bebukottak','Bebukottak',1,1985,NULL,'91'),(2293276,'tvMovie','The Making of a Lady','The Making of a Lady',1,2012,NULL,'95'),(2293640,'movie','Minions','Minions',1,2015,NULL,'91'),(2294189,'tvSeries','The Fall','The Fall',1,2013,2016,'60'),(2294449,'movie','22 Jump Street','22 Jump Street',1,2014,NULL,'112'),(2294629,'movie','Frozen','Frozen',1,2013,NULL,'102'),(2294677,'movie','In a World...','In a World...',1,2013,NULL,'93'),(2296697,'movie','Concussion','Concussion',1,2013,NULL,'96'),(2296777,'movie','Sherlock Gnomes','Sherlock Gnomes',1,2018,NULL,'86'),(2298416,'movie','The Staple of News','Suzanne',1,2013,NULL,'94'),(2298820,'movie','La cinquième saison','La cinquième saison',1,2012,NULL,'93'),(2302755,'movie','Olympus Has Fallen','Olympus Has Fallen',1,2013,NULL,'119'),(2303110,'movie','Rise of the Dinosaurs','Jurassic Attack',1,2013,NULL,'83'),(2304426,'movie','The Selfish Giant','The Selfish Giant',1,2013,NULL,'91'),(2304517,'video','Bikini Spring Break','Bikini Spring Break',1,2012,NULL,'87'),(2304771,'movie','Mandela: Long Walk to Freedom','Mandela: Long Walk to Freedom',1,2013,NULL,'141'),(2304933,'movie','The 5th Wave','The 5th Wave',1,2016,NULL,'112'),(2305051,'movie','Wild','Wild',1,2014,NULL,'115'),(2306299,'tvSeries','Vikings','Vikings',1,2013,2020,'44'),(2309021,'movie','We Are What We Are','We Are What We Are',1,2013,NULL,'105'),(2309295,'tvSeries','Hemlock Grove','Hemlock Grove',1,2013,2015,'46'),(2310332,'movie','The Hobbit: The Battle of the Five Armies','The Hobbit: The Battle of the Five Armies',1,2014,NULL,'144'),(2312390,'movie','The Gamers: Hands of Fate','The Gamers: Hands of Fate',1,2013,NULL,'125'),(2312718,'movie','Homefront','Homefront',1,2013,NULL,'100'),(2312890,'movie','Afternoon Delight','Afternoon Delight',1,2013,NULL,'98'),(2313197,'video','Batman: The Dark Knight Returns, Part 1','Batman: The Dark Knight Returns, Part 1',1,2012,NULL,'76'),(2315200,'movie','Me, Myself and Mum','Les garçons et Guillaume, à table!',1,2013,NULL,'85'),(2315582,'movie','Una','Una',1,2016,NULL,'94'),(2316204,'movie','Alien: Covenant','Alien: Covenant',1,2017,NULL,'122'),(2316411,'movie','Enemy','Enemy',1,2013,NULL,'91'),(2316801,'movie','Beauty and the Beast','La belle et la bête',1,2014,NULL,'112'),(2317225,'movie','The Machine','The Machine',1,2013,NULL,'91'),(2318360,'movie','Morgana','Morgana',1,2012,NULL,'90'),(2318625,'movie','Out in the Dark','Out in the Dark',1,2012,NULL,'96'),(2319580,'movie','The Grand Seduction','The Grand Seduction',1,2013,NULL,'113'),(2321187,'tvSeries','Zaion: I Wish You Were Here','Anata ga koko ni itehoshii',1,2001,NULL,'27'),(2321405,'movie','My Life as a Zucchini','Ma vie de Courgette',1,2016,NULL,'66'),(2321502,'movie','Uncanny','Uncanny',1,2015,NULL,'85'),(2321549,'movie','The Babadook','The Babadook',1,2014,NULL,'94'),(2322441,'movie','Fifty Shades of Grey','Fifty Shades of Grey',1,2015,NULL,'125'),(2322517,'movie','Mojave','Mojave',1,2015,NULL,'93'),(2322603,'movie','Strike Witches the Movie','Sutoraiku uicchîzu: Gekijouban',1,2012,NULL,'94'),(2325989,'tvMovie','Teen Beach Movie','Teen Beach Movie',1,2013,NULL,'110'),(2326087,'tvMovie','Girl Vs. Monster','Girl Vs. Monster',1,2012,NULL,'89'),(2326554,'movie','A Girl Walks Home Alone at Night','A Girl Walks Home Alone at Night',1,2014,NULL,'101'),(2328503,'movie','As One','Ko-ri-a',1,2012,NULL,'127'),(2328549,'movie','Dark Touch','Dark Touch',1,2013,NULL,'90'),(2328749,'tvMovie','Steel Magnolias','Steel Magnolias',1,2012,NULL,'85'),(2328900,'movie','Mary Queen of Scots','Mary Queen of Scots',1,2018,NULL,'124'),(2330312,'video','Bratz Fashion Pixiez','Bratz Fashion Pixiez',1,2007,NULL,'72'),(2330546,'movie','Wrestling Queens','Les reines du ring',1,2013,NULL,'97'),(2331143,'movie','Like Father, Like Son','Soshite chichi ni naru',1,2013,NULL,'121'),(2332579,'movie','Crystal Fairy & the Magical Cactus','Crystal Fairy y el cactus mágico',1,2013,NULL,'98'),(2333784,'movie','The Expendables 3','The Expendables 3',1,2014,NULL,'126'),(2333804,'movie','The Zero Theorem','The Zero Theorem',1,2013,NULL,'107'),(2334649,'movie','Fruitvale Station','Fruitvale Station',1,2013,NULL,'85'),(2334733,'movie','Madame Bovary','Madame Bovary',1,2014,NULL,'118'),(2334871,'movie','Snatched','Snatched',1,2017,NULL,'90'),(2334873,'movie','Blue Jasmine','Blue Jasmine',1,2013,NULL,'98'),(2334879,'movie','White House Down','White House Down',1,2013,NULL,'131'),(2334896,'movie','The Dirties','The Dirties',1,2013,NULL,'83'),(2336846,'tvMovie','She Made Them Do It','She Made Them Do It',1,2013,NULL,'90'),(2336960,'movie','Inch\'Allah','Inch\'Allah',1,2012,NULL,'102'),(2338151,'movie','PK','PK',1,2014,NULL,'153'),(2338454,'movie','Unicorn Store','Unicorn Store',1,2017,NULL,'92'),(2338864,'movie','Finsterworld','Finsterworld',1,2013,NULL,'91'),(2339741,'movie','The Woman in Black 2: Angel of Death','The Woman in Black 2: Angel of Death',1,2014,NULL,'98'),(2340650,'movie','East Side Sushi','East Side Sushi',1,2014,NULL,'106'),(2343371,'movie','Amiche da morire','Amiche da morire',1,2013,NULL,'103'),(2345567,'movie','Haunter','Haunter',1,2013,NULL,'97'),(2345737,'movie','The Rover','The Rover',1,2014,NULL,'103'),(2345759,'movie','The Mummy','The Mummy',1,2017,NULL,'111'),(2346744,'movie','Cigarette Ki Tarah','Cigarette Ki Tarah',1,2012,NULL,'107'),(2347569,'movie','Frances Ha','Frances Ha',1,2012,NULL,'86'),(2349460,'movie','Grace Unplugged','Grace Unplugged',1,2013,NULL,'102'),(2350496,'movie','The Lunchbox','The Lunchbox',1,2013,NULL,'104'),(2351098,'movie','A Picture of You','A Picture of You',1,2013,NULL,'83'),(2352488,'movie','Interior. Leather Bar.','Interior. Leather Bar.',1,2013,NULL,'60'),(2354196,'movie','Croczilla','Bai wan ju e',1,2012,NULL,'90'),(2355495,'movie','Barefoot','Barefoot',1,2014,NULL,'90'),(2355540,'movie','Cutie and the Boxer','Cutie and the Boxer',1,2013,NULL,'82'),(2357263,'movie','Cold Turkey','Cold Turkey',1,2013,NULL,'84'),(2357291,'movie','Rio 2','Rio 2',1,2014,NULL,'101'),(2358592,'movie','Lucia','Lucia',1,2013,NULL,'135'),(2358891,'movie','The Great Beauty','La grande bellezza',1,2013,NULL,'141'),(2358925,'movie','Unfinished Business','Unfinished Business',1,2015,NULL,'91'),(2359024,'movie','Blue Ruin','Blue Ruin',1,2013,NULL,'90'),(2361317,'movie','Live by Night','Live by Night',1,2016,NULL,'129'),(2361509,'movie','The Intern','The Intern',1,2015,NULL,'121'),(2364841,'movie','Runner Runner','Runner Runner',1,2013,NULL,'88'),(2364949,'movie','Touchy Feely','Touchy Feely',1,2013,NULL,'88'),(2364975,'movie','We Are the Best!','Vi är bäst!',1,2013,NULL,'102'),(2365580,'movie','Where\'d You Go, Bernadette','Where\'d You Go, Bernadette',1,2019,NULL,'109'),(2366450,'movie','Stories We Tell','Stories We Tell',1,2012,NULL,'108'),(2368254,'movie','A Private War','A Private War',1,2018,NULL,'110'),(2368749,'movie','After Lucia','Después de Lucía',1,2012,NULL,'103'),(2369135,'movie','Need for Speed','Need for Speed',1,2014,NULL,'132'),(2369396,'movie','Bounty Killer','Bounty Killer',1,2013,NULL,'92'),(2370034,'movie','Tango libre','Tango libre',1,2012,NULL,'98'),(2370248,'movie','Short Term 12','Short Term 12',1,2013,NULL,'96'),(2371399,'movie','Moomins on the Riviera','Muumit Rivieralla',1,2014,NULL,'80'),(2375574,'movie','A Field in England','A Field in England',1,2013,NULL,'90'),(2377322,'movie','Deliver Us from Evil','Deliver Us from Evil',1,2014,NULL,'118'),(2377396,'movie','I Belong','Som du ser meg',1,2012,NULL,'118'),(2378281,'movie','Instructions Not Included','No se aceptan devoluciones',1,2013,NULL,'115'),(2378507,'movie','The Glass Castle','The Glass Castle',1,2017,NULL,'127'),(2379082,'movie','Monster Pies','Monster Pies',1,2013,NULL,'85'),(2379713,'movie','Spectre','Spectre',1,2015,NULL,'148'),(2380307,'movie','Coco','Coco',1,2017,NULL,'105'),(2380331,'movie','Words and Pictures','Words and Pictures',1,2013,NULL,'111'),(2381111,'movie','Brooklyn','Brooklyn',1,2015,NULL,'117'),(2381249,'movie','Mission: Impossible - Rogue Nation','Mission: Impossible - Rogue Nation',1,2015,NULL,'131'),(2381941,'movie','Focus','Focus',1,2015,NULL,'105'),(2381991,'movie','The Huntsman: Winter\'s War','The Huntsman: Winter\'s War',1,2016,NULL,'114'),(2382009,'movie','Nymphomaniac: Vol. II','Nymphomaniac: Vol. II',1,2013,NULL,'124'),(2382320,'movie','No Time to Die','No Time to Die',1,2021,NULL,'163'),(2382396,'movie','Joe','Joe',1,2013,NULL,'117'),(2382422,'movie','Jacky in the Kingdom of Women','Jacky au royaume des filles',1,2014,NULL,'87'),(2386257,'movie','White Lies','White Lies',1,2013,NULL,'99'),(2386278,'movie','Haunt','Haunt',1,2013,NULL,'86'),(2386490,'movie','How to Train Your Dragon: The Hidden World','How to Train Your Dragon: The Hidden World',1,2019,NULL,'104'),(2387222,'movie','All I Want Is Everything','All I Want Is Everything',1,2012,NULL,'62'),(2387413,'movie','Captain Battle: Legacy War','Captain Battle: Legacy War',1,2013,NULL,'90'),(2387433,'movie','Dark Skies','Dark Skies',1,2013,NULL,'97'),(2387499,'movie','Keeping Up with the Joneses','Keeping Up with the Joneses',1,2016,NULL,'105'),(2387559,'movie','Delivery Man','Delivery Man',1,2013,NULL,'105'),(2388715,'movie','Oculus','Oculus',1,2013,NULL,'104'),(2388759,'movie','Love & Air Sex','The Bounceback',1,2013,NULL,'91'),(2388821,'movie','Zip & Zap and the Marble Gang','Zipi y Zape y el club de la canica',1,2013,NULL,'97'),(2389182,'movie','Cheap Thrills','Cheap Thrills',1,2013,NULL,'88'),(2390237,'movie','Cuban Fury','Cuban Fury',1,2014,NULL,'98'),(2390361,'movie','Enough Said','Enough Said',1,2013,NULL,'93'),(2392261,'tvSeries','The Lizzie Bennet Diaries','The Lizzie Bennet Diaries',1,2012,NULL,'3'),(2392326,'movie','Le Week-End','Le Week-End',1,2013,NULL,'93'),(2392830,'movie','A Quiet Passion','A Quiet Passion',1,2016,NULL,'125'),(2393787,'movie','Women\'s Day','Dzien kobiet',1,2012,NULL,'90'),(2395337,'tvMovie','Monster High: Escape from Skull Shores','Monster High: Escape from Skull Shores',1,2012,NULL,'46'),(2395385,'movie','+1','+1',1,2013,NULL,'96'),(2395417,'movie','Still Life','Still Life',1,2013,NULL,'92'),(2395421,'movie','The Priest\'s Children','Svecenikova djeca',1,2013,NULL,'96'),(2395427,'movie','Avengers: Age of Ultron','Avengers: Age of Ultron',1,2015,NULL,'141'),(2395469,'movie','Gully Boy','Gully Boy',1,2019,NULL,'154'),(2396566,'movie','20 Feet from Stardom','Twenty Feet from Stardom',1,2013,NULL,'91'),(2396589,'movie','Mudbound','Mudbound',1,2017,NULL,'134'),(2396701,'movie','The Haunting of Whaley House','The Haunting of Whaley House',1,2012,NULL,'89'),(2396721,'movie','The Scribbler','The Scribbler',1,2014,NULL,'88'),(2397461,'movie','Clifford the Big Red Dog','Clifford the Big Red Dog',1,2021,NULL,'96'),(2397535,'movie','Predestination','Predestination',1,2014,NULL,'97'),(2398231,'movie','The Homesman','The Homesman',1,2014,NULL,'122'),(2398249,'movie','They Came Together','They Came Together',1,2014,NULL,'83'),(2400463,'movie','The Invitation','The Invitation',1,2015,NULL,'100'),(2401711,'movie','Time and the Wind','O Tempo e o Vento',1,2013,NULL,'115'),(2401715,'movie','The Devil\'s Violinist','The Devil\'s Violinist',1,2013,NULL,'122'),(2401878,'movie','Anomalisa','Anomalisa',1,2015,NULL,'90'),(2402157,'movie','The November Man','The November Man',1,2014,NULL,'108'),(2402927,'movie','Carol','Carol',1,2015,NULL,'118'),(2403021,'movie','The Green Inferno','The Green Inferno',1,2013,NULL,'100'),(2403029,'movie','The Starving Games','The Starving Games',1,2013,NULL,'83'),(2403419,'movie','Para Elisa','Para Elisa',1,2012,NULL,'75'),(2404153,'tvMovie','The Great Halloween Puppy Adventure','A Halloween Puppy',1,2012,NULL,'80'),(2404181,'movie','Belle','Belle',1,2013,NULL,'100'),(2404233,'movie','Gods of Egypt','Gods of Egypt',1,2016,NULL,'127'),(2404311,'movie','The Family','The Family',1,2013,NULL,'111'),(2404425,'movie','Woman in Gold','Woman in Gold',1,2015,NULL,'109'),(2404435,'movie','The Magnificent Seven','The Magnificent Seven',1,2016,NULL,'132'),(2404461,'movie','The Past','Le passé',1,2013,NULL,'130'),(2404463,'movie','The Heat','The Heat',1,2013,NULL,'117'),(2404465,'movie','Troop Zero','Troop Zero',1,2019,NULL,'94'),(2404738,'movie','Witching and Bitching','Las brujas de Zugarramurdi',1,2013,NULL,'112'),(2406252,'movie','Venus in Fur','La Vénus à la fourrure',1,2013,NULL,'96'),(2406566,'movie','Atomic Blonde','Atomic Blonde',1,2017,NULL,'115'),(24068064,'movie','Reality','Reality',1,2023,NULL,'83'),(24070754,'movie','All Your Faces','Je verrai toujours vos visages',1,2023,NULL,'118'),(2407574,'tvSeries','My Mad Fat Diary','My Mad Fat Diary',1,2013,2015,'47'),(2412568,'movie','Ragamuffin','Ragamuffin',1,2014,NULL,'137'),(2414766,'movie','Frequencies','OXV: The Manual',1,2013,NULL,'109'),(2415174,'movie','Moving Mountains','Moving Mountains',1,2014,NULL,'104'),(2415464,'video','Hansel & Gretel','Hansel & Gretel',1,2013,NULL,'90'),(2417712,'movie','Goon: Last of the Enforcers','Goon: Last of the Enforcers',1,2017,NULL,'101'),(2425486,'movie','Gloria','Gloria',1,2013,NULL,'110'),(2428170,'movie','Creep','Creep',1,2014,NULL,'77'),(2429074,'movie','G.B.F.','G.B.F.',1,2013,NULL,'92'),(2429414,'movie','Hanna\'s Journey','Hannas Reise',1,2013,NULL,'100'),(2431286,'movie','Philomena','Philomena',1,2013,NULL,'98'),(2435166,'movie','White Alligator','White Alligator',1,2012,NULL,'92'),(2436386,'movie','Project Almanac','Project Almanac',1,2015,NULL,'106'),(2436682,'movie','The Duel','The Duel',1,2016,NULL,'110'),(2440362,'movie','Sadako 2 3D','Sadako 3D 2',1,2013,NULL,'96'),(2446042,'movie','Taken 3','Taken 3',1,2014,NULL,'108'),(2446108,'tvMovie','Monster High: Ghouls Rule!','Monster High: Ghouls Rule!',1,2012,NULL,'71'),(2446502,'movie','Zombie Hunter','Zombie Hunter',1,2013,NULL,'93'),(2446980,'movie','Joy','Joy',1,2015,NULL,'124'),(2450186,'movie','V/H/S/2','V/H/S/2',1,2013,NULL,'96'),(2450440,'movie','The Last of Robin Hood','The Last of Robin Hood',1,2013,NULL,'94'),(2452042,'movie','The Peanuts Movie','The Peanuts Movie',1,2015,NULL,'88'),(2452150,'movie','Respect','Respect',1,2021,NULL,'145'),(2452244,'movie','Isn\'t It Romantic','Isn\'t It Romantic',1,2019,NULL,'89'),(2452254,'movie','Clouds of Sils Maria','Clouds of Sils Maria',1,2014,NULL,'124'),(2452386,'movie','The Fundamentals of Caring','The Fundamentals of Caring',1,2016,NULL,'97'),(2457282,'movie','Puella Magi Madoka Magica the Movie Part III: The Rebellion Story','Gekijouban Mahou shojo Madoka magika Shinpen: Hangyaku no monogatari',1,2013,NULL,'116'),(2460488,'movie','Switch','Tian ji: Fu chun shan ju tu',1,2013,NULL,'122'),(2461126,'movie','Something, Anything','Something, Anything',1,2014,NULL,'88'),(2461150,'movie','Masterminds','Masterminds',1,2016,NULL,'95'),(2461340,'movie','Till We Meet Again','Till We Meet Again',1,2015,NULL,'105'),(2463208,'movie','The Adam Project','The Adam Project',1,2022,NULL,'106'),(2463288,'movie','Walk of Shame','Walk of Shame',1,2014,NULL,'95'),(2464018,'movie','My Mom Is a Character','Minha Mãe é uma Peça: O Filme',1,2013,NULL,'84'),(2465140,'movie','The Single Moms Club','The Single Moms Club',1,2014,NULL,'111'),(2473602,'movie','Get on Up','Get on Up',1,2014,NULL,'139'),(2473682,'movie','Paranormal Activity: The Marked Ones','Paranormal Activity: The Marked Ones',1,2014,NULL,'84'),(2473794,'movie','Mr. Turner','Mr. Turner',1,2014,NULL,'150'),(2474024,'movie','The Last Five Years','The Last Five Years',1,2014,NULL,'94'),(2474310,'movie','Land of Storms','Viharsarok',1,2014,NULL,'105'),(2479478,'movie','The Ridiculous 6','The Ridiculous 6',1,2015,NULL,'119'),(2479800,'movie','Palo Alto','Palo Alto',1,2013,NULL,'100'),(24803056,'video','The Rodrigo Ortiz Vinholo Film','The Rodrigo Ortiz Vinholo Film',1,2022,NULL,'1'),(2481198,'movie','Sunshine on Leith','Sunshine on Leith',1,2013,NULL,'100'),(2483260,'video','The Pirate Fairy','The Pirate Fairy',1,2014,NULL,'78'),(2488496,'movie','Star Wars: Episode VII - The Force Awakens','Star Wars: Episode VII - The Force Awakens',1,2015,NULL,'138'),(2490326,'movie','Cooties','Cooties',1,2014,NULL,'88'),(2493486,'movie','Last Knights','Last Knights',1,2015,NULL,'115'),(2494280,'movie','Stretch','Stretch',1,2014,NULL,'94'),(2494384,'movie','Aloft','Aloft',1,2014,NULL,'112'),(2495118,'movie','Ip Man: The Final Fight','Yip Man: Jung gik yat zin',1,2013,NULL,'100'),(2496366,'movie','Alì Blue Eyes','Alì ha gli occhi azzurri',1,2012,NULL,'94'),(2497980,'movie','The Lookalike','The Lookalike',1,2014,NULL,'100'),(2499414,'movie','Best Night Ever','Best Night Ever',1,2013,NULL,'90'),(2503154,'movie','The Den','The Den',1,2013,NULL,'76'),(2504614,'movie','The Swing','The Swing',1,2012,NULL,'77'),(2505294,'movie','Ask Me Anything','Ask Me Anything',1,2014,NULL,'100'),(2508258,'movie','First Period','First Period',1,2013,NULL,'100'),(2509008,'short','Water','Vattnet',1,2012,NULL,'15'),(2510894,'movie','Hotel Transylvania 2','Hotel Transylvania 2',1,2015,NULL,'89'),(2511190,'movie','A Talking Cat!?!','A Talking Cat!?!',1,2013,NULL,'85'),(2515030,'movie','Escobar: Paradise Lost','Escobar: Paradise Lost',1,2014,NULL,'120'),(2515034,'movie','The Gunman','The Gunman',1,2015,NULL,'115'),(2520512,'tvSeries','Maron','Maron',1,2013,2016,'22'),(2523600,'movie','Long Live Freedom','Viva la libertà',1,2013,NULL,'94'),(2523692,'movie','Decay','Decay',1,2012,NULL,'76'),(2524674,'movie','Wetlands','Feuchtgebiete',1,2013,NULL,'109'),(2527186,'movie','All Cheerleaders Die','All Cheerleaders Die',1,2013,NULL,'89'),(2527336,'movie','Star Wars: Episode VIII - The Last Jedi','Star Wars: Episode VIII - The Last Jedi',1,2017,NULL,'152'),(2527338,'movie','Star Wars: Episode IX - The Rise of Skywalker','Star Wars: Episode IX - The Rise of Skywalker',1,2019,NULL,'141'),(2528814,'movie','God\'s Not Dead','God\'s Not Dead',1,2014,NULL,'113'),(2531258,'movie','Once Upon a Time in Vietnam','Lua Phat',1,2013,NULL,'102'),(2531344,'movie','Blockers','Blockers',1,2018,NULL,'102'),(2535470,'movie','Wyrmwood: Road of the Dead','Wyrmwood',1,2014,NULL,'98'),(2536428,'movie','Smart Ass','La crème de la crème',1,2014,NULL,'90'),(2537390,'movie','Slow Learners','Slow Learners',1,2015,NULL,'96'),(2542420,'tvEpisode','White Bear','White Bear',1,2013,NULL,'42'),(2543164,'movie','Arrival','Arrival',1,2016,NULL,'116'),(2543472,'movie','Wonder','Wonder',1,2017,NULL,'113'),(2543508,'movie','Life Inside Out','Life Inside Out',1,2013,NULL,'102'),(2545118,'movie','Blackfish','Blackfish',1,2013,NULL,'83'),(2545186,'movie','Best in Bed','À coup sûr',1,2014,NULL,'91'),(2547584,'movie','The Light Between Oceans','The Light Between Oceans',1,2016,NULL,'133'),(2548396,'movie','The Cloverfield Paradox','The Cloverfield Paradox',1,2018,NULL,'102'),(2552394,'movie','Barney Thomson','The Legend of Barney Thomson',1,2015,NULL,'96'),(2554274,'movie','Crimson Peak','Crimson Peak',1,2015,NULL,'119'),(2555268,'movie','Maidentrip','Maidentrip',1,2013,NULL,'82'),(2555736,'movie','The Second Best Exotic Marigold Hotel','The Second Best Exotic Marigold Hotel',1,2015,NULL,'122'),(2557478,'movie','Pacific Rim: Uprising','Pacific Rim: Uprising',1,2018,NULL,'111'),(2557490,'movie','A Million Ways to Die in the West','A Million Ways to Die in the West',1,2014,NULL,'116'),(2561546,'movie','The Town That Dreaded Sundown','The Town That Dreaded Sundown',1,2014,NULL,'86'),(2561572,'movie','Get Hard','Get Hard',1,2015,NULL,'100'),(2562232,'movie','Birdman or (The Unexpected Virtue of Ignorance)','Birdman or (The Unexpected Virtue of Ignorance)',1,2014,NULL,'119'),(2567026,'movie','Alice Through the Looking Glass','Alice Through the Looking Glass',1,2016,NULL,'113'),(2567038,'movie','The Frame','The Frame',1,2014,NULL,'127'),(2568862,'movie','Going in Style','Going in Style',1,2017,NULL,'96'),(2570858,'movie','The Duke of Burgundy','The Duke of Burgundy',1,2014,NULL,'104'),(2576852,'movie','The Tale of The Princess Kaguya','Kaguya-hime no monogatari',1,2013,NULL,'137'),(2580928,'movie','Mt. Zion','Mt. Zion',1,2013,NULL,'96'),(2582008,'movie','Meine Schwestern','Meine Schwestern',1,2013,NULL,'90'),(2582496,'movie','Me and Earl and the Dying Girl','Me and Earl and the Dying Girl',1,2015,NULL,'105'),(2582498,'movie','Sweet Virginia','Sweet Virginia',1,2017,NULL,'93'),(2582502,'movie','Fathers & Daughters','Fathers & Daughters',1,2015,NULL,'116'),(2582576,'movie','Sand Castle','Sand Castle',1,2017,NULL,'113'),(2582782,'movie','Hell or High Water','Hell or High Water',1,2016,NULL,'102'),(2582784,'movie','Flower','Flower',1,2017,NULL,'90'),(2582802,'movie','Whiplash','Whiplash',1,2014,NULL,'106'),(2582846,'movie','The Fault in Our Stars','The Fault in Our Stars',1,2014,NULL,'126'),(2584384,'movie','Jojo Rabbit','Jojo Rabbit',1,2019,NULL,'108'),(2585078,'movie','Summer League','Summer League',1,2013,NULL,'95'),(2592512,'movie','The Happy Caterpillars','The Happy Caterpillars',1,2012,NULL,'77'),(2592614,'movie','Resident Evil: The Final Chapter','Resident Evil: The Final Chapter',1,2016,NULL,'107'),(2593224,'movie','In the Courtyard','Dans la cour',1,2014,NULL,'97'),(25971180,'movie','A Great Friend','Les choses simples',1,2023,NULL,'95'),(2599226,'movie','An Easter Bunny Puppy','An Easter Bunny Puppy',1,2013,NULL,'90'),(2601160,'short','The Key and the Frame','The Key and the Frame',1,2013,NULL,'16'),(2614684,'movie','\'71','\'71',1,2014,NULL,'99'),(2617828,'movie','Free Fall','Freier Fall',1,2013,NULL,'97'),(2618500,'movie','Lügen und andere Wahrheiten','Lügen und andere Wahrheiten',1,2014,NULL,'106'),(2620736,'movie','Jug Face','Jug Face',1,2013,NULL,'81'),(2625810,'movie','Into the Forest','Into the Forest',1,2015,NULL,'101'),(2626350,'movie','Step Up All In','Step Up All In',1,2014,NULL,'112'),(2628260,'movie','Lost in Living','Lost in Living',1,2013,NULL,'110'),(2630134,'movie','Barbie in the Pink Shoes','Barbie in the Pink Shoes',1,2013,NULL,'75'),(2631186,'movie','Baahubali: The Beginning','Bãhubali: The Beginning',1,2015,NULL,'159'),(2637276,'movie','Ted 2','Ted 2',1,2015,NULL,'115'),(2638144,'movie','Ben-Hur','Ben-Hur',1,2016,NULL,'123'),(2639254,'movie','A Little Chaos','A Little Chaos',1,2014,NULL,'117'),(2639336,'movie','Greta','Greta',1,2018,NULL,'98'),(2639344,'movie','Love Is Strange','Love Is Strange',1,2014,NULL,'94'),(26440896,'movie','Living Bad','Viver Mal',1,2023,NULL,'124'),(2645188,'movie','The Quiet Hour','The Quiet Hour',1,2014,NULL,'85'),(2649554,'movie','Midnight Special','Midnight Special',1,2016,NULL,'112'),(2651924,'movie','The Hit Girl','The Hit Girl',1,2013,NULL,'86'),(2652092,'movie','The Good Lie','The Good Lie',1,2014,NULL,'110'),(2652118,'movie','Crouching Tiger, Hidden Dragon: Sword of Destiny','Wo hu cang long: Qing ming bao jian',1,2016,NULL,'96'),(26537229,'movie','Demon Slayer: Kimetsu No Yaiba - To the Swordsmith Village','Demon Slayer: Kimetsu No Yaiba - To the Swordsmith Village',1,2023,NULL,'110'),(2656122,'short','Nashorn im Galopp','Nashorn im Galopp',1,2013,NULL,'15'),(2660888,'movie','Star Trek Beyond','Star Trek Beyond',1,2016,NULL,'122'),(2662716,'movie','Montanha','Montanha',1,2015,NULL,'88'),(2664258,'movie','Ummah - Unter Freunden','Ummah - Unter Freunden',1,2013,NULL,'107'),(2667380,'movie','Kill Command','Kill Command',1,2016,NULL,'99'),(2671706,'movie','Fences','Fences',1,2016,NULL,'139'),(26744173,'movie','InCar','InCar',1,2023,NULL,NULL),(2674426,'movie','Me Before You','Me Before You',1,2016,NULL,'110'),(2674430,'movie','Approaching the Unknown','Approaching the Unknown',1,2016,NULL,'90'),(2675914,'movie','In Order of Disappearance','Kraftidioten',1,2014,NULL,'116'),(2678152,'short','Wireboy','Wireboy',1,2012,NULL,'15'),(2679042,'movie','Hitman: Agent 47','Hitman: Agent 47',1,2015,NULL,'96'),(2690226,'movie','The Chaperone','The Chaperone',1,2018,NULL,'108'),(2692250,'movie','Night at the Museum: Secret of the Tomb','Night at the Museum: Secret of the Tomb',1,2014,NULL,'98'),(2692904,'movie','Locke','Locke',1,2013,NULL,'85'),(2693664,'movie','Young Ones','Young Ones',1,2014,NULL,'100'),(2702724,'movie','The Boss','The Boss',1,2016,NULL,'99'),(2704998,'movie','Game Night','Game Night',1,2018,NULL,'100'),(2707858,'movie','Yves Saint Laurent','Yves Saint Laurent',1,2014,NULL,'106'),(2709692,'movie','The Grinch','The Grinch',1,2018,NULL,'85'),(2709768,'movie','The Secret Life of Pets','The Secret Life of Pets',1,2016,NULL,'87'),(2710826,'movie','AfterDeath','AfterDeath',1,2015,NULL,'88'),(2713180,'movie','Fury','Fury',1,2014,NULL,'134'),(2717822,'movie','Blackhat','Blackhat',1,2015,NULL,'133'),(2717860,'movie','The Riot Club','The Riot Club',1,2014,NULL,'107'),(2718492,'movie','Ida','Ida',1,2013,NULL,'82'),(2719848,'movie','Everest','Everest',1,2015,NULL,'121'),(2720680,'movie','The Salvation','The Salvation',1,2014,NULL,'92'),(2724064,'tvMovie','Sharknado','Sharknado',1,2013,NULL,'86'),(2725962,'movie','What We Did on Our Holiday','What We Did on Our Holiday',1,2014,NULL,'95'),(2726560,'movie','The Longest Ride','The Longest Ride',1,2015,NULL,'123'),(2737050,'movie','Two Days, One Night','Deux jours, une nuit',1,2014,NULL,'95'),(2737304,'movie','Bird Box','Bird Box',1,2018,NULL,'124'),(2742544,'videoGame','Until Dawn','Until Dawn',1,2015,NULL,NULL),(27502426,'movie','Four Daughters','Les filles d\'Olfa',1,2023,NULL,'107'),(2751310,'movie','Sex Ed','Sex Ed',1,2014,NULL,'92'),(2751390,'movie','Life of Riley','Aimer, boire et chanter',1,2014,NULL,'108'),(2752200,'movie','Young & Beautiful','Jeune et Jolie',1,2013,NULL,'95'),(2752688,'movie','Rosewater','Rosewater',1,2014,NULL,'103'),(2756032,'movie','The One I Love','The One I Love',1,2014,NULL,'91'),(2758904,'movie','Search Party','Search Party',1,2014,NULL,'93'),(2761578,'video','Wicked Blood','Wicked Blood',1,2014,NULL,'92'),(2762506,'movie','Bacurau','Bacurau',1,2019,NULL,'131'),(2762970,'tvMovie','Cloud 9','Cloud 9',1,2014,NULL,'85'),(2763304,'movie','T2 Trainspotting','T2 Trainspotting',1,2017,NULL,'117'),(2764784,'movie','Phoenix','Phoenix',1,2014,NULL,'98'),(2770480,'tvMovie','Remember Sunday','Remember Sunday',1,2013,NULL,'96'),(2771200,'movie','Beauty and the Beast','Beauty and the Beast',1,2017,NULL,'129'),(2771372,'movie','Veronica Mars','Veronica Mars',1,2014,NULL,'107'),(2776074,'movie','Angélique','Angélique',1,2013,NULL,'113'),(2779318,'tvEpisode','The Day of the Doctor','The Day of the Doctor',1,2013,NULL,'77'),(27816768,'movie','Tarla','Tarla',1,2023,NULL,'127'),(2784512,'movie','Zombeavers','Zombeavers',1,2014,NULL,'77'),(2784678,'movie','Top Five','Top Five',1,2014,NULL,'102'),(2788432,'tvSeries','American Crime Story','American Crime Story',1,2016,NULL,'42'),(2788710,'movie','The Interview','The Interview',1,2014,NULL,'112'),(2788716,'movie','Welcome to Me','Welcome to Me',1,2014,NULL,'87'),(2788732,'movie','Pete\'s Dragon','Pete\'s Dragon',1,2016,NULL,'102'),(2792728,'movie','Kärlek deluxe','Kärlek deluxe',1,2014,NULL,'92'),(2795478,'short','Wastelands','Wastelands',1,2013,NULL,'14'),(2796584,'short','Lost Angel','Lost Angel',1,2013,NULL,'17'),(2798920,'movie','Annihilation','Annihilation',1,2018,NULL,'115'),(2800038,'movie','Atlas Shrugged: Who Is John Galt?','Atlas Shrugged: Part III',1,2014,NULL,'99'),(2800240,'movie','Serial Bad Weddings','Qu\'est-ce qu\'on a fait au bon Dieu?',1,2014,NULL,'97'),(2802144,'movie','Kingsman: The Secret Service','Kingsman: The Secret Service',1,2014,NULL,'129'),(2802154,'movie','Leviathan','Leviafan',1,2014,NULL,'140'),(2808680,'movie','No Thank You','Ei kiitos',1,2014,NULL,'97'),(2818178,'movie','When Animals Dream','Når dyrene drømmer',1,2014,NULL,'84'),(2818348,'tvMovie','Saige Paints the Sky','Saige Paints the Sky',1,2013,NULL,'100'),(2820466,'video','Justice League: The Flashpoint Paradox','Justice League: The Flashpoint Paradox',1,2013,NULL,'75'),(2820852,'movie','Furious 7','Fast & Furious 7',1,2015,NULL,'137'),(2823054,'movie','Mike and Dave Need Wedding Dates','Mike and Dave Need Wedding Dates',1,2016,NULL,'98'),(2829458,'movie','Kiss Me You Fucking Moron','Kyss meg for faen i helvete',1,2013,NULL,'90'),(2831440,'short','Ronny & i','Ronny & i',1,2013,NULL,'20'),(2832470,'movie','Dead Snow 2: Red vs. Dead','Død snø 2',1,2014,NULL,'100'),(2835536,'movie','The Quiet Roar','The Quiet Roar',1,2014,NULL,'77'),(2837574,'movie','The Old Man & the Gun','The Old Man & the Gun',1,2018,NULL,'93'),(2844798,'movie','White God','Fehér isten',1,2014,NULL,'121'),(2848292,'movie','Pitch Perfect 2','Pitch Perfect 2',1,2015,NULL,'115'),(2850386,'movie','The Croods: A New Age','The Croods: A New Age',1,2020,NULL,'95'),(2852458,'movie','Stranger by the Lake','L\'inconnu du lac',1,2013,NULL,'100'),(2852460,'movie','Bends','Bends',1,2013,NULL,'96'),(2854926,'movie','Tag','Tag',1,2018,NULL,'100'),(2865120,'movie','Ratchet & Clank','Ratchet & Clank',1,2016,NULL,'94'),(2865802,'movie','A Pact','Zum Geburtstag',1,2013,NULL,'85'),(2866360,'movie','Coherence','Coherence',1,2013,NULL,'89'),(2869728,'movie','Ride Along 2','Ride Along 2',1,2016,NULL,'102'),(2870612,'movie','As Above, So Below','As Above, So Below',1,2014,NULL,'93'),(2870708,'movie','Wish I Was Here','Wish I Was Here',1,2014,NULL,'106'),(2870756,'movie','Magic in the Moonlight','Magic in the Moonlight',1,2014,NULL,'97'),(2870808,'movie','Life Partners','Life Partners',1,2014,NULL,'93'),(2872462,'movie','Mistress America','Mistress America',1,2015,NULL,'84'),(2872518,'movie','The Shack','The Shack',1,2017,NULL,'132'),(2872718,'movie','Nightcrawler','Nightcrawler',1,2014,NULL,'117'),(2872724,'movie','Out of the Dark','Out of the Dark',1,2014,NULL,'92'),(2872732,'movie','Lucy','Lucy',1,2014,NULL,'89'),(2872750,'movie','Shaun the Sheep Movie','Shaun the Sheep Movie',1,2015,NULL,'85'),(2873282,'movie','Red Sparrow','Red Sparrow',1,2018,NULL,'140'),(2881698,'movie','Skinwalker Ranch','Skinwalker Ranch',1,2013,NULL,'86'),(2883512,'movie','Chef','Chef',1,2014,NULL,'114'),(2884018,'movie','Macbeth','Macbeth',1,2015,NULL,'113'),(2884206,'movie','I Origins','I Origins',1,2014,NULL,'106'),(2888046,'movie','Ip Man 3','Yip Man 3',1,2015,NULL,'105'),(2896036,'movie','Living Is Easy with Eyes Closed','Vivir es fácil con los ojos cerrados',1,2013,NULL,'108'),(2906216,'movie','Dungeons & Dragons: Honor Among Thieves','Dungeons & Dragons: Honor Among Thieves',1,2023,NULL,'134'),(2908228,'movie','My Little Pony: Equestria Girls','My Little Pony: Equestria Girls',1,2013,NULL,'72'),(2908446,'movie','The Divergent Series: Insurgent','Insurgent',1,2015,NULL,'119'),(2908856,'movie','My Old Lady','My Old Lady',1,2014,NULL,'107'),(2910274,'movie','Obvious Child','Obvious Child',1,2014,NULL,'84'),(2910904,'movie','The Dressmaker','The Dressmaker',1,2015,NULL,'119'),(2911666,'movie','John Wick','John Wick',1,2014,NULL,'101'),(2911674,'movie','Tiger House','Tiger House',1,2015,NULL,'80'),(2918436,'movie','The Lazarus Effect','The Lazarus Effect',1,2015,NULL,'83'),(2920808,'movie','God\'s Pocket','God\'s Pocket',1,2014,NULL,'88'),(2927212,'movie','Dear Eleanor','Dear Eleanor',1,2016,NULL,'89'),(2929690,'movie','Margarita with a Straw','Margarita with a Straw',1,2014,NULL,'100'),(2932536,'movie','47 Meters Down','47 Meters Down',1,2017,NULL,'89'),(2933474,'movie','Superfast!','Superfast!',1,2015,NULL,'99'),(2933544,'movie','5 Flights Up','5 Flights Up',1,2014,NULL,'88'),(2935476,'movie','Far from the Madding Crowd','Far from the Madding Crowd',1,2015,NULL,'119'),(2935510,'movie','Ad Astra','Ad Astra',1,2019,NULL,'123'),(2935622,'movie','The School for Good and Evil','The School for Good and Evil',1,2022,NULL,'147'),(2935662,'movie','Portrait of a Serial Monogamist','Portrait of a Serial Monogamist',1,2015,NULL,'84'),(2936470,'movie','Electricity','Electricity',1,2014,NULL,'96'),(2937696,'movie','Everybody Wants Some!!','Everybody Wants Some!!',1,2016,NULL,'117'),(2937898,'movie','A Most Violent Year','A Most Violent Year',1,2014,NULL,'125'),(2938496,'movie','Vampires in Virginia','Vampires in Virginia',1,NULL,NULL,NULL),(2938956,'movie','The Transporter Refueled','The Transporter Refueled',1,2015,NULL,'96'),(2944454,'tvSeries','Riley Rewind','Riley Rewind',1,2013,2013,'70'),(2948356,'movie','Zootopia','Zootopia',1,2016,NULL,'108'),(2948372,'movie','Soul','Soul',1,2020,NULL,'100'),(2948840,'movie','Life','Life',1,2015,NULL,'111'),(2953050,'movie','Encanto','Encanto',1,2021,NULL,'102'),(2955096,'movie','Happy Christmas','Happy Christmas',1,2014,NULL,'82'),(2955316,'movie','Spanish Affair','Ocho apellidos vascos',1,2014,NULL,'98'),(2964334,'movie','138 segons. L\'enigma Gironès','138 segons. L\'enigma Gironès',1,2013,NULL,NULL),(2965412,'movie','Comet','Comet',1,2014,NULL,'91'),(2965466,'movie','Last Shift','Last Shift',1,2014,NULL,'88'),(2967224,'movie','Hot Pursuit','Hot Pursuit',1,2015,NULL,'87'),(2967286,'movie','Steins;Gate: The Movie - Load Region of Déjà Vu','Gekijouban Steins;Gate: Fuka ryouiki no dejavu',1,2013,NULL,'90'),(2969656,'movie','Cold Eyes','Gam-si-ja-deul',1,2013,NULL,'119'),(2974918,'movie','Alvin and the Chipmunks: The Road Chip','Alvin and the Chipmunks: The Road Chip',1,2015,NULL,'92'),(2975578,'movie','The Purge: Anarchy','The Purge: Anarchy',1,2014,NULL,'103'),(2975590,'movie','Batman v Superman: Dawn of Justice','Batman v Superman: Dawn of Justice',1,2016,NULL,'151'),(2977090,'movie','Alex of Venice','Alex of Venice',1,2014,NULL,'86'),(2978462,'movie','Dolphin Tale 2','Dolphin Tale 2',1,2014,NULL,'107'),(2978576,'movie','Bill','Bill',1,2015,NULL,'94'),(2980516,'movie','The Theory of Everything','The Theory of Everything',1,2014,NULL,'123'),(2980648,'movie','The Hundred-Foot Journey','The Hundred-Foot Journey',1,2014,NULL,'122'),(2980706,'movie','Planes: Fire & Rescue','Planes: Fire & Rescue',1,2014,NULL,'83'),(2980794,'movie','Highway','Highway',1,2014,NULL,'133'),(2981768,'movie','Patema Inverted','Sakasama no Patema',1,2013,NULL,'98'),(2987732,'movie','Suck Me Shakespeer','Fack ju Göhte',1,2013,NULL,'119'),(2991224,'movie','Tangerines','Mandariinid',1,2013,NULL,'87'),(2991296,'movie','Beneath','Beneath',1,2013,NULL,'89'),(2991316,'movie','Future Shift','Future Shift',1,2014,NULL,'77'),(2992146,'movie','Young Detective Dee: Rise of the Sea Dragon','Di Renjie zhi shen du Long Wang',1,2013,NULL,'134'),(2994832,'movie','The Summer of Sangaile','Sangailes vasara',1,2015,NULL,'90'),(3003800,'movie','Amour Fou','Amour fou',1,2014,NULL,'96'),(3007302,'movie','Boy Meets Girl','Boy Meets Girl',1,2014,NULL,'95'),(3010990,'movie','Extirpator of Idolatries','Extirpador de Idolatrías',1,2014,NULL,'86'),(3011894,'movie','Wild Tales','Relatos salvajes',1,2014,NULL,'122'),(3013588,'movie','My Summer in Provence','Avis de mistral',1,2014,NULL,'105'),(3014666,'movie','Moms\' Night Out','Moms\' Night Out',1,2014,NULL,'98'),(3014866,'movie','Criminal','Criminal',1,2016,NULL,'113'),(3015110,'tvMovie','Christmas in the City','Christmas in the City',1,2013,NULL,'87'),(3019620,'movie','Titli','Titli',1,2014,NULL,'116'),(3021360,'movie','Faults','Faults',1,2014,NULL,'89'),(3038708,'movie','Iron Sky: The Coming Race','Iron Sky: The Coming Race',1,2019,NULL,'93'),(3040964,'movie','The Jungle Book','The Jungle Book',1,2016,NULL,'106'),(3042408,'movie','Who Am I','Who Am I - Kein System ist sicher',1,2014,NULL,'102'),(3043252,'movie','Parched','Parched',1,2015,NULL,'116'),(3045616,'movie','Mortdecai','Mortdecai',1,2015,NULL,'107'),(3058674,'movie','VANish','VANish',1,2015,NULL,'79'),(3060952,'video','Justice League: War','Justice League: War',1,2014,NULL,'79'),(3062074,'tvMovie','Sharknado 2: The Second One','Sharknado 2: The Second One',1,2014,NULL,'95'),(3062096,'movie','Inferno','Inferno',1,2016,NULL,'121'),(3062976,'movie','Learning to Drive','Learning to Drive',1,2014,NULL,'90'),(3064298,'movie','Man Up','Man Up',1,2015,NULL,'88'),(3065204,'movie','The Conjuring 2','The Conjuring 2',1,2016,NULL,'134'),(3066242,'tvSeries','RWBY','RWBY',1,2012,NULL,'13'),(3068194,'movie','Love & Friendship','Love & Friendship',1,2016,NULL,'90'),(3068894,'tvMiniSeries','The Red Tent','The Red Tent',1,2014,2014,'87'),(3072482,'movie','Hardcore Henry','Hardcore Henry',1,2015,NULL,'96'),(3074694,'tvEpisode','Flowers in the Attic','Flowers in the Attic',1,2014,NULL,'89'),(3074732,'movie','Of Horses and Men','Hross í oss',1,2013,NULL,'81'),(3076658,'movie','Creed','Creed',1,2015,NULL,'133'),(3077108,'movie','Appropriate Behavior','Appropriate Behavior',1,2014,NULL,'86'),(3077214,'movie','Suffragette','Suffragette',1,2015,NULL,'106'),(3078718,'movie','Zoran, My Nephew the Idiot','Zoran, il mio nipote scemo',1,2013,NULL,'106'),(3079380,'movie','Spy','Spy',1,2015,NULL,'120'),(3086442,'movie','Goodnight Mommy','Ich seh, Ich seh',1,2014,NULL,'99'),(3089326,'movie','Magical Girl','Magical Girl',1,2014,NULL,'127'),(3089388,'movie','Tim\'s Vermeer','Tim\'s Vermeer',1,2013,NULL,'80'),(3089630,'movie','Artemis Fowl','Artemis Fowl',1,2020,NULL,'95'),(3090670,'movie','Advantageous','Advantageous',1,2015,NULL,'90'),(3095734,'movie','Monster Trucks','Monster Trucks',1,2016,NULL,'104'),(3097084,'movie','Camp Takota','Camp Takota',1,2014,NULL,'95'),(3097204,'movie','The Inbetweeners 2','The Inbetweeners 2',1,2014,NULL,'96'),(3099498,'movie','Tusk','Tusk',1,2014,NULL,'102'),(3100510,'short','Warpaint','Warpaint',1,2012,NULL,'17'),(3100636,'movie','52 Tuesdays','52 Tuesdays',1,2013,NULL,'114'),(3103576,'movie','Love Is the Perfect Crime','L\'amour est un crime parfait',1,2013,NULL,'110'),(3104818,'movie','Like Sunday, Like Rain','Like Sunday, Like Rain',1,2014,NULL,'104'),(3104930,'movie','Da Sweet Blood of Jesus','Da Sweet Blood of Jesus',1,2014,NULL,'123'),(3104988,'movie','Crazy Rich Asians','Crazy Rich Asians',1,2018,NULL,'120'),(3106846,'movie','Gabrielle','Gabrielle',1,2013,NULL,'104'),(3107288,'tvSeries','The Flash','The Flash',1,2014,2023,'43'),(3108894,'movie','The Tender Bar','The Tender Bar',1,2021,NULL,'106'),(3110958,'movie','Now You See Me 2','Now You See Me 2',1,2016,NULL,'129'),(3110960,'movie','Jimmy\'s Hall','Jimmy\'s Hall',1,2014,NULL,'109'),(3111426,'movie','Lost Girls','Lost Girls',1,2020,NULL,'95'),(3115906,'movie','Girl Lost','Nowhereland',1,2016,NULL,'95'),(3118452,'movie','Circle','Circle',1,2015,NULL,'87'),(3118958,'tvMovie','Lizzie Borden Took an Ax','Lizzie Borden Took an Ax',1,2014,NULL,'87'),(3120280,'movie','Sierra Burgess Is a Loser','Sierra Burgess Is a Loser',1,2018,NULL,'105'),(3120408,'video','Tinker Bell and the Legend of the NeverBeast','Tinker Bell and the Legend of the NeverBeast',1,2014,NULL,'76'),(3122122,'movie','The Princess Twins of Legendale','The Princess Twins of Legendale',1,2013,NULL,'74'),(3125324,'movie','Beyond the Lights','Beyond the Lights',1,2014,NULL,'116'),(3128900,'movie','Miss Meadows','Miss Meadows',1,2014,NULL,'88'),(3138192,'video','Mostly Ghostly: Have You Met My Ghoulfriend?','Mostly Ghostly: Have You Met My Ghoulfriend?',1,2014,NULL,'90'),(3139072,'video','Son of Batman','Son of Batman',1,2014,NULL,'74'),(3139086,'video','Batman: Assault on Arkham','Batman: Assault on Arkham',1,2014,NULL,'76'),(3145220,'movie','Hits','Hits',1,2014,NULL,'96'),(3148348,'movie','Let Us Prey','Let Us Prey',1,2014,NULL,'92'),(3148952,'movie','The Circle','Der Kreis',1,2014,NULL,'102'),(3149038,'movie','A Brilliant Young Mind','X+Y',1,2014,NULL,'111'),(3152098,'movie','Mega Shark vs. Mecha Shark','Mega Shark vs. Mecha Shark',1,2014,NULL,'85'),(3152592,'movie','Scoob!','Scoob!',1,2020,NULL,'93'),(3152624,'movie','Trainwreck','Trainwreck',1,2015,NULL,'125'),(3153524,'movie','Awesome Asian Bad Guys','Awesome Asian Bad Guys',1,2014,NULL,'52'),(3155794,'short','Passage de Venus','Passage de Venus',1,1874,NULL,'1'),(3159812,'tvMovie','Monster High: 13 Wishes','Monster High: 13 Wishes',1,2013,NULL,'73'),(3165612,'movie','Sleeping with Other People','Sleeping with Other People',1,2015,NULL,'101'),(3168230,'movie','Mr. Holmes','Mr. Holmes',1,2015,NULL,'104'),(3169706,'movie','Pride','Pride',1,2014,NULL,'119'),(3170832,'movie','Room','Room',1,2015,NULL,'118'),(3172532,'movie','The Diary of a Teenage Girl','The Diary of a Teenage Girl',1,2015,NULL,'102'),(3175038,'movie','The Villain','Ek Villain',1,2014,NULL,'129'),(3183630,'movie','The Boy and the World','O Menino e o Mundo',1,2013,NULL,'80'),(3183660,'movie','Fantastic Beasts and Where to Find Them','Fantastic Beasts and Where to Find Them',1,2016,NULL,'132'),(3184934,'movie','The New Girlfriend','Une nouvelle amie',1,2014,NULL,'108'),(3186838,'movie','Fields of the Dead','Fields of the Dead',1,2014,NULL,'84'),(3195644,'movie','Insidious: Chapter 3','Insidious: Chapter 3',1,2015,NULL,'97'),(3198652,'movie','Persona 3 the Movie: #1 Spring of Birth','Persona 3 the Movie: #1 Spring of Birth',1,2013,NULL,'97'),(3201916,'short','Je vous aime','Je vous aime',1,1891,NULL,'1'),(3203528,'movie','Bad Samaritan','Bad Samaritan',1,2018,NULL,'110'),(3203606,'movie','Trumbo','Trumbo',1,2015,NULL,'124'),(3203620,'movie','The Dinner','The Dinner',1,2017,NULL,'120'),(3205376,'movie','Slow West','Slow West',1,2015,NULL,'84'),(3205394,'tvMovie','Esio Trot','Esio Trot',1,2015,NULL,'88'),(3208026,'movie','Black \'47','Black \'47',1,2018,NULL,'100'),(3212568,'movie','Beltracchi: The Art of Forgery','Beltracchi - Die Kunst der Fälschung',1,2014,NULL,'93'),(3215824,'movie','Those Who Wish Me Dead','Those Who Wish Me Dead',1,2021,NULL,'100'),(3224458,'movie','A Beautiful Day in the Neighborhood','A Beautiful Day in the Neighborhood',1,2019,NULL,'109'),(3228774,'movie','Cruella','Cruella',1,2021,NULL,'134'),(3230162,'movie','Still the Water','Futatsume no mado',1,2014,NULL,'121'),(3235888,'movie','It Follows','It Follows',1,2014,NULL,'100'),(3236120,'movie','I\'ll See You in My Dreams','I\'ll See You in My Dreams',1,2015,NULL,'92'),(3247714,'movie','Survivor','Survivor',1,2015,NULL,'96'),(3252208,'movie','The Vivian Maier Mystery','The Vivian Maier Mystery',1,2013,NULL,'50'),(3253930,'movie','Marshland','La isla mínima',1,2014,NULL,'105'),(3254796,'movie','Big Stone Gap','Big Stone Gap',1,2014,NULL,'103'),(3255590,'movie','El Camino Christmas','El Camino Christmas',1,2017,NULL,'89'),(3257692,'movie','Starving in Suburbia','Thinspiration',1,2014,NULL,'84'),(3262342,'movie','Loving Vincent','Loving Vincent',1,2017,NULL,'94'),(3263614,'movie','Kumiko, The Treasure Hunter','Kumiko, the Treasure Hunter',1,2014,NULL,'105'),(3263732,'movie','Primero De Enero','Primero De Enero',1,2014,NULL,'85'),(3263904,'movie','Sully','Sully',1,2016,NULL,'96'),(3268668,'movie','Captive','Captive',1,2015,NULL,'97'),(3272066,'movie','Reminiscence','Reminiscence',1,2021,NULL,'116'),(3274100,'short','Pferd und Reiter Springen über ein Hindernis','Pferd und Reiter Springen über ein Hindernis',1,1888,NULL,'1'),(3278330,'movie','Tale of Tales','Il racconto dei racconti - Tale of Tales',1,2015,NULL,'134'),(3281548,'movie','Little Women','Little Women',1,2019,NULL,'135'),(3283556,'movie','Land Ho!','Land Ho!',1,2014,NULL,'95'),(3284618,'movie','Pane e burlesque','Pane e burlesque',1,2014,NULL,'86'),(3286052,'movie','The Blackcoat\'s Daughter','February',1,2015,NULL,'93'),(3289712,'movie','Jenny\'s Wedding','Jenny\'s Wedding',1,2015,NULL,'94'),(3289724,'movie','Welcome to Marwen','Welcome to Marwen',1,2018,NULL,'116'),(3289728,'movie','Equals','Equals',1,2015,NULL,'101'),(3289956,'movie','The Autopsy of Jane Doe','The Autopsy of Jane Doe',1,2016,NULL,'86'),(3291148,'movie','Just Jim','Just Jim',1,2015,NULL,'84'),(3294200,'movie','The Falling','The Falling',1,2014,NULL,'102'),(3294746,'movie','The Public','The Public',1,2018,NULL,'119'),(3296658,'movie','Rams','Hrútar',1,2015,NULL,'93'),(3296908,'movie','The Man with the Iron Heart','HHhH',1,2017,NULL,'120'),(3298820,'tvMovie','Metalocalypse: The Doomstar Requiem - A Klok Opera','Metalocalypse: The Doomstar Requiem - A Klok Opera',1,2013,NULL,'60'),(3303652,'movie','A Sort of Homecoming','A Sort of Homecoming',1,2015,NULL,'88'),(3306776,'movie','Bayonetta: Bloody Fate','Bayonetta: Bloody Fate',1,2013,NULL,'90'),(3307774,'video','Alpha House','Alpha House',1,2014,NULL,'88'),(3312830,'movie','Youth','Youth',1,2015,NULL,'124'),(3315342,'movie','Logan','Logan',1,2017,NULL,'137'),(3316948,'movie','American Ultra','American Ultra',1,2015,NULL,'96'),(3316960,'movie','Still Alice','Still Alice',1,2014,NULL,'101'),(3318220,'tvMovie','Boys','Jongens',1,2014,NULL,'78'),(3319018,'movie','My Name Is Emily','My Name Is Emily',1,2015,NULL,'94'),(3321254,'video','Barbie & Her Sisters in a Pony Tale','Barbie & Her Sisters in a Pony Tale',1,2013,NULL,'72'),(3322314,'tvSeries','Luke Cage','Luke Cage',1,2016,2018,'55'),(3322364,'movie','Concussion','Concussion',1,2015,NULL,'123'),(3322420,'movie','Queen','Queen',1,2013,NULL,'146'),(3322940,'movie','Annabelle','Annabelle',1,2014,NULL,'99'),(3328716,'movie','Paper Planes','Paper Planes',1,2014,NULL,'96'),(3332064,'movie','Pan','Pan',1,2015,NULL,'111'),(3334794,'movie','About a Girl','About a Girl',1,2014,NULL,'104'),(3335606,'movie','Berlin Syndrome','Berlin Syndrome',1,2017,NULL,'116'),(3344922,'movie','Hungry Hearts','Hungry Hearts',1,2014,NULL,'109'),(3348476,'short','Caged','Uitgesproken',1,2013,NULL,'14'),(3348730,'movie','Jigsaw','Jigsaw',1,2017,NULL,'92'),(3352390,'movie','Friend Request','Friend Request',1,2016,NULL,'92'),(3361792,'movie','Tolkien','Tolkien',1,2019,NULL,'112'),(3365778,'movie','Breathe','Respire',1,2014,NULL,'91'),(3368222,'movie','Angry Indian Goddesses','Angry Indian Goddesses',1,2015,NULL,'115'),(3368814,'tvMovie','Killing Daddy','Killing Daddy',1,2014,NULL,'85'),(3369806,'movie','Max','Max',1,2015,NULL,'111'),(3371366,'movie','Transformers: The Last Knight','Transformers: The Last Knight',1,2017,NULL,'154'),(3381008,'movie','The Brothers Grimsby','Grimsby',1,2016,NULL,'83'),(3385516,'movie','X-Men: Apocalypse','X-Men: Apocalypse',1,2016,NULL,'144'),(3385524,'movie','Stan & Ollie','Stan & Ollie',1,2018,NULL,'98'),(3386954,'tvMovie','The Gabby Douglas Story','The Gabby Douglas Story',1,2014,NULL,'86'),(3387266,'movie','A United Kingdom','A United Kingdom',1,2016,NULL,'111'),(3387520,'movie','Scary Stories to Tell in the Dark','Scary Stories to Tell in the Dark',1,2019,NULL,'108'),(3387542,'movie','The Forest','The Forest',1,2016,NULL,'93'),(3387648,'movie','The Taking of Deborah Logan','The Taking',1,2014,NULL,'90'),(3390572,'movie','Haider','Haider',1,2014,NULL,'160'),(3391348,'movie','The3Tails Movie: A Mermaid Adventure','The3Tails Movie: A Mermaid Adventure',1,2015,NULL,'61'),(3393786,'movie','Jack Reacher: Never Go Back','Jack Reacher: Never Go Back',1,2016,NULL,'118'),(3395184,'movie','Spring','Spring',1,2014,NULL,'109'),(3397082,'movie','Punk Berlin 1982','Tod den Hippies!! Es lebe der Punk!',1,2015,NULL,'104'),(3397884,'movie','Sicario','Sicario',1,2015,NULL,'121'),(3397918,'movie','Harbinger Down','Harbinger Down',1,2015,NULL,'82'),(3398268,'movie','When Marnie Was There','Omoide no Marnie',1,2014,NULL,'103'),(3401882,'movie','Fist Fight','Fist Fight',1,2017,NULL,'91'),(3402236,'movie','Murder on the Orient Express','Murder on the Orient Express',1,2017,NULL,'114'),(3410834,'movie','Allegiant','Allegiant',1,2016,NULL,'120'),(3411444,'movie','Ferdinand','Ferdinand',1,2017,NULL,'108'),(3416532,'movie','A Monster Calls','A Monster Calls',1,2016,NULL,'108'),(3416742,'movie','What We Do in the Shadows','What We Do in the Shadows',1,2014,NULL,'86'),(3416744,'movie','The End of the Tour','The End of the Tour',1,2015,NULL,'106'),(3416828,'movie','Ice Age: Collision Course','Ice Age: Collision Course',1,2016,NULL,'94'),(3421270,'video','Asian School Girls','Asian School Girls',1,2014,NULL,'91'),(3422078,'movie','April and the Extraordinary World','Avril et le monde truqué',1,2015,NULL,'105'),(3427056,'short','Il caso Valdemar','Il caso Valdemar',1,1936,NULL,'12'),(3428912,'tvSeries','Happy Valley','Happy Valley',1,2014,2023,'58'),(3430042,'movie','The Phoenix Project','The Phoenix Project',1,2015,NULL,'92'),(3430416,'movie','Schneider vs. Bax','Schneider vs. Bax',1,2015,NULL,'96'),(3431798,'movie','A German Youth','Une jeunesse allemande',1,2015,NULL,'93'),(3438514,'movie','Heaven\'s Lost Property Final: Eternal My Master','Sora no otoshimono Final: Etânaru mai masutâ',1,2014,NULL,'50'),(3440298,'tvMovie','Descendants','Descendants',1,2015,NULL,'112'),(3442006,'movie','Cake','Cake',1,2014,NULL,'102'),(3447590,'movie','Roald Dahl\'s Matilda the Musical','Roald Dahl\'s Matilda the Musical',1,2022,NULL,'117'),(3450650,'movie','Paul Blart: Mall Cop 2','Paul Blart: Mall Cop 2',1,2015,NULL,'94'),(3450958,'movie','War for the Planet of the Apes','War for the Planet of the Apes',1,2017,NULL,'140'),(3451230,'movie','High Strung','High Strung',1,2016,NULL,'96'),(3453052,'movie','10 Days in a Madhouse','10 Days in a Madhouse',1,2015,NULL,'111'),(3457342,'tvEpisode','Nosferatu in Love','Nosferatu in Love',1,2014,NULL,'24'),(3457734,'movie','Fort Tilden','Fort Tilden',1,2014,NULL,'98'),(3458254,'movie','Patient Zero','Patient Zero',1,2018,NULL,'87'),(3458510,'movie','Dude','Dude',1,2018,NULL,'97'),(3460252,'movie','The Hateful Eight','The Hateful Eight',1,2015,NULL,'168'),(3462710,'movie','Unforgettable','Unforgettable',1,2017,NULL,'100'),(3463106,'movie','The Cured','The Cured',1,2017,NULL,'95'),(3464902,'movie','The Lobster','The Lobster',1,2015,NULL,'119'),(3468260,'video','JLA Adventures: Trapped in Time','JLA Adventures: Trapped in Time',1,2014,NULL,'52'),(3469046,'movie','Despicable Me 3','Despicable Me 3',1,2017,NULL,'89'),(3469518,'movie','The Whole Shebang','Alles inklusive',1,2014,NULL,'119'),(3470600,'movie','Sing','Sing',1,2016,NULL,'108'),(3471098,'movie','Maggie\'s Plan','Maggie\'s Plan',1,2015,NULL,'98'),(3472226,'short','Kung Fury','Kung Fury',1,2015,NULL,'31'),(3478232,'movie','Mythica: The Darkspore','Mythica: The Darkspore',1,2015,NULL,'107'),(3479316,'movie','Parallels','Parallels',1,2015,NULL,'83'),(3480446,'movie','Almost Mercy','Almost Mercy',1,2015,NULL,'85'),(3480796,'movie','Vice','Vice',1,2015,NULL,'96'),(3480822,'movie','Black Widow','Black Widow',1,2021,NULL,'134'),(3483194,'movie','You\'re Sleeping, Nicole','Tu dors Nicole',1,2014,NULL,'93'),(3486626,'movie','The Nut Job 2: Nutty by Nature','The Nut Job 2: Nutty by Nature',1,2017,NULL,'91'),(3487994,'movie','Bloodsucking Bastards','Bloodsucking Bastards',1,2015,NULL,'86'),(3488710,'movie','The Walk','The Walk',1,2015,NULL,'123'),(3498820,'movie','Captain America: Civil War','Captain America: Civil War',1,2016,NULL,'147'),(3499048,'movie','Gueros','Güeros',1,2014,NULL,'106'),(3501632,'movie','Thor: Ragnarok','Thor: Ragnarok',1,2017,NULL,'130'),(3503460,'movie','Embers','Embers',1,2015,NULL,'85'),(3504048,'movie','Housebound','Housebound',1,2014,NULL,'107'),(3504064,'video','Barbie: The Pearl Princess','Barbie: The Pearl Princess',1,2014,NULL,'73'),(3508566,'short','La vague','La vague',1,1891,NULL,'1'),(3508840,'movie','The Assassin','Cike Nie Yin Niang',1,2015,NULL,'105'),(3513498,'movie','The Lego Movie 2: The Second Part','The Lego Movie 2: The Second Part',1,2019,NULL,'107'),(3513500,'movie','Chip \'n Dale: Rescue Rangers','Chip \'n Dale: Rescue Rangers',1,2022,NULL,'97'),(3513548,'movie','Richard Jewell','Richard Jewell',1,2019,NULL,'131'),(3515892,'movie','The Pa Boys','The Pa Boys',1,2014,NULL,'93'),(3521126,'movie','The Disaster Artist','The Disaster Artist',1,2017,NULL,'104'),(3521164,'movie','Moana','Moana',1,2016,NULL,'107'),(3521332,'movie','Traces of Sandalwood','Rastres de sàndal',1,2014,NULL,'95'),(3525168,'movie','Dead in a Week Or Your Money Back','Dead in a Week (Or Your Money Back)',1,2018,NULL,'90'),(3528906,'movie','Our RoboCop Remake','Our RoboCop Remake',1,2014,NULL,'108'),(3529198,'movie','My Little Pony: Equestria Girls - Rainbow Rocks Animated','My Little Pony: Equestria Girls - Rainbow Rocks',1,2014,NULL,'75'),(3529612,'movie','River of Fundament','River of Fundament',1,2014,NULL,'319'),(3529656,'movie','Meadowland','Meadowland',1,2015,NULL,'105'),(3531202,'movie','Pilgrimage','Pilgrimage',1,2017,NULL,'96'),(3531824,'movie','Nerve','Nerve',1,2016,NULL,'96'),(3532216,'movie','American Made','American Made',1,2017,NULL,'115'),(3532278,'movie','Brothers of the Wind','Brothers of the Wind',1,2015,NULL,'98'),(3544082,'movie','45 Years','45 Years',1,2015,NULL,'95'),(3544112,'movie','Sing Street','Sing Street',1,2016,NULL,'106'),(3544218,'movie','Belgica','Belgica',1,2016,NULL,'127'),(3546114,'movie','Anatomy of a Love Seen','Anatomy of a Love Seen',1,2014,NULL,'80'),(3553442,'movie','Whiskey Tango Foxtrot','Whiskey Tango Foxtrot',1,2016,NULL,'112'),(3553976,'movie','Captain Fantastic','Captain Fantastic',1,2016,NULL,'118'),(3554046,'movie','Space Jam: A New Legacy','Space Jam: A New Legacy',1,2021,NULL,'115'),(3556230,'movie','Offline','Offline',1,2016,NULL,'129'),(3560546,'movie','Dead Girls','Dead Girls',1,2014,NULL,'91'),(3564472,'movie','Girls Trip','Girls Trip',1,2017,NULL,'122'),(3564794,'movie','Welcome to Happiness','Welcome to Happiness',1,2015,NULL,'95'),(3565264,'movie','Thegidi','Thegidi',1,2014,NULL,'126'),(3566726,'tvSeries','Jane the Virgin','Jane the Virgin',1,2014,2019,'60'),(3567288,'movie','The Visit','The Visit',1,2015,NULL,'94'),(3569230,'movie','Legend','Legend',1,2015,NULL,'132'),(3569356,'movie','Not Cool','Not Cool',1,2014,NULL,'93'),(3570168,'movie','Dyke Hard','Dyke Hard',1,2014,NULL,'90'),(3572132,'movie','Ju-on: The Beginning of the End','Ju-on: Owari no hajimari',1,2014,NULL,'91'),(3576084,'movie','Zero Motivation','Efes beyahasei enosh',1,2014,NULL,'97'),(3577624,'movie','A Perfect Day','A Perfect Day',1,2015,NULL,'106'),(3579698,'movie','12 Dog Days Till Christmas','12 Dog Days of Christmas',1,2014,NULL,'90'),(3581652,'movie','West Side Story','West Side Story',1,2021,NULL,'156'),(3589968,'movie','Courier X','Courier X',1,2016,NULL,'138'),(3595966,'movie','Behavior','Conducta',1,2014,NULL,'108'),(3598222,'movie','Mercenaries','Mercenaries',1,2014,NULL,'89'),(3605262,'movie','The Sin Seer','The Sin Seer',1,2015,NULL,'109'),(3606752,'movie','Cars 3','Cars 3',1,2017,NULL,'102'),(3606756,'movie','Incredibles 2','Incredibles 2',1,2018,NULL,'118'),(3608930,'movie','In a Valley of Violence','In a Valley of Violence',1,2016,NULL,'104'),(3610746,'movie','Don\'t Hang Up','Don\'t Hang Up',1,2016,NULL,'83'),(3612616,'movie','Mommy','Mommy',1,2014,NULL,'139'),(3614530,'movie','Jem and the Holograms','Jem and the Holograms',1,2015,NULL,'118'),(3616916,'movie','The Wave','Bølgen',1,2015,NULL,'105'),(3620762,'movie','Anguish','Anguish',1,2015,NULL,'91'),(3622332,'movie','Sword of Vengeance','Sword of Vengeance',1,2015,NULL,'87'),(3622592,'movie','Paper Towns','Paper Towns',1,2015,NULL,'109'),(3623726,'movie','Ricki and the Flash','Ricki and the Flash',1,2015,NULL,'101'),(3625970,'video','Dark Dungeons','Dark Dungeons',1,2014,NULL,'40'),(3627488,'movie','Burn Burn Burn','Burn Burn Burn',1,2015,NULL,'106'),(3628584,'movie','Barbershop: The Next Cut','Barbershop: The Next Cut',1,2016,NULL,'111'),(3631112,'movie','The Girl on the Train','The Girl on the Train',1,2016,NULL,'112'),(3638604,'movie','Hard Corner: Le Film','Hard Corner: Le Film',1,2014,NULL,'65'),(3640424,'movie','Allied','Allied',1,2016,NULL,'124'),(3654680,'movie','Vampyres','Vampyres',1,2015,NULL,'76'),(3654796,'movie','Creep 2','Creep 2',1,2017,NULL,'78'),(3655522,'movie','Girlhood','Bande de filles',1,2014,NULL,'113'),(3655972,'movie','The Olive Tree','El olivo',1,2016,NULL,'100'),(3659388,'movie','The Martian','The Martian',1,2015,NULL,'144'),(3661298,'movie','Septembers of Shiraz','Septembers of Shiraz',1,2015,NULL,'110'),(3661798,'movie','A Girl at My Door','Dohee-ya',1,2014,NULL,'119'),(3666024,'movie','The Red Turtle','La tortue rouge',1,2016,NULL,'80'),(3666210,'movie','H.','H.',1,2014,NULL,'93'),(3671900,'tvMovie','Gehara: The Dark & Long Hair Monster','Chohatsu Daikaiju Gehara',1,2009,NULL,NULL),(3672742,'movie','Turbo Kid','Turbo Kid',1,2015,NULL,'93'),(3682448,'movie','Bridge of Spies','Bridge of Spies',1,2015,NULL,'142'),(3685622,'movie','600 Miles','600 Millas',1,2015,NULL,'85'),(3686998,'movie','The Red Pill','The Red Pill',1,2016,NULL,'108'),(3691740,'movie','The BFG','The BFG',1,2016,NULL,'117'),(3696086,'movie','The Golden Era','Huang jin shi dai',1,2014,NULL,'177'),(3700804,'movie','Already Tomorrow in Hong Kong','Already Tomorrow in Hong Kong',1,2015,NULL,'78'),(3704352,'tvMovie','Bessie','Bessie',1,2015,NULL,'115'),(3704428,'movie','Elvis','Elvis',1,2022,NULL,'159'),(3706352,'movie','All the Old Knives','All the Old Knives',1,2022,NULL,'101'),(3707106,'movie','By the Sea','By the Sea',1,2015,NULL,'122'),(3707396,'movie','Hedi Schneider Is Stuck','Hedi Schneider steckt fest',1,2015,NULL,'90'),(3708886,'movie','War on Everyone','War on Everyone',1,2016,NULL,'98'),(3711622,'movie','Ghosthunters: On Icy Trails','Gespensterjäger',1,2015,NULL,'99'),(3713166,'movie','Unfriended','Unfriended',1,2014,NULL,'83'),(3715122,'movie','L\'attesa','L\'attesa',1,2015,NULL,'100'),(3715320,'movie','Irrational Man','Irrational Man',1,2015,NULL,'95'),(3716530,'movie','Elle','Elle',1,2016,NULL,'130'),(3717016,'movie','After the Ball','After the Ball',1,2015,NULL,'101'),(3717068,'movie','Court','Court',1,2014,NULL,'116'),(3717242,'movie','Out in the Night','Out in the Night',1,2014,NULL,'75'),(3717252,'movie','Underworld: Blood Wars','Underworld: Blood Wars',1,2016,NULL,'91'),(3717490,'movie','Power Rangers','Power Rangers',1,2017,NULL,'124'),(3717532,'movie','The Last: Naruto the Movie','The Last: Naruto the Movie',1,2014,NULL,'112'),(3720788,'movie','The Disappearance of Eleanor Rigby: Her','The Disappearance of Eleanor Rigby: Her',1,2013,NULL,'100'),(3720802,'movie','Eat Your Bones','Mange tes morts - Tu ne diras point',1,2014,NULL,'94'),(3721936,'movie','American Honey','American Honey',1,2016,NULL,'163'),(3721954,'movie','Maudie','Maudie',1,2016,NULL,'115'),(3722070,'movie','The Lady in the Van','The Lady in the Van',1,2015,NULL,'104'),(3726220,'movie','Coconut, the Little Dragon','Der kleine Drache Kokosnuss',1,2014,NULL,'83'),(3726682,'movie','Nayola','Nayola',1,2022,NULL,'90'),(3726704,'movie','Experimenter','Experimenter',1,2015,NULL,'98'),(3727982,'movie','Ava\'s Possessions','Ava\'s Possessions',1,2015,NULL,'89'),(3729920,'movie','The Disappearance of Eleanor Rigby: Them','The Disappearance of Eleanor Rigby: Them',1,2014,NULL,'123'),(3731562,'movie','Kong: Skull Island','Kong: Skull Island',1,2017,NULL,'118'),(3735246,'movie','Bajirao Mastani','Bajirao Mastani',1,2015,NULL,'158'),(3741700,'movie','Godzilla: King of the Monsters','Godzilla: King of the Monsters',1,2019,NULL,'132'),(3741834,'movie','Lion','Lion',1,2016,NULL,'118'),(3742378,'movie','The Second Mother','Que Horas Ela Volta?',1,2015,NULL,'112'),(3748076,'movie','The Damned Thing','The Damned Thing',1,2014,NULL,'87'),(3748172,'movie','Gerald\'s Game','Gerald\'s Game',1,2017,NULL,'103'),(3748528,'movie','Rogue One: A Star Wars Story','Rogue One',1,2016,NULL,'133'),(3749900,'tvSeries','Gotham','Gotham',1,2014,2019,'42'),(3750872,'movie','The Wife','The Wife',1,2017,NULL,'99'),(3756788,'movie','Our Little Sister','Umimachi Diary',1,2015,NULL,'127'),(3757648,'movie','Land Legs','Tempête',1,2015,NULL,'89'),(3760922,'movie','My Big Fat Greek Wedding 2','My Big Fat Greek Wedding 2',1,2016,NULL,'94'),(3764966,'tvMovie','Teen Beach 2','Teen Beach 2',1,2015,NULL,'104'),(3766394,'movie','Hello, My Name Is Doris','Hello, My Name Is Doris',1,2015,NULL,'90'),(3774114,'movie','Snowden','Snowden',1,2016,NULL,'134'),(3774802,'movie','Pandemic','Pandemic',1,2016,NULL,'91'),(3775086,'movie','They Call Me Jeeg Robot','Lo chiamavano Jeeg Robot',1,2015,NULL,'112'),(3777462,'movie','Wir sind die Neuen','Wir sind die Neuen',1,2014,NULL,'91'),(3778644,'movie','Solo: A Star Wars Story','Solo: A Star Wars Story',1,2018,NULL,'135'),(3783958,'movie','La La Land','La La Land',1,2016,NULL,'128'),(3794354,'movie','Sonic the Hedgehog','Sonic the Hedgehog',1,2020,NULL,'99'),(3797512,'movie','Barb and Star Go to Vista Del Mar','Barb and Star Go to Vista Del Mar',1,2021,NULL,'107'),(3797868,'movie','The Choice','The Choice',1,2016,NULL,'111'),(3799232,'movie','The Kissing Booth','The Kissing Booth',1,2018,NULL,'105'),(3799694,'movie','The Nice Guys','The Nice Guys',1,2016,NULL,'116'),(3800012,'movie','Near Death Experience','Near Death Experience',1,2014,NULL,'87'),(3801372,'movie','The Steps','The Steps',1,2015,NULL,'100'),(3804984,'short','Mike and I','Mike and I',1,2014,NULL,'27'),(3811906,'movie','Malignant','Malignant',1,2021,NULL,'111'),(3812402,'movie','How to Steal a Dog','Gaeleul hoomchineun wanbyeokhan bangbeob',1,2014,NULL,'109'),(3817188,'movie','My Good Hans','Milyy Khans, dorogoy Pyotr',1,2015,NULL,'110'),(3819668,'movie','Dragon Ball Z: Resurrection \"F\"','Dragon Ball Z: Doragon bôru Z - Fukkatsu no \'F\'',1,2015,NULL,'93'),(3824458,'movie','Tangerine','Tangerine',1,2015,NULL,'88'),(3829266,'movie','The Predator','The Predator',1,2018,NULL,'107'),(3829378,'movie','Stephanie','Stephanie',1,2017,NULL,'86'),(3829920,'movie','Only the Brave','Only the Brave',1,2017,NULL,'134'),(3832158,'movie','Der kleine Medicus - Geheimnisvolle Mission im Körper','Der kleine Medicus - Geheimnisvolle Mission im Körper',1,2014,NULL,'78'),(3833474,'movie','Never Let Go','Never Let Go',1,2015,NULL,'93'),(3837248,'movie','Love Live! The School Idol Movie','Love Live! The School Idol Movie',1,2015,NULL,'99'),(3838728,'movie','Bang Gang: A Modern Love Story','Bang Gang (une histoire d\'amour moderne)',1,2015,NULL,'98'),(3838802,'movie','Blood Stripe','Blood Stripe',1,2016,NULL,'92'),(3838992,'movie','Yoga Hosers','Yoga Hosers',1,2016,NULL,'88'),(3840898,'movie','The Tempest','The Tempest',1,2014,NULL,'169'),(3844362,'movie','The Overnight','The Overnight',1,2015,NULL,'79'),(3844962,'movie','Dead Body','Dead Body',1,2017,NULL,'85'),(3845670,'movie','Seoul Station','Seoulyeok',1,2016,NULL,'92'),(3846674,'movie','To All the Boys I\'ve Loved Before','To All the Boys I\'ve Loved Before',1,2018,NULL,'99'),(3850214,'movie','Dope','Dope',1,2015,NULL,'103'),(3850590,'movie','Krampus','Krampus',1,2015,NULL,'98'),(3854234,'movie','The Boss, Anatomy of a Crime','El patrón, radiografía de un crimen',1,2014,NULL,'90'),(3856042,'tvMovie','Bad Hair Day','Bad Hair Day',1,2015,NULL,'87'),(3856638,'movie','Gekijouban Hakuouki: Daiisshou Kyouto ranbu','Gekijôban: Hakuôki: Daiisshô Kyoto ranbu',1,2013,NULL,'95'),(3859272,'movie','Tragedy Girls','Tragedy Girls',1,2017,NULL,'98'),(3859304,'movie','The Bronze','The Bronze',1,2015,NULL,'100'),(3862750,'movie','The Perfect Guy','The Perfect Guy',1,2015,NULL,'100'),(3864056,'movie','The Goldfinch','The Goldfinch',1,2019,NULL,'149'),(3874544,'movie','The Boss Baby','The Boss Baby',1,2017,NULL,'97'),(3877674,'movie','Men & Chicken','Mænd & høns',1,2015,NULL,'104'),(3878542,'video','Justice League: Throne of Atlantis','Justice League: Throne of Atlantis',1,2015,NULL,'72'),(3882074,'movie','The Eagle Huntress','The Eagle Huntress',1,2016,NULL,'87'),(3882082,'movie','The Boy','The Boy',1,2016,NULL,'97'),(3887208,'movie','The Mad Ones','The Mad Ones',1,2017,NULL,'95'),(3890160,'movie','Baby Driver','Baby Driver',1,2017,NULL,'113'),(3892172,'movie','Leave No Trace','Leave No Trace',1,2018,NULL,'109'),(3893280,'movie','The Ticket','The Ticket',1,2016,NULL,'97'),(3896100,'movie','Capture the Flag','Atrapa la bandera',1,2015,NULL,'94'),(3896198,'movie','Guardians of the Galaxy Vol. 2','Guardians of the Galaxy Vol. 2',1,2017,NULL,'136'),(3896738,'movie','Hounds of Love','Hounds of Love',1,2016,NULL,'108'),(3899796,'tvMovie','Sharknado 3: Oh Hell No!','Sharknado 3: Oh Hell No!',1,2015,NULL,'93'),(3901340,'movie','Bigfoot: Blood Trap','Bigfoot: Blood Trap',1,2017,NULL,'95'),(3901826,'movie','The Breadwinner','The Breadwinner',1,2017,NULL,'94'),(3904770,'movie','August Winds','Ventos de Agosto',1,2014,NULL,'77'),(3906082,'movie','Mary Shelley','Mary Shelley',1,2017,NULL,'120'),(3907584,'movie','All the Bright Places','All the Bright Places',1,2020,NULL,'107'),(3908142,'movie','The Love Witch','The Love Witch',1,2016,NULL,'120'),(3915174,'movie','Puss in Boots: The Last Wish','Puss in Boots: The Last Wish',1,2022,NULL,'102'),(3921852,'movie','Barbie and the Secret Door','Barbie and the Secret Door',1,2014,NULL,'81'),(3922798,'movie','The Siege of Jadotville','The Siege of Jadotville',1,2016,NULL,'108'),(3922818,'movie','The Space Between Us','The Space Between Us',1,2017,NULL,'120'),(3949660,'movie','Teenage Mutant Ninja Turtles: Out of the Shadows','Teenage Mutant Ninja Turtles: Out of the Shadows',1,2016,NULL,'112'),(3953626,'movie','A Country Called Home','A Country Called Home',1,2015,NULL,'90'),(3958098,'movie','Sand Dollars','Dólares de arena',1,2014,NULL,'84'),(3958780,'movie','Equity','Equity',1,2016,NULL,'100'),(3960412,'movie','Popstar: Never Stop Never Stopping','Popstar: Never Stop Never Stopping',1,2016,NULL,'87'),(3963816,'movie','Marauders','Marauders',1,2016,NULL,'107'),(3966404,'movie','Mustang','Mustang',1,2015,NULL,'97'),(3967856,'movie','Okja','Okja',1,2017,NULL,'120'),(3969208,'movie','Trust Fund','Trust Fund',1,2016,NULL,'107'),(3971202,'movie','Paradise','Le paradis',1,2014,NULL,'68'),(3973012,'movie','Women Who Kill','Women Who Kill',1,2016,NULL,'93'),(3977428,'movie','John From','John From',1,2015,NULL,'95'),(3977462,'movie','Full Out','Full Out',1,2015,NULL,'90'),(3978720,'movie','4th Man Out','Fourth Man Out',1,2015,NULL,'86'),(3981858,'tvEpisode','Harter Brocken','Harter Brocken',1,2015,NULL,'87'),(3983072,'movie','Ein Geschenk der Götter','Ein Geschenk der Götter',1,2014,NULL,'102'),(3986820,'movie','The Endless','The Endless',1,2017,NULL,'111'),(3991412,'movie','The 9th Life of Louis Drax','The 9th Life of Louis Drax',1,2016,NULL,'108'),(3992752,'movie','Women Aren\'t Funny','Women Aren\'t Funny',1,2014,NULL,'79'),(3993894,'movie','Queen of Earth','Queen of Earth',1,2015,NULL,'90'),(4000768,'movie','The Art Dealer','L\'antiquaire',1,2015,NULL,'93'),(4003440,'movie','The House That Jack Built','The House That Jack Built',1,2018,NULL,'152'),(4003774,'movie','Meet the Mormons','Meet the Mormons',1,2014,NULL,'78'),(4005402,'movie','Colonia','Colonia',1,2015,NULL,'110'),(4006302,'movie','Level 16','Level 16',1,2018,NULL,'102'),(4007248,'movie','Hurricane Bianca','Hurricane Bianca',1,2016,NULL,'84'),(4009278,'movie','Intruders','Shut In',1,2015,NULL,'90'),(4010918,'movie','The Throne','Sado',1,2015,NULL,'125'),(4016934,'movie','The Handmaiden','Ah-ga-ssi',1,2016,NULL,'145'),(4026600,'movie','Four Warriors','The Four Warriors',1,2015,NULL,'92'),(4028464,'movie','The Innocents','De uskyldige',1,2021,NULL,'117'),(4030600,'movie','The Bye Bye Man','The Bye Bye Man',1,2017,NULL,'96'),(4034228,'movie','Manchester by the Sea','Manchester by the Sea',1,2016,NULL,'137'),(4034354,'movie','Swiss Army Man','Swiss Army Man',1,2016,NULL,'97'),(4042818,'movie','The Death & Life of John F. Donovan','The Death & Life of John F. Donovan',1,2018,NULL,'123'),(4044364,'movie','Citizenfour','Citizenfour',1,2014,NULL,'114'),(4046784,'movie','Maze Runner: The Scorch Trials','Maze Runner: The Scorch Trials',1,2015,NULL,'131'),(4048272,'movie','Toni Erdmann','Toni Erdmann',1,2016,NULL,'162'),(4052882,'movie','The Shallows','The Shallows',1,2016,NULL,'86'),(4056574,'tvEpisode','The Quiche of Death','The Quiche of Death',1,2014,NULL,'90'),(4056738,'movie','Do You Believe?','Do You Believe?',1,2015,NULL,'120'),(4060576,'tvMovie','Lavalantula','Lavalantula',1,2015,NULL,'83'),(4062536,'movie','Green Room','Green Room',1,2015,NULL,'95'),(4065552,'movie','The Unknown Soldier','Tuntematon sotilas',1,2017,NULL,'180'),(4069042,'movie','Anna Unbound','Anna Unbound',1,2015,NULL,'89'),(4073790,'movie','The Darkest Minds','The Darkest Minds',1,2018,NULL,'104'),(4074928,'movie','Realive','Realive',1,2016,NULL,'112'),(4080768,'movie','Summertime','La belle saison',1,2015,NULL,'105'),(4082644,'movie','Canaries','Canaries',1,2017,NULL,'84'),(4084744,'movie','Battle for Sevastopol','Bitva za Sevastopol',1,2015,NULL,'110'),(4085084,'movie','Disorder','Maryland',1,2015,NULL,'98'),(4093680,'movie','My Skinny Sister','Min lilla syster',1,2015,NULL,'95'),(4094724,'movie','The Purge: Election Year','The Purge: Election Year',1,2016,NULL,'108'),(4104054,'movie','Dad\'s Army','Dad\'s Army',1,2016,NULL,'100'),(4108134,'tvMiniSeries','London Spy','London Spy',1,2015,2015,'60'),(4114744,'movie','Whisper If I Forget','Unutursam Fisilda',1,2014,NULL,'118'),(4116284,'movie','The Lego Batman Movie','The Lego Batman Movie',1,2017,NULL,'104'),(4120176,'movie','Things to Come','L\'avenir',1,2016,NULL,'102'),(4123430,'movie','Fantastic Beasts: The Crimes of Grindelwald','Fantastic Beasts: The Crimes of Grindelwald',1,2018,NULL,'134'),(4123432,'movie','Fantastic Beasts: The Secrets of Dumbledore','Fantastic Beasts: The Secrets of Dumbledore',1,2022,NULL,'142'),(4125300,'movie','The Murder Case of Hana & Alice','Hana to Arisu satsujin jiken',1,2015,NULL,'100'),(4126476,'movie','After','After',1,2019,NULL,'105'),(4126568,'movie','Open Water 3: Cage Dive','Open Water 3: Cage Dive',1,2017,NULL,'80'),(4131800,'movie','My Little Pony: The Movie','My Little Pony: The Movie',1,2017,NULL,'99'),(4136084,'movie','Florence Foster Jenkins','Florence Foster Jenkins',1,2016,NULL,'111'),(4139124,'movie','Keanu','Keanu',1,2016,NULL,'100'),(4139588,'movie','Polar','Polar',1,2019,NULL,'118'),(4139928,'movie','The Legend of Maula Jatt','The Legend of Maula Jatt',1,2022,NULL,'153'),(4144190,'movie','Wiener-Dog','Wiener-Dog',1,2016,NULL,'88'),(4144332,'movie','Deidra & Laney Rob a Train','Deidra & Laney Rob a Train',1,2017,NULL,'92'),(4145304,'movie','Unexpected','Unexpected',1,2015,NULL,'90'),(4145324,'video','Bound','Bound',1,2015,NULL,'91'),(4150316,'movie','Frozen in Time','Frozen in Time',1,2014,NULL,'46'),(4153324,'movie','Drifters','Tjuvheder',1,2015,NULL,'92'),(4154664,'movie','Captain Marvel','Captain Marvel',1,2019,NULL,'123'),(4154756,'movie','Avengers: Infinity War','Avengers: Infinity War',1,2018,NULL,'149'),(4154796,'movie','Avengers: Endgame','Avengers: Endgame',1,2019,NULL,'181'),(4157510,'movie','For Here or to Go?','For Here or to Go?',1,2015,NULL,'105'),(4158096,'movie','Free Fire','Free Fire',1,2016,NULL,'91'),(4158876,'movie','Other People','Other People',1,2016,NULL,'97'),(4160708,'movie','Don\'t Breathe','Don\'t Breathe',1,2016,NULL,'88'),(4171032,'short','World of Tomorrow','World of Tomorrow',1,2015,NULL,'17'),(4171544,'short','Predator Dark Ages','Predator: Dark Ages',1,2015,NULL,'27'),(4172430,'movie','13 Hours','13 Hours',1,2016,NULL,'144'),(4178092,'movie','The Gift','The Gift',1,2015,NULL,'108'),(4180032,'tvMovie','Christmas Under Wraps','Christmas Under Wraps',1,2014,NULL,'88'),(4180560,'movie','Otherhood','Otherhood',1,2019,NULL,'100'),(4183692,'movie','Woodlawn','Woodlawn',1,2015,NULL,'123'),(4191054,'movie','Strange Magic','Strange Magic',1,2015,NULL,'99'),(4191580,'movie','Meet the Blacks','Meet the Blacks',1,2016,NULL,'94'),(4191702,'movie','Norman','Norman: The Moderate Rise and Tragic Fall of a New York Fixer',1,2016,NULL,'118'),(4195368,'movie','Flying Colors','Birigyaru',1,2015,NULL,'117'),(4196450,'movie','The Birth of a Nation','The Birth of a Nation',1,2016,NULL,'120'),(4196776,'movie','Jason Bourne','Jason Bourne',1,2016,NULL,'123'),(4196848,'movie','Mr. Church','Mr. Church',1,2016,NULL,'104'),(4197642,'movie','A Date for Mad Mary','A Date for Mad Mary',1,2016,NULL,'82'),(4209788,'movie','Molly\'s Game','Molly\'s Game',1,2017,NULL,'140'),(4211044,'movie','Adult Life Skills','Adult Life Skills',1,2016,NULL,'96'),(4211680,'short','I Call It Love','I Call It Love',1,2014,NULL,'9'),(4216934,'movie','Frau Müller muss weg!','Frau Müller muss weg!',1,2015,NULL,'83'),(4218572,'movie','Widows','Widows',1,2018,NULL,'129'),(4218696,'movie','The Wall','The Wall',1,2017,NULL,'88'),(4225622,'movie','The Babysitter','The Babysitter',1,2017,NULL,'85'),(4226388,'movie','Victoria','Victoria',1,2015,NULL,'138'),(4235644,'movie','The Empire of Corpses','Shisha no teikoku',1,2015,NULL,'120'),(4238858,'movie','The Fits','The Fits',1,2015,NULL,'72'),(4244994,'movie','The Last Duel','The Last Duel',1,2021,NULL,'152'),(4244998,'movie','Alpha','Alpha',1,2018,NULL,'96'),(4247682,'movie','All Girls Weekend','All Girls Weekend',1,2016,NULL,'85'),(4247740,'movie','The Three Es','The Three Es',1,2015,NULL,'88'),(4255304,'movie','The Void','The Void',1,2016,NULL,'90'),(4257940,'movie','The Lost Husband','The Lost Husband',1,2020,NULL,'109'),(4258698,'movie','Southside with You','Southside with You',1,2016,NULL,'84'),(4259780,'short','Fantasmas','Fantasmas',1,2010,NULL,'11'),(4262174,'movie','First Girl I Loved','First Girl I Loved',1,2016,NULL,'90'),(4262980,'movie','Shin Godzilla','Shin Gojira',1,2016,NULL,'120'),(4263482,'movie','The Witch','The VVitch: A New-England Folktale',1,2015,NULL,'92'),(4264406,'tvMovie','Mass Extinction: Life at the Brink','Mass Extinction: Life at the Brink',1,2014,NULL,'46'),(4265878,'movie','Dora or The Sexual Neuroses of Our Parents','Dora oder Die sexuellen Neurosen unserer Eltern',1,2015,NULL,'88'),(4270492,'tvSeries','Billions','Billions',1,2016,2023,'60'),(4270516,'movie','Grandma','Grandma',1,2015,NULL,'79'),(4273292,'movie','Under the Shadow','Under the Shadow',1,2016,NULL,'84'),(4273562,'movie','Yu-Gi-Oh!: The Dark Side of Dimensions','Yu-Gi-Oh!: The Dark Side of Dimensions',1,2016,NULL,'130'),(4273800,'movie','The Good Nurse','The Good Nurse',1,2022,NULL,'121'),(4277264,'movie','Ma révolution','Ma révolution',1,2016,NULL,'80'),(4281724,'movie','Terrifier','Terrifier',1,2016,NULL,'85'),(4287320,'movie','The Circle','The Circle',1,2017,NULL,'110'),(4291590,'movie','Évolution','Évolution',1,2015,NULL,'81'),(4298958,'movie','Sweet Bean','An',1,2015,NULL,'113'),(4298966,'movie','The Murder Pact','The Murder Pact',1,2015,NULL,'85'),(4299406,'movie','Last Night','A Noite da Virada',1,2014,NULL,'90'),(4302938,'movie','Kubo and the Two Strings','Kubo and the Two Strings',1,2016,NULL,'101'),(4305148,'movie','Lovesong','Lovesong',1,2016,NULL,'84'),(4308714,'movie','Other Halves','Other Halves',1,2015,NULL,'90'),(4319698,'movie','Little Big Master','Ng goh siu hai dik hau jeung',1,2015,NULL,'112'),(4322180,'movie','L\'età d\'oro','L\'età d\'oro',1,2016,NULL,'94'),(4326444,'movie','Julieta','Julieta',1,2016,NULL,'99'),(4331970,'movie','Being 17','Quand on a 17 ans',1,2016,NULL,'114'),(4341532,'movie','The Phoenix Incident','The Phoenix Incident',1,2015,NULL,'81'),(4341582,'movie','Queen of Katwe','Queen of Katwe',1,2016,NULL,'124'),(4341864,'movie','The Memory of Water','La Memoria del Agua',1,2015,NULL,'88'),(4348012,'movie','Mayhem','Mayhem',1,2017,NULL,'86'),(4357394,'movie','Tau','Tau',1,2018,NULL,'97'),(4359416,'movie','Taxi','Taxi',1,2015,NULL,'82'),(4361050,'movie','Ouija: Origin of Evil','Ouija: Origin of Evil',1,2016,NULL,'99'),(4364194,'movie','The Peanut Butter Falcon','The Peanut Butter Falcon',1,2019,NULL,'97'),(4366830,'tvMovie','Grease Live!','Grease Live!',1,2016,NULL,'140'),(4370784,'movie','The Innocents','Les innocentes',1,2016,NULL,'115'),(4382872,'movie','Extraction','Extraction',1,2015,NULL,'92'),(4383594,'movie','Nine Lives','Nine Lives',1,2016,NULL,'87'),(4385888,'movie','20th Century Women','20th Century Women',1,2016,NULL,'119'),(4392438,'movie','The Passion of Augustine','La passion d\'Augustine',1,2015,NULL,'103'),(4392726,'movie','Office','Hua li shang ban zu',1,2015,NULL,'119'),(4392770,'movie','Always Shine','Always Shine',1,2016,NULL,'85'),(4396662,'movie','Liberty\'s Secret','Liberty\'s Secret',1,2016,NULL,'95'),(4411596,'movie','My Cousin Rachel','My Cousin Rachel',1,2017,NULL,'106'),(4420110,'tvMovie','Invisible Sister','Invisible Sister',1,2015,NULL,'80'),(4425152,'movie','Girls Lost','Pojkarna',1,2015,NULL,'106'),(4425200,'movie','John Wick: Chapter 2','John Wick: Chapter 2',1,2017,NULL,'122'),(4426738,'movie','Animals','Animals',1,2019,NULL,'109'),(4428788,'movie','Marguerite','Marguerite',1,2015,NULL,'129'),(4428814,'movie','The Measure of a Man','La loi du marché',1,2015,NULL,'91'),(4437640,'video','Batman Unlimited: Animal Instincts','Batman Unlimited: Animal Instincts',1,2015,NULL,'78'),(4438848,'movie','Neighbors 2: Sorority Rising','Neighbors 2: Sorority Rising',1,2016,NULL,'92'),(4439120,'movie','Tag','Riaru onigokko',1,2015,NULL,'85'),(4443658,'movie','Better Watch Out','Better Watch Out',1,2016,NULL,'89'),(4450396,'movie','My Little Pony: Equestria Girls - Friendship Games','My Little Pony: Equestria Girls - Friendship Games',1,2015,NULL,'72'),(4456850,'tvMovie','Adventures in Babysitting','Adventures in Babysitting',1,2016,NULL,'105'),(4465564,'movie','Fifty Shades Darker','Fifty Shades Darker',1,2017,NULL,'118'),(4466872,'movie','Ogres','Les ogres',1,2015,NULL,'142'),(4466936,'movie','Blind Date','Un peu, beaucoup, aveuglément!',1,2015,NULL,'90'),(4468634,'movie','Certain Women','Certain Women',1,2016,NULL,'107'),(4468740,'movie','Paddington 2','Paddington 2',1,2017,NULL,'103'),(4472596,'tvMovie','The Hollow','The Hollow',1,2015,NULL,'85'),(4477292,'movie','Cosmos','Cosmos',1,2019,NULL,'128'),(4477536,'movie','Fifty Shades Freed','Fifty Shades Freed',1,2018,NULL,'105'),(4481414,'movie','Gifted','Gifted',1,2017,NULL,'101'),(4485178,'movie','I Am a Soldier','Je suis un soldat',1,2015,NULL,'96'),(4489160,'movie','You\'re My Boss','You\'re My Boss',1,2015,NULL,'116'),(4500922,'movie','Maze Runner: The Death Cure','Maze Runner: The Death Cure',1,2018,NULL,'143'),(4501454,'movie','The Meddler','The Meddler',1,2015,NULL,'103'),(4503598,'movie','Emelie','Emelie',1,2015,NULL,'82'),(4513316,'movie','Novitiate','Novitiate',1,2017,NULL,'123'),(4513674,'movie','Café Society','Café Society',1,2016,NULL,'96'),(4513678,'movie','Ghostbusters: Afterlife','Ghostbusters: Afterlife',1,2021,NULL,'124'),(4515684,'movie','The Treasure','Comoara',1,2015,NULL,'89'),(4520364,'movie','Morgan','Morgan',1,2016,NULL,'92'),(4520988,'movie','Frozen II','Frozen II',1,2019,NULL,'103'),(4530422,'movie','Overlord','Overlord',1,2018,NULL,'110'),(4532826,'movie','Robin Hood','Robin Hood',1,2018,NULL,'116'),(4540710,'movie','Miss Sloane','Miss Sloane',1,2016,NULL,'132'),(4547056,'movie','The Girl with All the Gifts','The Girl with All the Gifts',1,2016,NULL,'111'),(4547194,'movie','I Kill Giants','I Kill Giants',1,2017,NULL,'106'),(4550098,'movie','Nocturnal Animals','Nocturnal Animals',1,2016,NULL,'116'),(4551882,'movie','King Dave','King Dave',1,2016,NULL,'99'),(4552196,'movie','Hiraeth','Hiraeth',1,2021,NULL,NULL),(4555426,'movie','Darkest Hour','Darkest Hour',1,2017,NULL,'125'),(4566758,'movie','Mulan','Mulan',1,2020,NULL,'115'),(4569374,'movie','Woodland','Woodland',1,2018,NULL,'87'),(4575576,'movie','Christopher Robin','Christopher Robin',1,2018,NULL,'104'),(4576612,'movie','Comment c\'est loin','Comment c\'est loin',1,2015,NULL,'90'),(4593060,'movie','Pinocchio','Pinocchio',1,2022,NULL,'105'),(4594834,'movie','Chi-Raq','Chi-Raq',1,2015,NULL,'127'),(4595882,'movie','Can You Ever Forgive Me?','Can You Ever Forgive Me?',1,2018,NULL,'106'),(4614584,'movie','Purple Hearts','Purple Hearts',1,2022,NULL,'122'),(4621872,'movie','Like Crazy','La pazza gioia',1,2016,NULL,'116'),(4622512,'movie','Battle of the Sexes','Battle of the Sexes',1,2017,NULL,'121'),(4624424,'movie','Storks','Storks',1,2016,NULL,'87'),(4627404,'video','xxxHolic Rô Adayume','xxxHolic Rô Adayume',1,2011,NULL,NULL),(4630562,'movie','The Fate of the Furious','The Fate of the Furious',1,2017,NULL,'136'),(4633694,'movie','Spider-Man: Into the Spider-Verse','Spider-Man: Into the Spider-Verse',1,2018,NULL,'117'),(4644822,'tvMiniSeries','Electra Woman and Dyna Girl','Electra Woman and Dyna Girl',1,2016,2016,'81'),(4645330,'movie','Denial','Denial',1,2016,NULL,'109'),(4645368,'movie','It\'s Only the End of the World','Juste la fin du monde',1,2016,NULL,'97'),(4648786,'movie','Harriet','Harriet',1,2019,NULL,'125'),(4649416,'movie','Almost Christmas','Almost Christmas',1,2016,NULL,'111'),(4649466,'movie','Kingsman: The Golden Circle','Kingsman: The Golden Circle',1,2017,NULL,'141'),(4651520,'movie','Bad Moms','Bad Moms',1,2016,NULL,'100'),(4652650,'movie','Please Stand By','Please Stand By',1,2017,NULL,'93'),(4666726,'movie','Christine','Christine',1,2016,NULL,'119'),(4667788,'movie','Greetings from Fukushima','Grüsse aus Fukushima',1,2016,NULL,'108'),(4669296,'movie','Lords of Chaos','Lords of Chaos',1,2018,NULL,'118'),(4669788,'movie','On the Basis of Sex','On the Basis of Sex',1,2018,NULL,'120'),(4669986,'movie','Loving','Loving',1,2016,NULL,'123'),(4680182,'movie','Colossal','Colossal',1,2016,NULL,'109'),(4680196,'movie','Planetarium','Planetarium',1,2016,NULL,'105'),(4682266,'movie','The New Mutants','The New Mutants',1,2020,NULL,'94'),(4682708,'movie','We Are the Flesh','Tenemos la carne',1,2016,NULL,'79'),(4682786,'movie','Collateral Beauty','Collateral Beauty',1,2016,NULL,'97'),(4682804,'movie','Lucy in the Sky','Lucy in the Sky',1,2019,NULL,'124'),(4685762,'movie','The Craft: Legacy','The Craft: Legacy',1,2020,NULL,'97'),(4686844,'movie','The Death of Stalin','The Death of Stalin',1,2017,NULL,'107'),(4687108,'movie','In the Tall Grass','In the Tall Grass',1,2019,NULL,'101'),(4691166,'movie','7 Letters','7 Letters',1,2015,NULL,'116'),(4692234,'movie','Arabian Nights: Volume 2 - The Desolate One','As Mil e Uma Noites - Volume 2: O Desolado',1,2015,NULL,'131'),(4693358,'movie','OtherLife','OtherLife',1,2017,NULL,'96'),(4693588,'movie','Fahim','Fahim',1,2019,NULL,'107'),(4695012,'movie','It Comes at Night','It Comes at Night',1,2017,NULL,'91'),(4698584,'movie','Neruda','Neruda',1,2016,NULL,'107'),(4698684,'movie','Hunt for the Wilderpeople','Hunt for the Wilderpeople',1,2016,NULL,'101'),(4699388,'movie','Up for Love','Un homme à la hauteur',1,2016,NULL,'98'),(4701182,'movie','Bumblebee','Bumblebee',1,2018,NULL,'114'),(4701724,'movie','Early Man','Early Man',1,2018,NULL,'89'),(4703048,'movie','6 Days','6 Days',1,2017,NULL,'94'),(4714032,'movie','Battledream Chronicle','Battledream Chronicle',1,2015,NULL,'108'),(4714568,'movie','The Young Offenders','The Young Offenders',1,2016,NULL,'83'),(4714782,'movie','Personal Shopper','Personal Shopper',1,2016,NULL,'105'),(4717402,'movie','MFKZ','Mutafukaz',1,2017,NULL,'94'),(4718770,'tvMovie','The Wiz Live!','The Wiz Live!',1,2015,NULL,'111'),(4720702,'movie','Bushwick','Bushwick',1,2017,NULL,'94'),(4729430,'movie','Klaus','Klaus',1,2019,NULL,'96'),(4729896,'movie','Apostasy','Apostasy',1,2017,NULL,'95'),(4730986,'movie','Divines','Divines',1,2016,NULL,'105'),(4731136,'movie','A Cure for Wellness','A Cure for Wellness',1,2016,NULL,'146'),(4731504,'movie','Dofus: Book 1 - Julith','Dofus - Livre 1: Julith',1,2015,NULL,'100'),(4733624,'movie','Fatherhood','Fatherhood',1,2021,NULL,'109'),(4738174,'movie','Bon Cop Bad Cop 2','Bon Cop Bad Cop 2',1,2017,NULL,'126'),(4738360,'movie','The Last King','Birkebeinerne',1,2016,NULL,'99'),(4738802,'movie','That\'s Not Me','That\'s Not Me',1,2017,NULL,'85'),(4746506,'movie','Sweet Dreams','Fai bei sogni',1,2016,NULL,'131'),(4758646,'movie','War Machine','War Machine',1,2017,NULL,'122'),(4761112,'movie','The Mauritanian','The Mauritanian',1,2021,NULL,'129'),(4765284,'movie','Pitch Perfect 3','Pitch Perfect 3',1,2017,NULL,'93'),(4766604,'movie','Highway to Hellas','Highway to Hellas',1,2015,NULL,'88'),(4767274,'tvMovie','Dolly Parton\'s Coat of Many Colors','Dolly Parton\'s Coat of Many Colors',1,2015,NULL,'81'),(4777008,'movie','Maleficent: Mistress of Evil','Maleficent: Mistress of Evil',1,2019,NULL,'119'),(4779026,'movie','I Had a Bloody Good Time at House Harker','I Had a Bloody Good Time at House Harker',1,2016,NULL,'80'),(4779682,'movie','The Meg','The Meg',1,2018,NULL,'113'),(4780834,'short','The Reason I Shop Online','The Reason I Shop Online',1,2015,NULL,'4'),(4786282,'movie','Lights Out','Lights Out',1,2016,NULL,'81'),(4788934,'movie','The Guardian Brothers','Xiao men shen',1,2015,NULL,'103'),(4794188,'tvMovie','Samurai Warrior Queens','Samurai Warrior Queens',1,2015,NULL,'50'),(4795124,'movie','How to Be a Latin Lover','How to Be a Latin Lover',1,2017,NULL,'115'),(4798836,'movie','Bad Hair','Bad Hair',1,2020,NULL,'102'),(4799050,'movie','Rough Night','Rough Night',1,2017,NULL,'101'),(4800178,'movie','Verden venter','Verden venter',1,2014,NULL,'112'),(4805316,'movie','A Dark Song','A Dark Song',1,2016,NULL,'100'),(4807408,'movie','The Best of Enemies','The Best of Enemies',1,2019,NULL,'133'),(4807950,'movie','Cherry Pop','Cherry Pop',1,2017,NULL,'79'),(4823434,'movie','Tigers Are Not Afraid','Vuelven',1,2017,NULL,'83'),(4824302,'movie','Mother\'s Day','Mother\'s Day',1,2016,NULL,'118'),(4827558,'movie','High Life','High Life',1,2018,NULL,'113'),(4831420,'tvMovie','Sharknado 4: The 4th Awakens','Sharknado 4: The 4th Awakens',1,2016,NULL,'95'),(4836736,'movie','Nowhere Boys: The Book of Shadows','Nowhere Boys: The Book of Shadows',1,2016,NULL,'80'),(4846232,'movie','Good Time','Good Time',1,2017,NULL,'102'),(4846340,'movie','Hidden Figures','Hidden Figures',1,2016,NULL,'127'),(4853102,'movie','Batman: The Killing Joke','Batman: The Killing Joke',1,2016,NULL,'76'),(4857264,'movie','The Invisible Guest','Contratiempo',1,2016,NULL,'106'),(4858280,'short','Stitcher','Stitcher',1,2015,NULL,'7'),(4858674,'movie','Stargirl','Stargirl',1,2020,NULL,'107'),(4867110,'movie','Swiped','Swiped',1,2018,NULL,'93'),(4869556,'movie','Amores Líquidos','Amores Líquidos',1,2016,NULL,'100'),(4870838,'video','Batman: Bad Blood','Batman: Bad Blood',1,2016,NULL,'72'),(4871980,'movie','The Perfect Match','The Perfect Match',1,2016,NULL,'96'),(4877122,'movie','The Emoji Movie','The Emoji Movie',1,2017,NULL,'86'),(4878482,'movie','Dumplin\'','Dumplin\'',1,2018,NULL,'110'),(4881806,'movie','Jurassic World: Fallen Kingdom','Jurassic World: Fallen Kingdom',1,2018,NULL,'128'),(4895668,'movie','Saint George','São Jorge',1,2016,NULL,'112'),(4895704,'short','Next Stop L.A.','Next Stop L.A.',1,2015,NULL,'4'),(4897214,'short','Timelike','Timelike',1,2015,NULL,'9'),(4899370,'movie','Megan Leavey','Megan Leavey',1,2017,NULL,'116'),(4899406,'movie','Neon Bull','Boi Neon',1,2015,NULL,'101'),(4911940,'movie','Goodbye Berlin','Tschick',1,2016,NULL,'93'),(4912910,'movie','Mission: Impossible - Fallout','Mission: Impossible - Fallout',1,2018,NULL,'147'),(4913966,'movie','The Curse of La Llorona','The Curse of La Llorona',1,2019,NULL,'93'),(4916630,'movie','Just Mercy','Just Mercy',1,2019,NULL,'137'),(4925292,'movie','Lady Bird','Lady Bird',1,2017,NULL,'94'),(4926026,'movie','Cafard','Cafard',1,2015,NULL,'86'),(4950110,'movie','I\'m Not Ashamed','I\'m Not Ashamed',1,2016,NULL,'112'),(4954522,'movie','Raw','Grave',1,2016,NULL,'99'),(4954660,'movie','Detective Conan: The Darkest Nightmare','Meitantei Conan: Junkoku no naitomea',1,2016,NULL,'112'),(4956232,'movie','Seven Sisters','Seven Sisters',1,NULL,NULL,NULL),(4961380,'movie','House on Willow Street','From a House on Willow Street',1,2016,NULL,'90'),(4971344,'movie','The Sisters Brothers','Les frères Sisters',1,2018,NULL,'122'),(4972062,'movie','Don\'t Think Twice','Don\'t Think Twice',1,2016,NULL,'92'),(4972582,'movie','Split','Split',1,2016,NULL,'117'),(4975722,'movie','Moonlight','Moonlight',1,2016,NULL,'111'),(4979652,'movie','The Witness','Wo shi zheng ren',1,2015,NULL,'112'),(4981636,'movie','Middle School: The Worst Years of My Life','Middle School: The Worst Years of My Life',1,2016,NULL,'92'),(4986098,'movie','The Titan','The Titan',1,2018,NULL,'97'),(4991512,'movie','Tramps','Tramps',1,2016,NULL,'82'),(4991906,'movie','Suicide Kale','Suicide Kale',1,2016,NULL,'78'),(4995540,'movie','Being the Ricardos','Being the Ricardos',1,2021,NULL,'131'),(4995790,'movie','The Square','The Square',1,2017,NULL,'151'),(4998632,'movie','Ambulance','Ambulance',1,2022,NULL,'136'),(5001718,'movie','Everything, Everything','Everything, Everything',1,2017,NULL,'96'),(5001754,'movie','Braven','Braven',1,2018,NULL,'94'),(5005684,'movie','Nil Battey Sannata','Nil Battey Sannata',1,2015,NULL,'100'),(5012504,'movie','Injustice','Injustice',1,2021,NULL,'78'),(5013056,'movie','Dunkirk','Dunkirk',1,2017,NULL,'106'),(5016946,'movie','Handsome Devil','Handsome Devil',1,2016,NULL,'95'),(5022298,'tvSeries','Ice Fantasy','Huan Cheng',1,2016,NULL,'44'),(5022702,'movie','Hush','Hush',1,2016,NULL,'82'),(5023260,'movie','The Last Word','The Last Word',1,2017,NULL,'108'),(5027774,'movie','Three Billboards Outside Ebbing, Missouri','Three Billboards Outside Ebbing, Missouri',1,2017,NULL,'115'),(5028340,'movie','Mary Poppins Returns','Mary Poppins Returns',1,2018,NULL,'130'),(5033998,'movie','Charlie\'s Angels','Charlie\'s Angels',1,2019,NULL,'118'),(5034474,'movie','The Assignment','The Assignment',1,2016,NULL,'95'),(5034838,'movie','Godzilla vs. Kong','Godzilla vs. Kong',1,2021,NULL,'113'),(5039088,'movie','The Transfiguration','The Transfiguration',1,2016,NULL,'97'),(5052448,'movie','Get Out','Get Out',1,2017,NULL,'104'),(5057140,'movie','Hold the Dark','Hold the Dark',1,2018,NULL,'125'),(5059406,'movie','I Am the Pretty Thing That Lives in the House','I Am the Pretty Thing That Lives in the House',1,2016,NULL,'89'),(5073620,'movie','Below Her Mouth','Below Her Mouth',1,2016,NULL,'94'),(5073642,'movie','Color Out of Space','Color Out of Space',1,2019,NULL,'111'),(5074352,'movie','Dangal','Dangal',1,2016,NULL,'161'),(5078204,'movie','Two Is a Family','Demain tout commence',1,2016,NULL,'118'),(5083738,'movie','The Favourite','The Favourite',1,2018,NULL,'119'),(5085924,'movie','Wildling','Wildling',1,2018,NULL,'92'),(5091548,'video','Justice League vs. Teen Titans','Justice League vs. Teen Titans',1,2016,NULL,'78'),(5095030,'movie','Ant-Man and the Wasp','Ant-Man and the Wasp',1,2018,NULL,'118'),(5096536,'movie','Heal the Living','Réparer les vivants',1,2016,NULL,'103'),(5097410,'movie','Noelle','Noelle',1,2019,NULL,'100'),(5104604,'movie','Isle of Dogs','Isle of Dogs',1,2018,NULL,'101'),(5105218,'movie','Halal Love','Halal Love',1,2015,NULL,'94'),(5108870,'movie','Morbius','Morbius',1,2022,NULL,'104'),(5109280,'movie','Raya and the Last Dragon','Raya and the Last Dragon',1,2021,NULL,'107'),(5109784,'movie','Mother!','Mother!',1,2017,NULL,'121'),(5113044,'movie','Minions: The Rise of Gru','Minions: The Rise of Gru',1,2022,NULL,'87'),(5117428,'movie','Wild Rose','Wild Rose',1,2018,NULL,'101'),(5117670,'movie','Peter Rabbit','Peter Rabbit',1,2018,NULL,'95'),(5117876,'tvMovie','Descendants 2','Descendants 2',1,2017,NULL,'111'),(5121816,'movie','The Bar','El bar',1,2017,NULL,'102'),(5140878,'movie','Annabelle: Creation','Annabelle: Creation',1,2017,NULL,'109'),(5142400,'movie','The Book of Birdie','The Book of Birdie',1,2017,NULL,'91'),(5143226,'movie','12 Feet Deep','12 Feet Deep',1,2017,NULL,'85'),(5143586,'movie','Swaying Waterlily','Rüzgarda Salinan Nilüfer',1,2016,NULL,'108'),(5144174,'movie','The Dry','The Dry',1,2020,NULL,'117'),(5151570,'movie','Mrs. Harris Goes to Paris','Mrs. Harris Goes to Paris',1,2022,NULL,'115'),(5153952,'movie','Let Me Go','Let Me Go',1,2017,NULL,'101'),(5154288,'movie','Prevenge','Prevenge',1,2016,NULL,'88'),(5155780,'movie','The Discovery','The Discovery',1,2017,NULL,'102'),(5157326,'movie','Western','Western',1,2017,NULL,'121'),(5160938,'movie','Lizzie','Lizzie',1,2018,NULL,'105'),(5164214,'movie','Ocean\'s Eight','Ocean\'s Eight',1,2018,NULL,'110'),(5164432,'movie','Love, Simon','Love, Simon',1,2018,NULL,'110'),(5164438,'movie','The Starling','The Starling',1,2021,NULL,'102'),(5165344,'movie','Rustom','Rustom',1,2016,NULL,'148'),(5168192,'movie','I, Daniel Blake','I, Daniel Blake',1,2016,NULL,'100'),(5173166,'movie','Vier gegen die Bank','Vier gegen die Bank',1,2016,NULL,'96'),(5175450,'movie','Mark Felt: The Man Who Brought Down the White House','Mark Felt: The Man Who Brought Down the White House',1,2017,NULL,'103'),(5176252,'movie','Holy Camp!','La llamada',1,2017,NULL,'108'),(5176580,'movie','Wild Nights with Emily','Wild Nights with Emily',1,2018,NULL,'84'),(5177088,'movie','The Girl in the Spider\'s Web','The Girl in the Spider\'s Web',1,2018,NULL,'115'),(5181830,'movie','Wendell & Wild','Wendell & Wild',1,2022,NULL,'105'),(5198068,'movie','Wolfwalkers','WolfWalkers',1,2020,NULL,'103'),(5208252,'movie','Operation Finale','Operation Finale',1,2018,NULL,'122'),(5221584,'movie','Aquarius','Aquarius',1,2016,NULL,'146'),(5247022,'movie','Paterson','Paterson',1,2016,NULL,'118'),(5247704,'movie','Back to Burgundy','Ce qui nous lie',1,2017,NULL,'113'),(5254640,'movie','Spa Night','Spa Night',1,2016,NULL,'93'),(5265960,'movie','The Untamed','La región salvaje',1,2016,NULL,'98'),(5274066,'movie','Raising the Bar','Raising the Bar',1,2016,NULL,'93'),(5284414,'movie','Girls und Panzer der Film','Girls und Panzer the Movie',1,2015,NULL,'119'),(5285442,'short','Mosquinha','Mosquinha',1,1890,NULL,'1'),(5291792,'movie','Furlough','Furlough',1,2018,NULL,'83'),(5294198,'movie','Catfight','Catfight',1,2016,NULL,'95'),(5294550,'movie','All the Money in the World','All the Money in the World',1,2017,NULL,'132'),(5296086,'movie','Revelator','Revelator',1,2017,NULL,'109'),(5301662,'movie','Marshall','Marshall',1,2017,NULL,'118'),(5304992,'movie','Set It Up','Set It Up',1,2018,NULL,'105'),(5308322,'movie','Happy Death Day','Happy Death Day',1,2017,NULL,'96'),(5311514,'movie','Your Name.','Kimi no na wa.',1,2016,NULL,'106'),(5314190,'movie','Sgt. Stubby: An American Hero','Sgt. Stubby: An American Hero',1,2018,NULL,'84'),(5315212,'movie','Senior Year','Senior Year',1,2022,NULL,'111'),(5316540,'movie','Close','Close',1,2019,NULL,'94'),(5322012,'movie','Wish Upon','Wish Upon',1,2017,NULL,'90'),(5322168,'movie','Snapshots','Snapshots',1,2018,NULL,'95'),(5323662,'movie','A Silent Voice: The Movie','Koe no katachi',1,2016,NULL,'130'),(5328952,'movie','Signature Move','Signature Move',1,2017,NULL,'80'),(5340300,'movie','Lean on Pete','Lean on Pete',1,2017,NULL,'121'),(5340882,'movie','Zoombies','Zoombies',1,2016,NULL,'87'),(5348236,'movie','The Midwife','Sage femme',1,2017,NULL,'117'),(5348774,'movie','The Last Pig','Die letzte Sau',1,2016,NULL,'86'),(5360232,'movie','The Cat and the Moon','The Cat and the Moon',1,2019,NULL,'114'),(5362988,'movie','Wind River','Wind River',1,2017,NULL,'107'),(5363618,'movie','Sound of Metal','Sound of Metal',1,2019,NULL,'120'),(5390504,'movie','Detroit','Detroit',1,2017,NULL,'143'),(5397194,'movie','Anon','Anon',1,2018,NULL,'100'),(5427194,'movie','The Miracle Season','The Miracle Season',1,2018,NULL,'101'),(5433138,'movie','F9: The Fast Saga','F9',1,2021,NULL,'143'),(5433140,'movie','Fast X','Fast X',1,2023,NULL,'141'),(5434870,'movie','Little Sister','Little Sister',1,2016,NULL,'91'),(5437928,'movie','Colette','Colette',1,2018,NULL,'111'),(5439796,'movie','Logan Lucky','Logan Lucky',1,2017,NULL,'118'),(5439812,'movie','Zola','Zola',1,2020,NULL,'86'),(5442430,'movie','Life','Life',1,2017,NULL,'104'),(5447082,'short','Two Fencers','Two Fencers',1,1891,NULL,'1'),(5459794,'short','Buffalo Running','Buffalo Running',1,1883,NULL,'1'),(5461944,'movie','Hotel Mumbai','Hotel Mumbai',1,2018,NULL,'123'),(5462326,'movie','Mom and Dad','Mom and Dad',1,2017,NULL,'86'),(5462602,'movie','The Big Sick','The Big Sick',1,2017,NULL,'120'),(5463162,'movie','Deadpool 2','Deadpool 2',1,2018,NULL,'119'),(5474644,'movie','My Little Pony: Equestria Girls - Legend of Everfree','My Little Pony: Equestria Girls - Legend of Everfree',1,2016,NULL,'73'),(5478478,'movie','Hostiles','Hostiles',1,2017,NULL,'134'),(5492808,'movie','Borga','Borga',1,2021,NULL,'104'),(5493706,'video','Death Race 2050','Death Race 2050',1,2017,NULL,'93'),(5500218,'movie','Samaritan','Samaritan',1,2022,NULL,'102'),(5503686,'movie','Hustlers','Hustlers',1,2019,NULL,'110'),(5511582,'tvSeries','Timeless','Timeless',1,2016,2018,'60'),(5512872,'movie','Be Somebody','Be Somebody',1,2016,NULL,'88'),(5516328,'movie','Ghost Stories','Ghost Stories',1,2017,NULL,'98'),(5519340,'movie','Bright','Bright',1,2017,NULL,'117'),(5521550,'movie','Dirty 30','Dirty 30',1,2016,NULL,'86'),(5523010,'movie','The Nutcracker and the Four Realms','The Nutcracker and the Four Realms',1,2018,NULL,'99'),(5526028,'movie','Dou Kyu Sei: Classmates','Doukyuusei',1,2016,NULL,'60'),(5536736,'movie','The Meyerowitz Stories','The Meyerowitz Stories (New and Selected)',1,2017,NULL,'112'),(5538078,'short','Extremis','Extremis',1,2016,NULL,'24'),(5539054,'movie','You Get Me','You Get Me',1,2017,NULL,'89'),(5540622,'movie','Alexander IRL','Alexander IRL',1,2017,NULL,'82'),(5541240,'movie','To the Bone','To the Bone',1,2017,NULL,'107'),(5553782,'movie','Linefork','Linefork',1,2016,NULL,'96'),(5563334,'movie','The Good Liar','The Good Liar',1,2019,NULL,'109'),(5563932,'movie','Thomas & Friends: The Great Race','Thomas & Friends: The Great Race',1,2016,NULL,'61'),(5571734,'movie','Pink','Pink',1,2016,NULL,'136'),(5571754,'movie','How to Be Really Bad','Meine teuflisch gute Freundin',1,2018,NULL,'100'),(5573580,'short','Cuddler','Cuddler',1,2016,NULL,'15'),(5580036,'movie','I, Tonya','I, Tonya',1,2017,NULL,'119'),(5580266,'movie','The Hate U Give','The Hate U Give',1,2018,NULL,'133'),(5580390,'movie','The Shape of Water','The Shape of Water',1,2017,NULL,'123'),(5592248,'movie','The Beguiled','The Beguiled',1,2017,NULL,'93'),(5595168,'movie','Kingsglaive: Final Fantasy XV','Kingsglaive: Final Fantasy XV',1,2016,NULL,'110'),(5598100,'movie','Patients','Patients',1,2016,NULL,'110'),(5598192,'tvSeries','Before We Die','Innan vi dör',1,2017,2019,'60'),(5606664,'movie','Doctor Sleep','Doctor Sleep',1,2019,NULL,'152'),(5607714,'movie','On Body and Soul','Teströl és lélekröl',1,2017,NULL,'116'),(5610554,'movie','Tully','Tully',1,2018,NULL,'95'),(5613484,'movie','Mid90s','Mid90s',1,2018,NULL,'85'),(5619332,'movie','Life of the Party','Life of the Party',1,2018,NULL,'105'),(5629964,'movie','The Midnight Man','The Midnight Man',1,2016,NULL,'95'),(5633706,'movie','Close-Knit','Karera ga honki de amu toki wa,',1,2017,NULL,'127'),(5635086,'movie','God\'s Own Country','God\'s Own Country',1,2017,NULL,'104'),(5638642,'movie','The Ritual','The Ritual',1,2017,NULL,'94'),(5639446,'movie','Jonathan','Jonathan',1,2018,NULL,'100'),(5649108,'movie','Thoroughbreds','Thoroughbreds',1,2017,NULL,'92'),(5649144,'movie','The Florida Project','The Florida Project',1,2017,NULL,'111'),(5651952,'movie','The Lears','The Lears',1,2017,NULL,'99'),(5657412,'tvEpisode','Production: Avenue Q','Production: Avenue Q',1,2003,NULL,NULL),(5657846,'movie','Daddy\'s Home 2','Daddy\'s Home 2',1,2017,NULL,'100'),(5662932,'movie','Psycho Raman','Raman Raghav 2.0',1,2016,NULL,'133'),(5664684,'tvMovie','Hairspray Live!','Hairspray Live!',1,2016,NULL,'120'),(5665452,'movie','Sun Dogs','Sun Dogs',1,2017,NULL,'94'),(5666304,'movie','The Little Hours','The Little Hours',1,2017,NULL,'90'),(5675620,'tvSeries','The Punisher','The Punisher',1,2017,2019,'53'),(5687334,'movie','Godard Mon Amour','Le Redoutable',1,2017,NULL,'107'),(5688932,'movie','Sorry to Bother You','Sorry to Bother You',1,2018,NULL,'112'),(5688996,'movie','Alex Strangelove','Alex Strangelove',1,2018,NULL,'99'),(5690360,'movie','Slender Man','Slender Man',1,2018,NULL,'93'),(5690810,'movie','Ophelia','Ophelia',1,2018,NULL,'114'),(5691670,'movie','Under the Silver Lake','Under the Silver Lake',1,2018,NULL,'139'),(5695764,'movie','Inversion','Varoonegi',1,2016,NULL,'84'),(5697078,'movie','Sensitivity Training','Sensitivity Training',1,2016,NULL,'87'),(5697572,'movie','Cats','Cats',1,2019,NULL,'110'),(5698320,'movie','Euphoria','Euphoria',1,2017,NULL,'104'),(5700672,'movie','Train to Busan','Busanhaeng',1,2016,NULL,'118'),(5709236,'tvEpisode','Hated in the Nation','Hated in the Nation',1,2016,NULL,'89'),(5709536,'movie','Angry Inuk','Angry Inuk',1,2016,NULL,'85'),(5710514,'movie','I Don\'t Feel at Home in This World Anymore','I Don\'t Feel at Home in This World Anymore.',1,2017,NULL,'93'),(5715874,'movie','The Killing of a Sacred Deer','The Killing of a Sacred Deer',1,2017,NULL,'121'),(5719700,'movie','Home Again','Home Again',1,2017,NULL,'97'),(5719748,'movie','Cold Pursuit','Cold Pursuit',1,2019,NULL,'119'),(5723286,'movie','Wheelman','Wheelman',1,2017,NULL,'82'),(5723416,'movie','The Beyond','The Beyond',1,2017,NULL,'103'),(5726616,'movie','Call Me by Your Name','Call Me by Your Name',1,2017,NULL,'132'),(5727208,'movie','Uncut Gems','Uncut Gems',1,2019,NULL,'135'),(5727282,'movie','Borg vs. McEnroe','Borg McEnroe',1,2017,NULL,'107'),(5737862,'movie','Landline','Landline',1,2017,NULL,'97'),(5739786,'movie','La Negrita: the Miracle of Our Lady of Los Angeles','La Negrita: the Miracle of Our Lady of Los Angeles',1,1985,NULL,'90'),(5740806,'movie','Coin Heist','Coin Heist',1,2017,NULL,'97'),(5742374,'movie','You Were Never Really Here','You Were Never Really Here',1,2017,NULL,'89'),(5752360,'movie','The Female Brain','The Female Brain',1,2017,NULL,'98'),(5774060,'movie','Underwater','Underwater',1,2020,NULL,'95'),(5776858,'movie','Phantom Thread','Phantom Thread',1,2017,NULL,'130'),(5783956,'movie','When We First Met','When We First Met',1,2018,NULL,'97'),(5786040,'movie','Dernières nouvelles du cosmos','Dernières nouvelles du cosmos',1,2016,NULL,'89'),(5789664,'movie','Peterburg. Tolko po lyubvi','Peterburg. Tolko po lyubvi',1,2016,NULL,'110'),(5791732,'movie','The Laplace\'s Demon','Il demone di Laplace',1,2017,NULL,'105'),(5791884,'movie','Ne gledaj mi u pijat','Ne gledaj mi u pijat',1,2016,NULL,'105'),(5795086,'movie','Gemini','Gemini',1,2017,NULL,'93'),(5814534,'movie','Spies in Disguise','Spies in Disguise',1,2019,NULL,'102'),(5816374,'movie','Band Aid','Band Aid',1,2017,NULL,'91'),(5816682,'movie','Victoria & Abdul','Victoria & Abdul',1,2017,NULL,'111'),(5818818,'movie','The Divine Order','Die göttliche Ordnung',1,2017,NULL,'96'),(5822564,'movie','The Kitchen','The Kitchen',1,2019,NULL,'102'),(5825186,'movie','Gekijôban Hakuôki: Dainishô shikon sôkyû','Gekijôban Hakuôki: Dainishô shikon sôkyû',1,2014,NULL,'87'),(5825380,'movie','Wonder Wheel','Wonder Wheel',1,2017,NULL,'101'),(5826432,'movie','Burning Sands','Burning Sands',1,2017,NULL,'96'),(5829040,'movie','Fun Mom Dinner','Fun Mom Dinner',1,2017,NULL,'81'),(5833412,'movie','Get My Gun','Get My Gun',1,2017,NULL,'86'),(5833846,'tvMiniSeries','Maximilian','Maximilian',1,2017,NULL,'275'),(5834262,'movie','Hotel Artemis','Hotel Artemis',1,2018,NULL,'94'),(5834660,'movie','Dance Academy: The Movie','Dance Academy: The Movie',1,2017,NULL,'101'),(5847768,'movie','The Tower','The Tower',1,2018,NULL,'74'),(5848272,'movie','Ralph Breaks the Internet','Ralph Breaks the Internet',1,2018,NULL,'112'),(5859238,'movie','Lucky','Lucky',1,2017,NULL,'88'),(5861756,'movie','Bella Ciao!','Bella Ciao!',1,2018,NULL,'88'),(5862312,'movie','Verónica','Verónica',1,2017,NULL,'105'),(5865326,'movie','The Laundromat','The Laundromat',1,2019,NULL,'96'),(5867800,'movie','Aruvi','Aruvi',1,2016,NULL,'130'),(5868326,'tvSeries','Homestuck','Homestuck',1,2009,2016,NULL),(5878326,'movie','Jesus, Bro!','Jesus, Bro!',1,2017,NULL,'85'),(5884052,'movie','Pokémon: Detective Pikachu','Pokémon: Detective Pikachu',1,2019,NULL,'104'),(5886046,'movie','Escape Room','Escape Room',1,2019,NULL,'99'),(5898034,'movie','Monster High: Welcome to Monster High','Monster High: Welcome to Monster High',1,2016,NULL,'73'),(5908566,'movie','Locos de Amor','Locos de Amor',1,2016,NULL,'93'),(5914996,'movie','No Game No Life: Zero','No Game No Life Zero',1,2017,NULL,'110'),(5918104,'movie','King of the Dancehall','King of the Dancehall',1,2016,NULL,'100'),(5923962,'movie','Gantz: O','Gantz: O',1,2016,NULL,'95'),(5929750,'movie','Beatriz at Dinner','Beatriz at Dinner',1,2017,NULL,'82'),(5936578,'movie','Saints Rest','Saints Rest',1,2018,NULL,'85'),(5941692,'movie','Miss Bala','Miss Bala',1,2019,NULL,'104'),(5952138,'movie','We Have Always Lived in the Castle','We Have Always Lived in the Castle',1,2018,NULL,'95'),(5954304,'movie','The Dragon Spell','Mykyta Kozhumyaka',1,2016,NULL,'85'),(5960374,'movie','Vox Lux','Vox Lux',1,2018,NULL,'114'),(5962210,'movie','Ingrid Goes West','Ingrid Goes West',1,2017,NULL,'98'),(5971474,'movie','The Little Mermaid','The Little Mermaid',1,2023,NULL,'135'),(5973032,'movie','Antiporno','Anchiporuno',1,2016,NULL,'76'),(5973626,'movie','Batman: Return of the Caped Crusaders','Batman: Return of the Caped Crusaders',1,2016,NULL,'78'),(5974388,'movie','In Between','Bar Bahar',1,2016,NULL,'103'),(5980638,'movie','The Transcendents','The Transcendents',1,2018,NULL,'96'),(5980798,'movie','Félicité','Félicité',1,2017,NULL,'129'),(5989218,'movie','Life Itself','Life Itself',1,2018,NULL,'117'),(5990342,'movie','The Incredible Jessica James','The Incredible Jessica James',1,2017,NULL,'85'),(5997830,'short','Seagull','Seagull',1,2017,NULL,NULL),(6000478,'movie','Roman J. Israel, Esq.','Roman J. Israel, Esq.',1,2017,NULL,'122'),(6002232,'movie','Custody','Jusqu\'à la garde',1,2017,NULL,'93'),(6003368,'movie','Diary of a Wimpy Kid: The Long Haul','Diary of a Wimpy Kid: The Long Haul',1,2017,NULL,'91'),(6010628,'movie','Zoe','Zoe',1,2018,NULL,'104'),(6029106,'movie','Dim the Fluorescents','Dim the Fluorescents',1,2017,NULL,'128'),(6048922,'movie','Greyhound','Greyhound',1,2020,NULL,'91'),(6048930,'movie','Naked','Naked',1,2017,NULL,'96'),(6053438,'movie','First Reformed','First Reformed',1,2017,NULL,'113'),(6053440,'movie','Princess Cyd','Princess Cyd',1,2017,NULL,'96'),(6061074,'movie','First Match','First Match',1,2018,NULL,'102'),(6062774,'movie','Monos','Monos',1,2019,NULL,'102'),(6063050,'movie','Acrimony','Acrimony',1,2018,NULL,'120'),(6065988,'movie','Bombshells and Dollies','Bombshells and Dollies',1,2020,NULL,'90'),(6069126,'movie','The Escape','The Escape',1,2017,NULL,'101'),(6074542,'movie','Friend of the World','Friend of the World',1,2020,NULL,'50'),(6078866,'movie','Soni','Soni',1,2018,NULL,'97'),(6081670,'movie','Possum','Possum',1,2018,NULL,'85'),(6095090,'movie','The Bride','Nevesta',1,2017,NULL,'95'),(6096194,'movie','Different Flowers','Different Flowers',1,2017,NULL,'99'),(6105098,'movie','The Lion King','The Lion King',1,2019,NULL,'118'),(6107548,'movie','Late Night','Late Night',1,2019,NULL,'102'),(6108090,'movie','Secret Superstar','Secret Superstar',1,2017,NULL,'150'),(6108178,'movie','Disobedience','Disobedience',1,2017,NULL,'114'),(6133130,'movie','Professor Marston & the Wonder Women','Professor Marston and the Wonder Women',1,2017,NULL,'108'),(6133466,'movie','The First Purge','The First Purge',1,2018,NULL,'97'),(6139732,'movie','Aladdin','Aladdin',1,2019,NULL,'128'),(6140148,'movie','Bullitt County','Bullitt County',1,2018,NULL,'98'),(6141246,'movie','The Aeronauts','The Aeronauts',1,2019,NULL,'100'),(6142314,'video','Batman vs. Two-Face','Batman vs. Two-Face',1,2017,NULL,'72'),(6142496,'movie','6 Balloons','6 Balloons',1,2018,NULL,'74'),(6146586,'movie','John Wick: Chapter 3 - Parabellum','John Wick: Chapter 3 - Parabellum',1,2019,NULL,'130'),(6155172,'movie','Roma','Roma',1,2018,NULL,'135'),(6160448,'movie','White Noise','White Noise',1,2022,NULL,'136'),(6162808,'movie','Miss Saigon: 25th Anniversary','Miss Saigon: 25th Anniversary',1,2016,NULL,'141'),(6164698,'movie','The Heart','Hjärtat',1,2018,NULL,'100'),(6169920,'movie','L\'animale','L\'animale',1,2018,NULL,'100'),(6182908,'movie','Smallfoot','Smallfoot',1,2018,NULL,'96'),(6185658,'video','Barbie Video Game Hero','Barbie Video Game Hero',1,2017,NULL,'72'),(6189022,'movie','Angel Has Fallen','Angel Has Fallen',1,2019,NULL,'121'),(6194530,'movie','Ava','Ava',1,2017,NULL,'105'),(6197070,'movie','Blood Machines','Blood Machines',1,2019,NULL,'50'),(6204018,'movie','Ted - Show Me Love','Ted - För kärlekens skull',1,2018,NULL,'120'),(6205872,'movie','Assassination Nation','Assassination Nation',1,2018,NULL,'108'),(6212478,'movie','American Animals','American Animals',1,2018,NULL,'116'),(6212496,'movie','Mr. Roosevelt','Mr. Roosevelt',1,2017,NULL,'90'),(6214928,'movie','1922','1922',1,2017,NULL,'102'),(6217306,'movie','Apostle','Apostle',1,2018,NULL,'130'),(6249434,'movie','Shelter','Shelter',1,2017,NULL,'93'),(6257174,'movie','The Miseducation of Cameron Post','The Miseducation of Cameron Post',1,2018,NULL,'91'),(6258766,'movie','The Real Estate','Toppen av ingenting',1,2018,NULL,'88'),(6259380,'movie','Code 8','Code 8',1,2019,NULL,'98'),(6261136,'movie','All About Men','Vse o muzhchinakh',1,2016,NULL,'90'),(6264654,'movie','Free Guy','Free Guy',1,2021,NULL,'115'),(6265828,'movie','A Ghost Story','A Ghost Story',1,2017,NULL,'92'),(6266538,'movie','Vice','Vice',1,2018,NULL,'132'),(6275840,'movie','Antonio One Two Three','António Um Dois Três',1,2017,NULL,'95'),(6277462,'movie','Brahmastra Part One: Shiva','Brahmastra Part One: Shiva',1,2022,NULL,'167'),(6285944,'movie','The Banker','The Banker',1,2020,NULL,'120'),(6292852,'movie','I Am Mother','I Am Mother',1,2019,NULL,'113'),(6294226,'movie','Stray','Stray',1,2019,NULL,'89'),(6294822,'movie','The Post','The Post',1,2017,NULL,'116'),(6298780,'tvMovie','Sharknado 5: Global Swarming','Sharknado 5: Global Swarming',1,2017,NULL,'93'),(6303866,'movie','Beach Rats','Beach Rats',1,2017,NULL,'98'),(6304046,'movie','Thelma','Thelma',1,2017,NULL,'116'),(6317656,'movie','Penguin Bloom','Penguin Bloom',1,2020,NULL,'95'),(6320628,'movie','Spider-Man: Far from Home','Spider-Man: Far from Home',1,2019,NULL,'129'),(6324278,'movie','Abominable','Abominable',1,2019,NULL,'97'),(6334354,'movie','The Suicide Squad','The Suicide Squad',1,2021,NULL,'132'),(6336356,'movie','Mary and the Witch\'s Flower','Meari to majo no hana',1,2017,NULL,'103'),(6341832,'movie','Oxygen','Oxygène',1,2021,NULL,'100'),(6342316,'movie','Undertow','Undertow',1,2018,NULL,'96'),(6343314,'movie','Creed II','Creed II',1,2018,NULL,'130'),(6348138,'movie','Missing Link','Missing Link',1,2019,NULL,'93'),(6359956,'movie','A Bad Moms Christmas','A Bad Moms Christmas',1,2017,NULL,'104'),(6387232,'tvMovie','A Royal Winter','A Royal Winter',1,2017,NULL,'84'),(6394270,'movie','Bombshell','Bombshell',1,2019,NULL,'109'),(6398184,'movie','Downton Abbey','Downton Abbey',1,2019,NULL,'122'),(6404896,'tvSeries','Constantine: City of Demons','Constantine: City of Demons',1,2018,2019,'6'),(6412452,'movie','The Ballad of Buster Scruggs','The Ballad of Buster Scruggs',1,2018,NULL,'133'),(6418778,'movie','Fast Color','Fast Color',1,2018,NULL,'100'),(6423776,'movie','Let the Sunshine In','Un beau soleil intérieur',1,2017,NULL,'94'),(6428676,'movie','Wonder Park','Wonder Park',1,2019,NULL,'85'),(6432466,'movie','Moxie','Moxie',1,2021,NULL,'111'),(6433880,'movie','Anna and the Apocalypse','Anna and the Apocalypse',1,2017,NULL,'93'),(6435258,'movie','Bethany Hamilton: Unstoppable','Bethany Hamilton: Unstoppable',1,2018,NULL,'100'),(6436726,'movie','7500','7500',1,2019,NULL,'93'),(6439020,'movie','The Personal History of David Copperfield','The Personal History of David Copperfield',1,2019,NULL,'119'),(6441072,'movie','Kiss Me!','Embrasse-moi!',1,2017,NULL,'86'),(6450804,'movie','Terminator: Dark Fate','Terminator: Dark Fate',1,2019,NULL,'128'),(6466058,'movie','Ask for Jane','Ask for Jane',1,2018,NULL,'108'),(6467266,'movie','Sing 2','Sing 2',1,2021,NULL,'110'),(6467968,'movie','Directions','Posoki',1,2017,NULL,'103'),(6472976,'movie','Five Feet Apart','Five Feet Apart',1,2019,NULL,'116'),(6475714,'movie','Monster Hunter','Monster Hunter',1,2020,NULL,'103'),(6476140,'movie','Serenity','Serenity',1,2019,NULL,'106'),(6485304,'movie','Quién te cantará','Quién te cantará',1,2018,NULL,'125'),(6499752,'movie','Upgrade','Upgrade',1,2018,NULL,'100'),(6510332,'movie','McQueen','McQueen',1,2018,NULL,'111'),(6511932,'movie','The Beach Bum','The Beach Bum',1,2019,NULL,'95'),(6513120,'movie','Fighting with My Family','Fighting with My Family',1,2019,NULL,'108'),(6522668,'movie','Diamantino','Diamantino',1,2018,NULL,'96'),(6524480,'short','Plasmatic Day','Plasmatic Day',1,2018,NULL,'10'),(6535880,'movie','Haunt','Haunt',1,2019,NULL,'92'),(6536944,'tvMovie','Monster High: Electrified','Monster High: Electrified',1,2017,NULL,'71'),(6539420,'movie','Buying A Man','A Man Wanted',1,2017,NULL,'135'),(6543652,'movie','Cold War','Zimna wojna',1,2018,NULL,'89'),(6548966,'movie','Fairy Tail: Dragon Cry','Gekijôban Fairy Tail: Dragon Cry',1,2017,NULL,'85'),(6565702,'movie','Dark Phoenix','Dark Phoenix',1,2019,NULL,'113'),(6566576,'movie','Fear Street: Part One - 1994','Fear Street: 1994',1,2021,NULL,'107'),(6587640,'movie','Trolls World Tour','Trolls World Tour',1,2020,NULL,'91'),(6590856,'movie','Pause','Pafsi',1,2018,NULL,'96'),(6595896,'movie','Pokémon the Movie: I Choose You!','Pokémon the Movie: I Choose You',1,2017,NULL,'98'),(6628102,'movie','The Wild Pear Tree','Ahlat Agaci',1,2018,NULL,'188'),(6628394,'movie','Bad Times at the El Royale','Bad Times at the El Royale',1,2018,NULL,'141'),(6644200,'movie','A Quiet Place','A Quiet Place',1,2018,NULL,'90'),(6663582,'movie','The Spy Who Dumped Me','The Spy Who Dumped Me',1,2018,NULL,'117'),(6663788,'movie','Psychosis','Psychosis',1,2015,NULL,'52'),(6673612,'movie','Dolittle','Dolittle',1,2020,NULL,'101'),(6678876,'movie','Half Brother','Meio Irmão',1,2018,NULL,'98'),(6708044,'movie','The Tribe','La tribu',1,2018,NULL,'90'),(6710474,'movie','Everything Everywhere All at Once','Everything Everywhere All at Once',1,2022,NULL,'139'),(6718170,'movie','The Super Mario Bros. Movie','The Super Mario Bros. Movie',1,2023,NULL,'92'),(6723592,'movie','Tenet','Tenet',1,2020,NULL,'150'),(6728096,'movie','The Breaker Upperers','The Breaker Upperers',1,2018,NULL,'90'),(6733874,'movie','America: The Motion Picture','America: The Motion Picture',1,2021,NULL,'98'),(6738136,'movie','Revenge','Revenge',1,2017,NULL,'108'),(6739094,'tvMovie','Invader ZIM: Enter the Florpus','Invader ZIM: Enter the Florpus',1,2019,NULL,'71'),(6751668,'movie','Parasite','Gisaengchung',1,2019,NULL,'132'),(6772950,'movie','Truth or Dare','Truth or Dare',1,2018,NULL,'100'),(6776106,'movie','And Breathe Normally','Andið eðlilega',1,2018,NULL,'95'),(6776462,'movie','A Man of Integrity','Lerd',1,2017,NULL,'113'),(6781982,'movie','Night School','Night School',1,2018,NULL,'111'),(6791096,'movie','I Feel Pretty','I Feel Pretty',1,2018,NULL,'110'),(6791350,'movie','Guardians of the Galaxy Vol. 3','Guardians of the Galaxy Vol. 3',1,2023,NULL,'150'),(6802400,'movie','Coming 2 America','Coming 2 America',1,2021,NULL,'110'),(6803046,'movie','The Vast of Night','The Vast of Night',1,2019,NULL,'91'),(6805302,'movie','Bloody Milk','Petit paysan',1,2017,NULL,'90'),(6806448,'movie','Fast & Furious Presents: Hobbs & Shaw','Fast & Furious Presents: Hobbs & Shaw',1,2019,NULL,'137'),(6811018,'movie','The Kid Who Would Be King','The Kid Who Would Be King',1,2019,NULL,'120'),(6814914,'movie','Journey from Greece','Djam',1,2017,NULL,'97'),(6818880,'movie','Servant of the People 2','Sluha narodu 2',1,2016,NULL,'100'),(6823148,'movie','Benedetta','Benedetta',1,2021,NULL,'131'),(6823368,'movie','Glass','Glass',1,2019,NULL,'129'),(6834916,'movie','Legacy of Lies','Legacy of Lies',1,2020,NULL,'101'),(6841122,'movie','Summerland','Summerland',1,2020,NULL,'99'),(6842126,'movie','Don\'t Leave Home','Don\'t Leave Home',1,2018,NULL,'86'),(6856242,'movie','The King\'s Man','The King\'s Man',1,2021,NULL,'131'),(6857112,'movie','Us','Us',1,2019,NULL,'116'),(6857166,'movie','Book Club','Book Club',1,2018,NULL,'104'),(6857988,'movie','I Am Not an Easy Man','Je ne suis pas un homme facile',1,2018,NULL,'98'),(6859352,'movie','Support the Girls','Support the Girls',1,2018,NULL,'93'),(6868216,'tvMovie','Psych: The Movie','Psych: The Movie',1,2017,NULL,'88'),(6870750,'movie','Lila\'s Book','El libro de Lila',1,2017,NULL,'76'),(6878306,'movie','News of the World','News of the World',1,2020,NULL,'118'),(6878820,'tvMovie','Zombies','Zombies',1,2018,NULL,'94'),(6889032,'movie','The Cake General','Tårtgeneralen',1,2018,NULL,'101'),(6892462,'movie','The World Is Yours','Le monde est à toi',1,2018,NULL,'102'),(6902332,'movie','The Marksman','The Marksman',1,2021,NULL,'108'),(6902676,'movie','Guns Akimbo','Guns Akimbo',1,2019,NULL,'98'),(6908274,'movie','Mirage','Durante la tormenta',1,2018,NULL,'128'),(6911608,'movie','Mamma Mia! Here We Go Again','Mamma Mia! Here We Go Again',1,2018,NULL,'114'),(6918220,'movie','The Shiny Shrimps','Les Crevettes Pailletées',1,2019,NULL,'103'),(6920356,'movie','The Souvenir','The Souvenir',1,2019,NULL,'120'),(6921996,'movie','Johnny English Strikes Again','Johnny English Strikes Again',1,2018,NULL,'89'),(6924650,'movie','Midway','Midway',1,2019,NULL,'138'),(6927152,'movie','Rampant','Chang-gwol',1,2018,NULL,'121'),(6929642,'movie','Kaala','Kaala',1,2018,NULL,'162'),(6966692,'movie','Green Book','Green Book',1,2018,NULL,'130'),(6975598,'movie','Deep Murder','Deep Murder',1,2019,NULL,'85'),(6987770,'movie','Destination Wedding','Destination Wedding',1,2018,NULL,'87'),(6992978,'movie','The Souvenir: Part II','The Souvenir: Part II',1,2021,NULL,'107'),(6998518,'movie','Mandy','Mandy',1,2018,NULL,'121'),(7008872,'movie','Boy Erased','Boy Erased',1,2018,NULL,'115'),(7014006,'movie','Eighth Grade','Eighth Grade',1,2018,NULL,'93'),(7040874,'movie','A Simple Favor','A Simple Favor',1,2018,NULL,'117'),(7069210,'movie','The Conjuring: The Devil Made Me Do It','The Conjuring: The Devil Made Me Do It',1,2021,NULL,'112'),(7073710,'movie','What Keeps You Alive','What Keeps You Alive',1,2018,NULL,'98'),(7074886,'movie','The Front Runner','The Front Runner',1,2018,NULL,'113'),(7086706,'video','Deep Blue Sea 2','Deep Blue Sea 2',1,2018,NULL,'94'),(7097896,'movie','Venom: Let There Be Carnage','Venom: Let There Be Carnage',1,2021,NULL,'97'),(7098658,'movie','Raazi','Raazi',1,2018,NULL,'138'),(7125860,'movie','If Beale Street Could Talk','If Beale Street Could Talk',1,2018,NULL,'119'),(7126948,'movie','Wonder Woman 1984','Wonder Woman 1984',1,2020,NULL,'151'),(7131622,'movie','Once Upon a Time in Hollywood','Once Upon a Time in... Hollywood',1,2019,NULL,'161'),(7131870,'movie','Wolf Warrior 2','Zhan lang II',1,2017,NULL,'123'),(7133686,'movie','Next Gen','Next Gen',1,2018,NULL,'106'),(7134096,'movie','The Rhythm Section','The Rhythm Section',1,2020,NULL,'109'),(7134690,'movie','I Like Me','I Like Me',1,2018,NULL,'83'),(7137380,'movie','Destroyer','Destroyer',1,2018,NULL,'121'),(7146812,'movie','Onward','Onward',1,2020,NULL,'102'),(7156222,'movie','Keep an Eye Out','Au poste!',1,2018,NULL,'73'),(7158430,'movie','Hearts Beat Loud','Hearts Beat Loud',1,2018,NULL,'97'),(7160070,'movie','Along With the Gods: The Two Worlds','Sin-gwa ham-kke: Jwi-wa beol',1,2017,NULL,'139'),(7167630,'movie','Batman: Gotham by Gaslight','Batman: Gotham by Gaslight',1,2018,NULL,'78'),(7167658,'video','The Death of Superman','The Death of Superman',1,2018,NULL,'81'),(7167686,'movie','Reign of the Supermen','Reign of the Supermen',1,2019,NULL,'87'),(7178640,'movie','Superintelligence','Superintelligence',1,2020,NULL,'106'),(7201830,'movie','Deliciosa Fruta Seca','Deliciosa Fruta Seca',1,2019,NULL,NULL),(7212726,'movie','Simmba','Simmba',1,2018,NULL,'158'),(7212754,'movie','Ludo','Ludo',1,2020,NULL,'150'),(7225144,'movie','Bearkittens','Bearkittens',1,2018,NULL,'71'),(7231342,'movie','The Fall of the American Empire','La chute de l\'empire américain',1,2018,NULL,'127'),(7236034,'movie','I Want to Eat Your Pancreas','Kimi no suizô o tabetai',1,2018,NULL,'109'),(7237666,'movie','The Honor List','The Honor List',1,2018,NULL,'103'),(7241926,'movie','Tell It to the Bees','Tell It to the Bees',1,2018,NULL,'108'),(7242142,'movie','Blindspotting','Blindspotting',1,2018,NULL,'95'),(7250378,'movie','Say My Name','Say My Name',1,2018,NULL,'83'),(7260048,'movie','Outside In','Outside In',1,2017,NULL,'109'),(7262882,'movie','Master Z: The Ip Man Legacy','Yip Man ngoi zyun: Cheung Tin Chi',1,2018,NULL,'107'),(7279188,'movie','Woman at War','Kona fer í stríð',1,2018,NULL,'101'),(7280218,'movie','Carmilla','Carmilla',1,2019,NULL,'94'),(7282468,'movie','Burning','Beoning',1,2018,NULL,'148'),(7286456,'movie','Joker','Joker',1,2019,NULL,'122'),(7311036,'movie','Clementine','Clementine',1,2019,NULL,'90'),(7315484,'movie','The Silence','The Silence',1,2019,NULL,'90'),(7317324,'movie','Egg','Egg',1,2018,NULL,'90'),(7322224,'movie','Triangle of Sadness','Triangle of Sadness',1,2022,NULL,'147'),(7329656,'movie','47 Meters Down: Uncaged','47 Meters Down: Uncaged',1,2019,NULL,'90'),(7335184,'tvSeries','You','You',1,2018,2024,'45'),(7341676,'short','OM+ME','OM+ME',1,2017,NULL,NULL),(7342204,'movie','I Can Speak','Ai kaen seupikeu',1,2017,NULL,'119'),(7349662,'movie','BlacKkKlansman','BlacKkKlansman',1,2018,NULL,'135'),(7349950,'movie','It Chapter Two','It Chapter Two',1,2019,NULL,'169'),(7365604,'movie','Dog Days','Dog Days',1,2018,NULL,'113'),(7374948,'movie','Always Be My Maybe','Always Be My Maybe',1,2019,NULL,'101'),(7401540,'movie','Disco','Disco',1,2017,NULL,'84'),(7401588,'movie','Instant Family','Instant Family',1,2018,NULL,'118'),(7405458,'movie','A Man Called Otto','A Man Called Otto',1,2022,NULL,'126'),(7411790,'short','Child Carrying Flowers to Woman','Child Bringing Bouquet to Woman',1,1887,NULL,'1'),(7424200,'movie','Teen Titans GO! To the Movies','Teen Titans Go! To the Movies',1,2018,NULL,'84'),(7451284,'movie','Batman Ninja','Batman Ninja',1,2018,NULL,'85'),(7456310,'movie','Anna','Anna',1,2019,NULL,'118'),(7458762,'movie','The Wolf\'s Call','Le chant du loup',1,2019,NULL,'115'),(7464188,'movie','In Fabric','In Fabric',1,2018,NULL,'118'),(7466442,'movie','The Bob\'s Burgers Movie','The Bob\'s Burgers Movie',1,2022,NULL,'102'),(7467476,'short','Fauve','Fauve',1,2018,NULL,'17'),(7468616,'movie','The Boat','The Boat',1,2018,NULL,'88'),(7479784,'movie','The Bold, the Corrupt, and the Beautiful','Xue guan yin',1,2017,NULL,'112'),(7485508,'movie','Carmen & Lola','Carmen y Lola',1,2018,NULL,'103'),(7488208,'movie','Over the Moon','Over the Moon',1,2020,NULL,'95'),(7488288,'movie','Anya','Anya',1,2019,NULL,'80'),(7504818,'movie','Ron\'s Gone Wrong','Ron\'s Gone Wrong',1,2021,NULL,'107'),(7510346,'movie','The Turning','The Turning',1,2020,NULL,'94'),(7521214,'movie','Scare Package','Scare Package',1,2019,NULL,'107'),(7527538,'movie','Jefe','Jefe',1,2018,NULL,'89'),(7534068,'movie','The Trouble with You','En liberté!',1,2018,NULL,'108'),(7541160,'short','Jumping Over a Man\'s Back-Leapfrog','Boys Playing Leapfrog: Side View',1,1887,NULL,'1'),(7543930,'movie','In Safe Hands','Pupille',1,2018,NULL,'110'),(7545266,'movie','Like a Boss','Like a Boss',1,2020,NULL,'83'),(7545524,'movie','Ben Is Back','Ben Is Back',1,2018,NULL,'103'),(7545566,'movie','Skate Kitchen','Skate Kitchen',1,2018,NULL,'106'),(7547410,'movie','Dora and the Lost City of Gold','Dora and the Lost City of Gold',1,2019,NULL,'102'),(7549996,'movie','Judy','Judy',1,2019,NULL,'118'),(7550014,'movie','No Exit','No Exit',1,2022,NULL,'95'),(7555072,'movie','Top End Wedding','Top End Wedding',1,2019,NULL,'113'),(7555774,'movie','At War','En guerre',1,2018,NULL,'113'),(7556122,'movie','The Old Guard','The Old Guard',1,2020,NULL,'125'),(7557108,'movie','Saint Maud','Saint Maud',1,2019,NULL,'84'),(7594584,'movie','Maria','Maria',1,2019,NULL,'90'),(7600716,'movie','DNA','ADN',1,2020,NULL,'90'),(7605074,'movie','The Wandering Earth','Liu lang di qiu',1,2019,NULL,'125'),(7608418,'movie','A Christmas Prince','A Christmas Prince',1,2017,NULL,'92'),(7615302,'movie','Red Joan','Red Joan',1,2018,NULL,'101'),(7616148,'movie','Luce','Luce',1,2019,NULL,'109'),(7634968,'movie','What Men Want','What Men Want',1,2019,NULL,'117'),(7636672,'movie','Float Like a Butterfly','Float Like a Butterfly',1,2018,NULL,'104'),(7638348,'movie','Boss Level','Boss Level',1,2020,NULL,'100'),(7653254,'movie','Marriage Story','Marriage Story',1,2019,NULL,'137'),(7657566,'movie','Death on the Nile','Death on the Nile',1,2022,NULL,'127'),(7668870,'movie','Searching','Searching',1,2018,NULL,'102'),(7671064,'movie','Brittany Runs a Marathon','Brittany Runs a Marathon',1,2019,NULL,'104'),(7689052,'movie','Daphne & Velma','Daphne & Velma',1,2018,NULL,'72'),(7689958,'movie','Jane Fonda in Five Acts','Jane Fonda in Five Acts',1,2018,NULL,'133'),(7698468,'movie','A Call to Spy','A Call to Spy',1,2019,NULL,'123'),(7703924,'movie','Infamous','Infamous',1,2020,NULL,'100'),(7711764,'movie','Pentagram','Pentagram',1,2019,NULL,'80'),(7713068,'movie','Birds of Prey','Birds of Prey and the Fantabulous Emancipation of One Harley Quinn',1,2020,NULL,'109'),(7715070,'movie','Horrible Histories: The Movie - Rotten Romans','Horrible Histories: The Movie - Rotten Romans',1,2019,NULL,'88'),(7737528,'movie','Kate','Kate',1,2021,NULL,'106'),(7737786,'movie','Greenland','Greenland',1,2020,NULL,'119'),(7740496,'movie','Nightmare Alley','Nightmare Alley',1,2021,NULL,'150'),(7745068,'movie','My Hero Academia: Two Heroes','Boku no hîrô akademia THE MOVIE: 2-ri no eiyû',1,2018,NULL,'96'),(7745956,'tvSeries','She-Ra and the Princesses of Power','She-Ra and the Princesses of Power',1,2018,2020,'30'),(7752126,'movie','Brightburn','Brightburn',1,2019,NULL,'90'),(7754902,'short','Man Riding Jumping Horse','Man Riding Jumping Horse',1,1887,NULL,NULL),(7755856,'movie','Banana Split','Banana Split',1,2018,NULL,'88'),(7765404,'tvSeries','Wayne','Wayne',1,2019,2019,'30'),(7768846,'movie','Pass Over','Pass Over',1,2018,NULL,'74'),(7772582,'movie','Never Rarely Sometimes Always','Never Rarely Sometimes Always',1,2020,NULL,'101'),(7775622,'movie','Free Solo','Free Solo',1,2018,NULL,'100'),(7781432,'movie','The Mortuary Collection','The Mortuary Collection',1,2019,NULL,'108'),(7784604,'movie','Hereditary','Hereditary',1,2018,NULL,'127'),(7785128,'movie','Non Non Biyori: The Movie - Vacation','Gekijo-ban Non Non Biyori: Vacation',1,2018,NULL,'71'),(7791048,'movie','Innan vintern kommer','Innan vintern kommer',1,2018,NULL,'75'),(7798634,'movie','Ready or Not','Ready or Not',1,2019,NULL,'95'),(7816420,'short','Athlete Swinging a Pick','Athlete Swinging a Pick',1,1881,NULL,'1'),(7825208,'movie','Marighella','Marighella',1,2019,NULL,'155'),(7838252,'movie','K.G.F: Chapter 1','K.G.F: Chapter 1',1,2018,NULL,'156'),(7846844,'movie','Enola Holmes','Enola Holmes',1,2020,NULL,'123'),(7853242,'movie','Love Per Square Foot','Love Per Square Foot',1,2018,NULL,'133'),(7869818,'tvMovie','My Little Pony Equestria Girls: Forgotten Friendship','My Little Pony Equestria Girls: Forgotten Friendship',1,2018,NULL,'44'),(7873348,'movie','Save Yourselves!','Save Yourselves!',1,2020,NULL,'93'),(7875464,'movie','The Heiresses','Las herederas',1,2018,NULL,'98'),(7888964,'movie','Nobody','Nobody',1,2021,NULL,'92'),(7893992,'movie','Amateurs','Amatörer',1,2018,NULL,'102'),(7902124,'movie','The Ground Beneath My Feet','Der Boden unter den Füßen',1,2019,NULL,'108'),(7905466,'movie','They Shall Not Grow Old','They Shall Not Grow Old',1,2018,NULL,'99'),(7909970,'tvMiniSeries','Unbelievable','Unbelievable',1,2019,2019,'385'),(7939766,'movie','I\'m Thinking of Ending Things','I\'m Thinking of Ending Things',1,2020,NULL,'134'),(7942742,'movie','Her Smell','Her Smell',1,2018,NULL,'136'),(7958736,'movie','Ma','Ma',1,2019,NULL,'99'),(7959026,'movie','The Mule','The Mule',1,2018,NULL,'116'),(7975244,'movie','Jumanji: The Next Level','Jumanji: The Next Level',1,2019,NULL,'123'),(7976208,'movie','The Haunting of Sharon Tate','The Haunting of Sharon Tate',1,2019,NULL,'94'),(7979492,'tvMovie','Kim Possible','Kim Possible',1,2019,NULL,'86'),(7979580,'movie','The Mitchells vs the Machines','The Mitchells vs the Machines',1,2021,NULL,'114'),(7983894,'movie','Ammonite','Ammonite',1,2020,NULL,'117'),(7984734,'movie','The Lighthouse','The Lighthouse',1,2019,NULL,'109'),(7984766,'movie','The King','The King',1,2019,NULL,'140'),(7985692,'movie','After the Wedding','After the Wedding',1,2019,NULL,'112'),(7991608,'movie','Red Notice','Red Notice',1,2021,NULL,'118'),(8001346,'movie','Asterix: The Secret of the Magic Potion','Astérix: Le secret de la potion magique',1,2018,NULL,'87'),(8009938,'movie','Blood Vessel','Blood Vessel',1,2019,NULL,'93'),(8010544,'tvSeries','Persona 5: The Animation','Persona 5: The Animation',1,2018,2019,'24'),(8019694,'movie','Frankie','Frankie',1,2019,NULL,'100'),(8020896,'movie','An Elephant Sitting Still','Da xiang xidi erzuo',1,2018,NULL,'230'),(8021928,'short','David Lynch Cooks Quinoa','David Lynch Cooks Quinoa',1,2007,NULL,'21'),(8022928,'tvMovie','Descendants 3','Descendants 3',1,2019,NULL,'106'),(8031422,'tvMovie','The Last Sharknado: It\'s About Time','The Last Sharknado: It\'s About Time',1,2018,NULL,'86'),(8041270,'movie','Jurassic World Dominion','Jurassic World Dominion',1,2022,NULL,'147'),(8041276,'movie','Paddleton','Paddleton',1,2019,NULL,'89'),(8075192,'movie','Shoplifters','Manbiki kazoku',1,2018,NULL,'121'),(8075260,'movie','Someone Great','Someone Great',1,2019,NULL,'92'),(8079248,'movie','Yesterday','Yesterday',1,2019,NULL,'116'),(8093700,'movie','The Woman King','The Woman King',1,2022,NULL,'135'),(8097030,'movie','Turning Red','Turning Red',1,2022,NULL,'100'),(8106534,'movie','6 Underground','6 Underground',1,2019,NULL,'128'),(8108164,'movie','Ek Ladki Ko Dekha Toh Aisa Laga','Ek Ladki Ko Dekha Toh Aisa Laga',1,2019,NULL,'120'),(8108198,'movie','Andhadhun','Andhadhun',1,2018,NULL,'139'),(8108206,'movie','Saand Ki Aankh','Saand Ki Aankh',1,2019,NULL,'146'),(8110232,'movie','The Many Saints of Newark','The Many Saints of Newark',1,2021,NULL,'120'),(8110246,'movie','Dark Web: Cicada 3301','Dark Web: Cicada 3301',1,2021,NULL,'104'),(8110640,'movie','In the Shadow of the Moon','In the Shadow of the Moon',1,2019,NULL,'115'),(8110652,'movie','Bodies Bodies Bodies','Bodies Bodies Bodies',1,2022,NULL,'94'),(8114980,'movie','Willy\'s Wonderland','Willy\'s Wonderland',1,2021,NULL,'88'),(8115900,'movie','The Bad Guys','The Bad Guys',1,2022,NULL,'100'),(8133192,'short','Cockatoo Flying','Cockatoo Flying',1,1887,NULL,NULL),(8143990,'movie','Kajillionaire','Kajillionaire',1,2020,NULL,'104'),(8150814,'movie','There\'s Someone Inside Your House','There\'s Someone Inside Your House',1,2021,NULL,'96'),(8151874,'movie','Honey Boy','Honey Boy',1,2019,NULL,'94'),(8155288,'movie','Happy Death Day 2U','Happy Death Day 2 U',1,2019,NULL,'100'),(8169446,'movie','Wine Country','Wine Country',1,2019,NULL,'103'),(8169552,'movie','Monica and Friends: Bonds','Turma da Mônica: Laços',1,2019,NULL,'97'),(8178634,'movie','RRR','RRR (Rise Roar Revolt)',1,2022,NULL,'187'),(8179388,'movie','Rim of the World','Rim of the World',1,2019,NULL,'98'),(8201170,'movie','The Perfect Date','The Perfect Date',1,2019,NULL,'89'),(8206668,'movie','Bad Education','Bad Education',1,2019,NULL,'108'),(8228288,'movie','The Platform','El hoyo',1,2019,NULL,'94'),(8230872,'movie','The Body Remembers When the World Broke Open','The Body Remembers When the World Broke Open',1,2019,NULL,'105'),(8231668,'movie','Good on Paper','Good on Paper',1,2021,NULL,'92'),(8236336,'movie','The Report','The Report',1,2019,NULL,'119'),(8242084,'movie','My Spy','My Spy',1,2020,NULL,'99'),(8244784,'movie','The Hunt','The Hunt',1,2020,NULL,'90'),(8246646,'movie','Blackbird','Blackbird',1,2022,NULL,'88'),(8267604,'movie','Capernaum','Capharnaüm',1,2018,NULL,'126'),(8286894,'movie','Rafiki','Rafiki',1,2018,NULL,'83'),(8287690,'movie','Genesis','Genèse',1,2018,NULL,'129'),(8299768,'movie','Blow the Man Down','Blow the Man Down',1,2019,NULL,'91'),(8323104,'movie','Nancy Drew and the Hidden Staircase','Nancy Drew and the Hidden Staircase',1,2019,NULL,'89'),(8327492,'movie','Tito and the Birds','Tito e os Pássaros',1,2018,NULL,'73'),(8331988,'movie','The Chambermaid','La camarista',1,2018,NULL,'102'),(8332772,'movie','Hanalei Bay','Hanalei Bay',1,2018,NULL,'97'),(8332922,'movie','A Quiet Place Part II','A Quiet Place Part II',1,2020,NULL,'97'),(8338076,'movie','Queen Bees','Queen Bees',1,2021,NULL,'100'),(8350360,'movie','Annabelle Comes Home','Annabelle Comes Home',1,2019,NULL,'106'),(8356942,'movie','The 355','The 355',1,2022,NULL,'122'),(8359816,'movie','Sorry We Missed You','Sorry We Missed You',1,2019,NULL,'101'),(8359848,'movie','Climax','Climax',1,2018,NULL,'97'),(8361028,'movie','Cam','Cam',1,2018,NULL,'94'),(8361552,'short','Baboon Climbing a Pole','Baboon Climbing a Pole',1,1887,NULL,'1'),(8364368,'movie','Crawl','Crawl',1,2019,NULL,'87'),(8367814,'movie','The Gentlemen','The Gentlemen',1,2019,NULL,'113'),(8368406,'movie','Vivarium','Vivarium',1,2019,NULL,'97'),(8368408,'movie','Gunpowder Milkshake','Gunpowder Milkshake',1,2021,NULL,'114'),(8368512,'movie','The Courier','The Courier',1,2020,NULL,'112'),(8375936,'movie','RoboWoman','RoboWoman',1,2019,NULL,'70'),(8385148,'movie','Hitman\'s Wife\'s Bodyguard','Hitman\'s Wife\'s Bodyguard',1,2021,NULL,'100'),(8385474,'movie','A Dog\'s Journey','A Dog\'s Journey',1,2019,NULL,'109'),(8399288,'movie','Memoria','Memoria',1,2021,NULL,'136'),(8399664,'movie','Babyteeth','Babyteeth',1,2019,NULL,'118'),(8400584,'movie','The Perfect Find','The Perfect Find',1,2023,NULL,'99'),(8404614,'movie','The Two Popes','The Two Popes',1,2019,NULL,'125'),(8425034,'movie','Bit','Bit',1,2019,NULL,'90'),(8430598,'movie','Shirley','Shirley',1,2020,NULL,'107'),(8456190,'movie','Seal Team','Seal Team',1,2021,NULL,'101'),(8456696,'movie','Sister Aimee','Sister Aimee',1,2019,NULL,'87'),(8457260,'short','It\'s a Beautiful Day','It\'s a Beautiful Day',1,2018,NULL,'8'),(8459250,'movie','Shéhérazade','Shéhérazade',1,2018,NULL,'109'),(8461042,'movie','The Marijuana Conspiracy','The Marijuana Conspiracy',1,2020,NULL,'124'),(8479120,'short','Agapornis','Agapornis',1,2018,NULL,'14'),(8484012,'movie','Sword of Trust','Sword of Trust',1,2019,NULL,'88'),(8499102,'movie','Jawline','Jawline',1,2019,NULL,'99'),(8503618,'movie','Hamilton','Hamilton',1,2020,NULL,'160'),(8508734,'movie','His House','His House',1,2020,NULL,'93'),(8510350,'movie','Satanic Panic','Satanic Panic',1,2019,NULL,'85'),(8521718,'movie','The United States vs. Billie Holiday','The United States vs. Billie Holiday',1,2021,NULL,'126'),(8521876,'movie','Yes Day','Yes Day',1,2021,NULL,'86'),(8522006,'movie','Happiest Season','Happiest Season',1,2020,NULL,'102'),(8579674,'movie','1917','1917',1,2019,NULL,'119'),(8580274,'movie','Eurovision Song Contest: The Story of Fire Saga','Eurovision Song Contest: The Story of Fire Saga',1,2020,NULL,'123'),(8588366,'short','L\'homme machine','L\'homme machine',1,1885,NULL,'1'),(8592498,'movie','Murder Bury Win','Murder Bury Win',1,2020,NULL,'90'),(8613070,'movie','Portrait of a Lady on Fire','Portrait de la jeune fille en feu',1,2019,NULL,'122'),(8623904,'movie','Last Christmas','Last Christmas',1,2019,NULL,'103'),(8633464,'movie','After Yang','After Yang',1,2021,NULL,'96'),(8633478,'movie','Run','Run',1,2020,NULL,'90'),(8633950,'movie','Invisibles','Les invisibles',1,2018,NULL,'102'),(8637428,'movie','The Farewell','The Farewell',1,2019,NULL,'100'),(8655470,'movie','The Specials','Hors normes',1,2019,NULL,'114'),(8659948,'movie','Love Live! Sunshine!! The School Idol Movie: Over The Rainbow','Love Live! Sunshine!! The School Idol Movie Over The Rainbow',1,2019,NULL,'100'),(8669356,'movie','Joan of Arc','Jeanne',1,2019,NULL,'137'),(8695030,'movie','The Dead Don\'t Die','The Dead Don\'t Die',1,2019,NULL,'104'),(8707922,'movie','Can You Keep a Secret?','Can You Keep a Secret?',1,2019,NULL,'94'),(8712750,'movie','A.M.I.','A.M.I.',1,2019,NULL,'77'),(8717590,'tvMovie','My Little Pony Equestria Girls: Rollercoaster of Friendship','My Little Pony Equestria Girls: Rollercoaster of Friendship',1,2018,NULL,'44'),(8718158,'movie','The Hating Game','The Hating Game',1,2021,NULL,'102'),(8721424,'movie','tick, tick... BOOM!','tick, tick...BOOM!',1,2021,NULL,'120'),(8722346,'movie','Queen & Slim','Queen & Slim',1,2019,NULL,'132'),(8734872,'tvMovie','My Little Pony: Equestria Girls: Spring Breakdown','My Little Pony: Equestria Girls - Spring Breakdown',1,2019,NULL,'44'),(8743064,'movie','See You Yesterday','See You Yesterday',1,2019,NULL,'84'),(8745676,'movie','The Swimmers','The Swimmers',1,2022,NULL,'134'),(8752440,'video','Batman: Hush','Batman: Hush',1,2019,NULL,'81'),(8758086,'movie','Mercy Black','Mercy Black',1,2019,NULL,'88'),(8760708,'movie','M3GAN','M3GAN',1,2022,NULL,'102'),(8760724,'video','Death Toilet','Death Toilet',1,2018,NULL,'60'),(8772262,'movie','Midsommar','Midsommar',1,2019,NULL,'148'),(8781414,'movie','Freaks','Freaks',1,2018,NULL,'105'),(8784956,'movie','Ava','Ava',1,2020,NULL,'96'),(8816194,'movie','Come to Daddy','Come to Daddy',1,2019,NULL,'96'),(8847712,'movie','The French Dispatch','The French Dispatch',1,2021,NULL,'107'),(8850222,'movie','Peninsula','Busanhaeng 2: Bando',1,2020,NULL,'116'),(8851148,'movie','The In Between','The In Between',1,2022,NULL,'115'),(8855960,'movie','Straight Up','Straight Up',1,2019,NULL,'95'),(8856090,'movie','Before You Know It','Before You Know It',1,2019,NULL,'98'),(8856470,'movie','Pokémon: Mewtwo Strikes Back - Evolution','Pokémon: Mewtwo Strikes Back - Evolution',1,2019,NULL,'98'),(8858104,'movie','Guava Island','Guava Island',1,2019,NULL,'55'),(8892756,'movie','Performaniax','Performaniax',1,2019,NULL,'75'),(8893974,'movie','Passing','Passing',1,2021,NULL,'98'),(8900098,'movie','Unremember','Deslembro',1,2018,NULL,'96'),(8932338,'movie','La Peor de Mis Bodas 2','La Peor de Mis Bodas 2',1,2019,NULL,'105'),(8936646,'movie','Extraction','Extraction',1,2020,NULL,'116'),(8946378,'movie','Knives Out','Knives Out',1,2019,NULL,'130'),(8949056,'movie','Yes, God, Yes','Yes, God, Yes',1,2019,NULL,'78'),(8954732,'movie','The Princess Switch','The Princess Switch',1,2018,NULL,'101'),(8962124,'tvSeries','Emily in Paris','Emily in Paris',1,2020,NULL,'30'),(9000224,'movie','The Assistant','The Assistant',1,2019,NULL,'87'),(9016016,'movie','Saint Frances','Saint Frances',1,2019,NULL,'101'),(9021234,'movie','The Legend of 5 Mile Cave','The Legend of 5 Mile Cave',1,2019,NULL,'90'),(9024106,'movie','Unplanned','Unplanned',1,2019,NULL,'109'),(9032400,'movie','Eternals','Eternals',1,2021,NULL,'156'),(9054192,'movie','Queenpins','Queenpins',1,2021,NULL,'110'),(9059704,'movie','An American Pickle','An American Pickle',1,2020,NULL,'88'),(9059760,'tvMiniSeries','Normal People','Normal People',1,2020,2020,'339'),(9072352,'movie','Relic','Relic',1,2020,NULL,'89'),(9075008,'movie','Effigy: Poison and the City','Effigie - Das Gift und die Stadt',1,2019,NULL,'85'),(9086228,'movie','Gretel & Hansel','Gretel & Hansel',1,2020,NULL,'87'),(9100054,'movie','The Lost Daughter','The Lost Daughter',1,2021,NULL,'121'),(9109492,'movie','American Woman','American Woman',1,2019,NULL,'85'),(9114286,'movie','Black Panther: Wakanda Forever','Black Panther: Wakanda Forever',1,2022,NULL,'161'),(9115530,'movie','The Eyes of Tammy Faye','The Eyes of Tammy Faye',1,2021,NULL,'126'),(9116358,'movie','Promare','Puromea',1,2019,NULL,'111'),(9130508,'movie','Cherry','Cherry',1,2021,NULL,'142'),(9138170,'movie','Limbo','Limbo',1,2020,NULL,'104'),(9146058,'movie','Aspromonte: Land of the Forgotten','Aspromonte - La terra degli ultimi',1,2019,NULL,'89'),(9148706,'movie','Misbehaviour','Misbehaviour',1,2020,NULL,'106'),(9174578,'tvSeries','Around the World in 80 Days','Around the World in 80 Days',1,2021,NULL,'60'),(9184592,'tvSeries','The Unlisted','The Unlisted',1,2019,2019,'22'),(9185206,'movie','Are You There God? It\'s Me, Margaret.','Are You There God? It\'s Me, Margaret.',1,2023,NULL,'106'),(9201720,'movie','A New Christmas','A New Christmas',1,2019,NULL,'79'),(9203694,'movie','Stowaway','Stowaway',1,2021,NULL,'116'),(9204204,'movie','Little Joe','Little Joe',1,2019,NULL,'105'),(9214832,'movie','Emma.','Emma.',1,2020,NULL,'124'),(9217514,'short','Une paire de jumelles','Une paire de jumelles',1,2019,NULL,'15'),(9224288,'movie','Mainstream','Mainstream',1,2020,NULL,'94'),(9239816,'short','Canceled','Canceled',1,2019,NULL,'6'),(9243804,'movie','The Green Knight','The Green Knight',1,2021,NULL,'130'),(9243946,'movie','El Camino: A Breaking Bad Movie','El Camino: A Breaking Bad Movie',1,2019,NULL,'122'),(9252508,'movie','Tall Girl','Tall Girl',1,2019,NULL,'101'),(9274670,'movie','13 Minutes','13 Minutes',1,2021,NULL,'108'),(9286908,'movie','High Ground','High Ground',1,2020,NULL,'104'),(9288046,'movie','The Sea Beast','The Sea Beast',1,2022,NULL,'115'),(9288776,'movie','White Snake','Bai She: Yuan qi',1,2019,NULL,'99'),(9288822,'movie','The Wonder','The Wonder',1,2022,NULL,'108'),(9308382,'movie','The High Note','The High Note',1,2020,NULL,'113'),(9354842,'movie','To All the Boys: P.S. I Still Love You','To All the Boys: P.S. I Still Love You',1,2020,NULL,'101'),(9357050,'movie','Dear Evan Hansen','Dear Evan Hansen',1,2021,NULL,'137'),(9358120,'movie','We Are Little Zombies','Wî â Ritoru Zonbîzu',1,2019,NULL,'120'),(9362722,'movie','Spider-Man: Across the Spider-Verse','Spider-Man: Across the Spider-Verse',1,2023,NULL,'140'),(9362930,'movie','Blue Beetle','Blue Beetle',1,2023,NULL,'127'),(9376612,'movie','Shang-Chi and the Legend of the Ten Rings','Shang-Chi and the Legend of the Ten Rings',1,2021,NULL,'132'),(9381998,'tvMovie','Agatha and the Truth of Murder','Agatha and the Truth of Murder',1,2018,NULL,'92'),(9389998,'movie','Pushpa: The Rise - Part 1','Pushpa: The Rise - Part 1',1,2021,NULL,'179'),(9411972,'movie','Where the Crawdads Sing','Where the Crawdads Sing',1,2022,NULL,'125'),(9412268,'movie','Furie','Hai Phuong',1,2019,NULL,'98'),(9418878,'movie','A Tale of Three Sisters','Kiz Kardesler',1,2019,NULL,'108'),(9419834,'movie','Secret Obsession','Secret Obsession',1,2019,NULL,'97'),(9419884,'movie','Doctor Strange in the Multiverse of Madness','Doctor Strange in the Multiverse of Madness',1,2022,NULL,'126'),(9421570,'movie','The Guilty','The Guilty',1,2021,NULL,'90'),(9426210,'movie','Weathering with You','Tenki no ko',1,2019,NULL,'112'),(9484998,'movie','Palm Springs','Palm Springs',1,2020,NULL,'90'),(9486226,'tvSeries','Les de l\'hoquei','Les de l\'hoquei',1,2019,2020,'50'),(9507276,'movie','Saga of Tanya the Evil - The Movie','Saga of Tanya the Evil Movie',1,2019,NULL,'115'),(9522080,'movie','Papicha','Papicha',1,2019,NULL,'108'),(9572534,'movie','Golden Arm','Golden Arm',1,2020,NULL,'91'),(9583840,'movie','The Young Arsonists','The Young Arsonists',1,2022,NULL,'97'),(9602378,'movie','Good Kisser','Good Kisser',1,2019,NULL,'80'),(9603212,'movie','Mission: Impossible - Dead Reckoning Part One','Mission: Impossible - Dead Reckoning Part One',1,2023,NULL,'163'),(9617456,'movie','For Sama','For Sama',1,2019,NULL,'100'),(9620288,'movie','King Richard','King Richard',1,2021,NULL,'144'),(9620292,'movie','Promising Young Woman','Promising Young Woman',1,2020,NULL,'113'),(9624766,'movie','Jiu Jitsu','Jiu Jitsu',1,2020,NULL,'102'),(9632590,'movie','An Easy Girl','Une fille facile',1,2019,NULL,'92'),(9639470,'movie','Last Night in Soho','Last Night in Soho',1,2021,NULL,'116'),(9670282,'movie','Zoombies 2','Zoombies 2',1,2019,NULL,'84'),(9683478,'movie','The Half of It','The Half of It',1,2020,NULL,'104'),(9686708,'movie','The King of Staten Island','The King of Staten Island',1,2020,NULL,'136'),(9691136,'movie','Shadow in the Cloud','Shadow in the Cloud',1,2020,NULL,'83'),(9701940,'movie','Fear Street: Part Two - 1978','Fear Street: 1978',1,2021,NULL,'109'),(9701942,'movie','Fear Street: Part Three - 1666','Fear Street: 1666',1,2021,NULL,'114'),(9714030,'movie','France','France',1,2021,NULL,'133'),(9729768,'movie','June Again','June Again',1,2020,NULL,'99'),(9731598,'movie','Bros','Bros',1,2022,NULL,'115'),(9737798,'movie','Needle Park Baby','Platzspitzbaby',1,2020,NULL,'98'),(9738716,'movie','The World to Come','The World to Come',1,2020,NULL,'105'),(9741310,'movie','Slaxx','Slaxx',1,2020,NULL,'77'),(9764362,'movie','The Menu','The Menu',1,2022,NULL,'107'),(9765226,'movie','1 Night in San Diego','1 Night in San Diego',1,2020,NULL,'85'),(9766166,'tvMovie','Zombies 2','Zombies 2',1,2020,NULL,'84'),(9770150,'movie','Nomadland','Nomadland',1,2020,NULL,'107'),(9775360,'video','Batman vs Teenage Mutant Ninja Turtles','Batman vs Teenage Mutant Ninja Turtles',1,2019,NULL,'87'),(9777666,'movie','The Tomorrow War','The Tomorrow War',1,2021,NULL,'138'),(9783600,'movie','Spiderhead','Spiderhead',1,2022,NULL,'106'),(9784708,'movie','Rise of the Teenage Mutant Ninja Turtles: The Movie','Rise of the Teenage Mutant Ninja Turtles',1,2022,NULL,'82'),(9784798,'movie','Judas and the Black Messiah','Judas and the Black Messiah',1,2021,NULL,'126'),(9806192,'movie','I Lost My Body','J\'ai perdu mon corps',1,2019,NULL,'81'),(9812474,'movie','Lamb','Dýrið',1,2021,NULL,'106'),(9820556,'movie','Breach','Breach',1,2020,NULL,'92'),(9843470,'movie','The Island of Lies','La isla de las mentiras',1,2020,NULL,'93'),(9844522,'movie','Escape Room: Tournament of Champions','Escape Room: Tournament of Champions',1,2021,NULL,'88'),(9866072,'movie','Holidate','Holidate',1,2020,NULL,'104'),(9893250,'movie','I Care a Lot','I Care a Lot',1,2020,NULL,'118'),(9900092,'tvSeries','Motherland: Fort Salem','Motherland: Fort Salem',1,2020,2022,'42'),(9902160,'movie','Herself','Herself',1,2020,NULL,'97'); +/*!40000 ALTER TABLE `Movies` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `MoviesGenres` +-- + +DROP TABLE IF EXISTS `MoviesGenres`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `MoviesGenres` ( + `movieGenreId` bigint DEFAULT NULL, + `movieId` bigint DEFAULT NULL, + `genre` text, + KEY `ix_MoviesGenres_movieGenreId` (`movieGenreId`), + KEY `FK_MoviesGenres_movieId` (`movieId`), + CONSTRAINT `FK_MoviesGenres_movieId` FOREIGN KEY (`movieId`) REFERENCES `Movies` (`movieId`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `MoviesGenres` +-- + +LOCK TABLES `MoviesGenres` WRITE; +/*!40000 ALTER TABLE `MoviesGenres` DISABLE KEYS */; +INSERT INTO `MoviesGenres` VALUES (0,1,'Documentary'),(1,1,'Short'),(2,2,'Animation'),(3,2,'Short'),(4,3,'Animation'),(5,3,'Comedy'),(6,3,'Romance'),(7,4,'Animation'),(8,4,'Short'),(9,5,'Comedy'),(10,5,'Short'),(11,6,'Short'),(12,7,'Short'),(13,7,'Sport'),(14,8,'Documentary'),(15,8,'Short'),(16,9,'Romance'),(17,11,'Documentary'),(18,11,'Short'),(19,12,'Documentary'),(20,12,'Short'),(21,14,'Comedy'),(22,14,'Short'),(23,15,'Animation'),(24,15,'Short'),(25,16,'Documentary'),(26,16,'Short'),(27,17,'Documentary'),(28,17,'Short'),(29,22,'Documentary'),(30,22,'Short'),(31,29,'Documentary'),(32,29,'Short'),(33,41,'Comedy'),(34,41,'Documentary'),(35,41,'Short'),(36,91,'Horror'),(37,91,'Short'),(38,131,'Comedy'),(39,131,'Horror'),(40,131,'Short'),(41,211,'Comedy'),(42,211,'Fantasy'),(43,211,'Horror'),(44,230,'Drama'),(45,230,'Family'),(46,230,'Fantasy'),(47,246,'Fantasy'),(48,246,'Short'),(49,272,'Comedy'),(50,272,'Short'),(51,300,'Animation'),(52,300,'Comedy'),(53,300,'Fantasy'),(54,304,'Family'),(55,304,'Short'),(56,306,'Drama'),(57,306,'Short'),(58,313,'Comedy'),(59,313,'Short'),(60,359,'Comedy'),(61,359,'Fantasy'),(62,359,'Short'),(63,413,'Comedy'),(64,413,'Fantasy'),(65,413,'Horror'),(66,417,'Action'),(67,417,'Adventure'),(68,417,'Comedy'),(69,439,'Action'),(70,439,'Adventure'),(71,439,'Crime'),(72,455,'Comedy'),(73,455,'Music'),(74,455,'Short'),(75,499,'Action'),(76,499,'Adventure'),(77,499,'Family'),(78,554,'Animation'),(79,554,'Comedy'),(80,554,'Family'),(81,567,'Fantasy'),(82,567,'Horror'),(83,567,'Short'),(84,574,'Action'),(85,574,'Adventure'),(86,574,'Biography'),(87,1009,'Comedy'),(88,1009,'Fantasy'),(89,1009,'Short'),(90,2101,'Drama'),(91,2101,'History'),(92,2281,'Short'),(93,2281,'Western'),(94,3424,'Drama'),(95,3424,'Horror'),(96,3424,'Short'),(97,3512,'Comedy'),(98,3512,'Short'),(99,3973,'Comedy'),(100,4972,'Drama'),(101,4972,'History'),(102,4972,'War'),(103,6745,'Crime'),(104,6745,'Drama'),(105,6745,'Romance'),(106,6864,'Drama'),(107,6864,'History'),(108,7361,'Fantasy'),(109,7361,'Romance'),(110,7507,'Comedy'),(111,7507,'Drama'),(112,7507,'Romance'),(113,8443,'Comedy'),(114,8443,'Drama'),(115,8443,'Family'),(116,8489,'Adventure'),(117,8489,'Crime'),(118,8489,'Romance'),(119,8499,'Comedy'),(120,8499,'Drama'),(121,8519,'Adventure'),(122,8519,'Comedy'),(123,8519,'Drama'),(124,8652,'Drama'),(125,8652,'History'),(126,8652,'Romance'),(127,8844,'Comedy'),(128,8844,'Short'),(129,9652,'Drama'),(130,9682,'Action'),(131,9682,'Adventure'),(132,9968,'Drama'),(133,9968,'Romance'),(134,10281,'Comedy'),(135,10281,'Romance'),(136,10323,'Horror'),(137,10323,'Mystery'),(138,10323,'Thriller'),(139,10879,'Action'),(140,10879,'Comedy'),(141,10879,'Romance'),(142,11588,'Comedy'),(143,11588,'Drama'),(144,11588,'Family'),(145,11870,'Drama'),(146,11870,'Romance'),(147,11979,'Drama'),(148,11979,'Romance'),(149,12349,'Comedy'),(150,12349,'Drama'),(151,12349,'Family'),(152,12364,'Drama'),(153,12364,'Fantasy'),(154,12364,'Horror'),(155,12532,'Drama'),(156,12532,'History'),(157,12532,'Romance'),(158,12543,'Comedy'),(159,12543,'Short'),(160,12543,'Western'),(161,13086,'Crime'),(162,13086,'Mystery'),(163,13086,'Thriller'),(164,13140,'Drama'),(165,13140,'Thriller'),(166,13257,'Documentary'),(167,13257,'Fantasy'),(168,13257,'Horror'),(169,13367,'Mystery'),(170,13367,'Sci-Fi'),(171,13427,'Documentary'),(172,13428,'Drama'),(173,13428,'History'),(174,13442,'Fantasy'),(175,13442,'Horror'),(176,13496,'Drama'),(177,13496,'Romance'),(178,13626,'Drama'),(179,13626,'Short'),(180,13845,'Comedy'),(181,13845,'Horror'),(182,13845,'Mystery'),(183,14341,'Comedy'),(184,14341,'Romance'),(185,14341,'Thriller'),(186,14429,'Action'),(187,14429,'Comedy'),(188,14429,'Thriller'),(189,14469,'Drama'),(190,14611,'Adventure'),(191,14611,'Comedy'),(192,14611,'Family'),(193,14624,'Drama'),(194,14624,'Romance'),(195,14945,'Comedy'),(196,14945,'Romance'),(197,15116,'Comedy'),(198,15116,'Drama'),(199,15163,'Action'),(200,15163,'Comedy'),(201,15163,'Romance'),(202,15174,'Adventure'),(203,15174,'Drama'),(204,15174,'Fantasy'),(205,15175,'Adventure'),(206,15175,'Drama'),(207,15175,'Fantasy'),(208,15324,'Action'),(209,15324,'Comedy'),(210,15324,'Romance'),(211,15361,'Drama'),(212,15400,'Adventure'),(213,15400,'Family'),(214,15400,'Fantasy'),(215,15498,'Drama'),(216,15498,'Romance'),(217,15532,'Adventure'),(218,15532,'Animation'),(219,15532,'Family'),(220,15624,'Drama'),(221,15624,'Romance'),(222,15624,'War'),(223,15648,'Drama'),(224,15648,'History'),(225,15648,'Thriller'),(226,15841,'Comedy'),(227,15841,'Family'),(228,15841,'Romance'),(229,15863,'Comedy'),(230,15863,'Western'),(231,15864,'Adventure'),(232,15864,'Comedy'),(233,15864,'Drama'),(234,15881,'Drama'),(235,15881,'Thriller'),(236,15881,'Western'),(237,16039,'Adventure'),(238,16039,'Fantasy'),(239,16039,'Sci-Fi'),(240,16220,'Horror'),(241,16332,'Comedy'),(242,16332,'Romance'),(243,16884,'Drama'),(244,16895,'Action'),(245,16895,'Comedy'),(246,16895,'Romance'),(247,17136,'Drama'),(248,17136,'Sci-Fi'),(249,17410,'Comedy'),(250,17410,'Romance'),(251,17449,'Drama'),(252,17449,'Romance'),(253,17825,'Adventure'),(254,17825,'Drama'),(255,17825,'Thriller'),(256,17925,'Action'),(257,17925,'Adventure'),(258,17925,'Comedy'),(259,18033,'Comedy'),(260,18033,'Romance'),(261,18037,'Drama'),(262,18037,'Music'),(263,18037,'Musical'),(264,18051,'Comedy'),(265,18051,'Drama'),(266,18051,'Family'),(267,18183,'Comedy'),(268,18183,'Romance'),(269,18192,'Biography'),(270,18192,'Drama'),(271,18192,'History'),(272,18199,'Western'),(273,18455,'Drama'),(274,18455,'Romance'),(275,18528,'Drama'),(276,18528,'Horror'),(277,18528,'Romance'),(278,18578,'Action'),(279,18578,'Drama'),(280,18578,'Romance'),(281,18684,'Adventure'),(282,18684,'Crime'),(283,18684,'Drama'),(284,18737,'Crime'),(285,18737,'Drama'),(286,18737,'Romance'),(287,18742,'Comedy'),(288,18742,'Drama'),(289,18742,'Family'),(290,18773,'Comedy'),(291,18773,'Family'),(292,18773,'Romance'),(293,18806,'Drama'),(294,18806,'Romance'),(295,18839,'Crime'),(296,18839,'Drama'),(297,18839,'Film-Noir'),(298,18937,'Action'),(299,18937,'Adventure'),(300,18937,'Comedy'),(301,19130,'Drama'),(302,19130,'Horror'),(303,19130,'Mystery'),(304,19237,'Drama'),(305,19254,'Biography'),(306,19254,'Drama'),(307,19254,'History'),(308,19258,'Comedy'),(309,19258,'Drama'),(310,19258,'Romance'),(311,19290,'Drama'),(312,19304,'Crime'),(313,19304,'Drama'),(314,19304,'Film-Noir'),(315,19412,'Action'),(316,19412,'Comedy'),(317,19412,'Family'),(318,19421,'Action'),(319,19421,'Comedy'),(320,19421,'Drama'),(321,19571,'Action'),(322,19571,'Crime'),(323,19571,'Drama'),(324,19702,'Crime'),(325,19702,'Drama'),(326,19702,'Thriller'),(327,19729,'Drama'),(328,19729,'Musical'),(329,19729,'Romance'),(330,19760,'Documentary'),(331,19760,'Music'),(332,19777,'Comedy'),(333,19777,'Musical'),(334,19777,'Romance'),(335,20286,'Adventure'),(336,20286,'Drama'),(337,20286,'Romance'),(338,20530,'Fantasy'),(339,20530,'Horror'),(340,20530,'Short'),(341,20572,'Comedy'),(342,20629,'Drama'),(343,20629,'War'),(344,20640,'Comedy'),(345,20640,'Family'),(346,20640,'Musical'),(347,20641,'Drama'),(348,20641,'Romance'),(349,20642,'Drama'),(350,20668,'Crime'),(351,20668,'Drama'),(352,20668,'Horror'),(353,20670,'Comedy'),(354,20670,'Musical'),(355,20697,'Drama'),(356,20697,'Music'),(357,21015,'Comedy'),(358,21015,'Drama'),(359,21040,'Drama'),(360,21040,'Romance'),(361,21079,'Action'),(362,21079,'Crime'),(363,21079,'Drama'),(364,21148,'Comedy'),(365,21148,'Drama'),(366,21156,'Drama'),(367,21156,'Romance'),(368,21165,'Crime'),(369,21165,'Mystery'),(370,21165,'Thriller'),(371,21577,'Comedy'),(372,21577,'Drama'),(373,21730,'Drama'),(374,21730,'Family'),(375,21730,'Sport'),(376,21735,'Drama'),(377,21735,'Romance'),(378,21739,'Crime'),(379,21739,'Drama'),(380,21746,'Drama'),(381,21746,'Western'),(382,21749,'Comedy'),(383,21749,'Drama'),(384,21749,'Romance'),(385,21814,'Drama'),(386,21814,'Fantasy'),(387,21814,'Horror'),(388,21815,'Drama'),(389,21815,'Fantasy'),(390,21815,'Horror'),(391,21884,'Drama'),(392,21884,'Horror'),(393,21884,'Sci-Fi'),(394,21985,'Comedy'),(395,22000,'Comedy'),(396,22000,'Musical'),(397,22000,'Romance'),(398,22054,'Drama'),(399,22074,'Comedy'),(400,22074,'Musical'),(401,22074,'Romance'),(402,22100,'Crime'),(403,22100,'Mystery'),(404,22100,'Thriller'),(405,22158,'Comedy'),(406,22158,'Family'),(407,22158,'Musical'),(408,22183,'Drama'),(409,22183,'Romance'),(410,22208,'Comedy'),(411,22208,'Crime'),(412,22208,'Drama'),(413,22251,'Comedy'),(414,22251,'Crime'),(415,22251,'Drama'),(416,22286,'Crime'),(417,22286,'Drama'),(418,22395,'Drama'),(419,22397,'Comedy'),(420,22397,'Drama'),(421,22397,'Family'),(422,22458,'Adventure'),(423,22458,'Drama'),(424,22458,'Romance'),(425,22599,'Comedy'),(426,22599,'Musical'),(427,22614,'Drama'),(428,22614,'Romance'),(429,22694,'Drama'),(430,22694,'Fantasy'),(431,22694,'Mystery'),(432,22718,'Comedy'),(433,22913,'Drama'),(434,22913,'Horror'),(435,22940,'Comedy'),(436,22940,'Musical'),(437,22958,'Drama'),(438,22958,'Romance'),(439,23027,'Comedy'),(440,23027,'Family'),(441,23027,'Musical'),(442,23042,'Crime'),(443,23042,'Drama'),(444,23042,'Film-Noir'),(445,23158,'Comedy'),(446,23158,'Musical'),(447,23158,'Romance'),(448,23196,'Crime'),(449,23196,'Drama'),(450,23196,'Romance'),(451,23213,'Comedy'),(452,23213,'Drama'),(453,23213,'Romance'),(454,23238,'Action'),(455,23238,'Adventure'),(456,23238,'Horror'),(457,23285,'Crime'),(458,23285,'Mystery'),(459,23285,'Thriller'),(460,23293,'Adventure'),(461,23293,'Comedy'),(462,23293,'Drama'),(463,23385,'Comedy'),(464,23385,'Drama'),(465,23385,'Romance'),(466,23395,'Comedy'),(467,23395,'Drama'),(468,23395,'Romance'),(469,23427,'Action'),(470,23427,'Crime'),(471,23427,'Drama'),(472,23458,'Adventure'),(473,23458,'Drama'),(474,23458,'Film-Noir'),(475,23582,'Crime'),(476,23582,'Drama'),(477,23582,'Horror'),(478,23590,'Crime'),(479,23590,'Drama'),(480,23590,'Romance'),(481,23634,'Comedy'),(482,23634,'Drama'),(483,23649,'Fantasy'),(484,23649,'Horror'),(485,23694,'Horror'),(486,23753,'Adventure'),(487,23753,'Family'),(488,23753,'Fantasy'),(489,23775,'Drama'),(490,23775,'Romance'),(491,23814,'Drama'),(492,23814,'Romance'),(493,23814,'War'),(494,23876,'Drama'),(495,23876,'Romance'),(496,23876,'War'),(497,23932,'Drama'),(498,23935,'Comedy'),(499,23935,'Crime'),(500,23935,'Drama'),(501,23940,'Comedy'),(502,23940,'Mystery'),(503,23940,'Romance'),(504,23969,'Comedy'),(505,23969,'Musical'),(506,24008,'Comedy'),(507,24008,'Drama'),(508,24008,'Romance'),(509,24028,'Comedy'),(510,24028,'Musical'),(511,24028,'Romance'),(512,24034,'Comedy'),(513,24034,'Drama'),(514,24034,'Musical'),(515,24069,'Comedy'),(516,24069,'Drama'),(517,24069,'Musical'),(518,24184,'Horror'),(519,24184,'Sci-Fi'),(520,24188,'Film-Noir'),(521,24188,'Horror'),(522,24188,'Sci-Fi'),(523,24210,'Crime'),(524,24210,'Drama'),(525,24210,'Mystery'),(526,24216,'Adventure'),(527,24216,'Horror'),(528,24216,'Sci-Fi'),(529,24264,'Drama'),(530,24264,'Family'),(531,24264,'Romance'),(532,24432,'Animation'),(533,24432,'Music'),(534,24432,'Short'),(535,24473,'Drama'),(536,24481,'Biography'),(537,24481,'Drama'),(538,24481,'Romance'),(539,24548,'Comedy'),(540,24548,'Drama'),(541,24548,'History'),(542,24601,'Comedy'),(543,24601,'Family'),(544,24625,'Mystery'),(545,24625,'Thriller'),(546,24679,'Comedy'),(547,24679,'Crime'),(548,24679,'Drama'),(549,24727,'Drama'),(550,24727,'Horror'),(551,24727,'Mystery'),(552,24831,'Comedy'),(553,24831,'Drama'),(554,24831,'Family'),(555,24844,'Comedy'),(556,24844,'Drama'),(557,24844,'Romance'),(558,24961,'Comedy'),(559,24991,'Biography'),(560,24991,'Drama'),(561,24991,'History'),(562,25004,'Action'),(563,25004,'Adventure'),(564,25004,'Drama'),(565,25091,'Drama'),(566,25091,'Mystery'),(567,25091,'Romance'),(568,25301,'Comedy'),(569,25301,'Drama'),(570,25301,'Romance'),(571,25316,'Comedy'),(572,25316,'Romance'),(573,25318,'Comedy'),(574,25423,'Action'),(575,25423,'Adventure'),(576,25423,'Drama'),(577,25424,'Action'),(578,25424,'Adventure'),(579,25424,'Comedy'),(580,25452,'Crime'),(581,25452,'Mystery'),(582,25452,'Thriller'),(583,25465,'Horror'),(584,25465,'Sci-Fi'),(585,25543,'Adventure'),(586,25543,'Mystery'),(587,25586,'Drama'),(588,25586,'Mystery'),(589,25586,'Romance'),(590,25617,'Drama'),(591,25617,'Romance'),(592,25746,'Drama'),(593,25746,'History'),(594,25746,'Romance'),(595,25755,'Comedy'),(596,25755,'Crime'),(597,25755,'Romance'),(598,25822,'Drama'),(599,26029,'Crime'),(600,26029,'Mystery'),(601,26029,'Thriller'),(602,26071,'Drama'),(603,26071,'Romance'),(604,26138,'Drama'),(605,26138,'Horror'),(606,26138,'Sci-Fi'),(607,26599,'Mystery'),(608,26599,'Romance'),(609,26663,'Horror'),(610,26663,'Romance'),(611,26663,'Sci-Fi'),(612,26667,'Drama'),(613,26667,'Romance'),(614,26752,'Adventure'),(615,26752,'Biography'),(616,26752,'Drama'),(617,26768,'Drama'),(618,26768,'Musical'),(619,26768,'Romance'),(620,26778,'Comedy'),(621,26778,'Music'),(622,26778,'Musical'),(623,26939,'Crime'),(624,26939,'Mystery'),(625,26942,'Comedy'),(626,26942,'Musical'),(627,26942,'Romance'),(628,27125,'Comedy'),(629,27125,'Musical'),(630,27125,'Romance'),(631,27387,'Comedy'),(632,27387,'Musical'),(633,27387,'Romance'),(634,27407,'Crime'),(635,27407,'Drama'),(636,27407,'Film-Noir'),(637,27438,'Action'),(638,27438,'Adventure'),(639,27438,'Romance'),(640,27545,'Drama'),(641,27545,'Fantasy'),(642,27545,'Horror'),(643,27552,'Comedy'),(644,27562,'Comedy'),(645,27652,'Crime'),(646,27652,'Drama'),(647,27652,'Film-Noir'),(648,27698,'Drama'),(649,27698,'Musical'),(650,27752,'Drama'),(651,27977,'Comedy'),(652,27977,'Drama'),(653,27977,'Romance'),(654,27996,'Comedy'),(655,27996,'Drama'),(656,27996,'Romance'),(657,28000,'Crime'),(658,28000,'Mystery'),(659,28000,'Romance'),(660,28010,'Comedy'),(661,28010,'Drama'),(662,28010,'Romance'),(663,28021,'Comedy'),(664,28021,'Drama'),(665,28092,'Comedy'),(666,28092,'Drama'),(667,28092,'Music'),(668,28096,'Drama'),(669,28096,'Thriller'),(670,28174,'Adventure'),(671,28174,'Horror'),(672,28203,'Drama'),(673,28203,'Romance'),(674,28212,'Crime'),(675,28212,'Thriller'),(676,28216,'Drama'),(677,28216,'Music'),(678,28216,'Romance'),(679,28231,'Mystery'),(680,28231,'Thriller'),(681,28333,'Comedy'),(682,28333,'Musical'),(683,28333,'Romance'),(684,28355,'Comedy'),(685,28355,'Mystery'),(686,28355,'Romance'),(687,28356,'Drama'),(688,28356,'Romance'),(689,28505,'Comedy'),(690,28505,'Drama'),(691,28505,'Romance'),(692,28597,'Comedy'),(693,28597,'Romance'),(694,28683,'Drama'),(695,28683,'Romance'),(696,28691,'Adventure'),(697,28691,'Drama'),(698,28691,'Family'),(699,28739,'Drama'),(700,28739,'History'),(701,28739,'Mystery'),(702,28772,'Comedy'),(703,28772,'Family'),(704,28772,'Musical'),(705,29087,'Adventure'),(706,29087,'Drama'),(707,29087,'History'),(708,29146,'Biography'),(709,29146,'Drama'),(710,29162,'Adventure'),(711,29162,'Drama'),(712,29162,'Fantasy'),(713,29192,'Drama'),(714,29192,'Romance'),(715,29207,'Comedy'),(716,29207,'Crime'),(717,29207,'Film-Noir'),(718,29217,'Crime'),(719,29217,'Film-Noir'),(720,29217,'Thriller'),(721,29322,'Comedy'),(722,29322,'Drama'),(723,29322,'Fantasy'),(724,29377,'Biography'),(725,29377,'Drama'),(726,29377,'Romance'),(727,29442,'Adventure'),(728,29442,'Drama'),(729,29442,'Romance'),(730,29453,'Crime'),(731,29453,'Drama'),(732,29453,'Romance'),(733,29546,'Comedy'),(734,29546,'Musical'),(735,29546,'Romance'),(736,29565,'Crime'),(737,29565,'Mystery'),(738,29583,'Adventure'),(739,29583,'Animation'),(740,29583,'Family'),(741,29604,'Comedy'),(742,29604,'Drama'),(743,29604,'Romance'),(744,29608,'Drama'),(745,29608,'Romance'),(746,29682,'Comedy'),(747,29682,'Fantasy'),(748,29682,'Romance'),(749,29751,'Adventure'),(750,29751,'Family'),(751,29811,'Crime'),(752,29811,'Mystery'),(753,29811,'Romance'),(754,29843,'Action'),(755,29843,'Adventure'),(756,29843,'Romance'),(757,29870,'Crime'),(758,29870,'Drama'),(759,29870,'Film-Noir'),(760,29929,'Comedy'),(761,29929,'Romance'),(762,29942,'Biography'),(763,29942,'Drama'),(764,29942,'Family'),(765,29947,'Comedy'),(766,29971,'Comedy'),(767,29971,'Musical'),(768,29971,'Romance'),(769,30044,'Drama'),(770,30044,'War'),(771,30127,'Comedy'),(772,30127,'Drama'),(773,30149,'Drama'),(774,30149,'Music'),(775,30149,'Romance'),(776,30241,'Comedy'),(777,30241,'Romance'),(778,30287,'Drama'),(779,30287,'Romance'),(780,30341,'Mystery'),(781,30341,'Thriller'),(782,30396,'Comedy'),(783,30396,'Mystery'),(784,30473,'Adventure'),(785,30473,'Crime'),(786,30473,'Drama'),(787,30755,'Drama'),(788,31022,'Crime'),(789,31022,'Mystery'),(790,31022,'Thriller'),(791,31060,'Comedy'),(792,31060,'Musical'),(793,31066,'Comedy'),(794,31066,'Musical'),(795,31210,'Drama'),(796,31210,'Romance'),(797,31225,'Comedy'),(798,31225,'Western'),(799,31235,'Western'),(800,31252,'Drama'),(801,31252,'Romance'),(802,31252,'War'),(803,31322,'Comedy'),(804,31322,'Family'),(805,31322,'War'),(806,31359,'Mystery'),(807,31359,'Thriller'),(808,31381,'Drama'),(809,31381,'Romance'),(810,31381,'War'),(811,31385,'Drama'),(812,31385,'Romance'),(813,31387,'Comedy'),(814,31387,'Horror'),(815,31397,'Adventure'),(816,31397,'Animation'),(817,31397,'Comedy'),(818,31398,'Adventure'),(819,31398,'Comedy'),(820,31398,'War'),(821,31455,'Drama'),(822,31455,'Romance'),(823,31505,'Adventure'),(824,31505,'Crime'),(825,31507,'Western'),(826,31514,'Crime'),(827,31514,'Drama'),(828,31514,'Romance'),(829,31516,'Biography'),(830,31516,'Drama'),(831,31516,'History'),(832,31593,'Comedy'),(833,31593,'Drama'),(834,31593,'Romance'),(835,31679,'Comedy'),(836,31679,'Drama'),(837,31680,'Adventure'),(838,31680,'Crime'),(839,31680,'Drama'),(840,31709,'Comedy'),(841,31709,'Crime'),(842,31709,'Family'),(843,31725,'Comedy'),(844,31725,'Romance'),(845,31742,'Adventure'),(846,31742,'Drama'),(847,31762,'Adventure'),(848,31762,'Drama'),(849,31762,'Romance'),(850,31826,'Biography'),(851,31826,'Drama'),(852,31826,'History'),(853,31885,'Comedy'),(854,31885,'Drama'),(855,31971,'Adventure'),(856,31971,'Drama'),(857,31971,'Western'),(858,31981,'Biography'),(859,31981,'Drama'),(860,31981,'History'),(861,32138,'Adventure'),(862,32138,'Family'),(863,32138,'Fantasy'),(864,32143,'Comedy'),(865,32143,'Drama'),(866,32145,'Drama'),(867,32145,'Romance'),(868,32155,'Biography'),(869,32155,'Drama'),(870,32155,'History'),(871,32194,'Drama'),(872,32194,'Romance'),(873,32211,'Drama'),(874,32211,'Romance'),(875,32215,'Horror'),(876,32273,'Drama'),(877,32273,'Romance'),(878,32273,'Western'),(879,32339,'Comedy'),(880,32339,'Family'),(881,32349,'Comedy'),(882,32349,'Romance'),(883,32376,'Comedy'),(884,32376,'Drama'),(885,32376,'Music'),(886,32406,'Drama'),(887,32406,'Horror'),(888,32406,'Mystery'),(889,32455,'Animation'),(890,32455,'Family'),(891,32455,'Fantasy'),(892,32484,'Action'),(893,32484,'Romance'),(894,32484,'Thriller'),(895,32551,'Drama'),(896,32553,'Comedy'),(897,32553,'Drama'),(898,32553,'War'),(899,32599,'Comedy'),(900,32599,'Drama'),(901,32599,'Romance'),(902,32676,'Biography'),(903,32676,'Drama'),(904,32676,'Family'),(905,32690,'Action'),(906,32690,'Adventure'),(907,32690,'Crime'),(908,32701,'Crime'),(909,32701,'Drama'),(910,32701,'Film-Noir'),(911,32811,'Drama'),(912,32904,'Comedy'),(913,32904,'Romance'),(914,32910,'Adventure'),(915,32910,'Animation'),(916,32910,'Comedy'),(917,32943,'Drama'),(918,32943,'Romance'),(919,32946,'Drama'),(920,32946,'Mystery'),(921,32946,'Romance'),(922,32976,'Drama'),(923,32976,'Film-Noir'),(924,32976,'Mystery'),(925,32983,'Drama'),(926,32983,'Western'),(927,33021,'Drama'),(928,33021,'War'),(929,33021,'Western'),(930,33028,'Action'),(931,33028,'Adventure'),(932,33028,'History'),(933,33045,'Comedy'),(934,33045,'Drama'),(935,33045,'Romance'),(936,33105,'Adventure'),(937,33105,'Drama'),(938,33105,'Romance'),(939,33152,'Adventure'),(940,33152,'Family'),(941,33152,'Fantasy'),(942,33373,'Comedy'),(943,33373,'Romance'),(944,33436,'Comedy'),(945,33436,'Musical'),(946,33436,'War'),(947,33459,'Drama'),(948,33459,'Romance'),(949,33467,'Drama'),(950,33467,'Mystery'),(951,33533,'Comedy'),(952,33533,'Romance'),(953,33563,'Adventure'),(954,33563,'Animation'),(955,33563,'Drama'),(956,33627,'Drama'),(957,33627,'Thriller'),(958,33627,'War'),(959,33717,'Action'),(960,33717,'Adventure'),(961,33717,'Drama'),(962,33723,'Comedy'),(963,33723,'Horror'),(964,33727,'Animation'),(965,33727,'Comedy'),(966,33727,'Family'),(967,33729,'Drama'),(968,33729,'Family'),(969,33787,'Adventure'),(970,33787,'Comedy'),(971,33787,'Horror'),(972,33802,'Crime'),(973,33802,'Drama'),(974,33802,'Film-Noir'),(975,33804,'Comedy'),(976,33804,'Romance'),(977,33836,'Drama'),(978,33836,'Romance'),(979,33870,'Crime'),(980,33870,'Film-Noir'),(981,33870,'Mystery'),(982,33874,'Comedy'),(983,33874,'Romance'),(984,33891,'Comedy'),(985,33891,'Drama'),(986,33891,'Romance'),(987,33902,'Drama'),(988,33928,'Comedy'),(989,33928,'Crime'),(990,33928,'Drama'),(991,34091,'Animation'),(992,34091,'Comedy'),(993,34091,'Family'),(994,34175,'Crime'),(995,34175,'Drama'),(996,34175,'Film-Noir'),(997,34240,'Adventure'),(998,34240,'Comedy'),(999,34240,'Drama'),(1000,34241,'Comedy'),(1001,34248,'Film-Noir'),(1002,34248,'Mystery'),(1003,34248,'Thriller'),(1004,34328,'Comedy'),(1005,34328,'Mystery'),(1006,34328,'Romance'),(1007,34398,'Horror'),(1008,34398,'Mystery'),(1009,34398,'Romance'),(1010,34492,'Adventure'),(1011,34492,'Animation'),(1012,34492,'Drama'),(1013,34521,'Thriller'),(1014,34521,'War'),(1015,34583,'Drama'),(1016,34583,'Romance'),(1017,34583,'War'),(1018,34587,'Fantasy'),(1019,34587,'Horror'),(1020,34587,'Thriller'),(1021,34591,'Drama'),(1022,34613,'Horror'),(1023,34613,'Sci-Fi'),(1024,34746,'Musical'),(1025,34746,'Romance'),(1026,34746,'War'),(1027,34770,'Drama'),(1028,34770,'Romance'),(1029,34882,'Comedy'),(1030,34882,'Fantasy'),(1031,34882,'Musical'),(1032,35015,'Drama'),(1033,35015,'Romance'),(1034,35017,'Fantasy'),(1035,35017,'Horror'),(1036,35019,'Comedy'),(1037,35019,'Romance'),(1038,35093,'Drama'),(1039,35093,'Romance'),(1040,35093,'War'),(1041,35140,'Drama'),(1042,35140,'Romance'),(1043,35160,'Crime'),(1044,35160,'Drama'),(1045,35160,'Romance'),(1046,35279,'Thriller'),(1047,35279,'War'),(1048,35317,'Adventure'),(1049,35317,'Crime'),(1050,35317,'Drama'),(1051,35360,'Drama'),(1052,35360,'Romance'),(1053,35415,'Comedy'),(1054,35415,'Drama'),(1055,35415,'Romance'),(1056,35423,'Comedy'),(1057,35423,'Fantasy'),(1058,35423,'Romance'),(1059,35446,'Comedy'),(1060,35446,'Romance'),(1061,35446,'War'),(1062,35567,'Comedy'),(1063,35567,'Drama'),(1064,35567,'Romance'),(1065,35636,'Drama'),(1066,35735,'Drama'),(1067,35735,'War'),(1068,35753,'Crime'),(1069,35753,'Drama'),(1070,35753,'Mystery'),(1071,35770,'Drama'),(1072,35770,'War'),(1073,35881,'Drama'),(1074,35881,'War'),(1075,35942,'Comedy'),(1076,35942,'Musical'),(1077,35957,'Drama'),(1078,35957,'War'),(1079,35979,'Comedy'),(1080,35979,'Drama'),(1081,35979,'Fantasy'),(1082,36027,'Drama'),(1083,36027,'Fantasy'),(1084,36027,'Horror'),(1085,36112,'Drama'),(1086,36112,'Romance'),(1087,36112,'War'),(1088,36160,'Drama'),(1089,36160,'War'),(1090,36172,'Comedy'),(1091,36230,'Drama'),(1092,36230,'Romance'),(1093,36244,'Drama'),(1094,36244,'Western'),(1095,36323,'Action'),(1096,36323,'Drama'),(1097,36323,'War'),(1098,36326,'Adventure'),(1099,36326,'Animation'),(1100,36326,'Comedy'),(1101,36341,'Drama'),(1102,36341,'Horror'),(1103,36341,'Mystery'),(1104,36342,'Film-Noir'),(1105,36342,'Thriller'),(1106,36363,'Comedy'),(1107,36363,'Musical'),(1108,36363,'Romance'),(1109,36367,'Drama'),(1110,36367,'Romance'),(1111,36367,'War'),(1112,36400,'Action'),(1113,36400,'Adventure'),(1114,36400,'Drama'),(1115,36418,'Drama'),(1116,36418,'Romance'),(1117,36418,'War'),(1118,36506,'Drama'),(1119,36506,'History'),(1120,36515,'Drama'),(1121,36515,'Thriller'),(1122,36613,'Comedy'),(1123,36613,'Crime'),(1124,36613,'Thriller'),(1125,36695,'Comedy'),(1126,36695,'Drama'),(1127,36695,'Mystery'),(1128,36723,'Comedy'),(1129,36723,'Music'),(1130,36723,'Musical'),(1131,36775,'Crime'),(1132,36775,'Drama'),(1133,36775,'Film-Noir'),(1134,36818,'Comedy'),(1135,36868,'Drama'),(1136,36868,'Romance'),(1137,36868,'War'),(1138,36891,'Comedy'),(1139,36891,'War'),(1140,36914,'Drama'),(1141,36914,'Romance'),(1142,36940,'Drama'),(1143,36940,'Family'),(1144,36940,'Romance'),(1145,36947,'Drama'),(1146,36969,'Drama'),(1147,36969,'Romance'),(1148,37008,'Drama'),(1149,37008,'Film-Noir'),(1150,37008,'Mystery'),(1151,37017,'Drama'),(1152,37017,'War'),(1153,37059,'Comedy'),(1154,37059,'Drama'),(1155,37059,'Family'),(1156,37076,'Musical'),(1157,37094,'Drama'),(1158,37094,'Romance'),(1159,37120,'Drama'),(1160,37120,'Family'),(1161,37120,'Sport'),(1162,37280,'Drama'),(1163,37280,'Romance'),(1164,37280,'War'),(1165,37365,'Film-Noir'),(1166,37365,'Mystery'),(1167,37382,'Adventure'),(1168,37382,'Comedy'),(1169,37382,'Film-Noir'),(1170,37415,'Fantasy'),(1171,37415,'Horror'),(1172,37415,'Mystery'),(1173,37469,'Crime'),(1174,37469,'Drama'),(1175,37469,'Film-Noir'),(1176,37508,'Comedy'),(1177,37508,'Romance'),(1178,37508,'Western'),(1179,37514,'Comedy'),(1180,37514,'Fantasy'),(1181,37514,'Musical'),(1182,37536,'Drama'),(1183,37558,'Drama'),(1184,37558,'Romance'),(1185,37614,'Drama'),(1186,37630,'Drama'),(1187,37630,'Romance'),(1188,37635,'Drama'),(1189,37635,'Horror'),(1190,37638,'Crime'),(1191,37638,'Drama'),(1192,37638,'Film-Noir'),(1193,37671,'Drama'),(1194,37671,'Fantasy'),(1195,37671,'Romance'),(1196,37674,'Drama'),(1197,37674,'Romance'),(1198,37800,'Drama'),(1199,37800,'Romance'),(1200,37820,'Drama'),(1201,37820,'Horror'),(1202,37820,'Mystery'),(1203,37843,'Drama'),(1204,37843,'War'),(1205,37865,'Drama'),(1206,37865,'Film-Noir'),(1207,37865,'Romance'),(1208,37884,'Drama'),(1209,37884,'Film-Noir'),(1210,37913,'Crime'),(1211,37913,'Drama'),(1212,37913,'Film-Noir'),(1213,37954,'Action'),(1214,37954,'Adventure'),(1215,37954,'Drama'),(1216,38017,'Mystery'),(1217,38057,'Crime'),(1218,38057,'Drama'),(1219,38057,'Film-Noir'),(1220,38109,'Film-Noir'),(1221,38109,'Mystery'),(1222,38109,'Romance'),(1223,38166,'Animation'),(1224,38166,'Comedy'),(1225,38166,'Family'),(1226,38250,'Adventure'),(1227,38250,'Drama'),(1228,38259,'Crime'),(1229,38259,'Drama'),(1230,38259,'Mystery'),(1231,38348,'Drama'),(1232,38348,'Fantasy'),(1233,38348,'Romance'),(1234,38355,'Crime'),(1235,38355,'Film-Noir'),(1236,38355,'Mystery'),(1237,38409,'Crime'),(1238,38409,'Film-Noir'),(1239,38409,'Romance'),(1240,38453,'Crime'),(1241,38453,'Drama'),(1242,38453,'Film-Noir'),(1243,38461,'Crime'),(1244,38461,'Drama'),(1245,38461,'Film-Noir'),(1246,38474,'Biography'),(1247,38474,'Drama'),(1248,38474,'Mystery'),(1249,38494,'Crime'),(1250,38494,'Mystery'),(1251,38499,'Drama'),(1252,38499,'Romance'),(1253,38499,'Western'),(1254,38559,'Drama'),(1255,38559,'Film-Noir'),(1256,38559,'Romance'),(1257,38574,'Adventure'),(1258,38574,'Drama'),(1259,38574,'Mystery'),(1260,38589,'Comedy'),(1261,38589,'Drama'),(1262,38589,'History'),(1263,38650,'Drama'),(1264,38650,'Family'),(1265,38650,'Fantasy'),(1266,38661,'Biography'),(1267,38661,'Drama'),(1268,38661,'Music'),(1269,38718,'Adventure'),(1270,38718,'Animation'),(1271,38718,'Comedy'),(1272,38733,'Drama'),(1273,38733,'Fantasy'),(1274,38733,'Romance'),(1275,38762,'Drama'),(1276,38762,'Romance'),(1277,38762,'Western'),(1278,38787,'Drama'),(1279,38787,'Film-Noir'),(1280,38787,'Romance'),(1281,38854,'Crime'),(1282,38854,'Drama'),(1283,38854,'Film-Noir'),(1284,38890,'Drama'),(1285,38890,'Thriller'),(1286,38890,'War'),(1287,38924,'Drama'),(1288,38924,'Music'),(1289,38934,'Crime'),(1290,38934,'Horror'),(1291,38934,'Mystery'),(1292,38969,'Animation'),(1293,38969,'Comedy'),(1294,38969,'Family'),(1295,38990,'Drama'),(1296,38990,'Romance'),(1297,38990,'Thriller'),(1298,38991,'Crime'),(1299,38991,'Drama'),(1300,38991,'Film-Noir'),(1301,39017,'Crime'),(1302,39017,'Drama'),(1303,39017,'Film-Noir'),(1304,39054,'Comedy'),(1305,39054,'Musical'),(1306,39054,'Romance'),(1307,39112,'Drama'),(1308,39192,'Drama'),(1309,39204,'Drama'),(1310,39204,'Film-Noir'),(1311,39204,'Sport'),(1312,39220,'Crime'),(1313,39220,'Drama'),(1314,39220,'Film-Noir'),(1315,39236,'Musical'),(1316,39236,'Romance'),(1317,39286,'Crime'),(1318,39286,'Drama'),(1319,39286,'Film-Noir'),(1320,39302,'Film-Noir'),(1321,39302,'Thriller'),(1322,39324,'Crime'),(1323,39324,'Drama'),(1324,39349,'Comedy'),(1325,39349,'Romance'),(1326,39360,'Adventure'),(1327,39360,'Romance'),(1328,39404,'Adventure'),(1329,39404,'Animation'),(1330,39404,'Comedy'),(1331,39416,'Drama'),(1332,39416,'Romance'),(1333,39420,'Comedy'),(1334,39420,'Drama'),(1335,39420,'Fantasy'),(1336,39431,'Comedy'),(1337,39431,'Musical'),(1338,39431,'Romance'),(1339,39441,'Western'),(1340,39628,'Comedy'),(1341,39628,'Drama'),(1342,39628,'Family'),(1343,39631,'Comedy'),(1344,39631,'Crime'),(1345,39631,'Drama'),(1346,39650,'Drama'),(1347,39677,'Crime'),(1348,39677,'Drama'),(1349,39677,'Film-Noir'),(1350,39689,'Crime'),(1351,39689,'Drama'),(1352,39689,'Film-Noir'),(1353,39694,'Crime'),(1354,39694,'Drama'),(1355,39694,'Romance'),(1356,39819,'Comedy'),(1357,39819,'Musical'),(1358,39819,'Romance'),(1359,39938,'Comedy'),(1360,39938,'Drama'),(1361,39938,'Musical'),(1362,39949,'Drama'),(1363,39969,'Comedy'),(1364,39969,'Romance'),(1365,40068,'Comedy'),(1366,40068,'Family'),(1367,40068,'Fantasy'),(1368,40098,'Drama'),(1369,40098,'Romance'),(1370,40183,'Biography'),(1371,40183,'Drama'),(1372,40183,'History'),(1373,40202,'Drama'),(1374,40202,'Film-Noir'),(1375,40214,'Crime'),(1376,40214,'Musical'),(1377,40221,'Crime'),(1378,40221,'Drama'),(1379,40221,'Film-Noir'),(1380,40242,'Action'),(1381,40242,'Drama'),(1382,40242,'War'),(1383,40308,'Musical'),(1384,40308,'Romance'),(1385,40321,'Drama'),(1386,40321,'Romance'),(1387,40379,'Action'),(1388,40379,'Adventure'),(1389,40379,'Comedy'),(1390,40416,'Drama'),(1391,40458,'Drama'),(1392,40458,'Family'),(1393,40491,'Biography'),(1394,40491,'Drama'),(1395,40491,'War'),(1396,40497,'Comedy'),(1397,40506,'Action'),(1398,40506,'Crime'),(1399,40506,'Drama'),(1400,40522,'Drama'),(1401,40525,'Crime'),(1402,40525,'Drama'),(1403,40525,'Film-Noir'),(1404,40558,'Drama'),(1405,40558,'History'),(1406,40558,'War'),(1407,40580,'Animation'),(1408,40580,'Comedy'),(1409,40580,'Family'),(1410,40613,'Comedy'),(1411,40613,'Romance'),(1412,40636,'Crime'),(1413,40636,'Drama'),(1414,40636,'Film-Noir'),(1415,40724,'Drama'),(1416,40724,'Western'),(1417,40725,'Drama'),(1418,40725,'Music'),(1419,40725,'Romance'),(1420,40746,'Crime'),(1421,40746,'Drama'),(1422,40746,'Mystery'),(1423,40806,'Drama'),(1424,40806,'Mystery'),(1425,40897,'Adventure'),(1426,40897,'Drama'),(1427,40897,'Western'),(1428,41088,'Drama'),(1429,41088,'Film-Noir'),(1430,41088,'Thriller'),(1431,41090,'Comedy'),(1432,41090,'Romance'),(1433,41094,'Animation'),(1434,41094,'Comedy'),(1435,41094,'Family'),(1436,41113,'Drama'),(1437,41113,'Film-Noir'),(1438,41154,'Drama'),(1439,41158,'Comedy'),(1440,41158,'Musical'),(1441,41257,'Comedy'),(1442,41257,'Drama'),(1443,41373,'Drama'),(1444,41373,'Film-Noir'),(1445,41373,'Romance'),(1446,41386,'Drama'),(1447,41386,'Romance'),(1448,41452,'Drama'),(1449,41452,'Romance'),(1450,41498,'Comedy'),(1451,41498,'Romance'),(1452,41498,'War'),(1453,41546,'Comedy'),(1454,41546,'Crime'),(1455,41587,'Comedy'),(1456,41587,'Drama'),(1457,41587,'Romance'),(1458,41594,'Drama'),(1459,41594,'Family'),(1460,41594,'Romance'),(1461,41628,'Mystery'),(1462,41628,'Thriller'),(1463,41650,'Adventure'),(1464,41650,'Drama'),(1465,41650,'Fantasy'),(1466,41716,'Comedy'),(1467,41716,'Musical'),(1468,41716,'Romance'),(1469,41719,'Drama'),(1470,41719,'Fantasy'),(1471,41719,'Romance'),(1472,41746,'Drama'),(1473,41859,'Crime'),(1474,41859,'Film-Noir'),(1475,41859,'Sport'),(1476,41947,'Action'),(1477,41947,'Adventure'),(1478,41947,'Fantasy'),(1479,41959,'Film-Noir'),(1480,41959,'Mystery'),(1481,41959,'Thriller'),(1482,42004,'Crime'),(1483,42004,'Drama'),(1484,42004,'Romance'),(1485,42031,'Drama'),(1486,42031,'Romance'),(1487,42192,'Drama'),(1488,42208,'Crime'),(1489,42208,'Drama'),(1490,42208,'Film-Noir'),(1491,42276,'Comedy'),(1492,42276,'Drama'),(1493,42276,'Romance'),(1494,42296,'Crime'),(1495,42296,'Drama'),(1496,42296,'Film-Noir'),(1497,42332,'Animation'),(1498,42332,'Family'),(1499,42332,'Fantasy'),(1500,42369,'Crime'),(1501,42369,'Drama'),(1502,42369,'Film-Noir'),(1503,42436,'Drama'),(1504,42469,'Sci-Fi'),(1505,42469,'Thriller'),(1506,42530,'Crime'),(1507,42530,'Drama'),(1508,42530,'Film-Noir'),(1509,42546,'Comedy'),(1510,42546,'Drama'),(1511,42546,'Fantasy'),(1512,42593,'Drama'),(1513,42593,'Film-Noir'),(1514,42593,'Mystery'),(1515,42619,'Drama'),(1516,42792,'Crime'),(1517,42792,'Drama'),(1518,42792,'Film-Noir'),(1519,42832,'Crime'),(1520,42832,'Drama'),(1521,42832,'Film-Noir'),(1522,42876,'Crime'),(1523,42876,'Drama'),(1524,42876,'Mystery'),(1525,42958,'Drama'),(1526,42994,'Film-Noir'),(1527,42994,'Mystery'),(1528,42994,'Thriller'),(1529,43012,'Musical'),(1530,43012,'Romance'),(1531,43014,'Drama'),(1532,43014,'Film-Noir'),(1533,43025,'Action'),(1534,43025,'Adventure'),(1535,43045,'Crime'),(1536,43045,'Drama'),(1537,43045,'Mystery'),(1538,43137,'Action'),(1539,43137,'Drama'),(1540,43137,'Western'),(1541,43265,'Adventure'),(1542,43265,'Drama'),(1543,43265,'Romance'),(1544,43274,'Adventure'),(1545,43274,'Animation'),(1546,43274,'Comedy'),(1547,43278,'Drama'),(1548,43278,'Musical'),(1549,43278,'Romance'),(1550,43313,'Drama'),(1551,43313,'Romance'),(1552,43332,'Drama'),(1553,43338,'Drama'),(1554,43338,'Film-Noir'),(1555,43390,'Crime'),(1556,43390,'Drama'),(1557,43390,'Film-Noir'),(1558,43456,'Drama'),(1559,43456,'Sci-Fi'),(1560,43511,'Drama'),(1561,43614,'Drama'),(1562,43614,'Romance'),(1563,43686,'Comedy'),(1564,43686,'Drama'),(1565,43686,'War'),(1566,43695,'Adventure'),(1567,43769,'Biography'),(1568,43769,'Drama'),(1569,43769,'History'),(1570,43871,'Drama'),(1571,43871,'History'),(1572,43871,'War'),(1573,43949,'Biography'),(1574,43949,'Drama'),(1575,43949,'Romance'),(1576,44030,'Drama'),(1577,44030,'Family'),(1578,44030,'Musical'),(1579,44079,'Crime'),(1580,44079,'Drama'),(1581,44079,'Film-Noir'),(1582,44081,'Drama'),(1583,44092,'Crime'),(1584,44092,'Drama'),(1585,44100,'Drama'),(1586,44121,'Horror'),(1587,44121,'Sci-Fi'),(1588,44205,'Adventure'),(1589,44205,'Drama'),(1590,44205,'Western'),(1591,44391,'Drama'),(1592,44391,'Romance'),(1593,44419,'Adventure'),(1594,44419,'Drama'),(1595,44419,'Western'),(1596,44446,'Adventure'),(1597,44446,'Drama'),(1598,44446,'Romance'),(1599,44502,'Drama'),(1600,44502,'Film-Noir'),(1601,44502,'Romance'),(1602,44672,'Drama'),(1603,44672,'Family'),(1604,44672,'Romance'),(1605,44706,'Drama'),(1606,44706,'Thriller'),(1607,44706,'Western'),(1608,44741,'Drama'),(1609,44760,'Adventure'),(1610,44760,'Drama'),(1611,44760,'Romance'),(1612,44837,'Drama'),(1613,44837,'Music'),(1614,44837,'Romance'),(1615,44855,'Comedy'),(1616,44855,'Musical'),(1617,44855,'Mystery'),(1618,45061,'Comedy'),(1619,45061,'Drama'),(1620,45061,'Romance'),(1621,45152,'Comedy'),(1622,45152,'Musical'),(1623,45152,'Romance'),(1624,45162,'Adventure'),(1625,45162,'Drama'),(1626,45162,'Romance'),(1627,45197,'Action'),(1628,45197,'Adventure'),(1629,45197,'Family'),(1630,45220,'Action'),(1631,45220,'Adventure'),(1632,45464,'Family'),(1633,45464,'Fantasy'),(1634,45464,'Music'),(1635,45537,'Comedy'),(1636,45537,'Musical'),(1637,45537,'Romance'),(1638,45546,'Horror'),(1639,45546,'Sci-Fi'),(1640,45555,'Crime'),(1641,45555,'Film-Noir'),(1642,45555,'Thriller'),(1643,45591,'Musical'),(1644,45591,'Romance'),(1645,45591,'Western'),(1646,45609,'Adventure'),(1647,45609,'Sci-Fi'),(1648,45659,'Drama'),(1649,45659,'War'),(1650,45665,'Drama'),(1651,45758,'Drama'),(1652,45758,'Thriller'),(1653,45758,'War'),(1654,45793,'Drama'),(1655,45793,'Romance'),(1656,45793,'War'),(1657,45810,'Comedy'),(1658,45810,'Musical'),(1659,45810,'Romance'),(1660,45826,'Drama'),(1661,45877,'Crime'),(1662,45877,'Drama'),(1663,45877,'Film-Noir'),(1664,45888,'Horror'),(1665,45891,'Comedy'),(1666,45891,'Drama'),(1667,45891,'Romance'),(1668,45897,'Crime'),(1669,45897,'Drama'),(1670,45897,'Thriller'),(1671,45911,'Crime'),(1672,45911,'Drama'),(1673,45911,'Romance'),(1674,45920,'Horror'),(1675,45920,'Sci-Fi'),(1676,45943,'Drama'),(1677,45943,'History'),(1678,46022,'Drama'),(1679,46022,'Romance'),(1680,46031,'Crime'),(1681,46031,'Drama'),(1682,46031,'Film-Noir'),(1683,46066,'Horror'),(1684,46066,'Sci-Fi'),(1685,46076,'Drama'),(1686,46076,'Musical'),(1687,46076,'Romance'),(1688,46085,'Adventure'),(1689,46085,'Drama'),(1690,46085,'Romance'),(1691,46183,'Adventure'),(1692,46183,'Animation'),(1693,46183,'Family'),(1694,46187,'Crime'),(1695,46187,'Film-Noir'),(1696,46187,'Mystery'),(1697,46250,'Comedy'),(1698,46250,'Romance'),(1699,46268,'Adventure'),(1700,46268,'Drama'),(1701,46268,'Thriller'),(1702,46269,'Drama'),(1703,46269,'History'),(1704,46303,'Drama'),(1705,46303,'Western'),(1706,46345,'Drama'),(1707,46345,'Romance'),(1708,46359,'Comedy'),(1709,46359,'Drama'),(1710,46359,'War'),(1711,46404,'Action'),(1712,46404,'Adventure'),(1713,46438,'Drama'),(1714,46451,'Crime'),(1715,46451,'Drama'),(1716,46478,'Drama'),(1717,46478,'Fantasy'),(1718,46478,'War'),(1719,46487,'Comedy'),(1720,46511,'Drama'),(1721,46511,'Romance'),(1722,46534,'Action'),(1723,46534,'Sci-Fi'),(1724,46534,'Thriller'),(1725,46672,'Adventure'),(1726,46672,'Drama'),(1727,46672,'Family'),(1728,46705,'Comedy'),(1729,46731,'Biography'),(1730,46731,'Drama'),(1731,46731,'History'),(1732,46750,'Drama'),(1733,46816,'Drama'),(1734,46816,'War'),(1735,46828,'Drama'),(1736,46828,'Musical'),(1737,46828,'Romance'),(1738,46876,'Horror'),(1739,46876,'Sci-Fi'),(1740,46889,'Drama'),(1741,46889,'History'),(1742,46889,'War'),(1743,46911,'Crime'),(1744,46911,'Drama'),(1745,46911,'Horror'),(1746,46912,'Crime'),(1747,46912,'Thriller'),(1748,46963,'Drama'),(1749,46963,'Romance'),(1750,46969,'Crime'),(1751,46969,'Drama'),(1752,46969,'Film-Noir'),(1753,47030,'Biography'),(1754,47030,'Drama'),(1755,47030,'Music'),(1756,47034,'Horror'),(1757,47034,'Sci-Fi'),(1758,47094,'Comedy'),(1759,47094,'Drama'),(1760,47094,'Romance'),(1761,47127,'Crime'),(1762,47127,'Drama'),(1763,47127,'Film-Noir'),(1764,47136,'Drama'),(1765,47136,'Western'),(1766,47152,'Comedy'),(1767,47238,'Comedy'),(1768,47296,'Crime'),(1769,47296,'Drama'),(1770,47296,'Thriller'),(1771,47349,'Comedy'),(1772,47349,'Romance'),(1773,47396,'Mystery'),(1774,47396,'Thriller'),(1775,47437,'Comedy'),(1776,47437,'Drama'),(1777,47437,'Romance'),(1778,47443,'Drama'),(1779,47443,'History'),(1780,47469,'Drama'),(1781,47469,'Romance'),(1782,47469,'War'),(1783,47472,'Musical'),(1784,47472,'Romance'),(1785,47472,'Western'),(1786,47478,'Action'),(1787,47478,'Drama'),(1788,47522,'Drama'),(1789,47522,'Musical'),(1790,47522,'Romance'),(1791,47573,'Horror'),(1792,47573,'Sci-Fi'),(1793,47577,'Horror'),(1794,47577,'Mystery'),(1795,47577,'Sci-Fi'),(1796,47580,'Drama'),(1797,47580,'Romance'),(1798,47638,'Drama'),(1799,47638,'Romance'),(1800,47673,'Comedy'),(1801,47673,'Musical'),(1802,47673,'Romance'),(1803,47677,'Crime'),(1804,47677,'Drama'),(1805,47677,'Romance'),(1806,47811,'Drama'),(1807,47811,'Romance'),(1808,47821,'Drama'),(1809,47821,'Romance'),(1810,47834,'Animation'),(1811,47834,'Drama'),(1812,47849,'Crime'),(1813,47849,'Drama'),(1814,47849,'Mystery'),(1815,47878,'Crime'),(1816,47878,'Drama'),(1817,47878,'Film-Noir'),(1818,47898,'Horror'),(1819,47898,'Sci-Fi'),(1820,47969,'Musical'),(1821,47969,'Romance'),(1822,48021,'Crime'),(1823,48021,'Drama'),(1824,48021,'Thriller'),(1825,48103,'Comedy'),(1826,48103,'Drama'),(1827,48124,'Family'),(1828,48124,'Fantasy'),(1829,48124,'Musical'),(1830,48127,'Horror'),(1831,48127,'Sci-Fi'),(1832,48133,'Comedy'),(1833,48133,'Drama'),(1834,48133,'Romance'),(1835,48140,'Comedy'),(1836,48140,'Crime'),(1837,48140,'Musical'),(1838,48254,'Crime'),(1839,48254,'Drama'),(1840,48254,'Film-Noir'),(1841,48280,'Adventure'),(1842,48280,'Animation'),(1843,48280,'Comedy'),(1844,48281,'Comedy'),(1845,48281,'Crime'),(1846,48308,'Biography'),(1847,48308,'Drama'),(1848,48308,'Romance'),(1849,48356,'Drama'),(1850,48356,'Romance'),(1851,48401,'Comedy'),(1852,48401,'Musical'),(1853,48401,'Romance'),(1854,48424,'Crime'),(1855,48424,'Drama'),(1856,48424,'Film-Noir'),(1857,48432,'Drama'),(1858,48432,'Film-Noir'),(1859,48432,'Romance'),(1860,48445,'Comedy'),(1861,48445,'Drama'),(1862,48445,'Musical'),(1863,48473,'Drama'),(1864,48512,'Drama'),(1865,48517,'Drama'),(1866,48517,'Mystery'),(1867,48545,'Drama'),(1868,48605,'Comedy'),(1869,48605,'Romance'),(1870,48641,'Comedy'),(1871,48641,'Romance'),(1872,48673,'Comedy'),(1873,48673,'Drama'),(1874,48673,'Romance'),(1875,48696,'Horror'),(1876,48696,'Sci-Fi'),(1877,48728,'Mystery'),(1878,48728,'Romance'),(1879,48728,'Thriller'),(1880,48750,'Comedy'),(1881,48750,'Mystery'),(1882,48801,'Comedy'),(1883,48801,'Crime'),(1884,48801,'Romance'),(1885,48956,'Drama'),(1886,48960,'Adventure'),(1887,48960,'Comedy'),(1888,48960,'Family'),(1889,48967,'Drama'),(1890,48973,'Comedy'),(1891,48973,'Drama'),(1892,48977,'Drama'),(1893,48977,'Horror'),(1894,48977,'Thriller'),(1895,48981,'Comedy'),(1896,49010,'Drama'),(1897,49019,'Crime'),(1898,49019,'Drama'),(1899,49038,'Comedy'),(1900,49038,'Drama'),(1901,49038,'Romance'),(1902,49043,'Drama'),(1903,49095,'Comedy'),(1904,49095,'Romance'),(1905,49095,'Short'),(1906,49096,'Adventure'),(1907,49096,'Comedy'),(1908,49096,'Family'),(1909,49189,'Drama'),(1910,49189,'Romance'),(1911,49196,'Crime'),(1912,49196,'Drama'),(1913,49196,'Film-Noir'),(1914,49223,'Adventure'),(1915,49223,'Sci-Fi'),(1916,49287,'Western'),(1917,49293,'Comedy'),(1918,49293,'Drama'),(1919,49314,'Comedy'),(1920,49314,'Musical'),(1921,49314,'Romance'),(1922,49363,'Crime'),(1923,49363,'Horror'),(1924,49363,'Sci-Fi'),(1925,49366,'Drama'),(1926,49366,'Horror'),(1927,49366,'Sci-Fi'),(1928,49369,'Comedy'),(1929,49406,'Crime'),(1930,49406,'Drama'),(1931,49406,'Film-Noir'),(1932,49408,'Biography'),(1933,49408,'Drama'),(1934,49408,'Musical'),(1935,49452,'Drama'),(1936,49452,'Musical'),(1937,49452,'Romance'),(1938,49470,'Drama'),(1939,49470,'Thriller'),(1940,49471,'Drama'),(1941,49471,'War'),(1942,49483,'Comedy'),(1943,49483,'Romance'),(1944,49537,'Drama'),(1945,49640,'Drama'),(1946,49640,'Romance'),(1947,49640,'War'),(1948,49674,'Biography'),(1949,49674,'Drama'),(1950,49674,'History'),(1951,49730,'Adventure'),(1952,49730,'Drama'),(1953,49730,'Western'),(1954,49762,'Drama'),(1955,49762,'History'),(1956,49782,'Action'),(1957,49782,'Sci-Fi'),(1958,49787,'Drama'),(1959,49833,'Adventure'),(1960,49833,'Drama'),(1961,49833,'Family'),(1962,49902,'Drama'),(1963,49902,'Thriller'),(1964,49902,'War'),(1965,49904,'Crime'),(1966,49904,'Drama'),(1967,49904,'Film-Noir'),(1968,49934,'Drama'),(1969,49934,'Romance'),(1970,49934,'War'),(1971,50083,'Crime'),(1972,50083,'Drama'),(1973,50105,'Drama'),(1974,50105,'Romance'),(1975,50116,'Action'),(1976,50116,'Adventure'),(1977,50116,'Drama'),(1978,50193,'Crime'),(1979,50193,'Drama'),(1980,50193,'Thriller'),(1981,50212,'Adventure'),(1982,50212,'Drama'),(1983,50212,'War'),(1984,50251,'Action'),(1985,50251,'Sci-Fi'),(1986,50251,'Thriller'),(1987,50307,'Comedy'),(1988,50307,'Romance'),(1989,50356,'Action'),(1990,50356,'Adventure'),(1991,50356,'Drama'),(1992,50371,'Drama'),(1993,50371,'Music'),(1994,50397,'Adventure'),(1995,50397,'Drama'),(1996,50397,'Romance'),(1997,50407,'Western'),(1998,50419,'Comedy'),(1999,50419,'Musical'),(2000,50419,'Romance'),(2001,50421,'Comedy'),(2002,50470,'Action'),(2003,50470,'Romance'),(2004,50470,'War'),(2005,50490,'Adventure'),(2006,50490,'Drama'),(2007,50490,'War'),(2008,50539,'Horror'),(2009,50539,'Sci-Fi'),(2010,50549,'Drama'),(2011,50549,'Romance'),(2012,50585,'Drama'),(2013,50585,'War'),(2014,50599,'Comedy'),(2015,50599,'Romance'),(2016,50610,'Action'),(2017,50610,'Drama'),(2018,50610,'Horror'),(2019,50613,'Drama'),(2020,50634,'Drama'),(2021,50634,'Romance'),(2022,50634,'War'),(2023,50706,'Comedy'),(2024,50766,'Fantasy'),(2025,50766,'Horror'),(2026,50766,'Mystery'),(2027,50783,'Drama'),(2028,50792,'Drama'),(2029,50798,'Adventure'),(2030,50798,'Drama'),(2031,50798,'Family'),(2032,50825,'Drama'),(2033,50825,'War'),(2034,50861,'Comedy'),(2035,50861,'Romance'),(2036,50933,'Drama'),(2037,50933,'Romance'),(2038,50976,'Drama'),(2039,50976,'Fantasy'),(2040,50986,'Drama'),(2041,50986,'Romance'),(2042,50998,'Drama'),(2043,51036,'Drama'),(2044,51036,'Film-Noir'),(2045,51051,'Comedy'),(2046,51051,'Romance'),(2047,51077,'Drama'),(2048,51077,'Mystery'),(2049,51114,'Biography'),(2050,51114,'Crime'),(2051,51114,'Drama'),(2052,51133,'Comedy'),(2053,51151,'Horror'),(2054,51151,'Mystery'),(2055,51151,'Thriller'),(2056,51201,'Crime'),(2057,51201,'Drama'),(2058,51201,'Mystery'),(2059,51207,'Drama'),(2060,51207,'Film-Noir'),(2061,51372,'Documentary'),(2062,51383,'Comedy'),(2063,51383,'Drama'),(2064,51383,'Romance'),(2065,51422,'Horror'),(2066,51422,'Sci-Fi'),(2067,51459,'Drama'),(2068,51525,'Crime'),(2069,51525,'Drama'),(2070,51554,'Drama'),(2071,51554,'Horror'),(2072,51579,'Crime'),(2073,51579,'Drama'),(2074,51579,'Romance'),(2075,51608,'Drama'),(2076,51622,'Drama'),(2077,51622,'Horror'),(2078,51622,'Sci-Fi'),(2079,51658,'Comedy'),(2080,51658,'Musical'),(2081,51658,'Romance'),(2082,51744,'Crime'),(2083,51744,'Horror'),(2084,51744,'Mystery'),(2085,51755,'Horror'),(2086,51758,'Biography'),(2087,51758,'Crime'),(2088,51758,'Drama'),(2089,51773,'Comedy'),(2090,51773,'Romance'),(2091,51776,'Biography'),(2092,51776,'Drama'),(2093,51776,'War'),(2094,51786,'Horror'),(2095,51786,'Sci-Fi'),(2096,51786,'Thriller'),(2097,51808,'Action'),(2098,51808,'Adventure'),(2099,51808,'Drama'),(2100,51818,'Crime'),(2101,51818,'Drama'),(2102,51818,'Musical'),(2103,51911,'Drama'),(2104,51911,'Romance'),(2105,51951,'Sci-Fi'),(2106,51964,'Drama'),(2107,52017,'Drama'),(2108,52077,'Horror'),(2109,52077,'Sci-Fi'),(2110,52151,'Action'),(2111,52151,'Drama'),(2112,52151,'War'),(2113,52169,'Horror'),(2114,52169,'Thriller'),(2115,52182,'Drama'),(2116,52182,'Romance'),(2117,52218,'Drama'),(2118,52218,'Romance'),(2119,52225,'Musical'),(2120,52225,'Romance'),(2121,52225,'War'),(2122,52278,'Comedy'),(2123,52278,'Romance'),(2124,52311,'Crime'),(2125,52311,'Drama'),(2126,52311,'Film-Noir'),(2127,52357,'Mystery'),(2128,52357,'Romance'),(2129,52357,'Thriller'),(2130,52365,'Action'),(2131,52365,'Adventure'),(2132,52365,'History'),(2133,52374,'Adventure'),(2134,52374,'Fantasy'),(2135,52374,'Sci-Fi'),(2136,52394,'Adventure'),(2137,52394,'Comedy'),(2138,52561,'Drama'),(2139,52561,'Mystery'),(2140,52572,'Drama'),(2141,52595,'Comedy'),(2142,52595,'War'),(2143,52600,'Drama'),(2144,52600,'Romance'),(2145,52600,'War'),(2146,52602,'Horror'),(2147,52602,'Mystery'),(2148,52602,'Thriller'),(2149,52618,'Adventure'),(2150,52618,'Drama'),(2151,52646,'Horror'),(2152,52646,'Sci-Fi'),(2153,52654,'Drama'),(2154,52654,'War'),(2155,52655,'Comedy'),(2156,52655,'Crime'),(2157,52655,'Horror'),(2158,52722,'Adventure'),(2159,52722,'Family'),(2160,52722,'Fantasy'),(2161,52844,'Comedy'),(2162,52844,'Horror'),(2163,52846,'Horror'),(2164,52846,'Sci-Fi'),(2165,52846,'Thriller'),(2166,52847,'Comedy'),(2167,52847,'Drama'),(2168,52847,'Romance'),(2169,52861,'Comedy'),(2170,52861,'Drama'),(2171,52861,'War'),(2172,52918,'Drama'),(2173,52948,'Adventure'),(2174,52948,'Family'),(2175,52948,'Fantasy'),(2176,53125,'Action'),(2177,53125,'Adventure'),(2178,53125,'Mystery'),(2179,53131,'Drama'),(2180,53134,'Comedy'),(2181,53134,'Drama'),(2182,53134,'Family'),(2183,53172,'Comedy'),(2184,53172,'Romance'),(2185,53198,'Crime'),(2186,53198,'Drama'),(2187,53221,'Drama'),(2188,53221,'Western'),(2189,53250,'Sci-Fi'),(2190,53285,'Adventure'),(2191,53285,'Animation'),(2192,53285,'Family'),(2193,53291,'Comedy'),(2194,53291,'Music'),(2195,53291,'Romance'),(2196,53318,'Drama'),(2197,53318,'Mystery'),(2198,53318,'Thriller'),(2199,53363,'Horror'),(2200,53388,'Action'),(2201,53388,'Sci-Fi'),(2202,53428,'Crime'),(2203,53428,'Drama'),(2204,53428,'Mystery'),(2205,53454,'Drama'),(2206,53454,'Romance'),(2207,53454,'Sci-Fi'),(2208,53459,'Drama'),(2209,53459,'Horror'),(2210,53472,'Crime'),(2211,53472,'Drama'),(2212,53579,'Comedy'),(2213,53579,'Drama'),(2214,53604,'Comedy'),(2215,53604,'Drama'),(2216,53604,'Romance'),(2217,53619,'Drama'),(2218,53619,'Mystery'),(2219,53619,'Romance'),(2220,53666,'Drama'),(2221,53666,'Mystery'),(2222,53666,'Romance'),(2223,53677,'Horror'),(2224,53719,'Horror'),(2225,53719,'Mystery'),(2226,53719,'Thriller'),(2227,53732,'Drama'),(2228,53732,'War'),(2229,53779,'Comedy'),(2230,53779,'Drama'),(2231,53804,'Action'),(2232,53804,'Drama'),(2233,53804,'War'),(2234,53825,'Drama'),(2235,53825,'Western'),(2236,53848,'Comedy'),(2237,53848,'Musical'),(2238,53902,'Western'),(2239,53946,'Biography'),(2240,53946,'Drama'),(2241,53946,'History'),(2242,53976,'Drama'),(2243,54017,'Drama'),(2244,54017,'Horror'),(2245,54017,'Mystery'),(2246,54022,'Comedy'),(2247,54022,'Musical'),(2248,54022,'Romance'),(2249,54047,'Action'),(2250,54047,'Adventure'),(2251,54047,'Drama'),(2252,54049,'Comedy'),(2253,54067,'Horror'),(2254,54130,'Drama'),(2255,54167,'Drama'),(2256,54167,'Horror'),(2257,54167,'Thriller'),(2258,54198,'Comedy'),(2259,54198,'Drama'),(2260,54198,'Romance'),(2261,54215,'Horror'),(2262,54215,'Mystery'),(2263,54215,'Thriller'),(2264,54248,'Crime'),(2265,54248,'Drama'),(2266,54248,'Sport'),(2267,54279,'Comedy'),(2268,54331,'Adventure'),(2269,54331,'Biography'),(2270,54331,'Drama'),(2271,54333,'Horror'),(2272,54343,'Drama'),(2273,54343,'History'),(2274,54343,'Romance'),(2275,54377,'Biography'),(2276,54377,'Fantasy'),(2277,54387,'Adventure'),(2278,54387,'Romance'),(2279,54387,'Sci-Fi'),(2280,54389,'Crime'),(2281,54389,'Drama'),(2282,54389,'Thriller'),(2283,54407,'Crime'),(2284,54407,'Drama'),(2285,54407,'Thriller'),(2286,54452,'Drama'),(2287,54460,'Crime'),(2288,54460,'Drama'),(2289,54460,'Thriller'),(2290,54462,'Horror'),(2291,54462,'Sci-Fi'),(2292,54469,'Comedy'),(2293,54469,'Drama'),(2294,54469,'Romance'),(2295,54476,'Drama'),(2296,54476,'History'),(2297,54476,'Romance'),(2298,54483,'Drama'),(2299,54483,'Romance'),(2300,54494,'Comedy'),(2301,54494,'Fantasy'),(2302,54599,'Drama'),(2303,54673,'Horror'),(2304,54673,'Sci-Fi'),(2305,54692,'Comedy'),(2306,54692,'Musical'),(2307,54698,'Comedy'),(2308,54698,'Drama'),(2309,54698,'Romance'),(2310,54700,'Comedy'),(2311,54700,'Romance'),(2312,54743,'Drama'),(2313,54743,'Romance'),(2314,54749,'Drama'),(2315,54749,'War'),(2316,54777,'Horror'),(2317,54847,'Biography'),(2318,54847,'Drama'),(2319,54847,'History'),(2320,54879,'Drama'),(2321,54885,'Comedy'),(2322,54885,'Musical'),(2323,54885,'Romance'),(2324,54949,'Comedy'),(2325,54949,'Family'),(2326,54953,'Action'),(2327,54953,'Adventure'),(2328,54953,'Drama'),(2329,54997,'Drama'),(2330,54997,'Sport'),(2331,55018,'Horror'),(2332,55032,'Drama'),(2333,55032,'Romance'),(2334,55047,'Biography'),(2335,55047,'Drama'),(2336,55082,'Drama'),(2337,55082,'Romance'),(2338,55082,'War'),(2339,55093,'Drama'),(2340,55093,'Romance'),(2341,55184,'Drama'),(2342,55184,'Romance'),(2343,55184,'Western'),(2344,55198,'Adventure'),(2345,55198,'Fantasy'),(2346,55198,'Sci-Fi'),(2347,55207,'Adventure'),(2348,55207,'Family'),(2349,55207,'Fantasy'),(2350,55254,'Adventure'),(2351,55254,'Animation'),(2352,55254,'Comedy'),(2353,55256,'Comedy'),(2354,55277,'Comedy'),(2355,55277,'Family'),(2356,55277,'Romance'),(2357,55278,'Drama'),(2358,55278,'Music'),(2359,55278,'Romance'),(2360,55294,'Action'),(2361,55294,'Adventure'),(2362,55294,'Sci-Fi'),(2363,55353,'Drama'),(2364,55458,'Adventure'),(2365,55458,'Comedy'),(2366,55458,'Family'),(2367,55471,'Drama'),(2368,55471,'Romance'),(2369,55499,'Drama'),(2370,55506,'Drama'),(2371,55571,'Crime'),(2372,55571,'Drama'),(2373,55571,'Thriller'),(2374,55572,'Comedy'),(2375,55572,'Drama'),(2376,55572,'Romance'),(2377,55614,'Crime'),(2378,55614,'Drama'),(2379,55614,'Musical'),(2380,55621,'Comedy'),(2381,55623,'Drama'),(2382,55623,'Musical'),(2383,55630,'Action'),(2384,55630,'Drama'),(2385,55630,'Thriller'),(2386,55728,'Drama'),(2387,55728,'Thriller'),(2388,55763,'Comedy'),(2389,55805,'Comedy'),(2390,55805,'Fantasy'),(2391,55805,'Romance'),(2392,55830,'Horror'),(2393,55830,'Mystery'),(2394,55832,'Action'),(2395,55832,'Adventure'),(2396,55832,'Comedy'),(2397,55852,'Comedy'),(2398,55852,'Drama'),(2399,55852,'Music'),(2400,55894,'Horror'),(2401,55894,'Sci-Fi'),(2402,55902,'Horror'),(2403,55910,'Drama'),(2404,55928,'Action'),(2405,55928,'Adventure'),(2406,55928,'Thriller'),(2407,55992,'Comedy'),(2408,55992,'Musical'),(2409,55992,'Romance'),(2410,56023,'Comedy'),(2411,56023,'Musical'),(2412,56048,'Biography'),(2413,56048,'Comedy'),(2414,56048,'Drama'),(2415,56058,'Action'),(2416,56058,'Drama'),(2417,56058,'Mystery'),(2418,56059,'Action'),(2419,56059,'Adventure'),(2420,56059,'Comedy'),(2421,56111,'Drama'),(2422,56111,'War'),(2423,56119,'Drama'),(2424,56119,'Romance'),(2425,56119,'Sci-Fi'),(2426,56138,'Drama'),(2427,56138,'Musical'),(2428,56138,'Sport'),(2429,56142,'Action'),(2430,56142,'Adventure'),(2431,56142,'Fantasy'),(2432,56172,'Adventure'),(2433,56172,'Biography'),(2434,56172,'Drama'),(2435,56193,'Crime'),(2436,56193,'Drama'),(2437,56193,'Romance'),(2438,56194,'Drama'),(2439,56194,'Sport'),(2440,56197,'Action'),(2441,56197,'Drama'),(2442,56197,'History'),(2443,56218,'Drama'),(2444,56218,'Thriller'),(2445,56241,'Biography'),(2446,56241,'Drama'),(2447,56262,'Comedy'),(2448,56262,'Family'),(2449,56262,'Musical'),(2450,56308,'Comedy'),(2451,56308,'Drama'),(2452,56404,'Drama'),(2453,56404,'Romance'),(2454,56443,'Action'),(2455,56443,'Drama'),(2456,56443,'Thriller'),(2457,56452,'Adventure'),(2458,56452,'Drama'),(2459,56452,'Western'),(2460,56575,'Comedy'),(2461,56575,'Romance'),(2462,56585,'Comedy'),(2463,56585,'Musical'),(2464,56585,'Romance'),(2465,56592,'Crime'),(2466,56592,'Drama'),(2467,56663,'Drama'),(2468,56671,'Drama'),(2469,56671,'Romance'),(2470,56687,'Drama'),(2471,56687,'Horror'),(2472,56687,'Thriller'),(2473,56700,'Adventure'),(2474,56700,'Animation'),(2475,56700,'Biography'),(2476,56732,'Drama'),(2477,56732,'Fantasy'),(2478,56736,'Drama'),(2479,56736,'Romance'),(2480,56800,'Action'),(2481,56800,'Adventure'),(2482,56800,'Drama'),(2483,56801,'Drama'),(2484,56860,'Comedy'),(2485,56860,'Musical'),(2486,56860,'Romance'),(2487,56869,'Drama'),(2488,56869,'Horror'),(2489,56869,'Mystery'),(2490,56884,'Romance'),(2491,56884,'Short'),(2492,56891,'Comedy'),(2493,56891,'Musical'),(2494,56910,'Drama'),(2495,56910,'Romance'),(2496,56912,'Adventure'),(2497,56912,'Comedy'),(2498,56912,'Romance'),(2499,56923,'Comedy'),(2500,56923,'Mystery'),(2501,56923,'Romance'),(2502,56937,'Biography'),(2503,56937,'Drama'),(2504,56937,'History'),(2505,56983,'Horror'),(2506,56983,'Thriller'),(2507,57012,'Comedy'),(2508,57012,'War'),(2509,57076,'Action'),(2510,57076,'Adventure'),(2511,57076,'Thriller'),(2512,57115,'Adventure'),(2513,57115,'Drama'),(2514,57115,'History'),(2515,57129,'Horror'),(2516,57180,'Adventure'),(2517,57180,'Drama'),(2518,57180,'Family'),(2519,57187,'Comedy'),(2520,57187,'Romance'),(2521,57191,'Comedy'),(2522,57191,'Musical'),(2523,57191,'Romance'),(2524,57193,'Action'),(2525,57193,'Adventure'),(2526,57193,'Comedy'),(2527,57215,'Action'),(2528,57215,'Adventure'),(2529,57215,'Fantasy'),(2530,57226,'Horror'),(2531,57227,'Comedy'),(2532,57227,'Musical'),(2533,57227,'Romance'),(2534,57239,'Drama'),(2535,57239,'Romance'),(2536,57259,'Adventure'),(2537,57259,'Drama'),(2538,57261,'Adventure'),(2539,57261,'Drama'),(2540,57261,'Thriller'),(2541,57329,'Comedy'),(2542,57329,'Romance'),(2543,57345,'Drama'),(2544,57345,'Romance'),(2545,57358,'Drama'),(2546,57380,'Adventure'),(2547,57380,'Drama'),(2548,57380,'Western'),(2549,57413,'Comedy'),(2550,57413,'Crime'),(2551,57413,'Romance'),(2552,57427,'Drama'),(2553,57427,'Mystery'),(2554,57427,'Thriller'),(2555,57449,'Comedy'),(2556,57449,'Fantasy'),(2557,57449,'Horror'),(2558,57490,'Drama'),(2559,57495,'Drama'),(2560,57495,'Mystery'),(2561,57541,'Comedy'),(2562,57541,'Musical'),(2563,57541,'Romance'),(2564,57542,'Comedy'),(2565,57542,'Family'),(2566,57542,'Musical'),(2567,57546,'Adventure'),(2568,57546,'Animation'),(2569,57546,'Comedy'),(2570,57590,'Adventure'),(2571,57590,'Comedy'),(2572,57590,'History'),(2573,57611,'Drama'),(2574,57623,'Horror'),(2575,57623,'Mystery'),(2576,57623,'Sci-Fi'),(2577,57643,'Comedy'),(2578,57643,'Drama'),(2579,57685,'Comedy'),(2580,57687,'Adventure'),(2581,57687,'Drama'),(2582,57687,'Western'),(2583,57693,'Horror'),(2584,57693,'Sci-Fi'),(2585,57693,'Thriller'),(2586,57840,'Comedy'),(2587,57840,'Drama'),(2588,57840,'Romance'),(2589,57869,'Comedy'),(2590,57869,'Crime'),(2591,57869,'Drama'),(2592,57878,'Comedy'),(2593,57887,'Comedy'),(2594,57887,'Music'),(2595,57887,'Romance'),(2596,57918,'Adventure'),(2597,57918,'Comedy'),(2598,57918,'Romance'),(2599,57933,'Drama'),(2600,57933,'Mystery'),(2601,57997,'Crime'),(2602,57997,'Drama'),(2603,57997,'Thriller'),(2604,58003,'Drama'),(2605,58083,'Drama'),(2606,58083,'Thriller'),(2607,58091,'Drama'),(2608,58091,'Mystery'),(2609,58091,'Thriller'),(2610,58092,'Adventure'),(2611,58092,'Comedy'),(2612,58092,'Romance'),(2613,58100,'Adventure'),(2614,58100,'Sci-Fi'),(2615,58139,'Drama'),(2616,58139,'Romance'),(2617,58150,'Action'),(2618,58150,'Adventure'),(2619,58150,'Thriller'),(2620,58164,'Drama'),(2621,58182,'Comedy'),(2622,58182,'Musical'),(2623,58204,'Comedy'),(2624,58212,'Comedy'),(2625,58213,'Crime'),(2626,58213,'Drama'),(2627,58213,'Mystery'),(2628,58249,'Crime'),(2629,58249,'Drama'),(2630,58263,'Drama'),(2631,58263,'War'),(2632,58324,'Comedy'),(2633,58324,'Romance'),(2634,58329,'Crime'),(2635,58329,'Drama'),(2636,58329,'Mystery'),(2637,58331,'Comedy'),(2638,58331,'Family'),(2639,58331,'Fantasy'),(2640,58335,'Comedy'),(2641,58335,'Drama'),(2642,58335,'Romance'),(2643,58361,'Drama'),(2644,58379,'Adventure'),(2645,58379,'Fantasy'),(2646,58379,'Sci-Fi'),(2647,58385,'Drama'),(2648,58385,'Family'),(2649,58385,'Musical'),(2650,58409,'Drama'),(2651,58430,'Drama'),(2652,58430,'Horror'),(2653,58430,'Thriller'),(2654,58450,'Drama'),(2655,58450,'Musical'),(2656,58450,'Romance'),(2657,58461,'Action'),(2658,58461,'Drama'),(2659,58461,'Western'),(2660,58534,'Drama'),(2661,58534,'Music'),(2662,58534,'Musical'),(2663,58536,'Adventure'),(2664,58536,'Animation'),(2665,58536,'Comedy'),(2666,58544,'Action'),(2667,58544,'Adventure'),(2668,58544,'Fantasy'),(2669,58553,'Adventure'),(2670,58564,'Comedy'),(2671,58564,'Drama'),(2672,58586,'Comedy'),(2673,58586,'Mystery'),(2674,58625,'Drama'),(2675,58625,'Thriller'),(2676,58636,'Comedy'),(2677,58636,'Sport'),(2678,58658,'Thriller'),(2679,58659,'Sci-Fi'),(2680,58695,'Drama'),(2681,58700,'Drama'),(2682,58700,'Horror'),(2683,58700,'Sci-Fi'),(2684,58708,'Comedy'),(2685,58708,'Musical'),(2686,58708,'Romance'),(2687,58709,'Adventure'),(2688,58709,'Drama'),(2689,58709,'Western'),(2690,58715,'Biography'),(2691,58715,'Drama'),(2692,58715,'History'),(2693,58725,'Comedy'),(2694,58725,'Musical'),(2695,58751,'Adventure'),(2696,58751,'Drama'),(2697,58751,'Western'),(2698,58777,'Drama'),(2699,58777,'History'),(2700,58777,'War'),(2701,58888,'Drama'),(2702,58898,'Drama'),(2703,58898,'Mystery'),(2704,58898,'Sci-Fi'),(2705,58946,'Drama'),(2706,58946,'War'),(2707,58969,'Comedy'),(2708,58969,'Crime'),(2709,58969,'Mystery'),(2710,58997,'Drama'),(2711,58997,'Mystery'),(2712,58997,'Thriller'),(2713,59017,'Western'),(2714,59020,'Drama'),(2715,59080,'Action'),(2716,59080,'Horror'),(2717,59080,'Sci-Fi'),(2718,59084,'Drama'),(2719,59084,'Romance'),(2720,59100,'Horror'),(2721,59113,'Drama'),(2722,59113,'Romance'),(2723,59113,'War'),(2724,59127,'Horror'),(2725,59170,'Action'),(2726,59170,'Comedy'),(2727,59183,'Adventure'),(2728,59183,'Drama'),(2729,59205,'Horror'),(2730,59205,'Sci-Fi'),(2731,59205,'Thriller'),(2732,59212,'Adventure'),(2733,59212,'Animation'),(2734,59212,'Fantasy'),(2735,59224,'Comedy'),(2736,59224,'Musical'),(2737,59224,'Romance'),(2738,59229,'Comedy'),(2739,59229,'Drama'),(2740,59229,'Fantasy'),(2741,59314,'Drama'),(2742,59314,'Music'),(2743,59314,'Romance'),(2744,59319,'Drama'),(2745,59319,'Thriller'),(2746,59346,'Action'),(2747,59346,'Adventure'),(2748,59346,'Sci-Fi'),(2749,59348,'Drama'),(2750,59348,'Romance'),(2751,59362,'Comedy'),(2752,59538,'Adventure'),(2753,59538,'Western'),(2754,59557,'Action'),(2755,59557,'Adventure'),(2756,59557,'Comedy'),(2757,59563,'Comedy'),(2758,59563,'Musical'),(2759,59573,'Drama'),(2760,59573,'Romance'),(2761,59578,'Drama'),(2762,59578,'Western'),(2763,59607,'Drama'),(2764,59616,'Biography'),(2765,59616,'Drama'),(2766,59616,'History'),(2767,59621,'Adventure'),(2768,59621,'Western'),(2769,59631,'Comedy'),(2770,59631,'Short'),(2771,59646,'Drama'),(2772,59646,'Horror'),(2773,59646,'Thriller'),(2774,59682,'Adventure'),(2775,59682,'Western'),(2776,59742,'Biography'),(2777,59742,'Drama'),(2778,59742,'Family'),(2779,59764,'Crime'),(2780,59764,'Mystery'),(2781,59764,'Thriller'),(2782,59793,'Comedy'),(2783,59793,'Crime'),(2784,59793,'Family'),(2785,59800,'Action'),(2786,59800,'Adventure'),(2787,59800,'Thriller'),(2788,59825,'Action'),(2789,59825,'Thriller'),(2790,59825,'War'),(2791,59915,'Action'),(2792,59915,'Adventure'),(2793,59915,'Western'),(2794,59956,'Adventure'),(2795,59956,'Comedy'),(2796,59956,'Romance'),(2797,59958,'Adventure'),(2798,59958,'Western'),(2799,60086,'Comedy'),(2800,60086,'Drama'),(2801,60107,'Biography'),(2802,60107,'Drama'),(2803,60107,'History'),(2804,60125,'Adventure'),(2805,60125,'Comedy'),(2806,60125,'History'),(2807,60165,'Western'),(2808,60174,'Horror'),(2809,60176,'Drama'),(2810,60176,'Mystery'),(2811,60176,'Thriller'),(2812,60196,'Adventure'),(2813,60196,'Western'),(2814,60223,'Drama'),(2815,60223,'Thriller'),(2816,60315,'Action'),(2817,60315,'Drama'),(2818,60315,'Western'),(2819,60371,'Documentary'),(2820,60371,'Sport'),(2821,60390,'Drama'),(2822,60390,'Sci-Fi'),(2823,60397,'Adventure'),(2824,60397,'Sci-Fi'),(2825,60424,'Comedy'),(2826,60424,'Romance'),(2827,60429,'Comedy'),(2828,60429,'Musical'),(2829,60429,'Romance'),(2830,60446,'Action'),(2831,60446,'Adventure'),(2832,60446,'Fantasy'),(2833,60453,'Comedy'),(2834,60453,'Drama'),(2835,60453,'Romance'),(2836,60464,'Action'),(2837,60464,'Adventure'),(2838,60464,'Fantasy'),(2839,60479,'Drama'),(2840,60522,'Comedy'),(2841,60522,'Crime'),(2842,60522,'Romance'),(2843,60558,'Horror'),(2844,60558,'Sci-Fi'),(2845,60558,'Western'),(2846,60637,'Action'),(2847,60637,'Drama'),(2848,60637,'War'),(2849,60640,'Adventure'),(2850,60640,'Comedy'),(2851,60640,'Family'),(2852,60647,'Comedy'),(2853,60647,'Crime'),(2854,60647,'Mystery'),(2855,60665,'Biography'),(2856,60665,'Drama'),(2857,60665,'History'),(2858,60666,'Horror'),(2859,60728,'Action'),(2860,60728,'Adventure'),(2861,60728,'Comedy'),(2862,60758,'Drama'),(2863,60782,'Adventure'),(2864,60782,'Comedy'),(2865,60782,'Fantasy'),(2866,60827,'Drama'),(2867,60827,'Thriller'),(2868,60841,'Horror'),(2869,60879,'Comedy'),(2870,60879,'Drama'),(2871,60891,'Drama'),(2872,60934,'Adventure'),(2873,60934,'Drama'),(2874,60934,'Romance'),(2875,60959,'Comedy'),(2876,60980,'Action'),(2877,60980,'Adventure'),(2878,60980,'Comedy'),(2879,61015,'Comedy'),(2880,61015,'Musical'),(2881,61015,'Romance'),(2882,61101,'Action'),(2883,61101,'Crime'),(2884,61107,'Drama'),(2885,61107,'Romance'),(2886,61107,'Thriller'),(2887,61122,'Comedy'),(2888,61122,'Family'),(2889,61184,'Drama'),(2890,61197,'Adventure'),(2891,61197,'Western'),(2892,61198,'Adventure'),(2893,61198,'Western'),(2894,61328,'Drama'),(2895,61369,'Action'),(2896,61369,'Adventure'),(2897,61369,'Animation'),(2898,61385,'Comedy'),(2899,61385,'Romance'),(2900,61391,'Comedy'),(2901,61391,'Fantasy'),(2902,61391,'Romance'),(2903,61395,'Drama'),(2904,61395,'Romance'),(2905,61398,'Horror'),(2906,61398,'Mystery'),(2907,61398,'Thriller'),(2908,61418,'Action'),(2909,61418,'Biography'),(2910,61418,'Crime'),(2911,61452,'Comedy'),(2912,61489,'Comedy'),(2913,61489,'Musical'),(2914,61495,'Comedy'),(2915,61495,'Drama'),(2916,61495,'Romance'),(2917,61512,'Crime'),(2918,61512,'Drama'),(2919,61523,'Comedy'),(2920,61523,'Romance'),(2921,61576,'Western'),(2922,61578,'Action'),(2923,61578,'Adventure'),(2924,61578,'War'),(2925,61590,'Comedy'),(2926,61595,'Comedy'),(2927,61595,'Crime'),(2928,61595,'Drama'),(2929,61619,'Drama'),(2930,61619,'Romance'),(2931,61619,'Western'),(2932,61620,'Biography'),(2933,61620,'Drama'),(2934,61620,'Romance'),(2935,61634,'Horror'),(2936,61634,'Mystery'),(2937,61655,'Comedy'),(2938,61655,'Horror'),(2939,61695,'Action'),(2940,61695,'Family'),(2941,61695,'Fantasy'),(2942,61722,'Comedy'),(2943,61722,'Drama'),(2944,61722,'Romance'),(2945,61735,'Comedy'),(2946,61735,'Drama'),(2947,61747,'Drama'),(2948,61747,'Western'),(2949,61785,'Drama'),(2950,61811,'Drama'),(2951,61811,'Mystery'),(2952,61811,'Thriller'),(2953,61834,'Drama'),(2954,61834,'Romance'),(2955,61852,'Adventure'),(2956,61852,'Animation'),(2957,61852,'Comedy'),(2958,61856,'Adventure'),(2959,61856,'Comedy'),(2960,61856,'Family'),(2961,61879,'Drama'),(2962,61879,'Sci-Fi'),(2963,61882,'Action'),(2964,61882,'Crime'),(2965,61882,'Drama'),(2966,61955,'Crime'),(2967,61955,'Drama'),(2968,61955,'Mystery'),(2969,62082,'Horror'),(2970,62082,'Western'),(2971,62113,'Drama'),(2972,62113,'Thriller'),(2973,62136,'Comedy'),(2974,62151,'Action'),(2975,62151,'Drama'),(2976,62151,'Western'),(2977,62164,'Drama'),(2978,62207,'Crime'),(2979,62207,'Drama'),(2980,62207,'Mystery'),(2981,62229,'Crime'),(2982,62229,'Drama'),(2983,62229,'Thriller'),(2984,62281,'Comedy'),(2985,62281,'Musical'),(2986,62362,'Comedy'),(2987,62362,'Musical'),(2988,62362,'Romance'),(2989,62373,'Drama'),(2990,62373,'Western'),(2991,62376,'Drama'),(2992,62407,'Comedy'),(2993,62407,'Drama'),(2994,62407,'Romance'),(2995,62411,'Horror'),(2996,62411,'Sci-Fi'),(2997,62426,'Drama'),(2998,62430,'Drama'),(2999,62430,'Music'),(3000,62430,'Romance'),(3001,62446,'Horror'),(3002,62467,'Thriller'),(3003,62502,'Comedy'),(3004,62502,'Drama'),(3005,62512,'Action'),(3006,62512,'Adventure'),(3007,62512,'Thriller'),(3008,62534,'Drama'),(3009,62534,'Romance'),(3010,62622,'Adventure'),(3011,62622,'Sci-Fi'),(3012,62657,'Action'),(3013,62657,'Comedy'),(3014,62657,'Sci-Fi'),(3015,62687,'Adventure'),(3016,62687,'Animation'),(3017,62687,'Comedy'),(3018,62711,'Adventure'),(3019,62711,'Comedy'),(3020,62711,'Fantasy'),(3021,62765,'Action'),(3022,62765,'Crime'),(3023,62765,'Thriller'),(3024,62782,'Adventure'),(3025,62782,'Comedy'),(3026,62794,'Drama'),(3027,62794,'Romance'),(3028,62794,'Sci-Fi'),(3029,62803,'Adventure'),(3030,62803,'Family'),(3031,62803,'Fantasy'),(3032,62851,'Drama'),(3033,62851,'Fantasy'),(3034,62851,'Horror'),(3035,62852,'Fantasy'),(3036,62853,'Drama'),(3037,62853,'Fantasy'),(3038,62870,'Drama'),(3039,62873,'Comedy'),(3040,62873,'Drama'),(3041,62873,'Musical'),(3042,62909,'Drama'),(3043,62909,'Fantasy'),(3044,62909,'Horror'),(3045,62925,'Adventure'),(3046,62925,'History'),(3047,62925,'Romance'),(3048,62990,'Drama'),(3049,62994,'Biography'),(3050,62994,'Comedy'),(3051,62994,'Drama'),(3052,63000,'Action'),(3053,63000,'Adventure'),(3054,63000,'Family'),(3055,63010,'Crime'),(3056,63010,'Drama'),(3057,63010,'Mystery'),(3058,63049,'Comedy'),(3059,63049,'Fantasy'),(3060,63049,'Musical'),(3061,63060,'Action'),(3062,63060,'Adventure'),(3063,63060,'Drama'),(3064,63121,'Adventure'),(3065,63121,'Thriller'),(3066,63172,'Action'),(3067,63172,'Adventure'),(3068,63172,'Sci-Fi'),(3069,63185,'Drama'),(3070,63227,'Biography'),(3071,63227,'Drama'),(3072,63227,'History'),(3073,63231,'Comedy'),(3074,63231,'Musical'),(3075,63231,'Romance'),(3076,63268,'Drama'),(3077,63278,'Drama'),(3078,63278,'History'),(3079,63278,'Romance'),(3080,63350,'Horror'),(3081,63350,'Thriller'),(3082,63379,'Drama'),(3083,63379,'Thriller'),(3084,63379,'Western'),(3085,63385,'Drama'),(3086,63385,'Family'),(3087,63385,'Musical'),(3088,63415,'Comedy'),(3089,63415,'Romance'),(3090,63442,'Adventure'),(3091,63442,'Sci-Fi'),(3092,63462,'Comedy'),(3093,63462,'Music'),(3094,63493,'Comedy'),(3095,63493,'Drama'),(3096,63518,'Drama'),(3097,63518,'Romance'),(3098,63522,'Drama'),(3099,63522,'Horror'),(3100,63592,'Drama'),(3101,63592,'Western'),(3102,63634,'Comedy'),(3103,63634,'Musical'),(3104,63634,'Romance'),(3105,63642,'Biography'),(3106,63642,'Comedy'),(3107,63642,'Drama'),(3108,63663,'Drama'),(3109,63668,'Action'),(3110,63668,'Adventure'),(3111,63668,'Animation'),(3112,63759,'Drama'),(3113,63759,'Horror'),(3114,63759,'Mystery'),(3115,63787,'Drama'),(3116,63818,'Adventure'),(3117,63818,'Western'),(3118,63823,'Adventure'),(3119,63823,'Animation'),(3120,63823,'Comedy'),(3121,63850,'Crime'),(3122,63850,'Drama'),(3123,63991,'Biography'),(3124,63991,'Comedy'),(3125,63991,'Drama'),(3126,64002,'Comedy'),(3127,64002,'Drama'),(3128,64002,'Music'),(3129,64040,'Drama'),(3130,64040,'War'),(3131,64106,'Drama'),(3132,64106,'Thriller'),(3133,64115,'Biography'),(3134,64115,'Crime'),(3135,64115,'Drama'),(3136,64116,'Western'),(3137,64155,'Western'),(3138,64156,'Drama'),(3139,64156,'Romance'),(3140,64165,'Drama'),(3141,64165,'Romance'),(3142,64177,'Sci-Fi'),(3143,64177,'Thriller'),(3144,64208,'Drama'),(3145,64208,'Western'),(3146,64240,'Action'),(3147,64240,'Drama'),(3148,64240,'Horror'),(3149,64253,'Drama'),(3150,64253,'Sport'),(3151,64276,'Adventure'),(3152,64276,'Drama'),(3153,64324,'Comedy'),(3154,64333,'Crime'),(3155,64333,'Thriller'),(3156,64370,'Crime'),(3157,64370,'Drama'),(3158,64370,'Thriller'),(3159,64373,'Adventure'),(3160,64373,'Family'),(3161,64373,'Fantasy'),(3162,64418,'Adventure'),(3163,64418,'Comedy'),(3164,64418,'Musical'),(3165,64437,'Crime'),(3166,64437,'Drama'),(3167,64437,'Romance'),(3168,64505,'Action'),(3169,64505,'Comedy'),(3170,64505,'Crime'),(3171,64541,'Drama'),(3172,64541,'Family'),(3173,64612,'Comedy'),(3174,64612,'Drama'),(3175,64612,'Romance'),(3176,64665,'Drama'),(3177,64708,'Adventure'),(3178,64708,'Family'),(3179,64757,'Action'),(3180,64757,'Adventure'),(3181,64757,'Thriller'),(3182,64782,'Comedy'),(3183,64782,'Drama'),(3184,64782,'Musical'),(3185,64793,'Drama'),(3186,64806,'Adventure'),(3187,64806,'Animation'),(3188,64806,'Comedy'),(3189,64816,'Crime'),(3190,64816,'Drama'),(3191,64816,'Romance'),(3192,64840,'Comedy'),(3193,64840,'Drama'),(3194,64840,'Romance'),(3195,64990,'Crime'),(3196,64990,'Drama'),(3197,64990,'Romance'),(3198,65051,'Comedy'),(3199,65051,'Western'),(3200,65063,'Comedy'),(3201,65063,'Crime'),(3202,65073,'Drama'),(3203,65073,'Fantasy'),(3204,65073,'Horror'),(3205,65088,'Drama'),(3206,65125,'Comedy'),(3207,65125,'History'),(3208,65125,'Musical'),(3209,65126,'Adventure'),(3210,65126,'Drama'),(3211,65126,'Western'),(3212,65134,'Adventure'),(3213,65134,'Drama'),(3214,65134,'Romance'),(3215,65207,'Action'),(3216,65207,'Adventure'),(3217,65207,'War'),(3218,65225,'Action'),(3219,65225,'Adventure'),(3220,65225,'Comedy'),(3221,65234,'Crime'),(3222,65234,'Drama'),(3223,65234,'Thriller'),(3224,65375,'Adventure'),(3225,65375,'Comedy'),(3226,65375,'History'),(3227,65377,'Action'),(3228,65377,'Drama'),(3229,65377,'Thriller'),(3230,65421,'Adventure'),(3231,65421,'Animation'),(3232,65421,'Comedy'),(3233,65449,'Drama'),(3234,65466,'Comedy'),(3235,65466,'Drama'),(3236,65466,'Music'),(3237,65488,'Drama'),(3238,65528,'Comedy'),(3239,65528,'Drama'),(3240,65528,'War'),(3241,65531,'Crime'),(3242,65531,'Drama'),(3243,65531,'Thriller'),(3244,65537,'Crime'),(3245,65537,'Drama'),(3246,65537,'Music'),(3247,65566,'Comedy'),(3248,65566,'Family'),(3249,65566,'Sci-Fi'),(3250,65569,'Drama'),(3251,65569,'Horror'),(3252,65571,'Drama'),(3253,65611,'Comedy'),(3254,65611,'Drama'),(3255,65611,'Musical'),(3256,65649,'Drama'),(3257,65724,'Drama'),(3258,65772,'Drama'),(3259,65772,'Romance'),(3260,65854,'Drama'),(3261,65854,'Fantasy'),(3262,65854,'Horror'),(3263,65856,'Drama'),(3264,65856,'Fantasy'),(3265,65856,'Horror'),(3266,65889,'Crime'),(3267,65889,'Drama'),(3268,65904,'Adult'),(3269,65904,'Comedy'),(3270,65904,'Drama'),(3271,65988,'Adventure'),(3272,65988,'Comedy'),(3273,65988,'Drama'),(3274,66011,'Drama'),(3275,66011,'Romance'),(3276,66109,'Biography'),(3277,66109,'Comedy'),(3278,66109,'Drama'),(3279,66115,'Comedy'),(3280,66122,'Comedy'),(3281,66122,'Drama'),(3282,66122,'Romance'),(3283,66164,'Comedy'),(3284,66164,'Drama'),(3285,66206,'Biography'),(3286,66206,'Drama'),(3287,66206,'War'),(3288,66207,'Comedy'),(3289,66207,'Fantasy'),(3290,66207,'Musical'),(3291,66227,'Adventure'),(3292,66227,'Comedy'),(3293,66227,'Drama'),(3294,66279,'Drama'),(3295,66279,'Family'),(3296,66301,'Drama'),(3297,66301,'War'),(3298,66301,'Western'),(3299,66327,'Adventure'),(3300,66327,'Animation'),(3301,66327,'Comedy'),(3302,66380,'Drama'),(3303,66380,'Horror'),(3304,66434,'Drama'),(3305,66434,'Sci-Fi'),(3306,66434,'Thriller'),(3307,66473,'Action'),(3308,66473,'Drama'),(3309,66473,'History'),(3310,66491,'Drama'),(3311,66518,'Horror'),(3312,66549,'Action'),(3313,66549,'Biography'),(3314,66549,'Drama'),(3315,66579,'Drama'),(3316,66579,'Romance'),(3317,66601,'Drama'),(3318,66728,'Comedy'),(3319,66728,'Family'),(3320,66728,'Sci-Fi'),(3321,66730,'Biography'),(3322,66730,'Crime'),(3323,66730,'Drama'),(3324,66763,'Drama'),(3325,66763,'Musical'),(3326,66765,'Comedy'),(3327,66769,'Mystery'),(3328,66769,'Sci-Fi'),(3329,66769,'Thriller'),(3330,66798,'Adventure'),(3331,66798,'Comedy'),(3332,66798,'Crime'),(3333,66808,'Comedy'),(3334,66817,'Adventure'),(3335,66817,'Animation'),(3336,66817,'Comedy'),(3337,66824,'Comedy'),(3338,66857,'Adventure'),(3339,66857,'Comedy'),(3340,66914,'Horror'),(3341,66919,'Drama'),(3342,66921,'Crime'),(3343,66921,'Sci-Fi'),(3344,66993,'Biography'),(3345,66993,'Drama'),(3346,66993,'History'),(3347,66995,'Action'),(3348,66995,'Adventure'),(3349,66995,'Thriller'),(3350,67023,'Action'),(3351,67023,'Thriller'),(3352,67065,'Action'),(3353,67065,'Sci-Fi'),(3354,67116,'Action'),(3355,67116,'Crime'),(3356,67116,'Drama'),(3357,67128,'Action'),(3358,67128,'Crime'),(3359,67128,'Thriller'),(3360,67148,'Action'),(3361,67148,'Animation'),(3362,67148,'Family'),(3363,67185,'Comedy'),(3364,67185,'Drama'),(3365,67185,'Romance'),(3366,67206,'Action'),(3367,67206,'Drama'),(3368,67277,'Drama'),(3369,67277,'War'),(3370,67309,'Crime'),(3371,67309,'Mystery'),(3372,67309,'Thriller'),(3373,67322,'Action'),(3374,67322,'Drama'),(3375,67328,'Drama'),(3376,67328,'Romance'),(3377,67341,'Drama'),(3378,67341,'Horror'),(3379,67341,'Mystery'),(3380,67355,'Comedy'),(3381,67355,'Western'),(3382,67367,'Horror'),(3383,67372,'Drama'),(3384,67372,'History'),(3385,67402,'Biography'),(3386,67402,'Drama'),(3387,67402,'History'),(3388,67411,'Drama'),(3389,67411,'Western'),(3390,67418,'Comedy'),(3391,67418,'Drama'),(3392,67418,'Romance'),(3393,67439,'Drama'),(3394,67445,'Drama'),(3395,67445,'Romance'),(3396,67451,'Adventure'),(3397,67451,'Comedy'),(3398,67482,'Comedy'),(3399,67482,'Romance'),(3400,67483,'Biography'),(3401,67483,'Drama'),(3402,67483,'History'),(3403,67541,'Drama'),(3404,67541,'Thriller'),(3405,67588,'Drama'),(3406,67588,'Thriller'),(3407,67633,'Drama'),(3408,67633,'Thriller'),(3409,67637,'Action'),(3410,67637,'Comedy'),(3411,67637,'Western'),(3412,67690,'Horror'),(3413,67713,'Horror'),(3414,67736,'Drama'),(3415,67741,'Action'),(3416,67741,'Crime'),(3417,67741,'Thriller'),(3418,67800,'Crime'),(3419,67800,'Drama'),(3420,67800,'Thriller'),(3421,67810,'Action'),(3422,67810,'Crime'),(3423,67810,'Drama'),(3424,67820,'Comedy'),(3425,67820,'Drama'),(3426,67820,'Music'),(3427,67866,'Drama'),(3428,67866,'Western'),(3429,67881,'Drama'),(3430,67919,'Drama'),(3431,67919,'History'),(3432,67927,'Action'),(3433,67927,'Crime'),(3434,67927,'Thriller'),(3435,67959,'Adventure'),(3436,67959,'Drama'),(3437,67961,'Crime'),(3438,67961,'Drama'),(3439,67972,'Horror'),(3440,67977,'Horror'),(3441,67977,'Thriller'),(3442,67992,'Family'),(3443,67992,'Fantasy'),(3444,67992,'Musical'),(3445,68154,'Comedy'),(3446,68154,'Western'),(3447,68156,'Drama'),(3448,68156,'Family'),(3449,68156,'History'),(3450,68161,'Drama'),(3451,68161,'History'),(3452,68161,'War'),(3453,68182,'Action'),(3454,68182,'Adventure'),(3455,68182,'Biography'),(3456,68205,'Comedy'),(3457,68205,'Drama'),(3458,68205,'Romance'),(3459,68232,'Action'),(3460,68232,'Adventure'),(3461,68232,'Fantasy'),(3462,68240,'Comedy'),(3463,68240,'Romance'),(3464,68273,'Action'),(3465,68273,'Crime'),(3466,68273,'Drama'),(3467,68278,'Drama'),(3468,68278,'Romance'),(3469,68281,'Action'),(3470,68281,'Crime'),(3471,68281,'Thriller'),(3472,68282,'Crime'),(3473,68282,'Drama'),(3474,68282,'Thriller'),(3475,68284,'Fantasy'),(3476,68284,'Horror'),(3477,68284,'Romance'),(3478,68326,'Comedy'),(3479,68326,'Drama'),(3480,68326,'Music'),(3481,68327,'Drama'),(3482,68327,'Music'),(3483,68327,'Musical'),(3484,68346,'Biography'),(3485,68346,'Drama'),(3486,68346,'Mystery'),(3487,68359,'Animation'),(3488,68359,'Comedy'),(3489,68359,'Family'),(3490,68361,'Comedy'),(3491,68370,'Comedy'),(3492,68370,'Horror'),(3493,68371,'Action'),(3494,68371,'Adventure'),(3495,68371,'Family'),(3496,68468,'Adult'),(3497,68468,'Comedy'),(3498,68473,'Adventure'),(3499,68473,'Drama'),(3500,68473,'Thriller'),(3501,68569,'Drama'),(3502,68611,'Thriller'),(3503,68638,'Action'),(3504,68638,'Crime'),(3505,68638,'Thriller'),(3506,68646,'Crime'),(3507,68646,'Drama'),(3508,68675,'Crime'),(3509,68675,'Drama'),(3510,68675,'Western'),(3511,68699,'Drama'),(3512,68699,'Mystery'),(3513,68699,'Western'),(3514,68762,'Adventure'),(3515,68762,'Drama'),(3516,68762,'Western'),(3517,68768,'Drama'),(3518,68768,'Western'),(3519,68815,'Action'),(3520,68815,'Adventure'),(3521,68816,'Action'),(3522,68816,'Adventure'),(3523,68816,'Drama'),(3524,68817,'Action'),(3525,68817,'Drama'),(3526,68828,'Biography'),(3527,68828,'Drama'),(3528,68828,'Music'),(3529,68833,'Crime'),(3530,68833,'Horror'),(3531,68833,'Thriller'),(3532,69019,'Horror'),(3533,69019,'Mystery'),(3534,69019,'Thriller'),(3535,69067,'Drama'),(3536,69067,'Music'),(3537,69089,'Comedy'),(3538,69089,'Crime'),(3539,69095,'Action'),(3540,69095,'Adventure'),(3541,69095,'Comedy'),(3542,69113,'Action'),(3543,69113,'Adventure'),(3544,69113,'Drama'),(3545,69281,'Mystery'),(3546,69281,'Thriller'),(3547,69293,'Drama'),(3548,69293,'Mystery'),(3549,69293,'Sci-Fi'),(3550,69404,'Adventure'),(3551,69404,'Comedy'),(3552,69442,'Comedy'),(3553,69442,'Crime'),(3554,69442,'Drama'),(3555,69467,'Drama'),(3556,69489,'Drama'),(3557,69495,'Comedy'),(3558,69495,'Romance'),(3559,69697,'Action'),(3560,69697,'Comedy'),(3561,69704,'Comedy'),(3562,69704,'Drama'),(3563,69729,'Action'),(3564,69729,'Adventure'),(3565,69745,'Horror'),(3566,69747,'Adventure'),(3567,69747,'Comedy'),(3568,69754,'Drama'),(3569,69754,'Horror'),(3570,69754,'Thriller'),(3571,69762,'Action'),(3572,69762,'Crime'),(3573,69762,'Drama'),(3574,69848,'Comedy'),(3575,69848,'Romance'),(3576,69890,'Action'),(3577,69890,'Crime'),(3578,69890,'Thriller'),(3579,69895,'Action'),(3580,69895,'Horror'),(3581,69895,'Sci-Fi'),(3582,69897,'Action'),(3583,69897,'Crime'),(3584,69897,'Thriller'),(3585,69945,'Comedy'),(3586,69945,'Sci-Fi'),(3587,69987,'Drama'),(3588,69990,'Drama'),(3589,69995,'Drama'),(3590,69995,'Horror'),(3591,69995,'Mystery'),(3592,70003,'Drama'),(3593,70003,'Horror'),(3594,70034,'Action'),(3595,70034,'Crime'),(3596,70034,'Thriller'),(3597,70040,'Drama'),(3598,70040,'Fantasy'),(3599,70047,'Horror'),(3600,70122,'Action'),(3601,70122,'Adventure'),(3602,70122,'Family'),(3603,70215,'Comedy'),(3604,70215,'Drama'),(3605,70215,'Western'),(3606,70233,'Adventure'),(3607,70233,'Comedy'),(3608,70233,'Sci-Fi'),(3609,70239,'Drama'),(3610,70239,'History'),(3611,70239,'Musical'),(3612,70294,'Horror'),(3613,70297,'Action'),(3614,70297,'Horror'),(3615,70300,'Fantasy'),(3616,70300,'Horror'),(3617,70300,'Thriller'),(3618,70328,'Action'),(3619,70328,'Adventure'),(3620,70328,'Thriller'),(3621,70379,'Crime'),(3622,70379,'Drama'),(3623,70379,'Thriller'),(3624,70453,'Crime'),(3625,70453,'Drama'),(3626,70453,'Thriller'),(3627,70460,'Comedy'),(3628,70460,'Drama'),(3629,70460,'Romance'),(3630,70468,'Crime'),(3631,70468,'Drama'),(3632,70468,'Thriller'),(3633,70510,'Comedy'),(3634,70510,'Crime'),(3635,70510,'Drama'),(3636,70511,'Biography'),(3637,70511,'Crime'),(3638,70511,'Drama'),(3639,70518,'Biography'),(3640,70518,'Drama'),(3641,70518,'Western'),(3642,70534,'Action'),(3643,70534,'Comedy'),(3644,70534,'Crime'),(3645,70544,'Animation'),(3646,70544,'Sci-Fi'),(3647,70608,'Adventure'),(3648,70608,'Animation'),(3649,70608,'Comedy'),(3650,70634,'Horror'),(3651,70641,'Drama'),(3652,70641,'Mystery'),(3653,70641,'Thriller'),(3654,70666,'Biography'),(3655,70666,'Crime'),(3656,70666,'Drama'),(3657,70694,'Horror'),(3658,70694,'Mystery'),(3659,70694,'Thriller'),(3660,70698,'Horror'),(3661,70698,'Mystery'),(3662,70698,'Thriller'),(3663,70707,'Comedy'),(3664,70707,'Sci-Fi'),(3665,70723,'Crime'),(3666,70723,'Mystery'),(3667,70723,'Sci-Fi'),(3668,70735,'Comedy'),(3669,70735,'Crime'),(3670,70735,'Drama'),(3671,70782,'Action'),(3672,70782,'Drama'),(3673,70782,'Thriller'),(3674,70819,'Comedy'),(3675,70819,'Romance'),(3676,70842,'Drama'),(3677,70842,'Romance'),(3678,70849,'Drama'),(3679,70849,'Romance'),(3680,70898,'Drama'),(3681,70898,'Romance'),(3682,70904,'Crime'),(3683,70904,'Mystery'),(3684,70904,'Sci-Fi'),(3685,70917,'Horror'),(3686,70917,'Mystery'),(3687,70917,'Thriller'),(3688,70926,'Action'),(3689,70926,'Crime'),(3690,70926,'Horror'),(3691,70948,'Adventure'),(3692,70948,'Fantasy'),(3693,70948,'Sci-Fi'),(3694,70959,'Crime'),(3695,70959,'Drama'),(3696,70959,'Mystery'),(3697,71110,'Action'),(3698,71110,'Drama'),(3699,71110,'Thriller'),(3700,71115,'Drama'),(3701,71115,'Romance'),(3702,71129,'Comedy'),(3703,71129,'Drama'),(3704,71141,'Drama'),(3705,71141,'Romance'),(3706,71203,'Animation'),(3707,71203,'Drama'),(3708,71203,'Fantasy'),(3709,71222,'Horror'),(3710,71222,'Mystery'),(3711,71222,'Thriller'),(3712,71230,'Comedy'),(3713,71230,'Western'),(3714,71233,'Horror'),(3715,71247,'Drama'),(3716,71315,'Drama'),(3717,71315,'Mystery'),(3718,71315,'Thriller'),(3719,71360,'Drama'),(3720,71360,'Mystery'),(3721,71360,'Thriller'),(3722,71381,'Comedy'),(3723,71381,'Drama'),(3724,71381,'Fantasy'),(3725,71396,'Horror'),(3726,71402,'Action'),(3727,71402,'Crime'),(3728,71402,'Drama'),(3729,71411,'Adventure'),(3730,71411,'Biography'),(3731,71411,'Drama'),(3732,71427,'Comedy'),(3733,71427,'Drama'),(3734,71431,'Horror'),(3735,71464,'Drama'),(3736,71464,'Romance'),(3737,71517,'Action'),(3738,71517,'Crime'),(3739,71517,'Thriller'),(3740,71562,'Crime'),(3741,71562,'Drama'),(3742,71565,'Action'),(3743,71565,'Adventure'),(3744,71565,'Family'),(3745,71583,'Comedy'),(3746,71615,'Adventure'),(3747,71615,'Drama'),(3748,71615,'Fantasy'),(3749,71690,'Drama'),(3750,71695,'Action'),(3751,71695,'Adventure'),(3752,71695,'Drama'),(3753,71717,'Horror'),(3754,71717,'Sci-Fi'),(3755,71762,'Family'),(3756,71762,'Fantasy'),(3757,71762,'Musical'),(3758,71798,'Drama'),(3759,71798,'Romance'),(3760,71803,'Comedy'),(3761,71803,'Musical'),(3762,71807,'Action'),(3763,71807,'Adventure'),(3764,71807,'Thriller'),(3765,71853,'Adventure'),(3766,71853,'Comedy'),(3767,71853,'Fantasy'),(3768,71935,'Drama'),(3769,71935,'Thriller'),(3770,71970,'Drama'),(3771,71970,'Thriller'),(3772,71994,'Comedy'),(3773,71994,'Drama'),(3774,71994,'Fantasy'),(3775,72226,'Crime'),(3776,72226,'Drama'),(3777,72271,'Horror'),(3778,72281,'Action'),(3779,72281,'Adventure'),(3780,72281,'Romance'),(3781,72308,'Action'),(3782,72308,'Drama'),(3783,72308,'Thriller'),(3784,72325,'Action'),(3785,72325,'Crime'),(3786,72325,'Thriller'),(3787,72353,'Action'),(3788,72353,'Comedy'),(3789,72353,'Crime'),(3790,72354,'Horror'),(3791,72417,'Drama'),(3792,72417,'Romance'),(3793,72431,'Comedy'),(3794,72435,'Drama'),(3795,72435,'Western'),(3796,72443,'Biography'),(3797,72443,'Drama'),(3798,72448,'Action'),(3799,72448,'Adventure'),(3800,72448,'Comedy'),(3801,72500,'Comedy'),(3802,72684,'Adventure'),(3803,72684,'Drama'),(3804,72684,'War'),(3805,72730,'Comedy'),(3806,72730,'Drama'),(3807,72730,'Sci-Fi'),(3808,72791,'Action'),(3809,72824,'Adventure'),(3810,72824,'Drama'),(3811,72824,'History'),(3812,72856,'Action'),(3813,72856,'Comedy'),(3814,72856,'Sci-Fi'),(3815,72890,'Biography'),(3816,72890,'Crime'),(3817,72890,'Drama'),(3818,72895,'Action'),(3819,72895,'Comedy'),(3820,72895,'Crime'),(3821,72901,'Adventure'),(3822,72901,'Animation'),(3823,72901,'Comedy'),(3824,72905,'Comedy'),(3825,72905,'Drama'),(3826,72933,'Drama'),(3827,72933,'Romance'),(3828,72979,'Comedy'),(3829,72979,'Crime'),(3830,73076,'Comedy'),(3831,73076,'Documentary'),(3832,73076,'Drama'),(3833,73114,'Biography'),(3834,73114,'Drama'),(3835,73114,'History'),(3836,73115,'Drama'),(3837,73172,'Comedy'),(3838,73172,'Drama'),(3839,73179,'Comedy'),(3840,73179,'Drama'),(3841,73179,'Romance'),(3842,73195,'Adventure'),(3843,73195,'Mystery'),(3844,73195,'Thriller'),(3845,73198,'Drama'),(3846,73233,'Drama'),(3847,73312,'Comedy'),(3848,73312,'War'),(3849,73349,'Drama'),(3850,73349,'History'),(3851,73349,'Romance'),(3852,73373,'Action'),(3853,73373,'Adventure'),(3854,73373,'Family'),(3855,73440,'Comedy'),(3856,73440,'Drama'),(3857,73440,'Music'),(3858,73471,'Documentary'),(3859,73471,'Drama'),(3860,73486,'Drama'),(3861,73518,'Drama'),(3862,73540,'Drama'),(3863,73540,'Mystery'),(3864,73541,'Action'),(3865,73541,'Comedy'),(3866,73541,'Crime'),(3867,73582,'Horror'),(3868,73582,'Mystery'),(3869,73582,'Thriller'),(3870,73598,'Comedy'),(3871,73598,'Drama'),(3872,73598,'Thriller'),(3873,73629,'Comedy'),(3874,73629,'Horror'),(3875,73629,'Musical'),(3876,73650,'Drama'),(3877,73697,'Action'),(3878,73697,'Crime'),(3879,73697,'Drama'),(3880,73747,'Horror'),(3881,73747,'Mystery'),(3882,73747,'Sci-Fi'),(3883,73768,'Comedy'),(3884,73778,'Action'),(3885,73778,'Crime'),(3886,73778,'Drama'),(3887,73802,'Crime'),(3888,73802,'Mystery'),(3889,73802,'Thriller'),(3890,73812,'Drama'),(3891,73812,'Musical'),(3892,73972,'Action'),(3893,73972,'Adventure'),(3894,73972,'Crime'),(3895,74080,'Action'),(3896,74080,'Adventure'),(3897,74080,'Drama'),(3898,74102,'Drama'),(3899,74102,'Romance'),(3900,74119,'Drama'),(3901,74119,'History'),(3902,74119,'Thriller'),(3903,74121,'Animation'),(3904,74121,'Comedy'),(3905,74121,'Fantasy'),(3906,74152,'Comedy'),(3907,74152,'Drama'),(3908,74156,'Action'),(3909,74156,'Crime'),(3910,74156,'Thriller'),(3911,74256,'Comedy'),(3912,74256,'Crime'),(3913,74256,'Family'),(3914,74285,'Horror'),(3915,74285,'Mystery'),(3916,74400,'Drama'),(3917,74400,'History'),(3918,74400,'War'),(3919,74437,'Action'),(3920,74437,'Drama'),(3921,74455,'Horror'),(3922,74455,'Thriller'),(3923,74462,'Biography'),(3924,74462,'Drama'),(3925,74462,'History'),(3926,74471,'Drama'),(3927,74486,'Fantasy'),(3928,74486,'Horror'),(3929,74512,'Comedy'),(3930,74512,'Crime'),(3931,74512,'Drama'),(3932,74548,'Adventure'),(3933,74548,'Drama'),(3934,74548,'Thriller'),(3935,74597,'Comedy'),(3936,74611,'Drama'),(3937,74611,'Horror'),(3938,74611,'Mystery'),(3939,74740,'Drama'),(3940,74740,'Western'),(3941,74806,'Drama'),(3942,74806,'Horror'),(3943,74806,'Mystery'),(3944,74811,'Drama'),(3945,74811,'Thriller'),(3946,74812,'Action'),(3947,74812,'Adventure'),(3948,74812,'Sci-Fi'),(3949,74851,'Drama'),(3950,74851,'Sci-Fi'),(3951,74853,'Adventure'),(3952,74853,'History'),(3953,74855,'Adventure'),(3954,74855,'Drama'),(3955,74860,'Crime'),(3956,74860,'Drama'),(3957,74860,'Thriller'),(3958,74937,'Comedy'),(3959,74937,'Crime'),(3960,74937,'Mystery'),(3961,74958,'Drama'),(3962,75005,'Horror'),(3963,75005,'Mystery'),(3964,75029,'Western'),(3965,75137,'Comedy'),(3966,75137,'Sport'),(3967,75148,'Drama'),(3968,75148,'Sport'),(3969,75177,'Drama'),(3970,75177,'Romance'),(3971,75178,'Comedy'),(3972,75222,'Comedy'),(3973,75223,'Action'),(3974,75223,'Comedy'),(3975,75223,'Crime'),(3976,75249,'Drama'),(3977,75249,'Music'),(3978,75265,'Drama'),(3979,75265,'Music'),(3980,75265,'Romance'),(3981,75276,'Comedy'),(3982,75276,'Drama'),(3983,75314,'Crime'),(3984,75314,'Drama'),(3985,75342,'Crime'),(3986,75342,'Drama'),(3987,75342,'Horror'),(3988,75359,'Action'),(3989,75359,'Crime'),(3990,75359,'Drama'),(3991,75376,'Comedy'),(3992,75376,'Mystery'),(3993,75376,'Thriller'),(3994,75467,'Drama'),(3995,75467,'War'),(3996,75612,'Drama'),(3997,75612,'Mystery'),(3998,75612,'Thriller'),(3999,75617,'Comedy'),(4000,75617,'Documentary'),(4001,75617,'Drama'),(4002,75666,'Horror'),(4003,75679,'Comedy'),(4004,75679,'Crime'),(4005,75679,'Horror'),(4006,75686,'Comedy'),(4007,75686,'Romance'),(4008,75784,'Drama'),(4009,75784,'History'),(4010,75784,'War'),(4011,75860,'Drama'),(4012,75860,'Sci-Fi'),(4013,75909,'Sci-Fi'),(4014,75936,'Comedy'),(4015,75936,'Crime'),(4016,75936,'Fantasy'),(4017,75938,'Drama'),(4018,75939,'Comedy'),(4019,75939,'Drama'),(4020,75968,'Drama'),(4021,75968,'War'),(4022,75988,'Comedy'),(4023,75988,'Drama'),(4024,75988,'Family'),(4025,76054,'Comedy'),(4026,76054,'Family'),(4027,76054,'Fantasy'),(4028,76085,'Drama'),(4029,76095,'Comedy'),(4030,76095,'Drama'),(4031,76095,'Romance'),(4032,76141,'Comedy'),(4033,76141,'Mystery'),(4034,76141,'Thriller'),(4035,76155,'Comedy'),(4036,76155,'Drama'),(4037,76155,'Romance'),(4038,76161,'Comedy'),(4039,76161,'Crime'),(4040,76161,'Horror'),(4041,76162,'Comedy'),(4042,76162,'Horror'),(4043,76175,'Adventure'),(4044,76175,'Drama'),(4045,76175,'Romance'),(4046,76240,'Comedy'),(4047,76240,'Drama'),(4048,76240,'Fantasy'),(4049,76245,'Drama'),(4050,76257,'Comedy'),(4051,76271,'Horror'),(4052,76271,'Sci-Fi'),(4053,76319,'Comedy'),(4054,76319,'Musical'),(4055,76319,'Romance'),(4056,76363,'Adventure'),(4057,76363,'Animation'),(4058,76363,'Comedy'),(4059,76504,'Adventure'),(4060,76504,'Drama'),(4061,76504,'Horror'),(4062,76538,'Adventure'),(4063,76538,'Animation'),(4064,76538,'Comedy'),(4065,76578,'Documentary'),(4066,76578,'Sport'),(4067,76582,'Comedy'),(4068,76584,'Action'),(4069,76584,'Adventure'),(4070,76584,'War'),(4071,76590,'Horror'),(4072,76590,'Sci-Fi'),(4073,76591,'Adventure'),(4074,76591,'Animation'),(4075,76591,'Comedy'),(4076,76618,'Adventure'),(4077,76618,'Animation'),(4078,76618,'Comedy'),(4079,76661,'Action'),(4080,76661,'Comedy'),(4081,76666,'Drama'),(4082,76666,'Music'),(4083,76683,'Horror'),(4084,76723,'Comedy'),(4085,76723,'Drama'),(4086,76723,'Sport'),(4087,76727,'Comedy'),(4088,76727,'Drama'),(4089,76727,'Romance'),(4090,76734,'Drama'),(4091,76734,'Romance'),(4092,76734,'Thriller'),(4093,76752,'Action'),(4094,76752,'Adventure'),(4095,76752,'Thriller'),(4096,76759,'Action'),(4097,76759,'Adventure'),(4098,76759,'Fantasy'),(4099,76786,'Horror'),(4100,76843,'Drama'),(4101,76843,'Music'),(4102,76843,'Romance'),(4103,77189,'Action'),(4104,77189,'Drama'),(4105,77189,'Thriller'),(4106,77215,'Action'),(4107,77215,'Adventure'),(4108,77215,'Sci-Fi'),(4109,77269,'Drama'),(4110,77269,'Mystery'),(4111,77269,'Sci-Fi'),(4112,77275,'Comedy'),(4113,77275,'Crime'),(4114,77275,'Drama'),(4115,77288,'Comedy'),(4116,77369,'Action'),(4117,77369,'Drama'),(4118,77394,'Horror'),(4119,77402,'Horror'),(4120,77402,'Thriller'),(4121,77405,'Drama'),(4122,77405,'Romance'),(4123,77413,'Crime'),(4124,77413,'Drama'),(4125,77413,'Mystery'),(4126,77416,'Drama'),(4127,77416,'War'),(4128,77474,'Action'),(4129,77474,'Crime'),(4130,77474,'Thriller'),(4131,77497,'Drama'),(4132,77497,'Romance'),(4133,77578,'Comedy'),(4134,77578,'Mystery'),(4135,77578,'Thriller'),(4136,77613,'Comedy'),(4137,77613,'Drama'),(4138,77629,'Adventure'),(4139,77629,'Drama'),(4140,77629,'History'),(4141,77631,'Comedy'),(4142,77631,'Musical'),(4143,77631,'Romance'),(4144,77651,'Horror'),(4145,77651,'Thriller'),(4146,77681,'Horror'),(4147,77681,'Thriller'),(4148,77687,'Adventure'),(4149,77687,'Animation'),(4150,77687,'Family'),(4151,77707,'Drama'),(4152,77707,'Mystery'),(4153,77711,'Drama'),(4154,77711,'Music'),(4155,77713,'Horror'),(4156,77713,'Thriller'),(4157,77742,'Drama'),(4158,77766,'Adventure'),(4159,77766,'Horror'),(4160,77766,'Thriller'),(4161,77838,'Biography'),(4162,77838,'Documentary'),(4163,77838,'Music'),(4164,77864,'Action'),(4165,77864,'Comedy'),(4166,77864,'Sport'),(4167,77869,'Adventure'),(4168,77869,'Animation'),(4169,77869,'Fantasy'),(4170,77889,'Drama'),(4171,77889,'Horror'),(4172,77914,'Drama'),(4173,77914,'Horror'),(4174,77928,'Biography'),(4175,77928,'Crime'),(4176,77928,'Drama'),(4177,77975,'Comedy'),(4178,78087,'Comedy'),(4179,78087,'Horror'),(4180,78087,'Sci-Fi'),(4181,78089,'Drama'),(4182,78089,'Sci-Fi'),(4183,78111,'Drama'),(4184,78259,'Drama'),(4185,78259,'Horror'),(4186,78295,'Horror'),(4187,78295,'Mystery'),(4188,78295,'Thriller'),(4189,78346,'Action'),(4190,78346,'Adventure'),(4191,78346,'Sci-Fi'),(4192,78444,'Comedy'),(4193,78444,'Drama'),(4194,78444,'Romance'),(4195,78480,'Adventure'),(4196,78480,'Animation'),(4197,78480,'Drama'),(4198,78503,'Horror'),(4199,78503,'Short'),(4200,78504,'Adventure'),(4201,78504,'Family'),(4202,78504,'Fantasy'),(4203,78509,'Biography'),(4204,78509,'Drama'),(4205,78748,'Horror'),(4206,78748,'Sci-Fi'),(4207,78754,'Drama'),(4208,78754,'Music'),(4209,78754,'Musical'),(4210,78767,'Horror'),(4211,78778,'Action'),(4212,78778,'Comedy'),(4213,78788,'Drama'),(4214,78788,'Mystery'),(4215,78788,'War'),(4216,78841,'Comedy'),(4217,78841,'Drama'),(4218,78843,'Biography'),(4219,78843,'Drama'),(4220,78846,'Comedy'),(4221,78869,'Action'),(4222,78869,'Sci-Fi'),(4223,78875,'Drama'),(4224,78875,'War'),(4225,78913,'Comedy'),(4226,78913,'Crime'),(4227,78913,'Thriller'),(4228,78935,'Adventure'),(4229,78935,'Horror'),(4230,78966,'Drama'),(4231,78966,'Thriller'),(4232,79095,'Drama'),(4233,79116,'Action'),(4234,79116,'Biography'),(4235,79116,'Crime'),(4236,79180,'Adventure'),(4237,79180,'Comedy'),(4238,79180,'Drama'),(4239,79256,'Comedy'),(4240,79261,'Comedy'),(4241,79261,'Drama'),(4242,79261,'Musical'),(4243,79336,'Action'),(4244,79336,'Adventure'),(4245,79336,'Comedy'),(4246,79367,'Comedy'),(4247,79417,'Drama'),(4248,79470,'Comedy'),(4249,79501,'Action'),(4250,79501,'Adventure'),(4251,79501,'Sci-Fi'),(4252,79522,'Comedy'),(4253,79522,'Drama'),(4254,79522,'Romance'),(4255,79540,'Comedy'),(4256,79574,'Action'),(4257,79574,'Adventure'),(4258,79574,'Sci-Fi'),(4259,79579,'Comedy'),(4260,79579,'Drama'),(4261,79579,'Romance'),(4262,79588,'Adventure'),(4263,79588,'Comedy'),(4264,79588,'Family'),(4265,79593,'Crime'),(4266,79593,'Drama'),(4267,79593,'Mystery'),(4268,79596,'Biography'),(4269,79596,'Drama'),(4270,79596,'Romance'),(4271,79638,'Drama'),(4272,79639,'Action'),(4273,79639,'Comedy'),(4274,79639,'Crime'),(4275,79641,'Drama'),(4276,79641,'Horror'),(4277,79679,'Comedy'),(4278,79679,'Drama'),(4279,79679,'Romance'),(4280,79714,'Horror'),(4281,79714,'Sci-Fi'),(4282,79766,'Drama'),(4283,79766,'Music'),(4284,79813,'Comedy'),(4285,79813,'Music'),(4286,79817,'Drama'),(4287,79817,'Sport'),(4288,79820,'Animation'),(4289,79820,'Family'),(4290,79820,'Fantasy'),(4291,79826,'Drama'),(4292,79826,'Music'),(4293,79826,'Romance'),(4294,79833,'Action'),(4295,79833,'Adventure'),(4296,79833,'Animation'),(4297,79871,'Crime'),(4298,79871,'Drama'),(4299,79944,'Drama'),(4300,79944,'Sci-Fi'),(4301,79945,'Adventure'),(4302,79945,'Mystery'),(4303,79945,'Sci-Fi'),(4304,79946,'Action'),(4305,79946,'Adventure'),(4306,79946,'Sci-Fi'),(4307,80025,'Adventure'),(4308,80025,'Drama'),(4309,80025,'Sci-Fi'),(4310,80040,'Horror'),(4311,80120,'Action'),(4312,80120,'Crime'),(4313,80120,'Thriller'),(4314,80319,'Comedy'),(4315,80339,'Comedy'),(4316,80365,'Crime'),(4317,80365,'Drama'),(4318,80365,'Mystery'),(4319,80377,'Action'),(4320,80377,'Comedy'),(4321,80388,'Crime'),(4322,80388,'Drama'),(4323,80388,'Romance'),(4324,80421,'Action'),(4325,80421,'Adventure'),(4326,80421,'Sci-Fi'),(4327,80453,'Adventure'),(4328,80453,'Drama'),(4329,80453,'Romance'),(4330,80455,'Action'),(4331,80455,'Adventure'),(4332,80455,'Comedy'),(4333,80487,'Comedy'),(4334,80487,'Sport'),(4335,80492,'Biography'),(4336,80492,'Comedy'),(4337,80492,'Musical'),(4338,80549,'Biography'),(4339,80549,'Drama'),(4340,80549,'Music'),(4341,80569,'Crime'),(4342,80569,'Drama'),(4343,80569,'Mystery'),(4344,80684,'Action'),(4345,80684,'Adventure'),(4346,80684,'Fantasy'),(4347,80711,'Comedy'),(4348,80711,'Crime'),(4349,80711,'Horror'),(4350,80716,'Drama'),(4351,80716,'Music'),(4352,80716,'Musical'),(4353,80736,'Action'),(4354,80736,'Adventure'),(4355,80736,'Sci-Fi'),(4356,80745,'Action'),(4357,80745,'Adventure'),(4358,80745,'Sci-Fi'),(4359,80749,'Horror'),(4360,80749,'Thriller'),(4361,80761,'Horror'),(4362,80761,'Mystery'),(4363,80761,'Thriller'),(4364,80855,'Adventure'),(4365,80855,'Drama'),(4366,80855,'Western'),(4367,80931,'Horror'),(4368,80931,'Sci-Fi'),(4369,80931,'Thriller'),(4370,80979,'Drama'),(4371,80979,'History'),(4372,80979,'War'),(4373,81060,'Comedy'),(4374,81060,'Drama'),(4375,81114,'Crime'),(4376,81114,'Drama'),(4377,81114,'Horror'),(4378,81163,'Crime'),(4379,81163,'Mystery'),(4380,81163,'Thriller'),(4381,81237,'Comedy'),(4382,81237,'Drama'),(4383,81237,'Horror'),(4384,81249,'Action'),(4385,81249,'Comedy'),(4386,81249,'Crime'),(4387,81283,'Drama'),(4388,81323,'Comedy'),(4389,81353,'Adventure'),(4390,81353,'Comedy'),(4391,81353,'Family'),(4392,81375,'Comedy'),(4393,81375,'War'),(4394,81398,'Biography'),(4395,81398,'Drama'),(4396,81398,'Sport'),(4397,81414,'Drama'),(4398,81414,'Fantasy'),(4399,81455,'Horror'),(4400,81455,'Sci-Fi'),(4401,81455,'Thriller'),(4402,81505,'Drama'),(4403,81505,'Horror'),(4404,81534,'Drama'),(4405,81534,'Fantasy'),(4406,81534,'Romance'),(4407,81573,'Action'),(4408,81573,'Adventure'),(4409,81573,'Sci-Fi'),(4410,81616,'Comedy'),(4411,81616,'Drama'),(4412,81633,'Adventure'),(4413,81633,'Comedy'),(4414,81633,'Fantasy'),(4415,81777,'Fantasy'),(4416,81777,'Musical'),(4417,81777,'Romance'),(4418,81974,'Drama'),(4419,81974,'Romance'),(4420,81974,'Thriller'),(4421,82010,'Comedy'),(4422,82010,'Horror'),(4423,82045,'Action'),(4424,82045,'Comedy'),(4425,82085,'Crime'),(4426,82085,'Drama'),(4427,82085,'Mystery'),(4428,82089,'Crime'),(4429,82089,'Drama'),(4430,82089,'Romance'),(4431,82096,'Drama'),(4432,82096,'War'),(4433,82100,'Comedy'),(4434,82100,'Drama'),(4435,82100,'Romance'),(4436,82153,'Action'),(4437,82153,'Drama'),(4438,82158,'Biography'),(4439,82158,'Drama'),(4440,82158,'Sport'),(4441,82176,'Biography'),(4442,82176,'Drama'),(4443,82186,'Action'),(4444,82186,'Adventure'),(4445,82186,'Family'),(4446,82198,'Action'),(4447,82198,'Adventure'),(4448,82198,'Fantasy'),(4449,82242,'Horror'),(4450,82242,'Mystery'),(4451,82269,'Crime'),(4452,82269,'Music'),(4453,82269,'Thriller'),(4454,82288,'Action'),(4455,82288,'Adventure'),(4456,82288,'Fantasy'),(4457,82307,'Horror'),(4458,82334,'Drama'),(4459,82334,'Horror'),(4460,82340,'Action'),(4461,82340,'Adventure'),(4462,82340,'Sci-Fi'),(4463,82348,'Adventure'),(4464,82348,'Drama'),(4465,82348,'Fantasy'),(4466,82370,'Drama'),(4467,82370,'Romance'),(4468,82398,'Action'),(4469,82398,'Adventure'),(4470,82398,'Thriller'),(4471,82405,'Comedy'),(4472,82405,'Drama'),(4473,82406,'Adventure'),(4474,82406,'Animation'),(4475,82406,'Drama'),(4476,82418,'Horror'),(4477,82418,'Mystery'),(4478,82418,'Thriller'),(4479,82424,'Crime'),(4480,82424,'Drama'),(4481,82431,'Action'),(4482,82431,'Adventure'),(4483,82431,'Horror'),(4484,82474,'Adventure'),(4485,82474,'Comedy'),(4486,82474,'Crime'),(4487,82477,'Comedy'),(4488,82477,'Drama'),(4489,82477,'Romance'),(4490,82484,'Adventure'),(4491,82484,'Drama'),(4492,82495,'Horror'),(4493,82498,'Horror'),(4494,82498,'Mystery'),(4495,82498,'Thriller'),(4496,82509,'Adventure'),(4497,82509,'Animation'),(4498,82509,'Fantasy'),(4499,82517,'Comedy'),(4500,82517,'History'),(4501,82517,'Musical'),(4502,82533,'Horror'),(4503,82639,'Comedy'),(4504,82639,'Drama'),(4505,82639,'Music'),(4506,82640,'Drama'),(4507,82640,'Romance'),(4508,82677,'Drama'),(4509,82677,'Sci-Fi'),(4510,82677,'Thriller'),(4511,82700,'Adventure'),(4512,82700,'Horror'),(4513,82714,'Comedy'),(4514,82714,'History'),(4515,82719,'Biography'),(4516,82719,'Drama'),(4517,82748,'Horror'),(4518,82748,'Mystery'),(4519,82748,'Thriller'),(4520,82766,'Biography'),(4521,82766,'Drama'),(4522,82776,'Crime'),(4523,82776,'Drama'),(4524,82776,'Thriller'),(4525,82783,'Comedy'),(4526,82783,'Drama'),(4527,82817,'Action'),(4528,82817,'Crime'),(4529,82817,'Thriller'),(4530,82846,'Drama'),(4531,82869,'Action'),(4532,82869,'Crime'),(4533,82869,'Sci-Fi'),(4534,82894,'Drama'),(4535,82894,'Musical'),(4536,82894,'Romance'),(4537,82911,'Comedy'),(4538,82926,'Comedy'),(4539,82933,'Drama'),(4540,82933,'Horror'),(4541,82951,'Horror'),(4542,82951,'Mystery'),(4543,82951,'Thriller'),(4544,82970,'Drama'),(4545,82971,'Action'),(4546,82971,'Adventure'),(4547,82979,'Biography'),(4548,82979,'Drama'),(4549,82979,'History'),(4550,82992,'Drama'),(4551,83067,'Comedy'),(4552,83067,'Musical'),(4553,83111,'Action'),(4554,83111,'Thriller'),(4555,83131,'Comedy'),(4556,83131,'War'),(4557,83137,'Drama'),(4558,83190,'Action'),(4559,83190,'Crime'),(4560,83190,'Drama'),(4561,83248,'Drama'),(4562,83248,'Musical'),(4563,83248,'Romance'),(4564,83284,'Drama'),(4565,83284,'Sport'),(4566,83284,'War'),(4567,83511,'Action'),(4568,83511,'Comedy'),(4569,83511,'Crime'),(4570,83564,'Comedy'),(4571,83564,'Drama'),(4572,83564,'Family'),(4573,83629,'Horror'),(4574,83642,'Comedy'),(4575,83642,'Musical'),(4576,83658,'Action'),(4577,83658,'Drama'),(4578,83658,'Sci-Fi'),(4579,83686,'Comedy'),(4580,83686,'Drama'),(4581,83686,'Family'),(4582,83722,'Fantasy'),(4583,83722,'Horror'),(4584,83722,'Thriller'),(4585,83745,'Comedy'),(4586,83745,'Drama'),(4587,83762,'Drama'),(4588,83791,'Adventure'),(4589,83791,'Family'),(4590,83791,'Fantasy'),(4591,83806,'Comedy'),(4592,83806,'Crime'),(4593,83806,'Mystery'),(4594,83824,'Comedy'),(4595,83833,'Comedy'),(4596,83833,'Drama'),(4597,83851,'Comedy'),(4598,83851,'Drama'),(4599,83851,'Mystery'),(4600,83866,'Adventure'),(4601,83866,'Family'),(4602,83866,'Sci-Fi'),(4603,83907,'Horror'),(4604,83908,'Crime'),(4605,83908,'Drama'),(4606,83908,'Mystery'),(4607,83922,'Drama'),(4608,83929,'Comedy'),(4609,83929,'Drama'),(4610,83942,'Drama'),(4611,83944,'Action'),(4612,83944,'Adventure'),(4613,83944,'Thriller'),(4614,83959,'Horror'),(4615,83959,'Sci-Fi'),(4616,83967,'Biography'),(4617,83967,'Drama'),(4618,83967,'Romance'),(4619,83972,'Horror'),(4620,83972,'Thriller'),(4621,83987,'Biography'),(4622,83987,'Drama'),(4623,83987,'History'),(4624,84021,'Comedy'),(4625,84021,'Music'),(4626,84021,'Musical'),(4627,84090,'Horror'),(4628,84090,'Sci-Fi'),(4629,84234,'Comedy'),(4630,84234,'Drama'),(4631,84234,'Romance'),(4632,84237,'Adventure'),(4633,84237,'Animation'),(4634,84237,'Drama'),(4635,84335,'Biography'),(4636,84335,'Drama'),(4637,84335,'History'),(4638,84352,'Comedy'),(4639,84352,'Documentary'),(4640,84352,'Musical'),(4641,84358,'Crime'),(4642,84358,'Mystery'),(4643,84358,'Romance'),(4644,84390,'Drama'),(4645,84434,'Drama'),(4646,84434,'Romance'),(4647,84481,'Comedy'),(4648,84481,'Drama'),(4649,84503,'Drama'),(4650,84503,'Fantasy'),(4651,84503,'Music'),(4652,84516,'Horror'),(4653,84516,'Thriller'),(4654,84522,'Comedy'),(4655,84548,'Crime'),(4656,84548,'Drama'),(4657,84548,'Thriller'),(4658,84589,'Biography'),(4659,84589,'Crime'),(4660,84589,'Drama'),(4661,84602,'Drama'),(4662,84602,'Sport'),(4663,84637,'Action'),(4664,84637,'Drama'),(4665,84637,'Romance'),(4666,84649,'Adventure'),(4667,84649,'Animation'),(4668,84649,'Drama'),(4669,84690,'Comedy'),(4670,84690,'Drama'),(4671,84690,'Sport'),(4672,84695,'Horror'),(4673,84698,'Drama'),(4674,84698,'Music'),(4675,84707,'Drama'),(4676,84707,'Romance'),(4677,84725,'Drama'),(4678,84726,'Action'),(4679,84726,'Adventure'),(4680,84726,'Sci-Fi'),(4681,84745,'Horror'),(4682,84745,'Sci-Fi'),(4683,84777,'Drama'),(4684,84777,'Horror'),(4685,84777,'Mystery'),(4686,84783,'Drama'),(4687,84787,'Horror'),(4688,84787,'Mystery'),(4689,84787,'Sci-Fi'),(4690,84805,'Comedy'),(4691,84805,'Drama'),(4692,84805,'Romance'),(4693,84827,'Action'),(4694,84827,'Adventure'),(4695,84827,'Sci-Fi'),(4696,84855,'Drama'),(4697,84865,'Comedy'),(4698,84865,'Music'),(4699,84865,'Romance'),(4700,84904,'Drama'),(4701,84904,'Music'),(4702,84917,'Comedy'),(4703,84917,'Drama'),(4704,85218,'Animation'),(4705,85218,'Biography'),(4706,85218,'Drama'),(4707,85231,'Comedy'),(4708,85231,'Family'),(4709,85250,'Action'),(4710,85250,'Crime'),(4711,85250,'Drama'),(4712,85267,'Comedy'),(4713,85267,'Drama'),(4714,85267,'Sci-Fi'),(4715,85276,'Action'),(4716,85276,'Drama'),(4717,85276,'Romance'),(4718,85333,'Horror'),(4719,85333,'Thriller'),(4720,85334,'Comedy'),(4721,85334,'Family'),(4722,85382,'Horror'),(4723,85382,'Thriller'),(4724,85407,'Drama'),(4725,85407,'Horror'),(4726,85407,'Sci-Fi'),(4727,85478,'Comedy'),(4728,85478,'Drama'),(4729,85482,'Adventure'),(4730,85482,'Drama'),(4731,85486,'Drama'),(4732,85486,'Romance'),(4733,85496,'Comedy'),(4734,85496,'Drama'),(4735,85549,'Drama'),(4736,85549,'Music'),(4737,85549,'Romance'),(4738,85601,'Action'),(4739,85601,'Adventure'),(4740,85601,'Comedy'),(4741,85672,'Adventure'),(4742,85672,'Fantasy'),(4743,85672,'History'),(4744,85701,'Drama'),(4745,85701,'Horror'),(4746,85750,'Adventure'),(4747,85750,'Horror'),(4748,85750,'Thriller'),(4749,85794,'Comedy'),(4750,85794,'Crime'),(4751,85794,'Drama'),(4752,85809,'Documentary'),(4753,85809,'Music'),(4754,85811,'Action'),(4755,85811,'Adventure'),(4756,85811,'Fantasy'),(4757,85838,'Drama'),(4758,85838,'Romance'),(4759,85852,'Sci-Fi'),(4760,85852,'Thriller'),(4761,85859,'Comedy'),(4762,85859,'Drama'),(4763,85894,'Comedy'),(4764,85894,'Romance'),(4765,85894,'Sci-Fi'),(4766,85933,'Drama'),(4767,85933,'War'),(4768,85936,'Animation'),(4769,85936,'Comedy'),(4770,85936,'Family'),(4771,85959,'Comedy'),(4772,85959,'Musical'),(4773,86034,'Action'),(4774,86034,'Adventure'),(4775,86034,'Thriller'),(4776,86066,'Crime'),(4777,86066,'Drama'),(4778,86104,'Drama'),(4779,86190,'Action'),(4780,86190,'Adventure'),(4781,86190,'Fantasy'),(4782,86200,'Comedy'),(4783,86200,'Crime'),(4784,86200,'Drama'),(4785,86216,'Crime'),(4786,86216,'Drama'),(4787,86216,'Romance'),(4788,86250,'Crime'),(4789,86250,'Drama'),(4790,86312,'Biography'),(4791,86312,'Drama'),(4792,86312,'History'),(4793,86340,'Action'),(4794,86340,'Adventure'),(4795,86340,'Fantasy'),(4796,86373,'Comedy'),(4797,86373,'Crime'),(4798,86373,'Sci-Fi'),(4799,86393,'Action'),(4800,86393,'Adventure'),(4801,86393,'Comedy'),(4802,86394,'Comedy'),(4803,86425,'Comedy'),(4804,86425,'Drama'),(4805,86465,'Comedy'),(4806,86510,'Drama'),(4807,86510,'War'),(4808,86541,'Horror'),(4809,86541,'Sci-Fi'),(4810,86541,'Thriller'),(4811,86542,'Comedy'),(4812,86542,'Drama'),(4813,86542,'Fantasy'),(4814,86543,'Drama'),(4815,86543,'Mystery'),(4816,86543,'Thriller'),(4817,86551,'Comedy'),(4818,86551,'Crime'),(4819,86551,'Mystery'),(4820,86567,'Action'),(4821,86567,'Drama'),(4822,86567,'Sci-Fi'),(4823,86589,'Drama'),(4824,86589,'Thriller'),(4825,86618,'Action'),(4826,86618,'Adventure'),(4827,86618,'Comedy'),(4828,86619,'Drama'),(4829,86619,'Musical'),(4830,86619,'Romance'),(4831,86739,'Drama'),(4832,86739,'History'),(4833,86739,'Romance'),(4834,86837,'Adventure'),(4835,86837,'Mystery'),(4836,86837,'Sci-Fi'),(4837,86856,'Adventure'),(4838,86856,'Comedy'),(4839,86856,'Sci-Fi'),(4840,86873,'Comedy'),(4841,86873,'Fantasy'),(4842,86873,'Romance'),(4843,86879,'Biography'),(4844,86879,'Drama'),(4845,86879,'Music'),(4846,86896,'Action'),(4847,86896,'Crime'),(4848,86896,'Thriller'),(4849,86904,'Biography'),(4850,86904,'Drama'),(4851,86904,'History'),(4852,86927,'Comedy'),(4853,86955,'Comedy'),(4854,86955,'War'),(4855,86960,'Action'),(4856,86960,'Comedy'),(4857,86960,'Crime'),(4858,86973,'Comedy'),(4859,86973,'Romance'),(4860,86979,'Crime'),(4861,86979,'Drama'),(4862,86979,'Thriller'),(4863,86984,'Crime'),(4864,86984,'Drama'),(4865,86984,'Mystery'),(4866,86992,'Drama'),(4867,86992,'Romance'),(4868,87015,'Horror'),(4869,87015,'Sci-Fi'),(4870,87050,'Horror'),(4871,87050,'Thriller'),(4872,87075,'Drama'),(4873,87075,'Fantasy'),(4874,87075,'Horror'),(4875,87078,'Action'),(4876,87078,'Adventure'),(4877,87078,'Fantasy'),(4878,87127,'Action'),(4879,87127,'Adventure'),(4880,87127,'Fantasy'),(4881,87150,'Comedy'),(4882,87182,'Action'),(4883,87182,'Adventure'),(4884,87182,'Sci-Fi'),(4885,87298,'Horror'),(4886,87298,'Thriller'),(4887,87332,'Action'),(4888,87332,'Comedy'),(4889,87332,'Fantasy'),(4890,87344,'Action'),(4891,87344,'Horror'),(4892,87344,'Sci-Fi'),(4893,87363,'Comedy'),(4894,87363,'Fantasy'),(4895,87363,'Horror'),(4896,87433,'Drama'),(4897,87433,'History'),(4898,87433,'Music'),(4899,87451,'Action'),(4900,87451,'Adventure'),(4901,87451,'Comedy'),(4902,87469,'Action'),(4903,87469,'Adventure'),(4904,87472,'Horror'),(4905,87472,'Mystery'),(4906,87472,'Thriller'),(4907,87481,'Action'),(4908,87481,'Comedy'),(4909,87507,'Comedy'),(4910,87507,'Crime'),(4911,87538,'Action'),(4912,87538,'Drama'),(4913,87538,'Family'),(4914,87544,'Adventure'),(4915,87544,'Animation'),(4916,87544,'Sci-Fi'),(4917,87597,'Action'),(4918,87597,'Adventure'),(4919,87597,'Sci-Fi'),(4920,87644,'Drama'),(4921,87681,'Comedy'),(4922,87681,'Drama'),(4923,87755,'Adventure'),(4924,87755,'Comedy'),(4925,87755,'Drama'),(4926,87781,'Drama'),(4927,87781,'Sport'),(4928,87799,'Comedy'),(4929,87799,'Horror'),(4930,87799,'Sci-Fi'),(4931,87800,'Horror'),(4932,87803,'Drama'),(4933,87803,'Sci-Fi'),(4934,87814,'Comedy'),(4935,87814,'Fantasy'),(4936,87843,'Crime'),(4937,87843,'Drama'),(4938,87884,'Drama'),(4939,87892,'Adventure'),(4940,87892,'Drama'),(4941,87892,'History'),(4942,87909,'Crime'),(4943,87909,'Horror'),(4944,87909,'Mystery'),(4945,87910,'Adventure'),(4946,87910,'Drama'),(4947,87910,'Romance'),(4948,87913,'Drama'),(4949,87928,'Comedy'),(4950,87951,'Comedy'),(4951,87957,'Drama'),(4952,87957,'Music'),(4953,87957,'Romance'),(4954,87981,'Horror'),(4955,87981,'Thriller'),(4956,87995,'Action'),(4957,87995,'Comedy'),(4958,87995,'Crime'),(4959,88000,'Comedy'),(4960,88001,'Comedy'),(4961,88001,'Music'),(4962,88011,'Action'),(4963,88011,'Adventure'),(4964,88011,'Comedy'),(4965,88040,'Drama'),(4966,88075,'Drama'),(4967,88117,'Horror'),(4968,88117,'Thriller'),(4969,88128,'Comedy'),(4970,88128,'Romance'),(4971,88146,'Crime'),(4972,88146,'Drama'),(4973,88146,'Mystery'),(4974,88161,'Comedy'),(4975,88161,'Fantasy'),(4976,88161,'Romance'),(4977,88167,'Adventure'),(4978,88167,'Crime'),(4979,88170,'Action'),(4980,88170,'Adventure'),(4981,88170,'Sci-Fi'),(4982,88172,'Romance'),(4983,88172,'Sci-Fi'),(4984,88206,'Action'),(4985,88206,'Adventure'),(4986,88206,'Fantasy'),(4987,88247,'Action'),(4988,88247,'Sci-Fi'),(4989,88258,'Comedy'),(4990,88258,'Music'),(4991,88286,'Comedy'),(4992,88286,'Crime'),(4993,88286,'Music'),(4994,88323,'Adventure'),(4995,88323,'Drama'),(4996,88323,'Family'),(4997,88379,'Adventure'),(4998,88379,'Fantasy'),(4999,88459,'Comedy'),(5000,88461,'Comedy'),(5001,88461,'Drama'),(5002,88680,'Comedy'),(5003,88680,'Crime'),(5004,88680,'Drama'),(5005,88683,'Drama'),(5006,88683,'Mystery'),(5007,88727,'Drama'),(5008,88727,'Family'),(5009,88748,'Adventure'),(5010,88748,'Animation'),(5011,88748,'Comedy'),(5012,88763,'Adventure'),(5013,88763,'Comedy'),(5014,88763,'Sci-Fi'),(5015,88771,'Adventure'),(5016,88771,'Fantasy'),(5017,88794,'Comedy'),(5018,88794,'Romance'),(5019,88814,'Action'),(5020,88814,'Adventure'),(5021,88814,'Animation'),(5022,88846,'Drama'),(5023,88846,'Sci-Fi'),(5024,88846,'Thriller'),(5025,88847,'Comedy'),(5026,88847,'Drama'),(5027,88885,'Adventure'),(5028,88885,'Animation'),(5029,88885,'Comedy'),(5030,88915,'Drama'),(5031,88915,'Music'),(5032,88915,'Musical'),(5033,88930,'Comedy'),(5034,88930,'Crime'),(5035,88930,'Mystery'),(5036,88939,'Drama'),(5037,88944,'Action'),(5038,88944,'Adventure'),(5039,88944,'Thriller'),(5040,88993,'Horror'),(5041,88993,'Thriller'),(5042,89010,'Crime'),(5043,89010,'Drama'),(5044,89015,'Drama'),(5045,89015,'Romance'),(5046,89017,'Comedy'),(5047,89017,'Drama'),(5048,89052,'Biography'),(5049,89052,'Comedy'),(5050,89052,'Drama'),(5051,89066,'Comedy'),(5052,89066,'Crime'),(5053,89066,'Drama'),(5054,89077,'Comedy'),(5055,89092,'Action'),(5056,89092,'Adventure'),(5057,89092,'Drama'),(5058,89108,'Comedy'),(5059,89118,'Action'),(5060,89118,'Thriller'),(5061,89126,'Comedy'),(5062,89126,'Drama'),(5063,89153,'Adventure'),(5064,89153,'Drama'),(5065,89155,'Comedy'),(5066,89155,'Crime'),(5067,89155,'Mystery'),(5068,89173,'Horror'),(5069,89173,'Mystery'),(5070,89173,'Thriller'),(5071,89175,'Horror'),(5072,89206,'Adventure'),(5073,89206,'Animation'),(5074,89206,'Drama'),(5075,89208,'Comedy'),(5076,89208,'Music'),(5077,89208,'Romance'),(5078,89218,'Adventure'),(5079,89218,'Comedy'),(5080,89218,'Family'),(5081,89276,'Drama'),(5082,89276,'History'),(5083,89297,'Drama'),(5084,89308,'Horror'),(5085,89308,'Thriller'),(5086,89371,'Action'),(5087,89371,'Comedy'),(5088,89371,'Fantasy'),(5089,89393,'Comedy'),(5090,89393,'Romance'),(5091,89424,'Drama'),(5092,89457,'Adventure'),(5093,89457,'Comedy'),(5094,89457,'Drama'),(5095,89461,'Action'),(5096,89461,'Comedy'),(5097,89461,'Drama'),(5098,89469,'Adventure'),(5099,89469,'Fantasy'),(5100,89469,'Romance'),(5101,89470,'Action'),(5102,89470,'Drama'),(5103,89606,'Comedy'),(5104,89606,'Drama'),(5105,89686,'Horror'),(5106,89695,'Action'),(5107,89695,'Comedy'),(5108,89695,'Crime'),(5109,89730,'Comedy'),(5110,89730,'Horror'),(5111,89748,'Drama'),(5112,89755,'Biography'),(5113,89755,'Drama'),(5114,89755,'Romance'),(5115,89767,'Drama'),(5116,89767,'Western'),(5117,89791,'Adventure'),(5118,89791,'Comedy'),(5119,89791,'Family'),(5120,89822,'Comedy'),(5121,89838,'Comedy'),(5122,89853,'Comedy'),(5123,89853,'Fantasy'),(5124,89853,'Romance'),(5125,89869,'Drama'),(5126,89869,'Mystery'),(5127,89869,'Sci-Fi'),(5128,89880,'Action'),(5129,89880,'Adventure'),(5130,89880,'Thriller'),(5131,89881,'Action'),(5132,89881,'Drama'),(5133,89881,'War'),(5134,89885,'Comedy'),(5135,89885,'Horror'),(5136,89885,'Sci-Fi'),(5137,89886,'Comedy'),(5138,89886,'Romance'),(5139,89886,'Sci-Fi'),(5140,89893,'Action'),(5141,89893,'Adventure'),(5142,89893,'Fantasy'),(5143,89908,'Adventure'),(5144,89908,'Family'),(5145,89908,'Fantasy'),(5146,89927,'Drama'),(5147,89927,'Sport'),(5148,89960,'Drama'),(5149,90009,'Action'),(5150,90009,'Adventure'),(5151,90009,'Fantasy'),(5152,90056,'Adventure'),(5153,90056,'Comedy'),(5154,90065,'Action'),(5155,90065,'Adventure'),(5156,90065,'Animation'),(5157,90103,'Comedy'),(5158,90103,'Drama'),(5159,90103,'Romance'),(5160,90110,'Biography'),(5161,90110,'Drama'),(5162,90110,'Music'),(5163,90142,'Comedy'),(5164,90142,'Fantasy'),(5165,90142,'Romance'),(5166,90192,'Action'),(5167,90192,'Sci-Fi'),(5168,90203,'Drama'),(5169,90264,'Action'),(5170,90264,'Adventure'),(5171,90264,'Thriller'),(5172,90305,'Comedy'),(5173,90305,'Romance'),(5174,90305,'Sci-Fi'),(5175,90310,'Drama'),(5176,90310,'Mystery'),(5177,90315,'Animation'),(5178,90315,'Drama'),(5179,90315,'War'),(5180,90319,'Drama'),(5181,90319,'Music'),(5182,90329,'Drama'),(5183,90329,'Romance'),(5184,90329,'Thriller'),(5185,90555,'Action'),(5186,90555,'Adventure'),(5187,90555,'Comedy'),(5188,90556,'Drama'),(5189,90563,'Drama'),(5190,90563,'Romance'),(5191,90570,'Biography'),(5192,90570,'Drama'),(5193,90570,'Romance'),(5194,90583,'Comedy'),(5195,90583,'Drama'),(5196,90583,'Romance'),(5197,90605,'Action'),(5198,90605,'Adventure'),(5199,90605,'Sci-Fi'),(5200,90633,'Adventure'),(5201,90633,'Animation'),(5202,90633,'Comedy'),(5203,90655,'Horror'),(5204,90655,'Mystery'),(5205,90660,'Action'),(5206,90660,'Comedy'),(5207,90660,'Crime'),(5208,90667,'Adventure'),(5209,90667,'Animation'),(5210,90667,'Comedy'),(5211,90685,'Comedy'),(5212,90685,'Romance'),(5213,90685,'Sport'),(5214,90728,'Action'),(5215,90728,'Adventure'),(5216,90728,'Comedy'),(5217,90738,'Crime'),(5218,90738,'Drama'),(5219,90738,'Mystery'),(5220,90756,'Crime'),(5221,90756,'Drama'),(5222,90756,'Mystery'),(5223,90793,'Adventure'),(5224,90793,'Fantasy'),(5225,90793,'Musical'),(5226,90805,'Crime'),(5227,90805,'Drama'),(5228,90805,'History'),(5229,90830,'Drama'),(5230,90830,'Romance'),(5231,90837,'Horror'),(5232,90837,'Sci-Fi'),(5233,90848,'Adventure'),(5234,90848,'Drama'),(5235,90848,'Fantasy'),(5236,90859,'Action'),(5237,90859,'Crime'),(5238,90859,'Thriller'),(5239,90887,'Comedy'),(5240,90887,'Horror'),(5241,90887,'Sci-Fi'),(5242,90917,'Drama'),(5243,90917,'Horror'),(5244,90917,'Sci-Fi'),(5245,90927,'Action'),(5246,90927,'Adventure'),(5247,90927,'Drama'),(5248,90952,'Action'),(5249,90952,'Comedy'),(5250,90967,'Comedy'),(5251,90967,'Crime'),(5252,90967,'Drama'),(5253,91042,'Comedy'),(5254,91059,'Adventure'),(5255,91059,'Comedy'),(5256,91059,'Family'),(5257,91064,'Drama'),(5258,91064,'Horror'),(5259,91064,'Sci-Fi'),(5260,91065,'Drama'),(5261,91065,'Romance'),(5262,91065,'Sport'),(5263,91080,'Horror'),(5264,91080,'Thriller'),(5265,91083,'Horror'),(5266,91083,'Sci-Fi'),(5267,91093,'Comedy'),(5268,91093,'Crime'),(5269,91093,'Drama'),(5270,91149,'Adventure'),(5271,91149,'Animation'),(5272,91149,'Family'),(5273,91167,'Comedy'),(5274,91167,'Drama'),(5275,91203,'Action'),(5276,91203,'Adventure'),(5277,91203,'Fantasy'),(5278,91217,'Drama'),(5279,91217,'Sport'),(5280,91225,'Action'),(5281,91225,'Adventure'),(5282,91225,'Comedy'),(5283,91251,'Drama'),(5284,91251,'Thriller'),(5285,91251,'War'),(5286,91278,'Action'),(5287,91278,'Thriller'),(5288,91278,'War'),(5289,91306,'Comedy'),(5290,91306,'Romance'),(5291,91306,'Thriller'),(5292,91326,'Action'),(5293,91326,'Family'),(5294,91326,'Sport'),(5295,91341,'Comedy'),(5296,91341,'Drama'),(5297,91341,'Sci-Fi'),(5298,91355,'Crime'),(5299,91355,'Drama'),(5300,91369,'Adventure'),(5301,91369,'Family'),(5302,91369,'Fantasy'),(5303,91419,'Comedy'),(5304,91419,'Horror'),(5305,91419,'Musical'),(5306,91472,'Sci-Fi'),(5307,91472,'Thriller'),(5308,91474,'Crime'),(5309,91474,'Mystery'),(5310,91474,'Thriller'),(5311,91495,'Drama'),(5312,91495,'Thriller'),(5313,91499,'Action'),(5314,91499,'Comedy'),(5315,91499,'Horror'),(5316,91530,'Adventure'),(5317,91530,'Drama'),(5318,91530,'History'),(5319,91541,'Comedy'),(5320,91578,'Comedy'),(5321,91578,'Drama'),(5322,91578,'Romance'),(5323,91605,'Drama'),(5324,91605,'Mystery'),(5325,91605,'Thriller'),(5326,91721,'Comedy'),(5327,91721,'Family'),(5328,91738,'Comedy'),(5329,91738,'Drama'),(5330,91738,'Fantasy'),(5331,91757,'Action'),(5332,91757,'Adventure'),(5333,91757,'Comedy'),(5334,91763,'Drama'),(5335,91763,'War'),(5336,91777,'Comedy'),(5337,91790,'Comedy'),(5338,91790,'Drama'),(5339,91790,'Romance'),(5340,91794,'Action'),(5341,91794,'Adventure'),(5342,91794,'Animation'),(5343,91867,'Drama'),(5344,91867,'Romance'),(5345,91869,'Biography'),(5346,91869,'Drama'),(5347,91869,'History'),(5348,91877,'Comedy'),(5349,91877,'Crime'),(5350,91939,'Comedy'),(5351,91939,'Romance'),(5352,91949,'Comedy'),(5353,91949,'Family'),(5354,91949,'Sci-Fi'),(5355,91993,'Adventure'),(5356,91993,'Family'),(5357,91993,'Sci-Fi'),(5358,92005,'Adventure'),(5359,92005,'Comedy'),(5360,92005,'Drama'),(5361,92007,'Action'),(5362,92007,'Adventure'),(5363,92007,'Comedy'),(5364,92048,'Comedy'),(5365,92067,'Adventure'),(5366,92067,'Animation'),(5367,92067,'Family'),(5368,92076,'Comedy'),(5369,92076,'Horror'),(5370,92086,'Comedy'),(5371,92086,'Western'),(5372,92099,'Action'),(5373,92099,'Drama'),(5374,92106,'Action'),(5375,92106,'Adventure'),(5376,92106,'Animation'),(5377,92133,'Comedy'),(5378,92133,'Drama'),(5379,92133,'Music'),(5380,92263,'Action'),(5381,92263,'Crime'),(5382,92263,'Drama'),(5383,92493,'Action'),(5384,92493,'Adventure'),(5385,92493,'Comedy'),(5386,92513,'Adventure'),(5387,92513,'Comedy'),(5388,92513,'Crime'),(5389,92546,'Comedy'),(5390,92546,'Sci-Fi'),(5391,92559,'Comedy'),(5392,92559,'Drama'),(5393,92559,'Romance'),(5394,92563,'Horror'),(5395,92563,'Mystery'),(5396,92563,'Thriller'),(5397,92581,'Comedy'),(5398,92593,'Drama'),(5399,92593,'War'),(5400,92603,'Drama'),(5401,92605,'Comedy'),(5402,92605,'Drama'),(5403,92605,'Romance'),(5404,92610,'Comedy'),(5405,92610,'Horror'),(5406,92610,'Sci-Fi'),(5407,92644,'Action'),(5408,92644,'Comedy'),(5409,92644,'Crime'),(5410,92675,'Action'),(5411,92675,'Biography'),(5412,92675,'Drama'),(5413,92693,'Comedy'),(5414,92693,'Fantasy'),(5415,92699,'Comedy'),(5416,92699,'Drama'),(5417,92699,'Romance'),(5418,92718,'Comedy'),(5419,92718,'Drama'),(5420,92718,'Romance'),(5421,92730,'Comedy'),(5422,92730,'Romance'),(5423,92752,'Adventure'),(5424,92752,'Animation'),(5425,92752,'Comedy'),(5426,92796,'Fantasy'),(5427,92796,'Horror'),(5428,92860,'Action'),(5429,92860,'Adventure'),(5430,92860,'Comedy'),(5431,92890,'Drama'),(5432,92890,'Music'),(5433,92890,'Romance'),(5434,92925,'Comedy'),(5435,92925,'Crime'),(5436,92925,'Mystery'),(5437,92962,'Action'),(5438,92962,'Drama'),(5439,92965,'Drama'),(5440,92965,'War'),(5441,92972,'Drama'),(5442,92972,'Horror'),(5443,92991,'Comedy'),(5444,92991,'Horror'),(5445,93010,'Drama'),(5446,93010,'Thriller'),(5447,93011,'Action'),(5448,93011,'Comedy'),(5449,93011,'Crime'),(5450,93058,'Drama'),(5451,93058,'War'),(5452,93075,'Fantasy'),(5453,93075,'Horror'),(5454,93105,'Biography'),(5455,93105,'Comedy'),(5456,93105,'Drama'),(5457,93144,'Family'),(5458,93144,'Fantasy'),(5459,93144,'Musical'),(5460,93146,'Action'),(5461,93146,'Comedy'),(5462,93146,'Crime'),(5463,93171,'Action'),(5464,93171,'Comedy'),(5465,93171,'Sci-Fi'),(5466,93177,'Horror'),(5467,93177,'Thriller'),(5468,93191,'Drama'),(5469,93191,'Fantasy'),(5470,93191,'Romance'),(5471,93209,'Comedy'),(5472,93209,'Drama'),(5473,93209,'Romance'),(5474,93220,'Comedy'),(5475,93220,'Fantasy'),(5476,93220,'Horror'),(5477,93223,'Crime'),(5478,93223,'Thriller'),(5479,93225,'Comedy'),(5480,93225,'Drama'),(5481,93239,'Comedy'),(5482,93239,'Drama'),(5483,93300,'Adventure'),(5484,93300,'Horror'),(5485,93300,'Thriller'),(5486,93342,'Drama'),(5487,93342,'Family'),(5488,93371,'Drama'),(5489,93371,'Romance'),(5490,93389,'Biography'),(5491,93389,'Drama'),(5492,93389,'History'),(5493,93409,'Action'),(5494,93409,'Crime'),(5495,93409,'Thriller'),(5496,93412,'Comedy'),(5497,93412,'Drama'),(5498,93412,'Thriller'),(5499,93415,'Drama'),(5500,93415,'Music'),(5501,93437,'Comedy'),(5502,93437,'Horror'),(5503,93493,'Comedy'),(5504,93493,'Fantasy'),(5505,93493,'Romance'),(5506,93507,'Action'),(5507,93507,'Adventure'),(5508,93507,'Fantasy'),(5509,93512,'Drama'),(5510,93512,'Romance'),(5511,93565,'Comedy'),(5512,93565,'Drama'),(5513,93565,'Romance'),(5514,93589,'Comedy'),(5515,93589,'Fantasy'),(5516,93589,'Horror'),(5517,93615,'Drama'),(5518,93617,'Comedy'),(5519,93617,'Romance'),(5520,93617,'Sci-Fi'),(5521,93629,'Fantasy'),(5522,93629,'Horror'),(5523,93640,'Action'),(5524,93640,'Crime'),(5525,93640,'Drama'),(5526,93690,'Comedy'),(5527,93693,'Comedy'),(5528,93693,'Romance'),(5529,93748,'Comedy'),(5530,93748,'Drama'),(5531,93756,'Comedy'),(5532,93756,'Crime'),(5533,93773,'Action'),(5534,93773,'Adventure'),(5535,93773,'Horror'),(5536,93777,'Horror'),(5537,93779,'Adventure'),(5538,93779,'Comedy'),(5539,93779,'Family'),(5540,93818,'Comedy'),(5541,93822,'Comedy'),(5542,93822,'Crime'),(5543,93840,'Drama'),(5544,93840,'Horror'),(5545,93840,'Mystery'),(5546,93870,'Action'),(5547,93870,'Crime'),(5548,93870,'Sci-Fi'),(5549,93894,'Action'),(5550,93894,'Sci-Fi'),(5551,93894,'Thriller'),(5552,93936,'Comedy'),(5553,93936,'Romance'),(5554,93940,'Drama'),(5555,93952,'Crime'),(5556,93952,'Drama'),(5557,93991,'Action'),(5558,93991,'Adventure'),(5559,93991,'Comedy'),(5560,94012,'Adventure'),(5561,94012,'Comedy'),(5562,94012,'Sci-Fi'),(5563,94027,'Biography'),(5564,94027,'Drama'),(5565,94074,'Action'),(5566,94074,'Adventure'),(5567,94074,'Sci-Fi'),(5568,94089,'Comedy'),(5569,94089,'Drama'),(5570,94137,'Comedy'),(5571,94137,'Drama'),(5572,94137,'Family'),(5573,94142,'Comedy'),(5574,94142,'Crime'),(5575,94142,'Thriller'),(5576,94226,'Crime'),(5577,94226,'Drama'),(5578,94226,'Thriller'),(5579,94286,'Drama'),(5580,94315,'Drama'),(5581,94332,'Comedy'),(5582,94332,'Fantasy'),(5583,94332,'Horror'),(5584,94336,'Comedy'),(5585,94336,'Drama'),(5586,94357,'Action'),(5587,94357,'Crime'),(5588,94357,'Drama'),(5589,94588,'Action'),(5590,94606,'Drama'),(5591,94606,'Romance'),(5592,94608,'Crime'),(5593,94608,'Drama'),(5594,94612,'Action'),(5595,94612,'Comedy'),(5596,94612,'Crime'),(5597,94625,'Action'),(5598,94625,'Animation'),(5599,94625,'Drama'),(5600,94631,'Action'),(5601,94631,'Sci-Fi'),(5602,94663,'Drama'),(5603,94668,'Action'),(5604,94668,'Animation'),(5605,94668,'Crime'),(5606,94715,'Comedy'),(5607,94715,'Drama'),(5608,94715,'Music'),(5609,94721,'Comedy'),(5610,94721,'Fantasy'),(5611,94737,'Comedy'),(5612,94737,'Drama'),(5613,94737,'Fantasy'),(5614,94739,'Comedy'),(5615,94791,'Action'),(5616,94791,'Adventure'),(5617,94791,'Drama'),(5618,94812,'Comedy'),(5619,94812,'Romance'),(5620,94812,'Sport'),(5621,94824,'Comedy'),(5622,94824,'Sport'),(5623,94849,'Drama'),(5624,94849,'Fantasy'),(5625,94849,'Horror'),(5626,94862,'Horror'),(5627,94862,'Thriller'),(5628,94868,'Drama'),(5629,94898,'Comedy'),(5630,94898,'Romance'),(5631,94919,'Comedy'),(5632,94919,'Horror'),(5633,94919,'Sci-Fi'),(5634,94921,'Comedy'),(5635,94921,'Romance'),(5636,94947,'Drama'),(5637,94947,'Romance'),(5638,94964,'Drama'),(5639,94964,'Horror'),(5640,94964,'Thriller'),(5641,95016,'Action'),(5642,95016,'Thriller'),(5643,95031,'Comedy'),(5644,95031,'Crime'),(5645,95037,'Drama'),(5646,95037,'Music'),(5647,95088,'Comedy'),(5648,95088,'Horror'),(5649,95094,'Drama'),(5650,95145,'Comedy'),(5651,95145,'Crime'),(5652,95159,'Comedy'),(5653,95159,'Crime'),(5654,95243,'Biography'),(5655,95243,'Drama'),(5656,95250,'Adventure'),(5657,95250,'Drama'),(5658,95250,'Sport'),(5659,95253,'Comedy'),(5660,95270,'Comedy'),(5661,95270,'Drama'),(5662,95270,'Family'),(5663,95294,'Horror'),(5664,95294,'Thriller'),(5665,95305,'Drama'),(5666,95327,'Animation'),(5667,95327,'Drama'),(5668,95327,'War'),(5669,95444,'Comedy'),(5670,95444,'Horror'),(5671,95444,'Sci-Fi'),(5672,95484,'Fantasy'),(5673,95484,'Horror'),(5674,95484,'Mystery'),(5675,95489,'Adventure'),(5676,95489,'Animation'),(5677,95489,'Drama'),(5678,95497,'Drama'),(5679,95583,'Action'),(5680,95583,'Crime'),(5681,95583,'Horror'),(5682,95593,'Comedy'),(5683,95593,'Crime'),(5684,95593,'Romance'),(5685,95631,'Action'),(5686,95631,'Comedy'),(5687,95631,'Crime'),(5688,95675,'Comedy'),(5689,95675,'Drama'),(5690,95687,'Comedy'),(5691,95687,'Sci-Fi'),(5692,95690,'Comedy'),(5693,95690,'Drama'),(5694,95690,'Romance'),(5695,95705,'Comedy'),(5696,95705,'Crime'),(5697,95742,'Horror'),(5698,95765,'Drama'),(5699,95765,'Romance'),(5700,95776,'Adventure'),(5701,95776,'Animation'),(5702,95776,'Comedy'),(5703,95800,'Adventure'),(5704,95800,'Drama'),(5705,95800,'Family'),(5706,95801,'Comedy'),(5707,95801,'Drama'),(5708,95882,'Comedy'),(5709,95882,'Crime'),(5710,95889,'Horror'),(5711,95889,'Thriller'),(5712,95925,'Fantasy'),(5713,95925,'Horror'),(5714,95953,'Drama'),(5715,95956,'Action'),(5716,95956,'Adventure'),(5717,95956,'Thriller'),(5718,96001,'Adventure'),(5719,96001,'Drama'),(5720,96001,'Family'),(5721,96037,'Comedy'),(5722,96037,'Music'),(5723,96037,'Romance'),(5724,96061,'Comedy'),(5725,96061,'Drama'),(5726,96061,'Fantasy'),(5727,96114,'Action'),(5728,96114,'Adventure'),(5729,96114,'Sci-Fi'),(5730,96163,'Mystery'),(5731,96163,'Thriller'),(5732,96176,'Comedy'),(5733,96256,'Action'),(5734,96256,'Horror'),(5735,96256,'Sci-Fi'),(5736,96283,'Animation'),(5737,96283,'Comedy'),(5738,96283,'Family'),(5739,96289,'Comedy'),(5740,96289,'Drama'),(5741,96289,'Romance'),(5742,96320,'Comedy'),(5743,96320,'Crime'),(5744,96324,'Drama'),(5745,96324,'Romance'),(5746,96378,'Adventure'),(5747,96378,'Comedy'),(5748,96378,'Romance'),(5749,96438,'Adventure'),(5750,96438,'Animation'),(5751,96438,'Comedy'),(5752,96446,'Action'),(5753,96446,'Adventure'),(5754,96446,'Drama'),(5755,96461,'Crime'),(5756,96461,'Drama'),(5757,96461,'Romance'),(5758,96463,'Comedy'),(5759,96463,'Drama'),(5760,96463,'Romance'),(5761,96465,'Action'),(5762,96465,'Sci-Fi'),(5763,96487,'Action'),(5764,96487,'Drama'),(5765,96487,'Western'),(5766,96523,'Comedy'),(5767,96523,'Romance'),(5768,96734,'Comedy'),(5769,96734,'Mystery'),(5770,96734,'Thriller'),(5771,96754,'Adventure'),(5772,96754,'Drama'),(5773,96754,'Mystery'),(5774,96764,'Adventure'),(5775,96764,'Comedy'),(5776,96764,'Fantasy'),(5777,96787,'Adventure'),(5778,96787,'Animation'),(5779,96787,'Comedy'),(5780,96869,'Adventure'),(5781,96869,'Animation'),(5782,96869,'Family'),(5783,96874,'Adventure'),(5784,96874,'Comedy'),(5785,96874,'Sci-Fi'),(5786,96895,'Action'),(5787,96895,'Adventure'),(5788,96928,'Adventure'),(5789,96928,'Comedy'),(5790,96928,'Music'),(5791,96945,'Action'),(5792,96945,'Comedy'),(5793,96945,'Crime'),(5794,96969,'Biography'),(5795,96969,'Drama'),(5796,96969,'War'),(5797,97027,'Action'),(5798,97027,'Crime'),(5799,97027,'Drama'),(5800,97050,'Adventure'),(5801,97050,'Drama'),(5802,97050,'Family'),(5803,97106,'Comedy'),(5804,97106,'Drama'),(5805,97106,'Romance'),(5806,97108,'Crime'),(5807,97108,'Drama'),(5808,97123,'Comedy'),(5809,97123,'Drama'),(5810,97162,'Horror'),(5811,97162,'Thriller'),(5812,97165,'Comedy'),(5813,97165,'Drama'),(5814,97182,'Drama'),(5815,97182,'Romance'),(5816,97202,'Action'),(5817,97202,'Crime'),(5818,97202,'Drama'),(5819,97216,'Comedy'),(5820,97216,'Drama'),(5821,97235,'Comedy'),(5822,97235,'Crime'),(5823,97235,'Thriller'),(5824,97239,'Comedy'),(5825,97239,'Drama'),(5826,97239,'Romance'),(5827,97240,'Crime'),(5828,97240,'Drama'),(5829,97257,'Comedy'),(5830,97257,'Musical'),(5831,97257,'Romance'),(5832,97334,'Action'),(5833,97334,'Adventure'),(5834,97334,'Drama'),(5835,97336,'Biography'),(5836,97336,'Drama'),(5837,97336,'History'),(5838,97351,'Drama'),(5839,97351,'Family'),(5840,97351,'Fantasy'),(5841,97366,'Comedy'),(5842,97366,'Crime'),(5843,97366,'Mystery'),(5844,97388,'Adventure'),(5845,97388,'Horror'),(5846,97388,'Thriller'),(5847,97423,'Comedy'),(5848,97423,'Sci-Fi'),(5849,97428,'Action'),(5850,97428,'Comedy'),(5851,97428,'Fantasy'),(5852,97441,'Biography'),(5853,97441,'Drama'),(5854,97441,'History'),(5855,97444,'Action'),(5856,97444,'Sci-Fi'),(5857,97444,'Thriller'),(5858,97493,'Comedy'),(5859,97493,'Crime'),(5860,97499,'Biography'),(5861,97499,'Drama'),(5862,97499,'History'),(5863,97523,'Adventure'),(5864,97523,'Comedy'),(5865,97523,'Family'),(5866,97561,'Drama'),(5867,97561,'Thriller'),(5868,97576,'Action'),(5869,97576,'Adventure'),(5870,97647,'Action'),(5871,97647,'Drama'),(5872,97647,'Family'),(5873,97659,'Action'),(5874,97659,'Sport'),(5875,97659,'Thriller'),(5876,97728,'Comedy'),(5877,97728,'Music'),(5878,97731,'Action'),(5879,97731,'Comedy'),(5880,97733,'Action'),(5881,97733,'Crime'),(5882,97733,'Thriller'),(5883,97737,'Adventure'),(5884,97737,'Horror'),(5885,97737,'Mystery'),(5886,97742,'Action'),(5887,97742,'Adventure'),(5888,97742,'Thriller'),(5889,97757,'Adventure'),(5890,97757,'Animation'),(5891,97757,'Family'),(5892,97790,'Comedy'),(5893,97814,'Animation'),(5894,97814,'Family'),(5895,97814,'Fantasy'),(5896,97815,'Comedy'),(5897,97815,'Sport'),(5898,97858,'Comedy'),(5899,97858,'Music'),(5900,97858,'Musical'),(5901,97883,'Drama'),(5902,97883,'Sci-Fi'),(5903,97883,'Thriller'),(5904,97937,'Biography'),(5905,97937,'Drama'),(5906,97940,'Comedy'),(5907,97940,'Crime'),(5908,97940,'Drama'),(5909,97958,'Comedy'),(5910,97981,'Fantasy'),(5911,97981,'Horror'),(5912,97991,'Action'),(5913,97991,'Adventure'),(5914,98032,'Drama'),(5915,98063,'Drama'),(5916,98067,'Comedy'),(5917,98067,'Drama'),(5918,98105,'Comedy'),(5919,98105,'Crime'),(5920,98141,'Action'),(5921,98141,'Crime'),(5922,98141,'Thriller'),(5923,98147,'Adventure'),(5924,98147,'Comedy'),(5925,98147,'Fantasy'),(5926,98180,'Action'),(5927,98180,'Adventure'),(5928,98189,'Adventure'),(5929,98189,'Animation'),(5930,98189,'Family'),(5931,98193,'Action'),(5932,98193,'Adventure'),(5933,98193,'Comedy'),(5934,98206,'Action'),(5935,98206,'Thriller'),(5936,98257,'Action'),(5937,98257,'Adventure'),(5938,98258,'Comedy'),(5939,98258,'Drama'),(5940,98258,'Romance'),(5941,98273,'Crime'),(5942,98273,'Drama'),(5943,98273,'Mystery'),(5944,98300,'Comedy'),(5945,98300,'Drama'),(5946,98300,'Romance'),(5947,98309,'Comedy'),(5948,98319,'Comedy'),(5949,98319,'Drama'),(5950,98319,'Romance'),(5951,98325,'Comedy'),(5952,98327,'Drama'),(5953,98382,'Action'),(5954,98382,'Adventure'),(5955,98382,'Fantasy'),(5956,98384,'Comedy'),(5957,98384,'Drama'),(5958,98384,'Romance'),(5959,98439,'Action'),(5960,98439,'Comedy'),(5961,98439,'Crime'),(5962,98453,'Comedy'),(5963,98453,'Fantasy'),(5964,98453,'Romance'),(5965,98519,'Adventure'),(5966,98519,'Comedy'),(5967,98532,'Comedy'),(5968,98532,'Crime'),(5969,98532,'Drama'),(5970,98536,'Comedy'),(5971,98536,'Crime'),(5972,98536,'Drama'),(5973,98546,'Comedy'),(5974,98546,'Sci-Fi'),(5975,98554,'Comedy'),(5976,98627,'Adventure'),(5977,98627,'Comedy'),(5978,98627,'Crime'),(5979,98635,'Comedy'),(5980,98635,'Drama'),(5981,98635,'Romance'),(5982,98724,'Drama'),(5983,98897,'Biography'),(5984,98897,'Drama'),(5985,98897,'Romance'),(5986,99005,'Action'),(5987,99005,'Comedy'),(5988,99005,'War'),(5989,99012,'Comedy'),(5990,99012,'Romance'),(5991,99040,'Biography'),(5992,99040,'Drama'),(5993,99088,'Adventure'),(5994,99088,'Comedy'),(5995,99088,'Sci-Fi'),(5996,99160,'Action'),(5997,99160,'Crime'),(5998,99160,'Drama'),(5999,99165,'Comedy'),(6000,99165,'Drama'),(6001,99165,'Romance'),(6002,99253,'Horror'),(6003,99253,'Thriller'),(6004,99277,'Action'),(6005,99277,'Horror'),(6006,99277,'Sci-Fi'),(6007,99321,'Drama'),(6008,99329,'Comedy'),(6009,99329,'Musical'),(6010,99348,'Adventure'),(6011,99348,'Drama'),(6012,99348,'Western'),(6013,99365,'Action'),(6014,99365,'Sci-Fi'),(6015,99365,'Thriller'),(6016,99371,'Action'),(6017,99371,'Drama'),(6018,99371,'Sport'),(6019,99388,'Action'),(6020,99388,'Adventure'),(6021,99388,'Fantasy'),(6022,99399,'Action'),(6023,99399,'Adventure'),(6024,99399,'Crime'),(6025,99422,'Action'),(6026,99422,'Comedy'),(6027,99422,'Crime'),(6028,99423,'Action'),(6029,99423,'Thriller'),(6030,99426,'Action'),(6031,99426,'Crime'),(6032,99426,'Drama'),(6033,99487,'Drama'),(6034,99487,'Fantasy'),(6035,99487,'Romance'),(6036,99582,'Drama'),(6037,99582,'Horror'),(6038,99582,'Sci-Fi'),(6039,99653,'Drama'),(6040,99653,'Fantasy'),(6041,99653,'Romance'),(6042,99674,'Crime'),(6043,99674,'Drama'),(6044,99685,'Biography'),(6045,99685,'Crime'),(6046,99685,'Drama'),(6047,99700,'Comedy'),(6048,99700,'Fantasy'),(6049,99700,'Horror'),(6050,99731,'Drama'),(6051,99731,'Romance'),(6052,99731,'Sci-Fi'),(6053,99733,'Animation'),(6054,99733,'Family'),(6055,99733,'Fantasy'),(6056,99768,'Drama'),(6057,99768,'Thriller'),(6058,99772,'Drama'),(6059,99772,'History'),(6060,99772,'War'),(6061,99776,'Drama'),(6062,99776,'History'),(6063,99776,'War'),(6064,99785,'Comedy'),(6065,99785,'Family'),(6066,99810,'Action'),(6067,99810,'Adventure'),(6068,99810,'Thriller'),(6069,99817,'Action'),(6070,99817,'Crime'),(6071,99817,'Horror'),(6072,99818,'Comedy'),(6073,99818,'Crime'),(6074,99818,'Drama'),(6075,99819,'Comedy'),(6076,99819,'Crime'),(6077,99851,'Comedy'),(6078,99851,'Drama'),(6079,99851,'Romance'),(6080,99864,'Drama'),(6081,99864,'Horror'),(6082,99864,'Mystery'),(6083,99871,'Drama'),(6084,99871,'Horror'),(6085,99871,'Mystery'),(6086,99892,'Comedy'),(6087,99892,'Romance'),(6088,99938,'Action'),(6089,99938,'Comedy'),(6090,99938,'Crime'),(6091,100009,'Action'),(6092,100009,'Thriller'),(6093,100024,'Comedy'),(6094,100024,'Drama'),(6095,100029,'Action'),(6096,100029,'Crime'),(6097,100029,'Drama'),(6098,100046,'Drama'),(6099,100046,'History'),(6100,100054,'Adventure'),(6101,100054,'Drama'),(6102,100054,'Thriller'),(6103,100140,'Comedy'),(6104,100140,'Drama'),(6105,100140,'Romance'),(6106,100142,'Comedy'),(6107,100142,'Drama'),(6108,100142,'Romance'),(6109,100150,'Crime'),(6110,100150,'Drama'),(6111,100150,'Thriller'),(6112,100151,'Drama'),(6113,100157,'Drama'),(6114,100157,'Thriller'),(6115,100222,'Crime'),(6116,100222,'Drama'),(6117,100222,'Romance'),(6118,100232,'Action'),(6119,100232,'Adventure'),(6120,100232,'Thriller'),(6121,100234,'Biography'),(6122,100234,'Crime'),(6123,100234,'Drama'),(6124,100260,'Action'),(6125,100260,'Fantasy'),(6126,100260,'Horror'),(6127,100263,'Action'),(6128,100263,'Crime'),(6129,100263,'Drama'),(6130,100266,'Action'),(6131,100266,'Crime'),(6132,100266,'Drama'),(6133,100332,'Documentary'),(6134,100395,'Comedy'),(6135,100395,'Drama'),(6136,100403,'Action'),(6137,100403,'Horror'),(6138,100403,'Sci-Fi'),(6139,100404,'Mystery'),(6140,100404,'Thriller'),(6141,100405,'Comedy'),(6142,100405,'Romance'),(6143,100449,'Comedy'),(6144,100449,'Crime'),(6145,100469,'Drama'),(6146,100469,'Horror'),(6147,100469,'Thriller'),(6148,100477,'Adventure'),(6149,100477,'Animation'),(6150,100477,'Comedy'),(6151,100491,'Comedy'),(6152,100491,'Drama'),(6153,100502,'Action'),(6154,100502,'Crime'),(6155,100502,'Sci-Fi'),(6156,100507,'Drama'),(6157,100507,'Sport'),(6158,100519,'Comedy'),(6159,100519,'Drama'),(6160,100530,'Drama'),(6161,100530,'Romance'),(6162,100530,'Thriller'),(6163,100557,'Comedy'),(6164,100557,'Drama'),(6165,100557,'History'),(6166,100594,'Adventure'),(6167,100594,'Drama'),(6168,100691,'Drama'),(6169,100691,'Romance'),(6170,100758,'Action'),(6171,100758,'Adventure'),(6172,100758,'Comedy'),(6173,100802,'Action'),(6174,100802,'Adventure'),(6175,100802,'Sci-Fi'),(6176,100814,'Comedy'),(6177,100814,'Horror'),(6178,100911,'Comedy'),(6179,100911,'Drama'),(6180,100924,'Comedy'),(6181,100924,'Drama'),(6182,100928,'Adventure'),(6183,100928,'Drama'),(6184,100934,'Drama'),(6185,100934,'Romance'),(6186,100935,'Crime'),(6187,100935,'Drama'),(6188,100935,'Thriller'),(6189,100944,'Adventure'),(6190,100944,'Comedy'),(6191,100944,'Family'),(6192,100963,'Action'),(6193,100963,'Comedy'),(6194,100963,'Drama'),(6195,100990,'Biography'),(6196,100990,'Drama'),(6197,100990,'History'),(6198,101258,'Crime'),(6199,101258,'Drama'),(6200,101258,'Romance'),(6201,101272,'Comedy'),(6202,101272,'Fantasy'),(6203,101316,'Biography'),(6204,101316,'Drama'),(6205,101316,'Romance'),(6206,101318,'Drama'),(6207,101318,'Romance'),(6208,101329,'Adventure'),(6209,101329,'Animation'),(6210,101329,'Family'),(6211,101393,'Action'),(6212,101393,'Drama'),(6213,101393,'Mystery'),(6214,101399,'Comedy'),(6215,101410,'Comedy'),(6216,101410,'Drama'),(6217,101410,'Thriller'),(6218,101414,'Animation'),(6219,101414,'Family'),(6220,101414,'Fantasy'),(6221,101452,'Adventure'),(6222,101452,'Comedy'),(6223,101452,'Fantasy'),(6224,101458,'Action'),(6225,101458,'Drama'),(6226,101458,'Sci-Fi'),(6227,101465,'Adventure'),(6228,101465,'Drama'),(6229,101465,'War'),(6230,101507,'Crime'),(6231,101507,'Drama'),(6232,101540,'Crime'),(6233,101540,'Thriller'),(6234,101587,'Comedy'),(6235,101587,'Western'),(6236,101597,'Drama'),(6237,101597,'Thriller'),(6238,101605,'Comedy'),(6239,101605,'Drama'),(6240,101605,'Music'),(6241,101627,'Comedy'),(6242,101627,'Horror'),(6243,101627,'Sci-Fi'),(6244,101628,'Horror'),(6245,101628,'Sci-Fi'),(6246,101640,'Drama'),(6247,101640,'Romance'),(6248,101698,'Comedy'),(6249,101698,'Drama'),(6250,101698,'Fantasy'),(6251,101701,'Comedy'),(6252,101701,'Fantasy'),(6253,101702,'Action'),(6254,101702,'Adventure'),(6255,101702,'Crime'),(6256,101745,'Comedy'),(6257,101745,'Drama'),(6258,101745,'Romance'),(6259,101757,'Comedy'),(6260,101764,'Action'),(6261,101764,'Crime'),(6262,101765,'Drama'),(6263,101765,'Fantasy'),(6264,101765,'Music'),(6265,101775,'Comedy'),(6266,101775,'Drama'),(6267,101775,'Fantasy'),(6268,101811,'Drama'),(6269,101829,'Drama'),(6270,101829,'Thriller'),(6271,101844,'Drama'),(6272,101889,'Comedy'),(6273,101889,'Drama'),(6274,101889,'Fantasy'),(6275,101891,'Drama'),(6276,101891,'Music'),(6277,101898,'Drama'),(6278,101898,'Romance'),(6279,101902,'Comedy'),(6280,101902,'Drama'),(6281,101902,'Music'),(6282,101912,'Comedy'),(6283,101912,'Drama'),(6284,101912,'Romance'),(6285,101917,'Fantasy'),(6286,101917,'Horror'),(6287,101921,'Drama'),(6288,101991,'Drama'),(6289,102034,'Action'),(6290,102034,'Adventure'),(6291,102034,'Fantasy'),(6292,102057,'Adventure'),(6293,102057,'Comedy'),(6294,102057,'Family'),(6295,102059,'Action'),(6296,102059,'Comedy'),(6297,102070,'Action'),(6298,102070,'Adventure'),(6299,102070,'Comedy'),(6300,102103,'Biography'),(6301,102103,'Comedy'),(6302,102103,'Music'),(6303,102138,'Drama'),(6304,102138,'History'),(6305,102138,'Thriller'),(6306,102202,'Action'),(6307,102202,'Sport'),(6308,102250,'Comedy'),(6309,102250,'Drama'),(6310,102250,'Fantasy'),(6311,102266,'Action'),(6312,102266,'Comedy'),(6313,102266,'Crime'),(6314,102303,'Comedy'),(6315,102313,'Comedy'),(6316,102313,'Crime'),(6317,102370,'Documentary'),(6318,102370,'Music'),(6319,102397,'Comedy'),(6320,102411,'Comedy'),(6321,102411,'Music'),(6322,102411,'Romance'),(6323,102426,'Comedy'),(6324,102426,'Drama'),(6325,102426,'War'),(6326,102436,'Drama'),(6327,102492,'Comedy'),(6328,102492,'Drama'),(6329,102492,'Family'),(6330,102494,'Drama'),(6331,102510,'Comedy'),(6332,102510,'Crime'),(6333,102522,'Horror'),(6334,102526,'Action'),(6335,102526,'Crime'),(6336,102526,'Drama'),(6337,102536,'Comedy'),(6338,102536,'Drama'),(6339,102573,'Comedy'),(6340,102573,'Crime'),(6341,102573,'Drama'),(6342,102587,'Animation'),(6343,102587,'Drama'),(6344,102587,'Romance'),(6345,102603,'Comedy'),(6346,102603,'Crime'),(6347,102609,'Comedy'),(6348,102609,'Drama'),(6349,102609,'Romance'),(6350,102685,'Action'),(6351,102685,'Crime'),(6352,102685,'Thriller'),(6353,102797,'Action'),(6354,102797,'Adventure'),(6355,102797,'Drama'),(6356,102798,'Action'),(6357,102798,'Adventure'),(6358,102798,'Drama'),(6359,102803,'Action'),(6360,102803,'Adventure'),(6361,102803,'Family'),(6362,102817,'Comedy'),(6363,102817,'Drama'),(6364,102829,'Drama'),(6365,102898,'Comedy'),(6366,102898,'Crime'),(6367,102898,'Drama'),(6368,102915,'Action'),(6369,102915,'Comedy'),(6370,102915,'Crime'),(6371,102926,'Crime'),(6372,102926,'Drama'),(6373,102926,'Thriller'),(6374,102943,'Comedy'),(6375,102943,'Drama'),(6376,102951,'Comedy'),(6377,102951,'Romance'),(6378,102975,'Action'),(6379,102975,'Adventure'),(6380,102975,'Sci-Fi'),(6381,102993,'Adventure'),(6382,102993,'Drama'),(6383,103030,'Comedy'),(6384,103030,'Drama'),(6385,103030,'Romance'),(6386,103060,'Action'),(6387,103060,'Adventure'),(6388,103060,'Comedy'),(6389,103064,'Action'),(6390,103064,'Sci-Fi'),(6391,103074,'Adventure'),(6392,103074,'Crime'),(6393,103074,'Drama'),(6394,103112,'Action'),(6395,103112,'Drama'),(6396,103112,'Thriller'),(6397,103241,'Comedy'),(6398,103247,'Adventure'),(6399,103247,'Drama'),(6400,103247,'Family'),(6401,103639,'Adventure'),(6402,103639,'Animation'),(6403,103639,'Comedy'),(6404,103644,'Action'),(6405,103644,'Horror'),(6406,103644,'Sci-Fi'),(6407,103767,'Documentary'),(6408,103768,'Action'),(6409,103768,'Adventure'),(6410,103768,'Fantasy'),(6411,103772,'Drama'),(6412,103772,'Mystery'),(6413,103772,'Thriller'),(6414,103776,'Action'),(6415,103776,'Crime'),(6416,103776,'Fantasy'),(6417,103786,'Comedy'),(6418,103786,'Drama'),(6419,103786,'Family'),(6420,103812,'Comedy'),(6421,103850,'Comedy'),(6422,103850,'Drama'),(6423,103855,'Action'),(6424,103855,'Drama'),(6425,103855,'Music'),(6426,103859,'Comedy'),(6427,103859,'Drama'),(6428,103859,'Romance'),(6429,103873,'Comedy'),(6430,103873,'Fantasy'),(6431,103873,'Horror'),(6432,103874,'Drama'),(6433,103874,'Fantasy'),(6434,103874,'Horror'),(6435,103893,'Action'),(6436,103893,'Comedy'),(6437,103893,'Fantasy'),(6438,103919,'Horror'),(6439,103919,'Thriller'),(6440,103939,'Biography'),(6441,103939,'Comedy'),(6442,103939,'Drama'),(6443,103956,'Horror'),(6444,103956,'Thriller'),(6445,103959,'Comedy'),(6446,103959,'Horror'),(6447,103994,'Drama'),(6448,103994,'Romance'),(6449,104036,'Crime'),(6450,104036,'Drama'),(6451,104036,'Romance'),(6452,104040,'Comedy'),(6453,104040,'Drama'),(6454,104040,'Romance'),(6455,104057,'Drama'),(6456,104057,'History'),(6457,104057,'Romance'),(6458,104070,'Comedy'),(6459,104070,'Fantasy'),(6460,104070,'Horror'),(6461,104105,'Drama'),(6462,104105,'War'),(6463,104187,'Comedy'),(6464,104231,'Adventure'),(6465,104231,'Drama'),(6466,104231,'Romance'),(6467,104237,'Drama'),(6468,104237,'Romance'),(6469,104246,'Action'),(6470,104246,'Drama'),(6471,104254,'Adventure'),(6472,104254,'Animation'),(6473,104254,'Family'),(6474,104257,'Drama'),(6475,104257,'Thriller'),(6476,104298,'Adventure'),(6477,104298,'Animation'),(6478,104298,'Comedy'),(6479,104321,'Drama'),(6480,104321,'Romance'),(6481,104348,'Crime'),(6482,104348,'Drama'),(6483,104348,'Mystery'),(6484,104389,'Drama'),(6485,104389,'Thriller'),(6486,104409,'Horror'),(6487,104412,'Comedy'),(6488,104412,'Drama'),(6489,104412,'Romance'),(6490,104431,'Adventure'),(6491,104431,'Comedy'),(6492,104431,'Crime'),(6493,104452,'Comedy'),(6494,104452,'Romance'),(6495,104454,'Drama'),(6496,104454,'Romance'),(6497,104466,'Comedy'),(6498,104466,'Drama'),(6499,104466,'Romance'),(6500,104575,'Drama'),(6501,104575,'Romance'),(6502,104652,'Adventure'),(6503,104652,'Animation'),(6504,104652,'Comedy'),(6505,104670,'Comedy'),(6506,104670,'Sport'),(6507,104684,'Action'),(6508,104684,'Crime'),(6509,104684,'Thriller'),(6510,104691,'Action'),(6511,104691,'Adventure'),(6512,104691,'Drama'),(6513,104692,'Horror'),(6514,104692,'Sci-Fi'),(6515,104694,'Comedy'),(6516,104694,'Drama'),(6517,104694,'Sport'),(6518,104695,'Comedy'),(6519,104695,'Drama'),(6520,104695,'Romance'),(6521,104697,'Comedy'),(6522,104697,'Drama'),(6523,104779,'Drama'),(6524,104779,'Romance'),(6525,104779,'Thriller'),(6526,104797,'Biography'),(6527,104797,'Drama'),(6528,104797,'History'),(6529,104815,'Action'),(6530,104815,'Crime'),(6531,104815,'Thriller'),(6532,104868,'Comedy'),(6533,104868,'Drama'),(6534,104868,'Family'),(6535,104922,'Adventure'),(6536,104922,'Comedy'),(6537,104922,'Drama'),(6538,104940,'Comedy'),(6539,104940,'Drama'),(6540,104940,'Family'),(6541,104952,'Comedy'),(6542,104952,'Crime'),(6543,104981,'Action'),(6544,104981,'Adventure'),(6545,104981,'Sci-Fi'),(6546,104990,'Drama'),(6547,104990,'Family'),(6548,104990,'History'),(6549,105104,'Action'),(6550,105104,'Crime'),(6551,105104,'Thriller'),(6552,105107,'Drama'),(6553,105121,'Comedy'),(6554,105121,'Horror'),(6555,105121,'Mystery'),(6556,105130,'Comedy'),(6557,105130,'Drama'),(6558,105130,'Romance'),(6559,105151,'Comedy'),(6560,105151,'Crime'),(6561,105151,'Drama'),(6562,105236,'Crime'),(6563,105236,'Thriller'),(6564,105265,'Drama'),(6565,105316,'Drama'),(6566,105316,'Musical'),(6567,105323,'Drama'),(6568,105328,'Comedy'),(6569,105328,'Crime'),(6570,105414,'Drama'),(6571,105414,'Mystery'),(6572,105414,'Thriller'),(6573,105415,'Comedy'),(6574,105415,'Drama'),(6575,105415,'Music'),(6576,105417,'Comedy'),(6577,105417,'Family'),(6578,105417,'Music'),(6579,105435,'Comedy'),(6580,105435,'Crime'),(6581,105435,'Drama'),(6582,105459,'Action'),(6583,105459,'Crime'),(6584,105459,'Horror'),(6585,105466,'Adventure'),(6586,105466,'Comedy'),(6587,105466,'Fantasy'),(6588,105477,'Action'),(6589,105477,'Comedy'),(6590,105481,'Comedy'),(6591,105481,'Drama'),(6592,105481,'Romance'),(6593,105488,'Comedy'),(6594,105488,'Drama'),(6595,105488,'Music'),(6596,105577,'Drama'),(6597,105616,'Adventure'),(6598,105616,'Animation'),(6599,105616,'Comedy'),(6600,105619,'Action'),(6601,105619,'Fantasy'),(6602,105619,'Thriller'),(6603,105629,'Adventure'),(6604,105629,'Comedy'),(6605,105629,'Drama'),(6606,105643,'Comedy'),(6607,105643,'Fantasy'),(6608,105643,'Horror'),(6609,105665,'Drama'),(6610,105665,'Horror'),(6611,105665,'Mystery'),(6612,105682,'Drama'),(6613,105682,'Music'),(6614,105682,'Romance'),(6615,105695,'Drama'),(6616,105695,'Western'),(6617,105793,'Comedy'),(6618,105793,'Music'),(6619,105851,'Action'),(6620,105851,'Crime'),(6621,105851,'Thriller'),(6622,105859,'Action'),(6623,105859,'Thriller'),(6624,106220,'Comedy'),(6625,106220,'Fantasy'),(6626,106226,'Drama'),(6627,106226,'Romance'),(6628,106303,'Action'),(6629,106303,'Thriller'),(6630,106308,'Comedy'),(6631,106308,'Horror'),(6632,106332,'Drama'),(6633,106332,'Music'),(6634,106332,'Romance'),(6635,106341,'Comedy'),(6636,106341,'Crime'),(6637,106341,'Drama'),(6638,106364,'Action'),(6639,106364,'Adventure'),(6640,106364,'Animation'),(6641,106387,'Comedy'),(6642,106387,'Drama'),(6643,106387,'Romance'),(6644,106400,'Comedy'),(6645,106400,'Family'),(6646,106408,'Adventure'),(6647,106408,'Comedy'),(6648,106408,'Drama'),(6649,106417,'Action'),(6650,106417,'Animation'),(6651,106417,'Comedy'),(6652,106449,'Comedy'),(6653,106449,'Horror'),(6654,106449,'Sci-Fi'),(6655,106452,'Horror'),(6656,106452,'Sci-Fi'),(6657,106453,'Drama'),(6658,106453,'Thriller'),(6659,106469,'Crime'),(6660,106469,'Drama'),(6661,106471,'Drama'),(6662,106471,'Mystery'),(6663,106471,'Romance'),(6664,106582,'Action'),(6665,106582,'Adventure'),(6666,106582,'Thriller'),(6667,106598,'Comedy'),(6668,106598,'Sci-Fi'),(6669,106611,'Adventure'),(6670,106611,'Comedy'),(6671,106611,'Family'),(6672,106673,'Comedy'),(6673,106673,'Romance'),(6674,106677,'Comedy'),(6675,106689,'Action'),(6676,106689,'Thriller'),(6677,106697,'Action'),(6678,106697,'Sci-Fi'),(6679,106697,'Thriller'),(6680,106770,'Action'),(6681,106770,'Biography'),(6682,106770,'Drama'),(6683,106834,'Comedy'),(6684,106834,'Drama'),(6685,106834,'Romance'),(6686,106873,'Comedy'),(6687,106873,'Crime'),(6688,106873,'Thriller'),(6689,106880,'Comedy'),(6690,106880,'Music'),(6691,106918,'Drama'),(6692,106918,'Mystery'),(6693,106918,'Thriller'),(6694,106965,'Adventure'),(6695,106965,'Drama'),(6696,106965,'Family'),(6697,106977,'Action'),(6698,106977,'Crime'),(6699,106977,'Drama'),(6700,106989,'Biography'),(6701,106989,'Drama'),(6702,106989,'Sport'),(6703,107007,'Drama'),(6704,107007,'History'),(6705,107007,'War'),(6706,107048,'Comedy'),(6707,107048,'Drama'),(6708,107048,'Fantasy'),(6709,107050,'Comedy'),(6710,107050,'Drama'),(6711,107050,'Romance'),(6712,107057,'Crime'),(6713,107057,'Drama'),(6714,107057,'Thriller'),(6715,107065,'Biography'),(6716,107065,'Comedy'),(6717,107065,'Drama'),(6718,107076,'Action'),(6719,107076,'Crime'),(6720,107076,'Thriller'),(6721,107091,'Comedy'),(6722,107091,'Drama'),(6723,107091,'Fantasy'),(6724,107096,'Action'),(6725,107096,'Biography'),(6726,107096,'Drama'),(6727,107099,'Drama'),(6728,107099,'Family'),(6729,107120,'Comedy'),(6730,107120,'Family'),(6731,107120,'Fantasy'),(6732,107131,'Adventure'),(6733,107131,'Comedy'),(6734,107131,'Drama'),(6735,107144,'Action'),(6736,107144,'Comedy'),(6737,107151,'Drama'),(6738,107151,'Romance'),(6739,107156,'Comedy'),(6740,107156,'Drama'),(6741,107156,'Romance'),(6742,107206,'Action'),(6743,107206,'Crime'),(6744,107206,'Drama'),(6745,107207,'Biography'),(6746,107207,'Crime'),(6747,107207,'Drama'),(6748,107211,'Drama'),(6749,107211,'Romance'),(6750,107212,'Comedy'),(6751,107212,'Drama'),(6752,107212,'Romance'),(6753,107214,'Comedy'),(6754,107214,'Drama'),(6755,107282,'Drama'),(6756,107290,'Action'),(6757,107290,'Adventure'),(6758,107290,'Sci-Fi'),(6759,107315,'Comedy'),(6760,107362,'Action'),(6761,107362,'Adventure'),(6762,107362,'Comedy'),(6763,107387,'Comedy'),(6764,107387,'Fantasy'),(6765,107387,'Horror'),(6766,107426,'Drama'),(6767,107492,'Comedy'),(6768,107501,'Drama'),(6769,107507,'Comedy'),(6770,107507,'Mystery'),(6771,107529,'Comedy'),(6772,107529,'Drama'),(6773,107566,'Crime'),(6774,107566,'Drama'),(6775,107614,'Comedy'),(6776,107614,'Drama'),(6777,107616,'Comedy'),(6778,107616,'Drama'),(6779,107616,'Romance'),(6780,107653,'Comedy'),(6781,107653,'Drama'),(6782,107688,'Animation'),(6783,107688,'Family'),(6784,107688,'Fantasy'),(6785,107745,'Adventure'),(6786,107745,'Animation'),(6787,107745,'Drama'),(6788,107756,'Biography'),(6789,107756,'Drama'),(6790,107756,'Fantasy'),(6791,107798,'Crime'),(6792,107798,'Drama'),(6793,107798,'Mystery'),(6794,107808,'Crime'),(6795,107808,'Drama'),(6796,107808,'Thriller'),(6797,107818,'Drama'),(6798,107822,'Drama'),(6799,107822,'Music'),(6800,107822,'Romance'),(6801,107840,'Drama'),(6802,107840,'Romance'),(6803,107843,'Action'),(6804,107843,'Crime'),(6805,107843,'Drama'),(6806,107875,'Adventure'),(6807,107875,'Animation'),(6808,107875,'Comedy'),(6809,107943,'Drama'),(6810,107943,'Romance'),(6811,107952,'Adventure'),(6812,107952,'Animation'),(6813,107952,'Comedy'),(6814,107969,'Action'),(6815,107969,'Crime'),(6816,107969,'Drama'),(6817,107977,'Adventure'),(6818,107977,'Comedy'),(6819,107977,'Musical'),(6820,107978,'Action'),(6821,107978,'Crime'),(6822,107978,'Sci-Fi'),(6823,108000,'Drama'),(6824,108000,'Romance'),(6825,108037,'Comedy'),(6826,108037,'Drama'),(6827,108037,'Family'),(6828,108052,'Biography'),(6829,108052,'Drama'),(6830,108052,'History'),(6831,108065,'Biography'),(6832,108065,'Drama'),(6833,108065,'Sport'),(6834,108071,'Drama'),(6835,108071,'Family'),(6836,108071,'Fantasy'),(6837,108122,'Comedy'),(6838,108122,'Drama'),(6839,108147,'Comedy'),(6840,108147,'Family'),(6841,108147,'Music'),(6842,108149,'Comedy'),(6843,108149,'Drama'),(6844,108149,'Mystery'),(6845,108160,'Comedy'),(6846,108160,'Drama'),(6847,108160,'Romance'),(6848,108162,'Drama'),(6849,108162,'Thriller'),(6850,108174,'Comedy'),(6851,108174,'Romance'),(6852,108188,'Action'),(6853,108188,'Comedy'),(6854,108188,'Crime'),(6855,108255,'Adventure'),(6856,108255,'Comedy'),(6857,108255,'Family'),(6858,108265,'Drama'),(6859,108265,'Music'),(6860,108308,'Action'),(6861,108308,'Adventure'),(6862,108308,'Comedy'),(6863,108310,'Crime'),(6864,108310,'Mystery'),(6865,108310,'Romance'),(6866,108358,'Biography'),(6867,108358,'Drama'),(6868,108358,'History'),(6869,108388,'Drama'),(6870,108388,'Thriller'),(6871,108394,'Drama'),(6872,108394,'Music'),(6873,108394,'Mystery'),(6874,108399,'Crime'),(6875,108399,'Drama'),(6876,108399,'Romance'),(6877,108432,'Animation'),(6878,108432,'Drama'),(6879,108432,'Romance'),(6880,108442,'Comedy'),(6881,108442,'Crime'),(6882,108451,'Drama'),(6883,108451,'Romance'),(6884,108550,'Drama'),(6885,108551,'Biography'),(6886,108551,'Drama'),(6887,108551,'Music'),(6888,108624,'Action'),(6889,108624,'Fantasy'),(6890,108624,'History'),(6891,108941,'Adventure'),(6892,108941,'Drama'),(6893,108941,'Fantasy'),(6894,109040,'Comedy'),(6895,109045,'Comedy'),(6896,109045,'Music'),(6897,109066,'Drama'),(6898,109066,'Romance'),(6899,109068,'Comedy'),(6900,109068,'Crime'),(6901,109068,'Music'),(6902,109093,'Comedy'),(6903,109093,'Crime'),(6904,109093,'Drama'),(6905,109127,'Comedy'),(6906,109127,'Drama'),(6907,109127,'Family'),(6908,109144,'Action'),(6909,109144,'Sci-Fi'),(6910,109198,'Action'),(6911,109198,'Adventure'),(6912,109198,'Drama'),(6913,109254,'Action'),(6914,109254,'Comedy'),(6915,109254,'Crime'),(6916,109275,'Horror'),(6917,109277,'Action'),(6918,109277,'Animation'),(6919,109277,'Comedy'),(6920,109279,'Adventure'),(6921,109279,'Drama'),(6922,109279,'Family'),(6923,109306,'Drama'),(6924,109306,'Romance'),(6925,109327,'Horror'),(6926,109327,'Sci-Fi'),(6927,109370,'Action'),(6928,109370,'Comedy'),(6929,109424,'Comedy'),(6930,109424,'Crime'),(6931,109424,'Drama'),(6932,109440,'Comedy'),(6933,109440,'Horror'),(6934,109444,'Action'),(6935,109444,'Crime'),(6936,109444,'Drama'),(6937,109445,'Comedy'),(6938,109446,'Crime'),(6939,109446,'Drama'),(6940,109446,'Mystery'),(6941,109447,'Comedy'),(6942,109456,'Drama'),(6943,109456,'Mystery'),(6944,109456,'Romance'),(6945,109484,'Comedy'),(6946,109484,'Drama'),(6947,109484,'Romance'),(6948,109504,'Comedy'),(6949,109504,'Drama'),(6950,109506,'Action'),(6951,109506,'Crime'),(6952,109506,'Drama'),(6953,109520,'Comedy'),(6954,109520,'Drama'),(6955,109520,'Family'),(6956,109579,'Drama'),(6957,109579,'Mystery'),(6958,109579,'Thriller'),(6959,109642,'Crime'),(6960,109642,'Drama'),(6961,109642,'Mystery'),(6962,109644,'Comedy'),(6963,109676,'Action'),(6964,109676,'Adventure'),(6965,109676,'Thriller'),(6966,109686,'Comedy'),(6967,109688,'Action'),(6968,109688,'Drama'),(6969,109699,'Crime'),(6970,109699,'Drama'),(6971,109699,'Thriller'),(6972,109707,'Biography'),(6973,109707,'Comedy'),(6974,109707,'Drama'),(6975,109770,'Action'),(6976,109770,'Adventure'),(6977,109770,'Family'),(6978,109791,'Action'),(6979,109791,'Animation'),(6980,109791,'Drama'),(6981,109798,'Action'),(6982,109798,'Adventure'),(6983,109798,'Comedy'),(6984,109813,'Comedy'),(6985,109813,'Family'),(6986,109813,'Fantasy'),(6987,109830,'Drama'),(6988,109830,'Romance'),(6989,109831,'Comedy'),(6990,109831,'Drama'),(6991,109831,'Romance'),(6992,109849,'Biography'),(6993,109849,'Drama'),(6994,109900,'Adventure'),(6995,109900,'Drama'),(6996,109900,'Horror'),(6997,109913,'Comedy'),(6998,109913,'Drama'),(6999,109913,'Romance'),(7000,110005,'Biography'),(7001,110005,'Crime'),(7002,110005,'Drama'),(7003,110006,'Comedy'),(7004,110006,'Drama'),(7005,110006,'Family'),(7006,110008,'Animation'),(7007,110008,'Comedy'),(7008,110008,'Drama'),(7009,110054,'Action'),(7010,110054,'Adventure'),(7011,110054,'Comedy'),(7012,110074,'Comedy'),(7013,110074,'Drama'),(7014,110074,'Fantasy'),(7015,110091,'Comedy'),(7016,110091,'Drama'),(7017,110091,'Romance'),(7018,110099,'Comedy'),(7019,110099,'Romance'),(7020,110148,'Drama'),(7021,110148,'Fantasy'),(7022,110148,'Horror'),(7023,110167,'Comedy'),(7024,110167,'Drama'),(7025,110167,'Romance'),(7026,110169,'Comedy'),(7027,110171,'Drama'),(7028,110171,'Mystery'),(7029,110171,'Romance'),(7030,110236,'Family'),(7031,110297,'Drama'),(7032,110308,'Crime'),(7033,110308,'Drama'),(7034,110308,'Romance'),(7035,110322,'Drama'),(7036,110322,'Romance'),(7037,110322,'War'),(7038,110357,'Adventure'),(7039,110357,'Animation'),(7040,110357,'Drama'),(7041,110366,'Comedy'),(7042,110366,'Family'),(7043,110366,'Romance'),(7044,110367,'Drama'),(7045,110367,'Family'),(7046,110367,'Romance'),(7047,110413,'Action'),(7048,110413,'Crime'),(7049,110413,'Drama'),(7050,110443,'Adventure'),(7051,110443,'Comedy'),(7052,110443,'Family'),(7053,110475,'Action'),(7054,110475,'Comedy'),(7055,110475,'Crime'),(7056,110490,'Action'),(7057,110490,'Drama'),(7058,110490,'Thriller'),(7059,110521,'Drama'),(7060,110524,'Comedy'),(7061,110527,'Drama'),(7062,110527,'Family'),(7063,110527,'Fantasy'),(7064,110598,'Comedy'),(7065,110598,'Drama'),(7066,110622,'Comedy'),(7067,110622,'Crime'),(7068,110632,'Action'),(7069,110632,'Crime'),(7070,110632,'Romance'),(7071,110657,'Action'),(7072,110657,'Drama'),(7073,110657,'Family'),(7074,110678,'Action'),(7075,110678,'Drama'),(7076,110678,'Sci-Fi'),(7077,110722,'Drama'),(7078,110722,'Thriller'),(7079,110763,'Adventure'),(7080,110763,'Animation'),(7081,110763,'Comedy'),(7082,110805,'Action'),(7083,110805,'Drama'),(7084,110805,'Thriller'),(7085,110857,'Comedy'),(7086,110857,'Crime'),(7087,110889,'Drama'),(7088,110889,'Romance'),(7089,110912,'Crime'),(7090,110912,'Drama'),(7091,110932,'Biography'),(7092,110932,'Drama'),(7093,110932,'History'),(7094,110950,'Comedy'),(7095,110950,'Drama'),(7096,110950,'Romance'),(7097,110955,'Comedy'),(7098,110955,'Crime'),(7099,110955,'Drama'),(7100,110958,'Crime'),(7101,110958,'Drama'),(7102,110971,'Comedy'),(7103,110971,'Drama'),(7104,111001,'Comedy'),(7105,111001,'Drama'),(7106,111033,'Drama'),(7107,111070,'Comedy'),(7108,111070,'Drama'),(7109,111070,'Family'),(7110,111112,'Drama'),(7111,111112,'Family'),(7112,111112,'Fantasy'),(7113,111127,'Comedy'),(7114,111127,'Crime'),(7115,111127,'Thriller'),(7116,111143,'Action'),(7117,111143,'Adventure'),(7118,111143,'Crime'),(7119,111161,'Drama'),(7120,111201,'Comedy'),(7121,111201,'Drama'),(7122,111201,'Romance'),(7123,111205,'Drama'),(7124,111205,'Thriller'),(7125,111255,'Action'),(7126,111255,'Drama'),(7127,111255,'Thriller'),(7128,111257,'Action'),(7129,111257,'Adventure'),(7130,111257,'Thriller'),(7131,111280,'Action'),(7132,111280,'Adventure'),(7133,111280,'Mystery'),(7134,111282,'Action'),(7135,111282,'Adventure'),(7136,111282,'Sci-Fi'),(7137,111301,'Action'),(7138,111301,'Adventure'),(7139,111301,'Comedy'),(7140,111333,'Adventure'),(7141,111333,'Animation'),(7142,111333,'Comedy'),(7143,111341,'Drama'),(7144,111359,'Adventure'),(7145,111359,'Family'),(7146,111359,'Fantasy'),(7147,111438,'Action'),(7148,111438,'Crime'),(7149,111438,'Sci-Fi'),(7150,111470,'Comedy'),(7151,111470,'Family'),(7152,111470,'Fantasy'),(7153,111503,'Action'),(7154,111503,'Comedy'),(7155,111503,'Thriller'),(7156,111507,'Comedy'),(7157,111507,'Drama'),(7158,111507,'Romance'),(7159,111512,'Action'),(7160,111512,'Comedy'),(7161,111520,'Drama'),(7162,111520,'Fantasy'),(7163,111520,'Horror'),(7164,111549,'Mystery'),(7165,111549,'Thriller'),(7166,111640,'Comedy'),(7167,111686,'Fantasy'),(7168,111686,'Horror'),(7169,111686,'Mystery'),(7170,111693,'Drama'),(7171,111693,'Romance'),(7172,111751,'Drama'),(7173,111797,'Comedy'),(7174,111797,'Drama'),(7175,111797,'Romance'),(7176,111800,'Action'),(7177,111800,'Comedy'),(7178,111800,'Drama'),(7179,112040,'Horror'),(7180,112040,'Mystery'),(7181,112040,'Sci-Fi'),(7182,112130,'Drama'),(7183,112130,'Romance'),(7184,112281,'Adventure'),(7185,112281,'Comedy'),(7186,112281,'Crime'),(7187,112288,'Drama'),(7188,112288,'Horror'),(7189,112346,'Comedy'),(7190,112346,'Drama'),(7191,112346,'Romance'),(7192,112379,'Comedy'),(7193,112379,'Drama'),(7194,112384,'Adventure'),(7195,112384,'Drama'),(7196,112384,'History'),(7197,112386,'Comedy'),(7198,112389,'Action'),(7199,112389,'Adventure'),(7200,112389,'Animation'),(7201,112401,'Action'),(7202,112401,'Crime'),(7203,112401,'Thriller'),(7204,112431,'Comedy'),(7205,112431,'Drama'),(7206,112431,'Family'),(7207,112435,'Comedy'),(7208,112435,'Drama'),(7209,112435,'Family'),(7210,112442,'Action'),(7211,112442,'Comedy'),(7212,112442,'Crime'),(7213,112453,'Adventure'),(7214,112453,'Animation'),(7215,112453,'Drama'),(7216,112461,'Biography'),(7217,112461,'Crime'),(7218,112461,'Drama'),(7219,112462,'Action'),(7220,112462,'Adventure'),(7221,112471,'Drama'),(7222,112471,'Romance'),(7223,112508,'Comedy'),(7224,112513,'Action'),(7225,112513,'Animation'),(7226,112513,'Comedy'),(7227,112571,'Comedy'),(7228,112571,'Drama'),(7229,112573,'Biography'),(7230,112573,'Drama'),(7231,112573,'History'),(7232,112579,'Drama'),(7233,112579,'Romance'),(7234,112604,'Comedy'),(7235,112604,'Drama'),(7236,112604,'Romance'),(7237,112641,'Crime'),(7238,112641,'Drama'),(7239,112642,'Comedy'),(7240,112642,'Family'),(7241,112642,'Fantasy'),(7242,112651,'Documentary'),(7243,112651,'History'),(7244,112679,'Drama'),(7245,112679,'Romance'),(7246,112682,'Drama'),(7247,112682,'Fantasy'),(7248,112682,'Sci-Fi'),(7249,112697,'Comedy'),(7250,112697,'Romance'),(7251,112701,'Comedy'),(7252,112701,'Romance'),(7253,112715,'Action'),(7254,112715,'Adventure'),(7255,112715,'Mystery'),(7256,112722,'Drama'),(7257,112722,'Mystery'),(7258,112722,'Thriller'),(7259,112740,'Action'),(7260,112740,'Drama'),(7261,112740,'Thriller'),(7262,112757,'Adventure'),(7263,112757,'Drama'),(7264,112760,'Action'),(7265,112760,'Adventure'),(7266,112760,'Comedy'),(7267,112769,'Crime'),(7268,112769,'Drama'),(7269,112769,'Thriller'),(7270,112792,'Biography'),(7271,112792,'Drama'),(7272,112818,'Crime'),(7273,112818,'Drama'),(7274,112819,'Action'),(7275,112819,'Crime'),(7276,112819,'Drama'),(7277,112851,'Action'),(7278,112851,'Crime'),(7279,112851,'Drama'),(7280,112857,'Crime'),(7281,112857,'Drama'),(7282,112857,'Mystery'),(7283,112864,'Action'),(7284,112864,'Adventure'),(7285,112864,'Thriller'),(7286,112870,'Drama'),(7287,112870,'Romance'),(7288,112896,'Comedy'),(7289,112896,'Fantasy'),(7290,112896,'Horror'),(7291,112913,'Comedy'),(7292,112913,'Crime'),(7293,112913,'Drama'),(7294,112922,'Action'),(7295,112922,'Comedy'),(7296,112922,'Crime'),(7297,112950,'Comedy'),(7298,112950,'Drama'),(7299,112950,'Music'),(7300,112966,'Comedy'),(7301,112966,'Drama'),(7302,112966,'Romance'),(7303,113071,'Action'),(7304,113071,'Adventure'),(7305,113071,'Drama'),(7306,113083,'Comedy'),(7307,113083,'Drama'),(7308,113101,'Comedy'),(7309,113114,'Adventure'),(7310,113114,'Drama'),(7311,113114,'Family'),(7312,113117,'Comedy'),(7313,113117,'Drama'),(7314,113117,'Romance'),(7315,113118,'Comedy'),(7316,113118,'Drama'),(7317,113188,'Adventure'),(7318,113188,'Drama'),(7319,113188,'Family'),(7320,113189,'Action'),(7321,113189,'Adventure'),(7322,113189,'Thriller'),(7323,113198,'Adventure'),(7324,113198,'Animation'),(7325,113198,'Comedy'),(7326,113221,'Horror'),(7327,113228,'Comedy'),(7328,113228,'Romance'),(7329,113243,'Crime'),(7330,113243,'Drama'),(7331,113243,'Romance'),(7332,113247,'Crime'),(7333,113247,'Drama'),(7334,113277,'Action'),(7335,113277,'Crime'),(7336,113277,'Drama'),(7337,113305,'Crime'),(7338,113305,'Drama'),(7339,113305,'Thriller'),(7340,113321,'Comedy'),(7341,113321,'Drama'),(7342,113321,'Romance'),(7343,113326,'Action'),(7344,113326,'Comedy'),(7345,113326,'Crime'),(7346,113347,'Comedy'),(7347,113347,'Drama'),(7348,113347,'Romance'),(7349,113362,'Adventure'),(7350,113362,'Drama'),(7351,113362,'Romance'),(7352,113409,'Drama'),(7353,113409,'Fantasy'),(7354,113409,'Horror'),(7355,113416,'Comedy'),(7356,113416,'Drama'),(7357,113416,'Romance'),(7358,113442,'Comedy'),(7359,113442,'Family'),(7360,113442,'Romance'),(7361,113492,'Action'),(7362,113492,'Crime'),(7363,113492,'Sci-Fi'),(7364,113497,'Adventure'),(7365,113497,'Comedy'),(7366,113497,'Family'),(7367,113540,'Drama'),(7368,113568,'Action'),(7369,113568,'Animation'),(7370,113568,'Crime'),(7371,113627,'Drama'),(7372,113627,'Romance'),(7373,113649,'Drama'),(7374,113649,'History'),(7375,113649,'War'),(7376,113670,'Drama'),(7377,113670,'Family'),(7378,113670,'Fantasy'),(7379,113725,'Drama'),(7380,113737,'Adventure'),(7381,113737,'Family'),(7382,113737,'Fantasy'),(7383,113749,'Comedy'),(7384,113749,'Romance'),(7385,113820,'Action'),(7386,113820,'Adventure'),(7387,113820,'Family'),(7388,113824,'Animation'),(7389,113824,'Drama'),(7390,113824,'Family'),(7391,113855,'Action'),(7392,113855,'Adventure'),(7393,113855,'Fantasy'),(7394,113862,'Drama'),(7395,113862,'Music'),(7396,113918,'Crime'),(7397,113918,'Drama'),(7398,113918,'Thriller'),(7399,113957,'Action'),(7400,113957,'Crime'),(7401,113957,'Drama'),(7402,113972,'Action'),(7403,113972,'Crime'),(7404,113972,'Drama'),(7405,114011,'Comedy'),(7406,114011,'Drama'),(7407,114011,'Romance'),(7408,114057,'Drama'),(7409,114057,'Romance'),(7410,114069,'Action'),(7411,114069,'Drama'),(7412,114069,'Thriller'),(7413,114095,'Comedy'),(7414,114095,'Drama'),(7415,114095,'Romance'),(7416,114108,'Adventure'),(7417,114108,'Animation'),(7418,114108,'Comedy'),(7419,114117,'Drama'),(7420,114129,'Drama'),(7421,114129,'Romance'),(7422,114148,'Adventure'),(7423,114148,'Animation'),(7424,114148,'Drama'),(7425,114151,'Drama'),(7426,114151,'Thriller'),(7427,114214,'Action'),(7428,114214,'Drama'),(7429,114214,'Romance'),(7430,114287,'Adventure'),(7431,114287,'Biography'),(7432,114287,'Drama'),(7433,114319,'Comedy'),(7434,114319,'Drama'),(7435,114319,'Romance'),(7436,114323,'Drama'),(7437,114369,'Crime'),(7438,114369,'Drama'),(7439,114369,'Mystery'),(7440,114388,'Drama'),(7441,114388,'Romance'),(7442,114395,'Biography'),(7443,114395,'Drama'),(7444,114436,'Drama'),(7445,114508,'Action'),(7446,114508,'Horror'),(7447,114508,'Sci-Fi'),(7448,114558,'Crime'),(7449,114558,'Drama'),(7450,114558,'Sci-Fi'),(7451,114614,'Action'),(7452,114614,'Comedy'),(7453,114614,'Sci-Fi'),(7454,114671,'Drama'),(7455,114671,'War'),(7456,114682,'Comedy'),(7457,114682,'Drama'),(7458,114689,'Adventure'),(7459,114689,'Animation'),(7460,114689,'Family'),(7461,114694,'Adventure'),(7462,114694,'Comedy'),(7463,114702,'Biography'),(7464,114702,'Drama'),(7465,114702,'Romance'),(7466,114709,'Adventure'),(7467,114709,'Animation'),(7468,114709,'Comedy'),(7469,114720,'Action'),(7470,114720,'Comedy'),(7471,114720,'Horror'),(7472,114736,'Crime'),(7473,114736,'Drama'),(7474,114736,'Mystery'),(7475,114746,'Mystery'),(7476,114746,'Sci-Fi'),(7477,114746,'Thriller'),(7478,114787,'Comedy'),(7479,114787,'Drama'),(7480,114787,'Fantasy'),(7481,114814,'Crime'),(7482,114814,'Drama'),(7483,114814,'Mystery'),(7484,114852,'Horror'),(7485,114852,'Sci-Fi'),(7486,114852,'Thriller'),(7487,114885,'Comedy'),(7488,114885,'Drama'),(7489,114885,'Romance'),(7490,114898,'Action'),(7491,114898,'Adventure'),(7492,114898,'Sci-Fi'),(7493,114906,'Comedy'),(7494,114906,'Drama'),(7495,114916,'Drama'),(7496,114916,'Romance'),(7497,114924,'Comedy'),(7498,114924,'Drama'),(7499,114924,'Romance'),(7500,115133,'Drama'),(7501,115433,'Adventure'),(7502,115433,'Comedy'),(7503,115433,'Crime'),(7504,115438,'Comedy'),(7505,115438,'Crime'),(7506,115438,'Thriller'),(7507,115462,'Drama'),(7508,115485,'Action'),(7509,115485,'Drama'),(7510,115491,'Adventure'),(7511,115491,'Animation'),(7512,115491,'Comedy'),(7513,115580,'Comedy'),(7514,115591,'Comedy'),(7515,115591,'Drama'),(7516,115591,'Romance'),(7517,115624,'Action'),(7518,115624,'Sci-Fi'),(7519,115632,'Biography'),(7520,115632,'Drama'),(7521,115639,'Comedy'),(7522,115639,'Drama'),(7523,115639,'Romance'),(7524,115640,'Comedy'),(7525,115640,'Drama'),(7526,115640,'Romance'),(7527,115641,'Adventure'),(7528,115641,'Animation'),(7529,115641,'Comedy'),(7530,115650,'Comedy'),(7531,115650,'Sci-Fi'),(7532,115678,'Drama'),(7533,115678,'Romance'),(7534,115685,'Comedy'),(7535,115736,'Crime'),(7536,115736,'Thriller'),(7537,115744,'Comedy'),(7538,115744,'Drama'),(7539,115744,'Music'),(7540,115759,'Action'),(7541,115759,'Adventure'),(7542,115759,'Thriller'),(7543,115798,'Comedy'),(7544,115798,'Drama'),(7545,115798,'Thriller'),(7546,115819,'Comedy'),(7547,115819,'Horror'),(7548,115819,'Musical'),(7549,115856,'Comedy'),(7550,115856,'Romance'),(7551,115857,'Action'),(7552,115857,'Drama'),(7553,115857,'Sci-Fi'),(7554,115956,'Action'),(7555,115956,'Drama'),(7556,115956,'Mystery'),(7557,115963,'Drama'),(7558,115963,'Fantasy'),(7559,115963,'Horror'),(7560,115964,'Drama'),(7561,115988,'Drama'),(7562,115988,'History'),(7563,115994,'Comedy'),(7564,115994,'Crime'),(7565,115994,'Thriller'),(7566,116040,'Action'),(7567,116040,'Adventure'),(7568,116040,'Drama'),(7569,116041,'Comedy'),(7570,116041,'Drama'),(7571,116130,'Comedy'),(7572,116136,'Action'),(7573,116136,'Adventure'),(7574,116136,'Fantasy'),(7575,116191,'Comedy'),(7576,116191,'Drama'),(7577,116191,'Romance'),(7578,116209,'Drama'),(7579,116209,'Romance'),(7580,116209,'War'),(7581,116212,'Biography'),(7582,116212,'Drama'),(7583,116212,'Romance'),(7584,116213,'Action'),(7585,116213,'Crime'),(7586,116213,'Thriller'),(7587,116225,'Action'),(7588,116225,'Adventure'),(7589,116225,'Sci-Fi'),(7590,116250,'Biography'),(7591,116250,'Drama'),(7592,116250,'History'),(7593,116260,'Crime'),(7594,116260,'Drama'),(7595,116260,'Thriller'),(7596,116277,'Action'),(7597,116277,'Drama'),(7598,116277,'Sport'),(7599,116282,'Crime'),(7600,116282,'Thriller'),(7601,116287,'Drama'),(7602,116287,'Thriller'),(7603,116293,'Drama'),(7604,116293,'Fantasy'),(7605,116293,'Thriller'),(7606,116308,'Drama'),(7607,116308,'Romance'),(7608,116313,'Comedy'),(7609,116329,'Adventure'),(7610,116329,'Drama'),(7611,116329,'Family'),(7612,116353,'Drama'),(7613,116353,'Romance'),(7614,116361,'Crime'),(7615,116361,'Drama'),(7616,116361,'Thriller'),(7617,116365,'Comedy'),(7618,116365,'Fantasy'),(7619,116365,'Horror'),(7620,116367,'Action'),(7621,116367,'Crime'),(7622,116367,'Horror'),(7623,116378,'Crime'),(7624,116378,'Drama'),(7625,116418,'Comedy'),(7626,116418,'Drama'),(7627,116421,'Action'),(7628,116421,'Comedy'),(7629,116421,'Crime'),(7630,116426,'Action'),(7631,116426,'Comedy'),(7632,116426,'Fantasy'),(7633,116442,'Comedy'),(7634,116442,'Drama'),(7635,116442,'Music'),(7636,116477,'Drama'),(7637,116483,'Comedy'),(7638,116483,'Sport'),(7639,116493,'Comedy'),(7640,116493,'Drama'),(7641,116493,'Family'),(7642,116514,'Horror'),(7643,116514,'Sci-Fi'),(7644,116552,'Adventure'),(7645,116552,'Comedy'),(7646,116552,'Family'),(7647,116583,'Animation'),(7648,116583,'Drama'),(7649,116583,'Family'),(7650,116594,'Biography'),(7651,116594,'Drama'),(7652,116629,'Action'),(7653,116629,'Adventure'),(7654,116629,'Sci-Fi'),(7655,116650,'Comedy'),(7656,116650,'Drama'),(7657,116669,'Comedy'),(7658,116669,'Drama'),(7659,116669,'Fantasy'),(7660,116683,'Adventure'),(7661,116683,'Animation'),(7662,116683,'Family'),(7663,116684,'Drama'),(7664,116684,'Romance'),(7665,116692,'Drama'),(7666,116692,'Music'),(7667,116695,'Comedy'),(7668,116695,'Drama'),(7669,116695,'Romance'),(7670,116705,'Adventure'),(7671,116705,'Comedy'),(7672,116705,'Family'),(7673,116767,'Crime'),(7674,116767,'Drama'),(7675,116767,'Sport'),(7676,116770,'Comedy'),(7677,116770,'Horror'),(7678,116770,'Sci-Fi'),(7679,116778,'Comedy'),(7680,116778,'Sport'),(7681,116830,'Action'),(7682,116830,'Crime'),(7683,116830,'Drama'),(7684,116905,'Drama'),(7685,116905,'Mystery'),(7686,116905,'Western'),(7687,116908,'Action'),(7688,116908,'Crime'),(7689,116908,'Drama'),(7690,116922,'Mystery'),(7691,116922,'Thriller'),(7692,116931,'Comedy'),(7693,116931,'Romance'),(7694,116932,'Comedy'),(7695,116932,'Drama'),(7696,116932,'Romance'),(7697,116985,'Comedy'),(7698,116985,'Drama'),(7699,116996,'Comedy'),(7700,116996,'Sci-Fi'),(7701,116999,'Drama'),(7702,117008,'Comedy'),(7703,117008,'Family'),(7704,117008,'Fantasy'),(7705,117038,'Comedy'),(7706,117038,'Drama'),(7707,117038,'Fantasy'),(7708,117039,'Biography'),(7709,117039,'Drama'),(7710,117039,'Thriller'),(7711,117056,'Drama'),(7712,117057,'Comedy'),(7713,117057,'Drama'),(7714,117057,'Romance'),(7715,117060,'Action'),(7716,117060,'Adventure'),(7717,117060,'Thriller'),(7718,117091,'Comedy'),(7719,117091,'Drama'),(7720,117093,'Drama'),(7721,117093,'Romance'),(7722,117093,'War'),(7723,117102,'Comedy'),(7724,117110,'Action'),(7725,117110,'Adventure'),(7726,117110,'Comedy'),(7727,117128,'Comedy'),(7728,117128,'Drama'),(7729,117128,'Fantasy'),(7730,117331,'Action'),(7731,117331,'Adventure'),(7732,117331,'Comedy'),(7733,117372,'Comedy'),(7734,117372,'Drama'),(7735,117372,'Fantasy'),(7736,117381,'Crime'),(7737,117381,'Drama'),(7738,117381,'Mystery'),(7739,117407,'Crime'),(7740,117407,'Thriller'),(7741,117420,'Action'),(7742,117420,'Adventure'),(7743,117420,'Drama'),(7744,117468,'Action'),(7745,117468,'Crime'),(7746,117468,'Drama'),(7747,117477,'Comedy'),(7748,117477,'Drama'),(7749,117477,'History'),(7750,117500,'Action'),(7751,117500,'Adventure'),(7752,117500,'Thriller'),(7753,117509,'Drama'),(7754,117509,'Romance'),(7755,117534,'Comedy'),(7756,117534,'Family'),(7757,117534,'Fantasy'),(7758,117571,'Horror'),(7759,117571,'Mystery'),(7760,117589,'Comedy'),(7761,117589,'Drama'),(7762,117603,'Action'),(7763,117603,'Crime'),(7764,117603,'Drama'),(7765,117665,'Crime'),(7766,117665,'Drama'),(7767,117665,'Thriller'),(7768,117705,'Adventure'),(7769,117705,'Animation'),(7770,117705,'Comedy'),(7771,117718,'Drama'),(7772,117723,'Action'),(7773,117723,'Comedy'),(7774,117731,'Action'),(7775,117731,'Adventure'),(7776,117731,'Drama'),(7777,117737,'Drama'),(7778,117737,'Mystery'),(7779,117737,'Romance'),(7780,117765,'Comedy'),(7781,117765,'Crime'),(7782,117765,'Drama'),(7783,117797,'Crime'),(7784,117797,'Drama'),(7785,117802,'Comedy'),(7786,117802,'Drama'),(7787,117876,'Adventure'),(7788,117876,'Animation'),(7789,117876,'Comedy'),(7790,117887,'Comedy'),(7791,117887,'Drama'),(7792,117887,'Music'),(7793,117918,'Comedy'),(7794,117918,'Drama'),(7795,117918,'Romance'),(7796,117951,'Drama'),(7797,117968,'Comedy'),(7798,117968,'Crime'),(7799,117968,'Fantasy'),(7800,117979,'Comedy'),(7801,117979,'Romance'),(7802,117991,'Comedy'),(7803,117991,'Drama'),(7804,117991,'Romance'),(7805,117998,'Action'),(7806,117998,'Adventure'),(7807,117998,'Thriller'),(7808,118015,'Comedy'),(7809,118015,'Drama'),(7810,118105,'Drama'),(7811,118105,'Romance'),(7812,118111,'Comedy'),(7813,118113,'Comedy'),(7814,118113,'Drama'),(7815,118113,'Romance'),(7816,118125,'Comedy'),(7817,118125,'Drama'),(7818,118125,'Romance'),(7819,118414,'Adventure'),(7820,118414,'Drama'),(7821,118414,'Fantasy'),(7822,118550,'Drama'),(7823,118550,'Romance'),(7824,118570,'Comedy'),(7825,118570,'Drama'),(7826,118570,'Family'),(7827,118571,'Action'),(7828,118571,'Drama'),(7829,118571,'Thriller'),(7830,118583,'Action'),(7831,118583,'Horror'),(7832,118583,'Sci-Fi'),(7833,118589,'Drama'),(7834,118589,'Music'),(7835,118589,'Romance'),(7836,118604,'Comedy'),(7837,118604,'Fantasy'),(7838,118604,'Horror'),(7839,118607,'Biography'),(7840,118607,'Drama'),(7841,118607,'History'),(7842,118615,'Action'),(7843,118615,'Adventure'),(7844,118615,'Horror'),(7845,118617,'Adventure'),(7846,118617,'Animation'),(7847,118617,'Drama'),(7848,118636,'Crime'),(7849,118636,'Drama'),(7850,118636,'Thriller'),(7851,118655,'Adventure'),(7852,118655,'Comedy'),(7853,118661,'Action'),(7854,118661,'Adventure'),(7855,118661,'Sci-Fi'),(7856,118688,'Action'),(7857,118688,'Sci-Fi'),(7858,118694,'Drama'),(7859,118694,'Romance'),(7860,118715,'Comedy'),(7861,118715,'Crime'),(7862,118749,'Drama'),(7863,118755,'Adventure'),(7864,118755,'Comedy'),(7865,118755,'Family'),(7866,118789,'Comedy'),(7867,118789,'Drama'),(7868,118789,'Romance'),(7869,118799,'Comedy'),(7870,118799,'Drama'),(7871,118799,'Romance'),(7872,118818,'Comedy'),(7873,118818,'Drama'),(7874,118819,'Drama'),(7875,118826,'Comedy'),(7876,118826,'Drama'),(7877,118829,'Animation'),(7878,118829,'Comedy'),(7879,118829,'Family'),(7880,118842,'Comedy'),(7881,118842,'Drama'),(7882,118842,'Romance'),(7883,118843,'Comedy'),(7884,118843,'Crime'),(7885,118843,'Romance'),(7886,118845,'Drama'),(7887,118845,'Romance'),(7888,118849,'Drama'),(7889,118849,'Family'),(7890,118849,'Sport'),(7891,118866,'Comedy'),(7892,118866,'Drama'),(7893,118880,'Action'),(7894,118880,'Crime'),(7895,118880,'Thriller'),(7896,118883,'Action'),(7897,118883,'Drama'),(7898,118883,'Mystery'),(7899,118884,'Drama'),(7900,118884,'Mystery'),(7901,118884,'Sci-Fi'),(7902,118887,'Crime'),(7903,118887,'Drama'),(7904,118887,'Thriller'),(7905,118892,'Biography'),(7906,118892,'Drama'),(7907,118892,'Romance'),(7908,118906,'Comedy'),(7909,118906,'Musical'),(7910,118906,'Romance'),(7911,118928,'Action'),(7912,118928,'Adventure'),(7913,118928,'Thriller'),(7914,118929,'Fantasy'),(7915,118929,'Mystery'),(7916,118929,'Sci-Fi'),(7917,118971,'Drama'),(7918,118971,'Fantasy'),(7919,118971,'Mystery'),(7920,119008,'Biography'),(7921,119008,'Crime'),(7922,119008,'Drama'),(7923,119038,'Comedy'),(7924,119080,'Drama'),(7925,119081,'Horror'),(7926,119081,'Sci-Fi'),(7927,119081,'Thriller'),(7928,119094,'Action'),(7929,119094,'Crime'),(7930,119094,'Sci-Fi'),(7931,119114,'Comedy'),(7932,119114,'Drama'),(7933,119114,'Romance'),(7934,119115,'Comedy'),(7935,119116,'Action'),(7936,119116,'Adventure'),(7937,119116,'Sci-Fi'),(7938,119137,'Comedy'),(7939,119137,'Family'),(7940,119137,'Sci-Fi'),(7941,119142,'Comedy'),(7942,119142,'Romance'),(7943,119152,'Adventure'),(7944,119152,'Drama'),(7945,119152,'Family'),(7946,119164,'Comedy'),(7947,119164,'Drama'),(7948,119167,'Crime'),(7949,119167,'Drama'),(7950,119167,'Thriller'),(7951,119173,'Action'),(7952,119173,'Drama'),(7953,119173,'War'),(7954,119174,'Drama'),(7955,119174,'Mystery'),(7956,119174,'Thriller'),(7957,119177,'Drama'),(7958,119177,'Sci-Fi'),(7959,119177,'Thriller'),(7960,119190,'Action'),(7961,119190,'Adventure'),(7962,119190,'Comedy'),(7963,119204,'Drama'),(7964,119204,'Family'),(7965,119215,'Comedy'),(7966,119215,'Family'),(7967,119217,'Drama'),(7968,119217,'Romance'),(7969,119223,'Drama'),(7970,119223,'Romance'),(7971,119227,'Adventure'),(7972,119227,'Fantasy'),(7973,119227,'Horror'),(7974,119229,'Action'),(7975,119229,'Comedy'),(7976,119229,'Crime'),(7977,119237,'Comedy'),(7978,119237,'Drama'),(7979,119250,'Crime'),(7980,119250,'Drama'),(7981,119250,'Romance'),(7982,119256,'Crime'),(7983,119256,'Drama'),(7984,119280,'Biography'),(7985,119280,'Drama'),(7986,119280,'History'),(7987,119282,'Adventure'),(7988,119282,'Animation'),(7989,119282,'Comedy'),(7990,119303,'Action'),(7991,119303,'Comedy'),(7992,119303,'Crime'),(7993,119313,'Drama'),(7994,119313,'Romance'),(7995,119324,'Comedy'),(7996,119324,'Drama'),(7997,119336,'Comedy'),(7998,119336,'Drama'),(7999,119345,'Horror'),(8000,119345,'Mystery'),(8001,119360,'Comedy'),(8002,119360,'Romance'),(8003,119361,'Comedy'),(8004,119361,'Drama'),(8005,119369,'Drama'),(8006,119369,'Romance'),(8007,119396,'Crime'),(8008,119396,'Drama'),(8009,119396,'Thriller'),(8010,119432,'Comedy'),(8011,119432,'Family'),(8012,119468,'Crime'),(8013,119468,'Drama'),(8014,119468,'Mystery'),(8015,119472,'Action'),(8016,119472,'Comedy'),(8017,119472,'Crime'),(8018,119488,'Crime'),(8019,119488,'Drama'),(8020,119488,'Mystery'),(8021,119517,'Comedy'),(8022,119517,'Drama'),(8023,119517,'Romance'),(8024,119528,'Comedy'),(8025,119528,'Fantasy'),(8026,119535,'Comedy'),(8027,119535,'Crime'),(8028,119535,'Fantasy'),(8029,119558,'Drama'),(8030,119558,'Romance'),(8031,119567,'Action'),(8032,119567,'Adventure'),(8033,119567,'Sci-Fi'),(8034,119590,'Drama'),(8035,119643,'Drama'),(8036,119643,'Fantasy'),(8037,119643,'Romance'),(8038,119654,'Action'),(8039,119654,'Adventure'),(8040,119654,'Comedy'),(8041,119698,'Action'),(8042,119698,'Adventure'),(8043,119698,'Animation'),(8044,119699,'Action'),(8045,119699,'Comedy'),(8046,119699,'Crime'),(8047,119707,'Action'),(8048,119707,'Adventure'),(8049,119707,'Fantasy'),(8050,119723,'Drama'),(8051,119723,'Romance'),(8052,119731,'Action'),(8053,119731,'Crime'),(8054,119731,'Drama'),(8055,119738,'Comedy'),(8056,119738,'Drama'),(8057,119738,'Romance'),(8058,119778,'Comedy'),(8059,119778,'Drama'),(8060,119778,'Romance'),(8061,119784,'Fantasy'),(8062,119784,'Horror'),(8063,119784,'Mystery'),(8064,119809,'Comedy'),(8065,119809,'Drama'),(8066,119809,'Sci-Fi'),(8067,119822,'Comedy'),(8068,119822,'Drama'),(8069,119822,'Romance'),(8070,119859,'Drama'),(8071,119859,'History'),(8072,119859,'War'),(8073,119874,'Action'),(8074,119874,'Drama'),(8075,119874,'Thriller'),(8076,119891,'Horror'),(8077,119891,'Sci-Fi'),(8078,119891,'Thriller'),(8079,119896,'Comedy'),(8080,119896,'Drama'),(8081,119896,'Romance'),(8082,119918,'Adventure'),(8083,119918,'Animation'),(8084,119918,'Comedy'),(8085,119925,'Action'),(8086,119925,'Adventure'),(8087,119925,'Drama'),(8088,119942,'Comedy'),(8089,119942,'Drama'),(8090,120032,'Comedy'),(8091,120082,'Horror'),(8092,120082,'Mystery'),(8093,120089,'Crime'),(8094,120089,'Drama'),(8095,120089,'Mystery'),(8096,120094,'Biography'),(8097,120094,'Drama'),(8098,120094,'Music'),(8099,120102,'Adventure'),(8100,120102,'Biography'),(8101,120102,'Drama'),(8102,120108,'Drama'),(8103,120108,'Romance'),(8104,120131,'Adventure'),(8105,120131,'Animation'),(8106,120131,'Drama'),(8107,120133,'Comedy'),(8108,120133,'Family'),(8109,120133,'Fantasy'),(8110,120148,'Comedy'),(8111,120148,'Drama'),(8112,120148,'Fantasy'),(8113,120152,'Crime'),(8114,120152,'Drama'),(8115,120152,'Mystery'),(8116,120169,'Comedy'),(8117,120169,'Drama'),(8118,120177,'Action'),(8119,120177,'Crime'),(8120,120177,'Drama'),(8121,120184,'Action'),(8122,120184,'Mystery'),(8123,120184,'Sci-Fi'),(8124,120185,'Comedy'),(8125,120185,'Family'),(8126,120185,'Music'),(8127,120201,'Action'),(8128,120201,'Adventure'),(8129,120201,'Sci-Fi'),(8130,120207,'Action'),(8131,120207,'Adventure'),(8132,120207,'Crime'),(8133,120265,'Drama'),(8134,120274,'Drama'),(8135,120274,'Musical'),(8136,120321,'Comedy'),(8137,120321,'Drama'),(8138,120338,'Drama'),(8139,120338,'Romance'),(8140,120347,'Action'),(8141,120347,'Adventure'),(8142,120347,'Thriller'),(8143,120363,'Adventure'),(8144,120363,'Animation'),(8145,120363,'Comedy'),(8146,120382,'Comedy'),(8147,120382,'Drama'),(8148,120389,'Action'),(8149,120389,'Adventure'),(8150,120389,'Family'),(8151,120434,'Comedy'),(8152,120449,'Drama'),(8153,120458,'Action'),(8154,120458,'Horror'),(8155,120458,'Sci-Fi'),(8156,120461,'Action'),(8157,120461,'Drama'),(8158,120461,'Sci-Fi'),(8159,120484,'Comedy'),(8160,120484,'Sport'),(8161,120493,'Drama'),(8162,120512,'Action'),(8163,120512,'Adventure'),(8164,120512,'Comedy'),(8165,120514,'Biography'),(8166,120514,'Drama'),(8167,120514,'Romance'),(8168,120521,'Drama'),(8169,120533,'Comedy'),(8170,120533,'Drama'),(8171,120536,'Comedy'),(8172,120536,'Thriller'),(8173,120577,'Drama'),(8174,120577,'Music'),(8175,120586,'Crime'),(8176,120586,'Drama'),(8177,120587,'Adventure'),(8178,120587,'Animation'),(8179,120587,'Comedy'),(8180,120591,'Action'),(8181,120591,'Adventure'),(8182,120591,'Sci-Fi'),(8183,120601,'Comedy'),(8184,120601,'Drama'),(8185,120601,'Fantasy'),(8186,120603,'Drama'),(8187,120603,'History'),(8188,120603,'Horror'),(8189,120611,'Action'),(8190,120611,'Horror'),(8191,120611,'Sci-Fi'),(8192,120613,'Drama'),(8193,120613,'Romance'),(8194,120616,'Action'),(8195,120616,'Adventure'),(8196,120616,'Fantasy'),(8197,120620,'Drama'),(8198,120620,'Mystery'),(8199,120620,'Thriller'),(8200,120623,'Adventure'),(8201,120623,'Animation'),(8202,120623,'Comedy'),(8203,120630,'Adventure'),(8204,120630,'Animation'),(8205,120630,'Comedy'),(8206,120631,'Drama'),(8207,120631,'Romance'),(8208,120632,'Drama'),(8209,120632,'Fantasy'),(8210,120632,'Romance'),(8211,120643,'Drama'),(8212,120643,'Romance'),(8213,120646,'Drama'),(8214,120647,'Action'),(8215,120647,'Drama'),(8216,120647,'Sci-Fi'),(8217,120655,'Adventure'),(8218,120655,'Comedy'),(8219,120655,'Drama'),(8220,120657,'Action'),(8221,120657,'Adventure'),(8222,120657,'History'),(8223,120660,'Action'),(8224,120660,'Thriller'),(8225,120663,'Drama'),(8226,120663,'Mystery'),(8227,120663,'Thriller'),(8228,120667,'Action'),(8229,120667,'Adventure'),(8230,120667,'Fantasy'),(8231,120669,'Adventure'),(8232,120669,'Comedy'),(8233,120669,'Drama'),(8234,120679,'Biography'),(8235,120679,'Drama'),(8236,120679,'Romance'),(8237,120681,'Horror'),(8238,120681,'Mystery'),(8239,120681,'Thriller'),(8240,120685,'Action'),(8241,120685,'Sci-Fi'),(8242,120685,'Thriller'),(8243,120686,'Comedy'),(8244,120686,'Drama'),(8245,120689,'Crime'),(8246,120689,'Drama'),(8247,120689,'Fantasy'),(8248,120692,'Comedy'),(8249,120694,'Horror'),(8250,120694,'Thriller'),(8251,120696,'Action'),(8252,120696,'Crime'),(8253,120696,'Drama'),(8254,120728,'Comedy'),(8255,120728,'Drama'),(8256,120728,'Music'),(8257,120735,'Action'),(8258,120735,'Comedy'),(8259,120735,'Crime'),(8260,120737,'Action'),(8261,120737,'Adventure'),(8262,120737,'Drama'),(8263,120738,'Action'),(8264,120738,'Adventure'),(8265,120738,'Family'),(8266,120744,'Action'),(8267,120744,'Adventure'),(8268,120744,'Drama'),(8269,120746,'Action'),(8270,120746,'Adventure'),(8271,120746,'Comedy'),(8272,120749,'Action'),(8273,120749,'Crime'),(8274,120749,'Drama'),(8275,120755,'Action'),(8276,120755,'Adventure'),(8277,120755,'Thriller'),(8278,120756,'Adventure'),(8279,120756,'Drama'),(8280,120756,'Thriller'),(8281,120762,'Adventure'),(8282,120762,'Animation'),(8283,120762,'Comedy'),(8284,120768,'Action'),(8285,120768,'Crime'),(8286,120768,'Drama'),(8287,120777,'Comedy'),(8288,120777,'Drama'),(8289,120777,'Romance'),(8290,120780,'Comedy'),(8291,120780,'Crime'),(8292,120780,'Drama'),(8293,120783,'Adventure'),(8294,120783,'Comedy'),(8295,120783,'Drama'),(8296,120784,'Action'),(8297,120784,'Crime'),(8298,120784,'Drama'),(8299,120787,'Crime'),(8300,120787,'Drama'),(8301,120787,'Thriller'),(8302,120789,'Comedy'),(8303,120789,'Drama'),(8304,120789,'Fantasy'),(8305,120791,'Comedy'),(8306,120791,'Drama'),(8307,120791,'Fantasy'),(8308,120794,'Adventure'),(8309,120794,'Animation'),(8310,120794,'Drama'),(8311,120800,'Adventure'),(8312,120800,'Animation'),(8313,120800,'Comedy'),(8314,120802,'Drama'),(8315,120802,'Music'),(8316,120802,'Mystery'),(8317,120804,'Action'),(8318,120804,'Horror'),(8319,120804,'Sci-Fi'),(8320,120812,'Action'),(8321,120812,'Comedy'),(8322,120812,'Crime'),(8323,120813,'Comedy'),(8324,120813,'Crime'),(8325,120815,'Drama'),(8326,120815,'War'),(8327,120828,'Action'),(8328,120828,'Adventure'),(8329,120828,'Comedy'),(8330,120831,'Comedy'),(8331,120831,'Drama'),(8332,120832,'Crime'),(8333,120832,'Mystery'),(8334,120832,'Thriller'),(8335,120841,'Action'),(8336,120841,'Horror'),(8337,120841,'Sci-Fi'),(8338,120844,'Action'),(8339,120844,'Adventure'),(8340,120844,'Sci-Fi'),(8341,120855,'Adventure'),(8342,120855,'Animation'),(8343,120855,'Comedy'),(8344,120857,'Comedy'),(8345,120857,'Drama'),(8346,120857,'War'),(8347,120863,'Drama'),(8348,120863,'History'),(8349,120863,'War'),(8350,120866,'Drama'),(8351,120866,'History'),(8352,120866,'Thriller'),(8353,120877,'Action'),(8354,120877,'Horror'),(8355,120877,'Thriller'),(8356,120879,'Drama'),(8357,120879,'Music'),(8358,120888,'Comedy'),(8359,120888,'Music'),(8360,120888,'Romance'),(8361,120889,'Drama'),(8362,120889,'Fantasy'),(8363,120889,'Romance'),(8364,120890,'Crime'),(8365,120890,'Drama'),(8366,120890,'Mystery'),(8367,120891,'Action'),(8368,120891,'Comedy'),(8369,120891,'Sci-Fi'),(8370,120902,'Drama'),(8371,120902,'Mystery'),(8372,120902,'Sci-Fi'),(8373,120903,'Action'),(8374,120903,'Adventure'),(8375,120903,'Sci-Fi'),(8376,120907,'Horror'),(8377,120907,'Mystery'),(8378,120907,'Sci-Fi'),(8379,120910,'Animation'),(8380,120910,'Family'),(8381,120910,'Fantasy'),(8382,120912,'Action'),(8383,120912,'Adventure'),(8384,120912,'Comedy'),(8385,120913,'Action'),(8386,120913,'Adventure'),(8387,120913,'Animation'),(8388,120915,'Action'),(8389,120915,'Adventure'),(8390,120915,'Fantasy'),(8391,120917,'Adventure'),(8392,120917,'Animation'),(8393,120917,'Comedy'),(8394,121164,'Animation'),(8395,121164,'Drama'),(8396,121164,'Family'),(8397,121401,'Drama'),(8398,121403,'Comedy'),(8399,121765,'Action'),(8400,121765,'Adventure'),(8401,121765,'Fantasy'),(8402,121766,'Action'),(8403,121766,'Adventure'),(8404,121766,'Fantasy'),(8405,122151,'Action'),(8406,122151,'Crime'),(8407,122151,'Thriller'),(8408,122459,'Comedy'),(8409,122459,'Drama'),(8410,122459,'Romance'),(8411,122648,'Comedy'),(8412,122648,'Drama'),(8413,122690,'Action'),(8414,122690,'Crime'),(8415,122690,'Thriller'),(8416,122718,'Action'),(8417,122718,'Adventure'),(8418,122718,'Comedy'),(8419,122933,'Comedy'),(8420,122933,'Crime'),(8421,123209,'Comedy'),(8422,123209,'Drama'),(8423,123209,'Romance'),(8424,123755,'Horror'),(8425,123755,'Mystery'),(8426,123755,'Sci-Fi'),(8427,123865,'Biography'),(8428,123865,'Drama'),(8429,123865,'Romance'),(8430,123948,'Crime'),(8431,123948,'Horror'),(8432,123948,'Mystery'),(8433,123987,'Comedy'),(8434,123987,'Family'),(8435,124298,'Comedy'),(8436,124298,'Drama'),(8437,124298,'Romance'),(8438,124315,'Drama'),(8439,124315,'Romance'),(8440,124317,'Drama'),(8441,124595,'Drama'),(8442,124595,'Romance'),(8443,124595,'Thriller'),(8444,124819,'Comedy'),(8445,124829,'Comedy'),(8446,124829,'Crime'),(8447,124829,'Drama'),(8448,124901,'Action'),(8449,124901,'Comedy'),(8450,124901,'Crime'),(8451,125022,'Comedy'),(8452,125022,'Crime'),(8453,125022,'Romance'),(8454,125209,'Comedy'),(8455,125209,'Romance'),(8456,125439,'Comedy'),(8457,125439,'Drama'),(8458,125439,'Romance'),(8459,125659,'Drama'),(8460,125659,'Mystery'),(8461,125659,'Sci-Fi'),(8462,125664,'Biography'),(8463,125664,'Comedy'),(8464,125664,'Drama'),(8465,126004,'Drama'),(8466,126004,'Fantasy'),(8467,126004,'Horror'),(8468,126029,'Adventure'),(8469,126029,'Animation'),(8470,126029,'Comedy'),(8471,126604,'Comedy'),(8472,126604,'Drama'),(8473,126774,'Crime'),(8474,126774,'Drama'),(8475,126774,'Horror'),(8476,126886,'Comedy'),(8477,126886,'Romance'),(8478,126916,'Drama'),(8479,126916,'Romance'),(8480,126916,'Sport'),(8481,127296,'Comedy'),(8482,127296,'Romance'),(8483,127302,'Sci-Fi'),(8484,127536,'Biography'),(8485,127536,'Drama'),(8486,127536,'History'),(8487,127723,'Comedy'),(8488,127723,'Romance'),(8489,127948,'Comedy'),(8490,127948,'Short'),(8491,128442,'Crime'),(8492,128442,'Drama'),(8493,128445,'Comedy'),(8494,128445,'Drama'),(8495,128445,'Romance'),(8496,128853,'Comedy'),(8497,128853,'Drama'),(8498,128853,'Romance'),(8499,128996,'Family'),(8500,128996,'Fantasy'),(8501,128996,'Musical'),(8502,129023,'Drama'),(8503,129023,'Thriller'),(8504,129167,'Action'),(8505,129167,'Adventure'),(8506,129167,'Animation'),(8507,129290,'Biography'),(8508,129290,'Comedy'),(8509,129290,'Drama'),(8510,129332,'Adventure'),(8511,129332,'Drama'),(8512,129332,'Horror'),(8513,129387,'Comedy'),(8514,129387,'Romance'),(8515,129924,'Adventure'),(8516,129924,'Animation'),(8517,129924,'Drama'),(8518,130018,'Horror'),(8519,130018,'Mystery'),(8520,130018,'Thriller'),(8521,130141,'Drama'),(8522,130236,'Action'),(8523,130236,'Crime'),(8524,130236,'Thriller'),(8525,130444,'Biography'),(8526,130444,'Drama'),(8527,130444,'Romance'),(8528,130623,'Adventure'),(8529,130623,'Animation'),(8530,130623,'Drama'),(8531,130827,'Action'),(8532,130827,'Crime'),(8533,130827,'Thriller'),(8534,131325,'Comedy'),(8535,131335,'Adventure'),(8536,131335,'Crime'),(8537,131335,'Drama'),(8538,131369,'Comedy'),(8539,131369,'Drama'),(8540,131620,'Adventure'),(8541,131620,'Comedy'),(8542,131620,'Drama'),(8543,131646,'Action'),(8544,131646,'Adventure'),(8545,131646,'Sci-Fi'),(8546,131857,'Comedy'),(8547,131857,'Sport'),(8548,131934,'Horror'),(8549,131934,'Short'),(8550,132134,'History'),(8551,132134,'Short'),(8552,132347,'Action'),(8553,132347,'Comedy'),(8554,132347,'Fantasy'),(8555,132477,'Biography'),(8556,132477,'Drama'),(8557,132477,'Family'),(8558,133046,'Comedy'),(8559,133046,'Thriller'),(8560,133093,'Action'),(8561,133093,'Sci-Fi'),(8562,133152,'Action'),(8563,133152,'Adventure'),(8564,133152,'Sci-Fi'),(8565,133189,'Comedy'),(8566,133189,'Drama'),(8567,133189,'Music'),(8568,133240,'Adventure'),(8569,133240,'Animation'),(8570,133240,'Family'),(8571,133385,'Adventure'),(8572,133385,'Comedy'),(8573,133385,'Family'),(8574,133751,'Horror'),(8575,133751,'Mystery'),(8576,133751,'Sci-Fi'),(8577,134067,'Adventure'),(8578,134067,'Animation'),(8579,134067,'Comedy'),(8580,134084,'Horror'),(8581,134084,'Mystery'),(8582,134119,'Crime'),(8583,134119,'Drama'),(8584,134119,'Thriller'),(8585,134230,'Comedy'),(8586,134230,'Crime'),(8587,134273,'Crime'),(8588,134273,'Drama'),(8589,134273,'Mystery'),(8590,134619,'Horror'),(8591,134619,'Mystery'),(8592,134619,'Sci-Fi'),(8593,134847,'Action'),(8594,134847,'Horror'),(8595,134847,'Sci-Fi'),(8596,134928,'Drama'),(8597,134928,'Fantasy'),(8598,134928,'Horror'),(8599,134983,'Horror'),(8600,134983,'Sci-Fi'),(8601,134983,'Thriller'),(8602,135033,'Fantasy'),(8603,135033,'Horror'),(8604,135122,'Comedy'),(8605,135122,'Fantasy'),(8606,135122,'Short'),(8607,135179,'Comedy'),(8608,135179,'Fantasy'),(8609,135179,'Short'),(8610,135180,'Horror'),(8611,135180,'Short'),(8612,135453,'Comedy'),(8613,135453,'Music'),(8614,135453,'Short'),(8615,135631,'Fantasy'),(8616,135631,'Short'),(8617,135659,'Drama'),(8618,135659,'Fantasy'),(8619,135659,'Horror'),(8620,135690,'Short'),(8621,135696,'Comedy'),(8622,135696,'Short'),(8623,136244,'Adventure'),(8624,136244,'Drama'),(8625,136244,'Romance'),(8626,137226,'Adventure'),(8627,137226,'Animation'),(8628,137226,'Comedy'),(8629,137338,'Comedy'),(8630,137338,'Drama'),(8631,137338,'Romance'),(8632,137523,'Drama'),(8633,138097,'Comedy'),(8634,138097,'Drama'),(8635,138097,'History'),(8636,138510,'Comedy'),(8637,138510,'Fantasy'),(8638,138510,'Horror'),(8639,138524,'Comedy'),(8640,138524,'Crime'),(8641,138524,'Romance'),(8642,138704,'Drama'),(8643,138704,'Horror'),(8644,138704,'Mystery'),(8645,138749,'Adventure'),(8646,138749,'Animation'),(8647,138749,'Comedy'),(8648,139134,'Drama'),(8649,139134,'Romance'),(8650,139151,'Action'),(8651,139151,'Comedy'),(8652,139151,'Drama'),(8653,139239,'Comedy'),(8654,139239,'Crime'),(8655,139362,'Drama'),(8656,139362,'Romance'),(8657,139414,'Action'),(8658,139414,'Comedy'),(8659,139414,'Horror'),(8660,139462,'Drama'),(8661,139462,'Romance'),(8662,139654,'Action'),(8663,139654,'Crime'),(8664,139654,'Drama'),(8665,140379,'Comedy'),(8666,140379,'Fantasy'),(8667,140379,'Romance'),(8668,140627,'Comedy'),(8669,140888,'Drama'),(8670,141098,'Comedy'),(8671,141098,'Romance'),(8672,142032,'Adventure'),(8673,142032,'Drama'),(8674,142032,'Sci-Fi'),(8675,142233,'Action'),(8676,142233,'Adventure'),(8677,142233,'Animation'),(8678,142237,'Action'),(8679,142237,'Animation'),(8680,142237,'Fantasy'),(8681,142243,'Action'),(8682,142243,'Animation'),(8683,142243,'Sci-Fi'),(8684,142245,'Action'),(8685,142245,'Animation'),(8686,142245,'Drama'),(8687,142247,'Action'),(8688,142247,'Adventure'),(8689,142247,'Animation'),(8690,142342,'Comedy'),(8691,142342,'Drama'),(8692,142688,'Mystery'),(8693,142688,'Thriller'),(8694,142964,'Drama'),(8695,143088,'Drama'),(8696,143088,'Romance'),(8697,143127,'Action'),(8698,143127,'Animation'),(8699,143127,'Crime'),(8700,143145,'Action'),(8701,143145,'Adventure'),(8702,143145,'Thriller'),(8703,143348,'Action'),(8704,143348,'Thriller'),(8705,143808,'Adventure'),(8706,143808,'Animation'),(8707,143808,'Drama'),(8708,144084,'Crime'),(8709,144084,'Drama'),(8710,144084,'Horror'),(8711,144117,'Action'),(8712,144117,'Crime'),(8713,144117,'Thriller'),(8714,144120,'Comedy'),(8715,144120,'Horror'),(8716,144120,'Thriller'),(8717,144168,'Comedy'),(8718,144640,'Comedy'),(8719,144640,'Romance'),(8720,144715,'Comedy'),(8721,144715,'Drama'),(8722,144814,'Drama'),(8723,144814,'Horror'),(8724,144814,'Sci-Fi'),(8725,145487,'Action'),(8726,145487,'Adventure'),(8727,145487,'Sci-Fi'),(8728,145531,'Horror'),(8729,145531,'Mystery'),(8730,145660,'Action'),(8731,145660,'Adventure'),(8732,145660,'Comedy'),(8733,145937,'Documentary'),(8734,145937,'Music'),(8735,146309,'Drama'),(8736,146309,'History'),(8737,146309,'Thriller'),(8738,146316,'Action'),(8739,146316,'Adventure'),(8740,146316,'Fantasy'),(8741,146336,'Horror'),(8742,146336,'Mystery'),(8743,146336,'Thriller'),(8744,146468,'Drama'),(8745,146838,'Drama'),(8746,146838,'Sport'),(8747,146882,'Comedy'),(8748,146882,'Drama'),(8749,146882,'Music'),(8750,147004,'Comedy'),(8751,147004,'Drama'),(8752,147004,'Music'),(8753,147612,'Comedy'),(8754,147612,'Drama'),(8755,147800,'Comedy'),(8756,147800,'Drama'),(8757,147800,'Romance'),(8758,149261,'Action'),(8759,149261,'Adventure'),(8760,149261,'Sci-Fi'),(8761,149691,'Comedy'),(8762,149691,'Drama'),(8763,150377,'Crime'),(8764,150377,'Drama'),(8765,150377,'Mystery'),(8766,150662,'Comedy'),(8767,150662,'Drama'),(8768,150662,'Romance'),(8769,151568,'Biography'),(8770,151568,'Comedy'),(8771,151568,'Drama'),(8772,151691,'Drama'),(8773,151691,'Romance'),(8774,151738,'Comedy'),(8775,151738,'Drama'),(8776,151738,'Romance'),(8777,151804,'Comedy'),(8778,152930,'Action'),(8779,152930,'Comedy'),(8780,152930,'Crime'),(8781,154152,'Documentary'),(8782,154152,'Short'),(8783,154420,'Drama'),(8784,154421,'Comedy'),(8785,154421,'Drama'),(8786,154506,'Crime'),(8787,154506,'Mystery'),(8788,154506,'Thriller'),(8789,154683,'Crime'),(8790,154683,'Drama'),(8791,154683,'Horror'),(8792,155180,'Drama'),(8793,155267,'Crime'),(8794,155267,'Romance'),(8795,155267,'Thriller'),(8796,155711,'Crime'),(8797,155711,'Drama'),(8798,155723,'Drama'),(8799,155776,'Comedy'),(8800,155776,'Crime'),(8801,155776,'Thriller'),(8802,156031,'Animation'),(8803,156031,'Family'),(8804,156031,'Fantasy'),(8805,156729,'Comedy'),(8806,156729,'Drama'),(8807,156729,'Romance'),(8808,156757,'Comedy'),(8809,156757,'Drama'),(8810,156757,'Romance'),(8811,156807,'Comedy'),(8812,156843,'Horror'),(8813,156887,'Animation'),(8814,156887,'Crime'),(8815,156887,'Drama'),(8816,157503,'Comedy'),(8817,157503,'Romance'),(8818,157503,'Thriller'),(8819,158011,'Horror'),(8820,158371,'Comedy'),(8821,158371,'Drama'),(8822,158371,'Music'),(8823,158409,'Action'),(8824,158409,'Sci-Fi'),(8825,158409,'Sport'),(8826,158446,'Comedy'),(8827,158446,'Drama'),(8828,158446,'Romance'),(8829,158692,'Comedy'),(8830,158692,'Drama'),(8831,158692,'Romance'),(8832,158714,'Action'),(8833,158714,'Crime'),(8834,158714,'Drama'),(8835,158811,'Adventure'),(8836,158811,'Comedy'),(8837,158811,'Family'),(8838,158983,'Animation'),(8839,158983,'Comedy'),(8840,158983,'Fantasy'),(8841,159097,'Drama'),(8842,159097,'Romance'),(8843,159272,'Comedy'),(8844,159272,'Drama'),(8845,159272,'War'),(8846,159273,'Action'),(8847,159273,'Drama'),(8848,159273,'Thriller'),(8849,159365,'Adventure'),(8850,159365,'Drama'),(8851,159365,'Romance'),(8852,160127,'Action'),(8853,160127,'Adventure'),(8854,160127,'Comedy'),(8855,160399,'Drama'),(8856,160399,'Mystery'),(8857,160399,'Sci-Fi'),(8858,160611,'Comedy'),(8859,160611,'Crime'),(8860,160862,'Comedy'),(8861,160862,'Romance'),(8862,161081,'Drama'),(8863,161081,'Horror'),(8864,161081,'Mystery'),(8865,161860,'Biography'),(8866,161860,'Drama'),(8867,161860,'History'),(8868,162222,'Adventure'),(8869,162222,'Drama'),(8870,162222,'Romance'),(8871,162346,'Comedy'),(8872,162346,'Drama'),(8873,162556,'Comedy'),(8874,162556,'Romance'),(8875,162661,'Fantasy'),(8876,162661,'Horror'),(8877,162661,'Mystery'),(8878,162710,'Comedy'),(8879,162710,'Music'),(8880,162710,'Romance'),(8881,162735,'Drama'),(8882,162973,'Comedy'),(8883,162973,'Drama'),(8884,162973,'Romance'),(8885,162983,'Comedy'),(8886,162983,'Drama'),(8887,163025,'Action'),(8888,163025,'Adventure'),(8889,163025,'Sci-Fi'),(8890,163178,'Thriller'),(8891,163187,'Comedy'),(8892,163187,'Romance'),(8893,163651,'Comedy'),(8894,163978,'Adventure'),(8895,163978,'Drama'),(8896,163978,'Romance'),(8897,163983,'Crime'),(8898,163983,'Drama'),(8899,163983,'Horror'),(8900,164052,'Action'),(8901,164052,'Horror'),(8902,164052,'Sci-Fi'),(8903,164184,'Action'),(8904,164184,'Drama'),(8905,164184,'Thriller'),(8906,164334,'Drama'),(8907,164334,'Thriller'),(8908,164912,'Adventure'),(8909,164912,'Comedy'),(8910,164912,'Family'),(8911,165078,'Drama'),(8912,165078,'Fantasy'),(8913,165499,'Action'),(8914,165499,'Adventure'),(8915,165499,'Fantasy'),(8916,165598,'Comedy'),(8917,165598,'Drama'),(8918,165598,'Romance'),(8919,165643,'Crime'),(8920,165643,'Drama'),(8921,165643,'Music'),(8922,165798,'Crime'),(8923,165798,'Drama'),(8924,165929,'Action'),(8925,165929,'Crime'),(8926,165929,'Thriller'),(8927,165982,'Adventure'),(8928,165982,'Animation'),(8929,165982,'Comedy'),(8930,166175,'Comedy'),(8931,166175,'Drama'),(8932,166222,'Comedy'),(8933,166222,'Short'),(8934,166276,'Animation'),(8935,166276,'Comedy'),(8936,166276,'Fantasy'),(8937,166485,'Drama'),(8938,166485,'History'),(8939,166485,'Romance'),(8940,166792,'Adventure'),(8941,166792,'Animation'),(8942,166792,'Comedy'),(8943,166813,'Adventure'),(8944,166813,'Animation'),(8945,166813,'Drama'),(8946,166896,'Biography'),(8947,166896,'Drama'),(8948,166924,'Drama'),(8949,166924,'Mystery'),(8950,166924,'Thriller'),(8951,166943,'Drama'),(8952,166943,'Music'),(8953,167190,'Action'),(8954,167190,'Adventure'),(8955,167190,'Fantasy'),(8956,167260,'Action'),(8957,167260,'Adventure'),(8958,167260,'Drama'),(8959,167261,'Action'),(8960,167261,'Adventure'),(8961,167261,'Drama'),(8962,167404,'Drama'),(8963,167404,'Mystery'),(8964,167404,'Thriller'),(8965,167456,'Action'),(8966,167456,'Adventure'),(8967,167456,'Comedy'),(8968,167752,'Mystery'),(8969,167752,'Thriller'),(8970,168629,'Crime'),(8971,168629,'Drama'),(8972,168629,'Musical'),(8973,168740,'Drama'),(8974,168740,'Romance'),(8975,168786,'Biography'),(8976,168786,'Drama'),(8977,168972,'Drama'),(8978,168987,'Comedy'),(8979,168987,'Drama'),(8980,168987,'Romance'),(8981,169102,'Drama'),(8982,169102,'Musical'),(8983,169102,'Sport'),(8984,169299,'Comedy'),(8985,169299,'Horror'),(8986,169547,'Drama'),(8987,169858,'Action'),(8988,169858,'Animation'),(8989,169858,'Drama'),(8990,170016,'Comedy'),(8991,170016,'Family'),(8992,170016,'Fantasy'),(8993,171363,'Fantasy'),(8994,171363,'Horror'),(8995,171363,'Mystery'),(8996,171725,'Adventure'),(8997,171725,'Animation'),(8998,171725,'Comedy'),(8999,171804,'Biography'),(9000,171804,'Crime'),(9001,171804,'Drama'),(9002,172156,'Action'),(9003,172156,'Comedy'),(9004,172156,'Crime'),(9005,172348,'Biography'),(9006,172348,'Drama'),(9007,172348,'Music'),(9008,172493,'Biography'),(9009,172493,'Drama'),(9010,172495,'Action'),(9011,172495,'Adventure'),(9012,172495,'Drama'),(9013,172543,'Comedy'),(9014,172543,'Romance'),(9015,172684,'Comedy'),(9016,172684,'Drama'),(9017,172684,'Musical'),(9018,173716,'Comedy'),(9019,173716,'Crime'),(9020,173716,'Thriller'),(9021,173840,'Action'),(9022,173840,'Adventure'),(9023,173840,'Animation'),(9024,173886,'Adventure'),(9025,173886,'Comedy'),(9026,173886,'Family'),(9027,174480,'Drama'),(9028,174480,'Romance'),(9029,174856,'Biography'),(9030,174856,'Drama'),(9031,174856,'Sport'),(9032,175142,'Comedy'),(9033,175526,'Horror'),(9034,175526,'Mystery'),(9035,175526,'Thriller'),(9036,175880,'Drama'),(9037,177242,'Comedy'),(9038,177242,'Drama'),(9039,177242,'Romance'),(9040,177507,'Comedy'),(9041,177507,'Drama'),(9042,177707,'Music'),(9043,177707,'Short'),(9044,177721,'Drama'),(9045,177721,'Music'),(9046,177789,'Adventure'),(9047,177789,'Comedy'),(9048,177789,'Sci-Fi'),(9049,177971,'Action'),(9050,177971,'Adventure'),(9051,177971,'Drama'),(9052,178737,'Comedy'),(9053,178737,'Drama'),(9054,178737,'Romance'),(9055,178844,'Fantasy'),(9056,178868,'Horror'),(9057,178868,'Mystery'),(9058,179098,'Drama'),(9059,179098,'Romance'),(9060,179116,'Comedy'),(9061,179116,'Drama'),(9062,179116,'Romance'),(9063,179955,'Adventure'),(9064,179955,'Animation'),(9065,179955,'Comedy'),(9066,180052,'Action'),(9067,180052,'Comedy'),(9068,180052,'Sci-Fi'),(9069,180093,'Drama'),(9070,180679,'Comedy'),(9071,180679,'Fantasy'),(9072,181316,'Action'),(9073,181316,'Comedy'),(9074,181316,'Crime'),(9075,181536,'Drama'),(9076,181627,'Adventure'),(9077,181627,'Animation'),(9078,181627,'Family'),(9079,181689,'Action'),(9080,181689,'Crime'),(9081,181689,'Mystery'),(9082,181739,'Action'),(9083,181739,'Adventure'),(9084,181739,'Animation'),(9085,181852,'Action'),(9086,181852,'Sci-Fi'),(9087,181865,'Crime'),(9088,181865,'Drama'),(9089,181865,'Thriller'),(9090,181875,'Adventure'),(9091,181875,'Comedy'),(9092,181875,'Drama'),(9093,181984,'Crime'),(9094,181984,'Drama'),(9095,181984,'Thriller'),(9096,182508,'Drama'),(9097,182576,'Animation'),(9098,182576,'Comedy'),(9099,182789,'Drama'),(9100,182789,'Romance'),(9101,182789,'Sci-Fi'),(9102,183505,'Comedy'),(9103,183523,'Adventure'),(9104,183523,'Sci-Fi'),(9105,183523,'Thriller'),(9106,183649,'Crime'),(9107,183649,'Thriller'),(9108,183790,'Action'),(9109,183790,'Adventure'),(9110,183790,'Romance'),(9111,184894,'Action'),(9112,184894,'Adventure'),(9113,184894,'Comedy'),(9114,185014,'Comedy'),(9115,185014,'Drama'),(9116,185125,'Comedy'),(9117,185125,'Drama'),(9118,185125,'Romance'),(9119,185431,'Comedy'),(9120,185431,'Fantasy'),(9121,185906,'Drama'),(9122,185906,'History'),(9123,185906,'War'),(9124,185937,'Horror'),(9125,185937,'Mystery'),(9126,186566,'Action'),(9127,186566,'Adventure'),(9128,186566,'Thriller'),(9129,186589,'Comedy'),(9130,186589,'Crime'),(9131,186894,'Drama'),(9132,186894,'Romance'),(9133,187078,'Action'),(9134,187078,'Crime'),(9135,187078,'Thriller'),(9136,187393,'Action'),(9137,187393,'Drama'),(9138,187393,'History'),(9139,187512,'Comedy'),(9140,187512,'Romance'),(9141,187738,'Action'),(9142,187738,'Horror'),(9143,187738,'Sci-Fi'),(9144,188484,'Documentary'),(9145,188674,'Comedy'),(9146,188674,'Music'),(9147,189071,'Animation'),(9148,189071,'Comedy'),(9149,189071,'Family'),(9150,189219,'Drama'),(9151,189219,'Romance'),(9152,189498,'Drama'),(9153,189498,'Fantasy'),(9154,189498,'Short'),(9155,189584,'Comedy'),(9156,189584,'Drama'),(9157,190138,'Comedy'),(9158,190138,'Crime'),(9159,190332,'Action'),(9160,190332,'Adventure'),(9161,190332,'Drama'),(9162,190590,'Adventure'),(9163,190590,'Comedy'),(9164,190590,'Crime'),(9165,190641,'Action'),(9166,190641,'Adventure'),(9167,190641,'Animation'),(9168,190865,'Action'),(9169,190865,'Adventure'),(9170,190865,'Drama'),(9171,190975,'Drama'),(9172,190975,'Sci-Fi'),(9173,190975,'Thriller'),(9174,191397,'Comedy'),(9175,191397,'Sport'),(9176,191754,'Comedy'),(9177,191754,'Drama'),(9178,192023,'Drama'),(9179,192023,'Thriller'),(9180,192618,'Comedy'),(9181,192618,'Drama'),(9182,192618,'Family'),(9183,193019,'Animation'),(9184,193019,'Comedy'),(9185,193019,'Family'),(9186,193364,'Action'),(9187,193364,'Adventure'),(9188,193364,'Comedy'),(9189,193524,'Adventure'),(9190,193524,'Family'),(9191,193524,'Musical'),(9192,194722,'Action'),(9193,194722,'Romance'),(9194,194722,'Sci-Fi'),(9195,194800,'Action'),(9196,195234,'Comedy'),(9197,195234,'Crime'),(9198,195685,'Biography'),(9199,195685,'Drama'),(9200,195714,'Horror'),(9201,195714,'Thriller'),(9202,195945,'Comedy'),(9203,196069,'Adventure'),(9204,196069,'Drama'),(9205,196069,'Romance'),(9206,196229,'Comedy'),(9207,196378,'Comedy'),(9208,196378,'Horror'),(9209,196931,'Animation'),(9210,196931,'Comedy'),(9211,196931,'Family'),(9212,197096,'Comedy'),(9213,197096,'Drama'),(9214,197096,'Romance'),(9215,197626,'Drama'),(9216,197626,'Short'),(9217,198021,'Comedy'),(9218,198021,'Drama'),(9219,198021,'Romance'),(9220,198781,'Adventure'),(9221,198781,'Animation'),(9222,198781,'Comedy'),(9223,199626,'Mystery'),(9224,199626,'Thriller'),(9225,199683,'Comedy'),(9226,199683,'Drama'),(9227,199725,'Drama'),(9228,199725,'Romance'),(9229,199725,'Sport'),(9230,199753,'Action'),(9231,199753,'Sci-Fi'),(9232,199753,'Thriller'),(9233,199849,'Action'),(9234,199849,'Adventure'),(9235,200027,'Biography'),(9236,200027,'Comedy'),(9237,200027,'Drama'),(9238,200208,'Comedy'),(9239,200208,'Family'),(9240,200208,'Fantasy'),(9241,200465,'Crime'),(9242,200465,'Drama'),(9243,200465,'Thriller'),(9244,200550,'Comedy'),(9245,200550,'Drama'),(9246,200550,'Music'),(9247,200809,'Adventure'),(9248,200809,'Comedy'),(9249,200809,'Drama'),(9250,201820,'Drama'),(9251,202677,'Action'),(9252,202677,'Crime'),(9253,202677,'Drama'),(9254,203009,'Drama'),(9255,203009,'Musical'),(9256,203009,'Romance'),(9257,203019,'Biography'),(9258,203019,'Drama'),(9259,203040,'Drama'),(9260,203119,'Crime'),(9261,203119,'Drama'),(9262,203119,'Thriller'),(9263,203166,'Comedy'),(9264,203166,'Drama'),(9265,203166,'Romance'),(9266,203540,'Comedy'),(9267,203540,'Crime'),(9268,203540,'Drama'),(9269,203646,'Documentary'),(9270,203646,'Short'),(9271,203646,'Sport'),(9272,204082,'Drama'),(9273,204082,'History'),(9274,204640,'Comedy'),(9275,204640,'Romance'),(9276,204700,'Drama'),(9277,204700,'Horror'),(9278,204700,'Thriller'),(9279,204761,'Drama'),(9280,204946,'Comedy'),(9281,204946,'Romance'),(9282,204946,'Sport'),(9283,205000,'Comedy'),(9284,205000,'Romance'),(9285,205177,'Comedy'),(9286,205177,'Music'),(9287,205214,'Adventure'),(9288,205214,'Comedy'),(9289,205214,'Family'),(9290,205271,'Comedy'),(9291,205271,'Drama'),(9292,205271,'Romance'),(9293,205873,'Comedy'),(9294,205873,'Drama'),(9295,205873,'History'),(9296,206036,'Drama'),(9297,206036,'Romance'),(9298,206064,'Drama'),(9299,206064,'Family'),(9300,206064,'Sport'),(9301,206275,'Drama'),(9302,206275,'Music'),(9303,206275,'Romance'),(9304,206634,'Action'),(9305,206634,'Drama'),(9306,206634,'Sci-Fi'),(9307,206917,'Drama'),(9308,206917,'Music'),(9309,206917,'Romance'),(9310,207061,'Family'),(9311,207201,'Comedy'),(9312,207201,'Fantasy'),(9313,207201,'Romance'),(9314,207972,'Adventure'),(9315,207972,'Comedy'),(9316,207972,'Drama'),(9317,208092,'Comedy'),(9318,208092,'Crime'),(9319,208185,'Animation'),(9320,208185,'Comedy'),(9321,208185,'Family'),(9322,208502,'Animation'),(9323,208502,'Drama'),(9324,208502,'Fantasy'),(9325,208874,'Drama'),(9326,208874,'Thriller'),(9327,209095,'Comedy'),(9328,209095,'Fantasy'),(9329,209095,'Horror'),(9330,209144,'Mystery'),(9331,209144,'Thriller'),(9332,209163,'Action'),(9333,209163,'Adventure'),(9334,209163,'Fantasy'),(9335,209189,'Drama'),(9336,209475,'Comedy'),(9337,209475,'Romance'),(9338,209933,'Drama'),(9339,209933,'War'),(9340,209958,'Crime'),(9341,209958,'Horror'),(9342,209958,'Sci-Fi'),(9343,210044,'Drama'),(9344,210044,'Sci-Fi'),(9345,210070,'Drama'),(9346,210070,'Fantasy'),(9347,210070,'Horror'),(9348,210075,'Drama'),(9349,210075,'Sport'),(9350,210299,'Drama'),(9351,210299,'Music'),(9352,210358,'Drama'),(9353,210358,'Romance'),(9354,210567,'Comedy'),(9355,210567,'Drama'),(9356,210616,'Drama'),(9357,210616,'Music'),(9358,210616,'Romance'),(9359,210945,'Biography'),(9360,210945,'Drama'),(9361,210945,'Sport'),(9362,211181,'Adventure'),(9363,211181,'Comedy'),(9364,211181,'Family'),(9365,211443,'Action'),(9366,211443,'Horror'),(9367,211443,'Sci-Fi'),(9368,211915,'Comedy'),(9369,211915,'Romance'),(9370,211933,'Crime'),(9371,211933,'Drama'),(9372,211933,'Mystery'),(9373,212338,'Comedy'),(9374,212338,'Romance'),(9375,212346,'Action'),(9376,212346,'Comedy'),(9377,212346,'Crime'),(9378,212604,'Drama'),(9379,212712,'Drama'),(9380,212712,'Romance'),(9381,212712,'Sci-Fi'),(9382,212720,'Drama'),(9383,212720,'Sci-Fi'),(9384,212826,'Drama'),(9385,212985,'Crime'),(9386,212985,'Drama'),(9387,212985,'Thriller'),(9388,213121,'Comedy'),(9389,213149,'Action'),(9390,213149,'Drama'),(9391,213149,'History'),(9392,213203,'Adventure'),(9393,213203,'Animation'),(9394,213203,'Comedy'),(9395,213847,'Drama'),(9396,213847,'Romance'),(9397,213847,'War'),(9398,214529,'Fantasy'),(9399,214529,'Horror'),(9400,214529,'Mystery'),(9401,214641,'Action'),(9402,214641,'Adventure'),(9403,214641,'Comedy'),(9404,215033,'Drama'),(9405,215364,'Drama'),(9406,215545,'Comedy'),(9407,215545,'Drama'),(9408,215545,'Music'),(9409,215575,'Comedy'),(9410,215575,'Fantasy'),(9411,215575,'Horror'),(9412,215664,'Comedy'),(9413,215664,'Fantasy'),(9414,215664,'Short'),(9415,215737,'Comedy'),(9416,215737,'Fantasy'),(9417,215737,'Romance'),(9418,215750,'Action'),(9419,215750,'Drama'),(9420,215750,'War'),(9421,215817,'Comedy'),(9422,215817,'Short'),(9423,216016,'Fantasy'),(9424,216016,'Mystery'),(9425,216016,'Short'),(9426,216216,'Action'),(9427,216216,'Mystery'),(9428,216216,'Sci-Fi'),(9429,217355,'Drama'),(9430,217355,'Mystery'),(9431,217505,'Crime'),(9432,217505,'Drama'),(9433,217869,'Drama'),(9434,217869,'Mystery'),(9435,217869,'Sci-Fi'),(9436,217990,'Drama'),(9437,217990,'Family'),(9438,217990,'Sport'),(9439,218553,'Horror'),(9440,218553,'Mystery'),(9441,218553,'Sci-Fi'),(9442,218616,'Comedy'),(9443,218616,'Drama'),(9444,218817,'Action'),(9445,218817,'Crime'),(9446,218817,'Drama'),(9447,218839,'Comedy'),(9448,218922,'Drama'),(9449,218922,'Mystery'),(9450,218922,'Romance'),(9451,218967,'Comedy'),(9452,218967,'Drama'),(9453,218967,'Fantasy'),(9454,219400,'Comedy'),(9455,219400,'Romance'),(9456,219699,'Drama'),(9457,219699,'Fantasy'),(9458,219699,'Horror'),(9459,219822,'Comedy'),(9460,219822,'Drama'),(9461,219964,'Horror'),(9462,219964,'Short'),(9463,220099,'Adventure'),(9464,220099,'Animation'),(9465,220099,'Comedy'),(9466,221027,'Biography'),(9467,221027,'Crime'),(9468,221027,'Drama'),(9469,221218,'Crime'),(9470,221218,'Drama'),(9471,221218,'Mystery'),(9472,221637,'Action'),(9473,221637,'Comedy'),(9474,221889,'Comedy'),(9475,221889,'Crime'),(9476,221889,'Drama'),(9477,222137,'Documentary'),(9478,222137,'Short'),(9479,222368,'Drama'),(9480,222368,'Horror'),(9481,222368,'Mystery'),(9482,223341,'Family'),(9483,223341,'Fantasy'),(9484,223341,'Short'),(9485,223755,'Fantasy'),(9486,223755,'Horror'),(9487,223755,'Short'),(9488,223897,'Drama'),(9489,224005,'Drama'),(9490,224005,'Mystery'),(9491,224005,'Thriller'),(9492,224240,'Drama'),(9493,224240,'Fantasy'),(9494,224240,'Short'),(9495,224412,'Drama'),(9496,224412,'Family'),(9497,227051,'Comedy'),(9498,227051,'Drama'),(9499,227200,'Action'),(9500,227438,'Comedy'),(9501,227438,'Short'),(9502,227445,'Action'),(9503,227445,'Crime'),(9504,227445,'Drama'),(9505,227538,'Action'),(9506,227538,'Adventure'),(9507,227538,'Comedy'),(9508,227984,'Action'),(9509,227984,'Comedy'),(9510,227984,'Crime'),(9511,228333,'Action'),(9512,228333,'Horror'),(9513,228333,'Sci-Fi'),(9514,229024,'Fantasy'),(9515,229024,'Short'),(9516,229217,'Documentary'),(9517,229217,'Short'),(9518,229235,'Documentary'),(9519,229235,'Short'),(9520,229340,'Crime'),(9521,229340,'Drama'),(9522,229340,'Romance'),(9523,229440,'Crime'),(9524,229440,'Horror'),(9525,229440,'Mystery'),(9526,230011,'Action'),(9527,230011,'Adventure'),(9528,230011,'Animation'),(9529,230183,'Comedy'),(9530,230183,'Drama'),(9531,230600,'Horror'),(9532,230600,'Mystery'),(9533,230600,'Thriller'),(9534,230746,'Documentary'),(9535,230746,'Short'),(9536,230838,'Drama'),(9537,230838,'Romance'),(9538,231844,'Drama'),(9539,231844,'Romance'),(9540,232500,'Action'),(9541,232500,'Crime'),(9542,232500,'Thriller'),(9543,232821,'Comedy'),(9544,232821,'Short'),(9545,233298,'Action'),(9546,233298,'Animation'),(9547,233298,'Crime'),(9548,233657,'Sci-Fi'),(9549,233657,'Thriller'),(9550,233841,'Drama'),(9551,233841,'Romance'),(9552,234215,'Action'),(9553,234215,'Sci-Fi'),(9554,234520,'Documentary'),(9555,234520,'Short'),(9556,235133,'Horror'),(9557,235133,'Mystery'),(9558,235154,'Comedy'),(9559,235154,'Crime'),(9560,235154,'Thriller'),(9561,235198,'Drama'),(9562,235198,'Horror'),(9563,235198,'Mystery'),(9564,235327,'Documentary'),(9565,235712,'Horror'),(9566,235712,'Mystery'),(9567,235712,'Thriller'),(9568,236027,'Action'),(9569,236027,'Comedy'),(9570,236027,'Crime'),(9571,236348,'Comedy'),(9572,236348,'Music'),(9573,236493,'Adventure'),(9574,236493,'Comedy'),(9575,236493,'Drama'),(9576,237534,'Action'),(9577,237534,'Adventure'),(9578,237534,'Drama'),(9579,237765,'Action'),(9580,237765,'Adventure'),(9581,237765,'Animation'),(9582,238380,'Action'),(9583,238380,'Drama'),(9584,238380,'Sci-Fi'),(9585,238546,'Drama'),(9586,238546,'Fantasy'),(9587,238546,'Horror'),(9588,238924,'Comedy'),(9589,238924,'Drama'),(9590,238936,'Drama'),(9591,238936,'Musical'),(9592,238936,'Romance'),(9593,240119,'Crime'),(9594,240119,'Drama'),(9595,240119,'Horror'),(9596,240200,'Drama'),(9597,240419,'Comedy'),(9598,240419,'Drama'),(9599,240462,'Comedy'),(9600,240462,'Family'),(9601,240462,'Fantasy'),(9602,240515,'Comedy'),(9603,240684,'Adventure'),(9604,240684,'Animation'),(9605,240684,'Comedy'),(9606,240772,'Crime'),(9607,240772,'Thriller'),(9608,240890,'Comedy'),(9609,240890,'Romance'),(9610,241073,'Drama'),(9611,241073,'Horror'),(9612,241073,'Mystery'),(9613,241266,'Short'),(9614,241266,'Sport'),(9615,241303,'Drama'),(9616,241303,'Romance'),(9617,241373,'Short'),(9618,241392,'Short'),(9619,241393,'Short'),(9620,241394,'Short'),(9621,241446,'Short'),(9622,241446,'Sport'),(9623,241527,'Adventure'),(9624,241527,'Family'),(9625,241527,'Fantasy'),(9626,241715,'Action'),(9627,241715,'Documentary'),(9628,241715,'Short'),(9629,241735,'Documentary'),(9630,241735,'Short'),(9631,241763,'Documentary'),(9632,241763,'Short'),(9633,242148,'Short'),(9634,242148,'Sport'),(9635,242423,'Comedy'),(9636,242423,'Mystery'),(9637,242423,'Sci-Fi'),(9638,242587,'Crime'),(9639,242587,'Drama'),(9640,242653,'Action'),(9641,242653,'Sci-Fi'),(9642,242998,'Horror'),(9643,242998,'Mystery'),(9644,242998,'Thriller'),(9645,243017,'Animation'),(9646,243017,'Drama'),(9647,243017,'Fantasy'),(9648,243155,'Comedy'),(9649,243155,'Drama'),(9650,243155,'Romance'),(9651,243255,'Drama'),(9652,243558,'Action'),(9653,243558,'Adventure'),(9654,243558,'Animation'),(9655,243655,'Comedy'),(9656,243655,'Romance'),(9657,243664,'Drama'),(9658,243862,'Comedy'),(9659,243862,'Drama'),(9660,243862,'Romance'),(9661,244000,'Action'),(9662,244000,'Western'),(9663,244244,'Action'),(9664,244244,'Crime'),(9665,244244,'Thriller'),(9666,244283,'Comedy'),(9667,244283,'Documentary'),(9668,244283,'Drama'),(9669,244297,'Drama'),(9670,244297,'Romance'),(9671,244316,'Drama'),(9672,244316,'Romance'),(9673,244353,'Drama'),(9674,244353,'Fantasy'),(9675,244730,'Crime'),(9676,244730,'Drama'),(9677,244870,'Drama'),(9678,244870,'Fantasy'),(9679,244870,'Horror'),(9680,244970,'Comedy'),(9681,244970,'Romance'),(9682,245046,'Drama'),(9683,245046,'Romance'),(9684,245046,'Thriller'),(9685,245238,'Drama'),(9686,245238,'Romance'),(9687,245429,'Adventure'),(9688,245429,'Animation'),(9689,245429,'Family'),(9690,245562,'Action'),(9691,245562,'Drama'),(9692,245562,'War'),(9693,245574,'Drama'),(9694,245674,'Fantasy'),(9695,245674,'Horror'),(9696,245712,'Drama'),(9697,245712,'Thriller'),(9698,246278,'Comedy'),(9699,246278,'Drama'),(9700,246278,'Family'),(9701,246460,'Action'),(9702,246460,'Adventure'),(9703,246460,'Thriller'),(9704,246464,'Comedy'),(9705,246464,'Crime'),(9706,246464,'Thriller'),(9707,246578,'Drama'),(9708,246578,'Mystery'),(9709,246578,'Sci-Fi'),(9710,246592,'Comedy'),(9711,246592,'Drama'),(9712,246592,'Romance'),(9713,246734,'Action'),(9714,246734,'Animation'),(9715,246734,'Crime'),(9716,246772,'Comedy'),(9717,246772,'Drama'),(9718,246772,'Romance'),(9719,246913,'Comedy'),(9720,246913,'Drama'),(9721,246913,'Fantasy'),(9722,247380,'Documentary'),(9723,247425,'Crime'),(9724,247425,'Drama'),(9725,247638,'Comedy'),(9726,247638,'Family'),(9727,247638,'Romance'),(9728,247745,'Comedy'),(9729,247745,'Crime'),(9730,247745,'Mystery'),(9731,247840,'Drama'),(9732,248126,'Drama'),(9733,248126,'Musical'),(9734,248126,'Romance'),(9735,248254,'Comedy'),(9736,248254,'Crime'),(9737,248408,'Comedy'),(9738,248408,'Western'),(9739,248845,'Comedy'),(9740,248845,'Drama'),(9741,248845,'Music'),(9742,249380,'Crime'),(9743,249380,'Drama'),(9744,249380,'Thriller'),(9745,249462,'Drama'),(9746,249462,'Music'),(9747,249577,'Adventure'),(9748,249577,'Animation'),(9749,249577,'Comedy'),(9750,250223,'Adventure'),(9751,250223,'Comedy'),(9752,250223,'Family'),(9753,250292,'Comedy'),(9754,250440,'Animation'),(9755,250440,'Comedy'),(9756,250494,'Comedy'),(9757,250494,'Romance'),(9758,250687,'Action'),(9759,250687,'Adventure'),(9760,250687,'Comedy'),(9761,250739,'Comedy'),(9762,250739,'Drama'),(9763,250797,'Drama'),(9764,250797,'Romance'),(9765,250797,'Thriller'),(9766,251075,'Comedy'),(9767,251075,'Sci-Fi'),(9768,251110,'Drama'),(9769,251110,'Romance'),(9770,251127,'Comedy'),(9771,251127,'Romance'),(9772,251382,'Adventure'),(9773,251382,'Comedy'),(9774,251382,'Drama'),(9775,251474,'Drama'),(9776,251736,'Horror'),(9777,252076,'Comedy'),(9778,252076,'Drama'),(9779,252076,'Romance'),(9780,252227,'Animation'),(9781,252227,'Comedy'),(9782,252227,'Family'),(9783,252444,'Biography'),(9784,252444,'Drama'),(9785,252503,'Action'),(9786,252503,'Crime'),(9787,252503,'Drama'),(9788,252684,'Drama'),(9789,252866,'Comedy'),(9790,253126,'Action'),(9791,253126,'Comedy'),(9792,253126,'Crime'),(9793,253474,'Biography'),(9794,253474,'Drama'),(9795,253474,'Music'),(9796,253556,'Action'),(9797,253556,'Adventure'),(9798,253556,'Fantasy'),(9799,253595,'Drama'),(9800,253754,'Action'),(9801,253754,'Adventure'),(9802,253754,'Sci-Fi'),(9803,253867,'Comedy'),(9804,253867,'Romance'),(9805,254686,'Drama'),(9806,254686,'Music'),(9807,255067,'Comedy'),(9808,255067,'Crime'),(9809,255067,'Horror'),(9810,255094,'Drama'),(9811,255589,'Drama'),(9812,255589,'Thriller'),(9813,256009,'Drama'),(9814,256009,'Horror'),(9815,256009,'Thriller'),(9816,256127,'Comedy'),(9817,256127,'Crime'),(9818,256127,'Drama'),(9819,256380,'Comedy'),(9820,256380,'Drama'),(9821,256380,'Fantasy'),(9822,256415,'Comedy'),(9823,256415,'Romance'),(9824,256524,'Comedy'),(9825,256524,'Crime'),(9826,256524,'Mystery'),(9827,256692,'Comedy'),(9828,256692,'Drama'),(9829,256692,'Musical'),(9830,256782,'Documentary'),(9831,256782,'Short'),(9832,256782,'Sport'),(9833,257044,'Crime'),(9834,257044,'Drama'),(9835,257044,'Thriller'),(9836,257076,'Action'),(9837,257076,'Adventure'),(9838,257076,'Crime'),(9839,257106,'Comedy'),(9840,257106,'Horror'),(9841,257360,'Drama'),(9842,257516,'Comedy'),(9843,257516,'Horror'),(9844,257568,'Action'),(9845,257568,'Adventure'),(9846,257568,'Comedy'),(9847,257654,'Comedy'),(9848,257654,'Short'),(9849,257756,'Crime'),(9850,257756,'Drama'),(9851,257756,'Mystery'),(9852,257778,'Adventure'),(9853,257778,'Animation'),(9854,257778,'Comedy'),(9855,258000,'Crime'),(9856,258000,'Drama'),(9857,258000,'Thriller'),(9858,258068,'Drama'),(9859,258068,'Romance'),(9860,258068,'Thriller'),(9861,258104,'Comedy'),(9862,258104,'Short'),(9863,258153,'Comedy'),(9864,258153,'Drama'),(9865,258153,'Sci-Fi'),(9866,258273,'Comedy'),(9867,258273,'Drama'),(9868,258273,'Romance'),(9869,258463,'Action'),(9870,258463,'Mystery'),(9871,258463,'Thriller'),(9872,259060,'Comedy'),(9873,259153,'Horror'),(9874,259153,'Mystery'),(9875,259153,'Thriller'),(9876,259288,'Drama'),(9877,259288,'Fantasy'),(9878,259288,'Mystery'),(9879,259324,'Action'),(9880,259324,'Fantasy'),(9881,259324,'Thriller'),(9882,259446,'Comedy'),(9883,259446,'Drama'),(9884,259446,'Romance'),(9885,259685,'Action'),(9886,259685,'Comedy'),(9887,259685,'Horror'),(9888,259711,'Fantasy'),(9889,259711,'Mystery'),(9890,259711,'Romance'),(9891,260191,'Action'),(9892,260191,'Animation'),(9893,260191,'Drama'),(9894,260332,'Comedy'),(9895,260332,'Drama'),(9896,260866,'Drama'),(9897,260866,'Mystery'),(9898,260866,'Thriller'),(9899,260991,'Action'),(9900,260991,'Drama'),(9901,260991,'Thriller'),(9902,261392,'Comedy'),(9903,263215,'Thriller'),(9904,263467,'Crime'),(9905,263467,'Drama'),(9906,263467,'Romance'),(9907,263488,'Horror'),(9908,263488,'Mystery'),(9909,263725,'Drama'),(9910,263757,'Comedy'),(9911,263757,'Drama'),(9912,263757,'Romance'),(9913,264150,'Comedy'),(9914,264150,'Romance'),(9915,264395,'Action'),(9916,264395,'Crime'),(9917,264395,'Drama'),(9918,264464,'Biography'),(9919,264464,'Crime'),(9920,264464,'Drama'),(9921,264508,'Fantasy'),(9922,264508,'Horror'),(9923,264508,'Mystery'),(9924,264616,'Crime'),(9925,264616,'Drama'),(9926,264616,'Thriller'),(9927,264689,'Crime'),(9928,264689,'Drama'),(9929,264734,'Adventure'),(9930,264734,'Animation'),(9931,264734,'Biography'),(9932,264761,'Comedy'),(9933,264761,'Drama'),(9934,264761,'Romance'),(9935,265086,'Action'),(9936,265086,'Drama'),(9937,265086,'History'),(9938,265104,'Action'),(9939,265104,'Horror'),(9940,265104,'Sci-Fi'),(9941,265116,'Comedy'),(9942,265116,'Crime'),(9943,265116,'Drama'),(9944,265171,'Comedy'),(9945,265171,'Horror'),(9946,265298,'Adventure'),(9947,265298,'Comedy'),(9948,265298,'Family'),(9949,265343,'Comedy'),(9950,265343,'Drama'),(9951,265343,'Romance'),(9952,265349,'Drama'),(9953,265349,'Horror'),(9954,265349,'Mystery'),(9955,265459,'Drama'),(9956,265459,'Thriller'),(9957,265632,'Adventure'),(9958,265632,'Animation'),(9959,265632,'Comedy'),(9960,265651,'Crime'),(9961,265651,'Drama'),(9962,265651,'Mystery'),(9963,265666,'Comedy'),(9964,265666,'Drama'),(9965,266075,'Drama'),(9966,266075,'Horror'),(9967,266075,'Romance'),(9968,266308,'Action'),(9969,266308,'Adventure'),(9970,266308,'Drama'),(9971,266452,'Comedy'),(9972,266452,'Crime'),(9973,266452,'Drama'),(9974,266543,'Adventure'),(9975,266543,'Animation'),(9976,266543,'Comedy'),(9977,266697,'Action'),(9978,266697,'Crime'),(9979,266697,'Thriller'),(9980,266915,'Action'),(9981,266915,'Comedy'),(9982,266915,'Crime'),(9983,266987,'Action'),(9984,266987,'Crime'),(9985,266987,'Thriller'),(9986,267626,'Drama'),(9987,267626,'History'),(9988,267626,'Thriller'),(9989,267804,'Action'),(9990,267804,'Sci-Fi'),(9991,267804,'Thriller'),(9992,267913,'Adventure'),(9993,267913,'Comedy'),(9994,267913,'Family'),(9995,268126,'Comedy'),(9996,268126,'Drama'),(9997,268380,'Adventure'),(9998,268380,'Animation'),(9999,268380,'Comedy'),(10000,268397,'Action'),(10001,268397,'Adventure'),(10002,268397,'Animation'),(10003,268695,'Action'),(10004,268695,'Adventure'),(10005,268695,'Sci-Fi'),(10006,268978,'Biography'),(10007,268978,'Drama'),(10008,268995,'Drama'),(10009,268995,'Romance'),(10010,269856,'Drama'),(10011,270288,'Biography'),(10012,270288,'Comedy'),(10013,270288,'Crime'),(10014,270688,'Comedy'),(10015,270688,'Drama'),(10016,270688,'Romance'),(10017,270980,'Comedy'),(10018,270980,'Romance'),(10019,271027,'Action'),(10020,271027,'Crime'),(10021,271027,'Thriller'),(10022,271219,'Comedy'),(10023,271219,'Drama'),(10024,271219,'Romance'),(10025,271271,'Adventure'),(10026,271271,'Comedy'),(10027,271271,'Family'),(10028,271972,'Action'),(10029,271972,'Adventure'),(10030,271972,'Horror'),(10031,272127,'Thriller'),(10032,272152,'Drama'),(10033,272152,'Mystery'),(10034,272152,'Sci-Fi'),(10035,272338,'Comedy'),(10036,272338,'Drama'),(10037,272338,'Romance'),(10038,273300,'Comedy'),(10039,273300,'Drama'),(10040,273300,'Romance'),(10041,273840,'Comedy'),(10042,273840,'Drama'),(10043,273840,'Romance'),(10044,274117,'Crime'),(10045,274117,'Drama'),(10046,274117,'Romance'),(10047,274155,'Comedy'),(10048,274166,'Action'),(10049,274166,'Adventure'),(10050,274166,'Comedy'),(10051,274309,'Biography'),(10052,274309,'Comedy'),(10053,274309,'Drama'),(10054,274497,'Drama'),(10055,274497,'Romance'),(10056,274558,'Drama'),(10057,274558,'Romance'),(10058,274812,'Comedy'),(10059,274812,'Drama'),(10060,274812,'Romance'),(10061,275022,'Comedy'),(10062,275022,'Drama'),(10063,275022,'Romance'),(10064,275277,'Action'),(10065,275277,'Animation'),(10066,275277,'Crime'),(10067,275847,'Adventure'),(10068,275847,'Animation'),(10069,275847,'Comedy'),(10070,275913,'Action'),(10071,275913,'Adventure'),(10072,275913,'Drama'),(10073,276613,'Drama'),(10074,276751,'Comedy'),(10075,276751,'Drama'),(10076,276751,'Romance'),(10077,276816,'Action'),(10078,276816,'Horror'),(10079,276816,'Mystery'),(10080,276919,'Crime'),(10081,276919,'Drama'),(10082,277027,'Drama'),(10083,277115,'Short'),(10084,277122,'Drama'),(10085,277296,'Action'),(10086,277296,'Adventure'),(10087,277296,'Fantasy'),(10088,277371,'Comedy'),(10089,277434,'Action'),(10090,277434,'Drama'),(10091,277434,'History'),(10092,277596,'Comedy'),(10093,277596,'Short'),(10094,277865,'Comedy'),(10095,277865,'Short'),(10096,277925,'Drama'),(10097,277986,'Horror'),(10098,277986,'Sci-Fi'),(10099,277986,'Thriller'),(10100,278435,'Crime'),(10101,278435,'Drama'),(10102,278435,'Thriller'),(10103,278488,'Comedy'),(10104,278488,'Fantasy'),(10105,278500,'Comedy'),(10106,278500,'Drama'),(10107,278500,'Romance'),(10108,278504,'Drama'),(10109,278504,'Mystery'),(10110,278504,'Thriller'),(10111,278731,'Drama'),(10112,278731,'Mystery'),(10113,278731,'Thriller'),(10114,279113,'Drama'),(10115,279113,'Romance'),(10116,279204,'Drama'),(10117,279231,'Comedy'),(10118,279231,'Family'),(10119,279231,'Fantasy'),(10120,279474,'Horror'),(10121,279493,'Action'),(10122,279493,'Comedy'),(10123,279778,'Drama'),(10124,279914,'Comedy'),(10125,279914,'Drama'),(10126,279967,'Adventure'),(10127,279967,'Animation'),(10128,279967,'Comedy'),(10129,279977,'Comedy'),(10130,279977,'Drama'),(10131,280460,'Comedy'),(10132,280460,'Drama'),(10133,280486,'Action'),(10134,280486,'Comedy'),(10135,280486,'Thriller'),(10136,280590,'Comedy'),(10137,280590,'Romance'),(10138,280609,'Action'),(10139,280609,'Horror'),(10140,280609,'Thriller'),(10141,280653,'Biography'),(10142,280653,'Crime'),(10143,280653,'Drama'),(10144,280665,'Crime'),(10145,280665,'Drama'),(10146,280665,'Mystery'),(10147,280707,'Comedy'),(10148,280707,'Drama'),(10149,280707,'Mystery'),(10150,280760,'Comedy'),(10151,280760,'Drama'),(10152,281358,'Drama'),(10153,281358,'Romance'),(10154,281373,'Adventure'),(10155,281373,'Comedy'),(10156,281373,'Family'),(10157,281634,'Adventure'),(10158,281634,'Animation'),(10159,281634,'Family'),(10160,282120,'Adventure'),(10161,282120,'Animation'),(10162,282120,'Comedy'),(10163,282123,'Drama'),(10164,282123,'Family'),(10165,282123,'Romance'),(10166,282209,'Fantasy'),(10167,282209,'Horror'),(10168,282209,'Mystery'),(10169,282418,'Drama'),(10170,282418,'Horror'),(10171,282418,'Sci-Fi'),(10172,282521,'Comedy'),(10173,282521,'Crime'),(10174,282521,'Family'),(10175,282593,'Comedy'),(10176,282593,'Romance'),(10177,282687,'Comedy'),(10178,282687,'Romance'),(10179,282753,'Crime'),(10180,282753,'Drama'),(10181,282753,'Family'),(10182,282771,'Biography'),(10183,282771,'Comedy'),(10184,282771,'Drama'),(10185,282936,'Adventure'),(10186,282936,'Family'),(10187,282936,'Fantasy'),(10188,283003,'Comedy'),(10189,283003,'Crime'),(10190,283003,'Drama'),(10191,283015,'Drama'),(10192,283015,'Sci-Fi'),(10193,283084,'Drama'),(10194,283084,'Family'),(10195,283084,'Fantasy'),(10196,283139,'Drama'),(10197,283426,'Adventure'),(10198,283426,'Animation'),(10199,283426,'Comedy'),(10200,283503,'Crime'),(10201,283503,'Drama'),(10202,283632,'Horror'),(10203,283632,'Mystery'),(10204,283632,'Thriller'),(10205,283832,'Comedy'),(10206,283832,'Crime'),(10207,283832,'Musical'),(10208,283877,'Horror'),(10209,283877,'Thriller'),(10210,284034,'Drama'),(10211,284034,'Mystery'),(10212,284034,'Thriller'),(10213,284363,'Comedy'),(10214,284363,'Drama'),(10215,284363,'Romance'),(10216,284478,'Drama'),(10217,284478,'Romance'),(10218,284565,'Horror'),(10219,284565,'Romance'),(10220,284655,'Crime'),(10221,284655,'Drama'),(10222,284655,'Thriller'),(10223,284837,'Comedy'),(10224,284978,'Mystery'),(10225,284978,'Sci-Fi'),(10226,284978,'Thriller'),(10227,285300,'Comedy'),(10228,285300,'Family'),(10229,285492,'Horror'),(10230,285492,'Mystery'),(10231,285492,'Sci-Fi'),(10232,285531,'Drama'),(10233,285531,'Horror'),(10234,285531,'Sci-Fi'),(10235,285627,'Animation'),(10236,285627,'Comedy'),(10237,285627,'Romance'),(10238,285663,'Drama'),(10239,285742,'Drama'),(10240,285742,'Romance'),(10241,285823,'Action'),(10242,285823,'Crime'),(10243,285823,'Thriller'),(10244,285861,'Crime'),(10245,285861,'Drama'),(10246,285861,'Thriller'),(10247,286106,'Drama'),(10248,286106,'Mystery'),(10249,286106,'Sci-Fi'),(10250,286112,'Action'),(10251,286112,'Comedy'),(10252,286112,'Fantasy'),(10253,286137,'Comedy'),(10254,286137,'Romance'),(10255,286244,'Adventure'),(10256,286244,'Animation'),(10257,286244,'Comedy'),(10258,286261,'Drama'),(10259,286499,'Comedy'),(10260,286499,'Drama'),(10261,286499,'Romance'),(10262,286716,'Action'),(10263,286716,'Sci-Fi'),(10264,286751,'Horror'),(10265,286751,'Mystery'),(10266,286751,'Sci-Fi'),(10267,286788,'Comedy'),(10268,286788,'Drama'),(10269,286788,'Family'),(10270,286975,'Comedy'),(10271,286975,'Horror'),(10272,287467,'Drama'),(10273,287467,'Mystery'),(10274,287467,'Romance'),(10275,287471,'Comedy'),(10276,287471,'Drama'),(10277,287471,'Romance'),(10278,287717,'Action'),(10279,287717,'Adventure'),(10280,287717,'Comedy'),(10281,287978,'Action'),(10282,287978,'Crime'),(10283,287986,'Comedy'),(10284,287986,'Romance'),(10285,288439,'Crime'),(10286,288439,'Drama'),(10287,288439,'Thriller'),(10288,288441,'Animation'),(10289,288441,'Family'),(10290,288441,'Musical'),(10291,288477,'Horror'),(10292,288477,'Mystery'),(10293,288477,'Thriller'),(10294,289043,'Drama'),(10295,289043,'Horror'),(10296,289043,'Sci-Fi'),(10297,289408,'Action'),(10298,289408,'Adventure'),(10299,289408,'Animation'),(10300,289424,'Horror'),(10301,289765,'Crime'),(10302,289765,'Drama'),(10303,289765,'Thriller'),(10304,289879,'Drama'),(10305,289879,'Sci-Fi'),(10306,289879,'Thriller'),(10307,289944,'Thriller'),(10308,290002,'Comedy'),(10309,290002,'Romance'),(10310,290095,'Action'),(10311,290095,'Comedy'),(10312,290095,'Sci-Fi'),(10313,290334,'Action'),(10314,290334,'Sci-Fi'),(10315,290334,'Thriller'),(10316,290661,'Drama'),(10317,290664,'Drama'),(10318,290673,'Crime'),(10319,290673,'Drama'),(10320,290673,'Mystery'),(10321,290879,'Action'),(10322,290879,'Adventure'),(10323,290879,'Biography'),(10324,290916,'Comedy'),(10325,290916,'Drama'),(10326,290916,'Romance'),(10327,291213,'Drama'),(10328,291350,'Animation'),(10329,291350,'Drama'),(10330,291350,'Fantasy'),(10331,291476,'Comedy'),(10332,291476,'Crime'),(10333,291476,'Fantasy'),(10334,291579,'Romance'),(10335,291579,'Thriller'),(10336,291988,'Comedy'),(10337,291988,'Drama'),(10338,292506,'Action'),(10339,292506,'Thriller'),(10340,292644,'Comedy'),(10341,292644,'Drama'),(10342,292644,'Romance'),(10343,292963,'Crime'),(10344,292963,'Drama'),(10345,292963,'Thriller'),(10346,293113,'Drama'),(10347,293113,'Horror'),(10348,293113,'Musical'),(10349,293429,'Action'),(10350,293429,'Adventure'),(10351,293429,'Fantasy'),(10352,293508,'Drama'),(10353,293508,'Musical'),(10354,293508,'Romance'),(10355,293564,'Action'),(10356,293564,'Comedy'),(10357,293564,'Crime'),(10358,293662,'Action'),(10359,293662,'Crime'),(10360,293662,'Thriller'),(10361,293815,'Comedy'),(10362,293815,'Drama'),(10363,294425,'Comedy'),(10364,294425,'Drama'),(10365,294425,'Family'),(10366,294870,'Drama'),(10367,294870,'Musical'),(10368,294870,'Romance'),(10369,295178,'Action'),(10370,295178,'Adventure'),(10371,295178,'Comedy'),(10372,295297,'Adventure'),(10373,295297,'Family'),(10374,295297,'Fantasy'),(10375,295427,'Adventure'),(10376,295427,'Comedy'),(10377,295427,'Family'),(10378,295671,'Comedy'),(10379,295671,'Drama'),(10380,295700,'Horror'),(10381,295700,'Thriller'),(10382,295701,'Action'),(10383,295701,'Adventure'),(10384,295701,'Thriller'),(10385,295725,'Drama'),(10386,295725,'Fantasy'),(10387,295725,'Sci-Fi'),(10388,296042,'Action'),(10389,296042,'Crime'),(10390,296042,'Drama'),(10391,296166,'Comedy'),(10392,296166,'Drama'),(10393,296251,'Comedy'),(10394,296251,'Drama'),(10395,296251,'Family'),(10396,296572,'Action'),(10397,296572,'Adventure'),(10398,296572,'Sci-Fi'),(10399,296658,'Drama'),(10400,297037,'Comedy'),(10401,297037,'Drama'),(10402,297037,'Music'),(10403,297181,'Action'),(10404,297181,'Adventure'),(10405,297181,'Comedy'),(10406,297284,'Crime'),(10407,297284,'Horror'),(10408,297284,'Thriller'),(10409,297884,'Drama'),(10410,297884,'Romance'),(10411,298130,'Horror'),(10412,298130,'Mystery'),(10413,298148,'Adventure'),(10414,298148,'Animation'),(10415,298148,'Comedy'),(10416,298203,'Drama'),(10417,298203,'Music'),(10418,298228,'Drama'),(10419,298228,'Family'),(10420,298482,'Comedy'),(10421,298482,'Fantasy'),(10422,298814,'Action'),(10423,298814,'Adventure'),(10424,298814,'Sci-Fi'),(10425,299172,'Adventure'),(10426,299172,'Animation'),(10427,299172,'Comedy'),(10428,299658,'Comedy'),(10429,299658,'Crime'),(10430,299658,'Musical'),(10431,299930,'Comedy'),(10432,299930,'Crime'),(10433,299930,'Romance'),(10434,299937,'Drama'),(10435,299937,'Romance'),(10436,299977,'Action'),(10437,299977,'Adventure'),(10438,299977,'Drama'),(10439,300015,'Drama'),(10440,300015,'Romance'),(10441,300051,'Comedy'),(10442,300051,'Drama'),(10443,300051,'Romance'),(10444,300140,'Crime'),(10445,300140,'Drama'),(10446,300214,'Drama'),(10447,300270,'Drama'),(10448,300471,'Action'),(10449,300471,'Adventure'),(10450,300471,'Comedy'),(10451,300532,'Drama'),(10452,300532,'Romance'),(10453,300532,'Sport'),(10454,300556,'Action'),(10455,300556,'Adventure'),(10456,300556,'Sci-Fi'),(10457,300657,'Adventure'),(10458,300657,'Fantasy'),(10459,300949,'Thriller'),(10460,301199,'Crime'),(10461,301199,'Drama'),(10462,301199,'Thriller'),(10463,301357,'Comedy'),(10464,301357,'Drama'),(10465,301357,'Romance'),(10466,301429,'Action'),(10467,301429,'Comedy'),(10468,301429,'Fantasy'),(10469,301470,'Horror'),(10470,301526,'Adventure'),(10471,301526,'Animation'),(10472,301526,'Comedy'),(10473,301777,'Drama'),(10474,301777,'Romance'),(10475,301777,'Sci-Fi'),(10476,301978,'Drama'),(10477,302640,'Comedy'),(10478,302640,'Fantasy'),(10479,302674,'Adventure'),(10480,302674,'Drama'),(10481,302674,'Mystery'),(10482,302886,'Comedy'),(10483,303184,'Adventure'),(10484,303184,'Comedy'),(10485,303184,'Romance'),(10486,303297,'Documentary'),(10487,303297,'History'),(10488,303297,'Music'),(10489,303361,'Drama'),(10490,303361,'Horror'),(10491,303678,'Animation'),(10492,303678,'Drama'),(10493,303678,'Sci-Fi'),(10494,303816,'Horror'),(10495,303830,'Drama'),(10496,303933,'Comedy'),(10497,303933,'Drama'),(10498,303933,'Music'),(10499,304141,'Adventure'),(10500,304141,'Family'),(10501,304141,'Fantasy'),(10502,304377,'Comedy'),(10503,304377,'Romance'),(10504,304415,'Drama'),(10505,304669,'Comedy'),(10506,304669,'Family'),(10507,304669,'Fantasy'),(10508,305224,'Comedy'),(10509,305357,'Action'),(10510,305357,'Adventure'),(10511,305357,'Comedy'),(10512,305589,'Drama'),(10513,306047,'Comedy'),(10514,306432,'Comedy'),(10515,306432,'Drama'),(10516,306474,'Adventure'),(10517,306474,'Animation'),(10518,306474,'Drama'),(10519,306646,'Animation'),(10520,306646,'Drama'),(10521,306646,'Family'),(10522,306685,'Action'),(10523,306685,'Crime'),(10524,306685,'Drama'),(10525,306734,'Comedy'),(10526,306734,'Drama'),(10527,306734,'Romance'),(10528,306841,'Adventure'),(10529,306841,'Comedy'),(10530,306841,'Family'),(10531,307351,'Drama'),(10532,307351,'Music'),(10533,307453,'Adventure'),(10534,307453,'Animation'),(10535,307453,'Comedy'),(10536,307479,'Drama'),(10537,307479,'Mystery'),(10538,307479,'Romance'),(10539,307901,'Drama'),(10540,307987,'Comedy'),(10541,307987,'Crime'),(10542,307987,'Drama'),(10543,308379,'Drama'),(10544,308379,'Horror'),(10545,308379,'Mystery'),(10546,308644,'Biography'),(10547,308644,'Drama'),(10548,308644,'Family'),(10549,309396,'Documentary'),(10550,309396,'Short'),(10551,309396,'Western'),(10552,309402,'Documentary'),(10553,309402,'Short'),(10554,309402,'Western'),(10555,309404,'Drama'),(10556,309530,'Comedy'),(10557,309530,'Romance'),(10558,309593,'Horror'),(10559,309593,'Thriller'),(10560,309698,'Mystery'),(10561,309698,'Thriller'),(10562,309987,'Drama'),(10563,309987,'Romance'),(10564,310567,'Drama'),(10565,310567,'History'),(10566,310775,'Crime'),(10567,310775,'Drama'),(10568,310775,'Thriller'),(10569,310778,'Comedy'),(10570,310778,'Drama'),(10571,310778,'Mystery'),(10572,311113,'Action'),(10573,311113,'Adventure'),(10574,311113,'Drama'),(10575,311289,'Adventure'),(10576,311289,'Comedy'),(10577,311289,'Drama'),(10578,311361,'Action'),(10579,311361,'Comedy'),(10580,311361,'Horror'),(10581,311429,'Action'),(10582,311429,'Adventure'),(10583,311429,'Fantasy'),(10584,311648,'Comedy'),(10585,311648,'Drama'),(10586,311926,'Comedy'),(10587,311926,'Drama'),(10588,312004,'Adventure'),(10589,312004,'Animation'),(10590,312004,'Comedy'),(10591,312528,'Adventure'),(10592,312528,'Comedy'),(10593,312528,'Family'),(10594,312687,'Drama'),(10595,312728,'Comedy'),(10596,312728,'Short'),(10597,312843,'Crime'),(10598,312843,'Drama'),(10599,312843,'Horror'),(10600,313254,'Adventure'),(10601,313254,'Animation'),(10602,313254,'Comedy'),(10603,313255,'Animation'),(10604,313255,'Family'),(10605,313255,'Fantasy'),(10606,313410,'Crime'),(10607,313410,'Drama'),(10608,313410,'Romance'),(10609,313542,'Crime'),(10610,313542,'Drama'),(10611,313542,'Thriller'),(10612,313670,'Crime'),(10613,313670,'Drama'),(10614,313737,'Comedy'),(10615,313737,'Romance'),(10616,313773,'Animation'),(10617,313773,'Fantasy'),(10618,313773,'Short'),(10619,314063,'Drama'),(10620,314063,'Sci-Fi'),(10621,314063,'Thriller'),(10622,314331,'Comedy'),(10623,314331,'Drama'),(10624,314331,'Romance'),(10625,314353,'Action'),(10626,314353,'Drama'),(10627,314353,'Thriller'),(10628,314412,'Drama'),(10629,314412,'Romance'),(10630,314498,'Comedy'),(10631,314498,'Crime'),(10632,314498,'Drama'),(10633,314713,'Comedy'),(10634,314713,'Horror'),(10635,314713,'Sci-Fi'),(10636,315327,'Comedy'),(10637,315327,'Fantasy'),(10638,315733,'Crime'),(10639,315733,'Drama'),(10640,315733,'Thriller'),(10641,315850,'Crime'),(10642,315850,'Drama'),(10643,315983,'Crime'),(10644,315983,'Drama'),(10645,316396,'Adventure'),(10646,316396,'Family'),(10647,316396,'Fantasy'),(10648,316654,'Action'),(10649,316654,'Adventure'),(10650,316654,'Sci-Fi'),(10651,316732,'Action'),(10652,316732,'Comedy'),(10653,316732,'Crime'),(10654,317042,'Drama'),(10655,317042,'Horror'),(10656,317042,'Mystery'),(10657,317198,'Comedy'),(10658,317198,'Drama'),(10659,317198,'Romance'),(10660,317219,'Adventure'),(10661,317219,'Animation'),(10662,317219,'Comedy'),(10663,317248,'Crime'),(10664,317248,'Drama'),(10665,317303,'Comedy'),(10666,317303,'Family'),(10667,317640,'Comedy'),(10668,317676,'Action'),(10669,317676,'Adventure'),(10670,317676,'Horror'),(10671,317705,'Action'),(10672,317705,'Adventure'),(10673,317705,'Animation'),(10674,317740,'Action'),(10675,317740,'Crime'),(10676,317740,'Thriller'),(10677,317919,'Action'),(10678,317919,'Adventure'),(10679,317919,'Thriller'),(10680,318403,'Adventure'),(10681,318403,'Animation'),(10682,318403,'Comedy'),(10683,318411,'Drama'),(10684,318462,'Adventure'),(10685,318462,'Biography'),(10686,318462,'Drama'),(10687,318627,'Action'),(10688,318627,'Horror'),(10689,318627,'Sci-Fi'),(10690,318725,'Comedy'),(10691,318725,'Drama'),(10692,318997,'Drama'),(10693,318997,'Fantasy'),(10694,318997,'Romance'),(10695,319061,'Adventure'),(10696,319061,'Drama'),(10697,319061,'Fantasy'),(10698,319262,'Action'),(10699,319262,'Adventure'),(10700,319262,'Sci-Fi'),(10701,319343,'Adventure'),(10702,319343,'Comedy'),(10703,319343,'Family'),(10704,319769,'Comedy'),(10705,319769,'Drama'),(10706,319970,'Drama'),(10707,319970,'Horror'),(10708,319970,'Sci-Fi'),(10709,320661,'Action'),(10710,320661,'Adventure'),(10711,320661,'Drama'),(10712,320691,'Action'),(10713,320691,'Fantasy'),(10714,320691,'Thriller'),(10715,322259,'Action'),(10716,322259,'Crime'),(10717,322259,'Thriller'),(10718,322330,'Comedy'),(10719,322330,'Family'),(10720,322330,'Fantasy'),(10721,322802,'Action'),(10722,322802,'Comedy'),(10723,322802,'Documentary'),(10724,323120,'Drama'),(10725,323120,'Romance'),(10726,323298,'Drama'),(10727,323298,'Romance'),(10728,323810,'Biography'),(10729,323810,'Drama'),(10730,323810,'Family'),(10731,323944,'Drama'),(10732,323944,'History'),(10733,324013,'Biography'),(10734,324013,'Crime'),(10735,324013,'Drama'),(10736,324133,'Crime'),(10737,324133,'Drama'),(10738,324133,'Mystery'),(10739,324158,'Comedy'),(10740,324158,'Drama'),(10741,324197,'Drama'),(10742,324264,'Drama'),(10743,324264,'Romance'),(10744,325007,'Comedy'),(10745,325007,'Romance'),(10746,325055,'Biography'),(10747,325055,'Drama'),(10748,325055,'Romance'),(10749,325703,'Action'),(10750,325703,'Adventure'),(10751,325703,'Fantasy'),(10752,325710,'Action'),(10753,325710,'Drama'),(10754,325980,'Action'),(10755,325980,'Adventure'),(10756,325980,'Fantasy'),(10757,326977,'Crime'),(10758,326977,'Drama'),(10759,326977,'Mystery'),(10760,327056,'Crime'),(10761,327056,'Drama'),(10762,327056,'Mystery'),(10763,327084,'Adventure'),(10764,327084,'Animation'),(10765,327084,'Comedy'),(10766,327137,'Comedy'),(10767,327137,'Drama'),(10768,327137,'Family'),(10769,327162,'Comedy'),(10770,327162,'Horror'),(10771,327162,'Sci-Fi'),(10772,327247,'Comedy'),(10773,327247,'Crime'),(10774,327247,'Thriller'),(10775,327437,'Action'),(10776,327437,'Adventure'),(10777,327437,'Comedy'),(10778,327554,'Action'),(10779,327554,'Crime'),(10780,327554,'Fantasy'),(10781,327597,'Animation'),(10782,327597,'Drama'),(10783,327597,'Family'),(10784,327679,'Comedy'),(10785,327679,'Family'),(10786,327679,'Fantasy'),(10787,327753,'Comedy'),(10788,327753,'Drama'),(10789,327753,'Romance'),(10790,328400,'Drama'),(10791,328400,'War'),(10792,328538,'Drama'),(10793,328589,'Comedy'),(10794,328589,'Drama'),(10795,328589,'Romance'),(10796,328880,'Adventure'),(10797,328880,'Animation'),(10798,328880,'Comedy'),(10799,329101,'Action'),(10800,329101,'Horror'),(10801,329355,'Drama'),(10802,329679,'Drama'),(10803,329717,'Action'),(10804,329717,'Comedy'),(10805,329717,'Crime'),(10806,329767,'Comedy'),(10807,329767,'Drama'),(10808,329767,'Romance'),(10809,330099,'Drama'),(10810,330312,'Horror'),(10811,330373,'Adventure'),(10812,330373,'Family'),(10813,330373,'Fantasy'),(10814,330500,'Horror'),(10815,330500,'Mystery'),(10816,330501,'Horror'),(10817,330501,'Mystery'),(10818,330588,'Comedy'),(10819,330588,'Family'),(10820,330588,'Sport'),(10821,330793,'Action'),(10822,330793,'Crime'),(10823,330793,'Drama'),(10824,330859,'Animation'),(10825,330859,'Comedy'),(10826,330994,'Animation'),(10827,330994,'Family'),(10828,330994,'Fantasy'),(10829,331632,'Adventure'),(10830,331632,'Comedy'),(10831,331632,'Family'),(10832,331698,'Drama'),(10833,331933,'Comedy'),(10834,331933,'Crime'),(10835,332280,'Drama'),(10836,332280,'Romance'),(10837,332285,'Drama'),(10838,332375,'Comedy'),(10839,332375,'Drama'),(10840,332379,'Comedy'),(10841,332379,'Music'),(10842,332452,'Drama'),(10843,333766,'Comedy'),(10844,333766,'Drama'),(10845,333766,'Romance'),(10846,333780,'Comedy'),(10847,334541,'Action'),(10848,334541,'Adventure'),(10849,334541,'Comedy'),(10850,334754,'Drama'),(10851,334754,'History'),(10852,334754,'Romance'),(10853,334965,'Comedy'),(10854,334965,'Sport'),(10855,335119,'Biography'),(10856,335119,'Drama'),(10857,335119,'Romance'),(10858,335266,'Comedy'),(10859,335266,'Drama'),(10860,335345,'Drama'),(10861,336693,'Documentary'),(10862,336693,'Short'),(10863,337563,'Comedy'),(10864,337563,'Fantasy'),(10865,337563,'Romance'),(10866,337697,'Comedy'),(10867,337697,'Family'),(10868,337697,'Romance'),(10869,337711,'Adventure'),(10870,337711,'Animation'),(10871,337711,'Comedy'),(10872,337741,'Comedy'),(10873,337741,'Drama'),(10874,337741,'Romance'),(10875,337824,'Biography'),(10876,337824,'Drama'),(10877,337824,'History'),(10878,337909,'Comedy'),(10879,337909,'Drama'),(10880,337921,'Action'),(10881,337921,'Crime'),(10882,337921,'Thriller'),(10883,337978,'Action'),(10884,337978,'Thriller'),(10885,338013,'Drama'),(10886,338013,'Romance'),(10887,338013,'Sci-Fi'),(10888,338095,'Horror'),(10889,338096,'Drama'),(10890,338096,'Music'),(10891,338096,'Romance'),(10892,338135,'Comedy'),(10893,338135,'Crime'),(10894,338135,'Drama'),(10895,338139,'Biography'),(10896,338139,'Drama'),(10897,338139,'History'),(10898,338188,'Adventure'),(10899,338188,'Drama'),(10900,338188,'Thriller'),(10901,338309,'Drama'),(10902,338337,'Action'),(10903,338337,'Mystery'),(10904,338337,'Sci-Fi'),(10905,338348,'Adventure'),(10906,338348,'Animation'),(10907,338348,'Comedy'),(10908,338427,'Drama'),(10909,338427,'Romance'),(10910,338459,'Action'),(10911,338459,'Adventure'),(10912,338459,'Comedy'),(10913,338467,'Biography'),(10914,338467,'Drama'),(10915,338479,'Comedy'),(10916,338479,'Drama'),(10917,338479,'Fantasy'),(10918,338526,'Action'),(10919,338526,'Adventure'),(10920,338526,'Fantasy'),(10921,338564,'Action'),(10922,338564,'Crime'),(10923,338564,'Drama'),(10924,338751,'Biography'),(10925,338751,'Drama'),(10926,338806,'Action'),(10927,338806,'Drama'),(10928,338806,'History'),(10929,338828,'Comedy'),(10930,339071,'Comedy'),(10931,339071,'Romance'),(10932,339072,'Adventure'),(10933,339072,'Comedy'),(10934,339135,'Action'),(10935,339135,'Drama'),(10936,339135,'Thriller'),(10937,339291,'Adventure'),(10938,339291,'Comedy'),(10939,339291,'Family'),(10940,339840,'Action'),(10941,339840,'Comedy'),(10942,339840,'Fantasy'),(10943,340012,'Comedy'),(10944,340012,'Drama'),(10945,340012,'Romance'),(10946,340377,'Comedy'),(10947,340377,'Drama'),(10948,340855,'Biography'),(10949,340855,'Crime'),(10950,340855,'Drama'),(10951,341384,'Drama'),(10952,341384,'War'),(10953,342167,'Comedy'),(10954,342167,'Drama'),(10955,342167,'Musical'),(10956,342258,'Action'),(10957,342258,'Crime'),(10958,342258,'Thriller'),(10959,342272,'Comedy'),(10960,342272,'Crime'),(10961,342272,'Drama'),(10962,342492,'Comedy'),(10963,342492,'Drama'),(10964,343112,'Documentary'),(10965,343112,'Short'),(10966,343660,'Comedy'),(10967,343660,'Drama'),(10968,343660,'Romance'),(10969,343737,'Drama'),(10970,343737,'History'),(10971,343737,'Thriller'),(10972,343818,'Action'),(10973,343818,'Mystery'),(10974,343818,'Sci-Fi'),(10975,344510,'Drama'),(10976,344510,'Mystery'),(10977,344510,'Romance'),(10978,344604,'Comedy'),(10979,344604,'Romance'),(10980,344854,'Adventure'),(10981,344854,'Animation'),(10982,344854,'Comedy'),(10983,345074,'Comedy'),(10984,345074,'Crime'),(10985,345074,'Music'),(10986,345950,'Adventure'),(10987,345950,'Animation'),(10988,345950,'Comedy'),(10989,346156,'Action'),(10990,346156,'Adventure'),(10991,346156,'Mystery'),(10992,346336,'Drama'),(10993,346336,'Romance'),(10994,346491,'Action'),(10995,346491,'Biography'),(10996,346491,'Drama'),(10997,347048,'Drama'),(10998,347048,'Romance'),(10999,347149,'Adventure'),(11000,347149,'Animation'),(11001,347149,'Family'),(11002,347618,'Adventure'),(11003,347618,'Animation'),(11004,347618,'Comedy'),(11005,348062,'Comedy'),(11006,348062,'Horror'),(11007,348150,'Action'),(11008,348150,'Adventure'),(11009,348150,'Sci-Fi'),(11010,348225,'Horror'),(11011,348226,'Horror'),(11012,348333,'Comedy'),(11013,348593,'Comedy'),(11014,348593,'Drama'),(11015,348836,'Horror'),(11016,348836,'Mystery'),(11017,348836,'Thriller'),(11018,348853,'Drama'),(11019,348913,'Comedy'),(11020,348913,'Drama'),(11021,348913,'Fantasy'),(11022,349205,'Comedy'),(11023,349205,'Family'),(11024,349260,'Drama'),(11025,349260,'Romance'),(11026,349345,'Fantasy'),(11027,349345,'Horror'),(11028,349349,'Comedy'),(11029,349349,'Fantasy'),(11030,349349,'Horror'),(11031,349416,'Comedy'),(11032,349416,'Drama'),(11033,349825,'Biography'),(11034,349825,'Drama'),(11035,349825,'History'),(11036,349903,'Crime'),(11037,349903,'Thriller'),(11038,350028,'Comedy'),(11039,350028,'Drama'),(11040,350028,'Romance'),(11041,350258,'Biography'),(11042,350258,'Drama'),(11043,350258,'Music'),(11044,351238,'Drama'),(11045,351283,'Adventure'),(11046,351283,'Animation'),(11047,351283,'Comedy'),(11048,351817,'Drama'),(11049,351817,'Romance'),(11050,351977,'Action'),(11051,351977,'Crime'),(11052,352248,'Biography'),(11053,352248,'Drama'),(11054,352248,'Romance'),(11055,353489,'Horror'),(11056,353489,'Thriller'),(11057,353969,'Crime'),(11058,353969,'Drama'),(11059,353969,'Mystery'),(11060,354575,'Documentary'),(11061,354772,'Documentary'),(11062,354899,'Comedy'),(11063,354899,'Drama'),(11064,354899,'Fantasy'),(11065,355702,'Biography'),(11066,355702,'Drama'),(11067,355702,'Sport'),(11068,356150,'Comedy'),(11069,356470,'Comedy'),(11070,356470,'Family'),(11071,356470,'Romance'),(11072,356634,'Adventure'),(11073,356634,'Animation'),(11074,356634,'Comedy'),(11075,356680,'Comedy'),(11076,356680,'Drama'),(11077,356680,'Romance'),(11078,356721,'Comedy'),(11079,356910,'Action'),(11080,356910,'Comedy'),(11081,356910,'Crime'),(11082,357110,'Drama'),(11083,357277,'Action'),(11084,357277,'Adventure'),(11085,357277,'Crime'),(11086,357413,'Comedy'),(11087,357507,'Drama'),(11088,357507,'Horror'),(11089,357507,'Mystery'),(11090,358082,'Adventure'),(11091,358082,'Animation'),(11092,358082,'Comedy'),(11093,358273,'Biography'),(11094,358273,'Drama'),(11095,358273,'Music'),(11096,359013,'Action'),(11097,359013,'Horror'),(11098,359013,'Sci-Fi'),(11099,359423,'Drama'),(11100,359423,'Romance'),(11101,359610,'Music'),(11102,359610,'Musical'),(11103,359950,'Adventure'),(11104,359950,'Comedy'),(11105,359950,'Drama'),(11106,360201,'Comedy'),(11107,360201,'Romance'),(11108,360201,'Sport'),(11109,360486,'Action'),(11110,360486,'Fantasy'),(11111,360486,'Horror'),(11112,360717,'Action'),(11113,360717,'Adventure'),(11114,360717,'Romance'),(11115,360779,'Drama'),(11116,360845,'Drama'),(11117,361089,'Adventure'),(11118,361089,'Animation'),(11119,361089,'Comedy'),(11120,361411,'Comedy'),(11121,361411,'Drama'),(11122,361411,'Musical'),(11123,361467,'Comedy'),(11124,361467,'Family'),(11125,361467,'Music'),(11126,361693,'Comedy'),(11127,361693,'Drama'),(11128,361693,'Music'),(11129,361696,'Family'),(11130,361696,'Music'),(11131,361696,'Musical'),(11132,361748,'Adventure'),(11133,361748,'Drama'),(11134,361748,'War'),(11135,361862,'Drama'),(11136,361862,'Thriller'),(11137,361921,'Documentary'),(11138,361921,'Short'),(11139,362004,'Comedy'),(11140,362004,'Drama'),(11141,362120,'Comedy'),(11142,362165,'Comedy'),(11143,362165,'Family'),(11144,362165,'Fantasy'),(11145,362227,'Comedy'),(11146,362227,'Drama'),(11147,362227,'Romance'),(11148,362269,'Biography'),(11149,362269,'Drama'),(11150,362269,'Romance'),(11151,362270,'Action'),(11152,362270,'Adventure'),(11153,362270,'Comedy'),(11154,362387,'Comedy'),(11155,362387,'Drama'),(11156,362387,'Horror'),(11157,362478,'Drama'),(11158,362478,'Mystery'),(11159,362478,'Thriller'),(11160,363163,'Biography'),(11161,363163,'Drama'),(11162,363163,'History'),(11163,363226,'Action'),(11164,363226,'Comedy'),(11165,363226,'Crime'),(11166,363282,'Comedy'),(11167,363282,'Crime'),(11168,363282,'Family'),(11169,363547,'Action'),(11170,363547,'Horror'),(11171,363589,'Crime'),(11172,363589,'Drama'),(11173,363589,'Thriller'),(11174,363771,'Adventure'),(11175,363771,'Family'),(11176,363771,'Fantasy'),(11177,363988,'Drama'),(11178,363988,'Mystery'),(11179,363988,'Thriller'),(11180,364045,'Crime'),(11181,364045,'Mystery'),(11182,364045,'Thriller'),(11183,364343,'Drama'),(11184,364343,'Sci-Fi'),(11185,364343,'Thriller'),(11186,364385,'Horror'),(11187,364517,'Comedy'),(11188,364517,'Drama'),(11189,364517,'Romance'),(11190,364569,'Action'),(11191,364569,'Drama'),(11192,364569,'Mystery'),(11193,364725,'Comedy'),(11194,364725,'Sport'),(11195,364751,'Adventure'),(11196,364751,'Comedy'),(11197,364751,'Mystery'),(11198,364955,'Comedy'),(11199,364955,'Drama'),(11200,364955,'Romance'),(11201,364961,'Biography'),(11202,364961,'Crime'),(11203,364961,'Drama'),(11204,364986,'Drama'),(11205,364986,'Romance'),(11206,364986,'Thriller'),(11207,365125,'Comedy'),(11208,365135,'Documentary'),(11209,365376,'Drama'),(11210,365376,'Horror'),(11211,365376,'Mystery'),(11212,365545,'Comedy'),(11213,365545,'Drama'),(11214,365545,'Romance'),(11215,365748,'Comedy'),(11216,365748,'Horror'),(11217,365830,'Adventure'),(11218,365830,'Comedy'),(11219,365830,'Music'),(11220,365907,'Action'),(11221,365907,'Crime'),(11222,365907,'Drama'),(11223,365929,'Action'),(11224,365929,'Crime'),(11225,365929,'Mystery'),(11226,365957,'Drama'),(11227,365957,'Music'),(11228,366548,'Adventure'),(11229,366548,'Animation'),(11230,366548,'Comedy'),(11231,366551,'Adventure'),(11232,366551,'Comedy'),(11233,366627,'Drama'),(11234,366627,'Fantasy'),(11235,366627,'Mystery'),(11236,366780,'Drama'),(11237,366780,'Fantasy'),(11238,366920,'Comedy'),(11239,366920,'Romance'),(11240,367000,'Drama'),(11241,367000,'Fantasy'),(11242,367000,'Horror'),(11243,367027,'Comedy'),(11244,367027,'Drama'),(11245,367027,'Romance'),(11246,367085,'Comedy'),(11247,367089,'Comedy'),(11248,367089,'Drama'),(11249,367110,'Drama'),(11250,367110,'Musical'),(11251,367174,'Comedy'),(11252,367174,'Drama'),(11253,367174,'Romance'),(11254,367177,'Comedy'),(11255,367177,'Fantasy'),(11256,367177,'Short'),(11257,367462,'Comedy'),(11258,367462,'Drama'),(11259,367462,'Romance'),(11260,367479,'Action'),(11261,367479,'Comedy'),(11262,367479,'Crime'),(11263,367594,'Adventure'),(11264,367594,'Comedy'),(11265,367594,'Family'),(11266,367631,'Action'),(11267,367631,'Comedy'),(11268,367631,'Romance'),(11269,367859,'Comedy'),(11270,367859,'Crime'),(11271,367859,'Drama'),(11272,367882,'Action'),(11273,367882,'Adventure'),(11274,367913,'Drama'),(11275,367913,'Fantasy'),(11276,367913,'Horror'),(11277,367959,'Adventure'),(11278,367959,'Crime'),(11279,367959,'Drama'),(11280,368222,'Comedy'),(11281,368222,'Musical'),(11282,368222,'Romance'),(11283,368226,'Drama'),(11284,368310,'Documentary'),(11285,368447,'Drama'),(11286,368447,'Mystery'),(11287,368447,'Thriller'),(11288,368563,'Drama'),(11289,368563,'Horror'),(11290,368563,'Mystery'),(11291,368658,'Drama'),(11292,368667,'Adventure'),(11293,368667,'Animation'),(11294,368667,'Music'),(11295,368709,'Comedy'),(11296,368709,'Drama'),(11297,368709,'Romance'),(11298,368794,'Biography'),(11299,368794,'Drama'),(11300,368794,'Music'),(11301,368891,'Action'),(11302,368891,'Adventure'),(11303,368891,'Mystery'),(11304,368909,'Action'),(11305,368909,'Crime'),(11306,368909,'Thriller'),(11307,368933,'Comedy'),(11308,368933,'Family'),(11309,368933,'Romance'),(11310,368975,'Comedy'),(11311,368975,'Family'),(11312,368975,'Romance'),(11313,369053,'Crime'),(11314,369053,'Drama'),(11315,369053,'Romance'),(11316,369339,'Action'),(11317,369339,'Crime'),(11318,369339,'Drama'),(11319,369436,'Comedy'),(11320,369436,'Drama'),(11321,369436,'Romance'),(11322,369441,'Comedy'),(11323,369441,'Crime'),(11324,369610,'Action'),(11325,369610,'Adventure'),(11326,369610,'Sci-Fi'),(11327,369672,'Drama'),(11328,369702,'Biography'),(11329,369702,'Drama'),(11330,369735,'Comedy'),(11331,369735,'Romance'),(11332,369994,'Comedy'),(11333,370032,'Action'),(11334,370032,'Sci-Fi'),(11335,370263,'Action'),(11336,370263,'Adventure'),(11337,370263,'Horror'),(11338,370754,'Animation'),(11339,370754,'Drama'),(11340,370754,'Romance'),(11341,370919,'Adventure'),(11342,370919,'Comedy'),(11343,370986,'Drama'),(11344,371246,'Comedy'),(11345,371246,'Drama'),(11346,371246,'Romance'),(11347,371257,'Drama'),(11348,371257,'Mystery'),(11349,371257,'Thriller'),(11350,371606,'Adventure'),(11351,371606,'Animation'),(11352,371606,'Comedy'),(11353,371724,'Adventure'),(11354,371724,'Comedy'),(11355,371724,'Sci-Fi'),(11356,371746,'Action'),(11357,371746,'Adventure'),(11358,371746,'Sci-Fi'),(11359,371823,'Adventure'),(11360,371823,'Animation'),(11361,371823,'Comedy'),(11362,371835,'Drama'),(11363,371835,'Family'),(11364,371835,'Mystery'),(11365,372122,'Comedy'),(11366,372122,'Drama'),(11367,372122,'Music'),(11368,372183,'Action'),(11369,372183,'Mystery'),(11370,372183,'Thriller'),(11371,372334,'Comedy'),(11372,372334,'Drama'),(11373,372532,'Comedy'),(11374,372532,'Romance'),(11375,372588,'Action'),(11376,372588,'Comedy'),(11377,372784,'Action'),(11378,372784,'Crime'),(11379,372784,'Drama'),(11380,372832,'Action'),(11381,372832,'Horror'),(11382,372832,'Thriller'),(11383,373051,'Action'),(11384,373051,'Adventure'),(11385,373051,'Family'),(11386,373074,'Action'),(11387,373074,'Comedy'),(11388,373074,'Fantasy'),(11389,373450,'Crime'),(11390,373450,'Mystery'),(11391,373450,'Thriller'),(11392,373469,'Comedy'),(11393,373469,'Crime'),(11394,373469,'Mystery'),(11395,373883,'Horror'),(11396,373889,'Action'),(11397,373889,'Adventure'),(11398,373889,'Family'),(11399,373981,'Comedy'),(11400,373981,'Crime'),(11401,373981,'Drama'),(11402,374102,'Adventure'),(11403,374102,'Drama'),(11404,374102,'Horror'),(11405,374180,'Drama'),(11406,374180,'Horror'),(11407,374536,'Comedy'),(11408,374536,'Fantasy'),(11409,374536,'Romance'),(11410,374546,'Drama'),(11411,374546,'Romance'),(11412,374900,'Comedy'),(11413,375063,'Comedy'),(11414,375063,'Drama'),(11415,375063,'Romance'),(11416,375210,'Drama'),(11417,375210,'Horror'),(11418,375210,'Mystery'),(11419,375233,'Drama'),(11420,375233,'Mystery'),(11421,375568,'Action'),(11422,375568,'Adventure'),(11423,375568,'Animation'),(11424,375679,'Crime'),(11425,375679,'Drama'),(11426,375679,'Thriller'),(11427,375785,'Comedy'),(11428,375785,'Romance'),(11429,375912,'Action'),(11430,375912,'Crime'),(11431,375912,'Drama'),(11432,376078,'Comedy'),(11433,376136,'Comedy'),(11434,376136,'Drama'),(11435,376263,'Thriller'),(11436,376541,'Drama'),(11437,376541,'Romance'),(11438,376994,'Action'),(11439,376994,'Adventure'),(11440,376994,'Sci-Fi'),(11441,377062,'Action'),(11442,377062,'Adventure'),(11443,377062,'Drama'),(11444,377084,'Drama'),(11445,377084,'Music'),(11446,377084,'Romance'),(11447,377092,'Comedy'),(11448,377094,'Comedy'),(11449,377107,'Drama'),(11450,377107,'Mystery'),(11451,377109,'Horror'),(11452,377109,'Mystery'),(11453,377191,'Action'),(11454,377191,'Animation'),(11455,377191,'Sci-Fi'),(11456,377309,'Drama'),(11457,377309,'Thriller'),(11458,377556,'Comedy'),(11459,377556,'Drama'),(11460,377713,'Drama'),(11461,377713,'Mystery'),(11462,377713,'Sci-Fi'),(11463,377752,'Drama'),(11464,377752,'Romance'),(11465,377981,'Adventure'),(11466,377981,'Animation'),(11467,377981,'Comedy'),(11468,377995,'Comedy'),(11469,377995,'Short'),(11470,378194,'Action'),(11471,378194,'Crime'),(11472,378194,'Thriller'),(11473,378661,'Drama'),(11474,378661,'Fantasy'),(11475,378793,'Drama'),(11476,379071,'Comedy'),(11477,379071,'Romance'),(11478,379217,'Comedy'),(11479,379217,'Drama'),(11480,379217,'Music'),(11481,379306,'Comedy'),(11482,379306,'Drama'),(11483,379306,'Romance'),(11484,379363,'Comedy'),(11485,379725,'Biography'),(11486,379725,'Crime'),(11487,379725,'Drama'),(11488,379786,'Action'),(11489,379786,'Adventure'),(11490,379786,'Sci-Fi'),(11491,380066,'Horror'),(11492,380066,'Mystery'),(11493,380366,'Drama'),(11494,380366,'Romance'),(11495,380510,'Drama'),(11496,380510,'Fantasy'),(11497,380510,'Thriller'),(11498,380599,'Crime'),(11499,380599,'Drama'),(11500,380623,'Comedy'),(11501,380623,'Family'),(11502,380623,'Romance'),(11503,380726,'Adventure'),(11504,380726,'Drama'),(11505,380726,'History'),(11506,380761,'Crime'),(11507,380761,'Drama'),(11508,381061,'Action'),(11509,381061,'Adventure'),(11510,381061,'Thriller'),(11511,381348,'Animation'),(11512,381348,'Drama'),(11513,381348,'Romance'),(11514,381668,'Drama'),(11515,381668,'Fantasy'),(11516,381668,'Romance'),(11517,381681,'Drama'),(11518,381681,'Romance'),(11519,381707,'Comedy'),(11520,381707,'Crime'),(11521,381849,'Action'),(11522,381849,'Crime'),(11523,381849,'Drama'),(11524,381940,'Drama'),(11525,381940,'Mystery'),(11526,381940,'Sci-Fi'),(11527,381966,'Horror'),(11528,381966,'Mystery'),(11529,381966,'Thriller'),(11530,382077,'Horror'),(11531,382077,'Mystery'),(11532,382189,'Drama'),(11533,382189,'Romance'),(11534,382625,'Mystery'),(11535,382625,'Thriller'),(11536,382628,'Drama'),(11537,382628,'Horror'),(11538,382628,'Mystery'),(11539,382761,'Horror'),(11540,382761,'Mystery'),(11541,382761,'Thriller'),(11542,382810,'Crime'),(11543,382810,'Drama'),(11544,382810,'Romance'),(11545,382932,'Adventure'),(11546,382932,'Animation'),(11547,382932,'Comedy'),(11548,382992,'Action'),(11549,382992,'Adventure'),(11550,382992,'Sci-Fi'),(11551,383028,'Drama'),(11552,383060,'Action'),(11553,383060,'Adventure'),(11554,383060,'Comedy'),(11555,383206,'Animation'),(11556,383206,'Family'),(11557,383216,'Adventure'),(11558,383216,'Comedy'),(11559,383216,'Crime'),(11560,383222,'Action'),(11561,383222,'Fantasy'),(11562,383222,'Horror'),(11563,383574,'Action'),(11564,383574,'Adventure'),(11565,383574,'Fantasy'),(11566,383694,'Crime'),(11567,383694,'Drama'),(11568,384116,'Adventure'),(11569,384116,'Comedy'),(11570,384116,'Sci-Fi'),(11571,384286,'Drama'),(11572,384286,'Horror'),(11573,384286,'Mystery'),(11574,384369,'Drama'),(11575,384369,'Sport'),(11576,384369,'Thriller'),(11577,384504,'Comedy'),(11578,384504,'Drama'),(11579,384504,'Romance'),(11580,384533,'Comedy'),(11581,384533,'Drama'),(11582,384537,'Horror'),(11583,384537,'Mystery'),(11584,384573,'Drama'),(11585,384793,'Comedy'),(11586,384806,'Horror'),(11587,384819,'Action'),(11588,384819,'Adventure'),(11589,384819,'Drama'),(11590,385002,'Crime'),(11591,385002,'Drama'),(11592,385002,'Sport'),(11593,385267,'Comedy'),(11594,385267,'Drama'),(11595,385267,'Romance'),(11596,385307,'Action'),(11597,385307,'Comedy'),(11598,385307,'Crime'),(11599,385700,'Action'),(11600,385700,'Adventure'),(11601,385700,'Animation'),(11602,385726,'Biography'),(11603,385726,'Drama'),(11604,385726,'Sport'),(11605,385752,'Adventure'),(11606,385752,'Family'),(11607,385752,'Fantasy'),(11608,385880,'Animation'),(11609,385880,'Comedy'),(11610,385880,'Family'),(11611,385887,'Crime'),(11612,385887,'Drama'),(11613,385887,'Mystery'),(11614,386117,'Adventure'),(11615,386117,'Drama'),(11616,386117,'Family'),(11617,386140,'Action'),(11618,386140,'Adventure'),(11619,386140,'Romance'),(11620,386588,'Comedy'),(11621,386588,'Romance'),(11622,386820,'Animation'),(11623,386820,'Comedy'),(11624,386820,'Musical'),(11625,386862,'Drama'),(11626,387131,'Drama'),(11627,387131,'Mystery'),(11628,387131,'Romance'),(11629,387564,'Horror'),(11630,387564,'Mystery'),(11631,387564,'Thriller'),(11632,387658,'Action'),(11633,387658,'Adventure'),(11634,387658,'Animation'),(11635,387808,'Adventure'),(11636,387808,'Comedy'),(11637,387808,'Sci-Fi'),(11638,387877,'Crime'),(11639,387877,'Drama'),(11640,387877,'Mystery'),(11641,388125,'Comedy'),(11642,388125,'Drama'),(11643,388125,'Romance'),(11644,388182,'Comedy'),(11645,388182,'Drama'),(11646,388311,'Drama'),(11647,388311,'Romance'),(11648,388419,'Comedy'),(11649,388419,'Family'),(11650,388473,'Adventure'),(11651,388473,'Animation'),(11652,388473,'Comedy'),(11653,388482,'Action'),(11654,388482,'Crime'),(11655,388482,'Thriller'),(11656,388500,'Comedy'),(11657,388789,'Biography'),(11658,388789,'Documentary'),(11659,388789,'News'),(11660,388795,'Drama'),(11661,388795,'Romance'),(11662,389557,'Drama'),(11663,389557,'Thriller'),(11664,389557,'War'),(11665,389722,'Action'),(11666,389722,'Adventure'),(11667,389722,'Horror'),(11668,389790,'Adventure'),(11669,389790,'Animation'),(11670,389790,'Comedy'),(11671,389860,'Comedy'),(11672,389860,'Drama'),(11673,389860,'Fantasy'),(11674,390205,'Action'),(11675,390205,'Drama'),(11676,390205,'History'),(11677,390221,'Crime'),(11678,390221,'Drama'),(11679,390384,'Drama'),(11680,390384,'Sci-Fi'),(11681,390384,'Thriller'),(11682,390450,'Drama'),(11683,390450,'Horror'),(11684,390450,'Thriller'),(11685,391198,'Horror'),(11686,391198,'Mystery'),(11687,391198,'Thriller'),(11688,392728,'Documentary'),(11689,392728,'Short'),(11690,393109,'Crime'),(11691,393109,'Drama'),(11692,393109,'Mystery'),(11693,393162,'Biography'),(11694,393162,'Drama'),(11695,393162,'Sport'),(11696,393685,'Comedy'),(11697,393685,'Fantasy'),(11698,393685,'Horror'),(11699,393735,'Comedy'),(11700,393735,'Family'),(11701,393735,'Fantasy'),(11702,393956,'Comedy'),(11703,393956,'Drama'),(11704,393956,'Musical'),(11705,395169,'Biography'),(11706,395169,'Drama'),(11707,395169,'History'),(11708,395251,'Comedy'),(11709,395251,'Crime'),(11710,395251,'Musical'),(11711,395584,'Crime'),(11712,395584,'Drama'),(11713,395584,'Horror'),(11714,395699,'Action'),(11715,395699,'Comedy'),(11716,395699,'Drama'),(11717,395972,'Drama'),(11718,396171,'Crime'),(11719,396171,'Drama'),(11720,396171,'Fantasy'),(11721,396184,'Action'),(11722,396184,'Crime'),(11723,396184,'Drama'),(11724,396269,'Comedy'),(11725,396269,'Romance'),(11726,396555,'Adventure'),(11727,396555,'Animation'),(11728,396555,'Comedy'),(11729,396652,'Comedy'),(11730,396652,'Drama'),(11731,396652,'Family'),(11732,396707,'Adventure'),(11733,396707,'Family'),(11734,396707,'Fantasy'),(11735,397065,'Horror'),(11736,397065,'Thriller'),(11737,397101,'Drama'),(11738,397101,'Horror'),(11739,397101,'Mystery'),(11740,397313,'Adventure'),(11741,397313,'Drama'),(11742,397313,'Family'),(11743,397535,'Drama'),(11744,397535,'Romance'),(11745,397892,'Adventure'),(11746,397892,'Animation'),(11747,397892,'Comedy'),(11748,398165,'Comedy'),(11749,398165,'Crime'),(11750,398165,'Sport'),(11751,398286,'Adventure'),(11752,398286,'Animation'),(11753,398286,'Comedy'),(11754,398375,'Comedy'),(11755,398375,'Drama'),(11756,398375,'Romance'),(11757,398712,'Action'),(11758,398712,'Crime'),(11759,398712,'Drama'),(11760,398808,'Drama'),(11761,398808,'Family'),(11762,398808,'Fantasy'),(11763,398913,'Action'),(11764,398913,'Adventure'),(11765,398913,'Mystery'),(11766,399146,'Action'),(11767,399146,'Crime'),(11768,399146,'Drama'),(11769,399201,'Action'),(11770,399201,'Sci-Fi'),(11771,399201,'Thriller'),(11772,399295,'Crime'),(11773,399295,'Drama'),(11774,399412,'Animation'),(11775,399412,'Drama'),(11776,399412,'Thriller'),(11777,400497,'Adventure'),(11778,400497,'Comedy'),(11779,400497,'Family'),(11780,400717,'Adventure'),(11781,400717,'Animation'),(11782,400717,'Comedy'),(11783,401085,'Comedy'),(11784,401085,'Drama'),(11785,401233,'Action'),(11786,401233,'Adventure'),(11787,401233,'Animation'),(11788,401383,'Biography'),(11789,401383,'Drama'),(11790,401385,'Comedy'),(11791,401385,'Drama'),(11792,401398,'Adventure'),(11793,401398,'Animation'),(11794,401398,'Comedy'),(11795,401711,'Comedy'),(11796,401711,'Drama'),(11797,401711,'Romance'),(11798,401729,'Action'),(11799,401729,'Adventure'),(11800,401729,'Sci-Fi'),(11801,401792,'Crime'),(11802,401792,'Thriller'),(11803,401997,'Biography'),(11804,401997,'Crime'),(11805,401997,'Drama'),(11806,402022,'Action'),(11807,402022,'Adventure'),(11808,402022,'Sci-Fi'),(11809,402115,'Comedy'),(11810,402158,'Action'),(11811,402158,'Crime'),(11812,402158,'Drama'),(11813,402399,'Biography'),(11814,402399,'Drama'),(11815,402399,'History'),(11816,402894,'Adventure'),(11817,402894,'Comedy'),(11818,402894,'Drama'),(11819,403358,'Action'),(11820,403358,'Fantasy'),(11821,403358,'Horror'),(11822,403508,'Comedy'),(11823,403508,'Drama'),(11824,403508,'Romance'),(11825,403702,'Comedy'),(11826,403702,'Drama'),(11827,403702,'Romance'),(11828,403703,'Action'),(11829,403703,'Adventure'),(11830,403703,'Animation'),(11831,404032,'Drama'),(11832,404032,'Horror'),(11833,404032,'Thriller'),(11834,404203,'Drama'),(11835,404203,'Romance'),(11836,404978,'Comedy'),(11837,404978,'Crime'),(11838,405094,'Drama'),(11839,405094,'Mystery'),(11840,405094,'Thriller'),(11841,405159,'Drama'),(11842,405159,'Sport'),(11843,405296,'Animation'),(11844,405296,'Comedy'),(11845,405296,'Crime'),(11846,405325,'Action'),(11847,405325,'Comedy'),(11848,405325,'Family'),(11849,405336,'Comedy'),(11850,405336,'Drama'),(11851,405336,'Mystery'),(11852,405422,'Comedy'),(11853,405422,'Romance'),(11854,405508,'Comedy'),(11855,405508,'Crime'),(11856,405508,'Drama'),(11857,405676,'Drama'),(11858,405676,'Thriller'),(11859,406158,'Biography'),(11860,406158,'Drama'),(11861,406375,'Action'),(11862,406375,'Adventure'),(11863,406375,'Comedy'),(11864,406649,'Drama'),(11865,406649,'Fantasy'),(11866,406649,'Musical'),(11867,406709,'Comedy'),(11868,406709,'Short'),(11869,406759,'Horror'),(11870,406759,'Mystery'),(11871,406816,'Action'),(11872,406816,'Adventure'),(11873,406816,'Drama'),(11874,407246,'Comedy'),(11875,407246,'Drama'),(11876,407265,'Adventure'),(11877,407265,'Comedy'),(11878,407265,'Drama'),(11879,407304,'Action'),(11880,407304,'Adventure'),(11881,407304,'Sci-Fi'),(11882,407851,'Comedy'),(11883,407851,'Drama'),(11884,407851,'Romance'),(11885,407887,'Crime'),(11886,407887,'Drama'),(11887,407887,'Thriller'),(11888,408060,'Sci-Fi'),(11889,408060,'Thriller'),(11890,408236,'Drama'),(11891,408236,'Horror'),(11892,408236,'Musical'),(11893,408306,'Action'),(11894,408306,'Drama'),(11895,408306,'History'),(11896,408777,'Drama'),(11897,408777,'Romance'),(11898,408790,'Drama'),(11899,408790,'Mystery'),(11900,408790,'Thriller'),(11901,408839,'Comedy'),(11902,408839,'Romance'),(11903,408961,'Comedy'),(11904,408985,'Comedy'),(11905,408985,'Drama'),(11906,408985,'Romance'),(11907,409182,'Action'),(11908,409182,'Adventure'),(11909,409182,'Thriller'),(11910,409459,'Action'),(11911,409459,'Drama'),(11912,409459,'Mystery'),(11913,409842,'Comedy'),(11914,409842,'Horror'),(11915,409847,'Action'),(11916,409847,'Drama'),(11917,409847,'Sci-Fi'),(11918,410097,'Crime'),(11919,410097,'Drama'),(11920,410097,'Music'),(11921,410297,'Drama'),(11922,410297,'Fantasy'),(11923,410297,'Romance'),(11924,410377,'Adventure'),(11925,410377,'Family'),(11926,410377,'Fantasy'),(11927,410696,'Comedy'),(11928,410696,'Family'),(11929,410696,'Music'),(11930,410764,'Drama'),(11931,410764,'Fantasy'),(11932,410764,'Horror'),(11933,411061,'Crime'),(11934,411061,'Drama'),(11935,411061,'Mystery'),(11936,411098,'Drama'),(11937,411195,'Comedy'),(11938,411195,'Drama'),(11939,411477,'Action'),(11940,411477,'Adventure'),(11941,411477,'Fantasy'),(11942,411705,'Drama'),(11943,411705,'Music'),(11944,411705,'Romance'),(11945,411951,'Action'),(11946,411951,'Crime'),(11947,411951,'Drama'),(11948,412019,'Comedy'),(11949,412019,'Drama'),(11950,412019,'Mystery'),(11951,412536,'Drama'),(11952,412536,'Romance'),(11953,412798,'Drama'),(11954,412798,'Horror'),(11955,412798,'Mystery'),(11956,412915,'Action'),(11957,412915,'Adventure'),(11958,412915,'Comedy'),(11959,412922,'Comedy'),(11960,412922,'Family'),(11961,412922,'Romance'),(11962,413219,'Short'),(11963,413267,'Adventure'),(11964,413267,'Animation'),(11965,413267,'Comedy'),(11966,413268,'Drama'),(11967,413268,'Mystery'),(11968,413268,'Romance'),(11969,413300,'Action'),(11970,413300,'Adventure'),(11971,413300,'Sci-Fi'),(11972,413573,'Drama'),(11973,413573,'Romance'),(11974,414055,'Biography'),(11975,414055,'Drama'),(11976,414055,'History'),(11977,414387,'Drama'),(11978,414387,'Romance'),(11979,414852,'Action'),(11980,414852,'Crime'),(11981,414852,'Sci-Fi'),(11982,414853,'Adventure'),(11983,414853,'Animation'),(11984,414853,'Comedy'),(11985,414923,'Comedy'),(11986,414951,'Crime'),(11987,414951,'Drama'),(11988,414951,'Thriller'),(11989,414982,'Horror'),(11990,414982,'Thriller'),(11991,414993,'Drama'),(11992,414993,'Mystery'),(11993,414993,'Romance'),(11994,415127,'Crime'),(11995,415127,'Drama'),(11996,415127,'Mystery'),(11997,415167,'Horror'),(11998,415167,'Mystery'),(11999,415167,'Thriller'),(12000,415306,'Comedy'),(12001,415306,'Sport'),(12002,415679,'Comedy'),(12003,415679,'Fantasy'),(12004,415679,'Horror'),(12005,415819,'Comedy'),(12006,415819,'Romance'),(12007,415833,'Crime'),(12008,415833,'Drama'),(12009,415833,'Mystery'),(12010,415855,'Drama'),(12011,415855,'Horror'),(12012,415855,'Mystery'),(12013,415978,'Comedy'),(12014,415978,'Drama'),(12015,416046,'Short'),(12016,416047,'Short'),(12017,416212,'Drama'),(12018,416220,'Comedy'),(12019,416236,'Action'),(12020,416236,'Adventure'),(12021,416236,'Drama'),(12022,416315,'Horror'),(12023,416315,'Thriller'),(12024,416320,'Drama'),(12025,416320,'Romance'),(12026,416320,'Thriller'),(12027,416449,'Action'),(12028,416449,'Drama'),(12029,416496,'Action'),(12030,416496,'Comedy'),(12031,416496,'Crime'),(12032,416508,'Biography'),(12033,416508,'Drama'),(12034,416508,'Romance'),(12035,417001,'Comedy'),(12036,417001,'Romance'),(12037,417056,'Comedy'),(12038,417148,'Action'),(12039,417148,'Adventure'),(12040,417148,'Crime'),(12041,417225,'Crime'),(12042,417225,'Drama'),(12043,417225,'Musical'),(12044,417349,'Drama'),(12045,417349,'Romance'),(12046,417385,'Drama'),(12047,417614,'Drama'),(12048,417658,'Comedy'),(12049,417658,'Drama'),(12050,417658,'Romance'),(12051,417741,'Action'),(12052,417741,'Adventure'),(12053,417741,'Family'),(12054,418239,'Comedy'),(12055,418239,'Drama'),(12056,418279,'Action'),(12057,418279,'Adventure'),(12058,418279,'Sci-Fi'),(12059,418455,'Comedy'),(12060,418455,'Crime'),(12061,418455,'Drama'),(12062,418689,'Action'),(12063,418689,'Adventure'),(12064,418689,'Drama'),(12065,418763,'Biography'),(12066,418763,'Drama'),(12067,418763,'War'),(12068,418773,'Comedy'),(12069,418773,'Drama'),(12070,419294,'Adventure'),(12071,419294,'Crime'),(12072,419294,'Drama'),(12073,419677,'Crime'),(12074,419677,'Drama'),(12075,419677,'Thriller'),(12076,419706,'Action'),(12077,419706,'Horror'),(12078,419706,'Sci-Fi'),(12079,419773,'Drama'),(12080,419887,'Drama'),(12081,419946,'Action'),(12082,419946,'Comedy'),(12083,419946,'Drama'),(12084,420015,'Drama'),(12085,420076,'Action'),(12086,420076,'Adventure'),(12087,420076,'Animation'),(12088,420087,'Comedy'),(12089,420087,'Drama'),(12090,420087,'Music'),(12091,420223,'Comedy'),(12092,420223,'Drama'),(12093,420223,'Fantasy'),(12094,420238,'Adventure'),(12095,420238,'Animation'),(12096,420238,'Comedy'),(12097,420251,'Horror'),(12098,420293,'Biography'),(12099,420293,'Drama'),(12100,420293,'History'),(12101,420332,'Drama'),(12102,420332,'Family'),(12103,420332,'Musical'),(12104,420509,'Crime'),(12105,420509,'Drama'),(12106,420509,'Thriller'),(12107,421051,'Comedy'),(12108,421051,'Crime'),(12109,421051,'Fantasy'),(12110,421054,'Action'),(12111,421054,'Biography'),(12112,421054,'Crime'),(12113,421082,'Biography'),(12114,421082,'Drama'),(12115,421082,'Music'),(12116,421229,'Comedy'),(12117,421229,'Drama'),(12118,421238,'Crime'),(12119,421238,'Drama'),(12120,421238,'Western'),(12121,421239,'Thriller'),(12122,421528,'Comedy'),(12123,421528,'Musical'),(12124,421715,'Drama'),(12125,421715,'Fantasy'),(12126,421715,'Romance'),(12127,421994,'Comedy'),(12128,421994,'Drama'),(12129,421994,'Romance'),(12130,422015,'Comedy'),(12131,422015,'Crime'),(12132,422015,'Drama'),(12133,422093,'Comedy'),(12134,422093,'Drama'),(12135,422093,'Romance'),(12136,422272,'Horror'),(12137,422272,'Mystery'),(12138,422272,'Thriller'),(12139,422720,'Biography'),(12140,422720,'Drama'),(12141,422720,'History'),(12142,422778,'Adventure'),(12143,422778,'Comedy'),(12144,422778,'Family'),(12145,423169,'Drama'),(12146,423294,'Adventure'),(12147,423294,'Animation'),(12148,423294,'Comedy'),(12149,423382,'Comedy'),(12150,423382,'Drama'),(12151,423382,'Music'),(12152,423409,'Comedy'),(12153,423455,'Biography'),(12154,423455,'Drama'),(12155,423455,'Romance'),(12156,423651,'Crime'),(12157,423651,'Drama'),(12158,423651,'Romance'),(12159,423849,'Adventure'),(12160,423849,'Animation'),(12161,423849,'Family'),(12162,423866,'Crime'),(12163,423866,'Drama'),(12164,423866,'Romance'),(12165,423977,'Comedy'),(12166,423977,'Drama'),(12167,423977,'Romance'),(12168,424095,'Action'),(12169,424095,'Adventure'),(12170,424095,'Animation'),(12171,424136,'Drama'),(12172,424136,'Thriller'),(12173,424205,'Drama'),(12174,424205,'History'),(12175,424205,'Music'),(12176,424287,'Comedy'),(12177,424287,'Romance'),(12178,424345,'Comedy'),(12179,424774,'Action'),(12180,424774,'Adventure'),(12181,424774,'Comedy'),(12182,424880,'Drama'),(12183,424880,'Romance'),(12184,425061,'Action'),(12185,425061,'Adventure'),(12186,425061,'Comedy'),(12187,425112,'Action'),(12188,425112,'Comedy'),(12189,425112,'Mystery'),(12190,425123,'Comedy'),(12191,425123,'Drama'),(12192,425123,'Fantasy'),(12193,425210,'Crime'),(12194,425210,'Drama'),(12195,425210,'Thriller'),(12196,425326,'Comedy'),(12197,425326,'Drama'),(12198,425326,'Romance'),(12199,425357,'Crime'),(12200,425357,'Drama'),(12201,425357,'Thriller'),(12202,425413,'Comedy'),(12203,425413,'Romance'),(12204,425413,'Sport'),(12205,425430,'Drama'),(12206,425430,'Horror'),(12207,425430,'Mystery'),(12208,425637,'Action'),(12209,425637,'Adventure'),(12210,425637,'Drama'),(12211,426089,'Drama'),(12212,426089,'Romance'),(12213,426089,'Sport'),(12214,426578,'Biography'),(12215,426578,'Crime'),(12216,426578,'Drama'),(12217,426592,'Action'),(12218,426592,'Comedy'),(12219,426592,'Sci-Fi'),(12220,426931,'Drama'),(12221,426931,'Music'),(12222,426955,'Animation'),(12223,426955,'Comedy'),(12224,426955,'Family'),(12225,427152,'Comedy'),(12226,427229,'Comedy'),(12227,427229,'Romance'),(12228,427327,'Comedy'),(12229,427327,'Drama'),(12230,427327,'Musical'),(12231,427470,'Crime'),(12232,427470,'Drama'),(12233,427470,'Thriller'),(12234,427944,'Comedy'),(12235,427944,'Drama'),(12236,427969,'Biography'),(12237,427969,'Crime'),(12238,427969,'Drama'),(12239,428038,'Drama'),(12240,428038,'Romance'),(12241,428579,'Comedy'),(12242,428579,'Drama'),(12243,428579,'Romance'),(12244,428856,'Drama'),(12245,428856,'Mystery'),(12246,429493,'Action'),(12247,429493,'Adventure'),(12248,429493,'Crime'),(12249,429589,'Adventure'),(12250,429589,'Animation'),(12251,429589,'Comedy'),(12252,429591,'Comedy'),(12253,429591,'Family'),(12254,429591,'Fantasy'),(12255,429727,'Comedy'),(12256,429727,'Drama'),(12257,429727,'Romance'),(12258,430105,'Action'),(12259,430105,'Crime'),(12260,430105,'Drama'),(12261,430164,'Horror'),(12262,430164,'Mystery'),(12263,430164,'Thriller'),(12264,430357,'Action'),(12265,430357,'Adventure'),(12266,430357,'Crime'),(12267,430634,'Comedy'),(12268,430634,'Drama'),(12269,430634,'Sport'),(12270,430770,'Comedy'),(12271,430770,'Drama'),(12272,430922,'Comedy'),(12273,431021,'Horror'),(12274,431021,'Mystery'),(12275,431021,'Thriller'),(12276,431308,'Comedy'),(12277,431308,'Drama'),(12278,431308,'Romance'),(12279,431340,'Comedy'),(12280,431340,'Fantasy'),(12281,431340,'Horror'),(12282,431641,'Action'),(12283,431641,'Adventure'),(12284,431641,'Drama'),(12285,432021,'Action'),(12286,432021,'Horror'),(12287,432021,'Sci-Fi'),(12288,432283,'Adventure'),(12289,432283,'Animation'),(12290,432283,'Comedy'),(12291,432291,'Horror'),(12292,432291,'Mystery'),(12293,432314,'Drama'),(12294,432314,'War'),(12295,432325,'Drama'),(12296,432325,'Family'),(12297,432348,'Horror'),(12298,432348,'Mystery'),(12299,433035,'Action'),(12300,433035,'Drama'),(12301,433035,'Sci-Fi'),(12302,433362,'Action'),(12303,433362,'Horror'),(12304,433362,'Sci-Fi'),(12305,433383,'Biography'),(12306,433383,'Drama'),(12307,433383,'History'),(12308,433386,'Horror'),(12309,433386,'Thriller'),(12310,433412,'Comedy'),(12311,433412,'Family'),(12312,433412,'Romance'),(12313,434124,'Comedy'),(12314,434124,'Drama'),(12315,434124,'Music'),(12316,434409,'Action'),(12317,434409,'Drama'),(12318,434409,'Sci-Fi'),(12319,435224,'Drama'),(12320,435286,'Action'),(12321,435286,'Adventure'),(12322,435286,'Animation'),(12323,435434,'Comedy'),(12324,435434,'Drama'),(12325,435434,'Music'),(12326,435528,'Crime'),(12327,435528,'Drama'),(12328,435528,'Horror'),(12329,435623,'Comedy'),(12330,435623,'Drama'),(12331,435623,'Romance'),(12332,435625,'Adventure'),(12333,435625,'Horror'),(12334,435625,'Thriller'),(12335,435651,'Drama'),(12336,435651,'Romance'),(12337,435651,'Sci-Fi'),(12338,435665,'Action'),(12339,435665,'Comedy'),(12340,435665,'Horror'),(12341,435679,'Drama'),(12342,435679,'Romance'),(12343,435680,'Crime'),(12344,435680,'Drama'),(12345,435680,'Romance'),(12346,435705,'Action'),(12347,435705,'Sci-Fi'),(12348,435705,'Thriller'),(12349,435706,'Comedy'),(12350,435711,'Drama'),(12351,435711,'Family'),(12352,435761,'Adventure'),(12353,435761,'Animation'),(12354,435761,'Comedy'),(12355,436071,'Animation'),(12356,436071,'Music'),(12357,436071,'Short'),(12358,436331,'Comedy'),(12359,436331,'Drama'),(12360,436331,'Romance'),(12361,436339,'Action'),(12362,436339,'Adventure'),(12363,436339,'Animation'),(12364,436697,'Biography'),(12365,436697,'Drama'),(12366,437086,'Action'),(12367,437086,'Adventure'),(12368,437086,'Sci-Fi'),(12369,437800,'Drama'),(12370,437800,'Family'),(12371,437857,'Comedy'),(12372,437857,'Horror'),(12373,437857,'Thriller'),(12374,438097,'Adventure'),(12375,438097,'Animation'),(12376,438097,'Comedy'),(12377,438488,'Action'),(12378,438488,'Adventure'),(12379,438488,'Sci-Fi'),(12380,438575,'Comedy'),(12381,438575,'Musical'),(12382,438575,'Romance'),(12383,439289,'Comedy'),(12384,439289,'Drama'),(12385,439478,'Comedy'),(12386,439478,'Romance'),(12387,439491,'Drama'),(12388,439491,'Mystery'),(12389,439533,'Action'),(12390,439533,'Adventure'),(12391,439533,'Animation'),(12392,439572,'Action'),(12393,439572,'Adventure'),(12394,439572,'Fantasy'),(12395,439623,'Adventure'),(12396,439623,'Animation'),(12397,439623,'Family'),(12398,439815,'Comedy'),(12399,439815,'Horror'),(12400,439815,'Sci-Fi'),(12401,439817,'Drama'),(12402,439817,'History'),(12403,440803,'Horror'),(12404,440803,'Mystery'),(12405,440803,'Thriller'),(12406,440963,'Action'),(12407,440963,'Mystery'),(12408,440963,'Thriller'),(12409,441007,'Biography'),(12410,441007,'Drama'),(12411,441007,'Sport'),(12412,441041,'Horror'),(12413,441041,'Thriller'),(12414,441761,'Comedy'),(12415,441761,'Drama'),(12416,441773,'Action'),(12417,441773,'Adventure'),(12418,441773,'Animation'),(12419,441774,'Biography'),(12420,441774,'Crime'),(12421,441774,'Drama'),(12422,441909,'Comedy'),(12423,441909,'Drama'),(12424,442933,'Action'),(12425,442933,'Adventure'),(12426,442933,'Animation'),(12427,443231,'Horror'),(12428,443272,'Biography'),(12429,443272,'Drama'),(12430,443272,'History'),(12431,443274,'Action'),(12432,443274,'Crime'),(12433,443274,'Drama'),(12434,443295,'Comedy'),(12435,443295,'Family'),(12436,443295,'Romance'),(12437,443431,'Comedy'),(12438,443431,'Romance'),(12439,443453,'Comedy'),(12440,443455,'Comedy'),(12441,443455,'Drama'),(12442,443455,'Fantasy'),(12443,443465,'Comedy'),(12444,443465,'Drama'),(12445,443465,'Romance'),(12446,443473,'Action'),(12447,443473,'Crime'),(12448,443473,'Thriller'),(12449,443489,'Drama'),(12450,443489,'Music'),(12451,443489,'Musical'),(12452,443536,'Adventure'),(12453,443536,'Animation'),(12454,443536,'Comedy'),(12455,443543,'Drama'),(12456,443543,'Fantasy'),(12457,443543,'Mystery'),(12458,443559,'Action'),(12459,443559,'Crime'),(12460,443559,'Drama'),(12461,443649,'Action'),(12462,443649,'Adventure'),(12463,443649,'Drama'),(12464,443680,'Biography'),(12465,443680,'Crime'),(12466,443680,'Drama'),(12467,443701,'Crime'),(12468,443701,'Drama'),(12469,443701,'Horror'),(12470,443706,'Crime'),(12471,443706,'Drama'),(12472,443706,'Mystery'),(12473,444112,'Comedy'),(12474,444112,'Drama'),(12475,444112,'Romance'),(12476,444628,'Action'),(12477,444628,'Comedy'),(12478,444628,'Thriller'),(12479,444653,'Comedy'),(12480,444653,'Crime'),(12481,444682,'Horror'),(12482,444682,'Thriller'),(12483,445620,'Crime'),(12484,445620,'Drama'),(12485,445620,'Thriller'),(12486,445922,'Drama'),(12487,445922,'Fantasy'),(12488,445922,'History'),(12489,445934,'Comedy'),(12490,445934,'Sport'),(12491,445935,'Crime'),(12492,445935,'Mystery'),(12493,445935,'Thriller'),(12494,446029,'Action'),(12495,446029,'Comedy'),(12496,446029,'Fantasy'),(12497,446043,'Comedy'),(12498,446043,'Romance'),(12499,446046,'Drama'),(12500,446046,'Music'),(12501,446442,'Drama'),(12502,446442,'Thriller'),(12503,446463,'Drama'),(12504,446463,'Romance'),(12505,446719,'Horror'),(12506,446719,'Sci-Fi'),(12507,446719,'Thriller'),(12508,446755,'Drama'),(12509,446755,'Romance'),(12510,447166,'Action'),(12511,447166,'Adventure'),(12512,447166,'Comedy'),(12513,447854,'Adventure'),(12514,447854,'Animation'),(12515,447854,'Drama'),(12516,448011,'Action'),(12517,448011,'Mystery'),(12518,448011,'Sci-Fi'),(12519,448115,'Action'),(12520,448115,'Adventure'),(12521,448115,'Comedy'),(12522,448120,'Drama'),(12523,448120,'Thriller'),(12524,448124,'Drama'),(12525,448124,'Romance'),(12526,448134,'Sci-Fi'),(12527,448134,'Thriller'),(12528,448157,'Action'),(12529,448157,'Comedy'),(12530,448157,'Drama'),(12531,448179,'Crime'),(12532,448179,'Drama'),(12533,448179,'Mystery'),(12534,448182,'Drama'),(12535,448182,'Music'),(12536,448182,'Mystery'),(12537,448694,'Adventure'),(12538,448694,'Animation'),(12539,448694,'Comedy'),(12540,449010,'Action'),(12541,449010,'Adventure'),(12542,449010,'Family'),(12543,449059,'Comedy'),(12544,449059,'Drama'),(12545,449088,'Action'),(12546,449088,'Adventure'),(12547,449088,'Fantasy'),(12548,449089,'Adventure'),(12549,449089,'Comedy'),(12550,449089,'Family'),(12551,449092,'Horror'),(12552,449092,'Mystery'),(12553,449092,'Short'),(12554,449144,'Drama'),(12555,449144,'Horror'),(12556,449144,'Mystery'),(12557,449172,'Comedy'),(12558,449172,'Short'),(12559,449467,'Drama'),(12560,449487,'Mystery'),(12561,449487,'Romance'),(12562,449487,'Thriller'),(12563,449869,'Action'),(12564,449869,'Comedy'),(12565,449869,'Drama'),(12566,450121,'Drama'),(12567,450188,'Biography'),(12568,450188,'Drama'),(12569,450188,'Music'),(12570,450259,'Adventure'),(12571,450259,'Drama'),(12572,450259,'Thriller'),(12573,450278,'Horror'),(12574,450345,'Horror'),(12575,450345,'Mystery'),(12576,450345,'Thriller'),(12577,450385,'Fantasy'),(12578,450385,'Horror'),(12579,450385,'Mystery'),(12580,450506,'Comedy'),(12581,450506,'Drama'),(12582,450506,'Thriller'),(12583,450982,'Animation'),(12584,450982,'Family'),(12585,450982,'Fantasy'),(12586,451079,'Adventure'),(12587,451079,'Animation'),(12588,451079,'Comedy'),(12589,451094,'Crime'),(12590,451094,'Drama'),(12591,451094,'Thriller'),(12592,451176,'Drama'),(12593,451279,'Action'),(12594,451279,'Adventure'),(12595,451279,'Fantasy'),(12596,451829,'Comedy'),(12597,451829,'Fantasy'),(12598,451957,'Horror'),(12599,451957,'Thriller'),(12600,451966,'Drama'),(12601,451966,'Music'),(12602,452594,'Comedy'),(12603,452594,'Drama'),(12604,452594,'Romance'),(12605,452598,'Adventure'),(12606,452598,'Comedy'),(12607,452598,'Family'),(12608,452608,'Action'),(12609,452608,'Sci-Fi'),(12610,452608,'Thriller'),(12611,452623,'Crime'),(12612,452623,'Drama'),(12613,452623,'Mystery'),(12614,452624,'Drama'),(12615,452624,'Mystery'),(12616,452624,'Romance'),(12617,452637,'Drama'),(12618,452637,'Fantasy'),(12619,452637,'Mystery'),(12620,452694,'Comedy'),(12621,452694,'Drama'),(12622,452694,'Fantasy'),(12623,452702,'Horror'),(12624,452702,'Thriller'),(12625,453451,'Comedy'),(12626,453451,'Family'),(12627,453467,'Action'),(12628,453467,'Crime'),(12629,453467,'Sci-Fi'),(12630,453556,'Action'),(12631,453556,'Adventure'),(12632,453556,'Animation'),(12633,453562,'Biography'),(12634,453562,'Drama'),(12635,453562,'Sport'),(12636,454082,'Horror'),(12637,454776,'Biography'),(12638,454776,'Drama'),(12639,454776,'History'),(12640,454841,'Horror'),(12641,454841,'Thriller'),(12642,454848,'Crime'),(12643,454848,'Drama'),(12644,454848,'Mystery'),(12645,454876,'Adventure'),(12646,454876,'Drama'),(12647,454876,'Fantasy'),(12648,454921,'Biography'),(12649,454921,'Drama'),(12650,454931,'Drama'),(12651,454931,'Horror'),(12652,454945,'Comedy'),(12653,454945,'Romance'),(12654,454945,'Sport'),(12655,455323,'Drama'),(12656,455407,'Horror'),(12657,455407,'Thriller'),(12658,455577,'Comedy'),(12659,455590,'Biography'),(12660,455590,'Drama'),(12661,455590,'History'),(12662,455596,'Action'),(12663,455596,'Adventure'),(12664,455596,'Comedy'),(12665,455612,'Comedy'),(12666,455612,'Drama'),(12667,455612,'Romance'),(12668,455760,'Horror'),(12669,455760,'Mystery'),(12670,455760,'Thriller'),(12671,455805,'Comedy'),(12672,455805,'Drama'),(12673,455805,'Romance'),(12674,455824,'Adventure'),(12675,455824,'Drama'),(12676,455824,'Romance'),(12677,455857,'Horror'),(12678,455857,'Thriller'),(12679,455944,'Action'),(12680,455944,'Crime'),(12681,455944,'Thriller'),(12682,455967,'Comedy'),(12683,455967,'Romance'),(12684,456111,'Crime'),(12685,456111,'Drama'),(12686,456111,'Thriller'),(12687,456554,'Comedy'),(12688,456630,'Horror'),(12689,456630,'Mystery'),(12690,456912,'Action'),(12691,456912,'Crime'),(12692,456912,'Drama'),(12693,457275,'Horror'),(12694,457275,'Sci-Fi'),(12695,457275,'Thriller'),(12696,457400,'Action'),(12697,457400,'Adventure'),(12698,457400,'Comedy'),(12699,457419,'Comedy'),(12700,457419,'Family'),(12701,457419,'Fantasy'),(12702,457430,'Drama'),(12703,457430,'Fantasy'),(12704,457430,'War'),(12705,457433,'Crime'),(12706,457433,'Mystery'),(12707,457433,'Thriller'),(12708,457489,'Action'),(12709,457489,'Adventure'),(12710,457489,'Sci-Fi'),(12711,457510,'Comedy'),(12712,457510,'Family'),(12713,457510,'Sport'),(12714,457572,'Comedy'),(12715,457572,'Drama'),(12716,457572,'Horror'),(12717,457655,'Drama'),(12718,457939,'Comedy'),(12719,457939,'Romance'),(12720,458339,'Action'),(12721,458339,'Adventure'),(12722,458339,'Sci-Fi'),(12723,458352,'Comedy'),(12724,458352,'Drama'),(12725,458413,'Comedy'),(12726,458413,'Drama'),(12727,458455,'Drama'),(12728,458455,'History'),(12729,458455,'Romance'),(12730,458471,'Action'),(12731,458471,'Thriller'),(12732,458471,'War'),(12733,458481,'Action'),(12734,458481,'Crime'),(12735,458481,'Thriller'),(12736,458525,'Action'),(12737,458525,'Sci-Fi'),(12738,459102,'Drama'),(12739,459175,'Drama'),(12740,459449,'Action'),(12741,459449,'Drama'),(12742,459449,'Sport'),(12743,459959,'Animation'),(12744,460721,'Comedy'),(12745,460721,'Romance'),(12746,460721,'Sport'),(12747,460732,'Comedy'),(12748,460740,'Comedy'),(12749,460740,'Drama'),(12750,460740,'Romance'),(12751,460791,'Adventure'),(12752,460791,'Drama'),(12753,460791,'Fantasy'),(12754,460792,'Comedy'),(12755,460792,'Drama'),(12756,460829,'Drama'),(12757,460829,'Fantasy'),(12758,460829,'Mystery'),(12759,460890,'Drama'),(12760,460897,'Drama'),(12761,460897,'Horror'),(12762,460897,'Mystery'),(12763,460989,'Drama'),(12764,460989,'War'),(12765,461612,'Adventure'),(12766,461612,'Comedy'),(12767,461612,'Fantasy'),(12768,461770,'Adventure'),(12769,461770,'Animation'),(12770,461770,'Comedy'),(12771,461826,'Horror'),(12772,461826,'Mystery'),(12773,462309,'Comedy'),(12774,462329,'Action'),(12775,462329,'Thriller'),(12776,462335,'Drama'),(12777,462335,'Sci-Fi'),(12778,462485,'Comedy'),(12779,462485,'Horror'),(12780,462485,'Musical'),(12781,462499,'Action'),(12782,462499,'Adventure'),(12783,462499,'Thriller'),(12784,462538,'Adventure'),(12785,462538,'Animation'),(12786,462538,'Comedy'),(12787,462590,'Crime'),(12788,462590,'Drama'),(12789,462590,'Music'),(12790,463034,'Comedy'),(12791,463034,'Romance'),(12792,463854,'Action'),(12793,463854,'Adventure'),(12794,463854,'Horror'),(12795,463985,'Action'),(12796,463985,'Crime'),(12797,463985,'Thriller'),(12798,463998,'Biography'),(12799,463998,'Crime'),(12800,463998,'Drama'),(12801,464029,'Drama'),(12802,464049,'Comedy'),(12803,464049,'Drama'),(12804,464049,'Romance'),(12805,464061,'Comedy'),(12806,464061,'Drama'),(12807,464061,'Romance'),(12808,464141,'Drama'),(12809,464141,'Horror'),(12810,464141,'Mystery'),(12811,465234,'Action'),(12812,465234,'Adventure'),(12813,465234,'Mystery'),(12814,465375,'Comedy'),(12815,465375,'Drama'),(12816,465375,'Romance'),(12817,465494,'Action'),(12818,465494,'Crime'),(12819,465494,'Thriller'),(12820,465502,'Animation'),(12821,465502,'Comedy'),(12822,465502,'Family'),(12823,465538,'Crime'),(12824,465538,'Drama'),(12825,465538,'Mystery'),(12826,465551,'Crime'),(12827,465551,'Drama'),(12828,465551,'Romance'),(12829,465580,'Action'),(12830,465580,'Sci-Fi'),(12831,465580,'Thriller'),(12832,465602,'Action'),(12833,465602,'Comedy'),(12834,465602,'Thriller'),(12835,465624,'Comedy'),(12836,465624,'Romance'),(12837,465624,'Sci-Fi'),(12838,465925,'Adventure'),(12839,465925,'Animation'),(12840,465925,'Comedy'),(12841,466405,'Animation'),(12842,466405,'Comedy'),(12843,466405,'Drama'),(12844,466665,'Crime'),(12845,466665,'Drama'),(12846,466665,'Romance'),(12847,466839,'Comedy'),(12848,466839,'Drama'),(12849,466839,'Romance'),(12850,466876,'Documentary'),(12851,466876,'Short'),(12852,466893,'Drama'),(12853,467110,'Action'),(12854,467110,'Adventure'),(12855,467110,'Comedy'),(12856,467197,'Action'),(12857,467197,'Crime'),(12858,467197,'Drama'),(12859,467200,'Biography'),(12860,467200,'Drama'),(12861,467200,'History'),(12862,467406,'Comedy'),(12863,467406,'Drama'),(12864,467421,'Comedy'),(12865,467421,'Drama'),(12866,467421,'Family'),(12867,468489,'Drama'),(12868,468492,'Drama'),(12869,468492,'Horror'),(12870,468492,'Sci-Fi'),(12871,468569,'Action'),(12872,468569,'Crime'),(12873,468569,'Drama'),(12874,468795,'Comedy'),(12875,468795,'Drama'),(12876,468795,'Music'),(12877,469021,'Action'),(12878,469021,'Comedy'),(12879,469021,'Crime'),(12880,469494,'Drama'),(12881,469641,'Drama'),(12882,469641,'History'),(12883,469641,'Thriller'),(12884,470055,'Adventure'),(12885,470055,'Drama'),(12886,470055,'Horror'),(12887,470705,'Drama'),(12888,470705,'Horror'),(12889,470705,'Thriller'),(12890,470752,'Drama'),(12891,470752,'Sci-Fi'),(12892,470752,'Thriller'),(12893,470765,'Comedy'),(12894,471030,'Drama'),(12895,471030,'Mystery'),(12896,471030,'Thriller'),(12897,471041,'Action'),(12898,471041,'Thriller'),(12899,471042,'Action'),(12900,471042,'Comedy'),(12901,471042,'Crime'),(12902,471287,'Comedy'),(12903,471711,'Animation'),(12904,471711,'Comedy'),(12905,471711,'Musical'),(12906,471834,'Drama'),(12907,471834,'Music'),(12908,471834,'Romance'),(12909,472033,'Action'),(12910,472033,'Adventure'),(12911,472033,'Animation'),(12912,472043,'Action'),(12913,472043,'Adventure'),(12914,472043,'Drama'),(12915,472062,'Biography'),(12916,472062,'Comedy'),(12917,472062,'Drama'),(12918,472071,'Drama'),(12919,472071,'History'),(12920,472071,'Romance'),(12921,472160,'Comedy'),(12922,472160,'Fantasy'),(12923,472160,'Romance'),(12924,472181,'Adventure'),(12925,472181,'Animation'),(12926,472181,'Comedy'),(12927,472205,'Comedy'),(12928,472205,'Romance'),(12929,472399,'Action'),(12930,472399,'Crime'),(12931,472399,'Thriller'),(12932,473074,'Drama'),(12933,473074,'Romance'),(12934,473074,'Sport'),(12935,473075,'Action'),(12936,473075,'Adventure'),(12937,473075,'Fantasy'),(12938,473105,'Action'),(12939,473105,'Adventure'),(12940,473105,'Horror'),(12941,473308,'Comedy'),(12942,473308,'Drama'),(12943,473308,'Romance'),(12944,473364,'Thriller'),(12945,473444,'Action'),(12946,473444,'Drama'),(12947,473444,'Romance'),(12948,473488,'Crime'),(12949,473488,'Drama'),(12950,473514,'Horror'),(12951,473514,'Sci-Fi'),(12952,473514,'Thriller'),(12953,473705,'Crime'),(12954,473705,'Drama'),(12955,473705,'Mystery'),(12956,473753,'Comedy'),(12957,473753,'Drama'),(12958,473753,'Fantasy'),(12959,474361,'Documentary'),(12960,475169,'Crime'),(12961,475169,'Drama'),(12962,475169,'Thriller'),(12963,475243,'Drama'),(12964,475290,'Comedy'),(12965,475290,'Drama'),(12966,475290,'Mystery'),(12967,475293,'Comedy'),(12968,475293,'Drama'),(12969,475293,'Family'),(12970,475394,'Action'),(12971,475394,'Comedy'),(12972,475394,'Crime'),(12973,475944,'Action'),(12974,475944,'Adventure'),(12975,475944,'Fantasy'),(12976,476013,'Drama'),(12977,476298,'Drama'),(12978,476680,'Action'),(12979,476680,'Adventure'),(12980,476680,'Animation'),(12981,476964,'Action'),(12982,476964,'Crime'),(12983,476964,'Drama'),(12984,476991,'Adventure'),(12985,476991,'Comedy'),(12986,476991,'Fantasy'),(12987,477051,'Comedy'),(12988,477051,'Romance'),(12989,477071,'Drama'),(12990,477071,'Fantasy'),(12991,477071,'Mystery'),(12992,477072,'Comedy'),(12993,477072,'Family'),(12994,477072,'Romance'),(12995,477080,'Action'),(12996,477080,'Thriller'),(12997,477095,'Comedy'),(12998,477095,'Drama'),(12999,477095,'Romance'),(13000,477139,'Comedy'),(13001,477139,'Drama'),(13002,477139,'Fantasy'),(13003,477266,'Short'),(13004,477266,'Sport'),(13005,477302,'Adventure'),(13006,477302,'Drama'),(13007,477302,'Mystery'),(13008,477311,'Horror'),(13009,477311,'Thriller'),(13010,477347,'Adventure'),(13011,477347,'Comedy'),(13012,477347,'Family'),(13013,477348,'Crime'),(13014,477348,'Drama'),(13015,477348,'Thriller'),(13016,478087,'Crime'),(13017,478087,'Drama'),(13018,478087,'History'),(13019,478160,'Documentary'),(13020,478304,'Drama'),(13021,478304,'Fantasy'),(13022,478311,'Comedy'),(13023,478311,'Romance'),(13024,478724,'Comedy'),(13025,478724,'Romance'),(13026,478970,'Action'),(13027,478970,'Comedy'),(13028,478970,'Sci-Fi'),(13029,478976,'Drama'),(13030,478976,'Horror'),(13031,478976,'Thriller'),(13032,478988,'Horror'),(13033,478988,'Mystery'),(13034,479143,'Action'),(13035,479143,'Drama'),(13036,479143,'Sport'),(13037,479500,'Comedy'),(13038,479500,'Crime'),(13039,479500,'Family'),(13040,479647,'Action'),(13041,479647,'Comedy'),(13042,479647,'Crime'),(13043,479884,'Action'),(13044,479884,'Crime'),(13045,479884,'Thriller'),(13046,479917,'Drama'),(13047,479952,'Adventure'),(13048,479952,'Animation'),(13049,479952,'Comedy'),(13050,480025,'Crime'),(13051,480025,'Drama'),(13052,480239,'Drama'),(13053,480239,'Mystery'),(13054,480239,'Sci-Fi'),(13055,480242,'Comedy'),(13056,480242,'Drama'),(13057,480242,'Romance'),(13058,480249,'Action'),(13059,480249,'Drama'),(13060,480249,'Horror'),(13061,480255,'Action'),(13062,480255,'Adventure'),(13063,480255,'Comedy'),(13064,480345,'Animation'),(13065,480345,'Family'),(13066,480345,'Romance'),(13067,480669,'Horror'),(13068,480669,'Mystery'),(13069,480669,'Sci-Fi'),(13070,480687,'Comedy'),(13071,480687,'Romance'),(13072,481141,'Comedy'),(13073,481141,'Drama'),(13074,481141,'Romance'),(13075,481369,'Crime'),(13076,481369,'Mystery'),(13077,481369,'Thriller'),(13078,481499,'Action'),(13079,481499,'Adventure'),(13080,481499,'Animation'),(13081,482374,'Drama'),(13082,482374,'Horror'),(13083,482374,'Thriller'),(13084,482459,'Drama'),(13085,482459,'Music'),(13086,482459,'Romance'),(13087,482546,'Biography'),(13088,482546,'Drama'),(13089,482546,'Romance'),(13090,482571,'Drama'),(13091,482571,'Mystery'),(13092,482571,'Sci-Fi'),(13093,482606,'Horror'),(13094,482606,'Mystery'),(13095,482606,'Thriller'),(13096,483022,'Comedy'),(13097,483022,'Drama'),(13098,483607,'Action'),(13099,483607,'Sci-Fi'),(13100,483607,'Thriller'),(13101,483726,'Comedy'),(13102,483726,'Drama'),(13103,483726,'Romance'),(13104,485601,'Adventure'),(13105,485601,'Animation'),(13106,485601,'Family'),(13107,485851,'Crime'),(13108,485851,'Drama'),(13109,485851,'Thriller'),(13110,485947,'Drama'),(13111,485947,'Fantasy'),(13112,485947,'Romance'),(13113,485985,'Action'),(13114,485985,'Drama'),(13115,485985,'History'),(13116,486321,'Adventure'),(13117,486321,'Animation'),(13118,486321,'Family'),(13119,486551,'Comedy'),(13120,486576,'Action'),(13121,486576,'Adventure'),(13122,486576,'Fantasy'),(13123,486583,'Comedy'),(13124,486583,'Family'),(13125,486583,'Fantasy'),(13126,486651,'Horror'),(13127,486651,'Thriller'),(13128,486655,'Adventure'),(13129,486655,'Family'),(13130,486655,'Fantasy'),(13131,486731,'Animation'),(13132,486731,'Family'),(13133,486731,'Musical'),(13134,486822,'Crime'),(13135,486822,'Drama'),(13136,486822,'Mystery'),(13137,486946,'Action'),(13138,486946,'Adventure'),(13139,486946,'Comedy'),(13140,486978,'Animation'),(13141,486978,'Comedy'),(13142,486978,'Short'),(13143,487195,'Comedy'),(13144,487195,'Drama'),(13145,487503,'Drama'),(13146,487503,'Music'),(13147,487503,'Thriller'),(13148,487928,'Adventure'),(13149,487928,'Sci-Fi'),(13150,487928,'Thriller'),(13151,488023,'Comedy'),(13152,488023,'Drama'),(13153,488023,'Romance'),(13154,488120,'Crime'),(13155,488120,'Drama'),(13156,488120,'Thriller'),(13157,489007,'Comedy'),(13158,489007,'Family'),(13159,489007,'Romance'),(13160,489010,'Crime'),(13161,489010,'Thriller'),(13162,489018,'Action'),(13163,489018,'Horror'),(13164,489018,'Sci-Fi'),(13165,489049,'Adventure'),(13166,489049,'Comedy'),(13167,489049,'Crime'),(13168,489099,'Action'),(13169,489099,'Adventure'),(13170,489099,'Sci-Fi'),(13171,489134,'Action'),(13172,489134,'Adventure'),(13173,489134,'Animation'),(13174,489237,'Comedy'),(13175,489237,'Drama'),(13176,489237,'Romance'),(13177,489244,'Horror'),(13178,489270,'Horror'),(13179,489270,'Mystery'),(13180,489270,'Thriller'),(13181,489282,'Adventure'),(13182,489282,'Comedy'),(13183,489682,'Adventure'),(13184,489682,'Drama'),(13185,490084,'Comedy'),(13186,490084,'Romance'),(13187,490166,'Crime'),(13188,490166,'Drama'),(13189,490166,'Thriller'),(13190,490181,'Action'),(13191,490181,'Adventure'),(13192,490181,'Mystery'),(13193,490215,'Drama'),(13194,490215,'History'),(13195,490822,'Comedy'),(13196,490822,'Sport'),(13197,491044,'Drama'),(13198,491044,'Romance'),(13199,491203,'Drama'),(13200,491203,'History'),(13201,491203,'Romance'),(13202,491603,'Adventure'),(13203,491603,'Comedy'),(13204,491603,'Drama'),(13205,491738,'Comedy'),(13206,491738,'Crime'),(13207,491738,'Mystery'),(13208,491747,'Drama'),(13209,492481,'Comedy'),(13210,492481,'Romance'),(13211,492486,'Comedy'),(13212,492486,'Horror'),(13213,492486,'Mystery'),(13214,492506,'Documentary'),(13215,492571,'Adventure'),(13216,493093,'Comedy'),(13217,493093,'Family'),(13218,493093,'Music'),(13219,493430,'Action'),(13220,493430,'Comedy'),(13221,493430,'Documentary'),(13222,493451,'Horror'),(13223,493451,'Thriller'),(13224,493459,'Documentary'),(13225,493464,'Action'),(13226,493464,'Crime'),(13227,493464,'Thriller'),(13228,493949,'Comedy'),(13229,493949,'Drama'),(13230,493949,'Family'),(13231,494199,'Horror'),(13232,494199,'Thriller'),(13233,494222,'Comedy'),(13234,494222,'Romance'),(13235,494238,'Adventure'),(13236,494238,'Family'),(13237,494238,'Fantasy'),(13238,494271,'Drama'),(13239,494271,'Mystery'),(13240,494271,'Thriller'),(13241,494652,'Comedy'),(13242,494652,'Romance'),(13243,495596,'Adventure'),(13244,495596,'Animation'),(13245,495596,'Fantasy'),(13246,496328,'Comedy'),(13247,496328,'Drama'),(13248,496328,'Romance'),(13249,496436,'Drama'),(13250,496436,'Fantasy'),(13251,496436,'Horror'),(13252,496806,'Crime'),(13253,496806,'Thriller'),(13254,497137,'Comedy'),(13255,497137,'Drama'),(13256,497137,'Romance'),(13257,497465,'Comedy'),(13258,497465,'Drama'),(13259,497465,'Romance'),(13260,498353,'Horror'),(13261,498380,'Action'),(13262,498380,'Adventure'),(13263,498380,'Drama'),(13264,498381,'Drama'),(13265,498381,'Horror'),(13266,498381,'Mystery'),(13267,498399,'Action'),(13268,498399,'Crime'),(13269,498399,'Drama'),(13270,499097,'Action'),(13271,499097,'Thriller'),(13272,499097,'War'),(13273,499448,'Action'),(13274,499448,'Adventure'),(13275,499448,'Family'),(13276,499455,'Crime'),(13277,499455,'Drama'),(13278,499455,'Thriller'),(13279,499537,'Comedy'),(13280,499537,'Drama'),(13281,499537,'Sport'),(13282,499549,'Action'),(13283,499549,'Adventure'),(13284,499549,'Fantasy'),(13285,598828,'Comedy'),(13286,598828,'Crime'),(13287,598828,'Drama'),(13288,643106,'Horror'),(13289,643110,'Horror'),(13290,756522,'Adventure'),(13291,756522,'Animation'),(13292,756522,'Comedy'),(13293,756683,'Drama'),(13294,756683,'Fantasy'),(13295,756683,'Mystery'),(13296,756729,'Comedy'),(13297,756729,'Drama'),(13298,757061,'Horror'),(13299,757361,'Comedy'),(13300,757361,'Drama'),(13301,758730,'Action'),(13302,758730,'Adventure'),(13303,758730,'Horror'),(13304,758732,'Action'),(13305,758732,'Drama'),(13306,758732,'War'),(13307,758746,'Horror'),(13308,758746,'Mystery'),(13309,758746,'Thriller'),(13310,758751,'Biography'),(13311,758751,'Drama'),(13312,758752,'Comedy'),(13313,758752,'Drama'),(13314,758752,'Romance'),(13315,758753,'Comedy'),(13316,758753,'Drama'),(13317,758758,'Adventure'),(13318,758758,'Biography'),(13319,758758,'Drama'),(13320,758766,'Comedy'),(13321,758766,'Music'),(13322,758766,'Romance'),(13323,758771,'Action'),(13324,758771,'Crime'),(13325,758771,'Drama'),(13326,758774,'Action'),(13327,758774,'Drama'),(13328,758774,'Thriller'),(13329,758794,'Drama'),(13330,758794,'Sport'),(13331,760329,'Adventure'),(13332,760329,'Family'),(13333,760329,'Fantasy'),(13334,762073,'Drama'),(13335,762073,'Fantasy'),(13336,762073,'Horror'),(13337,762110,'Comedy'),(13338,762110,'Drama'),(13339,762125,'Adventure'),(13340,762125,'Animation'),(13341,762125,'Comedy'),(13342,762148,'Adventure'),(13343,762148,'Animation'),(13344,762148,'Comedy'),(13345,763831,'Comedy'),(13346,763831,'Drama'),(13347,763831,'Fantasy'),(13348,765010,'Drama'),(13349,765010,'Thriller'),(13350,765010,'War'),(13351,765120,'Drama'),(13352,765120,'Romance'),(13353,765429,'Biography'),(13354,765429,'Crime'),(13355,765429,'Drama'),(13356,765430,'Comedy'),(13357,765430,'Drama'),(13358,765430,'Horror'),(13359,765432,'Action'),(13360,765432,'Biography'),(13361,765432,'Crime'),(13362,765443,'Crime'),(13363,765443,'Drama'),(13364,765443,'Thriller'),(13365,765446,'Adventure'),(13366,765446,'Animation'),(13367,765446,'Comedy'),(13368,765447,'Drama'),(13369,765447,'Romance'),(13370,765458,'Comedy'),(13371,765458,'Fantasy'),(13372,765476,'Adventure'),(13373,765476,'Comedy'),(13374,765476,'Family'),(13375,768116,'Comedy'),(13376,768116,'Drama'),(13377,768132,'Adventure'),(13378,768132,'Animation'),(13379,768132,'Family'),(13380,768212,'Action'),(13381,768212,'Adventure'),(13382,768212,'Drama'),(13383,768239,'Drama'),(13384,769508,'Drama'),(13385,769508,'Romance'),(13386,770703,'Comedy'),(13387,770703,'Romance'),(13388,770739,'Action'),(13389,770739,'Comedy'),(13390,770739,'Horror'),(13391,770802,'Documentary'),(13392,770802,'Music'),(13393,770828,'Action'),(13394,770828,'Adventure'),(13395,770828,'Sci-Fi'),(13396,772154,'Drama'),(13397,775489,'Animation'),(13398,775489,'Drama'),(13399,775489,'Fantasy'),(13400,775529,'Comedy'),(13401,775529,'Drama'),(13402,775543,'Drama'),(13403,775543,'Romance'),(13404,775552,'Adventure'),(13405,775552,'Comedy'),(13406,775552,'Family'),(13407,778631,'Adventure'),(13408,778631,'Animation'),(13409,778631,'Mystery'),(13410,779496,'Horror'),(13411,779982,'Comedy'),(13412,779982,'Horror'),(13413,779982,'Sci-Fi'),(13414,780504,'Action'),(13415,780504,'Drama'),(13416,780511,'Adventure'),(13417,780511,'Drama'),(13418,780521,'Adventure'),(13419,780521,'Animation'),(13420,780521,'Comedy'),(13421,780536,'Comedy'),(13422,780536,'Crime'),(13423,780536,'Drama'),(13424,780565,'Comedy'),(13425,780565,'Drama'),(13426,780583,'Horror'),(13427,780607,'Horror'),(13428,780607,'Sci-Fi'),(13429,780607,'Thriller'),(13430,780608,'Comedy'),(13431,780622,'Comedy'),(13432,780622,'Fantasy'),(13433,780622,'Horror'),(13434,780653,'Drama'),(13435,780653,'Fantasy'),(13436,780653,'Horror'),(13437,782399,'Horror'),(13438,782867,'Drama'),(13439,782867,'Romance'),(13440,783233,'Drama'),(13441,783233,'Mystery'),(13442,783233,'Romance'),(13443,783238,'Crime'),(13444,783238,'Drama'),(13445,783238,'Mystery'),(13446,783640,'Drama'),(13447,783640,'War'),(13448,784972,'Comedy'),(13449,785002,'Comedy'),(13450,785002,'Drama'),(13451,785002,'Music'),(13452,785007,'Comedy'),(13453,785007,'Fantasy'),(13454,785007,'Romance'),(13455,785532,'Horror'),(13456,785533,'Horror'),(13457,787474,'Adventure'),(13458,787474,'Animation'),(13459,787474,'Comedy'),(13460,787475,'Comedy'),(13461,787475,'Sport'),(13462,787523,'Drama'),(13463,787524,'Biography'),(13464,787524,'Drama'),(13465,790627,'Comedy'),(13466,790627,'Drama'),(13467,790628,'Comedy'),(13468,790636,'Biography'),(13469,790636,'Drama'),(13470,790686,'Horror'),(13471,790686,'Mystery'),(13472,790712,'Drama'),(13473,790712,'Romance'),(13474,790712,'War'),(13475,790724,'Action'),(13476,790724,'Mystery'),(13477,790724,'Thriller'),(13478,790736,'Action'),(13479,790736,'Adventure'),(13480,790736,'Comedy'),(13481,790770,'Biography'),(13482,790770,'Drama'),(13483,790770,'Music'),(13484,790781,'Action'),(13485,790781,'Adventure'),(13486,790781,'Family'),(13487,792965,'Drama'),(13488,792965,'Romance'),(13489,795338,'Animation'),(13490,795338,'Family'),(13491,795351,'Horror'),(13492,795351,'Mystery'),(13493,795351,'Thriller'),(13494,795368,'Comedy'),(13495,795421,'Comedy'),(13496,795421,'Musical'),(13497,795421,'Romance'),(13498,795439,'Comedy'),(13499,795439,'Drama'),(13500,795439,'Romance'),(13501,796302,'Drama'),(13502,796307,'Adventure'),(13503,796307,'Drama'),(13504,796366,'Action'),(13505,796366,'Adventure'),(13506,796366,'Sci-Fi'),(13507,799934,'Comedy'),(13508,799949,'Adventure'),(13509,799949,'Comedy'),(13510,799949,'Fantasy'),(13511,800039,'Comedy'),(13512,800039,'Drama'),(13513,800039,'Romance'),(13514,800080,'Action'),(13515,800080,'Adventure'),(13516,800080,'Sci-Fi'),(13517,800240,'Crime'),(13518,800240,'Drama'),(13519,800240,'Mystery'),(13520,800241,'Crime'),(13521,800241,'Drama'),(13522,800241,'Mystery'),(13523,800308,'Action'),(13524,800308,'Crime'),(13525,800308,'Drama'),(13526,800318,'Comedy'),(13527,800318,'Drama'),(13528,800318,'Family'),(13529,800320,'Action'),(13530,800320,'Adventure'),(13531,800320,'Fantasy'),(13532,800369,'Action'),(13533,800369,'Fantasy'),(13534,801526,'Drama'),(13535,803096,'Action'),(13536,803096,'Adventure'),(13537,803096,'Fantasy'),(13538,804452,'Comedy'),(13539,804452,'Family'),(13540,804452,'Music'),(13541,804497,'Comedy'),(13542,804497,'Drama'),(13543,804497,'Romance'),(13544,804513,'Drama'),(13545,804513,'Romance'),(13546,804516,'Crime'),(13547,804516,'Horror'),(13548,804516,'Thriller'),(13549,804529,'Drama'),(13550,804529,'Romance'),(13551,804529,'Sci-Fi'),(13552,804539,'Action'),(13553,804539,'Horror'),(13554,804539,'Thriller'),(13555,805420,'Horror'),(13556,805564,'Comedy'),(13557,805564,'Drama'),(13558,805564,'Romance'),(13559,805647,'Adventure'),(13560,805647,'Comedy'),(13561,805647,'Family'),(13562,806027,'Action'),(13563,806027,'Adventure'),(13564,806027,'Fantasy'),(13565,806203,'Action'),(13566,806203,'Adventure'),(13567,806203,'Drama'),(13568,806940,'Comedy'),(13569,807054,'Drama'),(13570,807721,'Drama'),(13571,807840,'Animation'),(13572,807840,'Sci-Fi'),(13573,807840,'Short'),(13574,807965,'Drama'),(13575,808151,'Action'),(13576,808151,'Mystery'),(13577,808151,'Thriller'),(13578,808230,'Comedy'),(13579,808230,'Fantasy'),(13580,808244,'Comedy'),(13581,808244,'Romance'),(13582,808357,'Drama'),(13583,808357,'History'),(13584,808357,'Romance'),(13585,808417,'Animation'),(13586,808417,'Biography'),(13587,808417,'Drama'),(13588,808506,'Adventure'),(13589,808506,'Animation'),(13590,808506,'Comedy'),(13591,808526,'Comedy'),(13592,808526,'Drama'),(13593,809407,'Comedy'),(13594,809407,'Drama'),(13595,809533,'Drama'),(13596,809533,'History'),(13597,810784,'Biography'),(13598,810784,'Drama'),(13599,810784,'Romance'),(13600,810819,'Biography'),(13601,810819,'Crime'),(13602,810819,'Drama'),(13603,810868,'Comedy'),(13604,810868,'Drama'),(13605,810900,'Comedy'),(13606,810900,'Drama'),(13607,810900,'Family'),(13608,810913,'Comedy'),(13609,811080,'Action'),(13610,811080,'Adventure'),(13611,811080,'Comedy'),(13612,811138,'Comedy'),(13613,811138,'Romance'),(13614,811138,'Sport'),(13615,812243,'Comedy'),(13616,812243,'Crime'),(13617,812243,'Drama'),(13618,814106,'Animation'),(13619,814106,'Short'),(13620,814255,'Adventure'),(13621,814255,'Family'),(13622,814255,'Fantasy'),(13623,814314,'Drama'),(13624,814314,'Mystery'),(13625,814314,'Thriller'),(13626,814331,'Comedy'),(13627,814331,'Romance'),(13628,814795,'Action'),(13629,814795,'Adventure'),(13630,814795,'Drama'),(13631,815178,'Drama'),(13632,815178,'Fantasy'),(13633,815178,'Mystery'),(13634,815244,'Comedy'),(13635,815244,'Drama'),(13636,815244,'Romance'),(13637,815245,'Drama'),(13638,815245,'Fantasy'),(13639,815245,'Horror'),(13640,816436,'Adventure'),(13641,816436,'Drama'),(13642,816436,'Horror'),(13643,816442,'Drama'),(13644,816442,'War'),(13645,816462,'Action'),(13646,816462,'Adventure'),(13647,816462,'Fantasy'),(13648,816520,'Action'),(13649,816520,'Comedy'),(13650,816520,'Family'),(13651,816530,'Drama'),(13652,816530,'Thriller'),(13653,816556,'Drama'),(13654,816556,'Horror'),(13655,816556,'Mystery'),(13656,816692,'Adventure'),(13657,816692,'Drama'),(13658,816692,'Sci-Fi'),(13659,816711,'Action'),(13660,816711,'Adventure'),(13661,816711,'Horror'),(13662,817177,'Comedy'),(13663,817177,'Drama'),(13664,817177,'Romance'),(13665,817230,'Comedy'),(13666,817230,'Romance'),(13667,817400,'Horror'),(13668,817401,'Horror'),(13669,817402,'Horror'),(13670,818165,'Crime'),(13671,818165,'Mystery'),(13672,818165,'Thriller'),(13673,818940,'Drama'),(13674,818940,'Romance'),(13675,819714,'Biography'),(13676,819714,'Drama'),(13677,819714,'Romance'),(13678,821642,'Biography'),(13679,821642,'Drama'),(13680,821642,'Music'),(13681,822832,'Drama'),(13682,822832,'Family'),(13683,822847,'Action'),(13684,822847,'Fantasy'),(13685,822847,'Horror'),(13686,822854,'Action'),(13687,822854,'Drama'),(13688,822854,'Thriller'),(13689,823158,'Comedy'),(13690,823158,'Drama'),(13691,823158,'Romance'),(13692,823671,'Adventure'),(13693,823671,'Animation'),(13694,823671,'Family'),(13695,824316,'Drama'),(13696,824747,'Biography'),(13697,824747,'Crime'),(13698,824747,'Drama'),(13699,824758,'Biography'),(13700,824758,'Drama'),(13701,824758,'Romance'),(13702,825232,'Adventure'),(13703,825232,'Comedy'),(13704,825232,'Drama'),(13705,825236,'Comedy'),(13706,825236,'Drama'),(13707,825236,'Romance'),(13708,825244,'Comedy'),(13709,825244,'Drama'),(13710,827517,'Drama'),(13711,829150,'Action'),(13712,829150,'Drama'),(13713,829150,'Fantasy'),(13714,829297,'Comedy'),(13715,829297,'Drama'),(13716,829297,'Romance'),(13717,829482,'Comedy'),(13718,830515,'Action'),(13719,830515,'Adventure'),(13720,830515,'Mystery'),(13721,830535,'Drama'),(13722,830570,'Drama'),(13723,830570,'Romance'),(13724,830896,'Drama'),(13725,830896,'Romance'),(13726,831387,'Action'),(13727,831387,'Adventure'),(13728,831387,'Sci-Fi'),(13729,831887,'Action'),(13730,831887,'Crime'),(13731,831887,'Fantasy'),(13732,831888,'Action'),(13733,831888,'Adventure'),(13734,831888,'Animation'),(13735,832266,'Comedy'),(13736,832266,'Drama'),(13737,832266,'Romance'),(13738,832958,'Comedy'),(13739,832958,'Drama'),(13740,833098,'Horror'),(13741,834001,'Action'),(13742,834001,'Fantasy'),(13743,834001,'Thriller'),(13744,837562,'Adventure'),(13745,837562,'Animation'),(13746,837562,'Comedy'),(13747,837563,'Horror'),(13748,837563,'Mystery'),(13749,837563,'Thriller'),(13750,838192,'Comedy'),(13751,838192,'Romance'),(13752,838221,'Adventure'),(13753,838221,'Comedy'),(13754,838221,'Drama'),(13755,838247,'Drama'),(13756,838247,'Mystery'),(13757,838247,'Thriller'),(13758,838283,'Comedy'),(13759,840361,'Crime'),(13760,840361,'Drama'),(13761,840361,'Thriller'),(13762,840363,'Drama'),(13763,841044,'Comedy'),(13764,841044,'Drama'),(13765,841044,'Romance'),(13766,842926,'Comedy'),(13767,842926,'Drama'),(13768,842926,'Romance'),(13769,844286,'Action'),(13770,844286,'Adventure'),(13771,844286,'Comedy'),(13772,844471,'Adventure'),(13773,844471,'Animation'),(13774,844471,'Comedy'),(13775,844708,'Horror'),(13776,844708,'Thriller'),(13777,844760,'Action'),(13778,844760,'Adventure'),(13779,844760,'Sci-Fi'),(13780,844794,'Drama'),(13781,844794,'Romance'),(13782,844993,'Adventure'),(13783,844993,'Animation'),(13784,844993,'Comedy'),(13785,845046,'Action'),(13786,845046,'Adventure'),(13787,845046,'Comedy'),(13788,848228,'Action'),(13789,848228,'Sci-Fi'),(13790,848537,'Action'),(13791,848537,'Adventure'),(13792,848537,'Animation'),(13793,848542,'Comedy'),(13794,848542,'Drama'),(13795,848542,'Romance'),(13796,848557,'Fantasy'),(13797,848557,'Horror'),(13798,848557,'Sci-Fi'),(13799,850677,'Drama'),(13800,850677,'Horror'),(13801,850677,'Romance'),(13802,851578,'Animation'),(13803,851578,'Drama'),(13804,851578,'Fantasy'),(13805,852713,'Comedy'),(13806,854548,'Horror'),(13807,855729,'Drama'),(13808,855805,'Drama'),(13809,856288,'Horror'),(13810,857191,'Drama'),(13811,859163,'Action'),(13812,859163,'Adventure'),(13813,859163,'Fantasy'),(13814,859594,'Animation'),(13815,859594,'Family'),(13816,859765,'Drama'),(13817,860528,'Action'),(13818,860528,'Horror'),(13819,860528,'Sci-Fi'),(13820,860866,'Crime'),(13821,860866,'Drama'),(13822,860866,'Romance'),(13823,860906,'Action'),(13824,860906,'Animation'),(13825,860906,'Drama'),(13826,860907,'Action'),(13827,860907,'Animation'),(13828,860907,'Drama'),(13829,861689,'Drama'),(13830,861689,'Mystery'),(13831,861689,'Thriller'),(13832,861739,'Action'),(13833,861739,'Crime'),(13834,861739,'Drama'),(13835,862467,'Action'),(13836,862467,'Adventure'),(13837,862467,'Drama'),(13838,862846,'Comedy'),(13839,862846,'Drama'),(13840,862856,'Comedy'),(13841,862856,'Horror'),(13842,863091,'Comedy'),(13843,863091,'Drama'),(13844,863091,'Family'),(13845,864761,'Biography'),(13846,864761,'Drama'),(13847,864761,'History'),(13848,864835,'Adventure'),(13849,864835,'Animation'),(13850,864835,'Comedy'),(13851,865556,'Action'),(13852,865556,'Adventure'),(13853,865556,'Fantasy'),(13854,866437,'Comedy'),(13855,866437,'Drama'),(13856,866437,'Romance'),(13857,866439,'Comedy'),(13858,866439,'Romance'),(13859,868394,'Horror'),(13860,869977,'Drama'),(13861,869977,'Romance'),(13862,870089,'Drama'),(13863,870089,'Romance'),(13864,870090,'Crime'),(13865,870090,'Drama'),(13866,870111,'Biography'),(13867,870111,'Drama'),(13868,870111,'History'),(13869,870154,'Action'),(13870,870154,'Adventure'),(13871,870154,'Comedy'),(13872,870984,'Drama'),(13873,870984,'Horror'),(13874,870984,'Thriller'),(13875,871197,'Horror'),(13876,871426,'Comedy'),(13877,871426,'Romance'),(13878,871510,'Drama'),(13879,871510,'Family'),(13880,871510,'Sport'),(13881,872230,'Horror'),(13882,872230,'Mystery'),(13883,872230,'Thriller'),(13884,873886,'Action'),(13885,873886,'Crime'),(13886,873886,'Horror'),(13887,874271,'Crime'),(13888,874271,'Drama'),(13889,874271,'Mystery'),(13890,874425,'Comedy'),(13891,874425,'Drama'),(13892,875034,'Drama'),(13893,875034,'Musical'),(13894,875034,'Romance'),(13895,875113,'Comedy'),(13896,875113,'Drama'),(13897,876154,'Drama'),(13898,876294,'Horror'),(13899,876294,'Sci-Fi'),(13900,876563,'Adventure'),(13901,876563,'Animation'),(13902,876563,'Comedy'),(13903,877368,'Horror'),(13904,877368,'Short'),(13905,878804,'Biography'),(13906,878804,'Drama'),(13907,878804,'Sport'),(13908,878835,'Comedy'),(13909,878835,'Drama'),(13910,879870,'Biography'),(13911,879870,'Drama'),(13912,879870,'Romance'),(13913,880502,'Drama'),(13914,881891,'Comedy'),(13915,881891,'Romance'),(13916,882978,'Action'),(13917,882978,'Drama'),(13918,882978,'History'),(13919,884328,'Horror'),(13920,884328,'Sci-Fi'),(13921,884328,'Thriller'),(13922,884726,'Adventure'),(13923,884726,'Animation'),(13924,884726,'Family'),(13925,884732,'Comedy'),(13926,884732,'Romance'),(13927,884819,'Animation'),(13928,884819,'Comedy'),(13929,884819,'Fantasy'),(13930,887732,'Drama'),(13931,887745,'Comedy'),(13932,887745,'Drama'),(13933,887883,'Comedy'),(13934,887883,'Crime'),(13935,887883,'Drama'),(13936,887912,'Drama'),(13937,887912,'Thriller'),(13938,887912,'War'),(13939,887971,'Crime'),(13940,887971,'Drama'),(13941,887971,'Thriller'),(13942,888019,'Horror'),(13943,889573,'Comedy'),(13944,889573,'Drama'),(13945,889573,'Romance'),(13946,889583,'Comedy'),(13947,889600,'Drama'),(13948,889665,'Comedy'),(13949,890870,'Horror'),(13950,890870,'Mystery'),(13951,890870,'Thriller'),(13952,891527,'Crime'),(13953,891527,'Drama'),(13954,891527,'Mystery'),(13955,892100,'Drama'),(13956,892255,'Biography'),(13957,892255,'Drama'),(13958,892255,'History'),(13959,892318,'Adventure'),(13960,892318,'Comedy'),(13961,892318,'Drama'),(13962,892769,'Action'),(13963,892769,'Adventure'),(13964,892769,'Animation'),(13965,892782,'Action'),(13966,892782,'Adventure'),(13967,892782,'Animation'),(13968,892791,'Adventure'),(13969,892791,'Animation'),(13970,892791,'Comedy'),(13971,892899,'Action'),(13972,892899,'Horror'),(13973,892899,'Sci-Fi'),(13974,893402,'Drama'),(13975,893402,'Fantasy'),(13976,893402,'Sci-Fi'),(13977,893412,'Action'),(13978,893412,'Comedy'),(13979,893412,'Drama'),(13980,896031,'Drama'),(13981,896031,'Romance'),(13982,896529,'Drama'),(13983,896529,'Romance'),(13984,896534,'Horror'),(13985,896798,'Crime'),(13986,896798,'Thriller'),(13987,896872,'Biography'),(13988,896872,'Crime'),(13989,896872,'Drama'),(13990,896923,'Drama'),(13991,896923,'Romance'),(13992,896986,'Comedy'),(13993,896986,'Drama'),(13994,897361,'Horror'),(13995,897361,'Mystery'),(13996,897361,'Thriller'),(13997,898367,'Drama'),(13998,898367,'Thriller'),(13999,899106,'Drama'),(14000,899106,'Romance'),(14001,900387,'Drama'),(14002,900387,'Romance'),(14003,900387,'Thriller'),(14004,901476,'Comedy'),(14005,901476,'Romance'),(14006,902290,'Comedy'),(14007,902290,'Horror'),(14008,903624,'Adventure'),(14009,903624,'Fantasy'),(14010,903657,'Biography'),(14011,903657,'Drama'),(14012,903657,'Music'),(14013,904049,'Comedy'),(14014,904049,'Horror'),(14015,905372,'Horror'),(14016,905372,'Mystery'),(14017,905372,'Sci-Fi'),(14018,906778,'Biography'),(14019,906778,'Drama'),(14020,907657,'Drama'),(14021,907657,'Music'),(14022,907657,'Romance'),(14023,909010,'Comedy'),(14024,909010,'Drama'),(14025,910554,'Comedy'),(14026,910554,'Sci-Fi'),(14027,910847,'Comedy'),(14028,910847,'Drama'),(14029,910847,'Music'),(14030,910905,'Crime'),(14031,910905,'Drama'),(14032,910905,'Mystery'),(14033,910936,'Action'),(14034,910936,'Comedy'),(14035,910936,'Crime'),(14036,910970,'Adventure'),(14037,910970,'Animation'),(14038,910970,'Family'),(14039,913354,'Action'),(14040,913354,'Crime'),(14041,913354,'Thriller'),(14042,913425,'Drama'),(14043,913425,'Romance'),(14044,913425,'Thriller'),(14045,913445,'Comedy'),(14046,913445,'Drama'),(14047,913445,'Romance'),(14048,914797,'Comedy'),(14049,914797,'Drama'),(14050,914798,'Drama'),(14051,914798,'War'),(14052,914837,'Crime'),(14053,914837,'Drama'),(14054,915460,'Adventure'),(14055,915460,'Comedy'),(14056,915460,'Horror'),(14057,918927,'Drama'),(14058,918927,'Mystery'),(14059,918940,'Action'),(14060,918940,'Adventure'),(14061,918940,'Drama'),(14062,923752,'Biography'),(14063,923752,'Documentary'),(14064,923752,'Sport'),(14065,923811,'Action'),(14066,923811,'Animation'),(14067,923811,'Drama'),(14068,923985,'Action'),(14069,923985,'Adventure'),(14070,923985,'Animation'),(14071,924129,'Crime'),(14072,924129,'Drama'),(14073,925230,'Documentary'),(14074,926063,'Action'),(14075,926063,'Comedy'),(14076,926063,'Horror'),(14077,926084,'Adventure'),(14078,926084,'Family'),(14079,926084,'Fantasy'),(14080,926129,'Horror'),(14081,929425,'Crime'),(14082,929425,'Drama'),(14083,929629,'Action'),(14084,929629,'Adventure'),(14085,929629,'Drama'),(14086,929632,'Drama'),(14087,932669,'Drama'),(14088,934427,'Drama'),(14089,934427,'Mystery'),(14090,934427,'Thriller'),(14091,935075,'Drama'),(14092,936501,'Action'),(14093,936501,'Crime'),(14094,936501,'Thriller'),(14095,937375,'Comedy'),(14096,937375,'Drama'),(14097,937375,'Romance'),(14098,938283,'Action'),(14099,938283,'Adventure'),(14100,938283,'Family'),(14101,938330,'Horror'),(14102,938330,'Mystery'),(14103,938330,'Thriller'),(14104,938341,'Drama'),(14105,940709,'Adventure'),(14106,940709,'Comedy'),(14107,940709,'Drama'),(14108,942384,'Drama'),(14109,942384,'Romance'),(14110,942384,'Sport'),(14111,942385,'Action'),(14112,942385,'Comedy'),(14113,942385,'War'),(14114,942903,'Action'),(14115,942903,'Adventure'),(14116,942903,'Drama'),(14117,943232,'Adventure'),(14118,943232,'Comedy'),(14119,943232,'Family'),(14120,944835,'Action'),(14121,944835,'Thriller'),(14122,945513,'Action'),(14123,945513,'Drama'),(14124,945513,'Mystery'),(14125,947798,'Drama'),(14126,947798,'Thriller'),(14127,947802,'Crime'),(14128,947802,'Drama'),(14129,947802,'Thriller'),(14130,947810,'Action'),(14131,947810,'Drama'),(14132,947810,'Thriller'),(14133,948470,'Action'),(14134,948470,'Adventure'),(14135,948470,'Sci-Fi'),(14136,948530,'Comedy'),(14137,948530,'Drama'),(14138,948530,'Romance'),(14139,948535,'Drama'),(14140,948535,'Music'),(14141,948535,'Musical'),(14142,950740,'Comedy'),(14143,950740,'Drama'),(14144,951216,'Comedy'),(14145,951216,'Crime'),(14146,951216,'Thriller'),(14147,951257,'Documentary'),(14148,951297,'Drama'),(14149,952682,'Drama'),(14150,952682,'Thriller'),(14151,954947,'Crime'),(14152,954947,'Drama'),(14153,954947,'Mystery'),(14154,955308,'Action'),(14155,955308,'Adventure'),(14156,955308,'Drama'),(14157,959337,'Drama'),(14158,959337,'Romance'),(14159,959342,'Comedy'),(14160,959342,'Drama'),(14161,960144,'Action'),(14162,960144,'Comedy'),(14163,960731,'Adventure'),(14164,960731,'Comedy'),(14165,960731,'Family'),(14166,960835,'Action'),(14167,960835,'Mystery'),(14168,960835,'Sci-Fi'),(14169,960890,'Comedy'),(14170,960890,'Horror'),(14171,960890,'Sci-Fi'),(14172,961066,'Drama'),(14173,961066,'History'),(14174,962726,'Comedy'),(14175,962726,'Drama'),(14176,962726,'Family'),(14177,962736,'Biography'),(14178,962736,'Drama'),(14179,962736,'History'),(14180,963194,'Horror'),(14181,963194,'Musical'),(14182,963194,'Sci-Fi'),(14183,963743,'Comedy'),(14184,963743,'Drama'),(14185,963743,'Romance'),(14186,963794,'Adventure'),(14187,963794,'Horror'),(14188,963794,'Thriller'),(14189,963966,'Action'),(14190,963966,'Adventure'),(14191,963966,'Family'),(14192,964516,'Drama'),(14193,964516,'Romance'),(14194,964517,'Action'),(14195,964517,'Biography'),(14196,964517,'Drama'),(14197,964586,'Biography'),(14198,964586,'Drama'),(14199,964587,'Comedy'),(14200,964587,'Family'),(14201,965440,'Drama'),(14202,968264,'Crime'),(14203,968264,'Drama'),(14204,968264,'History'),(14205,969647,'Adventure'),(14206,969647,'Animation'),(14207,969647,'Comedy'),(14208,970179,'Adventure'),(14209,970179,'Drama'),(14210,970179,'Family'),(14211,970411,'Adventure'),(14212,970411,'Drama'),(14213,970411,'Family'),(14214,970416,'Adventure'),(14215,970416,'Drama'),(14216,970416,'Sci-Fi'),(14217,970452,'Action'),(14218,970452,'Adventure'),(14219,970452,'Fantasy'),(14220,970468,'Comedy'),(14221,970468,'Romance'),(14222,970472,'Action'),(14223,970472,'Animation'),(14224,970472,'Sci-Fi'),(14225,971205,'Drama'),(14226,971205,'Romance'),(14227,971205,'Short'),(14228,971209,'Drama'),(14229,971209,'Mystery'),(14230,971209,'Thriller'),(14231,972785,'Comedy'),(14232,972785,'Sport'),(14233,974015,'Action'),(14234,974015,'Adventure'),(14235,974015,'Fantasy'),(14236,974661,'Comedy'),(14237,974661,'Drama'),(14238,974661,'Fantasy'),(14239,974959,'Comedy'),(14240,975645,'Biography'),(14241,975645,'Drama'),(14242,975645,'Romance'),(14243,976051,'Drama'),(14244,976051,'Romance'),(14245,976238,'Comedy'),(14246,976238,'Family'),(14247,977855,'Biography'),(14248,977855,'Drama'),(14249,977855,'Thriller'),(14250,978759,'Crime'),(14251,978759,'Drama'),(14252,978762,'Animation'),(14253,978762,'Comedy'),(14254,978762,'Drama'),(14255,978764,'Action'),(14256,978764,'Adventure'),(14257,978764,'Fantasy'),(14258,980970,'Adventure'),(14259,980970,'Family'),(14260,980970,'Fantasy'),(14261,981072,'Adventure'),(14262,981072,'Comedy'),(14263,981072,'Drama'),(14264,981227,'Comedy'),(14265,981227,'Drama'),(14266,981227,'Music'),(14267,983193,'Action'),(14268,983193,'Adventure'),(14269,983193,'Animation'),(14270,983213,'Animation'),(14271,983213,'Drama'),(14272,983213,'Family'),(14273,983946,'Fantasy'),(14274,983946,'Horror'),(14275,983946,'Mystery'),(14276,984130,'Comedy'),(14277,984130,'Drama'),(14278,984130,'Romance'),(14279,985694,'Action'),(14280,985694,'Crime'),(14281,985694,'Thriller'),(14282,985699,'Drama'),(14283,985699,'History'),(14284,985699,'Thriller'),(14285,986230,'Comedy'),(14286,986230,'Romance'),(14287,986233,'Biography'),(14288,986233,'Crime'),(14289,986233,'Drama'),(14290,986263,'Action'),(14291,986263,'Sci-Fi'),(14292,986263,'Thriller'),(14293,988045,'Action'),(14294,988045,'Adventure'),(14295,988045,'Mystery'),(14296,988595,'Comedy'),(14297,988595,'Romance'),(14298,989757,'Drama'),(14299,989757,'Romance'),(14300,989757,'War'),(14301,990407,'Action'),(14302,990407,'Comedy'),(14303,990407,'Crime'),(14304,993840,'Action'),(14305,993840,'Crime'),(14306,993840,'Drama'),(14307,993842,'Action'),(14308,993842,'Adventure'),(14309,993842,'Drama'),(14310,993846,'Biography'),(14311,993846,'Comedy'),(14312,993846,'Crime'),(14313,995031,'Comedy'),(14314,995031,'Horror'),(14315,995031,'Mystery'),(14316,995039,'Comedy'),(14317,995039,'Drama'),(14318,995039,'Fantasy'),(14319,995829,'Drama'),(14320,995829,'Romance'),(14321,995850,'Biography'),(14322,995850,'Drama'),(14323,995850,'History'),(14324,996605,'Drama'),(14325,996605,'Musical'),(14326,996605,'Romance'),(14327,997047,'Adventure'),(14328,997047,'Comedy'),(14329,997047,'Drama'),(14330,997152,'Drama'),(14331,997152,'Thriller'),(14332,997174,'Comedy'),(14333,997174,'Drama'),(14334,997260,'Comedy'),(14335,997260,'Drama'),(14336,997260,'Family'),(14337,999913,'Action'),(14338,999913,'Drama'),(14339,999913,'Thriller'),(14340,10003008,'Drama'),(14341,10003008,'Horror'),(14342,10003008,'Mystery'),(14343,1000774,'Comedy'),(14344,1000774,'Drama'),(14345,1000774,'Romance'),(14346,10011336,'Comedy'),(14347,10011336,'Crime'),(14348,10011336,'Drama'),(14349,1001508,'Comedy'),(14350,1001508,'Drama'),(14351,1001508,'Romance'),(14352,1001526,'Action'),(14353,1001526,'Animation'),(14354,1001526,'Comedy'),(14355,10016180,'Crime'),(14356,10016180,'Drama'),(14357,10016180,'Mystery'),(14358,1003034,'Action'),(14359,1003034,'Comedy'),(14360,1003034,'Crime'),(14361,10059518,'Action'),(14362,10059518,'Thriller'),(14363,10060094,'Adventure'),(14364,10060094,'Comedy'),(14365,10060094,'Drama'),(14366,10065694,'Drama'),(14367,10065694,'Horror'),(14368,10065694,'Mystery'),(14369,1007029,'Biography'),(14370,1007029,'Drama'),(14371,1007920,'Animation'),(14372,1007920,'Family'),(14373,1007920,'Fantasy'),(14374,10083340,'Biography'),(14375,10083340,'Crime'),(14376,10083340,'Drama'),(14377,1010048,'Crime'),(14378,1010048,'Drama'),(14379,1010048,'Romance'),(14380,10101702,'Adventure'),(14381,10101702,'Animation'),(14382,10101702,'Comedy'),(14383,10121392,'Action'),(14384,10121392,'Adventure'),(14385,10121392,'Comedy'),(14386,10126434,'Comedy'),(14387,10126434,'Horror'),(14388,1012729,'Drama'),(14389,1013743,'Action'),(14390,1013743,'Adventure'),(14391,1013743,'Comedy'),(14392,1013752,'Action'),(14393,1013752,'Crime'),(14394,1013752,'Thriller'),(14395,1013753,'Biography'),(14396,1013753,'Drama'),(14397,1013753,'History'),(14398,1013860,'Action'),(14399,1013860,'Comedy'),(14400,1013860,'Crime'),(14401,1014759,'Adventure'),(14402,1014759,'Family'),(14403,1014759,'Fantasy'),(14404,1014763,'Crime'),(14405,1014763,'Drama'),(14406,1014763,'History'),(14407,1014775,'Adventure'),(14408,1014775,'Comedy'),(14409,1014775,'Drama'),(14410,10155932,'Comedy'),(14411,10155932,'Family'),(14412,10155932,'Fantasy'),(14413,1016150,'Action'),(14414,1016150,'Drama'),(14415,1016150,'War'),(14416,10161886,'Comedy'),(14417,10161886,'Drama'),(14418,10161886,'Musical'),(14419,1016268,'Biography'),(14420,1016268,'Documentary'),(14421,1016268,'History'),(14422,1016301,'Mystery'),(14423,1016301,'Thriller'),(14424,10168670,'Drama'),(14425,10168670,'Horror'),(14426,10168670,'Romance'),(14427,1017451,'Biography'),(14428,1017451,'Drama'),(14429,1017451,'Music'),(14430,1017460,'Horror'),(14431,1017460,'Sci-Fi'),(14432,1018785,'Comedy'),(14433,1018785,'Drama'),(14434,1018785,'Romance'),(14435,10189300,'Drama'),(14436,10189300,'Family'),(14437,1019452,'Comedy'),(14438,1019452,'Drama'),(14439,10199590,'Crime'),(14440,10199590,'Drama'),(14441,10199590,'Thriller'),(14442,1020072,'Biography'),(14443,1020072,'Drama'),(14444,1020072,'History'),(14445,1020543,'Action'),(14446,1020543,'Adventure'),(14447,1020543,'Comedy'),(14448,1020558,'Action'),(14449,1020558,'Drama'),(14450,1020558,'History'),(14451,1020773,'Drama'),(14452,1020773,'Romance'),(14453,1020885,'Action'),(14454,1020885,'Comedy'),(14455,1020885,'Fantasy'),(14456,10213380,'Drama'),(14457,10213380,'History'),(14458,1022603,'Comedy'),(14459,1022603,'Drama'),(14460,1022603,'Romance'),(14461,1022606,'Crime'),(14462,1022606,'Drama'),(14463,10228134,'Action'),(14464,10228134,'Comedy'),(14465,10228134,'Crime'),(14466,1022885,'Drama'),(14467,1022885,'Thriller'),(14468,1023111,'Action'),(14469,1023111,'Drama'),(14470,1023111,'Sport'),(14471,1023114,'Adventure'),(14472,1023114,'Drama'),(14473,1023114,'History'),(14474,1023441,'Drama'),(14475,1023441,'Music'),(14476,1023441,'Romance'),(14477,1023481,'Drama'),(14478,1023481,'Music'),(14479,1023481,'Romance'),(14480,1024255,'Comedy'),(14481,10243992,'Crime'),(14482,10243992,'Drama'),(14483,10244726,'Comedy'),(14484,10244760,'Drama'),(14485,1024648,'Biography'),(14486,1024648,'Drama'),(14487,1024648,'Thriller'),(14488,1024744,'Thriller'),(14489,1024856,'Action'),(14490,1024856,'Comedy'),(14491,1024856,'Drama'),(14492,1025100,'Action'),(14493,1025100,'Sci-Fi'),(14494,1025100,'Thriller'),(14495,10276470,'Comedy'),(14496,10276470,'Music'),(14497,1027718,'Drama'),(14498,10278918,'Action'),(14499,10278918,'Adventure'),(14500,10278918,'Drama'),(14501,10279362,'Comedy'),(14502,10279362,'Drama'),(14503,1028528,'Action'),(14504,1028528,'Thriller'),(14505,1028532,'Biography'),(14506,1028532,'Drama'),(14507,1028532,'Family'),(14508,1028576,'Biography'),(14509,1028576,'Drama'),(14510,1028576,'Family'),(14511,10288566,'Drama'),(14512,1029134,'Comedy'),(14513,1029134,'Drama'),(14514,1029234,'Horror'),(14515,10293406,'Drama'),(14516,10293406,'Western'),(14517,10298810,'Action'),(14518,10298810,'Adventure'),(14519,10298810,'Animation'),(14520,10298840,'Action'),(14521,10298840,'Adventure'),(14522,10298840,'Animation'),(14523,10307724,'Biography'),(14524,10307724,'Crime'),(14525,10307724,'Drama'),(14526,10308528,'Adventure'),(14527,10308528,'Drama'),(14528,1032207,'Documentary'),(14529,10324144,'Crime'),(14530,10324144,'Drama'),(14531,10324144,'Mystery'),(14532,1032755,'Action'),(14533,1032755,'Crime'),(14534,1032755,'Thriller'),(14535,1032846,'Drama'),(14536,1032856,'Comedy'),(14537,1032856,'Drama'),(14538,1032856,'Music'),(14539,10332588,'Action'),(14540,10332588,'Adventure'),(14541,10332588,'Comedy'),(14542,10334456,'Biography'),(14543,10334456,'Documentary'),(14544,10334456,'History'),(14545,1033575,'Comedy'),(14546,1033575,'Drama'),(14547,1033643,'Comedy'),(14548,1033643,'Romance'),(14549,1034032,'Action'),(14550,1034032,'Sci-Fi'),(14551,1034032,'Thriller'),(14552,10341034,'Drama'),(14553,10341034,'Mystery'),(14554,10341034,'Thriller'),(14555,10342730,'Crime'),(14556,10342730,'Horror'),(14557,10342730,'Mystery'),(14558,1034302,'Drama'),(14559,1034302,'Mystery'),(14560,1034302,'Thriller'),(14561,1034303,'Action'),(14562,1034303,'Drama'),(14563,1034303,'History'),(14564,1034314,'Action'),(14565,1034314,'Adventure'),(14566,1034314,'Comedy'),(14567,1034325,'Drama'),(14568,1034385,'Action'),(14569,1034385,'Fantasy'),(14570,1034385,'Horror'),(14571,1034389,'Action'),(14572,1034389,'Adventure'),(14573,1034389,'Drama'),(14574,1034415,'Drama'),(14575,1034415,'Fantasy'),(14576,1034415,'Horror'),(14577,10344522,'Drama'),(14578,10355058,'Comedy'),(14579,10355058,'Family'),(14580,1035736,'Biography'),(14581,1035736,'Drama'),(14582,10365998,'Crime'),(14583,10365998,'Horror'),(14584,10365998,'Mystery'),(14585,10366460,'Comedy'),(14586,10366460,'Drama'),(14587,10366460,'Music'),(14588,10370710,'Comedy'),(14589,10370710,'Drama'),(14590,10370710,'Romance'),(14591,1037146,'Comedy'),(14592,1037146,'Romance'),(14593,10373934,'Thriller'),(14594,1037705,'Action'),(14595,1037705,'Adventure'),(14596,1037705,'Drama'),(14597,1038686,'Action'),(14598,1038686,'Fantasy'),(14599,1038686,'Horror'),(14600,1038988,'Horror'),(14601,1038988,'Mystery'),(14602,1038988,'Thriller'),(14603,1039960,'Comedy'),(14604,1039960,'Drama'),(14605,10403420,'Horror'),(14606,1041829,'Comedy'),(14607,1041829,'Drama'),(14608,1041829,'Romance'),(14609,10426916,'Comedy'),(14610,1043726,'Action'),(14611,1043726,'Adventure'),(14612,1043726,'Fantasy'),(14613,1043842,'Action'),(14614,1043842,'Adventure'),(14615,1043842,'Animation'),(14616,10441958,'Comedy'),(14617,10441958,'Drama'),(14618,1045658,'Comedy'),(14619,1045658,'Drama'),(14620,1045658,'Romance'),(14621,1045670,'Comedy'),(14622,1045670,'Drama'),(14623,1045670,'Romance'),(14624,10457128,'Drama'),(14625,10457128,'Romance'),(14626,1045772,'Biography'),(14627,1045772,'Comedy'),(14628,1045772,'Crime'),(14629,1045778,'Comedy'),(14630,1046173,'Action'),(14631,1046173,'Adventure'),(14632,1046173,'Sci-Fi'),(14633,1046947,'Drama'),(14634,1046947,'Romance'),(14635,1046997,'Action'),(14636,1046997,'Drama'),(14637,1046997,'War'),(14638,1047540,'Comedy'),(14639,1047540,'Family'),(14640,1048171,'Biography'),(14641,1048171,'Drama'),(14642,1048174,'Drama'),(14643,1048174,'Romance'),(14644,10483044,'Drama'),(14645,1049402,'Biography'),(14646,1049402,'Drama'),(14647,1049402,'Romance'),(14648,1049413,'Adventure'),(14649,1049413,'Animation'),(14650,1049413,'Comedy'),(14651,1049948,'Comedy'),(14652,1049948,'Fantasy'),(14653,1049948,'Musical'),(14654,1050001,'Horror'),(14655,1050002,'Comedy'),(14656,1050160,'Action'),(14657,1050160,'Comedy'),(14658,1050160,'Horror'),(14659,10514222,'Drama'),(14660,10514222,'Music'),(14661,10515852,'Action'),(14662,10515852,'Adventure'),(14663,10515852,'Animation'),(14664,1051904,'Adventure'),(14665,1051904,'Comedy'),(14666,1051904,'Fantasy'),(14667,1051906,'Drama'),(14668,1051906,'Horror'),(14669,1051906,'Mystery'),(14670,1052040,'Horror'),(14671,1052040,'Thriller'),(14672,10521814,'Fantasy'),(14673,10521814,'Horror'),(14674,10521814,'Musical'),(14675,1052352,'Comedy'),(14676,1052352,'Family'),(14677,1052352,'Fantasy'),(14678,10525672,'Adventure'),(14679,10525672,'Drama'),(14680,10525672,'Family'),(14681,10530176,'Crime'),(14682,10530176,'Horror'),(14683,10530176,'Mystery'),(14684,1053424,'Action'),(14685,1053424,'Sci-Fi'),(14686,1053424,'Thriller'),(14687,1053810,'Comedy'),(14688,10539608,'Adventure'),(14689,10539608,'Drama'),(14690,10539608,'Sci-Fi'),(14691,10541410,'Comedy'),(14692,1054485,'Animation'),(14693,1054485,'Comedy'),(14694,1054485,'Romance'),(14695,1054486,'Action'),(14696,1054486,'Adventure'),(14697,1054486,'Animation'),(14698,1054487,'Animation'),(14699,1054487,'Comedy'),(14700,1054487,'Sci-Fi'),(14701,1054580,'Biography'),(14702,1054580,'Drama'),(14703,1054588,'Biography'),(14704,1054588,'Drama'),(14705,1054606,'Adventure'),(14706,1054606,'Comedy'),(14707,1054606,'Fantasy'),(14708,1055292,'Comedy'),(14709,1055292,'Drama'),(14710,1055292,'Romance'),(14711,1055366,'Comedy'),(14712,1055366,'Family'),(14713,1055366,'Music'),(14714,1055369,'Action'),(14715,1055369,'Adventure'),(14716,1055369,'Sci-Fi'),(14717,10556022,'Comedy'),(14718,10556022,'Drama'),(14719,1056437,'Animation'),(14720,1056437,'Drama'),(14721,1056437,'Sci-Fi'),(14722,1056444,'Comedy'),(14723,1056444,'Horror'),(14724,1057500,'Action'),(14725,1057500,'Adventure'),(14726,1057500,'Biography'),(14727,1058017,'Comedy'),(14728,1058017,'Fantasy'),(14729,1058017,'Romance'),(14730,1059786,'Action'),(14731,1059786,'Mystery'),(14732,1059786,'Thriller'),(14733,1059925,'Drama'),(14734,1059925,'Romance'),(14735,10600398,'Action'),(14736,10600398,'Comedy'),(14737,10600398,'Drama'),(14738,1060277,'Action'),(14739,1060277,'Adventure'),(14740,1060277,'Horror'),(14741,10612922,'Drama'),(14742,10618286,'Biography'),(14743,10618286,'Comedy'),(14744,10618286,'Drama'),(14745,10623646,'Adventure'),(14746,10623646,'Drama'),(14747,10623646,'Sci-Fi'),(14748,10633456,'Drama'),(14749,1063669,'Drama'),(14750,1063669,'Thriller'),(14751,10638522,'Horror'),(14752,10638522,'Thriller'),(14753,10640346,'Comedy'),(14754,10640346,'Drama'),(14755,10640346,'History'),(14756,10648342,'Action'),(14757,10648342,'Adventure'),(14758,10648342,'Comedy'),(14759,1064932,'Comedy'),(14760,1064932,'Romance'),(14761,1065073,'Drama'),(14762,10665338,'Action'),(14763,10665338,'Horror'),(14764,10665338,'Thriller'),(14765,10665342,'Horror'),(14766,10665342,'Thriller'),(14767,1067583,'Drama'),(14768,1067583,'Romance'),(14769,10676012,'Comedy'),(14770,10676012,'Drama'),(14771,10676012,'Romance'),(14772,1067733,'Comedy'),(14773,1067733,'Drama'),(14774,1067733,'Romance'),(14775,1067765,'Comedy'),(14776,1067765,'Drama'),(14777,1067774,'Adventure'),(14778,1067774,'Comedy'),(14779,1067774,'Family'),(14780,1068242,'Comedy'),(14781,1068242,'Drama'),(14782,1068242,'Music'),(14783,1068641,'Crime'),(14784,1068641,'Drama'),(14785,1068641,'Mystery'),(14786,1068649,'Drama'),(14787,1068678,'Drama'),(14788,1068678,'Romance'),(14789,1068680,'Comedy'),(14790,1068680,'Romance'),(14791,1069238,'Drama'),(14792,10692788,'Drama'),(14793,10696784,'Action'),(14794,10696784,'Drama'),(14795,10696784,'Western'),(14796,1070874,'Drama'),(14797,1070874,'History'),(14798,1070874,'Thriller'),(14799,1071804,'Action'),(14800,1071804,'Drama'),(14801,1071804,'Fantasy'),(14802,1071875,'Action'),(14803,1071875,'Adventure'),(14804,1071875,'Fantasy'),(14805,1072438,'Drama'),(14806,1072438,'Romance'),(14807,1073105,'Adventure'),(14808,1073105,'Horror'),(14809,1073105,'Thriller'),(14810,10731256,'Drama'),(14811,10731256,'Mystery'),(14812,10731256,'Thriller'),(14813,10731768,'Action'),(14814,10731768,'Drama'),(14815,10731768,'Thriller'),(14816,1073241,'Crime'),(14817,1073241,'Drama'),(14818,1073241,'Mystery'),(14819,10734928,'Action'),(14820,10734928,'Adventure'),(14821,10734928,'Animation'),(14822,1073498,'Comedy'),(14823,1073498,'Fantasy'),(14824,1074638,'Action'),(14825,1074638,'Adventure'),(14826,1074638,'Thriller'),(14827,10752004,'Comedy'),(14828,10752004,'Romance'),(14829,10752062,'Drama'),(14830,10752062,'Horror'),(14831,10752062,'Short'),(14832,1075749,'Comedy'),(14833,1075749,'Horror'),(14834,1076252,'Comedy'),(14835,1076252,'Drama'),(14836,1076252,'Romance'),(14837,10763820,'Action'),(14838,10763820,'Crime'),(14839,10763820,'Drama'),(14840,10767426,'Drama'),(14841,10767426,'Thriller'),(14842,1077084,'Horror'),(14843,1077084,'Thriller'),(14844,1077094,'Drama'),(14845,1077258,'Action'),(14846,1077258,'Comedy'),(14847,1077258,'Horror'),(14848,1077262,'Crime'),(14849,1077262,'Drama'),(14850,1077274,'Animation'),(14851,1077274,'Fantasy'),(14852,1077368,'Comedy'),(14853,1077368,'Family'),(14854,1077368,'Fantasy'),(14855,10782876,'Family'),(14856,10782876,'Sport'),(14857,1078588,'Drama'),(14858,1078588,'Family'),(14859,1078600,'Crime'),(14860,1078600,'Drama'),(14861,1078600,'Thriller'),(14862,1078912,'Adventure'),(14863,1078912,'Comedy'),(14864,1078912,'Family'),(14865,1079444,'Comedy'),(14866,1079444,'Drama'),(14867,1079444,'Fantasy'),(14868,1079968,'Adventure'),(14869,1079968,'Comedy'),(14870,1079968,'Family'),(14871,1080016,'Adventure'),(14872,1080016,'Animation'),(14873,1080016,'Comedy'),(14874,10816484,'Drama'),(14875,1082009,'Drama'),(14876,1082601,'Action'),(14877,1082601,'Crime'),(14878,1082601,'Drama'),(14879,1082807,'Horror'),(14880,1082807,'Thriller'),(14881,1082853,'Comedy'),(14882,1082853,'Drama'),(14883,1082853,'Romance'),(14884,1082868,'Horror'),(14885,1082868,'Sci-Fi'),(14886,1082868,'Thriller'),(14887,1082876,'Comedy'),(14888,1082876,'Drama'),(14889,1083452,'Adventure'),(14890,1083452,'Biography'),(14891,1083452,'Comedy'),(14892,1083456,'Comedy'),(14893,1083456,'Sport'),(14894,10838180,'Action'),(14895,10838180,'Sci-Fi'),(14896,1083845,'Drama'),(14897,1083845,'Family'),(14898,1083845,'Musical'),(14899,1084950,'Drama'),(14900,1084950,'Romance'),(14901,10855768,'Drama'),(14902,10855768,'Mystery'),(14903,10855768,'Thriller'),(14904,1085779,'Fantasy'),(14905,1085779,'Thriller'),(14906,1086064,'Adventure'),(14907,1086064,'Comedy'),(14908,1086064,'Music'),(14909,1086216,'Drama'),(14910,1086216,'Romance'),(14911,1086216,'Thriller'),(14912,1086772,'Comedy'),(14913,1086772,'Romance'),(14914,10867768,'Crime'),(14915,10867768,'Drama'),(14916,10868922,'Comedy'),(14917,10868922,'Drama'),(14918,10868922,'Thriller'),(14919,10872600,'Action'),(14920,10872600,'Adventure'),(14921,10872600,'Fantasy'),(14922,10885406,'Adventure'),(14923,10885406,'Animation'),(14924,10885406,'Comedy'),(14925,10888594,'Action'),(14926,10888594,'Crime'),(14927,10888594,'Thriller'),(14928,1091191,'Action'),(14929,1091191,'Biography'),(14930,1091191,'Drama'),(14931,1091722,'Comedy'),(14932,1091722,'Drama'),(14933,1091722,'Romance'),(14934,10919362,'Comedy'),(14935,10919362,'Drama'),(14936,10919362,'Romance'),(14937,10919380,'Comedy'),(14938,10919380,'Horror'),(14939,10919380,'Thriller'),(14940,1092019,'Crime'),(14941,1092019,'Thriller'),(14942,1092026,'Adventure'),(14943,1092026,'Comedy'),(14944,1092026,'Sci-Fi'),(14945,1092053,'Animation'),(14946,1092053,'Family'),(14947,10931784,'Drama'),(14948,10931784,'Horror'),(14949,1093357,'Action'),(14950,1093357,'Adventure'),(14951,1093357,'Horror'),(14952,10935560,'Horror'),(14953,10935560,'Mystery'),(14954,10935560,'Thriller'),(14955,1093908,'Comedy'),(14956,1093908,'Romance'),(14957,1094278,'Comedy'),(14958,1094278,'Drama'),(14959,10944760,'Drama'),(14960,10944760,'Horror'),(14961,10944760,'Sci-Fi'),(14962,1094661,'Biography'),(14963,1094661,'Drama'),(14964,1095217,'Crime'),(14965,1095217,'Drama'),(14966,1095442,'Drama'),(14967,10954600,'Action'),(14968,10954600,'Adventure'),(14969,10954600,'Comedy'),(14970,10954652,'Drama'),(14971,10954652,'Horror'),(14972,10954652,'Mystery'),(14973,1095496,'Documentary'),(14974,10954984,'Horror'),(14975,10954984,'Mystery'),(14976,10954984,'Sci-Fi'),(14977,1095573,'Adventure'),(14978,1095573,'Animation'),(14979,1095573,'Comedy'),(14980,1097636,'Adventure'),(14981,1097636,'Animation'),(14982,1097636,'Comedy'),(14983,1097643,'Crime'),(14984,1097643,'Drama'),(14985,1097643,'Thriller'),(14986,1099212,'Drama'),(14987,1099212,'Fantasy'),(14988,1099212,'Romance'),(14989,10999120,'Comedy'),(14990,10999120,'Family'),(14991,10999120,'Musical'),(14992,1100048,'Drama'),(14993,1100089,'Biography'),(14994,1100089,'Drama'),(14995,1100089,'History'),(14996,11003218,'Drama'),(14997,11003218,'Mystery'),(14998,11007444,'Biography'),(14999,11007444,'Drama'),(15000,1103193,'Drama'),(15001,11032374,'Action'),(15002,11032374,'Adventure'),(15003,11032374,'Animation'),(15004,1103982,'Drama'),(15005,1104001,'Action'),(15006,1104001,'Adventure'),(15007,1104001,'Sci-Fi'),(15008,1104733,'Comedy'),(15009,1104733,'Music'),(15010,1105263,'Action'),(15011,1105263,'Adventure'),(15012,1105263,'Animation'),(15013,11052808,'Drama'),(15014,11054164,'Comedy'),(15015,11054164,'Horror'),(15016,1106860,'Crime'),(15017,1106860,'Thriller'),(15018,1107809,'Comedy'),(15019,1107809,'Drama'),(15020,1107809,'Short'),(15021,1107860,'Comedy'),(15022,1107860,'Crime'),(15023,11079148,'Action'),(15024,11079148,'Adventure'),(15025,11079148,'Animation'),(15026,1109624,'Adventure'),(15027,1109624,'Comedy'),(15028,1109624,'Family'),(15029,11106266,'Comedy'),(15030,11106266,'Short'),(15031,11107074,'Action'),(15032,11107074,'Adventure'),(15033,11107074,'Animation'),(15034,1111422,'Action'),(15035,1111422,'Crime'),(15036,1111422,'Thriller'),(15037,1111890,'Drama'),(15038,1111890,'Romance'),(15039,11127680,'Drama'),(15040,11127680,'Thriller'),(15041,1112782,'Action'),(15042,1112782,'Crime'),(15043,1112782,'Thriller'),(15044,11128440,'Comedy'),(15045,11128440,'Drama'),(15046,11136630,'Drama'),(15047,11136630,'Fantasy'),(15048,11136630,'Horror'),(15049,11138512,'Action'),(15050,11138512,'Adventure'),(15051,11138512,'Drama'),(15052,11145118,'Drama'),(15053,11145118,'Sport'),(15054,1114677,'Comedy'),(15055,1114677,'Drama'),(15056,1114677,'Family'),(15057,1114723,'Comedy'),(15058,1114723,'Drama'),(15059,1114723,'Music'),(15060,1114740,'Action'),(15061,1114740,'Comedy'),(15062,1114740,'Crime'),(15063,11160650,'Comedy'),(15064,11160650,'Crime'),(15065,11160650,'Drama'),(15066,11161474,'Drama'),(15067,1116186,'Comedy'),(15068,1116560,'Drama'),(15069,1117379,'Action'),(15070,1117379,'Crime'),(15071,1117379,'Horror'),(15072,11177804,'Action'),(15073,11177804,'Adventure'),(15074,11177804,'Animation'),(15075,1119123,'Comedy'),(15076,1119123,'Drama'),(15077,11196036,'Crime'),(15078,11196036,'Drama'),(15079,11196036,'Thriller'),(15080,1119646,'Comedy'),(15081,1120985,'Drama'),(15082,1120985,'Romance'),(15083,11210390,'Adventure'),(15084,11210390,'Comedy'),(15085,11210390,'Family'),(15086,1121096,'Action'),(15087,1121096,'Adventure'),(15088,1121096,'Fantasy'),(15089,11212276,'Comedy'),(15090,11214590,'Biography'),(15091,11214590,'Crime'),(15092,11214590,'Drama'),(15093,1121794,'Action'),(15094,1121794,'Adventure'),(15095,1121794,'Animation'),(15096,1121977,'Drama'),(15097,1121977,'Romance'),(15098,1123373,'Action'),(15099,1123373,'Adventure'),(15100,1123373,'Drama'),(15101,1123894,'Comedy'),(15102,1123894,'Drama'),(15103,1123894,'Romance'),(15104,1124035,'Drama'),(15105,1124035,'Thriller'),(15106,1124037,'Action'),(15107,1124037,'Biography'),(15108,1124037,'Drama'),(15109,1124039,'Action'),(15110,1124039,'Crime'),(15111,1124039,'Thriller'),(15112,1124394,'Drama'),(15113,1124394,'Horror'),(15114,1124394,'Mystery'),(15115,11245972,'Horror'),(15116,11245972,'Mystery'),(15117,11245972,'Thriller'),(15118,1125254,'Action'),(15119,1125254,'Animation'),(15120,1125254,'Sci-Fi'),(15121,1125849,'Drama'),(15122,1125849,'Sport'),(15123,1126590,'Biography'),(15124,1126590,'Crime'),(15125,1126590,'Drama'),(15126,1126591,'Drama'),(15127,1126591,'Music'),(15128,1126591,'Musical'),(15129,1126596,'Crime'),(15130,1126596,'Drama'),(15131,1126618,'Comedy'),(15132,1126618,'Drama'),(15133,1126618,'Romance'),(15134,11271038,'Comedy'),(15135,11271038,'Drama'),(15136,11271038,'Romance'),(15137,1127180,'Horror'),(15138,1127877,'Comedy'),(15139,1127877,'Drama'),(15140,1127877,'Fantasy'),(15141,1127896,'Biography'),(15142,1127896,'Comedy'),(15143,1127896,'Drama'),(15144,1128075,'Action'),(15145,1128075,'Comedy'),(15146,1128075,'Drama'),(15147,11284280,'Drama'),(15148,11284280,'Horror'),(15149,11284280,'Thriller'),(15150,11286314,'Comedy'),(15151,11286314,'Drama'),(15152,11286314,'Sci-Fi'),(15153,11291274,'Action'),(15154,11291274,'Comedy'),(15155,11291274,'Crime'),(15156,1129423,'Drama'),(15157,1129423,'Romance'),(15158,1129435,'Biography'),(15159,1129435,'Documentary'),(15160,1129442,'Action'),(15161,1129442,'Adventure'),(15162,1129442,'Thriller'),(15163,1129445,'Adventure'),(15164,1129445,'Biography'),(15165,1129445,'Drama'),(15166,1130080,'Biography'),(15167,1130080,'Comedy'),(15168,1130080,'Crime'),(15169,11306932,'Drama'),(15170,1130884,'Mystery'),(15171,1130884,'Thriller'),(15172,1131729,'Comedy'),(15173,1131729,'Drama'),(15174,1131729,'Music'),(15175,1131734,'Comedy'),(15176,1131734,'Horror'),(15177,11320192,'Horror'),(15178,11320192,'Mystery'),(15179,11320192,'Thriller'),(15180,1132193,'Comedy'),(15181,1132193,'Drama'),(15182,1132193,'Music'),(15183,1132285,'Crime'),(15184,1132285,'Mystery'),(15185,1132285,'Thriller'),(15186,1132620,'Crime'),(15187,1132620,'Drama'),(15188,1132620,'Mystery'),(15189,1132626,'Horror'),(15190,1132626,'Thriller'),(15191,11334312,'Action'),(15192,11334312,'Adventure'),(15193,11334312,'Fantasy'),(15194,1133985,'Action'),(15195,1133985,'Adventure'),(15196,1133985,'Sci-Fi'),(15197,1133991,'Crime'),(15198,1133991,'Drama'),(15199,1133991,'Thriller'),(15200,1133993,'Comedy'),(15201,1133993,'Crime'),(15202,1133993,'Drama'),(15203,1134629,'Comedy'),(15204,1134629,'Drama'),(15205,1134629,'Romance'),(15206,1134854,'Comedy'),(15207,1134854,'Drama'),(15208,1134854,'Horror'),(15209,1135084,'Action'),(15210,1135084,'Crime'),(15211,1135084,'Drama'),(15212,1135092,'Crime'),(15213,1135092,'Drama'),(15214,1135092,'Mystery'),(15215,1135487,'Comedy'),(15216,1135487,'Crime'),(15217,1135487,'Romance'),(15218,1135503,'Biography'),(15219,1135503,'Drama'),(15220,1135503,'Romance'),(15221,1135525,'Comedy'),(15222,11358390,'Comedy'),(15223,11358390,'Fantasy'),(15224,11358390,'Horror'),(15225,1135952,'Drama'),(15226,1135952,'War'),(15227,1136608,'Action'),(15228,1136608,'Sci-Fi'),(15229,1136608,'Thriller'),(15230,1137436,'Crime'),(15231,1137436,'Drama'),(15232,11379572,'Drama'),(15233,11388406,'Drama'),(15234,11388406,'Mystery'),(15235,11388406,'Thriller'),(15236,11389748,'Drama'),(15237,11392272,'Horror'),(15238,11392272,'Thriller'),(15239,1139328,'Crime'),(15240,1139328,'Drama'),(15241,1139328,'Mystery'),(15242,11394158,'Drama'),(15243,11394332,'Comedy'),(15244,11394332,'Crime'),(15245,11394332,'Horror'),(15246,1139668,'Horror'),(15247,1139668,'Mystery'),(15248,1139668,'Thriller'),(15249,1139797,'Drama'),(15250,1139797,'Fantasy'),(15251,1139797,'Horror'),(15252,1142798,'Drama'),(15253,1142800,'Comedy'),(15254,1142800,'Crime'),(15255,1142800,'Drama'),(15256,1142977,'Animation'),(15257,1142977,'Comedy'),(15258,1142977,'Drama'),(15259,1142988,'Comedy'),(15260,1142988,'Romance'),(15261,1143155,'Drama'),(15262,1144825,'Action'),(15263,1144825,'Drama'),(15264,1144825,'Romance'),(15265,1144884,'Horror'),(15266,1144884,'Thriller'),(15267,11456054,'Action'),(15268,11456054,'Crime'),(15269,11456054,'Drama'),(15270,1146320,'Drama'),(15271,1146320,'Horror'),(15272,1146320,'Sci-Fi'),(15273,1148165,'Comedy'),(15274,1148165,'Drama'),(15275,1148165,'Musical'),(15276,1148204,'Horror'),(15277,1148204,'Mystery'),(15278,1148204,'Thriller'),(15279,1148261,'Action'),(15280,1148261,'Animation'),(15281,1148261,'Thriller'),(15282,11488024,'Animation'),(15283,1149361,'Action'),(15284,1149361,'Comedy'),(15285,1149361,'Crime'),(15286,1152397,'Drama'),(15287,1152398,'Drama'),(15288,1152398,'Fantasy'),(15289,1152398,'Romance'),(15290,11525644,'Crime'),(15291,11525644,'Drama'),(15292,11525644,'Mystery'),(15293,1152836,'Action'),(15294,1152836,'Biography'),(15295,1152836,'Crime'),(15296,1152850,'Drama'),(15297,1153103,'Drama'),(15298,1153103,'Mystery'),(15299,1153103,'Thriller'),(15300,1155056,'Comedy'),(15301,1155056,'Romance'),(15302,1155076,'Action'),(15303,1155076,'Drama'),(15304,1155076,'Family'),(15305,11555492,'Drama'),(15306,1156398,'Action'),(15307,1156398,'Comedy'),(15308,1156398,'Horror'),(15309,11564570,'Comedy'),(15310,11564570,'Crime'),(15311,11564570,'Drama'),(15312,1160419,'Action'),(15313,1160419,'Adventure'),(15314,1160419,'Drama'),(15315,1160996,'Action'),(15316,1160996,'Horror'),(15317,1160996,'Sci-Fi'),(15318,11612120,'Drama'),(15319,11612120,'Fantasy'),(15320,11612120,'Horror'),(15321,1161411,'Comedy'),(15322,1161411,'Musical'),(15323,1161864,'Drama'),(15324,1161864,'Horror'),(15325,1161864,'Mystery'),(15326,11621206,'Documentary'),(15327,11621206,'Drama'),(15328,11621206,'Short'),(15329,11621960,'Drama'),(15330,11621960,'Music'),(15331,11621960,'Romance'),(15332,11644096,'Comedy'),(15333,11644096,'Crime'),(15334,11644096,'Drama'),(15335,1164999,'Drama'),(15336,1164999,'Romance'),(15337,1166805,'Drama'),(15338,1166805,'Romance'),(15339,1166805,'Short'),(15340,11671006,'Action'),(15341,11671006,'Adventure'),(15342,11671006,'Comedy'),(15343,1167638,'Action'),(15344,1167638,'Crime'),(15345,1167638,'Drama'),(15346,1167660,'Action'),(15347,1167660,'Adventure'),(15348,1167660,'Comedy'),(15349,11681250,'Comedy'),(15350,11681250,'Drama'),(15351,11681250,'Family'),(15352,11697690,'Drama'),(15353,11700260,'Comedy'),(15354,11700260,'Drama'),(15355,11703050,'Animation'),(15356,11703050,'Comedy'),(15357,11703050,'Drama'),(15358,1170358,'Adventure'),(15359,1170358,'Drama'),(15360,1170358,'Fantasy'),(15361,1171222,'Comedy'),(15362,1171222,'Romance'),(15363,1172049,'Comedy'),(15364,1172049,'Drama'),(15365,1172203,'Animation'),(15366,1172203,'Comedy'),(15367,1172203,'Fantasy'),(15368,1172206,'Comedy'),(15369,1172206,'Drama'),(15370,1172233,'Drama'),(15371,1172233,'Sport'),(15372,1172570,'Action'),(15373,1172570,'Crime'),(15374,1172570,'Drama'),(15375,11727866,'Adventure'),(15376,1172963,'Drama'),(15377,1172963,'War'),(15378,1172994,'Horror'),(15379,1172994,'Mystery'),(15380,11734264,'Action'),(15381,11734264,'Crime'),(15382,11734264,'Drama'),(15383,1173745,'Crime'),(15384,1173745,'Drama'),(15385,1173745,'Romance'),(15386,11742798,'Comedy'),(15387,11742798,'Drama'),(15388,11742798,'Fantasy'),(15389,1174693,'Comedy'),(15390,1174693,'Drama'),(15391,1174693,'Romance'),(15392,1174732,'Drama'),(15393,11748354,'Comedy'),(15394,11748354,'Drama'),(15395,1174954,'Action'),(15396,1174954,'Animation'),(15397,1174954,'Horror'),(15398,11755740,'Crime'),(15399,11755740,'Horror'),(15400,11755740,'Thriller'),(15401,1176740,'Comedy'),(15402,1176740,'Drama'),(15403,1176740,'Romance'),(15404,11769162,'Action'),(15405,11769162,'Crime'),(15406,11769162,'Drama'),(15407,11771622,'Short'),(15408,11771622,'Thriller'),(15409,1178197,'Drama'),(15410,1178663,'Comedy'),(15411,1178663,'Romance'),(15412,1178665,'Adventure'),(15413,1178665,'Biography'),(15414,1178665,'Comedy'),(15415,1179025,'Action'),(15416,1179025,'Adventure'),(15417,1179025,'Comedy'),(15418,1179056,'Crime'),(15419,1179056,'Drama'),(15420,1179056,'Horror'),(15421,1179069,'Horror'),(15422,1179069,'Thriller'),(15423,1179080,'Documentary'),(15424,11791228,'Documentary'),(15425,1179794,'Comedy'),(15426,1179794,'Drama'),(15427,1179794,'Romance'),(15428,1179891,'Horror'),(15429,1179891,'Mystery'),(15430,1179891,'Thriller'),(15431,1179904,'Horror'),(15432,1179904,'Mystery'),(15433,1179933,'Drama'),(15434,1179933,'Horror'),(15435,1179933,'Mystery'),(15436,1180329,'Comedy'),(15437,1180329,'Drama'),(15438,1180329,'Romance'),(15439,11804152,'Thriller'),(15440,11813216,'Comedy'),(15441,11813216,'Drama'),(15442,1181614,'Drama'),(15443,1181614,'Romance'),(15444,1181840,'Adventure'),(15445,1181840,'Animation'),(15446,1181840,'Drama'),(15447,11820950,'Adventure'),(15448,11820950,'Comedy'),(15449,11820950,'Fantasy'),(15450,1182345,'Drama'),(15451,1182345,'Mystery'),(15452,1182345,'Sci-Fi'),(15453,1182350,'Comedy'),(15454,1182350,'Drama'),(15455,1182350,'Romance'),(15456,1183276,'Action'),(15457,1183276,'Horror'),(15458,1183374,'Horror'),(15459,1183374,'Thriller'),(15460,1183665,'Drama'),(15461,1183665,'Thriller'),(15462,1183672,'Drama'),(15463,1183923,'Drama'),(15464,11847410,'Drama'),(15465,1185242,'Comedy'),(15466,1185242,'Romance'),(15467,1185376,'Drama'),(15468,1185376,'Thriller'),(15469,1185416,'Comedy'),(15470,1185416,'Romance'),(15471,1185616,'Animation'),(15472,1185616,'Biography'),(15473,1185616,'Documentary'),(15474,1185834,'Action'),(15475,1185834,'Adventure'),(15476,1185834,'Animation'),(15477,1185836,'Comedy'),(15478,1185836,'Drama'),(15479,1185836,'Romance'),(15480,1186367,'Action'),(15481,1186367,'Thriller'),(15482,1186369,'Drama'),(15483,1186373,'Action'),(15484,1186373,'Adventure'),(15485,1186373,'Animation'),(15486,11866324,'Action'),(15487,11866324,'Adventure'),(15488,11866324,'Drama'),(15489,1186830,'Adventure'),(15490,1186830,'Biography'),(15491,1186830,'Drama'),(15492,1187043,'Comedy'),(15493,1187043,'Drama'),(15494,1187044,'Comedy'),(15495,1187044,'Drama'),(15496,1187064,'Fantasy'),(15497,1187064,'Mystery'),(15498,1187064,'Sci-Fi'),(15499,1188113,'Drama'),(15500,1188113,'Mystery'),(15501,1188113,'Thriller'),(15502,1188729,'Action'),(15503,1188729,'Horror'),(15504,1188729,'Mystery'),(15505,1189073,'Drama'),(15506,1189073,'Horror'),(15507,1189073,'Mystery'),(15508,1189340,'Crime'),(15509,1189340,'Drama'),(15510,1189340,'Mystery'),(15511,11895476,'Drama'),(15512,11895476,'Mystery'),(15513,11895476,'Short'),(15514,11897478,'Crime'),(15515,11897478,'Drama'),(15516,11897478,'Thriller'),(15517,1190072,'Drama'),(15518,1190072,'Thriller'),(15519,1190080,'Action'),(15520,1190080,'Adventure'),(15521,1190080,'Sci-Fi'),(15522,1190536,'Action'),(15523,1190536,'Comedy'),(15524,1190539,'Action'),(15525,1190539,'Crime'),(15526,1190539,'Drama'),(15527,11905962,'Drama'),(15528,11905962,'Horror'),(15529,11905962,'Mystery'),(15530,11909878,'Comedy'),(15531,11909878,'Family'),(15532,11909878,'Fantasy'),(15533,1191111,'Drama'),(15534,1191111,'Fantasy'),(15535,1192628,'Action'),(15536,1192628,'Adventure'),(15537,1192628,'Animation'),(15538,1193138,'Comedy'),(15539,1193138,'Drama'),(15540,1193138,'Romance'),(15541,11934846,'Comedy'),(15542,11934846,'Crime'),(15543,11934846,'Drama'),(15544,1193631,'Drama'),(15545,1193631,'Music'),(15546,1193631,'Romance'),(15547,1194173,'Action'),(15548,1194173,'Adventure'),(15549,1194173,'Thriller'),(15550,1194238,'Crime'),(15551,1194238,'Drama'),(15552,1194238,'History'),(15553,1194263,'Drama'),(15554,1194263,'Mystery'),(15555,1194417,'Biography'),(15556,1194417,'Comedy'),(15557,1194417,'Crime'),(15558,1194424,'Action'),(15559,1194424,'Horror'),(15560,1194424,'Sci-Fi'),(15561,1194577,'Drama'),(15562,11946300,'Action'),(15563,11946300,'Horror'),(15564,11946300,'Sci-Fi'),(15565,1195478,'Comedy'),(15566,1195478,'Drama'),(15567,1195478,'Romance'),(15568,1196141,'Comedy'),(15569,1196141,'Drama'),(15570,1196141,'Family'),(15571,1196204,'Comedy'),(15572,1196204,'Drama'),(15573,1196339,'Comedy'),(15574,1196339,'Drama'),(15575,1196339,'Family'),(15576,1196948,'Action'),(15577,1196948,'Comedy'),(15578,1196948,'Drama'),(15579,1197624,'Action'),(15580,1197624,'Crime'),(15581,1197624,'Drama'),(15582,1198153,'Action'),(15583,1198153,'Drama'),(15584,1198153,'Thriller'),(15585,1198156,'Drama'),(15586,1198199,'Drama'),(15587,1199099,'Adventure'),(15588,1199099,'Drama'),(15589,1199099,'Fantasy'),(15590,1201167,'Comedy'),(15591,1201167,'Drama'),(15592,1201607,'Adventure'),(15593,1201607,'Family'),(15594,1201607,'Fantasy'),(15595,1202028,'Documentary'),(15596,1202028,'Short'),(15597,1204340,'Drama'),(15598,1204342,'Adventure'),(15599,1204342,'Comedy'),(15600,1204342,'Family'),(15601,12048234,'Comedy'),(15602,12048234,'Drama'),(15603,1204975,'Comedy'),(15604,1204975,'Drama'),(15605,1204977,'Horror'),(15606,1204977,'Mystery'),(15607,1204977,'Thriller'),(15608,1205489,'Drama'),(15609,1205537,'Action'),(15610,1205537,'Drama'),(15611,1205537,'Thriller'),(15612,1205558,'Comedy'),(15613,1205558,'Drama'),(15614,1206285,'Drama'),(15615,1206488,'Drama'),(15616,1206488,'Music'),(15617,1206543,'Action'),(15618,1206543,'Crime'),(15619,1206543,'Drama'),(15620,1206885,'Action'),(15621,1206885,'Crime'),(15622,1206885,'Thriller'),(15623,1209377,'Drama'),(15624,1209377,'Mystery'),(15625,1210042,'Action'),(15626,1210042,'Crime'),(15627,1210042,'Drama'),(15628,1210166,'Biography'),(15629,1210166,'Drama'),(15630,1210166,'Sport'),(15631,1210819,'Action'),(15632,1210819,'Adventure'),(15633,1210819,'Western'),(15634,1211837,'Action'),(15635,1211837,'Adventure'),(15636,1211837,'Fantasy'),(15637,1211956,'Action'),(15638,1211956,'Thriller'),(15639,1212428,'Adventure'),(15640,1212428,'Biography'),(15641,1212428,'Drama'),(15642,1212436,'Comedy'),(15643,1212436,'Romance'),(15644,1212450,'Biography'),(15645,1212450,'Crime'),(15646,1212450,'Drama'),(15647,1212454,'Comedy'),(15648,1212454,'Drama'),(15649,1212454,'Family'),(15650,1212974,'Action'),(15651,1212974,'Comedy'),(15652,1212974,'Crime'),(15653,1213641,'Biography'),(15654,1213641,'Drama'),(15655,1213641,'History'),(15656,1213648,'Crime'),(15657,1213648,'Drama'),(15658,1213663,'Action'),(15659,1213663,'Comedy'),(15660,1213663,'Sci-Fi'),(15661,12141112,'Comedy'),(15662,12141112,'Music'),(15663,12145728,'Drama'),(15664,12145728,'Mystery'),(15665,1216475,'Adventure'),(15666,1216475,'Animation'),(15667,1216475,'Comedy'),(15668,1216477,'Comedy'),(15669,1216477,'Drama'),(15670,1216487,'Action'),(15671,1216487,'Crime'),(15672,1216487,'Drama'),(15673,1216492,'Comedy'),(15674,1216492,'Romance'),(15675,1216496,'Crime'),(15676,1216496,'Drama'),(15677,1216496,'Mystery'),(15678,1216515,'Adventure'),(15679,1216515,'Animation'),(15680,1216515,'Family'),(15681,1216516,'Adventure'),(15682,1216516,'Animation'),(15683,1216516,'Family'),(15684,1216520,'Drama'),(15685,1216520,'Romance'),(15686,1216520,'Sci-Fi'),(15687,1217209,'Action'),(15688,1217209,'Adventure'),(15689,1217209,'Animation'),(15690,1217213,'Animation'),(15691,1217213,'Family'),(15692,1217213,'Fantasy'),(15693,1217613,'Action'),(15694,1217613,'Adventure'),(15695,1217613,'Sci-Fi'),(15696,1219289,'Sci-Fi'),(15697,1219289,'Thriller'),(15698,1219817,'Adventure'),(15699,1219817,'Comedy'),(15700,1219817,'Fantasy'),(15701,1219827,'Action'),(15702,1219827,'Crime'),(15703,1219827,'Drama'),(15704,12198524,'Horror'),(15705,12198524,'Mystery'),(15706,1220198,'Horror'),(15707,1220198,'Mystery'),(15708,1220198,'Sci-Fi'),(15709,1220214,'Drama'),(15710,1220214,'Fantasy'),(15711,1220214,'Horror'),(15712,1220634,'Action'),(15713,1220634,'Horror'),(15714,1220634,'Sci-Fi'),(15715,1220719,'Action'),(15716,1220719,'Biography'),(15717,1220719,'Drama'),(15718,1221141,'Drama'),(15719,1221141,'Mystery'),(15720,1221141,'Thriller'),(15721,1221208,'Biography'),(15722,1221208,'Drama'),(15723,12261776,'Action'),(15724,12261776,'Adventure'),(15725,12261776,'Drama'),(15726,12261880,'Crime'),(15727,12262116,'Action'),(15728,12262116,'Adventure'),(15729,12262116,'Biography'),(15730,1226229,'Comedy'),(15731,1226229,'Music'),(15732,1226232,'Drama'),(15733,1226232,'Romance'),(15734,1226236,'Drama'),(15735,1226236,'Romance'),(15736,1226240,'Drama'),(15737,1226240,'Music'),(15738,1226251,'Action'),(15739,1226251,'Adventure'),(15740,1226251,'Animation'),(15741,1226273,'Action'),(15742,1226273,'Adventure'),(15743,1226273,'Drama'),(15744,1226291,'Documentary'),(15745,1226291,'Drama'),(15746,1226681,'Horror'),(15747,1226681,'Sci-Fi'),(15748,1226753,'Drama'),(15749,1226753,'Thriller'),(15750,1226766,'Comedy'),(15751,1226766,'Drama'),(15752,1226766,'Family'),(15753,1226774,'Comedy'),(15754,1226837,'Biography'),(15755,1226837,'Drama'),(15756,12268798,'Short'),(15757,1227787,'Drama'),(15758,1227787,'Mystery'),(15759,1227926,'Comedy'),(15760,1227926,'Musical'),(15761,1227926,'Sci-Fi'),(15762,1227929,'Biography'),(15763,1227929,'Documentary'),(15764,1228705,'Action'),(15765,1228705,'Sci-Fi'),(15766,1228987,'Drama'),(15767,1228987,'Fantasy'),(15768,1228987,'Horror'),(15769,1229238,'Action'),(15770,1229238,'Adventure'),(15771,1229238,'Thriller'),(15772,1229340,'Comedy'),(15773,1229381,'Crime'),(15774,1229381,'Drama'),(15775,1229381,'War'),(15776,1229822,'Drama'),(15777,1229822,'Mystery'),(15778,1229822,'Romance'),(15779,1230215,'Drama'),(15780,1230414,'Comedy'),(15781,1230414,'Drama'),(15782,1230414,'Romance'),(15783,1230424,'Drama'),(15784,1231583,'Comedy'),(15785,1231583,'Drama'),(15786,1231587,'Comedy'),(15787,1231587,'Sci-Fi'),(15788,1232200,'Comedy'),(15789,1232207,'Crime'),(15790,1232207,'Documentary'),(15791,1232207,'History'),(15792,1232776,'Drama'),(15793,1232783,'Horror'),(15794,1232783,'Mystery'),(15795,1232829,'Action'),(15796,1232829,'Comedy'),(15797,1232829,'Crime'),(15798,1232838,'Crime'),(15799,1232838,'Drama'),(15800,1232838,'Mystery'),(15801,1233219,'Drama'),(15802,1233219,'Thriller'),(15803,1233227,'Horror'),(15804,1233227,'Mystery'),(15805,1233227,'Thriller'),(15806,1233301,'Action'),(15807,1233301,'Drama'),(15808,1233301,'History'),(15809,1233334,'Drama'),(15810,1234548,'Comedy'),(15811,1234548,'War'),(15812,1234654,'Comedy'),(15813,1234654,'Drama'),(15814,1234654,'Romance'),(15815,1234719,'Action'),(15816,1234719,'Drama'),(15817,1234719,'War'),(15818,1234721,'Action'),(15819,1234721,'Crime'),(15820,1234721,'Sci-Fi'),(15821,1235075,'Comedy'),(15822,1235124,'Drama'),(15823,1235124,'Fantasy'),(15824,1235124,'Mystery'),(15825,1235166,'Crime'),(15826,1235166,'Drama'),(15827,1235170,'Drama'),(15828,1235170,'Fantasy'),(15829,1235170,'Romance'),(15830,1235187,'Drama'),(15831,1235187,'Romance'),(15832,1235187,'War'),(15833,1235189,'Action'),(15834,1235189,'Comedy'),(15835,1235189,'Crime'),(15836,1235796,'Drama'),(15837,1235796,'Mystery'),(15838,1235796,'Romance'),(15839,1235830,'Animation'),(15840,1235830,'Crime'),(15841,1235830,'Drama'),(15842,1235842,'Crime'),(15843,1235842,'Drama'),(15844,1235842,'Romance'),(15845,12361974,'Action'),(15846,12361974,'Adventure'),(15847,12361974,'Fantasy'),(15848,1236371,'Drama'),(15849,1236371,'Mystery'),(15850,1236371,'Romance'),(15851,1237838,'Comedy'),(15852,1237838,'Crime'),(15853,1237838,'Mystery'),(15854,1240982,'Action'),(15855,1240982,'Adventure'),(15856,1240982,'Comedy'),(15857,12412888,'Action'),(15858,12412888,'Adventure'),(15859,12412888,'Comedy'),(15860,1241317,'Crime'),(15861,1241317,'Drama'),(15862,1241317,'Fantasy'),(15863,1242422,'Action'),(15864,1242422,'Crime'),(15865,1242422,'Drama'),(15866,1242423,'Comedy'),(15867,1242460,'Drama'),(15868,1242460,'Mystery'),(15869,1242460,'Thriller'),(15870,1242530,'Comedy'),(15871,1242530,'Drama'),(15872,1242530,'Romance'),(15873,1242545,'Comedy'),(15874,1242545,'Drama'),(15875,1242545,'Fantasy'),(15876,1242618,'Drama'),(15877,1242618,'Horror'),(15878,1242618,'Thriller'),(15879,1243375,'Drama'),(15880,1243957,'Action'),(15881,1243957,'Thriller'),(15882,1243974,'Comedy'),(15883,1243974,'Drama'),(15884,1243974,'Romance'),(15885,1244668,'Comedy'),(15886,1244668,'Drama'),(15887,1244754,'Biography'),(15888,1244754,'Crime'),(15889,1244754,'Drama'),(15890,1245112,'Horror'),(15891,1245112,'Thriller'),(15892,1245492,'Comedy'),(15893,1245492,'Fantasy'),(15894,1245526,'Action'),(15895,1245526,'Comedy'),(15896,1245526,'Crime'),(15897,1247644,'Romance'),(15898,1247662,'Comedy'),(15899,1247662,'Romance'),(15900,1248971,'Action'),(15901,1248971,'Drama'),(15902,1248971,'Romance'),(15903,1250777,'Action'),(15904,1250777,'Comedy'),(15905,1250777,'Crime'),(15906,1251757,'Comedy'),(15907,1251757,'Crime'),(15908,1251757,'Drama'),(15909,1252380,'Comedy'),(15910,1252380,'Family'),(15911,1252380,'Music'),(15912,1252595,'Drama'),(15913,1252595,'Mystery'),(15914,1252595,'Romance'),(15915,12536294,'Biography'),(15916,12536294,'Drama'),(15917,1253863,'Action'),(15918,1253863,'Drama'),(15919,1253863,'War'),(15920,1253864,'Action'),(15921,1253864,'Drama'),(15922,1253864,'Fantasy'),(15923,1254322,'Biography'),(15924,1254322,'Drama'),(15925,1254322,'History'),(15926,1255953,'Drama'),(15927,1255953,'Mystery'),(15928,1255953,'War'),(15929,1257579,'Crime'),(15930,1257579,'Drama'),(15931,1257579,'Mystery'),(15932,1258197,'Crime'),(15933,1258197,'Horror'),(15934,1258197,'Mystery'),(15935,1258972,'Action'),(15936,1259014,'Action'),(15937,1259014,'Biography'),(15938,1259014,'Crime'),(15939,12592084,'Animation'),(15940,12592084,'Short'),(15941,12593682,'Action'),(15942,12593682,'Comedy'),(15943,12593682,'Thriller'),(15944,1259521,'Horror'),(15945,1259521,'Mystery'),(15946,1259521,'Thriller'),(15947,1259528,'Action'),(15948,1259528,'Crime'),(15949,1259528,'Drama'),(15950,1259571,'Adventure'),(15951,1259571,'Drama'),(15952,1259571,'Fantasy'),(15953,1259574,'Crime'),(15954,1259574,'Drama'),(15955,1259574,'History'),(15956,1260502,'Action'),(15957,1260502,'Animation'),(15958,1260502,'Crime'),(15959,1260944,'Comedy'),(15960,1260944,'Short'),(15961,12610794,'Action'),(15962,12610794,'Drama'),(15963,12610794,'Fantasy'),(15964,12618926,'Drama'),(15965,1261945,'Comedy'),(15966,1261945,'Drama'),(15967,1261945,'Romance'),(15968,1262416,'Comedy'),(15969,1262416,'Horror'),(15970,1262416,'Mystery'),(15971,1263670,'Drama'),(15972,1263670,'Music'),(15973,1263670,'Romance'),(15974,1263750,'Drama'),(15975,1263750,'Romance'),(15976,1263772,'Animation'),(15977,1263772,'Drama'),(15978,1263772,'Mystery'),(15979,1263778,'Comedy'),(15980,1263778,'Drama'),(15981,1265990,'Drama'),(15982,1265990,'Horror'),(15983,1265990,'Thriller'),(15984,1266029,'Biography'),(15985,1266029,'Drama'),(15986,1266029,'Music'),(15987,1266097,'Adult'),(15988,1266097,'Adventure'),(15989,1266097,'Comedy'),(15990,1267297,'Action'),(15991,1267297,'Adventure'),(15992,1267297,'Fantasy'),(15993,1267299,'Comedy'),(15994,1267299,'Horror'),(15995,1267299,'Musical'),(15996,1267379,'Animation'),(15997,1267379,'Horror'),(15998,1267379,'Sci-Fi'),(15999,1268799,'Adventure'),(16000,1268799,'Comedy'),(16001,1268962,'Comedy'),(16002,1268987,'Action'),(16003,1268987,'Comedy'),(16004,1268989,'Drama'),(16005,1269560,'Family'),(16006,1269560,'Romance'),(16007,1269560,'Western'),(16008,1270120,'Drama'),(16009,1270120,'Sci-Fi'),(16010,1270291,'Sci-Fi'),(16011,1270291,'Thriller'),(16012,1270296,'Crime'),(16013,1270296,'Mystery'),(16014,1270296,'Thriller'),(16015,1270761,'Fantasy'),(16016,1270761,'Horror'),(16017,1270761,'Thriller'),(16018,1270769,'Drama'),(16019,1270797,'Action'),(16020,1270797,'Adventure'),(16021,1270797,'Sci-Fi'),(16022,1270798,'Action'),(16023,1270798,'Sci-Fi'),(16024,1270842,'Drama'),(16025,1270842,'Romance'),(16026,12708658,'Comedy'),(16027,12708658,'Drama'),(16028,12708658,'Romance'),(16029,12718300,'Comedy'),(16030,12718300,'Crime'),(16031,12718300,'Mystery'),(16032,1272041,'Drama'),(16033,1272041,'Romance'),(16034,1272051,'Adventure'),(16035,1272051,'Animation'),(16036,1272051,'Comedy'),(16037,1272878,'Action'),(16038,1272878,'Comedy'),(16039,1272878,'Thriller'),(16040,1273204,'Drama'),(16041,1273204,'Mystery'),(16042,1273204,'Romance'),(16043,1273678,'Action'),(16044,1273678,'Comedy'),(16045,1273678,'Family'),(16046,1273816,'Comedy'),(16047,1273816,'Horror'),(16048,1273816,'Musical'),(16049,1274300,'Comedy'),(16050,1274300,'Drama'),(16051,1274300,'Fantasy'),(16052,12749596,'Horror'),(16053,12749596,'Mystery'),(16054,12758060,'Biography'),(16055,12758060,'Drama'),(16056,12758060,'History'),(16057,1276104,'Action'),(16058,1276104,'Drama'),(16059,1276104,'Sci-Fi'),(16060,1276419,'Biography'),(16061,1276419,'Drama'),(16062,1276419,'History'),(16063,1277728,'Comedy'),(16064,1277728,'Drama'),(16065,1277953,'Adventure'),(16066,1277953,'Animation'),(16067,1277953,'Comedy'),(16068,1278340,'Comedy'),(16069,1278340,'Fantasy'),(16070,1278340,'Horror'),(16071,12783454,'Comedy'),(16072,12783454,'Romance'),(16073,1278379,'Drama'),(16074,1278379,'Romance'),(16075,1278449,'Comedy'),(16076,1278449,'Crime'),(16077,1278449,'Music'),(16078,1278469,'Biography'),(16079,1278469,'Drama'),(16080,12789558,'Biography'),(16081,12789558,'Drama'),(16082,12789558,'Romance'),(16083,1279083,'Documentary'),(16084,1279935,'Comedy'),(16085,1279935,'Crime'),(16086,1279935,'Romance'),(16087,12801262,'Adventure'),(16088,12801262,'Animation'),(16089,12801262,'Comedy'),(16090,1280558,'Action'),(16091,1280558,'Crime'),(16092,1280558,'Drama'),(16093,1282140,'Comedy'),(16094,1282140,'Drama'),(16095,1282140,'Romance'),(16096,12838958,'Adventure'),(16097,12838958,'Animation'),(16098,12838958,'Comedy'),(16099,12841698,'Action'),(16100,12841698,'Romance'),(16101,12841698,'Short'),(16102,12844910,'Action'),(16103,12844910,'Adventure'),(16104,12844910,'Thriller'),(16105,1284526,'Drama'),(16106,1284526,'Romance'),(16107,1284575,'Comedy'),(16108,1284575,'Romance'),(16109,1284591,'Drama'),(16110,1285009,'Horror'),(16111,1285016,'Biography'),(16112,1285016,'Drama'),(16113,1285309,'Comedy'),(16114,1285309,'Drama'),(16115,1286124,'Adventure'),(16116,1286124,'Comedy'),(16117,1286124,'Family'),(16118,1286742,'Drama'),(16119,12873562,'Horror'),(16120,12873562,'Thriller'),(16121,12877640,'Drama'),(16122,12877640,'Horror'),(16123,12877640,'Mystery'),(16124,1287878,'Drama'),(16125,1288558,'Horror'),(16126,1288589,'Drama'),(16127,12889404,'Drama'),(16128,12889404,'Musical'),(16129,12889404,'Romance'),(16130,1289401,'Action'),(16131,1289401,'Comedy'),(16132,1289401,'Fantasy'),(16133,1289403,'Drama'),(16134,1289403,'Romance'),(16135,1289403,'War'),(16136,1289406,'Action'),(16137,1289406,'Crime'),(16138,1289406,'Drama'),(16139,1290135,'Horror'),(16140,1290135,'Thriller'),(16141,1291150,'Action'),(16142,1291150,'Adventure'),(16143,1291150,'Comedy'),(16144,1291580,'Biography'),(16145,1291580,'Drama'),(16146,1291580,'Music'),(16147,1291584,'Action'),(16148,1291584,'Drama'),(16149,1291584,'Sport'),(16150,1291652,'Action'),(16151,1291652,'Crime'),(16152,1291652,'Drama'),(16153,1292566,'Comedy'),(16154,1292566,'Drama'),(16155,1292566,'Romance'),(16156,1293847,'Action'),(16157,1293847,'Adventure'),(16158,1293847,'Thriller'),(16159,1294138,'Animation'),(16160,1294138,'Family'),(16161,1294138,'Musical'),(16162,1294226,'Drama'),(16163,1294226,'Music'),(16164,1294226,'Romance'),(16165,1296899,'Drama'),(16166,1296899,'Horror'),(16167,1296899,'Thriller'),(16168,1298554,'Adventure'),(16169,1298554,'Drama'),(16170,1298554,'Fantasy'),(16171,1298644,'Comedy'),(16172,1298644,'Crime'),(16173,1298649,'Comedy'),(16174,1298649,'Sci-Fi'),(16175,1298650,'Action'),(16176,1298650,'Adventure'),(16177,1298650,'Fantasy'),(16178,1300851,'Action'),(16179,1300851,'Crime'),(16180,1300851,'Thriller'),(16181,1300854,'Action'),(16182,1300854,'Adventure'),(16183,1300854,'Sci-Fi'),(16184,13017992,'Adventure'),(16185,13017992,'Family'),(16186,13017992,'Fantasy'),(16187,1302006,'Biography'),(16188,1302006,'Crime'),(16189,1302006,'Drama'),(16190,1302011,'Action'),(16191,1302011,'Adventure'),(16192,1302011,'Animation'),(16193,1302067,'Adventure'),(16194,1302067,'Animation'),(16195,1302067,'Comedy'),(16196,13024674,'Action'),(16197,13024674,'Comedy'),(16198,13024674,'Crime'),(16199,1303803,'Musical'),(16200,1303828,'Comedy'),(16201,1303828,'Crime'),(16202,1303828,'Drama'),(16203,1305138,'Comedy'),(16204,1305583,'Comedy'),(16205,1305583,'Romance'),(16206,1305591,'Action'),(16207,1305591,'Adventure'),(16208,1305591,'Animation'),(16209,13056052,'Comedy'),(16210,13056052,'Crime'),(16211,13056052,'Drama'),(16212,1305714,'Comedy'),(16213,1305714,'Romance'),(16214,1305797,'Action'),(16215,1305797,'Sci-Fi'),(16216,1305797,'Thriller'),(16217,1305806,'Drama'),(16218,1305806,'Mystery'),(16219,1305806,'Romance'),(16220,1306980,'Comedy'),(16221,1306980,'Drama'),(16222,1306980,'Romance'),(16223,13069986,'Drama'),(16224,13069986,'Romance'),(16225,1307068,'Adventure'),(16226,1307068,'Comedy'),(16227,1307068,'Drama'),(16228,1307858,'Comedy'),(16229,1307858,'Horror'),(16230,13079086,'Documentary'),(16231,1308138,'Adventure'),(16232,1308138,'Drama'),(16233,1308138,'Romance'),(16234,13086266,'Action'),(16235,13086266,'Adventure'),(16236,13086266,'Drama'),(16237,13086274,'Drama'),(16238,13086274,'Sci-Fi'),(16239,1308728,'Action'),(16240,1308728,'Comedy'),(16241,1308728,'Crime'),(16242,1308729,'Action'),(16243,1308729,'Crime'),(16244,1308729,'Thriller'),(16245,1309449,'Drama'),(16246,1311071,'Biography'),(16247,1311071,'Drama'),(16248,1311071,'Romance'),(16249,1311075,'Comedy'),(16250,1311075,'Drama'),(16251,1312251,'Drama'),(16252,1312251,'Family'),(16253,1312251,'Fantasy'),(16254,1313092,'Crime'),(16255,1313092,'Drama'),(16256,1313092,'Thriller'),(16257,1313139,'Comedy'),(16258,1313139,'Drama'),(16259,1313139,'Romance'),(16260,1313244,'Horror'),(16261,13139228,'Drama'),(16262,13139228,'Romance'),(16263,13143964,'Comedy'),(16264,13145534,'Comedy'),(16265,13145534,'Drama'),(16266,13145534,'Fantasy'),(16267,1314645,'Drama'),(16268,1314645,'Thriller'),(16269,1314652,'Drama'),(16270,1314652,'Thriller'),(16271,1314655,'Horror'),(16272,1314655,'Mystery'),(16273,1314655,'Thriller'),(16274,1315214,'Drama'),(16275,1315214,'Romance'),(16276,13152234,'Short'),(16277,1315981,'Crime'),(16278,1315981,'Drama'),(16279,1315981,'Romance'),(16280,1316037,'Horror'),(16281,1316037,'Thriller'),(16282,1316540,'Drama'),(16283,1316541,'Adventure'),(16284,1316541,'Drama'),(16285,1316622,'Adventure'),(16286,1316622,'Drama'),(16287,1316622,'Mystery'),(16288,1316624,'Comedy'),(16289,1316624,'Drama'),(16290,13172796,'Comedy'),(16291,1318514,'Action'),(16292,1318514,'Drama'),(16293,1318514,'Sci-Fi'),(16294,1318517,'Adventure'),(16295,1318517,'Comedy'),(16296,1318517,'Drama'),(16297,1319708,'Action'),(16298,1319708,'Adventure'),(16299,1319708,'Drama'),(16300,1319722,'Comedy'),(16301,1319722,'Drama'),(16302,1319722,'Romance'),(16303,1320082,'Comedy'),(16304,1320082,'Drama'),(16305,1320082,'Music'),(16306,1320244,'Horror'),(16307,1320244,'Mystery'),(16308,1320244,'Thriller'),(16309,1320253,'Action'),(16310,1320253,'Adventure'),(16311,1320253,'Thriller'),(16312,1320286,'Biography'),(16313,1320286,'Drama'),(16314,1320286,'Romance'),(16315,1320291,'Adventure'),(16316,1320291,'Drama'),(16317,1320291,'Horror'),(16318,1320304,'Horror'),(16319,1320304,'Thriller'),(16320,1320352,'Drama'),(16321,13204490,'Drama'),(16322,13204490,'Fantasy'),(16323,1321510,'Drama'),(16324,1321510,'Musical'),(16325,1321510,'Romance'),(16326,1321511,'Action'),(16327,1321511,'Drama'),(16328,1321511,'Mystery'),(16329,1321870,'Action'),(16330,1321870,'Crime'),(16331,1321870,'Drama'),(16332,1322269,'Comedy'),(16333,1322269,'Drama'),(16334,1322312,'Comedy'),(16335,1322312,'Romance'),(16336,1322315,'Thriller'),(16337,1322385,'Drama'),(16338,1323045,'Adventure'),(16339,1323045,'Thriller'),(16340,13235822,'Drama'),(16341,13235822,'Horror'),(16342,13235822,'Mystery'),(16343,1323594,'Adventure'),(16344,1323594,'Animation'),(16345,1323594,'Comedy'),(16346,1323605,'Comedy'),(16347,1323605,'Horror'),(16348,1323605,'Music'),(16349,1324999,'Adventure'),(16350,1324999,'Drama'),(16351,1324999,'Fantasy'),(16352,1325004,'Action'),(16353,1325004,'Adventure'),(16354,1325004,'Drama'),(16355,1326221,'Comedy'),(16356,1326221,'Musical'),(16357,13266132,'Sci-Fi'),(16358,13266132,'Short'),(16359,13266998,'Crime'),(16360,13266998,'Horror'),(16361,13266998,'Thriller'),(16362,1326956,'Documentary'),(16363,1327194,'Drama'),(16364,1327194,'Mystery'),(16365,1327194,'Romance'),(16366,1327773,'Biography'),(16367,1327773,'Drama'),(16368,1331064,'Comedy'),(16369,1331064,'Drama'),(16370,1331064,'Romance'),(16371,1332054,'Comedy'),(16372,13320622,'Action'),(16373,13320622,'Adventure'),(16374,13320622,'Comedy'),(16375,1332134,'Action'),(16376,1332134,'Drama'),(16377,13327038,'Comedy'),(16378,1334260,'Drama'),(16379,1334260,'Romance'),(16380,1334260,'Sci-Fi'),(16381,1334512,'Comedy'),(16382,1334512,'Romance'),(16383,1334537,'Comedy'),(16384,1334537,'Drama'),(16385,1334537,'Romance'),(16386,1334553,'Comedy'),(16387,1334553,'Crime'),(16388,1334553,'Thriller'),(16389,13345606,'Horror'),(16390,13352968,'Comedy'),(16391,13352968,'Drama'),(16392,1335975,'Action'),(16393,1335975,'Drama'),(16394,1335975,'Fantasy'),(16395,1336608,'Comedy'),(16396,1336608,'Drama'),(16397,1336608,'Musical'),(16398,1336617,'Comedy'),(16399,1336617,'Drama'),(16400,1336617,'Romance'),(16401,1336999,'Comedy'),(16402,1337051,'Crime'),(16403,1337051,'Drama'),(16404,13375076,'Horror'),(16405,13375076,'Thriller'),(16406,1339268,'Comedy'),(16407,1339268,'Drama'),(16408,1339302,'Action'),(16409,1339302,'Animation'),(16410,1339302,'Drama'),(16411,1340108,'Action'),(16412,1340108,'Adventure'),(16413,1340108,'Animation'),(16414,1340138,'Action'),(16415,1340138,'Adventure'),(16416,1340138,'Sci-Fi'),(16417,13403046,'Horror'),(16418,13403046,'Thriller'),(16419,1340664,'Thriller'),(16420,1340768,'Music'),(16421,1340768,'Musical'),(16422,1340773,'Comedy'),(16423,1340773,'Drama'),(16424,1340800,'Drama'),(16425,1340800,'Mystery'),(16426,1340800,'Thriller'),(16427,1341167,'Comedy'),(16428,1341167,'Crime'),(16429,1341167,'Drama'),(16430,1341188,'Comedy'),(16431,1341188,'Drama'),(16432,1341188,'Romance'),(16433,1341341,'Comedy'),(16434,1341341,'Romance'),(16435,1341710,'Horror'),(16436,1342378,'Drama'),(16437,1342378,'Family'),(16438,13430858,'Comedy'),(16439,13430858,'Romance'),(16440,1343092,'Drama'),(16441,1343092,'Romance'),(16442,1343097,'Crime'),(16443,1343097,'Drama'),(16444,1343097,'Thriller'),(16445,1343727,'Action'),(16446,1343727,'Crime'),(16447,1343727,'Sci-Fi'),(16448,1345772,'Crime'),(16449,1345772,'Horror'),(16450,1345772,'Mystery'),(16451,1345836,'Action'),(16452,1345836,'Drama'),(16453,1345836,'Thriller'),(16454,13462472,'Drama'),(16455,13462472,'Romance'),(16456,13482828,'Drama'),(16457,13482828,'Romance'),(16458,1348327,'Drama'),(16459,1349451,'Comedy'),(16460,1349451,'Drama'),(16461,1349482,'Comedy'),(16462,1349482,'Sport'),(16463,1350498,'Action'),(16464,1350498,'Adventure'),(16465,1350498,'Comedy'),(16466,1351177,'Comedy'),(16467,1351177,'Horror'),(16468,1351177,'Sci-Fi'),(16469,1351685,'Action'),(16470,1351685,'Adventure'),(16471,1351685,'Fantasy'),(16472,13521006,'Comedy'),(16473,13521006,'Drama'),(16474,13521006,'Horror'),(16475,1352824,'Drama'),(16476,1352824,'Mystery'),(16477,1352824,'Thriller'),(16478,13539646,'Action'),(16479,13539646,'Adventure'),(16480,13539646,'Drama'),(16481,1355630,'Drama'),(16482,1355630,'Fantasy'),(16483,1355630,'Music'),(16484,1355631,'Biography'),(16485,1355631,'Crime'),(16486,1355631,'Drama'),(16487,1355638,'Animation'),(16488,1355638,'Comedy'),(16489,1355638,'Fantasy'),(16490,1355644,'Drama'),(16491,1355644,'Romance'),(16492,1355644,'Sci-Fi'),(16493,1355683,'Biography'),(16494,1355683,'Crime'),(16495,1355683,'Drama'),(16496,13560574,'Horror'),(16497,13560574,'Mystery'),(16498,13560574,'Thriller'),(16499,1356380,'Comedy'),(16500,1356380,'Crime'),(16501,1356380,'Drama'),(16502,13575806,'Adventure'),(16503,13575806,'Animation'),(16504,13575806,'Comedy'),(16505,13603966,'Action'),(16506,13603966,'Crime'),(16507,13603966,'Thriller'),(16508,1360860,'Drama'),(16509,1360860,'Mystery'),(16510,13610562,'Comedy'),(16511,1361318,'Action'),(16512,1361318,'Crime'),(16513,1361318,'Thriller'),(16514,1361835,'Crime'),(16515,1361835,'Drama'),(16516,1361835,'Thriller'),(16517,1362058,'Action'),(16518,1362058,'Comedy'),(16519,1362058,'Horror'),(16520,13623880,'Adventure'),(16521,13623880,'Animation'),(16522,13623880,'Comedy'),(16523,1362534,'Comedy'),(16524,1365050,'Drama'),(16525,1365050,'War'),(16526,13650600,'Comedy'),(16527,13650600,'Drama'),(16528,13650600,'Thriller'),(16529,13651628,'Adventure'),(16530,13651628,'Animation'),(16531,13651628,'Drama'),(16532,1365519,'Action'),(16533,1365519,'Adventure'),(16534,1365519,'Fantasy'),(16535,1366344,'Comedy'),(16536,13669038,'Drama'),(16537,13675832,'Comedy'),(16538,1368491,'Drama'),(16539,1368491,'Fantasy'),(16540,1368491,'Romance'),(16541,1369706,'Horror'),(16542,1369706,'Mystery'),(16543,1369706,'Thriller'),(16544,1370212,'Drama'),(16545,1371111,'Drama'),(16546,1371111,'Mystery'),(16547,1371111,'Sci-Fi'),(16548,1371150,'Comedy'),(16549,1371150,'Drama'),(16550,1371155,'Comedy'),(16551,1371155,'Drama'),(16552,1371155,'History'),(16553,1371585,'Crime'),(16554,1371585,'Drama'),(16555,1371630,'Drama'),(16556,1371630,'Fantasy'),(16557,1371630,'Romance'),(16558,1372301,'Animation'),(16559,1372301,'Drama'),(16560,1372301,'Sci-Fi'),(16561,1372306,'Comedy'),(16562,1372306,'Drama'),(16563,1372686,'Drama'),(16564,1372686,'Thriller'),(16565,1372686,'War'),(16566,1374989,'Action'),(16567,1374989,'Comedy'),(16568,1374989,'Fantasy'),(16569,1375666,'Action'),(16570,1375666,'Adventure'),(16571,1375666,'Sci-Fi'),(16572,1375670,'Comedy'),(16573,1376195,'Action'),(16574,1376195,'Comedy'),(16575,1376195,'Drama'),(16576,1376213,'Adventure'),(16577,1376213,'Family'),(16578,1376213,'Fantasy'),(16579,1376233,'Comedy'),(16580,1379177,'Crime'),(16581,1379177,'Thriller'),(16582,1379182,'Drama'),(16583,1379182,'Thriller'),(16584,1379222,'Crime'),(16585,1379222,'Drama'),(16586,1379222,'Mystery'),(16587,1381404,'Drama'),(16588,1381404,'Thriller'),(16589,1381413,'Comedy'),(16590,1381413,'Crime'),(16591,1381512,'Action'),(16592,1381512,'Comedy'),(16593,1381512,'Sci-Fi'),(16594,13833688,'Drama'),(16595,13841850,'Drama'),(16596,13841850,'Fantasy'),(16597,13841850,'Horror'),(16598,13845792,'Thriller'),(16599,1384925,'Drama'),(16600,1384925,'Western'),(16601,1385826,'Crime'),(16602,1385826,'Mystery'),(16603,1385826,'Romance'),(16604,1385867,'Action'),(16605,1385867,'Comedy'),(16606,1385867,'Crime'),(16607,1385912,'Comedy'),(16608,1385912,'Drama'),(16609,1385956,'Documentary'),(16610,1386588,'Action'),(16611,1386588,'Comedy'),(16612,1386588,'Crime'),(16613,1386697,'Action'),(16614,1386697,'Adventure'),(16615,1386697,'Fantasy'),(16616,1386703,'Action'),(16617,1386703,'Adventure'),(16618,1386703,'Sci-Fi'),(16619,1386932,'Action'),(16620,1386932,'Biography'),(16621,1386932,'Drama'),(16622,1389072,'Drama'),(16623,1389072,'Fantasy'),(16624,1389072,'Sci-Fi'),(16625,1389137,'Comedy'),(16626,1389137,'Drama'),(16627,1389137,'Family'),(16628,1389374,'Drama'),(16629,1390411,'Action'),(16630,1390411,'Adventure'),(16631,1390411,'Biography'),(16632,1391034,'Drama'),(16633,1391034,'Horror'),(16634,1391034,'Mystery'),(16635,1392170,'Action'),(16636,1392170,'Adventure'),(16637,1392170,'Sci-Fi'),(16638,1392190,'Action'),(16639,1392190,'Adventure'),(16640,1392190,'Sci-Fi'),(16641,1392214,'Crime'),(16642,1392214,'Drama'),(16643,1392214,'Mystery'),(16644,13932410,'Adventure'),(16645,13932410,'Comedy'),(16646,1393746,'Drama'),(16647,1393746,'History'),(16648,1396218,'Comedy'),(16649,1396218,'Family'),(16650,1396218,'Fantasy'),(16651,1396484,'Horror'),(16652,1397280,'Action'),(16653,1397280,'Crime'),(16654,1397280,'Thriller'),(16655,1397514,'Action'),(16656,1397514,'Adventure'),(16657,1397514,'Comedy'),(16658,1398426,'Biography'),(16659,1398426,'Drama'),(16660,1398426,'History'),(16661,1398428,'Horror'),(16662,1398428,'Thriller'),(16663,13989030,'Comedy'),(16664,13989030,'Family'),(16665,13989030,'Romance'),(16666,1399103,'Action'),(16667,1399103,'Adventure'),(16668,1399103,'Sci-Fi'),(16669,1399683,'Drama'),(16670,1399683,'Mystery'),(16671,14007288,'Drama'),(16672,1401143,'Adventure'),(16673,1401143,'Fantasy'),(16674,1401143,'Horror'),(16675,1401152,'Action'),(16676,1401152,'Mystery'),(16677,1401152,'Thriller'),(16678,1401643,'Drama'),(16679,1401643,'History'),(16680,1402488,'Adventure'),(16681,1402488,'Animation'),(16682,1402488,'Comedy'),(16683,1403177,'Comedy'),(16684,1403177,'Drama'),(16685,1403214,'Drama'),(16686,14034966,'Drama'),(16687,14034966,'Romance'),(16688,1403865,'Drama'),(16689,1403865,'Western'),(16690,14039582,'Drama'),(16691,1403981,'Drama'),(16692,1403981,'Romance'),(16693,1403988,'Comedy'),(16694,1403988,'Drama'),(16695,1403988,'Romance'),(16696,1405365,'Comedy'),(16697,1405365,'Drama'),(16698,1405365,'Romance'),(16699,1405500,'Drama'),(16700,1405808,'Drama'),(16701,1405809,'Drama'),(16702,1405810,'Comedy'),(16703,1405810,'Drama'),(16704,1405810,'Romance'),(16705,1406160,'Drama'),(16706,14062858,'Animation'),(16707,14062858,'Drama'),(16708,14062858,'Family'),(16709,1407061,'Comedy'),(16710,1407061,'Romance'),(16711,1407061,'Sport'),(16712,1407065,'Drama'),(16713,1407065,'Fantasy'),(16714,1407065,'Horror'),(16715,1408101,'Action'),(16716,1408101,'Adventure'),(16717,1408101,'Sci-Fi'),(16718,1408253,'Action'),(16719,1408253,'Comedy'),(16720,1408253,'Crime'),(16721,1409024,'Action'),(16722,1409024,'Adventure'),(16723,1409024,'Comedy'),(16724,14091818,'Drama'),(16725,14091818,'Romance'),(16726,1410063,'Drama'),(16727,1410063,'History'),(16728,1410063,'Romance'),(16729,1411238,'Comedy'),(16730,1411238,'Romance'),(16731,1411250,'Action'),(16732,1411250,'Adventure'),(16733,1411250,'Sci-Fi'),(16734,1411697,'Comedy'),(16735,1411704,'Adventure'),(16736,1411704,'Animation'),(16737,1411704,'Comedy'),(16738,1412386,'Comedy'),(16739,1412386,'Drama'),(16740,1412386,'Romance'),(16741,1412528,'Comedy'),(16742,1412528,'Drama'),(16743,1412528,'Romance'),(16744,1412541,'Comedy'),(16745,1412541,'Horror'),(16746,14128670,'Crime'),(16747,14128670,'Drama'),(16748,14128670,'Thriller'),(16749,1414382,'Comedy'),(16750,1414382,'Romance'),(16751,14145004,'Drama'),(16752,14145426,'Animation'),(16753,14145426,'Comedy'),(16754,14145426,'Sci-Fi'),(16755,14152140,'Comedy'),(16756,14152140,'Drama'),(16757,14152140,'Thriller'),(16758,1415283,'Comedy'),(16759,1415283,'Family'),(16760,1415283,'Fantasy'),(16761,14156262,'Comedy'),(16762,14156262,'Short'),(16763,14164234,'Crime'),(16764,14164234,'Drama'),(16765,14164234,'Romance'),(16766,1418377,'Action'),(16767,1418377,'Fantasy'),(16768,1418377,'Sci-Fi'),(16769,14208870,'Drama'),(16770,14209916,'Comedy'),(16771,14209916,'Thriller'),(16772,1421051,'Comedy'),(16773,1421051,'Drama'),(16774,1421051,'Romance'),(16775,1422136,'Action'),(16776,1422136,'Adventure'),(16777,1422136,'Crime'),(16778,1422201,'Comedy'),(16779,1422674,'Fantasy'),(16780,1422674,'Horror'),(16781,1422675,'Fantasy'),(16782,1422675,'Horror'),(16783,14230388,'Comedy'),(16784,14230388,'Drama'),(16785,14230388,'Romance'),(16786,1423894,'Comedy'),(16787,1423894,'Drama'),(16788,1424327,'Drama'),(16789,1424327,'Romance'),(16790,1424381,'Action'),(16791,1424381,'Adventure'),(16792,1424381,'Fantasy'),(16793,1424431,'Drama'),(16794,1424431,'History'),(16795,1424432,'Biography'),(16796,1424432,'Documentary'),(16797,1424432,'Sport'),(16798,1424797,'Drama'),(16799,1424797,'Romance'),(16800,1425928,'Action'),(16801,1425928,'Comedy'),(16802,1425928,'Horror'),(16803,1425933,'Comedy'),(16804,1425933,'Drama'),(16805,1425933,'Fantasy'),(16806,1426320,'Comedy'),(16807,1426320,'Romance'),(16808,1426329,'Biography'),(16809,1426329,'Drama'),(16810,1426362,'Comedy'),(16811,1426362,'Drama'),(16812,1426371,'Drama'),(16813,1426374,'Drama'),(16814,1426374,'Music'),(16815,1428455,'Short'),(16816,1428455,'Sport'),(16817,1428538,'Action'),(16818,1428538,'Fantasy'),(16819,1428538,'Horror'),(16820,1429392,'Crime'),(16821,1429392,'Drama'),(16822,1429392,'Thriller'),(16823,14298328,'Comedy'),(16824,14298328,'Drama'),(16825,14298328,'Romance'),(16826,14300504,'Drama'),(16827,1430132,'Action'),(16828,1430132,'Sci-Fi'),(16829,1430607,'Adventure'),(16830,1430607,'Animation'),(16831,1430607,'Comedy'),(16832,1430612,'Action'),(16833,1430612,'Crime'),(16834,1430612,'Thriller'),(16835,1430615,'Biography'),(16836,1430615,'Drama'),(16837,1430615,'Family'),(16838,1430626,'Adventure'),(16839,1430626,'Animation'),(16840,1430626,'Comedy'),(16841,14309446,'Comedy'),(16842,1431045,'Action'),(16843,1431045,'Comedy'),(16844,1431181,'Comedy'),(16845,1431181,'Drama'),(16846,14315756,'Comedy'),(16847,14315756,'Drama'),(16848,14315756,'Romance'),(16849,14317880,'Comedy'),(16850,14317880,'Horror'),(16851,14324650,'Action'),(16852,14324650,'Animation'),(16853,14324650,'Crime'),(16854,1433108,'Action'),(16855,1433108,'Crime'),(16856,1433108,'Drama'),(16857,14331144,'Action'),(16858,14331144,'Animation'),(16859,14331144,'Fantasy'),(16860,1433540,'Adventure'),(16861,1433540,'Animation'),(16862,1433540,'Comedy'),(16863,1433802,'Comedy'),(16864,1433802,'Drama'),(16865,1433811,'Drama'),(16866,1433811,'Thriller'),(16867,1435513,'Biography'),(16868,1435513,'Comedy'),(16869,1435513,'Romance'),(16870,1436045,'Action'),(16871,1436045,'Adventure'),(16872,1436045,'Drama'),(16873,14362474,'Drama'),(16874,14362474,'Short'),(16875,1436562,'Adventure'),(16876,1436562,'Animation'),(16877,1436562,'Comedy'),(16878,14371426,'Comedy'),(16879,14371426,'Sci-Fi'),(16880,14371818,'Comedy'),(16881,14371818,'Romance'),(16882,1437357,'Drama'),(16883,1437357,'Fantasy'),(16884,1437357,'Mystery'),(16885,1437358,'Crime'),(16886,1437358,'Drama'),(16887,1437358,'Horror'),(16888,1438176,'Comedy'),(16889,1438176,'Horror'),(16890,1438216,'Biography'),(16891,1438216,'Drama'),(16892,1438216,'History'),(16893,1438254,'Drama'),(16894,1438254,'Fantasy'),(16895,1438254,'Romance'),(16896,1439572,'Drama'),(16897,1439572,'Romance'),(16898,1439572,'Sci-Fi'),(16899,1440118,'Drama'),(16900,1440129,'Action'),(16901,1440129,'Adventure'),(16902,1440129,'Sci-Fi'),(16903,1440161,'Comedy'),(16904,1440161,'Drama'),(16905,1440161,'Fantasy'),(16906,1440232,'Comedy'),(16907,1440232,'Drama'),(16908,14402926,'Action'),(16909,14402926,'Animation'),(16910,14402926,'Crime'),(16911,1440292,'Comedy'),(16912,1440292,'Drama'),(16913,1440292,'Romance'),(16914,1440345,'Adventure'),(16915,1440345,'Comedy'),(16916,1440345,'Drama'),(16917,1440728,'Action'),(16918,1440728,'Crime'),(16919,1440728,'Drama'),(16920,1440741,'Drama'),(16921,1440741,'Romance'),(16922,1441326,'Drama'),(16923,1441326,'Mystery'),(16924,1441326,'Thriller'),(16925,1441395,'Drama'),(16926,1441395,'Horror'),(16927,1441395,'Mystery'),(16928,1441912,'Comedy'),(16929,1441912,'Drama'),(16930,1441951,'Comedy'),(16931,1441951,'Drama'),(16932,1441951,'Music'),(16933,1441952,'Comedy'),(16934,1441952,'Drama'),(16935,1441952,'Romance'),(16936,1441953,'Biography'),(16937,1441953,'Drama'),(16938,1441953,'History'),(16939,1441956,'Comedy'),(16940,1441956,'Drama'),(16941,1442437,'Comedy'),(16942,1442437,'Drama'),(16943,1442437,'Romance'),(16944,1442519,'Drama'),(16945,14428598,'Drama'),(16946,14428598,'Music'),(16947,1443518,'Drama'),(16948,14444726,'Drama'),(16949,14444726,'Music'),(16950,1445520,'Comedy'),(16951,1445520,'Drama'),(16952,1446192,'Action'),(16953,1446192,'Adventure'),(16954,1446192,'Animation'),(16955,1446201,'Comedy'),(16956,1446201,'Romance'),(16957,1446714,'Adventure'),(16958,1446714,'Mystery'),(16959,1446714,'Sci-Fi'),(16960,1447479,'Crime'),(16961,1447479,'Drama'),(16962,1447479,'Romance'),(16963,1448755,'Action'),(16964,1448755,'Crime'),(16965,1448755,'Thriller'),(16966,1449283,'Adventure'),(16967,1449283,'Animation'),(16968,1449283,'Comedy'),(16969,14495706,'Animation'),(16970,14495706,'Short'),(16971,1450321,'Action'),(16972,1450321,'Comedy'),(16973,1450321,'Crime'),(16974,1450332,'Comedy'),(16975,1450332,'Drama'),(16976,1451762,'Comedy'),(16977,1451762,'Drama'),(16978,1452628,'Horror'),(16979,1452628,'Mystery'),(16980,1452628,'Thriller'),(16981,1453405,'Adventure'),(16982,1453405,'Animation'),(16983,1453405,'Comedy'),(16984,1454029,'Drama'),(16985,14544192,'Comedy'),(16986,14544192,'Drama'),(16987,14544192,'Music'),(16988,1454468,'Drama'),(16989,1454468,'Sci-Fi'),(16990,1454468,'Thriller'),(16991,1455151,'Comedy'),(16992,1455151,'Drama'),(16993,1456060,'Action'),(16994,1456060,'Crime'),(16995,1456060,'Drama'),(16996,1456472,'Comedy'),(16997,1456472,'Drama'),(16998,1456635,'Comedy'),(16999,1456635,'Drama'),(17000,1456635,'Sport'),(17001,1456941,'Action'),(17002,1456941,'Adventure'),(17003,1456941,'Drama'),(17004,1457767,'Horror'),(17005,1457767,'Mystery'),(17006,1457767,'Thriller'),(17007,1458169,'Action'),(17008,1458169,'Crime'),(17009,1458169,'Thriller'),(17010,1458175,'Action'),(17011,1458175,'Crime'),(17012,1458175,'Drama'),(17013,1461305,'Animation'),(17014,1461305,'Short'),(17015,1461312,'Adventure'),(17016,1461312,'Drama'),(17017,1461312,'Fantasy'),(17018,14614892,'Action'),(17019,14614892,'Adventure'),(17020,14614892,'Animation'),(17021,1462041,'Drama'),(17022,1462041,'Mystery'),(17023,1462041,'Thriller'),(17024,1462053,'Comedy'),(17025,1462758,'Drama'),(17026,1462758,'Mystery'),(17027,1462758,'Thriller'),(17028,1462764,'Action'),(17029,1462764,'Adventure'),(17030,1462764,'Sci-Fi'),(17031,1462769,'Comedy'),(17032,1462769,'Drama'),(17033,1462769,'Family'),(17034,1462900,'Action'),(17035,1462900,'Biography'),(17036,1462900,'Drama'),(17037,1463167,'Drama'),(17038,1463167,'Romance'),(17039,1463188,'Comedy'),(17040,1463188,'Romance'),(17041,14641788,'Action'),(17042,14641788,'Adventure'),(17043,14641788,'Crime'),(17044,1464191,'Drama'),(17045,1464335,'Action'),(17046,1464335,'Adventure'),(17047,14644048,'Drama'),(17048,1464540,'Action'),(17049,1464540,'Adventure'),(17050,1464540,'Sci-Fi'),(17051,1464580,'Drama'),(17052,1464580,'Horror'),(17053,1464580,'Sci-Fi'),(17054,1465522,'Comedy'),(17055,1465522,'Horror'),(17056,1466054,'Adventure'),(17057,1466054,'Comedy'),(17058,1466054,'Drama'),(17059,14668630,'Adventure'),(17060,14668630,'Animation'),(17061,14668630,'Comedy'),(17062,1467304,'Horror'),(17063,1469259,'Animation'),(17064,1469259,'Family'),(17065,1469304,'Action'),(17066,1469304,'Comedy'),(17067,1469304,'Crime'),(17068,1470023,'Action'),(17069,1470023,'Comedy'),(17070,1470827,'Adventure'),(17071,1470827,'Drama'),(17072,1470827,'Romance'),(17073,1473149,'Drama'),(17074,1473832,'Comedy'),(17075,1473832,'Drama'),(17076,1473832,'Romance'),(17077,1474276,'Action'),(17078,1474276,'Adventure'),(17079,1474276,'Animation'),(17080,1477171,'Drama'),(17081,14775784,'Drama'),(17082,1477834,'Action'),(17083,1477834,'Adventure'),(17084,1477834,'Fantasy'),(17085,1477837,'Comedy'),(17086,1477855,'Biography'),(17087,1477855,'Comedy'),(17088,1477855,'Drama'),(17089,1478338,'Comedy'),(17090,1478804,'Action'),(17091,1478804,'Thriller'),(17092,1478839,'Comedy'),(17093,1478839,'Drama'),(17094,1478839,'Romance'),(17095,1478964,'Action'),(17096,1478964,'Adventure'),(17097,1478964,'Comedy'),(17098,1479163,'Comedy'),(17099,1479163,'Music'),(17100,1479668,'Comedy'),(17101,1479668,'Drama'),(17102,1479676,'Comedy'),(17103,1479676,'Drama'),(17104,1480295,'Action'),(17105,1480295,'Drama'),(17106,1480295,'Thriller'),(17107,1480656,'Crime'),(17108,1480656,'Drama'),(17109,1480656,'Fantasy'),(17110,1480660,'Action'),(17111,1480660,'Adventure'),(17112,1480660,'Animation'),(17113,14814040,'Comedy'),(17114,14814040,'Drama'),(17115,1481572,'Comedy'),(17116,1481572,'Drama'),(17117,1481572,'Romance'),(17118,14817272,'Crime'),(17119,14817272,'Drama'),(17120,14817272,'Mystery'),(17121,1482459,'Adventure'),(17122,1482459,'Animation'),(17123,1482459,'Comedy'),(17124,1483013,'Action'),(17125,1483013,'Adventure'),(17126,1483013,'Sci-Fi'),(17127,1483324,'Comedy'),(17128,1483324,'Romance'),(17129,1483797,'Action'),(17130,1483797,'Animation'),(17131,1483797,'Sci-Fi'),(17132,1483831,'Drama'),(17133,1483831,'War'),(17134,14843560,'Horror'),(17135,14843560,'Short'),(17136,1485698,'Crime'),(17137,1485698,'Drama'),(17138,1485698,'Thriller'),(17139,1485796,'Biography'),(17140,1485796,'Drama'),(17141,1485796,'Musical'),(17142,14859416,'Drama'),(17143,14859416,'Thriller'),(17144,1486185,'Fantasy'),(17145,1486185,'Horror'),(17146,1486185,'Mystery'),(17147,1486190,'Comedy'),(17148,1486190,'Drama'),(17149,1486190,'Romance'),(17150,1486192,'Crime'),(17151,1486192,'Mystery'),(17152,1486192,'Thriller'),(17153,1486193,'Action'),(17154,1486193,'Drama'),(17155,1486193,'War'),(17156,14866710,'Action'),(17157,14866710,'Comedy'),(17158,14866710,'Sci-Fi'),(17159,1486834,'Comedy'),(17160,1486834,'Romance'),(17161,1487118,'Comedy'),(17162,1487118,'Romance'),(17163,1487118,'Sport'),(17164,1488555,'Comedy'),(17165,1488555,'Fantasy'),(17166,1488589,'Animation'),(17167,1488589,'Drama'),(17168,1488589,'Family'),(17169,1488591,'Adventure'),(17170,1488591,'Animation'),(17171,1488591,'Crime'),(17172,1488598,'Sci-Fi'),(17173,1488606,'Action'),(17174,1488606,'Thriller'),(17175,14888898,'Drama'),(17176,1489887,'Comedy'),(17177,1489889,'Action'),(17178,1489889,'Comedy'),(17179,1489889,'Crime'),(17180,1490017,'Action'),(17181,1490017,'Adventure'),(17182,1490017,'Animation'),(17183,14905650,'Horror'),(17184,14913250,'Comedy'),(17185,14913250,'Drama'),(17186,14913250,'Romance'),(17187,1492030,'Drama'),(17188,14923260,'Action'),(17189,14923260,'Adventure'),(17190,14923260,'Drama'),(17191,1492841,'Comedy'),(17192,1492841,'Drama'),(17193,1493886,'Drama'),(17194,1493886,'Thriller'),(17195,1494772,'Action'),(17196,1494772,'Animation'),(17197,1494772,'Fantasy'),(17198,1496025,'Action'),(17199,1496025,'Fantasy'),(17200,1496025,'Horror'),(17201,1496422,'Crime'),(17202,1496422,'Drama'),(17203,1496422,'Mystery'),(17204,14966324,'Comedy'),(17205,14966324,'Sci-Fi'),(17206,14966324,'Thriller'),(17207,1496884,'Horror'),(17208,1498569,'Drama'),(17209,1498569,'Romance'),(17210,1498878,'Mystery'),(17211,1498878,'Sci-Fi'),(17212,1498878,'Thriller'),(17213,1499658,'Comedy'),(17214,1499658,'Crime'),(17215,15006566,'Drama'),(17216,15006566,'Thriller'),(17217,15010292,'Comedy'),(17218,15010292,'Drama'),(17219,15010292,'Horror'),(17220,1502397,'Action'),(17221,1502397,'Comedy'),(17222,1502397,'Crime'),(17223,1502407,'Crime'),(17224,1502407,'Horror'),(17225,1502407,'Thriller'),(17226,1502712,'Action'),(17227,1502712,'Adventure'),(17228,1502712,'Sci-Fi'),(17229,1504320,'Biography'),(17230,1504320,'Drama'),(17231,1504320,'History'),(17232,1504362,'Comedy'),(17233,1504429,'Drama'),(17234,1504443,'Action'),(17235,1504443,'Adventure'),(17236,1504443,'Comedy'),(17237,1504508,'Drama'),(17238,1506999,'Action'),(17239,1506999,'Drama'),(17240,1506999,'Thriller'),(17241,1508661,'Horror'),(17242,1508675,'Comedy'),(17243,1508675,'Drama'),(17244,15090124,'Animation'),(17245,15090124,'Fantasy'),(17246,15090124,'Horror'),(17247,15096128,'Comedy'),(17248,15096128,'Romance'),(17249,1509767,'Action'),(17250,1509767,'Adventure'),(17251,1509767,'Fantasy'),(17252,1509787,'Comedy'),(17253,1509787,'Drama'),(17254,1509788,'Adventure'),(17255,1509788,'Comedy'),(17256,1510906,'Drama'),(17257,15109082,'Drama'),(17258,1510938,'Drama'),(17259,1511354,'Drama'),(17260,1512201,'Documentary'),(17261,1512201,'Drama'),(17262,1512235,'Action'),(17263,1512235,'Comedy'),(17264,1512235,'Crime'),(17265,1512685,'Horror'),(17266,1512685,'Mystery'),(17267,1512685,'Thriller'),(17268,1514041,'Crime'),(17269,1514041,'Thriller'),(17270,1515091,'Action'),(17271,1515091,'Adventure'),(17272,1515091,'Mystery'),(17273,1515725,'Adventure'),(17274,1515725,'Fantasy'),(17275,1515725,'Sci-Fi'),(17276,1515935,'Documentary'),(17277,1515935,'Drama'),(17278,1515935,'News'),(17279,1517260,'Action'),(17280,1517260,'Adventure'),(17281,1517260,'Drama'),(17282,1517268,'Adventure'),(17283,1517268,'Comedy'),(17284,1517268,'Fantasy'),(17285,1517451,'Drama'),(17286,1517451,'Music'),(17287,1517451,'Romance'),(17288,1517470,'Action'),(17289,1517470,'Adventure'),(17290,1517470,'Animation'),(17291,1518812,'Adventure'),(17292,1518812,'Drama'),(17293,1518812,'Thriller'),(17294,1518861,'Action'),(17295,1518861,'Adventure'),(17296,1518861,'Drama'),(17297,1520453,'Drama'),(17298,15206378,'Comedy'),(17299,15206378,'Crime'),(17300,15206378,'Mystery'),(17301,1521783,'Drama'),(17302,15218000,'Comedy'),(17303,15218000,'Romance'),(17304,1521848,'Comedy'),(17305,1523483,'Comedy'),(17306,1523483,'Mystery'),(17307,1523483,'Romance'),(17308,1524137,'Action'),(17309,1524137,'Adventure'),(17310,1524137,'Crime'),(17311,15248702,'Action'),(17312,15248702,'Animation'),(17313,15248702,'Crime'),(17314,1524930,'Adventure'),(17315,1524930,'Comedy'),(17316,1525366,'Action'),(17317,1525366,'Adventure'),(17318,1525366,'Comedy'),(17319,1525552,'Drama'),(17320,1525552,'Mystery'),(17321,1525552,'Romance'),(17322,15255876,'Crime'),(17323,15255876,'Drama'),(17324,15255876,'Thriller'),(17325,1525835,'Action'),(17326,1525835,'Horror'),(17327,1525835,'Sci-Fi'),(17328,1525836,'Action'),(17329,1525836,'Adventure'),(17330,1525836,'Drama'),(17331,1525890,'Horror'),(17332,1525890,'Thriller'),(17333,1525915,'Biography'),(17334,1525915,'Comedy'),(17335,1527186,'Drama'),(17336,1527186,'Sci-Fi'),(17337,1527679,'Drama'),(17338,1528071,'Comedy'),(17339,1528071,'Fantasy'),(17340,1528071,'Horror'),(17341,1528100,'Action'),(17342,1528100,'Adventure'),(17343,1528100,'Drama'),(17344,1528854,'Comedy'),(17345,1528854,'Family'),(17346,1529233,'Comedy'),(17347,1529233,'Musical'),(17348,1530509,'Horror'),(17349,1531663,'Drama'),(17350,1531901,'Drama'),(17351,1531901,'Fantasy'),(17352,1531901,'Horror'),(17353,1531930,'Drama'),(17354,15324860,'Biography'),(17355,15324860,'Documentary'),(17356,1532503,'Comedy'),(17357,1532503,'Drama'),(17358,1532503,'Romance'),(17359,15325794,'Thriller'),(17360,15326988,'Action'),(17361,15326988,'Adventure'),(17362,15326988,'Comedy'),(17363,1532957,'Comedy'),(17364,1532957,'Drama'),(17365,15339570,'Comedy'),(17366,15339570,'Drama'),(17367,15339570,'Sport'),(17368,1534085,'Horror'),(17369,1534085,'Mystery'),(17370,1534085,'Sci-Fi'),(17371,1535108,'Action'),(17372,1535108,'Drama'),(17373,1535108,'Sci-Fi'),(17374,1535109,'Action'),(17375,1535109,'Biography'),(17376,1535109,'Crime'),(17377,1535438,'Comedy'),(17378,1535438,'Drama'),(17379,1535438,'Romance'),(17380,1535616,'Drama'),(17381,1535616,'Horror'),(17382,1535616,'Sci-Fi'),(17383,1536044,'Horror'),(17384,1536044,'Mystery'),(17385,1536048,'Drama'),(17386,1536048,'History'),(17387,1536048,'Romance'),(17388,1536053,'Comedy'),(17389,1536053,'Musical'),(17390,1536053,'Romance'),(17391,1536410,'Crime'),(17392,1536410,'Drama'),(17393,1536410,'Mystery'),(17394,1536537,'Action'),(17395,1536537,'Crime'),(17396,1536537,'Fantasy'),(17397,1538403,'Action'),(17398,1538403,'Adventure'),(17399,1538403,'Fantasy'),(17400,15387742,'Comedy'),(17401,15398776,'Biography'),(17402,15398776,'Drama'),(17403,15398776,'History'),(17404,1540011,'Horror'),(17405,1540011,'Mystery'),(17406,1540011,'Thriller'),(17407,1540133,'Comedy'),(17408,1540133,'Crime'),(17409,1540133,'Thriller'),(17410,1541149,'Drama'),(17411,1541160,'Comedy'),(17412,1541160,'Crime'),(17413,1541160,'Mystery'),(17414,1541995,'Drama'),(17415,1541995,'History'),(17416,15422224,'Comedy'),(17417,15422224,'Horror'),(17418,15422224,'Thriller'),(17419,1542344,'Biography'),(17420,1542344,'Drama'),(17421,15426294,'Mystery'),(17422,15426294,'Thriller'),(17423,1542768,'Action'),(17424,1542768,'Comedy'),(17425,1542768,'Crime'),(17426,1542852,'Crime'),(17427,1542852,'Drama'),(17428,1542852,'Romance'),(17429,15428940,'Comedy'),(17430,15428940,'Drama'),(17431,15428940,'Sci-Fi'),(17432,15438542,'Action'),(17433,15438542,'Thriller'),(17434,15445056,'Action'),(17435,15445056,'Drama'),(17436,15445056,'Thriller'),(17437,1545097,'Comedy'),(17438,1545097,'Family'),(17439,1545106,'Comedy'),(17440,1545106,'Horror'),(17441,1545106,'Romance'),(17442,1545660,'Action'),(17443,1545660,'Adventure'),(17444,1545660,'Comedy'),(17445,1545754,'Comedy'),(17446,1545754,'Drama'),(17447,1547090,'Comedy'),(17448,1547234,'Action'),(17449,1547234,'Crime'),(17450,1547234,'Thriller'),(17451,15474916,'Horror'),(17452,15474916,'Mystery'),(17453,15474916,'Thriller'),(17454,1548603,'Comedy'),(17455,1548603,'Drama'),(17456,1549572,'Drama'),(17457,1549572,'Romance'),(17458,1549572,'Sci-Fi'),(17459,1549920,'Action'),(17460,1549920,'Thriller'),(17461,1549920,'Western'),(17462,1550312,'Drama'),(17463,1550312,'Romance'),(17464,15509244,'Comedy'),(17465,15509244,'Drama'),(17466,15509244,'Romance'),(17467,15521050,'Comedy'),(17468,15521050,'Drama'),(17469,15521050,'Romance'),(17470,1552211,'Action'),(17471,1552211,'Crime'),(17472,1552211,'Drama'),(17473,1552224,'Action'),(17474,1552224,'Adventure'),(17475,1552224,'Thriller'),(17476,15526040,'Horror'),(17477,15526040,'Short'),(17478,1555064,'Drama'),(17479,1555064,'Music'),(17480,1555093,'Drama'),(17481,1555093,'Horror'),(17482,1555093,'Thriller'),(17483,1555440,'Comedy'),(17484,1555440,'Crime'),(17485,1555440,'Drama'),(17486,1559547,'Drama'),(17487,1559547,'Fantasy'),(17488,1559547,'Romance'),(17489,1559549,'Biography'),(17490,1559549,'Documentary'),(17491,1559549,'History'),(17492,1560139,'Comedy'),(17493,1560139,'Drama'),(17494,1560220,'Action'),(17495,1560220,'Comedy'),(17496,1560220,'Horror'),(17497,1560747,'Drama'),(17498,1560747,'History'),(17499,1560779,'Drama'),(17500,1560779,'Family'),(17501,1560779,'Fantasy'),(17502,1560985,'Horror'),(17503,1561768,'Action'),(17504,1561768,'Thriller'),(17505,1561768,'War'),(17506,1561770,'Drama'),(17507,1562568,'Drama'),(17508,1563738,'Drama'),(17509,1563738,'Romance'),(17510,1563742,'Comedy'),(17511,1563742,'Romance'),(17512,1564349,'Drama'),(17513,1564349,'Family'),(17514,1564367,'Comedy'),(17515,1564367,'Romance'),(17516,1564585,'Action'),(17517,1564585,'Sci-Fi'),(17518,1564585,'Thriller'),(17519,1565958,'Comedy'),(17520,1565958,'Romance'),(17521,15671028,'Comedy'),(17522,15671028,'Romance'),(17523,1568338,'Action'),(17524,1568338,'Crime'),(17525,1568338,'Thriller'),(17526,1568346,'Crime'),(17527,1568346,'Drama'),(17528,1568346,'Mystery'),(17529,1568816,'Comedy'),(17530,1568816,'Sci-Fi'),(17531,1568816,'Thriller'),(17532,1568911,'Action'),(17533,1568911,'Adventure'),(17534,1568911,'Drama'),(17535,1568921,'Adventure'),(17536,1568921,'Animation'),(17537,1568921,'Drama'),(17538,1569923,'Action'),(17539,1569923,'Animation'),(17540,1569923,'Crime'),(17541,1570728,'Comedy'),(17542,1570728,'Drama'),(17543,1570728,'Romance'),(17544,1570989,'Comedy'),(17545,1570989,'Drama'),(17546,1570989,'Romance'),(17547,1571222,'Biography'),(17548,1571222,'Drama'),(17549,1571222,'Romance'),(17550,1571234,'Action'),(17551,1571234,'Adventure'),(17552,1571234,'Fantasy'),(17553,1571249,'Comedy'),(17554,1571249,'Drama'),(17555,1571249,'Romance'),(17556,1571724,'Drama'),(17557,1572315,'Horror'),(17558,1572315,'Thriller'),(17559,1572781,'Animation'),(17560,1572781,'Drama'),(17561,1572781,'Family'),(17562,1574639,'Comedy'),(17563,1574639,'Crime'),(17564,1575539,'Drama'),(17565,1575539,'Romance'),(17566,1576382,'Comedy'),(17567,1576382,'Drama'),(17568,1578261,'Comedy'),(17569,1578261,'Drama'),(17570,1578261,'Romance'),(17571,1578275,'Comedy'),(17572,1578275,'Drama'),(17573,1578873,'Drama'),(17574,1578873,'Mystery'),(17575,1578873,'Romance'),(17576,15791034,'Horror'),(17577,15791034,'Mystery'),(17578,15791034,'Thriller'),(17579,1581835,'Drama'),(17580,1581835,'Romance'),(17581,1582270,'Horror'),(17582,1582270,'Musical'),(17583,1582271,'Drama'),(17584,1582271,'Thriller'),(17585,1582507,'Drama'),(17586,1582507,'Horror'),(17587,1582507,'Thriller'),(17588,1583323,'Documentary'),(17589,1583421,'Action'),(17590,1583421,'Adventure'),(17591,1583421,'Sci-Fi'),(17592,1584016,'Documentary'),(17593,1584016,'Drama'),(17594,1584016,'Mystery'),(17595,1585255,'Comedy'),(17596,1585255,'Drama'),(17597,1586265,'Comedy'),(17598,1586265,'Drama'),(17599,1586265,'Romance'),(17600,1587157,'Action'),(17601,1587157,'Adventure'),(17602,1587157,'Animation'),(17603,1587309,'Comedy'),(17604,1587309,'Drama'),(17605,1587310,'Adventure'),(17606,1587310,'Family'),(17607,1587310,'Fantasy'),(17608,1587386,'Drama'),(17609,1587386,'Family'),(17610,1587386,'Romance'),(17611,1587707,'Comedy'),(17612,1587707,'Crime'),(17613,1587707,'Documentary'),(17614,1588170,'Action'),(17615,1588170,'Crime'),(17616,1588170,'Thriller'),(17617,1588173,'Comedy'),(17618,1588173,'Horror'),(17619,1588173,'Romance'),(17620,1588334,'Comedy'),(17621,1588334,'Drama'),(17622,1588337,'Drama'),(17623,1588337,'History'),(17624,1588398,'Drama'),(17625,1588398,'Mystery'),(17626,1588398,'Romance'),(17627,1588875,'Drama'),(17628,1588895,'Drama'),(17629,1588895,'Fantasy'),(17630,1590089,'Drama'),(17631,1590089,'Thriller'),(17632,1591071,'Comedy'),(17633,1591095,'Horror'),(17634,1591095,'Mystery'),(17635,1591095,'Thriller'),(17636,1591479,'Action'),(17637,1591479,'Adventure'),(17638,1591479,'Thriller'),(17639,1592281,'Comedy'),(17640,1592281,'Drama'),(17641,1592527,'Documentary'),(17642,1592527,'History'),(17643,1592876,'Comedy'),(17644,1592876,'Family'),(17645,1592876,'Musical'),(17646,1593655,'Sci-Fi'),(17647,15943414,'Romance'),(17648,1594562,'Drama'),(17649,1594562,'Horror'),(17650,1594562,'Mystery'),(17651,1594917,'Action'),(17652,1594917,'Adventure'),(17653,1594917,'Fantasy'),(17654,1594972,'Adventure'),(17655,1594972,'Animation'),(17656,1594972,'Comedy'),(17657,1595656,'Drama'),(17658,1595656,'Romance'),(17659,1596342,'Adventure'),(17660,1596342,'Animation'),(17661,1596342,'Comedy'),(17662,1596343,'Action'),(17663,1596343,'Crime'),(17664,1596343,'Thriller'),(17665,1596345,'Biography'),(17666,1596345,'Drama'),(17667,1596345,'History'),(17668,1596346,'Biography'),(17669,1596346,'Drama'),(17670,1596346,'Family'),(17671,1596350,'Action'),(17672,1596350,'Comedy'),(17673,1596350,'Romance'),(17674,1596363,'Biography'),(17675,1596363,'Comedy'),(17676,1596363,'Drama'),(17677,1596365,'Drama'),(17678,1596365,'Fantasy'),(17679,1596365,'Horror'),(17680,1597522,'Adventure'),(17681,1597522,'Comedy'),(17682,1597522,'Family'),(17683,1598538,'Crime'),(17684,1598538,'Drama'),(17685,1598642,'Drama'),(17686,1598642,'Romance'),(17687,1598642,'Sci-Fi'),(17688,1598778,'Drama'),(17689,1598778,'Thriller'),(17690,1598822,'Comedy'),(17691,1598822,'Romance'),(17692,1600195,'Action'),(17693,1600195,'Mystery'),(17694,1600195,'Thriller'),(17695,1600196,'Crime'),(17696,1600196,'Drama'),(17697,1600196,'Thriller'),(17698,1600383,'Drama'),(17699,1600383,'Romance'),(17700,1600524,'Drama'),(17701,1600524,'Romance'),(17702,1601913,'Action'),(17703,1601913,'Adventure'),(17704,1601913,'Drama'),(17705,1602098,'Drama'),(17706,1602098,'Romance'),(17707,1602472,'Comedy'),(17708,1602472,'Drama'),(17709,1602472,'Romance'),(17710,1602479,'Comedy'),(17711,1602479,'Drama'),(17712,1602479,'Romance'),(17713,1602613,'Action'),(17714,1602613,'Crime'),(17715,1602613,'Drama'),(17716,1602617,'Drama'),(17717,1602617,'Horror'),(17718,1602617,'Sci-Fi'),(17719,1602620,'Drama'),(17720,1604171,'Comedy'),(17721,1604171,'Drama'),(17722,1604171,'Family'),(17723,1604225,'Documentary'),(17724,1604900,'Action'),(17725,1604900,'Crime'),(17726,1604900,'Drama'),(17727,1605717,'Comedy'),(17728,1605717,'Drama'),(17729,1605717,'Music'),(17730,1605783,'Comedy'),(17731,1605783,'Fantasy'),(17732,1605783,'Romance'),(17733,1605798,'Biography'),(17734,1605798,'Drama'),(17735,1605798,'Romance'),(17736,1606339,'Crime'),(17737,1606339,'Mystery'),(17738,1606339,'Thriller'),(17739,1606378,'Action'),(17740,1606378,'Thriller'),(17741,1606389,'Drama'),(17742,1606389,'Romance'),(17743,1606392,'Comedy'),(17744,1606392,'Drama'),(17745,1606392,'Sport'),(17746,1606618,'Drama'),(17747,1606618,'Family'),(17748,1606618,'History'),(17749,1609479,'Comedy'),(17750,1609479,'Drama'),(17751,1610301,'Animation'),(17752,1610301,'Family'),(17753,1610301,'Fantasy'),(17754,1610452,'Comedy'),(17755,1610452,'Drama'),(17756,1610452,'Romance'),(17757,1610996,'Drama'),(17758,1610996,'Horror'),(17759,1610996,'Mystery'),(17760,1611224,'Action'),(17761,1611224,'Fantasy'),(17762,1611224,'Horror'),(17763,1612774,'Comedy'),(17764,1612774,'Fantasy'),(17765,1612774,'Horror'),(17766,1613750,'Action'),(17767,1613750,'Adventure'),(17768,1613750,'Biography'),(17769,1614338,'Drama'),(17770,1614338,'Family'),(17771,1614408,'Adventure'),(17772,1614408,'Sci-Fi'),(17773,1614989,'Action'),(17774,1614989,'Crime'),(17775,1614989,'Thriller'),(17776,1615065,'Action'),(17777,1615065,'Crime'),(17778,1615065,'Drama'),(17779,1615147,'Drama'),(17780,1615147,'Thriller'),(17781,1615160,'Action'),(17782,1615160,'Thriller'),(17783,1615918,'Adventure'),(17784,1615918,'Animation'),(17785,1615918,'Comedy'),(17786,1617661,'Action'),(17787,1617661,'Adventure'),(17788,1617661,'Sci-Fi'),(17789,16183464,'Action'),(17790,16183464,'Adventure'),(17791,16183464,'Animation'),(17792,1618390,'Biography'),(17793,1618390,'Drama'),(17794,1618390,'History'),(17795,1618434,'Action'),(17796,1618434,'Comedy'),(17797,1618434,'Crime'),(17798,1618442,'Action'),(17799,1618442,'Adventure'),(17800,1618442,'Fantasy'),(17801,1619029,'Biography'),(17802,1619029,'Drama'),(17803,1620680,'Adventure'),(17804,1620680,'Drama'),(17805,1620680,'Family'),(17806,1620981,'Animation'),(17807,1620981,'Comedy'),(17808,1620981,'Family'),(17809,1621039,'Adventure'),(17810,1621039,'Animation'),(17811,1621039,'Comedy'),(17812,1621045,'Comedy'),(17813,1621045,'Romance'),(17814,1621046,'Biography'),(17815,1621046,'Drama'),(17816,1621429,'Action'),(17817,1621429,'Crime'),(17818,1621429,'Thriller'),(17819,1621444,'Biography'),(17820,1621444,'Documentary'),(17821,1621444,'History'),(17822,1621994,'Action'),(17823,1621994,'Adventure'),(17824,1621994,'Family'),(17825,1622547,'Action'),(17826,1622547,'Comedy'),(17827,1622547,'Crime'),(17828,1622979,'Horror'),(17829,1622979,'Thriller'),(17830,1623205,'Adventure'),(17831,1623205,'Family'),(17832,1623205,'Fantasy'),(17833,1623288,'Adventure'),(17834,1623288,'Animation'),(17835,1623288,'Comedy'),(17836,1623745,'Drama'),(17837,1624408,'Drama'),(17838,1624426,'Drama'),(17839,1625155,'Drama'),(17840,1625155,'Thriller'),(17841,1625340,'Drama'),(17842,1625346,'Comedy'),(17843,1625346,'Drama'),(17844,1626146,'Adventure'),(17845,1626146,'Comedy'),(17846,1626146,'Drama'),(17847,1626201,'Fantasy'),(17848,1626201,'Horror'),(17849,1628841,'Action'),(17850,1628841,'Adventure'),(17851,1628841,'Sci-Fi'),(17852,1629377,'Action'),(17853,1629377,'Adventure'),(17854,1629377,'Horror'),(17855,1629705,'Action'),(17856,1629705,'Adventure'),(17857,1629705,'Drama'),(17858,1629757,'Biography'),(17859,1629757,'Drama'),(17860,1629757,'Sport'),(17861,1630027,'Comedy'),(17862,1630027,'Drama'),(17863,1630029,'Action'),(17864,1630029,'Adventure'),(17865,1630029,'Fantasy'),(17866,1630036,'Drama'),(17867,1630626,'Drama'),(17868,1630626,'Romance'),(17869,1630626,'Sport'),(17870,1631867,'Action'),(17871,1631867,'Adventure'),(17872,1631867,'Sci-Fi'),(17873,1632708,'Comedy'),(17874,1632708,'Romance'),(17875,1634122,'Action'),(17876,1634122,'Adventure'),(17877,1634122,'Comedy'),(17878,1634136,'Action'),(17879,1634136,'Comedy'),(17880,1634136,'Crime'),(17881,1636826,'Comedy'),(17882,1637688,'Action'),(17883,1637688,'Sci-Fi'),(17884,1637688,'Thriller'),(17885,1637706,'Comedy'),(17886,1637706,'Drama'),(17887,1637725,'Comedy'),(17888,16377816,'Drama'),(17889,1638002,'Comedy'),(17890,1638002,'Romance'),(17891,1638328,'Comedy'),(17892,1638328,'Romance'),(17893,1638350,'Comedy'),(17894,1638355,'Action'),(17895,1638355,'Adventure'),(17896,1638355,'Comedy'),(17897,1639084,'Comedy'),(17898,1639084,'Drama'),(17899,1639084,'Romance'),(17900,1640459,'Action'),(17901,1640459,'Comedy'),(17902,1640459,'Crime'),(17903,1640484,'Comedy'),(17904,1640484,'Drama'),(17905,1640571,'Action'),(17906,1640571,'Adventure'),(17907,1640571,'Drama'),(17908,1641410,'Drama'),(17909,1641624,'Comedy'),(17910,1641624,'Drama'),(17911,16419074,'Drama'),(17912,16419074,'Sport'),(17913,1641975,'Drama'),(17914,1641975,'Horror'),(17915,1641975,'Thriller'),(17916,1642252,'Action'),(17917,1642252,'Comedy'),(17918,1642252,'Horror'),(17919,16428256,'Action'),(17920,16428256,'Adventure'),(17921,16428256,'Animation'),(17922,1643222,'Horror'),(17923,1643222,'Sci-Fi'),(17924,1643222,'Thriller'),(17925,1645080,'Drama'),(17926,1645080,'Romance'),(17927,1645155,'Action'),(17928,1645155,'Thriller'),(17929,1645170,'Comedy'),(17930,1646123,'Drama'),(17931,1646876,'Drama'),(17932,1646876,'Family'),(17933,1646876,'Fantasy'),(17934,1646959,'Drama'),(17935,1646959,'Horror'),(17936,1646959,'Thriller'),(17937,1646971,'Action'),(17938,1646971,'Adventure'),(17939,1646971,'Animation'),(17940,1646980,'Action'),(17941,1646980,'Crime'),(17942,1646980,'Drama'),(17943,1646985,'Drama'),(17944,1646987,'Action'),(17945,1646987,'Adventure'),(17946,1646987,'Fantasy'),(17947,1647413,'Comedy'),(17948,1647668,'Biography'),(17949,1647668,'Drama'),(17950,1647668,'Sport'),(17951,1648133,'Animation'),(17952,1648133,'Horror'),(17953,1648133,'Mystery'),(17954,1648190,'Action'),(17955,1648190,'Adventure'),(17956,1648190,'Fantasy'),(17957,1648194,'Drama'),(17958,1648194,'Horror'),(17959,1648194,'Thriller'),(17960,1648204,'Comedy'),(17961,1648204,'Drama'),(17962,1648204,'Family'),(17963,16492574,'Fantasy'),(17964,16492574,'Horror'),(17965,16492574,'Mystery'),(17966,1649418,'Action'),(17967,1649418,'Thriller'),(17968,1649419,'Adventure'),(17969,1649419,'Drama'),(17970,1649419,'History'),(17971,1649444,'Horror'),(17972,1649444,'Thriller'),(17973,1649780,'Comedy'),(17974,1649780,'Drama'),(17975,1649780,'Music'),(17976,1650043,'Comedy'),(17977,1650043,'Family'),(17978,1650058,'Comedy'),(17979,1650058,'Drama'),(17980,1650062,'Action'),(17981,1650062,'Mystery'),(17982,1650062,'Sci-Fi'),(17983,1650407,'Comedy'),(17984,1650407,'Romance'),(17985,1650554,'Action'),(17986,1650554,'Comedy'),(17987,1650554,'Crime'),(17988,1650555,'Comedy'),(17989,1650555,'Horror'),(17990,1653853,'Documentary'),(17991,1653853,'Musical'),(17992,1653911,'Biography'),(17993,1653911,'Drama'),(17994,1653911,'Music'),(17995,1654523,'Mystery'),(17996,1654523,'Romance'),(17997,1654523,'Thriller'),(17998,1655389,'Drama'),(17999,1655389,'History'),(18000,1655416,'Comedy'),(18001,1655416,'Drama'),(18002,1655420,'Biography'),(18003,1655420,'Drama'),(18004,1655441,'Drama'),(18005,1655441,'Fantasy'),(18006,1655441,'Romance'),(18007,1655442,'Comedy'),(18008,1655442,'Drama'),(18009,1655442,'Romance'),(18010,1655460,'Comedy'),(18011,1655460,'Romance'),(18012,1656190,'Action'),(18013,1656190,'Crime'),(18014,1656190,'Thriller'),(18015,1657299,'Comedy'),(18016,1657299,'Drama'),(18017,1657299,'Romance'),(18018,1657507,'Action'),(18019,1657507,'Drama'),(18020,1657507,'Thriller'),(18021,1657510,'Drama'),(18022,1658801,'Biography'),(18023,1658801,'Drama'),(18024,1658801,'Romance'),(18025,1658837,'Crime'),(18026,1658837,'Drama'),(18027,1658837,'Horror'),(18028,1659337,'Drama'),(18029,1659338,'Action'),(18030,1659338,'Thriller'),(18031,1660379,'Drama'),(18032,1661199,'Adventure'),(18033,1661199,'Drama'),(18034,1661199,'Family'),(18035,1661275,'Comedy'),(18036,1661275,'Drama'),(18037,1661275,'Romance'),(18038,1661420,'Crime'),(18039,1661420,'Drama'),(18040,1661820,'Crime'),(18041,1661820,'Drama'),(18042,1661820,'Mystery'),(18043,1663202,'Action'),(18044,1663202,'Adventure'),(18045,1663202,'Drama'),(18046,1663655,'Drama'),(18047,1663655,'Horror'),(18048,1663655,'Thriller'),(18049,1663662,'Action'),(18050,1663662,'Adventure'),(18051,1663662,'Sci-Fi'),(18052,1665418,'Comedy'),(18053,1665418,'Drama'),(18054,1665418,'Romance'),(18055,1666185,'Biography'),(18056,1666185,'Drama'),(18057,1666185,'Music'),(18058,1666300,'Horror'),(18059,1666642,'Comedy'),(18060,1666642,'Romance'),(18061,1666801,'Comedy'),(18062,1666801,'Romance'),(18063,1667079,'Documentary'),(18064,1667079,'News'),(18065,1667307,'Comedy'),(18066,1667307,'Drama'),(18067,1667307,'Romance'),(18068,1667353,'Adventure'),(18069,1667353,'Comedy'),(18070,1667353,'Drama'),(18071,1667355,'Biography'),(18072,1667355,'Crime'),(18073,1667355,'Drama'),(18074,1667691,'Comedy'),(18075,1667691,'Crime'),(18076,1667691,'Drama'),(18077,1667889,'Adventure'),(18078,1667889,'Animation'),(18079,1667889,'Comedy'),(18080,1667905,'Documentary'),(18081,1668200,'Drama'),(18082,1668200,'War'),(18083,1669706,'Drama'),(18084,1669794,'Drama'),(18085,1670345,'Crime'),(18086,1670345,'Mystery'),(18087,1670345,'Thriller'),(18088,1671457,'Drama'),(18089,1671616,'Comedy'),(18090,1671616,'Drama'),(18091,1672718,'Documentary'),(18092,1672718,'Short'),(18093,1672723,'Action'),(18094,1672723,'Animation'),(18095,1672723,'Crime'),(18096,1672845,'Comedy'),(18097,1672845,'Drama'),(18098,1672845,'Music'),(18099,1673423,'Adventure'),(18100,1673423,'Comedy'),(18101,1673423,'Crime'),(18102,1673430,'Action'),(18103,1673430,'Adventure'),(18104,1673430,'Animation'),(18105,1673434,'Adventure'),(18106,1673434,'Drama'),(18107,1673434,'Fantasy'),(18108,1673697,'Biography'),(18109,1673697,'Comedy'),(18110,1673697,'Drama'),(18111,1673702,'Adventure'),(18112,1673702,'Animation'),(18113,1673702,'Comedy'),(18114,1674047,'Horror'),(18115,1674047,'Thriller'),(18116,1674057,'Comedy'),(18117,1674057,'Drama'),(18118,1674692,'Comedy'),(18119,1674771,'Comedy'),(18120,1674771,'Drama'),(18121,1674773,'Biography'),(18122,1674773,'Drama'),(18123,1675192,'Drama'),(18124,1675192,'Horror'),(18125,1675192,'Sci-Fi'),(18126,1675434,'Biography'),(18127,1675434,'Comedy'),(18128,1675434,'Drama'),(18129,1675439,'Comedy'),(18130,1677720,'Action'),(18131,1677720,'Adventure'),(18132,1677720,'Sci-Fi'),(18133,1679235,'Comedy'),(18134,1679276,'Adventure'),(18135,1679276,'Comedy'),(18136,1679276,'Crime'),(18137,1679335,'Adventure'),(18138,1679335,'Animation'),(18139,1679335,'Comedy'),(18140,1680051,'Horror'),(18141,1680051,'Thriller'),(18142,1682180,'Drama'),(18143,1682180,'Thriller'),(18144,1682246,'Comedy'),(18145,1682246,'Drama'),(18146,1682246,'Romance'),(18147,1683526,'Drama'),(18148,1683921,'Action'),(18149,1683921,'Crime'),(18150,1683921,'Thriller'),(18151,1684226,'Biography'),(18152,1684226,'Drama'),(18153,1684226,'History'),(18154,1684233,'Action'),(18155,1684233,'Crime'),(18156,1684233,'Thriller'),(18157,1684628,'Drama'),(18158,1684911,'Drama'),(18159,1684911,'Short'),(18160,1686067,'Comedy'),(18161,1686067,'Drama'),(18162,1686313,'Comedy'),(18163,1686313,'Drama'),(18164,1686313,'Romance'),(18165,1686821,'Action'),(18166,1686821,'Comedy'),(18167,1686821,'Drama'),(18168,1687901,'Drama'),(18169,1687901,'Horror'),(18170,1687901,'Mystery'),(18171,1690953,'Adventure'),(18172,1690953,'Animation'),(18173,1690953,'Comedy'),(18174,1691323,'Comedy'),(18175,1691323,'Drama'),(18176,1691323,'Romance'),(18177,1691916,'Drama'),(18178,1691916,'Fantasy'),(18179,1691916,'Mystery'),(18180,1691917,'Adventure'),(18181,1691917,'Animation'),(18182,1691917,'Comedy'),(18183,1692486,'Comedy'),(18184,1692486,'Drama'),(18185,1692504,'Drama'),(18186,1692504,'Fantasy'),(18187,1692504,'Horror'),(18188,1694020,'Comedy'),(18189,1694020,'Drama'),(18190,16953666,'Crime'),(18191,16953666,'Drama'),(18192,16953666,'Mystery'),(18193,1695405,'Drama'),(18194,1695405,'Thriller'),(18195,1695843,'Comedy'),(18196,1695843,'Drama'),(18197,1695843,'Family'),(18198,1698641,'Comedy'),(18199,1698641,'Drama'),(18200,1698641,'Family'),(18201,1698648,'Comedy'),(18202,1699185,'Drama'),(18203,1699185,'History'),(18204,1699185,'Romance'),(18205,1699231,'Horror'),(18206,1699231,'Sci-Fi'),(18207,1699231,'Thriller'),(18208,1699498,'Comedy'),(18209,1699498,'Family'),(18210,1699498,'Romance'),(18211,1699755,'Comedy'),(18212,1699755,'Romance'),(18213,1700467,'Comedy'),(18214,1700467,'Romance'),(18215,1700808,'Drama'),(18216,1700808,'Sport'),(18217,1700841,'Adventure'),(18218,1700841,'Animation'),(18219,1700841,'Comedy'),(18220,1700844,'Drama'),(18221,1700844,'Romance'),(18222,1700845,'Biography'),(18223,1700845,'Drama'),(18224,1700845,'History'),(18225,17009710,'Crime'),(18226,17009710,'Drama'),(18227,17009710,'Thriller'),(18228,1701210,'Action'),(18229,1701210,'Drama'),(18230,1701210,'History'),(18231,1701215,'Drama'),(18232,1701990,'Comedy'),(18233,1701990,'Horror'),(18234,1701990,'Romance'),(18235,1702014,'Drama'),(18236,1702014,'Romance'),(18237,1702439,'Drama'),(18238,1702439,'Romance'),(18239,1702439,'Thriller'),(18240,1703148,'Adventure'),(18241,1703148,'Drama'),(18242,1703148,'Thriller'),(18243,1703199,'Horror'),(18244,1703199,'Mystery'),(18245,1704573,'Biography'),(18246,1704573,'Comedy'),(18247,1704573,'Crime'),(18248,1705134,'Horror'),(18249,1705134,'Sci-Fi'),(18250,1705134,'Thriller'),(18251,1706365,'Comedy'),(18252,1706365,'Horror'),(18253,1706593,'Action'),(18254,1706593,'Drama'),(18255,1706593,'Sci-Fi'),(18256,1706598,'Crime'),(18257,1706598,'Drama'),(18258,1706598,'Mystery'),(18259,1706620,'Action'),(18260,1706620,'Drama'),(18261,1706620,'Sci-Fi'),(18262,1707386,'Drama'),(18263,1707386,'Musical'),(18264,1707386,'Romance'),(18265,1707391,'Drama'),(18266,1707391,'Fantasy'),(18267,1707391,'Sci-Fi'),(18268,1707392,'Drama'),(18269,1707392,'Horror'),(18270,17076046,'Comedy'),(18271,17076046,'Crime'),(18272,17076046,'Music'),(18273,1710417,'Comedy'),(18274,1711366,'Animation'),(18275,1711366,'Horror'),(18276,1711366,'Sci-Fi'),(18277,1711425,'Comedy'),(18278,1711525,'Comedy'),(18279,1712261,'Action'),(18280,1712261,'Crime'),(18281,1712261,'Thriller'),(18282,1713476,'Horror'),(18283,1713476,'Sci-Fi'),(18284,1713476,'Thriller'),(18285,1714206,'Drama'),(18286,1714206,'Romance'),(18287,1714208,'Drama'),(18288,1714208,'Horror'),(18289,1714208,'Thriller'),(18290,1714210,'Drama'),(18291,1714210,'Romance'),(18292,17146978,'Drama'),(18293,1714886,'Drama'),(18294,1714915,'Comedy'),(18295,1714915,'Drama'),(18296,1714915,'Fantasy'),(18297,1716767,'Family'),(18298,1716767,'Fantasy'),(18299,1716772,'Comedy'),(18300,1716777,'Comedy'),(18301,1716777,'Drama'),(18302,1718807,'Comedy'),(18303,1718807,'Musical'),(18304,1718807,'Romance'),(18305,1719009,'Animation'),(18306,1719009,'Family'),(18307,1719071,'Comedy'),(18308,1719071,'Drama'),(18309,1720182,'Drama'),(18310,1720616,'Comedy'),(18311,1720616,'Drama'),(18312,1720616,'Romance'),(18313,1721685,'Documentary'),(18314,1721685,'Drama'),(18315,1723115,'Drama'),(18316,1723120,'Crime'),(18317,1723120,'Drama'),(18318,1723120,'Thriller'),(18319,1723121,'Comedy'),(18320,1723121,'Crime'),(18321,1723811,'Drama'),(18322,1724965,'Fantasy'),(18323,1724965,'Horror'),(18324,1724965,'Mystery'),(18325,1726589,'Comedy'),(18326,1726592,'Drama'),(18327,1726592,'Mystery'),(18328,1726592,'Thriller'),(18329,1726669,'Crime'),(18330,1726669,'Drama'),(18331,1726669,'Thriller'),(18332,1727388,'Comedy'),(18333,1727388,'Drama'),(18334,1727770,'Comedy'),(18335,1727770,'Sci-Fi'),(18336,1727776,'Action'),(18337,1727776,'Comedy'),(18338,1727776,'Horror'),(18339,1727824,'Biography'),(18340,1727824,'Drama'),(18341,1727824,'Music'),(18342,1728196,'Drama'),(18343,1730189,'Action'),(18344,1730189,'History'),(18345,1730189,'Horror'),(18346,1731141,'Action'),(18347,1731141,'Adventure'),(18348,1731141,'Sci-Fi'),(18349,1731697,'Horror'),(18350,1731697,'Thriller'),(18351,1731701,'Action'),(18352,1731701,'Comedy'),(18353,1731701,'Family'),(18354,1731767,'Adventure'),(18355,1731767,'Animation'),(18356,1731767,'Comedy'),(18357,1732730,'Comedy'),(18358,1733114,'Comedy'),(18359,1734110,'Biography'),(18360,1734110,'Crime'),(18361,1734110,'Drama'),(18362,1734113,'Action'),(18363,1734113,'Adventure'),(18364,1734113,'Animation'),(18365,1734493,'Action'),(18366,1734493,'Thriller'),(18367,1735200,'Comedy'),(18368,1735839,'Comedy'),(18369,1735839,'Romance'),(18370,1735853,'Drama'),(18371,1735898,'Action'),(18372,1735898,'Adventure'),(18373,1735898,'Drama'),(18374,1736599,'Documentary'),(18375,1736599,'Short'),(18376,1736633,'Drama'),(18377,1737090,'Drama'),(18378,1737090,'Thriller'),(18379,1740047,'Comedy'),(18380,1740047,'Drama'),(18381,1740707,'Drama'),(18382,1740707,'Fantasy'),(18383,1740707,'Horror'),(18384,1742044,'Biography'),(18385,1742044,'Drama'),(18386,1742044,'Music'),(18387,1742334,'Action'),(18388,1742334,'Crime'),(18389,1742334,'Drama'),(18390,1742336,'Comedy'),(18391,1742336,'Drama'),(18392,1742336,'Romance'),(18393,1742650,'Comedy'),(18394,1742650,'Romance'),(18395,1742683,'Biography'),(18396,1742683,'Drama'),(18397,1742683,'History'),(18398,1743922,'Drama'),(18399,1743922,'Fantasy'),(18400,1743922,'Mystery'),(18401,1744641,'Action'),(18402,1744641,'Adventure'),(18403,1744641,'Animation'),(18404,1745686,'Drama'),(18405,1745686,'Mystery'),(18406,1745686,'Sci-Fi'),(18407,1745960,'Action'),(18408,1745960,'Drama'),(18409,1748122,'Comedy'),(18410,1748122,'Drama'),(18411,1748122,'Family'),(18412,1748207,'Drama'),(18413,1748207,'Mystery'),(18414,1748207,'Sci-Fi'),(18415,1748260,'Drama'),(18416,17527468,'Comedy'),(18417,1753383,'Adventure'),(18418,1753383,'Comedy'),(18419,1753383,'Drama'),(18420,1753722,'Action'),(18421,1753722,'Thriller'),(18422,1753887,'Comedy'),(18423,1753887,'Drama'),(18424,1754351,'Biography'),(18425,1754351,'Comedy'),(18426,1754351,'Documentary'),(18427,1754656,'Adventure'),(18428,1754656,'Animation'),(18429,1754656,'Drama'),(18430,1756750,'Comedy'),(18431,1756750,'Drama'),(18432,1756750,'Romance'),(18433,1756832,'Drama'),(18434,1756832,'Horror'),(18435,1756832,'Thriller'),(18436,1757742,'Horror'),(18437,1757742,'Thriller'),(18438,1757746,'Drama'),(18439,1757746,'Sci-Fi'),(18440,1757944,'Comedy'),(18441,1757944,'Crime'),(18442,1757944,'Family'),(18443,1758563,'Documentary'),(18444,1758563,'Short'),(18445,1758575,'Comedy'),(18446,1758575,'Drama'),(18447,1758692,'Drama'),(18448,1758692,'Romance'),(18449,1758795,'Comedy'),(18450,1758795,'Romance'),(18451,1758830,'Comedy'),(18452,1758830,'Drama'),(18453,1758830,'Romance'),(18454,1759744,'Biography'),(18455,1759744,'Crime'),(18456,1759744,'Drama'),(18457,1760967,'Crime'),(18458,1760967,'Drama'),(18459,1760967,'Music'),(18460,1762248,'Comedy'),(18461,1762248,'Romance'),(18462,1762248,'Sci-Fi'),(18463,1764141,'Drama'),(18464,1764183,'Drama'),(18465,1764183,'Thriller'),(18466,1764234,'Crime'),(18467,1764234,'Drama'),(18468,1764234,'Thriller'),(18469,1764275,'Action'),(18470,1764275,'Drama'),(18471,1764625,'Adventure'),(18472,1764625,'Animation'),(18473,1764625,'Comedy'),(18474,1764645,'Drama'),(18475,1764645,'Mystery'),(18476,1764651,'Action'),(18477,1764651,'Adventure'),(18478,1764651,'Thriller'),(18479,1764657,'Documentary'),(18480,1764666,'Animation'),(18481,1764666,'Family'),(18482,1765847,'Adult'),(18483,1766094,'Action'),(18484,1766094,'Comedy'),(18485,1766094,'Crime'),(18486,1766175,'Crime'),(18487,1766175,'Drama'),(18488,1766175,'Mystery'),(18489,17663992,'Horror'),(18490,17663992,'Mystery'),(18491,17663992,'Thriller'),(18492,1767354,'Comedy'),(18493,1767354,'Fantasy'),(18494,1767354,'Horror'),(18495,1767372,'Comedy'),(18496,1767372,'Drama'),(18497,1767382,'Horror'),(18498,1767382,'Thriller'),(18499,1769363,'Comedy'),(18500,1769363,'Drama'),(18501,1769363,'Romance'),(18502,1770734,'Drama'),(18503,1770734,'Mystery'),(18504,1770734,'Thriller'),(18505,1772240,'Horror'),(18506,1772240,'Mystery'),(18507,1772240,'Sci-Fi'),(18508,1772250,'Drama'),(18509,1772250,'Horror'),(18510,1772250,'Mystery'),(18511,1772341,'Adventure'),(18512,1772341,'Animation'),(18513,1772341,'Comedy'),(18514,1772373,'Biography'),(18515,1772373,'Crime'),(18516,1772373,'Drama'),(18517,1772398,'Drama'),(18518,1772398,'Horror'),(18519,1772398,'Short'),(18520,1772424,'Comedy'),(18521,1772424,'Drama'),(18522,1772925,'Documentary'),(18523,1778258,'Crime'),(18524,1778258,'Mystery'),(18525,1778258,'Thriller'),(18526,1778304,'Horror'),(18527,1778304,'Mystery'),(18528,1778304,'Thriller'),(18529,1780798,'Horror'),(18530,1780798,'Thriller'),(18531,1780967,'Biography'),(18532,1780967,'Drama'),(18533,1780967,'Thriller'),(18534,1781058,'Comedy'),(18535,1781058,'Drama'),(18536,1781769,'Drama'),(18537,1781769,'Romance'),(18538,1781812,'Drama'),(18539,1781812,'Horror'),(18540,1781840,'Drama'),(18541,1783732,'Comedy'),(18542,1783732,'Fantasy'),(18543,1783732,'Horror'),(18544,1783798,'Drama'),(18545,1784575,'Comedy'),(18546,1784575,'Drama'),(18547,1784575,'History'),(18548,1785612,'Biography'),(18549,1785612,'Documentary'),(18550,1785612,'Music'),(18551,1786751,'Crime'),(18552,1786751,'Drama'),(18553,1786751,'Music'),(18554,1787127,'Drama'),(18555,1787729,'Comedy'),(18556,1787777,'Documentary'),(18557,1788391,'Action'),(18558,1788391,'Crime'),(18559,1788391,'Horror'),(18560,1788453,'Action'),(18561,1788453,'Comedy'),(18562,1788453,'Fantasy'),(18563,1790809,'Action'),(18564,1790809,'Adventure'),(18565,1790809,'Fantasy'),(18566,1790864,'Action'),(18567,1790864,'Mystery'),(18568,1790864,'Sci-Fi'),(18569,1790885,'Drama'),(18570,1790885,'History'),(18571,1790885,'Thriller'),(18572,1790886,'Comedy'),(18573,1791528,'Comedy'),(18574,1791528,'Crime'),(18575,1791528,'Drama'),(18576,1791614,'Comedy'),(18577,1791614,'Drama'),(18578,1791681,'Horror'),(18579,1791681,'Mystery'),(18580,1791681,'Thriller'),(18581,1791682,'Comedy'),(18582,1791682,'Drama'),(18583,1793931,'Comedy'),(18584,1798188,'Animation'),(18585,1798188,'Comedy'),(18586,1798188,'Drama'),(18587,1798684,'Action'),(18588,1798684,'Drama'),(18589,1798684,'Sport'),(18590,1798709,'Drama'),(18591,1798709,'Romance'),(18592,1798709,'Sci-Fi'),(18593,1800241,'Crime'),(18594,1800241,'Drama'),(18595,1800246,'Comedy'),(18596,1800246,'Romance'),(18597,1800741,'Drama'),(18598,1800741,'Music'),(18599,1800741,'Romance'),(18600,1801123,'Drama'),(18601,1801123,'Mystery'),(18602,1801123,'Sci-Fi'),(18603,1802750,'Short'),(18604,1805297,'Comedy'),(18605,1809231,'Action'),(18606,1809231,'Comedy'),(18607,1809231,'Crime'),(18608,1809398,'Action'),(18609,1809398,'Biography'),(18610,1809398,'Drama'),(18611,1813314,'Drama'),(18612,1813609,'Horror'),(18613,1813609,'Thriller'),(18614,1813757,'Action'),(18615,1813757,'Crime'),(18616,1813757,'Mystery'),(18617,1814621,'Comedy'),(18618,1814621,'Drama'),(18619,1814621,'Romance'),(18620,1815836,'Comedy'),(18621,1815836,'Drama'),(18622,1815862,'Action'),(18623,1815862,'Adventure'),(18624,1815862,'Sci-Fi'),(18625,1816518,'Adventure'),(18626,1816518,'Animation'),(18627,1816518,'Comedy'),(18628,1816608,'Mystery'),(18629,1816608,'Thriller'),(18630,1817081,'Comedy'),(18631,1817081,'Romance'),(18632,1817232,'Adventure'),(18633,1817232,'Animation'),(18634,1817232,'Comedy'),(18635,1817273,'Crime'),(18636,1817273,'Drama'),(18637,1817273,'Thriller'),(18638,1817287,'Animation'),(18639,1817287,'Biography'),(18640,1817287,'Documentary'),(18641,1817676,'Comedy'),(18642,1817676,'Drama'),(18643,1821426,'Comedy'),(18644,1821426,'Drama'),(18645,1821480,'Mystery'),(18646,1821480,'Thriller'),(18647,1821549,'Drama'),(18648,1821593,'Crime'),(18649,1821593,'Drama'),(18650,1821641,'Animation'),(18651,1821641,'Drama'),(18652,1821641,'Sci-Fi'),(18653,1821658,'Adventure'),(18654,1821658,'Animation'),(18655,1821658,'Comedy'),(18656,1821694,'Action'),(18657,1821694,'Comedy'),(18658,1821694,'Crime'),(18659,1822302,'Comedy'),(18660,1822302,'Drama'),(18661,1822304,'Drama'),(18662,1823125,'Drama'),(18663,1823664,'Comedy'),(18664,1823664,'Drama'),(18665,1823664,'Family'),(18666,1823672,'Action'),(18667,1823672,'Crime'),(18668,1823672,'Drama'),(18669,18250460,'Action'),(18670,18250460,'Adventure'),(18671,18250460,'Animation'),(18672,1825157,'Comedy'),(18673,1825157,'Drama'),(18674,1825157,'Mystery'),(18675,1825683,'Action'),(18676,1825683,'Adventure'),(18677,1825683,'Sci-Fi'),(18678,18257464,'Action'),(18679,18257464,'Comedy'),(18680,1825918,'Action'),(18681,1825918,'Adventure'),(18682,1825918,'Animation'),(18683,1826590,'Comedy'),(18684,1826590,'Romance'),(18685,1827358,'Drama'),(18686,1827358,'Sport'),(18687,1827487,'Crime'),(18688,1827487,'Drama'),(18689,1827487,'Thriller'),(18690,1828224,'Adventure'),(18691,1828224,'Animation'),(18692,1828224,'Family'),(18693,1829012,'Adventure'),(18694,1829012,'Drama'),(18695,1829012,'Mystery'),(18696,1832382,'Drama'),(18697,1832405,'Comedy'),(18698,1833781,'Drama'),(18699,1833844,'Drama'),(18700,1833844,'Horror'),(18701,1833844,'Thriller'),(18702,1836202,'Drama'),(18703,1836212,'Action'),(18704,1836212,'Horror'),(18705,1836212,'Sci-Fi'),(18706,1836987,'Drama'),(18707,1837562,'Comedy'),(18708,1837562,'Drama'),(18709,1837562,'Romance'),(18710,1837703,'Biography'),(18711,1837703,'Crime'),(18712,1837703,'Drama'),(18713,1837709,'Drama'),(18714,1837709,'Fantasy'),(18715,1837709,'Mystery'),(18716,1838520,'Drama'),(18717,1838520,'Thriller'),(18718,1838544,'Action'),(18719,1838544,'Adventure'),(18720,1838544,'Mystery'),(18721,1838571,'Action'),(18722,1838571,'Comedy'),(18723,1838571,'Horror'),(18724,1839492,'Comedy'),(18725,1839492,'Drama'),(18726,1839492,'Fantasy'),(18727,1839654,'Comedy'),(18728,1839654,'Drama'),(18729,1840309,'Action'),(18730,1840309,'Adventure'),(18731,1840309,'Mystery'),(18732,1840417,'Drama'),(18733,1840417,'Mystery'),(18734,1840417,'Romance'),(18735,1842356,'Horror'),(18736,1842356,'Thriller'),(18737,1843678,'Crime'),(18738,1843678,'Drama'),(18739,1843678,'Mystery'),(18740,1843866,'Action'),(18741,1843866,'Adventure'),(18742,1843866,'Sci-Fi'),(18743,1844025,'Horror'),(18744,1845849,'Comedy'),(18745,1845849,'Drama'),(18746,1845866,'Comedy'),(18747,1845866,'Drama'),(18748,1845866,'Fantasy'),(18749,1846442,'Comedy'),(18750,1846442,'Family'),(18751,1846442,'Fantasy'),(18752,1847731,'Drama'),(18753,1847746,'Drama'),(18754,1847746,'History'),(18755,1847746,'Thriller'),(18756,1848902,'Biography'),(18757,1848902,'Drama'),(18758,1848902,'History'),(18759,1850457,'Comedy'),(18760,1853643,'Comedy'),(18761,1853643,'Drama'),(18762,1853728,'Drama'),(18763,1853728,'Western'),(18764,1853739,'Drama'),(18765,1853739,'Horror'),(18766,1853739,'Thriller'),(18767,1854236,'Comedy'),(18768,1854236,'Drama'),(18769,1854236,'Romance'),(18770,1854506,'Horror'),(18771,1854506,'Sci-Fi'),(18772,1854513,'Drama'),(18773,1854513,'Fantasy'),(18774,1854564,'Adventure'),(18775,1854564,'Family'),(18776,1854564,'Fantasy'),(18777,1855199,'Crime'),(18778,1855199,'Drama'),(18779,1855199,'Thriller'),(18780,1855325,'Action'),(18781,1855325,'Horror'),(18782,1855325,'Sci-Fi'),(18783,1855401,'Comedy'),(18784,1856010,'Drama'),(18785,1856101,'Action'),(18786,1856101,'Drama'),(18787,1856101,'Mystery'),(18788,1857718,'Animation'),(18789,1857718,'Horror'),(18790,1857913,'Action'),(18791,1857913,'Fantasy'),(18792,1857913,'Romance'),(18793,1858481,'Action'),(18794,1858481,'Mystery'),(18795,1858481,'Thriller'),(18796,1859446,'Drama'),(18797,1859522,'Drama'),(18798,1859650,'Comedy'),(18799,1859650,'Music'),(18800,1859650,'Romance'),(18801,1860152,'Drama'),(18802,1860213,'Comedy'),(18803,1860242,'Biography'),(18804,1860242,'Crime'),(18805,1860242,'Drama'),(18806,1860353,'Adventure'),(18807,1860353,'Animation'),(18808,1860353,'Comedy'),(18809,1860357,'Action'),(18810,1860357,'Drama'),(18811,1860357,'History'),(18812,1862079,'Adventure'),(18813,1862079,'Comedy'),(18814,1862079,'Drama'),(18815,1862457,'Comedy'),(18816,1862457,'Drama'),(18817,1862457,'Romance'),(18818,1864750,'Adventure'),(18819,1864750,'Drama'),(18820,1864750,'History'),(18821,1865368,'Comedy'),(18822,1865368,'Drama'),(18823,1865368,'Family'),(18824,1865505,'Adventure'),(18825,1865505,'Animation'),(18826,1865505,'Drama'),(18827,1866249,'Biography'),(18828,1866249,'Comedy'),(18829,1866249,'Drama'),(18830,1869416,'Crime'),(18831,1869416,'Drama'),(18832,1869416,'Romance'),(18833,1869653,'Comedy'),(18834,1869653,'Sci-Fi'),(18835,1869716,'Crime'),(18836,1869716,'Drama'),(18837,1869716,'Thriller'),(18838,1870529,'Drama'),(18839,1870548,'Documentary'),(18840,1872181,'Action'),(18841,1872181,'Adventure'),(18842,1872181,'Sci-Fi'),(18843,1872194,'Crime'),(18844,1872194,'Drama'),(18845,1872328,'Animation'),(18846,1872328,'Comedy'),(18847,1872328,'Drama'),(18848,1872818,'Comedy'),(18849,1872818,'Drama'),(18850,1872818,'Romance'),(18851,1874789,'Comedy'),(18852,1876451,'Drama'),(18853,1876451,'Music'),(18854,1877830,'Action'),(18855,1877830,'Crime'),(18856,1877830,'Drama'),(18857,1877832,'Action'),(18858,1877832,'Adventure'),(18859,1877832,'Sci-Fi'),(18860,1878841,'Horror'),(18861,1878841,'Thriller'),(18862,1878870,'Comedy'),(18863,1878870,'Drama'),(18864,1878942,'Comedy'),(18865,1878942,'Drama'),(18866,1878942,'Romance'),(18867,1879012,'Action'),(18868,1879012,'Comedy'),(18869,1879012,'Horror'),(18870,1883180,'Comedy'),(18871,1883180,'Drama'),(18872,1883180,'Fantasy'),(18873,1885300,'Comedy'),(18874,1885300,'Drama'),(18875,1885331,'Comedy'),(18876,1885331,'Romance'),(18877,1886493,'Action'),(18878,1886493,'Thriller'),(18879,1890373,'Drama'),(18880,1891942,'Comedy'),(18881,1891942,'Drama'),(18882,1891974,'Comedy'),(18883,1891974,'Crime'),(18884,1891974,'Drama'),(18885,18925334,'Drama'),(18886,18925334,'Horror'),(18887,18925334,'Thriller'),(18888,1894476,'Action'),(18889,1894476,'Adventure'),(18890,1894476,'Drama'),(18891,1895587,'Biography'),(18892,1895587,'Crime'),(18893,1895587,'Drama'),(18894,1897941,'Comedy'),(18895,1899353,'Action'),(18896,1899353,'Crime'),(18897,1899353,'Thriller'),(18898,1900854,'Drama'),(18899,1900854,'Romance'),(18900,1900854,'Thriller'),(18901,1900856,'Crime'),(18902,1900856,'Drama'),(18903,1900856,'Thriller'),(18904,1900893,'Crime'),(18905,1900893,'Drama'),(18906,1900908,'Drama'),(18907,1904996,'Action'),(18908,1904996,'Crime'),(18909,1904996,'Thriller'),(18910,1905040,'Horror'),(18911,1905040,'Mystery'),(18912,1905040,'Thriller'),(18913,1905041,'Action'),(18914,1905041,'Adventure'),(18915,1905041,'Crime'),(18916,1906426,'Drama'),(18917,1906426,'Thriller'),(18918,1907668,'Drama'),(18919,1907668,'Thriller'),(18920,1909270,'Adventure'),(18921,1909270,'History'),(18922,1909796,'Adventure'),(18923,1909796,'Animation'),(18924,1909796,'Comedy'),(18925,1910498,'Sci-Fi'),(18926,1911644,'Drama'),(18927,1911644,'Thriller'),(18928,1911658,'Action'),(18929,1911658,'Adventure'),(18930,1911658,'Animation'),(18931,1913178,'Adventure'),(18932,1913178,'Fantasy'),(18933,1915581,'Comedy'),(18934,1915581,'Drama'),(18935,1918806,'Drama'),(18936,1918806,'Horror'),(18937,1918806,'Thriller'),(18938,1920849,'Comedy'),(18939,1920849,'Romance'),(18940,1920885,'Adventure'),(18941,1920885,'Animation'),(18942,1920885,'Drama'),(18943,1920945,'Biography'),(18944,1920945,'Drama'),(18945,1920945,'Music'),(18946,1921064,'Action'),(18947,1921064,'Adventure'),(18948,1921064,'Drama'),(18949,1921149,'Adventure'),(18950,1921149,'Crime'),(18951,1921149,'Drama'),(18952,1922679,'Action'),(18953,1922679,'Drama'),(18954,1922679,'Thriller'),(18955,1922777,'Horror'),(18956,1922777,'Mystery'),(18957,1922777,'Thriller'),(18958,1924394,'Comedy'),(18959,1924394,'Crime'),(18960,1924394,'Drama'),(18961,1924396,'Crime'),(18962,1924396,'Drama'),(18963,1924396,'Mystery'),(18964,1924429,'Crime'),(18965,1924429,'Drama'),(18966,1924429,'Mystery'),(18967,1924435,'Action'),(18968,1924435,'Comedy'),(18969,1924435,'Crime'),(18970,1925435,'Horror'),(18971,1925435,'Sci-Fi'),(18972,1926992,'Drama'),(18973,1928335,'Action'),(18974,1928335,'Crime'),(18975,1928335,'Thriller'),(18976,1928337,'Horror'),(18977,1928337,'Mystery'),(18978,1928337,'Thriller'),(18979,1929263,'Biography'),(18980,1929263,'Drama'),(18981,1929263,'Family'),(18982,1930294,'Horror'),(18983,1930294,'Thriller'),(18984,1930315,'Drama'),(18985,1930371,'Comedy'),(18986,1930371,'Crime'),(18987,1930371,'Drama'),(18988,1931435,'Comedy'),(18989,1931435,'Drama'),(18990,1931435,'Romance'),(18991,1931533,'Comedy'),(18992,1931533,'Crime'),(18993,1931602,'Drama'),(18994,1931602,'Romance'),(18995,1932718,'Comedy'),(18996,1932718,'Drama'),(18997,1932718,'Romance'),(18998,1932767,'Drama'),(18999,1935179,'Adventure'),(19000,1935179,'Drama'),(19001,1935859,'Adventure'),(19002,1935859,'Drama'),(19003,1935859,'Family'),(19004,1935897,'Horror'),(19005,1935897,'Thriller'),(19006,1935902,'Comedy'),(19007,1935902,'Fantasy'),(19008,1935902,'Thriller'),(19009,1937118,'Comedy'),(19010,1937118,'Drama'),(19011,1937118,'Romance'),(19012,1937149,'Crime'),(19013,1937149,'Drama'),(19014,1937149,'Mystery'),(19015,1937264,'Drama'),(19016,1937264,'Romance'),(19017,1937390,'Drama'),(19018,1939659,'Drama'),(19019,1939659,'Horror'),(19020,1939659,'Thriller'),(19021,1941600,'Horror'),(19022,1941600,'Mystery'),(19023,1941600,'Thriller'),(19024,1942120,'Drama'),(19025,1942798,'Action'),(19026,1942798,'Adventure'),(19027,1942798,'Sci-Fi'),(19028,1942989,'Drama'),(19029,1945062,'Drama'),(19030,1946421,'Biography'),(19031,1946421,'Documentary'),(19032,1946421,'Sci-Fi'),(19033,1948150,'Action'),(19034,1948150,'Crime'),(19035,1948150,'Drama'),(19036,19500164,'Action'),(19037,19500164,'Adventure'),(19038,19500164,'Animation'),(19039,1950135,'Comedy'),(19040,1950186,'Action'),(19041,1950186,'Biography'),(19042,1950186,'Drama'),(19043,1950235,'Comedy'),(19044,1950235,'Romance'),(19045,1951181,'Drama'),(19046,1951181,'Romance'),(19047,1951216,'Biography'),(19048,1951216,'Comedy'),(19049,1951216,'Drama'),(19050,1951261,'Comedy'),(19051,1951261,'Crime'),(19052,1951264,'Action'),(19053,1951264,'Adventure'),(19054,1951264,'Sci-Fi'),(19055,1951265,'Action'),(19056,1951265,'Adventure'),(19057,1951265,'Sci-Fi'),(19058,1951266,'Action'),(19059,1951266,'Adventure'),(19060,1951266,'Sci-Fi'),(19061,1954701,'Comedy'),(19062,1954701,'Drama'),(19063,1954780,'Adventure'),(19064,1954780,'Comedy'),(19065,1954780,'Horror'),(19066,1958043,'Horror'),(19067,1958043,'Thriller'),(19068,1959332,'Drama'),(19069,1959332,'Horror'),(19070,1959438,'Drama'),(19071,1959438,'Horror'),(19072,1959438,'Romance'),(19073,1959490,'Action'),(19074,1959490,'Adventure'),(19075,1959490,'Drama'),(19076,1959563,'Action'),(19077,1959563,'Comedy'),(19078,1959563,'Crime'),(19079,1961175,'Action'),(19080,1961175,'Thriller'),(19081,1961281,'Comedy'),(19082,1961281,'Drama'),(19083,1961281,'Short'),(19084,19623240,'Horror'),(19085,1964418,'Action'),(19086,1964418,'Adventure'),(19087,1964418,'Family'),(19088,1964624,'Drama'),(19089,1964624,'Mystery'),(19090,1964624,'Thriller'),(19091,1965065,'Comedy'),(19092,1965065,'Romance'),(19093,1966566,'Action'),(19094,1966566,'Drama'),(19095,1966566,'War'),(19096,1969062,'Comedy'),(19097,1969062,'Drama'),(19098,1969062,'Romance'),(19099,1971325,'Action'),(19100,1971325,'Drama'),(19101,1971325,'Sci-Fi'),(19102,1971352,'Crime'),(19103,1971352,'Drama'),(19104,1971352,'History'),(19105,1972571,'Crime'),(19106,1972571,'Drama'),(19107,1972571,'Thriller'),(19108,1972591,'Action'),(19109,1972591,'Adventure'),(19110,1972591,'Drama'),(19111,1974419,'Horror'),(19112,1974419,'Thriller'),(19113,1976000,'Crime'),(19114,1976000,'Mystery'),(19115,1976000,'Romance'),(19116,1976009,'Drama'),(19117,1976009,'Horror'),(19118,1976009,'Sci-Fi'),(19119,1976633,'Drama'),(19120,1976633,'Horror'),(19121,1976633,'Short'),(19122,1977739,'Drama'),(19123,1977739,'Thriller'),(19124,1978480,'Drama'),(19125,1978532,'Comedy'),(19126,1979319,'Action'),(19127,1979319,'Adventure'),(19128,1979319,'Drama'),(19129,1979320,'Action'),(19130,1979320,'Biography'),(19131,1979320,'Drama'),(19132,1979376,'Adventure'),(19133,1979376,'Animation'),(19134,1979376,'Comedy'),(19135,1979388,'Adventure'),(19136,1979388,'Animation'),(19137,1979388,'Comedy'),(19138,1980209,'Action'),(19139,1980209,'Comedy'),(19140,1980209,'Crime'),(19141,1980929,'Comedy'),(19142,1980929,'Drama'),(19143,1980929,'Music'),(19144,1981107,'Adventure'),(19145,1981107,'Comedy'),(19146,1981107,'Drama'),(19147,1981115,'Action'),(19148,1981115,'Adventure'),(19149,1981115,'Fantasy'),(19150,1981128,'Action'),(19151,1981128,'Sci-Fi'),(19152,1981128,'Thriller'),(19153,1981677,'Comedy'),(19154,1981677,'Music'),(19155,1981677,'Romance'),(19156,1982177,'Adventure'),(19157,1982177,'Drama'),(19158,1984153,'Comedy'),(19159,1984153,'Drama'),(19160,1984153,'Horror'),(19161,1985019,'Comedy'),(19162,1985019,'Romance'),(19163,1985949,'Action'),(19164,1985949,'Adventure'),(19165,1985949,'Animation'),(19166,1985966,'Adventure'),(19167,1985966,'Animation'),(19168,1985966,'Comedy'),(19169,1986806,'Action'),(19170,1986806,'Adventure'),(19171,1986806,'Animation'),(19172,1987018,'Comedy'),(19173,1987018,'Drama'),(19174,1990314,'Comedy'),(19175,1990314,'Crime'),(19176,1990314,'Drama'),(19177,1991245,'Horror'),(19178,1991245,'Mystery'),(19179,1991245,'Thriller'),(19180,1995242,'Comedy'),(19181,1995242,'Drama'),(19182,1995304,'Comedy'),(19183,1995304,'Drama'),(19184,1995341,'Comedy'),(19185,1995341,'Drama'),(19186,1995390,'Action'),(19187,1995390,'Crime'),(19188,1995390,'Drama'),(19189,1996211,'Documentary'),(19190,1996211,'Sport'),(19191,1996264,'Comedy'),(19192,1996310,'Drama'),(19193,1996310,'Romance'),(19194,1996310,'War'),(19195,1999995,'Horror'),(19196,1999995,'Thriller'),(19197,2002718,'Action'),(19198,2002718,'Comedy'),(19199,2002718,'Crime'),(19200,2004420,'Comedy'),(19201,2005151,'Biography'),(19202,2005151,'Comedy'),(19203,2005151,'Crime'),(19204,2005156,'Comedy'),(19205,2005156,'Drama'),(19206,2005156,'Music'),(19207,2005374,'Biography'),(19208,2005374,'Crime'),(19209,2005374,'Drama'),(19210,2006295,'Biography'),(19211,2006295,'Drama'),(19212,2006295,'History'),(19213,2006810,'Comedy'),(19214,2006810,'Drama'),(19215,2007360,'Comedy'),(19216,2007418,'Documentary'),(19217,2008006,'Drama'),(19218,2008009,'Drama'),(19219,2008562,'Comedy'),(19220,2008602,'Thriller'),(19221,2008633,'Comedy'),(19222,2008633,'Drama'),(19223,2008633,'Family'),(19224,2009643,'Comedy'),(19225,2009643,'Drama'),(19226,2011159,'Crime'),(19227,2011159,'Drama'),(19228,2011159,'Horror'),(19229,2011971,'Comedy'),(19230,2011971,'Drama'),(19231,2013293,'Animation'),(19232,2013293,'Biography'),(19233,2013293,'Drama'),(19234,2015381,'Action'),(19235,2015381,'Adventure'),(19236,2015381,'Comedy'),(19237,2016940,'Action'),(19238,2016940,'Drama'),(19239,2017020,'Adventure'),(19240,2017020,'Animation'),(19241,2017020,'Comedy'),(19242,2017038,'Action'),(19243,2017038,'Adventure'),(19244,2017038,'Drama'),(19245,2017561,'Action'),(19246,2017561,'Adventure'),(19247,2017561,'Comedy'),(19248,2018086,'Biography'),(19249,2018086,'Drama'),(19250,20227026,'Comedy'),(19251,2023453,'Comedy'),(19252,2023453,'Family'),(19253,2023587,'Fantasy'),(19254,2023587,'Horror'),(19255,2023587,'Thriller'),(19256,2023690,'Adventure'),(19257,2023690,'Comedy'),(19258,2023690,'Crime'),(19259,2024432,'Comedy'),(19260,2024432,'Crime'),(19261,2024432,'Drama'),(19262,2024469,'Action'),(19263,2024469,'Mystery'),(19264,2024469,'Thriller'),(19265,2024519,'Drama'),(19266,2024519,'Music'),(19267,2024519,'Romance'),(19268,2024544,'Biography'),(19269,2024544,'Drama'),(19270,2024544,'History'),(19271,2025667,'Horror'),(19272,2025667,'Mystery'),(19273,2025667,'Thriller'),(19274,2025690,'Action'),(19275,2025690,'Drama'),(19276,2025690,'History'),(19277,2027140,'Comedy'),(19278,2027140,'Drama'),(19279,2027140,'Fantasy'),(19280,2027231,'Crime'),(19281,2027231,'Drama'),(19282,2027231,'Thriller'),(19283,2034031,'Comedy'),(19284,2034031,'Drama'),(19285,2034031,'Romance'),(19286,2034139,'Horror'),(19287,2034139,'Thriller'),(19288,2034761,'Adventure'),(19289,2034761,'Family'),(19290,2034761,'Fantasy'),(19291,2034800,'Action'),(19292,2034800,'Adventure'),(19293,2034800,'Fantasy'),(19294,2035630,'Drama'),(19295,2040560,'Horror'),(19296,2040560,'Mystery'),(19297,2040560,'Thriller'),(19298,2042432,'Crime'),(19299,2042432,'Drama'),(19300,2042432,'History'),(19301,2042568,'Drama'),(19302,2042568,'Music'),(19303,2042583,'Drama'),(19304,2043879,'Drama'),(19305,2043900,'Documentary'),(19306,2046090,'Drama'),(19307,2046090,'Sci-Fi'),(19308,2046090,'Thriller'),(19309,2049430,'Action'),(19310,2049430,'Adventure'),(19311,2049430,'Animation'),(19312,2049440,'Short'),(19313,2049543,'Drama'),(19314,2049543,'Mystery'),(19315,2049543,'Romance'),(19316,2051879,'Adventure'),(19317,2051879,'Drama'),(19318,2051879,'Mystery'),(19319,2053463,'Crime'),(19320,2053463,'Drama'),(19321,2053463,'Mystery'),(19322,2054790,'Drama'),(19323,2054790,'History'),(19324,2057392,'Action'),(19325,2057392,'Drama'),(19326,2057392,'Thriller'),(19327,2058107,'Biography'),(19328,2058107,'Drama'),(19329,2058107,'Romance'),(19330,2058673,'Action'),(19331,2058673,'Adventure'),(19332,2058673,'Crime'),(19333,2059255,'Drama'),(19334,2059255,'History'),(19335,2061702,'Animation'),(19336,2061702,'Drama'),(19337,2061702,'Fantasy'),(19338,2061712,'Action'),(19339,2061712,'Crime'),(19340,2061712,'Drama'),(19341,2062969,'Crime'),(19342,2062969,'Drama'),(19343,2063781,'Drama'),(19344,2066051,'Biography'),(19345,2066051,'Drama'),(19346,2066051,'Music'),(19347,2066133,'Comedy'),(19348,2066133,'Drama'),(19349,2066133,'Romance'),(19350,2066832,'Animation'),(19351,2066832,'Family'),(19352,2066832,'Fantasy'),(19353,2069797,'Horror'),(19354,2069797,'Thriller'),(19355,2070649,'Drama'),(19356,2070776,'Comedy'),(19357,2070776,'Romance'),(19358,2070776,'Sport'),(19359,2075247,'Documentary'),(19360,2075247,'Short'),(19361,2076220,'Drama'),(19362,2076220,'Fantasy'),(19363,2076298,'Action'),(19364,2076298,'Biography'),(19365,2076298,'Drama'),(19366,2076850,'Adventure'),(19367,2076850,'Drama'),(19368,2076850,'Thriller'),(19369,2077851,'Comedy'),(19370,2077851,'Drama'),(19371,2077851,'Romance'),(19372,2080374,'Biography'),(19373,2080374,'Drama'),(19374,2081178,'Comedy'),(19375,2081178,'Drama'),(19376,2081194,'Comedy'),(19377,2081194,'Horror'),(19378,2082197,'Comedy'),(19379,2082197,'Drama'),(19380,2082197,'Romance'),(19381,2083355,'Comedy'),(19382,2083355,'Drama'),(19383,2084093,'Drama'),(19384,2084970,'Biography'),(19385,2084970,'Drama'),(19386,2084970,'Thriller'),(19387,2084989,'Drama'),(19388,2084989,'Mystery'),(19389,2084989,'Sci-Fi'),(19390,2085957,'Drama'),(19391,2085957,'Thriller'),(19392,2088003,'Action'),(19393,2088003,'Adventure'),(19394,2088003,'Comedy'),(19395,2088714,'Documentary'),(19396,2091243,'Action'),(19397,2091243,'Adventure'),(19398,2091243,'Comedy'),(19399,2091256,'Action'),(19400,2091256,'Adventure'),(19401,2091256,'Animation'),(19402,2091935,'Action'),(19403,2091935,'Comedy'),(19404,2091935,'Romance'),(19405,2093109,'Documentary'),(19406,2093109,'News'),(19407,2093270,'Crime'),(19408,2093270,'Drama'),(19409,2093270,'Horror'),(19410,2093990,'Action'),(19411,2093990,'Adventure'),(19412,2093990,'Crime'),(19413,2093991,'Comedy'),(19414,2093991,'History'),(19415,2094064,'Comedy'),(19416,2094064,'Drama'),(19417,2094064,'Romance'),(19418,2094155,'Drama'),(19419,2094155,'Western'),(19420,2094762,'Comedy'),(19421,2094762,'Drama'),(19422,2094766,'Action'),(19423,2094766,'Adventure'),(19424,2094766,'Sci-Fi'),(19425,2094877,'Biography'),(19426,2094877,'Comedy'),(19427,2095649,'Biography'),(19428,2095649,'Drama'),(19429,2095649,'Romance'),(19430,2096672,'Comedy'),(19431,2096673,'Adventure'),(19432,2096673,'Animation'),(19433,2096673,'Comedy'),(19434,2097307,'Action'),(19435,2097307,'Adventure'),(19436,2097307,'Comedy'),(19437,2097331,'Comedy'),(19438,2097331,'Drama'),(19439,2097331,'Mystery'),(19440,2098627,'Adventure'),(19441,2098627,'Comedy'),(19442,2098627,'Romance'),(19443,2098628,'Biography'),(19444,2098628,'Drama'),(19445,2098628,'History'),(19446,2101341,'Action'),(19447,2101341,'Crime'),(19448,2101341,'Drama'),(19449,2101441,'Crime'),(19450,2101441,'Drama'),(19451,2101441,'Thriller'),(19452,2101473,'Adventure'),(19453,2101473,'Drama'),(19454,2101473,'History'),(19455,2103254,'Comedy'),(19456,2103254,'Romance'),(19457,2103267,'Drama'),(19458,2103267,'Romance'),(19459,2103281,'Action'),(19460,2103281,'Adventure'),(19461,2103281,'Drama'),(19462,2105044,'Horror'),(19463,2105044,'Mystery'),(19464,2105044,'Thriller'),(19465,2106361,'Action'),(19466,2106361,'Adventure'),(19467,2106361,'Drama'),(19468,2106403,'Crime'),(19469,2106403,'Drama'),(19470,2106403,'Mystery'),(19471,2106476,'Drama'),(19472,2106529,'Comedy'),(19473,2106529,'Romance'),(19474,2106550,'Drama'),(19475,2106550,'Thriller'),(19476,2106739,'Comedy'),(19477,2106739,'Drama'),(19478,2106739,'Romance'),(19479,2107648,'Horror'),(19480,2107648,'Thriller'),(19481,2107835,'Comedy'),(19482,2107835,'Drama'),(19483,2107835,'Romance'),(19484,2108546,'Comedy'),(19485,2108546,'Drama'),(19486,2109127,'Horror'),(19487,2109184,'Horror'),(19488,2109184,'Mystery'),(19489,2109248,'Action'),(19490,2109248,'Adventure'),(19491,2109248,'Sci-Fi'),(19492,2112096,'Comedy'),(19493,2112096,'Crime'),(19494,2112131,'Action'),(19495,2112131,'Comedy'),(19496,2112131,'Crime'),(19497,2113681,'Adventure'),(19498,2113681,'Comedy'),(19499,2115295,'Drama'),(19500,2116853,'Documentary'),(19501,2116853,'Short'),(19502,2116898,'Short'),(19503,2116968,'Short'),(19504,2118624,'Comedy'),(19505,2118624,'Fantasy'),(19506,2118624,'Horror'),(19507,2119383,'Comedy'),(19508,2119383,'Drama'),(19509,2119532,'Biography'),(19510,2119532,'Drama'),(19511,2119532,'History'),(19512,2119543,'Comedy'),(19513,2119543,'Family'),(19514,2119543,'Fantasy'),(19515,2120120,'Action'),(19516,2120120,'Comedy'),(19517,2120120,'Fantasy'),(19518,2123146,'Adventure'),(19519,2123146,'Comedy'),(19520,2123146,'Sci-Fi'),(19521,2125435,'Adventure'),(19522,2125435,'Drama'),(19523,2125435,'Fantasy'),(19524,2126355,'Action'),(19525,2126355,'Adventure'),(19526,2126355,'Thriller'),(19527,2126357,'Comedy'),(19528,2126357,'Drama'),(19529,2126357,'Romance'),(19530,21307994,'Horror'),(19531,2131532,'Horror'),(19532,2131532,'Sci-Fi'),(19533,2131532,'Thriller'),(19534,2132285,'Biography'),(19535,2132285,'Crime'),(19536,2132285,'Drama'),(19537,2132415,'Drama'),(19538,2132415,'Romance'),(19539,2139843,'Drama'),(19540,2139881,'Comedy'),(19541,2139881,'Romance'),(19542,2140037,'Action'),(19543,2140037,'Drama'),(19544,2140037,'Western'),(19545,2140203,'Animation'),(19546,2140203,'Drama'),(19547,2140203,'Family'),(19548,2140371,'Documentary'),(19549,2140371,'Drama'),(19550,2140371,'Short'),(19551,2140373,'Biography'),(19552,2140373,'Comedy'),(19553,2140373,'Drama'),(19554,2140379,'Action'),(19555,2140379,'Mystery'),(19556,2140379,'Sci-Fi'),(19557,2140479,'Action'),(19558,2140479,'Thriller'),(19559,2140577,'Comedy'),(19560,2140577,'Drama'),(19561,2140619,'Comedy'),(19562,2140619,'Romance'),(19563,2141751,'Drama'),(19564,2141751,'Music'),(19565,2141751,'Romance'),(19566,2142801,'Comedy'),(19567,2142801,'Drama'),(19568,2142955,'Drama'),(19569,2142955,'History'),(19570,2142955,'Romance'),(19571,2145829,'Action'),(19572,2145829,'Adventure'),(19573,2145829,'Sci-Fi'),(19574,2147319,'Crime'),(19575,2147319,'Drama'),(19576,2147319,'Horror'),(19577,2147550,'Drama'),(19578,2147728,'Drama'),(19579,2147728,'Music'),(19580,2150139,'Adventure'),(19581,2150139,'Drama'),(19582,2150139,'Family'),(19583,2150332,'Biography'),(19584,2150332,'Drama'),(19585,2150332,'History'),(19586,2151543,'Action'),(19587,2151543,'Adventure'),(19588,2151543,'Comedy'),(19589,2153963,'Drama'),(19590,2153963,'Romance'),(19591,2161519,'Documentary'),(19592,2161519,'Short'),(19593,2161521,'Documentary'),(19594,2161521,'Short'),(19595,2165859,'Horror'),(19596,2165859,'Mystery'),(19597,2165859,'Thriller'),(19598,2166616,'Comedy'),(19599,2166616,'Crime'),(19600,2167266,'Adventure'),(19601,2167266,'Biography'),(19602,2167266,'Drama'),(19603,2168910,'Comedy'),(19604,2168910,'Drama'),(19605,2168910,'Romance'),(19606,2169322,'Comedy'),(19607,2169322,'Romance'),(19608,2170299,'Comedy'),(19609,2170299,'Drama'),(19610,2170439,'Comedy'),(19611,2170439,'Crime'),(19612,2170593,'Comedy'),(19613,2170593,'Drama'),(19614,2172584,'Comedy'),(19615,2172584,'Drama'),(19616,2172934,'Action'),(19617,2172934,'Comedy'),(19618,2172934,'Drama'),(19619,2175927,'Action'),(19620,2175927,'Adventure'),(19621,2175927,'Sci-Fi'),(19622,2177683,'Drama'),(19623,2177771,'Comedy'),(19624,2177771,'Drama'),(19625,2177771,'History'),(19626,2178470,'Comedy'),(19627,2178470,'Drama'),(19628,2178470,'Musical'),(19629,2178941,'Drama'),(19630,2179116,'Adventure'),(19631,2179116,'Comedy'),(19632,2179116,'Drama'),(19633,2179121,'Comedy'),(19634,2179121,'Drama'),(19635,2179136,'Action'),(19636,2179136,'Biography'),(19637,2179136,'Drama'),(19638,2180411,'Adventure'),(19639,2180411,'Comedy'),(19640,2180411,'Drama'),(19641,2181931,'Comedy'),(19642,2181931,'Drama'),(19643,2181931,'Family'),(19644,2183034,'Adventure'),(19645,2183034,'Family'),(19646,2183034,'Sci-Fi'),(19647,2184339,'Horror'),(19648,2184339,'Sci-Fi'),(19649,2184339,'Thriller'),(19650,21848598,'Drama'),(19651,2185503,'Drama'),(19652,2187115,'Drama'),(19653,2188560,'Mystery'),(19654,2189240,'Thriller'),(19655,2190367,'Drama'),(19656,2190367,'Thriller'),(19657,2190475,'Drama'),(19658,2190475,'Mystery'),(19659,2191671,'Crime'),(19660,2191671,'Drama'),(19661,2191671,'Mystery'),(19662,2191701,'Comedy'),(19663,2193185,'Action'),(19664,2193185,'Sci-Fi'),(19665,2193185,'Thriller'),(19666,2193215,'Crime'),(19667,2193215,'Drama'),(19668,2193215,'Thriller'),(19669,2193418,'Action'),(19670,2193418,'Horror'),(19671,2194499,'Comedy'),(19672,2194499,'Drama'),(19673,2194499,'Fantasy'),(19674,2195548,'Comedy'),(19675,2195548,'Drama'),(19676,2199436,'Drama'),(19677,21994906,'Comedy'),(19678,21994906,'Romance'),(19679,2199543,'Drama'),(19680,2199543,'Romance'),(19681,2199571,'Action'),(19682,2199571,'Crime'),(19683,2199571,'Thriller'),(19684,2201221,'Comedy'),(19685,2201221,'Drama'),(19686,2201251,'Comedy'),(19687,2201251,'Sport'),(19688,2201548,'Drama'),(19689,2201548,'Romance'),(19690,2202750,'Comedy'),(19691,2202750,'Family'),(19692,2202928,'Drama'),(19693,2203939,'Comedy'),(19694,2203939,'Romance'),(19695,2204379,'Horror'),(19696,2204379,'Musical'),(19697,2205697,'Comedy'),(19698,2205697,'Drama'),(19699,2205697,'Romance'),(19700,2207050,'Comedy'),(19701,2207050,'Drama'),(19702,2208216,'Romance'),(19703,2208216,'Sci-Fi'),(19704,2208216,'Thriller'),(19705,2209418,'Drama'),(19706,2209418,'Romance'),(19707,2209764,'Action'),(19708,2209764,'Drama'),(19709,2209764,'Sci-Fi'),(19710,2210769,'Comedy'),(19711,2210769,'Fantasy'),(19712,2210769,'Romance'),(19713,2212008,'Action'),(19714,2212008,'Crime'),(19715,2212008,'Drama'),(19716,2215395,'Comedy'),(19717,2215395,'Crime'),(19718,2216240,'Drama'),(19719,2216240,'Thriller'),(19720,2217458,'Biography'),(19721,2217458,'Drama'),(19722,2217458,'History'),(19723,2217859,'Drama'),(19724,2218003,'Crime'),(19725,2218003,'Drama'),(19726,2218003,'Mystery'),(19727,2220408,'Comedy'),(19728,2221420,'Documentary'),(19729,2221420,'Short'),(19730,2222042,'Action'),(19731,2222042,'Adventure'),(19732,2222042,'Comedy'),(19733,2222052,'Drama'),(19734,22227936,'Drama'),(19735,2223990,'Drama'),(19736,2223990,'Sport'),(19737,2224026,'Adventure'),(19738,2224026,'Animation'),(19739,2224026,'Comedy'),(19740,2224073,'Drama'),(19741,2224455,'Action'),(19742,2224455,'Animation'),(19743,2224455,'Sci-Fi'),(19744,2226417,'Horror'),(19745,2226417,'Mystery'),(19746,2226417,'Thriller'),(19747,2226519,'Drama'),(19748,2226519,'Thriller'),(19749,2226597,'Drama'),(19750,2226597,'Thriller'),(19751,2229499,'Comedy'),(19752,2229499,'Drama'),(19753,2229499,'Romance'),(19754,2230358,'Horror'),(19755,2230358,'Thriller'),(19756,2231461,'Action'),(19757,2231461,'Adventure'),(19758,2231461,'Sci-Fi'),(19759,2231489,'Action'),(19760,2231489,'Animation'),(19761,2231489,'Fantasy'),(19762,2234003,'Crime'),(19763,2234003,'Drama'),(19764,2234003,'Mystery'),(19765,2234155,'Comedy'),(19766,2234222,'Drama'),(19767,2234222,'Sci-Fi'),(19768,2234222,'Thriller'),(19769,2234261,'Comedy'),(19770,2234261,'Romance'),(19771,2235108,'Comedy'),(19772,2235108,'Drama'),(19773,2235108,'Romance'),(19774,2235902,'Comedy'),(19775,2235902,'Drama'),(19776,2238050,'Drama'),(19777,2238050,'Mystery'),(19778,2238050,'Thriller'),(19779,2239822,'Action'),(19780,2239822,'Adventure'),(19781,2239822,'Fantasy'),(19782,2241351,'Action'),(19783,2241351,'Crime'),(19784,2241351,'Drama'),(19785,2243389,'Comedy'),(19786,2243389,'Musical'),(19787,2243537,'Comedy'),(19788,2243537,'Fantasy'),(19789,2243537,'Horror'),(19790,2243621,'Adventure'),(19791,2243621,'Animation'),(19792,2243621,'Family'),(19793,2243973,'Crime'),(19794,2243973,'Drama'),(19795,2243973,'Horror'),(19796,2244901,'Comedy'),(19797,2244901,'Romance'),(19798,2245003,'Comedy'),(19799,2245003,'Drama'),(19800,2245003,'Romance'),(19801,2245084,'Action'),(19802,2245084,'Adventure'),(19803,2245084,'Animation'),(19804,2245195,'Comedy'),(19805,2245195,'Music'),(19806,2245195,'Sci-Fi'),(19807,2247432,'Crime'),(19808,2247432,'Drama'),(19809,2247432,'Thriller'),(19810,2247476,'Biography'),(19811,2247476,'Drama'),(19812,2247476,'Family'),(19813,2249628,'Drama'),(19814,2249628,'Music'),(19815,2249628,'Short'),(19816,2250234,'Action'),(19817,2250234,'Adventure'),(19818,2250234,'Fantasy'),(19819,2250912,'Action'),(19820,2250912,'Adventure'),(19821,2250912,'Sci-Fi'),(19822,2251281,'Drama'),(19823,2251281,'Horror'),(19824,2251281,'Thriller'),(19825,2254131,'Drama'),(19826,2254131,'Sci-Fi'),(19827,2254131,'Thriller'),(19828,2255372,'Comedy'),(19829,2258281,'Drama'),(19830,2258337,'Action'),(19831,2258337,'Comedy'),(19832,2258337,'Drama'),(19833,2258345,'Comedy'),(19834,2258345,'Romance'),(19835,2258858,'Comedy'),(19836,2258858,'Drama'),(19837,2261287,'Adventure'),(19838,2261287,'Animation'),(19839,2261287,'Comedy'),(19840,2261331,'Adventure'),(19841,2261331,'Drama'),(19842,2261331,'Thriller'),(19843,2262129,'Comedy'),(19844,2262129,'Horror'),(19845,2262129,'Musical'),(19846,2262161,'Drama'),(19847,2262227,'Adventure'),(19848,2262227,'Animation'),(19849,2262227,'Comedy'),(19850,2262308,'Action'),(19851,2262308,'Sci-Fi'),(19852,2262308,'Thriller'),(19853,2262345,'Adventure'),(19854,2262345,'Animation'),(19855,2262345,'Drama'),(19856,2262532,'Drama'),(19857,2262532,'Romance'),(19858,2263944,'Action'),(19859,2263944,'Adventure'),(19860,2263944,'Animation'),(19861,2265398,'Comedy'),(19862,2265398,'Drama'),(19863,2265398,'Romance'),(19864,2265534,'Drama'),(19865,2265534,'Romance'),(19866,2267968,'Action'),(19867,2267968,'Adventure'),(19868,2267968,'Animation'),(19869,2267998,'Drama'),(19870,2267998,'Mystery'),(19871,2267998,'Thriller'),(19872,2268016,'Comedy'),(19873,2268016,'Drama'),(19874,2268016,'Music'),(19875,2273657,'Biography'),(19876,2273657,'Crime'),(19877,2273657,'Drama'),(19878,2274604,'Comedy'),(19879,2274604,'Drama'),(19880,2274604,'Romance'),(19881,2275949,'Documentary'),(19882,2275990,'Crime'),(19883,2275990,'Drama'),(19884,2275990,'Mystery'),(19885,2277860,'Adventure'),(19886,2277860,'Animation'),(19887,2277860,'Comedy'),(19888,2278388,'Adventure'),(19889,2278388,'Comedy'),(19890,2278388,'Crime'),(19891,2278871,'Drama'),(19892,2278871,'Romance'),(19893,2279339,'Comedy'),(19894,2279339,'Fantasy'),(19895,2279339,'Romance'),(19896,2279373,'Adventure'),(19897,2279373,'Animation'),(19898,2279373,'Comedy'),(19899,2279864,'Comedy'),(19900,2281159,'Drama'),(19901,2281159,'Horror'),(19902,2281159,'Thriller'),(19903,2281587,'Adventure'),(19904,2281587,'Comedy'),(19905,2281587,'Crime'),(19906,2283336,'Action'),(19907,2283336,'Adventure'),(19908,2283336,'Comedy'),(19909,2283362,'Action'),(19910,2283362,'Adventure'),(19911,2283362,'Comedy'),(19912,2284766,'Drama'),(19913,2285752,'Sci-Fi'),(19914,2285752,'Short'),(19915,2286988,'Comedy'),(19916,2287655,'Drama'),(19917,2287663,'Drama'),(19918,2287663,'Romance'),(19919,2287715,'Comedy'),(19920,2287715,'Drama'),(19921,2287715,'Romance'),(19922,2287861,'Comedy'),(19923,2287861,'Drama'),(19924,2288044,'Comedy'),(19925,2288044,'Drama'),(19926,2289538,'Comedy'),(19927,2289538,'Drama'),(19928,2289920,'Crime'),(19929,2289920,'Drama'),(19930,2289920,'Mystery'),(19931,2290819,'Thriller'),(19932,2291540,'Biography'),(19933,2291540,'Drama'),(19934,2291540,'Horror'),(19935,2292794,'Documentary'),(19936,2293276,'Drama'),(19937,2293640,'Adventure'),(19938,2293640,'Animation'),(19939,2293640,'Comedy'),(19940,2294189,'Crime'),(19941,2294189,'Drama'),(19942,2294189,'Thriller'),(19943,2294449,'Action'),(19944,2294449,'Comedy'),(19945,2294449,'Crime'),(19946,2294629,'Adventure'),(19947,2294629,'Animation'),(19948,2294629,'Comedy'),(19949,2294677,'Comedy'),(19950,2296697,'Drama'),(19951,2296777,'Adventure'),(19952,2296777,'Animation'),(19953,2296777,'Comedy'),(19954,2298416,'Drama'),(19955,2298820,'Drama'),(19956,2298820,'Mystery'),(19957,2302755,'Action'),(19958,2302755,'Thriller'),(19959,2303110,'Action'),(19960,2303110,'Adventure'),(19961,2303110,'Comedy'),(19962,2304426,'Drama'),(19963,2304517,'Comedy'),(19964,2304771,'Biography'),(19965,2304771,'Drama'),(19966,2304771,'History'),(19967,2304933,'Action'),(19968,2304933,'Adventure'),(19969,2304933,'Sci-Fi'),(19970,2305051,'Adventure'),(19971,2305051,'Biography'),(19972,2305051,'Drama'),(19973,2306299,'Action'),(19974,2306299,'Adventure'),(19975,2306299,'Drama'),(19976,2309021,'Drama'),(19977,2309021,'Horror'),(19978,2309021,'Thriller'),(19979,2309295,'Drama'),(19980,2309295,'Fantasy'),(19981,2309295,'Horror'),(19982,2310332,'Adventure'),(19983,2310332,'Fantasy'),(19984,2312390,'Adventure'),(19985,2312390,'Comedy'),(19986,2312390,'Fantasy'),(19987,2312718,'Action'),(19988,2312718,'Crime'),(19989,2312718,'Thriller'),(19990,2312890,'Comedy'),(19991,2312890,'Drama'),(19992,2313197,'Action'),(19993,2313197,'Animation'),(19994,2313197,'Crime'),(19995,2315200,'Comedy'),(19996,2315582,'Drama'),(19997,2316204,'Horror'),(19998,2316204,'Sci-Fi'),(19999,2316204,'Thriller'),(20000,2316411,'Drama'),(20001,2316411,'Mystery'),(20002,2316411,'Thriller'),(20003,2316801,'Drama'),(20004,2316801,'Family'),(20005,2316801,'Fantasy'),(20006,2317225,'Action'),(20007,2317225,'Drama'),(20008,2317225,'Sci-Fi'),(20009,2318360,'Horror'),(20010,2318625,'Crime'),(20011,2318625,'Drama'),(20012,2318625,'Romance'),(20013,2319580,'Comedy'),(20014,2321187,'Animation'),(20015,2321187,'Drama'),(20016,2321187,'Mystery'),(20017,2321405,'Animation'),(20018,2321405,'Comedy'),(20019,2321405,'Drama'),(20020,2321502,'Drama'),(20021,2321502,'Horror'),(20022,2321502,'Sci-Fi'),(20023,2321549,'Horror'),(20024,2321549,'Mystery'),(20025,2322441,'Drama'),(20026,2322441,'Romance'),(20027,2322441,'Thriller'),(20028,2322517,'Drama'),(20029,2322517,'Thriller'),(20030,2322603,'Action'),(20031,2322603,'Animation'),(20032,2322603,'Fantasy'),(20033,2325989,'Comedy'),(20034,2325989,'Family'),(20035,2325989,'Fantasy'),(20036,2326087,'Action'),(20037,2326087,'Adventure'),(20038,2326087,'Comedy'),(20039,2326554,'Drama'),(20040,2326554,'Horror'),(20041,2326554,'Romance'),(20042,2328503,'Drama'),(20043,2328503,'Sport'),(20044,2328549,'Horror'),(20045,2328749,'Comedy'),(20046,2328749,'Drama'),(20047,2328749,'Romance'),(20048,2328900,'Biography'),(20049,2328900,'Drama'),(20050,2328900,'History'),(20051,2330312,'Animation'),(20052,2330546,'Comedy'),(20053,2330546,'Sport'),(20054,2331143,'Drama'),(20055,2332579,'Adventure'),(20056,2332579,'Comedy'),(20057,2332579,'Drama'),(20058,2333784,'Action'),(20059,2333784,'Adventure'),(20060,2333784,'Thriller'),(20061,2333804,'Comedy'),(20062,2333804,'Drama'),(20063,2333804,'Fantasy'),(20064,2334649,'Biography'),(20065,2334649,'Crime'),(20066,2334649,'Drama'),(20067,2334733,'Drama'),(20068,2334733,'Romance'),(20069,2334871,'Action'),(20070,2334871,'Adventure'),(20071,2334871,'Comedy'),(20072,2334873,'Comedy'),(20073,2334873,'Drama'),(20074,2334879,'Action'),(20075,2334879,'Drama'),(20076,2334879,'Thriller'),(20077,2334896,'Crime'),(20078,2334896,'Drama'),(20079,2336846,'Crime'),(20080,2336846,'Drama'),(20081,2336960,'Drama'),(20082,2338151,'Comedy'),(20083,2338151,'Drama'),(20084,2338151,'Sci-Fi'),(20085,2338454,'Comedy'),(20086,2338454,'Drama'),(20087,2338454,'Fantasy'),(20088,2338864,'Drama'),(20089,2339741,'Drama'),(20090,2339741,'Horror'),(20091,2339741,'Thriller'),(20092,2340650,'Comedy'),(20093,2340650,'Drama'),(20094,2340650,'Family'),(20095,2343371,'Comedy'),(20096,2345567,'Fantasy'),(20097,2345567,'Horror'),(20098,2345567,'Mystery'),(20099,2345737,'Action'),(20100,2345737,'Crime'),(20101,2345737,'Drama'),(20102,2345759,'Action'),(20103,2345759,'Adventure'),(20104,2345759,'Fantasy'),(20105,2346744,'Romance'),(20106,2346744,'Thriller'),(20107,2347569,'Comedy'),(20108,2347569,'Drama'),(20109,2347569,'Romance'),(20110,2349460,'Drama'),(20111,2349460,'Music'),(20112,2350496,'Drama'),(20113,2350496,'Romance'),(20114,2351098,'Drama'),(20115,2352488,'Drama'),(20116,2354196,'Action'),(20117,2354196,'Adventure'),(20118,2354196,'Comedy'),(20119,2355495,'Comedy'),(20120,2355495,'Drama'),(20121,2355495,'Romance'),(20122,2355540,'Biography'),(20123,2355540,'Documentary'),(20124,2357263,'Comedy'),(20125,2357263,'Drama'),(20126,2357291,'Adventure'),(20127,2357291,'Animation'),(20128,2357291,'Comedy'),(20129,2358592,'Drama'),(20130,2358592,'Sci-Fi'),(20131,2358592,'Thriller'),(20132,2358891,'Drama'),(20133,2358925,'Comedy'),(20134,2358925,'Drama'),(20135,2359024,'Crime'),(20136,2359024,'Drama'),(20137,2359024,'Thriller'),(20138,2361317,'Action'),(20139,2361317,'Crime'),(20140,2361317,'Drama'),(20141,2361509,'Comedy'),(20142,2361509,'Drama'),(20143,2364841,'Crime'),(20144,2364841,'Mystery'),(20145,2364841,'Thriller'),(20146,2364949,'Comedy'),(20147,2364949,'Drama'),(20148,2364975,'Drama'),(20149,2364975,'Music'),(20150,2365580,'Comedy'),(20151,2365580,'Drama'),(20152,2366450,'Documentary'),(20153,2368254,'Biography'),(20154,2368254,'Drama'),(20155,2368254,'War'),(20156,2368749,'Drama'),(20157,2369135,'Action'),(20158,2369135,'Adventure'),(20159,2369135,'Crime'),(20160,2369396,'Action'),(20161,2369396,'Comedy'),(20162,2369396,'Sci-Fi'),(20163,2370034,'Drama'),(20164,2370034,'Romance'),(20165,2370248,'Drama'),(20166,2371399,'Animation'),(20167,2371399,'Comedy'),(20168,2371399,'Family'),(20169,2375574,'Drama'),(20170,2375574,'History'),(20171,2375574,'Mystery'),(20172,2377322,'Action'),(20173,2377322,'Adventure'),(20174,2377322,'Crime'),(20175,2377396,'Comedy'),(20176,2377396,'Drama'),(20177,2378281,'Comedy'),(20178,2378281,'Drama'),(20179,2378507,'Biography'),(20180,2378507,'Drama'),(20181,2379082,'Drama'),(20182,2379082,'Romance'),(20183,2379713,'Action'),(20184,2379713,'Adventure'),(20185,2379713,'Thriller'),(20186,2380307,'Adventure'),(20187,2380307,'Animation'),(20188,2380307,'Drama'),(20189,2380331,'Comedy'),(20190,2380331,'Drama'),(20191,2380331,'Romance'),(20192,2381111,'Drama'),(20193,2381111,'Romance'),(20194,2381249,'Action'),(20195,2381249,'Adventure'),(20196,2381249,'Thriller'),(20197,2381941,'Comedy'),(20198,2381941,'Crime'),(20199,2381941,'Drama'),(20200,2381991,'Action'),(20201,2381991,'Adventure'),(20202,2381991,'Drama'),(20203,2382009,'Drama'),(20204,2382320,'Action'),(20205,2382320,'Adventure'),(20206,2382320,'Thriller'),(20207,2382396,'Crime'),(20208,2382396,'Drama'),(20209,2382396,'Thriller'),(20210,2382422,'Comedy'),(20211,2386257,'Drama'),(20212,2386278,'Horror'),(20213,2386278,'Mystery'),(20214,2386278,'Romance'),(20215,2386490,'Action'),(20216,2386490,'Adventure'),(20217,2386490,'Animation'),(20218,2387222,'Drama'),(20219,2387413,'Action'),(20220,2387413,'Sci-Fi'),(20221,2387413,'War'),(20222,2387433,'Horror'),(20223,2387433,'Sci-Fi'),(20224,2387433,'Thriller'),(20225,2387499,'Action'),(20226,2387499,'Comedy'),(20227,2387559,'Comedy'),(20228,2387559,'Drama'),(20229,2388715,'Horror'),(20230,2388715,'Mystery'),(20231,2388715,'Thriller'),(20232,2388759,'Comedy'),(20233,2388759,'Romance'),(20234,2388821,'Adventure'),(20235,2388821,'Comedy'),(20236,2389182,'Comedy'),(20237,2389182,'Crime'),(20238,2389182,'Drama'),(20239,2390237,'Comedy'),(20240,2390237,'Romance'),(20241,2390237,'Sport'),(20242,2390361,'Comedy'),(20243,2390361,'Drama'),(20244,2390361,'Romance'),(20245,2392261,'Comedy'),(20246,2392261,'Drama'),(20247,2392326,'Comedy'),(20248,2392326,'Drama'),(20249,2392326,'Romance'),(20250,2392830,'Biography'),(20251,2392830,'Drama'),(20252,2393787,'Drama'),(20253,2395337,'Animation'),(20254,2395385,'Romance'),(20255,2395385,'Sci-Fi'),(20256,2395385,'Thriller'),(20257,2395417,'Drama'),(20258,2395421,'Comedy'),(20259,2395421,'Drama'),(20260,2395427,'Action'),(20261,2395427,'Adventure'),(20262,2395427,'Sci-Fi'),(20263,2395469,'Drama'),(20264,2395469,'Music'),(20265,2395469,'Romance'),(20266,2396566,'Biography'),(20267,2396566,'Documentary'),(20268,2396566,'History'),(20269,2396589,'Drama'),(20270,2396589,'War'),(20271,2396701,'Drama'),(20272,2396701,'Fantasy'),(20273,2396701,'Horror'),(20274,2396721,'Mystery'),(20275,2396721,'Sci-Fi'),(20276,2396721,'Thriller'),(20277,2397461,'Adventure'),(20278,2397461,'Animation'),(20279,2397461,'Comedy'),(20280,2397535,'Action'),(20281,2397535,'Drama'),(20282,2397535,'Sci-Fi'),(20283,2398231,'Drama'),(20284,2398231,'Western'),(20285,2398249,'Comedy'),(20286,2398249,'Romance'),(20287,2400463,'Drama'),(20288,2400463,'Horror'),(20289,2400463,'Mystery'),(20290,2401711,'Drama'),(20291,2401711,'Romance'),(20292,2401711,'War'),(20293,2401715,'Biography'),(20294,2401715,'Drama'),(20295,2401715,'Musical'),(20296,2401878,'Animation'),(20297,2401878,'Comedy'),(20298,2401878,'Drama'),(20299,2402157,'Action'),(20300,2402157,'Thriller'),(20301,2402927,'Drama'),(20302,2402927,'Romance'),(20303,2403021,'Adventure'),(20304,2403021,'Horror'),(20305,2403029,'Adventure'),(20306,2403029,'Comedy'),(20307,2403029,'Sci-Fi'),(20308,2403419,'Thriller'),(20309,2404153,'Comedy'),(20310,2404153,'Family'),(20311,2404153,'Fantasy'),(20312,2404181,'Biography'),(20313,2404181,'Drama'),(20314,2404181,'Romance'),(20315,2404233,'Action'),(20316,2404233,'Adventure'),(20317,2404233,'Drama'),(20318,2404311,'Comedy'),(20319,2404311,'Crime'),(20320,2404311,'Thriller'),(20321,2404425,'Biography'),(20322,2404425,'Drama'),(20323,2404425,'History'),(20324,2404435,'Action'),(20325,2404435,'Adventure'),(20326,2404435,'Drama'),(20327,2404461,'Drama'),(20328,2404461,'Mystery'),(20329,2404463,'Action'),(20330,2404463,'Comedy'),(20331,2404463,'Crime'),(20332,2404465,'Comedy'),(20333,2404465,'Drama'),(20334,2404465,'Family'),(20335,2404738,'Action'),(20336,2404738,'Adventure'),(20337,2404738,'Comedy'),(20338,2406252,'Drama'),(20339,2406566,'Action'),(20340,2406566,'Thriller'),(20341,24068064,'Drama'),(20342,24070754,'Drama'),(20343,2407574,'Comedy'),(20344,2407574,'Drama'),(20345,2407574,'Romance'),(20346,2412568,'Biography'),(20347,2412568,'Drama'),(20348,2412568,'Music'),(20349,2414766,'Mystery'),(20350,2414766,'Romance'),(20351,2414766,'Sci-Fi'),(20352,2415174,'Drama'),(20353,2415174,'Family'),(20354,2415464,'Horror'),(20355,2417712,'Comedy'),(20356,2417712,'Sport'),(20357,2425486,'Comedy'),(20358,2425486,'Drama'),(20359,2425486,'Romance'),(20360,2428170,'Horror'),(20361,2428170,'Thriller'),(20362,2429074,'Comedy'),(20363,2429074,'Drama'),(20364,2429074,'Romance'),(20365,2429414,'Comedy'),(20366,2429414,'Romance'),(20367,2431286,'Biography'),(20368,2431286,'Comedy'),(20369,2431286,'Drama'),(20370,2435166,'Comedy'),(20371,2436386,'Drama'),(20372,2436386,'Mystery'),(20373,2436386,'Sci-Fi'),(20374,2436682,'Drama'),(20375,2436682,'Western'),(20376,2440362,'Horror'),(20377,2446042,'Action'),(20378,2446042,'Crime'),(20379,2446042,'Thriller'),(20380,2446108,'Animation'),(20381,2446108,'Family'),(20382,2446502,'Action'),(20383,2446502,'Comedy'),(20384,2446502,'Horror'),(20385,2446980,'Biography'),(20386,2446980,'Drama'),(20387,2450186,'Horror'),(20388,2450186,'Thriller'),(20389,2450440,'Biography'),(20390,2450440,'Drama'),(20391,2450440,'Romance'),(20392,2452042,'Adventure'),(20393,2452042,'Animation'),(20394,2452042,'Comedy'),(20395,2452150,'Biography'),(20396,2452150,'Drama'),(20397,2452150,'Music'),(20398,2452244,'Comedy'),(20399,2452244,'Fantasy'),(20400,2452244,'Musical'),(20401,2452254,'Drama'),(20402,2452386,'Comedy'),(20403,2452386,'Drama'),(20404,2457282,'Animation'),(20405,2457282,'Drama'),(20406,2457282,'Fantasy'),(20407,2460488,'Action'),(20408,2460488,'Adventure'),(20409,2460488,'Crime'),(20410,2461126,'Drama'),(20411,2461126,'Romance'),(20412,2461150,'Biography'),(20413,2461150,'Comedy'),(20414,2461150,'Crime'),(20415,2461340,'Adventure'),(20416,2461340,'Drama'),(20417,2461340,'Romance'),(20418,2463208,'Action'),(20419,2463208,'Adventure'),(20420,2463208,'Comedy'),(20421,2463288,'Comedy'),(20422,2464018,'Comedy'),(20423,2465140,'Comedy'),(20424,2465140,'Drama'),(20425,2473602,'Biography'),(20426,2473602,'Drama'),(20427,2473602,'Music'),(20428,2473682,'Horror'),(20429,2473682,'Mystery'),(20430,2473794,'Biography'),(20431,2473794,'Drama'),(20432,2473794,'History'),(20433,2474024,'Comedy'),(20434,2474024,'Drama'),(20435,2474024,'Musical'),(20436,2474310,'Drama'),(20437,2474310,'Romance'),(20438,2474310,'Sport'),(20439,2479478,'Action'),(20440,2479478,'Adventure'),(20441,2479478,'Comedy'),(20442,2479800,'Drama'),(20443,24803056,'Comedy'),(20444,24803056,'Short'),(20445,2481198,'Comedy'),(20446,2481198,'Drama'),(20447,2481198,'Musical'),(20448,2483260,'Adventure'),(20449,2483260,'Animation'),(20450,2483260,'Family'),(20451,2488496,'Action'),(20452,2488496,'Adventure'),(20453,2488496,'Sci-Fi'),(20454,2490326,'Action'),(20455,2490326,'Comedy'),(20456,2490326,'Horror'),(20457,2493486,'Action'),(20458,2493486,'Drama'),(20459,2493486,'History'),(20460,2494280,'Comedy'),(20461,2494280,'Crime'),(20462,2494384,'Drama'),(20463,2495118,'Action'),(20464,2495118,'Biography'),(20465,2495118,'Drama'),(20466,2496366,'Crime'),(20467,2496366,'Drama'),(20468,2497980,'Crime'),(20469,2497980,'Thriller'),(20470,2499414,'Comedy'),(20471,2503154,'Horror'),(20472,2503154,'Mystery'),(20473,2503154,'Thriller'),(20474,2504614,'Adventure'),(20475,2505294,'Drama'),(20476,2508258,'Comedy'),(20477,2509008,'Short'),(20478,2510894,'Adventure'),(20479,2510894,'Animation'),(20480,2510894,'Comedy'),(20481,2511190,'Comedy'),(20482,2511190,'Family'),(20483,2511190,'Fantasy'),(20484,2515030,'Crime'),(20485,2515030,'Drama'),(20486,2515030,'History'),(20487,2515034,'Action'),(20488,2515034,'Adventure'),(20489,2515034,'Crime'),(20490,2520512,'Comedy'),(20491,2523600,'Comedy'),(20492,2523600,'Drama'),(20493,2523692,'Horror'),(20494,2524674,'Comedy'),(20495,2524674,'Drama'),(20496,2527186,'Comedy'),(20497,2527186,'Horror'),(20498,2527336,'Action'),(20499,2527336,'Adventure'),(20500,2527336,'Fantasy'),(20501,2527338,'Action'),(20502,2527338,'Adventure'),(20503,2527338,'Fantasy'),(20504,2528814,'Adventure'),(20505,2528814,'Comedy'),(20506,2528814,'Drama'),(20507,2531258,'Action'),(20508,2531258,'Adventure'),(20509,2531258,'Drama'),(20510,2531344,'Comedy'),(20511,2531344,'Drama'),(20512,2535470,'Action'),(20513,2535470,'Comedy'),(20514,2535470,'Horror'),(20515,2536428,'Comedy'),(20516,2536428,'Drama'),(20517,2537390,'Comedy'),(20518,2537390,'Romance'),(20519,2542420,'Drama'),(20520,2542420,'Mystery'),(20521,2542420,'Sci-Fi'),(20522,2543164,'Drama'),(20523,2543164,'Mystery'),(20524,2543164,'Sci-Fi'),(20525,2543472,'Drama'),(20526,2543472,'Family'),(20527,2543508,'Drama'),(20528,2545118,'Documentary'),(20529,2545186,'Comedy'),(20530,2547584,'Drama'),(20531,2547584,'Romance'),(20532,2548396,'Action'),(20533,2548396,'Adventure'),(20534,2548396,'Horror'),(20535,2552394,'Comedy'),(20536,2552394,'Crime'),(20537,2554274,'Drama'),(20538,2554274,'Horror'),(20539,2554274,'Mystery'),(20540,2555268,'Adventure'),(20541,2555268,'Biography'),(20542,2555268,'Documentary'),(20543,2555736,'Comedy'),(20544,2555736,'Drama'),(20545,2555736,'Romance'),(20546,2557478,'Action'),(20547,2557478,'Adventure'),(20548,2557478,'Fantasy'),(20549,2557490,'Comedy'),(20550,2557490,'Western'),(20551,2561546,'Horror'),(20552,2561546,'Mystery'),(20553,2561546,'Thriller'),(20554,2561572,'Comedy'),(20555,2561572,'Crime'),(20556,2562232,'Comedy'),(20557,2562232,'Drama'),(20558,2567026,'Adventure'),(20559,2567026,'Family'),(20560,2567026,'Fantasy'),(20561,2567038,'Crime'),(20562,2567038,'Drama'),(20563,2567038,'Fantasy'),(20564,2568862,'Comedy'),(20565,2568862,'Crime'),(20566,2570858,'Drama'),(20567,2570858,'Romance'),(20568,2576852,'Animation'),(20569,2576852,'Drama'),(20570,2576852,'Family'),(20571,2580928,'Drama'),(20572,2582008,'Drama'),(20573,2582496,'Comedy'),(20574,2582496,'Drama'),(20575,2582496,'Romance'),(20576,2582498,'Action'),(20577,2582498,'Drama'),(20578,2582498,'Thriller'),(20579,2582502,'Drama'),(20580,2582576,'Action'),(20581,2582576,'Drama'),(20582,2582576,'War'),(20583,2582782,'Crime'),(20584,2582782,'Drama'),(20585,2582782,'Thriller'),(20586,2582784,'Comedy'),(20587,2582784,'Drama'),(20588,2582802,'Drama'),(20589,2582802,'Music'),(20590,2582846,'Drama'),(20591,2582846,'Romance'),(20592,2584384,'Comedy'),(20593,2584384,'Drama'),(20594,2584384,'War'),(20595,2585078,'Comedy'),(20596,2585078,'Drama'),(20597,2585078,'Sport'),(20598,2592512,'Drama'),(20599,2592614,'Action'),(20600,2592614,'Horror'),(20601,2592614,'Sci-Fi'),(20602,2593224,'Comedy'),(20603,2593224,'Drama'),(20604,25971180,'Comedy'),(20605,2599226,'Family'),(20606,2601160,'Drama'),(20607,2601160,'Short'),(20608,2614684,'Action'),(20609,2614684,'Crime'),(20610,2614684,'Drama'),(20611,2617828,'Drama'),(20612,2617828,'Romance'),(20613,2618500,'Comedy'),(20614,2618500,'Drama'),(20615,2620736,'Drama'),(20616,2620736,'Horror'),(20617,2620736,'Thriller'),(20618,2625810,'Drama'),(20619,2625810,'Thriller'),(20620,2626350,'Drama'),(20621,2626350,'Music'),(20622,2626350,'Romance'),(20623,2628260,'Biography'),(20624,2628260,'Documentary'),(20625,2628260,'Drama'),(20626,2630134,'Animation'),(20627,2630134,'Family'),(20628,2631186,'Action'),(20629,2631186,'Drama'),(20630,2637276,'Comedy'),(20631,2638144,'Action'),(20632,2638144,'Drama'),(20633,2638144,'Romance'),(20634,2639254,'Drama'),(20635,2639254,'Romance'),(20636,2639336,'Drama'),(20637,2639336,'Mystery'),(20638,2639336,'Thriller'),(20639,2639344,'Drama'),(20640,2639344,'Romance'),(20641,26440896,'Drama'),(20642,2645188,'Drama'),(20643,2645188,'Sci-Fi'),(20644,2645188,'Thriller'),(20645,2649554,'Drama'),(20646,2649554,'Mystery'),(20647,2649554,'Sci-Fi'),(20648,2651924,'Action'),(20649,2651924,'Adventure'),(20650,2651924,'Comedy'),(20651,2652092,'Biography'),(20652,2652092,'Drama'),(20653,2652118,'Action'),(20654,2652118,'Adventure'),(20655,2652118,'Drama'),(20656,26537229,'Action'),(20657,26537229,'Adventure'),(20658,26537229,'Animation'),(20659,2656122,'Animation'),(20660,2656122,'Comedy'),(20661,2656122,'Drama'),(20662,2660888,'Action'),(20663,2660888,'Adventure'),(20664,2660888,'Sci-Fi'),(20665,2662716,'Drama'),(20666,2664258,'Comedy'),(20667,2664258,'Drama'),(20668,2667380,'Action'),(20669,2667380,'Horror'),(20670,2667380,'Sci-Fi'),(20671,2671706,'Drama'),(20672,26744173,'Drama'),(20673,26744173,'Thriller'),(20674,2674426,'Drama'),(20675,2674426,'Romance'),(20676,2674430,'Drama'),(20677,2674430,'Sci-Fi'),(20678,2674430,'Thriller'),(20679,2675914,'Action'),(20680,2675914,'Comedy'),(20681,2675914,'Crime'),(20682,2678152,'Fantasy'),(20683,2678152,'Horror'),(20684,2678152,'Sci-Fi'),(20685,2679042,'Action'),(20686,2679042,'Crime'),(20687,2679042,'Thriller'),(20688,2690226,'Drama'),(20689,2692250,'Adventure'),(20690,2692250,'Comedy'),(20691,2692250,'Family'),(20692,2692904,'Drama'),(20693,2693664,'Action'),(20694,2693664,'Drama'),(20695,2693664,'Romance'),(20696,2702724,'Comedy'),(20697,2704998,'Action'),(20698,2704998,'Adventure'),(20699,2704998,'Comedy'),(20700,2707858,'Biography'),(20701,2707858,'Drama'),(20702,2709692,'Animation'),(20703,2709692,'Comedy'),(20704,2709692,'Family'),(20705,2709768,'Adventure'),(20706,2709768,'Animation'),(20707,2709768,'Comedy'),(20708,2710826,'Horror'),(20709,2710826,'Mystery'),(20710,2710826,'Thriller'),(20711,2713180,'Action'),(20712,2713180,'Drama'),(20713,2713180,'War'),(20714,2717822,'Action'),(20715,2717822,'Crime'),(20716,2717822,'Thriller'),(20717,2717860,'Drama'),(20718,2717860,'Thriller'),(20719,2718492,'Drama'),(20720,2719848,'Action'),(20721,2719848,'Adventure'),(20722,2719848,'Biography'),(20723,2720680,'Action'),(20724,2720680,'Drama'),(20725,2720680,'Thriller'),(20726,2724064,'Action'),(20727,2724064,'Adventure'),(20728,2724064,'Comedy'),(20729,2725962,'Comedy'),(20730,2725962,'Drama'),(20731,2726560,'Comedy'),(20732,2726560,'Drama'),(20733,2726560,'Romance'),(20734,2737050,'Drama'),(20735,2737304,'Horror'),(20736,2737304,'Mystery'),(20737,2737304,'Sci-Fi'),(20738,2742544,'Horror'),(20739,2742544,'Mystery'),(20740,2742544,'Thriller'),(20741,27502426,'Documentary'),(20742,2751310,'Comedy'),(20743,2751310,'Romance'),(20744,2751390,'Comedy'),(20745,2751390,'Drama'),(20746,2751390,'Romance'),(20747,2752200,'Drama'),(20748,2752200,'Romance'),(20749,2752688,'Biography'),(20750,2752688,'Drama'),(20751,2756032,'Comedy'),(20752,2756032,'Drama'),(20753,2756032,'Fantasy'),(20754,2758904,'Adventure'),(20755,2758904,'Comedy'),(20756,2761578,'Action'),(20757,2761578,'Thriller'),(20758,2762506,'Action'),(20759,2762506,'Adventure'),(20760,2762506,'Drama'),(20761,2762970,'Drama'),(20762,2762970,'Family'),(20763,2762970,'Sport'),(20764,2763304,'Comedy'),(20765,2763304,'Crime'),(20766,2763304,'Drama'),(20767,2764784,'Drama'),(20768,2764784,'History'),(20769,2764784,'Music'),(20770,2770480,'Drama'),(20771,2770480,'Romance'),(20772,2771200,'Adventure'),(20773,2771200,'Family'),(20774,2771200,'Fantasy'),(20775,2771372,'Crime'),(20776,2771372,'Drama'),(20777,2771372,'Mystery'),(20778,2776074,'Adventure'),(20779,2776074,'History'),(20780,2776074,'Romance'),(20781,2779318,'Adventure'),(20782,2779318,'Drama'),(20783,2779318,'Sci-Fi'),(20784,27816768,'Biography'),(20785,27816768,'Comedy'),(20786,27816768,'Drama'),(20787,2784512,'Comedy'),(20788,2784512,'Horror'),(20789,2784678,'Comedy'),(20790,2784678,'Romance'),(20791,2788432,'Biography'),(20792,2788432,'Crime'),(20793,2788432,'Drama'),(20794,2788710,'Action'),(20795,2788710,'Adventure'),(20796,2788710,'Comedy'),(20797,2788716,'Comedy'),(20798,2788716,'Drama'),(20799,2788732,'Action'),(20800,2788732,'Adventure'),(20801,2788732,'Comedy'),(20802,2792728,'Comedy'),(20803,2795478,'Drama'),(20804,2795478,'Short'),(20805,2796584,'Comedy'),(20806,2796584,'Drama'),(20807,2796584,'Romance'),(20808,2798920,'Adventure'),(20809,2798920,'Drama'),(20810,2798920,'Horror'),(20811,2800038,'Drama'),(20812,2800038,'Mystery'),(20813,2800038,'Sci-Fi'),(20814,2800240,'Comedy'),(20815,2802144,'Action'),(20816,2802144,'Adventure'),(20817,2802144,'Comedy'),(20818,2802154,'Crime'),(20819,2802154,'Drama'),(20820,2808680,'Comedy'),(20821,2818178,'Drama'),(20822,2818178,'Fantasy'),(20823,2818178,'Horror'),(20824,2818348,'Adventure'),(20825,2818348,'Drama'),(20826,2818348,'Family'),(20827,2820466,'Action'),(20828,2820466,'Adventure'),(20829,2820466,'Animation'),(20830,2820852,'Action'),(20831,2820852,'Crime'),(20832,2820852,'Thriller'),(20833,2823054,'Comedy'),(20834,2823054,'Romance'),(20835,2829458,'Comedy'),(20836,2829458,'Drama'),(20837,2829458,'Romance'),(20838,2831440,'Comedy'),(20839,2831440,'Drama'),(20840,2831440,'Romance'),(20841,2832470,'Action'),(20842,2832470,'Comedy'),(20843,2832470,'Fantasy'),(20844,2835536,'Drama'),(20845,2837574,'Biography'),(20846,2837574,'Comedy'),(20847,2837574,'Crime'),(20848,2844798,'Adventure'),(20849,2844798,'Drama'),(20850,2844798,'Thriller'),(20851,2848292,'Comedy'),(20852,2848292,'Music'),(20853,2850386,'Adventure'),(20854,2850386,'Animation'),(20855,2850386,'Comedy'),(20856,2852458,'Drama'),(20857,2852458,'Romance'),(20858,2852458,'Thriller'),(20859,2852460,'Drama'),(20860,2854926,'Action'),(20861,2854926,'Comedy'),(20862,2865120,'Action'),(20863,2865120,'Adventure'),(20864,2865120,'Animation'),(20865,2865802,'Drama'),(20866,2865802,'Thriller'),(20867,2866360,'Drama'),(20868,2866360,'Mystery'),(20869,2866360,'Sci-Fi'),(20870,2869728,'Action'),(20871,2869728,'Comedy'),(20872,2869728,'Crime'),(20873,2870612,'Horror'),(20874,2870612,'Mystery'),(20875,2870612,'Thriller'),(20876,2870708,'Comedy'),(20877,2870708,'Drama'),(20878,2870756,'Comedy'),(20879,2870756,'Drama'),(20880,2870756,'Romance'),(20881,2870808,'Comedy'),(20882,2870808,'Drama'),(20883,2870808,'Romance'),(20884,2872462,'Comedy'),(20885,2872462,'Drama'),(20886,2872518,'Drama'),(20887,2872518,'Fantasy'),(20888,2872718,'Crime'),(20889,2872718,'Drama'),(20890,2872718,'Thriller'),(20891,2872724,'Horror'),(20892,2872724,'Mystery'),(20893,2872724,'Thriller'),(20894,2872732,'Action'),(20895,2872732,'Sci-Fi'),(20896,2872732,'Thriller'),(20897,2872750,'Adventure'),(20898,2872750,'Animation'),(20899,2872750,'Comedy'),(20900,2873282,'Action'),(20901,2873282,'Drama'),(20902,2873282,'Thriller'),(20903,2881698,'Horror'),(20904,2881698,'Mystery'),(20905,2881698,'Sci-Fi'),(20906,2883512,'Adventure'),(20907,2883512,'Comedy'),(20908,2883512,'Drama'),(20909,2884018,'Drama'),(20910,2884018,'History'),(20911,2884018,'War'),(20912,2884206,'Drama'),(20913,2884206,'Mystery'),(20914,2884206,'Romance'),(20915,2888046,'Action'),(20916,2888046,'Biography'),(20917,2888046,'Drama'),(20918,2896036,'Comedy'),(20919,2896036,'Drama'),(20920,2906216,'Action'),(20921,2906216,'Adventure'),(20922,2906216,'Comedy'),(20923,2908228,'Animation'),(20924,2908228,'Comedy'),(20925,2908228,'Family'),(20926,2908446,'Action'),(20927,2908446,'Adventure'),(20928,2908446,'Sci-Fi'),(20929,2908856,'Comedy'),(20930,2908856,'Drama'),(20931,2908856,'Romance'),(20932,2910274,'Comedy'),(20933,2910274,'Drama'),(20934,2910274,'Romance'),(20935,2910904,'Comedy'),(20936,2910904,'Drama'),(20937,2910904,'Western'),(20938,2911666,'Action'),(20939,2911666,'Crime'),(20940,2911666,'Thriller'),(20941,2911674,'Action'),(20942,2911674,'Crime'),(20943,2911674,'Drama'),(20944,2918436,'Horror'),(20945,2918436,'Mystery'),(20946,2918436,'Sci-Fi'),(20947,2920808,'Crime'),(20948,2920808,'Drama'),(20949,2927212,'Comedy'),(20950,2927212,'Drama'),(20951,2927212,'Family'),(20952,2929690,'Drama'),(20953,2932536,'Horror'),(20954,2932536,'Mystery'),(20955,2932536,'Thriller'),(20956,2933474,'Comedy'),(20957,2933544,'Comedy'),(20958,2933544,'Drama'),(20959,2935476,'Drama'),(20960,2935476,'Romance'),(20961,2935510,'Adventure'),(20962,2935510,'Drama'),(20963,2935510,'Mystery'),(20964,2935622,'Action'),(20965,2935622,'Comedy'),(20966,2935622,'Drama'),(20967,2935662,'Comedy'),(20968,2935662,'Drama'),(20969,2935662,'Romance'),(20970,2936470,'Drama'),(20971,2937696,'Comedy'),(20972,2937898,'Action'),(20973,2937898,'Crime'),(20974,2937898,'Drama'),(20975,2938496,'Horror'),(20976,2938496,'Thriller'),(20977,2938956,'Action'),(20978,2938956,'Thriller'),(20979,2944454,'Drama'),(20980,2944454,'Sci-Fi'),(20981,2948356,'Adventure'),(20982,2948356,'Animation'),(20983,2948356,'Comedy'),(20984,2948372,'Adventure'),(20985,2948372,'Animation'),(20986,2948372,'Comedy'),(20987,2948840,'Biography'),(20988,2948840,'Drama'),(20989,2953050,'Animation'),(20990,2953050,'Comedy'),(20991,2953050,'Family'),(20992,2955096,'Comedy'),(20993,2955096,'Drama'),(20994,2955316,'Comedy'),(20995,2955316,'Romance'),(20996,2964334,'Documentary'),(20997,2965412,'Comedy'),(20998,2965412,'Drama'),(20999,2965412,'Romance'),(21000,2965466,'Horror'),(21001,2965466,'Mystery'),(21002,2967224,'Action'),(21003,2967224,'Comedy'),(21004,2967224,'Crime'),(21005,2967286,'Animation'),(21006,2967286,'Mystery'),(21007,2967286,'Sci-Fi'),(21008,2969656,'Action'),(21009,2969656,'Crime'),(21010,2969656,'Thriller'),(21011,2974918,'Adventure'),(21012,2974918,'Comedy'),(21013,2974918,'Family'),(21014,2975578,'Action'),(21015,2975578,'Horror'),(21016,2975578,'Sci-Fi'),(21017,2975590,'Action'),(21018,2975590,'Adventure'),(21019,2975590,'Sci-Fi'),(21020,2977090,'Drama'),(21021,2978462,'Drama'),(21022,2978462,'Family'),(21023,2978576,'Comedy'),(21024,2978576,'Family'),(21025,2978576,'History'),(21026,2980516,'Biography'),(21027,2980516,'Drama'),(21028,2980516,'Romance'),(21029,2980648,'Comedy'),(21030,2980648,'Drama'),(21031,2980706,'Adventure'),(21032,2980706,'Animation'),(21033,2980706,'Comedy'),(21034,2980794,'Crime'),(21035,2980794,'Drama'),(21036,2980794,'Romance'),(21037,2981768,'Adventure'),(21038,2981768,'Animation'),(21039,2981768,'Drama'),(21040,2987732,'Comedy'),(21041,2991224,'Drama'),(21042,2991224,'War'),(21043,2991296,'Adventure'),(21044,2991296,'Drama'),(21045,2991296,'Horror'),(21046,2991316,'Action'),(21047,2991316,'Adventure'),(21048,2991316,'Sci-Fi'),(21049,2992146,'Action'),(21050,2992146,'Adventure'),(21051,2992146,'Drama'),(21052,2994832,'Drama'),(21053,2994832,'Romance'),(21054,3003800,'Comedy'),(21055,3003800,'Drama'),(21056,3007302,'Comedy'),(21057,3007302,'Drama'),(21058,3007302,'Romance'),(21059,3010990,'Drama'),(21060,3010990,'Fantasy'),(21061,3010990,'Mystery'),(21062,3011894,'Comedy'),(21063,3011894,'Drama'),(21064,3011894,'Thriller'),(21065,3013588,'Comedy'),(21066,3013588,'Drama'),(21067,3013588,'Romance'),(21068,3014666,'Comedy'),(21069,3014866,'Action'),(21070,3014866,'Sci-Fi'),(21071,3014866,'Thriller'),(21072,3015110,'Comedy'),(21073,3015110,'Drama'),(21074,3015110,'Family'),(21075,3019620,'Action'),(21076,3019620,'Crime'),(21077,3019620,'Drama'),(21078,3021360,'Drama'),(21079,3021360,'Mystery'),(21080,3021360,'Thriller'),(21081,3038708,'Action'),(21082,3038708,'Adventure'),(21083,3038708,'Comedy'),(21084,3040964,'Adventure'),(21085,3040964,'Drama'),(21086,3040964,'Family'),(21087,3042408,'Crime'),(21088,3042408,'Drama'),(21089,3042408,'Mystery'),(21090,3043252,'Drama'),(21091,3045616,'Action'),(21092,3045616,'Adventure'),(21093,3045616,'Comedy'),(21094,3058674,'Action'),(21095,3058674,'Crime'),(21096,3058674,'Horror'),(21097,3060952,'Action'),(21098,3060952,'Adventure'),(21099,3060952,'Animation'),(21100,3062074,'Action'),(21101,3062074,'Adventure'),(21102,3062074,'Comedy'),(21103,3062096,'Action'),(21104,3062096,'Adventure'),(21105,3062096,'Crime'),(21106,3062976,'Comedy'),(21107,3062976,'Drama'),(21108,3062976,'Romance'),(21109,3064298,'Comedy'),(21110,3064298,'Drama'),(21111,3064298,'Romance'),(21112,3065204,'Horror'),(21113,3065204,'Mystery'),(21114,3065204,'Thriller'),(21115,3066242,'Action'),(21116,3066242,'Adventure'),(21117,3066242,'Animation'),(21118,3068194,'Comedy'),(21119,3068194,'Drama'),(21120,3068194,'Romance'),(21121,3068894,'Drama'),(21122,3068894,'History'),(21123,3068894,'Romance'),(21124,3072482,'Action'),(21125,3072482,'Adventure'),(21126,3072482,'Sci-Fi'),(21127,3074694,'Drama'),(21128,3074694,'Mystery'),(21129,3074694,'Romance'),(21130,3074732,'Comedy'),(21131,3074732,'Drama'),(21132,3074732,'Romance'),(21133,3076658,'Action'),(21134,3076658,'Drama'),(21135,3076658,'Sport'),(21136,3077108,'Comedy'),(21137,3077108,'Drama'),(21138,3077108,'Romance'),(21139,3077214,'Drama'),(21140,3077214,'History'),(21141,3078718,'Comedy'),(21142,3078718,'Family'),(21143,3079380,'Action'),(21144,3079380,'Comedy'),(21145,3086442,'Horror'),(21146,3086442,'Mystery'),(21147,3086442,'Thriller'),(21148,3089326,'Drama'),(21149,3089326,'Thriller'),(21150,3089388,'Documentary'),(21151,3089388,'History'),(21152,3089630,'Adventure'),(21153,3089630,'Family'),(21154,3089630,'Fantasy'),(21155,3090670,'Drama'),(21156,3090670,'Family'),(21157,3090670,'Sci-Fi'),(21158,3095734,'Action'),(21159,3095734,'Adventure'),(21160,3095734,'Comedy'),(21161,3097084,'Comedy'),(21162,3097204,'Comedy'),(21163,3099498,'Comedy'),(21164,3099498,'Horror'),(21165,3100510,'Drama'),(21166,3100510,'Romance'),(21167,3100510,'Short'),(21168,3100636,'Drama'),(21169,3103576,'Crime'),(21170,3103576,'Thriller'),(21171,3104818,'Drama'),(21172,3104818,'Music'),(21173,3104930,'Comedy'),(21174,3104930,'Drama'),(21175,3104930,'Horror'),(21176,3104988,'Comedy'),(21177,3104988,'Drama'),(21178,3104988,'Romance'),(21179,3106846,'Drama'),(21180,3106846,'Music'),(21181,3106846,'Romance'),(21182,3107288,'Action'),(21183,3107288,'Adventure'),(21184,3107288,'Drama'),(21185,3108894,'Drama'),(21186,3110958,'Action'),(21187,3110958,'Adventure'),(21188,3110958,'Comedy'),(21189,3110960,'Biography'),(21190,3110960,'Drama'),(21191,3110960,'History'),(21192,3111426,'Crime'),(21193,3111426,'Drama'),(21194,3111426,'Mystery'),(21195,3115906,'Drama'),(21196,3118452,'Drama'),(21197,3118452,'Horror'),(21198,3118452,'Mystery'),(21199,3118958,'Biography'),(21200,3118958,'Crime'),(21201,3118958,'Drama'),(21202,3120280,'Comedy'),(21203,3120280,'Drama'),(21204,3120280,'Romance'),(21205,3120408,'Adventure'),(21206,3120408,'Animation'),(21207,3120408,'Family'),(21208,3122122,'Adventure'),(21209,3122122,'Animation'),(21210,3122122,'Family'),(21211,3125324,'Drama'),(21212,3125324,'Music'),(21213,3125324,'Romance'),(21214,3128900,'Comedy'),(21215,3128900,'Crime'),(21216,3128900,'Drama'),(21217,3138192,'Family'),(21218,3138192,'Fantasy'),(21219,3138192,'Horror'),(21220,3139072,'Action'),(21221,3139072,'Adventure'),(21222,3139072,'Animation'),(21223,3139086,'Action'),(21224,3139086,'Adventure'),(21225,3139086,'Animation'),(21226,3145220,'Comedy'),(21227,3145220,'Drama'),(21228,3148348,'Horror'),(21229,3148348,'Thriller'),(21230,3148952,'Biography'),(21231,3148952,'Drama'),(21232,3148952,'Romance'),(21233,3149038,'Drama'),(21234,3149038,'Romance'),(21235,3152098,'Action'),(21236,3152098,'Adventure'),(21237,3152098,'Comedy'),(21238,3152592,'Adventure'),(21239,3152592,'Animation'),(21240,3152592,'Comedy'),(21241,3152624,'Comedy'),(21242,3152624,'Drama'),(21243,3152624,'Romance'),(21244,3153524,'Action'),(21245,3153524,'Comedy'),(21246,3155794,'Documentary'),(21247,3155794,'Short'),(21248,3159812,'Animation'),(21249,3165612,'Comedy'),(21250,3165612,'Drama'),(21251,3165612,'Romance'),(21252,3168230,'Drama'),(21253,3168230,'Mystery'),(21254,3169706,'Biography'),(21255,3169706,'Comedy'),(21256,3169706,'Drama'),(21257,3170832,'Drama'),(21258,3170832,'Thriller'),(21259,3172532,'Comedy'),(21260,3172532,'Drama'),(21261,3172532,'Romance'),(21262,3175038,'Action'),(21263,3175038,'Crime'),(21264,3175038,'Drama'),(21265,3183630,'Adventure'),(21266,3183630,'Animation'),(21267,3183630,'Family'),(21268,3183660,'Adventure'),(21269,3183660,'Family'),(21270,3183660,'Fantasy'),(21271,3184934,'Comedy'),(21272,3184934,'Drama'),(21273,3184934,'Romance'),(21274,3186838,'Horror'),(21275,3195644,'Horror'),(21276,3195644,'Mystery'),(21277,3195644,'Thriller'),(21278,3198652,'Action'),(21279,3198652,'Adventure'),(21280,3198652,'Animation'),(21281,3201916,'Short'),(21282,3203528,'Crime'),(21283,3203528,'Horror'),(21284,3203528,'Thriller'),(21285,3203606,'Biography'),(21286,3203606,'Drama'),(21287,3203620,'Crime'),(21288,3203620,'Drama'),(21289,3203620,'Thriller'),(21290,3205376,'Action'),(21291,3205376,'Adventure'),(21292,3205376,'Drama'),(21293,3205394,'Comedy'),(21294,3205394,'Family'),(21295,3205394,'Romance'),(21296,3208026,'Action'),(21297,3208026,'Drama'),(21298,3208026,'History'),(21299,3212568,'Biography'),(21300,3212568,'Crime'),(21301,3212568,'Documentary'),(21302,3215824,'Action'),(21303,3215824,'Drama'),(21304,3215824,'Thriller'),(21305,3224458,'Biography'),(21306,3224458,'Drama'),(21307,3228774,'Adventure'),(21308,3228774,'Comedy'),(21309,3228774,'Crime'),(21310,3230162,'Drama'),(21311,3230162,'Romance'),(21312,3235888,'Horror'),(21313,3235888,'Mystery'),(21314,3235888,'Thriller'),(21315,3236120,'Comedy'),(21316,3236120,'Drama'),(21317,3236120,'Romance'),(21318,3247714,'Action'),(21319,3247714,'Crime'),(21320,3247714,'Thriller'),(21321,3252208,'Documentary'),(21322,3253930,'Action'),(21323,3253930,'Crime'),(21324,3253930,'Mystery'),(21325,3254796,'Comedy'),(21326,3254796,'Romance'),(21327,3255590,'Comedy'),(21328,3255590,'Crime'),(21329,3255590,'Western'),(21330,3257692,'Biography'),(21331,3257692,'Drama'),(21332,3262342,'Animation'),(21333,3262342,'Drama'),(21334,3262342,'Mystery'),(21335,3263614,'Drama'),(21336,3263732,'Drama'),(21337,3263732,'Family'),(21338,3263904,'Biography'),(21339,3263904,'Drama'),(21340,3268668,'Action'),(21341,3268668,'Biography'),(21342,3268668,'Crime'),(21343,3272066,'Mystery'),(21344,3272066,'Romance'),(21345,3272066,'Sci-Fi'),(21346,3274100,'Short'),(21347,3278330,'Drama'),(21348,3278330,'Fantasy'),(21349,3278330,'Horror'),(21350,3281548,'Drama'),(21351,3281548,'Romance'),(21352,3283556,'Adventure'),(21353,3283556,'Comedy'),(21354,3284618,'Comedy'),(21355,3286052,'Horror'),(21356,3286052,'Mystery'),(21357,3286052,'Thriller'),(21358,3289712,'Comedy'),(21359,3289712,'Drama'),(21360,3289712,'Romance'),(21361,3289724,'Biography'),(21362,3289724,'Comedy'),(21363,3289724,'Drama'),(21364,3289728,'Drama'),(21365,3289728,'Romance'),(21366,3289728,'Sci-Fi'),(21367,3289956,'Horror'),(21368,3289956,'Mystery'),(21369,3289956,'Thriller'),(21370,3291148,'Comedy'),(21371,3291148,'Drama'),(21372,3291148,'Thriller'),(21373,3294200,'Drama'),(21374,3294200,'Mystery'),(21375,3294200,'Thriller'),(21376,3294746,'Drama'),(21377,3296658,'Drama'),(21378,3296908,'Action'),(21379,3296908,'Biography'),(21380,3296908,'Thriller'),(21381,3298820,'Animation'),(21382,3298820,'Comedy'),(21383,3298820,'Music'),(21384,3303652,'Drama'),(21385,3306776,'Action'),(21386,3306776,'Animation'),(21387,3306776,'Fantasy'),(21388,3307774,'Comedy'),(21389,3312830,'Comedy'),(21390,3312830,'Drama'),(21391,3312830,'Music'),(21392,3315342,'Action'),(21393,3315342,'Drama'),(21394,3315342,'Sci-Fi'),(21395,3316948,'Action'),(21396,3316948,'Comedy'),(21397,3316960,'Drama'),(21398,3318220,'Drama'),(21399,3318220,'Romance'),(21400,3318220,'Sport'),(21401,3319018,'Drama'),(21402,3321254,'Animation'),(21403,3321254,'Family'),(21404,3322314,'Action'),(21405,3322314,'Crime'),(21406,3322314,'Drama'),(21407,3322364,'Biography'),(21408,3322364,'Drama'),(21409,3322364,'Sport'),(21410,3322420,'Adventure'),(21411,3322420,'Comedy'),(21412,3322420,'Drama'),(21413,3322940,'Horror'),(21414,3322940,'Mystery'),(21415,3322940,'Thriller'),(21416,3328716,'Drama'),(21417,3328716,'Family'),(21418,3332064,'Action'),(21419,3332064,'Adventure'),(21420,3332064,'Comedy'),(21421,3334794,'Comedy'),(21422,3334794,'Drama'),(21423,3335606,'Drama'),(21424,3335606,'Horror'),(21425,3335606,'Mystery'),(21426,3344922,'Drama'),(21427,3344922,'Romance'),(21428,3344922,'Thriller'),(21429,3348476,'Drama'),(21430,3348476,'Romance'),(21431,3348476,'Short'),(21432,3348730,'Horror'),(21433,3348730,'Mystery'),(21434,3348730,'Thriller'),(21435,3352390,'Horror'),(21436,3352390,'Mystery'),(21437,3352390,'Thriller'),(21438,3361792,'Biography'),(21439,3361792,'Drama'),(21440,3361792,'Romance'),(21441,3365778,'Drama'),(21442,3368222,'Comedy'),(21443,3368222,'Drama'),(21444,3368814,'Crime'),(21445,3368814,'Mystery'),(21446,3368814,'Thriller'),(21447,3369806,'Adventure'),(21448,3369806,'Drama'),(21449,3369806,'Family'),(21450,3371366,'Action'),(21451,3371366,'Adventure'),(21452,3371366,'Sci-Fi'),(21453,3381008,'Action'),(21454,3381008,'Adventure'),(21455,3381008,'Comedy'),(21456,3385516,'Action'),(21457,3385516,'Adventure'),(21458,3385516,'Sci-Fi'),(21459,3385524,'Biography'),(21460,3385524,'Comedy'),(21461,3385524,'Drama'),(21462,3386954,'Biography'),(21463,3386954,'Drama'),(21464,3386954,'Sport'),(21465,3387266,'Biography'),(21466,3387266,'Drama'),(21467,3387266,'History'),(21468,3387520,'Adventure'),(21469,3387520,'Horror'),(21470,3387520,'Mystery'),(21471,3387542,'Horror'),(21472,3387542,'Mystery'),(21473,3387542,'Thriller'),(21474,3387648,'Horror'),(21475,3387648,'Mystery'),(21476,3387648,'Thriller'),(21477,3390572,'Action'),(21478,3390572,'Crime'),(21479,3390572,'Drama'),(21480,3391348,'Family'),(21481,3393786,'Action'),(21482,3393786,'Crime'),(21483,3393786,'Drama'),(21484,3395184,'Horror'),(21485,3395184,'Romance'),(21486,3395184,'Sci-Fi'),(21487,3397082,'Comedy'),(21488,3397082,'Crime'),(21489,3397082,'Drama'),(21490,3397884,'Action'),(21491,3397884,'Crime'),(21492,3397884,'Drama'),(21493,3397918,'Horror'),(21494,3397918,'Sci-Fi'),(21495,3398268,'Animation'),(21496,3398268,'Drama'),(21497,3398268,'Family'),(21498,3401882,'Comedy'),(21499,3402236,'Crime'),(21500,3402236,'Drama'),(21501,3402236,'Mystery'),(21502,3410834,'Action'),(21503,3410834,'Adventure'),(21504,3410834,'Mystery'),(21505,3411444,'Adventure'),(21506,3411444,'Animation'),(21507,3411444,'Comedy'),(21508,3416532,'Adventure'),(21509,3416532,'Drama'),(21510,3416532,'Family'),(21511,3416742,'Comedy'),(21512,3416742,'Horror'),(21513,3416744,'Biography'),(21514,3416744,'Drama'),(21515,3416828,'Adventure'),(21516,3416828,'Animation'),(21517,3416828,'Comedy'),(21518,3421270,'Action'),(21519,3421270,'Crime'),(21520,3421270,'Thriller'),(21521,3422078,'Adventure'),(21522,3422078,'Animation'),(21523,3422078,'Comedy'),(21524,3427056,'Horror'),(21525,3427056,'Short'),(21526,3428912,'Crime'),(21527,3428912,'Drama'),(21528,3428912,'Thriller'),(21529,3430042,'Drama'),(21530,3430042,'Sci-Fi'),(21531,3430416,'Comedy'),(21532,3430416,'Thriller'),(21533,3431798,'Documentary'),(21534,3431798,'History'),(21535,3438514,'Animation'),(21536,3438514,'Comedy'),(21537,3438514,'Fantasy'),(21538,3440298,'Comedy'),(21539,3440298,'Family'),(21540,3440298,'Fantasy'),(21541,3442006,'Drama'),(21542,3447590,'Comedy'),(21543,3447590,'Drama'),(21544,3447590,'Family'),(21545,3450650,'Action'),(21546,3450650,'Comedy'),(21547,3450650,'Crime'),(21548,3450958,'Action'),(21549,3450958,'Adventure'),(21550,3450958,'Drama'),(21551,3451230,'Drama'),(21552,3451230,'Music'),(21553,3451230,'Romance'),(21554,3453052,'Drama'),(21555,3457342,'Drama'),(21556,3457734,'Comedy'),(21557,3458254,'Action'),(21558,3458254,'Drama'),(21559,3458254,'Horror'),(21560,3458510,'Comedy'),(21561,3458510,'Drama'),(21562,3460252,'Crime'),(21563,3460252,'Drama'),(21564,3460252,'Mystery'),(21565,3462710,'Drama'),(21566,3462710,'Thriller'),(21567,3463106,'Drama'),(21568,3463106,'Horror'),(21569,3463106,'Sci-Fi'),(21570,3464902,'Drama'),(21571,3464902,'Romance'),(21572,3464902,'Sci-Fi'),(21573,3468260,'Action'),(21574,3468260,'Animation'),(21575,3468260,'Sci-Fi'),(21576,3469046,'Adventure'),(21577,3469046,'Animation'),(21578,3469046,'Comedy'),(21579,3469518,'Comedy'),(21580,3469518,'Drama'),(21581,3470600,'Animation'),(21582,3470600,'Comedy'),(21583,3470600,'Family'),(21584,3471098,'Comedy'),(21585,3471098,'Drama'),(21586,3471098,'Romance'),(21587,3472226,'Action'),(21588,3472226,'Comedy'),(21589,3472226,'Fantasy'),(21590,3478232,'Action'),(21591,3478232,'Adventure'),(21592,3478232,'Fantasy'),(21593,3479316,'Action'),(21594,3479316,'Sci-Fi'),(21595,3480446,'Horror'),(21596,3480796,'Action'),(21597,3480796,'Sci-Fi'),(21598,3480796,'Thriller'),(21599,3480822,'Action'),(21600,3480822,'Adventure'),(21601,3480822,'Sci-Fi'),(21602,3483194,'Comedy'),(21603,3483194,'Drama'),(21604,3486626,'Adventure'),(21605,3486626,'Animation'),(21606,3486626,'Comedy'),(21607,3487994,'Action'),(21608,3487994,'Comedy'),(21609,3487994,'Horror'),(21610,3488710,'Adventure'),(21611,3488710,'Biography'),(21612,3488710,'Drama'),(21613,3498820,'Action'),(21614,3498820,'Sci-Fi'),(21615,3499048,'Comedy'),(21616,3499048,'Drama'),(21617,3501632,'Action'),(21618,3501632,'Adventure'),(21619,3501632,'Comedy'),(21620,3503460,'Drama'),(21621,3503460,'Mystery'),(21622,3503460,'Sci-Fi'),(21623,3504048,'Comedy'),(21624,3504048,'Horror'),(21625,3504048,'Mystery'),(21626,3504064,'Animation'),(21627,3504064,'Family'),(21628,3508566,'Short'),(21629,3508840,'Action'),(21630,3508840,'Drama'),(21631,3508840,'History'),(21632,3513498,'Action'),(21633,3513498,'Adventure'),(21634,3513498,'Animation'),(21635,3513500,'Action'),(21636,3513500,'Adventure'),(21637,3513500,'Animation'),(21638,3513548,'Biography'),(21639,3513548,'Crime'),(21640,3513548,'Drama'),(21641,3515892,'Drama'),(21642,3515892,'Music'),(21643,3521126,'Biography'),(21644,3521126,'Comedy'),(21645,3521126,'Drama'),(21646,3521164,'Adventure'),(21647,3521164,'Animation'),(21648,3521164,'Comedy'),(21649,3521332,'Drama'),(21650,3525168,'Comedy'),(21651,3525168,'Drama'),(21652,3528906,'Action'),(21653,3528906,'Animation'),(21654,3528906,'Comedy'),(21655,3529198,'Adventure'),(21656,3529198,'Animation'),(21657,3529198,'Comedy'),(21658,3529612,'Drama'),(21659,3529612,'Music'),(21660,3529656,'Drama'),(21661,3531202,'Action'),(21662,3531202,'Drama'),(21663,3531202,'History'),(21664,3531824,'Action'),(21665,3531824,'Adventure'),(21666,3531824,'Crime'),(21667,3532216,'Action'),(21668,3532216,'Comedy'),(21669,3532216,'Crime'),(21670,3532278,'Adventure'),(21671,3532278,'Drama'),(21672,3532278,'Family'),(21673,3544082,'Drama'),(21674,3544082,'Romance'),(21675,3544112,'Comedy'),(21676,3544112,'Drama'),(21677,3544112,'Music'),(21678,3544218,'Drama'),(21679,3546114,'Drama'),(21680,3546114,'Romance'),(21681,3553442,'Biography'),(21682,3553442,'Comedy'),(21683,3553442,'Drama'),(21684,3553976,'Comedy'),(21685,3553976,'Drama'),(21686,3554046,'Adventure'),(21687,3554046,'Animation'),(21688,3554046,'Comedy'),(21689,3556230,'Comedy'),(21690,3560546,'Horror'),(21691,3560546,'Thriller'),(21692,3564472,'Adventure'),(21693,3564472,'Comedy'),(21694,3564472,'Drama'),(21695,3564794,'Comedy'),(21696,3564794,'Drama'),(21697,3564794,'Fantasy'),(21698,3565264,'Crime'),(21699,3565264,'Mystery'),(21700,3565264,'Thriller'),(21701,3566726,'Comedy'),(21702,3567288,'Horror'),(21703,3567288,'Mystery'),(21704,3567288,'Thriller'),(21705,3569230,'Biography'),(21706,3569230,'Crime'),(21707,3569230,'Drama'),(21708,3569356,'Comedy'),(21709,3569356,'Drama'),(21710,3569356,'Romance'),(21711,3570168,'Action'),(21712,3570168,'Adventure'),(21713,3570168,'Comedy'),(21714,3572132,'Horror'),(21715,3576084,'Comedy'),(21716,3576084,'Drama'),(21717,3577624,'Comedy'),(21718,3577624,'Drama'),(21719,3577624,'War'),(21720,3579698,'Comedy'),(21721,3579698,'Drama'),(21722,3579698,'Family'),(21723,3581652,'Crime'),(21724,3581652,'Drama'),(21725,3581652,'Musical'),(21726,3589968,'Drama'),(21727,3595966,'Drama'),(21728,3598222,'Action'),(21729,3598222,'Adventure'),(21730,3605262,'Drama'),(21731,3605262,'Thriller'),(21732,3606752,'Adventure'),(21733,3606752,'Animation'),(21734,3606752,'Comedy'),(21735,3606756,'Action'),(21736,3606756,'Adventure'),(21737,3606756,'Animation'),(21738,3608930,'Action'),(21739,3608930,'Western'),(21740,3610746,'Horror'),(21741,3610746,'Thriller'),(21742,3612616,'Drama'),(21743,3614530,'Adventure'),(21744,3614530,'Drama'),(21745,3614530,'Family'),(21746,3616916,'Action'),(21747,3616916,'Drama'),(21748,3616916,'Thriller'),(21749,3620762,'Drama'),(21750,3620762,'Horror'),(21751,3622332,'Action'),(21752,3622332,'Adventure'),(21753,3622332,'Drama'),(21754,3622592,'Adventure'),(21755,3622592,'Comedy'),(21756,3622592,'Drama'),(21757,3623726,'Comedy'),(21758,3623726,'Drama'),(21759,3623726,'Music'),(21760,3625970,'Drama'),(21761,3625970,'Fantasy'),(21762,3625970,'Horror'),(21763,3627488,'Comedy'),(21764,3627488,'Drama'),(21765,3628584,'Comedy'),(21766,3628584,'Drama'),(21767,3631112,'Crime'),(21768,3631112,'Drama'),(21769,3631112,'Mystery'),(21770,3638604,'Comedy'),(21771,3640424,'Action'),(21772,3640424,'Drama'),(21773,3640424,'Romance'),(21774,3654680,'Horror'),(21775,3654796,'Crime'),(21776,3654796,'Drama'),(21777,3654796,'Horror'),(21778,3655522,'Drama'),(21779,3655972,'Comedy'),(21780,3655972,'Drama'),(21781,3659388,'Adventure'),(21782,3659388,'Drama'),(21783,3659388,'Sci-Fi'),(21784,3661298,'Thriller'),(21785,3661798,'Drama'),(21786,3666024,'Animation'),(21787,3666024,'Drama'),(21788,3666024,'Family'),(21789,3666210,'Drama'),(21790,3666210,'Sci-Fi'),(21791,3666210,'Thriller'),(21792,3671900,'Comedy'),(21793,3671900,'Horror'),(21794,3671900,'Sci-Fi'),(21795,3672742,'Action'),(21796,3672742,'Adventure'),(21797,3672742,'Comedy'),(21798,3682448,'Drama'),(21799,3682448,'History'),(21800,3682448,'Thriller'),(21801,3685622,'Drama'),(21802,3685622,'Thriller'),(21803,3686998,'Documentary'),(21804,3691740,'Adventure'),(21805,3691740,'Family'),(21806,3691740,'Fantasy'),(21807,3696086,'Biography'),(21808,3696086,'Drama'),(21809,3696086,'Romance'),(21810,3700804,'Comedy'),(21811,3700804,'Romance'),(21812,3704352,'Biography'),(21813,3704352,'Drama'),(21814,3704352,'Music'),(21815,3704428,'Biography'),(21816,3704428,'Drama'),(21817,3704428,'Music'),(21818,3706352,'Mystery'),(21819,3706352,'Thriller'),(21820,3707106,'Drama'),(21821,3707106,'Romance'),(21822,3707396,'Comedy'),(21823,3707396,'Drama'),(21824,3708886,'Action'),(21825,3708886,'Comedy'),(21826,3708886,'Crime'),(21827,3711622,'Adventure'),(21828,3711622,'Animation'),(21829,3711622,'Comedy'),(21830,3713166,'Horror'),(21831,3713166,'Mystery'),(21832,3713166,'Thriller'),(21833,3715122,'Drama'),(21834,3715320,'Comedy'),(21835,3715320,'Crime'),(21836,3715320,'Drama'),(21837,3716530,'Crime'),(21838,3716530,'Drama'),(21839,3716530,'Thriller'),(21840,3717016,'Comedy'),(21841,3717068,'Drama'),(21842,3717242,'Biography'),(21843,3717242,'Crime'),(21844,3717242,'Documentary'),(21845,3717252,'Action'),(21846,3717252,'Adventure'),(21847,3717252,'Fantasy'),(21848,3717490,'Action'),(21849,3717490,'Adventure'),(21850,3717490,'Fantasy'),(21851,3717532,'Action'),(21852,3717532,'Adventure'),(21853,3717532,'Animation'),(21854,3720788,'Drama'),(21855,3720788,'Romance'),(21856,3720802,'Drama'),(21857,3720802,'Thriller'),(21858,3721936,'Adventure'),(21859,3721936,'Drama'),(21860,3721936,'Romance'),(21861,3721954,'Biography'),(21862,3721954,'Drama'),(21863,3721954,'Romance'),(21864,3722070,'Biography'),(21865,3722070,'Comedy'),(21866,3722070,'Drama'),(21867,3726220,'Animation'),(21868,3726220,'Family'),(21869,3726682,'Animation'),(21870,3726682,'Drama'),(21871,3726682,'Fantasy'),(21872,3726704,'Biography'),(21873,3726704,'Drama'),(21874,3726704,'History'),(21875,3727982,'Comedy'),(21876,3727982,'Horror'),(21877,3727982,'Mystery'),(21878,3729920,'Drama'),(21879,3729920,'Romance'),(21880,3731562,'Action'),(21881,3731562,'Adventure'),(21882,3731562,'Fantasy'),(21883,3735246,'Action'),(21884,3735246,'Drama'),(21885,3735246,'History'),(21886,3741700,'Action'),(21887,3741700,'Adventure'),(21888,3741700,'Fantasy'),(21889,3741834,'Biography'),(21890,3741834,'Drama'),(21891,3742378,'Comedy'),(21892,3742378,'Drama'),(21893,3748076,'Horror'),(21894,3748076,'Thriller'),(21895,3748172,'Drama'),(21896,3748172,'Horror'),(21897,3748172,'Thriller'),(21898,3748528,'Action'),(21899,3748528,'Adventure'),(21900,3748528,'Sci-Fi'),(21901,3749900,'Action'),(21902,3749900,'Crime'),(21903,3749900,'Drama'),(21904,3750872,'Drama'),(21905,3756788,'Drama'),(21906,3756788,'Family'),(21907,3757648,'Drama'),(21908,3760922,'Comedy'),(21909,3760922,'Romance'),(21910,3764966,'Drama'),(21911,3764966,'Family'),(21912,3764966,'Fantasy'),(21913,3766394,'Comedy'),(21914,3766394,'Drama'),(21915,3766394,'Romance'),(21916,3774114,'Biography'),(21917,3774114,'Crime'),(21918,3774114,'Drama'),(21919,3774802,'Action'),(21920,3774802,'Horror'),(21921,3774802,'Sci-Fi'),(21922,3775086,'Action'),(21923,3775086,'Comedy'),(21924,3775086,'Drama'),(21925,3777462,'Comedy'),(21926,3778644,'Action'),(21927,3778644,'Adventure'),(21928,3778644,'Sci-Fi'),(21929,3783958,'Comedy'),(21930,3783958,'Drama'),(21931,3783958,'Music'),(21932,3794354,'Action'),(21933,3794354,'Adventure'),(21934,3794354,'Comedy'),(21935,3797512,'Comedy'),(21936,3797512,'Fantasy'),(21937,3797868,'Drama'),(21938,3797868,'Romance'),(21939,3799232,'Comedy'),(21940,3799232,'Romance'),(21941,3799694,'Action'),(21942,3799694,'Comedy'),(21943,3799694,'Crime'),(21944,3800012,'Comedy'),(21945,3800012,'Drama'),(21946,3801372,'Comedy'),(21947,3804984,'Horror'),(21948,3804984,'Short'),(21949,3811906,'Crime'),(21950,3811906,'Horror'),(21951,3811906,'Mystery'),(21952,3812402,'Crime'),(21953,3812402,'Drama'),(21954,3812402,'Family'),(21955,3817188,'Drama'),(21956,3817188,'War'),(21957,3819668,'Action'),(21958,3819668,'Adventure'),(21959,3819668,'Animation'),(21960,3824458,'Comedy'),(21961,3824458,'Crime'),(21962,3824458,'Drama'),(21963,3829266,'Action'),(21964,3829266,'Adventure'),(21965,3829266,'Horror'),(21966,3829378,'Horror'),(21967,3829378,'Mystery'),(21968,3829920,'Action'),(21969,3829920,'Biography'),(21970,3829920,'Drama'),(21971,3832158,'Animation'),(21972,3832158,'Family'),(21973,3833474,'Action'),(21974,3833474,'Drama'),(21975,3833474,'Thriller'),(21976,3837248,'Animation'),(21977,3837248,'Comedy'),(21978,3837248,'Drama'),(21979,3838728,'Drama'),(21980,3838728,'Romance'),(21981,3838802,'Drama'),(21982,3838802,'Thriller'),(21983,3838802,'War'),(21984,3838992,'Action'),(21985,3838992,'Comedy'),(21986,3838992,'Horror'),(21987,3840898,'Comedy'),(21988,3840898,'Drama'),(21989,3844362,'Comedy'),(21990,3844362,'Mystery'),(21991,3844962,'Horror'),(21992,3844962,'Mystery'),(21993,3845670,'Action'),(21994,3845670,'Animation'),(21995,3845670,'Horror'),(21996,3846674,'Comedy'),(21997,3846674,'Drama'),(21998,3846674,'Romance'),(21999,3850214,'Adventure'),(22000,3850214,'Comedy'),(22001,3850214,'Crime'),(22002,3850590,'Comedy'),(22003,3850590,'Drama'),(22004,3850590,'Fantasy'),(22005,3854234,'Crime'),(22006,3854234,'Drama'),(22007,3856042,'Adventure'),(22008,3856042,'Comedy'),(22009,3856042,'Family'),(22010,3856638,'Animation'),(22011,3859272,'Comedy'),(22012,3859272,'Crime'),(22013,3859272,'Horror'),(22014,3859304,'Comedy'),(22015,3859304,'Drama'),(22016,3859304,'Sport'),(22017,3862750,'Drama'),(22018,3862750,'Romance'),(22019,3862750,'Thriller'),(22020,3864056,'Drama'),(22021,3874544,'Adventure'),(22022,3874544,'Animation'),(22023,3874544,'Comedy'),(22024,3877674,'Comedy'),(22025,3877674,'Drama'),(22026,3877674,'Mystery'),(22027,3878542,'Action'),(22028,3878542,'Adventure'),(22029,3878542,'Animation'),(22030,3882074,'Adventure'),(22031,3882074,'Documentary'),(22032,3882074,'Sport'),(22033,3882082,'Horror'),(22034,3882082,'Mystery'),(22035,3882082,'Thriller'),(22036,3887208,'Comedy'),(22037,3887208,'Drama'),(22038,3890160,'Action'),(22039,3890160,'Crime'),(22040,3890160,'Drama'),(22041,3892172,'Adventure'),(22042,3892172,'Drama'),(22043,3893280,'Drama'),(22044,3896100,'Adventure'),(22045,3896100,'Animation'),(22046,3896100,'Comedy'),(22047,3896198,'Action'),(22048,3896198,'Adventure'),(22049,3896198,'Comedy'),(22050,3896738,'Crime'),(22051,3896738,'Drama'),(22052,3896738,'Thriller'),(22053,3899796,'Action'),(22054,3899796,'Adventure'),(22055,3899796,'Comedy'),(22056,3901340,'Drama'),(22057,3901340,'Thriller'),(22058,3901826,'Animation'),(22059,3901826,'Drama'),(22060,3901826,'Family'),(22061,3904770,'Drama'),(22062,3906082,'Biography'),(22063,3906082,'Drama'),(22064,3906082,'History'),(22065,3907584,'Drama'),(22066,3907584,'Romance'),(22067,3908142,'Comedy'),(22068,3908142,'Horror'),(22069,3908142,'Romance'),(22070,3915174,'Adventure'),(22071,3915174,'Animation'),(22072,3915174,'Comedy'),(22073,3921852,'Animation'),(22074,3921852,'Family'),(22075,3922798,'Action'),(22076,3922798,'Drama'),(22077,3922798,'History'),(22078,3922818,'Drama'),(22079,3922818,'Romance'),(22080,3922818,'Sci-Fi'),(22081,3949660,'Action'),(22082,3949660,'Adventure'),(22083,3949660,'Comedy'),(22084,3953626,'Drama'),(22085,3958098,'Drama'),(22086,3958780,'Drama'),(22087,3960412,'Comedy'),(22088,3960412,'Drama'),(22089,3960412,'Music'),(22090,3963816,'Action'),(22091,3963816,'Crime'),(22092,3963816,'Thriller'),(22093,3966404,'Drama'),(22094,3967856,'Action'),(22095,3967856,'Adventure'),(22096,3967856,'Drama'),(22097,3969208,'Drama'),(22098,3973012,'Comedy'),(22099,3973012,'Crime'),(22100,3973012,'Mystery'),(22101,3977428,'Drama'),(22102,3977462,'Biography'),(22103,3977462,'Drama'),(22104,3977462,'Family'),(22105,3978720,'Comedy'),(22106,3978720,'Drama'),(22107,3981858,'Crime'),(22108,3981858,'Drama'),(22109,3981858,'Thriller'),(22110,3983072,'Comedy'),(22111,3983072,'Drama'),(22112,3986820,'Drama'),(22113,3986820,'Fantasy'),(22114,3986820,'Horror'),(22115,3991412,'Drama'),(22116,3991412,'Mystery'),(22117,3991412,'Thriller'),(22118,3992752,'Comedy'),(22119,3992752,'Documentary'),(22120,3993894,'Drama'),(22121,3993894,'Mystery'),(22122,3993894,'Thriller'),(22123,4000768,'Drama'),(22124,4000768,'History'),(22125,4000768,'Thriller'),(22126,4003440,'Crime'),(22127,4003440,'Drama'),(22128,4003440,'Horror'),(22129,4003774,'Documentary'),(22130,4005402,'Biography'),(22131,4005402,'Drama'),(22132,4005402,'History'),(22133,4006302,'Drama'),(22134,4006302,'Mystery'),(22135,4006302,'Sci-Fi'),(22136,4007248,'Comedy'),(22137,4007248,'Drama'),(22138,4009278,'Drama'),(22139,4009278,'Horror'),(22140,4009278,'Thriller'),(22141,4010918,'Drama'),(22142,4010918,'History'),(22143,4016934,'Drama'),(22144,4016934,'Romance'),(22145,4016934,'Thriller'),(22146,4026600,'Adventure'),(22147,4026600,'Fantasy'),(22148,4028464,'Drama'),(22149,4028464,'Fantasy'),(22150,4028464,'Horror'),(22151,4030600,'Drama'),(22152,4030600,'Fantasy'),(22153,4030600,'Horror'),(22154,4034228,'Drama'),(22155,4034354,'Comedy'),(22156,4034354,'Drama'),(22157,4034354,'Fantasy'),(22158,4042818,'Drama'),(22159,4044364,'Biography'),(22160,4044364,'Documentary'),(22161,4046784,'Action'),(22162,4046784,'Adventure'),(22163,4046784,'Sci-Fi'),(22164,4048272,'Comedy'),(22165,4048272,'Drama'),(22166,4052882,'Action'),(22167,4052882,'Drama'),(22168,4052882,'Horror'),(22169,4056574,'Comedy'),(22170,4056574,'Crime'),(22171,4056574,'Drama'),(22172,4056738,'Drama'),(22173,4060576,'Action'),(22174,4060576,'Adventure'),(22175,4060576,'Comedy'),(22176,4062536,'Crime'),(22177,4062536,'Drama'),(22178,4062536,'Horror'),(22179,4065552,'Drama'),(22180,4065552,'War'),(22181,4069042,'Drama'),(22182,4069042,'Horror'),(22183,4069042,'Thriller'),(22184,4073790,'Action'),(22185,4073790,'Adventure'),(22186,4073790,'Drama'),(22187,4074928,'Drama'),(22188,4074928,'Sci-Fi'),(22189,4080768,'Drama'),(22190,4080768,'Romance'),(22191,4082644,'Comedy'),(22192,4082644,'Horror'),(22193,4082644,'Sci-Fi'),(22194,4084744,'Action'),(22195,4084744,'Biography'),(22196,4084744,'Drama'),(22197,4085084,'Drama'),(22198,4085084,'Thriller'),(22199,4093680,'Drama'),(22200,4094724,'Action'),(22201,4094724,'Horror'),(22202,4094724,'Sci-Fi'),(22203,4104054,'Comedy'),(22204,4104054,'War'),(22205,4108134,'Crime'),(22206,4108134,'Drama'),(22207,4108134,'Mystery'),(22208,4114744,'Drama'),(22209,4114744,'Music'),(22210,4114744,'Romance'),(22211,4116284,'Action'),(22212,4116284,'Adventure'),(22213,4116284,'Animation'),(22214,4120176,'Drama'),(22215,4123430,'Adventure'),(22216,4123430,'Family'),(22217,4123430,'Fantasy'),(22218,4123432,'Adventure'),(22219,4123432,'Family'),(22220,4123432,'Fantasy'),(22221,4125300,'Animation'),(22222,4125300,'Drama'),(22223,4126476,'Drama'),(22224,4126476,'Romance'),(22225,4126568,'Adventure'),(22226,4126568,'Drama'),(22227,4126568,'Horror'),(22228,4131800,'Adventure'),(22229,4131800,'Animation'),(22230,4131800,'Comedy'),(22231,4136084,'Biography'),(22232,4136084,'Comedy'),(22233,4136084,'Drama'),(22234,4139124,'Action'),(22235,4139124,'Comedy'),(22236,4139124,'Crime'),(22237,4139588,'Action'),(22238,4139588,'Thriller'),(22239,4139928,'Action'),(22240,4139928,'Drama'),(22241,4139928,'Fantasy'),(22242,4144190,'Comedy'),(22243,4144190,'Drama'),(22244,4144332,'Comedy'),(22245,4144332,'Crime'),(22246,4144332,'Drama'),(22247,4145304,'Comedy'),(22248,4145304,'Drama'),(22249,4145324,'Drama'),(22250,4145324,'Thriller'),(22251,4150316,'Adventure'),(22252,4150316,'Animation'),(22253,4150316,'Family'),(22254,4153324,'Crime'),(22255,4153324,'Drama'),(22256,4154664,'Action'),(22257,4154664,'Adventure'),(22258,4154664,'Sci-Fi'),(22259,4154756,'Action'),(22260,4154756,'Adventure'),(22261,4154756,'Sci-Fi'),(22262,4154796,'Action'),(22263,4154796,'Adventure'),(22264,4154796,'Drama'),(22265,4157510,'Comedy'),(22266,4157510,'Drama'),(22267,4158096,'Action'),(22268,4158096,'Comedy'),(22269,4158096,'Crime'),(22270,4158876,'Comedy'),(22271,4158876,'Drama'),(22272,4160708,'Crime'),(22273,4160708,'Horror'),(22274,4160708,'Thriller'),(22275,4171032,'Animation'),(22276,4171032,'Comedy'),(22277,4171032,'Drama'),(22278,4171544,'Action'),(22279,4171544,'Horror'),(22280,4171544,'Sci-Fi'),(22281,4172430,'Action'),(22282,4172430,'Drama'),(22283,4172430,'History'),(22284,4178092,'Drama'),(22285,4178092,'Mystery'),(22286,4178092,'Thriller'),(22287,4180032,'Comedy'),(22288,4180032,'Drama'),(22289,4180032,'Romance'),(22290,4180560,'Comedy'),(22291,4183692,'Biography'),(22292,4183692,'Drama'),(22293,4183692,'History'),(22294,4191054,'Adventure'),(22295,4191054,'Animation'),(22296,4191054,'Comedy'),(22297,4191580,'Comedy'),(22298,4191580,'Horror'),(22299,4191702,'Drama'),(22300,4191702,'Thriller'),(22301,4195368,'Comedy'),(22302,4195368,'Drama'),(22303,4196450,'Biography'),(22304,4196450,'Drama'),(22305,4196450,'History'),(22306,4196776,'Action'),(22307,4196776,'Thriller'),(22308,4196848,'Comedy'),(22309,4196848,'Drama'),(22310,4197642,'Comedy'),(22311,4197642,'Drama'),(22312,4197642,'Romance'),(22313,4209788,'Biography'),(22314,4209788,'Crime'),(22315,4209788,'Drama'),(22316,4211044,'Comedy'),(22317,4211044,'Drama'),(22318,4211680,'Short'),(22319,4216934,'Comedy'),(22320,4218572,'Crime'),(22321,4218572,'Drama'),(22322,4218572,'Thriller'),(22323,4218696,'Action'),(22324,4218696,'Drama'),(22325,4218696,'Thriller'),(22326,4225622,'Comedy'),(22327,4225622,'Horror'),(22328,4226388,'Crime'),(22329,4226388,'Drama'),(22330,4226388,'Romance'),(22331,4235644,'Animation'),(22332,4235644,'Horror'),(22333,4235644,'Sci-Fi'),(22334,4238858,'Drama'),(22335,4238858,'Music'),(22336,4244994,'Action'),(22337,4244994,'Drama'),(22338,4244994,'History'),(22339,4244998,'Action'),(22340,4244998,'Adventure'),(22341,4244998,'Drama'),(22342,4247682,'Action'),(22343,4247682,'Adventure'),(22344,4247682,'Horror'),(22345,4247740,'Drama'),(22346,4255304,'Horror'),(22347,4255304,'Mystery'),(22348,4255304,'Sci-Fi'),(22349,4257940,'Drama'),(22350,4257940,'Romance'),(22351,4258698,'Biography'),(22352,4258698,'Drama'),(22353,4258698,'History'),(22354,4259780,'Drama'),(22355,4259780,'Short'),(22356,4262174,'Drama'),(22357,4262174,'Romance'),(22358,4262980,'Action'),(22359,4262980,'Drama'),(22360,4262980,'Horror'),(22361,4263482,'Drama'),(22362,4263482,'Fantasy'),(22363,4263482,'Horror'),(22364,4264406,'Documentary'),(22365,4265878,'Drama'),(22366,4265878,'Romance'),(22367,4270492,'Drama'),(22368,4270516,'Comedy'),(22369,4270516,'Drama'),(22370,4273292,'Drama'),(22371,4273292,'Fantasy'),(22372,4273292,'Horror'),(22373,4273562,'Adventure'),(22374,4273562,'Animation'),(22375,4273562,'Drama'),(22376,4273800,'Biography'),(22377,4273800,'Crime'),(22378,4273800,'Drama'),(22379,4277264,'Drama'),(22380,4277264,'Romance'),(22381,4281724,'Horror'),(22382,4281724,'Thriller'),(22383,4287320,'Drama'),(22384,4287320,'Mystery'),(22385,4287320,'Sci-Fi'),(22386,4291590,'Drama'),(22387,4291590,'Horror'),(22388,4291590,'Mystery'),(22389,4298958,'Drama'),(22390,4298966,'Mystery'),(22391,4298966,'Thriller'),(22392,4299406,'Comedy'),(22393,4302938,'Action'),(22394,4302938,'Adventure'),(22395,4302938,'Animation'),(22396,4305148,'Drama'),(22397,4305148,'Romance'),(22398,4308714,'Comedy'),(22399,4308714,'Horror'),(22400,4308714,'Sci-Fi'),(22401,4319698,'Biography'),(22402,4319698,'Drama'),(22403,4322180,'Drama'),(22404,4326444,'Drama'),(22405,4326444,'Mystery'),(22406,4326444,'Romance'),(22407,4331970,'Drama'),(22408,4331970,'Romance'),(22409,4341532,'Mystery'),(22410,4341532,'Sci-Fi'),(22411,4341532,'Thriller'),(22412,4341582,'Biography'),(22413,4341582,'Drama'),(22414,4341582,'Sport'),(22415,4341864,'Drama'),(22416,4341864,'Romance'),(22417,4348012,'Action'),(22418,4348012,'Comedy'),(22419,4348012,'Horror'),(22420,4357394,'Horror'),(22421,4357394,'Sci-Fi'),(22422,4357394,'Thriller'),(22423,4359416,'Comedy'),(22424,4359416,'Drama'),(22425,4361050,'Drama'),(22426,4361050,'Horror'),(22427,4361050,'Mystery'),(22428,4364194,'Adventure'),(22429,4364194,'Comedy'),(22430,4364194,'Drama'),(22431,4366830,'Comedy'),(22432,4366830,'Musical'),(22433,4366830,'Romance'),(22434,4370784,'Drama'),(22435,4370784,'History'),(22436,4382872,'Action'),(22437,4382872,'Thriller'),(22438,4383594,'Comedy'),(22439,4383594,'Drama'),(22440,4383594,'Family'),(22441,4385888,'Comedy'),(22442,4385888,'Drama'),(22443,4392438,'Drama'),(22444,4392726,'Comedy'),(22445,4392726,'Musical'),(22446,4392726,'Romance'),(22447,4392770,'Drama'),(22448,4392770,'Horror'),(22449,4392770,'Mystery'),(22450,4396662,'Comedy'),(22451,4396662,'Musical'),(22452,4396662,'Romance'),(22453,4411596,'Drama'),(22454,4411596,'Mystery'),(22455,4411596,'Romance'),(22456,4420110,'Adventure'),(22457,4420110,'Comedy'),(22458,4420110,'Family'),(22459,4425152,'Crime'),(22460,4425152,'Drama'),(22461,4425152,'Fantasy'),(22462,4425200,'Action'),(22463,4425200,'Crime'),(22464,4425200,'Thriller'),(22465,4426738,'Comedy'),(22466,4426738,'Drama'),(22467,4428788,'Comedy'),(22468,4428788,'Drama'),(22469,4428788,'Music'),(22470,4428814,'Drama'),(22471,4437640,'Action'),(22472,4437640,'Adventure'),(22473,4437640,'Animation'),(22474,4438848,'Comedy'),(22475,4439120,'Action'),(22476,4439120,'Drama'),(22477,4439120,'Fantasy'),(22478,4443658,'Comedy'),(22479,4443658,'Horror'),(22480,4443658,'Thriller'),(22481,4450396,'Animation'),(22482,4450396,'Family'),(22483,4450396,'Fantasy'),(22484,4456850,'Adventure'),(22485,4456850,'Comedy'),(22486,4456850,'Family'),(22487,4465564,'Drama'),(22488,4465564,'Romance'),(22489,4465564,'Thriller'),(22490,4466872,'Drama'),(22491,4466936,'Comedy'),(22492,4466936,'Romance'),(22493,4468634,'Drama'),(22494,4468740,'Adventure'),(22495,4468740,'Comedy'),(22496,4468740,'Family'),(22497,4472596,'Horror'),(22498,4477292,'Adventure'),(22499,4477292,'Mystery'),(22500,4477292,'Sci-Fi'),(22501,4477536,'Drama'),(22502,4477536,'Romance'),(22503,4477536,'Thriller'),(22504,4481414,'Drama'),(22505,4485178,'Drama'),(22506,4489160,'Comedy'),(22507,4489160,'Romance'),(22508,4500922,'Action'),(22509,4500922,'Adventure'),(22510,4500922,'Sci-Fi'),(22511,4501454,'Comedy'),(22512,4501454,'Drama'),(22513,4501454,'Romance'),(22514,4503598,'Horror'),(22515,4503598,'Mystery'),(22516,4503598,'Thriller'),(22517,4513316,'Drama'),(22518,4513674,'Comedy'),(22519,4513674,'Drama'),(22520,4513674,'Romance'),(22521,4513678,'Adventure'),(22522,4513678,'Comedy'),(22523,4513678,'Fantasy'),(22524,4515684,'Comedy'),(22525,4520364,'Action'),(22526,4520364,'Horror'),(22527,4520364,'Sci-Fi'),(22528,4520988,'Adventure'),(22529,4520988,'Animation'),(22530,4520988,'Comedy'),(22531,4530422,'Action'),(22532,4530422,'Horror'),(22533,4530422,'Sci-Fi'),(22534,4532826,'Action'),(22535,4532826,'Adventure'),(22536,4532826,'Drama'),(22537,4540710,'Drama'),(22538,4547056,'Action'),(22539,4547056,'Adventure'),(22540,4547056,'Drama'),(22541,4547194,'Drama'),(22542,4547194,'Fantasy'),(22543,4547194,'Thriller'),(22544,4550098,'Drama'),(22545,4550098,'Thriller'),(22546,4551882,'Drama'),(22547,4551882,'Thriller'),(22548,4552196,'Drama'),(22549,4555426,'Biography'),(22550,4555426,'Drama'),(22551,4555426,'War'),(22552,4566758,'Action'),(22553,4566758,'Adventure'),(22554,4566758,'Drama'),(22555,4569374,'Thriller'),(22556,4575576,'Adventure'),(22557,4575576,'Comedy'),(22558,4575576,'Drama'),(22559,4576612,'Comedy'),(22560,4576612,'Drama'),(22561,4576612,'Music'),(22562,4593060,'Adventure'),(22563,4593060,'Comedy'),(22564,4593060,'Drama'),(22565,4594834,'Comedy'),(22566,4594834,'Crime'),(22567,4594834,'Drama'),(22568,4595882,'Biography'),(22569,4595882,'Comedy'),(22570,4595882,'Crime'),(22571,4614584,'Drama'),(22572,4614584,'Music'),(22573,4614584,'Romance'),(22574,4621872,'Comedy'),(22575,4621872,'Drama'),(22576,4622512,'Biography'),(22577,4622512,'Comedy'),(22578,4622512,'Drama'),(22579,4624424,'Adventure'),(22580,4624424,'Animation'),(22581,4624424,'Comedy'),(22582,4627404,'Adventure'),(22583,4627404,'Animation'),(22584,4627404,'Drama'),(22585,4630562,'Action'),(22586,4630562,'Crime'),(22587,4630562,'Thriller'),(22588,4633694,'Action'),(22589,4633694,'Adventure'),(22590,4633694,'Animation'),(22591,4644822,'Comedy'),(22592,4645330,'Biography'),(22593,4645330,'Drama'),(22594,4645368,'Drama'),(22595,4648786,'Action'),(22596,4648786,'Biography'),(22597,4648786,'Drama'),(22598,4649416,'Comedy'),(22599,4649416,'Drama'),(22600,4649416,'Romance'),(22601,4649466,'Action'),(22602,4649466,'Adventure'),(22603,4649466,'Comedy'),(22604,4651520,'Comedy'),(22605,4652650,'Comedy'),(22606,4652650,'Drama'),(22607,4666726,'Biography'),(22608,4666726,'Drama'),(22609,4667788,'Drama'),(22610,4669296,'Biography'),(22611,4669296,'Drama'),(22612,4669296,'Horror'),(22613,4669788,'Biography'),(22614,4669788,'Drama'),(22615,4669986,'Biography'),(22616,4669986,'Drama'),(22617,4669986,'Romance'),(22618,4680182,'Comedy'),(22619,4680182,'Drama'),(22620,4680182,'Fantasy'),(22621,4680196,'Drama'),(22622,4680196,'Fantasy'),(22623,4680196,'Mystery'),(22624,4682266,'Action'),(22625,4682266,'Horror'),(22626,4682266,'Mystery'),(22627,4682708,'Drama'),(22628,4682708,'Fantasy'),(22629,4682708,'Horror'),(22630,4682786,'Drama'),(22631,4682786,'Romance'),(22632,4682804,'Drama'),(22633,4682804,'Romance'),(22634,4682804,'Thriller'),(22635,4685762,'Drama'),(22636,4685762,'Fantasy'),(22637,4685762,'Horror'),(22638,4686844,'Comedy'),(22639,4686844,'Drama'),(22640,4686844,'History'),(22641,4687108,'Horror'),(22642,4687108,'Mystery'),(22643,4687108,'Sci-Fi'),(22644,4691166,'Drama'),(22645,4692234,'Drama'),(22646,4692234,'Romance'),(22647,4693358,'Crime'),(22648,4693358,'Drama'),(22649,4693358,'Mystery'),(22650,4693588,'Biography'),(22651,4693588,'Comedy'),(22652,4693588,'Drama'),(22653,4695012,'Drama'),(22654,4695012,'Horror'),(22655,4695012,'Mystery'),(22656,4698584,'Biography'),(22657,4698584,'Crime'),(22658,4698584,'Drama'),(22659,4698684,'Adventure'),(22660,4698684,'Comedy'),(22661,4698684,'Drama'),(22662,4699388,'Comedy'),(22663,4699388,'Romance'),(22664,4701182,'Action'),(22665,4701182,'Adventure'),(22666,4701182,'Sci-Fi'),(22667,4701724,'Adventure'),(22668,4701724,'Animation'),(22669,4701724,'Comedy'),(22670,4703048,'Action'),(22671,4703048,'Drama'),(22672,4703048,'History'),(22673,4714032,'Animation'),(22674,4714032,'Sci-Fi'),(22675,4714568,'Adventure'),(22676,4714568,'Comedy'),(22677,4714568,'Crime'),(22678,4714782,'Mystery'),(22679,4714782,'Thriller'),(22680,4717402,'Action'),(22681,4717402,'Animation'),(22682,4717402,'Comedy'),(22683,4718770,'Adventure'),(22684,4718770,'Family'),(22685,4718770,'Fantasy'),(22686,4720702,'Action'),(22687,4720702,'Thriller'),(22688,4729430,'Adventure'),(22689,4729430,'Animation'),(22690,4729430,'Comedy'),(22691,4729896,'Drama'),(22692,4730986,'Crime'),(22693,4730986,'Drama'),(22694,4731136,'Drama'),(22695,4731136,'Fantasy'),(22696,4731136,'Horror'),(22697,4731504,'Action'),(22698,4731504,'Adventure'),(22699,4731504,'Animation'),(22700,4733624,'Comedy'),(22701,4733624,'Drama'),(22702,4738174,'Action'),(22703,4738174,'Comedy'),(22704,4738174,'Crime'),(22705,4738360,'Action'),(22706,4738360,'Drama'),(22707,4738360,'History'),(22708,4738802,'Comedy'),(22709,4746506,'Drama'),(22710,4746506,'Romance'),(22711,4758646,'Comedy'),(22712,4758646,'Drama'),(22713,4758646,'War'),(22714,4761112,'Biography'),(22715,4761112,'Crime'),(22716,4761112,'Drama'),(22717,4765284,'Comedy'),(22718,4765284,'Music'),(22719,4766604,'Comedy'),(22720,4767274,'Drama'),(22721,4767274,'Family'),(22722,4767274,'Musical'),(22723,4777008,'Adventure'),(22724,4777008,'Family'),(22725,4777008,'Fantasy'),(22726,4779026,'Action'),(22727,4779026,'Comedy'),(22728,4779026,'Horror'),(22729,4779682,'Action'),(22730,4779682,'Horror'),(22731,4779682,'Sci-Fi'),(22732,4780834,'Adventure'),(22733,4780834,'Comedy'),(22734,4780834,'Short'),(22735,4786282,'Horror'),(22736,4786282,'Mystery'),(22737,4788934,'Animation'),(22738,4788934,'Comedy'),(22739,4788934,'Family'),(22740,4794188,'History'),(22741,4795124,'Comedy'),(22742,4795124,'Drama'),(22743,4798836,'Comedy'),(22744,4798836,'Horror'),(22745,4798836,'Music'),(22746,4799050,'Comedy'),(22747,4800178,'Comedy'),(22748,4800178,'Drama'),(22749,4805316,'Drama'),(22750,4805316,'Fantasy'),(22751,4805316,'Horror'),(22752,4807408,'Biography'),(22753,4807408,'Drama'),(22754,4807408,'History'),(22755,4807950,'Comedy'),(22756,4807950,'Musical'),(22757,4823434,'Fantasy'),(22758,4823434,'Horror'),(22759,4823434,'Mystery'),(22760,4824302,'Comedy'),(22761,4824302,'Drama'),(22762,4824302,'Romance'),(22763,4827558,'Adventure'),(22764,4827558,'Drama'),(22765,4827558,'Horror'),(22766,4831420,'Action'),(22767,4831420,'Adventure'),(22768,4831420,'Comedy'),(22769,4836736,'Drama'),(22770,4836736,'Fantasy'),(22771,4836736,'Sci-Fi'),(22772,4846232,'Crime'),(22773,4846232,'Drama'),(22774,4846232,'Thriller'),(22775,4846340,'Biography'),(22776,4846340,'Drama'),(22777,4846340,'History'),(22778,4853102,'Action'),(22779,4853102,'Animation'),(22780,4853102,'Crime'),(22781,4857264,'Crime'),(22782,4857264,'Drama'),(22783,4857264,'Mystery'),(22784,4858280,'Short'),(22785,4858280,'Thriller'),(22786,4858674,'Comedy'),(22787,4858674,'Drama'),(22788,4858674,'Family'),(22789,4867110,'Comedy'),(22790,4867110,'Romance'),(22791,4869556,'Drama'),(22792,4870838,'Action'),(22793,4870838,'Adventure'),(22794,4870838,'Animation'),(22795,4871980,'Comedy'),(22796,4871980,'Romance'),(22797,4877122,'Adventure'),(22798,4877122,'Animation'),(22799,4877122,'Comedy'),(22800,4878482,'Comedy'),(22801,4878482,'Drama'),(22802,4881806,'Action'),(22803,4881806,'Adventure'),(22804,4881806,'Sci-Fi'),(22805,4895668,'Crime'),(22806,4895668,'Drama'),(22807,4895704,'Drama'),(22808,4895704,'Short'),(22809,4897214,'Sci-Fi'),(22810,4897214,'Short'),(22811,4897214,'Thriller'),(22812,4899370,'Action'),(22813,4899370,'Biography'),(22814,4899370,'Drama'),(22815,4899406,'Drama'),(22816,4911940,'Comedy'),(22817,4911940,'Drama'),(22818,4911940,'Family'),(22819,4912910,'Action'),(22820,4912910,'Adventure'),(22821,4912910,'Thriller'),(22822,4913966,'Horror'),(22823,4913966,'Mystery'),(22824,4913966,'Thriller'),(22825,4916630,'Biography'),(22826,4916630,'Crime'),(22827,4916630,'Drama'),(22828,4925292,'Comedy'),(22829,4925292,'Drama'),(22830,4926026,'Animation'),(22831,4926026,'Drama'),(22832,4950110,'Biography'),(22833,4950110,'Drama'),(22834,4954522,'Drama'),(22835,4954522,'Horror'),(22836,4954660,'Action'),(22837,4954660,'Adventure'),(22838,4954660,'Animation'),(22839,4956232,'Drama'),(22840,4961380,'Action'),(22841,4961380,'Crime'),(22842,4961380,'Horror'),(22843,4971344,'Drama'),(22844,4971344,'Western'),(22845,4972062,'Comedy'),(22846,4972062,'Drama'),(22847,4972582,'Horror'),(22848,4972582,'Thriller'),(22849,4975722,'Drama'),(22850,4979652,'Action'),(22851,4979652,'Crime'),(22852,4979652,'Drama'),(22853,4981636,'Comedy'),(22854,4981636,'Family'),(22855,4986098,'Drama'),(22856,4986098,'Mystery'),(22857,4986098,'Romance'),(22858,4991512,'Adventure'),(22859,4991512,'Romance'),(22860,4991906,'Comedy'),(22861,4995540,'Biography'),(22862,4995540,'Drama'),(22863,4995790,'Comedy'),(22864,4995790,'Drama'),(22865,4998632,'Action'),(22866,4998632,'Crime'),(22867,4998632,'Drama'),(22868,5001718,'Drama'),(22869,5001718,'Romance'),(22870,5001754,'Action'),(22871,5001754,'Thriller'),(22872,5005684,'Drama'),(22873,5005684,'Family'),(22874,5012504,'Action'),(22875,5012504,'Adventure'),(22876,5012504,'Animation'),(22877,5013056,'Action'),(22878,5013056,'Drama'),(22879,5013056,'History'),(22880,5016946,'Comedy'),(22881,5016946,'Drama'),(22882,5016946,'Sport'),(22883,5022298,'Adventure'),(22884,5022298,'Fantasy'),(22885,5022298,'War'),(22886,5022702,'Horror'),(22887,5022702,'Thriller'),(22888,5023260,'Comedy'),(22889,5023260,'Drama'),(22890,5027774,'Comedy'),(22891,5027774,'Crime'),(22892,5027774,'Drama'),(22893,5028340,'Adventure'),(22894,5028340,'Comedy'),(22895,5028340,'Family'),(22896,5033998,'Action'),(22897,5033998,'Adventure'),(22898,5033998,'Comedy'),(22899,5034474,'Action'),(22900,5034474,'Crime'),(22901,5034474,'Thriller'),(22902,5034838,'Action'),(22903,5034838,'Sci-Fi'),(22904,5034838,'Thriller'),(22905,5039088,'Drama'),(22906,5039088,'Horror'),(22907,5052448,'Horror'),(22908,5052448,'Mystery'),(22909,5052448,'Thriller'),(22910,5057140,'Action'),(22911,5057140,'Crime'),(22912,5057140,'Drama'),(22913,5059406,'Drama'),(22914,5059406,'Horror'),(22915,5059406,'Mystery'),(22916,5073620,'Drama'),(22917,5073620,'Romance'),(22918,5073642,'Horror'),(22919,5073642,'Mystery'),(22920,5073642,'Sci-Fi'),(22921,5074352,'Action'),(22922,5074352,'Biography'),(22923,5074352,'Drama'),(22924,5078204,'Comedy'),(22925,5078204,'Drama'),(22926,5083738,'Biography'),(22927,5083738,'Comedy'),(22928,5083738,'Drama'),(22929,5085924,'Drama'),(22930,5085924,'Fantasy'),(22931,5085924,'Horror'),(22932,5091548,'Action'),(22933,5091548,'Adventure'),(22934,5091548,'Animation'),(22935,5095030,'Action'),(22936,5095030,'Adventure'),(22937,5095030,'Comedy'),(22938,5096536,'Drama'),(22939,5097410,'Comedy'),(22940,5097410,'Family'),(22941,5097410,'Fantasy'),(22942,5104604,'Adventure'),(22943,5104604,'Animation'),(22944,5104604,'Comedy'),(22945,5105218,'Comedy'),(22946,5105218,'Drama'),(22947,5105218,'Romance'),(22948,5108870,'Action'),(22949,5108870,'Adventure'),(22950,5108870,'Horror'),(22951,5109280,'Action'),(22952,5109280,'Adventure'),(22953,5109280,'Animation'),(22954,5109784,'Drama'),(22955,5109784,'Horror'),(22956,5109784,'Mystery'),(22957,5113044,'Adventure'),(22958,5113044,'Animation'),(22959,5113044,'Comedy'),(22960,5117428,'Drama'),(22961,5117428,'Music'),(22962,5117670,'Adventure'),(22963,5117670,'Comedy'),(22964,5117670,'Crime'),(22965,5117876,'Action'),(22966,5117876,'Adventure'),(22967,5117876,'Family'),(22968,5121816,'Horror'),(22969,5121816,'Thriller'),(22970,5140878,'Horror'),(22971,5140878,'Mystery'),(22972,5140878,'Thriller'),(22973,5142400,'Fantasy'),(22974,5142400,'Horror'),(22975,5143226,'Horror'),(22976,5143226,'Thriller'),(22977,5143586,'Drama'),(22978,5144174,'Crime'),(22979,5144174,'Drama'),(22980,5144174,'Mystery'),(22981,5151570,'Comedy'),(22982,5151570,'Drama'),(22983,5153952,'Drama'),(22984,5153952,'Family'),(22985,5154288,'Comedy'),(22986,5154288,'Crime'),(22987,5154288,'Drama'),(22988,5155780,'Drama'),(22989,5155780,'Romance'),(22990,5155780,'Sci-Fi'),(22991,5157326,'Drama'),(22992,5160938,'Biography'),(22993,5160938,'Crime'),(22994,5160938,'Drama'),(22995,5164214,'Action'),(22996,5164214,'Comedy'),(22997,5164214,'Crime'),(22998,5164432,'Comedy'),(22999,5164432,'Drama'),(23000,5164438,'Comedy'),(23001,5164438,'Drama'),(23002,5165344,'Crime'),(23003,5165344,'Drama'),(23004,5165344,'Thriller'),(23005,5168192,'Drama'),(23006,5173166,'Comedy'),(23007,5173166,'Crime'),(23008,5175450,'Biography'),(23009,5175450,'Drama'),(23010,5175450,'History'),(23011,5176252,'Musical'),(23012,5176580,'Comedy'),(23013,5176580,'History'),(23014,5177088,'Action'),(23015,5177088,'Adventure'),(23016,5177088,'Crime'),(23017,5181830,'Adventure'),(23018,5181830,'Animation'),(23019,5181830,'Comedy'),(23020,5198068,'Action'),(23021,5198068,'Adventure'),(23022,5198068,'Animation'),(23023,5208252,'Biography'),(23024,5208252,'Drama'),(23025,5208252,'History'),(23026,5221584,'Drama'),(23027,5247022,'Comedy'),(23028,5247022,'Drama'),(23029,5247022,'Romance'),(23030,5247704,'Comedy'),(23031,5247704,'Drama'),(23032,5254640,'Drama'),(23033,5265960,'Drama'),(23034,5265960,'Horror'),(23035,5265960,'Mystery'),(23036,5274066,'Drama'),(23037,5274066,'Family'),(23038,5274066,'Sport'),(23039,5284414,'Action'),(23040,5284414,'Animation'),(23041,5284414,'Comedy'),(23042,5285442,'Short'),(23043,5291792,'Comedy'),(23044,5291792,'Drama'),(23045,5294198,'Action'),(23046,5294198,'Comedy'),(23047,5294198,'Drama'),(23048,5294550,'Biography'),(23049,5294550,'Crime'),(23050,5294550,'Drama'),(23051,5296086,'Horror'),(23052,5301662,'Biography'),(23053,5301662,'Crime'),(23054,5301662,'Drama'),(23055,5304992,'Comedy'),(23056,5304992,'Romance'),(23057,5308322,'Comedy'),(23058,5308322,'Horror'),(23059,5308322,'Mystery'),(23060,5311514,'Animation'),(23061,5311514,'Drama'),(23062,5311514,'Fantasy'),(23063,5314190,'Adventure'),(23064,5314190,'Animation'),(23065,5314190,'Family'),(23066,5315212,'Comedy'),(23067,5315212,'Drama'),(23068,5316540,'Action'),(23069,5316540,'Drama'),(23070,5316540,'Thriller'),(23071,5322012,'Drama'),(23072,5322012,'Fantasy'),(23073,5322012,'Horror'),(23074,5322168,'Drama'),(23075,5323662,'Animation'),(23076,5323662,'Drama'),(23077,5328952,'Comedy'),(23078,5328952,'Drama'),(23079,5328952,'Romance'),(23080,5340300,'Adventure'),(23081,5340300,'Drama'),(23082,5340300,'Sport'),(23083,5340882,'Action'),(23084,5340882,'Adventure'),(23085,5340882,'Comedy'),(23086,5348236,'Drama'),(23087,5348774,'Comedy'),(23088,5348774,'Drama'),(23089,5360232,'Drama'),(23090,5360232,'Music'),(23091,5362988,'Crime'),(23092,5362988,'Drama'),(23093,5362988,'Mystery'),(23094,5363618,'Drama'),(23095,5363618,'Music'),(23096,5390504,'Crime'),(23097,5390504,'Drama'),(23098,5390504,'History'),(23099,5397194,'Crime'),(23100,5397194,'Mystery'),(23101,5397194,'Sci-Fi'),(23102,5427194,'Drama'),(23103,5427194,'Sport'),(23104,5433138,'Action'),(23105,5433138,'Crime'),(23106,5433138,'Thriller'),(23107,5433140,'Action'),(23108,5433140,'Adventure'),(23109,5433140,'Crime'),(23110,5434870,'Comedy'),(23111,5434870,'Drama'),(23112,5437928,'Biography'),(23113,5437928,'Drama'),(23114,5437928,'History'),(23115,5439796,'Action'),(23116,5439796,'Comedy'),(23117,5439796,'Crime'),(23118,5439812,'Comedy'),(23119,5439812,'Crime'),(23120,5439812,'Drama'),(23121,5442430,'Horror'),(23122,5442430,'Sci-Fi'),(23123,5442430,'Thriller'),(23124,5447082,'Short'),(23125,5447082,'Sport'),(23126,5459794,'Documentary'),(23127,5459794,'Short'),(23128,5461944,'Action'),(23129,5461944,'Drama'),(23130,5461944,'History'),(23131,5462326,'Comedy'),(23132,5462326,'Horror'),(23133,5462326,'Thriller'),(23134,5462602,'Comedy'),(23135,5462602,'Drama'),(23136,5462602,'Romance'),(23137,5463162,'Action'),(23138,5463162,'Adventure'),(23139,5463162,'Comedy'),(23140,5474644,'Animation'),(23141,5474644,'Comedy'),(23142,5474644,'Family'),(23143,5478478,'Drama'),(23144,5478478,'Western'),(23145,5492808,'Drama'),(23146,5493706,'Action'),(23147,5493706,'Comedy'),(23148,5493706,'Sci-Fi'),(23149,5500218,'Action'),(23150,5500218,'Drama'),(23151,5500218,'Fantasy'),(23152,5503686,'Comedy'),(23153,5503686,'Crime'),(23154,5503686,'Drama'),(23155,5511582,'Action'),(23156,5511582,'Adventure'),(23157,5511582,'Drama'),(23158,5512872,'Comedy'),(23159,5512872,'Drama'),(23160,5512872,'Romance'),(23161,5516328,'Drama'),(23162,5516328,'Horror'),(23163,5519340,'Action'),(23164,5519340,'Fantasy'),(23165,5519340,'Thriller'),(23166,5521550,'Comedy'),(23167,5523010,'Adventure'),(23168,5523010,'Family'),(23169,5523010,'Fantasy'),(23170,5526028,'Animation'),(23171,5526028,'Drama'),(23172,5526028,'Music'),(23173,5536736,'Comedy'),(23174,5536736,'Drama'),(23175,5538078,'Documentary'),(23176,5538078,'Short'),(23177,5539054,'Crime'),(23178,5539054,'Drama'),(23179,5539054,'Romance'),(23180,5540622,'Comedy'),(23181,5541240,'Drama'),(23182,5553782,'Documentary'),(23183,5553782,'Music'),(23184,5563334,'Crime'),(23185,5563334,'Drama'),(23186,5563334,'Mystery'),(23187,5563932,'Adventure'),(23188,5563932,'Animation'),(23189,5563932,'Comedy'),(23190,5571734,'Crime'),(23191,5571734,'Drama'),(23192,5571734,'Thriller'),(23193,5571754,'Comedy'),(23194,5571754,'Family'),(23195,5571754,'Fantasy'),(23196,5573580,'Drama'),(23197,5573580,'Short'),(23198,5580036,'Biography'),(23199,5580036,'Comedy'),(23200,5580036,'Drama'),(23201,5580266,'Crime'),(23202,5580266,'Drama'),(23203,5580390,'Drama'),(23204,5580390,'Fantasy'),(23205,5580390,'Romance'),(23206,5592248,'Drama'),(23207,5592248,'History'),(23208,5592248,'Thriller'),(23209,5595168,'Action'),(23210,5595168,'Adventure'),(23211,5595168,'Animation'),(23212,5598100,'Comedy'),(23213,5598100,'Drama'),(23214,5598192,'Drama'),(23215,5598192,'Mystery'),(23216,5598192,'Thriller'),(23217,5606664,'Drama'),(23218,5606664,'Fantasy'),(23219,5606664,'Horror'),(23220,5607714,'Drama'),(23221,5607714,'Fantasy'),(23222,5607714,'Mystery'),(23223,5610554,'Comedy'),(23224,5610554,'Drama'),(23225,5610554,'Mystery'),(23226,5613484,'Comedy'),(23227,5613484,'Drama'),(23228,5619332,'Comedy'),(23229,5629964,'Fantasy'),(23230,5629964,'Horror'),(23231,5629964,'Mystery'),(23232,5633706,'Drama'),(23233,5635086,'Drama'),(23234,5635086,'Romance'),(23235,5638642,'Horror'),(23236,5638642,'Mystery'),(23237,5638642,'Thriller'),(23238,5639446,'Drama'),(23239,5639446,'Sci-Fi'),(23240,5649108,'Comedy'),(23241,5649108,'Crime'),(23242,5649108,'Drama'),(23243,5649144,'Drama'),(23244,5651952,'Comedy'),(23245,5651952,'Drama'),(23246,5657412,'Documentary'),(23247,5657412,'Talk-Show'),(23248,5657846,'Comedy'),(23249,5662932,'Crime'),(23250,5662932,'Drama'),(23251,5662932,'Thriller'),(23252,5664684,'Comedy'),(23253,5664684,'Drama'),(23254,5664684,'Musical'),(23255,5665452,'Comedy'),(23256,5665452,'Drama'),(23257,5666304,'Comedy'),(23258,5666304,'Romance'),(23259,5675620,'Action'),(23260,5675620,'Crime'),(23261,5675620,'Drama'),(23262,5687334,'Biography'),(23263,5687334,'Comedy'),(23264,5687334,'Drama'),(23265,5688932,'Comedy'),(23266,5688932,'Drama'),(23267,5688932,'Fantasy'),(23268,5688996,'Comedy'),(23269,5688996,'Drama'),(23270,5688996,'Romance'),(23271,5690360,'Horror'),(23272,5690360,'Mystery'),(23273,5690360,'Thriller'),(23274,5690810,'Drama'),(23275,5690810,'Romance'),(23276,5690810,'Thriller'),(23277,5691670,'Crime'),(23278,5691670,'Drama'),(23279,5691670,'Mystery'),(23280,5695764,'Drama'),(23281,5697078,'Comedy'),(23282,5697572,'Comedy'),(23283,5697572,'Drama'),(23284,5697572,'Family'),(23285,5698320,'Adventure'),(23286,5698320,'Drama'),(23287,5698320,'Mystery'),(23288,5700672,'Action'),(23289,5700672,'Horror'),(23290,5700672,'Thriller'),(23291,5709236,'Drama'),(23292,5709236,'Mystery'),(23293,5709236,'Sci-Fi'),(23294,5709536,'Documentary'),(23295,5710514,'Comedy'),(23296,5710514,'Crime'),(23297,5710514,'Drama'),(23298,5715874,'Drama'),(23299,5715874,'Horror'),(23300,5715874,'Mystery'),(23301,5719700,'Comedy'),(23302,5719700,'Drama'),(23303,5719700,'Romance'),(23304,5719748,'Action'),(23305,5719748,'Comedy'),(23306,5719748,'Crime'),(23307,5723286,'Action'),(23308,5723286,'Crime'),(23309,5723286,'Thriller'),(23310,5723416,'Drama'),(23311,5723416,'Sci-Fi'),(23312,5726616,'Drama'),(23313,5726616,'Romance'),(23314,5727208,'Crime'),(23315,5727208,'Drama'),(23316,5727208,'Thriller'),(23317,5727282,'Biography'),(23318,5727282,'Drama'),(23319,5727282,'Sport'),(23320,5737862,'Comedy'),(23321,5737862,'Drama'),(23322,5739786,'Drama'),(23323,5739786,'Family'),(23324,5740806,'Crime'),(23325,5740806,'Drama'),(23326,5740806,'Romance'),(23327,5742374,'Crime'),(23328,5742374,'Drama'),(23329,5742374,'Thriller'),(23330,5752360,'Comedy'),(23331,5774060,'Action'),(23332,5774060,'Horror'),(23333,5774060,'Sci-Fi'),(23334,5776858,'Drama'),(23335,5776858,'History'),(23336,5776858,'Romance'),(23337,5783956,'Comedy'),(23338,5783956,'Fantasy'),(23339,5783956,'Romance'),(23340,5786040,'Documentary'),(23341,5789664,'Comedy'),(23342,5789664,'Drama'),(23343,5791732,'Horror'),(23344,5791732,'Mystery'),(23345,5791732,'Sci-Fi'),(23346,5791884,'Drama'),(23347,5795086,'Crime'),(23348,5795086,'Drama'),(23349,5795086,'Mystery'),(23350,5814534,'Action'),(23351,5814534,'Adventure'),(23352,5814534,'Animation'),(23353,5816374,'Comedy'),(23354,5816374,'Drama'),(23355,5816374,'Music'),(23356,5816682,'Biography'),(23357,5816682,'Comedy'),(23358,5816682,'Drama'),(23359,5818818,'Comedy'),(23360,5818818,'Drama'),(23361,5822564,'Action'),(23362,5822564,'Crime'),(23363,5822564,'Drama'),(23364,5825186,'Animation'),(23365,5825380,'Drama'),(23366,5825380,'Romance'),(23367,5826432,'Drama'),(23368,5829040,'Comedy'),(23369,5833412,'Horror'),(23370,5833412,'Thriller'),(23371,5833846,'Drama'),(23372,5833846,'History'),(23373,5834262,'Action'),(23374,5834262,'Crime'),(23375,5834262,'Drama'),(23376,5834660,'Drama'),(23377,5847768,'Animation'),(23378,5847768,'Drama'),(23379,5848272,'Adventure'),(23380,5848272,'Animation'),(23381,5848272,'Comedy'),(23382,5859238,'Comedy'),(23383,5859238,'Drama'),(23384,5861756,'Drama'),(23385,5862312,'Horror'),(23386,5865326,'Comedy'),(23387,5865326,'Crime'),(23388,5865326,'Drama'),(23389,5867800,'Drama'),(23390,5868326,'Action'),(23391,5868326,'Adventure'),(23392,5868326,'Animation'),(23393,5878326,'Comedy'),(23394,5878326,'Fantasy'),(23395,5884052,'Action'),(23396,5884052,'Adventure'),(23397,5884052,'Comedy'),(23398,5886046,'Action'),(23399,5886046,'Adventure'),(23400,5886046,'Horror'),(23401,5898034,'Animation'),(23402,5898034,'Fantasy'),(23403,5908566,'Comedy'),(23404,5908566,'Musical'),(23405,5914996,'Adventure'),(23406,5914996,'Animation'),(23407,5914996,'Drama'),(23408,5918104,'Drama'),(23409,5918104,'Musical'),(23410,5923962,'Action'),(23411,5923962,'Animation'),(23412,5923962,'Drama'),(23413,5929750,'Comedy'),(23414,5929750,'Drama'),(23415,5936578,'Drama'),(23416,5936578,'Music'),(23417,5936578,'Musical'),(23418,5941692,'Action'),(23419,5941692,'Crime'),(23420,5941692,'Drama'),(23421,5952138,'Drama'),(23422,5952138,'Horror'),(23423,5952138,'Mystery'),(23424,5954304,'Adventure'),(23425,5954304,'Animation'),(23426,5954304,'Comedy'),(23427,5960374,'Drama'),(23428,5960374,'Music'),(23429,5962210,'Comedy'),(23430,5962210,'Drama'),(23431,5971474,'Adventure'),(23432,5971474,'Family'),(23433,5971474,'Fantasy'),(23434,5973032,'Drama'),(23435,5973626,'Action'),(23436,5973626,'Adventure'),(23437,5973626,'Animation'),(23438,5974388,'Drama'),(23439,5980638,'Music'),(23440,5980638,'Mystery'),(23441,5980638,'Thriller'),(23442,5980798,'Drama'),(23443,5980798,'Music'),(23444,5989218,'Drama'),(23445,5989218,'Romance'),(23446,5990342,'Comedy'),(23447,5997830,'Drama'),(23448,5997830,'Short'),(23449,6000478,'Crime'),(23450,6000478,'Drama'),(23451,6000478,'Thriller'),(23452,6002232,'Drama'),(23453,6002232,'Thriller'),(23454,6003368,'Adventure'),(23455,6003368,'Comedy'),(23456,6003368,'Family'),(23457,6010628,'Drama'),(23458,6010628,'Romance'),(23459,6010628,'Sci-Fi'),(23460,6029106,'Comedy'),(23461,6029106,'Drama'),(23462,6048922,'Action'),(23463,6048922,'Drama'),(23464,6048922,'History'),(23465,6048930,'Comedy'),(23466,6048930,'Fantasy'),(23467,6048930,'Romance'),(23468,6053438,'Drama'),(23469,6053438,'Mystery'),(23470,6053438,'Thriller'),(23471,6053440,'Drama'),(23472,6053440,'Romance'),(23473,6061074,'Drama'),(23474,6061074,'Sport'),(23475,6062774,'Adventure'),(23476,6062774,'Drama'),(23477,6062774,'Thriller'),(23478,6063050,'Drama'),(23479,6063050,'Horror'),(23480,6063050,'Romance'),(23481,6065988,'Biography'),(23482,6065988,'Documentary'),(23483,6065988,'History'),(23484,6069126,'Drama'),(23485,6074542,'Comedy'),(23486,6074542,'Horror'),(23487,6074542,'Sci-Fi'),(23488,6078866,'Crime'),(23489,6078866,'Drama'),(23490,6081670,'Drama'),(23491,6081670,'Horror'),(23492,6081670,'Mystery'),(23493,6095090,'Drama'),(23494,6095090,'Horror'),(23495,6095090,'Mystery'),(23496,6096194,'Drama'),(23497,6105098,'Adventure'),(23498,6105098,'Drama'),(23499,6105098,'Family'),(23500,6107548,'Comedy'),(23501,6107548,'Drama'),(23502,6108090,'Drama'),(23503,6108090,'Music'),(23504,6108178,'Drama'),(23505,6133130,'Biography'),(23506,6133130,'Drama'),(23507,6133130,'History'),(23508,6133466,'Action'),(23509,6133466,'Horror'),(23510,6133466,'Sci-Fi'),(23511,6139732,'Adventure'),(23512,6139732,'Comedy'),(23513,6139732,'Family'),(23514,6140148,'Action'),(23515,6140148,'Drama'),(23516,6140148,'Thriller'),(23517,6141246,'Action'),(23518,6141246,'Adventure'),(23519,6141246,'Drama'),(23520,6142314,'Action'),(23521,6142314,'Animation'),(23522,6142314,'Comedy'),(23523,6142496,'Drama'),(23524,6146586,'Action'),(23525,6146586,'Crime'),(23526,6146586,'Thriller'),(23527,6155172,'Drama'),(23528,6160448,'Comedy'),(23529,6160448,'Drama'),(23530,6160448,'Horror'),(23531,6162808,'Drama'),(23532,6162808,'Musical'),(23533,6162808,'Romance'),(23534,6164698,'Drama'),(23535,6169920,'Drama'),(23536,6182908,'Adventure'),(23537,6182908,'Animation'),(23538,6182908,'Comedy'),(23539,6185658,'Animation'),(23540,6185658,'Family'),(23541,6185658,'Sci-Fi'),(23542,6189022,'Action'),(23543,6189022,'Thriller'),(23544,6194530,'Drama'),(23545,6194530,'Romance'),(23546,6197070,'Adventure'),(23547,6197070,'Music'),(23548,6197070,'Sci-Fi'),(23549,6204018,'Biography'),(23550,6204018,'Drama'),(23551,6204018,'Music'),(23552,6205872,'Action'),(23553,6205872,'Comedy'),(23554,6205872,'Crime'),(23555,6212478,'Biography'),(23556,6212478,'Crime'),(23557,6212478,'Drama'),(23558,6212496,'Comedy'),(23559,6214928,'Crime'),(23560,6214928,'Drama'),(23561,6214928,'Horror'),(23562,6217306,'Drama'),(23563,6217306,'Fantasy'),(23564,6217306,'Horror'),(23565,6249434,'Drama'),(23566,6249434,'Thriller'),(23567,6257174,'Comedy'),(23568,6257174,'Drama'),(23569,6258766,'Drama'),(23570,6259380,'Action'),(23571,6259380,'Crime'),(23572,6259380,'Drama'),(23573,6261136,'Comedy'),(23574,6261136,'Drama'),(23575,6264654,'Action'),(23576,6264654,'Adventure'),(23577,6264654,'Comedy'),(23578,6265828,'Drama'),(23579,6265828,'Fantasy'),(23580,6265828,'Mystery'),(23581,6266538,'Biography'),(23582,6266538,'Comedy'),(23583,6266538,'Drama'),(23584,6275840,'Comedy'),(23585,6275840,'Drama'),(23586,6277462,'Action'),(23587,6277462,'Adventure'),(23588,6277462,'Fantasy'),(23589,6285944,'Biography'),(23590,6285944,'Drama'),(23591,6292852,'Drama'),(23592,6292852,'Mystery'),(23593,6292852,'Sci-Fi'),(23594,6294226,'Action'),(23595,6294226,'Crime'),(23596,6294226,'Fantasy'),(23597,6294822,'Biography'),(23598,6294822,'Drama'),(23599,6294822,'History'),(23600,6298780,'Action'),(23601,6298780,'Adventure'),(23602,6298780,'Comedy'),(23603,6303866,'Drama'),(23604,6304046,'Drama'),(23605,6304046,'Fantasy'),(23606,6304046,'Horror'),(23607,6317656,'Biography'),(23608,6317656,'Drama'),(23609,6320628,'Action'),(23610,6320628,'Adventure'),(23611,6320628,'Comedy'),(23612,6324278,'Adventure'),(23613,6324278,'Animation'),(23614,6324278,'Comedy'),(23615,6334354,'Action'),(23616,6334354,'Adventure'),(23617,6334354,'Comedy'),(23618,6336356,'Adventure'),(23619,6336356,'Animation'),(23620,6336356,'Family'),(23621,6341832,'Drama'),(23622,6341832,'Fantasy'),(23623,6341832,'Sci-Fi'),(23624,6342316,'Drama'),(23625,6342316,'Thriller'),(23626,6343314,'Action'),(23627,6343314,'Drama'),(23628,6343314,'Sport'),(23629,6348138,'Adventure'),(23630,6348138,'Animation'),(23631,6348138,'Comedy'),(23632,6359956,'Comedy'),(23633,6387232,'Drama'),(23634,6387232,'Family'),(23635,6387232,'Romance'),(23636,6394270,'Biography'),(23637,6394270,'Drama'),(23638,6398184,'Drama'),(23639,6398184,'Romance'),(23640,6404896,'Action'),(23641,6404896,'Animation'),(23642,6404896,'Fantasy'),(23643,6412452,'Comedy'),(23644,6412452,'Drama'),(23645,6412452,'Musical'),(23646,6418778,'Drama'),(23647,6418778,'Sci-Fi'),(23648,6418778,'Thriller'),(23649,6423776,'Comedy'),(23650,6423776,'Drama'),(23651,6423776,'Romance'),(23652,6428676,'Adventure'),(23653,6428676,'Animation'),(23654,6428676,'Comedy'),(23655,6432466,'Comedy'),(23656,6432466,'Drama'),(23657,6432466,'Music'),(23658,6433880,'Comedy'),(23659,6433880,'Horror'),(23660,6433880,'Musical'),(23661,6435258,'Documentary'),(23662,6435258,'Sport'),(23663,6436726,'Action'),(23664,6436726,'Drama'),(23665,6436726,'Thriller'),(23666,6439020,'Comedy'),(23667,6439020,'Drama'),(23668,6441072,'Comedy'),(23669,6441072,'Romance'),(23670,6450804,'Action'),(23671,6450804,'Adventure'),(23672,6450804,'Sci-Fi'),(23673,6466058,'Drama'),(23674,6466058,'History'),(23675,6467266,'Adventure'),(23676,6467266,'Animation'),(23677,6467266,'Comedy'),(23678,6467968,'Drama'),(23679,6472976,'Drama'),(23680,6472976,'Romance'),(23681,6475714,'Action'),(23682,6475714,'Adventure'),(23683,6475714,'Fantasy'),(23684,6476140,'Drama'),(23685,6476140,'Mystery'),(23686,6476140,'Thriller'),(23687,6485304,'Drama'),(23688,6485304,'Music'),(23689,6485304,'Mystery'),(23690,6499752,'Action'),(23691,6499752,'Sci-Fi'),(23692,6499752,'Thriller'),(23693,6510332,'Biography'),(23694,6510332,'Documentary'),(23695,6511932,'Comedy'),(23696,6513120,'Biography'),(23697,6513120,'Comedy'),(23698,6513120,'Drama'),(23699,6522668,'Comedy'),(23700,6522668,'Drama'),(23701,6522668,'Fantasy'),(23702,6524480,'Drama'),(23703,6524480,'Short'),(23704,6535880,'Horror'),(23705,6535880,'Thriller'),(23706,6536944,'Animation'),(23707,6536944,'Fantasy'),(23708,6539420,'Comedy'),(23709,6539420,'Drama'),(23710,6539420,'Romance'),(23711,6543652,'Drama'),(23712,6543652,'Music'),(23713,6543652,'Romance'),(23714,6548966,'Action'),(23715,6548966,'Adventure'),(23716,6548966,'Animation'),(23717,6565702,'Action'),(23718,6565702,'Adventure'),(23719,6565702,'Sci-Fi'),(23720,6566576,'Drama'),(23721,6566576,'Horror'),(23722,6566576,'Mystery'),(23723,6587640,'Adventure'),(23724,6587640,'Animation'),(23725,6587640,'Comedy'),(23726,6590856,'Drama'),(23727,6595896,'Action'),(23728,6595896,'Adventure'),(23729,6595896,'Animation'),(23730,6628102,'Drama'),(23731,6628394,'Crime'),(23732,6628394,'Drama'),(23733,6628394,'Mystery'),(23734,6644200,'Drama'),(23735,6644200,'Horror'),(23736,6644200,'Sci-Fi'),(23737,6663582,'Action'),(23738,6663582,'Adventure'),(23739,6663582,'Comedy'),(23740,6673612,'Adventure'),(23741,6673612,'Comedy'),(23742,6673612,'Family'),(23743,6678876,'Drama'),(23744,6708044,'Comedy'),(23745,6708044,'Family'),(23746,6710474,'Action'),(23747,6710474,'Adventure'),(23748,6710474,'Comedy'),(23749,6718170,'Adventure'),(23750,6718170,'Animation'),(23751,6718170,'Comedy'),(23752,6723592,'Action'),(23753,6723592,'Sci-Fi'),(23754,6723592,'Thriller'),(23755,6728096,'Comedy'),(23756,6733874,'Action'),(23757,6733874,'Adventure'),(23758,6733874,'Animation'),(23759,6738136,'Action'),(23760,6738136,'Drama'),(23761,6738136,'Horror'),(23762,6739094,'Action'),(23763,6739094,'Adventure'),(23764,6739094,'Animation'),(23765,6751668,'Drama'),(23766,6751668,'Thriller'),(23767,6772950,'Horror'),(23768,6772950,'Thriller'),(23769,6776106,'Drama'),(23770,6776462,'Drama'),(23771,6781982,'Comedy'),(23772,6791096,'Comedy'),(23773,6791096,'Romance'),(23774,6791350,'Action'),(23775,6791350,'Adventure'),(23776,6791350,'Comedy'),(23777,6802400,'Comedy'),(23778,6802400,'Music'),(23779,6803046,'Drama'),(23780,6803046,'Mystery'),(23781,6803046,'Sci-Fi'),(23782,6805302,'Crime'),(23783,6805302,'Drama'),(23784,6805302,'Thriller'),(23785,6806448,'Action'),(23786,6806448,'Adventure'),(23787,6806448,'Thriller'),(23788,6811018,'Action'),(23789,6811018,'Adventure'),(23790,6811018,'Family'),(23791,6814914,'Adventure'),(23792,6814914,'Drama'),(23793,6814914,'Music'),(23794,6818880,'Comedy'),(23795,6818880,'Family'),(23796,6823148,'Biography'),(23797,6823148,'Drama'),(23798,6823148,'Romance'),(23799,6823368,'Drama'),(23800,6823368,'Horror'),(23801,6823368,'Sci-Fi'),(23802,6834916,'Action'),(23803,6834916,'Thriller'),(23804,6841122,'Drama'),(23805,6841122,'Romance'),(23806,6841122,'War'),(23807,6842126,'Horror'),(23808,6842126,'Mystery'),(23809,6842126,'Thriller'),(23810,6856242,'Action'),(23811,6856242,'Adventure'),(23812,6856242,'Thriller'),(23813,6857112,'Horror'),(23814,6857112,'Mystery'),(23815,6857112,'Thriller'),(23816,6857166,'Comedy'),(23817,6857166,'Drama'),(23818,6857166,'Romance'),(23819,6857988,'Comedy'),(23820,6857988,'Fantasy'),(23821,6857988,'Romance'),(23822,6859352,'Comedy'),(23823,6859352,'Drama'),(23824,6868216,'Comedy'),(23825,6868216,'Crime'),(23826,6868216,'Mystery'),(23827,6870750,'Adventure'),(23828,6870750,'Animation'),(23829,6870750,'Fantasy'),(23830,6878306,'Action'),(23831,6878306,'Adventure'),(23832,6878306,'Drama'),(23833,6878820,'Adventure'),(23834,6878820,'Family'),(23835,6878820,'Fantasy'),(23836,6889032,'Comedy'),(23837,6889032,'Drama'),(23838,6892462,'Comedy'),(23839,6892462,'Crime'),(23840,6902332,'Action'),(23841,6902332,'Drama'),(23842,6902332,'Thriller'),(23843,6902676,'Action'),(23844,6902676,'Comedy'),(23845,6902676,'Crime'),(23846,6908274,'Drama'),(23847,6908274,'Fantasy'),(23848,6908274,'Mystery'),(23849,6911608,'Comedy'),(23850,6911608,'Musical'),(23851,6911608,'Romance'),(23852,6918220,'Comedy'),(23853,6918220,'Drama'),(23854,6918220,'Sport'),(23855,6920356,'Drama'),(23856,6920356,'Romance'),(23857,6921996,'Action'),(23858,6921996,'Adventure'),(23859,6921996,'Comedy'),(23860,6924650,'Action'),(23861,6924650,'Drama'),(23862,6924650,'History'),(23863,6927152,'Action'),(23864,6927152,'Drama'),(23865,6927152,'History'),(23866,6929642,'Action'),(23867,6929642,'Drama'),(23868,6966692,'Biography'),(23869,6966692,'Comedy'),(23870,6966692,'Drama'),(23871,6975598,'Comedy'),(23872,6975598,'Horror'),(23873,6987770,'Comedy'),(23874,6987770,'Drama'),(23875,6987770,'Romance'),(23876,6992978,'Drama'),(23877,6992978,'Romance'),(23878,6998518,'Action'),(23879,6998518,'Fantasy'),(23880,6998518,'Horror'),(23881,7008872,'Biography'),(23882,7008872,'Drama'),(23883,7014006,'Comedy'),(23884,7014006,'Drama'),(23885,7040874,'Comedy'),(23886,7040874,'Crime'),(23887,7040874,'Mystery'),(23888,7069210,'Horror'),(23889,7069210,'Mystery'),(23890,7069210,'Thriller'),(23891,7073710,'Horror'),(23892,7073710,'Thriller'),(23893,7074886,'Biography'),(23894,7074886,'Drama'),(23895,7074886,'History'),(23896,7086706,'Action'),(23897,7086706,'Horror'),(23898,7086706,'Sci-Fi'),(23899,7097896,'Action'),(23900,7097896,'Sci-Fi'),(23901,7097896,'Thriller'),(23902,7098658,'Action'),(23903,7098658,'Drama'),(23904,7098658,'Thriller'),(23905,7125860,'Drama'),(23906,7125860,'Romance'),(23907,7126948,'Action'),(23908,7126948,'Adventure'),(23909,7126948,'Fantasy'),(23910,7131622,'Comedy'),(23911,7131622,'Drama'),(23912,7131870,'Action'),(23913,7131870,'Adventure'),(23914,7131870,'Drama'),(23915,7133686,'Action'),(23916,7133686,'Adventure'),(23917,7133686,'Animation'),(23918,7134096,'Action'),(23919,7134096,'Drama'),(23920,7134096,'Mystery'),(23921,7134690,'Comedy'),(23922,7137380,'Action'),(23923,7137380,'Crime'),(23924,7137380,'Drama'),(23925,7146812,'Action'),(23926,7146812,'Adventure'),(23927,7146812,'Animation'),(23928,7156222,'Comedy'),(23929,7158430,'Comedy'),(23930,7158430,'Drama'),(23931,7158430,'Music'),(23932,7160070,'Action'),(23933,7160070,'Adventure'),(23934,7160070,'Drama'),(23935,7167630,'Action'),(23936,7167630,'Adventure'),(23937,7167630,'Animation'),(23938,7167658,'Action'),(23939,7167658,'Animation'),(23940,7167658,'Fantasy'),(23941,7167686,'Action'),(23942,7167686,'Adventure'),(23943,7167686,'Animation'),(23944,7178640,'Action'),(23945,7178640,'Comedy'),(23946,7178640,'Romance'),(23947,7201830,'Drama'),(23948,7212726,'Action'),(23949,7212726,'Crime'),(23950,7212726,'Drama'),(23951,7212754,'Action'),(23952,7212754,'Comedy'),(23953,7212754,'Crime'),(23954,7225144,'Comedy'),(23955,7225144,'Crime'),(23956,7231342,'Comedy'),(23957,7231342,'Crime'),(23958,7231342,'Drama'),(23959,7236034,'Animation'),(23960,7236034,'Drama'),(23961,7236034,'Family'),(23962,7237666,'Adventure'),(23963,7237666,'Drama'),(23964,7241926,'Drama'),(23965,7242142,'Comedy'),(23966,7242142,'Crime'),(23967,7242142,'Drama'),(23968,7250378,'Comedy'),(23969,7260048,'Drama'),(23970,7262882,'Action'),(23971,7262882,'Biography'),(23972,7262882,'Crime'),(23973,7279188,'Adventure'),(23974,7279188,'Comedy'),(23975,7279188,'Drama'),(23976,7280218,'Drama'),(23977,7280218,'Fantasy'),(23978,7280218,'Romance'),(23979,7282468,'Drama'),(23980,7282468,'Mystery'),(23981,7282468,'Thriller'),(23982,7286456,'Crime'),(23983,7286456,'Drama'),(23984,7286456,'Thriller'),(23985,7311036,'Drama'),(23986,7315484,'Drama'),(23987,7315484,'Horror'),(23988,7315484,'Sci-Fi'),(23989,7317324,'Comedy'),(23990,7322224,'Comedy'),(23991,7322224,'Drama'),(23992,7329656,'Adventure'),(23993,7329656,'Drama'),(23994,7329656,'Horror'),(23995,7335184,'Crime'),(23996,7335184,'Drama'),(23997,7335184,'Romance'),(23998,7341676,'Drama'),(23999,7341676,'Short'),(24000,7342204,'Comedy'),(24001,7342204,'Drama'),(24002,7349662,'Biography'),(24003,7349662,'Comedy'),(24004,7349662,'Crime'),(24005,7349950,'Drama'),(24006,7349950,'Fantasy'),(24007,7349950,'Horror'),(24008,7365604,'Comedy'),(24009,7365604,'Drama'),(24010,7365604,'Romance'),(24011,7374948,'Comedy'),(24012,7374948,'Romance'),(24013,7401540,'Comedy'),(24014,7401540,'Drama'),(24015,7401588,'Comedy'),(24016,7401588,'Drama'),(24017,7405458,'Comedy'),(24018,7405458,'Drama'),(24019,7411790,'Short'),(24020,7424200,'Action'),(24021,7424200,'Adventure'),(24022,7424200,'Animation'),(24023,7451284,'Action'),(24024,7451284,'Animation'),(24025,7451284,'Sci-Fi'),(24026,7456310,'Action'),(24027,7456310,'Thriller'),(24028,7458762,'Action'),(24029,7458762,'Thriller'),(24030,7464188,'Comedy'),(24031,7464188,'Drama'),(24032,7464188,'Fantasy'),(24033,7466442,'Adventure'),(24034,7466442,'Animation'),(24035,7466442,'Comedy'),(24036,7467476,'Drama'),(24037,7467476,'Short'),(24038,7468616,'Mystery'),(24039,7468616,'Thriller'),(24040,7479784,'Drama'),(24041,7479784,'Mystery'),(24042,7479784,'Thriller'),(24043,7485508,'Drama'),(24044,7485508,'Romance'),(24045,7488208,'Adventure'),(24046,7488208,'Animation'),(24047,7488208,'Comedy'),(24048,7488288,'Drama'),(24049,7488288,'Sci-Fi'),(24050,7504818,'Adventure'),(24051,7504818,'Animation'),(24052,7504818,'Comedy'),(24053,7510346,'Drama'),(24054,7510346,'Horror'),(24055,7510346,'Mystery'),(24056,7521214,'Comedy'),(24057,7521214,'Horror'),(24058,7527538,'Comedy'),(24059,7534068,'Comedy'),(24060,7534068,'Crime'),(24061,7534068,'Drama'),(24062,7541160,'Short'),(24063,7541160,'Sport'),(24064,7543930,'Drama'),(24065,7545266,'Comedy'),(24066,7545524,'Drama'),(24067,7545566,'Drama'),(24068,7547410,'Action'),(24069,7547410,'Adventure'),(24070,7547410,'Comedy'),(24071,7549996,'Biography'),(24072,7549996,'Drama'),(24073,7549996,'Music'),(24074,7550014,'Drama'),(24075,7550014,'Mystery'),(24076,7550014,'Thriller'),(24077,7555072,'Comedy'),(24078,7555072,'Romance'),(24079,7555774,'Drama'),(24080,7556122,'Action'),(24081,7556122,'Thriller'),(24082,7557108,'Drama'),(24083,7557108,'Horror'),(24084,7557108,'Mystery'),(24085,7594584,'Action'),(24086,7594584,'Crime'),(24087,7594584,'Drama'),(24088,7600716,'Drama'),(24089,7605074,'Action'),(24090,7605074,'Adventure'),(24091,7605074,'Sci-Fi'),(24092,7608418,'Comedy'),(24093,7608418,'Family'),(24094,7608418,'Romance'),(24095,7615302,'Biography'),(24096,7615302,'Drama'),(24097,7615302,'History'),(24098,7616148,'Drama'),(24099,7616148,'Mystery'),(24100,7616148,'Thriller'),(24101,7634968,'Comedy'),(24102,7634968,'Fantasy'),(24103,7634968,'Romance'),(24104,7636672,'Drama'),(24105,7636672,'History'),(24106,7636672,'Sport'),(24107,7638348,'Action'),(24108,7638348,'Adventure'),(24109,7638348,'Comedy'),(24110,7653254,'Drama'),(24111,7653254,'Romance'),(24112,7657566,'Crime'),(24113,7657566,'Drama'),(24114,7657566,'Mystery'),(24115,7668870,'Drama'),(24116,7668870,'Mystery'),(24117,7668870,'Thriller'),(24118,7671064,'Comedy'),(24119,7671064,'Drama'),(24120,7689052,'Action'),(24121,7689052,'Comedy'),(24122,7689052,'Crime'),(24123,7689958,'Biography'),(24124,7689958,'Documentary'),(24125,7698468,'Biography'),(24126,7698468,'Crime'),(24127,7698468,'Drama'),(24128,7703924,'Crime'),(24129,7703924,'Drama'),(24130,7703924,'Romance'),(24131,7711764,'Horror'),(24132,7713068,'Action'),(24133,7713068,'Comedy'),(24134,7713068,'Crime'),(24135,7715070,'Comedy'),(24136,7715070,'Family'),(24137,7715070,'History'),(24138,7737528,'Action'),(24139,7737528,'Adventure'),(24140,7737528,'Crime'),(24141,7737786,'Action'),(24142,7737786,'Thriller'),(24143,7740496,'Crime'),(24144,7740496,'Drama'),(24145,7740496,'Thriller'),(24146,7745068,'Action'),(24147,7745068,'Adventure'),(24148,7745068,'Animation'),(24149,7745956,'Action'),(24150,7745956,'Adventure'),(24151,7745956,'Animation'),(24152,7752126,'Drama'),(24153,7752126,'Horror'),(24154,7752126,'Mystery'),(24155,7754902,'Short'),(24156,7755856,'Comedy'),(24157,7765404,'Action'),(24158,7765404,'Comedy'),(24159,7768846,'Drama'),(24160,7772582,'Drama'),(24161,7775622,'Adventure'),(24162,7775622,'Documentary'),(24163,7775622,'Sport'),(24164,7781432,'Fantasy'),(24165,7781432,'Horror'),(24166,7784604,'Drama'),(24167,7784604,'Horror'),(24168,7784604,'Mystery'),(24169,7785128,'Adventure'),(24170,7785128,'Animation'),(24171,7785128,'Comedy'),(24172,7791048,'Drama'),(24173,7798634,'Action'),(24174,7798634,'Comedy'),(24175,7798634,'Horror'),(24176,7816420,'Documentary'),(24177,7816420,'Short'),(24178,7825208,'Action'),(24179,7825208,'Drama'),(24180,7825208,'History'),(24181,7838252,'Action'),(24182,7838252,'Crime'),(24183,7838252,'Drama'),(24184,7846844,'Action'),(24185,7846844,'Adventure'),(24186,7846844,'Crime'),(24187,7853242,'Comedy'),(24188,7853242,'Romance'),(24189,7869818,'Animation'),(24190,7869818,'Comedy'),(24191,7869818,'Drama'),(24192,7873348,'Adventure'),(24193,7873348,'Comedy'),(24194,7873348,'Sci-Fi'),(24195,7875464,'Drama'),(24196,7888964,'Action'),(24197,7888964,'Crime'),(24198,7888964,'Drama'),(24199,7893992,'Comedy'),(24200,7893992,'Drama'),(24201,7902124,'Drama'),(24202,7905466,'Documentary'),(24203,7905466,'History'),(24204,7905466,'War'),(24205,7909970,'Crime'),(24206,7909970,'Drama'),(24207,7939766,'Drama'),(24208,7939766,'Thriller'),(24209,7942742,'Drama'),(24210,7942742,'Music'),(24211,7958736,'Horror'),(24212,7958736,'Mystery'),(24213,7958736,'Thriller'),(24214,7959026,'Crime'),(24215,7959026,'Drama'),(24216,7959026,'Thriller'),(24217,7975244,'Action'),(24218,7975244,'Adventure'),(24219,7975244,'Comedy'),(24220,7976208,'Drama'),(24221,7976208,'Horror'),(24222,7976208,'Thriller'),(24223,7979492,'Action'),(24224,7979492,'Adventure'),(24225,7979492,'Comedy'),(24226,7979580,'Adventure'),(24227,7979580,'Animation'),(24228,7979580,'Comedy'),(24229,7983894,'Biography'),(24230,7983894,'Drama'),(24231,7983894,'History'),(24232,7984734,'Drama'),(24233,7984734,'Fantasy'),(24234,7984734,'Horror'),(24235,7984766,'Biography'),(24236,7984766,'Drama'),(24237,7984766,'History'),(24238,7985692,'Drama'),(24239,7991608,'Action'),(24240,7991608,'Comedy'),(24241,7991608,'Thriller'),(24242,8001346,'Adventure'),(24243,8001346,'Animation'),(24244,8001346,'Comedy'),(24245,8009938,'Fantasy'),(24246,8009938,'Horror'),(24247,8010544,'Action'),(24248,8010544,'Adventure'),(24249,8010544,'Animation'),(24250,8019694,'Drama'),(24251,8019694,'Romance'),(24252,8020896,'Crime'),(24253,8020896,'Drama'),(24254,8021928,'Documentary'),(24255,8021928,'Short'),(24256,8022928,'Adventure'),(24257,8022928,'Family'),(24258,8022928,'Musical'),(24259,8031422,'Action'),(24260,8031422,'Adventure'),(24261,8031422,'Comedy'),(24262,8041270,'Action'),(24263,8041270,'Adventure'),(24264,8041270,'Sci-Fi'),(24265,8041276,'Comedy'),(24266,8041276,'Drama'),(24267,8075192,'Crime'),(24268,8075192,'Drama'),(24269,8075192,'Thriller'),(24270,8075260,'Comedy'),(24271,8075260,'Romance'),(24272,8079248,'Comedy'),(24273,8079248,'Fantasy'),(24274,8079248,'Music'),(24275,8093700,'Action'),(24276,8093700,'Drama'),(24277,8093700,'History'),(24278,8097030,'Adventure'),(24279,8097030,'Animation'),(24280,8097030,'Comedy'),(24281,8106534,'Action'),(24282,8106534,'Thriller'),(24283,8108164,'Comedy'),(24284,8108164,'Crime'),(24285,8108164,'Drama'),(24286,8108198,'Crime'),(24287,8108198,'Mystery'),(24288,8108198,'Thriller'),(24289,8108206,'Biography'),(24290,8108206,'Drama'),(24291,8110232,'Crime'),(24292,8110232,'Drama'),(24293,8110246,'Action'),(24294,8110246,'Comedy'),(24295,8110246,'Thriller'),(24296,8110640,'Action'),(24297,8110640,'Crime'),(24298,8110640,'Mystery'),(24299,8110652,'Comedy'),(24300,8110652,'Horror'),(24301,8110652,'Thriller'),(24302,8114980,'Action'),(24303,8114980,'Comedy'),(24304,8114980,'Horror'),(24305,8115900,'Adventure'),(24306,8115900,'Animation'),(24307,8115900,'Comedy'),(24308,8133192,'Documentary'),(24309,8133192,'Short'),(24310,8143990,'Comedy'),(24311,8143990,'Crime'),(24312,8143990,'Drama'),(24313,8150814,'Horror'),(24314,8150814,'Mystery'),(24315,8150814,'Thriller'),(24316,8151874,'Drama'),(24317,8155288,'Comedy'),(24318,8155288,'Horror'),(24319,8155288,'Mystery'),(24320,8169446,'Adventure'),(24321,8169446,'Comedy'),(24322,8169446,'Drama'),(24323,8169552,'Adventure'),(24324,8169552,'Comedy'),(24325,8169552,'Family'),(24326,8178634,'Action'),(24327,8178634,'Drama'),(24328,8179388,'Action'),(24329,8179388,'Adventure'),(24330,8179388,'Comedy'),(24331,8201170,'Comedy'),(24332,8201170,'Romance'),(24333,8206668,'Biography'),(24334,8206668,'Comedy'),(24335,8206668,'Crime'),(24336,8228288,'Horror'),(24337,8228288,'Sci-Fi'),(24338,8228288,'Thriller'),(24339,8230872,'Drama'),(24340,8231668,'Comedy'),(24341,8231668,'Romance'),(24342,8236336,'Biography'),(24343,8236336,'Crime'),(24344,8236336,'Drama'),(24345,8242084,'Action'),(24346,8242084,'Comedy'),(24347,8244784,'Action'),(24348,8244784,'Horror'),(24349,8244784,'Thriller'),(24350,8246646,'Action'),(24351,8246646,'Romance'),(24352,8246646,'Thriller'),(24353,8267604,'Drama'),(24354,8286894,'Drama'),(24355,8286894,'Romance'),(24356,8287690,'Drama'),(24357,8299768,'Comedy'),(24358,8299768,'Crime'),(24359,8299768,'Drama'),(24360,8323104,'Comedy'),(24361,8323104,'Crime'),(24362,8323104,'Drama'),(24363,8327492,'Action'),(24364,8327492,'Animation'),(24365,8327492,'Drama'),(24366,8331988,'Drama'),(24367,8332772,'Drama'),(24368,8332922,'Drama'),(24369,8332922,'Horror'),(24370,8332922,'Sci-Fi'),(24371,8338076,'Comedy'),(24372,8338076,'Drama'),(24373,8338076,'Romance'),(24374,8350360,'Horror'),(24375,8350360,'Mystery'),(24376,8350360,'Thriller'),(24377,8356942,'Action'),(24378,8356942,'Thriller'),(24379,8359816,'Drama'),(24380,8359848,'Drama'),(24381,8359848,'Horror'),(24382,8359848,'Music'),(24383,8361028,'Drama'),(24384,8361028,'Horror'),(24385,8361028,'Mystery'),(24386,8361552,'Documentary'),(24387,8361552,'Short'),(24388,8364368,'Action'),(24389,8364368,'Adventure'),(24390,8364368,'Horror'),(24391,8367814,'Action'),(24392,8367814,'Comedy'),(24393,8367814,'Crime'),(24394,8368406,'Horror'),(24395,8368406,'Mystery'),(24396,8368406,'Sci-Fi'),(24397,8368408,'Action'),(24398,8368408,'Crime'),(24399,8368408,'Thriller'),(24400,8368512,'Drama'),(24401,8368512,'History'),(24402,8368512,'Mystery'),(24403,8375936,'Action'),(24404,8375936,'Sci-Fi'),(24405,8375936,'Thriller'),(24406,8385148,'Action'),(24407,8385148,'Comedy'),(24408,8385148,'Crime'),(24409,8385474,'Adventure'),(24410,8385474,'Comedy'),(24411,8385474,'Drama'),(24412,8399288,'Drama'),(24413,8399288,'Mystery'),(24414,8399288,'Sci-Fi'),(24415,8399664,'Comedy'),(24416,8399664,'Drama'),(24417,8399664,'Music'),(24418,8400584,'Comedy'),(24419,8400584,'Drama'),(24420,8400584,'Romance'),(24421,8404614,'Biography'),(24422,8404614,'Comedy'),(24423,8404614,'Drama'),(24424,8425034,'Comedy'),(24425,8425034,'Horror'),(24426,8430598,'Biography'),(24427,8430598,'Drama'),(24428,8430598,'Mystery'),(24429,8456190,'Action'),(24430,8456190,'Animation'),(24431,8456190,'Comedy'),(24432,8456696,'Comedy'),(24433,8457260,'Drama'),(24434,8457260,'Short'),(24435,8457260,'Thriller'),(24436,8459250,'Drama'),(24437,8459250,'Romance'),(24438,8459250,'Thriller'),(24439,8461042,'Drama'),(24440,8479120,'Horror'),(24441,8479120,'Short'),(24442,8484012,'Comedy'),(24443,8484012,'Drama'),(24444,8499102,'Documentary'),(24445,8503618,'Biography'),(24446,8503618,'Drama'),(24447,8503618,'History'),(24448,8508734,'Drama'),(24449,8508734,'Horror'),(24450,8508734,'Thriller'),(24451,8510350,'Comedy'),(24452,8510350,'Horror'),(24453,8521718,'Biography'),(24454,8521718,'Drama'),(24455,8521718,'Music'),(24456,8521876,'Comedy'),(24457,8521876,'Family'),(24458,8522006,'Drama'),(24459,8579674,'Action'),(24460,8579674,'Drama'),(24461,8579674,'War'),(24462,8580274,'Comedy'),(24463,8580274,'Music'),(24464,8588366,'Animation'),(24465,8588366,'Short'),(24466,8592498,'Comedy'),(24467,8592498,'Crime'),(24468,8592498,'Drama'),(24469,8613070,'Drama'),(24470,8613070,'Romance'),(24471,8623904,'Comedy'),(24472,8623904,'Drama'),(24473,8623904,'Fantasy'),(24474,8633464,'Drama'),(24475,8633464,'Sci-Fi'),(24476,8633478,'Mystery'),(24477,8633478,'Thriller'),(24478,8633950,'Comedy'),(24479,8633950,'Drama'),(24480,8637428,'Comedy'),(24481,8637428,'Drama'),(24482,8655470,'Comedy'),(24483,8655470,'Drama'),(24484,8659948,'Animation'),(24485,8659948,'Comedy'),(24486,8659948,'Music'),(24487,8669356,'Drama'),(24488,8669356,'History'),(24489,8669356,'War'),(24490,8695030,'Comedy'),(24491,8695030,'Fantasy'),(24492,8695030,'Horror'),(24493,8707922,'Comedy'),(24494,8707922,'Romance'),(24495,8712750,'Horror'),(24496,8712750,'Thriller'),(24497,8717590,'Animation'),(24498,8717590,'Comedy'),(24499,8717590,'Drama'),(24500,8718158,'Comedy'),(24501,8718158,'Romance'),(24502,8721424,'Biography'),(24503,8721424,'Comedy'),(24504,8721424,'Drama'),(24505,8722346,'Crime'),(24506,8722346,'Drama'),(24507,8722346,'Romance'),(24508,8734872,'Adventure'),(24509,8734872,'Animation'),(24510,8734872,'Comedy'),(24511,8743064,'Action'),(24512,8743064,'Adventure'),(24513,8743064,'Crime'),(24514,8745676,'Biography'),(24515,8745676,'Drama'),(24516,8745676,'Sport'),(24517,8752440,'Action'),(24518,8752440,'Adventure'),(24519,8752440,'Animation'),(24520,8758086,'Horror'),(24521,8758086,'Mystery'),(24522,8758086,'Thriller'),(24523,8760708,'Horror'),(24524,8760708,'Sci-Fi'),(24525,8760708,'Thriller'),(24526,8760724,'Horror'),(24527,8772262,'Drama'),(24528,8772262,'Horror'),(24529,8772262,'Mystery'),(24530,8781414,'Drama'),(24531,8781414,'Mystery'),(24532,8781414,'Sci-Fi'),(24533,8784956,'Action'),(24534,8784956,'Drama'),(24535,8784956,'Thriller'),(24536,8816194,'Comedy'),(24537,8816194,'Horror'),(24538,8816194,'Mystery'),(24539,8847712,'Comedy'),(24540,8847712,'Drama'),(24541,8847712,'Romance'),(24542,8850222,'Action'),(24543,8850222,'Horror'),(24544,8850222,'Thriller'),(24545,8851148,'Drama'),(24546,8851148,'Romance'),(24547,8851148,'Sci-Fi'),(24548,8855960,'Comedy'),(24549,8855960,'Romance'),(24550,8856090,'Comedy'),(24551,8856090,'Drama'),(24552,8856470,'Action'),(24553,8856470,'Animation'),(24554,8856470,'Family'),(24555,8858104,'Comedy'),(24556,8858104,'Drama'),(24557,8858104,'Music'),(24558,8892756,'Thriller'),(24559,8893974,'Drama'),(24560,8900098,'Drama'),(24561,8932338,'Comedy'),(24562,8936646,'Action'),(24563,8936646,'Thriller'),(24564,8946378,'Comedy'),(24565,8946378,'Crime'),(24566,8946378,'Drama'),(24567,8949056,'Comedy'),(24568,8949056,'Drama'),(24569,8954732,'Comedy'),(24570,8954732,'Drama'),(24571,8954732,'Family'),(24572,8962124,'Comedy'),(24573,8962124,'Drama'),(24574,8962124,'Romance'),(24575,9000224,'Drama'),(24576,9016016,'Comedy'),(24577,9016016,'Drama'),(24578,9021234,'Western'),(24579,9024106,'Biography'),(24580,9024106,'Drama'),(24581,9032400,'Action'),(24582,9032400,'Adventure'),(24583,9032400,'Fantasy'),(24584,9054192,'Comedy'),(24585,9054192,'Crime'),(24586,9059704,'Comedy'),(24587,9059704,'Fantasy'),(24588,9059760,'Drama'),(24589,9059760,'Romance'),(24590,9072352,'Drama'),(24591,9072352,'Horror'),(24592,9072352,'Mystery'),(24593,9075008,'Crime'),(24594,9075008,'History'),(24595,9086228,'Fantasy'),(24596,9086228,'Horror'),(24597,9086228,'Mystery'),(24598,9100054,'Drama'),(24599,9109492,'Drama'),(24600,9114286,'Action'),(24601,9114286,'Adventure'),(24602,9114286,'Drama'),(24603,9115530,'Biography'),(24604,9115530,'Drama'),(24605,9115530,'Romance'),(24606,9116358,'Action'),(24607,9116358,'Adventure'),(24608,9116358,'Animation'),(24609,9130508,'Biography'),(24610,9130508,'Crime'),(24611,9130508,'Drama'),(24612,9138170,'Comedy'),(24613,9138170,'Drama'),(24614,9146058,'Drama'),(24615,9148706,'Comedy'),(24616,9148706,'Drama'),(24617,9148706,'History'),(24618,9174578,'Adventure'),(24619,9174578,'Comedy'),(24620,9174578,'History'),(24621,9184592,'Family'),(24622,9184592,'Sci-Fi'),(24623,9184592,'Thriller'),(24624,9185206,'Comedy'),(24625,9185206,'Drama'),(24626,9185206,'Family'),(24627,9201720,'Drama'),(24628,9203694,'Adventure'),(24629,9203694,'Sci-Fi'),(24630,9203694,'Thriller'),(24631,9204204,'Drama'),(24632,9204204,'Horror'),(24633,9204204,'Mystery'),(24634,9214832,'Comedy'),(24635,9214832,'Drama'),(24636,9214832,'Romance'),(24637,9217514,'Action'),(24638,9217514,'Adventure'),(24639,9217514,'Drama'),(24640,9224288,'Comedy'),(24641,9224288,'Drama'),(24642,9239816,'Comedy'),(24643,9239816,'Short'),(24644,9243804,'Adventure'),(24645,9243804,'Drama'),(24646,9243804,'Fantasy'),(24647,9243946,'Action'),(24648,9243946,'Crime'),(24649,9243946,'Drama'),(24650,9252508,'Comedy'),(24651,9252508,'Drama'),(24652,9252508,'Family'),(24653,9274670,'Action'),(24654,9274670,'Drama'),(24655,9274670,'Thriller'),(24656,9286908,'Action'),(24657,9286908,'Drama'),(24658,9286908,'Thriller'),(24659,9288046,'Adventure'),(24660,9288046,'Animation'),(24661,9288046,'Comedy'),(24662,9288776,'Action'),(24663,9288776,'Adventure'),(24664,9288776,'Animation'),(24665,9288822,'Drama'),(24666,9288822,'Mystery'),(24667,9288822,'Thriller'),(24668,9308382,'Drama'),(24669,9308382,'Music'),(24670,9308382,'Romance'),(24671,9354842,'Comedy'),(24672,9354842,'Drama'),(24673,9354842,'Romance'),(24674,9357050,'Drama'),(24675,9357050,'Musical'),(24676,9358120,'Drama'),(24677,9358120,'Music'),(24678,9362722,'Action'),(24679,9362722,'Adventure'),(24680,9362722,'Animation'),(24681,9362930,'Action'),(24682,9362930,'Adventure'),(24683,9362930,'Sci-Fi'),(24684,9376612,'Action'),(24685,9376612,'Adventure'),(24686,9376612,'Fantasy'),(24687,9381998,'Crime'),(24688,9381998,'Drama'),(24689,9381998,'Mystery'),(24690,9389998,'Action'),(24691,9389998,'Crime'),(24692,9389998,'Drama'),(24693,9411972,'Drama'),(24694,9411972,'Mystery'),(24695,9411972,'Romance'),(24696,9412268,'Action'),(24697,9412268,'Drama'),(24698,9412268,'Thriller'),(24699,9418878,'Drama'),(24700,9419834,'Crime'),(24701,9419834,'Drama'),(24702,9419834,'Mystery'),(24703,9419884,'Action'),(24704,9419884,'Adventure'),(24705,9419884,'Fantasy'),(24706,9421570,'Crime'),(24707,9421570,'Drama'),(24708,9421570,'Thriller'),(24709,9426210,'Animation'),(24710,9426210,'Drama'),(24711,9426210,'Fantasy'),(24712,9484998,'Comedy'),(24713,9484998,'Fantasy'),(24714,9484998,'Mystery'),(24715,9486226,'Drama'),(24716,9486226,'Sport'),(24717,9507276,'Action'),(24718,9507276,'Adventure'),(24719,9507276,'Animation'),(24720,9522080,'Drama'),(24721,9572534,'Comedy'),(24722,9583840,'Drama'),(24723,9602378,'Comedy'),(24724,9602378,'Drama'),(24725,9602378,'Romance'),(24726,9603212,'Action'),(24727,9603212,'Adventure'),(24728,9603212,'Thriller'),(24729,9617456,'Biography'),(24730,9617456,'Documentary'),(24731,9617456,'War'),(24732,9620288,'Biography'),(24733,9620288,'Drama'),(24734,9620288,'Sport'),(24735,9620292,'Crime'),(24736,9620292,'Drama'),(24737,9620292,'Mystery'),(24738,9624766,'Action'),(24739,9624766,'Sci-Fi'),(24740,9624766,'Thriller'),(24741,9632590,'Comedy'),(24742,9632590,'Drama'),(24743,9639470,'Drama'),(24744,9639470,'Horror'),(24745,9639470,'Mystery'),(24746,9670282,'Action'),(24747,9670282,'Adventure'),(24748,9670282,'Comedy'),(24749,9683478,'Comedy'),(24750,9683478,'Drama'),(24751,9686708,'Comedy'),(24752,9686708,'Drama'),(24753,9691136,'Action'),(24754,9691136,'Horror'),(24755,9691136,'War'),(24756,9701940,'Drama'),(24757,9701940,'Horror'),(24758,9701940,'Mystery'),(24759,9701942,'Horror'),(24760,9701942,'Mystery'),(24761,9714030,'Comedy'),(24762,9714030,'Drama'),(24763,9729768,'Drama'),(24764,9731598,'Comedy'),(24765,9731598,'Romance'),(24766,9737798,'Drama'),(24767,9738716,'Drama'),(24768,9738716,'History'),(24769,9738716,'Western'),(24770,9741310,'Comedy'),(24771,9741310,'Horror'),(24772,9764362,'Comedy'),(24773,9764362,'Horror'),(24774,9764362,'Thriller'),(24775,9765226,'Comedy'),(24776,9766166,'Comedy'),(24777,9766166,'Family'),(24778,9766166,'Fantasy'),(24779,9770150,'Drama'),(24780,9775360,'Action'),(24781,9775360,'Adventure'),(24782,9775360,'Animation'),(24783,9777666,'Action'),(24784,9777666,'Adventure'),(24785,9777666,'Drama'),(24786,9783600,'Action'),(24787,9783600,'Crime'),(24788,9783600,'Drama'),(24789,9784708,'Action'),(24790,9784708,'Adventure'),(24791,9784708,'Animation'),(24792,9784798,'Biography'),(24793,9784798,'Drama'),(24794,9784798,'History'),(24795,9806192,'Animation'),(24796,9806192,'Drama'),(24797,9806192,'Fantasy'),(24798,9812474,'Drama'),(24799,9812474,'Fantasy'),(24800,9812474,'Horror'),(24801,9820556,'Action'),(24802,9820556,'Horror'),(24803,9820556,'Sci-Fi'),(24804,9843470,'Drama'),(24805,9844522,'Action'),(24806,9844522,'Adventure'),(24807,9844522,'Horror'),(24808,9866072,'Comedy'),(24809,9866072,'Romance'),(24810,9893250,'Comedy'),(24811,9893250,'Crime'),(24812,9893250,'Drama'),(24813,9900092,'Drama'),(24814,9900092,'Fantasy'),(24815,9900092,'Sci-Fi'),(24816,9902160,'Drama'); +/*!40000 ALTER TABLE `MoviesGenres` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `MoviesPeople` +-- + +DROP TABLE IF EXISTS `MoviesPeople`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `MoviesPeople` ( + `movieId` bigint DEFAULT NULL, + `personId` bigint DEFAULT NULL, + `ordering` bigint DEFAULT NULL, + `category` text, + `job` text, + `characters` text, + KEY `ix_MoviesPeople_personId` (`personId`), + KEY `ix_MoviesPeople_movieId` (`movieId`), + CONSTRAINT `FK_MoviesPeople_movieId` FOREIGN KEY (`movieId`) REFERENCES `Movies` (`movieId`), + CONSTRAINT `FK_MoviesPeople_personId` FOREIGN KEY (`personId`) REFERENCES `People` (`personId`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `MoviesPeople` +-- + +LOCK TABLES `MoviesPeople` WRITE; +/*!40000 ALTER TABLE `MoviesPeople` DISABLE KEYS */; +INSERT INTO `MoviesPeople` VALUES (1,1588970,1,'self',NULL,'[\"Self\"]'),(1,5690,2,'director',NULL,NULL),(1,374658,3,'cinematographer','director of photography',NULL),(2,721526,1,'director',NULL,NULL),(2,1335271,2,'composer',NULL,NULL),(3,721526,1,'director',NULL,NULL),(3,1770680,2,'producer','producer',NULL),(3,1335271,3,'composer',NULL,NULL),(3,5442200,4,'editor',NULL,NULL),(4,721526,1,'director',NULL,NULL),(4,1335271,2,'composer',NULL,NULL),(5,443482,1,'actor',NULL,'[\"Blacksmith\"]'),(5,653042,2,'actor',NULL,'[\"Assistant\"]'),(5,5690,3,'director',NULL,NULL),(5,249379,4,'producer','producer',NULL),(6,5690,1,'director',NULL,NULL),(7,179163,1,'actor',NULL,NULL),(7,183947,2,'actor',NULL,NULL),(7,5690,3,'director',NULL,NULL),(7,374658,4,'director',NULL,NULL),(7,249379,5,'producer','producer',NULL),(8,653028,1,'actor',NULL,'[\"Sneezing Man\"]'),(8,5690,2,'director',NULL,NULL),(8,374658,3,'cinematographer',NULL,NULL),(9,63086,1,'actress',NULL,'[\"Miss Geraldine Holbrook (Miss Jerry)\"]'),(9,183823,2,'actor',NULL,'[\"Mr. Hamilton\"]'),(9,1309758,3,'actor',NULL,'[\"Chauncey Depew - the Director of the New York Central Railroad\"]'),(9,85156,4,'director',NULL,NULL),(11,3692297,1,'actor',NULL,'[\"Acrobats\"]'),(11,804434,2,'director',NULL,NULL),(12,2880396,1,'self',NULL,'[\"Self\"]'),(12,9735580,2,'self',NULL,'[\"Self\"]'),(12,525900,3,'self',NULL,'[\"Self\"]'),(12,9735581,4,'self',NULL,'[\"Self\"]'),(12,525908,5,'director',NULL,NULL),(12,525910,6,'director',NULL,NULL),(12,9735579,7,'self',NULL,'[\"Self\"]'),(12,9653419,8,'self',NULL,'[\"Self\"]'),(14,166380,1,'actor',NULL,'[\"The Gardener\"]'),(14,244989,2,'actor',NULL,'[\"The Boy\"]'),(14,525910,3,'director',NULL,NULL),(15,721526,1,'director',NULL,NULL),(16,525900,1,'self',NULL,'[\"Self (on the pier)\"]'),(16,9735581,2,'self',NULL,'[\"Self (on the pier)\"]'),(16,525910,3,'director',NULL,NULL),(17,3691272,1,'actor',NULL,'[\"The boy\"]'),(17,3692829,2,'actress',NULL,'[\"The girl\"]'),(17,1587194,3,'director',NULL,NULL),(17,804434,4,'director',NULL,NULL),(22,525910,1,'director',NULL,NULL),(29,525908,1,'self',NULL,'[\"Self\"]'),(29,525900,2,'self',NULL,'[\"Self\"]'),(29,2350838,3,'self',NULL,'[\"Self\"]'),(29,525910,4,'director',NULL,NULL),(41,525910,1,'director',NULL,NULL),(41,525908,2,'producer','producer',NULL),(91,194945,1,'actress',NULL,'[\"Young woman\"]'),(91,6170115,2,'actor',NULL,'[\"Mephistopheles\"]'),(91,617588,3,'actor',NULL,'[\"Mephistopheles\"]'),(131,617588,1,'actor',NULL,'[\"L\'homme qui essaie de dormir\"]'),(211,194945,1,'actress',NULL,'[\"Phoebe - la bonne fée\"]'),(211,617588,2,'actor',NULL,'[\"L\'astronome\"]'),(230,1333156,1,'actress',NULL,'[\"Cinderella\"]'),(230,76933,2,'actress',NULL,'[\"The Fairy Godmother\"]'),(230,1778224,3,'actor',NULL,'[\"Prince Charming\"]'),(230,194945,4,'actress',NULL,'[\"Fairy Godmother\"]'),(230,617588,5,'director',NULL,NULL),(230,674518,6,'writer','story \"Cinderella\"',NULL),(230,1778292,7,'actor',NULL,'[\"Party Guest\"]'),(246,617588,1,'actor',NULL,'[\"Magician\"]'),(272,808310,1,'director',NULL,NULL),(300,85865,1,'actor',NULL,'[\"Chalk-Talk Artist\"]'),(300,807236,2,'producer','producer',NULL),(304,2940072,1,'actor',NULL,'[\"Willy - the little grandson\"]'),(304,808310,2,'director',NULL,NULL),(306,76800,1,'actress',NULL,'[\"Hamlet\"]'),(306,536252,2,'actor',NULL,'[\"Laertes\"]'),(306,1267013,3,'actress',NULL,'[\"A page\"]'),(306,561109,4,'director',NULL,NULL),(306,636,5,'writer','play \"Hamlet\"',NULL),(306,5670483,6,'producer','producer',NULL),(313,809419,1,'actress',NULL,'[\"Young woman\"]'),(313,338379,2,'actor',NULL,'[\"Man\"]'),(313,808310,3,'director',NULL,NULL),(359,617588,1,'actor',NULL,'[\"The Chemist\",\"The India Rubber Head\"]'),(413,617588,1,'actor',NULL,'[\"The Blonde Miser\",\"Thief\"]'),(417,617588,1,'actor',NULL,'[\"Prof. Barbenfouillis\",\"The Moon\"]'),(417,29244,2,'actor',NULL,'[\"Astronomer - Nostradamus\"]'),(417,76933,3,'actress',NULL,'[\"Lady in the Moon\"]'),(417,1215996,4,'actor',NULL,'[\"Astronomer- Alcofrisbas\"]'),(417,894523,5,'writer','novel \"De la Terre à la Lune\"',NULL),(417,920229,6,'writer','novel \"First Men in the Moon\"',NULL),(417,242155,7,'composer',NULL,NULL),(417,324073,8,'composer',NULL,NULL),(417,4491570,9,'composer',NULL,NULL),(439,302368,10,'actor',NULL,'[\"Little Boy\"]'),(439,1908,1,'actor',NULL,'[\"Bandit\",\"Shot Passenger\",\"Tenderfoot Dancer\"]'),(439,7625,2,'actor',NULL,'[\"Sheriff\"]'),(439,55607,3,'actor',NULL,NULL),(439,55661,4,'actor',NULL,'[\"Bandit Who Fires at Camera\"]'),(439,692105,5,'director',NULL,NULL),(439,1145809,6,'writer','story',NULL),(439,807466,7,'cinematographer',NULL,NULL),(439,131750,8,'actor',NULL,'[\"Sheriff\"]'),(439,2313241,9,'actor',NULL,'[\"Fourth Bandit\"]'),(455,617588,1,'actor',NULL,'[\"The Melomaniac\"]'),(499,617588,1,'actor',NULL,'[\"Mabouloff\"]'),(499,16317,2,'actress',NULL,'[\"Madame Latrouille\"]'),(499,194945,3,'actress',NULL,'[\"Villager at seaport\"]'),(499,8706003,4,'actress',NULL,'[\"Nurse in Swiss hospital\"]'),(499,894523,5,'writer','play \"Le Voyage a travers l\'Impossible\"',NULL),(499,257866,6,'writer','play \"Le Voyage a travers l\'Impossible\"',NULL),(554,85865,1,'actor',NULL,'[\"Cartoonist\"]'),(567,617588,1,'actor',NULL,'[\"Satan\"]'),(567,182945,2,'writer','play \"Le Quatre Cents Coups du diable\"',NULL),(567,9551905,3,'writer','play \"Le Quatre Cents Coups de diable\"',NULL),(574,675239,10,'cinematographer','director of photography',NULL),(574,846887,1,'actress',NULL,'[\"Kate Kelly\"]'),(574,846894,2,'actor',NULL,'[\"School Master\"]'),(574,1431224,3,'actor',NULL,'[\"Joe Byrne\"]'),(574,3002376,4,'actor',NULL,'[\"Steve Hart\"]'),(574,846879,5,'director',NULL,NULL),(574,317210,6,'producer','producer',NULL),(574,425854,7,'producer','producer',NULL),(574,846911,8,'producer','producer',NULL),(574,2421834,9,'composer',NULL,NULL),(1009,659947,1,'actor',NULL,'[\"The Smoker\"]'),(1009,401368,2,'actress',NULL,'[\"The Elder Fairy\"]'),(1009,85865,3,'director',NULL,NULL),(2101,906610,10,'actor',NULL,'[\"Venditius - a Roman Soldier\"]'),(2101,306947,1,'actress',NULL,'[\"Cleopatra - Queen of Egypt\"]'),(2101,801774,2,'actress',NULL,'[\"Iras - An Attendant\"]'),(2101,276160,3,'actress',NULL,'[\"Charmian - An Attendant\"]'),(2101,733482,4,'actress',NULL,'[\"Octavia - Wife of Antony\"]'),(2101,309130,5,'director',NULL,NULL),(2101,765026,6,'writer','adapted from the play by',NULL),(2101,182557,7,'actress',NULL,'[\"Nicola - a Child\"]'),(2101,1950505,8,'actor',NULL,'[\"Antony - a Triumvir and General\"]'),(2101,397513,9,'actor',NULL,'[\"Pharon - a Greek Slave and Fisherman\"]'),(2281,285643,1,'actor',NULL,'[\"Colonel James Bryson\"]'),(2281,334873,2,'actress',NULL,'[\"Colonel Bryson\'s Daughter\"]'),(2281,514517,3,'actress',NULL,'[\"Sky Star\"]'),(2281,583645,4,'actor',NULL,'[\"Lieutenant White\"]'),(2281,408436,5,'director',NULL,NULL),(2281,837989,6,'writer','scenario',NULL),(2281,794405,7,'actor',NULL,'[\"The Sioux Chief\"]'),(2281,10134,8,'actor',NULL,'[\"Telegrapher\"]'),(2281,9332853,9,'actress',NULL,'[\"Cowgirl\"]'),(3424,916665,1,'actress',NULL,'[\"The Wife\"]'),(3424,667024,2,'actor',NULL,'[\"The Husband\"]'),(3424,314700,3,'actor',NULL,'[\"The Pursuer\"]'),(3424,442253,4,'actor',NULL,'[\"The Tramp\"]'),(3424,806565,5,'director',NULL,NULL),(3424,151606,6,'actor',NULL,'[\"A Hobo\"]'),(3424,913085,7,'actress',NULL,'[\"Mamie - The Maid\"]'),(3512,617588,1,'director',NULL,NULL),(3512,479514,2,'writer','music hall comedy',NULL),(3512,665572,3,'producer','producer',NULL),(3973,237713,1,'actor',NULL,'[\"Dr. Fred Cassadene\"]'),(3973,832458,2,'actress',NULL,'[\"Miss Lillian Travers\"]'),(3973,448682,3,'actor',NULL,'[\"Major Horton\"]'),(3973,237693,4,'actress',NULL,'[\"Bessie Horton\"]'),(3973,78442,5,'writer',NULL,NULL),(3973,348348,6,'writer','novel',NULL),(3973,612348,7,'writer',NULL,NULL),(3973,715097,8,'writer','novel',NULL),(3973,829778,9,'cinematographer',NULL,NULL),(4972,376221,10,'editor',NULL,NULL),(4972,1273,1,'actress',NULL,'[\"Elsie - Stoneman\'s Daughter\"]'),(4972,550615,2,'actress',NULL,'[\"Flora Cameron - The Pet Sister\"]'),(4972,910400,3,'actor',NULL,'[\"Col. Ben Cameron aka The Little Colonel\"]'),(4972,178270,4,'actress',NULL,'[\"Margaret Cameron - The Elder Sister\"]'),(4972,428,5,'director',NULL,NULL),(4972,228746,6,'writer','adapted from his novel: \"The Clansman: An Historical Romance of the Ku Klux Klan\"',NULL),(4972,940488,7,'writer',NULL,NULL),(4972,106922,8,'composer',NULL,NULL),(4972,5658,9,'cinematographer',NULL,NULL),(6745,115524,10,'actress',NULL,'[\"Widow Garrity\"]'),(6745,321088,1,'actress',NULL,'[\"Gretchen Van Houck\"]'),(6745,507635,2,'actor',NULL,'[\"Jan Van Houck\"]'),(6745,657874,3,'actor',NULL,'[\"Rodgers\"]'),(6745,511104,4,'actor',NULL,'[\"Mystery Ship Captain\"]'),(6745,291387,5,'director',NULL,NULL),(6745,291548,6,'director',NULL,NULL),(6745,566338,7,'writer','story',NULL),(6745,71758,8,'actor',NULL,'[\"Pietro\"]'),(6745,831891,9,'actor',NULL,'[\"Little Nicky Garrity\"]'),(6864,1578667,10,'writer','poem \"Out of the Cradle Endlessly Rocking\"',NULL),(6864,1273,1,'actress',NULL,'[\"The Woman Who Rocks the Cradle\",\"Eternal Mother\"]'),(6864,366008,2,'actor',NULL,'[\"The Boy\"]'),(6864,550615,3,'actress',NULL,'[\"The Dear One\"]'),(6864,877548,4,'actor',NULL,'[\"The Dear One\'s Father\"]'),(6864,428,5,'director',NULL,NULL),(6864,48512,6,'writer','titles',NULL),(6864,115218,7,'writer',NULL,NULL),(6864,2616,8,'writer','titles',NULL),(6864,640437,9,'writer','titles',NULL),(7361,191818,1,'actress',NULL,'[\"Queen Brangomar\"]'),(7361,354878,2,'actor',NULL,'[\"Prince Florimond\"]'),(7361,103958,3,'actor',NULL,'[\"Berthold - the Huntsman\"]'),(7361,913338,4,'actress',NULL,'[\"Witch Hex\"]'),(7361,205986,5,'director',NULL,NULL),(7361,24758,6,'writer','by',NULL),(7361,342278,7,'writer','story',NULL),(7361,342303,8,'writer','story',NULL),(7361,111130,9,'cinematographer',NULL,NULL),(7507,122,1,'actor',NULL,'[\"Street musician\"]'),(7507,701012,2,'actress',NULL,'[\"Gypsy drudge\"]'),(7507,132444,3,'actor',NULL,'[\"Gypsy chieftain\"]'),(7507,925118,4,'actor',NULL,'[\"Old Gypsy woman\"]'),(7507,117018,5,'writer','written by',NULL),(7507,1176713,6,'writer','written by',NULL),(7507,288119,7,'cinematographer',NULL,NULL),(7507,5906,8,'cinematographer',NULL,NULL),(8443,111105,10,'cinematographer',NULL,NULL),(8443,681933,1,'actress',NULL,'[\"Gwendolyn \'Gwen\'\"]'),(8443,871337,2,'actress',NULL,'[\"Gwendolyn\'s Mother\"]'),(8443,919966,3,'actor',NULL,'[\"Gwendolyn\'s Father\"]'),(8443,265469,4,'actress',NULL,'[\"Jane\"]'),(8443,869665,5,'director',NULL,NULL),(8443,309557,6,'writer','play \"Poor Little Rich Girl\"',NULL),(8443,547966,7,'writer','scenario',NULL),(8443,958532,8,'producer','producer',NULL),(8443,5635,9,'cinematographer',NULL,NULL),(8489,384210,10,'actor',NULL,'[\"Crawley\"]'),(8489,858,1,'actor',NULL,'[\"A.J. Raffles\"]'),(8489,562851,2,'actress',NULL,'[\"Mrs. Vidal\"]'),(8489,166588,3,'actor',NULL,'[\"Lord Amersteth\"]'),(8489,604656,4,'actor',NULL,'[\"Bunny Manders\"]'),(8489,410271,5,'director',NULL,NULL),(8489,395216,6,'writer','stories Raffles, the Amateur Cracksman',NULL),(8489,446189,7,'writer',NULL,NULL),(8489,696078,8,'writer','play \"Raffles, the Amateur Cracksman\"',NULL),(8489,364757,9,'cinematographer',NULL,NULL),(8499,205890,10,'actress',NULL,'[\"Emma Jane Perkins\"]'),(8499,681933,1,'actress',NULL,'[\"Rebecca Randall\"]'),(8499,639545,2,'actor',NULL,'[\"Adam Ladd\"]'),(8499,248890,3,'actress',NULL,'[\"Hannah Randall\"]'),(8499,644728,4,'actor',NULL,'[\"Mr. Cobb\"]'),(8499,624714,5,'director',NULL,NULL),(8499,547966,6,'writer',NULL,NULL),(8499,859964,7,'writer','play',NULL),(8499,927752,8,'writer','novel',NULL),(8499,833115,9,'cinematographer',NULL,NULL),(8519,681933,1,'actress',NULL,'[\"Jenny Lawrence\"]'),(8519,223296,2,'actor',NULL,'[\"\'Black\' Brown - Road Agent\"]'),(8519,551222,3,'actor',NULL,'[\"Sam Sparks\"]'),(8519,369058,4,'actor',NULL,'[\"Dick Roland\"]'),(8519,1124,5,'director',NULL,NULL),(8519,534221,6,'writer','play \"Maedchen fuer alles\"',NULL),(8519,5931,7,'cinematographer',NULL,NULL),(8652,267912,1,'actor',NULL,'[\"Charles Darnay\",\"Sydney Carton\"]'),(8652,138386,2,'actress',NULL,'[\"Lucie Manette\"]'),(8652,165134,3,'actor',NULL,'[\"Marquis St.Evenmonde\"]'),(8652,562197,4,'actor',NULL,'[\"Jacques Defarge\"]'),(8652,515979,5,'director',NULL,NULL),(8652,2042,6,'writer','novel \"A Tale of Two Cities\"',NULL),(8652,288119,7,'cinematographer',NULL,NULL),(8652,774087,8,'cinematographer',NULL,NULL),(8844,319532,10,'actress',NULL,'[\"Old lady in park\"]'),(8844,516001,1,'actor',NULL,'[\"Harold\"]'),(8844,199841,2,'actress',NULL,'[\"Miss Goulash\"]'),(8844,689444,3,'actor',NULL,'[\"Snub\"]'),(8844,86430,4,'actor',NULL,'[\"Professor Goulash\"]'),(8844,695456,5,'director',NULL,NULL),(8844,730018,6,'producer','producer',NULL),(8844,112239,7,'actor',NULL,NULL),(8844,174789,8,'actor',NULL,NULL),(8844,318981,9,'actor',NULL,NULL),(9652,189684,10,'actress',NULL,'[\"Aunt Gladys Linden\"]'),(9652,681933,1,'actress',NULL,'[\"Miss Stella Maris\",\"Unity Blake\"]'),(9652,914003,2,'actress',NULL,'[\"Lady Eleanor Blount - aka Aunt Julia\"]'),(9652,822059,3,'actor',NULL,'[\"Sir Oliver Blount\"]'),(9652,853604,4,'actor',NULL,'[\"John Risca - also Spelled Riska\"]'),(9652,624714,5,'director',NULL,NULL),(9652,516810,6,'writer','from the novel by',NULL),(9652,547966,7,'writer','photoplay',NULL),(9652,833115,8,'cinematographer',NULL,NULL),(9652,543583,9,'actress',NULL,'[\"Louisa Risca - also Spelled Louise Riska\"]'),(9682,884979,10,'cinematographer',NULL,NULL),(9682,511104,1,'actor',NULL,'[\"Tarzan\"]'),(9682,548402,2,'actress',NULL,'[\"Jane Porter\"]'),(9682,90204,3,'actor',NULL,'[\"John Clayton - Lord Greystoke\"]'),(9682,456615,4,'actress',NULL,'[\"Alice Clayton - Lady Greystoke\"]'),(9682,796657,5,'director',NULL,NULL),(9682,123194,6,'writer','novel',NULL),(9682,588351,7,'writer','writer',NULL),(9682,916665,8,'writer','writer',NULL),(9682,663923,9,'producer','producer',NULL),(9968,782999,10,'actor',NULL,'[\"A Prizefighter\"]'),(9968,1273,1,'actress',NULL,'[\"Lucy - The Girl\"]'),(9968,1932,2,'actor',NULL,'[\"Cheng Huan - The Yellow Man\"]'),(9968,187981,3,'actor',NULL,'[\"Battling Burrows\"]'),(9968,397126,4,'actor',NULL,'[\"Battling Burrows\' Manager\"]'),(9968,428,5,'director',NULL,NULL),(9968,121885,6,'writer','adapted from \'The Chink and the Child\' by',NULL),(9968,5658,7,'cinematographer',NULL,NULL),(9968,81361,8,'actor',NULL,'[\"Evil Eye\"]'),(9968,73239,9,'actor',NULL,'[\"The Spying One\"]'),(10281,652661,1,'actress',NULL,'[\"Ossi\"]'),(10281,324506,2,'actor',NULL,'[\"Dr. Kersten\"]'),(10281,797728,3,'actor',NULL,'[\"Counsellor Brockmüller\"]'),(10281,475470,4,'actress',NULL,'[\"Gouvernante\"]'),(10281,523932,5,'director',NULL,NULL),(10281,473134,6,'writer','writer',NULL),(10281,203452,7,'producer','producer',NULL),(10281,418131,8,'actor',NULL,NULL),(10323,110640,10,'composer',NULL,NULL),(10323,470328,1,'actor',NULL,'[\"Dr. Caligari\"]'),(10323,891998,2,'actor',NULL,'[\"Cesare\"]'),(10323,270415,3,'actor',NULL,'[\"Franzis\"]'),(10323,196820,4,'actress',NULL,'[\"Jane Olsen\"]'),(10323,927468,5,'director',NULL,NULL),(10323,562346,6,'writer','written by',NULL),(10323,417917,7,'writer','written by',NULL),(10323,31350,8,'composer',NULL,NULL),(10323,5959,9,'composer',NULL,NULL),(10879,1196,1,'actor',NULL,'[\"Daniel Boone Brown\"]'),(10879,534252,2,'actor',NULL,'[\"Hobson\"]'),(10879,166651,3,'actress',NULL,'[\"Lucette Bancroft\"]'),(10879,132955,4,'actor',NULL,'[\"Mark Drake\"]'),(10879,281808,5,'director',NULL,NULL),(10879,313888,6,'writer','scenario',NULL),(10879,568915,7,'cinematographer',NULL,NULL),(10879,861665,8,'cinematographer',NULL,NULL),(11588,77320,10,'actor',NULL,'[\"Old Tom\"]'),(11588,681933,1,'actress',NULL,'[\"Pollyanna Whittier\"]'),(11588,417017,2,'actor',NULL,'[\"Rev. John Whittier\"]'),(11588,341554,3,'actress',NULL,'[\"Aunt Polly\"]'),(11588,248890,4,'actress',NULL,'[\"Nancy Thing\"]'),(11588,694260,5,'director',NULL,NULL),(11588,692108,6,'writer','based on the book by',NULL),(11588,193693,7,'writer','based on: the 4-act comedy by',NULL),(11588,547966,8,'writer','adaptation',NULL),(11588,3546,9,'cinematographer',NULL,NULL),(11870,823284,10,'actor',NULL,'[\"Jasper Landry\"]'),(11870,695792,1,'actress',NULL,'[\"Sylvia Landry\"]'),(11870,166224,2,'actress',NULL,'[\"Alma Prichard\"]'),(11870,749281,3,'actor',NULL,'[\"Conrad Drebert - Sylvia\'s Fiancé\"]'),(11870,155477,4,'actor',NULL,'[\"Larry Prichard - Alma\'s Stepbrother\"]'),(11870,584778,5,'director',NULL,NULL),(11870,810349,6,'actor',NULL,'[\"Philip Gentry - A Detective\"]'),(11870,524096,7,'actor',NULL,'[\"Dr. V. Vivian\"]'),(11870,480448,8,'actress',NULL,'[\"Mrs. Geraldine Stratton\"]'),(11870,263395,9,'actress',NULL,'[\"Mrs. Elena Warwick\"]'),(11979,421157,10,'cinematographer',NULL,NULL),(11979,399216,1,'actor',NULL,'[\"Andrew Theodore Griggs\"]'),(11979,574739,2,'actress',NULL,'[\"Mrs. Theodore Griggs\"]'),(11979,934780,3,'actress',NULL,'[\"Amelia Griggs\"]'),(11979,129894,4,'actor',NULL,'[\"Phil West\"]'),(11979,916665,5,'director',NULL,NULL),(11979,651000,6,'writer','scenario',NULL),(11979,2206,7,'producer','producer',NULL),(11979,318647,8,'producer','producer',NULL),(11979,238844,9,'cinematographer',NULL,NULL),(12349,88471,10,'actor',NULL,'[\"His Assistant\"]'),(12349,122,1,'actor',NULL,'[\"A Tramp\"]'),(12349,701012,2,'actress',NULL,'[\"The Woman\"]'),(12349,1067,3,'actor',NULL,'[\"The Child\"]'),(12349,588033,4,'actor',NULL,'[\"The Man\"]'),(12349,42317,5,'actor',NULL,'[\"Car Thief\",\"Man in Shelter\"]'),(12349,47800,6,'actress',NULL,'[\"Bride\"]'),(12349,48798,7,'actress',NULL,'[\"Slum Nurse\"]'),(12349,74788,8,'actor',NULL,'[\"Professor Guido\",\"Night Shelter Keeper\"]'),(12349,80930,9,'actor',NULL,'[\"Orphan Asylum Driver\"]'),(12364,43509,10,'actor',NULL,'[\"David\'s Brother\"]'),(12364,803705,1,'actor',NULL,'[\"David Holm\"]'),(12364,96737,2,'actress',NULL,'[\"Mrs. Holm\"]'),(12364,841061,3,'actor',NULL,'[\"Georges\"]'),(12364,391474,4,'actress',NULL,'[\"Edit\"]'),(12364,481248,5,'writer','novel',NULL),(12364,5748,6,'cinematographer',NULL,NULL),(12364,782943,7,'actress',NULL,'[\"Edit\'s Mother\"]'),(12364,526479,8,'actress',NULL,'[\"Maria\"]'),(12364,917912,9,'actor',NULL,'[\"Gustafsson\"]'),(12532,484266,10,'composer',NULL,NULL),(12532,1273,1,'actress',NULL,'[\"Henriette Girard\"]'),(12532,321088,2,'actress',NULL,'[\"Louise Girard\"]'),(12532,771584,3,'actor',NULL,'[\"Chevalier de Vaudrey\"]'),(12532,521310,4,'actor',NULL,'[\"Count de Linieres\"]'),(12532,428,5,'director',NULL,NULL),(12532,257866,6,'writer','novel \"Les deux orphelines\"',NULL),(12532,180077,7,'writer','novel \"Les deux orphelines\"',NULL),(12532,3668,8,'composer',NULL,NULL),(12532,332045,9,'composer',NULL,NULL),(12543,36,1,'actor',NULL,'[\"Little Chief Paleface\"]'),(12543,289295,2,'actress',NULL,'[\"Indian Maiden\"]'),(12543,731247,3,'actor',NULL,'[\"The Indian Chief\"]'),(12543,166836,4,'writer','written by',NULL),(12543,1977054,5,'composer',NULL,NULL),(13086,4592,10,'composer',NULL,NULL),(13086,459030,1,'actor',NULL,'[\"Dr. Mabuse\"]'),(13086,250790,2,'actress',NULL,'[\"Cara Carozza, the dancer\"]'),(13086,919684,3,'actress',NULL,'[\"Countess Dusy Told\"]'),(13086,2154,4,'actor',NULL,'[\"Count Told\",\"Richard Fleury - US version\"]'),(13086,485,5,'director',NULL,NULL),(13086,415167,6,'writer','novel',NULL),(13086,902376,7,'writer','screenplay',NULL),(13086,690143,8,'producer','producer',NULL),(13086,253301,9,'composer',NULL,NULL),(13140,200125,10,'cinematographer',NULL,NULL),(13140,160129,1,'actor',NULL,'[\"Andrew J. Hughes - U.S. Special-Envoy to Monaco\"]'),(13140,243323,2,'actress',NULL,'[\"Helen Hughes\"]'),(13140,313532,3,'actress',NULL,'[\"Princess Olga Petchnikoff\"]'),(13140,123994,4,'actress',NULL,'[\"Princess Vera Petchnikoff\"]'),(13140,2233,5,'director',NULL,NULL),(13140,14703,6,'writer','titles',NULL),(13140,31033,7,'writer','titles',NULL),(13140,4622229,8,'composer',NULL,NULL),(13140,739146,9,'composer',NULL,NULL),(13257,2727,10,'composer',NULL,NULL),(13257,159725,1,'actor',NULL,'[\"Djævlen\",\"The Devil\"]'),(13257,159770,2,'actress',NULL,'[\"En ældre bondekone\",\"Older Farm Lady\"]'),(13257,669922,3,'actress',NULL,'[\"Heksen\",\"The Witch\"]'),(13257,690702,4,'actress',NULL,'[\"Nonne\",\"Nun\"]'),(13257,125762,5,'composer',NULL,NULL),(13257,345014,6,'composer',NULL,NULL),(13257,401654,7,'composer',NULL,NULL),(13257,433578,8,'composer',NULL,NULL),(13257,716082,9,'composer',NULL,NULL),(13367,278792,10,'cinematographer',NULL,NULL),(13367,396378,1,'actor',NULL,'[\"Howard Hillary\",\"The Man From Beyond\"]'),(13367,560785,2,'actor',NULL,'[\"Dr. Gilbert Trent\"]'),(13367,851721,3,'actor',NULL,'[\"Dr. Crawford Strange\"]'),(13367,175068,4,'actor',NULL,'[\"Dr. Gregory Sinclair\"]'),(13367,454535,5,'director',NULL,NULL),(13367,834116,6,'writer','adaptation',NULL),(13367,2087277,7,'composer',NULL,NULL),(13367,11248754,8,'composer',NULL,NULL),(13367,242485,9,'cinematographer',NULL,NULL),(13427,1354245,1,'actor',NULL,'[\"Nanook\"]'),(13427,638725,2,'actress',NULL,'[\"Nanook\'s Wife - the Smiling One\"]'),(13427,192066,3,'actress',NULL,'[\"Cunayou -Nanook\'s Daughter\"]'),(13427,20180,4,'actor',NULL,'[\"Allegoo - Nanook\'s Son\"]'),(13427,280904,5,'director',NULL,NULL),(13427,280878,6,'writer','idea',NULL),(13427,1018886,7,'composer',NULL,NULL),(13427,798978,8,'composer',NULL,NULL),(13427,2625039,9,'editor',NULL,NULL),(13428,956802,10,'composer',NULL,NULL),(13428,340088,1,'actor',NULL,'[\"Sultan Saladin\"]'),(13428,212234,2,'actor',NULL,'[\"Assad von Filneck, sein Bruder\",\"Junger Tempelherr\"]'),(13428,251432,3,'actress',NULL,'[\"Sittah, seine Schwester\"]'),(13428,470328,4,'actor',NULL,'[\"Nathan\"]'),(13428,633394,5,'director',NULL,NULL),(13428,504366,6,'writer','based on the play by',NULL),(13428,477515,7,'writer','adaptation',NULL),(13428,3941441,8,'producer','producer',NULL),(13428,8875,9,'composer',NULL,NULL),(13442,2302,10,'composer',NULL,NULL),(13442,775180,1,'actor',NULL,'[\"Graf Orlok\"]'),(13442,334603,2,'actor',NULL,'[\"Knock - ein Häusermakler\"]'),(13442,903194,3,'actor',NULL,'[\"Hutter\"]'),(13442,775659,4,'actress',NULL,'[\"Ellen - seine Frau\"]'),(13442,3638,5,'director',NULL,NULL),(13442,301961,6,'writer','screen play',NULL),(13442,831290,7,'writer','based on the novel: \"Dracula\"',NULL),(13442,225868,8,'producer','producer',NULL),(13442,336057,9,'producer','producer',NULL),(13496,4592,10,'composer',NULL,NULL),(13496,2154,1,'actor',NULL,'[\"Lorenz Lubota\"]'),(13496,723801,2,'actress',NULL,'[\"Lubotas Mutter\",\"Lubota\'s Mother\"]'),(13496,250790,3,'actress',NULL,'[\"Melanie Lubota\"]'),(13496,903145,4,'actor',NULL,'[\"Hugo Lubota\"]'),(13496,3638,5,'director',NULL,NULL),(13496,369458,6,'writer','based on the novel by',NULL),(13496,902376,7,'writer','adapted for the screen by',NULL),(13496,2155614,8,'producer','producer',NULL),(13496,690143,9,'producer','producer',NULL),(13626,3908999,10,'composer',NULL,NULL),(13626,220460,1,'actress',NULL,'[\"Mme Beudet\"]'),(13626,347605,2,'actress',NULL,'[\"Mme Labas\"]'),(13626,195956,3,'actor',NULL,'[\"Mr Labas\"]'),(13626,2557717,4,'actress',NULL,'[\"La bonne\"]'),(13626,241273,5,'director',NULL,NULL),(13626,24853,6,'writer','after the play by',NULL),(13626,643375,7,'writer','after the play by',NULL),(13626,216066,8,'producer','producer',NULL),(13626,888606,9,'producer','producer',NULL),(13845,511729,1,'actor',NULL,'[\"Max\"]'),(13845,869559,2,'actor',NULL,'[\"Comte de Mornay\"]'),(13845,657534,3,'actress',NULL,'[\"Renée\"]'),(13845,595321,4,'actor',NULL,NULL),(13845,304098,5,'director',NULL,NULL),(13845,682660,6,'cinematographer',NULL,NULL),(13845,721180,7,'cinematographer',NULL,NULL),(13845,817414,8,'cinematographer',NULL,NULL),(14341,421157,10,'cinematographer',NULL,NULL),(14341,36,1,'actor',NULL,'[\"Willie McKay - 21 Years Old\"]'),(14341,848231,2,'actress',NULL,'[\"Virginia Canfield\"]'),(14341,444172,3,'actor',NULL,'[\"The Engineer\"]'),(14341,731247,4,'actor',NULL,'[\"Joseph Canfield\"]'),(14341,90007,5,'director',NULL,NULL),(14341,369841,6,'writer','story',NULL),(14341,115669,7,'writer','story',NULL),(14341,593477,8,'writer','story',NULL),(14341,2301,9,'composer',NULL,NULL),(14429,369841,10,'writer',NULL,NULL),(14429,516001,1,'actor',NULL,'[\"Harold - The Boy\"]'),(14429,205192,2,'actress',NULL,'[\"Mildred, The Girl\"]'),(14429,835128,3,'actor',NULL,'[\"Bill, The Pal\"]'),(14429,949927,4,'actor',NULL,'[\"The Law\"]'),(14429,628345,5,'director',NULL,NULL),(14429,853130,6,'director',NULL,NULL),(14429,730018,7,'writer','story',NULL),(14429,924065,8,'writer','story',NULL),(14429,907778,9,'writer','titles',NULL),(14469,568364,10,'actor',NULL,'[\"Gridley Nevins\"]'),(14469,522926,1,'actor',NULL,'[\"Capt. Decatur\"]'),(14469,509,2,'actor',NULL,'[\"Hisston\"]'),(14469,361882,3,'actor',NULL,'[\"Menchen\"]'),(14469,269265,4,'actor',NULL,'[\"Cordoba\"]'),(14469,250053,5,'director',NULL,NULL),(14469,446189,6,'writer','scenario',NULL),(14469,455244,7,'writer','story',NULL),(14469,485349,8,'cinematographer',NULL,NULL),(14469,585899,9,'cinematographer',NULL,NULL),(14611,1084708,10,'producer','producer',NULL),(14611,516001,1,'actor',NULL,'[\"Harold Van Pelham\"]'),(14611,707814,2,'actress',NULL,'[\"Harold\'s Nurse\"]'),(14611,7539,3,'actor',NULL,'[\"Colosso\"]'),(14611,397907,4,'actor',NULL,'[\"Mr. Pipps\"]'),(14611,628345,5,'director',NULL,NULL),(14611,853130,6,'director',NULL,NULL),(14611,928514,7,'writer','story assistant',NULL),(14611,924065,8,'writer','story assistant',NULL),(14611,907778,9,'writer','titles',NULL),(14624,48798,10,'actress',NULL,'[\"Masseuse\"]'),(14624,701012,1,'actress',NULL,'[\"Marie St. Clair\"]'),(14624,312238,2,'actor',NULL,'[\"Marie\'s Step-Father\"]'),(14624,588033,3,'actor',NULL,'[\"Jean Millet\"]'),(14624,461438,4,'actress',NULL,'[\"Jean\'s Mother\"]'),(14624,122,5,'director',NULL,NULL),(14624,294058,6,'actor',NULL,'[\"Jean\'s Father\"]'),(14624,579663,7,'actor',NULL,'[\"Pierre Revel\"]'),(14624,607369,8,'actress',NULL,'[\"Fifi\"]'),(14624,689748,9,'actress',NULL,'[\"Paulette\"]'),(14945,2206,10,'producer','producer',NULL),(14945,516001,1,'actor',NULL,'[\"The Poor Boy - Harold Meadows\"]'),(14945,707814,2,'actress',NULL,'[\"The Rich Girl - Mary Buckingham\"]'),(14945,200068,3,'actor',NULL,'[\"The Poor Man\"]'),(14945,341134,4,'actor',NULL,'[\"The Rich Man\"]'),(14945,628345,5,'director',NULL,NULL),(14945,853130,6,'director',NULL,NULL),(14945,928514,7,'writer','story',NULL),(14945,924065,8,'writer','story',NULL),(14945,336984,9,'writer','titles',NULL),(15116,5849,10,'cinematographer',NULL,NULL),(15116,841797,1,'actress',NULL,'[\"Tessie McGuire\"]'),(15116,601962,2,'actor',NULL,'[\"Jim Hogan\"]'),(15116,850896,3,'actress',NULL,'[\"Pinkie Moran\"]'),(15116,445246,4,'actor',NULL,'[\"Robert Brandt\"]'),(15116,245385,5,'director',NULL,NULL),(15116,878338,6,'writer','scenario',NULL),(15116,1738735,7,'writer','story',NULL),(15116,834553,8,'writer','story',NULL),(15116,425456,9,'writer','titles',NULL),(15163,4592,10,'composer',NULL,NULL),(15163,36,1,'actor',NULL,'[\"Rollo Treadway\"]'),(15163,570230,2,'actress',NULL,'[\"Betsy O\'Brien\"]'),(15163,89162,3,'actor',NULL,'[\"John O\'Brien\"]'),(15163,123548,4,'actor',NULL,'[\"Spy\"]'),(15163,187981,5,'director',NULL,NULL),(15163,115669,6,'writer','story',NULL),(15163,593477,7,'writer','story',NULL),(15163,369841,8,'writer','story',NULL),(15163,2940699,9,'composer',NULL,NULL),(15174,84430,10,'actor',NULL,'[\"Giselher\"]'),(15174,778159,1,'actress',NULL,'[\"Kriemhild\"]'),(15174,36459,2,'actress',NULL,'[\"Queen Ute\"]'),(15174,519765,3,'actor',NULL,'[\"King Gunther\"]'),(15174,611052,4,'actor',NULL,'[\"Gernot\"]'),(15174,485,5,'director',NULL,NULL),(15174,902376,6,'writer',NULL,NULL),(15174,403288,7,'composer',NULL,NULL),(15174,389155,8,'cinematographer',NULL,NULL),(15174,5844,9,'cinematographer',NULL,NULL),(15175,389155,10,'cinematographer',NULL,NULL),(15175,725332,1,'actor',NULL,'[\"Siegfried\"]'),(15175,778159,2,'actress',NULL,'[\"Kriemhild\"]'),(15175,519765,3,'actor',NULL,'[\"King Gunther\"]'),(15175,36459,4,'actress',NULL,'[\"Queen Ute\"]'),(15175,485,5,'director',NULL,NULL),(15175,902376,6,'writer','scenario',NULL),(15175,690143,7,'producer','producer',NULL),(15175,403288,8,'composer',NULL,NULL),(15175,3471,9,'composer',NULL,NULL),(15324,396327,10,'cinematographer',NULL,NULL),(15324,36,1,'actor',NULL,'[\"Projectionist\",\"Sherlock, Jr.\"]'),(15324,570230,2,'actress',NULL,'[\"The Girl\"]'),(15324,444172,3,'actor',NULL,'[\"The Girl\'s Father\",\"Man on Film Screen\"]'),(15324,175068,4,'actor',NULL,'[\"The Hired Man\",\"The Butler\"]'),(15324,369841,5,'writer','story',NULL),(15324,593477,6,'writer','story',NULL),(15324,115669,7,'writer','story',NULL),(15324,4592,8,'composer',NULL,NULL),(15324,3816287,9,'composer',NULL,NULL),(15361,691364,10,'cinematographer',NULL,NULL),(15361,17893,1,'actor',NULL,'[\"Factory Foreman\"]'),(15361,795500,2,'actor',NULL,'[\"Police Spy\"]'),(15361,327150,3,'actor',NULL,'[\"Yakov Strongin - Worker\"]'),(15361,412045,4,'actor',NULL,'[\"Chief of Police\"]'),(15361,1178,5,'director',NULL,NULL),(15361,470402,6,'writer',NULL,NULL),(15361,687244,7,'writer',NULL,NULL),(15361,586506,8,'producer','producer',NULL),(15361,452050,9,'cinematographer',NULL,NULL),(15400,634366,10,'editor','film editor',NULL),(15400,1196,1,'actor',NULL,'[\"The Thief of Bagdad\"]'),(15400,426710,2,'actress',NULL,'[\"The Princess\"]'),(15400,250366,3,'actor',NULL,'[\"The Thief\'s Evil Associate\"]'),(15400,67634,4,'actor',NULL,'[\"The Holy Man\"]'),(15400,909825,5,'director',NULL,NULL),(15400,940689,6,'writer','scenario editor',NULL),(15400,8280,7,'writer','screenwriter',NULL),(15400,640884,8,'writer','adaptation',NULL),(15400,249186,9,'cinematographer',NULL,NULL),(15498,562866,1,'actor',NULL,'[\"John Woolfolk\"]'),(15498,885128,2,'actress',NULL,'[\"Millie Stope\"]'),(15498,827509,3,'actor',NULL,'[\"Paul Halvard\"]'),(15498,207637,4,'actor',NULL,'[\"Litchfield Stope\"]'),(15498,896542,5,'director',NULL,NULL),(15498,378947,6,'writer','novel',NULL),(15498,592217,7,'writer','titles',NULL),(15498,534540,8,'composer',NULL,NULL),(15498,102270,9,'cinematographer',NULL,NULL),(15532,718201,1,'director',NULL,NULL),(15532,2569,2,'director',NULL,NULL),(15532,954632,3,'composer',NULL,NULL),(15624,2197,10,'composer',NULL,NULL),(15624,318105,1,'actor',NULL,'[\"James Apperson\"]'),(15624,12395,2,'actress',NULL,'[\"Melisande\"]'),(15624,98376,3,'actor',NULL,'[\"Mr. Apperson\"]'),(15624,568282,4,'actress',NULL,'[\"Mrs. Apperson\"]'),(15624,896542,5,'director',NULL,NULL),(15624,384276,6,'director',NULL,NULL),(15624,821716,7,'writer','story',NULL),(15624,66946,8,'writer','scenario',NULL),(15624,267868,9,'writer','titles',NULL),(15648,19886,10,'composer',NULL,NULL),(15648,31446,1,'actor',NULL,'[\"Grigory Vakulinchuk\"]'),(15648,58290,2,'actor',NULL,'[\"Commander Golikov\"]'),(15648,17893,3,'actor',NULL,'[\"Chief Officer Giliarovsky\"]'),(15648,90434,4,'actor',NULL,'[\"Young Sailor Flogged While Sleeping\"]'),(15648,1178,5,'director',NULL,NULL),(15648,12810,6,'writer','script by',NULL),(15648,38595,7,'writer','intertitles',NULL),(15648,872308,8,'writer','intertitles',NULL),(15648,1206447,9,'producer','producer',NULL),(15841,336984,10,'writer','titles',NULL),(15841,516001,1,'actor',NULL,'[\"Harold Lamb aka Speedy\"]'),(15841,707814,2,'actress',NULL,'[\"Peggy\"]'),(15841,70757,3,'actor',NULL,'[\"The College Cad\"]'),(15841,26849,4,'actor',NULL,'[\"The College Hero\"]'),(15841,628345,5,'director',NULL,NULL),(15841,853130,6,'director',NULL,NULL),(15841,928514,7,'writer','story',NULL),(15841,340599,8,'writer','story',NULL),(15841,924065,9,'writer','story',NULL),(15863,36,1,'actor',NULL,'[\"Friendless\"]'),(15863,874124,2,'actor',NULL,'[\"Owner of the Diamond Bar Ranch\"]'),(15863,616762,3,'actress',NULL,'[\"His Daughter\"]'),(15863,860617,4,'actor',NULL,'[\"The Foreman\"]'),(15863,623640,5,'writer','assistant writer',NULL),(15863,134252,6,'writer','scenario',NULL),(15863,354229,7,'cinematographer',NULL,NULL),(15863,504380,8,'cinematographer',NULL,NULL),(15864,1027682,10,'actor',NULL,'[\"Eskimo Child\"]'),(15864,122,1,'actor',NULL,'[\"The Lone Prospector\"]'),(15864,841501,2,'actor',NULL,'[\"Big Jim McKay\"]'),(15864,615306,3,'actor',NULL,'[\"Black Larsen\"]'),(15864,74788,4,'actor',NULL,'[\"Hank Curtis\"]'),(15864,675356,5,'composer',NULL,NULL),(15864,5906,6,'cinematographer',NULL,NULL),(15864,906618,7,'actor',NULL,'[\"Jack Cameron\"]'),(15864,354913,8,'actress',NULL,'[\"Georgia\"]'),(15864,1033900,9,'actor',NULL,'[\"Man in Dance Hall\"]'),(15881,318647,10,'producer','producer',NULL),(15881,332998,1,'actor',NULL,'[\"McTeague\"]'),(15881,686032,2,'actress',NULL,'[\"Trina\"]'),(15881,380965,3,'actor',NULL,'[\"Marcus\"]'),(15881,298202,4,'actress',NULL,'[\"Maria\"]'),(15881,2233,5,'director',NULL,NULL),(15881,558923,6,'writer','screen adaptation by',NULL),(15881,635805,7,'writer','from the American classic \"McTeague\" by',NULL),(15881,267868,8,'writer','titles',NULL),(15881,2206,9,'producer','producer',NULL),(16039,1266538,10,'composer',NULL,NULL),(16039,891,1,'actor',NULL,'[\"Prof. Challenger\"]'),(16039,522281,2,'actress',NULL,'[\"Paula White\"]'),(16039,400763,3,'actor',NULL,'[\"Ed Malone\"]'),(16039,832011,4,'actor',NULL,'[\"Sir John Roxton\"]'),(16039,398464,5,'director',NULL,NULL),(16039,236279,6,'writer','based upon the 1912 novel by',NULL),(16039,265572,7,'writer','scenario',NULL),(16039,534268,8,'producer','producer',NULL),(16039,4592,9,'composer',NULL,NULL),(16220,165470,10,'writer','adaptation',NULL),(16220,151606,1,'actor',NULL,'[\"The Phantom\"]'),(16220,679907,2,'actress',NULL,'[\"Christine Daae\"]'),(16220,449908,3,'actor',NULL,'[\"Vicomte Raoul de Chagny\"]'),(16220,136886,4,'actor',NULL,'[\"Ledoux\"]'),(16220,432216,5,'director',NULL,NULL),(16220,480677,6,'director',NULL,NULL),(16220,781292,7,'director',NULL,NULL),(16220,503693,8,'writer','from the 1910 celebrated novel by',NULL),(16220,31033,9,'writer','titles',NULL),(16332,504380,10,'cinematographer',NULL,NULL),(16332,36,1,'actor',NULL,'[\"James Shannon\"]'),(16332,245536,2,'actress',NULL,'[\"His Girl\"]'),(16332,55797,3,'actor',NULL,'[\"His Partner\"]'),(16332,250366,4,'actor',NULL,'[\"His Lawyer\"]'),(16332,576362,5,'writer','adapted from David Belasco\'s famous comedy by',NULL),(16332,115669,6,'writer','screen version by',NULL),(16332,369841,7,'writer','screen version by',NULL),(16332,593477,8,'writer','screen version by',NULL),(16332,396327,9,'cinematographer',NULL,NULL),(16884,756226,10,'writer',NULL,NULL),(16884,318105,1,'actor',NULL,'[\"Leo von Harden\"]'),(16884,1256,2,'actress',NULL,'[\"Felicitas\"]'),(16884,361319,3,'actor',NULL,'[\"Ulrich von Eltz\"]'),(16884,448661,4,'actress',NULL,'[\"Hertha\"]'),(16884,113284,5,'director',NULL,NULL),(16884,322227,6,'writer','screen play',NULL),(16884,837183,7,'writer','from the novel \"The Undying Past\" by',NULL),(16884,14703,8,'writer','titles',NULL),(16884,473134,9,'writer',NULL,NULL),(16895,1084708,10,'producer','producer',NULL),(16895,516001,1,'actor',NULL,'[\"J. Harold Manners - The Uptown Boy\"]'),(16895,707814,2,'actress',NULL,'[\"Hope - The Downtown Girl\"]'),(16895,949927,3,'actor',NULL,'[\"Bull Brindle - The Roughneck\"]'),(16895,556769,4,'actor',NULL,'[\"The Gangster\"]'),(16895,853130,5,'director',NULL,NULL),(16895,928514,6,'writer','story',NULL),(16895,340599,7,'writer','story',NULL),(16895,115669,8,'writer','story',NULL),(16895,817809,9,'writer','titles',NULL),(17136,2111404,10,'composer',NULL,NULL),(17136,375609,1,'actress',NULL,'[\"Maria\",\"Maschinenmensch\",\"The Machine Man\"]'),(17136,2154,2,'actor',NULL,'[\"Johann (Joh) Fredersen\"]'),(17136,297054,3,'actor',NULL,'[\"Freder Fredersen - Joh Fredersens Sohn\"]'),(17136,459030,4,'actor',NULL,'[\"Erfinder C.A. Rotwang\",\"The Inventor\"]'),(17136,485,5,'director',NULL,NULL),(17136,902376,6,'writer','screenplay',NULL),(17136,690143,7,'producer','producer',NULL),(17136,3017782,8,'composer',NULL,NULL),(17136,923118,9,'composer',NULL,NULL),(17410,1179869,10,'editor',NULL,NULL),(17410,1211,1,'actor',NULL,'[\"Samuel Bisbee\"]'),(17410,431484,2,'actress',NULL,'[\"Princess Lescaboura\"]'),(17410,736777,3,'actor',NULL,'[\"Kenneth Murchison\"]'),(17410,717066,4,'actress',NULL,'[\"Alice Bisbee\"]'),(17410,478441,5,'director',NULL,NULL),(17410,834080,6,'writer','story \"Mr. Bisbee\'s Princess\"',NULL),(17410,588505,7,'writer','scenario',NULL),(17410,736911,8,'writer','adaptation',NULL),(17410,916379,9,'cinematographer',NULL,NULL),(17449,1087760,10,'composer',NULL,NULL),(17449,1256,1,'actress',NULL,'[\"Elena\"]'),(17449,603875,2,'actor',NULL,'[\"Manuel Robledo\"]'),(17449,531584,3,'actor',NULL,'[\"M.Fontenoy\"]'),(17449,859,4,'actor',NULL,'[\"Canterac\"]'),(17449,629243,5,'director',NULL,NULL),(17449,830249,6,'director',NULL,NULL),(17449,87658,7,'writer',NULL,NULL),(17449,267913,8,'writer','scenario',NULL),(17449,14703,9,'writer','titles',NULL),(17825,637040,1,'actor',NULL,'[\"Roddy Berwick\"]'),(17825,916828,2,'actor',NULL,'[\"Dr. Dowson\"]'),(17825,571841,3,'actor',NULL,'[\"Sir Thomas Berwick\"]'),(17825,410216,4,'actor',NULL,'[\"Tim Wakeley\"]'),(17825,33,5,'director',NULL,NULL),(17825,171887,6,'writer',NULL,NULL),(17825,822627,7,'writer','scenario',NULL),(17825,568082,8,'cinematographer',NULL,NULL),(17825,723722,9,'editor',NULL,NULL),(17925,1193626,10,'composer',NULL,NULL),(17925,36,1,'actor',NULL,'[\"Johnnie Gray\"]'),(17925,533045,2,'actress',NULL,'[\"Annabelle Lee\"]'),(17925,147070,3,'actor',NULL,'[\"Captain Anderson\"]'),(17925,267650,4,'actor',NULL,'[\"General Thatcher\"]'),(17925,115669,5,'director',NULL,NULL),(17925,90213,6,'writer','adapted by',NULL),(17925,807667,7,'writer','adapted by',NULL),(17925,685904,8,'writer','book \"Daring and Suffering: a History of the Great Railroad Adventure\"',NULL),(17925,809548,9,'writer',NULL,NULL),(18033,547938,10,'writer','titles',NULL),(18033,1966,1,'actress',NULL,'[\"Betty Lou\"]'),(18033,603875,2,'actor',NULL,'[\"Cyrus T. Waltham\"]'),(18033,42552,3,'actor',NULL,'[\"\'Monty\' Montgomery\"]'),(18033,94924,4,'actress',NULL,'[\"Molly\"]'),(18033,46082,5,'director',NULL,NULL),(18033,903049,6,'director',NULL,NULL),(18033,323325,7,'writer','story and adaptation',NULL),(18033,521002,8,'writer','screen play',NULL),(18033,510024,9,'writer','screen play',NULL),(18037,566378,10,'editor',NULL,NULL),(18037,427231,1,'actor',NULL,'[\"Jakie Rabinowitz\"]'),(18037,564219,2,'actress',NULL,'[\"Mary Dale\"]'),(18037,645941,3,'actor',NULL,'[\"The Cantor\"]'),(18037,78806,4,'actress',NULL,'[\"Sara Rabinowitz\"]'),(18037,189076,5,'director',NULL,NULL),(18037,710723,6,'writer','play',NULL),(18037,169879,7,'writer','adaptation',NULL),(18037,418772,8,'writer','titles',NULL),(18037,5803,9,'cinematographer',NULL,NULL),(18051,623640,10,'writer','scenario',NULL),(18051,516001,1,'actor',NULL,'[\"Harold Hickory\"]'),(18051,707814,2,'actress',NULL,'[\"Mary Powers\"]'),(18051,417012,3,'actor',NULL,'[\"Jim Hickory\"]'),(18051,932381,4,'actor',NULL,'[\"Leo Hickory\"]'),(18051,928514,5,'director',NULL,NULL),(18051,587277,6,'director',NULL,NULL),(18051,397834,7,'director','co-director',NULL),(18051,340599,8,'writer','story',NULL),(18051,188274,9,'writer','story',NULL),(18183,450405,10,'cinematographer',NULL,NULL),(18183,681933,1,'actress',NULL,'[\"Maggie Johnson\"]'),(18183,736777,2,'actor',NULL,'[\"Joe Grant\"]'),(18183,366536,3,'actress',NULL,'[\"Ma Johnson\"]'),(18183,514707,4,'actor',NULL,'[\"Pa Johnson\"]'),(18183,853130,5,'director',NULL,NULL),(18183,635841,6,'writer','from the story by',NULL),(18183,573865,7,'writer','screen play',NULL),(18183,924065,8,'writer','screen play',NULL),(18183,521002,9,'writer','adaptation',NULL),(18192,472590,10,'cinematographer',NULL,NULL),(18192,226387,1,'actor',NULL,'[\"Napoléon Bonaparte\"]'),(18192,745565,2,'actor',NULL,'[\"Napoléon Bonaparte enfant\"]'),(18192,885965,3,'actor',NULL,'[\"Maximilien Robespierre\"]'),(18192,467916,4,'actor',NULL,'[\"Georges-Jacques Danton\"]'),(18192,304098,5,'director',NULL,NULL),(18192,178874,6,'composer',NULL,NULL),(18192,2301,7,'composer',NULL,NULL),(18192,6131,8,'composer',NULL,NULL),(18192,5662,9,'cinematographer',NULL,NULL),(18199,5864,10,'cinematographer',NULL,NULL),(18199,11,1,'actor',NULL,'[\"Nevada\"]'),(18199,865298,2,'actress',NULL,'[\"Hettie Ide\"]'),(18199,1635,3,'actor',NULL,'[\"Clan Dillon\"]'),(18199,833379,4,'actor',NULL,'[\"Ben Ide\"]'),(18199,914112,5,'director',NULL,NULL),(18199,176713,6,'writer','titles',NULL),(18199,340719,7,'writer','novel',NULL),(18199,726588,8,'writer','screenplay',NULL),(18199,831958,9,'writer','screenplay',NULL),(18455,3546,10,'cinematographer',NULL,NULL),(18455,639563,1,'actor',NULL,'[\"The Man\"]'),(18455,310980,2,'actress',NULL,'[\"The Wife\"]'),(18455,515272,3,'actress',NULL,'[\"The Woman From the City\"]'),(18455,743017,4,'actress',NULL,'[\"The Maid\"]'),(18455,3638,5,'director',NULL,NULL),(18455,562346,6,'writer','scenario',NULL),(18455,837183,7,'writer','from an original theme by',NULL),(18455,385012,8,'writer','titles',NULL),(18455,129721,9,'writer','titles',NULL),(18528,721745,10,'editor','film editor',NULL),(18528,151606,1,'actor',NULL,'[\"Alonzo\"]'),(18528,449908,2,'actor',NULL,'[\"Malabar\"]'),(18528,1076,3,'actress',NULL,'[\"Nanon\"]'),(18528,211346,4,'actor',NULL,'[\"Zanzi\"]'),(18528,115218,5,'director',NULL,NULL),(18528,950150,6,'writer','scenario',NULL),(18528,267868,7,'writer','titles',NULL),(18528,727497,8,'writer','novel \"K\"',NULL),(18528,5719,9,'cinematographer',NULL,NULL),(18578,425456,10,'writer','titles',NULL),(18578,1966,1,'actress',NULL,'[\"Mary Preston\"]'),(18578,736777,2,'actor',NULL,'[\"Jack Powell\"]'),(18578,35159,3,'actor',NULL,'[\"David Armstrong\"]'),(18578,707814,4,'actress',NULL,'[\"Sylvia Lewis\"]'),(18578,920074,5,'director',NULL,NULL),(18578,195496,6,'director',NULL,NULL),(18578,766850,7,'writer','story',NULL),(18578,521002,8,'writer','screenplay',NULL),(18578,510024,9,'writer','screenplay',NULL),(18684,439850,10,'actor',NULL,'[\"Lame Hoppy\"]'),(18684,891,1,'actor',NULL,'[\"Oklahoma Red\"]'),(18684,35159,2,'actor',NULL,'[\"The Boy - Jim\"]'),(18684,315,3,'actress',NULL,'[\"The Girl - Nancy\"]'),(18684,674986,4,'actor',NULL,'[\"The Arkansaw Snake\"]'),(18684,920074,5,'director',NULL,NULL),(18684,322227,6,'writer','adaptation & supervision',NULL),(18684,876432,7,'writer','book \"Beggars of Life: A Hobo Autobiography\"',NULL),(18684,314706,8,'cinematographer',NULL,NULL),(18684,787288,9,'editor',NULL,NULL),(18737,1177665,10,'composer',NULL,NULL),(18737,315,1,'actress',NULL,'[\"Lulu\"]'),(18737,466776,2,'actor',NULL,'[\"Dr. Ludwig Schön\"]'),(18737,496473,3,'actor',NULL,'[\"Alwa Schön\"]'),(18737,324501,4,'actor',NULL,'[\"Schigolch\"]'),(18737,655065,5,'director',NULL,NULL),(18737,917149,6,'writer','plays \"Erdgeist\" and \"Die Büchse der Pandora\"',NULL),(18737,883335,7,'writer','scenario',NULL),(18737,281567,8,'writer','titles',NULL),(18737,485161,9,'producer','producer',NULL),(18742,604526,10,'writer','story',NULL),(18742,36,1,'actor',NULL,'[\"Buster\"]'),(18742,206496,2,'actress',NULL,'[\"Sally\"]'),(18742,329467,3,'actor',NULL,'[\"Stagg\"]'),(18742,102718,4,'actor',NULL,'[\"Editor\"]'),(18742,781292,5,'director',NULL,NULL),(18742,115669,6,'writer','story by',NULL),(18742,513858,7,'writer','story by',NULL),(18742,267868,8,'writer','titles',NULL),(18742,90213,9,'writer',NULL,NULL),(18773,614730,10,'actor',NULL,'[\"A Pickpocket\"]'),(18773,122,1,'actor',NULL,'[\"A Tramp\"]'),(18773,448224,2,'actress',NULL,'[\"The Proprietor\'s Step-Daughter Merna - A Circus Rider\"]'),(18773,305087,3,'actor',NULL,'[\"The Circus Proprietor and Ring Master\"]'),(18773,188357,4,'actor',NULL,'[\"Rex - A Tight Rope Walker\"]'),(18773,5906,5,'cinematographer',NULL,NULL),(18773,204639,6,'actor',NULL,'[\"A Magician\"]'),(18773,74788,7,'actor',NULL,'[\"An Old Clown\"]'),(18773,761866,8,'actor',NULL,'[\"The Head Property Man\"]'),(18773,709466,9,'actor',NULL,'[\"An Assistant Property Man\"]'),(18806,789049,10,'cinematographer',NULL,NULL),(18806,90187,1,'actress',NULL,'[\"Mary Sims\"]'),(18806,615014,2,'actor',NULL,'[\"John Sims\"]'),(18806,729991,3,'actor',NULL,'[\"Bert\"]'),(18806,163923,4,'actress',NULL,'[\"Jane\"]'),(18806,896542,5,'director',NULL,NULL),(18806,915875,6,'writer','screen play',NULL),(18806,267868,7,'writer','titles',NULL),(18806,66946,8,'writer','adaptation',NULL),(18806,2301,9,'composer',NULL,NULL),(18839,1529472,10,'composer',NULL,NULL),(18839,51628,1,'actor',NULL,'[\"Bill Roberts\"]'),(18839,173993,2,'actress',NULL,'[\"Mae Roberts\"]'),(18839,45754,3,'actress',NULL,'[\"Lou -- Wife of Andy\"]'),(18839,176971,4,'actor',NULL,'[\"Bill\'s Pal\"]'),(18839,903049,5,'director',NULL,NULL),(18839,299154,6,'writer','story and screenplay',NULL),(18839,766850,7,'writer','suggested by \"The Dock Walloper\" by',NULL),(18839,425456,8,'writer','titles',NULL),(18839,4592,9,'composer',NULL,NULL),(18937,102167,10,'writer','titles',NULL),(18937,572142,1,'actor',NULL,'[\"Spike Madden\"]'),(18937,35877,2,'actor',NULL,'[\"Bill\",\"Salami\"]'),(18937,315,3,'actress',NULL,'[\"Marie\",\"Mam\'selleGodiva - Girl in Marseille\"]'),(18937,16183,4,'actress',NULL,'[\"Maria Buenjolla\",\"Chiquita - Girl in Rio de Janeiro\"]'),(18937,1328,5,'director',NULL,NULL),(18937,570130,6,'writer','screen story',NULL),(18937,589316,7,'writer','scenario',NULL),(18937,485647,8,'writer','associate writer',NULL),(18937,606878,9,'writer','associate writer',NULL),(19130,911709,10,'writer',NULL,NULL),(19130,679907,1,'actress',NULL,'[\"Dea\"]'),(19130,891998,2,'actor',NULL,'[\"Gwynplaine\",\"Lord Clancharlie\"]'),(19130,597146,3,'actor',NULL,'[\"Gwynplaine as a Child\"]'),(19130,45754,4,'actress',NULL,'[\"Duchess Josiana\"]'),(19130,501902,5,'director',NULL,NULL),(19130,401076,6,'writer','novel \"L\'Homme Qui Rit\"',NULL),(19130,18470,7,'writer','adaptation',NULL),(19130,31033,8,'writer','titles',NULL),(19130,572610,9,'writer',NULL,NULL),(19237,358213,10,'editor','film editor',NULL),(19237,1076,1,'actress',NULL,'[\"Diana Medford\"]'),(19237,113902,2,'actor',NULL,'[\"Ben Blaine\"]'),(19237,39989,3,'actor',NULL,'[\"Norman\"]'),(19237,780941,4,'actress',NULL,'[\"Beatrice\"]'),(19237,64600,5,'director',NULL,NULL),(19237,522674,6,'writer','story and scenario',NULL),(19237,14703,7,'writer','titles',NULL),(19237,191956,8,'writer','titles by',NULL),(19237,55604,9,'cinematographer',NULL,NULL),(19254,266029,1,'actress',NULL,'[\"Jeanne d\'Arc\"]'),(19254,798564,2,'actor',NULL,'[\"Évêque Pierre Cauchon (Bishop Pierre Cauchon)\"]'),(19254,75551,3,'actor',NULL,'[\"Jean d\'Estivet\"]'),(19254,776914,4,'actor',NULL,'[\"Nicolas Loyseleur\"]'),(19254,3433,5,'director',NULL,NULL),(19254,217865,6,'writer','writer',NULL),(19254,1224245,7,'composer',NULL,NULL),(19254,773138,8,'composer',NULL,NULL),(19254,5789,9,'cinematographer',NULL,NULL),(19258,943969,10,'editor',NULL,NULL),(19258,203836,1,'actress',NULL,'[\"Patricia Harrington\"]'),(19258,129772,2,'actor',NULL,'[\"Tony Anderson\"]'),(19258,237597,3,'actress',NULL,'[\"Ma Harrington\"]'),(19258,336770,4,'actor',NULL,'[\"Billy Caldwell\"]'),(19258,896542,5,'director',NULL,NULL),(19258,175194,6,'writer','story',NULL),(19258,817809,7,'writer','titles',NULL),(19258,534540,8,'composer',NULL,NULL),(19258,5870,9,'cinematographer',NULL,NULL),(19290,5898,10,'cinematographer',NULL,NULL),(19290,1195,1,'actor',NULL,'[\"Clem Rogers\"]'),(19290,707814,2,'actress',NULL,'[\"Jane Atwill\"]'),(19290,365121,3,'actress',NULL,'[\"Marie Weston\"]'),(19290,567224,4,'actor',NULL,'[\"Robert Blake\"]'),(19290,1008,5,'director',NULL,NULL),(19290,397022,6,'writer','writer',NULL),(19290,860145,7,'writer','screenplay',NULL),(19290,169906,8,'producer','producer',NULL),(19290,5782,9,'cinematographer',NULL,NULL),(19304,4592,10,'composer',NULL,NULL),(19304,576762,1,'actor',NULL,'[\"Captain James McQuigg\"]'),(19304,938464,2,'actor',NULL,'[\"Nick Scarsi\"]'),(19304,696679,3,'actress',NULL,'[\"Helen Hayes\"]'),(19304,172318,4,'actor',NULL,'[\"Patrolman Johnson\"]'),(19304,587277,5,'director',NULL,NULL),(19304,179993,6,'writer','from the stage success of',NULL),(19304,28636,7,'writer','scenario',NULL),(19304,592217,8,'writer','titles',NULL),(19304,66946,9,'writer','scenario',NULL),(19412,218626,10,'writer','titles',NULL),(19412,516001,1,'actor',NULL,'[\"Harold \'Speedy\' Swift\"]'),(19412,160680,2,'actress',NULL,'[\"Jane Dillon\"]'),(19412,940437,3,'actor',NULL,'[\"Pop Dillon - Jane\'s Grand-daddy\"]'),(19412,751899,4,'actor',NULL,'[\"Babe Ruth\"]'),(19412,928514,5,'director',NULL,NULL),(19412,340599,6,'writer','story',NULL),(19412,623640,7,'writer','story',NULL),(19412,736911,8,'writer','story',NULL),(19412,90213,9,'writer',NULL,NULL),(19421,36,1,'actor',NULL,'[\"William Canfield Jr.\"]'),(19421,570297,2,'actor',NULL,'[\"J.J. King\"]'),(19421,868458,3,'actor',NULL,'[\"William \'Steamboat Bill\' Canfield\"]'),(19421,507827,4,'actor',NULL,'[\"Tom Carter - First and Last Mate\"]'),(19421,718469,5,'director',NULL,NULL),(19421,361882,6,'writer','story',NULL),(19421,354229,7,'cinematographer',NULL,NULL),(19421,222354,8,'cinematographer',NULL,NULL),(19571,956547,10,'editor',NULL,NULL),(19571,151606,1,'actor',NULL,'[\"Dan Coghlan\"]'),(19571,656105,2,'actress',NULL,'[\"Myrtle Sullivan\"]'),(19571,638560,3,'actor',NULL,'[\"Marty\"]'),(19571,643048,4,'actor',NULL,'[\"Eddie \'Mile-Away\' Skeeter Carlson\"]'),(19571,176699,5,'director',NULL,NULL),(19571,267868,6,'writer','titles',NULL),(19571,950224,7,'writer','story and scenario',NULL),(19571,2197,8,'composer',NULL,NULL),(19571,789049,9,'cinematographer',NULL,NULL),(19702,1868164,10,'composer',NULL,NULL),(19702,648565,1,'actress',NULL,'[\"Alice White\"]'),(19702,519274,2,'actor',NULL,'[\"Detective Frank Webber\"]'),(19702,21329,3,'actress',NULL,'[\"Mrs. White\"]'),(19702,665715,4,'actor',NULL,'[\"Mr. White\"]'),(19702,33,5,'director',NULL,NULL),(19702,71657,6,'writer','from the play by',NULL),(19702,506349,7,'writer','dialogue',NULL),(19702,3836,8,'writer',NULL,NULL),(19702,1755921,9,'composer',NULL,NULL),(19729,36507,10,'cinematographer',NULL,NULL),(19729,522281,1,'actress',NULL,'[\"Harriet \'Hank\' Mahoney\"]'),(19729,656105,2,'actress',NULL,'[\"Queenie Mahoney\"]'),(19729,454558,3,'actor',NULL,'[\"Eddie Kearns\"]'),(19729,437304,4,'actor',NULL,'[\"Francis Zanfield\"]'),(19729,64600,5,'director',NULL,NULL),(19729,332539,6,'writer','story',NULL),(19729,396876,7,'writer','dialogue',NULL),(19729,322299,8,'writer','dialogue',NULL),(19729,49898,9,'writer','titles: silent version',NULL),(19760,442227,1,'actor',NULL,'[\"The Cameraman\"]'),(19760,841294,2,'actress',NULL,'[\"Woman editing film\"]'),(19760,895048,3,'director',NULL,NULL),(19760,377973,4,'composer',NULL,NULL),(19760,401682,5,'composer',NULL,NULL),(19760,1402732,6,'composer',NULL,NULL),(19760,6219,7,'composer',NULL,NULL),(19777,2580347,10,'actor',NULL,'[\"Marx Brothers\"]'),(19777,50,1,'actor',NULL,'[\"Hammer\"]'),(19777,555617,2,'actor',NULL,'[\"Harpo\"]'),(19777,555597,3,'actor',NULL,'[\"Chico\"]'),(19777,555688,4,'actor',NULL,'[\"Jamison\"]'),(19777,282984,5,'director',NULL,NULL),(19777,763798,6,'director',NULL,NULL),(19777,442151,7,'writer','book of stage play',NULL),(19777,753452,8,'writer','adapted by',NULL),(19777,5706,9,'cinematographer',NULL,NULL),(20286,698271,10,'producer','producer',NULL),(20286,222489,1,'actress',NULL,'[\"Sunita\"]'),(20286,706795,2,'actor',NULL,'[\"King Sohat\"]'),(20286,746958,3,'actor',NULL,'[\"King Ranjit\"]'),(20286,97882,4,'actor',NULL,'[\"Kirkbar - King Sohat\'s Henchman\"]'),(20286,652302,5,'director',NULL,NULL),(20286,657176,6,'writer','story',NULL),(20286,123761,7,'writer','scenario',NULL),(20286,432653,8,'writer','scenario: German version',NULL),(20286,995518,9,'producer','producer',NULL),(20530,60715,1,'actor',NULL,'[\"Man\"]'),(20530,546540,2,'actress',NULL,'[\"Young Girl\"]'),(20530,320,3,'actor',NULL,'[\"Man in Prologue\"]'),(20530,182026,4,'actor',NULL,'[\"Stroller\"]'),(20530,198557,5,'writer','scenario',NULL),(20530,245178,6,'cinematographer',NULL,NULL),(20572,1084708,10,'producer','producer',NULL),(20572,516001,1,'actor',NULL,'[\"Harold Bledsoe\"]'),(20572,448661,2,'actress',NULL,'[\"Billie Lee\"]'),(20572,949927,3,'actor',NULL,'[\"Officer Patrick Clancy\"]'),(20572,585481,4,'actor',NULL,'[\"John Thorne aka The Dragon\"]'),(20572,115669,5,'director',NULL,NULL),(20572,820461,6,'director',NULL,NULL),(20572,809548,7,'writer','dialogue',NULL),(20572,12148,8,'writer','story',NULL),(20572,623640,9,'writer','story',NULL),(20629,837989,10,'writer','supervising story chief',NULL),(20629,817,1,'actor',NULL,'[\"Paul\"]'),(20629,938464,2,'actor',NULL,'[\"Kat\"]'),(20629,942046,3,'actor',NULL,'[\"Himmelstoss\"]'),(20629,524803,4,'actor',NULL,'[\"Kantorek\"]'),(20629,587277,5,'director',NULL,NULL),(20629,718871,6,'writer','novel',NULL),(20629,27173,7,'writer','adaptation & dialogue',NULL),(20629,7973,8,'writer','screen play',NULL),(20629,28636,9,'writer','adaptation',NULL),(20640,5706,10,'cinematographer',NULL,NULL),(20640,50,1,'actor',NULL,'[\"Captain Geoffrey T. Spaulding\"]'),(20640,555617,2,'actor',NULL,'[\"The Professor\"]'),(20640,555597,3,'actor',NULL,'[\"Signor Emanuel Ravelli\"]'),(20640,2580347,4,'actor',NULL,NULL),(20640,373511,5,'director',NULL,NULL),(20640,442151,6,'writer','based on the musical play by',NULL),(20640,753452,7,'writer','based on the musical play by',NULL),(20640,436095,8,'writer','based on the musical play by',NULL),(20640,748438,9,'writer','based on the musical play by',NULL),(20641,533006,10,'actor',NULL,'[\"Johnny the Harp\"]'),(20641,1256,1,'actress',NULL,'[\"Anna\"]'),(20641,1948,2,'actor',NULL,'[\"Matt\"]'),(20641,547975,3,'actor',NULL,'[\"Chris\"]'),(20641,237597,4,'actress',NULL,'[\"Marthy\"]'),(20641,113284,5,'director',NULL,NULL),(20641,547966,6,'writer','adapted by',NULL),(20641,642156,7,'writer','from play \"Anna Christie\"',NULL),(20641,200125,8,'cinematographer',NULL,NULL),(20641,943969,9,'editor','film editor',NULL),(20642,200125,10,'cinematographer',NULL,NULL),(20642,1256,1,'actress',NULL,'[\"Anna Christie\"]'),(20642,787762,2,'actor',NULL,'[\"Matt Burke\"]'),(20642,432721,3,'actor',NULL,'[\"Chris Christopherson\"]'),(20642,826554,4,'actress',NULL,'[\"Marthy\"]'),(20642,275494,5,'director',NULL,NULL),(20642,367990,6,'writer','German dialogue',NULL),(20642,547966,7,'writer','adaptation',NULL),(20642,642156,8,'writer','play',NULL),(20642,717046,9,'writer','German screenplay',NULL),(20668,686514,10,'cinematographer',NULL,NULL),(20668,606431,1,'actor',NULL,'[\"Detective Anderson\"]'),(20668,580916,2,'actress',NULL,'[\"Dale Van Gorder\"]'),(20668,49055,3,'actor',NULL,'[\"Brook\"]'),(20668,358989,4,'actress',NULL,'[\"Miss Cornelia van Gorder\"]'),(20668,922327,5,'director',NULL,NULL),(20668,727497,6,'writer','based upon a stage play by',NULL),(20668,394479,7,'writer','based upon a stage play by',NULL),(20668,770852,8,'producer','producer',NULL),(20668,432482,9,'cinematographer',NULL,NULL),(20670,449493,10,'editor',NULL,NULL),(20670,108511,1,'actress',NULL,'[\"Fannie Field\"]'),(20670,35877,2,'actor',NULL,'[\"Jerry Moore\"]'),(20670,337894,3,'actor',NULL,'[\"Harry Field\"]'),(20670,172318,4,'actor',NULL,'[\"McCloskey\"]'),(20670,293260,5,'director',NULL,NULL),(20670,545730,6,'writer','adapted by',NULL),(20670,413711,7,'writer','from an original story by',NULL),(20670,686514,8,'cinematographer',NULL,NULL),(20670,835365,9,'cinematographer',NULL,NULL),(20697,935567,10,'writer','english dialogue',NULL),(20697,417837,1,'actor',NULL,'[\"Professor Immanuel Rath\"]'),(20697,17,2,'actress',NULL,'[\"Lola Lola\"]'),(20697,314777,3,'actor',NULL,'[\"Kiepert, Zauberkünstler\"]'),(20697,884665,4,'actress',NULL,'[\"Guste, seine Frau\"]'),(20697,903049,5,'director',NULL,NULL),(20697,542777,6,'writer','adapted from a novel by',NULL),(20697,958454,7,'writer','written by',NULL),(20697,901629,8,'writer','written by',NULL),(20697,509510,9,'writer','written by',NULL),(21015,21329,1,'actress',NULL,'[\"Mrs. Boyle (\'Juno\')\"]'),(21015,152361,2,'actor',NULL,'[\"Captain Boyle\"]'),(21015,280178,3,'actor',NULL,'[\"The Orator\"]'),(21015,642241,4,'actress',NULL,'[\"Mrs. Maisie Madigan\"]'),(21015,33,5,'director',NULL,NULL),(21015,639997,6,'writer','play',NULL),(21015,720904,7,'writer','scenario',NULL),(21015,185055,8,'cinematographer',NULL,NULL),(21015,749185,9,'editor',NULL,NULL),(21040,942639,10,'editor','film editor',NULL),(21040,1766,1,'actress',NULL,'[\"Kay Arnold\"]'),(21040,336339,2,'actor',NULL,'[\"Jerry Strong\"]'),(21040,792514,3,'actor',NULL,'[\"Bill Standish\"]'),(21040,696679,4,'actress',NULL,'[\"Dot Lamar\"]'),(21040,1008,5,'director',NULL,NULL),(21040,343228,6,'writer','adapted from the David Belasco Stage Play by',NULL),(21040,842485,7,'writer','adaptation and dialogue',NULL),(21040,169902,8,'producer','producer',NULL),(21040,907900,9,'cinematographer',NULL,NULL),(21079,953123,10,'writer',NULL,NULL),(21079,64,1,'actor',NULL,'[\"Caesar Enrico \'Rico\' Bandello\",\"\'Little Caesar\'\"]'),(21079,1195,2,'actor',NULL,'[\"Joe Massara\"]'),(21079,268225,3,'actress',NULL,'[\"Olga Stassoff\"]'),(21079,171873,4,'actor',NULL,'[\"Tony Passa\"]'),(21079,503777,5,'director',NULL,NULL),(21079,122446,6,'writer','novel',NULL),(21079,267020,7,'writer',NULL,NULL),(21079,498133,8,'writer','writer',NULL),(21079,520501,9,'writer',NULL,NULL),(21148,942007,10,'editor','film editor',NULL),(21148,237597,1,'actress',NULL,'[\"Min\"]'),(21148,891,2,'actor',NULL,'[\"Bill\"]'),(21148,429923,3,'actress',NULL,'[\"Nancy\"]'),(21148,708081,4,'actress',NULL,'[\"Bella\"]'),(21148,384276,5,'director',NULL,NULL),(21148,600641,6,'writer','suggested from the book: \"Dark Star\" by',NULL),(21148,547966,7,'writer','scenario and dialogue',NULL),(21148,413821,8,'writer','scenario and dialogue',NULL),(21148,921098,9,'cinematographer',NULL,NULL),(21156,567756,10,'actor',NULL,'[\"A Sergeant\"]'),(21156,11,1,'actor',NULL,'[\"Légionnaire Tom Brown\"]'),(21156,17,2,'actress',NULL,'[\"Mademoiselle Amy Jolly\"]'),(21156,579663,3,'actor',NULL,'[\"Monsieur La Bessiere\"]'),(21156,369443,4,'actor',NULL,'[\"Adjutant Caesar\"]'),(21156,903049,5,'director',NULL,NULL),(21156,299154,6,'writer','adapted by',NULL),(21156,897109,7,'writer','from the play \"Amy Jolly\" by',NULL),(21156,5716,8,'cinematographer',NULL,NULL),(21156,816123,9,'actress',NULL,'[\"Madame Caesar\"]'),(21165,185055,10,'cinematographer',NULL,NULL),(21165,3339,1,'actor',NULL,'[\"Sir John Menier\"]'),(21165,54689,2,'actress',NULL,'[\"Diana Baring\"]'),(21165,42496,3,'actress',NULL,'[\"Doucie Markham\"]'),(21165,152361,4,'actor',NULL,'[\"Ted Markham\"]'),(21165,33,5,'director',NULL,NULL),(21165,199304,6,'writer','from: \"Enter Sir John\"',NULL),(21165,801026,7,'writer','from: \"Enter Sir John\"',NULL),(21165,616601,8,'writer','adapted by',NULL),(21165,720904,9,'writer','scenario',NULL),(21577,595321,1,'actor',NULL,'[\"The Man\"]'),(21577,529227,2,'actress',NULL,'[\"The Woman\"]'),(21577,479475,3,'actress',NULL,'[\"Marquise\' Chambermaid\",\"Girl at Blangis\' Castle\"]'),(21577,259722,4,'actor',NULL,'[\"Bandit Leader in the Hut\"]'),(21577,320,5,'director',NULL,NULL),(21577,198557,6,'writer','scenario',NULL),(21577,211381,7,'writer','novel',NULL),(21577,210587,8,'producer','producer',NULL),(21577,245178,9,'cinematographer',NULL,NULL),(21730,891,1,'actor',NULL,'[\"Champ\"]'),(21730,178114,2,'actor',NULL,'[\"Dink\"]'),(21730,723658,3,'actress',NULL,'[\"Linda\"]'),(21730,40374,4,'actor',NULL,'[\"Sponge\"]'),(21730,896542,5,'director',NULL,NULL),(21730,875746,6,'writer','additional dialogue by',NULL),(21730,549905,7,'writer','dialogue',NULL),(21730,43138,8,'cinematographer',NULL,NULL),(21730,943969,9,'editor','film editor',NULL),(21735,28560,10,'actress',NULL,'[\"Mrs. Albright\"]'),(21735,845,1,'actress',NULL,'[\"Elsa Carlyle\"]'),(21735,827031,2,'actor',NULL,'[\"Jeffrey Carlyle\"]'),(21735,681635,3,'actor',NULL,'[\"Hardy Livingstone\"]'),(21735,268742,4,'actor',NULL,'[\"Terrell\"]'),(21735,7973,5,'director',NULL,NULL),(21735,896826,6,'director',NULL,NULL),(21735,381152,7,'writer',NULL,NULL),(21735,877318,8,'writer','silent film script',NULL),(21735,5706,9,'cinematographer',NULL,NULL),(21739,724858,10,'producer','producer',NULL),(21739,800302,1,'actor',NULL,'[\"Maurice Legrand\"]'),(21739,546516,2,'actress',NULL,'[\"Lucienne Pelletier dite Lulu\"]'),(21739,280961,3,'actor',NULL,'[\"André Jauguin dit Dédé\"]'),(21739,301224,4,'actor',NULL,'[\"L\'adjudant Alexis Godard\"]'),(21739,719756,5,'director',NULL,NULL),(21739,478579,6,'writer','novel',NULL),(21739,320630,7,'writer',NULL,NULL),(21739,610207,8,'writer','play based on novel',NULL),(21739,105886,9,'producer','producer',NULL),(21746,5676,10,'cinematographer',NULL,NULL),(21746,228715,1,'actor',NULL,'[\"Yancey Cravat\"]'),(21746,2050,2,'actress',NULL,'[\"Sabra Cravat\"]'),(21746,852347,3,'actress',NULL,'[\"Dixie Lee\"]'),(21746,642042,4,'actress',NULL,'[\"Felice Venable\"]'),(21746,749484,5,'director',NULL,NULL),(21746,272209,6,'writer','novel',NULL),(21746,261455,7,'writer',NULL,NULL),(21746,765037,8,'writer','contributing writer',NULL),(21746,495461,9,'producer','producer',NULL),(21749,122,1,'actor',NULL,'[\"A Tramp\"]'),(21749,156039,2,'actress',NULL,'[\"A Blind Girl\"]'),(21749,5681967,3,'actress',NULL,'[\"The Blind Girl\'s Grandmother\"]'),(21749,616729,4,'actor',NULL,'[\"An Eccentric Millionaire\"]'),(21749,139714,5,'writer',NULL,NULL),(21749,188357,6,'writer',NULL,NULL),(21749,689661,7,'cinematographer',NULL,NULL),(21749,5906,8,'cinematographer',NULL,NULL),(21814,287124,10,'writer','play script',NULL),(21814,509,1,'actor',NULL,'[\"Count Dracula\"]'),(21814,151377,2,'actress',NULL,'[\"Mina\"]'),(21814,543115,3,'actor',NULL,'[\"John Harker\"]'),(21814,296859,4,'actor',NULL,'[\"Renfield\"]'),(21814,115218,5,'director',NULL,NULL),(21814,5713,6,'director',NULL,NULL),(21814,831290,7,'writer','by',NULL),(21814,213019,8,'writer','from the play adapted by',NULL),(21814,49721,9,'writer','from the play adapted by',NULL),(21815,287124,10,'writer','English play script',NULL),(21815,898107,1,'actor',NULL,'[\"Conde Drácula\"]'),(21815,869830,2,'actress',NULL,'[\"Eva\"]'),(21815,636161,3,'actor',NULL,'[\"Juan Harker\"]'),(21815,959363,4,'actor',NULL,'[\"Renfield\"]'),(21815,577654,5,'director',NULL,NULL),(21815,831290,6,'writer','novel \"Dracula\"',NULL),(21815,273239,7,'writer',NULL,NULL),(21815,49721,8,'writer','play \"Dracula\"',NULL),(21815,213019,9,'writer','play \"Dracula\"',NULL),(21884,267020,10,'writer','screen play',NULL),(21884,166972,1,'actor',NULL,'[\"Henry Frankenstein\"]'),(21884,164883,2,'actress',NULL,'[\"Elizabeth\"]'),(21884,472,3,'actor',NULL,'[\"The Monster\"]'),(21884,92900,4,'actor',NULL,'[\"Victor Moritz\"]'),(21884,1843,5,'director',NULL,NULL),(21884,49721,6,'writer','based upon the composition by',NULL),(21884,791217,7,'writer','from the novel by',NULL),(21884,916811,8,'writer','adapted from the play by',NULL),(21884,287124,9,'writer','screen play',NULL),(21985,251945,10,'composer',NULL,NULL),(21985,190771,1,'actor',NULL,'[\"Hyppolit\"]'),(21985,434097,2,'actor',NULL,'[\"Mátyás Schneider\"]'),(21985,361859,3,'actress',NULL,'[\"Schneiderné\"]'),(21985,272140,4,'actress',NULL,'[\"Terka\"]'),(21985,782804,5,'director',NULL,NULL),(21985,639130,6,'writer',NULL,NULL),(21985,951866,7,'writer',NULL,NULL),(21985,1045755,8,'producer','producer',NULL),(21985,759791,9,'producer','producer',NULL),(22000,5904,10,'cinematographer',NULL,NULL),(22000,841797,1,'actress',NULL,'[\"Geraldine \'Gerry\' Trent\"]'),(22000,528908,2,'actor',NULL,'[\"Tony Blake\"]'),(22000,654530,3,'actor',NULL,'[\"Jim Woodward\"]'),(22000,448661,4,'actress',NULL,'[\"Joan Trent\"]'),(22000,564970,5,'director',NULL,NULL),(22000,221865,6,'writer','story \"Obey That Impulse\"',NULL),(22000,114095,7,'writer','story \"Obey That Impulse\"',NULL),(22000,376575,8,'writer','scenario',NULL),(22000,432482,9,'cinematographer',NULL,NULL),(22054,126430,10,'actor',NULL,'[\"Frink\"]'),(22054,1932,1,'actor',NULL,'[\"Cary Lockwood\"]'),(22054,543115,2,'actor',NULL,'[\"Shep Lambert\"]'),(22054,113902,3,'actor',NULL,'[\"Bill Talbot\"]'),(22054,151377,4,'actress',NULL,'[\"Nikki\"]'),(22054,226189,5,'director',NULL,NULL),(22054,766850,6,'writer','novel \"Single Lady\"',NULL),(22054,5741,7,'cinematographer',NULL,NULL),(22054,355284,8,'editor',NULL,NULL),(22054,637790,9,'actor',NULL,'[\"Francis\"]'),(22074,233791,10,'writer','based upon \"The Waltz Dream\" by',NULL),(22074,2001,1,'actor',NULL,'[\"Niki\"]'),(22074,1055,2,'actress',NULL,'[\"Franzi\"]'),(22074,394244,3,'actress',NULL,'[\"Princess Anna\"]'),(22074,749476,4,'actor',NULL,'[\"Max\"]'),(22074,523932,5,'director',NULL,NULL),(22074,883328,6,'writer','screenplay by',NULL),(22074,710723,7,'writer','screenplay by',NULL),(22074,414885,8,'writer','based upon \"The Waltz Dream\" by',NULL),(22074,618169,9,'writer','based upon the novel \"Nux der Prinzgemahl\" by',NULL),(22100,48,1,'actor',NULL,'[\"Hans Beckert\"]'),(22100,927145,2,'actress',NULL,'[\"Frau Beckmann\"]'),(22100,484737,3,'actress',NULL,'[\"Elsie Beckmann\"]'),(22100,921532,4,'actor',NULL,'[\"Inspector Karl Lohmann\"]'),(22100,485,5,'director',NULL,NULL),(22100,902376,6,'writer','script',NULL),(22100,414825,7,'writer','article',NULL),(22100,5922,8,'cinematographer',NULL,NULL),(22100,266239,9,'editor',NULL,NULL),(22158,5030661,10,'writer','contributing writer',NULL),(22158,50,1,'actor',NULL,'[\"Groucho\"]'),(22158,555617,2,'actor',NULL,'[\"Harpo\"]'),(22158,2580347,3,'actor',NULL,'[\"The Four Stowaways\"]'),(22158,555597,4,'actor',NULL,'[\"Chico\"]'),(22158,572851,5,'director',NULL,NULL),(22158,673279,6,'writer','by',NULL),(22158,426953,7,'writer','by',NULL),(22158,790654,8,'writer','additional dialogue',NULL),(22158,790383,9,'writer','contributing writer',NULL),(22183,679553,10,'producer','producer',NULL),(22183,927236,1,'actress',NULL,'[\"Frl. von Bernburg\"]'),(22183,7229,2,'actress',NULL,'[\"Manuela von Meinhardis\"]'),(22183,880946,3,'actress',NULL,'[\"Oberin des Stifts\"]'),(22183,471317,4,'actress',NULL,'[\"Frl. von Kesten\"]'),(22183,755985,5,'director',NULL,NULL),(22183,296193,6,'director',NULL,NULL),(22183,935475,7,'writer','screenplay',NULL),(22183,198887,8,'writer','screenplay',NULL),(22183,171372,9,'writer','dialogue',NULL),(22208,567515,10,'editor',NULL,NULL),(22208,1766,1,'actress',NULL,'[\"Lora Hart\"]'),(22208,528908,2,'actor',NULL,'[\"Mortie\"]'),(22208,951,3,'actress',NULL,'[\"Maloney\"]'),(22208,22,4,'actor',NULL,'[\"Nick\"]'),(22208,920074,5,'director',NULL,NULL),(22208,673948,6,'writer','from the novel by',NULL),(22208,308177,7,'writer','screenplay',NULL),(22208,448981,8,'writer','additional dialogue',NULL),(22208,569222,9,'cinematographer',NULL,NULL),(22251,491048,1,'actor',NULL,'[\"Stan Laurel\"]'),(22251,1316,2,'actor',NULL,'[\"Oliver Hardy\"]'),(22251,549293,3,'actress',NULL,'[\"Warden\'s Daughter\"]'),(22251,524306,4,'actor',NULL,'[\"Warden\"]'),(22251,663613,5,'director',NULL,NULL),(22251,907778,6,'writer','dialogue by',NULL),(22251,730018,7,'producer','producer',NULL),(22251,828452,8,'cinematographer',NULL,NULL),(22251,193015,9,'editor',NULL,NULL),(22286,567515,10,'editor',NULL,NULL),(22286,10,1,'actor',NULL,'[\"Tom Powers\"]'),(22286,1318,2,'actress',NULL,'[\"Gwen Allen\"]'),(22286,940589,3,'actor',NULL,'[\"Matt Doyle\"]'),(22286,951,4,'actress',NULL,'[\"Mamie\"]'),(22286,920074,5,'director',NULL,NULL),(22286,321891,6,'writer','by',NULL),(22286,109148,7,'writer','by',NULL),(22286,857710,8,'writer','screen adaptation',NULL),(22286,222354,9,'cinematographer',NULL,NULL),(22395,550215,10,'editor',NULL,NULL),(22395,350324,1,'actor',NULL,'[\"Mr. Hornblower\"]'),(22395,260728,2,'actress',NULL,'[\"Jill Hillcrist\"]'),(22395,289795,3,'actor',NULL,'[\"Mr. Hillcrist\"]'),(22395,370848,4,'actress',NULL,'[\"Mrs. Hillcrist\"]'),(22395,33,5,'director',NULL,NULL),(22395,303335,6,'writer','a talking film by',NULL),(22395,720904,7,'writer','scenario',NULL),(22395,185055,8,'cinematographer',NULL,NULL),(22395,323569,9,'editor',NULL,NULL),(22397,549905,10,'writer','additional dialogue by',NULL),(22397,178114,1,'actor',NULL,'[\"Skippy\"]'),(22397,176851,2,'actor',NULL,'[\"Sooky\"]'),(22397,338191,3,'actress',NULL,'[\"Eloise\"]'),(22397,780684,4,'actor',NULL,'[\"Sidney\"]'),(22397,851537,5,'director',NULL,NULL),(22397,591791,6,'writer','by',NULL),(22397,189034,7,'writer','from the story by',NULL),(22397,581,8,'writer','screen play by',NULL),(22397,572851,9,'writer','screen play by',NULL),(22458,5677,10,'cinematographer',NULL,NULL),(22458,156617,1,'actress',NULL,'[\"The Girl\"]'),(22458,558038,2,'actor',NULL,'[\"The Boy\"]'),(22458,386979,3,'actor',NULL,'[\"The Old Warrior\"]'),(22458,51447,4,'actor',NULL,'[\"The Policeman\"]'),(22458,3638,5,'director',NULL,NULL),(22458,280904,6,'writer','told by',NULL),(22458,880618,7,'writer',NULL,NULL),(22458,4622062,8,'composer',NULL,NULL),(22458,6252,9,'composer',NULL,NULL),(22599,179690,1,'actor',NULL,'[\"Louis\"]'),(22599,545384,2,'actor',NULL,'[\"Émile\"]'),(22599,289840,3,'actress',NULL,'[\"Jeanne\"]'),(22599,647378,4,'actor',NULL,'[\"L\'oncle\"]'),(22599,163229,5,'director',NULL,NULL),(22599,166622,6,'producer','producer',NULL),(22599,5952,7,'composer',NULL,NULL),(22599,5838,8,'cinematographer',NULL,NULL),(22599,494386,9,'editor',NULL,NULL),(22614,402478,10,'cinematographer',NULL,NULL),(22614,933333,1,'actress',NULL,'[\"Betty Cameron\"]'),(22614,431889,2,'actress',NULL,'[\"Dora Swale\"]'),(22614,188673,3,'actor',NULL,'[\"Michael \'Mike\' Harvey\"]'),(22614,511599,4,'actor',NULL,'[\"Duke Galloway\"]'),(22614,478441,5,'director',NULL,NULL),(22614,281331,6,'writer','play \"Cross Roads\"',NULL),(22614,556945,7,'writer','screenplay',NULL),(22614,168356,8,'writer','screenplay',NULL),(22614,841802,9,'writer','treatment',NULL),(22694,5862,10,'cinematographer',NULL,NULL),(22694,726166,1,'actress',NULL,'[\"Junta\"]'),(22694,927436,2,'actor',NULL,'[\"Vigo\"]'),(22694,299777,3,'actor',NULL,'[\"Tonio\"]'),(22694,392774,4,'actor',NULL,'[\"Innkeeper\"]'),(22694,49462,5,'director',NULL,NULL),(22694,562346,6,'writer',NULL,NULL),(22694,2446045,7,'writer','novel \"Bergkristall\"',NULL),(22694,812399,8,'producer','producer',NULL),(22694,5959,9,'composer',NULL,NULL),(22718,873306,10,'editor',NULL,NULL),(22718,800302,1,'actor',NULL,'[\"Priape Boudu\"]'),(22718,354325,2,'actress',NULL,'[\"Emma Lestingois\"]'),(22718,503495,3,'actress',NULL,'[\"Chloë Anne Marie, la bonne\"]'),(22718,311790,4,'actor',NULL,'[\"Vigour\"]'),(22718,719756,5,'director',NULL,NULL),(22718,268988,6,'writer','play',NULL),(22718,884152,7,'writer','screenplay',NULL),(22718,39792,8,'cinematographer',NULL,NULL),(22718,524636,9,'cinematographer',NULL,NULL),(22913,531269,10,'writer',NULL,NULL),(22913,285922,1,'actor',NULL,'[\"Phroso\"]'),(22913,404885,2,'actress',NULL,'[\"Venus\"]'),(22913,45754,3,'actress',NULL,'[\"Cleopatra\"]'),(22913,40374,4,'actor',NULL,'[\"Roscoe\"]'),(22913,115218,5,'director',NULL,NULL),(22913,730317,6,'writer','suggested by story: \"Spurs\"',NULL),(22913,325135,7,'writer','screenplay',NULL),(22913,330390,8,'writer','screenplay',NULL),(22913,90213,9,'writer','additional dialogue',NULL),(22940,627060,10,'cinematographer',NULL,NULL),(22940,195888,1,'actress',NULL,'[\"Fifi Follette\"]'),(22940,446769,2,'actor',NULL,'[\"Larry Boyd\"]'),(22940,913094,3,'actor',NULL,'[\"Bill Webster\"]'),(22940,561693,4,'actor',NULL,'[\"Earl Darrell\"]'),(22940,926171,5,'director',NULL,NULL),(22940,149493,6,'writer','dialogue',NULL),(22940,195950,7,'writer','story',NULL),(22940,1691074,8,'writer','story',NULL),(22940,540647,9,'composer',NULL,NULL),(22958,200125,10,'cinematographer',NULL,NULL),(22958,1256,1,'actress',NULL,'[\"Grusinskaya\"]'),(22958,858,2,'actor',NULL,'[\"Baron Felix von Geigern\"]'),(22958,1076,3,'actress',NULL,'[\"Flaemmchen\"]'),(22958,891,4,'actor',NULL,'[\"General Director Preysing\"]'),(22958,332539,5,'director',NULL,NULL),(22958,62139,6,'writer','by',NULL),(22958,237033,7,'writer','play \"America\" version by',NULL),(22958,49462,8,'writer',NULL,NULL),(22958,941138,9,'writer',NULL,NULL),(23027,790654,10,'writer',NULL,NULL),(23027,50,1,'actor',NULL,'[\"Professor Quincy Adams Wagstaff\"]'),(23027,555597,2,'actor',NULL,'[\"Baravelli\"]'),(23027,555617,3,'actor',NULL,'[\"Pinky\"]'),(23027,2580347,4,'actor',NULL,NULL),(23027,572851,5,'director',NULL,NULL),(23027,436095,6,'writer','by',NULL),(23027,748438,7,'writer','by',NULL),(23027,673279,8,'writer','by',NULL),(23027,426953,9,'writer','by',NULL),(23042,5835,10,'cinematographer',NULL,NULL),(23042,612847,1,'actor',NULL,'[\"James Allen\"]'),(23042,268225,2,'actress',NULL,'[\"Marie\"]'),(23042,899091,3,'actress',NULL,'[\"Helen\"]'),(23042,290271,4,'actress',NULL,'[\"Linda\"]'),(23042,503777,5,'director',NULL,NULL),(23042,122859,6,'writer','by',NULL),(23042,337914,7,'writer','screen play by',NULL),(23042,391763,8,'writer','screen play by',NULL),(23042,316807,9,'writer','screen play by',NULL),(23158,35552,10,'writer','based on a play by',NULL),(23158,2001,1,'actor',NULL,'[\"Maurice\"]'),(23158,531776,2,'actress',NULL,'[\"Princess Jeanette\"]'),(23158,749476,3,'actor',NULL,'[\"Viscount Gilbert de Varèze\"]'),(23158,125325,4,'actor',NULL,'[\"Count de Savignac\"]'),(23158,541149,5,'director',NULL,NULL),(23158,388755,6,'writer','screen play',NULL),(23158,547938,7,'writer','screen play',NULL),(23158,950150,8,'writer','screen play',NULL),(23158,545401,9,'writer','based on a play by',NULL),(23196,200125,10,'cinematographer',NULL,NULL),(23196,1256,1,'actress',NULL,'[\"Mata Hari\"]'),(23196,3895,2,'actor',NULL,'[\"Lt. Alexis Rosanoff\"]'),(23196,859,3,'actor',NULL,'[\"General Shubin\"]'),(23196,832011,4,'actor',NULL,'[\"Andriani\"]'),(23196,280463,5,'director',NULL,NULL),(23196,322227,6,'writer','by',NULL),(23196,83532,7,'writer','by',NULL),(23196,26639,8,'writer','additional dialogue',NULL),(23196,256298,9,'writer','additional dialogue',NULL),(23213,397284,10,'actress',NULL,'[\"Vi\"]'),(23213,796662,1,'actress',NULL,'[\"Joan Prentice\"]'),(23213,545298,2,'actor',NULL,'[\"Jerry Corbett\"]'),(23213,20239,3,'actress',NULL,'[\"Claire Hempstead\"]'),(23213,302480,4,'actor',NULL,'[\"Buck\"]'),(23213,2188,5,'director',NULL,NULL),(23213,562372,6,'writer','screen play by',NULL),(23213,524106,7,'writer','based on the story \"I, Jerry, Take Thee, Joan\" by',NULL),(23213,8441,8,'cinematographer',NULL,NULL),(23213,410271,9,'actor',NULL,'[\"Mr. Prentice\"]'),(23238,314706,10,'cinematographer',NULL,NULL),(23238,566948,1,'actor',NULL,'[\"Bob\"]'),(23238,942039,2,'actress',NULL,'[\"Eve\"]'),(23238,52203,3,'actor',NULL,'[\"Count Zaroff\"]'),(23238,35877,4,'actor',NULL,'[\"Martin\"]'),(23238,681635,5,'director',NULL,NULL),(23238,774325,6,'director',NULL,NULL),(23238,187256,7,'writer','screen play',NULL),(23238,175028,8,'writer','from the O.Henry prize winning collection story by',NULL),(23238,70,9,'composer',NULL,NULL),(23285,185055,10,'cinematographer',NULL,NULL),(23285,513325,1,'actor',NULL,'[\"Ben\"]'),(23285,340514,2,'actress',NULL,'[\"Nora Brant - the Girl\"]'),(23285,835738,3,'actor',NULL,'[\"Barton - the Detective\"]'),(23285,130740,4,'actor',NULL,'[\"Brant - Nora\'s Escort\"]'),(23285,33,5,'director',NULL,NULL),(23285,267537,6,'writer',NULL,NULL),(23285,720904,7,'writer','scenario',NULL),(23285,10063,8,'writer','scenario',NULL),(23285,231231,9,'composer',NULL,NULL),(23293,93988,10,'actress',NULL,'[\"Gladys\"]'),(23293,472,1,'actor',NULL,'[\"Morgan\"]'),(23293,2048,2,'actor',NULL,'[\"Penderel\"]'),(23293,1452,3,'actor',NULL,'[\"Sir William Porterhouse\"]'),(23293,1784,4,'actress',NULL,'[\"Margaret Waverton\"]'),(23293,1843,5,'director',NULL,NULL),(23293,697362,6,'writer','novel',NULL),(23293,506349,7,'writer','screen play',NULL),(23293,792670,8,'writer','additional dialogue',NULL),(23293,480673,9,'producer','producer',NULL),(23385,580648,10,'writer',NULL,NULL),(23385,1318,1,'actress',NULL,'[\"Lil Andrews\"]'),(23385,606431,2,'actor',NULL,'[\"Bill Legendre Jr.\"]'),(23385,832011,3,'actor',NULL,'[\"William Legendre Sr.\"]'),(23385,404885,4,'actress',NULL,'[\"Irene Legendre\"]'),(23385,176699,5,'director',NULL,NULL),(23385,116693,6,'writer','book',NULL),(23385,270765,7,'writer',NULL,NULL),(23385,280234,8,'writer',NULL,NULL),(23385,2616,9,'writer','screenplay',NULL),(23395,231231,10,'composer',NULL,NULL),(23395,447597,1,'actor',NULL,'[\"Fred Hill\"]'),(23395,58039,2,'actress',NULL,'[\"Emily Hill\"]'),(23395,549385,3,'actor',NULL,'[\"Commander Gordon\"]'),(23395,23894,4,'actress',NULL,'[\"The Princess\"]'),(23395,33,5,'director',NULL,NULL),(23395,172246,6,'writer','novel',NULL),(23395,720904,7,'writer',NULL,NULL),(23395,884318,8,'writer',NULL,NULL),(23395,4517768,9,'producer','producer',NULL),(23427,536941,10,'writer','dialogue',NULL),(23427,612847,1,'actor',NULL,'[\"Tony\"]'),(23427,245304,2,'actress',NULL,'[\"Cesca\"]'),(23427,605904,3,'actress',NULL,'[\"Poppy\"]'),(23427,674019,4,'actor',NULL,'[\"Lovo\"]'),(23427,1328,5,'director',NULL,NULL),(23427,744514,6,'director','co-director',NULL),(23427,870660,7,'writer','from the book by',NULL),(23427,372942,8,'writer','screen story by',NULL),(23427,589316,9,'writer','dialogue',NULL),(23458,335517,10,'actor',NULL,'[\"Mr. Carmichael\"]'),(23458,17,1,'actress',NULL,'[\"Shanghai Lily\"]'),(23458,111612,2,'actor',NULL,'[\"Captain Donald Harvey\"]'),(23458,938923,3,'actress',NULL,'[\"Hui Fei\"]'),(23458,645941,4,'actor',NULL,'[\"Henry Chang\"]'),(23458,903049,5,'director',NULL,NULL),(23458,299154,6,'writer','screen play',NULL),(23458,381152,7,'writer','based on the story by',NULL),(23458,5716,8,'cinematographer',NULL,NULL),(23458,657874,9,'actor',NULL,'[\"Sam Salt\"]'),(23582,869860,10,'cinematographer',NULL,NULL),(23582,2050,1,'actress',NULL,'[\"Laura Stanhope\"]'),(23582,7220,2,'actor',NULL,'[\"Police Sergeant Barry Clive\"]'),(23582,260728,3,'actress',NULL,'[\"Jo Turner\"]'),(23582,1485,4,'actress',NULL,'[\"Ursula Georgi\"]'),(23582,2179,5,'director',NULL,NULL),(23582,857230,6,'writer',NULL,NULL),(23582,179993,7,'writer','screen play',NULL),(23582,650338,8,'writer','screen play',NULL),(23582,70,9,'composer',NULL,NULL),(23590,193568,10,'editor',NULL,NULL),(23590,951,1,'actress',NULL,'[\"Mary Keaton\"]'),(23590,245304,2,'actress',NULL,'[\"Vivian Revere\"]'),(23590,12,3,'actress',NULL,'[\"Ruth Westcott\"]'),(23590,929925,4,'actor',NULL,'[\"Robert Kirkwood\"]'),(23590,503777,5,'director',NULL,NULL),(23590,399203,6,'writer','screen play',NULL),(23590,321891,7,'writer','story',NULL),(23590,109148,8,'writer','story',NULL),(23590,5835,9,'cinematographer',NULL,NULL),(23634,595954,10,'cinematographer',NULL,NULL),(23634,756870,1,'actor',NULL,'[\"Yoshi (Chichi)\"]'),(23634,31832,2,'actor',NULL,'[\"Keiji\"]'),(23634,948989,3,'actress',NULL,'[\"Haha (Yoshi\'s Wife)\"]'),(23634,837424,4,'actor',NULL,'[\"Ryoichi\"]'),(23634,654868,5,'director',NULL,NULL),(23634,299343,6,'writer','scenario',NULL),(23634,406601,7,'writer','adaptation',NULL),(23634,8255139,8,'composer',NULL,NULL),(23634,1529472,9,'composer',NULL,NULL),(23649,922170,1,'actor',NULL,'[\"Allan Grey\"]'),(23649,776914,2,'actor',NULL,'[\"Der Schlossherr (The Lord of the Manor)\"]'),(23649,541675,3,'actress',NULL,'[\"Gisèle\"]'),(23649,773525,4,'actress',NULL,'[\"Léone\"]'),(23649,3433,5,'director',NULL,NULL),(23649,494257,6,'writer','based on a book by',NULL),(23649,432143,7,'writer','screenplay',NULL),(23649,954632,8,'composer',NULL,NULL),(23649,5789,9,'cinematographer',NULL,NULL),(23694,572886,10,'editor',NULL,NULL),(23694,509,1,'actor',NULL,'[\"\'Murder\' Legendre\"]'),(23694,68705,2,'actress',NULL,'[\"Madeline Short Parker\"]'),(23694,147248,3,'actor',NULL,'[\"Dr. Bruner\"]'),(23694,292537,4,'actor',NULL,'[\"Charles Beaumont\"]'),(23694,356931,5,'director',NULL,NULL),(23694,922951,6,'writer','story by',NULL),(23694,2690196,7,'writer','novel \"The Magic Island\"',NULL),(23694,356922,8,'producer','producer',NULL),(23694,553339,9,'cinematographer',NULL,NULL),(23753,140902,10,'writer','novel \"Alice in Wonderland\"',NULL),(23753,35159,1,'actor',NULL,'[\"Cheshire Cat\"]'),(23753,40374,2,'actor',NULL,'[\"Fish\"]'),(23753,42552,3,'actor',NULL,'[\"Gryphon\"]'),(23753,11,4,'actor',NULL,'[\"White Knight\"]'),(23753,572851,5,'director',NULL,NULL),(23753,363414,6,'director',NULL,NULL),(23753,411208,7,'director',NULL,NULL),(23753,581,8,'writer','screen play',NULL),(23753,580017,9,'writer','screen play',NULL),(23775,5913,10,'cinematographer',NULL,NULL),(23775,1766,1,'actress',NULL,'[\"Lily Powers\"]'),(23775,107575,2,'actor',NULL,'[\"Courtland Trenholm\"]'),(23775,7219,3,'actor',NULL,'[\"Ned Stevens\"]'),(23775,262080,4,'actor',NULL,'[\"Adolf Cragg\"]'),(23775,337586,5,'director',NULL,NULL),(23775,548403,6,'writer','screen play',NULL),(23775,778636,7,'writer','screen play',NULL),(23775,953123,8,'writer','story',NULL),(23775,495461,9,'producer','producer',NULL),(23814,193562,10,'editor','film editor',NULL),(23814,1766,1,'actress',NULL,'[\"Megan\"]'),(23814,39989,2,'actor',NULL,'[\"General Yen\"]'),(23814,605312,3,'actress',NULL,'[\"Mah-Li\"]'),(23814,175369,4,'actor',NULL,'[\"Jones\"]'),(23814,1008,5,'director',NULL,NULL),(23814,831897,6,'writer','from the story by',NULL),(23814,660923,7,'writer','screen play',NULL),(23814,6123,8,'composer',NULL,NULL),(23814,907900,9,'cinematographer',NULL,NULL),(23876,683114,10,'actress',NULL,'[\"Mrs. Snapper\"]'),(23876,944087,1,'actress',NULL,'[\"Jane Marryot\"]'),(23876,111612,2,'actor',NULL,'[\"Robert Marryot\"]'),(23876,640547,3,'actress',NULL,'[\"Ellen Bridges\"]'),(23876,612743,4,'actor',NULL,'[\"Alfred Bridges\"]'),(23876,515979,5,'director',NULL,NULL),(23876,75351,6,'writer','screen play',NULL),(23876,2021,7,'writer','play',NULL),(23876,580240,8,'actress',NULL,'[\"Cook\"]'),(23876,115008,9,'actress',NULL,'[\"Margaret Harris\"]'),(23932,269751,10,'editor','film editor',NULL),(23932,228715,1,'actor',NULL,'[\"John Day\"]'),(23932,263004,2,'actress',NULL,'[\"Dorothy Day\"]'),(23932,853604,3,'actor',NULL,'[\"George Hollins\"]'),(23932,580916,4,'actress',NULL,'[\"Mamie\"]'),(23932,102643,5,'director',NULL,NULL),(23932,780803,6,'writer','screen play',NULL),(23932,338751,7,'writer','screen play',NULL),(23932,1802671,8,'writer','from the novel by',NULL),(23932,5898,9,'cinematographer',NULL,NULL),(23935,5661,10,'cinematographer',NULL,NULL),(23935,509,1,'actor',NULL,'[\"Joseph Steiner\"]'),(23935,543115,2,'actor',NULL,'[\"Franklyn Drew\"]'),(23935,24669,3,'actress',NULL,'[\"Marcia Lane\"]'),(23935,942046,4,'actor',NULL,'[\"Detective Lt . Sheehan\"]'),(23935,547446,5,'director',NULL,NULL),(23935,820513,6,'writer','book by',NULL),(23935,57456,7,'writer','screen play by',NULL),(23935,434835,8,'writer','screen play by',NULL),(23935,871166,9,'writer','dialogue',NULL),(23940,545298,1,'actor',NULL,'[\"Thomas B. \'Tom\' Chambers\"]'),(23940,11,2,'actor',NULL,'[\"George Curtis\"]'),(23940,394244,3,'actress',NULL,'[\"Gilda Farrell\"]'),(23940,2143,4,'actor',NULL,'[\"Max Plunkett\"]'),(23940,523932,5,'director',NULL,NULL),(23940,2021,6,'writer','play',NULL),(23940,372942,7,'writer','screenplay',NULL),(23940,388755,8,'writer','screenplay',NULL),(23940,5800,9,'cinematographer',NULL,NULL),(23969,789049,10,'cinematographer',NULL,NULL),(23969,50,1,'actor',NULL,'[\"Rufus T. Firefly\"]'),(23969,555617,2,'actor',NULL,'[\"Pinky\"]'),(23969,555597,3,'actor',NULL,'[\"Chicolini\"]'),(23969,555688,4,'actor',NULL,'[\"Bob Roland\"]'),(23969,564970,5,'director',NULL,NULL),(23969,436095,6,'writer','story',NULL),(23969,748438,7,'writer','story',NULL),(23969,790654,8,'writer','additional dialogue',NULL),(23969,674759,9,'writer','additional dialogue',NULL),(24008,164737,10,'writer','suggested by a story by',NULL),(24008,154183,1,'actress',NULL,'[\"Alison Drake\"]'),(24008,107575,2,'actor',NULL,'[\"Jim Thorne\"]'),(24008,933773,3,'actress',NULL,'[\"Harriet\"]'),(24008,113902,4,'actor',NULL,'[\"Cooper\"]'),(24008,2031,5,'director',NULL,NULL),(24008,226189,6,'director',NULL,NULL),(24008,920074,7,'director',NULL,NULL),(24008,548403,8,'writer','screen play',NULL),(24008,778636,9,'writer','screen play',NULL),(24028,55604,10,'cinematographer',NULL,NULL),(24028,10,1,'actor',NULL,'[\"Chester Kent\"]'),(24028,951,2,'actress',NULL,'[\"Nan Prescott\"]'),(24028,444528,3,'actress',NULL,'[\"Bea Thorn\"]'),(24028,694090,4,'actor',NULL,'[\"Scotty Blair\"]'),(24028,45800,5,'director',NULL,NULL),(24028,781719,6,'writer','screen play',NULL),(24028,786827,7,'writer','screen play',NULL),(24028,520501,8,'writer','story',NULL),(24028,590361,9,'writer','story',NULL),(24034,5835,10,'cinematographer',NULL,NULL),(24034,62828,1,'actor',NULL,'[\"Julian Marsh\"]'),(24034,199841,2,'actress',NULL,'[\"Dorothy Brock\"]'),(24034,107575,3,'actor',NULL,'[\"Pat Denning\"]'),(24034,444528,4,'actress',NULL,'[\"Peggy Sawyer\"]'),(24034,45800,5,'director',NULL,NULL),(24034,416861,6,'writer','screen play',NULL),(24034,786827,7,'writer','screen play',NULL),(24034,740622,8,'writer','based on the novel by',NULL),(24034,93456,9,'writer','contributor to treatment',NULL),(24069,394479,10,'writer','based on a play by',NULL),(24069,929925,1,'actor',NULL,'[\"J. Lawrence Bradford\"]'),(24069,951,2,'actress',NULL,'[\"Carol King\"]'),(24069,533956,3,'actress',NULL,'[\"Trixie Lorraine\"]'),(24069,444528,4,'actress',NULL,'[\"Polly Parker\"]'),(24069,503777,5,'director',NULL,NULL),(24069,312510,6,'writer','screenplay',NULL),(24069,786827,7,'writer','screenplay',NULL),(24069,91200,8,'writer','dialogue',NULL),(24069,548993,9,'writer','dialogue',NULL),(24184,480673,10,'producer','producer',NULL),(24184,1647,1,'actor',NULL,'[\"Dr. Jack Griffin aka The Invisible Man\"]'),(24184,1784,2,'actress',NULL,'[\"Flora Cranley\"]'),(24184,364203,3,'actor',NULL,'[\"Dr. Arthur Kemp\"]'),(24184,871287,4,'actor',NULL,'[\"Dr. Cranley\"]'),(24184,1843,5,'director',NULL,NULL),(24184,920229,6,'writer','novel',NULL),(24184,792670,7,'writer','screenplay',NULL),(24184,2545,8,'writer','contributing writer',NULL),(24184,943804,9,'writer',NULL,NULL),(24188,121753,10,'actress',NULL,'[\"Lota the Panther Woman\"]'),(24188,1452,1,'actor',NULL,'[\"Dr. Moreau\"]'),(24188,509,2,'actor',NULL,'[\"Sayer of the Law\"]'),(24188,35159,3,'actor',NULL,'[\"Edward Parker\"]'),(24188,404885,4,'actress',NULL,'[\"Ruth Thomas\"]'),(24188,448915,5,'director',NULL,NULL),(24188,950150,6,'writer','screen play',NULL),(24188,943804,7,'writer','screen play',NULL),(24188,920229,8,'writer','novel',NULL),(24188,835365,9,'cinematographer',NULL,NULL),(24210,715969,10,'cinematographer',NULL,NULL),(24210,1635,1,'actor',NULL,'[\"Philo Vance\"]'),(24210,802,2,'actress',NULL,'[\"Hilda Lake\"]'),(24210,657874,3,'actor',NULL,'[\"Detective Heath\"]'),(24210,604960,4,'actor',NULL,'[\"Raymond Wrede - the Secretary\"]'),(24210,2031,5,'director',NULL,NULL),(24210,886597,6,'writer','by',NULL),(24210,498133,7,'writer','screen play',NULL),(24210,590361,8,'writer','screen play',NULL),(24210,696190,9,'writer','adaptation',NULL),(24216,330390,10,'writer','contributing writer',NULL),(24216,942039,1,'actress',NULL,'[\"Ann Darrow\"]'),(24216,35877,2,'actor',NULL,'[\"Carl Denham\"]'),(24216,127677,3,'actor',NULL,'[\"Jack Driscoll\"]'),(24216,717046,4,'actor',NULL,'[\"Capt. Englehorn\"]'),(24216,178260,5,'director',NULL,NULL),(24216,774325,6,'director',NULL,NULL),(24216,187256,7,'writer','screen play',NULL),(24216,741656,8,'writer','screen play',NULL),(24216,908624,9,'writer','from an idea conceived by',NULL),(24264,88670,10,'writer','contributing writer',NULL),(24264,31,1,'actress',NULL,'[\"Jo March\"]'),(24264,910,2,'actress',NULL,'[\"Amy March\"]'),(24264,510134,3,'actor',NULL,'[\"Professor Bhaer\"]'),(24264,646829,4,'actress',NULL,'[\"Aunt March\"]'),(24264,2030,5,'director',NULL,NULL),(24264,17301,6,'writer','by',NULL),(24264,556945,7,'writer','screen play',NULL),(24264,373511,8,'writer','screen play',NULL),(24264,28636,9,'writer','contributing writer',NULL),(24432,35467,1,'actress',NULL,'[\"Spanish Dancer\"]'),(24432,281487,2,'director',NULL,NULL),(24432,460667,3,'director','animation director',NULL),(24432,281502,4,'producer','producer',NULL),(24473,365882,10,'editor',NULL,NULL),(24473,1452,1,'actor',NULL,'[\"Henry VIII\"]'),(24473,232196,2,'actor',NULL,'[\"Thomas Culpeper\"]'),(24473,245579,3,'actor',NULL,'[\"Thomas Cromwell\"]'),(24473,541766,4,'actor',NULL,'[\"Wriothesley\"]'),(24473,466099,5,'director',NULL,NULL),(24473,83742,6,'writer','story and dialogue',NULL),(24473,934497,7,'writer','story and dialogue',NULL),(24473,775680,8,'composer',NULL,NULL),(24473,5838,9,'cinematographer',NULL,NULL),(24481,309567,10,'writer',NULL,NULL),(24481,1256,1,'actress',NULL,'[\"Christina\"]'),(24481,318105,2,'actor',NULL,'[\"Antonio\"]'),(24481,445246,3,'actor',NULL,'[\"Magnus\"]'),(24481,832011,4,'actor',NULL,'[\"Oxenstierna\"]'),(24481,541149,5,'director',NULL,NULL),(24481,367814,6,'writer','screen play',NULL),(24481,826554,7,'writer','screen play',NULL),(24481,505996,8,'writer','from the original story by',NULL),(24481,67103,9,'writer','dialogue',NULL),(24548,484439,10,'actor',NULL,'[\"Dan Flynn\"]'),(24548,922213,1,'actress',NULL,'[\"Lady Lou\"]'),(24548,26,2,'actor',NULL,'[\"Captain Cummings\"]'),(24548,601698,3,'actor',NULL,'[\"Chick Clark\"]'),(24548,738042,4,'actor',NULL,'[\"Serge Stanieff\"]'),(24548,792514,5,'director',NULL,NULL),(24548,857710,6,'writer','screen play',NULL),(24548,109148,7,'writer','screen play',NULL),(24548,485702,8,'cinematographer',NULL,NULL),(24548,1935,9,'actor',NULL,'[\"Gus Jordan\"]'),(24601,668727,10,'cinematographer',NULL,NULL),(24601,491048,1,'actor',NULL,'[\"Stan Laurel\"]'),(24601,1316,2,'actor',NULL,'[\"Oliver Hardy\"]'),(24601,153713,3,'actor',NULL,'[\"Charley\"]'),(24601,123994,4,'actress',NULL,'[\"Mrs. Lottie Hardy\"]'),(24601,782682,5,'director',NULL,NULL),(24601,186600,6,'writer','story',NULL),(24601,59374,7,'writer',NULL,NULL),(24601,874497,8,'writer',NULL,NULL),(24601,919543,9,'writer',NULL,NULL),(24625,654239,1,'actor',NULL,'[\"Sherlock Holmes\"]'),(24625,938923,2,'actress',NULL,'[\"Mrs. Pyke\"]'),(24625,167407,3,'actress',NULL,'[\"Eileen Forrester\"]'),(24625,3062,4,'actor',NULL,'[\"Merrydew\"]'),(24625,547446,5,'director',NULL,NULL),(24625,236279,6,'writer','suggested by book \"A Study in Scarlet\"',NULL),(24625,282984,7,'writer','screenplay',NULL),(24625,249186,8,'cinematographer',NULL,NULL),(24625,517374,9,'editor',NULL,NULL),(24679,517374,10,'editor',NULL,NULL),(24679,606431,1,'actor',NULL,'[\"Neil Broderick\"]'),(24679,651754,2,'actress',NULL,'[\"Martha Winters\"]'),(24679,570451,3,'actor',NULL,'[\"Clancy\"]'),(24679,420765,4,'actor',NULL,'[\"Dugan\"]'),(24679,258015,5,'director',NULL,NULL),(24679,817809,6,'writer','original screenplay and dialogue',NULL),(24679,774209,7,'producer','producer',NULL),(24679,956290,8,'producer','producer',NULL),(24679,5864,9,'cinematographer',NULL,NULL),(24727,831889,10,'actor',NULL,'[\"Kringen\"]'),(24727,41172,1,'actor',NULL,'[\"Dr. Otto von Niemann\"]'),(24727,942039,2,'actress',NULL,'[\"Ruth Bertin\"]'),(24727,2048,3,'actor',NULL,'[\"Karl Brettschneider\"]'),(24727,248291,4,'actress',NULL,'[\"Aunt Gussie Schnappmann\"]'),(24727,833965,5,'director',NULL,NULL),(24727,522871,6,'writer','screen story',NULL),(24727,326370,7,'producer','producer',NULL),(24727,5806,8,'cinematographer',NULL,NULL),(24727,308178,9,'editor','film editor',NULL),(24831,772834,10,'editor',NULL,NULL),(24831,794297,1,'actress',NULL,'[\"Anne Shirley\"]'),(24831,114805,2,'actor',NULL,'[\"Gilbert Blythe\"]'),(24831,373773,3,'actor',NULL,'[\"Matthew Cuthbert\"]'),(24831,922818,4,'actress',NULL,'[\"Marilla Cuthbert\"]'),(24831,629519,5,'director',NULL,NULL),(24831,591791,6,'writer','screen play',NULL),(24831,599844,7,'writer','from the book \"Anne of Green Gables\"',NULL),(24831,532284,8,'producer','producer',NULL),(24831,5635,9,'cinematographer',NULL,NULL),(24844,442100,10,'cinematographer',NULL,NULL),(24844,663077,1,'actress',NULL,'[\"Juliette\"]'),(24844,202120,2,'actor',NULL,'[\"Jean\"]'),(24844,546621,3,'actor',NULL,'[\"Le camelot (peddler)\"]'),(24844,498882,4,'actor',NULL,'[\"Le gosse (cabin boy)\"]'),(24844,897118,5,'director',NULL,NULL),(24844,347447,6,'writer','scenario',NULL),(24844,729960,7,'writer','adaptation',NULL),(24844,636677,8,'producer','producer',NULL),(24844,6144,9,'composer',NULL,NULL),(24961,123521,10,'editor',NULL,NULL),(24961,516001,1,'actor',NULL,'[\"Ezekiel Cobb\"]'),(24961,580916,2,'actress',NULL,'[\"Pet Pratt\"]'),(24961,53616,3,'actor',NULL,'[\"Jake Mayo\"]'),(24961,671738,4,'actor',NULL,'[\"Strozzi\"]'),(24961,853130,5,'director',NULL,NULL),(24961,445502,6,'writer','story',NULL),(24961,115669,7,'writer','contributor to screenplay',NULL),(24961,1084708,8,'producer','producer',NULL),(24961,526517,9,'cinematographer',NULL,NULL),(24991,465859,10,'composer',NULL,NULL),(24991,1055,1,'actress',NULL,'[\"Cleopatra\"]'),(24991,929925,2,'actor',NULL,'[\"Julius Caesar\"]'),(24991,928295,3,'actor',NULL,'[\"Marc Antony\"]'),(24991,771584,4,'actor',NULL,'[\"Herod\"]'),(24991,1124,5,'director',NULL,NULL),(24991,950150,6,'writer','screen play',NULL),(24991,493071,7,'writer','screen play',NULL),(24991,179993,8,'writer','from an adaptation by: historical material',NULL),(24991,1306202,9,'writer',NULL,NULL),(25004,806448,10,'producer','producer',NULL),(25004,232196,1,'actor',NULL,'[\"Edmond Dantes\"]'),(25004,484748,2,'actress',NULL,'[\"Mercedes de Rosas\"]'),(25004,129894,3,'actor',NULL,'[\"Raymond de Villefort Jr.\"]'),(25004,85782,4,'actor',NULL,'[\"Fernand Mondego\"]'),(25004,498174,5,'director',NULL,NULL),(25004,241416,6,'writer','novel \"Le comte de Monte-Cristo\"',NULL),(25004,242897,7,'writer','screenplay',NULL),(25004,869371,8,'writer','screenplay',NULL),(25004,857710,9,'writer',NULL,NULL),(25091,164690,10,'cinematographer',NULL,NULL),(25091,1635,1,'actor',NULL,'[\"John Prentice\"]'),(25091,1485,2,'actress',NULL,'[\"Evelyn Prentice\"]'),(25091,580916,3,'actress',NULL,'[\"Amy Drexel\"]'),(25091,751426,4,'actress',NULL,'[\"Mrs. Nancy Harrison\"]'),(25091,397678,5,'director',NULL,NULL),(25091,168829,6,'writer','screen play',NULL),(25091,941003,7,'writer','from the book by',NULL),(25091,736911,8,'writer','adaptation',NULL),(25091,175908,9,'producer','producer',NULL),(25301,274923,10,'writer','contributing writer',NULL),(25301,1055,1,'actress',NULL,'[\"Beatrice Pullman\"]'),(25301,929925,2,'actor',NULL,'[\"Stephen Archer\"]'),(25301,399955,3,'actress',NULL,'[\"Jessie Pullman\"]'),(25301,817021,4,'actor',NULL,'[\"Elmer Smith\"]'),(25301,821472,5,'director',NULL,NULL),(25301,403595,6,'writer','novel',NULL),(25301,403398,7,'writer','screenplay',NULL),(25301,2545,8,'writer','contributing writer',NULL),(25301,242850,9,'writer','additional dialogue',NULL),(25316,858977,10,'actor',NULL,'[\"King Westley\"]'),(25316,22,1,'actor',NULL,'[\"Peter Warne\"]'),(25316,1055,2,'actress',NULL,'[\"Ellie Andrews\"]'),(25316,175369,3,'actor',NULL,'[\"Alexander Andrews\"]'),(25316,439850,4,'actor',NULL,'[\"Oscar Shapeley\"]'),(25316,1008,5,'director',NULL,NULL),(25316,728307,6,'writer','screen play',NULL),(25316,11343,7,'writer','based on the short story by',NULL),(25316,907900,8,'cinematographer',NULL,NULL),(25316,369879,9,'editor','film editor',NULL),(25318,337914,10,'writer','contributor to treatment',NULL),(25318,1211,1,'actor',NULL,'[\"Harold Bissonette\"]'),(25318,397427,2,'actress',NULL,'[\"Amelia Bissonette\"]'),(25318,746169,3,'actress',NULL,'[\"Mildred Bissonette\"]'),(25318,534985,4,'actor',NULL,'[\"John Durston\"]'),(25318,572851,5,'director',NULL,NULL),(25318,192325,6,'writer','screen play',NULL),(25318,568571,7,'writer','from \"The Comic Supplement\" by',NULL),(25318,83125,8,'writer','contributor to treatment',NULL),(25318,107756,9,'writer','contributor to special sequences',NULL),(25423,921098,10,'cinematographer','director of photography',NULL),(25423,572142,1,'actor',NULL,'[\"The Sergeant\"]'),(25423,472,2,'actor',NULL,'[\"Sanders\"]'),(25423,285922,3,'actor',NULL,'[\"Morelli\"]'),(25423,219666,4,'actor',NULL,'[\"Brown\"]'),(25423,406,5,'director',NULL,NULL),(25423,629580,6,'writer','screen play',NULL),(25423,287124,7,'writer','adaptation',NULL),(25423,531878,8,'writer','from the story \"Patrol\" by',NULL),(25423,70,9,'composer',NULL,NULL),(25424,682744,10,'editor',NULL,NULL),(25424,128581,1,'actor',NULL,'[\"Lt. Tom \'Soapy\' Cooper\"]'),(25424,637789,2,'actor',NULL,'[\"Lt. Richard \'Woody\' Wood\"]'),(25424,172875,3,'actress',NULL,'[\"Evelyn Worthington\"]'),(25424,106785,4,'actor',NULL,'[\"Colonel Brooks\"]'),(25424,114266,5,'director',NULL,NULL),(25424,876811,6,'writer','original story',NULL),(25424,218626,7,'writer','screenplay',NULL),(25424,480130,8,'producer','producer',NULL),(25424,5806,9,'cinematographer',NULL,NULL),(25452,930539,10,'writer','additional dialogue',NULL),(25452,52203,1,'actor',NULL,'[\"Bob Lawrence\"]'),(25452,78923,2,'actress',NULL,'[\"Jill Lawrence\"]'),(25452,48,3,'actor',NULL,'[\"Abbott\"]'),(25452,903687,4,'actor',NULL,'[\"Ramon Levine\"]'),(25452,33,5,'director',NULL,NULL),(25452,71657,6,'writer','by',NULL),(25452,943922,7,'writer','by',NULL),(25452,339326,8,'writer','scenario',NULL),(25452,712653,9,'writer','scenario',NULL),(25465,201288,10,'actress',NULL,'[\"Maizie\"]'),(25465,940513,1,'actor',NULL,'[\"Maxwell\"]'),(25465,139356,2,'actor',NULL,'[\"Dr. Meirschultz\"]'),(25465,250395,3,'actor',NULL,'[\"Buckley\"]'),(25465,226888,4,'actress',NULL,'[\"Mrs. Buckley\"]'),(25465,260871,5,'director',NULL,NULL),(25465,821131,6,'writer','story by',NULL),(25465,860847,7,'cinematographer',NULL,NULL),(25465,42553,8,'editor',NULL,NULL),(25465,709083,9,'actress',NULL,'[\"Alice Maxwell\"]'),(25543,682744,10,'editor',NULL,NULL),(25543,1935,1,'actor',NULL,'[\"Capt. John Holling\"]'),(25543,21667,2,'actress',NULL,'[\"Lila Kane\"]'),(25543,561693,3,'actor',NULL,'[\"Major Pope\"]'),(25543,167032,4,'actor',NULL,'[\"Inspector Von Kessling\"]'),(25543,631438,5,'director',NULL,NULL),(25543,908624,6,'writer','novel \"The Ghost of John Holling\"',NULL),(25543,869389,7,'writer','screen play by',NULL),(25543,540862,8,'producer','producer',NULL),(25543,5887,9,'cinematographer',NULL,NULL),(25586,70,10,'composer',NULL,NULL),(25586,12,1,'actress',NULL,'[\"Mildred\"]'),(25586,1366,2,'actor',NULL,'[\"Philip\"]'),(25586,214168,3,'actress',NULL,'[\"Sally\"]'),(25586,425512,4,'actress',NULL,'[\"Norah\"]'),(25586,188669,5,'director',NULL,NULL),(25586,169556,6,'writer','screen play by',NULL),(25586,560857,7,'writer','from the novel by',NULL),(25586,170923,8,'writer','dialogue',NULL),(25586,75825,9,'producer','producer',NULL),(25617,834898,10,'producer','producer',NULL),(25617,1256,1,'actress',NULL,'[\"Katrin\"]'),(25617,3339,2,'actor',NULL,'[\"Walter Fane\"]'),(25617,107575,3,'actor',NULL,'[\"Jack Townsend\"]'),(25617,645941,4,'actor',NULL,'[\"General Yu\"]'),(25617,92915,5,'director',NULL,NULL),(25617,576046,6,'writer','screen play',NULL),(25617,826554,7,'writer','screen play',NULL),(25617,280223,8,'writer','screen play',NULL),(25617,560857,9,'writer','from the novel by',NULL),(25746,330200,10,'actor',NULL,'[\"Capt. Gregori Orloff\"]'),(25746,17,1,'actress',NULL,'[\"Princess Sophia Frederica\",\"Catherine II\"]'),(25746,517099,2,'actor',NULL,'[\"Count Alexei\"]'),(25746,415488,3,'actor',NULL,'[\"Grand Duke Peter\"]'),(25746,237571,4,'actress',NULL,'[\"Empress Elizabeth Petrovna\"]'),(25746,903049,5,'director',NULL,NULL),(25746,464767,6,'writer','story- based on the diary of Catherine the Great',NULL),(25746,1327583,7,'writer','contributor to screenplay construction',NULL),(25746,322688,8,'cinematographer',NULL,NULL),(25746,807580,9,'actor',NULL,'[\"Prince August\"]'),(25755,375500,10,'writer','dialogue by',NULL),(25755,185568,1,'actor',NULL,'[\"Don Jackson\"]'),(25755,526946,2,'actress',NULL,'[\"Barbara Hilton\"]'),(25755,35877,3,'actor',NULL,'[\"Larry Williams\"]'),(25755,322299,4,'actor',NULL,'[\"Dan Healy\"]'),(25755,448915,5,'director',NULL,NULL),(25755,91200,6,'writer','story by',NULL),(25755,914362,7,'writer','story by',NULL),(25755,124918,8,'writer','screen play by',NULL),(25755,83125,9,'writer','screen play by',NULL),(25822,31,1,'actress',NULL,'[\"Trigger Hicks\"]'),(25822,1870,2,'actor',NULL,'[\"John Stafford\"]'),(25822,897,3,'actor',NULL,'[\"George Fleetwood\"]'),(25822,805701,4,'actress',NULL,'[\"Eleanor Stafford\"]'),(25822,188669,5,'director',NULL,NULL),(25822,901617,6,'writer','from the play by',NULL),(25822,613848,7,'writer','screen play',NULL),(25822,5676,8,'cinematographer',NULL,NULL),(25822,605093,9,'editor',NULL,NULL),(26029,878604,10,'editor',NULL,NULL),(26029,232196,1,'actor',NULL,'[\"Hannay\"]'),(26029,140914,2,'actress',NULL,'[\"Pamela\"]'),(26029,543169,3,'actress',NULL,'[\"Miss Smith\"]'),(26029,853607,4,'actor',NULL,'[\"Professor Jordan\"]'),(26029,33,5,'director',NULL,NULL),(26029,117955,6,'writer','adapted from the novel by',NULL),(26029,71657,7,'writer','adaptation',NULL),(26029,67308,8,'writer','dialogue',NULL),(26029,461497,9,'cinematographer',NULL,NULL),(26071,6388,10,'producer','producer',NULL),(26071,1256,1,'actress',NULL,'[\"Anna Karenina\"]'),(26071,545298,2,'actor',NULL,'[\"Count Vronsky\"]'),(26071,861,3,'actor',NULL,'[\"Sergei\"]'),(26071,1577,4,'actress',NULL,'[\"Kitty\"]'),(26071,113284,5,'director',NULL,NULL),(26071,866243,6,'writer','from the novel by',NULL),(26071,199304,7,'writer','screen play',NULL),(26071,826554,8,'writer','screen play',NULL),(26071,67103,9,'writer','dialogue adaptation',NULL),(26138,88662,10,'writer','adaptation',NULL),(26138,472,1,'actor',NULL,'[\"The Monster\"]'),(26138,6471,2,'actress',NULL,'[\"Mary Wollstonecraft Shelley\",\"The Monster\'s Mate\"]'),(26138,166972,3,'actor',NULL,'[\"Henry Frankenstein\"]'),(26138,387753,4,'actress',NULL,'[\"Elizabeth\"]'),(26138,1843,5,'director',NULL,NULL),(26138,791217,6,'writer','suggested by: the original story written in 1816 by',NULL),(26138,403398,7,'writer','adapted by',NULL),(26138,49721,8,'writer','adapted by',NULL),(26138,76653,9,'writer','adaptation',NULL),(26599,27115,10,'cinematographer',NULL,NULL),(26599,219666,1,'actor',NULL,'[\"Oliver Keith\"]'),(26599,268052,2,'actress',NULL,'[\"Ella Carey\"]'),(26599,858977,3,'actor',NULL,'[\"Dr. Phillip J. Boyer\"]'),(26599,720885,4,'actress',NULL,'[\"Julia Sayre\"]'),(26599,6943,5,'director',NULL,NULL),(26599,388554,6,'writer','story',NULL),(26599,252,7,'writer','screenplay',NULL),(26599,517567,8,'writer','screenplay',NULL),(26599,60724,9,'producer','producer',NULL),(26663,49721,10,'writer','screen play',NULL),(26663,48,1,'actor',NULL,'[\"Doctor Gogol\"]'),(26663,236903,2,'actress',NULL,'[\"Yvonne Orlac\"]'),(26663,166972,3,'actor',NULL,'[\"Stephen Orlac\"]'),(26663,372384,4,'actor',NULL,'[\"Reagan\"]'),(26663,5713,5,'director',NULL,NULL),(26663,719165,6,'writer','from the novel: \"Les Mains D\'Orlac\"',NULL),(26663,187693,7,'writer','translation and adaptation: novel \"The Hands of Orlac\"',NULL),(26663,256880,8,'writer','adaptation',NULL),(26663,938439,9,'writer','screen play',NULL),(26667,242850,10,'writer','additional dialogue',NULL),(26667,2050,1,'actress',NULL,'[\"Helen Hudson\"]'),(26667,1791,2,'actor',NULL,'[\"Robert Merrick\"]'),(26667,125325,3,'actor',NULL,'[\"Tommy Masterson\"]'),(26667,299026,4,'actress',NULL,'[\"Joyce Hudson\"]'),(26667,821472,5,'director',NULL,NULL),(26667,556945,6,'writer','screenplay',NULL),(26667,373511,7,'writer','screenplay',NULL),(26667,642005,8,'writer','screenplay',NULL),(26667,235160,9,'writer','novel \"Magnificent Obsession\"',NULL),(26752,355681,10,'writer','book',NULL),(26752,1452,1,'actor',NULL,'[\"Captain Bligh\"]'),(26752,22,2,'actor',NULL,'[\"Fletcher Christian\"]'),(26752,867144,3,'actor',NULL,'[\"Roger Byam\"]'),(26752,612743,4,'actor',NULL,'[\"Smith\"]'),(26752,515979,5,'director',NULL,NULL),(26752,421255,6,'writer','screenplay',NULL),(26752,299154,7,'writer','screenplay',NULL),(26752,933133,8,'writer','screenplay',NULL),(26752,635079,9,'writer','book',NULL),(26768,352443,10,'writer','screen play',NULL),(26768,531776,1,'actress',NULL,'[\"Marietta\"]'),(26768,248904,2,'actor',NULL,'[\"Warrington\"]'),(26768,604656,3,'actor',NULL,'[\"Governor d\'Annard\"]'),(26768,6471,4,'actress',NULL,'[\"Madame d\'Annard\"]'),(26768,502752,5,'director',NULL,NULL),(26768,886754,6,'director',NULL,NULL),(26768,949995,7,'writer','book of musical play',NULL),(26768,536941,8,'writer','screen play',NULL),(26768,329304,9,'writer','screen play',NULL),(26778,36,10,'writer',NULL,NULL),(26778,50,1,'actor',NULL,'[\"Otis B. Driftwood\"]'),(26778,555597,2,'actor',NULL,'[\"Fiorello\"]'),(26778,555617,3,'actor',NULL,'[\"Tomasso\"]'),(26778,137634,4,'actress',NULL,'[\"Rosa Castaldi\"]'),(26778,939992,5,'director',NULL,NULL),(26778,332539,6,'director',NULL,NULL),(26778,442151,7,'writer','screen play',NULL),(26778,753452,8,'writer','screen play',NULL),(26778,570130,9,'writer','from a story by',NULL),(26939,851188,10,'actor',NULL,'[\"Hubert Perrin\"]'),(26939,842981,1,'actor',NULL,'[\"Inspector Philip Winton\"]'),(26939,348199,2,'actress',NULL,'[\"Claire Haines\"]'),(26939,204037,3,'actress',NULL,'[\"Mrs. Harris\"]'),(26939,799237,4,'actor',NULL,'[\"Police Sgt. \'Mac\' McKay\"]'),(26939,662032,5,'director',NULL,NULL),(26939,421862,6,'writer','screen adaptation',NULL),(26939,824715,7,'writer','based on \"Les Six Hommes Morts\"',NULL),(26939,117275,8,'cinematographer',NULL,NULL),(26939,65259,9,'editor',NULL,NULL),(26942,591791,10,'writer','screen play',NULL),(26942,2050,1,'actress',NULL,'[\"Stephanie\"]'),(26942,1,2,'actor',NULL,'[\"Huck Haines\"]'),(26942,1677,3,'actress',NULL,'[\"Lizzie Gatz aka Tanka Scharwenka\"]'),(26942,68,4,'actor',NULL,'[\"John Kent\"]'),(26942,782682,5,'director',NULL,NULL),(26942,6153,6,'writer','from the play',NULL),(26942,361877,7,'writer','book of play',NULL),(26942,2317,8,'writer','novel \"Gowns by Roberta\"',NULL),(26942,613848,9,'writer','screen play',NULL),(27125,391750,10,'writer','contributor to treatment',NULL),(27125,1,1,'actor',NULL,'[\"Jerry Travers\"]'),(27125,1677,2,'actress',NULL,'[\"Dale Tremont\"]'),(27125,2143,3,'actor',NULL,'[\"Horace Hardwick\"]'),(27125,722424,4,'actor',NULL,'[\"Alberto Beddini\"]'),(27125,762263,5,'director',NULL,NULL),(27125,852313,6,'writer','screen play',NULL),(27125,778818,7,'writer','screen play',NULL),(27125,15801,8,'writer','play',NULL),(27125,267022,9,'writer','play',NULL),(27387,432482,10,'cinematographer',NULL,NULL),(27387,7224,1,'actress',NULL,'[\"Nora Paige\"]'),(27387,71,2,'actor',NULL,'[\"Ted Barker\"]'),(27387,115597,3,'actress',NULL,'[\"Lucy James\"]'),(27387,580916,4,'actress',NULL,'[\"Jenny Saks\"]'),(27387,215877,5,'director',NULL,NULL),(27387,569650,6,'writer','screen play',NULL),(27387,799015,7,'writer','screen play',NULL),(27387,221865,8,'writer','from a story by',NULL),(27387,191901,9,'producer','producer',NULL),(27407,64,1,'actor',NULL,'[\"Johnny Blake\"]'),(27407,951,2,'actress',NULL,'[\"Lee Morgan\"]'),(27407,533692,3,'actor',NULL,'[\"Al Kruger\"]'),(27407,7,4,'actor',NULL,'[\"\'Bugs\' Fenner\"]'),(27407,445033,5,'director',NULL,NULL),(27407,589316,6,'writer','screen play',NULL),(27407,600755,7,'writer','story',NULL),(27407,5803,8,'cinematographer',NULL,NULL),(27407,453198,9,'editor','film editor',NULL),(27438,5835,10,'cinematographer',NULL,NULL),(27438,1224,1,'actor',NULL,'[\"Maj. Geoffrey Vickers\"]'),(27438,14,2,'actress',NULL,'[\"Elsa Campbell\"]'),(27438,461549,3,'actor',NULL,'[\"Capt. Perry Vickers\"]'),(27438,827261,4,'actor',NULL,'[\"Sir Charles Macefield\"]'),(27438,2031,5,'director',NULL,NULL),(27438,855139,6,'writer','poem \"The Charge of the Light Brigade\"',NULL),(27438,415004,7,'writer','original story',NULL),(27438,500284,8,'writer','screen play',NULL),(27438,70,9,'composer',NULL,NULL),(27545,67676,10,'writer','contributing writer',NULL),(27545,472603,1,'actor',NULL,'[\"Jeffrey Garth\"]'),(27545,390192,2,'actress',NULL,'[\"Countess Marya Zaleska (Dracula\'s Daughter)\"]'),(27545,161451,3,'actress',NULL,'[\"Janet Blake\"]'),(27545,888000,4,'actor',NULL,'[\"Professor Von Helsing\"]'),(27545,385171,5,'director',NULL,NULL),(27545,287124,6,'writer','screenplay',NULL),(27545,49721,7,'writer','story',NULL),(27545,831290,8,'writer','based on a work by',NULL),(27545,6388,9,'writer','suggestion',NULL),(27552,5867,10,'cinematographer',NULL,NULL),(27552,741147,1,'actress',NULL,'[\"Margaret Molyneux\"]'),(27552,800302,2,'actor',NULL,'[\"Irwin Molyneux\"]'),(27552,1922,3,'actor',NULL,'[\"Billy\"]'),(27552,431212,4,'actor',NULL,'[\"Archibald Soper\"]'),(27552,138893,5,'director',NULL,NULL),(27552,167202,6,'writer','novel \"His First Offence\"',NULL),(27552,699535,7,'writer','written by',NULL),(27552,180399,8,'producer','producer',NULL),(27552,6144,9,'composer',NULL,NULL),(27562,590361,10,'writer','contributor to treatment',NULL),(27562,113873,1,'actor',NULL,'[\"Alexander Botts\"]'),(27562,871403,2,'actress',NULL,'[\"Mabel Johnson\"]'),(27562,452128,3,'actor',NULL,'[\"Sam Johnson\"]'),(27562,285264,4,'actor',NULL,'[\"Emmet McManus\"]'),(27562,258015,5,'director',NULL,NULL),(27562,531335,6,'writer','screen play',NULL),(27562,871166,7,'writer','screen play',NULL),(27562,191897,8,'writer','screen play',NULL),(27562,881485,9,'writer','from the stories by',NULL),(27652,5853,10,'cinematographer',NULL,NULL),(27652,796662,1,'actress',NULL,'[\"Katherine Grant\"]'),(27652,75,2,'actor',NULL,'[\"Joe Wilson\"]'),(27652,8496,3,'actor',NULL,'[\"District Attorney\"]'),(27652,127677,4,'actor',NULL,'[\"Kirby Dawson\"]'),(27652,485,5,'director',NULL,NULL),(27652,179993,6,'writer','screen play',NULL),(27652,469915,7,'writer','story',NULL),(27652,581,8,'producer','producer',NULL),(27652,77,9,'composer',NULL,NULL),(27698,5719,10,'cinematographer',NULL,NULL),(27698,1635,1,'actor',NULL,'[\"Florenz Ziegfeld Jr.\"]'),(27698,1485,2,'actress',NULL,'[\"Billie Burke\"]'),(27698,707023,3,'actress',NULL,'[\"Anna Held\"]'),(27698,604656,4,'actor',NULL,'[\"Billings\"]'),(27698,502752,5,'director',NULL,NULL),(27698,570305,6,'writer','screenplay',NULL),(27698,834898,7,'producer','producer',NULL),(27698,5706,8,'cinematographer',NULL,NULL),(27698,5713,9,'cinematographer',NULL,NULL),(27752,1511282,10,'editor',NULL,NULL),(27752,407329,1,'actress',NULL,'[\"Tsune Nonomiya (O-Tsune)\"]'),(27752,385443,2,'actor',NULL,'[\"Ryosuke Nonomiya\"]'),(27752,370574,3,'actor',NULL,'[\"Ryosuke Nonomiya, as child\"]'),(27752,875208,4,'actress',NULL,'[\"Sugiko\"]'),(27752,654868,5,'director',NULL,NULL),(27752,407456,6,'writer','adaptation',NULL),(27752,33163,7,'writer','adaptation',NULL),(27752,411881,8,'composer',NULL,NULL),(27752,837499,9,'cinematographer',NULL,NULL),(27977,305087,10,'actor',NULL,'[\"President of the Electro Steel Corp.\"]'),(27977,122,1,'actor',NULL,'[\"A Factory Worker\"]'),(27977,2104,2,'actress',NULL,'[\"A Gamin\"]'),(27977,74788,3,'actor',NULL,'[\"Cafe Proprietor\"]'),(27977,761866,4,'actor',NULL,'[\"Big Bill\"]'),(27977,5806,5,'cinematographer',NULL,NULL),(27977,5906,6,'cinematographer',NULL,NULL),(27977,174682,7,'actor',NULL,'[\"Mechanic\"]'),(27977,3424,8,'actor',NULL,'[\"Burglar\"]'),(27977,90008,9,'actor',NULL,'[\"Gamin\'s Father\"]'),(27996,241523,10,'actor',NULL,'[\"John Cedar\"]'),(27996,11,1,'actor',NULL,'[\"Longfellow Deeds\"]'),(27996,795,2,'actress',NULL,'[\"Babe Bennett\"]'),(27996,51628,3,'actor',NULL,'[\"MacWade\"]'),(27996,822034,4,'actor',NULL,'[\"Cornelius Cobb\"]'),(27996,1008,5,'director',NULL,NULL),(27996,728307,6,'writer','screen play',NULL),(27996,445502,7,'writer','story',NULL),(27996,907900,8,'cinematographer',NULL,NULL),(27996,369879,9,'editor','film editor',NULL),(28000,715669,10,'editor',NULL,NULL),(28000,587534,1,'actor',NULL,'[\"Bill Holt\"]'),(28000,912115,2,'actress',NULL,'[\"Jane Maxwell\"]'),(28000,12441,3,'actress',NULL,'[\"Muriel Randel\"]'),(28000,535006,4,'actor',NULL,'[\"Gus Colleti\"]'),(28000,833965,5,'director',NULL,NULL),(28000,513644,6,'writer','novel \"Murder at Glen Athol\"',NULL),(28000,469166,7,'writer','adaptation',NULL),(28000,169605,8,'producer','producer',NULL),(28000,27115,9,'cinematographer',NULL,NULL),(28010,5898,10,'cinematographer',NULL,NULL),(28010,1635,1,'actor',NULL,'[\"Godfrey\"]'),(28010,1479,2,'actress',NULL,'[\"Irene Bullock\"]'),(28010,103567,3,'actress',NULL,'[\"Angelica Bullock\"]'),(28010,665850,4,'actress',NULL,'[\"Cornelia Bullock\"]'),(28010,478441,5,'director',NULL,NULL),(28010,753452,6,'writer','screen play',NULL),(28010,368719,7,'writer','screen play',NULL),(28010,15399,8,'writer','contributing writer',NULL),(28010,696190,9,'writer','contributing writer',NULL),(28021,847066,10,'composer',NULL,NULL),(28021,945222,1,'actress',NULL,'[\"Ayako Murai\"]'),(28021,880861,2,'actress',NULL,'[\"Sumiko Asai\"]'),(28021,645825,3,'actress',NULL,'[\"Sachiko Murai\"]'),(28021,2612548,4,'actress',NULL,'[\"Sadako Yokoo\"]'),(28021,3226,5,'director',NULL,NULL),(28021,297884,6,'writer','dialogue',NULL),(28021,645432,7,'writer','story \"Mieko\"',NULL),(28021,406808,8,'writer','screenplay',NULL),(28021,619211,9,'producer','producer',NULL),(28092,685876,10,'cinematographer',NULL,NULL),(28092,1078,1,'actor',NULL,'[\"Larry Poole\"]'),(28092,263004,2,'actress',NULL,'[\"Susan Sprague\"]'),(28092,271515,3,'actress',NULL,'[\"Patsy Smith\"]'),(28092,1918,4,'actor',NULL,'[\"Henry\"]'),(28092,572851,5,'director',NULL,NULL),(28092,601443,6,'writer','novel \"The Peacock Feather\"',NULL),(28092,710299,7,'writer','story',NULL),(28092,842485,8,'writer','screenplay',NULL),(28092,169355,9,'producer','producer',NULL),(28096,548929,10,'editor','film editor',NULL),(28096,1366,1,'actor',NULL,'[\"Alan Squier\"]'),(28096,7,2,'actor',NULL,'[\"Duke Mantee\"]'),(28096,12,3,'actress',NULL,'[\"Gabrielle Maple\"]'),(28096,864931,4,'actress',NULL,'[\"Mrs. Chisholm\"]'),(28096,562845,5,'director',NULL,NULL),(28096,448981,6,'writer','screen play',NULL),(28096,202681,7,'writer','screen play',NULL),(28096,792845,8,'writer','play',NULL),(28096,5835,9,'cinematographer',NULL,NULL),(28174,81841,10,'editor',NULL,NULL),(28174,831838,1,'actress',NULL,'[\"Claire Duval\"]'),(28174,415591,2,'actor',NULL,'[\"Armand Louque\"]'),(28174,195460,3,'actor',NULL,'[\"General Mazovia\"]'),(28174,634386,4,'actor',NULL,'[\"Clifford Grayson\"]'),(28174,356931,5,'director',NULL,NULL),(28174,383304,6,'writer',NULL,NULL),(28174,516121,7,'writer',NULL,NULL),(28174,356922,8,'producer','producer',NULL),(28174,553339,9,'cinematographer','director of photography',NULL),(28203,4290,10,'editor',NULL,NULL),(28203,790454,1,'actress',NULL,'[\"Juliet - Daughter to Capulet\"]'),(28203,1366,2,'actor',NULL,'[\"Romeo - Son to Montague\"]'),(28203,858,3,'actor',NULL,'[\"Mercutio - Kinsman to the Prince and Friend to Romeo\"]'),(28203,853604,4,'actor',NULL,'[\"Escalus - Prince of Verona\"]'),(28203,2030,5,'director',NULL,NULL),(28203,636,6,'writer','play',NULL),(28203,421255,7,'writer','adaptation',NULL),(28203,6307,8,'composer',NULL,NULL),(28203,200125,9,'cinematographer',NULL,NULL),(28212,256532,10,'writer','additional dialogue',NULL),(28212,796662,1,'actress',NULL,'[\"Mrs. Verloc\"]'),(28212,393028,2,'actor',NULL,'[\"Karl Verloc--Her Husband\"]'),(28212,856469,3,'actor',NULL,'[\"Stevie\"]'),(28212,517058,4,'actor',NULL,'[\"Detective Sgt. Ted Spencer\"]'),(28212,33,5,'director',NULL,NULL),(28212,175676,6,'writer','novel \"The Secret Agent\"',NULL),(28212,71657,7,'writer','screen play',NULL),(28212,67308,8,'writer','dialogue',NULL),(28212,801026,9,'writer','dialogue',NULL),(28216,405156,10,'producer','producer',NULL),(28216,22,1,'actor',NULL,'[\"Blackie Norton\"]'),(28216,531776,2,'actress',NULL,'[\"Mary Blake\"]'),(28216,75,3,'actor',NULL,'[\"Father Tim Mullin\"]'),(28216,392442,4,'actor',NULL,'[\"Jack Burley\"]'),(28216,886754,5,'director',NULL,NULL),(28216,2616,6,'writer','screen play',NULL),(28216,394267,7,'writer','from the story by',NULL),(28216,542534,8,'writer',NULL,NULL),(28216,256221,9,'producer','producer',NULL),(28231,489679,10,'writer','additional dialogue',NULL),(28231,24,1,'actor',NULL,'[\"Richard Ashenden\",\"Edgar Brodie\"]'),(28231,140914,2,'actress',NULL,'[\"Elsa Carrington\"]'),(28231,1870,3,'actor',NULL,'[\"Robert Marvin\"]'),(28231,48,4,'actor',NULL,'[\"The General\"]'),(28231,33,5,'director',NULL,NULL),(28231,228776,6,'writer','play',NULL),(28231,560857,7,'writer','novel \"Ashenden\"',NULL),(28231,71657,8,'writer','screenplay',NULL),(28231,67308,9,'writer','dialogue',NULL),(28333,416861,10,'writer','contributing writer',NULL),(28333,1,1,'actor',NULL,'[\"Lucky Garnett\"]'),(28333,1677,2,'actress',NULL,'[\"Penny Carroll\"]'),(28333,602005,3,'actor',NULL,'[\"Pop Cardetti\"]'),(28333,110813,4,'actress',NULL,'[\"Mabel Anderson\"]'),(28333,828419,5,'director',NULL,NULL),(28333,512231,6,'writer','screen play',NULL),(28333,778818,7,'writer','screen play',NULL),(28333,312510,8,'writer','from a story by',NULL),(28333,391750,9,'writer','contributing writer',NULL),(28355,728230,10,'actress',NULL,'[\"Aunt Mary\"]'),(28355,2050,1,'actress',NULL,'[\"Theodora Lynn\"]'),(28355,2048,2,'actor',NULL,'[\"Michael Grant\"]'),(28355,593775,3,'actor',NULL,'[\"Jed Waterbury\"]'),(28355,356159,4,'actor',NULL,'[\"Arthur Stevenson\"]'),(28355,92915,5,'director',NULL,NULL),(28355,118227,6,'writer','screen play',NULL),(28355,565242,7,'writer','from an original story by',NULL),(28355,907900,8,'cinematographer',NULL,NULL),(28355,583301,9,'editor','film editor',NULL),(28356,394244,1,'actress',NULL,'[\"Martha\"]'),(28356,643353,2,'actress',NULL,'[\"Karen\"]'),(28356,566948,3,'actor',NULL,'[\"Dr. Cardin\"]'),(28356,234692,4,'actress',NULL,'[\"Mrs. Mortar\"]'),(28356,943758,5,'director',NULL,NULL),(28356,375484,6,'writer','original story and screen play',NULL),(28356,326418,7,'producer','producer',NULL),(28356,5904,8,'cinematographer',NULL,NULL),(28356,541721,9,'editor',NULL,NULL),(28505,834898,10,'producer','producer',NULL),(28505,22,1,'actor',NULL,'[\"Van Stanhope\"]'),(28505,1318,2,'actress',NULL,'[\"Helen (Whitey) Wilson\"]'),(28505,1485,3,'actress',NULL,'[\"Linda Stanhope\"]'),(28505,733480,4,'actress',NULL,'[\"Mimi Stanhope\"]'),(28505,113284,5,'director',NULL,NULL),(28505,469915,6,'writer','screen play',NULL),(28505,536941,7,'writer','screen play',NULL),(28505,49903,8,'writer','from the story by: Cosmopolitan Magazine',NULL),(28505,2317,9,'writer','screenplay',NULL),(28597,163617,10,'editor',NULL,NULL),(28597,2050,1,'actress',NULL,'[\"Lucy Warriner\"]'),(28597,26,2,'actor',NULL,'[\"Jerry Warriner\"]'),(28597,897,3,'actor',NULL,'[\"Daniel Leeson\"]'),(28597,195422,4,'actor',NULL,'[\"Armand Duvalle\"]'),(28597,564970,5,'director',NULL,NULL),(28597,217568,6,'writer','screen play',NULL),(28597,725017,7,'writer','based on a play by',NULL),(28597,118227,8,'writer',NULL,NULL),(28597,907900,9,'cinematographer',NULL,NULL),(28683,933133,10,'writer',NULL,NULL),(28683,1256,1,'actress',NULL,'[\"Marguerite Gautier\"]'),(28683,1791,2,'actor',NULL,'[\"Armand Duval\"]'),(28683,859,3,'actor',NULL,'[\"Monsieur Duval\"]'),(28683,19922,4,'actress',NULL,'[\"Nichette\"]'),(28683,2030,5,'director',NULL,NULL),(28683,15399,6,'writer','screen play',NULL),(28683,547966,7,'writer','screen play',NULL),(28683,385264,8,'writer','screen play',NULL),(28683,241414,9,'writer','play',NULL),(28691,453311,10,'writer',NULL,NULL),(28691,75,1,'actor',NULL,'[\"Manuel\"]'),(28691,861,2,'actor',NULL,'[\"Harvey\"]'),(28691,859,3,'actor',NULL,'[\"Disko\"]'),(28691,2048,4,'actor',NULL,'[\"Mr. Cheyne\"]'),(28691,281808,5,'director',NULL,NULL),(28691,456017,6,'writer','novel',NULL),(28691,536941,7,'writer','screen play by',NULL),(28691,175091,8,'writer','screen play by',NULL),(28691,886861,9,'writer','screen play by',NULL),(28739,388755,10,'writer',NULL,NULL),(28739,1256,1,'actress',NULL,'[\"Countess Marie Walewska\"]'),(28739,964,2,'actor',NULL,'[\"Emperor Napoleon Bonaparte\"]'),(28739,654239,3,'actor',NULL,'[\"Tallyrand\"]'),(28739,550701,4,'actor',NULL,'[\"Capt. d\'Ornano\"]'),(28739,113284,5,'director',NULL,NULL),(28739,532561,6,'director',NULL,NULL),(28739,309117,7,'writer','novel \"Pani Walewska\"',NULL),(28739,15399,8,'writer','contributing writer',NULL),(28739,67103,9,'writer',NULL,NULL),(28772,330390,10,'writer','original story',NULL),(28772,50,1,'actor',NULL,'[\"Dr. Hugo Z. Hackenbush\"]'),(28772,555597,2,'actor',NULL,'[\"Tony\"]'),(28772,555617,3,'actor',NULL,'[\"Stuffy\"]'),(28772,427452,4,'actor',NULL,'[\"Gil Stewart\"]'),(28772,939992,5,'director',NULL,NULL),(28772,685265,6,'writer','screen play',NULL),(28772,780833,7,'writer','screen play',NULL),(28772,649183,8,'writer','screen play',NULL),(28772,90213,9,'writer','original story',NULL),(29087,466099,10,'producer','producer',NULL),(29087,17,1,'actress',NULL,'[\"Alexandra\"]'),(29087,232196,2,'actor',NULL,'[\"A.J. Fothergill\"]'),(29087,888479,3,'actress',NULL,'[\"Duchess\"]'),(29087,518239,4,'actor',NULL,'[\"Vladinoff\"]'),(29087,275494,5,'director',NULL,NULL),(29087,385264,6,'writer','from the novel by',NULL),(29087,547966,7,'writer','adaptation',NULL),(29087,83742,8,'writer','screen play',NULL),(29087,934497,9,'writer','dialogue & scenario',NULL),(29146,70,10,'composer',NULL,NULL),(29146,612847,1,'actor',NULL,'[\"Emile Zola\"]'),(29146,814216,2,'actress',NULL,'[\"Lucie Dreyfus\"]'),(29146,771584,3,'actor',NULL,'[\"Capt. Alfred Dreyfus\"]'),(29146,390192,4,'actress',NULL,'[\"Alexandrine Zola\"]'),(29146,226189,5,'director',NULL,NULL),(29146,706993,6,'writer','screen play',NULL),(29146,378431,7,'writer','screen play',NULL),(29146,378773,8,'writer','screen play',NULL),(29146,430763,9,'writer','source material \"Zola and His Time\"',NULL),(29162,907900,10,'cinematographer',NULL,NULL),(29162,172903,1,'actor',NULL,'[\"Robert Conway\"]'),(29162,943553,2,'actress',NULL,'[\"Sondra\"]'),(29162,2143,3,'actor',NULL,'[\"Lovett\"]'),(29162,397397,4,'actor',NULL,'[\"George Conway\"]'),(29162,1008,5,'director',NULL,NULL),(29162,728307,6,'writer','screenplay',NULL),(29162,385264,7,'writer','novel',NULL),(29162,118227,8,'writer','contributor to screenplay',NULL),(29162,6323,9,'composer',NULL,NULL),(29192,732209,10,'writer','poem: \"Are You Afraid\"',NULL),(29192,602005,1,'actor',NULL,'[\"Barkley Cooper\"]'),(29192,94135,2,'actress',NULL,'[\"Lucy Cooper\"]'),(29192,47810,3,'actress',NULL,'[\"Anita Cooper\"]'),(29192,593775,4,'actor',NULL,'[\"George Cooper\"]'),(29192,564970,5,'director',NULL,NULL),(29192,217568,6,'writer','screen play',NULL),(29192,492854,7,'writer','based on a novel by',NULL),(29192,495259,8,'writer','play',NULL),(29192,495270,9,'writer','play',NULL),(29207,650553,10,'writer','screen play',NULL),(29207,703600,1,'actor',NULL,'[\"Ellery Queen\"]'),(29207,377766,2,'actress',NULL,'[\"Josephine Temple\"]'),(29207,478996,3,'actress',NULL,'[\"Martha Kirk\"]'),(29207,98424,4,'actor',NULL,'[\"Inspector Queen\"]'),(29207,823864,5,'director',NULL,NULL),(29207,200366,6,'writer','story, \'The Chinese Orange Mystery\'',NULL),(29207,497804,7,'writer','story, \'The Chinese Orange Mystery\'',NULL),(29207,488295,8,'writer','screen play',NULL),(29207,853042,9,'writer','screen play',NULL),(29217,55604,10,'cinematographer',NULL,NULL),(29217,12,1,'actress',NULL,'[\"Mary\"]'),(29217,7,2,'actor',NULL,'[\"David Graham\"]'),(29217,485439,3,'actress',NULL,'[\"Gabby\"]'),(29217,422436,4,'actress',NULL,'[\"Emmy Lou\"]'),(29217,45800,5,'director',NULL,NULL),(29217,2031,6,'director',NULL,NULL),(29217,744035,7,'writer','original screen play',NULL),(29217,277874,8,'writer','original screen play',NULL),(29217,589316,9,'writer','additional dialogue',NULL),(29322,366454,10,'writer','contributing writer',NULL),(29322,1479,1,'actress',NULL,'[\"Hazel Flagg\"]'),(29322,545298,2,'actor',NULL,'[\"Wally Cook\"]'),(29322,935415,3,'actor',NULL,'[\"Dr. Enoch Downer\"]'),(29322,175369,4,'actor',NULL,'[\"Oliver Stone\"]'),(29322,920074,5,'director',NULL,NULL),(29322,372942,6,'writer','screen play',NULL),(29322,834077,7,'writer','suggested by a story by',NULL),(29322,6388,8,'writer','contributing writer',NULL),(29322,308604,9,'writer','contributing writer',NULL),(29377,5713,10,'cinematographer',NULL,NULL),(29377,22,1,'actor',NULL,'[\"Parnell\"]'),(29377,1485,2,'actress',NULL,'[\"Katie\"]'),(29377,646829,3,'actress',NULL,'[\"Aunt Ben\"]'),(29377,350324,4,'actor',NULL,'[\"Campbell\"]'),(29377,821472,5,'director',NULL,NULL),(29377,886668,6,'writer','screen play',NULL),(29377,67103,7,'writer','screen play',NULL),(29377,770297,8,'writer','from the play by',NULL),(29377,2197,9,'composer',NULL,NULL),(29442,740537,10,'writer','adaptation',NULL),(29442,172903,1,'actor',NULL,'[\"Major Rudolf Rassendyll\",\"The Prisoner of Zenda\"]'),(29442,140914,2,'actress',NULL,'[\"Princess Flavia\"]'),(29442,807580,3,'actor',NULL,'[\"Colonel Zapt\"]'),(29442,557339,4,'actor',NULL,'[\"Black Michael\"]'),(29442,188669,5,'director',NULL,NULL),(29442,886754,6,'director',NULL,NULL),(29442,393949,7,'writer','celebrated novel',NULL),(29442,49721,8,'writer','screen play',NULL),(29442,741358,9,'writer','dramatization',NULL),(29453,947910,10,'composer',NULL,NULL),(29453,300064,1,'actor',NULL,'[\"Pépé le Moko\"]'),(29453,300388,2,'actor',NULL,'[\"Carlos\"]'),(29453,264692,3,'actor',NULL,'[\"Le Grand Père\"]'),(29453,153457,4,'actor',NULL,'[\"Régis\"]'),(29453,245213,5,'director',NULL,NULL),(29453,38837,6,'writer','novel',NULL),(29453,176008,7,'writer','adaptation',NULL),(29453,419986,8,'writer','dialogue',NULL),(29453,780020,9,'composer',NULL,NULL),(29546,118214,10,'writer','based on a story by',NULL),(29546,1,1,'actor',NULL,'[\"Peter P. Peters aka Petrov\"]'),(29546,1677,2,'actress',NULL,'[\"Linda Keene\"]'),(29546,2143,3,'actor',NULL,'[\"Jeffrey Baird\"]'),(29546,89314,4,'actor',NULL,'[\"Cecil Flintridge\"]'),(29546,762263,5,'director',NULL,NULL),(29546,778818,6,'writer','screen play',NULL),(29546,656039,7,'writer','screen play',NULL),(29546,938439,8,'writer','adaptation',NULL),(29546,517216,9,'writer','based on a story by',NULL),(29565,90058,10,'cinematographer',NULL,NULL),(29565,939454,1,'actor',NULL,'[\"Sherlock Holmes\"]'),(29565,281686,2,'actor',NULL,'[\"Dr. Watson\"]'),(29565,362361,3,'actor',NULL,'[\"Moriarty\"]'),(29565,877325,4,'actor',NULL,'[\"Inspector Lestrade\"]'),(29565,72872,5,'director',NULL,NULL),(29565,236279,6,'writer','story \"Silver Blaze\"',NULL),(29565,534274,7,'writer',NULL,NULL),(29565,575197,8,'writer','adaptation',NULL),(29565,353414,9,'producer','producer',NULL),(29583,789313,10,'director','sequence director',NULL),(29583,143314,1,'actress',NULL,'[\"Snow White\"]'),(29583,830968,2,'actor',NULL,'[\"Prince\"]'),(29583,479164,3,'actress',NULL,'[\"Queen\",\"Witch\"]'),(29583,41165,4,'actor',NULL,'[\"Doc\"]'),(29583,183183,5,'director','sequence director',NULL),(29583,359457,6,'director','supervising director',NULL),(29583,414144,7,'director','sequence director',NULL),(29583,604392,8,'director','sequence director',NULL),(29583,668998,9,'director','sequence director',NULL),(29604,491076,10,'writer','contributing writer',NULL),(29604,31,1,'actress',NULL,'[\"Terry Randall\"]'),(29604,1677,2,'actress',NULL,'[\"Jean Maitland\"]'),(29604,579663,3,'actor',NULL,'[\"Anthony Powell\"]'),(29604,665850,4,'actress',NULL,'[\"Linda Shaw\"]'),(29604,478441,5,'director',NULL,NULL),(29604,753452,6,'writer','screen play',NULL),(29604,892044,7,'writer','screen play',NULL),(29604,272209,8,'writer','from the play by',NULL),(29604,442151,9,'writer','from the play by',NULL),(29608,700717,10,'writer','dramatization',NULL),(29608,1766,1,'actress',NULL,'[\"Stella Dallas\"]'),(29608,92900,2,'actor',NULL,'[\"Stephen Dallas\"]'),(29608,794297,3,'actress',NULL,'[\"Laurel Dallas\"]'),(29608,641966,4,'actress',NULL,'[\"Helen Morrison\"]'),(29608,896542,5,'director',NULL,NULL),(29608,556945,6,'writer','screenplay',NULL),(29608,373511,7,'writer','screenplay',NULL),(29608,698989,8,'writer','novel',NULL),(29608,340799,9,'writer','dramatization',NULL),(29682,5661,10,'cinematographer',NULL,NULL),(29682,26,1,'actor',NULL,'[\"George Kerby\"]'),(29682,909,2,'actress',NULL,'[\"Marion Kerby\"]'),(29682,950019,3,'actor',NULL,'[\"Cosmo Topper\"]'),(29682,992,4,'actress',NULL,'[\"Mrs. Topper\"]'),(29682,572851,5,'director',NULL,NULL),(29682,422382,6,'writer','screen play',NULL),(29682,368719,7,'writer','screen play',NULL),(29682,602839,8,'writer','screen play',NULL),(29682,810158,9,'writer','based on the novel by',NULL),(29751,808484,10,'writer','contributor to screen play construction',NULL),(29751,73,1,'actress',NULL,'[\"Priscilla Williams\"]'),(29751,572142,2,'actor',NULL,'[\"Sgt. MacDuff\"]'),(29751,807580,3,'actor',NULL,'[\"Col. Williams\"]'),(29751,485806,4,'actress',NULL,'[\"Joyce Williams\"]'),(29751,406,5,'director',NULL,NULL),(29751,664251,6,'writer','screen play',NULL),(29751,430756,7,'writer','screen play',NULL),(29751,456017,8,'writer','based upon the story by',NULL),(29751,787611,9,'writer','contributor to screen play construction',NULL),(29811,767902,10,'writer','dialogue',NULL),(29811,683345,1,'actress',NULL,'[\"Erica Burgoyne\"]'),(29811,210116,2,'actor',NULL,'[\"Robert Tisdall\"]'),(29811,549385,3,'actor',NULL,'[\"Col. Burgoyne\"]'),(29811,726585,4,'actor',NULL,'[\"Old Will\"]'),(29811,33,5,'director',NULL,NULL),(29811,856758,6,'writer','novel \"A Shilling for Candles\"',NULL),(29811,71657,7,'writer','screen play',NULL),(29811,339326,8,'writer','screen play',NULL),(29811,35613,9,'writer','screen play',NULL),(29843,6157,10,'composer',NULL,NULL),(29843,1224,1,'actor',NULL,'[\"Robin Hood\"]'),(29843,14,2,'actress',NULL,'[\"Maid Marian\"]'),(29843,1651,3,'actor',NULL,'[\"Sir Guy of Gisbourne\"]'),(29843,1647,4,'actor',NULL,'[\"Prince John\"]'),(29843,2031,5,'director',NULL,NULL),(29843,445033,6,'director',NULL,NULL),(29843,706993,7,'writer','original screenplay: based upon ancient Robin Hood legends',NULL),(29843,589316,8,'writer','original screenplay: based upon ancient Robin Hood legends',NULL),(29843,500284,9,'writer','contributor to treatment',NULL),(29870,531269,10,'writer',NULL,NULL),(29870,10,1,'actor',NULL,'[\"Rocky Sullivan\"]'),(29870,2285,2,'actor',NULL,'[\"Jerry Connolly\"]'),(29870,7,3,'actor',NULL,'[\"James Frazier\"]'),(29870,792130,4,'actress',NULL,'[\"Laury Ferguson\"]'),(29870,2031,5,'director',NULL,NULL),(29870,923333,6,'writer','screen play',NULL),(29870,240417,7,'writer','screen play',NULL),(29870,114602,8,'writer','from a story by',NULL),(29870,372942,9,'writer',NULL,NULL),(29929,6128,10,'composer',NULL,NULL),(29929,1055,1,'actress',NULL,'[\"Nicole De Loiselle\"]'),(29929,11,2,'actor',NULL,'[\"Michael Brandon\"]'),(29929,2143,3,'actor',NULL,'[\"The Marquis De Loiselle\"]'),(29929,57,4,'actor',NULL,'[\"Albert De Regnier\"]'),(29929,523932,5,'director',NULL,NULL),(29929,102818,6,'writer','screenplay',NULL),(29929,697,7,'writer','screenplay',NULL),(29929,767878,8,'writer','based on the play by',NULL),(29929,28602,9,'writer','English adaptation',NULL),(29942,175908,10,'producer','producer',NULL),(29942,75,1,'actor',NULL,'[\"Father Flanagan\"]'),(29942,1682,2,'actor',NULL,'[\"Whitey Marsh\"]'),(29942,401434,3,'actor',NULL,'[\"Dave Morris\"]'),(29942,272059,4,'actor',NULL,'[\"Dan Farrow\"]'),(29942,851537,5,'director',NULL,NULL),(29942,576046,6,'writer','screenplay',NULL),(29942,770196,7,'writer','screenplay',NULL),(29942,341178,8,'writer','original story',NULL),(29942,591774,9,'writer','contributor to screenplay construction',NULL),(29947,31,1,'actress',NULL,'[\"Susan Vance\"]'),(29947,26,2,'actor',NULL,'[\"David Huxley\"]'),(29947,749476,3,'actor',NULL,'[\"Major Applegate\"]'),(29947,146185,4,'actor',NULL,'[\"Slocum\"]'),(29947,1328,5,'director',NULL,NULL),(29947,629580,6,'writer','screen play',NULL),(29947,928444,7,'writer','screen play',NULL),(29947,5797,8,'cinematographer',NULL,NULL),(29947,387000,9,'editor',NULL,NULL),(29971,14703,10,'writer','based on an original idea by',NULL),(29971,1,1,'actor',NULL,'[\"Tony Flagg\"]'),(29971,1677,2,'actress',NULL,'[\"Amanda Cooper\"]'),(29971,897,3,'actor',NULL,'[\"Stephen Arden\"]'),(29971,311240,4,'actress',NULL,'[\"Aunt Cora\"]'),(29971,762263,5,'director',NULL,NULL),(29971,778818,6,'writer','screen play',NULL),(29971,656039,7,'writer','screen play',NULL),(29971,629580,8,'writer','story and adaptation',NULL),(29971,928444,9,'writer','story and adaptation',NULL),(30044,70,10,'composer',NULL,NULL),(30044,1224,1,'actor',NULL,'[\"Courtney\"]'),(30044,1651,2,'actor',NULL,'[\"Major Brand\"]'),(30044,57,3,'actor',NULL,'[\"Scott\"]'),(30044,187981,4,'actor',NULL,'[\"Phipps\"]'),(30044,332539,5,'director',NULL,NULL),(30044,589316,6,'writer','screen play',NULL),(30044,869371,7,'writer','screen play',NULL),(30044,766850,8,'writer','from an original story by',NULL),(30044,1328,9,'writer','story',NULL),(30127,706926,1,'actor',NULL,'[\"Aimable Castanier\"]'),(30127,496185,2,'actress',NULL,'[\"Aurélie Castanier\"]'),(30127,153457,3,'actor',NULL,'[\"Le marquis Castan de Venelles\"]'),(30127,885137,4,'actor',NULL,'[\"Le curé\"]'),(30127,656528,5,'director',NULL,NULL),(30127,320274,6,'writer','novella \"Jean le Bleu\"',NULL),(30127,780020,7,'composer',NULL,NULL),(30127,72301,8,'cinematographer',NULL,NULL),(30127,873306,9,'editor',NULL,NULL),(30149,935507,10,'writer','contributor to treatment',NULL),(30149,1647,1,'actor',NULL,'[\"Adam Lemp\"]'),(30149,2092,2,'actor',NULL,'[\"Mickey Borden\"]'),(30149,528705,3,'actor',NULL,'[\"Felix Deitz\"]'),(30149,570451,4,'actor',NULL,'[\"Ben Crowley\"]'),(30149,2031,5,'director',NULL,NULL),(30149,258493,6,'writer','screen play',NULL),(30149,168829,7,'writer','screen play',NULL),(30149,403595,8,'writer','from the Cosmopolitan Magazine story by',NULL),(30149,453885,9,'writer','contributing writer',NULL),(30241,5832,10,'cinematographer',NULL,NULL),(30241,31,1,'actress',NULL,'[\"Linda Seton\"]'),(30241,26,2,'actor',NULL,'[\"Johnny Case\"]'),(30241,461615,3,'actress',NULL,'[\"Julia Seton\"]'),(30241,817,4,'actor',NULL,'[\"Ned Seton\"]'),(30241,2030,5,'director',NULL,NULL),(30241,829330,6,'writer','screenplay',NULL),(30241,118227,7,'writer','screenplay',NULL),(30241,58129,8,'writer','from the play by',NULL),(30241,728305,9,'producer','producer',NULL),(30287,118758,10,'writer','contributor to screenplay construction',NULL),(30287,12,1,'actress',NULL,'[\"Julie Marsden\"]'),(30287,20,2,'actor',NULL,'[\"Preston Dillard\"]'),(30287,107575,3,'actor',NULL,'[\"Buck Cantrell\"]'),(30287,512267,4,'actress',NULL,'[\"Amy Bradford Dillard\"]'),(30287,943758,5,'director',NULL,NULL),(30287,728002,6,'writer','screen play',NULL),(30287,277874,7,'writer','screen play',NULL),(30287,1379,8,'writer','screen play',NULL),(30287,205244,9,'writer','from the play by',NULL),(30341,213164,10,'editor',NULL,NULL),(30341,516994,1,'actress',NULL,'[\"Iris Matilda Henderson\"]'),(30341,714878,2,'actor',NULL,'[\"Gilbert Redman\"]'),(30341,510134,3,'actor',NULL,'[\"Dr. Egon Hartz\"]'),(30341,926599,4,'actress',NULL,'[\"Miss Froy\"]'),(30341,33,5,'director',NULL,NULL),(30341,924781,6,'writer','based upon the story by: \"The Wheel Spins\"',NULL),(30341,319148,7,'writer','screen play',NULL),(30341,490950,8,'writer','screen play',NULL),(30341,185055,9,'cinematographer',NULL,NULL),(30396,598267,10,'writer','contributing writer',NULL),(30396,1766,1,'actress',NULL,'[\"Melsa Manton\"]'),(30396,20,2,'actor',NULL,'[\"Peter Ames\"]'),(30396,505249,3,'actor',NULL,'[\"Lieutenant Brent\"]'),(30396,580263,4,'actress',NULL,'[\"Helen Frayne\"]'),(30396,419265,5,'director',NULL,NULL),(30396,258525,6,'writer','screen play',NULL),(30396,172812,7,'writer','story',NULL),(30396,277943,8,'writer','contributing writer',NULL),(30396,462111,9,'writer','contributing writer',NULL),(30473,515989,10,'actor',NULL,'[\"Devlin\"]'),(30473,472,1,'actor',NULL,'[\"James Lee Wong\"]'),(30473,936728,2,'actor',NULL,'[\"Police Capt. Sam Street\"]'),(30473,421218,3,'actress',NULL,'[\"Myra Ross\"]'),(30473,107574,4,'actress',NULL,'[\"Olga Petroff\"]'),(30473,631438,5,'director',NULL,NULL),(30473,104355,6,'writer','screen play',NULL),(30473,928840,7,'writer','based on: the \"James Lee Wong\" series in Collier\'s Magazine written by',NULL),(30473,627060,8,'cinematographer','director of photography',NULL),(30473,774465,9,'editor','film editor',NULL),(30755,309974,10,'cinematographer',NULL,NULL),(30755,1224,1,'actor',NULL,'[\"Frank Medlin\"]'),(30755,12,2,'actress',NULL,'[\"Louise Elliott\"]'),(30755,521937,3,'actress',NULL,'[\"Helen Elliott\"]'),(30755,402842,4,'actor',NULL,'[\"William Benson\"]'),(30755,514822,5,'director',NULL,NULL),(30755,471341,6,'writer','screen play',NULL),(30755,109532,7,'writer','from the novel by',NULL),(30755,258493,8,'writer','contributor to screenplay construction',NULL),(30755,70,9,'composer',NULL,NULL),(31022,5872,10,'cinematographer','director of photography',NULL),(31022,1651,1,'actor',NULL,'[\"Sherlock Holmes\"]'),(31022,115558,2,'actor',NULL,'[\"Dr. Watson\"]'),(31022,526946,3,'actress',NULL,'[\"Ann Brandon\"]'),(31022,550701,4,'actor',NULL,'[\"Jerrold Hunter\"]'),(31022,921288,5,'director',NULL,NULL),(31022,89637,6,'writer','screenplay',NULL),(31022,237033,7,'writer','screenplay',NULL),(31022,319069,8,'writer','play \"Sherlock Holmes\"',NULL),(31022,236279,9,'writer','characters',NULL),(31060,809079,10,'cinematographer','director of photography',NULL),(31060,50,1,'actor',NULL,'[\"Attorney Loophole\"]'),(31060,555597,2,'actor',NULL,'[\"Antonio\"]'),(31060,555617,3,'actor',NULL,'[\"\'Punchy\'\"]'),(31060,48653,4,'actor',NULL,'[\"Jeff Wilson\"]'),(31060,125636,5,'director',NULL,NULL),(31060,106505,6,'writer','screen play',NULL),(31060,36,7,'writer',NULL,NULL),(31060,821716,8,'writer',NULL,NULL),(31060,503777,9,'producer','producer',NULL),(31066,2616,10,'writer',NULL,NULL),(31066,1682,1,'actor',NULL,'[\"Mickey Moran\"]'),(31066,23,2,'actress',NULL,'[\"Patsy Barton\"]'),(31066,935415,3,'actor',NULL,'[\"Joe Moran\"]'),(31066,452128,4,'actor',NULL,'[\"Judge Black\"]'),(31066,923,5,'director',NULL,NULL),(31066,569650,6,'writer','screen play',NULL),(31066,887858,7,'writer','screen play',NULL),(31066,6256,8,'writer','based on the play by',NULL),(31066,366414,9,'writer','based on the play by',NULL),(31210,5735,10,'cinematographer',NULL,NULL),(31210,12,1,'actress',NULL,'[\"Judith Traherne\"]'),(31210,107575,2,'actor',NULL,'[\"Dr. Frederick Steele\"]'),(31210,7,3,'actor',NULL,'[\"Michael O\'Leary\"]'),(31210,280242,4,'actress',NULL,'[\"Ann King\"]'),(31210,332539,5,'director',NULL,NULL),(31210,732452,6,'writer','screen play',NULL),(31210,108108,7,'writer','from the play by',NULL),(31210,88602,8,'writer','from the play by',NULL),(31210,70,9,'composer',NULL,NULL),(31225,664990,10,'producer','producer',NULL),(31225,17,1,'actress',NULL,'[\"Frenchy\"]'),(31225,71,2,'actor',NULL,'[\"Tom Destry Jr.\"]'),(31225,41681,3,'actor',NULL,'[\"Boris Callahan\"]'),(31225,935415,4,'actor',NULL,'[\"Washington Dimsdale\"]'),(31225,550892,5,'director',NULL,NULL),(31225,413519,6,'writer','screen play',NULL),(31225,700717,7,'writer','screen play',NULL),(31225,616730,8,'writer','screen play',NULL),(31225,62738,9,'writer','suggested by novel \"Destry Rides Again\"',NULL),(31235,570451,10,'actor',NULL,'[\"Joe Clemens\"]'),(31235,1224,1,'actor',NULL,'[\"Wade Hatton\"]'),(31235,14,2,'actress',NULL,'[\"Abbie Irving\"]'),(31235,792130,3,'actress',NULL,'[\"Ruby Gilman\"]'),(31235,127677,4,'actor',NULL,'[\"Jeff Surrett\"]'),(31235,2031,5,'director',NULL,NULL),(31235,118758,6,'writer','original screen play',NULL),(31235,70,7,'composer',NULL,NULL),(31235,5835,8,'cinematographer',NULL,NULL),(31235,25497,9,'editor','film editor',NULL),(31252,580648,10,'writer','contributor',NULL),(31252,1055,1,'actress',NULL,'[\"Lana (Magdelana)\"]'),(31252,20,2,'actor',NULL,'[\"Gilbert Martin\"]'),(31252,646829,3,'actress',NULL,'[\"Mrs. Mc Klennar\"]'),(31252,172287,4,'actor',NULL,'[\"Christian Reall\"]'),(31252,406,5,'director',NULL,NULL),(31252,873707,6,'writer','screen play',NULL),(31252,397022,7,'writer','screen play',NULL),(31252,249526,8,'writer','based on the novel by',NULL),(31252,1203,9,'writer','contributor',NULL),(31322,607448,10,'producer','producer',NULL),(31322,491048,1,'actor',NULL,'[\"Stan\"]'),(31322,1316,2,'actor',NULL,'[\"Ollie\"]'),(31322,662335,3,'actress',NULL,'[\"Georgette\"]'),(31322,306786,4,'actor',NULL,'[\"Francois\"]'),(31322,840042,5,'director',NULL,NULL),(31322,817809,6,'writer','original story',NULL),(31322,736778,7,'writer','original story',NULL),(31322,771622,8,'writer','original story',NULL),(31322,3377,9,'writer','original story',NULL),(31359,5941,10,'composer',NULL,NULL),(31359,906932,1,'actor',NULL,'[\"Paul Mallen\"]'),(31359,944087,2,'actress',NULL,'[\"Bella Mallen\"]'),(31359,678693,3,'actor',NULL,'[\"Rough\"]'),(31359,179451,4,'actress',NULL,'[\"Nancy\"]'),(31359,225555,5,'director',NULL,NULL),(31359,358096,6,'writer','from the stage play by',NULL),(31359,712653,7,'writer','screenplay',NULL),(31359,92658,8,'writer','screenplay',NULL),(31359,179825,9,'producer','producer',NULL),(31381,308177,10,'writer','contributing writer',NULL),(31381,22,1,'actor',NULL,'[\"Rhett Butler - Visitor from Charleston\"]'),(31381,46,2,'actress',NULL,'[\"Scarlett O\'Hara - Their Daughter\"]'),(31381,593775,3,'actor',NULL,'[\"Gerald O\'Hara\"]'),(31381,641966,4,'actress',NULL,'[\"Ellen O\'Hara - Gerald\'s Wife\"]'),(31381,281808,5,'director',NULL,NULL),(31381,2030,6,'director',NULL,NULL),(31381,939992,7,'director',NULL,NULL),(31381,593565,8,'writer','story of the Old South \"Gone with the Wind\"',NULL),(31381,397608,9,'writer','screen play by',NULL),(31385,385264,10,'writer','book \"Goodbye, Mr. Chips!\"',NULL),(31385,232196,1,'actor',NULL,'[\"Mr. Chips\"]'),(31385,2093,2,'actress',NULL,'[\"Katherine\"]'),(31385,452953,3,'actor',NULL,'[\"John Colley\",\"Peter Colley I\",\"Peter Colley II\"]'),(31385,590055,4,'actor',NULL,'[\"Peter Colley (as a Young Man)\"]'),(31385,939992,5,'director',NULL,NULL),(31385,291548,6,'director',NULL,NULL),(31385,792670,7,'writer','screen play',NULL),(31385,921995,8,'writer','screen play',NULL),(31385,556178,9,'writer','screen play',NULL),(31387,573865,10,'editor',NULL,NULL),(31387,1360648,1,'actor',NULL,'[\"Defective Detectives\"]'),(31387,728875,2,'actor',NULL,'[\"Garrity\"]'),(31387,728871,3,'actor',NULL,'[\"Harrigan\"]'),(31387,728867,4,'actor',NULL,'[\"Mulligan\"]'),(31387,245385,5,'director',NULL,NULL),(31387,817809,6,'writer','play',NULL),(31387,416861,7,'writer','screenplay',NULL),(31387,799015,8,'writer','screenplay',NULL),(31387,5676,9,'cinematographer',NULL,NULL),(31397,396043,10,'director',NULL,NULL),(31397,236756,1,'actress',NULL,'[\"Princess Glory\"]'),(31397,743595,2,'actor',NULL,'[\"Prince David\"]'),(31397,173416,3,'actor',NULL,'[\"Gabby\"]'),(31397,397175,4,'actor',NULL,'[\"Prince David\"]'),(31397,281487,5,'director',NULL,NULL),(31397,101466,6,'director',NULL,NULL),(31397,130725,7,'director',NULL,NULL),(31397,186276,8,'director',NULL,NULL),(31397,377431,9,'director',NULL,NULL),(31398,456017,10,'writer','poem \"Gunga Din\"',NULL),(31398,26,1,'actor',NULL,'[\"Sergeant Archibald Cutter\"]'),(31398,21,2,'actress',NULL,'[\"Emmy\"]'),(31398,572142,3,'actor',NULL,'[\"Sergeant MacChesney\"]'),(31398,1195,4,'actor',NULL,'[\"Sergeant Thomas Ballantine\"]'),(31398,828419,5,'director',NULL,NULL),(31398,768540,6,'writer','screenplay',NULL),(31398,347451,7,'writer','screenplay',NULL),(31398,372942,8,'writer','story',NULL),(31398,531269,9,'writer','story',NULL),(31455,55,10,'composer',NULL,NULL),(31455,1452,1,'actor',NULL,'[\"The Hunchback Quasimodo\"]'),(31455,58,2,'actress',NULL,'[\"Esmeralda\"]'),(31455,362567,3,'actor',NULL,'[\"Frollo\"]'),(31455,593775,4,'actor',NULL,'[\"Clopin\"]'),(31455,226189,5,'director',NULL,NULL),(31455,397022,6,'writer','screen play',NULL),(31455,290863,7,'writer','adaptation',NULL),(31455,401076,8,'writer',NULL,NULL),(31455,75825,9,'producer','producer',NULL),(31505,690143,10,'producer','producer',NULL),(31505,58,1,'actress',NULL,'[\"Mary Yellan\"]'),(31505,628579,2,'actor',NULL,'[\"Jem Trehearne - Sir Humphrey\'s Gang\"]'),(31505,1452,3,'actor',NULL,'[\"Sir Humphrey Pengallan\"]'),(31505,388166,4,'actor',NULL,'[\"Chadwick - Sir Humphrey\'s Butler\"]'),(31505,33,5,'director',NULL,NULL),(31505,238898,6,'writer','adapted from the novel by',NULL),(31505,319148,7,'writer','screen play by',NULL),(31505,365661,8,'writer','screen play by',NULL),(31505,697362,9,'writer','additional dialogue',NULL),(31507,518979,10,'writer','story contributor',NULL),(31507,61,1,'actor',NULL,'[\"Jesse James\"]'),(31507,20,2,'actor',NULL,'[\"Frank James\"]'),(31507,446715,3,'actress',NULL,'[\"Zerelda - aka Zee\"]'),(31507,68,4,'actor',NULL,'[\"Will Wright\"]'),(31507,454771,5,'director',NULL,NULL),(31507,191899,6,'director',NULL,NULL),(31507,425913,7,'writer','original screen play',NULL),(31507,288706,8,'writer','contributing writer',NULL),(31507,448985,9,'writer','contributing writer',NULL),(31514,13221,10,'cinematographer',NULL,NULL),(31514,300064,1,'actor',NULL,'[\"François\"]'),(31514,491238,2,'actress',NULL,'[\"Françoise\"]'),(31514,1916,3,'actress',NULL,'[\"Clara\"]'),(31514,77598,4,'actor',NULL,'[\"M. Valentin\"]'),(31514,138893,5,'director',NULL,NULL),(31514,899254,6,'writer','original scenario',NULL),(31514,699535,7,'writer','dialogue',NULL),(31514,296216,8,'producer','producer',NULL),(31514,6144,9,'composer',NULL,NULL),(31516,362274,10,'writer','novel \"The Phantom Crown\"',NULL),(31516,612847,1,'actor',NULL,'[\"Benito Juárez\"]'),(31516,12,2,'actress',NULL,'[\"Carlota\"]'),(31516,731,3,'actor',NULL,'[\"Maximilian von Habsburg\"]'),(31516,1647,4,'actor',NULL,'[\"Napoleon III\"]'),(31516,226189,5,'director',NULL,NULL),(31516,1379,6,'writer','screen play',NULL),(31516,533418,7,'writer','screen play',NULL),(31516,718140,8,'writer','screen play',NULL),(31516,921268,9,'writer','based in part on a play by',NULL),(31593,2202,10,'composer',NULL,NULL),(31593,2050,1,'actress',NULL,'[\"Terry McKay\"]'),(31593,964,2,'actor',NULL,'[\"Michel Marnay\"]'),(31593,653642,3,'actress',NULL,'[\"Grandmother\"]'),(31593,101350,4,'actor',NULL,'[\"Kenneth Bradley\"]'),(31593,564970,5,'director',NULL,NULL),(31593,202681,6,'writer','screen play',NULL),(31593,829330,7,'writer','screen play',NULL),(31593,186118,8,'writer','story',NULL),(31593,67103,9,'writer','contributor to screenplay',NULL),(31679,907900,10,'cinematographer','director of photography',NULL),(31679,71,1,'actor',NULL,'[\"Jefferson Smith\"]'),(31679,795,2,'actress',NULL,'[\"Saunders\"]'),(31679,1647,3,'actor',NULL,'[\"Senator Joseph Paine\"]'),(31679,36427,4,'actor',NULL,'[\"Jim Taylor\"]'),(31679,1008,5,'director',NULL,NULL),(31679,118227,6,'writer','screen play',NULL),(31679,287931,7,'writer','story',NULL),(31679,175333,8,'writer','contributor to screenplay construction and dialogue',NULL),(31679,6323,9,'composer',NULL,NULL),(31680,528685,10,'actor',NULL,'[\"Captain Guy Jackson\"]'),(31680,472,1,'actor',NULL,'[\"James Lee Wong\"]'),(31680,721851,2,'actress',NULL,'[\"Bobbie Logan\"]'),(31680,936728,3,'actor',NULL,'[\"Inspector Bill Street\"]'),(31680,330265,4,'actor',NULL,'[\"Mr. Davidson\"]'),(31680,631438,5,'director',NULL,NULL),(31680,201405,6,'writer','screenplay',NULL),(31680,928840,7,'writer','characters: series in Collier\'s Magazine',NULL),(31680,627060,8,'cinematographer','director of photography',NULL),(31680,774465,9,'editor',NULL,NULL),(31709,223056,10,'editor',NULL,NULL),(31709,335748,1,'actress',NULL,'[\"Nancy Drew\"]'),(31709,514344,2,'actor',NULL,'[\"Carson Drew\"]'),(31709,858833,3,'actor',NULL,'[\"Ted Nickerson\"]'),(31709,427934,4,'actor',NULL,'[\"Killer Parkins\"]'),(31709,166058,5,'director',NULL,NULL),(31709,303930,6,'writer','original screen play',NULL),(31709,13182781,7,'writer','based on: Nancy Drew stories',NULL),(31709,6257,8,'composer',NULL,NULL),(31709,249186,9,'cinematographer',NULL,NULL),(31725,6128,10,'composer',NULL,NULL),(31725,1256,1,'actress',NULL,'[\"Ninotchka\"]'),(31725,2048,2,'actor',NULL,'[\"Leon\"]'),(31725,163257,3,'actress',NULL,'[\"Swana\"]'),(31725,509,4,'actor',NULL,'[\"Razinin\"]'),(31725,523932,5,'director',NULL,NULL),(31725,102818,6,'writer','screen play',NULL),(31725,697,7,'writer','screen play',NULL),(31725,281556,8,'writer','screen play',NULL),(31725,501872,9,'writer','based on the original story by',NULL),(31742,429842,10,'editor',NULL,NULL),(31742,1033,1,'actor',NULL,'[\"Lennie Small\"]'),(31742,580565,2,'actor',NULL,'[\"George Milton\"]'),(31742,275897,3,'actress',NULL,'[\"Mae Jackson\"]'),(31742,1948,4,'actor',NULL,'[\"Slim\"]'),(31742,587277,5,'director',NULL,NULL),(31742,825705,6,'writer','by',NULL),(31742,813554,7,'writer','screen play',NULL),(31742,178716,8,'composer',NULL,NULL),(31742,5661,9,'cinematographer','director of photography',NULL),(31762,907900,10,'cinematographer',NULL,NULL),(31762,26,1,'actor',NULL,'[\"Geoff Carter\"]'),(31762,795,2,'actress',NULL,'[\"Bonnie Lee\"]'),(31762,28,3,'actress',NULL,'[\"Judy MacPherson\"]'),(31762,1932,4,'actor',NULL,'[\"Bat MacPherson\"]'),(31762,1328,5,'director',NULL,NULL),(31762,299154,6,'writer','screen play',NULL),(31762,341178,7,'writer','contributor to treatment',NULL),(31762,710299,8,'writer','contributor to treatment',NULL),(31762,6323,9,'composer',NULL,NULL),(31826,5835,10,'cinematographer','director of photography',NULL),(31826,12,1,'actress',NULL,'[\"Queen Elizabeth\"]'),(31826,1224,2,'actor',NULL,'[\"Earl of Essex\"]'),(31826,14,3,'actress',NULL,'[\"Lady Penelope Gray\"]'),(31826,187981,4,'actor',NULL,'[\"Francis Bacon\"]'),(31826,2031,5,'director',NULL,NULL),(31826,706993,6,'writer','screen play',NULL),(31826,533418,7,'writer','screen play',NULL),(31826,27173,8,'writer','from the stage play by',NULL),(31826,6157,9,'composer',NULL,NULL),(31885,64497,10,'editor',NULL,NULL),(31885,197950,1,'actor',NULL,'[\"Marquis Robert de la Cheyniest\"]'),(31885,339669,2,'actress',NULL,'[\"Christine de la Cheyniest\"]'),(31885,239513,3,'actress',NULL,'[\"Lisette, sa camériste\"]'),(31885,664186,4,'actress',NULL,'[\"Geneviève de Marras\"]'),(31885,719756,5,'director',NULL,NULL),(31885,2569,6,'writer','collaborating writer',NULL),(31885,64559,7,'writer','opening poem',NULL),(31885,45404,8,'cinematographer',NULL,NULL),(31885,401123,9,'editor',NULL,NULL),(31971,522635,10,'editor','film editor',NULL),(31971,78,1,'actor',NULL,'[\"Ringo Kid\"]'),(31971,872456,2,'actress',NULL,'[\"Dallas\"]'),(31971,222596,3,'actor',NULL,'[\"Buck\"]'),(31971,1017,4,'actor',NULL,'[\"Hatfield\"]'),(31971,406,5,'director',NULL,NULL),(31971,370697,6,'writer','original story',NULL),(31971,629580,7,'writer','screen play',NULL),(31971,372942,8,'writer',NULL,NULL),(31971,322688,9,'cinematographer','director of photography',NULL),(31981,953123,10,'producer','producer',NULL),(31981,747,1,'actor',NULL,'[\"Alexander Graham Bell\"]'),(31981,949835,2,'actress',NULL,'[\"Mrs. Mabel Hubbard Bell\"]'),(31981,20,3,'actor',NULL,'[\"Thomas Watson\"]'),(31981,2013,4,'actor',NULL,'[\"Gardner Hubbard\"]'),(31981,191899,5,'director',NULL,NULL),(31981,365222,6,'writer','story',NULL),(31981,873707,7,'writer','screenplay',NULL),(31981,409069,8,'writer','contributor to screenplay construction',NULL),(31981,818328,9,'writer','contributor to screenplay construction',NULL),(32138,896542,10,'director','director: Kansas scenes',NULL),(32138,23,1,'actress',NULL,'[\"Dorothy Gale\"]'),(32138,604656,2,'actor',NULL,'[\"Professor Marvel\",\"The Gatekeeper\",\"The Carriage Driver\"]'),(32138,1961,3,'actor',NULL,'[\"\'Hunk\'\",\"The Scarecrow\"]'),(32138,481618,4,'actor',NULL,'[\"\'Zeke\'\",\"The Cowardly Lion\"]'),(32138,281808,5,'director',NULL,NULL),(32138,2030,6,'director',NULL,NULL),(32138,503777,7,'director',NULL,NULL),(32138,851537,8,'director',NULL,NULL),(32138,861703,9,'director',NULL,NULL),(32143,829330,10,'writer',NULL,NULL),(32143,790454,1,'actress',NULL,'[\"Mrs. Stephen Haines (Mary)\"]'),(32143,1076,2,'actress',NULL,'[\"Crystal Allen\"]'),(32143,751426,3,'actress',NULL,'[\"Mrs. Howard Fowler (Sylvia)\"]'),(32143,92683,4,'actress',NULL,'[\"The Countess De Lave (Flora)\"]'),(32143,2030,5,'director',NULL,NULL),(32143,524403,6,'writer','from the play by',NULL),(32143,2616,7,'writer','screen play',NULL),(32143,613848,8,'writer','screen play',NULL),(32143,280234,9,'writer',NULL,NULL),(32145,326418,10,'producer','producer',NULL),(32145,643353,1,'actress',NULL,'[\"Cathy\"]'),(32145,59,2,'actor',NULL,'[\"Heathcliff\"]'),(32145,57,3,'actor',NULL,'[\"Edgar\"]'),(32145,733460,4,'actress',NULL,'[\"Ellen\"]'),(32145,943758,5,'director',NULL,NULL),(32145,531269,6,'writer','screen play',NULL),(32145,372942,7,'writer','screen play',NULL),(32145,111577,8,'writer','from the novel by',NULL),(32145,1379,9,'writer','contributing writer',NULL),(32155,322688,10,'cinematographer',NULL,NULL),(32155,20,1,'actor',NULL,'[\"Abraham Lincoln\"]'),(32155,103567,2,'actress',NULL,'[\"Abigail Clay\"]'),(32155,915913,3,'actress',NULL,'[\"Mary Todd\"]'),(32155,924011,4,'actress',NULL,'[\"Sarah Clay\"]'),(32155,406,5,'director',NULL,NULL),(32155,873707,6,'writer','original screenplay',NULL),(32155,1209279,7,'writer','poem: \"Nancy Hanks\"',NULL),(32155,953123,8,'producer','producer',NULL),(32155,55,9,'composer',NULL,NULL),(32194,522848,10,'editor','film editor',NULL),(32194,12,1,'actress',NULL,'[\"Henriette Deluzy-Desportes\"]'),(32194,964,2,'actor',NULL,'[\"Duc de Praslin\"]'),(32194,528705,3,'actor',NULL,'[\"Henry Martyn Field\"]'),(32194,641966,4,'actress',NULL,'[\"Duchesse de Praslin\"]'),(32194,514822,5,'director',NULL,NULL),(32194,276019,6,'writer','by',NULL),(32194,732452,7,'writer','screen play',NULL),(32194,70,8,'composer',NULL,NULL),(32194,5735,9,'cinematographer','director of photography',NULL),(32211,715002,10,'cinematographer','director of photography',NULL),(32211,794297,1,'actress',NULL,'[\"Anne Shirley\"]'),(32211,255199,2,'actor',NULL,'[\"Tony Pringle\"]'),(32211,871287,3,'actor',NULL,'[\"Matey\"]'),(32211,461549,4,'actor',NULL,'[\"Gilbert Blythe\"]'),(32211,387002,5,'director',NULL,NULL),(32211,437720,6,'writer','screen play',NULL),(32211,128332,7,'writer','screen play',NULL),(32211,599844,8,'writer','novel',NULL),(32211,717220,9,'producer','producer',NULL),(32215,774465,10,'editor','film editor',NULL),(32215,472,1,'actor',NULL,'[\"Dr. Bernard Adrian\"]'),(32215,942979,2,'actress',NULL,'[\"Miss Frances Clifford\"]'),(32215,640761,3,'actor',NULL,'[\"Danny Foster\"]'),(32215,891027,4,'actress',NULL,'[\"Mother Clifford\"]'),(32215,631438,5,'director',NULL,NULL),(32215,794280,6,'writer','suggested from the play: \"The Ape\"',NULL),(32215,802561,7,'writer','adaptation',NULL),(32215,140958,8,'writer','screenplay',NULL),(32215,627060,9,'cinematographer','director of photography',NULL),(32273,5849,10,'cinematographer','director of photography',NULL),(32273,22,1,'actor',NULL,'[\"Big John McMasters\"]'),(32273,75,2,'actor',NULL,'[\"Square John Sand\"]'),(32273,1055,3,'actress',NULL,'[\"Betsy Bartlett\"]'),(32273,1443,4,'actress',NULL,'[\"Karen Vanmeer\"]'),(32273,176699,5,'director',NULL,NULL),(32273,536941,6,'writer','screen play',NULL),(32273,335455,7,'writer','based on a story by',NULL),(32273,956547,8,'producer','producer',NULL),(32273,77,9,'composer',NULL,NULL),(32339,515921,10,'cinematographer',NULL,NULL),(32339,491048,1,'actor',NULL,'[\"Stan Laurel\",\"Lord Paddington\"]'),(32339,1316,2,'actor',NULL,'[\"Oliver Hardy\"]'),(32339,367516,3,'actor',NULL,'[\"Meredith\"]'),(32339,524306,4,'actor',NULL,'[\"Dean Williams\"]'),(32339,332531,5,'director',NULL,NULL),(32339,736778,6,'writer','original story',NULL),(32339,12148,7,'writer','original story',NULL),(32339,3377,8,'writer','original story',NULL),(32339,368943,9,'composer',NULL,NULL),(32349,718106,10,'writer',NULL,NULL),(32349,22,1,'actor',NULL,'[\"McKinley B. Thompson\"]'),(32349,1443,2,'actress',NULL,'[\"Theodore\"]'),(32349,393028,3,'actor',NULL,'[\"Vasiliev\"]'),(32349,107795,4,'actor',NULL,'[\"Vanya\"]'),(32349,896542,5,'director',NULL,NULL),(32349,372942,6,'writer','screen play',NULL),(32349,496468,7,'writer','screen play',NULL),(32349,281556,8,'writer','original story',NULL),(32349,542534,9,'writer',NULL,NULL),(32376,690143,10,'producer','producer',NULL),(32376,58,1,'actress',NULL,'[\"Judy O\'Brien\"]'),(32376,371775,2,'actor',NULL,'[\"Jimmy Harris\"]'),(32376,840,3,'actress',NULL,'[\"Bubbles\"]'),(32376,276065,4,'actress',NULL,'[\"Elinor Harris\"]'),(32376,2188,5,'director',NULL,NULL),(32376,215877,6,'director',NULL,NULL),(32376,805756,7,'writer','screen play',NULL),(32376,204608,8,'writer','screen play',NULL),(32376,62139,9,'writer','story',NULL),(32406,658254,10,'cinematographer',NULL,NULL),(32406,52203,1,'actor',NULL,'[\"Dr. Manetta\"]'),(32406,658339,2,'actress',NULL,'[\"June Lansdowne\"]'),(32406,526720,3,'actor',NULL,'[\"Dick Martin\"]'),(32406,540352,4,'actress',NULL,'[\"Glenda Baker\"]'),(32406,497961,5,'director',NULL,NULL),(32406,908624,6,'writer','novel \"The Door With The Seven Locks\"',NULL),(32406,348175,7,'writer','screenplay',NULL),(32406,34592,8,'writer','treatment',NULL),(32406,117275,9,'cinematographer',NULL,NULL),(32455,359610,10,'director',NULL,NULL),(32455,831439,1,'self',NULL,'[\"Self - Conductor of The Philadelphia Orchestra\"]'),(32455,852252,2,'self',NULL,'[\"Self - Narrative Introductions\"]'),(32455,1727756,3,'self',NULL,'[\"Themselves\"]'),(32455,123553,4,'actor',NULL,'[\"Narrator: Deems Taylor overdubs (2000 restoration)\"]'),(32455,19282,5,'director',NULL,NULL),(32455,35899,6,'director',NULL,NULL),(32455,1968474,7,'director',NULL,NULL),(32455,272568,8,'director',NULL,NULL),(32455,359457,9,'director',NULL,NULL),(32484,372942,10,'writer',NULL,NULL),(32484,566948,1,'actor',NULL,'[\"John Jones\"]'),(32484,206478,2,'actress',NULL,'[\"Carol Fisher\"]'),(32484,3339,3,'actor',NULL,'[\"Stephen Fisher\"]'),(32484,1695,4,'actor',NULL,'[\"Scott ffolliott\"]'),(32484,33,5,'director',NULL,NULL),(32484,71657,6,'writer','screenplay',NULL),(32484,365661,7,'writer','screenplay',NULL),(32484,385264,8,'writer','dialogue',NULL),(32484,70361,9,'writer','dialogue',NULL),(32551,801184,10,'editor','film editor',NULL),(32551,20,1,'actor',NULL,'[\"Tom Joad\"]'),(32551,2034,2,'actress',NULL,'[\"Ma Joad\"]'),(32551,1017,3,'actor',NULL,'[\"Casy\"]'),(32551,335788,4,'actor',NULL,'[\"Grandpa\"]'),(32551,406,5,'director',NULL,NULL),(32551,425913,6,'writer','screen play',NULL),(32551,825705,7,'writer','based on the novel by',NULL),(32551,953123,8,'producer','producer',NULL),(32551,5904,9,'cinematographer','director of photography',NULL),(32553,354916,10,'actress',NULL,'[\"Madame Napaloni\"]'),(32553,122,1,'actor',NULL,'[\"Hynkel - Dictator of Tomania\",\"A Jewish Barber\"]'),(32553,2104,2,'actress',NULL,'[\"Hannah\"]'),(32553,642988,3,'actor',NULL,'[\"Napaloni - Dictator of Bacteria\"]'),(32553,306786,4,'actor',NULL,'[\"Schultz\"]'),(32553,835365,5,'cinematographer','director of photography',NULL),(32553,5906,6,'cinematographer','director of photography',NULL),(32553,630119,7,'editor','film editor',NULL),(32553,199787,8,'actor',NULL,'[\"Garbitsch\"]'),(32553,317970,9,'actor',NULL,'[\"Herring\"]'),(32599,907900,10,'cinematographer','director of photography',NULL),(32599,26,1,'actor',NULL,'[\"Walter Burns\"]'),(32599,751426,2,'actress',NULL,'[\"Hildy Johnson\"]'),(32599,897,3,'actor',NULL,'[\"Bruce Baldwin\"]'),(32599,516876,4,'actor',NULL,'[\"Sheriff Hartwell\"]'),(32599,1328,5,'director',NULL,NULL),(32599,496468,6,'writer','screen play',NULL),(32599,372942,7,'writer','from the play \"The Front Page\"',NULL),(32599,531269,8,'writer','from the play \"The Front Page\"',NULL),(32599,753452,9,'writer','additional dialogue',NULL),(32676,206238,10,'editor','film editor',NULL),(32676,2285,1,'actor',NULL,'[\"Knute Rockne\"]'),(32676,656175,2,'actress',NULL,'[\"Bonnie Skiles Rockne\"]'),(32676,1654,3,'actor',NULL,'[\"George Gipp\"]'),(32676,187981,4,'actor',NULL,'[\"Father John Callahan C.S.C.\"]'),(32676,45800,5,'director',NULL,NULL),(32676,397678,6,'director',NULL,NULL),(32676,118758,7,'writer','original screen play',NULL),(32676,1843377,8,'writer','based upon: private papers of, and the reports of Rockne\'s intimate associates and friends',NULL),(32676,309974,9,'cinematographer','director of photography',NULL),(32690,774465,10,'editor',NULL,NULL),(32690,531759,1,'actor',NULL,'[\"Jim Hadley\"]'),(32690,401478,2,'actor',NULL,'[\"Frank Rogers\"]'),(32690,949961,3,'actress',NULL,'[\"Joan Hadley\"]'),(32690,330435,4,'actress',NULL,'[\"Mrs. Hadley\"]'),(32690,64415,5,'director',NULL,NULL),(32690,551869,6,'writer','original screenplay',NULL),(32690,931765,7,'producer','producer',NULL),(32690,6343,8,'composer',NULL,NULL),(32690,627060,9,'cinematographer','director of photography',NULL),(32701,25497,10,'editor',NULL,NULL),(32701,12,1,'actress',NULL,'[\"Leslie Crosbie\"]'),(32701,3339,2,'actor',NULL,'[\"Robert Crosbie\"]'),(32701,827263,3,'actor',NULL,'[\"Howard Joyce\"]'),(32701,408586,4,'actress',NULL,'[\"Dorothy Joyce\"]'),(32701,943758,5,'director',NULL,NULL),(32701,560857,6,'writer','play',NULL),(32701,462321,7,'writer','screen play',NULL),(32701,70,8,'composer',NULL,NULL),(32701,309974,9,'cinematographer','director of photography',NULL),(32811,5145321,10,'composer',NULL,NULL),(32811,837925,1,'actress',NULL,'[\"Freya Roth\"]'),(32811,71,2,'actor',NULL,'[\"Martin Breitner\"]'),(32811,1870,3,'actor',NULL,'[\"Fritz Marberg\"]'),(32811,604656,4,'actor',NULL,'[\"Professor Viktor Roth\"]'),(32811,97648,5,'director',NULL,NULL),(32811,921995,6,'writer','screen play',NULL),(32811,254690,7,'writer','screen play',NULL),(32811,296207,8,'writer','screen play',NULL),(32811,98712,9,'writer','based on the book by',NULL),(32904,77,10,'composer',NULL,NULL),(32904,26,1,'actor',NULL,'[\"C. K. Dexter Haven\"]'),(32904,31,2,'actress',NULL,'[\"Tracy Samantha Lord\"]'),(32904,71,3,'actor',NULL,'[\"Macaulay \'Mike\' Connor\"]'),(32904,404046,4,'actress',NULL,'[\"Elizabeth \'Liz\' Imbrie\"]'),(32904,2030,5,'director',NULL,NULL),(32904,829330,6,'writer','screen play',NULL),(32904,58129,7,'writer','based on the play by',NULL),(32904,759029,8,'writer','contributing writer',NULL),(32904,581,9,'producer','producer',NULL),(32910,730860,10,'director','sequence director',NULL),(32910,427934,1,'actor',NULL,'[\"Pinocchio\",\"Alexander\"]'),(32910,747759,2,'actor',NULL,'[\"Geppetto\"]'),(32910,305,3,'actor',NULL,'[\"Gideon (hiccoughs)\"]'),(32910,110893,4,'actor',NULL,'[\"Carnival Barker\"]'),(32910,272568,5,'director','sequence director',NULL),(32910,373429,6,'director','sequence director',NULL),(32910,414144,7,'director','sequence director',NULL),(32910,455741,8,'director','sequence director',NULL),(32910,527217,9,'director','supervising director',NULL),(32943,373511,10,'writer','contributor to treatment',NULL),(32943,2093,1,'actress',NULL,'[\"Elizabeth Bennet\"]'),(32943,59,2,'actor',NULL,'[\"Mr. Darcy\"]'),(32943,92683,3,'actress',NULL,'[\"Mrs. Bennet\"]'),(32943,646829,4,'actress',NULL,'[\"Lady Catherine de Bourgh\"]'),(32943,502752,5,'director',NULL,NULL),(32943,404717,6,'writer','screen play',NULL),(32943,613848,7,'writer','screen play',NULL),(32943,807,8,'writer','novel',NULL),(32943,422017,9,'writer','based upon the dramatization of Jane Austen\'s novel written by',NULL),(32946,6128,10,'composer',NULL,NULL),(32946,1677,1,'actress',NULL,'[\"Ellie May Adams\"]'),(32946,566948,2,'actor',NULL,'[\"Ed Wallace\"]'),(32946,708081,3,'actress',NULL,'[\"Mamie Adams\"]'),(32946,871287,4,'actor',NULL,'[\"Gramp\"]'),(32946,478441,5,'director',NULL,NULL),(32946,778818,6,'writer','screen play',NULL),(32946,1180088,7,'writer','from the play by',NULL),(32946,366578,8,'writer','from the play by',NULL),(32946,511142,9,'writer','novel \"February Hill\"',NULL),(32976,389580,10,'writer','adaptation',NULL),(32976,59,1,'actor',NULL,'[\"\'Maxim\' de Winter\"]'),(32976,21,2,'actress',NULL,'[\"Mrs. de Winter\"]'),(32976,1695,3,'actor',NULL,'[\"Jack Favell\"]'),(32976,752,4,'actress',NULL,'[\"Mrs. Danvers\"]'),(32976,33,5,'director',NULL,NULL),(32976,238898,6,'writer','celebrated novel',NULL),(32976,792845,7,'writer','screen play',NULL),(32976,365661,8,'writer','screen play',NULL),(32976,531878,9,'writer','adaptation',NULL),(32983,1017,10,'actor',NULL,'[\"Bob Ford\"]'),(32983,20,1,'actor',NULL,'[\"Frank James\"]'),(32983,74,2,'actress',NULL,'[\"Eleanor Stone\"]'),(32983,178114,3,'actor',NULL,'[\"Clem\"]'),(32983,401434,4,'actor',NULL,'[\"Major Rufus Cobb\"]'),(32983,485,5,'director',NULL,NULL),(32983,375500,6,'writer','original screenplay',NULL),(32983,953123,7,'producer','producer',NULL),(32983,55604,8,'cinematographer','director of photography',NULL),(32983,860828,9,'editor',NULL,NULL),(33021,2118,10,'actor',NULL,'[\"Tex Bell\"]'),(33021,1224,1,'actor',NULL,'[\"Jeb Stuart\"]'),(33021,14,2,'actress',NULL,'[\"\'Kit Carson\' Holliday\"]'),(33021,557339,3,'actor',NULL,'[\"John Brown\"]'),(33021,1654,4,'actor',NULL,'[\"George Armstrong Custer\"]'),(33021,2031,5,'director',NULL,NULL),(33021,118758,6,'writer','original screenplay',NULL),(33021,70,7,'composer',NULL,NULL),(33021,5835,8,'cinematographer','director of photography',NULL),(33021,25497,9,'editor','film editor',NULL),(33028,25497,10,'editor','film editor',NULL),(33028,1224,1,'actor',NULL,'[\"Geoffrey Thorpe\"]'),(33028,550782,2,'actress',NULL,'[\"Doña Maria\"]'),(33028,1647,3,'actor',NULL,'[\"Don José Alvarez de Cordoba\"]'),(33028,187981,4,'actor',NULL,'[\"Sir John Burleson\"]'),(33028,2031,5,'director',NULL,NULL),(33028,462321,6,'writer','screen play',NULL),(33028,589316,7,'writer','screen play',NULL),(33028,6157,8,'composer',NULL,NULL),(33028,5835,9,'cinematographer','director of photography',NULL),(33045,200125,10,'cinematographer','director of photography',NULL),(33045,837925,1,'actress',NULL,'[\"Klara Novak\"]'),(33045,71,2,'actor',NULL,'[\"Alfred Kralik\"]'),(33045,604656,3,'actor',NULL,'[\"Hugo Matuschek\"]'),(33045,771584,4,'actor',NULL,'[\"Ferencz Vadas\"]'),(33045,523932,5,'director',NULL,NULL),(33045,710723,6,'writer','screenplay',NULL),(33045,529450,7,'writer','based on a play by',NULL),(33045,372942,8,'writer',NULL,NULL),(33045,6128,9,'composer',NULL,NULL),(33105,760488,10,'writer','contributor to dialogue',NULL),(33105,22,1,'actor',NULL,'[\"Verne\"]'),(33105,1076,2,'actress',NULL,'[\"Julie\"]'),(33105,402842,3,'actor',NULL,'[\"Cambreau\"]'),(33105,48,4,'actor',NULL,'[\"M\'sieu Pig\"]'),(33105,97648,5,'director',NULL,NULL),(33105,371907,6,'writer','screen play',NULL),(33105,757940,7,'writer','based on the book \"Not Too Narrow... Not Too Deep\" by',NULL),(33105,2616,8,'writer','adaptation',NULL),(33105,649183,9,'writer',NULL,NULL),(33152,580017,10,'director',NULL,NULL),(33152,891998,1,'actor',NULL,'[\"Jaffar\"]'),(33152,754942,2,'actor',NULL,'[\"Abu\"]'),(33152,243454,3,'actress',NULL,'[\"Princess\"]'),(33152,433188,4,'actor',NULL,'[\"Ahmad\"]'),(33152,3490,5,'director',NULL,NULL),(33152,3836,6,'director',NULL,NULL),(33152,924065,7,'director',NULL,NULL),(33152,466099,8,'director',NULL,NULL),(33152,466113,9,'director',NULL,NULL),(33373,55,10,'composer',NULL,NULL),(33373,11,1,'actor',NULL,'[\"Prof. Bertram Potts\"]'),(33373,1766,2,'actress',NULL,'[\"Sugarpuss O\'Shea\"]'),(33373,393028,3,'actor',NULL,'[\"Prof. Gurkakoff\"]'),(33373,871287,4,'actor',NULL,'[\"Prof. Jerome\"]'),(33373,1328,5,'director',NULL,NULL),(33373,102818,6,'writer','screen play',NULL),(33373,697,7,'writer','screen play',NULL),(33373,598572,8,'writer','from an original story by',NULL),(33373,326418,9,'producer','producer',NULL),(33436,128724,10,'editor','film editor',NULL),(33436,7941,1,'actor',NULL,'[\"Slicker Smith\"]'),(33436,182579,2,'actor',NULL,'[\"Herbie Brown\"]'),(33436,101350,3,'actor',NULL,'[\"Randolph Parker III\"]'),(33436,292471,4,'actress',NULL,'[\"Judy Gray\"]'),(33436,523893,5,'director',NULL,NULL),(33436,394774,6,'writer','original screen play',NULL),(33436,335471,7,'writer','special material for Abbott and Costello',NULL),(33436,38639,8,'cinematographer','director of photography',NULL),(33436,5762,9,'cinematographer','director of photography',NULL),(33459,746736,10,'producer','producer',NULL),(33459,779549,1,'actress',NULL,'[\"Ella Bishop\"]'),(33459,307326,2,'actor',NULL,'[\"Sam Peters\"]'),(33459,350324,3,'actor',NULL,'[\"President Corcoran\"]'),(33459,1359,4,'actor',NULL,'[\"Chris Jensen\"]'),(33459,307819,5,'director',NULL,NULL),(33459,17661,6,'writer','novel \"Miss Bishop\"',NULL),(33459,70948,7,'writer','screen adaptation',NULL),(33459,374123,8,'writer','screenplay',NULL),(33459,316807,9,'writer','screenplay',NULL),(33467,5904,10,'cinematographer',NULL,NULL),(33467,80,1,'actor',NULL,'[\"Kane\"]'),(33467,1072,2,'actor',NULL,'[\"Jedediah Leland\",\"Screening Room Reporter\"]'),(33467,173827,3,'actress',NULL,'[\"Susan Alexander Kane\"]'),(33467,1547,4,'actress',NULL,'[\"Mary Kane\"]'),(33467,542534,5,'writer','original screen play',NULL),(33467,2144,6,'writer','contributing writer',NULL),(33467,219670,7,'writer','contributing writer',NULL),(33467,448809,8,'writer','contributing writer',NULL),(33467,2136,9,'composer',NULL,NULL),(33533,580017,10,'production_designer',NULL,NULL),(33533,795,1,'actress',NULL,'[\"Mary Jones\"]'),(33533,191950,2,'actor',NULL,'[\"Joe O\'Brien\"]'),(33533,2013,3,'actor',NULL,'[\"John P. Merrick\"]'),(33533,350324,4,'actor',NULL,'[\"Hooper\"]'),(33533,939992,5,'director',NULL,NULL),(33533,469915,6,'writer','written by',NULL),(33533,743407,7,'producer','producer',NULL),(33533,5889,8,'cinematographer',NULL,NULL),(33533,865285,9,'editor',NULL,NULL),(33563,789313,10,'director','supervising director',NULL),(33563,1359,1,'actor',NULL,'[\"Mr. Stork\"]'),(33563,112395,2,'actor',NULL,'[\"Timothy Q. Mouse\"]'),(33563,82884,3,'actor',NULL,'[\"The Ringmaster\"]'),(33563,88285,4,'actor',NULL,'[\"Clown\"]'),(33563,35899,5,'director','sequence director',NULL),(33563,272568,6,'director','sequence director',NULL),(33563,414144,7,'director','sequence director',NULL),(33563,455741,8,'director','sequence director',NULL),(33563,730860,9,'director','sequence director',NULL),(33627,180,10,'editor',NULL,NULL),(33627,1366,1,'actor',NULL,'[\"Philip Armstrong Scott\"]'),(33627,59,2,'actor',NULL,'[\"Johnnie - The Trapper\"]'),(33627,557339,3,'actor',NULL,'[\"Andy Brock\"]'),(33627,906932,4,'actor',NULL,'[\"Peter\"]'),(33627,3836,5,'director',NULL,NULL),(33627,696247,6,'writer','original story and screenplay',NULL),(33627,10063,7,'writer','scenario',NULL),(33627,891002,8,'composer',NULL,NULL),(33627,2875,9,'cinematographer','director of photography',NULL),(33717,453198,10,'editor','film editor',NULL),(33717,526946,1,'actress',NULL,'[\"Marie Garson\"]'),(33717,7,2,'actor',NULL,'[\"Roy Earle\"]'),(33717,193232,3,'actor',NULL,'[\"\'Babe\' Kozak\"]'),(33717,447913,4,'actor',NULL,'[\"\'Red\' Hattery\"]'),(33717,909825,5,'director',NULL,NULL),(33717,1379,6,'writer','screen play',NULL),(33717,122446,7,'writer','screen play',NULL),(33717,6037,8,'composer',NULL,NULL),(33717,309974,9,'cinematographer','director of photography',NULL),(33723,128724,10,'editor','film editor',NULL),(33723,7941,1,'actor',NULL,'[\"Chuck Murray\"]'),(33723,182579,2,'actor',NULL,'[\"Ferdinand Jones\"]'),(33723,137999,3,'actor',NULL,'[\"Dr. Jackson\"]'),(33723,204843,4,'actress',NULL,'[\"Camille Brewster\"]'),(33723,523893,5,'director',NULL,NULL),(33723,498738,6,'writer','screenplay',NULL),(33723,727411,7,'writer','screenplay',NULL),(33723,335471,8,'writer','screenplay',NULL),(33723,106608,9,'cinematographer','director of photography',NULL),(33727,877414,10,'writer','screen adaptation',NULL),(33727,307012,1,'actor',NULL,'[\"Dick\"]'),(33727,580271,2,'actor',NULL,'[\"Mr. Bumble\",\"Swat\"]'),(33727,682481,3,'actor',NULL,'[\"C. Bagley Beetle\"]'),(33727,583049,4,'actor',NULL,'[\"Smack\"]'),(33727,281487,5,'director',NULL,NULL),(33727,330106,6,'writer','original story',NULL),(33727,816917,7,'writer','original story',NULL),(33727,686334,8,'writer','screen adaptation',NULL),(33727,926880,9,'writer','screen adaptation',NULL),(33729,587926,10,'cinematographer','director of photography',NULL),(33729,682074,1,'actor',NULL,'[\"Mr. Gruffydd\"]'),(33729,58,2,'actress',NULL,'[\"Angharad\"]'),(33729,496819,3,'actress',NULL,'[\"Bronwyn\"]'),(33729,187981,4,'actor',NULL,'[\"Mr. Morgan\"]'),(33729,406,5,'director',NULL,NULL),(33729,242897,6,'writer','screen play',NULL),(33729,515751,7,'writer','based on the novel by',NULL),(33729,953123,8,'producer','producer',NULL),(33729,55,9,'composer',NULL,NULL),(33787,193015,10,'editor','film editor',NULL),(33787,700711,1,'actor',NULL,'[\"James McCarthy\"]'),(33787,940199,2,'actress',NULL,'[\"Barbara Winslow\"]'),(33787,603646,3,'actor',NULL,'[\"Jefferson \'Jeff\' Jackson\"]'),(33787,896109,4,'actor',NULL,'[\"Dr. Miklos Sangre\"]'),(33787,946391,5,'director',NULL,NULL),(33787,447071,6,'writer','screen play by',NULL),(33787,663858,7,'producer','producer',NULL),(33787,443033,8,'composer',NULL,NULL),(33787,826588,9,'cinematographer','director of photography',NULL),(33802,6324,10,'composer',NULL,NULL),(33802,526946,1,'actress',NULL,'[\"Ellen Creed\"]'),(33802,371775,2,'actor',NULL,'[\"Albert Feather\"]'),(33802,450810,3,'actress',NULL,'[\"Lucy\"]'),(33802,6471,4,'actress',NULL,'[\"Emily Creed\"]'),(33802,896533,5,'director',NULL,NULL),(33802,287124,6,'writer','screen play by',NULL),(33802,219068,7,'writer','screen play by',NULL),(33802,672906,8,'writer','from the play by',NULL),(33802,184597,9,'producer','producer',NULL),(33804,1766,1,'actress',NULL,'[\"Jean\"]'),(33804,20,2,'actor',NULL,'[\"Charles Pike\"]'),(33804,2013,3,'actor',NULL,'[\"\'Colonel\' Harrington\"]'),(33804,657874,4,'actor',NULL,'[\"Mr. Pike\"]'),(33804,2545,5,'director',NULL,NULL),(33804,388743,6,'writer','screen play: based on a story by',NULL),(33804,428987,7,'producer','producer',NULL),(33804,5800,8,'cinematographer','director of photography',NULL),(33804,319574,9,'editor',NULL,NULL),(33836,326418,10,'producer','producer',NULL),(33836,12,1,'actress',NULL,'[\"Regina Giddens\"]'),(33836,3339,2,'actor',NULL,'[\"Horace Giddens\"]'),(33836,942863,3,'actress',NULL,'[\"Alexandra Giddens\"]'),(33836,137999,4,'actor',NULL,'[\"David Hewitt\"]'),(33836,943758,5,'director',NULL,NULL),(33836,375484,6,'writer','by',NULL),(33836,462111,7,'writer','additional scenes and dialogue',NULL),(33836,662213,8,'writer','additional scenes and dialogue',NULL),(33836,132180,9,'writer','additional scenes and dialogue',NULL),(33870,7,1,'actor',NULL,'[\"Samuel Spade\"]'),(33870,802,2,'actress',NULL,'[\"Brigid O\'Shaughnessy\"]'),(33870,313438,3,'actress',NULL,'[\"Iva Archer\"]'),(33870,48,4,'actor',NULL,'[\"Joel Cairo\"]'),(33870,1379,5,'director',NULL,NULL),(33870,358591,6,'writer','based upon the novel by',NULL),(33870,6037,7,'composer',NULL,NULL),(33870,249186,8,'cinematographer','director of photography',NULL),(33870,724360,9,'editor','film editor',NULL),(33874,6130,10,'composer',NULL,NULL),(33874,12,1,'actress',NULL,'[\"Maggie Cutler\"]'),(33874,792130,2,'actress',NULL,'[\"Lorraine Sheldon\"]'),(33874,941253,3,'actor',NULL,'[\"Sheridan Whiteside\"]'),(33874,871432,4,'actor',NULL,'[\"Bert Jefferson\"]'),(33874,445033,5,'director',NULL,NULL),(33874,258493,6,'writer','screen play',NULL),(33874,258525,7,'writer','screen play',NULL),(33874,442151,8,'writer','from the stage play by',NULL),(33874,366454,9,'writer','from the stage play by',NULL),(33891,6323,10,'composer',NULL,NULL),(33891,11,1,'actor',NULL,'[\"\'Long John\' Willoughby\"]'),(33891,1766,2,'actress',NULL,'[\"Ann Mitchell\"]'),(33891,36427,3,'actor',NULL,'[\"D.B. Norton\"]'),(33891,974,4,'actor',NULL,'[\"The \'Colonel\'\"]'),(33891,1008,5,'director',NULL,NULL),(33891,175028,6,'writer','based on a story by',NULL),(33891,696190,7,'writer','based on a story by',NULL),(33891,728307,8,'writer','screen play',NULL),(33891,175333,9,'writer','contributor to dialogue and screenplay constuction',NULL),(33902,808252,10,'editor','film editor',NULL),(33902,75,1,'actor',NULL,'[\"Father Flanagan\"]'),(33902,1682,2,'actor',NULL,'[\"Whitey Marsh\"]'),(33902,914519,3,'actor',NULL,'[\"Pee Wee\"]'),(33902,638067,4,'actor',NULL,'[\"Ted Martley\"]'),(33902,851537,5,'director',NULL,NULL),(33902,570130,6,'writer','original screenplay',NULL),(33902,175908,7,'producer','producer',NULL),(33902,6307,8,'composer',NULL,NULL),(33902,5849,9,'cinematographer','director of photography',NULL),(33928,324747,10,'actor',NULL,'[\"Sheriff William Boggs\"]'),(33928,285922,1,'actor',NULL,'[\"Bob White\"]'),(33928,550620,2,'actress',NULL,'[\"Nora O\'Brien\"]'),(33928,655605,3,'actress',NULL,'[\"Cassandra \'Cassie\' Denham\"]'),(33928,330200,4,'actor',NULL,'[\"Garson Denham\"]'),(33928,5847,5,'director',NULL,NULL),(33928,108579,6,'writer','original screenplay',NULL),(33928,352394,7,'producer','producer',NULL),(33928,5770,8,'cinematographer',NULL,NULL),(33928,169595,9,'editor',NULL,NULL),(34091,334370,10,'writer','based on the story by',NULL),(34091,70361,1,'actor',NULL,'[\"Robert Benchley\"]'),(34091,317519,2,'actress',NULL,'[\"Doris (Studio Artist)\"]'),(34091,672576,3,'actor',NULL,'[\"Humphrey (Studio Guide)\"]'),(34091,117194,4,'actress',NULL,'[\"Mrs. Benchley\"]'),(34091,921288,5,'director',NULL,NULL),(34091,527217,6,'director',NULL,NULL),(34091,194018,7,'director',NULL,NULL),(34091,412650,8,'director',NULL,NULL),(34091,455741,9,'director',NULL,NULL),(34175,901629,10,'writer','collaborator for adaptation',NULL),(34175,74,1,'actress',NULL,'[\"Poppy\"]'),(34175,404158,2,'actor',NULL,'[\"Sir Guy Charteris\"]'),(34175,1514,3,'actor',NULL,'[\"Doctor Omar\"]'),(34175,613262,4,'actress',NULL,'[\"\'Mother\' Gin Sling\"]'),(34175,903049,5,'director',NULL,NULL),(34175,378773,6,'writer','collaborator for adaptation',NULL),(34175,299154,7,'writer','collaborator for adaptation',NULL),(34175,173303,8,'writer','play',NULL),(34175,128906,9,'writer',NULL,NULL),(34240,566948,1,'actor',NULL,'[\"John L. Sullivan\"]'),(34240,43,2,'actress',NULL,'[\"The Girl\"]'),(34240,913094,3,'actor',NULL,'[\"Mr. LeBrand\"]'),(34240,218131,4,'actor',NULL,'[\"Mr. Jones\"]'),(34240,2545,5,'director',NULL,NULL),(34240,103475,6,'composer',NULL,NULL),(34240,795640,7,'composer',NULL,NULL),(34240,5870,8,'cinematographer','director of photography',NULL),(34240,319574,9,'editor',NULL,NULL),(34241,334986,10,'writer','contributing writer',NULL),(34241,377012,1,'actress',NULL,'[\"Karen Benson\"]'),(34241,668361,2,'actor',NULL,'[\"Ted Scott\"]'),(34241,1895,3,'actor',NULL,'[\"Phil Corey\"]'),(34241,926,4,'actor',NULL,'[\"Nifty Allen\"]'),(34241,401680,5,'director',NULL,NULL),(34241,252,6,'writer','screen play by',NULL),(34241,517567,7,'writer','screen play by',NULL),(34241,37734,8,'writer','story by',NULL),(34241,361837,9,'writer','story by',NULL),(34248,77,10,'composer',NULL,NULL),(34248,26,1,'actor',NULL,'[\"Johnnie Aysgarth\"]'),(34248,21,2,'actress',NULL,'[\"Lina McLaidlaw\"]'),(34248,362567,3,'actor',NULL,'[\"General McLaidlaw\"]'),(34248,115558,4,'actor',NULL,'[\"Beaky\"]'),(34248,33,5,'director',NULL,NULL),(34248,710723,6,'writer','screen play',NULL),(34248,365661,7,'writer','screen play',NULL),(34248,720904,8,'writer','screen play',NULL),(34248,75324,9,'writer','novel \"Before the Fact\"',NULL),(34328,718106,10,'producer','producer',NULL),(34328,1256,1,'actress',NULL,'[\"Karin Blake\"]'),(34328,2048,2,'actor',NULL,'[\"Larry Blake\"]'),(34328,909,3,'actress',NULL,'[\"Griselda Vaughn\"]'),(34328,950019,4,'actor',NULL,'[\"O.O. Miller\"]'),(34328,2030,5,'director',NULL,NULL),(34328,67103,6,'writer','original screenplay',NULL),(34328,826554,7,'writer','original screenplay',NULL),(34328,649183,8,'writer','original screenplay',NULL),(34328,298080,9,'writer','suggested by a play by',NULL),(34398,509,10,'actor',NULL,'[\"Bela\"]'),(34398,1647,1,'actor',NULL,'[\"Sir John Talbot\"]'),(34398,929925,2,'actor',NULL,'[\"Dr. Lloyd\"]'),(34398,1033,3,'actor',NULL,'[\"Lawrence Talbot\",\"The Wolf Man\"]'),(34398,897,4,'actor',NULL,'[\"Colonel Montford\"]'),(34398,905729,5,'director',NULL,NULL),(34398,802561,6,'writer','original screenplay',NULL),(34398,884252,7,'cinematographer','director of photography',NULL),(34398,448867,8,'editor','film editor',NULL),(34398,461549,9,'actor',NULL,'[\"Frank Andrews\"]'),(34492,766402,10,'director','sequence director',NULL),(34492,17013,1,'actor',NULL,'[\"Adolescent Bambi\"]'),(34492,18755,2,'actor',NULL,'[\"Young Flower\"]'),(34492,1027883,3,'actress',NULL,NULL),(34492,66951,4,'actor',NULL,'[\"Young Thumper\"]'),(34492,19282,5,'director','sequence director',NULL),(34492,35899,6,'director','sequence director',NULL),(34492,359457,7,'director','supervising director',NULL),(34492,373871,8,'director','sequence director',NULL),(34492,730860,9,'director','sequence director',NULL),(34521,486150,10,'composer',NULL,NULL),(34521,509,1,'actor',NULL,'[\"Dr. Melcher - aka Monsieur Colomb\",\"Cell Prisoner\"]'),(34521,54060,2,'actress',NULL,'[\"Alice Saunders\"]'),(34521,671496,3,'actor',NULL,'[\"Dr. Bill Saunders\"]'),(34521,138194,4,'actor',NULL,'[\"Dick Martin\"]'),(34521,631438,5,'director',NULL,NULL),(34521,309567,6,'writer','original story',NULL),(34521,1255711,7,'writer','story \"Black Dragon\"',NULL),(34521,226337,8,'producer','producer',NULL),(34521,441947,9,'producer','producer',NULL),(34583,19706,10,'writer','from a play by',NULL),(34583,7,1,'actor',NULL,'[\"Rick Blaine\"]'),(34583,6,2,'actress',NULL,'[\"Ilsa Lund\"]'),(34583,2134,3,'actor',NULL,'[\"Victor Laszlo\"]'),(34583,1647,4,'actor',NULL,'[\"Captain Louis Renault\"]'),(34583,2031,5,'director',NULL,NULL),(34583,258493,6,'writer','screen play by',NULL),(34583,258525,7,'writer','screen play by',NULL),(34583,462321,8,'writer','screen play by',NULL),(34583,122417,9,'writer','from a play by',NULL),(34587,733476,10,'editor',NULL,NULL),(34587,800386,1,'actress',NULL,'[\"Irena Dubrovna Reed\"]'),(34587,7218,2,'actor',NULL,'[\"Dr. Louis Judd\"]'),(34587,808949,3,'actor',NULL,'[\"Oliver Reed\"]'),(34587,709905,4,'actress',NULL,'[\"Alice Moore\"]'),(34587,869664,5,'director',NULL,NULL),(34587,90840,6,'writer','written by',NULL),(34587,507932,7,'producer','producer',NULL),(34587,2202,8,'composer',NULL,NULL),(34587,2228,9,'cinematographer','director of photography',NULL),(34591,357310,10,'editor',NULL,NULL),(34591,753479,1,'actor',NULL,'[\"Shuhei Horikawa\"]'),(34591,762966,2,'actor',NULL,'[\"Ryohei Horikawa\"]'),(34591,754955,3,'actor',NULL,'[\"Yasutaro Kurokawa\"]'),(34591,757104,4,'actor',NULL,'[\"Makoto Hirata\"]'),(34591,654868,5,'director',NULL,NULL),(34591,407456,6,'writer',NULL,NULL),(34591,945868,7,'writer',NULL,NULL),(34591,756518,8,'composer',NULL,NULL),(34591,40916,9,'cinematographer',NULL,NULL),(34613,441947,10,'producer','producer',NULL),(34613,509,1,'actor',NULL,'[\"Dr. Lorenz\"]'),(34613,910294,2,'actress',NULL,'[\"Patricia Hunter\"]'),(34613,168939,3,'actor',NULL,'[\"Dr. Foster\"]'),(34613,751131,4,'actress',NULL,'[\"Countess Lorenz\"]'),(34613,289297,5,'director',NULL,NULL),(34613,732325,6,'writer','original story',NULL),(34613,774205,7,'writer','original story',NULL),(34613,309567,8,'writer','screenplay',NULL),(34613,226337,9,'producer','producer',NULL),(34746,6085,10,'producer','producer',NULL),(34746,23,1,'actress',NULL,'[\"Jo Hayden\"]'),(34746,614278,2,'actor',NULL,'[\"Jimmy K. Metcalf\"]'),(34746,37,3,'actor',NULL,'[\"Harry Palmer\"]'),(34746,250964,4,'actress',NULL,'[\"Eve Minard\"]'),(34746,923,5,'director',NULL,NULL),(34746,736911,6,'writer','story',NULL),(34746,792553,7,'writer','screenplay',NULL),(34746,277943,8,'writer','screenplay',NULL),(34746,799015,9,'writer','screenplay',NULL),(34770,5835,10,'cinematographer','director of photography',NULL),(34770,1766,1,'actress',NULL,'[\"Fiona Gaylord\"]'),(34770,107575,2,'actor',NULL,'[\"Charles Barclay\"]'),(34770,280242,3,'actress',NULL,'[\"Lady Evelyn Burton\"]'),(34770,187981,4,'actor',NULL,'[\"Ralph Pedloch\"]'),(34770,710924,5,'director',NULL,NULL),(34770,168829,6,'writer','screen play',NULL),(34770,519487,7,'writer','novel',NULL),(34770,87533,8,'producer','producer',NULL),(34770,70,9,'composer',NULL,NULL),(34882,2616,10,'writer','screenplay',NULL),(34882,531776,1,'actress',NULL,'[\"Anna\",\"Brigitta\"]'),(34882,248904,2,'actor',NULL,'[\"Count Palaffi\"]'),(34882,2143,3,'actor',NULL,'[\"Peter\"]'),(34882,1931,4,'actress',NULL,'[\"Peggy\"]'),(34882,886754,5,'director',NULL,NULL),(34882,215877,6,'director',NULL,NULL),(34882,903160,7,'writer','play \"Angyalt Vettem Felesegul\"',NULL),(34882,6256,8,'writer','musical adaptation for play',NULL),(34882,366414,9,'writer','musical adaptation for play',NULL),(35015,5673,10,'cinematographer',NULL,NULL),(35015,392529,1,'actor',NULL,'[\"George Minafer\"]'),(35015,1072,2,'actor',NULL,'[\"Eugene Morgan\"]'),(35015,182537,3,'actress',NULL,'[\"Isabel Amberson Minafer\"]'),(35015,879,4,'actress',NULL,'[\"Lucy Morgan\"]'),(35015,80,5,'director',NULL,NULL),(35015,281381,6,'director',NULL,NULL),(35015,936404,7,'director',NULL,NULL),(35015,850483,8,'writer','from the novel by',NULL),(35015,608986,9,'writer','additional scenes',NULL),(35017,28352,10,'production_designer',NULL,NULL),(35017,294382,1,'actor',NULL,'[\"Roland Brissot\"]'),(35017,311185,2,'actress',NULL,'[\"Irène\"]'),(35017,740696,3,'actor',NULL,'[\"Mélisse\"]'),(35017,768251,4,'actor',NULL,'[\"Gibelin\"]'),(35017,869665,5,'director',NULL,NULL),(35017,237836,6,'writer','screenplay',NULL),(35017,626298,7,'writer','novel',NULL),(35017,241483,8,'composer',NULL,NULL),(35017,5901,9,'cinematographer',NULL,NULL),(35019,6040,10,'composer',NULL,NULL),(35019,1677,1,'actress',NULL,'[\"Susan Applegate\"]'),(35019,1537,2,'actor',NULL,'[\"Major Philip Kirby\"]'),(35019,426089,3,'actress',NULL,'[\"Pamela Hill\"]'),(35019,70361,4,'actor',NULL,'[\"Albert Osborne\"]'),(35019,697,5,'director',NULL,NULL),(35019,102818,6,'writer','written by',NULL),(35019,139321,7,'writer','suggested by a play by',NULL),(35019,452932,8,'writer','from a story by',NULL),(35019,394967,9,'producer','producer',NULL),(35093,835369,10,'writer','based on the book by',NULL),(35093,2093,1,'actress',NULL,'[\"Mrs. Miniver\"]'),(35093,682074,2,'actor',NULL,'[\"Clem Miniver\"]'),(35093,942863,3,'actress',NULL,'[\"Carol Beldon\"]'),(35093,926599,4,'actress',NULL,'[\"Lady Beldon\"]'),(35093,943758,5,'director',NULL,NULL),(35093,934497,6,'writer','screenplay',NULL),(35093,296207,7,'writer','screenplay',NULL),(35093,385264,8,'writer','screenplay',NULL),(35093,921995,9,'writer','screenplay',NULL),(35140,5835,10,'cinematographer','director of photography',NULL),(35140,12,1,'actress',NULL,'[\"Charlotte Vale\"]'),(35140,2134,2,'actor',NULL,'[\"Jeremiah (Jerry) Durrance\"]'),(35140,1647,3,'actor',NULL,'[\"Dr. Jaquith\"]'),(35140,178066,4,'actress',NULL,'[\"Mrs. Henry Vale\"]'),(35140,710924,5,'director',NULL,NULL),(35140,732452,6,'writer','screenplay',NULL),(35140,698989,7,'writer','from the novel by',NULL),(35140,909259,8,'producer','producer',NULL),(35140,70,9,'composer',NULL,NULL),(35160,603179,10,'writer',NULL,NULL),(35160,129278,1,'actress',NULL,'[\"Giovanna Bragana\"]'),(35160,320988,2,'actor',NULL,'[\"Gino Costa\"]'),(35160,188096,3,'actress',NULL,'[\"Anita\"]'),(35160,546222,4,'actor',NULL,'[\"Lo spagnolo\"]'),(35160,899581,5,'director',NULL,NULL),(35160,19563,6,'writer','screenplay & dialogue',NULL),(35160,211459,7,'writer','screenplay & dialogue',NULL),(35160,699750,8,'writer','screenplay & dialogue',NULL),(35160,128906,9,'writer','novel \"The Postman Always Rings Twice\"',NULL),(35279,884252,10,'cinematographer','director of photography',NULL),(35279,485509,1,'actress',NULL,'[\"Patricia (Pat) Martin\"]'),(35279,191950,2,'actor',NULL,'[\"Barry Kane\"]'),(35279,472603,3,'actor',NULL,'[\"Charles Tobin\"]'),(35279,62667,4,'actor',NULL,'[\"Freeman\"]'),(35279,33,5,'director',NULL,NULL),(35279,896830,6,'writer','original screen play',NULL),(35279,365661,7,'writer','original screen play',NULL),(35279,662213,8,'writer','original screen play',NULL),(35279,804244,9,'composer',NULL,NULL),(35317,804244,10,'composer',NULL,NULL),(35317,1651,1,'actor',NULL,'[\"Sherlock Holmes\"]'),(35317,115558,2,'actor',NULL,'[\"Doctor Watson\"]'),(35317,41172,3,'actor',NULL,'[\"Moriarty (as Moriarity)\"]'),(35317,894524,4,'actress',NULL,'[\"Charlotte Eberli\"]'),(35317,624756,5,'director',NULL,NULL),(35317,522871,6,'writer','screenplay',NULL),(35317,201405,7,'writer','screenplay',NULL),(35317,367060,8,'writer','screenplay',NULL),(35317,236279,9,'writer','story \"The Dancing Men\"',NULL),(35360,587926,10,'cinematographer','director of photography',NULL),(35360,61,1,'actor',NULL,'[\"Benjamin Blake\"]'),(35360,74,2,'actress',NULL,'[\"Eve\"]'),(35360,1695,3,'actor',NULL,'[\"Sir Arthur Blake\"]'),(35360,2068,4,'actress',NULL,'[\"Isabel\"]'),(35360,188669,5,'director',NULL,NULL),(35360,242897,6,'writer','screenplay',NULL),(35360,550861,7,'writer','novel \"Benjamin Blake\"',NULL),(35360,953123,8,'producer','producer',NULL),(35360,55,9,'composer',NULL,NULL),(35415,132180,10,'writer','original story and screenplay',NULL),(35415,964,1,'actor',NULL,'[\"Paul Orman\"]'),(35415,28,2,'actress',NULL,'[\"Ethel Halloway\"]'),(35415,1677,3,'actress',NULL,'[\"Diane\"]'),(35415,20,4,'actor',NULL,'[\"George\"]'),(35415,245213,5,'director',NULL,NULL),(35415,372942,6,'writer','original story and screenplay',NULL),(35415,597175,7,'writer','original story and screenplay',NULL),(35415,829330,8,'writer','original story and screenplay',NULL),(35415,388755,9,'writer','original story and screenplay',NULL),(35423,107463,10,'editor',NULL,NULL),(35423,212,1,'actress',NULL,'[\"Kate McKay\"]'),(35423,413168,2,'actor',NULL,'[\"Leopold\"]'),(35423,630,3,'actor',NULL,'[\"Stuart Besser\"]'),(35423,5227,4,'actor',NULL,'[\"Charlie McKay\"]'),(35423,3506,5,'director',NULL,NULL),(35423,737216,6,'writer','story',NULL),(35423,465298,7,'producer','producer',NULL),(35423,448843,8,'composer',NULL,NULL),(35423,238698,9,'cinematographer',NULL,NULL),(35446,817929,10,'editor','film editor',NULL),(35446,1479,1,'actress',NULL,'[\"Maria Tura\"]'),(35446,912,2,'actor',NULL,'[\"Joseph Tura\"]'),(35446,821041,3,'actor',NULL,'[\"Lieutenant Stanislav Sobinski\"]'),(35446,107795,4,'actor',NULL,'[\"Greenberg\"]'),(35446,523932,5,'director',NULL,NULL),(35446,501872,6,'writer','original story',NULL),(35446,562372,7,'writer','screenplay',NULL),(35446,6128,8,'composer',NULL,NULL),(35446,5789,9,'cinematographer',NULL,NULL),(35567,77,10,'composer',NULL,NULL),(35567,75,1,'actor',NULL,'[\"Sam Craig\"]'),(35567,31,2,'actress',NULL,'[\"Tess Harding\"]'),(35567,47810,3,'actress',NULL,'[\"Ellen Whitcomb\"]'),(35567,654239,4,'actor',NULL,'[\"Clayton\"]'),(35567,828419,5,'director',NULL,NULL),(35567,488057,6,'writer','original screen play',NULL),(35567,437720,7,'writer','original screen play',NULL),(35567,536941,8,'writer','contributing writer',NULL),(35567,581,9,'producer','producer',NULL),(35636,13221,10,'cinematographer',NULL,NULL),(35636,269197,1,'actress',NULL,'[\"Anne-Marie Lamaury\"]'),(35636,392447,2,'actress',NULL,'[\"Thérèse\"]'),(35636,843294,3,'actress',NULL,'[\"La prieure\"]'),(35636,664186,4,'actress',NULL,'[\"Madeleine\"]'),(35636,975,5,'director',NULL,NULL),(35636,115657,6,'writer','scenario',NULL),(35636,320824,7,'writer','dialogue',NULL),(35636,724858,8,'producer','producer',NULL),(35636,198398,9,'composer',NULL,NULL),(35735,869860,10,'cinematographer','director of photography',NULL),(35735,949835,1,'actress',NULL,'[\"Carolyn Grant\"]'),(35735,42,2,'actor',NULL,'[\"David Jones\"]'),(35735,904,3,'actor',NULL,'[\"Johnny Sparrow\"]'),(35735,14217,4,'actor',NULL,'[\"Lin Cho, First Brother\"]'),(35735,268513,5,'director',NULL,NULL),(35735,1065132,6,'writer','play \"Fourth Brother\"',NULL),(35735,124918,7,'writer','screenplay',NULL),(35735,89838,8,'producer','producer',NULL),(35735,82,9,'composer',NULL,NULL),(35753,294382,1,'actor',NULL,'[\"Le docteur Rémy Germain\"]'),(35753,496185,2,'actress',NULL,'[\"Denise Saillens\"]'),(35753,289932,3,'actress',NULL,'[\"Laura Vorzet\"]'),(35753,543924,4,'actress',NULL,'[\"Marie Corbin - l\'infirmière\"]'),(35753,167241,5,'director',NULL,NULL),(35753,154438,6,'writer','scenario',NULL),(35753,41355,7,'composer',NULL,NULL),(35753,370865,8,'cinematographer',NULL,NULL),(35770,5945,10,'composer',NULL,NULL),(35770,837925,1,'actress',NULL,'[\"Lieutenant Smith\"]'),(35770,815433,2,'actress',NULL,'[\"Pat\"]'),(35770,951,3,'actress',NULL,'[\"Grace Lambert\"]'),(35770,47810,4,'actress',NULL,'[\"Captain Marsh\"]'),(35770,861703,5,'director',NULL,NULL),(35770,651585,6,'writer','screenplay',NULL),(35770,448939,7,'writer','play',NULL),(35770,613848,8,'writer','contributing writer',NULL),(35770,461348,9,'producer','producer',NULL),(35881,225710,1,'actor',NULL,'[\"Walters\"]'),(35881,336377,2,'actor',NULL,'[\"Dykes\"]'),(35881,341673,3,'actor',NULL,'[\"Johnny Daniels\"]'),(35881,396453,4,'actor',NULL,'[\"S.H. Jackson\"]'),(35881,421165,5,'director',NULL,NULL),(35881,198202,6,'producer','producer',NULL),(35881,5944,7,'composer',NULL,NULL),(35881,5826,8,'cinematographer',NULL,NULL),(35881,564005,9,'editor',NULL,NULL),(35942,455510,10,'writer','contributing writer',NULL),(35942,1682,1,'actor',NULL,'[\"Danny Churchill Jr.\"]'),(35942,23,2,'actress',NULL,'[\"Ginger Gray\"]'),(35942,833645,3,'actor',NULL,'[\"Bud Livermore\"]'),(35942,834396,4,'actor',NULL,'[\"Henry Lathrop\"]'),(35942,851537,5,'director',NULL,NULL),(35942,923,6,'director',NULL,NULL),(35942,277943,7,'writer','screenplay',NULL),(35942,93397,8,'writer','musical play',NULL),(35942,569650,9,'writer','musical play',NULL),(35957,5987,10,'composer',NULL,NULL),(35957,288003,1,'actor',NULL,'[\"Father Donnelly\"]'),(35957,634313,2,'actor',NULL,'[\"Sgt. Hook Malone\"]'),(35957,904,3,'actor',NULL,'[\"Cpl. Taxi Potts\"]'),(35957,2017,4,'actor',NULL,'[\"Capt. Davis\"]'),(35957,782597,5,'director',NULL,NULL),(35957,871730,6,'writer','by',NULL),(35957,873707,7,'writer','screenplay',NULL),(35957,128332,8,'writer','adaptation',NULL),(35957,289381,9,'producer','producer',NULL),(35979,817929,10,'editor',NULL,NULL),(35979,74,1,'actress',NULL,'[\"Martha Strabel Van Cleve\"]'),(35979,747,2,'actor',NULL,'[\"Henry Van Cleve\"]'),(35979,2013,3,'actor',NULL,'[\"Hugo Van Cleve\"]'),(35979,537685,4,'actress',NULL,'[\"Mrs. Strabel\"]'),(35979,523932,5,'director',NULL,NULL),(35979,710723,6,'writer','screenplay',NULL),(35979,124224,7,'writer','play \"Birthday\"',NULL),(35979,55,8,'composer',NULL,NULL),(35979,5676,9,'cinematographer','director of photography',NULL),(36027,507932,10,'producer','producer',NULL),(36027,214168,1,'actress',NULL,'[\"Betsy Connell\"]'),(36027,7218,2,'actor',NULL,'[\"Paul Holland\"]'),(36027,255199,3,'actor',NULL,'[\"Wesley Rand\"]'),(36027,57121,4,'actress',NULL,'[\"Mrs. Rand\"]'),(36027,869664,5,'director',NULL,NULL),(36027,802561,6,'writer','screen play',NULL),(36027,942027,7,'writer','screen play',NULL),(36027,908681,8,'writer','original story',NULL),(36027,111576,9,'writer','novel \"Jane Eyre\"',NULL),(36112,432613,10,'production_designer',NULL,NULL),(36112,515193,1,'actor',NULL,'[\"Clive Candy\"]'),(36112,39,2,'actress',NULL,'[\"Edith Hunter\",\"Barbara Wynne\",\"Angela \'Johnny\' Cannon\"]'),(36112,906932,3,'actor',NULL,'[\"Theo Kretschmar-Schuldorff\"]'),(36112,571129,4,'actor',NULL,'[\"Spud Wilson\"]'),(36112,3836,5,'director',NULL,NULL),(36112,696247,6,'director',NULL,NULL),(36112,336434,7,'composer',NULL,NULL),(36112,5838,8,'cinematographer',NULL,NULL),(36112,780385,9,'editor',NULL,NULL),(36160,213164,10,'editor',NULL,NULL),(36160,733540,1,'actress',NULL,'[\"Celia Crowson\"]'),(36160,692439,2,'actor',NULL,'[\"Charlie Forbes\"]'),(36160,413561,3,'actor',NULL,'[\"Fred Blake\"]'),(36160,186700,4,'actress',NULL,'[\"Jennifer Knowles\"]'),(36160,319148,5,'director',NULL,NULL),(36160,490950,6,'director',NULL,NULL),(36160,85261,7,'producer','producer',NULL),(36160,185055,8,'cinematographer',NULL,NULL),(36160,283977,9,'cinematographer',NULL,NULL),(36172,437717,10,'writer','contributor to story',NULL),(36172,795,1,'actress',NULL,'[\"Connie Milligan\"]'),(36172,566948,2,'actor',NULL,'[\"Joe Carter\"]'),(36172,2013,3,'actor',NULL,'[\"Benjamin Dingle\"]'),(36172,301348,4,'actor',NULL,'[\"Charles J. Pendergast\"]'),(36172,828419,5,'director',NULL,NULL),(36172,751417,6,'writer','screen play',NULL),(36172,743407,7,'writer','screen play',NULL),(36172,283133,8,'writer','screen play',NULL),(36172,287931,9,'writer','screen play',NULL),(36230,77,10,'composer',NULL,NULL),(36230,12,1,'actress',NULL,'[\"Katherine \'Kit\' Marlowe\"]'),(36230,394244,2,'actress',NULL,'[\"Mildred \'Millie\' Drake\"]'),(36230,949574,3,'actor',NULL,'[\"Rudd Kendall\"]'),(36230,517058,4,'actor',NULL,'[\"Preston Drake\"]'),(36230,792605,5,'director',NULL,NULL),(36230,886668,6,'writer','screenplay',NULL),(36230,168829,7,'writer','screenplay',NULL),(36230,332539,8,'writer','contributor to screenplay',NULL),(36230,87533,9,'producer','producer',NULL),(36244,573865,10,'editor','film editor',NULL),(36244,20,1,'actor',NULL,'[\"Gil Carter\"]'),(36244,763,2,'actor',NULL,'[\"Donald Martin\"]'),(36244,400794,3,'actress',NULL,'[\"Rose Mapen\"]'),(36244,63,4,'actor',NULL,'[\"Juan Martínez\"]'),(36244,920074,5,'director',NULL,NULL),(36244,873707,6,'writer','written for the screen by',NULL),(36244,888099,7,'writer','from the novel by',NULL),(36244,6203,8,'composer',NULL,NULL),(36244,587926,9,'cinematographer','director of photography',NULL),(36323,67,10,'composer',NULL,NULL),(36323,7,1,'actor',NULL,'[\"Sgt. Joe Gunn\"]'),(36323,71636,2,'actor',NULL,'[\"Waco Hoyt\"]'),(36323,619798,3,'actor',NULL,'[\"Giuseppe\"]'),(36323,978,4,'actor',NULL,'[\"Fred Clarkson\"]'),(36323,466113,5,'director',NULL,NULL),(36323,493251,6,'writer','screenplay',NULL),(36323,641199,7,'writer','adaptation',NULL),(36323,531878,8,'writer','story: based on an incident in the Soviet photoplay, \"THE THIRTEEN\"',NULL),(36323,118227,9,'writer',NULL,NULL),(36326,780799,10,'writer','story research',NULL),(36326,793195,1,'actor',NULL,'[\"Narrator\"]'),(36326,647057,2,'actor',NULL,'[\"José *Joe\' Carioca\"]'),(36326,86293,3,'actor',NULL,'[\"Lee Blair\"]'),(36326,86304,4,'actress',NULL,'[\"Mary Blair\"]'),(36326,414144,5,'director','sequence director',NULL),(36326,455741,6,'director','sequence director',NULL),(36326,527217,7,'director','sequence director',NULL),(36326,730860,8,'director','sequence director',NULL),(36326,272568,9,'director','supervising director',NULL),(36341,2228,10,'cinematographer','director of photography',NULL),(36341,1375,1,'actress',NULL,'[\"Mary Gibson\"]'),(36341,7218,2,'actor',NULL,'[\"Dr. Louis Judd\"]'),(36341,112046,3,'actress',NULL,'[\"Jacqueline Gibson\"]'),(36341,422436,4,'actress',NULL,'[\"Frances Fallon\"]'),(36341,733476,5,'director',NULL,NULL),(36341,641885,6,'writer','written by',NULL),(36341,90840,7,'writer','written by',NULL),(36341,507932,8,'producer','producer',NULL),(36341,2202,9,'composer',NULL,NULL),(36342,804382,10,'producer','producer',NULL),(36342,942863,1,'actress',NULL,'[\"Charlie Newton\"]'),(36342,1072,2,'actor',NULL,'[\"Charlie Oakley\"]'),(36342,136994,3,'actor',NULL,'[\"Jack Graham\"]'),(36342,871287,4,'actor',NULL,'[\"Joseph Newton\"]'),(36342,33,5,'director',NULL,NULL),(36342,928642,6,'writer','screenplay',NULL),(36342,72639,7,'writer','screenplay',NULL),(36342,720904,8,'writer','screenplay',NULL),(36342,568060,9,'writer','from an original story by',NULL),(36363,376179,10,'producer','producer',NULL),(36363,1,1,'actor',NULL,'[\"Fred Atwell aka Fred Burton\"]'),(36363,504125,2,'actress',NULL,'[\"Joan Manion\"]'),(36363,70361,3,'actor',NULL,'[\"Phil Harriman\"]'),(36363,752813,4,'actor',NULL,'[\"Reginald Fenton\"]'),(36363,341486,5,'director',NULL,NULL),(36363,272045,6,'writer','original screenplay',NULL),(36363,740528,7,'writer','original screenplay',NULL),(36363,491076,8,'writer',NULL,NULL),(36363,753158,9,'writer','story',NULL),(36367,387449,10,'editor',NULL,NULL),(36367,1055,1,'actress',NULL,'[\"Lt. Janet \'Davy\' Davidson\"]'),(36367,2104,2,'actress',NULL,'[\"Lt. Joan O\'Doul\"]'),(36367,43,3,'actress',NULL,'[\"Lt. Olivia D\'Arcy\"]'),(36367,1660,4,'actor',NULL,'[\"Lt. John Summers\"]'),(36367,762263,5,'director',NULL,NULL),(36367,778818,6,'writer','written by',NULL),(36367,368807,7,'writer','contributor to story',NULL),(36367,67,8,'composer',NULL,NULL),(36367,485702,9,'cinematographer','director of photography',NULL),(36400,331834,10,'editor',NULL,NULL),(36400,645676,1,'actor',NULL,'[\"Shogoro Yano\"]'),(36400,297843,2,'actor',NULL,'[\"Sanshiro Sugata\"]'),(36400,865372,3,'actress',NULL,'[\"Sayo Murai\"]'),(36400,875370,4,'actor',NULL,'[\"Gennosuke Higaki\"]'),(36400,41,5,'director',NULL,NULL),(36400,866744,6,'writer','novel',NULL),(36400,559700,7,'producer','producer',NULL),(36400,840668,8,'composer',NULL,NULL),(36400,590832,9,'cinematographer',NULL,NULL),(36418,343481,10,'editor',NULL,NULL),(36418,1677,1,'actress',NULL,'[\"Jo Jones\"]'),(36418,752813,2,'actor',NULL,'[\"Chris Jones\"]'),(36418,404046,3,'actress',NULL,'[\"Barbara Thomas\"]'),(36418,172048,4,'actress',NULL,'[\"Helen Stacey\"]'),(36418,229424,5,'director',NULL,NULL),(36418,874308,6,'writer','written by',NULL),(36418,376179,7,'producer','producer',NULL),(36418,363316,8,'composer',NULL,NULL),(36418,5797,9,'cinematographer','director of photography',NULL),(36506,740463,1,'actor',NULL,'[\"Rev. Absalon Pederssøn\"]'),(36506,610228,2,'actress',NULL,'[\"Anne Pedersdotter (Absalon\'s second wife)\"]'),(36506,624653,3,'actress',NULL,'[\"Merete (Absalon\'s mother)\"]'),(36506,28249,4,'actress',NULL,NULL),(36506,3433,5,'director',NULL,NULL),(36506,461743,6,'writer',NULL,NULL),(36506,478479,7,'writer','hymns',NULL),(36506,804736,8,'writer',NULL,NULL),(36506,927558,9,'writer','play \"Anne Pedersdotter\"',NULL),(36515,5719,10,'cinematographer','director of photography',NULL),(36515,12,1,'actress',NULL,'[\"Sara Muller\"]'),(36515,510134,2,'actor',NULL,'[\"Kurt Muller\"]'),(36515,280242,3,'actress',NULL,'[\"Marthe de Brancovis\"]'),(36515,914778,4,'actress',NULL,'[\"Fanny Farrelly\"]'),(36515,795864,5,'director',NULL,NULL),(36515,5803,6,'director',NULL,NULL),(36515,358591,7,'writer','screen play',NULL),(36515,375484,8,'writer','additional scenes and dialogue',NULL),(36515,70,9,'composer',NULL,NULL),(36613,5835,10,'cinematographer','director of photography',NULL),(36613,26,1,'actor',NULL,'[\"Mortimer Brewster\"]'),(36613,485509,2,'actress',NULL,'[\"Elaine Harper\"]'),(36613,557339,3,'actor',NULL,'[\"Jonathan Brewster\"]'),(36613,7217,4,'actor',NULL,'[\"O\'Hara\"]'),(36613,1008,5,'director',NULL,NULL),(36613,258493,6,'writer','screen play',NULL),(36613,258525,7,'writer','screen play',NULL),(36613,450279,8,'writer','play',NULL),(36613,70,9,'composer',NULL,NULL),(36695,432613,10,'production_designer',NULL,NULL),(36695,692439,1,'actor',NULL,'[\"Thomas Colpeper, JP\"]'),(36695,799257,2,'actress',NULL,'[\"Alison Smith\"]'),(36695,696866,3,'actor',NULL,'[\"Peter Gibbs\"]'),(36695,842302,4,'actor',NULL,'[\"Bob Johnson\"]'),(36695,3836,5,'director',NULL,NULL),(36695,696247,6,'director',NULL,NULL),(36695,336434,7,'composer',NULL,NULL),(36695,2915,8,'cinematographer',NULL,NULL),(36695,780385,9,'editor',NULL,NULL),(36723,434528,10,'writer',NULL,NULL),(36723,28,1,'actress',NULL,'[\"Rusty Parker\",\"Maribelle Hicks\"]'),(36723,37,2,'actor',NULL,'[\"Danny McGuire\"]'),(36723,101350,3,'actor',NULL,'[\"Noel Wheaton\"]'),(36723,799014,4,'actor',NULL,'[\"Genius\"]'),(36723,896533,5,'director',NULL,NULL),(36723,888144,6,'writer','screenplay',NULL),(36723,663763,7,'writer','adaptation',NULL),(36723,304321,8,'writer','adaptation',NULL),(36723,312510,9,'writer','story',NULL),(36775,534045,1,'actor',NULL,'[\"Walter Neff\"]'),(36775,1766,2,'actress',NULL,'[\"Phyllis Dietrichson\"]'),(36775,64,3,'actor',NULL,'[\"Barton Keyes\"]'),(36775,56477,4,'actor',NULL,'[\"Nino Zachetti\"]'),(36775,697,5,'director',NULL,NULL),(36775,151452,6,'writer','screenplay',NULL),(36775,128906,7,'writer','from the novel by',NULL),(36775,67,8,'composer',NULL,NULL),(36775,5870,9,'cinematographer','director of photography',NULL),(36818,376264,10,'actor',NULL,'[\"Professor Bömmel\"]'),(36818,4464,1,'actor',NULL,'[\"Dr. Johannes Pfeiffer\",\"Hans Pfeiffer\"]'),(36818,385381,2,'actress',NULL,'[\"Eva Knauer\"]'),(36818,785919,3,'actress',NULL,'[\"Marion\"]'),(36818,690691,4,'actor',NULL,'[\"Professor Crey - called Schnauz\"]'),(36818,919012,5,'director',NULL,NULL),(36818,819293,6,'writer','novel and screenplay',NULL),(36818,5968,7,'composer',NULL,NULL),(36818,202209,8,'cinematographer',NULL,NULL),(36818,379294,9,'production_designer',NULL,NULL),(36868,5904,10,'cinematographer','director of photography',NULL),(36868,1485,1,'actress',NULL,'[\"Milly Stephenson\"]'),(36868,763,2,'actor',NULL,'[\"Fred Derry\"]'),(36868,545298,3,'actor',NULL,'[\"Al Stephenson\"]'),(36868,942863,4,'actress',NULL,'[\"Peggy Stephenson\"]'),(36868,943758,5,'director',NULL,NULL),(36868,792845,6,'writer','screen play',NULL),(36868,437969,7,'writer','from a novel by',NULL),(36868,326418,8,'producer','producer',NULL),(36868,6087,9,'composer',NULL,NULL),(36891,666201,10,'actress',NULL,'[\"Aunt Martha\"]'),(36891,102787,1,'actor',NULL,'[\"Woodrow Truesmith\"]'),(36891,707048,2,'actress',NULL,'[\"Libby\"]'),(36891,906940,3,'actor',NULL,'[\"Mayor Everett J. Noble\"]'),(36891,218131,4,'actor',NULL,'[\"Sgt. Heffelfinger\"]'),(36891,2545,5,'director',NULL,NULL),(36891,6128,6,'composer',NULL,NULL),(36891,5870,7,'cinematographer','director of photography',NULL),(36891,319574,8,'editor',NULL,NULL),(36891,659427,9,'actor',NULL,'[\"Reception Committee Chairman\"]'),(36914,90956,10,'cinematographer',NULL,NULL),(36914,433512,1,'actor',NULL,'[\"Caligula\"]'),(36914,458033,2,'actor',NULL,'[\"Jan-Erik Widgren\"]'),(36914,955195,3,'actress',NULL,'[\"Bertha Olsson\"]'),(36914,935389,4,'actor',NULL,'[\"The Headmaster\"]'),(36914,803549,5,'director',NULL,NULL),(36914,5,6,'writer',NULL,NULL),(36914,596411,7,'producer','producer',NULL),(36914,803705,8,'producer','producer',NULL),(36914,742219,9,'composer',NULL,NULL),(36940,5945,10,'composer',NULL,NULL),(36940,1677,1,'actress',NULL,'[\"Mary Marshall\"]'),(36940,1072,2,'actor',NULL,'[\"Zachary Morgan\"]'),(36940,73,3,'actress',NULL,'[\"Barbara Marshall\"]'),(36940,1981,4,'actress',NULL,'[\"Mrs. Marshall\"]'),(36940,226189,5,'director',NULL,NULL),(36940,2030,6,'director',NULL,NULL),(36940,663763,7,'writer','screen play',NULL),(36940,552058,8,'writer','based on a radio play by',NULL),(36940,770196,9,'producer','producer',NULL),(36947,8382,10,'production_designer',NULL,NULL),(36947,793766,1,'actor',NULL,'[\"Chief Goro Ishida\"]'),(36947,457954,2,'actor',NULL,'[\"Soichi Yoshikawa, Chief of General Affairs Section\"]'),(36947,837360,3,'actor',NULL,'[\"Ken Shinda, Chief of Labor Section\"]'),(36947,409960,4,'actress',NULL,'[\"Noriko Mizushima, dorm mother\"]'),(36947,41,5,'director',NULL,NULL),(36947,411726,6,'producer','producer',NULL),(36947,1156625,7,'producer','producer',NULL),(36947,840668,8,'composer',NULL,NULL),(36947,644938,9,'cinematographer',NULL,NULL),(36969,467396,10,'writer',NULL,NULL),(36969,80,1,'actor',NULL,'[\"Edward Rochester\"]'),(36969,21,2,'actress',NULL,'[\"Jane Eyre\"]'),(36969,639684,3,'actress',NULL,'[\"Adele Varens\"]'),(36969,307750,4,'actress',NULL,'[\"Jane Eyre as a Child\"]'),(36969,829038,5,'director',NULL,NULL),(36969,111576,6,'writer','by',NULL),(36969,404717,7,'writer','screen play',NULL),(36969,2144,8,'writer','screen play',NULL),(36969,295786,9,'writer','contributor to screenplay construction',NULL),(37008,488057,10,'writer',NULL,NULL),(37008,74,1,'actress',NULL,'[\"Laura Hunt\"]'),(37008,763,2,'actor',NULL,'[\"Det. Lt. Mark McPherson\"]'),(37008,916067,3,'actor',NULL,'[\"Waldo Lydecker\"]'),(37008,1637,4,'actor',NULL,'[\"Shelby Carpenter\"]'),(37008,695937,5,'director',NULL,NULL),(37008,143837,6,'writer','novel',NULL),(37008,237225,7,'writer','screen play by',NULL),(37008,388755,8,'writer','screen play by',NULL),(37008,718101,9,'writer','screen play by',NULL),(37017,6087,10,'composer',NULL,NULL),(37017,845,1,'actress',NULL,'[\"Connie Porter\"]'),(37017,388303,2,'actor',NULL,'[\"John Kovac\"]'),(37017,805790,3,'actor',NULL,'[\"Willi\"]'),(37017,904,4,'actor',NULL,'[\"Gus Smith\"]'),(37017,33,5,'director',NULL,NULL),(37017,825705,6,'writer','by',NULL),(37017,842485,7,'writer','screen play',NULL),(37017,372942,8,'writer',NULL,NULL),(37017,532284,9,'producer','producer',NULL),(37059,525067,10,'writer',NULL,NULL),(37059,23,1,'actress',NULL,'[\"Esther Smith\"]'),(37059,639684,2,'actress',NULL,'[\"\'Tootie\' Smith\"]'),(37059,802,3,'actress',NULL,'[\"Mrs. Anna Smith\"]'),(37059,107082,4,'actress',NULL,'[\"Rose Smith\"]'),(37059,591486,5,'director',NULL,NULL),(37059,106505,6,'writer','screen play',NULL),(37059,277943,7,'writer','screen play',NULL),(37059,72639,8,'writer','based on the novel by',NULL),(37059,373511,9,'writer',NULL,NULL),(37076,775419,10,'writer','story',NULL),(37076,276196,1,'actor',NULL,'[\"Dixie Boy Johnson\"]'),(37076,313438,2,'actress',NULL,'[\"Mae White\"]'),(37076,3062,3,'actor',NULL,'[\"Lew Dunn\"]'),(37076,439850,4,'actor',NULL,'[\"\'Lasses\' White\"]'),(37076,507390,5,'director',NULL,NULL),(37076,880618,6,'director',NULL,NULL),(37076,291587,7,'writer','screenplay',NULL),(37076,312707,8,'writer','screenplay',NULL),(37076,600755,9,'writer','story',NULL),(37094,5735,10,'cinematographer','director of photography',NULL),(37094,12,1,'actress',NULL,'[\"Fanny Trellis Skeffington\"]'),(37094,1647,2,'actor',NULL,'[\"Job Skeffington\"]'),(37094,8496,3,'actor',NULL,'[\"George Trellis\"]'),(37094,183459,4,'actor',NULL,'[\"Doctor Byles\"]'),(37094,792605,5,'director',NULL,NULL),(37094,258493,6,'writer','screen play',NULL),(37094,258525,7,'writer','screen play',NULL),(37094,901896,8,'writer','from a story by',NULL),(37094,77,9,'composer',NULL,NULL),(37120,75825,10,'producer','producer',NULL),(37120,1682,1,'actor',NULL,'[\"Mi Taylor\"]'),(37120,72,2,'actress',NULL,'[\"Velvet Brown\"]'),(37120,187981,3,'actor',NULL,'[\"Mr. Brown\"]'),(37120,720843,4,'actress',NULL,'[\"Mrs. Brown\"]'),(37120,113284,5,'director',NULL,NULL),(37120,46779,6,'writer','novel \"National Velvet\"',NULL),(37120,716307,7,'writer','screen play',NULL),(37120,222079,8,'writer','screen play',NULL),(37120,227481,9,'writer','contributing writer',NULL),(37280,70,10,'composer',NULL,NULL),(37280,1055,1,'actress',NULL,'[\"Anne Hilton\"]'),(37280,428354,2,'actress',NULL,'[\"Jane Hilton\"]'),(37280,1072,3,'actor',NULL,'[\"Lt. Tony Willett\"]'),(37280,73,4,'actress',NULL,'[\"Brig Hilton\"]'),(37280,188669,5,'director',NULL,NULL),(37280,166836,6,'director',NULL,NULL),(37280,307819,7,'director',NULL,NULL),(37280,6388,8,'director',NULL,NULL),(37280,928603,9,'writer','adaptation',NULL),(37365,728305,10,'producer','producer',NULL),(37365,1635,1,'actor',NULL,'[\"Nick Charles\"]'),(37365,1485,2,'actress',NULL,'[\"Nora Charles\"]'),(37365,914778,3,'actress',NULL,'[\"Mrs. Charles\"]'),(37365,2038,4,'actress',NULL,'[\"Laura Ronson\"]'),(37365,861703,5,'director',NULL,NULL),(37365,728307,6,'writer','screen play',NULL),(37365,852313,7,'writer','screen play',NULL),(37365,475823,8,'writer','from an original story by',NULL),(37365,358591,9,'writer','based on the characters created by',NULL),(37382,150462,10,'writer',NULL,NULL),(37382,7,1,'actor',NULL,'[\"Harry \'Steve\' Morgan\"]'),(37382,2,2,'actress',NULL,'[\"Marie \'Slim\' Browning\"]'),(37382,974,3,'actor',NULL,'[\"Eddie\"]'),(37382,602834,4,'actress',NULL,'[\"Mme. Hellene de Bursac\"]'),(37382,1328,5,'director',NULL,NULL),(37382,2133,6,'writer','novel \"To Have and Have Not\"',NULL),(37382,299154,7,'writer','screen play',NULL),(37382,1203,8,'writer','screen play',NULL),(37382,10850,9,'writer',NULL,NULL),(37415,485702,10,'cinematographer','director of photography',NULL),(37415,1537,1,'actor',NULL,'[\"Roderick Fitzgerald\"]'),(37415,404046,2,'actress',NULL,'[\"Pamela Fitzgerald\"]'),(37415,187981,3,'actor',NULL,'[\"Cmdr. Beech\"]'),(37415,804224,4,'actress',NULL,'[\"Miss Holloway\"]'),(37415,20765,5,'director',NULL,NULL),(37415,807977,6,'writer','screen play',NULL),(37415,664022,7,'writer','screen play',NULL),(37415,531244,8,'writer','novel \"Uneasy Freehold\"',NULL),(37415,82,9,'composer',NULL,NULL),(37469,288761,10,'editor',NULL,NULL),(37469,64,1,'actor',NULL,'[\"Professor Richard Wanley\"]'),(37469,910,2,'actress',NULL,'[\"Alice Reed\"]'),(37469,557339,3,'actor',NULL,'[\"Frank Lalor\"]'),(37469,107631,4,'actor',NULL,'[\"Dr. Michael Barkstane\"]'),(37469,485,5,'director',NULL,NULL),(37469,425913,6,'writer','written for the screen by',NULL),(37469,909260,7,'writer','novel',NULL),(37469,486075,8,'composer',NULL,NULL),(37469,5762,9,'cinematographer','director of photography',NULL),(37508,624316,10,'editor',NULL,NULL),(37508,11,1,'actor',NULL,'[\"Melody Jones\"]'),(37508,949835,2,'actress',NULL,'[\"Cherry de Longpre\"]'),(37508,218131,3,'actor',NULL,'[\"George Fury\"]'),(37508,2053,4,'actor',NULL,'[\"Monte Jarrad\"]'),(37508,374702,5,'director',NULL,NULL),(37508,425913,6,'writer','written by',NULL),(37508,494435,7,'writer','novel \"Useless Cowboy\"',NULL),(37508,486075,8,'composer',NULL,NULL),(37508,5762,9,'cinematographer','director of photography',NULL),(37514,664990,10,'producer','producer',NULL),(37514,69,1,'actor',NULL,'[\"Clarence Doolittle\"]'),(37514,337113,2,'actress',NULL,'[\"Susan Abbott\"]'),(37514,37,3,'actor',NULL,'[\"Joseph Brady\"]'),(37514,411826,4,'actor',NULL,'[\"José Iturbi\"]'),(37514,796645,5,'director',NULL,NULL),(37514,53484,6,'director',NULL,NULL),(37514,360253,7,'director',NULL,NULL),(37514,501973,8,'writer','screen play',NULL),(37514,545731,9,'writer','suggested by a story by',NULL),(37536,1078,1,'actor',NULL,'[\"Father Chuck O\'Malley\"]'),(37536,6,2,'actress',NULL,'[\"Sister Mary Benedict\"]'),(37536,871287,3,'actor',NULL,'[\"Horace P. Bogardus\"]'),(37536,307326,4,'actor',NULL,'[\"Joe Gallagher\"]'),(37536,564970,5,'director',NULL,NULL),(37536,629580,6,'writer','screen play',NULL),(37536,6040,7,'composer',NULL,NULL),(37536,55604,8,'cinematographer','director of photography',NULL),(37536,2346,9,'editor',NULL,NULL),(37558,364789,10,'editor',NULL,NULL),(37558,424743,1,'actress',NULL,'[\"Laura Jesson\"]'),(37558,2145,2,'actor',NULL,'[\"Dr. Alec Harvey\"]'),(37558,391361,3,'actor',NULL,'[\"Albert Godby\"]'),(37558,136983,4,'actress',NULL,'[\"Myrtle Bagot\"]'),(37558,180,5,'director',NULL,NULL),(37558,2021,6,'writer','play \"Still Life\"',NULL),(37558,369743,7,'writer',NULL,NULL),(37558,623768,8,'writer',NULL,NULL),(37558,5761,9,'cinematographer','director of photography',NULL),(37614,70,10,'composer',NULL,NULL),(37614,12,1,'actress',NULL,'[\"Miss Lilly Moffat\"]'),(37614,197982,2,'actor',NULL,'[\"Morgan Evans\"]'),(37614,115558,3,'actor',NULL,'[\"The Squire\"]'),(37614,931525,4,'actor',NULL,'[\"Mr. Jones\"]'),(37614,710924,5,'director',NULL,NULL),(37614,732452,6,'writer','screenplay',NULL),(37614,147119,7,'writer','screenplay',NULL),(37614,930539,8,'writer','stage play',NULL),(37614,156134,9,'producer','producer',NULL),(37630,13221,10,'cinematographer',NULL,NULL),(37630,76350,1,'actor',NULL,'[\"Jean\"]'),(37630,143018,2,'actress',NULL,'[\"Hélène\"]'),(37630,479626,3,'actress',NULL,'[\"Agnès\"]'),(37630,91502,4,'actress',NULL,'[\"Mme. D\"]'),(37630,975,5,'director',NULL,NULL),(37630,225784,6,'writer','novel \"Jacques le fataliste et son maître\"',NULL),(37630,168413,7,'writer','dialogue: additional',NULL),(37630,687402,8,'producer','producer',NULL),(37630,198398,9,'composer',NULL,NULL),(37635,534191,10,'writer','screen play',NULL),(37635,424345,1,'actor',NULL,'[\"Walter Craig\"]'),(37635,714878,2,'actor',NULL,'[\"Maxwell Frere\"]'),(37635,191745,3,'actor',NULL,'[\"Eliot Foley\"]'),(37635,581146,4,'actress',NULL,'[\"Mrs. Foley\"]'),(37635,146709,5,'director',NULL,NULL),(37635,187769,6,'director',NULL,NULL),(37635,213136,7,'director',NULL,NULL),(37635,357607,8,'director',NULL,NULL),(37635,47786,9,'writer','screen play',NULL),(37638,5757,10,'cinematographer','director of photography',NULL),(37638,623684,1,'actor',NULL,'[\"Al Roberts\"]'),(37638,767243,2,'actress',NULL,'[\"Vera\"]'),(37638,236873,3,'actress',NULL,'[\"Sue Harvey\"]'),(37638,531705,4,'actor',NULL,'[\"Charles Haskell Jr\"]'),(37638,880618,5,'director',NULL,NULL),(37638,326107,6,'writer','screenplay',NULL),(37638,600755,7,'writer',NULL,NULL),(37638,3199,8,'producer','producer',NULL),(37638,258775,9,'composer',NULL,NULL),(37671,2202,10,'composer',NULL,NULL),(37671,570192,1,'actress',NULL,'[\"Laura Pennington\"]'),(37671,1870,2,'actor',NULL,'[\"Oliver Bradford\"]'),(37671,3339,3,'actor',NULL,'[\"Major John Hillgrove\"]'),(37671,622450,4,'actress',NULL,'[\"Mrs. Abigail Minnett\"]'),(37671,188669,5,'director',NULL,NULL),(37671,90840,6,'writer',NULL,NULL),(37671,542534,7,'writer',NULL,NULL),(37671,684093,8,'writer','play',NULL),(37671,663832,9,'producer','producer',NULL),(37674,751790,10,'editor',NULL,NULL),(37674,1916,1,'actress',NULL,'[\"Claire Reine, dite Garance\"]'),(37674,56761,2,'actor',NULL,'[\"Baptiste Debureau\"]'),(37674,105482,3,'actor',NULL,'[\"Frédérick Lemaître\"]'),(37674,719749,4,'actor',NULL,'[\"Jéricho\"]'),(37674,138893,5,'director',NULL,NULL),(37674,699535,6,'writer','scenario and dialogue',NULL),(37674,3473059,7,'producer','producer',NULL),(37674,6320,8,'composer',NULL,NULL),(37674,399486,9,'cinematographer',NULL,NULL),(37800,432613,10,'production_designer',NULL,NULL),(37800,384908,1,'actress',NULL,'[\"Joan Webster\"]'),(37800,515193,2,'actor',NULL,'[\"Torquil MacNeil\"]'),(37800,114386,3,'actress',NULL,'[\"Catriona Potts\"]'),(37800,192958,4,'actor',NULL,'[\"Ruairidh Mhór\"]'),(37800,3836,5,'director',NULL,NULL),(37800,696247,6,'director',NULL,NULL),(37800,336434,7,'composer',NULL,NULL),(37800,2915,8,'cinematographer',NULL,NULL),(37800,780385,9,'editor',NULL,NULL),(37820,533324,10,'cinematographer','director of photography',NULL),(37820,472,1,'actor',NULL,'[\"Gen. Nikolas Pherides\"]'),(37820,237655,2,'actress',NULL,'[\"Thea\"]'),(37820,186172,3,'actor',NULL,'[\"Oliver Davis\"]'),(37820,256312,4,'actress',NULL,'[\"Mrs. Mary St. Aubyn\"]'),(37820,733476,5,'director',NULL,NULL),(37820,942027,6,'writer','written by',NULL),(37820,507932,7,'writer',NULL,NULL),(37820,592679,8,'writer',NULL,NULL),(37820,363316,9,'composer',NULL,NULL),(37843,432482,10,'cinematographer','director of photography',NULL),(37843,1805,1,'actress',NULL,'[\"Valerie Parks\"]'),(37843,206478,2,'actress',NULL,'[\"Leigh Rand\"]'),(37843,676688,3,'actress',NULL,'[\"Ann Darrison\"]'),(37843,1547,4,'actress',NULL,'[\"Lt. Col. Spottiswoode\"]'),(37843,125636,5,'director',NULL,NULL),(37843,564610,6,'writer','original screenplay',NULL),(37843,115482,7,'writer','original screenplay',NULL),(37843,354117,8,'producer','producer',NULL),(37843,791130,9,'composer',NULL,NULL),(37865,5872,10,'cinematographer','director of photography',NULL),(37865,74,1,'actress',NULL,'[\"Ellen Berent Harland\"]'),(37865,664273,2,'actor',NULL,'[\"Richard Harland\"]'),(37865,2022,3,'actress',NULL,'[\"Ruth Berent\"]'),(37865,1637,4,'actor',NULL,'[\"Russell Quinton\"]'),(37865,821472,5,'director',NULL,NULL),(37865,842485,6,'writer','screenplay',NULL),(37865,930082,7,'writer','novel',NULL),(37865,45438,8,'producer','producer',NULL),(37865,55,9,'composer',NULL,NULL),(37884,1537,1,'actor',NULL,'[\"Don Birnam\"]'),(37884,943837,2,'actress',NULL,'[\"Helen St. James\"]'),(37884,856062,3,'actor',NULL,'[\"Wick Birnam\"]'),(37884,196247,4,'actor',NULL,'[\"Nat\"]'),(37884,697,5,'director',NULL,NULL),(37884,413352,6,'writer','from the novel by',NULL),(37884,102818,7,'writer','screen play',NULL),(37884,67,8,'composer',NULL,NULL),(37884,5870,9,'cinematographer','director of photography',NULL),(37913,540816,10,'writer','contract writer',NULL),(37913,1076,1,'actress',NULL,'[\"Mildred Pierce Beragon\"]'),(37913,7217,2,'actor',NULL,'[\"Wally Fay\"]'),(37913,779923,3,'actor',NULL,'[\"Monte Beragon\"]'),(37913,781,4,'actress',NULL,'[\"Ida Corwin\"]'),(37913,2031,5,'director',NULL,NULL),(37913,532030,6,'writer','screen play',NULL),(37913,128906,7,'writer','novel',NULL),(37913,1203,8,'writer','contract writer',NULL),(37913,344391,9,'writer','contract writer',NULL),(37954,77,10,'composer',NULL,NULL),(37954,1224,1,'actor',NULL,'[\"Capt. Nelson\"]'),(37954,113769,2,'actor',NULL,'[\"SSgt. Treacy\"]'),(37954,697733,3,'actor',NULL,'[\"Lt. Sid Jacobs\"]'),(37954,864869,4,'actor',NULL,'[\"Cpl. Gabby Gordon\"]'),(37954,909825,5,'director',NULL,NULL),(37954,532030,6,'writer','screenplay',NULL),(37954,170660,7,'writer','screenplay',NULL),(37954,78827,8,'writer','original story',NULL),(37954,907003,9,'producer','producer',NULL),(38017,379090,10,'editor',NULL,NULL),(38017,866010,1,'actor',NULL,'[\"Charlie Chan\"]'),(38017,93769,2,'actor',NULL,'[\"Insp. Luis Carvero\"]'),(38017,284538,3,'actor',NULL,'[\"Tommy Chan\"]'),(38017,443891,4,'actor',NULL,'[\"Alfred Wyans\"]'),(38017,5847,5,'director',NULL,NULL),(38017,130196,6,'writer','original screenplay',NULL),(38017,81788,7,'writer','based on the character created by',NULL),(38017,121944,8,'producer','producer',NULL),(38017,5702,9,'cinematographer',NULL,NULL),(38057,5762,10,'cinematographer','director of photography',NULL),(38057,64,1,'actor',NULL,'[\"Christopher Cross\"]'),(38057,910,2,'actress',NULL,'[\"Katharine \'Kitty\' March\"]'),(38057,2053,3,'actor',NULL,'[\"Johnny Prince\"]'),(38057,512267,4,'actress',NULL,'[\"Millie Ray\"]'),(38057,485,5,'director',NULL,NULL),(38057,478579,6,'writer','novel and play \"La Chienne\"',NULL),(38057,610207,7,'writer','novel and play \"La Chienne\" in collaboration with',NULL),(38057,629580,8,'writer','screen play',NULL),(38057,6270,9,'composer',NULL,NULL),(38109,739676,10,'writer','contributing writer: foreword',NULL),(38109,6,1,'actress',NULL,'[\"Dr. Constance Petersen\"]'),(38109,60,2,'actor',NULL,'[\"John Ballantyne\"]'),(38109,155011,3,'actor',NULL,'[\"Dr. Alexander Brulov\"]'),(38109,1991,4,'actor',NULL,'[\"Dr. Murchison\"]'),(38109,33,5,'director',NULL,NULL),(38109,372942,6,'writer','screen play',NULL),(38109,1301541,7,'writer','suggested by novel: \"The House of Dr. Edwardes\"',NULL),(38109,761573,8,'writer','suggested by novel: \"The House of Dr. Edwardes\"',NULL),(38109,534191,9,'writer','adaptation',NULL),(38166,109205,10,'writer','story',NULL),(38166,592058,1,'actress',NULL,'[\"Yaya\"]'),(38166,596663,2,'actress',NULL,'[\"Mexico Girl\"]'),(38166,527741,3,'actress',NULL,'[\"Mexico Girl\"]'),(38166,1359,4,'actor',NULL,'[\"Prof. Holloway\"]'),(38166,272568,5,'director',NULL,NULL),(38166,314671,6,'director','sequence director',NULL),(38166,455741,7,'director','sequence director',NULL),(38166,730860,8,'director','sequence director',NULL),(38166,949597,9,'director',NULL,NULL),(38250,185055,10,'cinematographer',NULL,NULL),(38250,516994,1,'actress',NULL,'[\"Barbara Skelton\"]'),(38250,51,2,'actor',NULL,'[\"Captain Jerry Jackson\"]'),(38250,733540,3,'actress',NULL,'[\"Caroline\"]'),(38250,428175,4,'actor',NULL,'[\"Sir Ralph Skelton\"]'),(38250,35199,5,'director',NULL,NULL),(38250,455397,6,'writer','novel The Life and Death of the Wicked Lady Skelton',NULL),(38250,322691,7,'writer','additional dialogue',NULL),(38250,835632,8,'writer','additional dialogue',NULL),(38250,591495,9,'producer','producer',NULL),(38259,1651,1,'actor',NULL,'[\"Sherlock Holmes\"]'),(38259,115558,2,'actor',NULL,'[\"Dr. Watson\"]'),(38259,111702,3,'actress',NULL,'[\"Lydia Marlow\"]'),(38259,199787,4,'actor',NULL,'[\"Prof. Moriarty\"]'),(38259,624756,5,'director',NULL,NULL),(38259,589616,6,'writer','original screenplay',NULL),(38259,236279,7,'writer','based on the story \"The Adventures of the Empty House\" by Sir Arthur Conan Doyle',NULL),(38259,589489,8,'cinematographer','director of photography',NULL),(38259,193562,9,'editor',NULL,NULL),(38348,406655,10,'editor',NULL,NULL),(38348,544786,1,'actor',NULL,'[\"La Bête\",\"Le Prince\",\"Avenant\"]'),(38348,196816,2,'actress',NULL,'[\"Belle\"]'),(38348,664186,3,'actress',NULL,'[\"Félicie\"]'),(38348,314590,4,'actress',NULL,'[\"Adélaïde\"]'),(38348,168413,5,'director',NULL,NULL),(38348,167496,6,'director',NULL,NULL),(38348,207305,7,'writer','story',NULL),(38348,5952,8,'composer',NULL,NULL),(38348,2162,9,'cinematographer',NULL,NULL),(38355,70,10,'composer',NULL,NULL),(38355,7,1,'actor',NULL,'[\"Philip Marlowe\"]'),(38355,2,2,'actress',NULL,'[\"Vivian Rutledge\"]'),(38355,725891,3,'actor',NULL,'[\"Eddie Mars\"]'),(38355,896015,4,'actress',NULL,'[\"Carmen Sternwood\"]'),(38355,1328,5,'director',NULL,NULL),(38355,1203,6,'writer','screen play',NULL),(38355,102824,7,'writer','screen play',NULL),(38355,299154,8,'writer','screen play',NULL),(38355,151452,9,'writer','novel',NULL),(38409,5832,10,'cinematographer','director of photography',NULL),(38409,191950,1,'actor',NULL,'[\"Chuck Scott\"]'),(38409,6807,2,'actress',NULL,'[\"Lorna Roman\"]'),(38409,168215,3,'actor',NULL,'[\"Eddie Roman\"]'),(38409,180987,4,'actor',NULL,'[\"Emmerrich Johnson\"]'),(38409,727999,5,'director',NULL,NULL),(38409,948634,6,'writer','written for the screen by',NULL),(38409,941280,7,'writer','book \"The Black Path of Fear\"',NULL),(38409,623873,8,'producer','producer',NULL),(38409,584965,9,'composer',NULL,NULL),(38453,463334,10,'writer','revisions to screenplay',NULL),(38453,840,1,'actress',NULL,'[\"Kathleen Stewart\"]'),(38453,916067,2,'actor',NULL,'[\"Hardy Cathcart\"]'),(38453,904,3,'actor',NULL,'[\"Stauffer aka Fred Foss\"]'),(38453,828594,4,'actor',NULL,'[\"Bradford Galt\"]'),(38453,368871,5,'director',NULL,NULL),(38453,237225,6,'writer','screenplay',NULL),(38453,774441,7,'writer','screenplay',NULL),(38453,744576,8,'writer','story',NULL),(38453,459067,9,'writer','writer of new ending',NULL),(38461,6157,10,'composer',NULL,NULL),(38461,12,1,'actress',NULL,'[\"Christine Radcliffe\"]'),(38461,2134,2,'actor',NULL,'[\"Karel Novak\"]'),(38461,1647,3,'actor',NULL,'[\"Alexander Hollenius\"]'),(38461,7995,4,'actor',NULL,'[\"Bertram Gribble\"]'),(38461,710924,5,'director',NULL,NULL),(38461,171924,6,'writer',NULL,NULL),(38461,857004,7,'writer',NULL,NULL),(38461,894579,8,'writer','play \"Monsieur Lamberthier\"',NULL),(38461,87533,9,'producer','producer',NULL),(38474,6157,10,'composer',NULL,NULL),(38474,14,1,'actress',NULL,'[\"Charlotte Brontë\"]'),(38474,526946,2,'actress',NULL,'[\"Emily Brontë\"]'),(38474,2134,3,'actor',NULL,'[\"Rev. Arthur Nicholls\"]'),(38474,2113,4,'actor',NULL,'[\"William Makepeace Thackeray\"]'),(38474,76779,5,'director',NULL,NULL),(38474,935773,6,'writer','screenplay',NULL),(38474,716307,7,'writer','original story',NULL),(38474,158737,8,'writer',NULL,NULL),(38474,118758,9,'producer','producer',NULL),(38494,328966,10,'editor','film editor',NULL),(38494,1651,1,'actor',NULL,'[\"Sherlock Holmes\"]'),(38494,115558,2,'actor',NULL,'[\"Doctor Watson\"]'),(38494,605685,3,'actress',NULL,'[\"Mrs. Hilda Courtney\"]'),(38494,107631,4,'actor',NULL,'[\"Julian \'Stinky\' Emery\"]'),(38494,624756,5,'director',NULL,NULL),(38494,497738,6,'writer','screenplay by',NULL),(38494,344246,7,'writer','adaptation by',NULL),(38494,236279,8,'writer','adapted from a story by',NULL),(38494,314993,9,'cinematographer','director of photography',NULL),(38499,6388,10,'director',NULL,NULL),(38499,428354,1,'actress',NULL,'[\"Pearl Chavez\"]'),(38499,1072,2,'actor',NULL,'[\"Jesse McCanles\"]'),(38499,60,3,'actor',NULL,'[\"Lewton \'Lewt\' McCanles\"]'),(38499,859,4,'actor',NULL,'[\"Sen. Jackson McCanles\"]'),(38499,896542,5,'director',NULL,NULL),(38499,112897,6,'director',NULL,NULL),(38499,226189,7,'director',NULL,NULL),(38499,291548,8,'director',NULL,NULL),(38499,580017,9,'director',NULL,NULL),(38559,888144,10,'producer','producer',NULL),(38559,28,1,'actress',NULL,'[\"Gilda\"]'),(38559,1229,2,'actor',NULL,'[\"Johnny Farrell\"]'),(38559,534317,3,'actor',NULL,'[\"Ballin Mundson\"]'),(38559,130407,4,'actor',NULL,'[\"Det. Maurice Obregon\"]'),(38559,896533,5,'director',NULL,NULL),(38559,254154,6,'writer','story',NULL),(38559,252100,7,'writer','adaptation',NULL),(38559,663763,8,'writer','screenplay',NULL),(38559,372942,9,'writer',NULL,NULL),(38574,569414,10,'writer','adapted for the screen with',NULL),(38574,590055,1,'actor',NULL,'[\"Pip\"]'),(38574,387753,2,'actress',NULL,'[\"Estella\"]'),(38574,905697,3,'actor',NULL,'[\"Young Pip\"]'),(38574,1739,4,'actress',NULL,'[\"Young Estella\"]'),(38574,180,5,'director',NULL,NULL),(38574,2042,6,'writer','by',NULL),(38574,623768,7,'writer','adapted for the screen by',NULL),(38574,369743,8,'writer','adapted for the screen by',NULL),(38574,909727,9,'writer','adapted for the screen with',NULL),(38589,710723,10,'writer','screenplay',NULL),(38589,23,1,'actress',NULL,'[\"Susan Bradley\"]'),(38589,1961,2,'actor',NULL,'[\"Chris Maule\"]'),(38589,388303,3,'actor',NULL,'[\"Ned Trent\"]'),(38589,1450,4,'actress',NULL,'[\"Em\"]'),(38589,796645,5,'director',NULL,NULL),(38589,69410,6,'writer','screenplay',NULL),(38589,193466,7,'writer','screenplay',NULL),(38589,186355,8,'writer','screenplay',NULL),(38589,641199,9,'writer','screenplay',NULL),(38650,933858,10,'writer','contributor to screenplay',NULL),(38650,71,1,'actor',NULL,'[\"George Bailey\"]'),(38650,1656,2,'actress',NULL,'[\"Mary Hatch\"]'),(38650,859,3,'actor',NULL,'[\"Mr. Potter\"]'),(38650,593775,4,'actor',NULL,'[\"Uncle Billy\"]'),(38650,1008,5,'director',NULL,NULL),(38650,329304,6,'writer','screenplay by',NULL),(38650,352443,7,'writer','screenplay by',NULL),(38650,842485,8,'writer','additional scenes',NULL),(38650,827821,9,'writer','based on a story by',NULL),(38661,804623,10,'producer','producer',NULL),(38661,662972,1,'actor',NULL,'[\"Al Jolson\"]'),(38661,450810,2,'actress',NULL,'[\"Julie Benson\"]'),(38661,218131,3,'actor',NULL,'[\"Steve Martin\"]'),(38661,329433,4,'actor',NULL,'[\"Tom Baron\"]'),(38661,337586,5,'director',NULL,NULL),(38661,118227,6,'writer',NULL,NULL),(38661,151310,7,'writer','adaptation',NULL),(38661,519487,8,'writer','screenplay',NULL),(38661,813584,9,'writer','adaptation',NULL),(38718,109205,10,'writer','story',NULL),(38718,248904,1,'actor',NULL,'[\"Narrator\",\"Willie\",\"Whitey\"]'),(38718,794918,2,'actress',NULL,NULL),(38718,28739,3,'actress',NULL,'[\"Andrews Sisters\"]'),(38718,28782,4,'actress',NULL,'[\"Andrews Sisters\"]'),(38718,179994,5,'director',NULL,NULL),(38718,314671,6,'director',NULL,NULL),(38718,455741,7,'director',NULL,NULL),(38718,527217,8,'director',NULL,NULL),(38718,575008,9,'director',NULL,NULL),(38733,432613,10,'production_designer',NULL,NULL),(38733,57,1,'actor',NULL,'[\"Peter Carter\"]'),(38733,1375,2,'actress',NULL,'[\"June\"]'),(38733,178509,3,'actor',NULL,'[\"Bob Trubshaw\"]'),(38733,126402,4,'actress',NULL,'[\"An Angel\"]'),(38733,3836,5,'director',NULL,NULL),(38733,696247,6,'director',NULL,NULL),(38733,336434,7,'composer',NULL,NULL),(38733,2153,8,'cinematographer',NULL,NULL),(38733,590160,9,'editor',NULL,NULL),(38762,6203,10,'composer',NULL,NULL),(38762,20,1,'actor',NULL,'[\"Wyatt Earp\"]'),(38762,1105,2,'actress',NULL,'[\"Chihuahua\"]'),(38762,1514,3,'actor',NULL,'[\"Doc Holliday\"]'),(38762,236157,4,'actress',NULL,'[\"Clementine Carter\"]'),(38762,406,5,'director',NULL,NULL),(38762,257143,6,'writer','screen play by',NULL),(38762,588003,7,'writer','screen play by',NULL),(38762,375500,8,'writer','from a story by',NULL),(38762,482193,9,'writer','based on a book by',NULL),(38787,5898,10,'cinematographer','director of photography',NULL),(38787,26,1,'actor',NULL,'[\"Devlin\"]'),(38787,6,2,'actress',NULL,'[\"Alicia Huberman\"]'),(38787,1647,3,'actor',NULL,'[\"Alexander \'Alex\' Sebastian\"]'),(38787,129894,4,'actor',NULL,'[\"Captain Paul Prescott\"]'),(38787,33,5,'director',NULL,NULL),(38787,372942,6,'writer','written by',NULL),(38787,285218,7,'writer','story \"The Song of the Dragon\", 1921',NULL),(38787,644048,8,'writer','dialogue: love scenes',NULL),(38787,2202,9,'composer',NULL,NULL),(38854,5956,10,'composer',NULL,NULL),(38854,1805,1,'actress',NULL,'[\"Cora Smith\"]'),(38854,2092,2,'actor',NULL,'[\"Frank Chambers\"]'),(38854,445523,3,'actor',NULL,'[\"Nick Smith\"]'),(38854,2025,4,'actor',NULL,'[\"Arthur Keats\"]'),(38854,307819,5,'director',NULL,NULL),(38854,750822,6,'writer','screen play',NULL),(38854,124002,7,'writer','screen play',NULL),(38854,128906,8,'writer','based on the novel by',NULL),(38854,933133,9,'producer','producer',NULL),(38890,33169,10,'cinematographer',NULL,NULL),(38890,536167,1,'actress',NULL,'[\"Pina\"]'),(38890,264762,2,'actor',NULL,'[\"Don Pietro Pellegrini\"]'),(38890,656496,3,'actor',NULL,'[\"Giorgio Manfredi aka Luigi Ferraris\"]'),(38890,30383,4,'actor',NULL,'[\"Piccolo Marcello\"]'),(38890,744023,5,'director',NULL,NULL),(38890,24847,6,'writer','screenplay',NULL),(38890,19,7,'writer','collaboration on screenplay',NULL),(38890,175924,8,'writer','additional material',NULL),(38890,744021,9,'composer',NULL,NULL),(38924,355051,10,'editor',NULL,NULL),(38924,51,1,'actor',NULL,'[\"Nicholas\"]'),(38924,2897,2,'actress',NULL,'[\"Francesca\"]'),(38924,7042,3,'actor',NULL,'[\"Dr. Larsen\"]'),(38924,567521,4,'actor',NULL,'[\"Peter Gay\"]'),(38924,71682,5,'director',NULL,NULL),(38924,101504,6,'writer','original story',NULL),(38924,101511,7,'writer','original story',NULL),(38924,6082,8,'composer',NULL,NULL),(38924,5932,9,'cinematographer','director of photography',NULL),(38934,4573,10,'editor',NULL,NULL),(38934,692093,1,'actor',NULL,'[\"Barry Lanfield\"]'),(38934,1478,2,'actress',NULL,'[\"Phyllis Allenby\"]'),(38934,352774,3,'actress',NULL,'[\"Martha Winthrop\"]'),(38934,928844,4,'actress',NULL,'[\"Carol Winthrop\"]'),(38934,946391,5,'director',NULL,NULL),(38934,108579,6,'writer','screenplay',NULL),(38934,44831,7,'writer','original story',NULL),(38934,686089,8,'producer','producer',NULL),(38934,314993,9,'cinematographer','director of photography',NULL),(38969,364873,10,'writer','book \"Tales of Uncle Remus\"',NULL),(38969,913095,1,'actress',NULL,'[\"Sally\"]'),(38969,237985,2,'actor',NULL,'[\"Johnny\"]'),(38969,59934,3,'actor',NULL,'[\"Uncle Remus\",\"Br\'er Fox (voice)\"]'),(38969,666087,4,'actress',NULL,'[\"Ginny\"]'),(38969,287836,5,'director','photoplay director',NULL),(38969,414144,6,'director','cartoon director',NULL),(38969,721468,7,'writer','screenplay',NULL),(38969,335577,8,'writer','screenplay',NULL),(38969,710683,9,'writer','screenplay',NULL),(38990,156134,10,'producer','producer',NULL),(38990,1443,1,'actress',NULL,'[\"Jenny Hager\"]'),(38990,1695,2,'actor',NULL,'[\"John Evered\"]'),(38990,371775,3,'actor',NULL,'[\"Ephraim Poster\"]'),(38990,516876,4,'actor',NULL,'[\"Isaiah Poster\"]'),(38990,880618,5,'director',NULL,NULL),(38990,802862,6,'director',NULL,NULL),(38990,575022,7,'writer','screenplay',NULL),(38990,930082,8,'writer','novel \"The Strange Woman\"',NULL),(38990,834898,9,'writer',NULL,NULL),(38991,6147,10,'composer',NULL,NULL),(38991,80,1,'actor',NULL,'[\"Prof. Charles Rankin\"]'),(38991,64,2,'actor',NULL,'[\"Mr. Wilson\"]'),(38991,949835,3,'actress',NULL,'[\"Mary Longstreet\"]'),(38991,580882,4,'actor',NULL,'[\"Judge Adam Longstreet\"]'),(38991,892044,5,'writer','screenplay',NULL),(38991,873193,6,'writer','adaptation',NULL),(38991,242938,7,'writer','adaptation',NULL),(38991,1379,8,'writer',NULL,NULL),(38991,818545,9,'producer','producer',NULL),(39017,1651,1,'actor',NULL,'[\"Sherlock Holmes\"]'),(39017,115558,2,'actor',NULL,'[\"Dr. John H. Watson\"]'),(39017,610253,3,'actor',NULL,'[\"Maj. Duncan-Bleek\"]'),(39017,388615,4,'actor',NULL,'[\"Inspector Lestrade\"]'),(39017,624756,5,'director',NULL,NULL),(39017,344246,6,'writer','screenplay',NULL),(39017,236279,7,'writer','adapted from a story by',NULL),(39017,314993,8,'cinematographer','director of photography',NULL),(39017,328966,9,'editor',NULL,NULL),(39054,5892,10,'cinematographer','director of photography',NULL),(39054,337113,1,'actress',NULL,'[\"Abigail Chandler\"]'),(39054,742,2,'actress',NULL,'[\"Martha Canford Chandler\"]'),(39054,577480,3,'actor',NULL,'[\"Olstrom\"]'),(39054,2051,4,'actor',NULL,'[\"\'Spike\'\"]'),(39054,467396,5,'director',NULL,NULL),(39054,175333,6,'writer','original screen play',NULL),(39054,641199,7,'writer','additional dialogue',NULL),(39054,186355,8,'writer','additional dialogue',NULL),(39054,664990,9,'producer','producer',NULL),(39112,5932,10,'cinematographer',NULL,NULL),(39112,714878,1,'actor',NULL,'[\"Michael Wentworth\"]'),(39112,387753,2,'actress',NULL,'[\"Diana Wentworth\"]'),(39112,733460,3,'actress',NULL,'[\"Nanny\"]'),(39112,571129,4,'actor',NULL,'[\"Richard Llewellyn\"]'),(39112,71682,5,'director',NULL,NULL),(39112,101504,6,'writer','screenplay',NULL),(39112,101511,7,'writer','screenplay',NULL),(39112,238898,8,'writer','play',NULL),(39112,6082,9,'composer',NULL,NULL),(39192,590160,10,'editor',NULL,NULL),(39192,39,1,'actress',NULL,'[\"Sister Clodagh\"]'),(39192,268119,2,'actor',NULL,'[\"Mr. Dean\"]'),(39192,733460,3,'actress',NULL,'[\"Sister Philippa\"]'),(39192,481966,4,'actress',NULL,'[\"Sister Honey\"]'),(39192,3836,5,'director',NULL,NULL),(39192,696247,6,'director',NULL,NULL),(39192,323869,7,'writer','adapted from the novel by',NULL),(39192,247460,8,'composer',NULL,NULL),(39192,2153,9,'cinematographer',NULL,NULL),(39204,663577,10,'editor',NULL,NULL),(39204,2092,1,'actor',NULL,'[\"Charley Davis\"]'),(39204,658339,2,'actress',NULL,'[\"Peg Born\"]'),(39204,112014,3,'actress',NULL,'[\"Alice\"]'),(39204,720843,4,'actress',NULL,'[\"Anna Davis\"]'),(39204,744035,5,'director',NULL,NULL),(39204,689796,6,'writer','original screenplay',NULL),(39204,730873,7,'producer','producer',NULL),(39204,6087,8,'composer',NULL,NULL),(39204,2146,9,'cinematographer','director of photography',NULL),(39220,5924,10,'cinematographer','director of photography',NULL),(39220,277,1,'actor',NULL,'[\"Pinkie Brown\"]'),(39220,45968,2,'actress',NULL,'[\"Ida Arnold\"]'),(39220,367156,3,'actor',NULL,'[\"Dallow\"]'),(39220,930732,4,'actor',NULL,'[\"Prewitt\"]'),(39220,99589,5,'director',NULL,NULL),(39220,1294,6,'writer','from the novel by',NULL),(39220,711905,7,'writer','screenplay by',NULL),(39220,99592,8,'producer','producer',NULL),(39220,561963,9,'composer',NULL,NULL),(39236,20522,10,'editor',NULL,NULL),(39236,292471,1,'actress',NULL,'[\"Patricia O\'Neill\"]'),(39236,550777,2,'actor',NULL,'[\"Johnny Bennett\"]'),(39236,665850,3,'actress',NULL,'[\"Olivia Radford\"]'),(39236,48653,4,'actor',NULL,'[\"Byron Jones\"]'),(39236,245385,5,'director',NULL,NULL),(39236,519760,6,'writer','screenplay',NULL),(39236,757940,7,'writer','screenplay',NULL),(39236,517216,8,'writer','screenplay',NULL),(39236,486976,9,'cinematographer',NULL,NULL),(39286,402478,10,'cinematographer','director of photography',NULL),(39286,1870,1,'actor',NULL,'[\"Finlay\"]'),(39286,53,2,'actor',NULL,'[\"Keeley\"]'),(39286,752813,3,'actor',NULL,'[\"Montgomery\"]'),(39286,2108,4,'actress',NULL,'[\"Ginny\"]'),(39286,229424,5,'director',NULL,NULL),(39286,668122,6,'writer','screenplay',NULL),(39286,112218,7,'writer','adapted from a novel by',NULL),(39286,778789,8,'producer','producer',NULL),(39286,2202,9,'composer',NULL,NULL),(39302,918694,10,'editor',NULL,NULL),(39302,7,1,'actor',NULL,'[\"Vincent Parry\"]'),(39302,2,2,'actress',NULL,'[\"Irene Jansen\"]'),(39302,71636,3,'actor',NULL,'[\"Bob\"]'),(39302,1547,4,'actress',NULL,'[\"Madge Rapf\"]'),(39302,202681,5,'director',NULL,NULL),(39302,328959,6,'writer','from the novel by',NULL),(39302,907003,7,'producer','producer',NULL),(39302,77,8,'composer',NULL,NULL),(39302,5741,9,'cinematographer','director of photography',NULL),(39324,372942,10,'writer',NULL,NULL),(39324,1443,1,'actress',NULL,'[\"Madeleine Damien\"]'),(39324,641454,2,'actor',NULL,'[\"Dr. David S. Cousins\"]'),(39324,517058,3,'actor',NULL,'[\"Felix Courtland\"]'),(39324,526485,4,'actor',NULL,'[\"Jack Garet\"]'),(39324,829038,5,'director',NULL,NULL),(39324,791017,6,'writer','play',NULL),(39324,55693,7,'writer','play',NULL),(39324,636002,8,'writer','screenplay',NULL),(39324,211964,9,'writer',NULL,NULL),(39349,774465,10,'editor',NULL,NULL),(39349,1055,1,'actress',NULL,'[\"Betty\"]'),(39349,534045,2,'actor',NULL,'[\"Bob\"]'),(39349,537685,3,'actress',NULL,'[\"Ma Kettle\"]'),(39349,20145,4,'actress',NULL,'[\"Harriet Putnam\"]'),(39349,259838,5,'director',NULL,NULL),(39349,531627,6,'writer','novel',NULL),(39349,277943,7,'writer','written for the screen by',NULL),(39349,804244,8,'composer',NULL,NULL),(39349,5762,9,'cinematographer','director of photography',NULL),(39360,448867,10,'editor',NULL,NULL),(39360,1195,1,'actor',NULL,'[\"Charles Stuart (Charles II)\"]'),(39360,599688,2,'actress',NULL,'[\"Countess Anabella de Courteuil\"]'),(39360,179411,3,'actress',NULL,'[\"Katie\"]'),(39360,199787,4,'actor',NULL,'[\"Colonel Ingram\"]'),(39360,649097,5,'director',NULL,NULL),(39360,199304,6,'writer','screenplay',NULL),(39360,357795,7,'writer','novel \"His Majesty, The King\"',NULL),(39360,804244,8,'composer',NULL,NULL),(39360,5832,9,'cinematographer','director of photography',NULL),(39404,716206,10,'writer','story',NULL),(39404,1944,1,'actor',NULL,'[\"Edgar Bergen\",\"Charlie McCarthy\",\"Mortimer Snerd\"]'),(39404,794918,2,'actress',NULL,'[\"Dinah Shore - Narrator\"]'),(39404,666087,3,'actress',NULL,'[\"Luana\"]'),(39404,329993,4,'actress',NULL,'[\"Singing Harp\"]'),(39404,455741,5,'director','animation director',NULL),(39404,527217,6,'director','animation director',NULL),(39404,605093,7,'director','live action director',NULL),(39404,730860,8,'director','animation director',NULL),(39404,109205,9,'writer','story',NULL),(39416,587926,10,'cinematographer','director of photography',NULL),(39416,60,1,'actor',NULL,'[\"Philip Schuyler Green\"]'),(39416,570192,2,'actress',NULL,'[\"Kathy Lacy\"]'),(39416,2092,3,'actor',NULL,'[\"Dave Goldman\"]'),(39416,2141,4,'actress',NULL,'[\"Anne Dettrey\"]'),(39416,1415,5,'director',NULL,NULL),(39416,387740,6,'writer','novel \"Gentleman\'s Agreement\"',NULL),(39416,366454,7,'writer','screen play',NULL),(39416,953123,8,'producer','producer',NULL),(39416,55,9,'composer',NULL,NULL),(39420,485702,10,'cinematographer','director of photography',NULL),(39420,74,1,'actress',NULL,'[\"Lucy Muir\"]'),(39420,1322,2,'actor',NULL,'[\"Capt. Daniel Gregg\"]'),(39420,1695,3,'actor',NULL,'[\"Miles Fairley\"]'),(39420,78923,4,'actress',NULL,'[\"Martha Huggins\"]'),(39420,581,5,'director',NULL,NULL),(39420,242897,6,'writer','screen play',NULL),(39420,225283,7,'writer','from the novel by',NULL),(39420,463334,8,'producer','producer',NULL),(39420,2136,9,'composer',NULL,NULL),(39431,376575,10,'writer','play',NULL),(39431,742,1,'actress',NULL,'[\"Connie Lane\"]'),(39431,492444,2,'actor',NULL,'[\"Tommy Marlowe\"]'),(39431,551091,3,'actress',NULL,'[\"Pat McClellan\"]'),(39431,566845,4,'actress',NULL,'[\"Babe Doolittle\"]'),(39431,910199,5,'director',NULL,NULL),(39431,114095,6,'writer','play',NULL),(39431,776997,7,'writer','play',NULL),(39431,541641,8,'writer','play',NULL),(39431,221865,9,'writer','play',NULL),(39441,5747,10,'cinematographer','director of photography',NULL),(39441,68,1,'actor',NULL,'[\"Brazos Kane\"]'),(39441,110159,2,'actress',NULL,'[\"Bess Banner\"]'),(39441,366253,3,'actress',NULL,'[\"Jane Banner\"]'),(39441,127677,4,'actor',NULL,'[\"Bard Macky\"]'),(39441,905729,5,'director',NULL,NULL),(39441,494435,6,'writer','screenplay',NULL),(39441,340719,7,'writer','adapted from Zane Grey\'s novel \"Twin Sombreros\"',NULL),(39441,113693,8,'producer','producer',NULL),(39441,775082,9,'composer',NULL,NULL),(39628,164690,10,'cinematographer','director of photography',NULL),(39628,350324,1,'actor',NULL,'[\"Kris Kringle\"]'),(39628,58,2,'actress',NULL,'[\"Doris Walker\"]'),(39628,668361,3,'actor',NULL,'[\"Fred Gailey\"]'),(39628,516876,4,'actor',NULL,'[\"Judge Henry X. Harper\"]'),(39628,780833,5,'director',NULL,NULL),(39628,204016,6,'writer','story',NULL),(39628,674169,7,'producer','producer',NULL),(39628,6203,8,'composer',NULL,NULL),(39628,13914,9,'cinematographer','director of photography',NULL),(39631,122,1,'actor',NULL,'[\"Henri Verdoux - Alias Varnay - Alias Bonheur - Alias Floray\"]'),(39631,180900,2,'actress',NULL,'[\"Mona Verdoux - His Wife\"]'),(39631,734467,3,'actor',NULL,'[\"Peter Verdoux - Their Son\"]'),(39631,507673,4,'actor',NULL,'[\"Maurice Bottello - Verdoux\'s Friend\"]'),(39631,80,5,'writer','based on an idea by',NULL),(39631,5906,6,'cinematographer','director of photography',NULL),(39631,630119,7,'editor',NULL,NULL),(39650,305568,10,'production_designer',NULL,NULL),(39650,599532,1,'actress',NULL,'[\"Andrea Ramos Brunet\"]'),(39650,315984,2,'actor',NULL,'[\"Román Brunet\"]'),(39650,219166,3,'actress',NULL,'[\"Ena Berenguer\"]'),(39650,147442,4,'actress',NULL,'[\"Tía Angustias\"]'),(39650,627438,5,'director',NULL,NULL),(39650,481001,6,'writer','novel',NULL),(39650,616333,7,'composer',NULL,NULL),(39650,5652,8,'cinematographer',NULL,NULL),(39650,679263,9,'editor',NULL,NULL),(39677,567754,10,'editor',NULL,NULL),(39677,51,1,'actor',NULL,'[\"Johnny McQueen\"]'),(39677,628579,2,'actor',NULL,'[\"Lukey\"]'),(39677,159258,3,'actor',NULL,'[\"Pat\"]'),(39677,431922,4,'actor',NULL,'[\"Shell\"]'),(39677,715346,5,'director',NULL,NULL),(39677,337837,6,'writer','by',NULL),(39677,792670,7,'writer','screenplay',NULL),(39677,5944,8,'composer',NULL,NULL),(39677,5761,9,'cinematographer','director of photography',NULL),(39689,2202,10,'composer',NULL,NULL),(39689,53,1,'actor',NULL,'[\"Jeff\"]'),(39689,339452,2,'actress',NULL,'[\"Kathie\"]'),(39689,18,3,'actor',NULL,'[\"Whit\"]'),(39689,281766,4,'actress',NULL,'[\"Meta Carson\"]'),(39689,869664,5,'director',NULL,NULL),(39689,537784,6,'writer','screen play by',NULL),(39689,128906,7,'writer',NULL,NULL),(39689,272045,8,'writer',NULL,NULL),(39689,240417,9,'producer','producer',NULL),(39694,372942,10,'writer','additional dialogue',NULL),(39694,60,1,'actor',NULL,'[\"Anthony Keane\"]'),(39694,2897,2,'actress',NULL,'[\"Gay Keane\"]'),(39694,1452,3,'actor',NULL,'[\"Judge Lord Thomas Horfield\"]'),(39694,2013,4,'actor',NULL,'[\"Sir Simon Flaquer\"]'),(39694,33,5,'director',NULL,NULL),(39694,382562,6,'writer','from the novel by',NULL),(39694,720904,7,'writer','adaptation',NULL),(39694,6388,8,'writer','screen play',NULL),(39694,108833,9,'writer','treatment in consultation with',NULL),(39819,674169,10,'producer','producer',NULL),(39819,2107,1,'actress',NULL,'[\"Cynthia Pilgrim\"]'),(39819,371376,2,'actor',NULL,'[\"John Pritchard\"]'),(39819,720843,3,'actress',NULL,'[\"Alice Pritchard\"]'),(39819,430870,4,'actor',NULL,'[\"Leander Woolsey\"]'),(39819,780833,5,'director',NULL,NULL),(39819,332539,6,'director','fill-in director',NULL),(39819,821472,7,'director','fill-in director',NULL),(39819,530978,8,'writer','from a story by',NULL),(39819,756226,9,'writer','from a story by',NULL),(39938,5892,10,'cinematographer','director of photography',NULL),(39938,639684,1,'actress',NULL,'[\"\'Meg\' Merlin\"]'),(39938,1998,2,'actress',NULL,'[\"Mlle. Ariane Bouchet\"]'),(39938,95741,3,'actress',NULL,'[\"La Darina\"]'),(39938,858683,4,'actor',NULL,'[\"Mr. Paneros\"]'),(39938,467396,5,'director',NULL,NULL),(39938,603008,6,'writer','story \"La Morte du Cygne\"',NULL),(39938,175333,7,'writer',NULL,NULL),(39938,664990,8,'producer','producer',NULL),(39938,6307,9,'composer',NULL,NULL),(39949,373816,10,'cinematographer',NULL,NULL),(39949,813922,1,'actor',NULL,'[\"Piotr Simon, the old man\"]'),(39949,350603,2,'actor',NULL,'[\"Hosszú\"]'),(39949,126564,3,'actress',NULL,'[\"Éva\"]'),(39949,126585,4,'actor',NULL,'[\"Police Commissioner\"]'),(39949,902839,5,'director',NULL,NULL),(39949,49462,6,'writer','writer',NULL),(39949,270835,7,'writer',NULL,NULL),(39949,617265,8,'writer',NULL,NULL),(39949,118893,9,'composer',NULL,NULL),(39969,270458,10,'editor',NULL,NULL),(39969,1654,1,'actor',NULL,'[\"Sgt. Bill Page\"]'),(39969,662223,2,'actress',NULL,'[\"Sally Middleton\"]'),(39969,781,3,'actress',NULL,'[\"Olive Lashbrooke\"]'),(39969,606998,4,'actor',NULL,'[\"Comm. Ned Burling\"]'),(39969,710924,5,'director',NULL,NULL),(39969,886668,6,'writer','screen play by',NULL),(39969,388841,7,'writer','additional dialogue by',NULL),(39969,70,8,'composer',NULL,NULL),(39969,5835,9,'cinematographer','director of photography',NULL),(40068,791217,10,'writer','characters',NULL),(40068,7941,1,'actor',NULL,'[\"Chick Young\"]'),(40068,182579,2,'actor',NULL,'[\"Wilbur Gray\"]'),(40068,1033,3,'actor',NULL,'[\"Lawrence Talbot\",\"The Wolfman\"]'),(40068,509,4,'actor',NULL,'[\"Dracula\"]'),(40068,59106,5,'director',NULL,NULL),(40068,487237,6,'director',NULL,NULL),(40068,498738,7,'writer','original screenplay',NULL),(40068,727411,8,'writer','original screenplay',NULL),(40068,335471,9,'writer','original screenplay',NULL),(40098,483101,10,'composer',NULL,NULL),(40098,46,1,'actress',NULL,'[\"Anna Karenina\"]'),(40098,724732,2,'actor',NULL,'[\"Karenin\"]'),(40098,601476,3,'actor',NULL,'[\"Count Vronsky\"]'),(40098,218787,4,'actor',NULL,'[\"Stepan Oblonsky\"]'),(40098,245213,5,'director',NULL,NULL),(40098,30478,6,'writer','screenplay',NULL),(40098,604698,7,'writer','screenplay',NULL),(40098,866243,8,'writer','novel',NULL),(40098,466099,9,'producer','producer',NULL),(40183,85261,10,'producer','producer',NULL),(40183,57,1,'actor',NULL,'[\"Prince Charles Edward Stuart\"]'),(40183,500364,2,'actress',NULL,'[\"Flora MacDonald\"]'),(40183,334234,3,'actor',NULL,'[\"Donald MacDonald\"]'),(40183,491406,4,'actor',NULL,'[\"Blind Jamie\"]'),(40183,454028,5,'director',NULL,NULL),(40183,35199,6,'director',NULL,NULL),(40183,466099,7,'director',NULL,NULL),(40183,829038,8,'director',NULL,NULL),(40183,199304,9,'writer','screen play',NULL),(40202,570215,10,'writer','based on articles by',NULL),(40202,71,1,'actor',NULL,'[\"P.J. McNeal\"]'),(40202,2017,2,'actor',NULL,'[\"Frank Wiecek\"]'),(40202,2011,3,'actor',NULL,'[\"Brian Kelly\"]'),(40202,907785,4,'actress',NULL,'[\"Laura McNeal\"]'),(40202,368871,5,'director',NULL,NULL),(40202,128332,6,'writer','screen play',NULL),(40202,237225,7,'writer','screen play',NULL),(40202,389002,8,'writer','adaptation',NULL),(40202,721913,9,'writer','adaptation',NULL),(40214,326368,10,'producer','producer',NULL),(40214,1119,1,'actress',NULL,'[\"Inez\"]'),(40214,553149,2,'actor',NULL,'[\"Pepe Le Moko\"]'),(40214,48,3,'actor',NULL,'[\"Slimane\"]'),(40214,869084,4,'actress',NULL,'[\"Gaby\"]'),(40214,77587,5,'director',NULL,NULL),(40214,124224,6,'writer','screenplay',NULL),(40214,543529,7,'writer','screenplay',NULL),(40214,152834,8,'writer','musical story',NULL),(40214,38837,9,'writer','novel \"Pepe Le Moko\"',NULL),(40221,5716,10,'cinematographer','director of photography',NULL),(40221,51,1,'actor',NULL,'[\"Larry Quinada\"]'),(40221,895,2,'actress',NULL,'[\"Leonora Eames\"]'),(40221,752813,3,'actor',NULL,'[\"Smith Ohlrig\"]'),(40221,272432,4,'actor',NULL,'[\"Dr. Hoffman\"]'),(40221,649097,5,'director',NULL,NULL),(40221,491306,6,'writer','screenplay',NULL),(40221,88748,7,'writer','novel \"Wild Calendar\"',NULL),(40221,718140,8,'producer','producer',NULL),(40221,6130,9,'composer',NULL,NULL),(40242,67,10,'composer',NULL,NULL),(40242,22,1,'actor',NULL,'[\"Brig. Gen. K.C. \'Casey\' Dennis\"]'),(40242,682074,2,'actor',NULL,'[\"Maj. Gen. Roland Goodlow Kane\"]'),(40242,4496,3,'actor',NULL,'[\"T\",\"Sgt. Immanuel T. Evans\"]'),(40242,2046,4,'actor',NULL,'[\"Brig. Gen. Clifton I. Garnet\"]'),(40242,939992,5,'director',NULL,NULL),(40242,481766,6,'writer','screenplay',NULL),(40242,296207,7,'writer','screenplay',NULL),(40242,354317,8,'writer','play',NULL),(40242,291548,9,'producer','producer',NULL),(40308,6085,10,'producer','producer',NULL),(40308,23,1,'actress',NULL,'[\"Hannah Brown\"]'),(40308,1,2,'actor',NULL,'[\"Don Hewes\"]'),(40308,492444,3,'actor',NULL,'[\"Jonathan Harrow III\"]'),(40308,587900,4,'actress',NULL,'[\"Nadine Hale\"]'),(40308,910199,5,'director',NULL,NULL),(40308,791084,6,'writer','screenplay',NULL),(40308,329304,7,'writer','screenplay',NULL),(40308,352443,8,'writer','screenplay',NULL),(40308,93397,9,'writer',NULL,NULL),(40321,5904,10,'cinematographer','director of photography',NULL),(40321,57,1,'actor',NULL,'[\"General Sir Roland Dane\"]'),(40321,942863,2,'actress',NULL,'[\"Lark Ingoldsby\"]'),(40321,450810,3,'actress',NULL,'[\"Grizel Dane\"]'),(40321,335048,4,'actor',NULL,'[\"Pilot Officer Pax Masterson\"]'),(40321,718321,5,'director',NULL,NULL),(40321,665875,6,'writer','screenplay',NULL),(40321,323869,7,'writer','from a novel by',NULL),(40321,326418,8,'producer','producer',NULL),(40321,6087,9,'composer',NULL,NULL),(40379,925130,10,'cinematographer','director of photography',NULL),(40379,804026,1,'actor',NULL,'[\"Red Jones\"]'),(40379,86268,2,'actress',NULL,'[\"Ann Elliot\"]'),(40379,570190,3,'actor',NULL,'[\"Keenan Wallick\"]'),(40379,111702,4,'actress',NULL,'[\"Mildred Trist\"]'),(40379,800373,5,'director',NULL,NULL),(40379,400403,6,'writer','story',NULL),(40379,850895,7,'writer','screenplay',NULL),(40379,293366,8,'writer','screenplay',NULL),(40379,6257,9,'composer',NULL,NULL),(40416,59,1,'actor',NULL,'[\"Hamlet, Prince of Denmark\"]'),(40416,1739,2,'actress',NULL,'[\"Ophelia, and Daughter\"]'),(40416,491406,3,'actor',NULL,'[\"Francisco\"]'),(40416,460874,4,'actor',NULL,'[\"Bernardo\"]'),(40416,636,5,'writer','by',NULL),(40416,6338,6,'composer',NULL,NULL),(40416,225512,7,'cinematographer',NULL,NULL),(40416,186508,8,'editor',NULL,NULL),(40458,2202,10,'composer',NULL,NULL),(40458,2050,1,'actress',NULL,'[\"Mama (Martha Hanson)\"]'),(40458,895,2,'actress',NULL,'[\"Katrin Hanson\"]'),(40458,393028,3,'actor',NULL,'[\"Uncle Chris\"]'),(40458,233856,4,'actor',NULL,'[\"Papa (Lars Hanson)\"]'),(40458,828419,5,'director',NULL,NULL),(40458,90840,6,'writer','screen play',NULL),(40458,886668,7,'writer','based upon the play \"I Remember Mama\" adapted by',NULL),(40458,285361,8,'writer','novel \"Mama\'s Bank Account\"',NULL),(40458,663832,9,'producer','producer',NULL),(40491,5743,10,'cinematographer',NULL,NULL),(40491,6,1,'actress',NULL,'[\"Joan\"]'),(40491,1207,2,'actor',NULL,'[\"The Dauphin - Charles VII, later King of France\"]'),(40491,747413,3,'actress',NULL,'[\"Isabelle d\'Arc - Her Mother\"]'),(40491,56719,4,'actor',NULL,'[\"Jacques d\'Arc - Her Father\"]'),(40491,281808,5,'director',NULL,NULL),(40491,27173,6,'writer','play \"Joan of Lorraine\"',NULL),(40491,813584,7,'writer','screenplay',NULL),(40491,911137,8,'producer','producer',NULL),(40491,6087,9,'composer',NULL,NULL),(40497,580195,10,'cinematographer',NULL,NULL),(40497,4244,1,'actor',NULL,'[\"François le facteur\"]'),(40497,213948,2,'actor',NULL,'[\"Roger\"]'),(40497,291289,3,'actor',NULL,'[\"Marcel\"]'),(40497,718820,4,'actress',NULL,'[\"Germaine\"]'),(40497,549804,5,'writer','writer',NULL),(40497,923941,6,'writer','writer',NULL),(40497,649296,7,'producer','producer',NULL),(40497,667400,8,'producer','producer',NULL),(40497,6342,9,'composer',NULL,NULL),(40506,5713,10,'cinematographer','director of photography',NULL),(40506,7,1,'actor',NULL,'[\"Frank McCloud\"]'),(40506,64,2,'actor',NULL,'[\"Johnny Rocco\"]'),(40506,2,3,'actress',NULL,'[\"Nora Temple\"]'),(40506,859,4,'actor',NULL,'[\"James Temple\"]'),(40506,1379,5,'director',NULL,NULL),(40506,112218,6,'writer','screenplay',NULL),(40506,27173,7,'writer','based on the play by',NULL),(40506,907003,8,'producer','producer',NULL),(40506,70,9,'composer',NULL,NULL),(40522,290000,10,'writer','screenplay',NULL),(40522,536009,1,'actor',NULL,'[\"Antonio\"]'),(40522,821543,2,'actor',NULL,'[\"Bruno\"]'),(40522,136794,3,'actress',NULL,'[\"Maria\"]'),(40522,22821,4,'actress',NULL,'[\"The Charitable Lady\"]'),(40522,1120,5,'director',NULL,NULL),(40522,953790,6,'writer','story',NULL),(40522,59030,7,'writer','novel',NULL),(40522,80755,8,'writer','screenplay',NULL),(40522,147599,9,'writer','screenplay',NULL),(40525,493353,10,'cinematographer','director of photography',NULL),(40525,28,1,'actress',NULL,'[\"Elsa Bannister\"]'),(40525,80,2,'actor',NULL,'[\"Michael O\'Hara\"]'),(40525,806041,3,'actor',NULL,'[\"Arthur Bannister\"]'),(40525,26011,4,'actor',NULL,'[\"George Grisby\"]'),(40525,455271,5,'writer','story based on a novel by',NULL),(40525,145336,6,'writer',NULL,NULL),(40525,496468,7,'writer',NULL,NULL),(40525,548529,8,'writer',NULL,NULL),(40525,6257,9,'composer',NULL,NULL),(40558,80,1,'actor',NULL,'[\"Macbeth\"]'),(40558,634282,2,'actress',NULL,'[\"Lady Macbeth\"]'),(40558,641397,3,'actor',NULL,'[\"Macduff\"]'),(40558,1522,4,'actor',NULL,'[\"Malcolm\"]'),(40558,636,5,'writer','by',NULL),(40558,6135,6,'composer',NULL,NULL),(40558,5852,7,'cinematographer','director of photography',NULL),(40558,512265,8,'editor',NULL,NULL),(40580,672093,10,'writer','story',NULL),(40580,1678,1,'actor',NULL,'[\"Roy Rogers\",\"Narrator (segment \\\"Pecos Bill\\\")\"]'),(40580,1022326,2,'actor',NULL,'[\"Trigger The Smartest Horse in the Movies\"]'),(40580,206376,3,'actor',NULL,'[\"Narrator\",\"Johnny Appleseed\",\"Johnny Appleseed\'s Angel\"]'),(40580,28739,4,'actress',NULL,'[\"Andrews Sisters\"]'),(40580,314671,5,'director','cartoon director',NULL),(40580,414144,6,'director','cartoon director',NULL),(40580,455741,7,'director','cartoon director',NULL),(40580,527217,8,'director','cartoon director',NULL),(40580,382548,9,'writer','story',NULL),(40613,2146,10,'cinematographer','director of photography',NULL),(40613,26,1,'actor',NULL,'[\"Jim Blandings\"]'),(40613,1485,2,'actress',NULL,'[\"Muriel Blandings\"]'),(40613,2048,3,'actor',NULL,'[\"Bill Cole\"]'),(40613,219666,4,'actor',NULL,'[\"Simms\"]'),(40613,693281,5,'director',NULL,NULL),(40613,388233,6,'writer','novel',NULL),(40613,659085,7,'writer','written for the screen by',NULL),(40613,291035,8,'writer','written for the screen by',NULL),(40613,363316,9,'composer',NULL,NULL),(40636,804244,10,'composer',NULL,NULL),(40636,280178,1,'actor',NULL,'[\"Lt. Dan Muldoon\"]'),(40636,3318,2,'actor',NULL,'[\"Frank Niles\"]'),(40636,366253,3,'actress',NULL,'[\"Ruth Morrison\"]'),(40636,852279,4,'actor',NULL,'[\"Jimmy Halloran\"]'),(40636,202088,5,'director',NULL,NULL),(40636,540816,6,'writer','screenplay',NULL),(40636,907013,7,'writer','screenplay',NULL),(40636,375446,8,'producer','producer',NULL),(40636,67,9,'composer',NULL,NULL),(40724,5737,10,'cinematographer',NULL,NULL),(40724,78,1,'actor',NULL,'[\"Thomas Dunson\"]'),(40724,1050,2,'actor',NULL,'[\"Matt Garth\"]'),(40724,238445,3,'actress',NULL,'[\"Tess Millay\"]'),(40724,974,4,'actor',NULL,'[\"Nadine Groot\"]'),(40724,1328,5,'director',NULL,NULL),(40724,744504,6,'director','co-director',NULL),(40724,153698,7,'writer','screenplay',NULL),(40724,773660,8,'writer','screenplay',NULL),(40724,6323,9,'composer',NULL,NULL),(40725,2153,10,'cinematographer','director of photography',NULL),(40725,906932,1,'actor',NULL,'[\"Boris Lermontov\"]'),(40725,330961,2,'actor',NULL,'[\"Julian Craster\"]'),(40725,790452,3,'actress',NULL,'[\"Victoria Page\"]'),(40725,375818,4,'actor',NULL,'[\"Ivan Boleslawsky\"]'),(40725,3836,5,'director',NULL,NULL),(40725,696247,6,'director',NULL,NULL),(40725,26153,7,'writer','fairy tale',NULL),(40725,935773,8,'writer','additional dialogue',NULL),(40725,247460,9,'composer',NULL,NULL),(40746,5877,10,'cinematographer','director of photography',NULL),(40746,71,1,'actor',NULL,'[\"Rupert Cadell\"]'),(40746,197982,2,'actor',NULL,'[\"Brandon\"]'),(40746,335048,3,'actor',NULL,'[\"Phillip\"]'),(40746,389516,4,'actor',NULL,'[\"David Kentley\"]'),(40746,33,5,'director',NULL,NULL),(40746,2025,6,'writer','adapted by',NULL),(40746,358096,7,'writer','from the play by',NULL),(40746,491306,8,'writer','screenplay',NULL),(40746,372942,9,'writer',NULL,NULL),(40806,60317,10,'producer','producer',NULL),(40806,14,1,'actress',NULL,'[\"Virginia Stuart Cunningham\"]'),(40806,828594,2,'actor',NULL,'[\"Robert Cunningham\"]'),(40806,312890,3,'actor',NULL,'[\"Dr. Mark Kik\"]'),(40806,2141,4,'actress',NULL,'[\"Grace\"]'),(40806,514822,5,'director',NULL,NULL),(40806,664022,6,'writer','screen play',NULL),(40806,104503,7,'writer','screen play',NULL),(40806,911720,8,'writer','based on the novel by',NULL),(40806,491306,9,'writer','contributor to screenplay construction',NULL),(40897,548929,10,'editor',NULL,NULL),(40897,7,1,'actor',NULL,'[\"Fred C. Dobbs\"]'),(40897,404158,2,'actor',NULL,'[\"Howard\"]'),(40897,392529,3,'actor',NULL,'[\"Curtin\"]'),(40897,71636,4,'actor',NULL,'[\"Cody\"]'),(40897,1379,5,'director',NULL,NULL),(40897,871252,6,'writer','based on the novel by',NULL),(40897,87533,7,'producer','producer',NULL),(40897,70,8,'composer',NULL,NULL),(40897,5792,9,'cinematographer','director of photography',NULL),(41088,5892,10,'cinematographer','director of photography',NULL),(41088,1336,1,'actor',NULL,'[\"Frank R. Enley\"]'),(41088,752813,2,'actor',NULL,'[\"Joe Parkson\"]'),(41088,1463,3,'actress',NULL,'[\"Edith Enley\"]'),(41088,802,4,'actress',NULL,'[\"Pat\"]'),(41088,3593,5,'director',NULL,NULL),(41088,724307,6,'writer','screenplay',NULL),(41088,949418,7,'writer','story',NULL),(41088,942934,8,'producer','producer',NULL),(41088,6147,9,'composer',NULL,NULL),(41090,5706,10,'cinematographer','director of photography',NULL),(41090,75,1,'actor',NULL,'[\"Adam Bonner\"]'),(41090,31,2,'actress',NULL,'[\"Amanda Bonner\"]'),(41090,391062,3,'actress',NULL,'[\"Doris Attinger\"]'),(41090,263885,4,'actor',NULL,'[\"Warren Attinger\"]'),(41090,2030,5,'director',NULL,NULL),(41090,2106,6,'writer','screen play',NULL),(41090,437717,7,'writer','screen play',NULL),(41090,918318,8,'producer','producer',NULL),(41090,67,9,'composer',NULL,NULL),(41094,672093,10,'writer','story',NULL),(41094,1078,1,'actor',NULL,'[\"Relating the Story of Ichabod Crane\"]'),(41094,1651,2,'actor',NULL,'[\"Narrating the Story of Mr. Toad\",\"Policeman\"]'),(41094,89314,3,'actor',NULL,'[\"Mr. Toad\"]'),(41094,572689,4,'actor',NULL,'[\"Prosecutor\"]'),(41094,19282,5,'director',NULL,NULL),(41094,314671,6,'director',NULL,NULL),(41094,455741,7,'director',NULL,NULL),(41094,410331,8,'writer','story \"The Legend of Sleepy Hollow\"',NULL),(41094,334370,9,'writer','story \"The Wind in the Willows\"',NULL),(41113,2024,1,'actor',NULL,'[\"Willie Stark\"]'),(41113,409869,2,'actor',NULL,'[\"Jack Burden\"]'),(41113,238445,3,'actress',NULL,'[\"Anne Stanton\"]'),(41113,1135,4,'actor',NULL,'[\"Tom Stark\"]'),(41113,744035,5,'director',NULL,NULL),(41113,913014,6,'writer','based upon: the Pulitzer Prize novel \"All the King\'s Men\"',NULL),(41113,344402,7,'composer',NULL,NULL),(41113,346532,8,'cinematographer','director of photography',NULL),(41113,163617,9,'editor',NULL,NULL),(41154,40916,10,'cinematographer',NULL,NULL),(41154,753479,1,'actor',NULL,'[\"Shukichi Somiya\"]'),(41154,361697,2,'actress',NULL,'[\"Noriko Somiya\"]'),(41154,875366,3,'actress',NULL,'[\"Aya Kitagawa\"]'),(41154,837503,4,'actress',NULL,'[\"Masa Taguchi\"]'),(41154,654868,5,'director',NULL,NULL),(41154,386426,6,'writer','based on the novel \"Chichi to musume\" by',NULL),(41154,633792,7,'writer','screenplay',NULL),(41154,945499,8,'producer','producer',NULL),(41154,411881,9,'composer',NULL,NULL),(41158,5889,10,'cinematographer','director of photography',NULL),(41158,1,1,'actor',NULL,'[\"Josh Barkley\"]'),(41158,1677,2,'actress',NULL,'[\"Dinah Barkley\"]'),(41158,505157,3,'actor',NULL,'[\"Ezra Millar\"]'),(41158,992,4,'actress',NULL,'[\"Mrs. Livingston Belney\"]'),(41158,910199,5,'director',NULL,NULL),(41158,173679,6,'writer','original screenplay',NULL),(41158,337582,7,'writer','original screenplay',NULL),(41158,791084,8,'writer','contributor to screen play',NULL),(41158,6085,9,'producer','producer',NULL),(41257,6203,10,'composer',NULL,NULL),(41257,949835,1,'actress',NULL,'[\"Sister Margaret\"]'),(41257,2141,2,'actress',NULL,'[\"Sister Scholastica\"]'),(41257,549280,3,'actor',NULL,'[\"Robert \'Bob\' Mason\"]'),(41257,6471,4,'actress',NULL,'[\"Amelia Potts\"]'),(41257,467396,5,'director',NULL,NULL),(41257,587743,6,'writer','screenplay',NULL),(41257,72639,7,'writer','screenplay',NULL),(41257,524403,8,'writer','story',NULL),(41257,257143,9,'producer','producer',NULL),(41373,70,10,'composer',NULL,NULL),(41373,1076,1,'actress',NULL,'[\"Lane Bellamy\"]'),(41373,779923,2,'actor',NULL,'[\"Fielding Carlisle\"]'),(41373,2113,3,'actor',NULL,'[\"Sheriff Titus Semple\"]'),(41373,108406,4,'actor',NULL,'[\"Dan Reynolds\"]'),(41373,2031,5,'director',NULL,NULL),(41373,928623,6,'writer','screenplay',NULL),(41373,636002,7,'writer','additional dialogue',NULL),(41373,928625,8,'writer','play \"Flamingo Road\"',NULL),(41373,907003,9,'producer','producer',NULL),(41386,918694,10,'editor',NULL,NULL),(41386,11,1,'actor',NULL,'[\"Howard Roark\"]'),(41386,623658,2,'actress',NULL,'[\"Dominique Francon\"]'),(41386,557339,3,'actor',NULL,'[\"Gail Wynand\"]'),(41386,808949,4,'actor',NULL,'[\"Peter Keating\"]'),(41386,896542,5,'director',NULL,NULL),(41386,709446,6,'writer','screenplay',NULL),(41386,87533,7,'producer','producer',NULL),(41386,70,8,'composer',NULL,NULL),(41386,122079,9,'cinematographer','director of photography',NULL),(41452,869860,10,'cinematographer','director of photography',NULL),(41452,14,1,'actress',NULL,'[\"Catherine Sloper\"]'),(41452,1050,2,'actor',NULL,'[\"Morris Townsend\"]'),(41452,724732,3,'actor',NULL,'[\"Dr. Austin Sloper\"]'),(41452,394244,4,'actress',NULL,'[\"Lavinia Penniman\"]'),(41452,943758,5,'director',NULL,NULL),(41452,324537,6,'writer','written for the screen by',NULL),(41452,324499,7,'writer','written for the screen by',NULL),(41452,416556,8,'writer','suggested by the novel \"Washington Square\" by',NULL),(41452,178716,9,'composer',NULL,NULL),(41498,797012,10,'producer','producer',NULL),(41498,26,1,'actor',NULL,'[\"Captain Henri Rochard\"]'),(41498,792130,2,'actress',NULL,'[\"1st Lt. Catherine Gates\"]'),(41498,551031,3,'actress',NULL,'[\"Lt. Kitty Lawrence\"]'),(41498,835836,4,'actress',NULL,'[\"Lt. Eloise Billings\"]'),(41498,1328,5,'director',NULL,NULL),(41498,496468,6,'writer','screen play',NULL),(41498,818700,7,'writer','screen play',NULL),(41498,928444,8,'writer','screen play',NULL),(41498,733887,9,'writer','story',NULL),(41546,5878,10,'cinematographer','director of photography',NULL),(41546,696866,1,'actor',NULL,'[\"Louis\"]'),(41546,27,2,'actor',NULL,'[\"The D\'Ascoyne Family: The Duke\",\"The Banker\",\"The Parson\"]'),(41546,387753,3,'actress',NULL,'[\"Edith\"]'),(41546,339343,4,'actress',NULL,'[\"Sibella\"]'),(41546,357607,5,'director',NULL,NULL),(41546,395170,6,'writer','novel',NULL),(41546,226538,7,'writer','screenplay',NULL),(41546,593867,8,'writer','screenplay revisions',NULL),(41546,49608,9,'producer','producer',NULL),(41587,587926,10,'cinematographer','director of photography',NULL),(41587,2022,1,'actress',NULL,'[\"Deborah Bishop\"]'),(41587,1105,2,'actress',NULL,'[\"Lora Mae Hollingsway\"]'),(41587,815433,3,'actress',NULL,'[\"Rita Phipps\"]'),(41587,18,4,'actor',NULL,'[\"George Phipps\"]'),(41587,581,5,'director',NULL,NULL),(41587,143837,6,'writer','adaptation',NULL),(41587,459255,7,'writer','Cosmopolitan Magazine novel',NULL),(41587,797012,8,'producer','producer',NULL),(41587,55,9,'composer',NULL,NULL),(41594,72639,10,'writer','contributor to screenplay construction',NULL),(41594,742,1,'actress',NULL,'[\"Jo\"]'),(41594,492444,2,'actor',NULL,'[\"Laurie\"]'),(41594,639684,3,'actress',NULL,'[\"Beth\"]'),(41594,72,4,'actress',NULL,'[\"Amy\"]'),(41594,503777,5,'director',NULL,NULL),(41594,813584,6,'writer','screen play by',NULL),(41594,556945,7,'writer','screen play by',NULL),(41594,373511,8,'writer','screen play by',NULL),(41594,17301,9,'writer','from the novel by',NULL),(41628,755270,10,'editor',NULL,NULL),(41628,1452,1,'actor',NULL,'[\"Inspector Jules Maigret\"]'),(41628,867144,2,'actor',NULL,'[\"Johann Radek\"]'),(41628,580565,3,'actor',NULL,'[\"Joseph Heurtin\"]'),(41628,404665,4,'actor',NULL,'[\"Bill Kirby\"]'),(41628,2164,5,'director','general director',NULL),(41628,113689,6,'writer','screenplay',NULL),(41628,799442,7,'writer','novel \"A Battle of Nerves\"',NULL),(41628,584965,8,'composer',NULL,NULL),(41628,5673,9,'cinematographer','director of photography',NULL),(41650,154924,10,'editor',NULL,NULL),(41650,601930,1,'actress',NULL,'[\"Jill Young\"]'),(41650,424565,2,'actor',NULL,'[\"Gregg\"]'),(41650,35877,3,'actor',NULL,'[\"Max O\'Hara\"]'),(41650,5935170,4,'self',NULL,'[\"Self\"]'),(41650,774325,5,'director',NULL,NULL),(41650,741656,6,'writer','screenplay',NULL),(41650,178260,7,'writer','from an original story by',NULL),(41650,2202,8,'composer',NULL,NULL),(41650,402478,9,'cinematographer','director of photography',NULL),(41716,5849,10,'cinematographer','director of photography',NULL),(41716,37,1,'actor',NULL,'[\"Gabey\"]'),(41716,69,2,'actor',NULL,'[\"Chip\"]'),(41716,308081,3,'actress',NULL,'[\"Brunhilde Esterhazy\"]'),(41716,587900,4,'actress',NULL,'[\"Claire Huddesen\"]'),(41716,2045,5,'director',NULL,NULL),(41716,337582,6,'writer','screenplay',NULL),(41716,173679,7,'writer','screenplay',NULL),(41716,730385,8,'writer','idea',NULL),(41716,6085,9,'producer','producer',NULL),(41719,544786,1,'actor',NULL,'[\"Orphée\"]'),(41719,673749,2,'actor',NULL,'[\"Heurtebise\"]'),(41719,143018,3,'actress',NULL,'[\"The Princess - Death\"]'),(41719,6741,4,'actress',NULL,'[\"Eurydice\"]'),(41719,168413,5,'director',NULL,NULL),(41719,5952,6,'composer',NULL,NULL),(41719,370865,7,'cinematographer',NULL,NULL),(41719,755608,8,'editor',NULL,NULL),(41719,195618,9,'production_designer',NULL,NULL),(41746,5234602,10,'writer','contributor to screenplay',NULL),(41746,2022,1,'actress',NULL,'[\"Patricia \'Pinky\' Johnson\"]'),(41746,856,2,'actress',NULL,'[\"Miss Em\"]'),(41746,914083,3,'actress',NULL,'[\"Dicey Johnson\"]'),(41746,526485,4,'actor',NULL,'[\"Dr. Thomas Adams\"]'),(41746,1415,5,'director',NULL,NULL),(41746,406,6,'director',NULL,NULL),(41746,838865,7,'writer','novel \"Quality\"',NULL),(41746,242897,8,'writer','screenplay',NULL),(41746,629580,9,'writer','screenplay',NULL),(41859,343481,10,'editor',NULL,NULL),(41859,752813,1,'actor',NULL,'[\"Bill \'Stoker\' Thompson\"]'),(41859,869429,2,'actress',NULL,'[\"Julie Thompson\"]'),(41859,864869,3,'actor',NULL,'[\"Tiny\"]'),(41859,62667,4,'actor',NULL,'[\"Little Boy\"]'),(41859,936404,5,'director',NULL,NULL),(41859,169883,6,'writer','screenplay',NULL),(41859,545309,7,'writer','from the poem by',NULL),(41859,326371,8,'producer','producer',NULL),(41859,5762,9,'cinematographer','director of photography',NULL),(41947,489967,10,'composer',NULL,NULL),(41947,851,1,'actor',NULL,'[\"Tarzan\"]'),(41947,431502,2,'actress',NULL,'[\"Jane\"]'),(41947,215260,3,'actor',NULL,'[\"Mr. Trask\"]'),(41947,30166,4,'actress',NULL,'[\"Gloria James Jessup\"]'),(41947,794793,5,'director',NULL,NULL),(41947,802561,6,'writer','screenplay',NULL),(41947,151310,7,'writer','screenplay',NULL),(41947,123194,8,'writer','based upon the characters created by',NULL),(41947,504344,9,'producer','producer',NULL),(41959,80,1,'actor',NULL,'[\"Harry Lime\"]'),(41959,1072,2,'actor',NULL,'[\"Holly Martins\"]'),(41959,885098,3,'actress',NULL,'[\"Anna Schmidt\"]'),(41959,2145,4,'actor',NULL,'[\"Maj. Calloway\"]'),(41959,715346,5,'director',NULL,NULL),(41959,1294,6,'writer','by',NULL),(41959,466099,7,'writer','story',NULL),(41959,5761,8,'cinematographer',NULL,NULL),(41959,353091,9,'editor',NULL,NULL),(42004,108833,10,'writer','screenplay',NULL),(42004,6,1,'actress',NULL,'[\"Lady Henrietta Flusky\"]'),(42004,1072,2,'actor',NULL,'[\"Sam Flusky\"]'),(42004,928697,3,'actor',NULL,'[\"Hon. Charles Adare\"]'),(42004,500364,4,'actress',NULL,'[\"Milly\"]'),(42004,33,5,'director',NULL,NULL),(42004,173303,6,'writer','play',NULL),(42004,511626,7,'writer','play',NULL),(42004,801026,8,'writer','novel',NULL),(42004,2025,9,'writer','adaptation',NULL),(42031,793617,10,'producer','producer',NULL),(42031,849011,1,'actress',NULL,'[\"Eiko Hirayama\"]'),(42031,593930,2,'actress',NULL,'[\"Chiyo\"]'),(42031,594381,3,'actress',NULL,'[\"Toshiko Kishida\"]'),(42031,837360,4,'actor',NULL,'[\"Kentaro Omoi\"]'),(42031,3226,5,'director',NULL,NULL),(42031,633792,6,'writer','novel',NULL),(42031,793881,7,'writer','writer',NULL),(42031,406808,8,'writer','writer',NULL),(42031,411797,9,'producer','producer',NULL),(42192,572492,10,'editor',NULL,NULL),(42192,12,1,'actress',NULL,'[\"Margo\"]'),(42192,879,2,'actress',NULL,'[\"Eve\"]'),(42192,1695,3,'actor',NULL,'[\"Addison DeWitt\"]'),(42192,2141,4,'actress',NULL,'[\"Karen\"]'),(42192,581,5,'director',NULL,NULL),(42192,650581,6,'writer','story \"The Wisdom of Eve\"',NULL),(42192,953123,7,'producer','producer',NULL),(42192,55,8,'composer',NULL,NULL),(42192,5762,9,'cinematographer','director of photography',NULL),(42208,5849,10,'cinematographer','director of photography',NULL),(42208,1330,1,'actor',NULL,'[\"Dix Handley\"]'),(42208,129894,2,'actor',NULL,'[\"Alonzo D. Emmerich\"]'),(42208,353405,3,'actress',NULL,'[\"Doll Conovan\"]'),(42208,926235,4,'actor',NULL,'[\"Gus Minissi\"]'),(42208,1379,5,'director',NULL,NULL),(42208,534693,6,'writer','screen play',NULL),(42208,122446,7,'writer','from a novel by',NULL),(42208,394967,8,'producer','producer',NULL),(42208,67,9,'composer',NULL,NULL),(42276,907900,10,'cinematographer','director of photography',NULL),(42276,391062,1,'actress',NULL,'[\"Billie Dawn\"]'),(42276,34,2,'actor',NULL,'[\"Paul Verrall\"]'),(42276,2024,3,'actor',NULL,'[\"Harry Brock\"]'),(42276,820643,4,'actor',NULL,'[\"Jim Devery\"]'),(42276,2030,5,'director',NULL,NULL),(42276,437717,6,'writer','play',NULL),(42276,543171,7,'writer','screenplay',NULL),(42276,800373,8,'producer','producer',NULL),(42276,6130,9,'composer',NULL,NULL),(42296,349246,10,'cinematographer','director of photography',NULL),(42296,662223,1,'actress',NULL,'[\"Marie Allen\"]'),(42296,1547,2,'actress',NULL,'[\"Ruth Benton\"]'),(42296,179289,3,'actress',NULL,'[\"Emma Barber\"]'),(42296,256216,4,'actress',NULL,'[\"Evelyn Harper\"]'),(42296,188669,5,'director',NULL,NULL),(42296,446132,6,'writer','written by',NULL),(42296,774441,7,'writer','written by',NULL),(42296,907003,8,'producer','producer',NULL),(42296,70,9,'composer',NULL,NULL),(42332,672093,10,'writer','story',NULL),(42332,940627,1,'actress',NULL,'[\"Cinderella\"]'),(42332,531763,2,'actor',NULL,'[\"Jaq\",\"Gus\",\"Bruno\"]'),(42332,41598,3,'actress',NULL,'[\"Lady Tremaine\"]'),(42332,271658,4,'actress',NULL,'[\"Fairy Godmother\"]'),(42332,314671,5,'director',NULL,NULL),(42332,414144,6,'director',NULL,NULL),(42332,527217,7,'director',NULL,NULL),(42332,674518,8,'writer','from the original classic by',NULL),(42332,670328,9,'writer','story',NULL),(42369,5768,10,'cinematographer','director of photography',NULL),(42369,639529,1,'actor',NULL,'[\"Frank Bigelow\"]'),(42369,110219,2,'actress',NULL,'[\"Paula Gibson\"]'),(42369,12204,3,'actor',NULL,'[\"Majak\"]'),(42369,307500,4,'actress',NULL,'[\"Miss Foster\"]'),(42369,5789,5,'director',NULL,NULL),(42369,745866,6,'writer','story and screenplay',NULL),(42369,338707,7,'writer','story and screenplay',NULL),(42369,691283,8,'producer','producer',NULL),(42369,6323,9,'composer',NULL,NULL),(42436,836677,1,'actress',NULL,'[\"Elisabeth\"]'),(42436,220448,2,'actor',NULL,'[\"Paul\"]'),(42436,181867,3,'actress',NULL,'[\"Dargelos\",\"Agathe\"]'),(42436,76248,4,'actor',NULL,'[\"Gerard\"]'),(42436,578483,5,'director',NULL,NULL),(42436,168413,6,'writer','novel',NULL),(42436,5684,7,'cinematographer',NULL,NULL),(42436,95093,8,'editor',NULL,NULL),(42436,1508087,9,'production_designer',NULL,NULL),(42469,175704,1,'actor',NULL,'[\"Mike Trent\"]'),(42469,308451,2,'actor',NULL,'[\"Vee Langley\"]'),(42469,903100,3,'actor',NULL,'[\"Hans\"]'),(42469,528924,4,'actor',NULL,'[\"Alex Muller\"]'),(42469,949617,5,'writer','screen adaptation',NULL),(42469,130065,6,'composer',NULL,NULL),(42469,5896,7,'cinematographer',NULL,NULL),(42469,186274,8,'editor',NULL,NULL),(42530,455061,10,'producer','producer',NULL),(42530,197982,1,'actor',NULL,'[\"Bart Tare\"]'),(42530,192033,2,'actress',NULL,'[\"Annie Laurie Starr\"]'),(42530,471854,3,'actor',NULL,'[\"Packett\"]'),(42530,138885,4,'actor',NULL,'[\"Judge Willoughby\"]'),(42530,507390,5,'director',NULL,NULL),(42530,437969,6,'writer','screenplay by',NULL),(42530,442228,7,'writer','screenplay by',NULL),(42530,874308,8,'writer','screenplay',NULL),(42530,454716,9,'producer','producer',NULL),(42546,804244,10,'composer',NULL,NULL),(42546,71,1,'actor',NULL,'[\"Elwood P. Dowd\"]'),(42546,285922,2,'actor',NULL,'[\"Ellis Logfren, The Taxi Driver\"]'),(42546,528621,3,'actor',NULL,'[\"Judge Omar Gaffney\"]'),(42546,395067,4,'actress',NULL,'[\"Myrtle Mae Simmons\"]'),(42546,467396,5,'director',NULL,NULL),(42546,153808,6,'writer','from the Pulitzer Prize Play by',NULL),(42546,110958,7,'writer','screenplay',NULL),(42546,175333,8,'writer','contributor to screenplay',NULL),(42546,65184,9,'producer','producer',NULL),(42593,5947,10,'composer',NULL,NULL),(42593,7,1,'actor',NULL,'[\"Dixon Steele\"]'),(42593,2108,2,'actress',NULL,'[\"Laurel Gray\"]'),(42593,522481,3,'actor',NULL,'[\"Brub Nicolai\"]'),(42593,717203,4,'actor',NULL,'[\"Capt. Lochner\"]'),(42593,712947,5,'director',NULL,NULL),(42593,813584,6,'writer','screenplay',NULL),(42593,636002,7,'writer','adaptation',NULL),(42593,400568,8,'writer','story',NULL),(42593,520501,9,'producer','producer',NULL),(42619,493508,1,'actor',NULL,'[\"Priest of Ambricourt (Curé d\'Ambricourt)\"]'),(42619,480564,2,'actress',NULL,'[\"Chantal\"]'),(42619,729635,3,'actor',NULL,'[\"Count (Le Comte)\"]'),(42619,346653,4,'actor',NULL,'[\"Priest of Torcy (Curé de Torcy)\"]'),(42619,975,5,'director',NULL,NULL),(42619,76111,6,'writer','novel',NULL),(42619,198398,7,'composer',NULL,NULL),(42619,5662,8,'cinematographer',NULL,NULL),(42619,730700,9,'editor',NULL,NULL),(42792,5762,10,'cinematographer','director of photography',NULL),(42792,1847,1,'actor',NULL,'[\"Ray Biddle\"]'),(42792,1105,2,'actress',NULL,'[\"Edie Johnson\"]'),(42792,573640,3,'actor',NULL,'[\"Dr. Dan Wharton\"]'),(42792,1627,4,'actor',NULL,'[\"Dr. Luther Brooks\"]'),(42792,581,5,'director',NULL,NULL),(42792,760488,6,'writer','written by',NULL),(42792,948634,7,'writer','contract writer',NULL),(42792,953123,8,'producer','producer',NULL),(42792,55,9,'composer',NULL,NULL),(42832,536941,10,'writer','contract writer',NULL),(42832,1847,1,'actor',NULL,'[\"Lt. Cmdr. Clinton Reed\"]'),(42832,7222,2,'actor',NULL,'[\"Capt. Tom Warren\"]'),(42832,895,3,'actress',NULL,'[\"Nancy Reed\"]'),(42832,1588,4,'actor',NULL,'[\"Blackie\"]'),(42832,1415,5,'director',NULL,NULL),(42832,614645,6,'writer','screenplay',NULL),(42832,297190,7,'writer','adaptation',NULL),(42832,30018,8,'writer','story',NULL),(42832,30019,9,'writer','story',NULL),(42876,594335,10,'cinematographer',NULL,NULL),(42876,1536,1,'actor',NULL,'[\"Tajômaru\"]'),(42876,477553,2,'actress',NULL,'[\"Masako Kanazawa\"]'),(42876,605270,3,'actor',NULL,'[\"Takehiro Kanazawa\"]'),(42876,793766,4,'actor',NULL,'[\"Woodcutter\"]'),(42876,41,5,'director',NULL,NULL),(42876,15611,6,'writer','stories Rashomon and In a Grove',NULL),(42876,368074,7,'writer','screenplay',NULL),(42876,423122,8,'producer','producer',NULL),(42876,370593,9,'composer',NULL,NULL),(42958,1536,1,'actor',NULL,'[\"Ichirô Aoye\"]'),(42958,945354,2,'actress',NULL,'[\"Miyako Saijo\"]'),(42958,441574,3,'actress',NULL,'[\"Masako Hiruta\"]'),(42958,784279,4,'actress',NULL,'[\"Sumie\"]'),(42958,41,5,'director',NULL,NULL),(42958,452878,6,'writer','written by',NULL),(42958,463506,7,'producer','producer',NULL),(42958,370593,8,'composer',NULL,NULL),(42958,879693,9,'cinematographer',NULL,NULL),(42994,532030,10,'writer',NULL,NULL),(42994,17,1,'actress',NULL,'[\"Charlotte Inwood\"]'),(42994,943837,2,'actress',NULL,'[\"Eve Gill\"]'),(42994,865262,3,'actor',NULL,'[\"Jonathan Cooper\"]'),(42994,928697,4,'actor',NULL,'[\"Ordinary Smith\"]'),(42994,33,5,'director',NULL,NULL),(42994,177336,6,'writer','screen play',NULL),(42994,720904,7,'writer','adaptation by',NULL),(42994,421862,8,'writer','based on the novel \"Man Running\" by',NULL),(42994,108833,9,'writer','additional dialogue',NULL),(43012,15573,10,'editor',NULL,NULL),(43012,23,1,'actress',NULL,'[\"Jane Falbury\"]'),(43012,37,2,'actor',NULL,'[\"Joe D. Ross\"]'),(43012,102787,3,'actor',NULL,'[\"Orville Wingait\"]'),(43012,2038,4,'actress',NULL,'[\"Abigail Falbury\"]'),(43012,910199,5,'director',NULL,NULL),(43012,920216,6,'writer','screenplay',NULL),(43012,177934,7,'writer','screenplay',NULL),(43012,664990,8,'producer','producer',NULL),(43012,686514,9,'cinematographer','director of photography',NULL),(43014,772834,10,'editor',NULL,NULL),(43014,34,1,'actor',NULL,'[\"Joe Gillis\"]'),(43014,841797,2,'actress',NULL,'[\"Norma Desmond\"]'),(43014,2233,3,'actor',NULL,'[\"Max Von Mayerling\"]'),(43014,647970,4,'actress',NULL,'[\"Betty Schaefer\"]'),(43014,697,5,'director',NULL,NULL),(43014,102818,6,'writer','written by',NULL),(43014,551261,7,'writer','written by',NULL),(43014,77,8,'composer',NULL,NULL),(43014,5870,9,'cinematographer','director of photography',NULL),(43025,6275,10,'composer',NULL,NULL),(43025,851,1,'actor',NULL,'[\"Tarzan\"]'),(43025,114847,2,'actress',NULL,'[\"Jane\"]'),(43025,17376,3,'actor',NULL,'[\"Neil\"]'),(43025,368836,4,'actor',NULL,'[\"Prince of the Lionians\"]'),(43025,794793,5,'director',NULL,NULL),(43025,414989,6,'writer','screenplay',NULL),(43025,67801,7,'writer','screenplay',NULL),(43025,123194,8,'writer','based upon the characters created by',NULL),(43025,504344,9,'producer','producer',NULL),(43045,5741,10,'cinematographer','director of photography',NULL),(43045,662223,1,'actress',NULL,'[\"Susan Adele Connors Chase\"]'),(43045,623658,2,'actress',NULL,'[\"Phyllis Horn\"]'),(43045,738746,3,'actress',NULL,'[\"Ann Lawrence\"]'),(43045,522481,4,'actor',NULL,'[\"Bob Duffy\"]'),(43045,936404,5,'director',NULL,NULL),(43045,705228,6,'writer','written by',NULL),(43045,442456,7,'writer','written by',NULL),(43045,818328,8,'producer','producer',NULL),(43045,5987,9,'composer',NULL,NULL),(43137,200125,10,'cinematographer','director of photography',NULL),(43137,71,1,'actor',NULL,'[\"Lin McAdam\"]'),(43137,1859,2,'actress',NULL,'[\"Lola Manners\"]'),(43137,2053,3,'actor',NULL,'[\"Waco Johnny Dean\"]'),(43137,573640,4,'actor',NULL,'[\"Dutch Henry Brown\"]'),(43137,542649,5,'director',NULL,NULL),(43137,724307,6,'writer','screenplay',NULL),(43137,153698,7,'writer','screenplay',NULL),(43137,482193,8,'writer','story',NULL),(43137,742162,9,'producer','producer',NULL),(43265,818545,10,'producer','producer',NULL),(43265,7,1,'actor',NULL,'[\"Charlie Allnutt\"]'),(43265,31,2,'actress',NULL,'[\"Rose Sayer\"]'),(43265,605923,3,'actor',NULL,'[\"Rev. Samuel Sayer - The Brother\"]'),(43265,119988,4,'actor',NULL,'[\"Captain of Louisa\"]'),(43265,1379,5,'director',NULL,NULL),(43265,286163,6,'writer','novel \"The African Queen\"',NULL),(43265,12938,7,'writer','adapted for the screen by',NULL),(43265,171924,8,'writer',NULL,NULL),(43265,896830,9,'writer',NULL,NULL),(43274,382548,10,'writer','story',NULL),(43274,64607,1,'actress',NULL,'[\"Alice\"]'),(43274,943956,2,'actor',NULL,'[\"Mad Hatter\"]'),(43274,370821,3,'actor',NULL,'[\"Caterpillar\"]'),(43274,1359,4,'actor',NULL,'[\"Cheshire Cat\"]'),(43274,314671,5,'director',NULL,NULL),(43274,414144,6,'director',NULL,NULL),(43274,527217,7,'director',NULL,NULL),(43274,455741,8,'director',NULL,NULL),(43274,140902,9,'writer','adaptation: of \"The Adventures of Alice in Wonderland\" and \"Through the Looking Glass\"',NULL),(43278,37,1,'actor',NULL,'[\"Jerry Mulligan\"]'),(43278,1989,2,'actress',NULL,'[\"Lise Bouvier\"]'),(43278,505157,3,'actor',NULL,'[\"Adam Cook\"]'),(43278,350250,4,'actor',NULL,'[\"Henri Baurel\"]'),(43278,591486,5,'director',NULL,NULL),(43278,503585,6,'writer','story by',NULL),(43278,6085,7,'producer','producer',NULL),(43278,5720,8,'cinematographer','director of photography',NULL),(43278,269751,9,'editor',NULL,NULL),(43313,357310,10,'editor',NULL,NULL),(43313,361697,1,'actress',NULL,'[\"Noriko Mamiya\"]'),(43313,753479,2,'actor',NULL,'[\"Koichi Mamiya\"]'),(43313,43398,3,'actress',NULL,'[\"Aya Tamura\"]'),(43313,594381,4,'actress',NULL,'[\"Fumiko Mamiya\"]'),(43313,654868,5,'director',NULL,NULL),(43313,633792,6,'writer',NULL,NULL),(43313,945499,7,'producer','producer',NULL),(43313,411881,8,'composer',NULL,NULL),(43313,40916,9,'cinematographer',NULL,NULL),(43332,739886,10,'cinematographer',NULL,NULL),(43332,536167,1,'actress',NULL,'[\"Maddalena Cecconi\"]'),(43332,157067,2,'actor',NULL,'[\"Alberto Annovazzi\"]'),(43332,32035,3,'actress',NULL,'[\"Maria Cecconi\"]'),(43332,719947,4,'actor',NULL,'[\"Spartaco Cecconi\"]'),(43332,899581,5,'director',NULL,NULL),(43332,953790,6,'writer','story',NULL),(43332,147599,7,'writer','screenplay',NULL),(43332,742940,8,'writer','screenplay',NULL),(43332,691936,9,'cinematographer',NULL,NULL),(43338,485702,10,'cinematographer','director of photography',NULL),(43338,18,1,'actor',NULL,'[\"Chuck Tatum\"]'),(43338,12443,2,'actress',NULL,'[\"Lorraine Minosa\"]'),(43338,37816,3,'actor',NULL,'[\"Herbie Cook\"]'),(43338,356004,4,'actor',NULL,'[\"Jacob Q. Boot\"]'),(43338,697,5,'director',NULL,NULL),(43338,760488,6,'writer','written by',NULL),(43338,628305,7,'writer','written by',NULL),(43338,221528,8,'writer','story',NULL),(43338,6087,9,'composer',NULL,NULL),(43390,6238,10,'composer',NULL,NULL),(43390,949835,1,'actress',NULL,'[\"Ellen Jones\"]'),(43390,837959,2,'actor',NULL,'[\"George Z. Jones\"]'),(43390,184840,3,'actor',NULL,'[\"Dr. Ranney Grahame\"]'),(43390,319357,4,'actress',NULL,'[\"Mrs. Edwards\"]'),(43390,307819,5,'director',NULL,NULL),(43390,227571,6,'writer','screen play',NULL),(43390,507830,7,'writer','screen play',NULL),(43390,546140,8,'writer','story',NULL),(43390,455510,9,'writer',NULL,NULL),(43456,869860,10,'cinematographer','director of photography',NULL),(43456,719692,1,'actor',NULL,'[\"Klaatu\"]'),(43456,623658,2,'actress',NULL,'[\"Helen Benson\"]'),(43456,549280,3,'actor',NULL,'[\"Tom Stevens\"]'),(43456,415488,4,'actor',NULL,'[\"Professor Jacob Barnhardt\"]'),(43456,936404,5,'director',NULL,NULL),(43456,636002,6,'writer','screen play by',NULL),(43456,60915,7,'writer','based on a story by',NULL),(43456,87906,8,'producer','producer',NULL),(43456,2136,9,'composer',NULL,NULL),(43511,744021,10,'composer',NULL,NULL),(43511,6,1,'actress',NULL,'[\"Irene Girard\"]'),(43511,461594,2,'actor',NULL,'[\"George Girard\"]'),(43511,316282,3,'actor',NULL,'[\"Andrea Casatti\"]'),(43511,556399,4,'actress',NULL,'[\"Giulietta, detta Passerotto\"]'),(43511,744023,5,'director',NULL,NULL),(43511,208350,6,'writer','written by',NULL),(43511,659675,7,'writer','written by',NULL),(43511,673773,8,'writer','written by',NULL),(43511,740021,9,'writer','written by',NULL),(43614,559688,10,'production_designer',NULL,NULL),(43614,361697,1,'actress',NULL,'[\"Taeko Nasu\"]'),(43614,605270,2,'actor',NULL,'[\"Kinji Kameda\"]'),(43614,1536,3,'actor',NULL,'[\"Denkichi Akama\"]'),(43614,473984,4,'actress',NULL,'[\"Ayako\"]'),(43614,41,5,'director',NULL,NULL),(43614,234502,6,'writer','novel \"The Idiot\"',NULL),(43614,386750,7,'writer',NULL,NULL),(43614,370593,8,'composer',NULL,NULL),(43614,879693,9,'cinematographer',NULL,NULL),(43686,432119,10,'cinematographer','director of photography',NULL),(43686,693560,1,'actor',NULL,'[\"Michel Dollé\"]'),(43686,287637,2,'actress',NULL,'[\"Paulette\"]'),(43686,25523,3,'actor',NULL,'[\"Francis Gouard\"]'),(43686,46133,4,'actress',NULL,'[\"Berthe Dollé\"]'),(43686,167496,5,'director',NULL,NULL),(43686,102030,6,'writer','novel',NULL),(43686,42179,7,'writer','screen adaptation',NULL),(43686,98204,8,'writer','screen adaptation',NULL),(43686,233587,9,'producer','producer',NULL),(43695,504344,10,'producer','producer',NULL),(43695,851,1,'actor',NULL,'[\"Tarzan\"]'),(43695,404157,2,'actress',NULL,'[\"Jane\"]'),(43695,534317,3,'actor',NULL,'[\"Radijeck\"]'),(43695,288830,4,'actor',NULL,'[\"Herbert Trask\"]'),(43695,5738,5,'director',NULL,NULL),(43695,123194,6,'writer','based on character created by',NULL),(43695,628257,7,'writer','original screenplay',NULL),(43695,841702,8,'writer','original screenplay',NULL),(43695,184100,9,'writer','additional dialogue',NULL),(43769,2153,10,'cinematographer','director of photography',NULL),(43769,232196,1,'actor',NULL,'[\"William Friese-Greene\"]'),(43769,770730,2,'actress',NULL,'[\"Helena Friese-Greene\"]'),(43769,38914,3,'actress',NULL,'[\"Miss Tagg\"]'),(43769,277,4,'actor',NULL,'[\"Jack Carter\"]'),(43769,99589,5,'director',NULL,NULL),(43769,21504,6,'writer','based on the biography: \"Friese-Greene, Close Up of an Inventor\"',NULL),(43769,1907,7,'writer','screenplay',NULL),(43769,623768,8,'producer','producer',NULL),(43769,5944,9,'composer',NULL,NULL),(43871,507930,10,'editor',NULL,NULL),(43871,623554,1,'actress',NULL,'[\"Odette Sansom\",\"Lise\"]'),(43871,2145,2,'actor',NULL,'[\"Captain Peter Churchill\",\"Raoul\"]'),(43871,330961,3,'actor',NULL,'[\"Colonel Henri\"]'),(43871,1811,4,'actor',NULL,'[\"Lt. Alex Rabinovich\",\"Arnauld\"]'),(43871,928214,5,'director',NULL,NULL),(43871,862691,6,'writer','by',NULL),(43871,834752,7,'writer','screenplay',NULL),(43871,172141,8,'composer',NULL,NULL),(43871,5727,9,'cinematographer','director of photography',NULL),(43949,797197,10,'writer','based on the novel by',NULL),(43949,1791,1,'actor',NULL,'[\"Marcus Vinicius\"]'),(43949,39,2,'actress',NULL,'[\"Lygia\"]'),(43949,312890,3,'actor',NULL,'[\"Petronius\"]'),(43949,1811,4,'actor',NULL,'[\"Nero\"]'),(43949,503777,5,'director',NULL,NULL),(43949,542649,6,'director',NULL,NULL),(43949,536941,7,'writer','screen play',NULL),(43949,67103,8,'writer','screen play',NULL),(43949,397022,9,'writer','screen play',NULL),(44030,6085,10,'producer','producer',NULL),(44030,337113,1,'actress',NULL,'[\"Magnolia Hawks\"]'),(44030,1257,2,'actress',NULL,'[\"Julie LaVerne\"]'),(44030,444476,3,'actor',NULL,'[\"Gaylord Ravenal\"]'),(44030,113873,4,'actor',NULL,'[\"Cap\'n Andy Hawks\"]'),(44030,796645,5,'director',NULL,NULL),(44030,536941,6,'writer','screen play',NULL),(44030,6153,7,'writer','based on the immortal musical play \"Show Boat\" by',NULL),(44030,358564,8,'writer','based on the immortal musical play \"Show Boat\" by',NULL),(44030,272209,9,'writer','from novel',NULL),(44079,372942,10,'writer',NULL,NULL),(44079,335048,1,'actor',NULL,'[\"Guy Haines\"]'),(44079,908153,2,'actor',NULL,'[\"Bruno Antony\"]'),(44079,738746,3,'actress',NULL,'[\"Anne Morton\"]'),(44079,1991,4,'actor',NULL,'[\"Sen. Morton\"]'),(44079,33,5,'director',NULL,NULL),(44079,151452,6,'writer','screen play',NULL),(44079,650262,7,'writer','screen play',NULL),(44079,177336,8,'writer','adaptation',NULL),(44079,383604,9,'writer','from the novel by',NULL),(44081,5889,10,'cinematographer','director of photography',NULL),(44081,46,1,'actress',NULL,'[\"Blanche DuBois\"]'),(44081,8,2,'actor',NULL,'[\"Stanley Kowalski\"]'),(44081,1375,3,'actress',NULL,'[\"Stella Kowalski\"]'),(44081,1500,4,'actor',NULL,'[\"Harold \'Mitch\' Mitchell\"]'),(44081,1415,5,'director',NULL,NULL),(44081,931783,6,'writer','screen play',NULL),(44081,766665,7,'writer','adaptation by',NULL),(44081,271012,8,'producer','producer',NULL),(44081,6218,9,'composer',NULL,NULL),(44092,673337,10,'cinematographer',NULL,NULL),(44092,679133,1,'actor',NULL,'[\"El Mellao\"]'),(44092,39707,2,'actress',NULL,'[\"Pili\"]'),(44092,34370,3,'actor',NULL,'[\"Pepe\"]'),(44092,508148,4,'actress',NULL,'[\"Tonia\"]'),(44092,631370,5,'director',NULL,NULL),(44092,599545,6,'writer','idea',NULL),(44092,868485,7,'writer','adaptation and dialogue',NULL),(44092,953550,8,'writer','adaptation and dialogue',NULL),(44092,305725,9,'composer',NULL,NULL),(44100,55,10,'composer',NULL,NULL),(44100,2022,1,'actress',NULL,'[\"Liz Erickson\"]'),(44100,731783,2,'actor',NULL,'[\"Joe Blake\"]'),(44100,310989,3,'actress',NULL,'[\"Adelaide Swanson\"]'),(44100,676492,4,'actress',NULL,'[\"Dallas Prewitt\"]'),(44100,624535,5,'director',NULL,NULL),(44100,258493,6,'writer',NULL,NULL),(44100,258525,7,'writer',NULL,NULL),(44100,328938,8,'writer','novel',NULL),(44100,87906,9,'producer','producer',NULL),(44121,6323,10,'composer',NULL,NULL),(44121,864851,1,'actor',NULL,'[\"Capt. Patrick Hendry\"]'),(44121,792212,2,'actress',NULL,'[\"Nikki Nicholson\"]'),(44121,790,3,'actor',NULL,'[\"\'The Thing\'\"]'),(44121,180452,4,'actor',NULL,'[\"Dr. Arthur Carrington\"]'),(44121,638528,5,'director',NULL,NULL),(44121,1328,6,'director',NULL,NULL),(44121,496468,7,'writer','screenplay',NULL),(44121,132168,8,'writer','based on the story \"Who Goes There?\" by',NULL),(44121,372942,9,'writer',NULL,NULL),(44205,627727,10,'editor',NULL,NULL),(44205,1791,1,'actor',NULL,'[\"Buck Wyatt\"]'),(44205,201005,2,'actress',NULL,'[\"Fifi Danon\"]'),(44205,256216,3,'actress',NULL,'[\"Patience Hawley\"]'),(44205,570615,4,'actor',NULL,'[\"Roy E. Whitman\"]'),(44205,920074,5,'director',NULL,NULL),(44205,773660,6,'writer','screenplay',NULL),(44205,1008,7,'writer','story',NULL),(44205,770196,8,'producer','producer',NULL),(44205,5794,9,'cinematographer','director of photography',NULL),(44391,5892,10,'cinematographer','director of photography',NULL),(44391,1805,1,'actress',NULL,'[\"Georgia Lorrison\"]'),(44391,18,2,'actor',NULL,'[\"Jonathan\"]'),(44391,682074,3,'actor',NULL,'[\"Harry Pebbel\"]'),(44391,694090,4,'actor',NULL,'[\"James Lee Bartlow\"]'),(44391,591486,5,'director',NULL,NULL),(44391,773660,6,'writer','screenplay',NULL),(44391,103488,7,'writer','story',NULL),(44391,2144,8,'producer','producer',NULL),(44391,710,9,'composer',NULL,NULL),(44419,6323,10,'composer',NULL,NULL),(44419,18,1,'actor',NULL,'[\"Jim Deakins\"]'),(44419,552185,2,'actor',NULL,'[\"Boone Caudill\"]'),(44419,861910,3,'actress',NULL,'[\"Teal Eye\"]'),(44419,402277,4,'actor',NULL,'[\"Zeb Calloway\"]'),(44419,1328,5,'director',NULL,NULL),(44419,629580,6,'writer','screenplay',NULL),(44419,349238,7,'writer','novel \"The Big Sky\"',NULL),(44419,119409,8,'writer','adaptation',NULL),(44419,779059,9,'writer','adaptation',NULL),(44446,724732,1,'actor',NULL,'[\"J.R.\"]'),(44446,2897,2,'actress',NULL,'[\"Susan Garthwaite\"]'),(44446,665902,3,'actor',NULL,'[\"Tony\"]'),(44446,433188,4,'actor',NULL,'[\"Philip\"]'),(44446,180,5,'director',NULL,NULL),(44446,711905,6,'writer','story',NULL),(44446,2185,7,'composer',NULL,NULL),(44446,5742,8,'cinematographer',NULL,NULL),(44446,285188,9,'editor',NULL,NULL),(44502,2228,10,'cinematographer','director of photography',NULL),(44502,1766,1,'actress',NULL,'[\"Mae Doyle\"]'),(44502,752813,2,'actor',NULL,'[\"Earl Pfeiffer\"]'),(44502,7222,3,'actor',NULL,'[\"Jerry D\'Amato\"]'),(44502,54,4,'actress',NULL,'[\"Peggy\"]'),(44502,485,5,'director',NULL,NULL),(44502,370883,6,'writer','screen play by',NULL),(44502,644048,7,'writer','based on the stage play written by',NULL),(44502,663832,8,'producer','producer',NULL),(44502,2202,9,'composer',NULL,NULL),(44672,307471,10,'writer','additional writer',NULL),(44672,71,1,'actor',NULL,'[\"\'Buttons\' A Clown\"]'),(44672,32,2,'actor',NULL,'[\"Brad Braden\"]'),(44672,2149,3,'actress',NULL,'[\"Holly\"]'),(44672,664273,4,'actor',NULL,'[\"The Great Sebastian\"]'),(44672,1124,5,'director',NULL,NULL),(44672,290931,6,'writer','screenplay',NULL),(44672,528530,7,'writer','screenplay',NULL),(44672,820693,8,'writer','screenplay',NULL),(44672,147119,9,'writer','story',NULL),(44706,930536,10,'editor',NULL,NULL),(44706,11,1,'actor',NULL,'[\"Marshal Will Kane\"]'),(44706,38,2,'actress',NULL,'[\"Amy Fowler Kane\"]'),(44706,593775,3,'actor',NULL,'[\"Mayor Jonas Henderson\"]'),(44706,978,4,'actor',NULL,'[\"Deputy Marshal Harvey Pell\"]'),(44706,3593,5,'director',NULL,NULL),(44706,286025,6,'writer','screenplay by',NULL),(44706,192356,7,'writer','based on the magazine story \"The Tin Star\" by',NULL),(44706,6323,8,'composer',NULL,NULL),(44706,5677,9,'cinematographer','director of photography',NULL),(44741,620014,10,'cinematographer',NULL,NULL),(44741,793766,1,'actor',NULL,'[\"Kanji Watanabe\"]'),(44741,437520,2,'actor',NULL,'[\"Mitsuo Watanabe, Kanji\'s son\"]'),(44741,385443,3,'actor',NULL,'[\"Kimura\"]'),(44741,848984,4,'actor',NULL,'[\"Sakai\"]'),(44741,41,5,'director',NULL,NULL),(44741,368074,6,'writer','written by',NULL),(44741,644823,7,'writer','written by',NULL),(44741,609404,8,'producer','producer',NULL),(44741,370593,9,'composer',NULL,NULL),(44760,75825,10,'producer','producer',NULL),(44760,1791,1,'actor',NULL,'[\"Ivanhoe\"]'),(44760,72,2,'actress',NULL,'[\"Rebecca\"]'),(44760,21,3,'actress',NULL,'[\"Rowena\"]'),(44760,1695,4,'actor',NULL,'[\"De Bois-Guilbert\"]'),(44760,861703,5,'director',NULL,NULL),(44760,486538,6,'writer','screenplay',NULL),(44760,533418,7,'writer','adaptation',NULL),(44760,731387,8,'writer','screenplay',NULL),(44760,779797,9,'writer','novel',NULL),(44837,122,1,'actor',NULL,'[\"Calvero\"]'),(44837,1954,2,'actress',NULL,'[\"Thereza \'Terry\' Ambrose\"]'),(44837,115558,3,'actor',NULL,'[\"Postant\"]'),(44837,36,4,'actor',NULL,'[\"Calvero\'s Partner\"]'),(44837,835365,5,'cinematographer','director of photography',NULL),(44837,408711,6,'editor',NULL,NULL),(44855,276227,10,'writer','play \"Roberta\"',NULL),(44855,337113,1,'actress',NULL,'[\"Stephanie\"]'),(44855,804026,2,'actor',NULL,'[\"Al Marsh\"]'),(44855,444476,3,'actor',NULL,'[\"Tony Naylor\"]'),(44855,150718,4,'actress',NULL,'[\"Clarisse\"]'),(44855,503777,5,'director',NULL,NULL),(44855,920216,6,'writer','screenplay',NULL),(44855,748438,7,'writer','screenplay',NULL),(44855,813584,8,'writer','additional dialogue',NULL),(44855,2317,9,'writer','novel \"Gowns By Roberta\"',NULL),(45061,615005,10,'editor',NULL,NULL),(45061,78,1,'actor',NULL,'[\"Sean Thornton\"]'),(45061,58,2,'actress',NULL,'[\"Mary Kate Danaher\"]'),(45061,280178,3,'actor',NULL,'[\"Michaleen Oge Flynn\"]'),(45061,955,4,'actor',NULL,'[\"Father Peter Lonergan\"]'),(45061,406,5,'director',NULL,NULL),(45061,637793,6,'writer','screenplay',NULL),(45061,909775,7,'writer','from the story by',NULL),(45061,82,8,'composer',NULL,NULL),(45061,5743,9,'cinematographer','director of photography',NULL),(45152,269751,10,'editor',NULL,NULL),(45152,37,1,'actor',NULL,'[\"Don Lockwood\"]'),(45152,640307,2,'actor',NULL,'[\"Cosmo Brown\"]'),(45152,1666,3,'actress',NULL,'[\"Kathy Selden\"]'),(45152,353405,4,'actress',NULL,'[\"Lina Lamont\"]'),(45152,2045,5,'director',NULL,NULL),(45152,173679,6,'writer','story by',NULL),(45152,337582,7,'writer','story by',NULL),(45152,6085,8,'producer','producer',NULL),(45152,5849,9,'cinematographer','director of photography',NULL),(45162,2136,10,'composer',NULL,NULL),(45162,60,1,'actor',NULL,'[\"Harry Street\"]'),(45162,1333,2,'actress',NULL,'[\"Helen\"]'),(45162,1257,3,'actress',NULL,'[\"Cynthia Green\"]'),(45162,460651,4,'actress',NULL,'[\"Countess Liz\"]'),(45162,454771,5,'director',NULL,NULL),(45162,1928,6,'director',NULL,NULL),(45162,732452,7,'writer','screenplay',NULL),(45162,2133,8,'writer','short story',NULL),(45162,953123,9,'producer','producer',NULL),(45197,683453,10,'editor',NULL,NULL),(45197,865262,1,'actor',NULL,'[\"Robin Hood\"]'),(45197,723455,2,'actress',NULL,'[\"Maid Marian\"]'),(45197,2075,3,'actor',NULL,'[\"Sheriff of Nottingham\"]'),(45197,371687,4,'actor',NULL,'[\"Friar Tuck\"]'),(45197,2175,5,'director',NULL,NULL),(45197,914245,6,'writer','screenplay',NULL),(45197,668998,7,'producer','producer',NULL),(45197,662155,8,'composer',NULL,NULL),(45197,337885,9,'cinematographer','director of photography',NULL),(45220,504344,10,'producer','producer',NULL),(45220,851,1,'actor',NULL,'[\"Tarzan\"]'),(45220,366253,2,'actress',NULL,'[\"Jane\"]'),(45220,461549,3,'actor',NULL,'[\"Edwards\"]'),(45220,439959,4,'actor',NULL,'[\"Rokov\"]'),(45220,256831,5,'director',NULL,NULL),(45220,401738,6,'writer','screenplay',NULL),(45220,414989,7,'writer','screenplay',NULL),(45220,925458,8,'writer','screenplay',NULL),(45220,123194,9,'writer','based on the character created by',NULL),(45464,5832,10,'cinematographer','director of photography',NULL),(45464,371122,1,'actor',NULL,'[\"August Zabladowski\"]'),(45464,372351,2,'actress',NULL,'[\"Heloise Collins\"]'),(45464,175788,3,'actor',NULL,'[\"Dr. Terwilliker\"]'),(45464,720568,4,'actor',NULL,'[\"Bartholomew Collins\"]'),(45464,746740,5,'director',NULL,NULL),(45464,317450,6,'writer','screenplay',NULL),(45464,778818,7,'writer','screenplay',NULL),(45464,6452,8,'producer','producer',NULL),(45464,6130,9,'composer',NULL,NULL),(45537,6085,10,'producer','producer',NULL),(45537,1,1,'actor',NULL,'[\"Tony Hunter\"]'),(45537,1998,2,'actress',NULL,'[\"Gabrielle Gerard\"]'),(45537,505157,3,'actor',NULL,'[\"Lester Marton\"]'),(45537,264660,4,'actress',NULL,'[\"Lily Marton\"]'),(45537,591486,5,'director',NULL,NULL),(45537,173679,6,'writer','story by',NULL),(45537,337582,7,'writer','story by',NULL),(45537,181658,8,'writer',NULL,NULL),(45537,503585,9,'writer',NULL,NULL),(45546,809731,10,'writer',NULL,NULL),(45546,7098,1,'actor',NULL,'[\"Prof. Tom Nesbitt\"]'),(45546,666358,2,'actress',NULL,'[\"Lee Hunter\"]'),(45546,445523,3,'actor',NULL,'[\"Prof. Thurgood Elson\"]'),(45546,864851,4,'actor',NULL,'[\"Col. Jack Evans\"]'),(45546,522123,5,'director',NULL,NULL),(45546,605215,6,'writer','screenplay',NULL),(45546,293750,7,'writer','screenplay',NULL),(45546,1969,8,'writer','story \"The Fog Horn\"',NULL),(45546,416393,9,'writer',NULL,NULL),(45555,625224,10,'editor',NULL,NULL),(45555,1229,1,'actor',NULL,'[\"Sgt. Dave Bannion\"]'),(45555,2108,2,'actress',NULL,'[\"Debby Marsh\"]'),(45555,104720,3,'actress',NULL,'[\"Katie Bannion\"]'),(45555,780038,4,'actor',NULL,'[\"Mike Lagana\"]'),(45555,485,5,'director',NULL,NULL),(45555,91213,6,'writer','screenplay',NULL),(45555,569423,7,'writer','Saturday Evening Post serial',NULL),(45555,37818,8,'producer','producer',NULL),(45555,485702,9,'cinematographer','director of photography',NULL),(45591,921879,10,'actor',NULL,'[\"Francis Fryer\"]'),(45591,13,1,'actress',NULL,'[\"Calamity Jane\"]'),(45591,444476,2,'actor',NULL,'[\"Wild Bill Hickok\"]'),(45591,572885,3,'actress',NULL,'[\"Katie Brown\"]'),(45591,137023,4,'actor',NULL,'[\"Lieutenant Danny Gilmartin\"]'),(45591,124877,5,'director',NULL,NULL),(45591,641199,6,'writer','written by',NULL),(45591,414673,7,'producer','producer',NULL),(45591,5668,8,'cinematographer','director of photography',NULL),(45591,606206,9,'editor',NULL,NULL),(45609,926082,10,'cinematographer',NULL,NULL),(45609,876211,1,'actor',NULL,'[\"Laird Grainger\"]'),(45609,430460,2,'actor',NULL,'[\"Kip Reissner\"]'),(45609,934798,3,'actress',NULL,'[\"Helen Salinger\"]'),(45609,607554,4,'actress',NULL,'[\"Lambda\"]'),(45609,385227,5,'director',NULL,NULL),(45609,358139,6,'writer','screenplay',NULL),(45609,704896,7,'writer','original story idea',NULL),(45609,956545,8,'writer','original story idea',NULL),(45609,930,9,'composer',NULL,NULL),(45659,227591,10,'cinematographer','director of photography',NULL),(45659,370144,1,'actor',NULL,'[\"Ericson\"]'),(45659,801786,2,'actor',NULL,'[\"Lockhart\"]'),(45659,833652,3,'actor',NULL,'[\"Ferraby\"]'),(45659,1186,4,'actor',NULL,'[\"Morell\"]'),(45659,294243,5,'director',NULL,NULL),(45659,598622,6,'writer','by',NULL),(45659,1907,7,'writer','screenplay',NULL),(45659,635554,8,'producer','producer',NULL),(45659,712712,9,'composer',NULL,NULL),(45665,22264,10,'actor',NULL,'[\"Ernesto Sánchez Blasco\"]'),(45665,159976,1,'actress',NULL,'[\"Ana Ruiz\"]'),(45665,721073,2,'actor',NULL,'[\"Miguel Solís\"]'),(45665,671774,3,'actress',NULL,'[\"Marga\"]'),(45665,39706,4,'actor',NULL,'[\"Don Antonio\"]'),(45665,54219,5,'director',NULL,NULL),(45665,6180,6,'composer',NULL,NULL),(45665,868807,7,'cinematographer',NULL,NULL),(45665,319793,8,'editor',NULL,NULL),(45665,305802,9,'actress',NULL,'[\"Doña Carmen\"]'),(45758,798826,1,'actor',NULL,'[\"Mac\"]'),(45758,363780,2,'actor',NULL,'[\"Lt. Corby\",\"The General\"]'),(45758,5196,3,'actor',NULL,'[\"Sidney\"]'),(45758,170039,4,'actor',NULL,'[\"Fletcher\",\"The Captain\"]'),(45758,40,5,'director',NULL,NULL),(45758,755274,6,'writer','written by',NULL),(45758,6086,7,'composer',NULL,NULL),(45793,346532,10,'cinematographer','director of photography',NULL),(45793,44,1,'actor',NULL,'[\"Sgt. Milton Warden\"]'),(45793,1050,2,'actor',NULL,'[\"Robert E. Lee Prewitt\"]'),(45793,39,3,'actress',NULL,'[\"Karen Holmes\"]'),(45793,1656,4,'actress',NULL,'[\"Alma - aka Lorene\"]'),(45793,3593,5,'director',NULL,NULL),(45793,850168,6,'writer','screen play',NULL),(45793,428296,7,'writer','based upon the novel by',NULL),(45793,12117,8,'producer','producer',NULL),(45793,6052,9,'composer',NULL,NULL),(45810,928346,10,'cinematographer','director of photography',NULL),(45810,66,1,'actress',NULL,'[\"Dorothy Shaw\"]'),(45810,54,2,'actress',NULL,'[\"Lorelei Lee\"]'),(45810,2013,3,'actor',NULL,'[\"Sir Francis \'Piggy\' Beekman\"]'),(45810,717256,4,'actor',NULL,'[\"Ernie Malone\"]'),(45810,1328,5,'director',NULL,NULL),(45810,496468,6,'writer','screen play',NULL),(45810,276284,7,'writer','based on the musical comedy by',NULL),(45810,2616,8,'writer','based on the musical comedy by',NULL),(45810,797012,9,'producer','producer',NULL),(45826,248,1,'actor',NULL,'[\"Glen\",\"Glenda\"]'),(45826,509,2,'actor',NULL,'[\"Scientist\"]'),(45826,847939,3,'actor',NULL,'[\"Inspector\"]'),(45826,268350,4,'actor',NULL,'[\"Psychiatrist\"]'),(45826,918992,5,'producer','producer',NULL),(45826,860847,6,'cinematographer','director of photography',NULL),(45826,770792,7,'editor',NULL,NULL),(45877,2228,10,'cinematographer','director of photography',NULL),(45877,639529,1,'actor',NULL,'[\"Roy Collins\"]'),(45877,522481,2,'actor',NULL,'[\"Gilbert Bowen\"]'),(45877,848251,3,'actor',NULL,'[\"Emmett Myers\"]'),(45877,869064,4,'actor',NULL,'[\"Capt. Alvarado\"]'),(45877,526946,5,'director',NULL,NULL),(45877,949418,6,'writer','screenplay',NULL),(45877,430687,7,'writer','adaptation',NULL),(45877,537784,8,'writer',NULL,NULL),(45877,6302,9,'composer',NULL,NULL),(45888,322688,10,'cinematographer',NULL,NULL),(45888,1637,1,'actor',NULL,'[\"Prof. Henry Jarrod\"]'),(45888,522481,2,'actor',NULL,'[\"Det. Lt. Tom Brennan\"]'),(45888,456533,3,'actress',NULL,'[\"Sue Allen\"]'),(45888,427700,4,'actress',NULL,'[\"Cathy Gray\"]'),(45888,211964,5,'director',NULL,NULL),(45888,928108,6,'writer','screenplay',NULL),(45888,67676,7,'writer','story',NULL),(45888,289381,8,'producer','producer',NULL),(45888,5987,9,'composer',NULL,NULL),(45891,531796,10,'cinematographer','director of photography',NULL),(45891,54,1,'actress',NULL,'[\"Pola Debevoise\"]'),(45891,2107,2,'actress',NULL,'[\"Loco Dempsey\"]'),(45891,2,3,'actress',NULL,'[\"Schatze Page\"]'),(45891,915536,4,'actor',NULL,'[\"Freddie Denmark\"]'),(45891,624535,5,'director',NULL,NULL),(45891,425913,6,'writer','screen play',NULL),(45891,15399,7,'writer','plays',NULL),(45891,262368,8,'writer','plays',NULL),(45891,16534,9,'writer','plays',NULL),(45897,122079,10,'cinematographer','director of photography',NULL),(45897,1050,1,'actor',NULL,'[\"Father Michael Logan\"]'),(45897,879,2,'actress',NULL,'[\"Ruth Grandfort\"]'),(45897,1500,3,'actor',NULL,'[\"Inspector Larrue\"]'),(45897,731,4,'actor',NULL,'[\"Willy Robertson\"]'),(45897,33,5,'director',NULL,NULL),(45897,846068,6,'writer','screen play',NULL),(45897,33780,7,'writer','screen play',NULL),(45897,30786,8,'writer','from a play by',NULL),(45897,6323,9,'composer',NULL,NULL),(45911,801184,10,'editor',NULL,NULL),(45911,752813,1,'actor',NULL,'[\"Donald Whitley Carson III\"]'),(45911,281766,2,'actress',NULL,'[\"Geraldine Carson\"]'),(45911,526485,3,'actor',NULL,'[\"Joseph Duncan\"]'),(45911,444122,4,'actor',NULL,'[\"Dave Emory\"]'),(45911,1928,5,'director',NULL,NULL),(45911,168356,6,'writer','writer',NULL),(45911,89247,7,'producer','producer',NULL),(45911,6275,8,'composer',NULL,NULL),(45911,5644,9,'cinematographer','director of photography',NULL),(45920,915800,10,'editor',NULL,NULL),(45920,137999,1,'actor',NULL,'[\"John Putnam\"]'),(45920,750640,2,'actress',NULL,'[\"Ellen Fields\"]'),(45920,236866,3,'actor',NULL,'[\"Sheriff Matt Warren\"]'),(45920,768178,4,'actor',NULL,'[\"Frank Daylon\"]'),(45920,791,5,'director',NULL,NULL),(45920,261400,6,'writer','screenplay',NULL),(45920,1969,7,'writer','story',NULL),(45920,20041,8,'producer','producer',NULL),(45920,830411,9,'cinematographer','director of photography',NULL),(45943,242950,10,'editor',NULL,NULL),(45943,129894,1,'actor',NULL,'[\"Julius Caesar\"]'),(45943,8,2,'actor',NULL,'[\"Mark Antony\"]'),(45943,51,3,'actor',NULL,'[\"Brutus\"]'),(45943,24,4,'actor',NULL,'[\"Cassius\"]'),(45943,581,5,'director',NULL,NULL),(45943,636,6,'writer','play',NULL),(45943,2144,7,'producer','producer',NULL),(45943,67,8,'composer',NULL,NULL),(45943,5853,9,'cinematographer','director of photography',NULL),(46022,6330,10,'composer',NULL,NULL),(46022,964,1,'actor',NULL,'[\"Général André de...\"]'),(46022,201638,2,'actress',NULL,'[\"Comtesse Louise de...\"]'),(46022,1120,3,'actor',NULL,'[\"Baron Fabrizio Donati\"]'),(46022,213581,4,'actor',NULL,'[\"Monsieur Rémy\"]'),(46022,649097,5,'director',NULL,NULL),(46022,212179,6,'writer','novel',NULL),(46022,9766,7,'writer','screenplay',NULL),(46022,905539,8,'writer','writer',NULL),(46022,6308,9,'composer',NULL,NULL),(46031,225512,10,'cinematographer','director of photography',NULL),(46031,51,1,'actor',NULL,'[\"Ivo\"]'),(46031,1954,2,'actress',NULL,'[\"Susanne\"]'),(46031,460651,3,'actress',NULL,'[\"Bettina\"]'),(46031,867555,4,'actor',NULL,'[\"Martin\"]'),(46031,715346,5,'director',NULL,NULL),(46031,475823,6,'writer','screenplay',NULL),(46031,248161,7,'writer','based on an original story by',NULL),(46031,512933,8,'writer','screenplay',NULL),(46031,11709,9,'composer',NULL,NULL),(46066,6022,10,'composer',NULL,NULL),(46066,1067,1,'actor',NULL,'[\"Dr. Aranya\"]'),(46066,633205,2,'actor',NULL,'[\"\'Doc\' Tucker\"]'),(46066,871432,3,'actor',NULL,'[\"Dan Mulcahey\"]'),(46066,847939,4,'actor',NULL,'[\"Narrator\"]'),(46066,650259,5,'director',NULL,NULL),(46066,856682,6,'director',NULL,NULL),(46066,359034,7,'writer',NULL,NULL),(46066,330451,8,'producer','producer',NULL),(46066,674088,9,'producer','producer',NULL),(46076,182536,10,'actress',NULL,'[\"Ameena Horn\"]'),(46076,28,1,'actress',NULL,'[\"Sadie Thompson\"]'),(46076,1207,2,'actor',NULL,'[\"Alfred Davidson\"]'),(46076,712731,3,'actor',NULL,'[\"Sgt. Phil O\'Hara\"]'),(46076,172660,4,'actor',NULL,'[\"Dr. Robert MacPhail\"]'),(46076,76779,5,'director',NULL,NULL),(46076,459067,6,'writer','screenplay',NULL),(46076,560857,7,'writer','story \"Miss Thompson\"',NULL),(46076,493353,8,'cinematographer','director of photography',NULL),(46076,493072,9,'editor',NULL,NULL),(46085,2875,10,'cinematographer','director of photography',NULL),(46085,22,1,'actor',NULL,'[\"Victor Marswell\"]'),(46085,38,2,'actress',NULL,'[\"Linda Nordley\"]'),(46085,1257,3,'actress',NULL,'[\"Eloise Y. Kelly\"]'),(46085,801786,4,'actor',NULL,'[\"Donald Nordley\"]'),(46085,406,5,'director',NULL,NULL),(46085,536941,6,'writer','screenplay',NULL),(46085,172812,7,'writer','play',NULL),(46085,956547,8,'producer','producer',NULL),(46085,5892,9,'cinematographer','director of photography',NULL),(46183,780799,10,'writer','story',NULL),(46183,237985,1,'actor',NULL,'[\"Peter Pan\"]'),(46183,64607,2,'actress',NULL,'[\"Wendy Darling\"]'),(46183,175788,3,'actor',NULL,'[\"Captain Hook\",\"Mr. Darling\"]'),(46183,859892,4,'actor',NULL,'[\"Mr. Smee\",\"Pirates\"]'),(46183,314671,5,'director',NULL,NULL),(46183,414144,6,'director',NULL,NULL),(46183,527217,7,'director',NULL,NULL),(46183,455741,8,'director',NULL,NULL),(46183,57381,9,'writer','an adaptation of the play \"Peter Pan\" by',NULL),(46187,218029,10,'editor',NULL,NULL),(46187,1847,1,'actor',NULL,'[\"Skip McCoy\"]'),(46187,676492,2,'actress',NULL,'[\"Candy\"]'),(46187,728812,3,'actress',NULL,'[\"Moe Williams\"]'),(46187,904531,4,'actor',NULL,'[\"Police Captain Dan Tiger\"]'),(46187,2087,5,'director',NULL,NULL),(46187,852313,6,'writer','story',NULL),(46187,771087,7,'producer','producer',NULL),(46187,363316,8,'composer',NULL,NULL),(46187,531796,9,'cinematographer','director of photography',NULL),(46250,2162,10,'cinematographer','director of photography',NULL),(46250,60,1,'actor',NULL,'[\"Joe Bradley\"]'),(46250,30,2,'actress',NULL,'[\"Princess Ann\"]'),(46250,734,3,'actor',NULL,'[\"Irving Radovich\"]'),(46250,694403,4,'actor',NULL,'[\"Mr. Hennessy\"]'),(46250,943758,5,'director',NULL,NULL),(46250,874308,6,'writer','screenplay by',NULL),(46250,402848,7,'writer','screenplay by',NULL),(46250,226538,8,'writer','screenplay by',NULL),(46250,5952,9,'composer',NULL,NULL),(46268,346537,10,'editor',NULL,NULL),(46268,598971,1,'actor',NULL,'[\"Mario Livi\"]'),(46268,889024,2,'actor',NULL,'[\"M. Jo\"]'),(46268,886870,3,'actor',NULL,'[\"Bimba\"]'),(46268,525793,4,'actor',NULL,'[\"Luigi\"]'),(46268,167241,5,'director',NULL,NULL),(46268,1064118,6,'writer','from the novel by',NULL),(46268,350823,7,'writer','adaptation and dialogue',NULL),(46268,5952,8,'composer',NULL,NULL),(46268,5901,9,'cinematographer',NULL,NULL),(46269,485702,10,'cinematographer','director of photography',NULL),(46269,28,1,'actress',NULL,'[\"Princess Salome\"]'),(46269,1289,2,'actor',NULL,'[\"Commander Claudius\"]'),(46269,1452,3,'actor',NULL,'[\"King Herod\"]'),(46269,752,4,'actress',NULL,'[\"Queen Herodias\"]'),(46269,226189,5,'director',NULL,NULL),(46269,459067,6,'writer','screen play',NULL),(46269,489679,7,'writer','story',NULL),(46269,12117,8,'producer','producer',NULL),(46269,6052,9,'composer',NULL,NULL),(46303,5729,10,'cinematographer','director of photography',NULL),(46303,42,1,'actor',NULL,'[\"Shane\"]'),(46303,795,2,'actress',NULL,'[\"Marian Starrett\"]'),(46303,1336,3,'actor',NULL,'[\"Joe Starrett\"]'),(46303,1121,4,'actor',NULL,'[\"Joey Starrett\"]'),(46303,828419,5,'director',NULL,NULL),(46303,349238,6,'writer','screenplay',NULL),(46303,792042,7,'writer','additional dialogue',NULL),(46303,769627,8,'writer','based on the novel by',NULL),(46303,82,9,'composer',NULL,NULL),(46345,526456,10,'production_designer',NULL,NULL),(46345,27683,1,'actress',NULL,'[\"Monika Eriksson\"]'),(46345,252299,2,'actor',NULL,'[\"Harry Lund\"]'),(46345,247954,3,'actress',NULL,'[\"Fru Lindström, Harry\'s faster\"]'),(46345,294882,4,'actor',NULL,'[\"Ludwig Eriksson, Monikas far\"]'),(46345,5,5,'director',NULL,NULL),(46345,283910,6,'writer','screenplay',NULL),(46345,5958,7,'composer',NULL,NULL),(46345,635059,8,'composer',NULL,NULL),(46345,5705,9,'cinematographer',NULL,NULL),(46359,866462,10,'editor',NULL,NULL),(46359,34,1,'actor',NULL,'[\"Sgt. J.J. Sefton\"]'),(46359,852279,2,'actor',NULL,'[\"Lt. James Dunbar\"]'),(46359,695937,3,'actor',NULL,'[\"Oberst von Scherbach\"]'),(46359,833865,4,'actor',NULL,'[\"Sgt. Stanislaus \'Animal\' Kuzawa\"]'),(46359,697,5,'director',NULL,NULL),(46359,89637,6,'writer','written for the screen by',NULL),(46359,79654,7,'writer','based on the play by',NULL),(46359,874522,8,'writer','based on the play by',NULL),(46359,5768,9,'cinematographer','director of photography',NULL),(46404,6275,10,'composer',NULL,NULL),(46404,851,1,'actor',NULL,'[\"Tarzan\"]'),(46404,533339,2,'actress',NULL,'[\"Jane\"]'),(46404,994,3,'actor',NULL,'[\"Vargo\"]'),(46404,888207,4,'actress',NULL,'[\"Lyra, the She-Devil\"]'),(46404,627087,5,'director',NULL,NULL),(46404,436475,6,'writer','screenplay by',NULL),(46404,949363,7,'writer','screenplay by',NULL),(46404,123194,8,'writer','based upon the characters created by',NULL),(46404,504344,9,'producer','producer',NULL),(46438,357310,10,'editor',NULL,NULL),(46438,753479,1,'actor',NULL,'[\"Shukichi Hirayama\"]'),(46438,383261,2,'actress',NULL,'[\"Tomi Hirayama\"]'),(46438,945522,3,'actor',NULL,'[\"Koichi Hirayama\"]'),(46438,361697,4,'actress',NULL,'[\"Noriko Hirayama\"]'),(46438,654868,5,'director',NULL,NULL),(46438,633792,6,'writer','scenario',NULL),(46438,945499,7,'producer','producer',NULL),(46438,756907,8,'composer',NULL,NULL),(46438,40916,9,'cinematographer',NULL,NULL),(46451,599044,10,'cinematographer',NULL,NULL),(46451,300064,1,'actor',NULL,'[\"Max dit Max le Menteur\"]'),(46451,201833,2,'actor',NULL,'[\"Henri Ducros dit Riton\"]'),(46451,231098,3,'actress',NULL,'[\"Lola\"]'),(46451,762785,4,'actor',NULL,'[\"Ramon\"]'),(46451,65442,5,'director',NULL,NULL),(46451,800631,6,'writer','novel',NULL),(46451,341071,7,'writer','adaptation',NULL),(46451,233587,8,'producer','producer',NULL),(46451,927484,9,'composer',NULL,NULL),(46478,1218390,10,'writer','dialogue',NULL),(46478,605270,1,'actor',NULL,'[\"Genjurô\"]'),(46478,477553,2,'actress',NULL,'[\"Lady Wakasa\"]'),(46478,849011,3,'actress',NULL,'[\"Miyagi\"]'),(46478,593930,4,'actress',NULL,'[\"Ohama\"]'),(46478,3226,5,'director',NULL,NULL),(46478,875306,6,'writer','idea',NULL),(46478,879907,7,'writer','stories: Asaji Ga Yado and Jasei No In',NULL),(46478,442736,8,'writer','written by',NULL),(46478,406808,9,'writer','written by',NULL),(46487,580195,10,'cinematographer',NULL,NULL),(46487,4244,1,'actor',NULL,'[\"Monsieur Hulot\"]'),(46487,664339,2,'actress',NULL,'[\"Martine\"]'),(46487,738300,3,'actress',NULL,'[\"The Aunt\"]'),(46487,131301,4,'actress',NULL,'[\"Englishwoman\"]'),(46487,549804,5,'writer','story',NULL),(46487,41311,6,'writer','with the collaboration of',NULL),(46487,481401,7,'writer','with the collaboration of',NULL),(46487,649296,8,'producer','producer',NULL),(46487,739062,9,'composer',NULL,NULL),(46511,784787,10,'cinematographer','director of photography',NULL),(46511,6,1,'actress',NULL,'[\"Katherine Joyce\"]'),(46511,1695,2,'actor',NULL,'[\"Alex Joyce\"]'),(46511,560749,3,'actress',NULL,'[\"Marie\"]'),(46511,698330,4,'actress',NULL,'[\"La prostituta\"]'),(46511,744023,5,'director',NULL,NULL),(46511,104329,6,'writer','story and screenplay',NULL),(46511,171372,7,'writer','novel \"Duo\"',NULL),(46511,682881,8,'writer','screenplay collaboration',NULL),(46511,744021,9,'composer',NULL,NULL),(46534,55604,10,'cinematographer','director of photography',NULL),(46534,58001,1,'actor',NULL,'[\"Dr. Clayton Forrester\"]'),(46534,732378,2,'actress',NULL,'[\"Sylvia Van Buren\"]'),(46534,871876,3,'actor',NULL,'[\"Maj. Gen. Mann\"]'),(46534,180452,4,'actor',NULL,'[\"Dr. Pryor\"]'),(46534,5738,5,'director',NULL,NULL),(46534,920229,6,'writer','based on the novel by',NULL),(46534,528530,7,'writer','screenplay by',NULL),(46534,657162,8,'producer','producer',NULL),(46534,6302,9,'composer',NULL,NULL),(46672,930536,10,'editor',NULL,NULL),(46672,18,1,'actor',NULL,'[\"Ned Land\"]'),(46672,51,2,'actor',NULL,'[\"Captain Nemo\"]'),(46672,510134,3,'actor',NULL,'[\"Prof. Pierre Aronnax\"]'),(46672,48,4,'actor',NULL,'[\"Conseil\"]'),(46672,281507,5,'director',NULL,NULL),(46672,271641,6,'writer','screenplay',NULL),(46672,894523,7,'writer','novel',NULL),(46672,1345229,8,'composer',NULL,NULL),(46672,5832,9,'cinematographer',NULL,NULL),(46705,690638,10,'producer','producer',NULL),(46705,814773,1,'actor',NULL,'[\"Nando Moriconi\"]'),(46705,143686,2,'actress',NULL,'[\"Elvira\"]'),(46705,677193,3,'actress',NULL,'[\"Molly\"]'),(46705,243890,4,'actress',NULL,'[\"Madre di Nando\"]'),(46705,826642,5,'director',NULL,NULL),(46705,176420,6,'writer','story',NULL),(46705,2086,7,'writer','story',NULL),(46705,778633,8,'writer','story',NULL),(46705,209569,9,'producer','producer',NULL),(46731,209569,10,'producer','producer',NULL),(46731,63,1,'actor',NULL,'[\"Attila\"]'),(46731,47,2,'actress',NULL,'[\"Honoria\"]'),(46731,896331,3,'actor',NULL,'[\"Aetius\"]'),(46731,493508,4,'actor',NULL,'[\"Valentiniano Caesar\"]'),(46731,290371,5,'director',NULL,NULL),(46731,208086,6,'writer','original story and screen play',NULL),(46731,315060,7,'writer','story and dialogue revision',NULL),(46731,764781,8,'writer','English language translation of original screenplay',NULL),(46731,954234,9,'writer','original story and screen play',NULL),(46750,756905,10,'composer',NULL,NULL),(46750,837503,1,'actress',NULL,'[\"Kin\"]'),(46750,879945,2,'actor',NULL,'[\"Tabe\"]'),(46750,768031,3,'actress',NULL,'[\"Nobu\"]'),(46750,395940,4,'actress',NULL,'[\"Tamae\"]'),(46750,621540,5,'director',NULL,NULL),(46750,370615,6,'writer','stories Bangiku/Suisen/Shirasagi',NULL),(46750,849068,7,'writer','adaptation',NULL),(46750,406841,8,'writer','adaptation',NULL),(46750,297772,9,'producer','producer',NULL),(46816,70,10,'composer',NULL,NULL),(46816,7,1,'actor',NULL,'[\"Lt. Cmdr. Philip Francis Queeg\"]'),(46816,1207,2,'actor',NULL,'[\"Lt. Barney Greenwald\"]'),(46816,4496,3,'actor',NULL,'[\"Lt. Steve Maryk\"]'),(46816,534045,4,'actor',NULL,'[\"Lt. Tom Keefer\"]'),(46816,229424,5,'director',NULL,NULL),(46816,731592,6,'writer','screen play',NULL),(46816,87581,7,'writer','additional dialogue',NULL),(46816,941883,8,'writer','based upon the Pulitzer Prize winning novel by',NULL),(46816,6452,9,'producer','producer',NULL),(46828,495402,10,'cinematographer','director of photography',NULL),(46828,896,1,'actor',NULL,'[\"Joe\"]'),(46828,199268,2,'actress',NULL,'[\"Carmen Jones\"]'),(46828,47440,3,'actress',NULL,'[\"Frankie\"]'),(46828,416802,4,'actress',NULL,'[\"Cindy Lou\"]'),(46828,695937,5,'director',NULL,NULL),(46828,358564,6,'writer','book by',NULL),(46828,459067,7,'writer','screenplay',NULL),(46828,617737,8,'writer','novella',NULL),(46828,5964,9,'composer',NULL,NULL),(46876,811580,10,'cinematographer','director of photography',NULL),(46876,137999,1,'actor',NULL,'[\"Dr. David Reed\"]'),(46876,11105,2,'actress',NULL,'[\"Kay Lawrence\"]'),(46876,219396,3,'actor',NULL,'[\"Dr. Mark Williams\"]'),(46876,603875,4,'actor',NULL,'[\"Dr. Carl Maia\"]'),(46876,791,5,'director',NULL,NULL),(46876,261400,6,'writer','screenplay by',NULL),(46876,743232,7,'writer','screenplay by',NULL),(46876,956592,8,'writer','story by',NULL),(46876,20041,9,'writer','idea',NULL),(46889,2915,10,'cinematographer','director of photography',NULL),(46889,865262,1,'actor',NULL,'[\"Wing Commander Guy Gibson, V.C., D.S.O., D.F.C.\"]'),(46889,714878,2,'actor',NULL,'[\"Doctor B. N. Wallis, C.B.E., F.R.S.\"]'),(46889,419982,3,'actress',NULL,'[\"Mrs. Wallis\"]'),(46889,842981,4,'actor',NULL,'[\"Air Chief Marshal Sir Arthur Harris (now Marshal of the Royal Air Force) G.C.B., O.B.E., A.F.C.\"]'),(46889,27183,5,'director',NULL,NULL),(46889,108595,6,'writer','book',NULL),(46889,1355122,7,'writer','based on Wing Comdr. Gibson\'s own account in \"Enemy Coast Ahead\"',NULL),(46889,792670,8,'writer','screenplay',NULL),(46889,524220,9,'composer',NULL,NULL),(46911,340190,10,'writer','collaboration',NULL),(46911,797531,1,'actress',NULL,'[\"Nicole Horner\"]'),(46911,167243,2,'actress',NULL,'[\"Christina Delassalle\"]'),(46911,582890,3,'actor',NULL,'[\"Michel Delassalle\"]'),(46911,889024,4,'actor',NULL,'[\"Alfred Fichet, le commissaire\"]'),(46911,167241,5,'director',NULL,NULL),(46911,92267,6,'writer','novel \"Celle qui n\'était plus\"',NULL),(46911,92268,7,'writer','novel \"Celle qui n\'était plus\"',NULL),(46911,350823,8,'writer','scenario and dialogue',NULL),(46911,557510,9,'writer','collaboration',NULL),(46912,1537,1,'actor',NULL,'[\"Tony Wendice\"]'),(46912,38,2,'actress',NULL,'[\"Margot Wendice\"]'),(46912,191950,3,'actor',NULL,'[\"Mark Halliday\"]'),(46912,2369,4,'actor',NULL,'[\"Chief Inspector Hubbard\"]'),(46912,33,5,'director',NULL,NULL),(46912,461425,6,'writer','screen play by',NULL),(46912,6323,7,'composer',NULL,NULL),(46912,122079,8,'cinematographer','director of photography',NULL),(46912,270458,9,'editor','film editor',NULL),(46963,935988,10,'editor','film editor',NULL),(46963,34,1,'actor',NULL,'[\"McDonald Walling\"]'),(46963,1766,2,'actress',NULL,'[\"Julia O. Tredway\"]'),(46963,742,3,'actress',NULL,'[\"Mary Blemond Walling\"]'),(46963,545298,4,'actor',NULL,'[\"Loren Phineas Shaw\"]'),(46963,936404,5,'director',NULL,NULL),(46963,499626,6,'writer','screen play',NULL),(46963,370312,7,'writer','based on the novel by',NULL),(46963,2144,8,'producer','producer',NULL),(46963,5706,9,'cinematographer','director of photography',NULL),(46969,5677,10,'cinematographer',NULL,NULL),(46969,409869,1,'actor',NULL,'[\"Frank Webster\"]'),(46969,540416,2,'actress',NULL,'[\"Connie Adair\"]'),(46969,137601,3,'actor',NULL,'[\"Faber\"]'),(46969,12441,4,'actress',NULL,'[\"Wilma Belding - Waitress\"]'),(46969,760170,5,'director',NULL,NULL),(46969,644114,6,'writer','screenplay',NULL),(46969,397987,7,'writer','screenplay',NULL),(46969,339,8,'writer','story',NULL),(46969,314246,9,'composer',NULL,NULL),(47030,774465,10,'editor',NULL,NULL),(47030,71,1,'actor',NULL,'[\"Glenn Miller\"]'),(47030,742,2,'actress',NULL,'[\"Helen Burger\"]'),(47030,604702,3,'actor',NULL,'[\"Chummy\"]'),(47030,236866,4,'actor',NULL,'[\"Don Haynes\"]'),(47030,542649,5,'director',NULL,NULL),(47030,204016,6,'writer','written by',NULL),(47030,110958,7,'writer','written by',NULL),(47030,742162,8,'producer','producer',NULL),(47030,200125,9,'cinematographer','director of photography',NULL),(47034,848417,10,'cinematographer',NULL,NULL),(47034,793766,1,'actor',NULL,'[\"Dr. Kyohei Yamane\"]'),(47034,386284,2,'actor',NULL,'[\"Dr. Daisuke Serizawa\"]'),(47034,847361,3,'actor',NULL,'[\"Hideto Ogata\"]'),(47034,442708,4,'actress',NULL,'[\"Emiko Yamane\"]'),(47034,393094,5,'director',NULL,NULL),(47034,613609,6,'writer','written by',NULL),(47034,443227,7,'writer','novel',NULL),(47034,849083,8,'writer','story \"The Giant Monster from 20, 000 Leagues Under The Sea\"',NULL),(47034,6136,9,'composer',NULL,NULL),(47094,5742,10,'cinematographer',NULL,NULL),(47094,1452,1,'actor',NULL,'[\"Henry Hobson\"]'),(47094,590055,2,'actor',NULL,'[\"William Mossop\"]'),(47094,207219,3,'actress',NULL,'[\"Maggie Hobson\"]'),(47094,26563,4,'actress',NULL,'[\"Alice Hobson\"]'),(47094,180,5,'director',NULL,NULL),(47094,109118,6,'writer','play',NULL),(47094,818050,7,'writer','screenplay',NULL),(47094,115097,8,'writer','screenplay',NULL),(47094,2185,9,'composer',NULL,NULL),(47127,437901,10,'editor',NULL,NULL),(47127,847939,1,'actor',NULL,'[\"Inspector Johns\"]'),(47127,298215,2,'actress',NULL,'[\"Marilyn Gregor\"]'),(47127,712660,3,'actor',NULL,'[\"Dr. Gregor\"]'),(47127,716302,4,'actor',NULL,'[\"Lt. Bob Lawrence\"]'),(47127,248,5,'director',NULL,NULL),(47127,329966,6,'writer','story',NULL),(47127,6022,7,'composer',NULL,NULL),(47127,860847,8,'cinematographer','director of photography',NULL),(47127,166069,9,'editor',NULL,NULL),(47136,886820,10,'editor',NULL,NULL),(47136,1076,1,'actress',NULL,'[\"Vienna\"]'),(47136,1330,2,'actor',NULL,'[\"Johnny \'Guitar\' Logan\"]'),(47136,564790,3,'actress',NULL,'[\"Emma Small\"]'),(47136,103722,4,'actor',NULL,'[\"Dancin\' Kid\"]'),(47136,712947,5,'director',NULL,NULL),(47136,948634,6,'writer','screenplay',NULL),(47136,151949,7,'writer','based on novel by',NULL),(47136,82,8,'composer',NULL,NULL),(47136,5889,9,'cinematographer','director of photography',NULL),(47152,1414,1,'actor',NULL,'[\"Jerry Morgan\",\"Papa Morgan\",\"Clarence\"]'),(47152,955195,2,'actress',NULL,'[\"Dr. Ilse Nordstrom\"]'),(47152,857147,3,'actor',NULL,'[\"Godfrey Langston\"]'),(47152,122634,4,'actor',NULL,'[\"Marty Brown\"]'),(47152,291035,5,'director',NULL,NULL),(47152,659085,6,'director',NULL,NULL),(47152,5701,7,'cinematographer','director of photography',NULL),(47152,534347,8,'editor',NULL,NULL),(47238,162493,10,'editor',NULL,NULL),(47238,869451,1,'actor',NULL,'[\"Felice Sciosciammocca\"]'),(47238,47,2,'actress',NULL,'[\"Gemma\"]'),(47238,876947,3,'actor',NULL,'[\"Pasquale\"]'),(47238,658851,4,'actress',NULL,'[\"Luisella\"]'),(47238,560395,5,'director',NULL,NULL),(47238,769264,6,'writer','play \"Miseria e nobiltà\"',NULL),(47238,531431,7,'writer','dialogue',NULL),(47238,59550,8,'composer',NULL,NULL),(47238,835365,9,'cinematographer',NULL,NULL),(47296,77086,10,'composer',NULL,NULL),(47296,8,1,'actor',NULL,'[\"Terry Malloy\"]'),(47296,1500,2,'actor',NULL,'[\"Father Barry\"]'),(47296,2011,3,'actor',NULL,'[\"Johnny Friendly\"]'),(47296,1768,4,'actor',NULL,'[\"Charley Malloy\"]'),(47296,1415,5,'director',NULL,NULL),(47296,775977,6,'writer','screenplay',NULL),(47296,425711,7,'writer','suggested by articles by',NULL),(47296,802563,8,'writer',NULL,NULL),(47296,818545,9,'producer','producer',NULL),(47349,625224,10,'editor',NULL,NULL),(47349,391062,1,'actress',NULL,'[\"Nina Tracey\"]'),(47349,493,2,'actor',NULL,'[\"Robert Tracey\"]'),(47349,7217,3,'actor',NULL,'[\"Charlie Nelson\"]'),(47349,1571,4,'actress',NULL,'[\"Janis\"]'),(47349,733476,5,'director',NULL,NULL),(47349,43480,6,'writer','story & screen play',NULL),(47349,463334,7,'producer','producer',NULL),(47349,6130,8,'composer',NULL,NULL),(47349,485702,9,'cinematographer','director of photography',NULL),(47396,866462,10,'editor',NULL,NULL),(47396,71,1,'actor',NULL,'[\"L.B. Jefferies\"]'),(47396,38,2,'actress',NULL,'[\"Lisa Fremont\"]'),(47396,179819,3,'actor',NULL,'[\"Tom Doyle\"]'),(47396,728812,4,'actress',NULL,'[\"Stella\"]'),(47396,33,5,'director',NULL,NULL),(47396,371088,6,'writer','screenplay',NULL),(47396,941280,7,'writer','short story',NULL),(47396,77,8,'composer',NULL,NULL),(47396,122079,9,'cinematographer','director of photography',NULL),(47437,7,1,'actor',NULL,'[\"Linus Larrabee\"]'),(47437,30,2,'actress',NULL,'[\"Sabrina Fairchild\"]'),(47437,34,3,'actor',NULL,'[\"David Larrabee\"]'),(47437,358899,4,'actor',NULL,'[\"Oliver Larrabee\"]'),(47437,697,5,'director',NULL,NULL),(47437,853138,6,'writer','written for the screen by',NULL),(47437,499626,7,'writer','written for the screen by',NULL),(47437,485702,8,'cinematographer','director of photography',NULL),(47437,772834,9,'editor',NULL,NULL),(47443,734334,10,'actor',NULL,'[\"Vance\"]'),(47443,149417,1,'actor',NULL,'[\"Ramon Quintero\"]'),(47443,720955,2,'actress',NULL,'[\"Esperanza Quintero\"]'),(47443,2095,3,'actor',NULL,'[\"Sheriff\"]'),(47443,61784,4,'actor',NULL,'[\"Barton\"]'),(47443,80868,5,'director',NULL,NULL),(47443,933858,6,'writer','by',NULL),(47443,6148,7,'composer',NULL,NULL),(47443,765732,8,'actor',NULL,'[\"Alexander\"]'),(47443,931300,9,'actor',NULL,'[\"Hartwell\"]'),(47469,698782,10,'writer','collaboration',NULL),(47469,335048,1,'actor',NULL,'[\"Il tenente Franz Mahler\"]'),(47469,885098,2,'actress',NULL,'[\"La contessa Livia Serpieri\"]'),(47469,320988,3,'actor',NULL,'[\"Il marchese Roberto Ussoni\"]'),(47469,600552,4,'actor',NULL,'[\"Il conte Serpieri\"]'),(47469,899581,5,'director',NULL,NULL),(47469,147599,6,'writer','story',NULL),(47469,92436,7,'writer','novella',NULL),(47469,19530,8,'writer','collaboration',NULL),(47469,60145,9,'writer','collaboration',NULL),(47472,191901,10,'producer','producer',NULL),(47472,7225,1,'actress',NULL,'[\"Milly Pontipee\"]'),(47472,444476,2,'actor',NULL,'[\"Adam Pontipee\"]'),(47472,724143,3,'actor',NULL,'[\"Benjamin Pontipee\"]'),(47472,848560,4,'actor',NULL,'[\"Gideon Pontipee\"]'),(47472,2045,5,'director',NULL,NULL),(47472,352443,6,'writer','screenplay',NULL),(47472,329304,7,'writer','screenplay',NULL),(47472,455510,8,'writer','screenplay',NULL),(47472,70948,9,'writer','story \"The Sobbin\' Women\"',NULL),(47478,620014,10,'cinematographer',NULL,NULL),(47478,1536,1,'actor',NULL,'[\"Kikuchiyo\"]'),(47478,793766,2,'actor',NULL,'[\"Kambei Shimada\"]'),(47478,875477,3,'actress',NULL,'[\"Shino\"]'),(47478,793616,4,'actress',NULL,'[\"Wife\"]'),(47478,41,5,'director',NULL,NULL),(47478,368074,6,'writer','screenplay by',NULL),(47478,644823,7,'writer','screenplay by',NULL),(47478,609404,8,'producer','producer',NULL),(47478,370593,9,'composer',NULL,NULL),(47522,920074,10,'writer','based on the 1937 story by',NULL),(47522,23,1,'actress',NULL,'[\"Vicki Lester\"]'),(47522,51,2,'actor',NULL,'[\"Norman Maine\"]'),(47522,7217,3,'actor',NULL,'[\"Matt Libby\"]'),(47522,1948,4,'actor',NULL,'[\"Oliver Niles\"]'),(47522,2030,5,'director',NULL,NULL),(47522,366454,6,'writer','screen play by',NULL),(47522,662213,7,'writer','based on the 1937 screen play by',NULL),(47522,132180,8,'writer','based on the 1937 screen play by',NULL),(47522,308604,9,'writer','based on the 1937 screen play by',NULL),(47573,6147,10,'composer',NULL,NULL),(47573,926235,1,'actor',NULL,'[\"Sgt. Ben Peterson\"]'),(47573,350324,2,'actor',NULL,'[\"Dr. Harold Medford\"]'),(47573,919730,3,'actress',NULL,'[\"Dr. Patricia Medford\"]'),(47573,790,4,'actor',NULL,'[\"Robert Graham\"]'),(47573,235066,5,'director',NULL,NULL),(47573,792090,6,'writer','screenplay',NULL),(47573,400914,7,'writer','adaptation',NULL),(47573,946753,8,'writer','story',NULL),(47573,918694,9,'producer','producer',NULL),(47577,20041,10,'producer','producer',NULL),(47577,607504,1,'actor',NULL,'[\"Exeter\"]'),(47577,231409,2,'actress',NULL,'[\"Dr. Ruth Adams\"]'),(47577,714155,3,'actor',NULL,'[\"Dr. Cal Meacham\"]'),(47577,298282,4,'actor',NULL,'[\"Brack\"]'),(47577,628149,5,'director',NULL,NULL),(47577,791,6,'director',NULL,NULL),(47577,168759,7,'writer','screenplay',NULL),(47577,429078,8,'writer','story \"The Alien Machine\"',NULL),(47577,130196,9,'writer','screenplay',NULL),(47580,5762,10,'cinematographer','director of photography',NULL),(47580,916067,1,'actor',NULL,'[\"John Frederick Shadwell\"]'),(47580,570192,2,'actress',NULL,'[\"Miss Frances\"]'),(47580,676492,3,'actress',NULL,'[\"Anita Hutchins\"]'),(47580,431139,4,'actor',NULL,'[\"Prince Dino di Cessi\"]'),(47580,624535,5,'director',NULL,NULL),(47580,665875,6,'writer','screen play',NULL),(47580,781186,7,'writer','from a novel by',NULL),(47580,797012,8,'producer','producer',NULL),(47580,82,9,'composer',NULL,NULL),(47638,837375,10,'editor',NULL,NULL),(47638,849011,1,'actress',NULL,'[\"Hatsuko Mabuchi\"]'),(47638,652743,2,'actor',NULL,'[\"Dr. Kenji Matoba\"]'),(47638,473984,3,'actress',NULL,'[\"Yukiko Mabuchi\"]'),(47638,793879,4,'actor',NULL,'[\"Yasuichi Harada\"]'),(47638,3226,5,'director',NULL,NULL),(47638,406808,6,'writer','written by',NULL),(47638,621534,7,'writer','written by',NULL),(47638,6191,8,'composer',NULL,NULL),(47638,594335,9,'cinematographer',NULL,NULL),(47673,5729,10,'cinematographer','director of photography',NULL),(47673,1078,1,'actor',NULL,'[\"Bob Wallace\"]'),(47673,1414,2,'actor',NULL,'[\"Phil Davis\"]'),(47673,167041,3,'actress',NULL,'[\"Betty Haynes\"]'),(47673,893584,4,'actress',NULL,'[\"Judy Haynes\"]'),(47673,2031,5,'director',NULL,NULL),(47673,469915,6,'writer','written for the screen by',NULL),(47673,659085,7,'writer','written for the screen by',NULL),(47673,291035,8,'writer','written for the screen by',NULL),(47673,6040,9,'producer','producer',NULL),(47677,5803,10,'cinematographer','director of photography',NULL),(47677,8,1,'actor',NULL,'[\"Johnny Strabler\"]'),(47677,614500,2,'actress',NULL,'[\"Kathie Bleeker\"]'),(47677,445290,3,'actor',NULL,'[\"Sheriff Harry Bleeker\"]'),(47677,1511,4,'actor',NULL,'[\"Chino\"]'),(47677,70670,5,'director',NULL,NULL),(47677,668122,6,'writer','screenplay',NULL),(47677,740316,7,'writer','based on a story by',NULL),(47677,534693,8,'writer',NULL,NULL),(47677,6302,9,'composer',NULL,NULL),(47811,804244,10,'composer',NULL,NULL),(47811,943837,1,'actress',NULL,'[\"Cary Scott\"]'),(47811,1369,2,'actor',NULL,'[\"Ron Kirby\"]'),(47811,1547,3,'actress',NULL,'[\"Sara Warren\"]'),(47811,619261,4,'actor',NULL,'[\"Harvey\"]'),(47811,802862,5,'director',NULL,NULL),(47811,272128,6,'writer','screenplay',NULL),(47811,497209,7,'writer','story',NULL),(47811,497374,8,'writer','story',NULL),(47811,403022,9,'producer','producer',NULL),(47821,6090,10,'composer',NULL,NULL),(47821,744103,1,'actress',NULL,'[\"Clelia\"]'),(47821,275213,2,'actor',NULL,'[\"Lorenzo\"]'),(47821,264770,3,'actor',NULL,'[\"Cesare Pedoni, the architect\"]'),(47821,181305,4,'actress',NULL,'[\"Nene\"]'),(47821,774,5,'director',NULL,NULL),(47821,667610,6,'writer','novel \"Tra donne sole\"',NULL),(47821,147599,7,'writer','screenplay',NULL),(47821,207968,8,'writer','collaboration',NULL),(47821,11657,9,'producer','producer',NULL),(47834,1157821,10,'writer','story development',NULL),(47834,372649,1,'actor',NULL,'[\"Narrator\"]'),(47834,219062,2,'actor',NULL,'[\"All Animals\"]'),(47834,60742,3,'director',NULL,NULL),(47834,354691,4,'director',NULL,NULL),(47834,567,5,'writer','based on a story by',NULL),(47834,937852,6,'writer','story development',NULL),(47834,532063,7,'writer','story development',NULL),(47834,8227431,8,'writer','story development',NULL),(47834,372677,9,'writer',NULL,NULL),(47849,6238,10,'composer',NULL,NULL),(47849,75,1,'actor',NULL,'[\"John J. Macreedy\"]'),(47849,752813,2,'actor',NULL,'[\"Reno Smith\"]'),(47849,4282,3,'actress',NULL,'[\"Liz Wirth\"]'),(47849,415591,4,'actor',NULL,'[\"Tim Horn\"]'),(47849,836328,5,'director',NULL,NULL),(47849,442228,6,'writer','screen play',NULL),(47849,570190,7,'writer','adaptation',NULL),(47849,107734,8,'writer','based on a story by',NULL),(47849,770196,9,'producer','producer',NULL),(47878,251964,10,'editor',NULL,NULL),(47878,664273,1,'actor',NULL,'[\"Police Lt. Leonard Diamond\"]'),(47878,2017,2,'actor',NULL,'[\"Mr. Brown\"]'),(47878,908695,3,'actress',NULL,'[\"Susan Lowell\"]'),(47878,2046,4,'actor',NULL,'[\"Joe McClure\"]'),(47878,507390,5,'director',NULL,NULL),(47878,948634,6,'writer','by',NULL),(47878,363563,7,'producer','producer',NULL),(47878,710,8,'composer',NULL,NULL),(47878,23003,9,'cinematographer','director of photography',NULL),(47898,11430,10,'editor',NULL,NULL),(47898,509,1,'actor',NULL,'[\"Dr. Eric Vornoff\"]'),(47898,426363,2,'actor',NULL,'[\"Lobo\"]'),(47898,566815,3,'actor',NULL,'[\"Lt. Dick Craig\"]'),(47898,455010,4,'actress',NULL,'[\"Janet Lawton\"]'),(47898,248,5,'director',NULL,NULL),(47898,329966,6,'writer','original story and screenplay',NULL),(47898,911913,7,'composer',NULL,NULL),(47898,20023,8,'cinematographer','director of photography',NULL),(47898,860847,9,'cinematographer','director of photography',NULL),(47969,5872,10,'cinematographer','director of photography',NULL),(47969,1,1,'actor',NULL,'[\"Jervis Pendleton III\"]'),(47969,1989,2,'actress',NULL,'[\"Julie Andre\"]'),(47969,601930,3,'actress',NULL,'[\"Linda Pendleton\"]'),(47969,728812,4,'actress',NULL,'[\"Alicia Pritchard\"]'),(47969,624535,5,'director',NULL,NULL),(47969,258290,6,'writer','screenplay',NULL),(47969,258288,7,'writer','screenplay',NULL),(47969,916914,8,'writer','novel',NULL),(47969,257143,9,'producer','producer',NULL),(48021,127541,10,'producer','producer',NULL),(48021,785771,1,'actor',NULL,'[\"Tony le Stéphanois\"]'),(48021,617846,2,'actor',NULL,'[\"Jo le Suédois\"]'),(48021,544275,3,'actor',NULL,'[\"Mario Ferrati\"]'),(48021,201009,4,'actress',NULL,'[\"Louise\"]'),(48021,202088,5,'director',NULL,NULL),(48021,494138,6,'writer','novel \"Du rififi chez les hommes\"',NULL),(48021,923941,7,'writer','collaboration',NULL),(48021,80035,8,'producer','producer',NULL),(48021,126889,9,'producer','producer',NULL),(48103,927484,10,'composer',NULL,NULL),(48103,544786,1,'actor',NULL,'[\"Eric Walter\"]'),(48103,3,2,'actress',NULL,'[\"Sophie Dimater\"]'),(48103,681168,3,'actress',NULL,'[\"Elis Petersen\"]'),(48103,2216,4,'actor',NULL,'[\"Clément\"]'),(48103,2165,5,'director',NULL,NULL),(48103,671862,6,'writer','adaptation',NULL),(48103,62139,7,'writer','novel',NULL),(48103,733932,8,'writer','collaborating writer',NULL),(48103,215535,9,'producer','producer',NULL),(48124,916883,10,'editor',NULL,NULL),(48124,1989,1,'actress',NULL,'[\"Ella\"]'),(48124,928697,2,'actor',NULL,'[\"Prince Charles\"]'),(48124,943978,3,'actor',NULL,'[\"Kovin\"]'),(48124,936115,4,'actress',NULL,'[\"Mrs. Toquet\"]'),(48124,910199,5,'director',NULL,NULL),(48124,222079,6,'writer','ballet libretto by',NULL),(48124,461348,7,'producer','producer',NULL),(48124,6147,8,'composer',NULL,NULL),(48124,35186,9,'cinematographer','director of photography',NULL),(48127,577477,10,'writer','original story',NULL),(48127,463590,1,'actor',NULL,'[\"Shoichi Tsukioka\"]'),(48127,906745,2,'actress',NULL,'[\"Hidemi Yamaji - Koehi\'s Daughter\"]'),(48127,156928,3,'actor',NULL,'[\"Kôji Kobayashi\"]'),(48127,793766,4,'actor',NULL,'[\"Kyohei Yamane-hakase\"]'),(48127,643871,5,'director',NULL,NULL),(48127,393094,6,'director',NULL,NULL),(48127,613609,7,'writer',NULL,NULL),(48127,383024,8,'writer',NULL,NULL),(48127,443227,9,'writer','novel',NULL),(48133,498901,10,'cinematographer',NULL,NULL),(48133,6807,1,'actress',NULL,'[\"Marie-Louise Rivière\"]'),(48133,679959,2,'actor',NULL,'[\"Le lieutenant Armand de la Verne\"]'),(48133,220852,3,'actor',NULL,'[\"Victor Duverger\"]'),(48133,245240,4,'actor',NULL,'[\"Le colonel\"]'),(48133,163229,5,'director',NULL,NULL),(48133,350823,6,'writer','adaptation',NULL),(48133,550375,7,'writer','adaptation',NULL),(48133,202555,8,'producer','producer',NULL),(48133,6330,9,'composer',NULL,NULL),(48140,326418,10,'producer','producer',NULL),(48140,8,1,'actor',NULL,'[\"Sky Masterson\"]'),(48140,1739,2,'actress',NULL,'[\"Sarah Brown\"]'),(48140,69,3,'actor',NULL,'[\"Nathan Detroit\"]'),(48140,86176,4,'actress',NULL,'[\"Miss Adelaide\"]'),(48140,581,5,'director',NULL,NULL),(48140,842485,6,'writer','based upon the play: \"Guys and Dolls\" book by',NULL),(48140,123242,7,'writer','based upon the play: \"Guys and Dolls\" book by',NULL),(48140,750357,8,'writer','from a story',NULL),(48140,372942,9,'writer',NULL,NULL),(48254,798826,1,'actor',NULL,'[\"Vinnie Rapallo\"]'),(48254,437325,2,'actress',NULL,'[\"Gloria Price\"]'),(48254,808600,3,'actor',NULL,'[\"Davey Gordon\"]'),(48254,418911,4,'actor',NULL,'[\"Albert\"]'),(48254,40,5,'director',NULL,NULL),(48254,755274,6,'writer','screenplay',NULL),(48254,100200,7,'producer','producer',NULL),(48254,6086,8,'composer',NULL,NULL),(48280,672093,10,'writer','story',NULL),(48280,524853,1,'actress',NULL,'[\"Lady\"]'),(48280,731333,2,'actor',NULL,'[\"The Tramp\"]'),(48280,498007,3,'actress',NULL,'[\"Darling\",\"Si\",\"Am\"]'),(48280,859892,4,'actor',NULL,'[\"Jock\",\"Bull - the Bull Terrier\",\"Policeman at Zoo\"]'),(48280,314671,5,'director',NULL,NULL),(48280,414144,6,'director',NULL,NULL),(48280,527217,7,'director',NULL,NULL),(48280,194018,8,'director',NULL,NULL),(48280,338950,9,'writer','from the story by',NULL),(48281,5740,10,'cinematographer','director of photography',NULL),(48281,27,1,'actor',NULL,'[\"Professor Marcus\"]'),(48281,634,2,'actor',NULL,'[\"Harry Robinson\"]'),(48281,662116,3,'actor',NULL,'[\"Claude\"]'),(48281,7042,4,'actor',NULL,'[\"Louis\"]'),(48281,533241,5,'director',NULL,NULL),(48281,741740,6,'writer','story',NULL),(48281,1057756,7,'writer',NULL,NULL),(48281,49608,8,'producer','producer',NULL),(48281,142639,9,'composer',NULL,NULL),(48308,311903,10,'writer','dialogue: German version',NULL),(48308,138987,1,'actress',NULL,'[\"Lola Montes\"]'),(48308,1811,2,'actor',NULL,'[\"Circus Master\"]'),(48308,906932,3,'actor',NULL,'[\"Ludwig I, King of Bavaria\"]'),(48308,347541,4,'actor',NULL,'[\"Horseman Maurice\"]'),(48308,649097,5,'director',NULL,NULL),(48308,491240,6,'writer','based on the novel by: \"La vie extraordinaire de Lola Montès\"',NULL),(48308,905539,7,'writer','adaptation',NULL),(48308,622148,8,'writer','dialogue',NULL),(48308,237836,9,'writer','co-adaptation',NULL),(48356,308,1,'actor',NULL,'[\"Marty Piletti\"]'),(48356,86198,2,'actress',NULL,'[\"Clara Snyder\"]'),(48356,591034,3,'actress',NULL,'[\"Teresa Piletti\"]'),(48356,162557,4,'actress',NULL,'[\"Aunt Catherine\"]'),(48356,542720,5,'director',NULL,NULL),(48356,154665,6,'writer','story',NULL),(48356,372959,7,'producer','producer',NULL),(48356,2202,8,'composer',NULL,NULL),(48356,5766,9,'cinematographer',NULL,NULL),(48401,463334,10,'producer','producer',NULL),(48401,1463,1,'actress',NULL,'[\"Eileen Sherwood\"]'),(48401,493,2,'actor',NULL,'[\"Robert \'Bob\' Baker\"]'),(48401,308081,3,'actress',NULL,'[\"Ruth Sherwood\"]'),(48401,2080,4,'actor',NULL,'[\"Frank\"]'),(48401,703689,5,'director',NULL,NULL),(48401,1175,6,'writer','screenplay',NULL),(48401,276284,7,'writer','play \"My Sister Eileen\"',NULL),(48401,158738,8,'writer','play \"My Sister Eileen\"',NULL),(48401,571450,9,'writer','stories',NULL),(48424,5673,10,'cinematographer',NULL,NULL),(48424,53,1,'actor',NULL,'[\"Harry Powell\"]'),(48424,1859,2,'actress',NULL,'[\"Willa Harper\"]'),(48424,1273,3,'actress',NULL,'[\"Rachel Cooper\"]'),(48424,322299,4,'actor',NULL,'[\"Uncle Birdie Steptoe\"]'),(48424,1452,5,'director',NULL,NULL),(48424,344181,6,'writer','from the novel by',NULL),(48424,12938,7,'writer','screenplay by',NULL),(48424,339920,8,'producer','producer',NULL),(48424,776739,9,'composer',NULL,NULL),(48432,5832,10,'cinematographer',NULL,NULL),(48432,14,1,'actress',NULL,'[\"Kristina\"]'),(48432,69,2,'actor',NULL,'[\"Alfred\"]'),(48432,53,3,'actor',NULL,'[\"Lucas\"]'),(48432,2108,4,'actress',NULL,'[\"Harriet\"]'),(48432,6452,5,'director',NULL,NULL),(48432,30018,6,'writer','written for the screen by',NULL),(48432,30019,7,'writer','written for the screen by',NULL),(48432,860522,8,'writer','based on the novel by',NULL),(48432,5947,9,'composer',NULL,NULL),(48445,726704,10,'writer','based upon a dramatic play by',NULL),(48445,534286,1,'actor',NULL,'[\"Curly McLain\"]'),(48445,2108,2,'actress',NULL,'[\"Ado Annie Carnes\"]'),(48445,625383,3,'actor',NULL,'[\"Will Parker\"]'),(48445,339307,4,'actress',NULL,'[\"Aunt Eller\"]'),(48445,3593,5,'director',NULL,NULL),(48445,397022,6,'writer','screen play',NULL),(48445,525067,7,'writer','screen play',NULL),(48445,6256,8,'writer','adapted from Rodgers and Hammerstein\'s musical play',NULL),(48445,358564,9,'writer','adapted from Rodgers and Hammerstein\'s musical play',NULL),(48473,151519,10,'production_designer',NULL,NULL),(48473,52333,1,'actor',NULL,'[\"Harihar Ray\"]'),(48473,52334,2,'actress',NULL,'[\"Sarbojaya Ray\"]'),(48473,52343,3,'actor',NULL,'[\"Apu Ray\"]'),(48473,222447,4,'actress',NULL,'[\"Indir Thakrun\"]'),(48473,6249,5,'director',NULL,NULL),(48473,51808,6,'writer','novel',NULL),(48473,788170,7,'composer',NULL,NULL),(48473,593970,8,'cinematographer',NULL,NULL),(48473,244891,9,'editor',NULL,NULL),(48512,933426,10,'editor',NULL,NULL),(48512,27,1,'actor',NULL,'[\"The Cardinal\"]'),(48512,370144,2,'actor',NULL,'[\"The Interrogator\"]'),(48512,493347,3,'actor',NULL,'[\"The Jailer\"]'),(48512,341558,4,'actor',NULL,'[\"The Secretary\"]'),(48512,322706,5,'director',NULL,NULL),(48512,92658,6,'writer','play',NULL),(48512,185280,7,'producer','producer',NULL),(48512,6082,8,'composer',NULL,NULL),(48512,5932,9,'cinematographer','director of photography',NULL),(48517,6147,10,'composer',NULL,NULL),(48517,1805,1,'actress',NULL,'[\"Samarra\"]'),(48517,700803,2,'actor',NULL,'[\"Micah\"]'),(48517,129894,3,'actor',NULL,'[\"Nahreeb\"]'),(48517,198241,4,'actress',NULL,'[\"Ruth\"]'),(48517,861703,5,'director',NULL,NULL),(48517,106713,6,'writer','adaptation from the Bible story',NULL),(48517,488897,7,'writer','adaptation from the Bible story',NULL),(48517,956592,8,'writer',NULL,NULL),(48517,773660,9,'producer','producer',NULL),(48545,5735,10,'cinematographer','director of photography',NULL),(48545,15,1,'actor',NULL,'[\"Jim Stark\"]'),(48545,81,2,'actress',NULL,'[\"Judy\"]'),(48545,543,3,'actor',NULL,'[\"Plato Crawford\"]'),(48545,822,4,'actor',NULL,'[\"Frank Stark\"]'),(48545,712947,5,'director',NULL,NULL),(48545,827856,6,'writer','screen play',NULL),(48545,795730,7,'writer','adaptation',NULL),(48545,918694,8,'producer','producer',NULL),(48545,6260,9,'composer',NULL,NULL),(48605,288719,10,'editor','film editor',NULL),(48605,54,1,'actress',NULL,'[\"The Girl\"]'),(48605,263885,2,'actor',NULL,'[\"Richard Sherman\"]'),(48605,450810,3,'actress',NULL,'[\"Helen Sherman\"]'),(48605,876211,4,'actor',NULL,'[\"Tom MacKenzie\"]'),(48605,697,5,'director',NULL,NULL),(48605,43480,6,'writer','screenplay',NULL),(48605,271012,7,'producer','producer',NULL),(48605,55,8,'composer',NULL,NULL),(48605,5762,9,'cinematographer','director of photography',NULL),(48641,526456,10,'production_designer',NULL,NULL),(48641,414965,1,'actress',NULL,'[\"Anne Egerman\"]'),(48641,196992,2,'actress',NULL,'[\"Desiree Armfeldt\"]'),(48641,27683,3,'actress',NULL,'[\"Petra the Maid\"]'),(48641,137808,4,'actress',NULL,'[\"Countess Charlotte Malcolm\"]'),(48641,5,5,'director',NULL,NULL),(48641,252321,6,'producer','producer',NULL),(48641,635059,7,'composer',NULL,NULL),(48641,5705,8,'cinematographer',NULL,NULL),(48641,741013,9,'editor',NULL,NULL),(48673,6007,10,'composer',NULL,NULL),(48673,31,1,'actress',NULL,'[\"Jane Hudson\"]'),(48673,106387,2,'actor',NULL,'[\"Renato de Rossi\"]'),(48673,592109,3,'actress',NULL,'[\"Signora Fiorini\"]'),(48673,569000,4,'actor',NULL,'[\"Eddie Yaeger\"]'),(48673,180,5,'director',NULL,NULL),(48673,491306,6,'writer','based on the original play \"The Time of the Cuckoo\"',NULL),(48673,60914,7,'writer','screenplay',NULL),(48673,829330,8,'writer',NULL,NULL),(48673,519838,9,'producer','producer',NULL),(48696,605093,10,'editor',NULL,NULL),(48696,730,1,'actor',NULL,'[\"Dr. Matt Hastings\"]'),(48696,179408,2,'actress',NULL,'[\"Stephanie \'Steve\' Clayton\"]'),(48696,1991,3,'actor',NULL,'[\"Prof. Gerald Deemer\"]'),(48696,656980,4,'actor',NULL,'[\"Sheriff Jack Andrews\"]'),(48696,791,5,'director',NULL,NULL),(48696,294354,6,'writer','screenplay',NULL),(48696,75344,7,'writer','screenplay',NULL),(48696,20041,8,'producer','producer',NULL),(48696,732648,9,'cinematographer','director of photography',NULL),(48728,122079,10,'cinematographer','director of photography',NULL),(48728,26,1,'actor',NULL,'[\"John Robie\"]'),(48728,38,2,'actress',NULL,'[\"Frances Stevens\"]'),(48728,484829,3,'actress',NULL,'[\"Jessie Stevens\"]'),(48728,2369,4,'actor',NULL,'[\"H.H. Hughson\"]'),(48728,33,5,'director',NULL,NULL),(48728,371088,6,'writer','screenplay',NULL),(48728,230196,7,'writer','based on the novel by',NULL),(48728,178785,8,'writer','contributing writer',NULL),(48728,615138,9,'composer',NULL,NULL),(48750,534347,10,'editor',NULL,NULL),(48750,1234,1,'actor',NULL,'[\"Sam Marlowe\"]'),(48750,511,2,'actress',NULL,'[\"Jennifer Rogers\"]'),(48750,350324,3,'actor',NULL,'[\"Capt. Albert Wiles\"]'),(48750,622450,4,'actress',NULL,'[\"Miss Ivy Gravely\"]'),(48750,33,5,'director',NULL,NULL),(48750,371088,6,'writer','screenplay',NULL),(48750,832723,7,'writer','based on the novel by',NULL),(48750,2136,8,'composer',NULL,NULL),(48750,122079,9,'cinematographer','director of photography',NULL),(48801,5729,10,'cinematographer','director of photography',NULL),(48801,7,1,'actor',NULL,'[\"Joseph\"]'),(48801,1811,2,'actor',NULL,'[\"Jules\"]'),(48801,712731,3,'actor',NULL,'[\"Albert\"]'),(48801,910,4,'actress',NULL,'[\"Amelie Ducotel\"]'),(48801,2031,5,'director',NULL,NULL),(48801,404062,6,'writer','play \"La cuisine des anges\"',NULL),(48801,532030,7,'writer',NULL,NULL),(48801,240934,8,'producer','producer',NULL),(48801,6130,9,'composer',NULL,NULL),(48956,244891,10,'editor',NULL,NULL),(48956,348483,1,'actor',NULL,'[\"Apu (young)\"]'),(48956,315871,2,'actor',NULL,'[\"Apu - adolescent\"]'),(48956,11967,3,'actress',NULL,'[\"Mokshada\"]'),(48956,49302,4,'actress',NULL,'[\"Teliginni\"]'),(48956,6249,5,'director',NULL,NULL),(48956,51808,6,'writer','novel \"Aparajito\"',NULL),(48956,5581192,7,'writer','assistant screenplay writer',NULL),(48956,788170,8,'composer',NULL,NULL),(48956,593970,9,'cinematographer',NULL,NULL),(48960,865239,10,'producer','producer',NULL),(48960,57,1,'actor',NULL,'[\"Phileas Fogg\"]'),(48960,134594,2,'actor',NULL,'[\"Passepartout\"]'),(48960,192958,3,'actor',NULL,'[\"Andrew Stuart\"]'),(48960,605923,4,'actor',NULL,'[\"Ralph - Bank of England Governor\"]'),(48960,27183,5,'director',NULL,NULL),(48960,268513,6,'director',NULL,NULL),(48960,688117,7,'writer','screenplay',NULL),(48960,673279,8,'writer','screenplay',NULL),(48960,894523,9,'writer','based on a book by',NULL),(48967,422382,10,'writer','front for Jean Rouverol and Hugo Butler',NULL),(48967,1076,1,'actress',NULL,'[\"Milly Wetherby\"]'),(48967,731772,2,'actor',NULL,'[\"Burt Hanson\"]'),(48967,587256,3,'actress',NULL,'[\"Virginia Hanson\"]'),(48967,1296,4,'actor',NULL,'[\"Mr. Hanson\"]'),(48967,736,5,'director',NULL,NULL),(48967,746169,6,'writer','written by',NULL),(48967,124947,7,'writer','written by',NULL),(48967,578439,8,'writer','written by',NULL),(48967,88161,9,'writer','written by',NULL),(48973,1500,1,'actor',NULL,'[\"Archie Lee Meighan\"]'),(48973,4647,2,'actress',NULL,'[\"Baby Doll Meighan\"]'),(48973,908919,3,'actor',NULL,'[\"Silva Vacarro\"]'),(48973,242972,4,'actress',NULL,'[\"Aunt Rose Comfort\"]'),(48973,1415,5,'director',NULL,NULL),(48973,931783,6,'writer','screenplay',NULL),(48973,6132,7,'composer',NULL,NULL),(48973,442100,8,'cinematographer','director of photography',NULL),(48973,587332,9,'editor',NULL,NULL),(48977,5849,10,'cinematographer','director of photography',NULL),(48977,446715,1,'actress',NULL,'[\"Christine Penmark\"]'),(48977,566478,2,'actress',NULL,'[\"Rhoda Penmark\"]'),(48977,164764,3,'actor',NULL,'[\"Tasker\"]'),(48977,924964,4,'actor',NULL,'[\"Emory\"]'),(48977,503777,5,'director',NULL,NULL),(48977,536941,6,'writer','screenplay',NULL),(48977,27173,7,'writer','play',NULL),(48977,545341,8,'writer','novel',NULL),(48977,6218,9,'composer',NULL,NULL),(48981,278540,10,'cinematographer',NULL,NULL),(48981,869451,1,'actor',NULL,'[\"Antonio Bonocore\"]'),(48981,208375,2,'actor',NULL,'[\"Giuseppe Lo Turco\"]'),(48981,748204,3,'actress',NULL,'[\"Marcella\"]'),(48981,298889,4,'actor',NULL,'[\"Cardone\"]'),(48981,557840,5,'director',NULL,NULL),(48981,408488,6,'writer','writer',NULL),(48981,769249,7,'writer','writer',NULL),(48981,111181,8,'producer','producer',NULL),(48981,6007,9,'composer',NULL,NULL),(49010,644048,10,'writer',NULL,NULL),(49010,51,1,'actor',NULL,'[\"Ed Avery\"]'),(49010,750640,2,'actress',NULL,'[\"Lou Avery\"]'),(49010,527,3,'actor',NULL,'[\"Wally Gibbs\"]'),(49010,800359,4,'actor',NULL,'[\"Dr. Norton\"]'),(49010,712947,5,'director',NULL,NULL),(49010,401738,6,'writer','story',NULL),(49010,537363,7,'writer','story',NULL),(49010,745579,8,'writer','article',NULL),(49010,483149,9,'writer',NULL,NULL),(49019,852405,10,'cinematographer','director of photography',NULL),(49019,2047,1,'actress',NULL,'[\"Mary Hilton\"]'),(49019,593814,2,'actress',NULL,'[\"MacFarlane\"]'),(49019,185954,3,'actor',NULL,'[\"Jim Lancaster\"]'),(49019,628638,4,'actress',NULL,'[\"Governor\"]'),(49019,496746,5,'director',NULL,NULL),(49019,377875,6,'writer','based on the book by',NULL),(49019,187593,7,'writer','screenplay',NULL),(49019,363899,8,'producer','producer',NULL),(49019,552931,9,'composer',NULL,NULL),(49038,55,10,'composer',NULL,NULL),(49038,54,1,'actress',NULL,'[\"Chérie\"]'),(49038,614916,2,'actor',NULL,'[\"Beauregard \'Bo\' Decker\"]'),(49038,640023,3,'actor',NULL,'[\"Virgil Blessing\"]'),(49038,275897,4,'actress',NULL,'[\"Grace\"]'),(49038,517597,5,'director',NULL,NULL),(49038,43480,6,'writer','screenplay',NULL),(49038,408718,7,'writer','based on the play by',NULL),(49038,12117,8,'producer','producer',NULL),(49038,6203,9,'composer',NULL,NULL),(49043,6180,10,'composer',NULL,NULL),(49043,86198,1,'actress',NULL,'[\"Isabel\"]'),(49043,840788,2,'actor',NULL,'[\"Juan\"]'),(49043,557148,3,'actor',NULL,'[\"Federico Rivas\"]'),(49043,679133,4,'actor',NULL,'[\"Amigote #1 - Luis\"]'),(49043,54219,5,'director',NULL,NULL),(49043,36298,6,'writer','play \"La señorita de Trévelez\"',NULL),(49043,328097,7,'producer','producer',NULL),(49043,333043,8,'producer','producer',NULL),(49043,6158,9,'composer',NULL,NULL),(49095,142675,10,'editor',NULL,NULL),(49095,900118,1,'actress',NULL,'[\"Claire\"]'),(49095,229561,2,'actress',NULL,'[\"Solange, la soeur de Claire\"]'),(49095,232540,3,'actor',NULL,'[\"Jean, le mari\"]'),(49095,108400,4,'actor',NULL,'[\"Claude, l\'amant\"]'),(49095,729626,5,'director',NULL,NULL),(49095,1031,6,'writer','scenario and dialogue',NULL),(49095,84492,7,'writer','scenario and dialogue',NULL),(49095,1094,8,'writer','story',NULL),(49095,105886,9,'producer','producer',NULL),(49096,1414,1,'actor',NULL,'[\"Hubert Hawkins\"]'),(49096,424318,2,'actress',NULL,'[\"Maid Jean\"]'),(49096,1651,3,'actor',NULL,'[\"Sir Ravenhurst\"]'),(49096,1450,4,'actress',NULL,'[\"Princess Gwendolyn\"]'),(49096,291035,5,'director',NULL,NULL),(49096,659085,6,'director',NULL,NULL),(49096,774384,7,'composer',NULL,NULL),(49096,432482,8,'cinematographer','director of photography: VistaVision',NULL),(49096,563879,9,'editor',NULL,NULL),(49189,29203,10,'production_designer',NULL,NULL),(49189,3,1,'actress',NULL,'[\"Juliete Hardy\"]'),(49189,432007,2,'actor',NULL,'[\"Eric Carradine\"]'),(49189,4462,3,'actor',NULL,'[\"Michel Tardieu\"]'),(49189,548355,4,'actress',NULL,'[\"Madame Morin\"]'),(49189,671862,5,'director',NULL,NULL),(49189,529733,6,'writer','original scenario',NULL),(49189,6201,7,'composer',NULL,NULL),(49189,5901,8,'cinematographer',NULL,NULL),(49189,580202,9,'editor',NULL,NULL),(49196,54908,10,'editor',NULL,NULL),(49196,801786,1,'actor',NULL,'[\"Wade\"]'),(49196,667901,2,'actress',NULL,'[\"Lucy Church\"]'),(49196,496856,3,'actress',NULL,'[\"Nurse Penny Gladstone\"]'),(49196,185954,4,'actor',NULL,'[\"Jay Church\"]'),(49196,101504,5,'director',NULL,NULL),(49196,337944,6,'writer','original story',NULL),(49196,101511,7,'producer','producer',NULL),(49196,599736,8,'composer',NULL,NULL),(49196,5932,9,'cinematographer','director of photography',NULL),(49223,623255,10,'producer','producer',NULL),(49223,682074,1,'actor',NULL,'[\"Dr. Morbius\"]'),(49223,4282,2,'actress',NULL,'[\"Altaira Morbius\"]'),(49223,558,3,'actor',NULL,'[\"Commander Adams\"]'),(49223,828838,4,'actor',NULL,'[\"Lt. \'Doc\' Ostrow\"]'),(49223,928208,5,'director',NULL,NULL),(49223,401738,6,'writer','screen play',NULL),(49223,88726,7,'writer','based on a story by',NULL),(49223,1051864,8,'writer','based on a story by',NULL),(49223,636,9,'writer','play \"The Tempest\"',NULL),(49287,343342,10,'editor',NULL,NULL),(49287,409869,1,'actor',NULL,'[\"Cane Miro\"]'),(49287,307500,2,'actress',NULL,'[\"Marshal Rose Hood\"]'),(49287,370886,3,'actress',NULL,'[\"Erica Page\"]'),(49287,455535,4,'actor',NULL,'[\"Mayor Gideon Polk\"]'),(49287,339,5,'director',NULL,NULL),(49287,341458,6,'writer','screenplay',NULL),(49287,360221,7,'writer','screenplay',NULL),(49287,6300,8,'composer',NULL,NULL),(49287,922071,9,'cinematographer',NULL,NULL),(49293,240059,10,'editor',NULL,NULL),(49293,4464,1,'actor',NULL,'[\"Wilhelm Voigt\"]'),(49293,374919,2,'actor',NULL,'[\"Dr. Obermüller\"]'),(49293,775596,3,'actress',NULL,'[\"Mathilde Obermüller\"]'),(49293,459032,4,'actor',NULL,'[\"Friedrich Hoprecht\"]'),(49293,477702,5,'director',NULL,NULL),(49293,958454,6,'writer','play \'Der Hauptmann von Köpenick\'',NULL),(49293,871632,7,'producer','producer',NULL),(49293,251516,8,'composer',NULL,NULL),(49293,71260,9,'cinematographer',NULL,NULL),(49314,900944,10,'cinematographer','director of photography',NULL),(49314,1078,1,'actor',NULL,'[\"C. K. Dexter-Haven\"]'),(49314,38,2,'actress',NULL,'[\"Tracy Lord\"]'),(49314,69,3,'actor',NULL,'[\"Mike Connor\"]'),(49314,2141,4,'actress',NULL,'[\"Liz Imbrie\"]'),(49314,910199,5,'director',NULL,NULL),(49314,665875,6,'writer','screenplay',NULL),(49314,58129,7,'writer','play',NULL),(49314,797012,8,'producer','producer',NULL),(49314,6234,9,'composer',NULL,NULL),(49363,1033,1,'actor',NULL,'[\"Charles Benton\"]'),(49363,795289,2,'actor',NULL,'[\"Lt. Dick Chasen\"]'),(49363,139792,3,'actress',NULL,'[\"Eva Martin\"]'),(49363,254616,4,'actor',NULL,'[\"Paul Lowe\"]'),(49363,689565,5,'director',NULL,NULL),(49363,751500,6,'writer','original screenplay by',NULL),(49363,103084,7,'writer','original screenplay by',NULL),(49363,5852,8,'cinematographer',NULL,NULL),(49363,270808,9,'editor','film editor',NULL),(49366,5712,10,'cinematographer','director of photography',NULL),(49366,2994,1,'actor',NULL,'[\"Dr. Miles J. Bennell\"]'),(49366,944073,2,'actress',NULL,'[\"Becky Driscoll\"]'),(49366,309588,3,'actor',NULL,'[\"Dr. Dan \'Danny\' Kauffman\"]'),(49366,233014,4,'actor',NULL,'[\"Jack Belicec\"]'),(49366,796923,5,'director',NULL,NULL),(49366,537784,6,'writer','screenplay by',NULL),(49366,278277,7,'writer','based on the Collier\'s magazine serial by',NULL),(49366,172628,8,'writer',NULL,NULL),(49366,236740,9,'composer',NULL,NULL),(49369,829101,10,'cinematographer','director of photography',NULL),(49369,1362,1,'actor',NULL,'[\"Captain Chuck Lockwood\"]'),(49369,31,2,'actress',NULL,'[\"Captain Vinka Kovalenko\"]'),(49369,585548,3,'actress',NULL,'[\"Lady Constance Warburton-Watts\"]'),(49369,433150,4,'actor',NULL,'[\"Colonel Vladimir Denisovich Sklarnoff\"]'),(49369,859387,5,'director',NULL,NULL),(49369,372942,6,'writer','screenplay',NULL),(49369,759162,7,'writer','story',NULL),(49369,101489,8,'producer','producer',NULL),(49369,6082,9,'composer',NULL,NULL),(49406,5644,10,'cinematographer','director of photography',NULL),(49406,1330,1,'actor',NULL,'[\"Johnny Clay\"]'),(49406,336531,2,'actress',NULL,'[\"Fay\"]'),(49406,250436,3,'actor',NULL,'[\"Val Cannon\"]'),(49406,282435,4,'actor',NULL,'[\"Marvin Unger\"]'),(49406,40,5,'director',NULL,NULL),(49406,860292,6,'writer','dialogue by',NULL),(49406,925137,7,'writer','based on the novel \"Clean Break\" by',NULL),(49406,364805,8,'producer','producer',NULL),(49406,6086,9,'composer',NULL,NULL),(49408,6256,10,'composer',NULL,NULL),(49408,989,1,'actor',NULL,'[\"King Mongkut of Siam\"]'),(49408,39,2,'actress',NULL,'[\"Anna Leonowens\"]'),(49408,1549,3,'actress',NULL,'[\"Tuptim\"]'),(49408,72578,4,'actor',NULL,'[\"Kralahome\"]'),(49408,485943,5,'director',NULL,NULL),(49408,499626,6,'writer','screenplay',NULL),(49408,358564,7,'writer','book of musical play',NULL),(49408,484933,8,'writer','novel \"Anna and the King of Siam\"',NULL),(49408,102818,9,'producer','producer',NULL),(49452,869860,10,'cinematographer','director of photography',NULL),(49452,250724,1,'actor',NULL,'[\"Vance Reno\"]'),(49452,656428,2,'actress',NULL,'[\"Cathy Reno\"]'),(49452,62,3,'actor',NULL,'[\"Clint Reno\"]'),(49452,585557,4,'actor',NULL,'[\"Mr. Siringo\"]'),(49452,916271,5,'director',NULL,NULL),(49452,118758,6,'writer','screenplay',NULL),(49452,313884,7,'writer','story',NULL),(49452,918694,8,'producer','producer',NULL),(49452,6213,9,'composer',NULL,NULL),(49470,2136,10,'composer',NULL,NULL),(49470,71,1,'actor',NULL,'[\"Dr. Benjamin McKenna\"]'),(49470,13,2,'actress',NULL,'[\"Josephine Conway McKenna\"]'),(49470,207219,3,'actress',NULL,'[\"Lucy Drayton\"]'),(49470,587061,4,'actor',NULL,'[\"Edward Drayton\"]'),(49470,33,5,'director',NULL,NULL),(49470,371088,6,'writer','screenplay',NULL),(49470,71657,7,'writer','based on a story by',NULL),(49470,943922,8,'writer','based on a story by',NULL),(49470,534191,9,'writer','contributing writer',NULL),(49471,5807,10,'cinematographer','director of photography',NULL),(49471,916067,1,'actor',NULL,'[\"Lt. Cmdr. Ewen Montagu\"]'),(49471,2108,2,'actress',NULL,'[\"Lucy Sherwood\"]'),(49471,281866,3,'actor',NULL,'[\"Lt. George Acres\"]'),(49471,341260,4,'actress',NULL,'[\"Pam\"]'),(49471,623768,5,'director',NULL,NULL),(49471,49587,6,'writer','screenplay by',NULL),(49471,598747,7,'writer','from the book by',NULL),(49471,354602,8,'producer','producer',NULL),(49471,712712,9,'composer',NULL,NULL),(49483,656260,10,'cinematographer',NULL,NULL),(49483,3,1,'actress',NULL,'[\"Chouchou\"]'),(49483,696163,2,'actress',NULL,'[\"Judith Aurigault\"]'),(49483,431139,3,'actor',NULL,'[\"Michel\"]'),(49483,25165,4,'actor',NULL,'[\"Toni\"]'),(49483,309212,5,'director',NULL,NULL),(49483,13221,6,'writer','screenplay',NULL),(49483,431641,7,'writer','novel',NULL),(49483,756694,8,'writer','screenplay',NULL),(49483,321757,9,'composer',NULL,NULL),(49537,756905,10,'composer',NULL,NULL),(49537,849011,1,'actress',NULL,'[\"Rika Yamanaka\",\"Oharu\"]'),(49537,945222,2,'actress',NULL,'[\"Otsuta\"]'),(49537,847301,3,'actress',NULL,'[\"Katsuyo, Otsuta\'s daughter\"]'),(49537,645422,4,'actress',NULL,'[\"Nanako\"]'),(49537,621540,5,'director',NULL,NULL),(49537,406841,6,'writer',NULL,NULL),(49537,1021750,7,'writer','novel',NULL),(49537,849068,8,'writer',NULL,NULL),(49537,297772,9,'producer','producer',NULL),(49640,534347,10,'editor',NULL,NULL),(49640,34,1,'actor',NULL,'[\"Lt. Col. Colin Black\"]'),(49640,39,2,'actress',NULL,'[\"Lee Ashley\"]'),(49640,728812,3,'actress',NULL,'[\"Kate Connors\"]'),(49640,552185,4,'actor',NULL,'[\"Eddie Wodcik\"]'),(49640,780833,5,'director',NULL,NULL),(49640,188419,6,'writer','novel',NULL),(49640,674169,7,'producer','producer',NULL),(49640,82,8,'composer',NULL,NULL),(49640,912860,9,'cinematographer','director of photography',NULL),(49674,186508,10,'editor',NULL,NULL),(49674,59,1,'actor',NULL,'[\"Richard III\"]'),(49674,362567,2,'actor',NULL,'[\"King Edward IV of England\"]'),(49674,360389,3,'actor',NULL,'[\"Archbishop\"]'),(49674,724732,4,'actor',NULL,'[\"Duke of Buckingham\"]'),(49674,636,5,'writer','plays \"Richard III\" and \"Henry VI: Part III\"',NULL),(49674,308243,6,'writer','textual alterations for his production of the play',NULL),(49674,1410377,7,'writer','textual alterations',NULL),(49674,6338,8,'composer',NULL,NULL),(49674,5740,9,'cinematographer','director of photography',NULL),(49730,615005,10,'editor','film editor',NULL),(49730,78,1,'actor',NULL,'[\"Ethan Edwards\"]'),(49730,1374,2,'actor',NULL,'[\"Martin Pawley\"]'),(49730,587256,3,'actress',NULL,'[\"Laurie Jorgensen\"]'),(49730,955,4,'actor',NULL,'[\"Rev. Capt. Samuel Johnston Clayton\"]'),(49730,406,5,'director',NULL,NULL),(49730,637793,6,'writer','screenplay',NULL),(49730,494435,7,'writer','from the novel by',NULL),(49730,70,8,'composer',NULL,NULL),(49730,5743,9,'cinematographer',NULL,NULL),(49762,433816,10,'production_designer',NULL,NULL),(49762,2769,1,'actress',NULL,'[\"Sissi\"]'),(49762,3337,2,'actor',NULL,'[\"Kaiser Franz Josef\"]'),(49762,3579,3,'actress',NULL,'[\"Duchess Ludovika of Bavaria\"]'),(49762,3585,4,'actor',NULL,'[\"Duke Max of Bavaria\"]'),(49762,548094,5,'director',NULL,NULL),(49762,251367,6,'producer','producer',NULL),(49762,6240,7,'composer',NULL,NULL),(49762,5804,8,'cinematographer',NULL,NULL),(49762,820306,9,'editor',NULL,NULL),(49782,454716,10,'producer','producer',NULL),(49782,756292,1,'actor',NULL,'[\"Shigeru Kawamura, colliery engineer\"]'),(49782,794205,2,'actress',NULL,'[\"Kiyo, Shigeru\'s lover\"]'),(49782,386284,3,'actor',NULL,'[\"Professor Kyuichiro Kashiwagi (biology)\"]'),(49782,462181,4,'actor',NULL,'[\"Police Chief Nishimura\"]'),(49782,393094,5,'director',NULL,NULL),(49782,241949,6,'writer',NULL,NULL),(49782,454119,7,'writer',NULL,NULL),(49782,475888,8,'writer','story',NULL),(49782,613609,9,'writer',NULL,NULL),(49787,891531,10,'composer',NULL,NULL),(49787,1958,1,'actor',NULL,'[\"Jose Santero\"]'),(49787,925804,2,'actor',NULL,'[\"Nicholas Brande\"]'),(49787,394588,3,'actor',NULL,'[\"Harrington Brande\"]'),(49787,159258,4,'actor',NULL,'[\"Garcia Morena\"]'),(49787,494885,5,'director',NULL,NULL),(49787,188743,6,'writer','from the novel by',NULL),(49787,832593,7,'writer','screenplay',NULL),(49787,1256308,8,'writer','screenplay',NULL),(49787,116961,9,'producer','producer',NULL),(49833,489679,10,'writer','written for the screen by',NULL),(49833,32,1,'actor',NULL,'[\"Moses\"]'),(49833,989,2,'actor',NULL,'[\"Rameses\"]'),(49833,879,3,'actress',NULL,'[\"Nefretiri\"]'),(49833,64,4,'actor',NULL,'[\"Dathan\"]'),(49833,1124,5,'director',NULL,NULL),(49833,933335,6,'writer','this work contains material from the book \"Prince of Egypt\"',NULL),(49833,408933,7,'writer','this work contains material from the book \"Pillar of Fire\"',NULL),(49833,816161,8,'writer','this work contains material from the book \"On Eagle\'s Wing\"',NULL),(49833,533418,9,'writer','written for the screen by',NULL),(49902,484029,10,'editor',NULL,NULL),(49902,504641,1,'actor',NULL,'[\"Le lieutenant Fontaine\"]'),(49902,494179,2,'actor',NULL,'[\"François Jost\"]'),(49902,66519,3,'actor',NULL,'[\"Blanchet\"]'),(49902,598394,4,'actor',NULL,'[\"Le pasteur Deleyris\"]'),(49902,975,5,'director',NULL,NULL),(49902,222519,6,'writer','memoir',NULL),(49902,688583,7,'producer','producer',NULL),(49902,862005,8,'producer','producer',NULL),(49902,5662,9,'cinematographer',NULL,NULL),(49904,6299,10,'composer',NULL,NULL),(49904,930565,1,'actress',NULL,'[\"Lois Conway\"]'),(49904,618865,2,'actor',NULL,'[\"Police Lt. Harry Graham\"]'),(49904,768334,3,'actor',NULL,'[\"Leonard Bennett\"]'),(49904,28647,4,'actor',NULL,'[\"Mr. Bennett\"]'),(49904,445650,5,'director',NULL,NULL),(49904,575022,6,'writer','screenplay',NULL),(49904,546140,7,'writer','screenplay',NULL),(49904,751426,8,'writer','story',NULL),(49904,443056,9,'producer','producer',NULL),(49934,208086,10,'writer','adaptation',NULL),(49934,30,1,'actress',NULL,'[\"Natasha Rostova\"]'),(49934,20,2,'actor',NULL,'[\"Pierre Bezukhov\"]'),(49934,2072,3,'actor',NULL,'[\"Prince Andrei Bolkonsky\"]'),(49934,2094,4,'actor',NULL,'[\"Anatol Kuragin\"]'),(49934,896542,5,'director',NULL,NULL),(49934,866243,6,'writer','based on the novel by',NULL),(49934,92658,7,'writer','adaptation',NULL),(49934,922589,8,'writer','adaptation',NULL),(49934,131460,9,'writer','adaptation',NULL),(50083,20,1,'actor',NULL,'[\"Juror 8\"]'),(50083,2011,2,'actor',NULL,'[\"Juror 3\"]'),(50083,842,3,'actor',NULL,'[\"Juror 1\"]'),(50083,275835,4,'actor',NULL,'[\"Juror 2\"]'),(50083,1486,5,'director',NULL,NULL),(50083,741627,6,'writer','teleplay \"Twelve Angry Men\"',NULL),(50083,6132,7,'composer',NULL,NULL),(50083,442100,8,'cinematographer','director of photography',NULL),(50083,503594,9,'editor',NULL,NULL),(50105,6087,10,'composer',NULL,NULL),(50105,26,1,'actor',NULL,'[\"Nickie Ferrante\"]'),(50105,39,2,'actress',NULL,'[\"Terry McKay\"]'),(50105,219396,3,'actor',NULL,'[\"Kenneth Bradley\"]'),(50105,666332,4,'actress',NULL,'[\"Lois Clark\"]'),(50105,564970,5,'director',NULL,NULL),(50105,202681,6,'writer','screenplay',NULL),(50105,186118,7,'writer','story',NULL),(50105,829330,8,'writer','screenplay',NULL),(50105,907003,9,'producer','producer',NULL),(50116,659467,10,'cinematographer',NULL,NULL),(50116,704719,1,'actor',NULL,'[\"Juan Cuenca\"]'),(50116,679133,2,'actor',NULL,'[\"Andrés\"]'),(50116,267838,3,'actor',NULL,'[\"Pedro\"]'),(50116,690225,4,'actress',NULL,'[\"Rosario\"]'),(50116,286578,5,'director',NULL,NULL),(50116,766042,6,'writer',NULL,NULL),(50116,953550,7,'writer',NULL,NULL),(50116,600419,8,'producer','producer',NULL),(50116,844620,9,'composer',NULL,NULL),(50193,5952,10,'composer',NULL,NULL),(50193,3,1,'actress',NULL,'[\"Ursula\"]'),(50193,885098,2,'actress',NULL,'[\"Florentine\"]'),(50193,963,3,'actor',NULL,'[\"Lambert\"]'),(50193,631307,4,'actor',NULL,'[\"Comte Miguel de Ribera\"]'),(50193,671862,5,'director',NULL,NULL),(50193,753728,6,'writer','adaptation',NULL),(50193,896428,7,'writer','novel',NULL),(50193,896830,8,'writer',NULL,NULL),(50193,529733,9,'producer','producer',NULL),(50212,2185,10,'composer',NULL,NULL),(50212,34,1,'actor',NULL,'[\"Shears\"]'),(50212,27,2,'actor',NULL,'[\"Colonel Nicholson\"]'),(50212,370144,3,'actor',NULL,'[\"Major Warden\"]'),(50212,370564,4,'actor',NULL,'[\"Colonel Saito\"]'),(50212,180,5,'director',NULL,NULL),(50212,99541,6,'writer','novel \"Le pont de la rivière Kwaï\"',NULL),(50212,286025,7,'writer','screenplay',NULL),(50212,933858,8,'writer','screenplay',NULL),(50212,818545,9,'producer','producer',NULL),(50251,6136,10,'composer',NULL,NULL),(50251,756292,1,'actor',NULL,'[\"Joji Atsumi\"]'),(50251,794205,2,'actress',NULL,'[\"Etsuko Shiraishi\"]'),(50251,442708,3,'actress',NULL,'[\"Hiroko Iwamoto\"]'),(50251,386284,4,'actor',NULL,'[\"Ryoichi Shiraishi\"]'),(50251,393094,5,'director',NULL,NULL),(50251,454119,6,'writer','written by',NULL),(50251,645461,7,'writer','story',NULL),(50251,443227,8,'writer','story',NULL),(50251,849083,9,'producer','producer',NULL),(50307,5872,10,'cinematographer','director of photography',NULL),(50307,75,1,'actor',NULL,'[\"Richard Sumner\"]'),(50307,31,2,'actress',NULL,'[\"Bunny Watson\"]'),(50307,949574,3,'actor',NULL,'[\"Mike Cutler\"]'),(50307,951,4,'actress',NULL,'[\"Peg Costello\"]'),(50307,485943,5,'director',NULL,NULL),(50307,258290,6,'writer','screenplay',NULL),(50307,258288,7,'writer','screenplay',NULL),(50307,545455,8,'writer','based on the play written by',NULL),(50307,6203,9,'composer',NULL,NULL),(50356,319574,10,'editor',NULL,NULL),(50356,53,1,'actor',NULL,'[\"Capt. Murrell\"]'),(50356,432007,2,'actor',NULL,'[\"Von Stolberg\"]'),(50356,373314,3,'actor',NULL,'[\"Lt. Ware\"]'),(50356,942,4,'actor',NULL,'[\"\'Heinie\' Schwaffer\"]'),(50356,694090,5,'director',NULL,NULL),(50356,562606,6,'writer','screenplay',NULL),(50356,713454,7,'writer','novel',NULL),(50356,363316,8,'composer',NULL,NULL),(50356,5849,9,'cinematographer','director of photography',NULL),(50371,587332,10,'editor','film editor',NULL),(50371,341431,1,'actor',NULL,'[\"Larry \'Lonesome\' Rhodes\"]'),(50371,623658,2,'actress',NULL,'[\"Marcia Jeffries\"]'),(50371,290047,3,'actor',NULL,'[\"Joey DePalma\"]'),(50371,527,4,'actor',NULL,'[\"Mel Miller\"]'),(50371,1415,5,'director',NULL,NULL),(50371,775977,6,'writer','story',NULL),(50371,322256,7,'composer',NULL,NULL),(50371,5842,8,'cinematographer','director of photography',NULL),(50371,5889,9,'cinematographer','director of photography',NULL),(50397,71280,10,'composer',NULL,NULL),(50397,28,1,'actress',NULL,'[\"Irena\"]'),(50397,53,2,'actor',NULL,'[\"Felix Bowers\"]'),(50397,493,3,'actor',NULL,'[\"Tony\"]'),(50397,7042,4,'actor',NULL,'[\"Harbour Master\"]'),(50397,663577,5,'director',NULL,NULL),(50397,789758,6,'writer','screenplay',NULL),(50397,146386,7,'writer','novel \"Fire Down Below\"',NULL),(50397,2164,8,'producer','producer',NULL),(50397,110482,9,'producer','producer',NULL),(50407,1766,1,'actress',NULL,'[\"Jessica Drummond\"]'),(50407,837959,2,'actor',NULL,'[\"Griff Bonell\"]'),(50407,415591,3,'actor',NULL,'[\"Sheriff Ned Logan\"]'),(50407,259152,4,'actor',NULL,'[\"Brockie Drummond\"]'),(50407,2087,5,'director',NULL,NULL),(50407,6313,6,'composer',NULL,NULL),(50407,5657,7,'cinematographer','director of photography',NULL),(50407,288635,8,'editor',NULL,NULL),(50419,281866,10,'actor',NULL,'[\"Paul Duval\"]'),(50419,30,1,'actress',NULL,'[\"Jo Stockton\"]'),(50419,1,2,'actor',NULL,'[\"Dick Avery\"]'),(50419,860373,3,'actress',NULL,'[\"Maggie Prescott\"]'),(50419,41509,4,'actor',NULL,'[\"Prof. Émile Flostre\"]'),(50419,2045,5,'director',NULL,NULL),(50419,314826,6,'writer','written by',NULL),(50419,249136,7,'producer','producer',NULL),(50419,432482,8,'cinematographer','director of photography',NULL),(50419,102758,9,'editor',NULL,NULL),(50421,462073,10,'actress',NULL,'[\"Sakura, Yuriko\'s sister\"]'),(50421,847301,1,'actress',NULL,'[\"Yuriko Satô\"]'),(50421,755401,2,'actor',NULL,'[\"Kaneshige Satô, Yuriko\'s husband\"]'),(50421,848768,3,'actress',NULL,'[\"Tetsu Satô, Kaneshige\'s stepmother\"]'),(50421,465531,4,'actor',NULL,'[\"Bunichi Akama, Tetsu\'s nephew\"]'),(50421,455839,5,'director',NULL,NULL),(50421,476680,6,'producer','producer',NULL),(50421,455836,7,'composer',NULL,NULL),(50421,476419,8,'cinematographer',NULL,NULL),(50421,837483,9,'editor',NULL,NULL),(50470,163617,10,'editor',NULL,NULL),(50470,1559,1,'actor',NULL,'[\"Lt. Frank Hewitt\"]'),(50470,335497,2,'actress',NULL,'[\"Anne Martin\"]'),(50470,256216,3,'actress',NULL,'[\"Hannah Lacey\"]'),(50470,232655,4,'actress',NULL,'[\"Mary Wheller\"]'),(50470,550892,5,'director',NULL,NULL),(50470,232527,6,'writer','screenplay',NULL),(50470,365507,7,'writer','story',NULL),(50470,113693,8,'producer','producer',NULL),(50470,5840,9,'cinematographer','director of photography',NULL),(50490,516125,10,'editor',NULL,NULL),(50490,53,1,'actor',NULL,'[\"Corporal Allison USMC\"]'),(50490,39,2,'actress',NULL,'[\"Sister Angela\"]'),(50490,1379,3,'director',NULL,NULL),(50490,536941,4,'writer','screenplay by',NULL),(50490,789650,5,'writer','based on the novel by',NULL),(50490,12117,6,'producer','producer',NULL),(50490,294266,7,'producer','producer',NULL),(50490,5952,8,'composer',NULL,NULL),(50490,5807,9,'cinematographer','director of photography',NULL),(50539,430538,10,'editor',NULL,NULL),(50539,930695,1,'actor',NULL,'[\"Scott Carey\"]'),(50539,835836,2,'actress',NULL,'[\"Louise Carey\"]'),(50539,448655,3,'actress',NULL,'[\"Clarice Bruce\"]'),(50539,486742,4,'actor',NULL,'[\"Charlie Carey\"]'),(50539,791,5,'director',NULL,NULL),(50539,558577,6,'writer','screenplay by',NULL),(50539,671766,7,'writer','screenplay by',NULL),(50539,428572,8,'producer','producer',NULL),(50539,141608,9,'cinematographer','director of photography',NULL),(50549,2875,10,'cinematographer','director of photography',NULL),(50549,51,1,'actor',NULL,'[\"Maxwell Fleury\"]'),(50549,21,2,'actress',NULL,'[\"Mavis Norman\"]'),(50549,199268,3,'actress',NULL,'[\"Margot Seaton\"]'),(50549,1058,4,'actress',NULL,'[\"Jocelyn Fleury\"]'),(50549,744035,5,'director',NULL,NULL),(50549,370883,6,'writer',NULL,NULL),(50549,915272,7,'writer','novel',NULL),(50549,953123,8,'producer','producer',NULL),(50549,2185,9,'composer',NULL,NULL),(50585,542950,10,'production_designer',NULL,NULL),(50585,412748,1,'actress',NULL,'[\"\'Stokrotka\'\"]'),(50585,417361,2,'actor',NULL,'[\"Ens. Jacek \'Korab\'\"]'),(50585,322895,3,'actor',NULL,'[\"Lt. \'Zadra\'\"]'),(50585,350328,4,'actor',NULL,'[\"Sgt. \'Kula\'\"]'),(50585,906667,5,'director',NULL,NULL),(50585,824046,6,'writer','written by',NULL),(50585,470869,7,'composer',NULL,NULL),(50585,513512,8,'cinematographer',NULL,NULL),(50585,623190,9,'editor',NULL,NULL),(50599,6213,10,'composer',NULL,NULL),(50599,26,1,'actor',NULL,'[\"Cmdr. Andy Crewson\"]'),(50599,543790,2,'actress',NULL,'[\"Alice Kratzner\"]'),(50599,2063,3,'actor',NULL,'[\"Eddie Turnbill\"]'),(50599,662646,4,'actress',NULL,'[\"Gwinneth Livingston\"]'),(50599,2045,5,'director',NULL,NULL),(50599,258493,6,'writer','screenplay',NULL),(50599,205065,7,'writer','play \"Kiss Them for Me\"',NULL),(50599,906850,8,'writer','novel \"Shore Leave\"',NULL),(50599,907003,9,'producer','producer',NULL),(50610,6275,10,'composer',NULL,NULL),(50610,607504,1,'actor',NULL,'[\"Dr. Leslie Gaskell\"]'),(50610,492631,2,'actress',NULL,'[\"Vera Hunter\"]'),(50610,256305,3,'actor',NULL,'[\"Dr. Hubbell Eliot\"]'),(50610,641197,4,'actor',NULL,'[\"Dr. Arnold Culver\"]'),(50610,627087,5,'director',NULL,NULL),(50610,325825,6,'writer','screenplay',NULL),(50610,88726,7,'writer','story',NULL),(50610,223221,8,'producer','producer',NULL),(50610,704896,9,'producer','producer',NULL),(50613,609404,10,'producer','producer',NULL),(50613,1536,1,'actor',NULL,'[\"Taketoki Washizu\"]'),(50613,156928,2,'actor',NULL,'[\"Yoshiaki Miki\"]'),(50613,945222,3,'actress',NULL,'[\"Lady Asaji Washizu\"]'),(50613,793766,4,'actor',NULL,'[\"Noriyasu Odagura\"]'),(50613,41,5,'director',NULL,NULL),(50613,644823,6,'writer','screenplay by',NULL),(50613,368074,7,'writer','screenplay by',NULL),(50613,452878,8,'writer','screenplay by',NULL),(50613,636,9,'writer','based on the play \"Macbeth\" by',NULL),(50634,841280,10,'production_designer',NULL,NULL),(50634,759967,1,'actress',NULL,'[\"Veronika\"]'),(50634,60692,2,'actor',NULL,'[\"Boris Fyodorovich Borodin\"]'),(50634,580959,3,'actor',NULL,'[\"Fyodor Ivanovich Borozdin\"]'),(50634,796085,4,'actor',NULL,'[\"Mark Aleksandrovich Borozdin\"]'),(50634,435563,5,'director',NULL,NULL),(50634,747657,6,'writer','play \"Vecno zivye\"',NULL),(50634,883260,7,'composer',NULL,NULL),(50634,882201,8,'cinematographer',NULL,NULL),(50634,863737,9,'editor',NULL,NULL),(50706,56319,10,'editor',NULL,NULL),(50706,4244,1,'actor',NULL,'[\"Monsieur Hulot\"]'),(50706,957645,2,'actor',NULL,'[\"Charles Arpel\"]'),(50706,785792,3,'actress',NULL,'[\"Madame Arpel\"]'),(50706,296996,4,'actor',NULL,'[\"Monsieur Pichard\"]'),(50706,481401,5,'writer','artistic collaboration',NULL),(50706,478327,6,'writer','artistic collaboration',NULL),(50706,53935,7,'composer',NULL,NULL),(50706,739062,8,'composer',NULL,NULL),(50706,99961,9,'cinematographer','director of photography',NULL),(50766,79797,10,'producer','producer',NULL),(50766,763,1,'actor',NULL,'[\"John Holden\"]'),(50766,192033,2,'actress',NULL,'[\"Joanna Harrington\"]'),(50766,532277,3,'actor',NULL,'[\"Doctor Julian Karswell\"]'),(50766,219062,4,'actor',NULL,'[\"Professor Henry Harrington\"]'),(50766,869664,5,'director',NULL,NULL),(50766,71657,6,'writer','screen play',NULL),(50766,156320,7,'writer','screen play',NULL),(50766,416721,8,'writer','story \"Casting the Runes\"',NULL),(50766,256831,9,'writer',NULL,NULL),(50783,209569,10,'producer','producer',NULL),(50783,556399,1,'actress',NULL,'[\"Maria \'Cabiria\' Ceccarelli\"]'),(50783,673749,2,'actor',NULL,'[\"Oscar D\'Onofrio\"]'),(50783,555807,3,'actress',NULL,'[\"Wanda\"]'),(50783,336582,4,'actress',NULL,'[\"Jessy\"]'),(50783,19,5,'director',NULL,NULL),(50783,280919,6,'writer','story',NULL),(50783,684083,7,'writer','story',NULL),(50783,1596,8,'writer','collaborating writer',NULL),(50783,740021,9,'writer','writing consultant',NULL),(50792,456025,10,'producer','producer',NULL),(50792,132409,1,'actor',NULL,'[\"Oedipus\"]'),(50792,835685,2,'actress',NULL,'[\"Jocasta\"]'),(50792,328934,3,'actor',NULL,'[\"Creon\"]'),(50792,404561,4,'actor',NULL,'[\"Chorus Leader\"]'),(50792,349310,5,'director',NULL,NULL),(50792,689796,6,'director',NULL,NULL),(50792,814668,7,'writer','play',NULL),(50792,2588740,8,'writer','additional dialogue',NULL),(50792,947102,9,'writer','English translation',NULL),(50798,426256,10,'editor',NULL,NULL),(50798,570192,1,'actress',NULL,'[\"Katie Coates\"]'),(50798,662240,2,'actor',NULL,'[\"Jim Coates\"]'),(50798,456565,3,'actor',NULL,'[\"Travis Coates\"]'),(50798,948714,4,'actor',NULL,'[\"Bud Searcy\"]'),(50798,829038,5,'director',NULL,NULL),(50798,320564,6,'writer','screenplay by',NULL),(50798,876564,7,'writer','screenplay by',NULL),(50798,6337,8,'composer',NULL,NULL),(50798,102214,9,'cinematographer',NULL,NULL),(50825,6086,10,'composer',NULL,NULL),(50825,18,1,'actor',NULL,'[\"Col. Dax\"]'),(50825,576127,2,'actor',NULL,'[\"Cpl. Philippe Paris\"]'),(50825,579663,3,'actor',NULL,'[\"Gen. George Broulard\"]'),(50825,534317,4,'actor',NULL,'[\"Gen. Paul Mireau\"]'),(50825,40,5,'director',NULL,NULL),(50825,932229,6,'writer','screenplay',NULL),(50825,860292,7,'writer','screenplay',NULL),(50825,167767,8,'writer','based on the novel \"Paths of Glory\" by',NULL),(50825,364805,9,'producer','producer',NULL),(50861,54,1,'actress',NULL,'[\"Elsie\"]'),(50861,59,2,'actor',NULL,'[\"The Regent\"]'),(50861,915077,3,'actor',NULL,'[\"Northbrook\"]'),(50861,395004,4,'actor',NULL,'[\"The Foreign Office\"]'),(50861,711905,5,'writer','by',NULL),(50861,5941,6,'composer',NULL,NULL),(50861,2153,7,'cinematographer','director of photography',NULL),(50861,364789,8,'editor',NULL,NULL),(50861,299097,9,'production_designer',NULL,NULL),(50933,5712,10,'cinematographer','director of photography',NULL),(50933,8,1,'actor',NULL,'[\"Major Lloyd Gruver\"]'),(50933,1544,2,'actor',NULL,'[\"Nakamura\"]'),(50933,654433,3,'actress',NULL,'[\"Eileen Webster\"]'),(50933,1258,4,'actor',NULL,'[\"Captain Mike Bailey\"]'),(50933,517597,5,'director',NULL,NULL),(50933,651585,6,'writer','screen play',NULL),(50933,585151,7,'writer','based on the novel by',NULL),(50933,324544,8,'producer','producer',NULL),(50933,77,9,'composer',NULL,NULL),(50976,526456,10,'production_designer',NULL,NULL),(50976,1884,1,'actor',NULL,'[\"Antonius Block\"]'),(50976,85038,2,'actor',NULL,'[\"Jöns, squire\"]'),(50976,252345,3,'actor',NULL,'[\"Death\"]'),(50976,691555,4,'actor',NULL,'[\"Jof\",\"Joseph\"]'),(50976,5,5,'director',NULL,NULL),(50976,252321,6,'producer','producer',NULL),(50976,635059,7,'composer',NULL,NULL),(50976,5705,8,'cinematographer',NULL,NULL),(50976,906307,9,'editor',NULL,NULL),(50986,803705,1,'actor',NULL,'[\"Dr. Eberhard Isak Borg\"]'),(50986,761,2,'actress',NULL,'[\"Sara\",\"Hitchhiker\"]'),(50986,862026,3,'actress',NULL,'[\"Marianne Borg\"]'),(50986,85038,4,'actor',NULL,'[\"Dr. Evald Borg\"]'),(50986,5,5,'director',NULL,NULL),(50986,635059,6,'composer',NULL,NULL),(50986,5705,7,'cinematographer',NULL,NULL),(50986,741013,8,'editor',NULL,NULL),(50986,349023,9,'production_designer',NULL,NULL),(50998,127693,1,'actress',NULL,'[\"Sabra Tanner\"]'),(50998,588241,2,'actor',NULL,'[\"Mort\"]'),(50998,606371,3,'actress',NULL,'[\"Rita Joyce\"]'),(50998,448483,4,'actress',NULL,'[\"Tina\"]'),(50998,339,5,'director',NULL,NULL),(50998,509398,6,'writer','story',NULL),(50998,914073,7,'writer','screenplay',NULL),(50998,6300,8,'composer',NULL,NULL),(50998,343342,9,'editor',NULL,NULL),(51036,2146,10,'cinematographer',NULL,NULL),(51036,44,1,'actor',NULL,'[\"J.J. Hunsecker\"]'),(51036,348,2,'actor',NULL,'[\"Sidney Falco\"]'),(51036,365893,3,'actress',NULL,'[\"Susan Hunsecker\"]'),(51036,590398,4,'actor',NULL,'[\"Steve Dallas\"]'),(51036,533241,5,'director',NULL,NULL),(51036,644048,6,'writer','screenplay',NULL),(51036,499626,7,'writer','screenplay',NULL),(51036,384343,8,'producer','producer',NULL),(51036,930,9,'composer',NULL,NULL),(51051,35186,10,'cinematographer','director of photography',NULL),(51051,1666,1,'actress',NULL,'[\"Tammy\"]'),(51051,974,2,'actor',NULL,'[\"Grandpa\"]'),(51051,558,3,'actor',NULL,'[\"Peter Brent\"]'),(51051,694580,4,'actress',NULL,'[\"Barbara\"]'),(51051,678928,5,'director',NULL,NULL),(51051,110958,6,'writer','screenplay',NULL),(51051,838865,7,'writer','novel \"Tammy Out of Time\"',NULL),(51051,403022,8,'producer','producer',NULL),(51051,804244,9,'composer',NULL,NULL),(51077,288761,10,'editor',NULL,NULL),(51077,940946,1,'actress',NULL,'[\"Eve White\",\"Eve Black\",\"Jane\"]'),(51077,915536,2,'actor',NULL,'[\"Ralph White\"]'),(51077,2011,3,'actor',NULL,'[\"Doctor Curtis Luther\"]'),(51077,422015,4,'actor',NULL,'[\"Doctor Francis Day\"]'),(51077,425913,5,'director',NULL,NULL),(51077,858099,6,'writer','book',NULL),(51077,165918,7,'writer','book',NULL),(51077,6040,8,'composer',NULL,NULL),(51077,5673,9,'cinematographer','director of photography',NULL),(51114,531796,10,'cinematographer','director of photography',NULL),(51114,1822,1,'actor',NULL,'[\"Jesse James\"]'),(51114,1374,2,'actor',NULL,'[\"Frank James\"]'),(51114,486136,3,'actress',NULL,'[\"Zee James\"]'),(51114,1547,4,'actress',NULL,'[\"Mrs. Samuel\"]'),(51114,712947,5,'director',NULL,NULL),(51114,628305,6,'writer','screenplay',NULL),(51114,425913,7,'writer','earlier screenplay',NULL),(51114,842867,8,'producer','producer',NULL),(51114,363316,9,'composer',NULL,NULL),(51133,188576,10,'composer',NULL,NULL),(51133,964,1,'actor',NULL,'[\"Le prince Charles\"]'),(51133,896331,2,'actor',NULL,'[\"Michel Legrand\"]'),(51133,3,3,'actress',NULL,'[\"Brigitte Laurier\"]'),(51133,740696,4,'actor',NULL,'[\"Le docteur d\'Herblay\"]'),(51133,92330,5,'director',NULL,NULL),(51133,905539,6,'writer','original scenario',NULL),(51133,42159,7,'writer','original scenario',NULL),(51133,256467,8,'writer','adaptation',NULL),(51133,181928,9,'producer','producer',NULL),(51151,812675,10,'cinematographer',NULL,NULL),(51151,757663,1,'actor',NULL,'[\"Dr. Enrique\"]'),(51151,920628,2,'actress',NULL,'[\"Marta Gonzalez\"]'),(51151,599269,3,'actress',NULL,'[\"Eloisa\"]'),(51151,422972,4,'actor',NULL,'[\"Emilio\"]'),(51151,617655,5,'director',NULL,NULL),(51151,1521002,6,'writer','story',NULL),(51151,4973343,7,'writer','screenplay',NULL),(51151,728147,8,'producer','producer',NULL),(51151,5996,9,'composer',NULL,NULL),(51201,540338,10,'composer',NULL,NULL),(51201,61,1,'actor',NULL,'[\"Leonard Vole\"]'),(51201,17,2,'actress',NULL,'[\"Christine\"]'),(51201,1452,3,'actor',NULL,'[\"Sir Wilfrid Robarts\"]'),(51201,6471,4,'actress',NULL,'[\"Miss Plimsoll\"]'),(51201,697,5,'director',NULL,NULL),(51201,2005,6,'writer','in Agatha Christie\'s international stage success',NULL),(51201,475823,7,'writer','screen play',NULL),(51201,546140,8,'writer','adaptation',NULL),(51201,394967,9,'producer','producer',NULL),(51207,866462,10,'editor','film editor',NULL),(51207,20,1,'actor',NULL,'[\"Christopher Emanuel \'Manny\' Balestrero\"]'),(51207,587256,2,'actress',NULL,'[\"Rose Balestrero\"]'),(51207,703033,3,'actor',NULL,'[\"Frank D. O\'Connor\"]'),(51207,831905,4,'actor',NULL,'[\"Det. Lt. Bowers\"]'),(51207,33,5,'director',NULL,NULL),(51207,27173,6,'writer','screenplay',NULL),(51207,534191,7,'writer','screenplay',NULL),(51207,2136,8,'composer',NULL,NULL),(51207,122079,9,'cinematographer','director of photography',NULL),(51372,127917,1,'actor',NULL,'[\"Narrator (spanish version)\"]'),(51372,856187,2,'actor',NULL,'[\"Narrator (french version)\"]'),(51372,70148,3,'director',NULL,NULL),(51372,782041,4,'writer','writer',NULL),(51372,1217385,5,'producer','producer',NULL),(51372,76231,6,'composer',NULL,NULL),(51372,632865,7,'cinematographer',NULL,NULL),(51372,416130,8,'editor',NULL,NULL),(51383,5889,10,'cinematographer','director of photography',NULL),(51383,751426,1,'actress',NULL,'[\"Mame Dennis\"]'),(51383,875861,2,'actor',NULL,'[\"Beauregard Jackson Pickett Burnside\"]'),(51383,114982,3,'actress',NULL,'[\"Vera Charles\"]'),(51383,163939,4,'actor',NULL,'[\"Dwight Babcock\"]'),(51383,196536,5,'director',NULL,NULL),(51383,173679,6,'writer','screenplay',NULL),(51383,337582,7,'writer','screenplay',NULL),(51383,219532,8,'writer','from the novel: \"Auntie Mame\" by',NULL),(51383,6147,9,'composer',NULL,NULL),(51422,616697,10,'editor',NULL,NULL),(51422,938372,1,'actor',NULL,'[\"Callistratus\"]'),(51422,50482,2,'actor',NULL,'[\"John Pierre\"]'),(51422,791176,3,'actress',NULL,'[\"Madeleine\"]'),(51422,534658,4,'actor',NULL,'[\"Carl\"]'),(51422,143900,5,'director',NULL,NULL),(51422,762727,6,'writer','story by',NULL),(51422,48875,7,'producer','producer',NULL),(51422,2627,8,'producer','producer',NULL),(51422,5965,9,'composer',NULL,NULL),(51459,916883,10,'editor',NULL,NULL),(51459,72,1,'actress',NULL,'[\"Maggie Pollitt\"]'),(51459,56,2,'actor',NULL,'[\"Brick Pollitt\"]'),(51459,412322,3,'actor',NULL,'[\"Big Daddy Pollitt\"]'),(51459,7217,4,'actor',NULL,'[\"Gooper Pollitt\"]'),(51459,112218,5,'director',NULL,NULL),(51459,688117,6,'writer','screenplay',NULL),(51459,931783,7,'writer','play \"Cat on a Hot Tin Roof\"',NULL),(51459,918318,8,'producer','producer',NULL),(51459,200125,9,'cinematographer','director of photography',NULL),(51525,461772,10,'editor','film editor',NULL),(51525,348,1,'actor',NULL,'[\"John \'Joker\' Jackson\"]'),(51525,1627,2,'actor',NULL,'[\"Noah Cullen\"]'),(51525,942,3,'actor',NULL,'[\"Sheriff Max Muller\"]'),(51525,569902,4,'actor',NULL,'[\"Capt. Frank Gibbons\"]'),(51525,6452,5,'director',NULL,NULL),(51525,949917,6,'writer','written by',NULL),(51525,808414,7,'writer','written by',NULL),(51525,6104,8,'composer',NULL,NULL),(51525,495402,9,'cinematographer','director of photography',NULL),(51554,38869,10,'cinematographer','director of photography',NULL),(51554,1088,1,'actor',NULL,'[\"Doctor Van Helsing\"]'),(51554,489,2,'actor',NULL,'[\"Count Dracula\"]'),(51554,1284,3,'actor',NULL,'[\"Arthur Holmwood\"]'),(51554,834320,4,'actress',NULL,'[\"Mina Holmwood\"]'),(51554,279807,5,'director',NULL,NULL),(51554,762727,6,'writer','screenplay by',NULL),(51554,831290,7,'writer','based on the novel by',NULL),(51554,385573,8,'producer','producer',NULL),(51554,2302,9,'composer',NULL,NULL),(51579,893364,10,'producer','producer',NULL),(51579,300064,1,'actor',NULL,'[\"Maître André Gobillot\"]'),(51579,3,2,'actress',NULL,'[\"Yvette Maudet\"]'),(51579,275428,3,'actress',NULL,'[\"Viviane Gobillot\"]'),(51579,74303,4,'actress',NULL,'[\"Janine - la bonne d\'Yvette\"]'),(51579,2193,5,'director',NULL,NULL),(51579,42179,6,'writer','screenplay',NULL),(51579,98204,7,'writer','screenplay',NULL),(51579,799442,8,'writer','novel',NULL),(51579,529733,9,'producer','producer',NULL),(51608,733609,10,'composer',NULL,NULL),(51608,3,1,'actress',NULL,'[\"Eva Marchand\"]'),(51608,897376,2,'actor',NULL,'[\"Don Matteo Diaz\"]'),(51608,603916,3,'actor',NULL,'[\"Arabadjian\"]'),(51608,444321,4,'actress',NULL,'[\"Manuela\"]'),(51608,245213,5,'director',NULL,NULL),(51608,9766,6,'writer','screenplay',NULL),(51608,884152,7,'writer','screenplay',NULL),(51608,42179,8,'writer','screenplay',NULL),(51608,522223,9,'writer','novel',NULL),(51622,925212,10,'editor',NULL,NULL),(51622,373314,1,'actor',NULL,'[\"Andre Delambre\"]'),(51622,654433,2,'actress',NULL,'[\"Helene Delambre\"]'),(51622,1637,3,'actor',NULL,'[\"François Delambre\"]'),(51622,3339,4,'actor',NULL,'[\"Insp. Charas\"]'),(51622,627087,5,'director',NULL,NULL),(51622,165412,6,'writer','screenplay',NULL),(51622,486228,7,'writer','based on a story by',NULL),(51622,6275,8,'composer',NULL,NULL),(51622,835365,9,'cinematographer','director of photography',NULL),(51658,5853,10,'cinematographer','director of photography',NULL),(51658,1989,1,'actress',NULL,'[\"Gigi\"]'),(51658,2001,2,'actor',NULL,'[\"Honoré Lachaille\"]'),(51658,431139,3,'actor',NULL,'[\"Gaston Lachaille\"]'),(51658,320006,4,'actress',NULL,'[\"Madame Alvarez\"]'),(51658,591486,5,'director',NULL,NULL),(51658,910199,6,'director',NULL,NULL),(51658,503585,7,'writer','screen play',NULL),(51658,171372,8,'writer','based on the novella by',NULL),(51658,124002,9,'writer',NULL,NULL),(51744,1637,1,'actor',NULL,'[\"Frederick Loren\"]'),(51744,645120,2,'actress',NULL,'[\"Annabelle Loren\"]'),(51744,519160,3,'actor',NULL,'[\"Lance Schroeder\"]'),(51744,550701,4,'actor',NULL,'[\"Dr. David Trent\"]'),(51744,145336,5,'director',NULL,NULL),(51744,925380,6,'writer','written by',NULL),(51744,223330,7,'composer',NULL,NULL),(51744,349246,8,'cinematographer','director of photography',NULL),(51744,515297,9,'editor','film editor',NULL),(51755,903463,10,'production_designer',NULL,NULL),(51755,95524,1,'actor',NULL,'[\"Robert Kraft\"]'),(51755,942,2,'actor',NULL,'[\"Andy McKee\"]'),(51755,561049,3,'actress',NULL,'[\"Ann Craig\"]'),(51755,808473,4,'actor',NULL,'[\"George Kraft\"]'),(51755,51649,5,'director',NULL,NULL),(51755,307311,6,'writer','original story by',NULL),(51755,6086,7,'composer',NULL,NULL),(51755,309516,8,'cinematographer','director of photography',NULL),(51755,838068,9,'editor','film editor',NULL),(51758,911137,10,'producer','producer',NULL),(51758,1333,1,'actress',NULL,'[\"Barbara Graham\"]'),(51758,643000,2,'actor',NULL,'[\"Edward S. \'Ed\' Montgomery\"]'),(51758,898782,3,'actress',NULL,'[\"Peg\"]'),(51758,942,4,'actor',NULL,'[\"Carl G.G. Palmberg\"]'),(51758,936404,5,'director',NULL,NULL),(51758,317254,6,'writer','screenplay',NULL),(51758,542531,7,'writer','screenplay',NULL),(51758,599771,8,'writer','newspaper articles',NULL),(51758,333920,9,'writer','letters',NULL),(51773,364789,10,'editor',NULL,NULL),(51773,26,1,'actor',NULL,'[\"Philip Adams\"]'),(51773,6,2,'actress',NULL,'[\"Anna Kalman\"]'),(51773,662116,3,'actor',NULL,'[\"Alfred Munson\"]'),(51773,130829,4,'actress',NULL,'[\"Mrs. Margaret Munson\"]'),(51773,2045,5,'director',NULL,NULL),(51773,469915,6,'writer','screenplay',NULL),(51773,5961,7,'composer',NULL,NULL),(51773,428549,8,'composer',NULL,NULL),(51773,2875,9,'cinematographer','director of photography',NULL),(51776,2875,10,'cinematographer','director of photography',NULL),(51776,6,1,'actress',NULL,'[\"Gladys Aylward\"]'),(51776,232196,2,'actor',NULL,'[\"The Mandarin of Yang Cheng\"]'),(51776,432007,3,'actor',NULL,'[\"Capt. Lin Nan\"]'),(51776,203008,4,'actor',NULL,'[\"Hok-A\"]'),(51776,733476,5,'director',NULL,NULL),(51776,501973,6,'writer','screenplay',NULL),(51776,121254,7,'writer','novel \"The Small Woman\"',NULL),(51776,12117,8,'producer','producer',NULL),(51776,2185,9,'composer',NULL,NULL),(51786,668727,10,'cinematographer','director of photography',NULL),(51786,860471,1,'actor',NULL,'[\"Col. Edward Carruthers\"]'),(51786,666408,2,'actress',NULL,'[\"Ann Anderson\"]'),(51786,816719,3,'actor',NULL,'[\"Col. Van Heusen\"]'),(51786,233352,4,'actress',NULL,'[\"Mary Royce\"]'),(51786,128715,5,'director',NULL,NULL),(51786,3198,6,'writer','screenplay',NULL),(51786,448839,7,'producer','producer',NULL),(51786,6275,8,'composer',NULL,NULL),(51786,6286,9,'composer',NULL,NULL),(51808,766496,10,'composer',NULL,NULL),(51808,1536,1,'actor',NULL,'[\"General Rokurota Makabe\"]'),(51808,879947,2,'actress',NULL,'[\"Princess Yuki\"]'),(51808,156928,3,'actor',NULL,'[\"Tahei\"]'),(51808,297869,4,'actor',NULL,'[\"Matashichi\"]'),(51808,41,5,'director',NULL,NULL),(51808,452878,6,'writer','written by',NULL),(51808,644823,7,'writer','written by',NULL),(51808,368074,8,'writer','written by',NULL),(51808,297772,9,'producer','producer',NULL),(51818,770127,10,'composer',NULL,NULL),(51818,62,1,'actor',NULL,'[\"Danny Fisher\"]'),(51818,427700,2,'actress',NULL,'[\"Ronnie\"]'),(51818,527,3,'actor',NULL,'[\"Maxie Fields\"]'),(51818,366247,4,'actress',NULL,'[\"Nellie\"]'),(51818,2031,5,'director',NULL,NULL),(51818,48511,6,'writer','screenplay',NULL),(51818,311155,7,'writer','screenplay',NULL),(51818,730356,8,'writer','novel \"A Stone for Danny Fisher\"',NULL),(51818,909259,9,'producer','producer',NULL),(51911,5889,10,'cinematographer','director of photography',NULL),(51911,37,1,'actor',NULL,'[\"Noel Airman\"]'),(51911,81,2,'actress',NULL,'[\"Marjorie Morgenstern\"]'),(51911,872456,3,'actress',NULL,'[\"Rose Morgenstern\"]'),(51911,806041,4,'actor',NULL,'[\"Arnold Morgenstern\"]'),(51911,710924,5,'director',NULL,NULL),(51911,293388,6,'writer','screen play',NULL),(51911,941883,7,'writer','novel',NULL),(51911,818328,8,'producer','producer',NULL),(51911,70,9,'composer',NULL,NULL),(51951,316087,10,'producer','producer',NULL),(51951,7098,1,'actor',NULL,'[\"John McLaren\"]'),(51951,279036,2,'actress',NULL,'[\"Katy Dandridge\"]'),(51951,546918,3,'actress',NULL,'[\"Mary McLaren\"]'),(51951,307995,4,'actor',NULL,'[\"Prof. Herbert Weisse\"]'),(51951,381870,5,'director',NULL,NULL),(51951,878,6,'director',NULL,NULL),(51951,754670,7,'writer','story',NULL),(51951,181753,8,'writer','screenplay',NULL),(51951,176420,9,'writer','screenplay',NULL),(51964,818709,10,'producer','producer',NULL),(51964,658339,1,'actress',NULL,'[\"Elisabeth von Bernburg\"]'),(51964,2769,2,'actress',NULL,'[\"Manuela von Meinhardis\"]'),(51964,317340,3,'actress',NULL,'[\"Headmistress\"]'),(51964,248203,4,'actress',NULL,'[\"Miss von Racket\"]'),(51964,902839,5,'director',NULL,NULL),(51964,935475,6,'writer','play \"Ritter Nerestan\"',NULL),(51964,198887,7,'writer','screenplay',NULL),(51964,405934,8,'writer','screenplay',NULL),(51964,105899,9,'producer','producer',NULL),(52017,196992,1,'actress',NULL,'[\"Stina Andersson\"]'),(52017,862026,2,'actress',NULL,'[\"Cecilia Ellius\"]'),(52017,761,3,'actress',NULL,'[\"Hjördis Petterson\"]'),(52017,386113,4,'actress',NULL,'[\"Nurse Brita\"]'),(52017,5,5,'director',NULL,NULL),(52017,410694,6,'writer','novels \"Det vänliga, värdiga\" and \"Det orubbliga\"',NULL),(52017,934415,7,'cinematographer',NULL,NULL),(52017,804062,8,'editor',NULL,NULL),(52017,512482,9,'production_designer',NULL,NULL),(52077,542611,10,'actor',NULL,'[\"Eros\"]'),(52077,906966,1,'actor',NULL,'[\"Jeff Trent\"]'),(52077,444740,2,'actor',NULL,'[\"Colonel Tom Edwards\"]'),(52077,571958,3,'actress',NULL,'[\"Paula Trent\"]'),(52077,601146,4,'actor',NULL,'[\"Lieutenant Harper\"]'),(52077,248,5,'director',NULL,NULL),(52077,860847,6,'cinematographer','director of photography',NULL),(52077,30838,7,'actor',NULL,'[\"Patrolman Larry\"]'),(52077,545803,8,'actor',NULL,'[\"Patrolman Kelton\"]'),(52077,426363,9,'actor',NULL,'[\"Inspector Daniel Clay\"]'),(52151,5737,10,'cinematographer',NULL,NULL),(52151,22,1,'actor',NULL,'[\"Cmdr. \'Rich\' Richardson\"]'),(52151,44,2,'actor',NULL,'[\"Lt. Jim Bledsoe\"]'),(52151,912001,3,'actor',NULL,'[\"Yeoman 1st Class Mueller\"]'),(52151,223290,4,'actor',NULL,'[\"Ens. Gerald Cartwright\"]'),(52151,936404,5,'director',NULL,NULL),(52151,310775,6,'writer','screenplay',NULL),(52151,63459,7,'writer','based on novel by',NULL),(52151,372959,8,'producer','producer',NULL),(52151,77,9,'composer',NULL,NULL),(52169,485243,10,'editor',NULL,NULL),(52169,399870,1,'actor',NULL,'[\"Eric Whitlock\"]'),(52169,916423,2,'actress',NULL,'[\"Jenni Whitlock\"]'),(52169,176773,3,'actor',NULL,'[\"Rev. Edward Snow\"]'),(52169,426359,4,'actress',NULL,'[\"Mrs. Snow\"]'),(52169,630132,5,'director',NULL,NULL),(52169,460711,6,'writer','written by',NULL),(52169,186769,7,'writer','short story author',NULL),(52169,6104,8,'composer',NULL,NULL),(52169,5677,9,'cinematographer','director of photography',NULL),(52182,710,10,'composer',NULL,NULL),(52182,28,1,'actress',NULL,'[\"Ann Shankland\"]'),(52182,39,2,'actress',NULL,'[\"Sibyl Railton-Bell\"]'),(52182,57,3,'actor',NULL,'[\"Major Angus Pollock\"]'),(52182,44,4,'actor',NULL,'[\"John Malcolm\"]'),(52182,542720,5,'director',NULL,NULL),(52182,711905,6,'writer','screenplay',NULL),(52182,310775,7,'writer','screenplay',NULL),(52182,371088,8,'writer',NULL,NULL),(52182,372959,9,'producer','producer',NULL),(52218,200125,10,'cinematographer','director of photography',NULL),(52218,69,1,'actor',NULL,'[\"Dave Hirsh\"]'),(52218,1509,2,'actor',NULL,'[\"Bama Dillert\"]'),(52218,511,3,'actress',NULL,'[\"Ginnie Moorehead\"]'),(52218,405054,4,'actress',NULL,'[\"Gwen French\"]'),(52218,591486,5,'director',NULL,NULL),(52218,428296,6,'writer','novel \"Some Came Running\"',NULL),(52218,665875,7,'writer','writer',NULL),(52218,790654,8,'writer','writer',NULL),(52218,930,9,'composer',NULL,NULL),(52225,12117,10,'producer','producer',NULL),(52225,106387,1,'actor',NULL,'[\"Emile De Becque\"]'),(52225,310989,2,'actress',NULL,'[\"Ensign Nellie Forbush, USN\"]'),(52225,449734,3,'actor',NULL,'[\"Lt. Joseph Cable, USMC\"]'),(52225,1827,4,'actor',NULL,'[\"Luther Billis\"]'),(52225,517597,5,'director',NULL,NULL),(52225,651585,6,'writer','screenplay',NULL),(52225,6256,7,'writer','adapted from the play \"South Pacific\"',NULL),(52225,358564,8,'writer','adapted from the play \"South Pacific\"',NULL),(52225,585151,9,'writer','based on \"Tales of the South Pacific\" by',NULL),(52278,91772,10,'cinematographer','director of photography',NULL),(52278,22,1,'actor',NULL,'[\"James Gannon\"]'),(52278,13,2,'actress',NULL,'[\"Erica Stone\"]'),(52278,949574,3,'actor',NULL,'[\"Dr. Hugo Pine\"]'),(52278,886638,4,'actress',NULL,'[\"Peggy DeFore\"]'),(52278,780833,5,'director',NULL,NULL),(52278,437716,6,'writer','written by',NULL),(52278,437720,7,'writer','written by',NULL),(52278,674169,8,'producer','producer',NULL),(52278,2202,9,'composer',NULL,NULL),(52311,5797,10,'cinematographer','director of photography',NULL),(52311,32,1,'actor',NULL,'[\"Mike Vargas\"]'),(52311,80,2,'actor',NULL,'[\"Police Captain Hank Quinlan\"]'),(52311,1463,3,'actress',NULL,'[\"Susan Vargas\"]'),(52311,130407,4,'actor',NULL,'[\"Police Sergeant Pete Menzies\"]'),(52311,557767,5,'writer','based on the novel \"Badge Of Evil\" by',NULL),(52311,168759,6,'writer','contributing writer: reshoots',NULL),(52311,597574,7,'writer','additional scenes',NULL),(52311,428572,8,'producer','producer',NULL),(52311,49,9,'composer',NULL,NULL),(52357,27173,10,'writer','contributing writer',NULL),(52357,71,1,'actor',NULL,'[\"John \'Scottie\' Ferguson\"]'),(52357,1571,2,'actress',NULL,'[\"Madeleine Elster\",\"Judy Barton\"]'),(52357,895,3,'actress',NULL,'[\"Marjorie \'Midge\' Wood\"]'),(52357,375738,4,'actor',NULL,'[\"Gavin Elster\"]'),(52357,33,5,'director',NULL,NULL),(52357,178785,6,'writer','screenplay by',NULL),(52357,853138,7,'writer','screenplay by',NULL),(52357,92267,8,'writer','based on the novel \"D\'Entre Les Morts\" by',NULL),(52357,92268,9,'writer','based on the novel \"D\'Entre Les Morts\" by',NULL),(52365,6209,10,'composer',NULL,NULL),(52365,18,1,'actor',NULL,'[\"Einar\"]'),(52365,348,2,'actor',NULL,'[\"Eric\"]'),(52365,308,3,'actor',NULL,'[\"Ragnar\"]'),(52365,1463,4,'actress',NULL,'[\"Morgana\"]'),(52365,281507,5,'director',NULL,NULL),(52365,932229,6,'writer','screenplay',NULL),(52365,913670,7,'writer','adaptation',NULL),(52365,550861,8,'writer','novel \"The Viking\"',NULL),(52365,107724,9,'producer','producer',NULL),(52374,514097,10,'composer',NULL,NULL),(52374,865779,1,'actor',NULL,'[\"Simon Hart\"]'),(52374,623154,2,'actor',NULL,'[\"Prof. Roch\"]'),(52374,392705,3,'actor',NULL,'[\"Artigas\"]'),(52374,805711,4,'actor',NULL,'[\"Kapitán pirátu\"]'),(52374,954724,5,'director',NULL,NULL),(52374,398681,6,'writer','scenario',NULL),(52374,894523,7,'writer','novel \"Face au Drapeau/A Deadly Invention\"',NULL),(52374,2530038,8,'writer','dialogue',NULL),(52374,389767,9,'producer','producer',NULL),(52394,328910,10,'actress',NULL,'[\"Woman of Wongo\"]'),(52394,370286,1,'actress',NULL,'[\"Omoo\"]'),(52394,916212,2,'actress',NULL,'[\"Mona\"]'),(52394,314698,3,'actress',NULL,'[\"Ahtee\"]'),(52394,99725,4,'actress',NULL,'[\"Wana\"]'),(52394,937600,5,'director',NULL,NULL),(52394,751951,6,'writer','screenplay',NULL),(52394,85288,7,'producer','producer',NULL),(52394,909659,8,'cinematographer','director of photography',NULL),(52394,147349,9,'editor',NULL,NULL),(52561,517264,10,'editor',NULL,NULL),(52561,71,1,'actor',NULL,'[\"Paul Biegler\"]'),(52561,1665,2,'actress',NULL,'[\"Laura Manion\"]'),(52561,1262,3,'actor',NULL,'[\"Lt. Frederick Manion\"]'),(52561,640023,4,'actor',NULL,'[\"Parnell Emmett McCarthy\"]'),(52561,695937,5,'director',NULL,NULL),(52561,562606,6,'writer','screenplay',NULL),(52561,871261,7,'writer','based on the novel by',NULL),(52561,254153,8,'composer',NULL,NULL),(52561,495402,9,'cinematographer','director of photography',NULL),(52572,151519,10,'production_designer',NULL,NULL),(52572,154164,1,'actor',NULL,'[\"Apurba Roy\"]'),(52572,846616,2,'actress',NULL,'[\"Aparna\"]'),(52572,149845,3,'actor',NULL,'[\"Kajal\"]'),(52572,611575,4,'actor',NULL,'[\"Pulu\"]'),(52572,6249,5,'director',NULL,NULL),(52572,51808,6,'writer','original story \"Aparajito\"',NULL),(52572,788170,7,'composer',NULL,NULL),(52572,593970,8,'cinematographer',NULL,NULL),(52572,244891,9,'editor',NULL,NULL),(52595,653620,10,'writer','story',NULL),(52595,3,1,'actress',NULL,'[\"Babette\"]'),(52595,153493,2,'actor',NULL,'[\"Gérard de Crécy\"]'),(52595,397580,3,'actor',NULL,'[\"Fitzpatrick\"]'),(52595,186180,4,'actor',NULL,'[\"Heinrich\"]'),(52595,160108,5,'director',NULL,NULL),(52595,2192,6,'writer','dialogue',NULL),(52595,256467,7,'writer','screenplay',NULL),(52595,275081,8,'writer','screenplay',NULL),(52595,529733,9,'writer','story',NULL),(52600,863737,10,'editor',NULL,NULL),(52600,412204,1,'actor',NULL,'[\"Alyosha Skvortsov\"]'),(52600,698564,2,'actress',NULL,'[\"Shura\"]'),(52600,538783,3,'actress',NULL,'[\"Katerina (Alyosha\'s Mother)\"]'),(52600,473041,4,'actor',NULL,'[\"The General\"]'),(52600,161055,5,'director',NULL,NULL),(52600,947899,6,'writer',NULL,NULL),(52600,957312,7,'composer',NULL,NULL),(52600,631844,8,'cinematographer',NULL,NULL),(52600,767566,9,'cinematographer',NULL,NULL),(52602,5657,10,'cinematographer','director of photography',NULL),(52602,1637,1,'actor',NULL,'[\"Dr. Malcolm Wells\"]'),(52602,1547,2,'actress',NULL,'[\"Cornelia van Gorder\"]'),(52602,330200,3,'actor',NULL,'[\"Lt. Andy Anderson\"]'),(52602,840330,4,'actor',NULL,'[\"Warner - The Chauffeur\"]'),(52602,928108,5,'director',NULL,NULL),(52602,727497,6,'writer','based on the play by',NULL),(52602,394479,7,'writer','based on the play by',NULL),(52602,856678,8,'producer','producer',NULL),(52602,6078,9,'composer',NULL,NULL),(52618,67103,10,'writer','contributing writer',NULL),(52618,32,1,'actor',NULL,'[\"Judah Ben-Hur\"]'),(52618,370144,2,'actor',NULL,'[\"Quintus Arrius\"]'),(52618,963,3,'actor',NULL,'[\"Messala\"]'),(52618,361823,4,'actress',NULL,'[\"Esther\"]'),(52618,943758,5,'director',NULL,NULL),(52618,908753,6,'writer','A Tale of Christ',NULL),(52618,876562,7,'writer','screen play by',NULL),(52618,683,8,'writer','contributing writer',NULL),(52618,27173,9,'writer','contributing writer',NULL),(52646,263645,1,'actor',NULL,'[\"Dr. Bill Cortner\"]'),(52646,500702,2,'actress',NULL,'[\"Jan Compton\",\"Jan in the Pan\"]'),(52646,200012,3,'actor',NULL,'[\"Kurt\"]'),(52646,483641,4,'actress',NULL,'[\"Doris Powell\"]'),(52646,338018,5,'director',NULL,NULL),(52646,107570,6,'writer','additional dialogue',NULL),(52646,138223,7,'writer','original story by',NULL),(52646,354518,8,'cinematographer','director of photography',NULL),(52646,27120,9,'editor','film editor',NULL),(52654,6181,10,'composer',NULL,NULL),(52654,92135,1,'actor',NULL,'[\"Hans Scholten\"]'),(52654,921202,2,'actor',NULL,'[\"Albert Mutz\"]'),(52654,386066,3,'actor',NULL,'[\"Walter Forst\"]'),(52654,322163,4,'actor',NULL,'[\"Jurgen Borchert\"]'),(52654,926919,5,'director',NULL,NULL),(52654,1537957,6,'writer','novel',NULL),(52654,543773,7,'writer','writer',NULL),(52654,666710,8,'writer','writer',NULL),(52654,777907,9,'producer','producer',NULL),(52655,588241,1,'actor',NULL,'[\"Walter Paisley\"]'),(52655,606371,2,'actress',NULL,'[\"Carla\"]'),(52655,136147,3,'actor',NULL,'[\"Leonard de Santis\"]'),(52655,123630,4,'actor',NULL,'[\"Maxwell H. Brock\"]'),(52655,339,5,'director',NULL,NULL),(52655,341458,6,'writer','screenplay',NULL),(52655,441711,7,'composer',NULL,NULL),(52655,549821,8,'cinematographer','director of photography',NULL),(52655,137124,9,'editor',NULL,NULL),(52722,426256,10,'editor',NULL,NULL),(52722,789185,1,'actor',NULL,'[\"Darby O\'Gill\"]'),(52722,613130,2,'actress',NULL,'[\"Katie O\'Gill\"]'),(52722,125,3,'actor',NULL,'[\"Michael McBride\"]'),(52722,640618,4,'actor',NULL,'[\"King Brian\"]'),(52722,829038,5,'director',NULL,NULL),(52722,914245,6,'writer','written by',NULL),(52722,442551,7,'writer','suggested by \"Darby O\'Gill\" stories',NULL),(52722,6337,8,'composer',NULL,NULL),(52722,5743,9,'cinematographer','director of photography',NULL),(52844,760170,10,'editor',NULL,NULL),(52844,265418,1,'actress',NULL,'[\"Lois Cavendish\"]'),(52844,70511,2,'actor',NULL,'[\"Tom Hendry\"]'),(52844,564871,3,'actor',NULL,'[\"Dave\"]'),(52844,102927,4,'actor',NULL,'[\"Stan\"]'),(52844,390402,5,'director',NULL,NULL),(52844,750870,6,'writer','written by',NULL),(52844,6300,7,'composer',NULL,NULL),(52844,913084,8,'cinematographer','director of photography',NULL),(52844,445628,9,'editor',NULL,NULL),(52846,5668,10,'cinematographer',NULL,NULL),(52846,838042,1,'actor',NULL,'[\"Chase Winstead\"]'),(52846,334040,2,'actor',NULL,'[\"Sheriff Jeff\"]'),(52846,800504,3,'actress',NULL,'[\"Lisa\"]'),(52846,279786,4,'actor',NULL,'[\"Old Man Harris\"]'),(52846,446129,5,'director',NULL,NULL),(52846,799972,6,'writer','screenplay by',NULL),(52846,193411,7,'producer','producer',NULL),(52846,1740696,8,'producer','producer',NULL),(52846,550925,9,'composer',NULL,NULL),(52847,528995,10,'editor',NULL,NULL),(52847,364,1,'actress',NULL,'[\"Francie Lawrence aka Gidget\"]'),(52847,201626,2,'actor',NULL,'[\"Jeffrey Matthews aka Moondoggie\"]'),(52847,731772,3,'actor',NULL,'[\"Burt Vail aka The Big Kahuna\"]'),(52847,640023,4,'actor',NULL,'[\"Russell Lawrence\"]'),(52847,920862,5,'director',NULL,NULL),(52847,881501,6,'writer','screenplay',NULL),(52847,463430,7,'writer','novel',NULL),(52847,705135,8,'producer','producer',NULL),(52847,346532,9,'cinematographer','director of photography',NULL),(52861,65,10,'composer',NULL,NULL),(52861,814773,1,'actor',NULL,'[\"Oreste Jacovacci\"]'),(52861,2094,2,'actor',NULL,'[\"Giovanni Busacca\"]'),(52861,88396,3,'actor',NULL,'[\"Capitano Castelli\"]'),(52861,525793,4,'actor',NULL,'[\"Bordin\"]'),(52861,598102,5,'director',NULL,NULL),(52861,408488,6,'writer','story and screenplay',NULL),(52861,769249,7,'writer','story and screenplay',NULL),(52861,898812,8,'writer','story and screenplay',NULL),(52861,209569,9,'producer','producer',NULL),(52918,804244,10,'composer',NULL,NULL),(52918,1805,1,'actress',NULL,'[\"Lora Meredith\"]'),(52918,1260,2,'actor',NULL,'[\"Steve Archer\"]'),(52918,364,3,'actress',NULL,'[\"Susie (16)\"]'),(52918,463435,4,'actress',NULL,'[\"Sarah Jane (18)\"]'),(52918,802862,5,'director',NULL,NULL),(52918,341178,6,'writer','screenplay',NULL),(52918,778818,7,'writer','screenplay',NULL),(52918,403595,8,'writer','novel',NULL),(52918,403022,9,'producer','producer',NULL),(52948,869860,10,'cinematographer','director of photography',NULL),(52948,51,1,'actor',NULL,'[\"Sir Oliver S. Lindenbrook\"]'),(52948,4769,2,'actor',NULL,'[\"Alec McEwan\"]'),(52948,6428,3,'actress',NULL,'[\"Carla Göteborg\"]'),(52948,832,4,'actress',NULL,'[\"Jenny Lindenbrook\"]'),(52948,505610,5,'director',NULL,NULL),(52948,281556,6,'writer','screenplay',NULL),(52948,102818,7,'writer','screenplay',NULL),(52948,894523,8,'writer','novel \"Voyage au centre de la Terre\"',NULL),(52948,2136,9,'composer',NULL,NULL),(53125,102327,10,'production_designer',NULL,NULL),(53125,26,1,'actor',NULL,'[\"Roger Thornhill\"]'),(53125,1693,2,'actress',NULL,'[\"Eve Kendall\"]'),(53125,51,3,'actor',NULL,'[\"Phillip Vandamm\"]'),(53125,484829,4,'actress',NULL,'[\"Clara Thornhill\"]'),(53125,33,5,'director',NULL,NULL),(53125,499626,6,'writer','written by',NULL),(53125,2136,7,'composer',NULL,NULL),(53125,122079,8,'cinematographer','director of photography',NULL),(53125,866462,9,'editor','film editor',NULL),(53131,5832,10,'cinematographer','director of photography',NULL),(53131,30,1,'actress',NULL,'[\"Sister Luke (Gabrielle van der Mal)\"]'),(53131,2075,2,'actor',NULL,'[\"Dr. Fortunati\"]'),(53131,262725,3,'actress',NULL,'[\"Rev. Mother Emmanuel (Belgium)\"]'),(53131,1919,4,'actress',NULL,'[\"Mother Mathilde (Africa)\"]'),(53131,3593,5,'director',NULL,NULL),(53131,27355,6,'writer','screenplay',NULL),(53131,401520,7,'writer','book',NULL),(53131,87533,8,'producer','producer',NULL),(53131,77,9,'composer',NULL,NULL),(53134,357310,10,'editor',NULL,NULL),(53134,755401,1,'actor',NULL,'[\"Heiichirô Fukui\"]'),(53134,473984,2,'actress',NULL,'[\"Setsuko Arita\"]'),(53134,753479,3,'actor',NULL,'[\"Keitarô Hayashi\"]'),(53134,594381,4,'actress',NULL,'[\"Tamiko Hayashi\"]'),(53134,654868,5,'director',NULL,NULL),(53134,633792,6,'writer','written by',NULL),(53134,945567,7,'producer','producer',NULL),(53134,6191,8,'composer',NULL,NULL),(53134,40916,9,'cinematographer',NULL,NULL),(53172,403022,10,'producer','producer',NULL),(53172,1369,1,'actor',NULL,'[\"Brad Allen\"]'),(53172,13,2,'actress',NULL,'[\"Jan Morrow\"]'),(53172,709704,3,'actor',NULL,'[\"Jonathan Forbes\"]'),(53172,728812,4,'actress',NULL,'[\"Alma\"]'),(53172,330456,5,'director',NULL,NULL),(53172,788630,6,'writer','screenplay',NULL),(53172,725009,7,'writer','screenplay',NULL),(53172,745866,8,'writer','story',NULL),(53172,338707,9,'writer','story',NULL),(53198,529543,1,'actor',NULL,'[\"Antoine Doinel\"]'),(53198,753716,2,'actor',NULL,'[\"Julien Doinel - le beau-père d\'Antoine\"]'),(53198,561158,3,'actress',NULL,'[\"Gilberte Doinel - la mère d\'Antoine\"]'),(53198,213948,4,'actor',NULL,'[\"\'Petite Feuille\' - l\'instituteur\"]'),(53198,76,5,'director',NULL,NULL),(53198,610115,6,'writer','adaptation',NULL),(53198,176036,7,'composer',NULL,NULL),(53198,5684,8,'cinematographer','director of photography',NULL),(53198,950391,9,'editor',NULL,NULL),(53221,5737,10,'cinematographer','director of photography',NULL),(53221,78,1,'actor',NULL,'[\"Sheriff John T. Chance\"]'),(53221,1509,2,'actor',NULL,'[\"Dude (\'Borrachón\')\"]'),(53221,625699,3,'actor',NULL,'[\"Colorado Ryan\"]'),(53221,1141,4,'actress',NULL,'[\"Feathers\"]'),(53221,1328,5,'director',NULL,NULL),(53221,299154,6,'writer','screenplay',NULL),(53221,102824,7,'writer','screenplay',NULL),(53221,564800,8,'writer','short story',NULL),(53221,6323,9,'composer',NULL,NULL),(53250,754081,10,'writer','adaptation',NULL),(53250,849447,1,'actress',NULL,'[\"Die japanische Ärztin\",\"Sumiko Ogimura MD\"]'),(53250,525654,2,'actor',NULL,'[\"Amerikanischer Atomphysiker\",\"Prof. Harringway Hawling\"]'),(53250,532672,3,'actor',NULL,'[\"Polnischer Chefingenieur\",\"Prof. Saltyk\",\"Prof. Durand\"]'),(53250,648681,4,'actor',NULL,'[\"Afrikanischer Fernsehtechniker\",\"Talua\"]'),(53250,535512,5,'director',NULL,NULL),(53250,501015,6,'writer','novel \"Astronauci\"',NULL),(53250,275312,7,'writer','adaptation',NULL),(53250,463305,8,'writer','adaptation',NULL),(53250,718383,9,'writer','adaptation',NULL),(53285,672093,10,'writer','story adaptation',NULL),(53285,182250,1,'actress',NULL,'[\"Princess Aurora\"]'),(53285,794301,2,'actor',NULL,'[\"Prince Phillip\"]'),(53285,41598,3,'actress',NULL,'[\"Maleficent\"]'),(53285,271658,4,'actress',NULL,'[\"Flora\",\"Queen Leah\"]'),(53285,164203,5,'director','sequence director',NULL),(53285,314671,6,'director','supervising director',NULL),(53285,488981,7,'director','sequence director',NULL),(53285,718627,8,'director','sequence director',NULL),(53285,527217,9,'director','sequence director',NULL),(53291,485702,10,'cinematographer','director of photography',NULL),(53291,54,1,'actress',NULL,'[\"Sugar Kane Kowalczyk\"]'),(53291,348,2,'actor',NULL,'[\"Joe\",\"Josephine\",\"Shell Oil Junior\"]'),(53291,493,3,'actor',NULL,'[\"Jerry\",\"Daphne\"]'),(53291,706368,4,'actor',NULL,'[\"Spats Colombo\"]'),(53291,697,5,'director',NULL,NULL),(53291,224634,6,'writer','screenplay',NULL),(53291,858329,7,'writer','suggested by a story by',NULL),(53291,517615,8,'writer','suggested by a story by',NULL),(53291,6037,9,'composer',NULL,NULL),(53318,650534,10,'composer',NULL,NULL),(53318,72,1,'actress',NULL,'[\"Catherine Holly\"]'),(53318,31,2,'actress',NULL,'[\"Mrs. Venable\"]'),(53318,1050,3,'actor',NULL,'[\"Dr. Cukrowicz\"]'),(53318,215260,4,'actor',NULL,'[\"Dr. Hockstader\"]'),(53318,581,5,'director',NULL,NULL),(53318,931783,6,'writer','play \"Suddenly, Last Summer\"',NULL),(53318,683,7,'writer','screenplay',NULL),(53318,818545,8,'producer','producer',NULL),(53318,2185,9,'composer',NULL,NULL),(53363,1637,1,'actor',NULL,'[\"Dr. Warren Chapin\"]'),(53363,263393,2,'actress',NULL,'[\"Mrs. Martha Ryerson Higgins\"]'),(53363,382718,3,'actor',NULL,'[\"David Morris\"]'),(53363,194036,4,'actress',NULL,'[\"Isabel Stevens Chapin\"]'),(53363,145336,5,'director',NULL,NULL),(53363,925380,6,'writer','written by',NULL),(53363,223330,7,'composer',NULL,NULL),(53363,5668,8,'cinematographer','director of photography',NULL),(53363,769692,9,'editor',NULL,NULL),(53388,463589,10,'cinematographer','director of photography',NULL),(53388,407411,1,'actor',NULL,'[\"Maj. Ichiro Katsumiya\"]'),(53388,31719,2,'actress',NULL,'[\"Etsuko Shiraishi\"]'),(53388,847031,3,'actor',NULL,'[\"The Commander\"]'),(53388,784119,4,'actor',NULL,'[\"Professor Adachi\"]'),(53388,393094,5,'director',NULL,NULL),(53388,782883,6,'writer','written by',NULL),(53388,645461,7,'writer','story',NULL),(53388,849083,8,'producer','producer',NULL),(53388,6136,9,'composer',NULL,NULL),(53428,740426,10,'writer','novel \"The Blonde Died Dancing\"',NULL),(53428,3,1,'actress',NULL,'[\"Virginie Dandieu\"]'),(53428,896331,2,'actor',NULL,'[\"Hervé Dandieu\"]'),(53428,11625,3,'actress',NULL,'[\"Anita Florès\"]'),(53428,603916,4,'actor',NULL,'[\"Florès\"]'),(53428,92330,5,'director',NULL,NULL),(53428,653620,6,'writer','adaptation',NULL),(53428,6621,7,'writer','adaptation',NULL),(53428,859125,8,'writer','adaptation',NULL),(53428,905539,9,'writer','adaptation',NULL),(53454,470932,10,'editor',NULL,NULL),(53454,896,1,'actor',NULL,'[\"Ralph Burton\"]'),(53454,828447,2,'actress',NULL,'[\"Sarah Crandall\"]'),(53454,2072,3,'actor',NULL,'[\"Benson Thacker\"]'),(53454,532030,4,'director',NULL,NULL),(53454,793149,5,'writer','novel \"The Purple Cloud\"',NULL),(53454,721447,6,'writer','story \"End of the World\"',NULL),(53454,257698,7,'producer','producer',NULL),(53454,67,8,'composer',NULL,NULL),(53454,555845,9,'cinematographer',NULL,NULL),(53459,309039,10,'writer','dialogue',NULL),(53459,105482,1,'actor',NULL,'[\"Le docteur Génessier\"]'),(53459,885098,2,'actress',NULL,'[\"Louise\"]'),(53459,562831,3,'actress',NULL,'[\"Edna Grüber\"]'),(53459,726777,4,'actor',NULL,'[\"L\'inspecteur Parot\"]'),(53459,290802,5,'director',NULL,NULL),(53459,715118,6,'writer','novel',NULL),(53459,92267,7,'writer','adaptation',NULL),(53459,92268,8,'writer','adaptation',NULL),(53459,767110,9,'writer','adaptation',NULL),(53472,214038,10,'editor',NULL,NULL),(53472,901,1,'actor',NULL,'[\"Michel Poiccard a.k.a. Laszlo Kovacs\"]'),(53472,781029,2,'actress',NULL,'[\"Patricia Franchini\"]'),(53472,234767,3,'self',NULL,'[\"Self\"]'),(53472,419,4,'actor',NULL,'[\"The Snitch\"]'),(53472,76,5,'writer','original scenario',NULL),(53472,1031,6,'writer','original scenario',NULL),(53472,64676,7,'producer','producer',NULL),(53472,812606,8,'composer',NULL,NULL),(53472,184170,9,'cinematographer',NULL,NULL),(53579,40916,10,'cinematographer',NULL,NULL),(53579,361697,1,'actress',NULL,'[\"Akiko Miwa\"]'),(53579,875362,2,'actress',NULL,'[\"Ayako Miwa\"]'),(53579,645422,3,'actress',NULL,'[\"Yuriko Sasaki\"]'),(53579,755401,4,'actor',NULL,'[\"Shotaru Goto\"]'),(53579,654868,5,'director',NULL,NULL),(53579,1516268,6,'writer','novel',NULL),(53579,633792,7,'writer','screenplay',NULL),(53579,945567,8,'producer','producer',NULL),(53579,756907,9,'composer',NULL,NULL),(53604,493,1,'actor',NULL,'[\"C.C. Baxter\"]'),(53604,511,2,'actress',NULL,'[\"Fran Kubelik\"]'),(53604,534045,3,'actor',NULL,'[\"Jeff D. Sheldrake\"]'),(53604,1827,4,'actor',NULL,'[\"Joe Dobisch\"]'),(53604,697,5,'director',NULL,NULL),(53604,224634,6,'writer','written by',NULL),(53604,6037,7,'composer',NULL,NULL),(53604,5766,8,'cinematographer','director of photography',NULL),(53604,541721,9,'editor','film editor',NULL),(53619,769338,10,'cinematographer',NULL,NULL),(53619,275213,1,'actor',NULL,'[\"Sandro\"]'),(53619,900143,2,'actress',NULL,'[\"Claudia\"]'),(53619,557159,3,'actress',NULL,'[\"Anna\"]'),(53619,87017,4,'actress',NULL,'[\"Giulia\"]'),(53619,774,5,'director',NULL,NULL),(53619,59026,6,'writer','screenplay',NULL),(53619,346096,7,'writer','screenplay',NULL),(53619,672051,8,'producer','producer',NULL),(53619,6090,9,'composer',NULL,NULL),(53666,6201,10,'composer',NULL,NULL),(53666,480942,1,'actress',NULL,'[\"Jane\"]'),(53666,423332,2,'actress',NULL,'[\"Jacqueline\"]'),(53666,804,3,'actress',NULL,'[\"Ginette\"]'),(53666,756756,4,'actress',NULL,'[\"Rita\"]'),(53666,1031,5,'director',NULL,NULL),(53666,337541,6,'writer','scenario and dialogue',NULL),(53666,354623,7,'producer','producer',NULL),(53666,354624,8,'producer','producer',NULL),(53666,6143,9,'composer',NULL,NULL),(53677,831290,10,'writer','based on characters from a novel by',NULL),(53677,1088,1,'actor',NULL,'[\"Doctor Van Helsing\"]'),(53677,402558,2,'actress',NULL,'[\"Baroness Meinster\"]'),(53677,598289,3,'actress',NULL,'[\"Marianne Danielle\"]'),(53677,413528,4,'actress',NULL,'[\"Greta\"]'),(53677,279807,5,'director',NULL,NULL),(53677,762727,6,'writer','screenplay by',NULL),(53677,116999,7,'writer','screenplay by',NULL),(53677,672906,8,'writer','screenplay by',NULL),(53677,385573,9,'writer',NULL,NULL),(53719,225512,10,'cinematographer','director of photography',NULL),(53719,422185,1,'actress',NULL,'[\"Elizabeth Selwyn\",\"Mrs. Newless\"]'),(53719,521471,2,'actor',NULL,'[\"Richard Barlow\"]'),(53719,489,3,'actor',NULL,'[\"Alan Driscoll\"]'),(53719,623306,4,'actor',NULL,'[\"Bill Maitland\"]'),(53719,610303,5,'director',NULL,NULL),(53719,836988,6,'writer','story by',NULL),(53719,62658,7,'writer','screenplay by',NULL),(53719,852286,8,'producer','producer',NULL),(53719,6093,9,'composer',NULL,NULL),(53732,6164,10,'composer',NULL,NULL),(53732,658339,1,'actress',NULL,'[\"Mother Katharine\"]'),(53732,843401,2,'actress',NULL,'[\"Sister Mitya\"]'),(53732,593814,3,'actress',NULL,'[\"Sister Gerta\"]'),(53732,507708,4,'actor',NULL,'[\"Major Spoletti\"]'),(53732,859387,5,'director',NULL,NULL),(53732,778789,6,'writer','story',NULL),(53732,696189,7,'writer','screenplay',NULL),(53732,685833,8,'writer','front for Adrian Scott',NULL),(53732,101489,9,'producer','producer',NULL),(53779,24155,10,'producer','producer',NULL),(53779,52,1,'actor',NULL,'[\"Marcello Rubini\"]'),(53779,1179,2,'actress',NULL,'[\"Sylvia\"]'),(53779,733,3,'actress',NULL,'[\"Maddalena\"]'),(53779,299014,4,'actress',NULL,'[\"Emma\"]'),(53779,19,5,'director',NULL,NULL),(53779,280919,6,'writer','story',NULL),(53779,684083,7,'writer','story',NULL),(53779,740021,8,'writer','contributing writer',NULL),(53779,1596,9,'writer',NULL,NULL),(53804,517264,10,'editor',NULL,NULL),(53804,56,1,'actor',NULL,'[\"Ari Ben Canaan\"]'),(53804,1693,2,'actress',NULL,'[\"Kitty Fremont\"]'),(53804,724732,3,'actor',NULL,'[\"Gen. Sutherland\"]'),(53804,492444,4,'actor',NULL,'[\"Maj. Caldwell\"]'),(53804,695937,5,'director',NULL,NULL),(53804,874308,6,'writer','screenplay',NULL),(53804,881979,7,'writer','novel',NULL),(53804,6104,8,'composer',NULL,NULL),(53804,495402,9,'cinematographer','director of photography',NULL),(53825,164690,10,'cinematographer','director of photography',NULL),(53825,62,1,'actor',NULL,'[\"Pacer Burton\"]'),(53825,1174,2,'actress',NULL,'[\"Roslyn Pierce\"]'),(53825,2079,3,'actor',NULL,'[\"Clint Burton\"]'),(53825,3123,4,'actress',NULL,'[\"Neddy Burton\"]'),(53825,796923,5,'director',NULL,NULL),(53825,400236,6,'writer','screenplay',NULL),(53825,425913,7,'writer','screenplay',NULL),(53825,918694,8,'producer','producer',NULL),(53825,6203,9,'composer',NULL,NULL),(53848,5729,10,'cinematographer','director of photography',NULL),(53848,62,1,'actor',NULL,'[\"Tulsa McLean\"]'),(53848,699120,2,'actress',NULL,'[\"Lili\"]'),(53848,412251,3,'actor',NULL,'[\"Cookie\"]'),(53848,235093,4,'actor',NULL,'[\"Rick\"]'),(53848,851537,5,'director',NULL,NULL),(53848,69410,6,'writer','written by',NULL),(53848,308594,7,'writer','written by',NULL),(53848,909259,8,'producer','producer',NULL),(53848,510360,9,'composer',NULL,NULL),(53902,690638,10,'producer','producer',NULL),(53902,47,1,'actress',NULL,'[\"Angela Rossini\"]'),(53902,63,2,'actor',NULL,'[\"Thomas \'Tom\' Healy\"]'),(53902,639684,3,'actress',NULL,'[\"Della Southby\"]'),(53902,2079,4,'actor',NULL,'[\"Clint Mabry\"]'),(53902,2030,5,'director',NULL,NULL),(53902,629580,6,'writer','screenplay',NULL),(53902,77159,7,'writer','screenplay',NULL),(53902,478263,8,'writer','novel \"Heller with a Gun\"',NULL),(53902,320981,9,'producer','producer',NULL),(53946,6104,10,'composer',NULL,NULL),(53946,75,1,'actor',NULL,'[\"Henry Drummond\"]'),(53946,545298,2,'actor',NULL,'[\"Matthew Harrison Brady\"]'),(53946,37,3,'actor',NULL,'[\"E. K. Hornbeck\"]'),(53946,948685,4,'actor',NULL,'[\"Bertram T. Cates\"]'),(53946,6452,5,'director',NULL,NULL),(53946,949917,6,'writer','screenplay',NULL),(53946,808414,7,'writer','screenplay',NULL),(53946,492823,8,'writer','play',NULL),(53946,498126,9,'writer','play',NULL),(53976,526456,10,'production_designer',NULL,NULL),(53976,1884,1,'actor',NULL,'[\"Töre\"]'),(53976,883517,2,'actress',NULL,'[\"Märeta\"]'),(53976,511458,3,'actress',NULL,'[\"Ingeri\"]'),(53976,678555,4,'actress',NULL,'[\"Karin\"]'),(53976,5,5,'director',NULL,NULL),(53976,410694,6,'writer',NULL,NULL),(53976,635059,7,'composer',NULL,NULL),(53976,5815,8,'cinematographer',NULL,NULL),(53976,741013,9,'editor',NULL,NULL),(54017,429506,1,'actress',NULL,'[\"Evelyn Gern\"]'),(54017,136147,2,'actor',NULL,'[\"Harold Gern\"]'),(54017,1801,3,'actor',NULL,'[\"Martin Joyce\"]'),(54017,339,4,'director',NULL,NULL),(54017,6300,5,'composer',NULL,NULL),(54017,549821,6,'cinematographer','director of photography',NULL),(54017,137124,7,'editor','film editor',NULL),(54022,6213,10,'composer',NULL,NULL),(54022,54,1,'actress',NULL,'[\"Amanda Dell\"]'),(54022,598971,2,'actor',NULL,'[\"Jean-Marc Clément\"]'),(54022,709704,3,'actor',NULL,'[\"Alexander Kaufman\"]'),(54022,891038,4,'actor',NULL,'[\"Tony Danton\"]'),(54022,2030,5,'director',NULL,NULL),(54022,469915,6,'writer','written for the screen by',NULL),(54022,437900,7,'writer','additional material',NULL),(54022,7186,8,'writer',NULL,NULL),(54022,907003,9,'producer','producer',NULL),(54047,628305,10,'writer',NULL,NULL),(54047,989,1,'actor',NULL,'[\"Chris Larabee Adams\"]'),(54047,537,2,'actor',NULL,'[\"Vin Tanner\"]'),(54047,314,3,'actor',NULL,'[\"Bernardo O\'Reilly\"]'),(54047,908919,4,'actor',NULL,'[\"Calvera\"]'),(54047,836328,5,'director',NULL,NULL),(54047,731679,6,'writer','screenplay',NULL),(54047,41,7,'writer','screenplay \"Shichinin no samurai\"',NULL),(54047,77159,8,'writer',NULL,NULL),(54047,368074,9,'writer','screenplay \"Shichinin no samurai\"',NULL),(54049,337898,10,'composer',NULL,NULL),(54049,856103,1,'actor',NULL,'[\"Major Rayne\"]'),(54049,786780,2,'actress',NULL,'[\"Dame Beatrice\"]'),(54049,415150,3,'actress',NULL,'[\"Nanette Parry\"]'),(54049,925794,4,'actress',NULL,'[\"Lily\"]'),(54049,38895,5,'director',NULL,NULL),(54049,170068,6,'writer','play \"Breath of Spring\"',NULL),(54049,675728,7,'writer','screenplay',NULL),(54049,85804,8,'writer','additional dialogue',NULL),(54049,829435,9,'producer','producer',NULL),(54067,181753,10,'writer','screenplay',NULL),(54067,824489,1,'actress',NULL,'[\"Princess Asa Vajda\",\"Katia Vajda\"]'),(54067,724623,2,'actor',NULL,'[\"Dr. Andrej Gorobec\",\"Dr. Andreas Gorobec\"]'),(54067,154804,3,'actor',NULL,'[\"Dr. Choma Kruvajan\",\"Dr. Thomas Kruvajan\"]'),(54067,307995,4,'actor',NULL,'[\"Prince Vajda\"]'),(54067,878,5,'director',NULL,NULL),(54067,208086,6,'writer','screenplay',NULL),(54067,4531,7,'writer','screenplay',NULL),(54067,324690,8,'writer','from a tale by',NULL),(54067,383318,9,'writer','English dialogue written by',NULL),(54130,5689,10,'cinematographer',NULL,NULL),(54130,603402,1,'actress',NULL,'[\"Lidia Pontano\"]'),(54130,52,2,'actor',NULL,'[\"Giovanni Pontano\"]'),(54130,900143,3,'actress',NULL,'[\"Valentina Gherardini\"]'),(54130,926919,4,'actor',NULL,'[\"Tommaso Garani\"]'),(54130,774,5,'director',NULL,NULL),(54130,280919,6,'writer','story',NULL),(54130,346096,7,'writer','story',NULL),(54130,144368,8,'producer','producer',NULL),(54130,309160,9,'composer',NULL,NULL),(54167,3337,1,'actor',NULL,'[\"Mark Lewis\"]'),(54167,557281,2,'actress',NULL,'[\"Helen Stephens\"]'),(54167,790452,3,'actress',NULL,'[\"Vivian\"]'),(54167,41602,4,'actress',NULL,'[\"Mrs. Stephens\"]'),(54167,3836,5,'director',NULL,NULL),(54167,548896,6,'writer','original story',NULL),(54167,247460,7,'composer',NULL,NULL),(54167,5740,8,'cinematographer',NULL,NULL),(54167,10060,9,'editor',NULL,NULL),(54198,823085,10,'actor',NULL,'[\"Skoupidis\"]'),(54198,580479,1,'actress',NULL,'[\"Ilya\"]'),(54198,202088,2,'actor',NULL,'[\"Homer Thrace\"]'),(54198,288344,3,'actor',NULL,'[\"Tonio\"]'),(54198,888937,4,'actor',NULL,'[\"Giorgos\"]'),(54198,6118,5,'composer',NULL,NULL),(54198,622434,6,'cinematographer',NULL,NULL),(54198,245554,7,'editor',NULL,NULL),(54198,510085,8,'actor',NULL,'[\"Captain\"]'),(54198,221615,9,'actress',NULL,'[\"Despo\"]'),(54215,866462,10,'editor',NULL,NULL),(54215,578,1,'actor',NULL,'[\"Norman Bates\"]'),(54215,1463,2,'actress',NULL,'[\"Marion Crane\"]'),(54215,587256,3,'actress',NULL,'[\"Lila Crane\"]'),(54215,1260,4,'actor',NULL,'[\"Sam Loomis\"]'),(54215,33,5,'director',NULL,NULL),(54215,825010,6,'writer','screenplay by',NULL),(54215,88645,7,'writer','based on the novel by',NULL),(54215,2136,8,'composer',NULL,NULL),(54215,5852,9,'cinematographer','director of photography',NULL),(54248,575804,10,'writer','screenplay and dialogue',NULL),(54248,1128,1,'actor',NULL,'[\"Rocco Parondi\"]'),(54248,759395,2,'actor',NULL,'[\"Simone Parondi\"]'),(54248,320760,3,'actress',NULL,'[\"Nadia\"]'),(54248,1012,4,'actress',NULL,'[\"Ginetta\"]'),(54248,899581,5,'director',NULL,NULL),(54248,147599,6,'writer','story',NULL),(54248,695390,7,'writer','story',NULL),(54248,275269,8,'writer','screenplay and dialogue',NULL),(54248,290050,9,'writer','screenplay and dialogue',NULL),(54279,1811,10,'writer',NULL,NULL),(54279,138428,1,'actor',NULL,'[\"Henry Palfrey\"]'),(54279,856103,2,'actor',NULL,'[\"Raymond Delauney\"]'),(54279,799237,3,'actor',NULL,'[\"Mr. S. Potter\"]'),(54279,779285,4,'actress',NULL,'[\"April Smith\"]'),(54279,357607,5,'director',NULL,NULL),(54279,156320,6,'director',NULL,NULL),(54279,291201,7,'director',NULL,NULL),(54279,693355,8,'writer','novels \"Gamesmanship Oneupmanship Lifemanship\"',NULL),(54279,610480,9,'writer','screenplay',NULL),(54331,932229,10,'writer','battle scenes',NULL),(54331,18,1,'actor',NULL,'[\"Spartacus\"]'),(54331,59,2,'actor',NULL,'[\"Crassus\"]'),(54331,1739,3,'actress',NULL,'[\"Varinia\"]'),(54331,1452,4,'actor',NULL,'[\"Gracchus\"]'),(54331,40,5,'director',NULL,NULL),(54331,542649,6,'director',NULL,NULL),(54331,874308,7,'writer','screenplay by',NULL),(54331,268779,8,'writer','based on the novel by',NULL),(54331,1811,9,'writer',NULL,NULL),(54333,79286,10,'composer',NULL,NULL),(54333,546502,1,'actor',NULL,'[\"Joe\"]'),(54333,290431,2,'actress',NULL,'[\"Georgia\"]'),(54333,195422,3,'actor',NULL,'[\"Gary Webster\"]'),(54333,627183,4,'actress',NULL,'[\"Ann\"]'),(54333,127168,5,'director',NULL,NULL),(54333,397271,6,'writer',NULL,NULL),(54333,587852,7,'writer',NULL,NULL),(54333,354611,8,'producer','producer',NULL),(54333,367322,9,'producer','producer',NULL),(54343,391860,10,'editor',NULL,NULL),(54343,926183,1,'actor',NULL,'[\"Boaz\"]'),(54343,874502,2,'actor',NULL,'[\"Mahlon\"]'),(54343,939931,3,'actress',NULL,'[\"Naomi\"]'),(54343,511798,4,'actress',NULL,'[\"Eleilat\"]'),(54343,467396,5,'director',NULL,NULL),(54343,181658,6,'writer',NULL,NULL),(54343,257143,7,'producer','producer',NULL),(54343,77,8,'composer',NULL,NULL),(54343,35186,9,'cinematographer','director of photography',NULL),(54377,143018,10,'actress',NULL,'[\"La princesse\"]'),(54377,168413,1,'self',NULL,'[\"Self - the Poet\"]'),(54377,36734,2,'actress',NULL,'[\"Elle-même\"]'),(54377,805,3,'actress',NULL,'[\"Minerve\"]'),(54377,2198,4,'actor',NULL,'[\"Le Curieux\"]'),(54377,690693,5,'cinematographer',NULL,NULL),(54377,950391,6,'editor',NULL,NULL),(54377,346535,7,'production_designer',NULL,NULL),(54377,98393,8,'actress',NULL,'[\"Une amie d\'Orphée\"]'),(54377,989,9,'actor',NULL,'[\"L\'huissier\"]'),(54387,866462,10,'editor',NULL,NULL),(54387,1792,1,'actor',NULL,'[\"H. George Wells\"]'),(54387,949241,2,'actor',NULL,'[\"David Filby\",\"James Filby\"]'),(54387,590796,3,'actress',NULL,'[\"Weena\"]'),(54387,1982,4,'actor',NULL,'[\"Dr. Philip Hillyer\"]'),(54387,657162,5,'director',NULL,NULL),(54387,241949,6,'writer','screenplay',NULL),(54387,920229,7,'writer','novel',NULL),(54387,305426,8,'composer',NULL,NULL),(54387,900944,9,'cinematographer','director of photography',NULL),(54389,184170,10,'cinematographer',NULL,NULL),(54389,2198,1,'actor',NULL,'[\"Charlie Koller\",\"Edouard Saroyan\"]'),(54389,239447,2,'actress',NULL,'[\"Léna\"]'),(54389,74303,3,'actress',NULL,'[\"Thérèse Saroyan\"]'),(54389,580440,4,'actress',NULL,'[\"Clarisse\"]'),(54389,76,5,'director',NULL,NULL),(54389,328959,6,'writer','novel \"Down There\"',NULL),(54389,610115,7,'writer','adaptation',NULL),(54389,105886,8,'producer','producer',NULL),(54389,16,9,'composer',NULL,NULL),(54407,5669,10,'cinematographer',NULL,NULL),(54407,78514,1,'actor',NULL,'[\"Le directeur de la prison\"]'),(54407,449191,2,'actor',NULL,'[\"Roland Darbant\"]'),(54407,176039,3,'actor',NULL,'[\"Geo Cassine\"]'),(54407,6573,4,'actor',NULL,'[\"Manu Borelli\"]'),(54407,65442,5,'director',NULL,NULL),(54407,320510,6,'writer','novel',NULL),(54407,42159,7,'writer','adaptation',NULL),(54407,797889,8,'producer','producer',NULL),(54407,37870,9,'composer',NULL,NULL),(54452,167243,10,'writer','scenario',NULL),(54452,3,1,'actress',NULL,'[\"Dominique Marceau\"]'),(54452,582890,2,'actor',NULL,'[\"Maître Éparvier\"]'),(54452,889024,3,'actor',NULL,'[\"Maître Guérin\"]'),(54452,293739,4,'actor',NULL,'[\"Gilbert Tellier\"]'),(54452,167241,5,'director',NULL,NULL),(54452,237899,6,'writer','scenario',NULL),(54452,674563,7,'writer','scenario',NULL),(54452,350823,8,'writer','scenario',NULL),(54452,733999,9,'writer','scenario',NULL),(54460,849083,10,'producer','producer',NULL),(54460,1536,1,'actor',NULL,'[\"Kôichi Nishi\"]'),(54460,605270,2,'actor',NULL,'[\"Public Corporation Vice President Iwabuchi\"]'),(54460,434593,3,'actress',NULL,'[\"Yoshiko Nishi\"]'),(54460,586227,4,'actor',NULL,'[\"Tatsuo Iwabuchi\"]'),(54460,41,5,'director',NULL,NULL),(54460,644823,6,'writer','written by',NULL),(54460,386750,7,'writer','written by',NULL),(54460,452878,8,'writer','written by',NULL),(54460,368074,9,'writer','written by',NULL),(54462,517044,10,'editor','film editor',NULL),(54462,127693,1,'actress',NULL,'[\"Janice Starlin\"]'),(54462,252111,2,'actor',NULL,'[\"Bill Lane\"]'),(54462,606371,3,'actress',NULL,'[\"Mary Dennison\"]'),(54462,736418,4,'actor',NULL,'[\"Arthur Cooper\"]'),(54462,339,5,'director',NULL,NULL),(54462,330388,6,'writer','screenplay by',NULL),(54462,955122,7,'writer','from a story by',NULL),(54462,441711,8,'composer',NULL,NULL),(54462,627060,9,'cinematographer','director of photography',NULL),(54469,107510,10,'cinematographer','director of photography',NULL),(54469,366247,1,'actress',NULL,'[\"Merritt Andrews\"]'),(54469,1313,2,'actor',NULL,'[\"Ryder Smith\"]'),(54469,590796,3,'actress',NULL,'[\"Melanie Tolman\"]'),(54469,1380,4,'actor',NULL,'[\"TV Thompson\"]'),(54469,505610,5,'director',NULL,NULL),(54469,920216,6,'writer','screen play',NULL),(54469,841933,7,'writer','novel \"Where The Boys Are\"',NULL),(54469,664990,8,'producer','producer',NULL),(54469,6303,9,'composer',NULL,NULL),(54476,5712,10,'cinematographer','director of photography',NULL),(54476,1050,1,'actor',NULL,'[\"Chuck Glover\"]'),(54476,1665,2,'actress',NULL,'[\"Carol Garth Baldwin\"]'),(54476,886888,3,'actress',NULL,'[\"Ella Garth\"]'),(54476,758692,4,'actor',NULL,'[\"Hank Bailey\"]'),(54476,1415,5,'director',NULL,NULL),(54476,651585,6,'writer','screenplay',NULL),(54476,401239,7,'writer','based on novels by',NULL),(54476,212644,8,'writer','based on novels by',NULL),(54476,6132,9,'composer',NULL,NULL),(54483,6052,10,'composer',NULL,NULL),(54483,34,1,'actor',NULL,'[\"Robert Lomax\"]'),(54483,477088,2,'actress',NULL,'[\"Suzie Wong\"]'),(54483,843401,3,'actress',NULL,'[\"Kay O\'Neill\"]'),(54483,928697,4,'actor',NULL,'[\"Ben Marlowe\"]'),(54483,703689,5,'director',NULL,NULL),(54483,651585,6,'writer','adaptation',NULL),(54483,556922,7,'writer','novel',NULL),(54483,665875,8,'writer','screenplay',NULL),(54483,672829,9,'producer','producer',NULL),(54494,671313,10,'editor',NULL,NULL),(54494,218633,1,'actress',NULL,'[\"Zazie\"]'),(54494,634159,2,'actor',NULL,'[\"Oncle Gabriel\"]'),(54494,220997,3,'actor',NULL,'[\"Turandot\"]'),(54494,549150,4,'actress',NULL,'[\"Albertine\"]'),(54494,1501,5,'director',NULL,NULL),(54494,703200,6,'writer','novel',NULL),(54494,710919,7,'writer',NULL,NULL),(54494,5995,8,'composer',NULL,NULL),(54494,706826,9,'cinematographer',NULL,NULL),(54599,52849,10,'editor',NULL,NULL),(54599,162948,1,'actor',NULL,'[\"Accattone\"]'),(54599,665186,2,'actress',NULL,'[\"Stella\"]'),(54599,181122,3,'actress',NULL,'[\"Maddalena\"]'),(54599,346751,4,'actress',NULL,'[\"Ascenza\"]'),(54599,1596,5,'director',NULL,NULL),(54599,162952,6,'writer','additional dialogue',NULL),(54599,82981,7,'producer','producer',NULL),(54599,215535,8,'producer','producer',NULL),(54599,5686,9,'cinematographer',NULL,NULL),(54673,578108,1,'actor',NULL,'[\"Hank Radcliffe\"]'),(54673,290087,2,'actress',NULL,'[\"Lois Radcliffe\"]'),(54673,821248,3,'actor',NULL,'[\"Jim Archer\"]'),(54673,40358,4,'actor',NULL,'[\"Joe Dobson\"]'),(54673,290118,5,'director',NULL,NULL),(54673,136707,6,'producer','producer',NULL),(54673,619039,7,'composer',NULL,NULL),(54673,718946,8,'composer',NULL,NULL),(54673,128538,9,'cinematographer','director of photography',NULL),(54692,485702,10,'cinematographer','director of photography',NULL),(54692,62,1,'actor',NULL,'[\"Chad Gates\"]'),(54692,85751,2,'actress',NULL,'[\"Maile Duval\"]'),(54692,1450,3,'actress',NULL,'[\"Sarah Lee Gates\"]'),(54692,910322,4,'actress',NULL,'[\"Abigail Prentice\"]'),(54692,851537,5,'director',NULL,NULL),(54692,918902,6,'writer','story',NULL),(54692,437900,7,'writer','screenplay',NULL),(54692,909259,8,'producer','producer',NULL),(54692,510360,9,'composer',NULL,NULL),(54698,49,10,'composer',NULL,NULL),(54698,30,1,'actress',NULL,'[\"Holly Golightly\"]'),(54698,577,2,'actor',NULL,'[\"Paul Varjak\"]'),(54698,623658,3,'actress',NULL,'[\"2E Failenson\"]'),(54698,1171,4,'actor',NULL,'[\"Doc Golightly\"]'),(54698,1175,5,'director',NULL,NULL),(54698,1986,6,'writer','based on the novel by',NULL),(54698,43480,7,'writer','screenplay',NULL),(54698,433021,8,'producer','producer',NULL),(54698,791847,9,'producer','producer',NULL),(54700,432926,10,'editor',NULL,NULL),(54700,3,1,'actress',NULL,'[\"Sophie\"]'),(54700,416644,2,'actress',NULL,'[\"Barbara Wilbury\"]'),(54700,14800,3,'actress',NULL,'[\"Marie-Jeanne\"]'),(54700,955178,4,'actress',NULL,'[\"Josette\"]'),(54700,671862,5,'director',NULL,NULL),(54700,42159,6,'director',NULL,NULL),(54700,115892,7,'writer','story',NULL),(54700,737710,8,'producer','producer',NULL),(54700,498901,9,'cinematographer',NULL,NULL),(54743,842732,10,'editor',NULL,NULL),(54743,30,1,'actress',NULL,'[\"Karen Wright\"]'),(54743,511,2,'actress',NULL,'[\"Martha Dobie\"]'),(54743,1258,3,'actor',NULL,'[\"Dr. Joe Cardin\"]'),(54743,394244,4,'actress',NULL,'[\"Mrs. Lily Mortar\"]'),(54743,943758,5,'director',NULL,NULL),(54743,375484,6,'writer','play',NULL),(54743,371088,7,'writer','screenplay',NULL),(54743,6218,8,'composer',NULL,NULL),(54743,5832,9,'cinematographer','director of photography',NULL),(54749,5833,10,'cinematographer',NULL,NULL),(54749,47,1,'actress',NULL,'[\"Cesira\"]'),(54749,901,2,'actor',NULL,'[\"Michele Di Libero\"]'),(54749,885203,3,'actor',NULL,'[\"Giovanni\"]'),(54749,113505,4,'actress',NULL,'[\"Rosetta\"]'),(54749,1120,5,'director',NULL,NULL),(54749,603179,6,'writer','novel',NULL),(54749,953790,7,'writer','written by',NULL),(54749,690638,8,'producer','producer',NULL),(54749,6325,9,'composer',NULL,NULL),(54777,184898,10,'editor',NULL,NULL),(54777,262647,1,'actor',NULL,'[\"Alfredo\"]'),(54777,1657,2,'actor',NULL,'[\"Leon\"]'),(54777,738635,3,'actress',NULL,'[\"Servant Girl\"]'),(54777,271432,4,'actress',NULL,'[\"Cristina\"]'),(54777,279807,5,'director',NULL,NULL),(54777,385573,6,'writer','screenplay',NULL),(54777,256880,7,'writer','novel \"The Werewolf of Paris\"',NULL),(54777,6082,8,'composer',NULL,NULL),(54777,335264,9,'cinematographer','director of photography',NULL),(54847,67,10,'composer',NULL,NULL),(54847,32,1,'actor',NULL,'[\"El Cid Rodrigo de Vivar\"]'),(54847,47,2,'actress',NULL,'[\"Jimena\"]'),(54847,885203,3,'actor',NULL,'[\"Count Ordóñez\"]'),(54847,656180,4,'actress',NULL,'[\"Princess Urraca\"]'),(54847,542649,5,'director',NULL,NULL),(54847,290931,6,'writer','story',NULL),(54847,948634,7,'writer','screenplay',NULL),(54847,59553,8,'writer','screenplay',NULL),(54847,111566,9,'producer','producer',NULL),(54879,590055,1,'actor',NULL,'[\"Jacko Palmer\"]'),(54879,843401,2,'actress',NULL,'[\"Kathie Palmer\"]'),(54879,207219,3,'actress',NULL,'[\"Nell Palmer\"]'),(54879,131565,4,'actor',NULL,'[\"Gabriel Gomez\"]'),(54879,1928,5,'director',NULL,NULL),(54879,932477,6,'writer','play \"Hot Summer Night\"',NULL),(54879,337898,7,'composer',NULL,NULL),(54879,5666,8,'cinematographer','director of photography',NULL),(54879,156038,9,'editor',NULL,NULL),(54885,5797,10,'cinematographer','director of photography',NULL),(54885,477088,1,'actress',NULL,'[\"Linda Low\"]'),(54885,793363,2,'actor',NULL,'[\"Wang Ta\"]'),(54885,284538,3,'actor',NULL,'[\"Wang Chi-Yang\"]'),(54885,814530,4,'actor',NULL,'[\"Sammy Fong\"]'),(54885,467396,5,'director',NULL,NULL),(54885,276284,6,'writer','screenplay',NULL),(54885,496935,7,'writer','novel \"The Flower Drum Song\"',NULL),(54885,358564,8,'writer','book of stage play',NULL),(54885,403022,9,'producer','producer',NULL),(54949,74591,10,'composer',NULL,NULL),(54949,240638,1,'actor',NULL,'[\"L\'Aztec\'s father\"]'),(54949,959923,2,'actress',NULL,'[\"Lebrac\'s mother\"]'),(54949,301556,3,'actor',NULL,'[\"Bacaillé\'s father\"]'),(54949,617741,4,'actress',NULL,'[\"L\'Aztec\'s mother\"]'),(54949,2216,5,'director',NULL,NULL),(54949,673681,6,'writer','novel \"La guerre des boutons\"',NULL),(54949,102030,7,'writer','adaptation and dialogue',NULL),(54949,141147,8,'producer','producer',NULL),(54949,217735,9,'producer','producer',NULL),(54953,651544,10,'editor',NULL,NULL),(54953,57,1,'actor',NULL,'[\"Cpl. John Anthony Miller\"]'),(54953,60,2,'actor',NULL,'[\"Capt. Keith Mallory\"]'),(54953,63,3,'actor',NULL,'[\"Col. Andrea Stavros\"]'),(54953,703033,4,'actor',NULL,'[\"Maj. Roy Franklin\"]'),(54953,496746,5,'director',NULL,NULL),(54953,533745,6,'writer','novel',NULL),(54953,286025,7,'writer','written for the screen by',NULL),(54953,6323,8,'composer',NULL,NULL),(54953,5807,9,'cinematographer',NULL,NULL),(54997,20441,10,'editor','film editor',NULL),(54997,56,1,'actor',NULL,'[\"Eddie Felson\"]'),(54997,1276,2,'actor',NULL,'[\"Minnesota Fats\"]'),(54997,1453,3,'actress',NULL,'[\"Sarah Packard\"]'),(54997,1715,4,'actor',NULL,'[\"Bert Gordon\"]'),(54997,744035,5,'director',NULL,NULL),(54997,140987,6,'writer','screenplay',NULL),(54997,856677,7,'writer','based on the novel by',NULL),(54997,6132,8,'composer',NULL,NULL),(54997,5867,9,'cinematographer','director of photography',NULL),(55018,5952,10,'composer',NULL,NULL),(55018,39,1,'actress',NULL,'[\"Miss Giddens\"]'),(55018,943936,2,'actor',NULL,'[\"Peter Quint\"]'),(55018,420923,3,'actress',NULL,'[\"Mrs. Grose\"]'),(55018,714878,4,'actor',NULL,'[\"The Uncle\"]'),(55018,2338,5,'director',NULL,NULL),(55018,416556,6,'writer','based on the story \"The Turn of the Screw\"',NULL),(55018,607876,7,'writer','additional scenes & dialogue',NULL),(55018,33780,8,'writer','screenplay',NULL),(55018,1986,9,'writer','screenplay',NULL),(55032,99099,10,'editor',NULL,NULL),(55032,603402,1,'actress',NULL,'[\"Catherine\"]'),(55032,921459,2,'actor',NULL,'[\"Jules\"]'),(55032,785676,3,'actor',NULL,'[\"Jim\"]'),(55032,881752,4,'actress',NULL,'[\"Gilberte\"]'),(55032,76,5,'director',NULL,NULL),(55032,734132,6,'writer','novel',NULL),(55032,344171,7,'writer','adaptation and dialogue',NULL),(55032,16,8,'composer',NULL,NULL),(55032,184170,9,'cinematographer',NULL,NULL),(55047,5652,10,'cinematographer','director of photography',NULL),(55047,1374,1,'actor',NULL,'[\"Jesus\"]'),(55047,571430,2,'actress',NULL,'[\"Mary\"]'),(55047,368836,3,'actor',NULL,'[\"Pontius Pilate\"]'),(55047,709681,4,'actor',NULL,'[\"Lucius\"]'),(55047,712947,5,'director',NULL,NULL),(55047,948634,6,'writer','screenplay',NULL),(55047,1969,7,'writer','narration',NULL),(55047,111566,8,'producer','producer',NULL),(55047,67,9,'composer',NULL,NULL),(55082,812606,10,'composer',NULL,NULL),(55082,901,1,'actor',NULL,'[\"Léon Morin\"]'),(55082,728938,2,'actress',NULL,'[\"Barny\"]'),(55082,876567,3,'actress',NULL,'[\"Christine Sangredin\"]'),(55082,592317,4,'actress',NULL,'[\"Sabine Levy\"]'),(55082,578483,5,'director',NULL,NULL),(55082,65078,6,'writer','based on the novel by',NULL),(55082,64676,7,'producer','producer',NULL),(55082,348604,8,'producer','producer',NULL),(55082,690638,9,'producer','producer',NULL),(55093,182884,10,'editor',NULL,NULL),(55093,733,1,'actress',NULL,'[\"Lola\"]'),(55093,584879,2,'actor',NULL,'[\"Roland Cassard\"]'),(55093,362096,3,'actor',NULL,'[\"Michel\"]'),(55093,778792,4,'actor',NULL,'[\"Frankie\"]'),(55093,218840,5,'director',NULL,NULL),(55093,64676,6,'producer','producer',NULL),(55093,690638,7,'producer','producer',NULL),(55093,6166,8,'composer',NULL,NULL),(55093,184170,9,'cinematographer',NULL,NULL),(55184,866462,10,'editor','film editor',NULL),(55184,22,1,'actor',NULL,'[\"Gay Langland\"]'),(55184,54,2,'actress',NULL,'[\"Roslyn Taber\"]'),(55184,1050,3,'actor',NULL,'[\"Perce Howland\"]'),(55184,728812,4,'actress',NULL,'[\"Isabelle Steers\"]'),(55184,1379,5,'director',NULL,NULL),(55184,7186,6,'writer','screenplay',NULL),(55184,852373,7,'producer','producer',NULL),(55184,6218,8,'composer',NULL,NULL),(55184,5797,9,'cinematographer','director of photography',NULL),(55198,273033,10,'writer',NULL,NULL),(55198,756998,1,'actor',NULL,'[\"Senichiro \'Sen-chan\' Fukuda (AKA Bulldog)\"]'),(55198,463590,2,'actor',NULL,'[\"Dr. Shin\'ichi Chûjô\"]'),(55198,434593,3,'actress',NULL,'[\"Photographer Michi Hanamura\"]'),(55198,411769,4,'actress',NULL,'[\"Shobijin (Twin Fairy)\"]'),(55198,393094,5,'director',NULL,NULL),(55198,782883,6,'writer','screenplay',NULL),(55198,620224,7,'writer','novel \"Shukan Asahi\"',NULL),(55198,298027,8,'writer','novel \"Shukan Asahi\"',NULL),(55198,396253,9,'writer','novel \"Shukan Asahi\"',NULL),(55207,773677,10,'producer','producer',NULL),(55207,185954,1,'actor',NULL,'[\"Capt. Cyrus Harding\"]'),(55207,339343,2,'actress',NULL,'[\"Lady Mary Fairchild\"]'),(55207,130286,3,'actor',NULL,'[\"Herbert Brown\"]'),(55207,581282,4,'actor',NULL,'[\"Gideon Spilitt\"]'),(55207,256831,5,'director',NULL,NULL),(55207,695667,6,'writer','screenplay',NULL),(55207,880489,7,'writer','screenplay',NULL),(55207,928108,8,'writer','screenplay',NULL),(55207,894523,9,'writer','novel',NULL),(55254,5980,10,'composer',NULL,NULL),(55254,1792,1,'actor',NULL,'[\"Pongo\"]'),(55254,314867,2,'actress',NULL,'[\"Cruella De Vil\",\"Miss Birdwell\"]'),(55254,641729,3,'actor',NULL,'[\"Colonel\",\"Jasper\",\"Mechanic\"]'),(55254,921131,4,'actress',NULL,'[\"Nanny\",\"Queenie\",\"Lucy\"]'),(55254,314671,5,'director',NULL,NULL),(55254,527217,6,'director',NULL,NULL),(55254,718627,7,'director',NULL,NULL),(55254,670328,8,'writer','story',NULL),(55254,807977,9,'writer','based on the book \"The Hundred and One Dalmatians\" by',NULL),(55256,833586,10,'production_designer',NULL,NULL),(55256,10,1,'actor',NULL,'[\"C.R. MacNamara\"]'),(55256,1976,2,'actor',NULL,'[\"Otto Ludwig Piffl\"]'),(55256,863016,3,'actress',NULL,'[\"Scarlett Hazeltine\"]'),(55256,290086,4,'actress',NULL,'[\"Phyllis MacNamara\"]'),(55256,697,5,'director',NULL,NULL),(55256,224634,6,'writer','screenplay',NULL),(55256,597175,7,'writer','play \"Egy, kettö, három\"',NULL),(55256,5701,8,'cinematographer','director of photography',NULL),(55256,541721,9,'editor',NULL,NULL),(55277,1539,1,'actress',NULL,'[\"Susan Evers\",\"Sharon McKendrick\"]'),(55277,58,2,'actress',NULL,'[\"Maggie McKendrick\"]'),(55277,1417,3,'actor',NULL,'[\"Mitch Evers\"]'),(55277,749476,4,'actor',NULL,'[\"Charles McKendrick\"]'),(55277,842582,5,'director',NULL,NULL),(55277,477696,6,'writer','book \"Das doppelte Lottchen\"',NULL),(55277,1345229,7,'composer',NULL,NULL),(55277,5644,8,'cinematographer','director of photography',NULL),(55277,27294,9,'editor',NULL,NULL),(55278,281868,10,'writer','based upon a novel by',NULL),(55278,56,1,'actor',NULL,'[\"Ram Bowen\"]'),(55278,940946,2,'actress',NULL,'[\"Lillian Corning\"]'),(55278,1627,3,'actor',NULL,'[\"Eddie Cook\"]'),(55278,1918,4,'actor',NULL,'[\"Wild Man Moore\"]'),(55278,728688,5,'director',NULL,NULL),(55278,792042,6,'writer','screenplay',NULL),(55278,436894,7,'writer','screenplay',NULL),(55278,77159,8,'writer','screenplay',NULL),(55278,742554,9,'writer','adaptation',NULL),(55294,455845,10,'production_designer',NULL,NULL),(55294,292841,1,'actor',NULL,'[\"Capt. Frank Chapman\"]'),(55294,336531,2,'actress',NULL,'[\"Liara\"]'),(55294,186045,3,'actor',NULL,'[\"Herron\"]'),(55294,124279,4,'actor',NULL,'[\"Sessom\"]'),(55294,550777,5,'director',NULL,NULL),(55294,854278,6,'writer','screenplay',NULL),(55294,208605,7,'writer','screenplay',NULL),(55294,311374,8,'writer','screenplay',NULL),(55294,629815,9,'cinematographer','director of photography',NULL),(55353,2304,10,'composer',NULL,NULL),(55353,1627,1,'actor',NULL,'[\"Walter Lee Younger\"]'),(55353,573871,2,'actress',NULL,'[\"Lena Younger\"]'),(55353,2039,3,'actress',NULL,'[\"Ruth Younger\"]'),(55353,762305,4,'actress',NULL,'[\"Beneatha Younger\"]'),(55353,677951,5,'director',NULL,NULL),(55353,360605,6,'writer','play',NULL),(55353,4078001,7,'producer','producer',NULL),(55353,741614,8,'producer','producer',NULL),(55353,839914,9,'producer','producer',NULL),(55458,5872,10,'cinematographer','director of photography',NULL),(55458,2935,1,'actor',NULL,'[\"Moe\"]'),(55458,4310,2,'actor',NULL,'[\"Larry\"]'),(55458,374707,3,'actress',NULL,'[\"Snow White\"]'),(55458,220388,4,'actor',NULL,'[\"Curly-Joe\"]'),(55458,485943,5,'director',NULL,NULL),(55458,850895,6,'director',NULL,NULL),(55458,486538,7,'writer','screenplay',NULL),(55458,880493,8,'writer','screenplay',NULL),(55458,926821,9,'writer','story',NULL),(55471,843129,10,'production_designer',NULL,NULL),(55471,81,1,'actress',NULL,'[\"Wilma Dean Loomis\"]'),(55471,886,2,'actor',NULL,'[\"Bud Stamper\"]'),(55471,385757,3,'actor',NULL,'[\"Ace Stamper\"]'),(55471,160287,4,'actress',NULL,'[\"Mrs. Loomis\"]'),(55471,1415,5,'director',NULL,NULL),(55471,408718,6,'writer','written by',NULL),(55471,25371,7,'composer',NULL,NULL),(55471,442100,8,'cinematographer','director of photography',NULL),(55471,587332,9,'editor','film editor',NULL),(55499,27683,1,'actress',NULL,'[\"Karin\",\"daughter\"]'),(55499,85038,2,'actor',NULL,'[\"David\",\"father\"]'),(55499,1884,3,'actor',NULL,'[\"Martin\",\"Karin\'s husband\"]'),(55499,664885,4,'actor',NULL,'[\"Minus\",\"son\"]'),(55499,5,5,'director',NULL,NULL),(55499,5815,6,'cinematographer',NULL,NULL),(55499,753276,7,'editor',NULL,NULL),(55499,526456,8,'production_designer',NULL,NULL),(55506,878240,1,'actress',NULL,'[\"Jo [Josephine]\"]'),(55506,116932,2,'actress',NULL,'[\"Helen\"]'),(55506,827137,3,'actor',NULL,'[\"Peter Smith\"]'),(55506,578527,4,'actor',NULL,'[\"Geoffrey Ingham\"]'),(55506,724798,5,'director',NULL,NULL),(55506,216340,6,'writer','screenplay',NULL),(55506,11709,7,'composer',NULL,NULL),(55506,7178,8,'cinematographer','director of photography',NULL),(55506,316626,9,'editor',NULL,NULL),(55571,731772,1,'actor',NULL,'[\"Tolly Devlin\"]'),(55571,233828,2,'actress',NULL,'[\"Cuddles\"]'),(55571,443000,3,'actress',NULL,'[\"Sandy\"]'),(55571,239532,4,'actor',NULL,'[\"Gela\"]'),(55571,2087,5,'director',NULL,NULL),(55571,4461006,6,'writer','Saturday Evening Post articles',NULL),(55571,6313,7,'composer',NULL,NULL),(55571,5803,8,'cinematographer','director of photography',NULL),(55571,860870,9,'editor',NULL,NULL),(55572,184170,10,'cinematographer',NULL,NULL),(55572,439344,1,'actress',NULL,'[\"Angela\"]'),(55572,108400,2,'actor',NULL,'[\"Émile Récamier\"]'),(55572,901,3,'actor',NULL,'[\"Alfred Lubitsch\"]'),(55572,40933,4,'actor',NULL,'[\"Faux Aveugle #2\"]'),(55572,419,5,'director',NULL,NULL),(55572,167346,6,'writer','original story',NULL),(55572,64676,7,'producer','producer',NULL),(55572,690638,8,'producer','producer',NULL),(55572,6166,9,'composer',NULL,NULL),(55614,77086,10,'composer',NULL,NULL),(55614,81,1,'actress',NULL,'[\"Maria\"]'),(55614,1995,2,'actor',NULL,'[\"Bernardo\"]'),(55614,937,3,'actor',NULL,'[\"Tony\"]'),(55614,848560,4,'actor',NULL,'[\"Riff\"]'),(55614,730385,5,'director',NULL,NULL),(55614,936404,6,'director',NULL,NULL),(55614,499626,7,'writer','screenplay by',NULL),(55614,491306,8,'writer','book by',NULL),(55614,636,9,'writer','play \"Romeo and Juliet\"',NULL),(55621,324244,10,'producer','producer',NULL),(55621,865262,1,'actor',NULL,'[\"Bill\"]'),(55621,561072,2,'actress',NULL,'[\"Lucille\"]'),(55621,813961,3,'actress',NULL,'[\"Ingrid\"]'),(55621,861185,4,'actress',NULL,'[\"Stella\"]'),(55621,291201,5,'director',NULL,NULL),(55621,360066,6,'writer','novel',NULL),(55621,134043,7,'writer','screenplay',NULL),(55621,331775,8,'writer','screenplay',NULL),(55621,710698,9,'writer','additional dialogue',NULL),(55623,5794,10,'cinematographer','director of photography',NULL),(55623,62,1,'actor',NULL,'[\"Glenn Tyler\"]'),(55623,486136,2,'actress',NULL,'[\"Irene Sperry\"]'),(55623,1839,3,'actress',NULL,'[\"Noreen Braxton\"]'),(55623,674012,4,'actress',NULL,'[\"Betty Lee Parsons\"]'),(55623,242897,5,'director',NULL,NULL),(55623,644048,6,'writer','screenplay',NULL),(55623,757479,7,'writer','novel \"The Lost Country\"',NULL),(55623,907003,8,'producer','producer',NULL),(55623,6132,9,'composer',NULL,NULL),(55630,613499,10,'production_designer',NULL,NULL),(55630,1536,1,'actor',NULL,'[\"Sanjuro Kuwabatake\",\"The Samurai\"]'),(55630,867391,2,'actor',NULL,'[\"Gonji - Tavern Keeper\"]'),(55630,619938,3,'actor',NULL,'[\"Unosuke - Gunfighter\"]'),(55630,875362,4,'actress',NULL,'[\"Nui\"]'),(55630,41,5,'director',NULL,NULL),(55630,452878,6,'writer','screenplay',NULL),(55630,849083,7,'producer','producer',NULL),(55630,766496,8,'composer',NULL,NULL),(55630,594335,9,'cinematographer',NULL,NULL),(55728,517264,10,'editor',NULL,NULL),(55728,867144,1,'actor',NULL,'[\"The President\"]'),(55728,817,2,'actor',NULL,'[\"The Vice President\"]'),(55728,20,3,'actor',NULL,'[\"Robert Leffingwell\"]'),(55728,682074,4,'actor',NULL,'[\"Senate Majority Leader\"]'),(55728,695937,5,'director',NULL,NULL),(55728,238619,6,'writer','novel',NULL),(55728,562606,7,'writer','screenplay',NULL),(55728,6076,8,'composer',NULL,NULL),(55728,495402,9,'cinematographer','director of photography',NULL),(55763,22112,10,'cinematographer',NULL,NULL),(55763,7023,1,'actor',NULL,'[\"Fernando Galindo\"]'),(55763,144107,2,'actor',NULL,'[\"Martínez\"]'),(55763,602615,3,'actress',NULL,'[\"Enriqueta\"]'),(55763,521054,4,'actress',NULL,'[\"Katia Durán\"]'),(55763,286578,5,'director',NULL,NULL),(55763,557980,6,'writer','story',NULL),(55763,168746,7,'writer','story',NULL),(55763,759453,8,'writer',NULL,NULL),(55763,906661,9,'composer',NULL,NULL),(55805,147599,10,'writer','screenplay',NULL),(55805,1179,1,'actress',NULL,'[\"Anita (segment \\\"Le tentazioni del dottor Antonio\\\")\"]'),(55805,47,2,'actress',NULL,'[\"Zoe (segment \\\"La riffa\\\")\"]'),(55805,2769,3,'actress',NULL,'[\"Pupe (segment \\\"Il lavoro\\\")\"]'),(55805,813082,4,'actress',NULL,'[\"Luciana (segment \\\"Renzo e Luciana\\\")\"]'),(55805,1120,5,'director',NULL,NULL),(55805,19,6,'director',NULL,NULL),(55805,598102,7,'director',NULL,NULL),(55805,899581,8,'director',NULL,NULL),(55805,37097,9,'writer','screenplay',NULL),(55830,658633,10,'editor',NULL,NULL),(55830,385010,1,'actress',NULL,'[\"Mary Henry\"]'),(55830,270766,2,'actress',NULL,'[\"Mrs. Thomas - Landlady\"]'),(55830,74367,3,'actor',NULL,'[\"John Linden\"]'),(55830,255156,4,'actor',NULL,'[\"Minister\"]'),(55830,367547,5,'director',NULL,NULL),(55830,166647,6,'writer',NULL,NULL),(55830,601235,7,'composer',NULL,NULL),(55830,695370,8,'cinematographer','director of photography',NULL),(55830,208924,9,'editor',NULL,NULL),(55832,16,10,'composer',NULL,NULL),(55832,901,1,'actor',NULL,'[\"Louis-Dominique Bourguignon alias Cartouche\"]'),(55832,1012,2,'actress',NULL,'[\"Vénus\"]'),(55832,353916,3,'actor',NULL,'[\"La Douceur\"]'),(55832,197950,4,'actor',NULL,'[\"Malichot\"]'),(55832,3606,5,'director',NULL,NULL),(55832,99429,6,'writer',NULL,NULL),(55832,816458,7,'writer',NULL,NULL),(55832,199188,8,'producer','producer',NULL),(55832,594891,9,'producer','producer',NULL),(55852,505281,10,'cinematographer',NULL,NULL),(55852,545378,1,'actress',NULL,'[\"Florence \'Cléo\' Victoire\"]'),(55852,100171,2,'actor',NULL,'[\"Antoine\"]'),(55852,205815,3,'actress',NULL,'[\"Angèle\"]'),(55852,87491,4,'actress',NULL,'[\"Dorothée\"]'),(55852,889513,5,'director',NULL,NULL),(55852,64676,6,'producer','producer',NULL),(55852,690638,7,'producer','producer',NULL),(55852,6166,8,'composer',NULL,NULL),(55852,94706,9,'cinematographer',NULL,NULL),(55894,685665,10,'producer','producer',NULL),(55894,444476,1,'actor',NULL,'[\"Bill Masen\"]'),(55894,561072,2,'actress',NULL,'[\"Christine Durrant\"]'),(55894,779285,3,'actress',NULL,'[\"Karen Goodwin\"]'),(55894,601476,4,'actor',NULL,'[\"Tom Goodwin\"]'),(55894,782804,5,'director',NULL,NULL),(55894,5711,6,'director',NULL,NULL),(55894,330024,7,'writer','screenplay',NULL),(55894,948634,8,'writer','front for Bernard Gordon',NULL),(55894,943909,9,'writer','novel \"Day of the Triffids\"',NULL),(55902,629885,10,'cinematographer',NULL,NULL),(55902,160046,1,'actress',NULL,'[\"Bianca Milan\"]'),(55902,17376,2,'actor',NULL,'[\"Rick Turner\"]'),(55902,920628,3,'actress',NULL,'[\"Donna Trent\"]'),(55902,358076,4,'actor',NULL,'[\"Francis Lamont\"]'),(55902,390402,5,'director',NULL,NULL),(55902,374268,6,'writer','screenplay',NULL),(55902,117818,7,'producer','producer',NULL),(55902,6071,8,'composer',NULL,NULL),(55902,290395,9,'composer',NULL,NULL),(55910,5684,10,'cinematographer',NULL,NULL),(55910,473228,1,'actor',NULL,'[\"Pierre\"]'),(55910,183671,2,'actress',NULL,'[\"Madeleine\"]'),(55910,333143,3,'actress',NULL,'[\"Françoise\",\"Cybèle\"]'),(55910,412245,4,'actor',NULL,'[\"Carlos\"]'),(55910,99984,5,'director',NULL,NULL),(55910,876072,6,'writer','scenario',NULL),(55910,260239,7,'writer','novel',NULL),(55910,684771,8,'producer','producer',NULL),(55910,3574,9,'composer',NULL,NULL),(55928,542554,10,'writer','treatment',NULL),(55928,125,1,'actor',NULL,'[\"James Bond\"]'),(55928,266,2,'actress',NULL,'[\"Honey Ryder\"]'),(55928,496866,3,'actor',NULL,'[\"M.\"]'),(55928,936476,4,'actor',NULL,'[\"Dr. No\"]'),(55928,950109,5,'director',NULL,NULL),(55928,537363,6,'writer','screenplay by',NULL),(55928,367820,7,'writer','screenplay by',NULL),(55928,558435,8,'writer','screenplay by',NULL),(55928,1220,9,'writer','based on the novel by',NULL),(55992,6270,10,'composer',NULL,NULL),(55992,62,1,'actor',NULL,'[\"Toby Kwimper\"]'),(55992,640023,2,'actor',NULL,'[\"Pop Kwimper\"]'),(55992,375606,3,'actress',NULL,'[\"Holly Jones\"]'),(55992,601369,4,'actress',NULL,'[\"Alisha Claypoole\"]'),(55992,235066,5,'director',NULL,NULL),(55992,496468,6,'writer','screenplay',NULL),(55992,456487,7,'writer','novel \"Pioneer, Go Home!\"',NULL),(55992,712029,8,'writer','play \"Pioneer, Go Home!\"',NULL),(55992,918694,9,'producer','producer',NULL),(56023,5729,10,'cinematographer','director of photography',NULL),(56023,62,1,'actor',NULL,'[\"Ross Carpenter\"]'),(56023,1771,2,'actress',NULL,'[\"Robin Gantner\"]'),(56023,805177,3,'actor',NULL,'[\"Wesley Johnson\"]'),(56023,329507,4,'actress',NULL,'[\"Laurel Dodge\"]'),(56023,851537,5,'director',NULL,NULL),(56023,30019,6,'writer','screenplay by',NULL),(56023,918902,7,'writer','screenplay by',NULL),(56023,909259,8,'producer','producer',NULL),(56023,510360,9,'composer',NULL,NULL),(56048,5889,10,'cinematographer','director of photography',NULL),(56048,751426,1,'actress',NULL,'[\"Rose Hovick\"]'),(56048,81,2,'actress',NULL,'[\"Louise Hovick\"]'),(56048,1500,3,'actor',NULL,'[\"Herbie Sommers\"]'),(56048,908813,4,'actor',NULL,'[\"Tulsa\"]'),(56048,503777,5,'director',NULL,NULL),(56048,491306,6,'writer','based upon the stage play: book by',NULL),(56048,497346,7,'writer','from the memoirs of',NULL),(56048,818700,8,'writer','screenplay',NULL),(56048,6312,9,'composer',NULL,NULL),(56058,590799,10,'cinematographer',NULL,NULL),(56058,619938,1,'actor',NULL,'[\"Hanshiro Tsugumo\"]'),(56058,410968,2,'actor',NULL,'[\"Motome Chijiiwa\"]'),(56058,412615,3,'actress',NULL,'[\"Miho Tsugumo\"]'),(56058,848533,4,'actor',NULL,'[\"Hikokuro Omodaka\"]'),(56058,462030,5,'director',NULL,NULL),(56058,847668,6,'writer','novel \"Ibun rônin ki\"',NULL),(56058,368074,7,'writer','screenplay',NULL),(56058,396106,8,'producer','producer',NULL),(56058,6316,9,'composer',NULL,NULL),(56059,319574,10,'editor',NULL,NULL),(56059,78,1,'actor',NULL,'[\"Sean Mercer\"]'),(56059,553349,2,'actress',NULL,'[\"Anna Maria \'Dallas\' D\'Allesandro\",\"Mama Tembo\"]'),(56059,473228,3,'actor',NULL,'[\"Kurt Muller\"]'),(56059,999,4,'actor',NULL,'[\"Pockets\"]'),(56059,1328,5,'director',NULL,NULL),(56059,102824,6,'writer','screenplay',NULL),(56059,475823,7,'writer','story',NULL),(56059,49,8,'composer',NULL,NULL),(56059,5737,9,'cinematographer','director of photography',NULL),(56111,653778,10,'composer',NULL,NULL),(56111,122168,1,'actor',NULL,'[\"Ivan Bondarev\"]'),(56111,958284,2,'actor',NULL,'[\"Leonid Kholin\"]'),(56111,955529,3,'actor',NULL,'[\"Galtsev\"]'),(56111,472989,4,'actor',NULL,'[\"Katasonov\"]'),(56111,1789,5,'director',NULL,NULL),(56111,7672,6,'director',NULL,NULL),(56111,1530016,7,'writer','story \"Ivan\"',NULL),(56111,660353,8,'writer','screenplay',NULL),(56111,464846,9,'writer',NULL,NULL),(56119,104391,10,'actor',NULL,NULL),(56119,65616,1,'actor',NULL,NULL),(56119,639058,2,'actor',NULL,'[\"Narrator\"]'),(56119,154001,3,'actress',NULL,'[\"The Woman\"]'),(56119,359871,4,'actor',NULL,'[\"The Man\"]'),(56119,3408,5,'director',NULL,NULL),(56119,242126,6,'composer',NULL,NULL),(56119,712310,7,'editor',NULL,NULL),(56119,496617,8,'actor',NULL,'[\"The Experimenter\"]'),(56119,374453,9,'actor',NULL,NULL),(56138,346532,10,'cinematographer','director of photography',NULL),(56138,62,1,'actor',NULL,'[\"Walter Gulick\"]'),(56138,949574,2,'actor',NULL,'[\"Willy Grogan\"]'),(56138,17030,3,'actress',NULL,'[\"Dolly Fletcher\"]'),(56138,85751,4,'actress',NULL,'[\"Rose Grogan\"]'),(56138,439597,5,'director',NULL,NULL),(56138,269623,6,'writer','screenplay',NULL),(56138,1383748,7,'writer','story',NULL),(56138,918694,8,'producer','producer',NULL),(56138,18497,9,'composer',NULL,NULL),(56142,65184,10,'writer','story \"King Kong vs. Prometheus\"',NULL),(56142,847396,1,'actor',NULL,'[\"Osamu Sakurai\"]'),(56142,756292,2,'actor',NULL,'[\"Kazuo Fujita\"]'),(56142,297741,3,'actor',NULL,'[\"Kinsaburo Furue\"]'),(56142,445276,4,'actor',NULL,'[\"Eric Carter\"]'),(56142,393094,5,'director',NULL,NULL),(56142,599943,6,'director',NULL,NULL),(56142,782883,7,'writer','written by',NULL),(56142,556893,8,'writer','written by',NULL),(56142,397170,9,'writer','written by',NULL),(56172,2875,10,'cinematographer','director of photography',NULL),(56172,564,1,'actor',NULL,'[\"Lawrence\"]'),(56172,27,2,'actor',NULL,'[\"Prince Faisal\"]'),(56172,63,3,'actor',NULL,'[\"Auda Abu Tayi\"]'),(56172,370144,4,'actor',NULL,'[\"General Edmund Allenby\"]'),(56172,180,5,'director',NULL,NULL),(56172,4122,6,'writer','screenplay by',NULL),(56172,933858,7,'writer','screenplay by',NULL),(56172,818545,8,'producer','producer',NULL),(56172,3574,9,'composer',NULL,NULL),(56193,367431,10,'editor',NULL,NULL),(56193,51,1,'actor',NULL,'[\"Prof. Humbert Humbert\"]'),(56193,1859,2,'actress',NULL,'[\"Charlotte Haze\"]'),(56193,528987,3,'actress',NULL,'[\"Lolita\"]'),(56193,168324,4,'actor',NULL,'[\"Richard T. Schiller\"]'),(56193,40,5,'director',NULL,NULL),(56193,618603,6,'writer','screenplay',NULL),(56193,364805,7,'writer',NULL,NULL),(56193,725765,8,'composer',NULL,NULL),(56193,5807,9,'cinematographer','director of photography',NULL),(56194,109713,10,'production_designer',NULL,NULL),(56194,714878,1,'actor',NULL,'[\"Ruxton Towers Reformatory Governor\"]'),(56194,183822,2,'actor',NULL,'[\"Colin Smith\"]'),(56194,120517,3,'actress',NULL,'[\"Mrs. Smith\"]'),(56194,566680,4,'actor',NULL,'[\"Mr. Brown\"]'),(56194,724798,5,'director',NULL,NULL),(56194,798105,6,'writer','screenplay',NULL),(56194,11709,7,'composer',NULL,NULL),(56194,7178,8,'cinematographer','director of photography',NULL),(56194,316626,9,'editor',NULL,NULL),(56197,752485,10,'writer','screenplay',NULL),(56197,78,1,'actor',NULL,'[\"Lt. Col. Benjamin Vandervoort\"]'),(56197,752813,2,'actor',NULL,'[\"Brig. Gen. James M. Gavin\"]'),(56197,9,3,'actor',NULL,'[\"Flying Officer David Campbell\"]'),(56197,20,4,'actor',NULL,'[\"Brig. Gen. Theodore Roosevelt Jr.\"]'),(56197,2175,5,'director',NULL,NULL),(56197,554249,6,'director',NULL,NULL),(56197,652631,7,'director',NULL,NULL),(56197,926919,8,'director',NULL,NULL),(56197,953123,9,'director',NULL,NULL),(56218,916883,10,'editor','film editor',NULL),(56218,69,1,'actor',NULL,'[\"Major Bennett Marco\"]'),(56218,2131,2,'actor',NULL,'[\"Raymond Shaw\"]'),(56218,1463,3,'actress',NULL,'[\"Eugenie Rose Chaney\"]'),(56218,1450,4,'actress',NULL,'[\"Mrs. Eleanor Shaw Iselin\"]'),(56218,1239,5,'director',NULL,NULL),(56218,174410,6,'writer','based upon a novel by',NULL),(56218,43480,7,'writer','screenplay',NULL),(56218,25371,8,'composer',NULL,NULL),(56218,512068,9,'cinematographer','director of photography',NULL),(56241,134954,10,'cinematographer','director of photography',NULL),(56241,843,1,'actress',NULL,'[\"Annie Sullivan\"]'),(56241,1157,2,'actress',NULL,'[\"Helen Keller\"]'),(56241,430460,3,'actor',NULL,'[\"Captain Arthur Keller\"]'),(56241,842421,4,'actress',NULL,'[\"Kate Keller\"]'),(56241,671957,5,'director',NULL,NULL),(56241,317217,6,'writer','screenplay',NULL),(56241,445656,7,'writer','book \"The Story of My Life\"',NULL),(56241,168641,8,'producer','producer',NULL),(56241,2304,9,'composer',NULL,NULL),(56262,956155,10,'editor',NULL,NULL),(56262,696481,1,'actor',NULL,'[\"Harold Hill\"]'),(56262,429250,2,'actress',NULL,'[\"Marian Paroo\"]'),(56262,4983,3,'actor',NULL,'[\"Marcellus Washburn\"]'),(56262,320006,4,'actress',NULL,'[\"Eulalie Mackechnie Shinn\"]'),(56262,196536,5,'director',NULL,NULL),(56262,932745,6,'writer','based on: \"The Music Man\"',NULL),(56262,479923,7,'writer','written in collaboration with',NULL),(56262,362992,8,'writer','screenplay',NULL),(56262,122079,9,'cinematographer','director of photography',NULL),(56308,5961,10,'composer',NULL,NULL),(56308,634,1,'actor',NULL,'[\"John Lewis\"]'),(56308,955195,2,'actress',NULL,'[\"Liz Gruffydd-Williams\"]'),(56308,556458,3,'actress',NULL,'[\"Jean Lewis\"]'),(56308,341558,4,'actor',NULL,'[\"Ieuan Jenkins\"]'),(56308,319148,5,'director',NULL,NULL),(56308,285302,6,'writer','screenplay',NULL),(56308,25006,7,'writer','novel \"That Uncertain Feeling\"',NULL),(56308,319146,8,'producer','producer',NULL),(56308,490950,9,'producer','producer',NULL),(56404,6177,10,'composer',NULL,NULL),(56404,3,1,'actress',NULL,'[\"Geneviève Le Theil\"]'),(56404,396136,2,'actor',NULL,'[\"Renaud Sarti\"]'),(56404,97625,3,'actor',NULL,'[\"Pierre Leroy\"]'),(56404,785664,4,'actor',NULL,'[\"Maître Varange\"]'),(56404,671862,5,'director',NULL,NULL),(56404,733999,6,'writer','novel',NULL),(56404,159312,7,'writer','adaptation collaborator',NULL),(56404,181928,8,'producer','producer',NULL),(56404,556415,9,'producer','producer',NULL),(56443,766496,10,'composer',NULL,NULL),(56443,1536,1,'actor',NULL,'[\"Sanjûrô Tsubaki\",\"The Samurai\"]'),(56443,619938,2,'actor',NULL,'[\"Hanbei Muroto\"]'),(56443,462013,3,'actor',NULL,'[\"The Spy\"]'),(56443,411770,4,'actor',NULL,'[\"Mutsuta, the Chamberlain\"]'),(56443,41,5,'director',NULL,NULL),(56443,452878,6,'writer','screenplay',NULL),(56443,644823,7,'writer','screenplay',NULL),(56443,945491,8,'writer','novel \"Nichinichi heian\"',NULL),(56443,849083,9,'producer','producer',NULL),(56452,5752,10,'cinematographer',NULL,NULL),(56452,108523,1,'actor',NULL,'[\"Winnetou\"]'),(56452,851,2,'actor',NULL,'[\"Old Shatterhand\"]'),(56452,7042,3,'actor',NULL,'[\"Colonel Brinkley\"]'),(56452,313443,4,'actor',NULL,'[\"Fred Engel\"]'),(56452,718243,5,'director',NULL,NULL),(56452,562015,6,'writer','novel',NULL),(56452,677457,7,'writer','screenplay',NULL),(56452,339657,8,'producer','producer',NULL),(56452,5989,9,'composer',NULL,NULL),(56575,5797,10,'cinematographer','director of photography',NULL),(56575,26,1,'actor',NULL,'[\"Philip Shayne\"]'),(56575,13,2,'actress',NULL,'[\"Cathy Timberlake\"]'),(56575,949574,3,'actor',NULL,'[\"Roger\"]'),(56575,575031,4,'actress',NULL,'[\"Connie Emerson\"]'),(56575,542720,5,'director',NULL,NULL),(56575,788630,6,'writer','written by',NULL),(56575,597578,7,'writer','written by',NULL),(56575,577455,8,'producer','producer',NULL),(56575,6052,9,'composer',NULL,NULL),(56585,770127,10,'composer',NULL,NULL),(56585,62,1,'actor',NULL,'[\"Lonnie Beale\"]'),(56585,11105,2,'actress',NULL,'[\"Vera Radford\"]'),(56585,485388,3,'actress',NULL,'[\"Pam Merritt\"]'),(56585,611955,4,'actor',NULL,'[\"Stanley Potter\"]'),(56585,851537,5,'director',NULL,NULL),(56585,880493,6,'writer','written by',NULL),(56585,76618,7,'writer','written by',NULL),(56585,777057,8,'producer','producer',NULL),(56585,937739,9,'producer','producer',NULL),(56592,5737,10,'cinematographer','director of photography',NULL),(56592,60,1,'actor',NULL,'[\"Atticus Finch\"]'),(56592,576345,2,'actor',NULL,'[\"Dill Harris\"]'),(56592,653942,3,'actor',NULL,'[\"Sheriff Heck Tate\"]'),(56592,614677,4,'actress',NULL,'[\"Maudie Atkinson\"]'),(56592,612322,5,'director',NULL,NULL),(56592,497369,6,'writer','based on her novel \"To Kill a Mockingbird\"',NULL),(56592,285210,7,'writer','screenplay by',NULL),(56592,1587,8,'producer','producer',NULL),(56592,930,9,'composer',NULL,NULL),(56663,347071,10,'editor',NULL,NULL),(56663,439344,1,'actress',NULL,'[\"Nana Kleinfrankenheim\"]'),(56663,714236,2,'actor',NULL,'[\"Raoul\"]'),(56663,479351,3,'actor',NULL,'[\"Paul\"]'),(56663,772480,4,'actress',NULL,'[\"Yvette\"]'),(56663,419,5,'director',NULL,NULL),(56663,755338,6,'writer','book \"Où en est la prostitution\"',NULL),(56663,105886,7,'producer','producer',NULL),(56663,6166,8,'composer',NULL,NULL),(56663,184170,9,'cinematographer',NULL,NULL),(56671,372942,10,'writer',NULL,NULL),(56671,2131,1,'actor',NULL,'[\"Dove Linkhorn\"]'),(56671,1010,2,'actress',NULL,'[\"Hallie\"]'),(56671,404,3,'actress',NULL,'[\"Kitty Twist\"]'),(56671,879,4,'actress',NULL,'[\"Teresina Vidaverri\"]'),(56671,229424,5,'director',NULL,NULL),(56671,19346,6,'writer','novel',NULL),(56671,266899,7,'writer','screen play',NULL),(56671,606510,8,'writer','screen play',NULL),(56671,371193,9,'writer',NULL,NULL),(56687,524597,10,'editor',NULL,NULL),(56687,12,1,'actress',NULL,'[\"Baby Jane Hudson\"]'),(56687,1076,2,'actress',NULL,'[\"Blanche Hudson\"]'),(56687,120658,3,'actor',NULL,'[\"Edwin Flagg\"]'),(56687,11741,4,'actor',NULL,'[\"Marty McDonald\"]'),(56687,736,5,'director',NULL,NULL),(56687,268230,6,'writer','from the novel by',NULL),(56687,375355,7,'writer','screenplay',NULL),(56687,6030,8,'composer',NULL,NULL),(56687,5735,9,'cinematographer',NULL,NULL),(56700,1260621,10,'writer','based on \"Die Bruder Grimm\"',NULL),(56700,2131,1,'actor',NULL,'[\"Wilhelm Grimm\",\"The Cobbler (\'The Cobbler and the Elves\')\"]'),(56700,1954,2,'actress',NULL,'[\"Dorothea Grimm\"]'),(56700,3337,3,'actor',NULL,'[\"Jacob Grimm\"]'),(56700,805790,4,'actor',NULL,'[\"Stossel\"]'),(56700,505610,5,'director',NULL,NULL),(56700,657162,6,'director',NULL,NULL),(56700,363492,7,'writer','screen play',NULL),(56700,64579,8,'writer','screen play',NULL),(56700,731679,9,'writer','screen play',NULL),(56732,102746,10,'production_designer',NULL,NULL),(56732,683831,1,'actress',NULL,'[\"Leticia \'La Valkiria\'\"]'),(56732,25954,2,'actress',NULL,'[\"Alicia de Roc\"]'),(56732,708048,3,'actor',NULL,'[\"Edmundo Nobile\"]'),(56732,62593,4,'actor',NULL,'[\"Leandro Gomez\"]'),(56732,320,5,'director',NULL,NULL),(56732,17274,6,'writer','story: Los Náufragos de la Calle de la Providencia',NULL),(56732,16105,7,'producer','producer',NULL),(56732,4195,8,'cinematographer','director of photography',NULL),(56732,767266,9,'editor',NULL,NULL),(56736,354624,10,'producer','producer',NULL),(56736,900143,1,'actress',NULL,'[\"Vittoria\"]'),(56736,1128,2,'actor',NULL,'[\"Piero\"]'),(56736,704719,3,'actor',NULL,'[\"Riccardo\"]'),(56736,109265,4,'actress',NULL,'[\"Vittoria\'s Mother\"]'),(56736,774,5,'director',NULL,NULL),(56736,346096,6,'writer','original story',NULL),(56736,59026,7,'writer','collaborated on the screenplay',NULL),(56736,653189,8,'writer','collaborated on the screenplay',NULL),(56736,354623,9,'producer','producer',NULL),(56800,330024,10,'writer','screenplay',NULL),(56800,32,1,'actor',NULL,'[\"Maj. Matt Lewis\"]'),(56800,1257,2,'actress',NULL,'[\"Baroness Natalie Ivanoff\"]'),(56800,57,3,'actor',NULL,'[\"Sir Arthur Robertson\"]'),(56800,733460,4,'actress',NULL,'[\"Dowager Empress Tzu-Hsi\"]'),(56800,712947,5,'director',NULL,NULL),(56800,337885,6,'director',NULL,NULL),(56800,554249,7,'director',NULL,NULL),(56800,357607,8,'writer','additional dialogue',NULL),(56800,948634,9,'writer','screenplay',NULL),(56801,65,10,'composer',NULL,NULL),(56801,52,1,'actor',NULL,'[\"Guido Anselmi\"]'),(56801,733,2,'actress',NULL,'[\"Luisa Anselmi\"]'),(56801,1012,3,'actress',NULL,'[\"Claudia\"]'),(56801,590452,4,'actress',NULL,'[\"Carla\"]'),(56801,19,5,'director',NULL,NULL),(56801,280919,6,'writer','story',NULL),(56801,684083,7,'writer','screenplay',NULL),(56801,740021,8,'writer','screenplay',NULL),(56801,729939,9,'producer','producer',NULL),(56860,694135,10,'editor',NULL,NULL),(56860,191950,1,'actor',NULL,'[\"Professor Sutwell\"]'),(56860,540416,2,'actress',NULL,'[\"Marianne\"]'),(56860,811,3,'actor',NULL,'[\"Frankie\"]'),(56860,2088,4,'actress',NULL,'[\"Dolores\"]'),(56860,38906,5,'director',NULL,NULL),(56860,750870,6,'writer','written by',NULL),(56860,629839,7,'producer','producer',NULL),(56860,5958,8,'composer',NULL,NULL),(56860,636242,9,'cinematographer',NULL,NULL),(56869,102327,10,'production_designer',NULL,NULL),(56869,1792,1,'actor',NULL,'[\"Mitch Brenner\"]'),(56869,1335,2,'actress',NULL,'[\"Melanie Daniels\"]'),(56869,1788,3,'actress',NULL,'[\"Lydia Brenner\"]'),(56869,687189,4,'actress',NULL,'[\"Annie Hayworth\"]'),(56869,33,5,'director',NULL,NULL),(56869,238898,6,'writer','from the story by',NULL),(56869,402805,7,'writer','screenplay by',NULL),(56869,122079,8,'cinematographer','director of photography',NULL),(56869,866462,9,'editor',NULL,NULL),(56884,775447,1,'actor',NULL,'[\"Young Man\",\"Narrator\"]'),(56884,815689,2,'actress',NULL,'[\"Jacqueline\"]'),(56884,320758,3,'actress',NULL,'[\"Sylvie\"]'),(56884,432702,4,'actor',NULL,'[\"Schmidt\"]'),(56884,6445,5,'director',NULL,NULL),(56884,220495,6,'producer','producer',NULL),(56884,53573,7,'cinematographer',NULL,NULL),(56884,582878,8,'cinematographer',NULL,NULL),(56891,625224,10,'editor',NULL,NULL),(56891,1813,1,'actor',NULL,'[\"Albert F. Peterson\"]'),(56891,268,2,'actress',NULL,'[\"Kim McAfee\"]'),(56891,1463,3,'actress',NULL,'[\"Rosie DeLeon\"]'),(56891,822972,4,'actress',NULL,'[\"Mama Mae Peterson\"]'),(56891,796645,5,'director',NULL,NULL),(56891,829661,6,'writer','book by: Based upon the play \"Bye, Bye, Birdie\"',NULL),(56891,106505,7,'writer','screen play',NULL),(56891,463334,8,'producer','producer',NULL),(56891,5657,9,'cinematographer','director of photography',NULL),(56910,173916,10,'actor',NULL,'[\"Party Guest\"]'),(56910,845328,1,'actress',NULL,'[\"Suzanne\"]'),(56910,79629,2,'actor',NULL,'[\"Bertrand\"]'),(56910,153507,3,'actor',NULL,'[\"Guillaume\"]'),(56910,929366,4,'actress',NULL,'[\"Sophie\"]'),(56910,6445,5,'director',NULL,NULL),(56910,775447,6,'producer','producer',NULL),(56910,479803,7,'cinematographer',NULL,NULL),(56910,872,8,'actor',NULL,'[\"Frank\"]'),(56910,81661,9,'actor',NULL,'[\"Jean-Louis\"]'),(56912,736864,10,'composer',NULL,NULL),(56912,416228,1,'actor',NULL,'[\"Charlie Hawkins\"]'),(56912,415150,2,'actress',NULL,'[\"Peggy Hawkins\"]'),(56912,175427,3,'actor',NULL,'[\"Ted Watson\"]'),(56912,1889,4,'actor',NULL,'[\"Pintpot Tankard\"]'),(56912,858873,5,'director',NULL,NULL),(56912,745349,6,'writer','screenplay',NULL),(56912,338313,7,'writer','original story',NULL),(56912,385139,8,'writer','original story',NULL),(56912,737127,9,'producer','producer',NULL),(56923,164083,10,'editor',NULL,NULL),(56923,26,1,'actor',NULL,'[\"Peter Joshua\"]'),(56923,30,2,'actress',NULL,'[\"Regina Lampert\"]'),(56923,527,3,'actor',NULL,'[\"Hamilton Bartholomew\"]'),(56923,336,4,'actor',NULL,'[\"Tex Panthollow\"]'),(56923,2045,5,'director',NULL,NULL),(56923,832099,6,'writer','screenplay by',NULL),(56923,66939,7,'writer','story by',NULL),(56923,49,8,'composer',NULL,NULL),(56923,485702,9,'cinematographer','director of photography',NULL),(56937,1304029,10,'writer','histories',NULL),(56937,72,1,'actress',NULL,'[\"Cleopatra\"]'),(56937,9,2,'actor',NULL,'[\"Mark Antony\"]'),(56937,1322,3,'actor',NULL,'[\"Julius Caesar\"]'),(56937,114386,4,'actress',NULL,'[\"High Priestess\"]'),(56937,581,5,'director',NULL,NULL),(56937,532030,6,'writer','screenplay',NULL),(56937,118227,7,'writer','screenplay',NULL),(56937,1306202,8,'writer','histories',NULL),(56937,1306711,9,'writer','histories',NULL),(56983,360358,10,'cinematographer','director of photography',NULL),(56983,132930,1,'actor',NULL,'[\"Richard Haloran\"]'),(56983,26035,2,'actress',NULL,'[\"Louise Haloran\"]'),(56983,666069,3,'actor',NULL,'[\"Billy Haloran\"]'),(56983,593079,4,'actress',NULL,'[\"Kane\"]'),(56983,338,5,'director',NULL,NULL),(56983,384335,6,'writer','second unit written by',NULL),(56983,516607,7,'writer','written by',NULL),(56983,339,8,'producer','producer',NULL),(56983,6300,9,'composer',NULL,NULL),(57012,367431,10,'editor','film editor',NULL),(57012,634,1,'actor',NULL,'[\"Group Capt. Lionel Mandrake\",\"President Merkin Muffley\",\"Dr. Strangelove\"]'),(57012,1715,2,'actor',NULL,'[\"Gen. \'Buck\' Turgidson\"]'),(57012,1330,3,'actor',NULL,'[\"Brig. Gen. Jack D. Ripper\"]'),(57012,943978,4,'actor',NULL,'[\"Col. \'Bat\' Guano\"]'),(57012,40,5,'director',NULL,NULL),(57012,816143,6,'writer','screenplay',NULL),(57012,313570,7,'writer','screenplay',NULL),(57012,6145,8,'composer',NULL,NULL),(57012,852405,9,'cinematographer','director of photography',NULL),(57076,110482,10,'producer','producer',NULL),(57076,125,1,'actor',NULL,'[\"James Bond\"]'),(57076,1727,2,'actor',NULL,'[\"Grant\"]'),(57076,502322,3,'actress',NULL,'[\"Rosa Klebb\"]'),(57076,938,4,'actress',NULL,'[\"Tatiana\"]'),(57076,950109,5,'director',NULL,NULL),(57076,537363,6,'writer','screenplay by',NULL),(57076,367820,7,'writer','adapted by',NULL),(57076,1220,8,'writer','novel',NULL),(57076,558435,9,'writer','screenplay',NULL),(57115,5701,10,'cinematographer','director of photography',NULL),(57115,537,1,'actor',NULL,'[\"Hilts \'The Cooler King\'\"]'),(57115,1258,2,'actor',NULL,'[\"Hendley \'The Scrounger\'\"]'),(57115,277,3,'actor',NULL,'[\"Bartlett \'Big X\'\"]'),(57115,314,4,'actor',NULL,'[\"Danny \'Tunnel King\'\"]'),(57115,836328,5,'director',NULL,NULL),(57115,108595,6,'writer','based on the book by',NULL),(57115,165412,7,'writer','screen play by',NULL),(57115,122446,8,'writer','screen play by',NULL),(57115,930,9,'composer',NULL,NULL),(57129,910018,10,'editor',NULL,NULL),(57129,364915,1,'actress',NULL,'[\"Eleanor Lance\"]'),(57129,1954,2,'actress',NULL,'[\"Theodora\"]'),(57129,426062,3,'actor',NULL,'[\"Dr. John Markway\"]'),(57129,848560,4,'actor',NULL,'[\"Luke Sannerson\"]'),(57129,936404,5,'director',NULL,NULL),(57129,317254,6,'writer','screenplay',NULL),(57129,414047,7,'writer','based on the novel: \"The Haunting of Hill House\"',NULL),(57129,780699,8,'composer',NULL,NULL),(57129,99599,9,'cinematographer','director of photography',NULL),(57180,658397,10,'editor',NULL,NULL),(57180,312783,1,'actor',NULL,'[\"John Longridge\"]'),(57180,236835,2,'actor',NULL,'[\"Professor Jim Hunter\"]'),(57180,878526,3,'actor',NULL,'[\"The Hermit\"]'),(57180,779771,4,'actress',NULL,'[\"Mrs. Hunter\"]'),(57180,548529,5,'director',NULL,NULL),(57180,19282,6,'writer','screenplay',NULL),(57180,122484,7,'writer','book',NULL),(57180,6337,8,'composer',NULL,NULL),(57180,668727,9,'cinematographer','director of photography',NULL),(57187,5766,10,'cinematographer',NULL,NULL),(57187,493,1,'actor',NULL,'[\"Nestor Patou\",\"Lord X\"]'),(57187,511,2,'actress',NULL,'[\"Irma La Douce\"]'),(57187,414279,3,'actor',NULL,'[\"Moustache\"]'),(57187,946484,4,'actor',NULL,'[\"Hippolyte\"]'),(57187,697,5,'director',NULL,NULL),(57187,106810,6,'writer','play',NULL),(57187,224634,7,'writer','writer',NULL),(57187,22390,8,'producer','producer',NULL),(57187,6238,9,'composer',NULL,NULL),(57191,826114,10,'editor',NULL,NULL),(57191,62,1,'actor',NULL,'[\"Mike Edwards\"]'),(57191,639613,2,'actress',NULL,'[\"Diane Warren\"]'),(57191,516972,3,'actor',NULL,'[\"Danny Burke\"]'),(57191,864581,4,'actress',NULL,'[\"Sue-Lin\"]'),(57191,851537,5,'director',NULL,NULL),(57191,741676,6,'writer','written by',NULL),(57191,414633,7,'writer','written by',NULL),(57191,6302,8,'composer',NULL,NULL),(57191,5853,9,'cinematographer','director of photography',NULL),(57193,288635,10,'editor','film editor',NULL),(57193,75,1,'actor',NULL,'[\"Capt. T. G. Culpepper\"]'),(57193,926,2,'actor',NULL,'[\"J. Russell Finch\"]'),(57193,581062,3,'actress',NULL,'[\"Mrs. Marcus\"]'),(57193,1682,4,'actor',NULL,'[\"Ding Bell\"]'),(57193,6452,5,'director',NULL,NULL),(57193,741740,6,'writer','story',NULL),(57193,741704,7,'writer','story',NULL),(57193,6104,8,'composer',NULL,NULL),(57193,5768,9,'cinematographer','director of photography',NULL),(57215,849083,10,'producer','producer',NULL),(57215,847396,1,'actor',NULL,'[\"Commercial Photographer Susumu Hatanaka\"]'),(57215,297896,2,'actress',NULL,'[\"Makoto Jinguji, the Captain\'s Daughter\"]'),(57215,297741,3,'actor',NULL,'[\"Yoshito Nishibe\"]'),(57215,756292,4,'actor',NULL,'[\"Uoto Unno - Journalist\",\"Mu Agent\"]'),(57215,393094,5,'director',NULL,NULL),(57215,559398,6,'director',NULL,NULL),(57215,782883,7,'writer','screenplay',NULL),(57215,651904,8,'writer','novel \"Kaitei gunkan\"',NULL),(57215,464608,9,'writer','novel \"Kaitei okaku/The Undersea Kingdom\"',NULL),(57226,262647,1,'actor',NULL,'[\"Professor Zimmer\"]'),(57226,211767,2,'actor',NULL,'[\"Gerald Harcourt\"]'),(57226,932529,3,'actor',NULL,'[\"Dr. Ravna\"]'),(57226,199663,4,'actress',NULL,'[\"Marianne Harcourt\"]'),(57226,789033,5,'director',NULL,NULL),(57226,385573,6,'writer','screenplay by',NULL),(57226,2302,7,'composer',NULL,NULL),(57226,401727,8,'cinematographer','director of photography',NULL),(57226,732400,9,'production_designer',NULL,NULL),(57227,62,1,'actor',NULL,'[\"Josh Morgan\",\"Jodie Tatum\"]'),(57227,640023,2,'actor',NULL,'[\"Pappy Tatum\"]'),(57227,268225,3,'actress',NULL,'[\"Ma Tatum\"]'),(57227,16776,4,'actor',NULL,'[\"Captain Robert Salbo\"]'),(57227,625383,5,'director',NULL,NULL),(57227,10987,6,'writer','screenplay',NULL),(57227,441947,7,'producer','producer',NULL),(57227,141608,8,'cinematographer','director of photography',NULL),(57227,506951,9,'editor',NULL,NULL),(57239,367431,10,'editor',NULL,NULL),(57239,1989,1,'actress',NULL,'[\"Jane\"]'),(57239,95641,2,'actor',NULL,'[\"Youth in Street\"]'),(57239,120517,3,'actress',NULL,'[\"Doris\"]'),(57239,681093,4,'actress',NULL,'[\"Sonia\"]'),(57239,285302,5,'director',NULL,NULL),(57239,52209,6,'writer','based on an original novel by',NULL),(57239,277,7,'producer','producer',NULL),(57239,941150,8,'producer','producer',NULL),(57239,5878,9,'cinematographer',NULL,NULL),(57259,705572,10,'composer',NULL,NULL),(57259,1847,1,'actor',NULL,'[\"Rolfe\"]'),(57259,1627,2,'actor',NULL,'[\"Aly Mansuh\"]'),(57259,848560,3,'actor',NULL,'[\"Orm\"]'),(57259,771268,4,'actress',NULL,'[\"Aminah\"]'),(57259,2153,5,'director',NULL,NULL),(57259,558435,6,'writer','screenplay',NULL),(57259,189117,7,'writer','screenplay',NULL),(57259,71084,8,'writer','novel \"The Long Ships\"',NULL),(57259,2164,9,'producer','producer',NULL),(57261,270618,10,'editor',NULL,NULL),(57261,41405,1,'actor',NULL,'[\"Ralph\"]'),(57261,152204,2,'actor',NULL,'[\"Jack\"]'),(57261,250046,3,'actor',NULL,'[\"Piggy\"]'),(57261,255900,4,'actor',NULL,'[\"Roger\"]'),(57261,111656,5,'director',NULL,NULL),(57261,325717,6,'writer','novel',NULL),(57261,20767,7,'producer','producer',NULL),(57261,503370,8,'composer',NULL,NULL),(57261,391430,9,'cinematographer','director of photography',NULL),(57329,564970,10,'writer','story by',NULL),(57329,13,1,'actress',NULL,'[\"Ellen Wagstaff Arden\"]'),(57329,1258,2,'actor',NULL,'[\"Nicholas Arden\"]'),(57329,917,3,'actress',NULL,'[\"Bianca Steele Arden\"]'),(57329,728812,4,'actress',NULL,'[\"Grace Arden\"]'),(57329,330456,5,'director',NULL,NULL),(57329,437900,6,'writer','screenplay by',NULL),(57329,792042,7,'writer','screenplay by',NULL),(57329,818415,8,'writer','based on a screenplay by',NULL),(57329,818416,9,'writer','based on a screenplay by',NULL),(57345,6227,10,'composer',NULL,NULL),(57345,3,1,'actress',NULL,'[\"Camille Javal\"]'),(57345,1588,2,'actor',NULL,'[\"Jeremy Prokosch\"]'),(57345,681566,3,'actor',NULL,'[\"Paul Javal\"]'),(57345,596968,4,'actress',NULL,'[\"Francesca Vanini\"]'),(57345,419,5,'director',NULL,NULL),(57345,603179,6,'writer','novel \"Il Disprezzo\"',NULL),(57345,64676,7,'producer','producer',NULL),(57345,690638,8,'producer','producer',NULL),(57345,16,9,'composer',NULL,NULL),(57358,862026,1,'actress',NULL,'[\"Märta Lundberg\"]'),(57358,85038,2,'actor',NULL,'[\"Tomas Ericsson\"]'),(57358,511458,3,'actress',NULL,'[\"Karin Persson\"]'),(57358,1884,4,'actor',NULL,'[\"Jonas Persson\"]'),(57358,5,5,'director',NULL,NULL),(57358,252321,6,'producer','producer',NULL),(57358,5815,7,'cinematographer',NULL,NULL),(57358,753276,8,'editor',NULL,NULL),(57358,526456,9,'production_designer',NULL,NULL),(57380,6221,10,'composer',NULL,NULL),(57380,851,1,'actor',NULL,'[\"Old Shatterhand\"]'),(57380,108523,2,'actor',NULL,'[\"Winnetou\"]'),(57380,492002,3,'actress',NULL,'[\"Paloma\"]'),(57380,534972,4,'actor',NULL,'[\"Capt. Bradley\"]'),(57380,293707,5,'director',NULL,NULL),(57380,562015,6,'writer','by',NULL),(57380,283780,7,'writer','screenplay',NULL),(57380,826452,8,'writer','screenplay',NULL),(57380,105899,9,'producer','producer',NULL),(57413,935988,10,'editor',NULL,NULL),(57413,57,1,'actor',NULL,'[\"Sir Charles Litton\"]'),(57413,634,2,'actor',NULL,'[\"Insp. Jacques Clouseau\"]'),(57413,1822,3,'actor',NULL,'[\"George Litton\"]'),(57413,1010,4,'actress',NULL,'[\"Simone Clouseau\"]'),(57413,1175,5,'director',NULL,NULL),(57413,725009,6,'writer','screenplay',NULL),(57413,433021,7,'producer','producer',NULL),(57413,49,8,'composer',NULL,NULL),(57413,5769,9,'cinematographer','director of photography',NULL),(57427,496645,10,'composer',NULL,NULL),(57427,578,1,'actor',NULL,'[\"Josef K.\"]'),(57427,289450,2,'actor',NULL,'[\"Inspector A\"]'),(57427,353916,3,'actor',NULL,'[\"Second Assistant Inspector\"]'),(57427,443985,4,'actor',NULL,'[\"First Assistant Inspector\"]'),(57427,80,5,'director',NULL,NULL),(57427,158971,6,'writer','adaptation and dialogue',NULL),(57427,434525,7,'writer','based on the novel by',NULL),(57427,758499,8,'producer','producer',NULL),(57427,758503,9,'producer','producer',NULL),(57449,801721,10,'editor',NULL,NULL),(57449,1637,1,'actor',NULL,'[\"Dr. Erasmus Craven\"]'),(57449,48,2,'actor',NULL,'[\"Dr. Adolphus Bedlo\"]'),(57449,472,3,'actor',NULL,'[\"Dr. Scarabus\"]'),(57449,183764,4,'actress',NULL,'[\"Lenore Craven\"]'),(57449,339,5,'director',NULL,NULL),(57449,590,6,'writer','poem',NULL),(57449,558577,7,'writer','screenplay',NULL),(57449,5958,8,'composer',NULL,NULL),(57449,5677,9,'cinematographer','director of photography',NULL),(57490,5878,10,'cinematographer','director of photography',NULL),(57490,1958,1,'actor',NULL,'[\"Barrett\"]'),(57490,587234,2,'actress',NULL,'[\"Vera\"]'),(57490,186048,3,'actress',NULL,'[\"Susan\"]'),(57490,289038,4,'actor',NULL,'[\"Tony\"]'),(57490,521334,5,'director',NULL,NULL),(57490,56217,6,'writer','screenplay',NULL),(57490,560855,7,'writer','novel \'The Servant\'',NULL),(57490,295711,8,'producer','producer',NULL),(57490,6023,9,'composer',NULL,NULL),(57495,106539,1,'actor',NULL,'[\"Johnny Barrett\"]'),(57495,869927,2,'actress',NULL,'[\"Cathy\"]'),(57495,262775,3,'actor',NULL,'[\"Boden\"]'),(57495,78940,4,'actor',NULL,'[\"Stuart\"]'),(57495,2087,5,'director',NULL,NULL),(57495,242406,6,'composer',NULL,NULL),(57495,5673,7,'cinematographer','director of photography',NULL),(57495,860870,8,'editor',NULL,NULL),(57541,805172,10,'editor',NULL,NULL),(57541,723771,1,'actor',NULL,'[\"Don\"]'),(57541,676555,2,'actress',NULL,'[\"Barbara\"]'),(57541,371156,3,'actor',NULL,'[\"Cyril\"]'),(57541,835939,4,'actress',NULL,'[\"Sandy\"]'),(57541,946811,5,'director',NULL,NULL),(57541,616829,6,'writer','original story and screenplay',NULL),(57541,143922,7,'writer','original story and screenplay',NULL),(57541,363899,8,'producer','producer',NULL),(57541,587781,9,'cinematographer','director of photography',NULL),(57542,821338,10,'editor',NULL,NULL),(57542,1539,1,'actress',NULL,'[\"Nancy Carey\"]'),(57542,570192,2,'actress',NULL,'[\"Margaret Carey\"]'),(57542,412322,3,'actor',NULL,'[\"Osh Popham\"]'),(57542,909117,4,'actress',NULL,'[\"Julia Carey\"]'),(57542,624809,5,'director',NULL,NULL),(57542,72639,6,'writer','screenplay',NULL),(57542,927752,7,'writer','book',NULL),(57542,48301,8,'composer',NULL,NULL),(57542,811580,9,'cinematographer','director of photography',NULL),(57546,5980,10,'composer',NULL,NULL),(57546,814862,1,'actor',NULL,'[\"Wart\"]'),(57546,1982,2,'actor',NULL,'[\"Sir Ector\",\"Narrator in opening sequence\"]'),(57546,842425,3,'actor',NULL,'[\"Merlin\"]'),(57546,560076,4,'actor',NULL,'[\"Archimedes\"]'),(57546,718627,5,'director',NULL,NULL),(57546,314671,6,'director',NULL,NULL),(57546,359457,7,'director',NULL,NULL),(57546,670328,8,'writer','story',NULL),(57546,925493,9,'writer','based on the book by',NULL),(57590,316626,10,'editor',NULL,NULL),(57590,1215,1,'actor',NULL,'[\"Tom Jones\"]'),(57590,948772,2,'actress',NULL,'[\"Sophie Western\"]'),(57590,222627,3,'actor',NULL,'[\"Squire Allworthy\"]'),(57590,447499,4,'actress',NULL,'[\"Bridget Allworthy\"]'),(57590,724798,5,'director',NULL,NULL),(57590,651570,6,'writer','screenplay',NULL),(57590,276145,7,'writer','based on the novel by',NULL),(57590,11709,8,'composer',NULL,NULL),(57590,7178,9,'cinematographer','director of photography',NULL),(57611,15957,10,'actress',NULL,'[\"Woman in Variety Hall\"]'),(57611,862026,1,'actress',NULL,'[\"Ester\"]'),(57611,511458,2,'actress',NULL,'[\"Anna\"]'),(57611,540311,3,'actor',NULL,'[\"The Waiter\"]'),(57611,415720,4,'actor',NULL,'[\"The Hotel Steward\"]'),(57611,5,5,'director',NULL,NULL),(57611,5815,6,'cinematographer',NULL,NULL),(57611,753276,7,'editor',NULL,NULL),(57611,526456,8,'production_designer',NULL,NULL),(57611,512502,9,'actor',NULL,'[\"Johan\"]'),(57623,5932,10,'cinematographer','director of photography',NULL),(57623,627453,1,'actor',NULL,'[\"Dr. Mark Davidson\"]'),(57623,832104,2,'actor',NULL,'[\"Prof. John Lancaster\"]'),(57623,509145,3,'actress',NULL,'[\"Julie Davidson\"]'),(57623,627822,4,'actor',NULL,'[\"Maj. Clarke\"]'),(57623,471420,5,'director',NULL,NULL),(57623,138223,6,'writer','screenplay',NULL),(57623,284822,7,'writer','based on an idea by',NULL),(57623,271890,8,'producer','producer',NULL),(57623,1025779,9,'composer',NULL,NULL),(57643,763157,10,'editor',NULL,NULL),(57643,542063,1,'actor',NULL,'[\"José Luis Rodríguez, el enterrador\"]'),(57643,671774,2,'actress',NULL,'[\"Carmen, la hija de Amadeo\"]'),(57643,410756,3,'actor',NULL,'[\"Amadeo, el verdugo\"]'),(57643,7023,4,'actor',NULL,'[\"Antonio Rodríguez, el hermano mayor de José Luis\"]'),(57643,305557,5,'director',NULL,NULL),(57643,44156,6,'writer','story',NULL),(57643,280919,7,'writer','screenplay collaboration',NULL),(57643,5950,8,'composer',NULL,NULL),(57643,5686,9,'cinematographer','director of photography',NULL),(57685,516125,10,'editor',NULL,NULL),(57685,477088,1,'actress',NULL,'[\"Marjorie Lee\"]'),(57685,604687,2,'actress',NULL,'[\"Mrs. Tovey\"]'),(57685,550429,3,'actress',NULL,'[\"Mavis Cook\"]'),(57685,818920,4,'actor',NULL,'[\"Quentin\"]'),(57685,471420,5,'director',NULL,NULL),(57685,763071,6,'writer','novel \"The Last Hours of Sandra Lee\"',NULL),(57685,666372,7,'producer','producer',NULL),(57685,805593,8,'composer',NULL,NULL),(57685,406471,9,'cinematographer','director of photography',NULL),(57687,5752,10,'cinematographer',NULL,NULL),(57687,851,1,'actor',NULL,'[\"Old Shatterhand\"]'),(57687,108523,2,'actor',NULL,'[\"Winnetou\"]'),(57687,894949,3,'actress',NULL,'[\"Nscho-tschi\"]'),(57687,728,4,'actor',NULL,'[\"Frederick Santer\"]'),(57687,718243,5,'director',NULL,NULL),(57687,562015,6,'writer','novel',NULL),(57687,677457,7,'writer',NULL,NULL),(57687,339657,8,'producer','producer',NULL),(57687,5989,9,'composer',NULL,NULL),(57693,137124,10,'editor',NULL,NULL),(57693,1537,1,'actor',NULL,'[\"Dr. James Xavier\"]'),(57693,886469,2,'actress',NULL,'[\"Dr. Diane Fairfax\"]'),(57693,831905,3,'actor',NULL,'[\"Dr. Sam Brant\"]'),(57693,398466,4,'actor',NULL,'[\"Dr. Willard Benson\"]'),(57693,339,5,'director',NULL,NULL),(57693,226889,6,'writer','screenplay',NULL),(57693,751400,7,'writer','screenplay',NULL),(57693,5958,8,'composer',NULL,NULL),(57693,5677,9,'cinematographer',NULL,NULL),(57840,5769,10,'cinematographer','director of photography',NULL),(57840,1258,1,'actor',NULL,'[\"Lt. Commander Charles E. Madison\"]'),(57840,267,2,'actress',NULL,'[\"Emily Barham\"]'),(57840,2048,3,'actor',NULL,'[\"Admiral William Jessup\"]'),(57840,336,4,'actor',NULL,'[\"Lt. Commander \'Bus\' Cummings\"]'),(57840,2137,5,'director',NULL,NULL),(57840,154665,6,'writer','screenplay',NULL),(57840,401239,7,'writer','novel',NULL),(57840,710388,8,'producer','producer',NULL),(57840,6184,9,'composer',NULL,NULL),(57869,1415514,10,'editor',NULL,NULL),(57869,439344,1,'actress',NULL,'[\"Odile\"]'),(57869,105475,2,'actor',NULL,'[\"Arthur\"]'),(57869,320647,3,'actress',NULL,'[\"English Teacher\"]'),(57869,173212,4,'actress',NULL,'[\"Madame Victoria\"]'),(57869,419,5,'director',NULL,NULL),(57869,386900,6,'writer','novel \"Fool\'s Gold\"',NULL),(57869,6166,7,'composer',NULL,NULL),(57869,184170,8,'cinematographer',NULL,NULL),(57869,172004,9,'editor',NULL,NULL),(57878,141085,10,'editor',NULL,NULL),(57878,8,1,'actor',NULL,'[\"Freddy Benson\"]'),(57878,57,2,'actor',NULL,'[\"Lawrence Jameson\"]'),(57878,429250,3,'actress',NULL,'[\"Janet Walker\"]'),(57878,329060,4,'actress',NULL,'[\"Fanny Eubank\"]'),(57878,506589,5,'director',NULL,NULL),(57878,788630,6,'writer','written by',NULL),(57878,377417,7,'writer','written by',NULL),(57878,6270,8,'composer',NULL,NULL),(57878,830411,9,'cinematographer','director of photography',NULL),(57887,5958,10,'composer',NULL,NULL),(57887,811,1,'actor',NULL,'[\"Frankie\",\"Potato Bug\"]'),(57887,2088,2,'actress',NULL,'[\"Dee Dee\"]'),(57887,405054,3,'actress',NULL,'[\"Vivien Clements\"]'),(57887,725543,4,'actor',NULL,'[\"Big Drag\"]'),(57887,38906,5,'director',NULL,NULL),(57887,870150,6,'writer','screenplay',NULL),(57887,226889,7,'writer','screenplay',NULL),(57887,35098,8,'producer','producer',NULL),(57887,629839,9,'producer','producer',NULL),(57918,401727,10,'cinematographer','director of photography',NULL),(57918,931054,1,'actor',NULL,'[\"Julius Caesar\"]'),(57918,416228,2,'actor',NULL,'[\"Mark Antony\"]'),(57918,175427,3,'actor',NULL,'[\"Hengist Pod\"]'),(57918,1889,4,'actor',NULL,'[\"Seneca\"]'),(57918,858873,5,'director',NULL,NULL),(57918,745349,6,'writer','original screenplay',NULL),(57918,636,7,'writer','original idea',NULL),(57918,737127,8,'producer','producer',NULL),(57918,736864,9,'composer',NULL,NULL),(57933,406471,10,'cinematographer','director of photography',NULL),(57933,39,1,'actress',NULL,'[\"Miss Madrigal\"]'),(57933,1539,2,'actress',NULL,'[\"Laurel\"]'),(57933,590055,3,'actor',NULL,'[\"Maitland\"]'),(57933,262725,4,'actress',NULL,'[\"Mrs. St. Maugham\"]'),(57933,623768,5,'director',NULL,NULL),(57933,371088,6,'writer','screenplay',NULL),(57933,46779,7,'writer','from the play by',NULL),(57933,403022,8,'producer','producer',NULL),(57933,2185,9,'composer',NULL,NULL),(57997,6238,10,'composer',NULL,NULL),(57997,12,1,'actress',NULL,'[\"Margaret DeLorca\",\"Edith Phillips\"]'),(57997,1500,2,'actor',NULL,'[\"Sgt. Jim Hobbson\"]'),(57997,492444,3,'actor',NULL,'[\"Tony Collins\"]'),(57997,137023,4,'actor',NULL,'[\"Sgt. Hoag\"]'),(57997,2134,5,'director',NULL,NULL),(57997,67135,6,'writer','screenplay by',NULL),(57997,587743,7,'writer','screenplay by',NULL),(57997,416861,8,'writer','from a story by',NULL),(57997,942934,9,'producer','producer',NULL),(58003,5688,10,'cinematographer',NULL,NULL),(58003,900143,1,'actress',NULL,'[\"Giuliana\"]'),(58003,1321,2,'actor',NULL,'[\"Corrado Zeller\"]'),(58003,158026,3,'actor',NULL,'[\"Ugo\"]'),(58003,883582,4,'actress',NULL,'[\"Linda\"]'),(58003,774,5,'director',NULL,NULL),(58003,346096,6,'writer',NULL,NULL),(58003,148970,7,'producer','producer',NULL),(58003,6090,8,'composer',NULL,NULL),(58003,312483,9,'composer',NULL,NULL),(58083,950290,10,'producer','producer',NULL),(58083,20,1,'actor',NULL,'[\"The President\"]'),(58083,527,2,'actor',NULL,'[\"Dr. Groeteschele\"]'),(58083,915851,3,'actor',NULL,'[\"Col. Cascio\"]'),(58083,641397,4,'actor',NULL,'[\"Gen. Black\"]'),(58083,1486,5,'director',NULL,NULL),(58083,77159,6,'writer','screenplay',NULL),(58083,120969,7,'writer','from the novel by',NULL),(58083,923838,8,'writer','from the novel by',NULL),(58083,313570,9,'writer',NULL,NULL),(58091,5762,10,'cinematographer','director of photography',NULL),(58091,1229,1,'actor',NULL,'[\"Sam McBane\"]'),(58091,477088,2,'actress',NULL,'[\"Sally Fraser\"]'),(58091,1792,3,'actor',NULL,'[\"Captain Jack Savage\"]'),(58091,687189,4,'actress',NULL,'[\"Martha Webster\"]'),(58091,625680,5,'director',NULL,NULL),(58091,304418,6,'writer','book',NULL),(58091,575547,7,'writer','screenplay',NULL),(58091,742162,8,'producer','producer',NULL),(58091,25,9,'composer',NULL,NULL),(58092,170990,10,'composer',NULL,NULL),(58092,26,1,'actor',NULL,'[\"Walter\"]'),(58092,1989,2,'actress',NULL,'[\"Catherine\"]'),(58092,2145,3,'actor',NULL,'[\"Houghton\"]'),(58092,328690,4,'actor',NULL,'[\"Stebbings\"]'),(58092,625680,5,'director',NULL,NULL),(58092,832099,6,'writer','screenplay',NULL),(58092,850514,7,'writer','screenplay',NULL),(58092,55975,8,'writer','story',NULL),(58092,37818,9,'producer','producer',NULL),(58100,6145,10,'composer',NULL,NULL),(58100,431837,1,'actor',NULL,'[\"Arnold Bedford\"]'),(58100,405054,2,'actress',NULL,'[\"Kate Callender\"]'),(58100,420383,3,'actor',NULL,'[\"Prof. Joseph Cavor\"]'),(58100,539942,4,'actor',NULL,'[\"Dymchurch Registrar\"]'),(58100,432846,5,'director',NULL,NULL),(58100,460600,6,'writer','screenplay',NULL),(58100,713833,7,'writer','screenplay',NULL),(58100,920229,8,'writer','from the original story by',NULL),(58100,773677,9,'producer','producer',NULL),(58139,395902,10,'composer',NULL,NULL),(58139,89760,1,'actress',NULL,'[\"Rita Seidel\"]'),(58139,260244,2,'actor',NULL,'[\"Manfred Herrfurth\"]'),(58139,362438,3,'actor',NULL,'[\"Rolf Meternagel\"]'),(58139,857150,4,'actor',NULL,'[\"Ernst Wendland\"]'),(58139,937830,5,'director',NULL,NULL),(58139,58598,6,'writer','writer',NULL),(58139,117686,7,'writer','writer',NULL),(58139,937696,8,'writer','writer',NULL),(58139,937758,9,'writer','writer',NULL),(58150,558435,10,'writer','story',NULL),(58150,125,1,'actor',NULL,'[\"James Bond\"]'),(58150,2085,2,'actor',NULL,'[\"Auric Goldfinger\"]'),(58150,303,3,'actress',NULL,'[\"Pussy Galore\"]'),(58150,247881,4,'actress',NULL,'[\"Jill Masterson\"]'),(58150,357891,5,'director',NULL,NULL),(58150,537363,6,'writer','screenplay by',NULL),(58150,214989,7,'writer','screenplay by',NULL),(58150,1220,8,'writer','novel',NULL),(58150,367820,9,'writer','adaptation',NULL),(58164,869,1,'actor',NULL,'[\"Mick\"]'),(58164,587,2,'actor',NULL,'[\"Mac Davies\",\"Bernard Jenkins\"]'),(58164,1727,3,'actor',NULL,'[\"Aston\"]'),(58164,56217,4,'actor',NULL,'[\"Man\"]'),(58164,232795,5,'director',NULL,NULL),(58164,83588,6,'producer','producer',NULL),(58164,6112,7,'composer',NULL,NULL),(58164,1676,8,'cinematographer',NULL,NULL),(58164,567754,9,'editor',NULL,NULL),(58182,1397313,10,'actor',NULL,'[\"The Beatles\"]'),(58182,6168,1,'actor',NULL,'[\"John\"]'),(58182,5200,2,'actor',NULL,'[\"Paul\"]'),(58182,365600,3,'actor',NULL,'[\"George\"]'),(58182,823592,4,'actor',NULL,'[\"Ringo\"]'),(58182,504513,5,'director',NULL,NULL),(58182,654079,6,'writer','original screenplay',NULL),(58182,791577,7,'producer','producer',NULL),(58182,852405,8,'cinematographer','director of photography',NULL),(58182,433384,9,'editor',NULL,NULL),(58204,513823,10,'cinematographer','director of photography',NULL),(58204,332587,1,'actor',NULL,'[\"Ross Kingsley\"]'),(58204,477088,2,'actress',NULL,'[\"Lynn Jenley\"]'),(58204,607666,3,'actor',NULL,'[\"Jay \'Jason\' Menlow\"]'),(58204,1762,4,'actress',NULL,'[\"Sherry Nugent\"]'),(58204,505610,5,'director',NULL,NULL),(58204,20918,6,'writer','written by',NULL),(58204,120152,7,'writer','written by',NULL),(58204,75825,8,'producer','producer',NULL),(58204,770127,9,'composer',NULL,NULL),(58212,843129,10,'production_designer',NULL,NULL),(58212,493,1,'actor',NULL,'[\"Stanley Ford\"]'),(58212,514059,2,'actress',NULL,'[\"Mrs. Ford\"]'),(58212,856103,3,'actor',NULL,'[\"Charles\"]'),(58212,562305,4,'actor',NULL,'[\"Harold Lampson\"]'),(58212,703689,5,'director',NULL,NULL),(58212,43480,6,'writer','written by',NULL),(58212,6126,7,'composer',NULL,NULL),(58212,5889,8,'cinematographer','director of photography',NULL),(58212,905713,9,'editor',NULL,NULL),(58213,524597,10,'editor',NULL,NULL),(58213,12,1,'actress',NULL,'[\"Charlotte\"]'),(58213,14,2,'actress',NULL,'[\"Miriam\"]'),(58213,1072,3,'actor',NULL,'[\"Drew\"]'),(58213,1547,4,'actress',NULL,'[\"Velma\"]'),(58213,736,5,'director',NULL,NULL),(58213,268230,6,'writer','screenplay',NULL),(58213,375355,7,'writer','screenplay',NULL),(58213,6030,8,'composer',NULL,NULL),(58213,5657,9,'cinematographer','director of photography',NULL),(58249,271495,10,'cinematographer',NULL,NULL),(58249,603402,1,'actress',NULL,'[\"Célestine\"]'),(58249,350196,2,'actor',NULL,'[\"Joseph\"]'),(58249,681566,3,'actor',NULL,'[\"M. Monteil\"]'),(58249,412245,4,'actor',NULL,'[\"M. Mauger - le capitaine\"]'),(58249,320,5,'director',NULL,NULL),(58249,592282,6,'writer','based on the novel by',NULL),(58249,140643,7,'writer','adaptation and dialogue',NULL),(58249,755900,8,'producer','producer',NULL),(58249,797889,9,'producer','producer',NULL),(58263,295711,10,'producer','producer',NULL),(58263,1958,1,'actor',NULL,'[\"Captain Hargreaves\"]'),(58263,183822,2,'actor',NULL,'[\"Private Arthur James Hamp\"]'),(58263,571674,3,'actor',NULL,'[\"Captain O\'Sullivan\"]'),(58263,287687,4,'actor',NULL,'[\"Lieutenant Webb\"]'),(58263,521334,5,'director',NULL,NULL),(58263,428056,6,'writer','screenplay',NULL),(58263,933627,7,'writer','from the stage play by',NULL),(58263,388349,8,'writer','story',NULL),(58263,1334302,9,'writer','poem \"Here dead lie we because we did not choose\"',NULL),(58324,5737,10,'cinematographer','director of photography',NULL),(58324,1369,1,'actor',NULL,'[\"Roger Willoughby\"]'),(58324,696038,2,'actress',NULL,'[\"Abigail Page\"]'),(58324,675413,3,'actress',NULL,'[\"Isolde \'Easy\' Mueller\"]'),(58324,569410,4,'actor',NULL,'[\"William Cadwalader\"]'),(58324,1328,5,'director',NULL,NULL),(58324,291046,6,'writer','story \"The Girl Who Almost Got Away\"',NULL),(58324,615080,7,'writer',NULL,NULL),(58324,573929,8,'writer',NULL,NULL),(58324,49,9,'composer',NULL,NULL),(58329,866462,10,'editor',NULL,NULL),(58329,1335,1,'actress',NULL,'[\"Marnie Edgar Rutland\"]'),(58329,125,2,'actor',NULL,'[\"Mark Rutland\"]'),(58329,300010,3,'actor',NULL,'[\"Sidney Strutt\"]'),(58329,490103,4,'actress',NULL,'[\"Bernice Edgar\"]'),(58329,33,5,'director',NULL,NULL),(58329,334357,6,'writer','from the novel by',NULL),(58329,696319,7,'writer','screenplay by',NULL),(58329,2136,8,'composer',NULL,NULL),(58329,122079,9,'cinematographer','director of photography',NULL),(58331,911307,10,'editor','film editor',NULL),(58331,267,1,'actress',NULL,'[\"Mary Poppins\"]'),(58331,1813,2,'actor',NULL,'[\"Bert\",\"Mr. Dawes, Senior\"]'),(58331,866835,3,'actor',NULL,'[\"Mr. George W. Banks\"]'),(58331,424318,4,'actress',NULL,'[\"Mrs. Winnifred Banks\"]'),(58331,829038,5,'director',NULL,NULL),(58331,909556,6,'writer','screenplay',NULL),(58331,196119,7,'writer','screenplay',NULL),(58331,871308,8,'writer','based on: The \"Mary Poppins\" books by',NULL),(58331,169344,9,'cinematographer','director of photography',NULL),(58335,207401,10,'writer','screenplay',NULL),(58335,47,1,'actress',NULL,'[\"Filumena Marturano\"]'),(58335,52,2,'actor',NULL,'[\"Domenico Soriano\"]'),(58335,700112,3,'actor',NULL,'[\"Alfredo\"]'),(58335,769070,4,'actress',NULL,'[\"Rosalia\"]'),(58335,1120,5,'director',NULL,NULL),(58335,208370,6,'writer','play \"Filumena Marturano\"',NULL),(58335,144677,7,'writer','screenplay',NULL),(58335,346096,8,'writer','screenplay',NULL),(58335,73053,9,'writer','screenplay',NULL),(58361,11438576,10,'editor',NULL,NULL),(58361,691358,1,'actor',NULL,'[\"Sergey Zhuravlyov\"]'),(58361,345536,2,'actor',NULL,'[\"Nikolay \'Kolya\' Fokin\"]'),(58361,529402,3,'actor',NULL,'[\"Slava Kostikov\"]'),(58361,895036,4,'actress',NULL,'[\"Anya\"]'),(58361,452045,5,'director',NULL,NULL),(58361,795312,6,'writer',NULL,NULL),(58361,1827672,7,'producer','producer',NULL),(58361,796538,8,'composer',NULL,NULL),(58361,683435,9,'cinematographer',NULL,NULL),(58379,297722,10,'editor',NULL,NULL),(58379,847361,1,'actor',NULL,'[\"Ichiro Sakai\"]'),(58379,395953,2,'actress',NULL,'[\"Junko Nakanishi\"]'),(58379,463590,3,'actor',NULL,'[\"Professor Miura\"]'),(58379,297741,4,'actor',NULL,'[\"Jiro Nakamura\"]'),(58379,393094,5,'director',NULL,NULL),(58379,782883,6,'writer','written by',NULL),(58379,849083,7,'producer','producer',NULL),(58379,6136,8,'composer',NULL,NULL),(58379,463589,9,'cinematographer',NULL,NULL),(58385,956155,10,'editor','film editor',NULL),(58385,30,1,'actress',NULL,'[\"Eliza Doolittle\"]'),(58385,1322,2,'actor',NULL,'[\"Professor Henry Higgins\"]'),(58385,391361,3,'actor',NULL,'[\"Alfred P. Doolittle\"]'),(58385,405035,4,'actor',NULL,'[\"Colonel Hugh Pickering\"]'),(58385,2030,5,'director',NULL,NULL),(58385,503585,6,'writer','book of musical play',NULL),(58385,789737,7,'writer','from a play by',NULL),(58385,912491,8,'producer','producer',NULL),(58385,5889,9,'cinematographer','director of photography',NULL),(58409,591098,10,'cinematographer',NULL,NULL),(58409,794425,1,'actor',NULL,'[\"Shintaro Ibuki\"]'),(58409,905268,2,'actor',NULL,'[\"Abe\"]'),(58409,633997,3,'actress',NULL,'[\"Maya\"]'),(58409,411028,4,'actress',NULL,'[\"Oroku\"]'),(58409,840671,5,'director',NULL,NULL),(58409,848795,6,'writer','novel',NULL),(58409,848956,7,'writer','screenplay',NULL),(58409,412515,8,'producer','producer',NULL),(58409,945462,9,'composer',NULL,NULL),(58430,475843,10,'cinematographer',NULL,NULL),(58430,652961,1,'actress',NULL,'[\"Kichi\'s Mother\"]'),(58430,949030,2,'actress',NULL,'[\"Kichi\'s Wife\"]'),(58430,766225,3,'actor',NULL,'[\"Hachi\"]'),(58430,881303,4,'actor',NULL,'[\"Samurai General\"]'),(58430,793881,5,'director',NULL,NULL),(58430,411797,6,'producer','producer',NULL),(58430,590984,7,'producer','producer',NULL),(58430,636592,8,'producer','producer',NULL),(58430,370618,9,'composer',NULL,NULL),(58450,854042,10,'editor',NULL,NULL),(58450,366,1,'actress',NULL,'[\"Geneviève Emery\"]'),(58450,144875,2,'actor',NULL,'[\"Guy Foucher\"]'),(58450,894636,3,'actress',NULL,'[\"Madame Emery\"]'),(58450,584879,4,'actor',NULL,'[\"Roland Cassard\"]'),(58450,218840,5,'director',NULL,NULL),(58450,90776,6,'producer','producer',NULL),(58450,6166,7,'composer',NULL,NULL),(58450,704880,8,'cinematographer',NULL,NULL),(58450,182884,9,'editor',NULL,NULL),(58461,41,10,'writer','screenplay \"Yojimbo\"',NULL),(58461,142,1,'actor',NULL,'[\"Joe\"]'),(58461,2231,2,'actor',NULL,'[\"Ramón Rojo\"]'),(58461,462367,3,'actress',NULL,'[\"Marisol\"]'),(58461,525742,4,'actor',NULL,'[\"John Baxter\"]'),(58461,1466,5,'director',NULL,NULL),(58461,93501,6,'writer','story',NULL),(58461,8800791,7,'writer','dialogue',NULL),(58461,146033,8,'writer','story',NULL),(58461,173549,9,'writer','screenplay',NULL),(58534,5644,10,'cinematographer','director of photography',NULL),(58534,62,1,'actor',NULL,'[\"Charlie Rogers\"]'),(58534,1766,2,'actress',NULL,'[\"Maggie Morgan\"]'),(58534,293444,3,'actress',NULL,'[\"Cathy Lean\"]'),(58534,2063,4,'actor',NULL,'[\"Joe Lean\"]'),(58534,723664,5,'director',NULL,NULL),(58534,492626,6,'writer','screenplay',NULL),(58534,918902,7,'writer','screenplay',NULL),(58534,909259,8,'producer','producer',NULL),(58534,510360,9,'composer',NULL,NULL),(58536,723982,1,'actress',NULL,'[\"Rudolph\"]'),(58536,412322,2,'actor',NULL,'[\"Sam the Snowman\"]'),(58536,542847,3,'actor',NULL,'[\"Yukon Cornelius\",\"Abominable Snow Monster\"]'),(58536,813015,4,'actor',NULL,'[\"Hermey\"]'),(58536,736392,5,'director',NULL,NULL),(58536,612239,6,'writer','written by',NULL),(58536,562111,7,'writer','story',NULL),(58536,548869,8,'writer','based on the song by',NULL),(58536,710230,9,'producer','producer',NULL),(58544,457495,10,'production_designer',NULL,NULL),(58544,622416,1,'actor',NULL,'[\"Detective Shindo\"]'),(58544,395953,2,'actress',NULL,'[\"Naoko Shindo\"]'),(58544,463590,3,'actor',NULL,'[\"Professor Miura\"]'),(58544,906686,4,'actress',NULL,'[\"Princess Selina Salno of Sergina\"]'),(58544,393094,5,'director',NULL,NULL),(58544,782883,6,'writer',NULL,NULL),(58544,6136,7,'composer',NULL,NULL),(58544,463589,8,'cinematographer',NULL,NULL),(58544,297722,9,'editor',NULL,NULL),(58553,782917,10,'cinematographer',NULL,NULL),(58553,851,1,'actor',NULL,'[\"Kara Ben Nemsi\"]'),(58553,894949,2,'actress',NULL,'[\"Tschita\"]'),(58553,938754,3,'actor',NULL,'[\"Hadschi Halef Omar\"]'),(58553,61309,4,'actor',NULL,'[\"Nirwan\"]'),(58553,802563,5,'director',NULL,NULL),(58553,562015,6,'writer','novel',NULL),(58553,548096,7,'writer','screenplay',NULL),(58553,105899,8,'producer','producer',NULL),(58553,5989,9,'composer',NULL,NULL),(58564,6267,10,'composer',NULL,NULL),(58564,882237,1,'actor',NULL,'[\"Don Vincenzo Ascalone\"]'),(58564,762248,2,'actress',NULL,'[\"Agnese Ascalone\"]'),(58564,700112,3,'actor',NULL,'[\"Peppino Califano\"]'),(58564,125627,4,'actor',NULL,'[\"Antonio Ascalone\"]'),(58564,314584,5,'director',NULL,NULL),(58564,898812,6,'writer','story',NULL),(58564,408488,7,'writer','screenplay',NULL),(58564,769249,8,'writer','screenplay',NULL),(58564,188053,9,'producer','producer',NULL),(58586,5666,10,'cinematographer','director of photography',NULL),(58586,634,1,'actor',NULL,'[\"Jacques Clouseau\"]'),(58586,813961,2,'actress',NULL,'[\"Maria Gambrelli\"]'),(58586,1695,3,'actor',NULL,'[\"Benjamin Ballon\"]'),(58586,7042,4,'actor',NULL,'[\"Charles Dreyfus\"]'),(58586,1175,5,'director',NULL,NULL),(58586,87861,6,'writer','screenplay',NULL),(58586,475823,7,'writer','based upon the stage play by',NULL),(58586,9766,8,'writer','from the play \'L\'idiote\'',NULL),(58586,49,9,'composer',NULL,NULL),(58625,6316,10,'composer',NULL,NULL),(58625,645402,1,'actor',NULL,'[\"Entomologist Niki Jumpei\"]'),(58625,457219,2,'actress',NULL,'[\"Woman\"]'),(58625,594062,3,'actor',NULL,'[\"Village elder\"]'),(58625,411694,4,'actress',NULL,'[\"Entomologist\'s wife (in flashbacks)\"]'),(58625,856267,5,'director',NULL,NULL),(58625,8356,6,'writer','novel',NULL),(58625,948870,7,'writer','scripter',NULL),(58625,406725,8,'producer','producer',NULL),(58625,648985,9,'producer','producer',NULL),(58636,5910,10,'cinematographer','director of photography',NULL),(58636,477088,1,'actress',NULL,'[\"Tamahine\"]'),(58636,292159,2,'actor',NULL,'[\"Richard\"]'),(58636,696866,3,'actor',NULL,'[\"Poole\"]'),(58636,114982,4,'actress',NULL,'[\"Madame Becque\"]'),(58636,494885,5,'director',NULL,NULL),(58636,134043,6,'writer','screenplay by',NULL),(58636,630048,7,'writer','based on the novel by',NULL),(58636,116961,8,'producer','producer',NULL),(58636,2185,9,'composer',NULL,NULL),(58658,301239,10,'editor',NULL,NULL),(58658,359894,1,'actor',NULL,'[\"Louis Rapière, \'le Tigre\'\"]'),(58658,560749,2,'actress',NULL,'[\"Madame Baskine\"]'),(58658,938,3,'actress',NULL,'[\"Mehlica Baskine\"]'),(58658,241484,4,'actor',NULL,'[\"Duvet\"]'),(58658,1031,5,'director',NULL,NULL),(58658,354677,6,'writer','adaptation and dialogue',NULL),(58658,332801,7,'producer','producer',NULL),(58658,6143,8,'composer',NULL,NULL),(58658,704880,9,'cinematographer','director of photography',NULL),(58659,288003,1,'actor',NULL,'[\"Dr. Erik von Steiner\"]'),(58659,137023,2,'actor',NULL,'[\"Steve Connors\"]'),(58659,26039,3,'actress',NULL,'[\"Carol White\"]'),(58659,398466,4,'actor',NULL,'[\"Varno\"]'),(58659,577477,5,'director',NULL,NULL),(58659,382019,6,'writer','story',NULL),(58659,714970,7,'producer','producer',NULL),(58659,6161,8,'composer',NULL,NULL),(58659,5936,9,'cinematographer','director of photography',NULL),(58695,701982,10,'composer',NULL,NULL),(58695,61116,1,'actress',NULL,'[\"Tula\"]'),(58695,261795,2,'actor',NULL,'[\"Ramiro\"]'),(58695,349428,3,'actress',NULL,'[\"Herminia\"]'),(58695,812843,4,'actress',NULL,'[\"Amalita\"]'),(58695,681467,5,'director',NULL,NULL),(58695,379807,6,'writer',NULL,NULL),(58695,529977,7,'writer',NULL,NULL),(58695,256756,8,'writer',NULL,NULL),(58695,880930,9,'writer','novel',NULL),(58700,513621,10,'producer','producer',NULL),(58700,1637,1,'actor',NULL,'[\"Dr. Robert Morgan\"]'),(58700,79399,2,'actress',NULL,'[\"Ruth Collins\"]'),(58700,199618,3,'actress',NULL,'[\"Virginia Morgan\"]'),(58700,744351,4,'actor',NULL,'[\"Ben Cortman\"]'),(58700,706575,5,'director',NULL,NULL),(58700,758508,6,'director',NULL,NULL),(58700,558577,7,'writer','screenplay',NULL),(58700,500067,8,'writer','screenplay',NULL),(58700,1856964,9,'writer','screenplay',NULL),(58708,826114,10,'editor',NULL,NULL),(58708,1666,1,'actress',NULL,'[\"Molly Brown\"]'),(58708,696193,2,'actor',NULL,'[\"\'Leadville\' Johnny J. Brown\"]'),(58708,3225,3,'actor',NULL,'[\"Shamus Tobin\"]'),(58708,472816,4,'actor',NULL,'[\"Christmas Morgan\"]'),(58708,910199,5,'director',NULL,NULL),(58708,222079,6,'writer',NULL,NULL),(58708,606886,7,'writer','play',NULL),(58708,918318,8,'producer','producer',NULL),(58708,5701,9,'cinematographer','director of photography',NULL),(58709,5989,10,'composer',NULL,NULL),(58709,108523,1,'actor',NULL,'[\"Winnetou\"]'),(58709,313443,2,'actor',NULL,'[\"Martin Bauman Jr.\"]'),(58709,813961,3,'actress',NULL,'[\"Annie Dillman\"]'),(58709,1289,4,'actor',NULL,'[\"Old Surehand\"]'),(58709,901138,5,'director',NULL,NULL),(58709,562015,6,'writer','novel',NULL),(58709,445123,7,'writer','screenplay',NULL),(58709,796242,8,'writer','screenplay',NULL),(58709,339657,9,'producer','producer',NULL),(58715,768663,10,'production_designer',NULL,NULL),(58715,409820,1,'actor',NULL,'[\"Cristo\"]'),(58715,142318,2,'actress',NULL,'[\"Maria (giovane)\"]'),(58715,664666,3,'actress',NULL,'[\"Maria (vecchia)\"]'),(58715,603091,4,'actor',NULL,'[\"Giuseppe\"]'),(58715,1596,5,'director',NULL,NULL),(58715,82981,6,'producer','producer',NULL),(58715,5953,7,'composer',NULL,NULL),(58715,5686,8,'cinematographer',NULL,NULL),(58715,52849,9,'editor',NULL,NULL),(58725,574578,10,'editor',NULL,NULL),(58725,62,1,'actor',NULL,'[\"Lucky Jackson\"]'),(58725,268,2,'actress',NULL,'[\"Rusty Martin\"]'),(58725,200488,3,'actor',NULL,'[\"Count Elmo Mancini\"]'),(58725,218131,4,'actor',NULL,'[\"Mr. Martin\"]'),(58725,796645,5,'director',NULL,NULL),(58725,72639,6,'writer','written by',NULL),(58725,191901,7,'producer','producer',NULL),(58725,6303,8,'composer',NULL,NULL),(58725,5657,9,'cinematographer','director of photography',NULL),(58751,5989,10,'composer',NULL,NULL),(58751,851,1,'actor',NULL,'[\"Old Shatterhand\"]'),(58751,108523,2,'actor',NULL,'[\"Winnetou\"]'),(58751,824389,3,'actor',NULL,'[\"Bud Forrester\"]'),(58751,233312,4,'actress',NULL,'[\"Ribanna\"]'),(58751,718243,5,'director',NULL,NULL),(58751,562015,6,'writer','novel',NULL),(58751,677457,7,'writer','screenplay',NULL),(58751,348568,8,'producer','producer',NULL),(58751,339657,9,'producer','producer',NULL),(58777,48939,1,'actor',NULL,'[\"Lt. John Chard R. E.\"]'),(58777,370144,2,'actor',NULL,'[\"Otto Witt\"]'),(58777,414965,3,'actress',NULL,'[\"Margareta Witt\"]'),(58777,95718,4,'actor',NULL,'[\"Pvt. Henry Hook\"]'),(58777,256831,5,'director',NULL,NULL),(58777,695667,6,'writer','original screenplay',NULL),(58777,290,7,'composer',NULL,NULL),(58777,196598,8,'cinematographer','director of photography',NULL),(58777,433384,9,'editor',NULL,NULL),(58888,849083,10,'producer','producer',NULL),(58888,1536,1,'actor',NULL,'[\"Dr. Kyojô Niide\"]'),(58888,443232,2,'actor',NULL,'[\"Dr. Noboru Yasumoto\"]'),(58888,945734,3,'actor',NULL,'[\"Sahachi\"]'),(58888,199029,4,'actress',NULL,'[\"Osugi\"]'),(58888,41,5,'director',NULL,NULL),(58888,406836,6,'writer','screenplay',NULL),(58888,644823,7,'writer','screenplay',NULL),(58888,452878,8,'writer','screenplay',NULL),(58888,945491,9,'writer','short story collection \"Akahige shinryô tan\"',NULL),(58898,347071,10,'editor',NULL,NULL),(58898,176061,1,'actor',NULL,'[\"Lemmy Caution\"]'),(58898,439344,2,'actress',NULL,'[\"Natacha von Braun\"]'),(58898,848667,3,'actor',NULL,'[\"Henri Dickson\"]'),(58898,92316,4,'actress',NULL,'[\"2nd Seductress Third Class\"]'),(58898,419,5,'director',NULL,NULL),(58898,959908,6,'writer','poem \"Capitale de la douleur\"',NULL),(58898,584987,7,'producer','producer',NULL),(58898,6201,8,'composer',NULL,NULL),(58898,184170,9,'cinematographer',NULL,NULL),(58946,606211,10,'editor',NULL,NULL),(58946,352835,1,'actor',NULL,'[\"Ali La Pointe\"]'),(58946,552483,2,'actor',NULL,'[\"Col. Mathieu\"]'),(58946,754272,3,'actor',NULL,'[\"Djafar\"]'),(58946,449197,4,'actress',NULL,'[\"Fathia\"]'),(58946,690597,5,'director',NULL,NULL),(58946,758357,6,'writer','written by',NULL),(58946,616026,7,'producer','producer',NULL),(58946,1553,8,'composer',NULL,NULL),(58946,309800,9,'cinematographer','director of photography',NULL),(58969,401727,10,'cinematographer','director of photography',NULL),(58969,416228,1,'actor',NULL,'[\"George Brain\"]'),(58969,843401,2,'actress',NULL,'[\"Myrtle Robbins\"]'),(58969,256289,3,'actor',NULL,'[\"Frederick \'Booky\' Binns\"]'),(58969,801330,4,'actress',NULL,'[\"Mildred Gamely\"]'),(58969,858873,5,'director',NULL,NULL),(58969,745349,6,'writer','screenplay',NULL),(58969,31553,7,'writer','from an original story',NULL),(58969,737127,8,'producer','producer',NULL),(58969,736864,9,'composer',NULL,NULL),(58997,11029354,10,'composer',NULL,NULL),(58997,1158,1,'actor',NULL,'[\"Steven Lake\"]'),(58997,528595,2,'actress',NULL,'[\"Ann Lake\"]'),(58997,59,3,'actor',NULL,'[\"Superintendent Newhouse\"]'),(58997,402558,4,'actress',NULL,'[\"Ada Ford\"]'),(58997,695937,5,'director',NULL,NULL),(58997,607876,6,'writer','screenplay',NULL),(58997,607890,7,'writer','screenplay',NULL),(58997,595217,8,'writer','novel',NULL),(58997,505615,9,'writer','screenplay',NULL),(59017,6030,10,'composer',NULL,NULL),(59017,404,1,'actress',NULL,'[\"Cat Ballou\"]'),(59017,1511,2,'actor',NULL,'[\"Kid Shelleen\",\"Tim Strawn\"]'),(59017,130286,3,'actor',NULL,'[\"Clay Boone\"]'),(59017,382722,4,'actor',NULL,'[\"Jed\"]'),(59017,799033,5,'director',NULL,NULL),(59017,628305,6,'writer','screenplay',NULL),(59017,682757,7,'writer','screenplay',NULL),(59017,151949,8,'writer','based on a novel by',NULL),(59017,372959,9,'producer','producer',NULL),(59020,401393,10,'production_designer','designer',NULL),(59020,924576,1,'actress',NULL,'[\"Cathy\"]'),(59020,112211,2,'actor',NULL,'[\"Reg\"]'),(59020,219576,3,'actress',NULL,'[\"Mrs. Ward\"]'),(59020,665291,4,'actor',NULL,'[\"Grandad\"]'),(59020,516360,5,'director',NULL,NULL),(59020,761858,6,'writer','story',NULL),(59020,307821,7,'producer','producer',NULL),(59020,408196,8,'cinematographer',NULL,NULL),(59020,915232,9,'editor',NULL,NULL),(59080,945676,10,'composer',NULL,NULL),(59080,298576,1,'actor',NULL,'[\"Dr. Hidaka\"]'),(59080,456417,2,'actress',NULL,'[\"Kyoko Yamamoto\"]'),(59080,945597,3,'actor',NULL,'[\"Aoyagi\"]'),(59080,879761,4,'actor',NULL,'[\"Toshio Sakurai\"]'),(59080,950633,5,'director',NULL,NULL),(59080,847177,6,'writer','screenplay',NULL),(59080,291078,7,'producer','producer',NULL),(59080,619207,8,'producer','producer',NULL),(59080,756876,9,'producer','producer',NULL),(59084,164083,10,'editor',NULL,NULL),(59084,1046,1,'actress',NULL,'[\"Diana Scott\"]'),(59084,1958,2,'actor',NULL,'[\"Robert Gold\"]'),(59084,2131,3,'actor',NULL,'[\"Miles Brand\"]'),(59084,897808,4,'actor',NULL,'[\"Prince Cesare della Romita\"]'),(59084,772259,5,'director',NULL,NULL),(59084,710698,6,'writer','screenplay',NULL),(59084,417830,7,'writer','idea',NULL),(59084,6023,8,'composer',NULL,NULL),(59084,383429,9,'cinematographer','director of photography',NULL),(59100,517109,10,'editor',NULL,NULL),(59100,843213,1,'actor',NULL,'[\"Paul Baxter\"]'),(59100,637643,2,'actor',NULL,'[\"Count Sinistre aka Armond du Molier\"]'),(59100,336500,3,'actress',NULL,'[\"Tania\"]'),(59100,1064352,4,'actress',NULL,'[\"Karen Steele\"]'),(59100,173806,5,'director',NULL,NULL),(59100,265596,6,'writer','original story and screenplay',NULL),(59100,86773,7,'producer','producer',NULL),(59100,272026,8,'composer',NULL,NULL),(59100,5932,9,'cinematographer',NULL,NULL),(59113,2875,10,'cinematographer','director of photography',NULL),(59113,1725,1,'actor',NULL,'[\"Yuri\"]'),(59113,1046,2,'actress',NULL,'[\"Lara\"]'),(59113,1036,3,'actress',NULL,'[\"Tonya\"]'),(59113,1768,4,'actor',NULL,'[\"Komarovsky\"]'),(59113,180,5,'director',NULL,NULL),(59113,664985,6,'writer','from the novel by',NULL),(59113,4122,7,'writer','screenplay by',NULL),(59113,690638,8,'producer','producer',NULL),(59113,3574,9,'composer',NULL,NULL),(59127,2302,10,'composer',NULL,NULL),(59127,489,1,'actor',NULL,'[\"Dracula\"]'),(59127,791176,2,'actress',NULL,'[\"Helen\"]'),(59127,445139,3,'actor',NULL,'[\"Father Sandor\"]'),(59127,560022,4,'actor',NULL,'[\"Charles\"]'),(59127,279807,5,'director',NULL,NULL),(59127,762727,6,'writer','screenplay by',NULL),(59127,385573,7,'writer','from an idea by',NULL),(59127,831290,8,'writer','based on characters created by',NULL),(59127,450862,9,'producer','producer',NULL),(59170,766100,1,'actress',NULL,'[\"Varla\"]'),(59170,354486,2,'actress',NULL,'[\"Rosie\"]'),(59170,931186,3,'actress',NULL,'[\"Billie\"]'),(59170,55274,4,'actor',NULL,'[\"Tommy\"]'),(59170,540,5,'director',NULL,NULL),(59170,602803,6,'writer','screenplay',NULL),(59170,583102,7,'producer','producer',NULL),(59170,770908,8,'cinematographer','director of photography',NULL),(59183,524597,10,'editor',NULL,NULL),(59183,71,1,'actor',NULL,'[\"Frank Towns\"]'),(59183,277,2,'actor',NULL,'[\"Lew Moran\"]'),(59183,2075,3,'actor',NULL,'[\"Captain Harris\"]'),(59183,473228,4,'actor',NULL,'[\"Heinrich Dorfmann\"]'),(59183,736,5,'director',NULL,NULL),(59183,375355,6,'writer','screenplay',NULL),(59183,355261,7,'writer','novel',NULL),(59183,6030,8,'composer',NULL,NULL),(59183,5657,9,'cinematographer','director of photography',NULL),(59205,791217,10,'writer','novel \"Frankenstein\": uncredited',NULL),(59205,11244,1,'actor',NULL,'[\"Dr. James Bowen\"]'),(59205,594682,2,'actress',NULL,'[\"Dr. Sueko Togami\"]'),(59205,847396,3,'actor',NULL,'[\"Dr. Yuzo Kawaji\"]'),(59205,875237,4,'actor',NULL,'[\"Mr. Kawai\"]'),(59205,393094,5,'director',NULL,NULL),(59205,73399,6,'writer','story',NULL),(59205,454119,7,'writer','screenplay',NULL),(59205,524188,8,'writer','story \"Furankenshutain tai Gasu Ningen\"',NULL),(59205,782883,9,'writer','story \"Furankenshutain tai Gojira\"',NULL),(59212,217933,10,'composer',NULL,NULL),(59212,757085,1,'actor',NULL,'[\"Ted\"]'),(59212,393351,2,'actress',NULL,'[\"Princess of the Purple Planet\"]'),(59212,594348,3,'actor',NULL,'[\"Lemuel Gulliver\"]'),(59212,654726,4,'actor',NULL,'[\"Colonel\"]'),(59212,475845,5,'director',NULL,NULL),(59212,782883,6,'writer','screenplay',NULL),(59212,842605,7,'writer','novel \"Gulliver\'s Travels\"',NULL),(59212,645538,8,'producer','producer',NULL),(59212,217931,9,'composer',NULL,NULL),(59224,5769,10,'cinematographer','director of photography',NULL),(59224,62,1,'actor',NULL,'[\"Rusty Wells\"]'),(59224,1193,2,'actress',NULL,'[\"Valerie\"]'),(59224,831905,3,'actor',NULL,'[\"Big Frank\"]'),(59224,188986,4,'actor',NULL,'[\"Andy\"]'),(59224,755963,5,'director',NULL,NULL),(59224,120152,6,'writer','written by',NULL),(59224,20918,7,'writer','written by',NULL),(59224,664990,8,'producer','producer',NULL),(59224,6303,9,'composer',NULL,NULL),(59229,5689,10,'cinematographer',NULL,NULL),(59229,556399,1,'actress',NULL,'[\"Giulietta Boldrini\"]'),(59229,590452,2,'actress',NULL,'[\"Susy\",\"Iris\",\"Fanny\"]'),(59229,685609,3,'actor',NULL,'[\"Giorgio (Giulietta\'s husband)\"]'),(59229,181305,4,'actress',NULL,'[\"Valentina\"]'),(59229,19,5,'director',NULL,NULL),(59229,684083,6,'writer','story',NULL),(59229,280919,7,'writer','screenplay',NULL),(59229,740021,8,'writer','screenplay',NULL),(59229,65,9,'composer',NULL,NULL),(59314,824473,10,'editor',NULL,NULL),(59314,81,1,'actress',NULL,'[\"Daisy Clover\"]'),(59314,1626,2,'actor',NULL,'[\"Raymond Swan\"]'),(59314,602,3,'actor',NULL,'[\"Wade Lewis\",\"Lewis Wade\"]'),(59314,2106,4,'actress',NULL,'[\"The Dealer - Mrs. Clover\"]'),(59314,612322,5,'director',NULL,NULL),(59314,483149,6,'writer','screenplay',NULL),(59314,1587,7,'producer','producer',NULL),(59314,6238,8,'composer',NULL,NULL),(59314,485702,9,'cinematographer','director of photography',NULL),(59319,367820,10,'writer',NULL,NULL),(59319,323,1,'actor',NULL,'[\"Harry Palmer\"]'),(59319,338210,2,'actor',NULL,'[\"Major Dalby\"]'),(59319,230934,3,'actor',NULL,'[\"Colonel H.L. Ross\"]'),(59319,516145,4,'actress',NULL,'[\"Jean Courtney\"]'),(59319,2089,5,'director',NULL,NULL),(59319,215050,6,'writer','novel',NULL),(59319,133627,7,'writer','screenplay',NULL),(59319,233375,8,'writer','screenplay',NULL),(59319,203417,9,'writer',NULL,NULL),(59346,297722,10,'editor',NULL,NULL),(59346,11244,1,'actor',NULL,'[\"Astronaut Glenn Amer\"]'),(59346,847361,2,'actor',NULL,'[\"Astronaut K. Fuji\"]'),(59346,853392,3,'actor',NULL,'[\"Dr. Sakurai\"]'),(59346,473530,4,'actor',NULL,'[\"Tetsuo Teri\"]'),(59346,393094,5,'director',NULL,NULL),(59346,782883,6,'writer',NULL,NULL),(59346,849083,7,'producer','producer',NULL),(59346,6136,8,'composer',NULL,NULL),(59346,463589,9,'cinematographer',NULL,NULL),(59348,151519,10,'production_designer',NULL,NULL),(59348,154164,1,'actor',NULL,'[\"Amitabha Roy\"]'),(59348,611538,2,'actress',NULL,'[\"Karuna Gupta\"]'),(59348,52329,3,'actor',NULL,'[\"Bimal Gupta\"]'),(59348,154155,4,'actor',NULL,NULL),(59348,6249,5,'director',NULL,NULL),(59348,593958,6,'writer','short story \"Janaiko Kapurusher Kahini\"',NULL),(59348,1409877,7,'producer','producer',NULL),(59348,747185,8,'cinematographer',NULL,NULL),(59348,244891,9,'editor',NULL,NULL),(59362,914239,10,'cinematographer',NULL,NULL),(59362,878240,1,'actress',NULL,'[\"Nancy Jones\"]'),(59362,112211,2,'actor',NULL,'[\"Tolen\"]'),(59362,186903,3,'actor',NULL,'[\"Colin\"]'),(59362,232703,4,'actor',NULL,'[\"Tom\"]'),(59362,504513,5,'director',NULL,NULL),(59362,939606,6,'writer','screenplay',NULL),(59362,420590,7,'writer','play',NULL),(59362,506773,8,'producer','producer',NULL),(59362,290,9,'composer',NULL,NULL),(59538,5989,10,'composer',NULL,NULL),(59538,1289,1,'actor',NULL,'[\"Old Surehand\"]'),(59538,108523,2,'actor',NULL,'[\"Winnetou\"]'),(59538,672074,3,'actor',NULL,'[\"General Jack O\'Neal\"]'),(59538,739815,4,'actress',NULL,'[\"Judith\"]'),(59538,901138,5,'director',NULL,NULL),(59538,562015,6,'writer','novel',NULL),(59538,219043,7,'writer','screenplay',NULL),(59538,445123,8,'writer',NULL,NULL),(59538,339657,9,'producer','producer',NULL),(59557,5701,10,'cinematographer','director of photography',NULL),(59557,336,1,'actor',NULL,'[\"Derek Flint\"]'),(59557,2011,2,'actor',NULL,'[\"Cramden\"]'),(59557,324871,3,'actress',NULL,'[\"Gila\"]'),(59557,611811,4,'actor',NULL,'[\"Malcolm Rodney\"]'),(59557,542702,5,'director',NULL,NULL),(59557,277333,6,'writer','screenplay',NULL),(59557,823465,7,'writer','screenplay',NULL),(59557,203062,8,'producer','producer',NULL),(59557,25,9,'composer',NULL,NULL),(59563,446009,10,'cinematographer',NULL,NULL),(59563,62,1,'actor',NULL,'[\"Rick Richards\"]'),(59563,500299,2,'actress',NULL,'[\"Judy Hudson\"]'),(59563,793363,3,'actor',NULL,'[\"Danny Kohana\"]'),(59563,125328,4,'actress',NULL,'[\"Jan Kohana\"]'),(59563,601077,5,'director',NULL,NULL),(59563,918902,6,'writer','screenplay by',NULL),(59563,492626,7,'writer','screenplay by',NULL),(59563,909259,8,'producer','producer',NULL),(59563,510360,9,'composer',NULL,NULL),(59573,738079,10,'editor',NULL,NULL),(59573,1627,1,'actor',NULL,'[\"Gordon Ralfe\"]'),(59573,1859,2,'actress',NULL,'[\"Rose-Ann D\'Arcey\"]'),(59573,366946,3,'actress',NULL,'[\"Selina D\'Arcey\"]'),(59573,285922,4,'actor',NULL,'[\"Ole Pa\"]'),(59573,337885,5,'director',NULL,NULL),(59573,441088,6,'writer','novel \"Be Ready With Bells and Drums\"',NULL),(59573,75825,7,'producer','producer',NULL),(59573,25,8,'composer',NULL,NULL),(59573,122079,9,'cinematographer','director of photography',NULL),(59578,223964,10,'writer',NULL,NULL),(59578,142,1,'actor',NULL,'[\"Monco\"]'),(59578,1812,2,'actor',NULL,'[\"Col. Douglas Mortimer\"]'),(59578,2231,3,'actor',NULL,'[\"El Indio (The Indian)\"]'),(59578,472756,4,'actress',NULL,'[\"Mary - Hotel Manager\'s Beautiful Wife\"]'),(59578,1466,5,'director',NULL,NULL),(59578,607694,6,'writer','scenario',NULL),(59578,898812,7,'writer','screenplay',NULL),(59578,6872,8,'writer',NULL,NULL),(59578,217258,9,'writer','original treatment',NULL),(59607,657729,10,'editor',NULL,NULL),(59607,768,1,'actress',NULL,'[\"Sally\"]'),(59607,932613,2,'actress',NULL,'[\"Angela\"]'),(59607,849714,3,'actor',NULL,'[\"Paddy\"]'),(59607,630482,4,'actress',NULL,'[\"Marion\"]'),(59607,110133,5,'director',NULL,NULL),(59607,277612,6,'producer','producer',NULL),(59607,459771,7,'producer','producer',NULL),(59607,517015,8,'composer',NULL,NULL),(59607,715586,9,'cinematographer',NULL,NULL),(59616,37977,10,'editor',NULL,NULL),(59616,140316,1,'actress',NULL,'[\"Jeanne d\'Arc\"]'),(59616,288439,2,'actor',NULL,'[\"Bishop Cauchon\"]'),(59616,393385,3,'actor',NULL,'[\"Jean Beaupere\"]'),(59616,415225,4,'actor',NULL,'[\"Jean Lemaitre\"]'),(59616,975,5,'director',NULL,NULL),(59616,150728,6,'writer','dialogue',NULL),(59616,216142,7,'producer','producer',NULL),(59616,786892,8,'composer',NULL,NULL),(59616,5662,9,'cinematographer',NULL,NULL),(59621,105899,10,'producer','producer',NULL),(59621,851,1,'actor',NULL,'[\"Dr. Karl Sternau\"]'),(59621,56768,2,'actor',NULL,'[\"Count Alfonso di Rodriganda y Sevilla\"]'),(59621,61309,3,'actor',NULL,'[\"Captain Lazaro Verdoja\"]'),(59621,320758,4,'actress',NULL,'[\"Josefa\"]'),(59621,802563,5,'director',NULL,NULL),(59621,562015,6,'writer','novel',NULL),(59621,283780,7,'writer','screenplay',NULL),(59621,826452,8,'writer','screenplay',NULL),(59621,548096,9,'writer','screenplay',NULL),(59631,36,1,'actor',NULL,'[\"The Man\"]'),(59631,693376,2,'director',NULL,NULL),(59631,819501,3,'director',NULL,NULL),(59631,81852,4,'producer','producer',NULL),(59631,711702,5,'composer',NULL,NULL),(59631,401713,6,'cinematographer',NULL,NULL),(59631,456725,7,'editor',NULL,NULL),(59646,852405,10,'cinematographer','director of photography',NULL),(59646,366,1,'actress',NULL,'[\"Carol\"]'),(59646,376915,2,'actor',NULL,'[\"Michael\"]'),(59646,292159,3,'actor',NULL,'[\"Colin\"]'),(59646,299014,4,'actress',NULL,'[\"Helen\"]'),(59646,591,5,'director',NULL,NULL),(59646,102722,6,'writer','original screenplay',NULL),(59646,831816,7,'writer','adaptation & additional dialogue',NULL),(59646,349667,8,'producer','producer',NULL),(59646,357783,9,'composer',NULL,NULL),(59682,418972,10,'writer',NULL,NULL),(59682,851,1,'actor',NULL,'[\"Dr. Karl Sternau\"]'),(59682,56768,2,'actor',NULL,'[\"Count Alfonso di Rodriganda y Sevilla\"]'),(59682,61309,3,'actor',NULL,'[\"Capt. Lazoro Verdoja\"]'),(59682,320758,4,'actress',NULL,'[\"Josefa\"]'),(59682,802563,5,'director',NULL,NULL),(59682,562015,6,'writer','novel \"Schloß Rodriganda\"',NULL),(59682,283780,7,'writer',NULL,NULL),(59682,826452,8,'writer',NULL,NULL),(59682,548096,9,'writer',NULL,NULL),(59742,903125,10,'writer','book \"The Story of the Trapp Family Singers\"',NULL),(59742,267,1,'actress',NULL,'[\"Maria\"]'),(59742,1626,2,'actor',NULL,'[\"Captain Georg von Trapp\"]'),(59742,662223,3,'actress',NULL,'[\"The Baroness\"]'),(59742,370821,4,'actor',NULL,'[\"Max Detweiler\"]'),(59742,936404,5,'director',NULL,NULL),(59742,403346,6,'writer','with the partial use of ideas by',NULL),(59742,512231,7,'writer','from the stage musical book by',NULL),(59742,189496,8,'writer','from the stage musical book by',NULL),(59742,499626,9,'writer','screenplay by',NULL),(59764,504457,10,'producer','producer',NULL),(59764,627453,1,'actor',NULL,'[\"Sherlock Holmes\"]'),(59764,396819,2,'actor',NULL,'[\"Doctor Watson\"]'),(59764,292159,3,'actor',NULL,'[\"Lord Edward Carfax\"]'),(59764,703033,4,'actor',NULL,'[\"Doctor Murray\"]'),(59764,384342,5,'director',NULL,NULL),(59764,285617,6,'writer','original story and screenplay',NULL),(59764,285610,7,'writer','original story and screenplay',NULL),(59764,236279,8,'writer','characters created by',NULL),(59764,640226,9,'writer','original story',NULL),(59793,169344,10,'cinematographer','director of photography',NULL),(59793,1539,1,'actress',NULL,'[\"Patti Randall\"]'),(59793,427894,2,'actor',NULL,'[\"Zeke Kelso\"]'),(59793,699063,3,'actress',NULL,'[\"Ingrid Randall\"]'),(59793,1522,4,'actor',NULL,'[\"Gregory Benson\"]'),(59793,829038,5,'director',NULL,NULL),(59793,330227,6,'writer','screenplay',NULL),(59793,330468,7,'writer','screenplay',NULL),(59793,909556,8,'writer','screenplay',NULL),(59793,5979,9,'composer',NULL,NULL),(59800,1220,10,'writer','based on the original story by',NULL),(59800,125,1,'actor',NULL,'[\"James Bond\"]'),(59800,805,2,'actress',NULL,'[\"Domino\"]'),(59800,148041,3,'actor',NULL,'[\"Largo\"]'),(59800,658885,4,'actress',NULL,'[\"Fiona\"]'),(59800,950109,5,'director',NULL,NULL),(59800,537363,6,'writer','screenplay by',NULL),(59800,394200,7,'writer','screenplay by',NULL),(59800,926525,8,'writer','based on an original screenplay by',NULL),(59800,565886,9,'writer','based on the original story by',NULL),(59825,77159,10,'writer',NULL,NULL),(59825,44,1,'actor',NULL,'[\"Paul Labiche\"]'),(59825,6890,2,'actor',NULL,'[\"Colonel Franz Von Waldheim\"]'),(59825,603402,3,'actress',NULL,'[\"Christine\"]'),(59825,282530,4,'actress',NULL,'[\"Mademoiselle Villard\"]'),(59825,1239,5,'director',NULL,NULL),(59825,671957,6,'director',NULL,NULL),(59825,168759,7,'writer','screen story',NULL),(59825,204608,8,'writer','screen story',NULL),(59825,884854,9,'writer','based upon \"Le Front De L\'Art\" by',NULL),(59915,5989,10,'composer',NULL,NULL),(59915,851,1,'actor',NULL,'[\"Old Shatterhand\"]'),(59915,108523,2,'actor',NULL,'[\"Winnetou\"]'),(59915,61309,3,'actor',NULL,'[\"Rollins\"]'),(59915,938754,4,'actor',NULL,'[\"Sam Hawkens\"]'),(59915,718243,5,'director',NULL,NULL),(59915,562015,6,'writer','novel',NULL),(59915,59342,7,'writer','screenplay',NULL),(59915,677457,8,'writer','screenplay',NULL),(59915,339657,9,'producer','producer',NULL),(59956,56319,10,'editor',NULL,NULL),(59956,3,1,'actress',NULL,'[\"Maria Fitzgerald O\'Malley aka Maria I\"]'),(59956,603402,2,'actress',NULL,'[\"Maria Fitzgerald O\'Malley aka Maria II\"]'),(59956,1313,3,'actor',NULL,'[\"Flores\"]'),(59956,239513,4,'actress',NULL,'[\"Mme Diogène\"]'),(59956,1501,5,'director',NULL,NULL),(59956,140643,6,'writer','scenario and dialogue',NULL),(59956,199190,7,'producer','producer',NULL),(59956,16,8,'composer',NULL,NULL),(59956,5684,9,'cinematographer','director of photography',NULL),(59958,5989,10,'composer',NULL,NULL),(59958,1289,1,'actor',NULL,'[\"Old Surehand\"]'),(59958,108523,2,'actor',NULL,'[\"Winnetou\"]'),(59958,500505,3,'actor',NULL,'[\"The Oilprince\"]'),(59958,617736,4,'actress',NULL,'[\"Lizzy\"]'),(59958,679974,5,'director',NULL,NULL),(59958,901138,6,'director',NULL,NULL),(59958,562015,7,'writer','based on a narrative by',NULL),(59958,219043,8,'writer','screenplay',NULL),(59958,339657,9,'producer','producer',NULL),(60086,323,1,'actor',NULL,'[\"Alfie\"]'),(60086,1859,2,'actress',NULL,'[\"Ruby\"]'),(60086,552815,3,'actress',NULL,'[\"Siddie\"]'),(60086,287905,4,'actress',NULL,'[\"Gilda\"]'),(60086,318150,5,'director',NULL,NULL),(60086,622540,6,'writer','screenplay',NULL),(60086,738456,7,'composer',NULL,NULL),(60086,5740,8,'cinematographer',NULL,NULL),(60086,175036,9,'editor',NULL,NULL),(60107,270828,10,'editor',NULL,NULL),(60107,813463,1,'actor',NULL,'[\"Andrey Rublev\"]'),(60107,487553,2,'actor',NULL,'[\"Kirill\"]'),(60107,342458,3,'actor',NULL,'[\"Daniil Chyornyy\"]'),(60107,785108,4,'actor',NULL,'[\"Feofan Grek\"]'),(60107,1789,5,'director',NULL,NULL),(60107,464846,6,'writer',NULL,NULL),(60107,653778,7,'composer',NULL,NULL),(60107,951134,8,'cinematographer',NULL,NULL),(60107,947282,9,'editor',NULL,NULL),(60125,5688,10,'cinematographer',NULL,NULL),(60125,2094,1,'actor',NULL,'[\"Brancaleone da Norcia\"]'),(60125,816457,2,'actress',NULL,'[\"Matelda\"]'),(60125,525793,3,'actor',NULL,'[\"Pecoro\"]'),(60125,2231,4,'actor',NULL,'[\"Teofilatto dei Leonzi\"]'),(60125,598102,5,'director',NULL,NULL),(60125,408488,6,'writer','screenplay',NULL),(60125,769249,7,'writer','screenplay',NULL),(60125,147601,8,'producer','producer',NULL),(60125,6267,9,'composer',NULL,NULL),(60165,809764,10,'production_designer',NULL,NULL),(60165,20,1,'actor',NULL,'[\"Meredith\"]'),(60165,940946,2,'actress',NULL,'[\"Mary\"]'),(60165,1673,3,'actor',NULL,'[\"Henry Drummond\"]'),(60165,285818,4,'actor',NULL,'[\"C.P. Ballinger\"]'),(60165,177034,5,'director',NULL,NULL),(60165,140987,6,'writer','written by',NULL),(60165,710,7,'composer',NULL,NULL),(60165,5716,8,'cinematographer','director of photography',NULL),(60165,737621,9,'editor',NULL,NULL),(60174,132930,1,'actor',NULL,'[\"Antonio Sordi\"]'),(60174,558507,2,'actress',NULL,'[\"Daisy Allen\"]'),(60174,766883,3,'actress',NULL,'[\"Dorean\"]'),(60174,461070,4,'actress',NULL,'[\"Donna Allen\"]'),(60174,384335,5,'director',NULL,NULL),(60174,580571,6,'director',NULL,NULL),(60174,851941,7,'cinematographer',NULL,NULL),(60174,437276,8,'editor','film editor',NULL),(60176,359372,10,'composer',NULL,NULL),(60176,376101,1,'actor',NULL,'[\"Thomas\"]'),(60176,603,2,'actress',NULL,'[\"Jane\"]'),(60176,587234,3,'actress',NULL,'[\"Patricia\"]'),(60176,145284,4,'actor',NULL,'[\"Bill\"]'),(60176,774,5,'director',NULL,NULL),(60176,181497,6,'writer','short story \"Las babas del diablo\"',NULL),(60176,346096,7,'writer','screenplay',NULL),(60176,93927,8,'writer','English dialogue',NULL),(60176,690638,9,'producer','producer',NULL),(60196,1553,10,'composer',NULL,NULL),(60196,142,1,'actor',NULL,'[\"Blondie\"]'),(60196,908919,2,'actor',NULL,'[\"Tuco\"]'),(60196,1812,3,'actor',NULL,'[\"Sentenza\",\"Angel Eyes\"]'),(60196,321294,4,'actor',NULL,'[\"Alcoholic Union Captain\"]'),(60196,1466,5,'director',NULL,NULL),(60196,898812,6,'writer','story',NULL),(60196,408488,7,'writer','screenplay',NULL),(60196,769249,8,'writer','screenplay',NULL),(60196,342090,9,'producer','producer',NULL),(60223,215327,10,'editor',NULL,NULL),(60223,581042,1,'actor',NULL,'[\"José\"]'),(60223,562841,2,'actor',NULL,'[\"Paco\"]'),(60223,694934,3,'actor',NULL,'[\"Luis\"]'),(60223,349427,4,'actor',NULL,'[\"Enrique\"]'),(60223,767022,5,'director',NULL,NULL),(60223,284638,6,'writer','written by',NULL),(60223,703262,7,'producer','producer',NULL),(60223,210767,8,'composer',NULL,NULL),(60223,190834,9,'cinematographer',NULL,NULL),(60315,223964,10,'writer','screenplay collaborator',NULL),(60315,626259,1,'actor',NULL,'[\"Django\"]'),(60315,133531,2,'actor',NULL,'[\"Member of Hugo\'s Gang\"]'),(60315,126960,3,'actor',NULL,'[\"Gen. Hugo Rodriguez\"]'),(60315,135489,4,'actress',NULL,'[\"Maria\"]'),(60315,179281,5,'director',NULL,NULL),(60315,179278,6,'writer','story',NULL),(60315,744081,7,'writer','screenplay in collaboration with',NULL),(60315,900238,8,'writer','screenplay in collaboration with',NULL),(60315,178731,9,'writer','English version by',NULL),(60371,41875,1,'actor',NULL,'[\"Principal surfer\"]'),(60371,405286,2,'actor',NULL,'[\"Principal surfer\"]'),(60371,88060,3,'self',NULL,'[\"Self\"]'),(60371,113164,4,'actor',NULL,'[\"Narrator\"]'),(60371,3230950,5,'producer','producer',NULL),(60371,86794,6,'composer',NULL,NULL),(60371,313814,7,'composer',NULL,NULL),(60371,1271827,8,'composer',NULL,NULL),(60390,20767,10,'producer','producer',NULL),(60390,921459,1,'actor',NULL,'[\"Guy Montag\"]'),(60390,1046,2,'actress',NULL,'[\"Clarisse\",\"Linda Montag\"]'),(60390,159258,3,'actor',NULL,'[\"Captain Beatty\"]'),(60390,226446,4,'actor',NULL,'[\"Fabian\",\"Headmistress\"]'),(60390,76,5,'director',NULL,NULL),(60390,723827,6,'writer','screenplay',NULL),(60390,1969,7,'writer','novel',NULL),(60390,748814,8,'writer','additional dialogue',NULL),(60390,779231,9,'writer','additional dialogue',NULL),(60397,203062,10,'producer','producer',NULL),(60397,963,1,'actor',NULL,'[\"Grant\"]'),(60397,79,2,'actress',NULL,'[\"Cora\"]'),(60397,639529,3,'actor',NULL,'[\"General Carter\"]'),(60397,587,4,'actor',NULL,'[\"Dr. Michaels\"]'),(60397,281507,5,'director',NULL,NULL),(60397,459067,6,'writer','screenplay',NULL),(60397,241949,7,'writer','adaptation',NULL),(60397,459216,8,'writer','story',NULL),(60397,3198,9,'writer','story',NULL),(60424,493,1,'actor',NULL,'[\"Harry Hinkle\"]'),(60424,527,2,'actor',NULL,'[\"Willie Gingrich\"]'),(60424,723707,3,'actor',NULL,'[\"Luther \'Boom Boom\' Jackson\"]'),(60424,922165,4,'actress',NULL,'[\"Sandy Hinkle\"]'),(60424,697,5,'director',NULL,NULL),(60424,224634,6,'writer','written by',NULL),(60424,6238,7,'composer',NULL,NULL),(60424,5766,8,'cinematographer',NULL,NULL),(60424,541721,9,'editor',NULL,NULL),(60429,468222,10,'actress',NULL,'[\"Nellie Bly\"]'),(60429,62,1,'actor',NULL,'[\"Johnny\"]'),(60429,235031,2,'actress',NULL,'[\"Frankie\"]'),(60429,604702,3,'actor',NULL,'[\"Cully\"]'),(60429,486057,4,'actress',NULL,'[\"Mitzi\"]'),(60429,208111,5,'director',NULL,NULL),(60429,331944,6,'writer','screenplay',NULL),(60429,674759,7,'writer','story',NULL),(60429,439219,8,'composer',NULL,NULL),(60429,549821,9,'cinematographer','director of photography',NULL),(60446,455836,10,'composer',NULL,NULL),(60446,393291,1,'actor',NULL,'[\"Keisuke Hirata\"]'),(60446,256707,2,'actress',NULL,'[\"Karen\"]'),(60446,370573,3,'actor',NULL,'[\"Kawajiri\"]'),(60446,297805,4,'actor',NULL,'[\"Dr. Sato\"]'),(60446,849060,5,'director',NULL,NULL),(60446,950633,6,'director',NULL,NULL),(60446,847177,7,'writer',NULL,NULL),(60446,291078,8,'producer','producer',NULL),(60446,619211,9,'producer','producer',NULL),(60453,267504,10,'composer',NULL,NULL),(60453,51,1,'actor',NULL,'[\"James Leamington\"]'),(60453,869,2,'actor',NULL,'[\"Jos Jones\"]'),(60453,1655,3,'actress',NULL,'[\"Georgy\"]'),(60453,1648,4,'actress',NULL,'[\"Meredith\"]'),(60453,621469,5,'director',NULL,NULL),(60453,286976,6,'writer','screenplay',NULL),(60453,629693,7,'writer','screenplay',NULL),(60453,326350,8,'producer','producer',NULL),(60453,686704,9,'producer','producer',NULL),(60464,393094,10,'editor',NULL,NULL),(60464,847361,1,'actor',NULL,'[\"Yoshimura\"]'),(60464,594682,2,'actress',NULL,'[\"Daiyo\"]'),(60464,865561,3,'actor',NULL,'[\"Ichino\"]'),(60464,839024,4,'actor',NULL,'[\"Nita\"]'),(60464,297974,5,'director',NULL,NULL),(60464,782883,6,'writer',NULL,NULL),(60464,766496,7,'composer',NULL,NULL),(60464,945228,8,'cinematographer',NULL,NULL),(60464,297722,9,'editor',NULL,NULL),(60479,130194,10,'production_designer',NULL,NULL),(60479,298,1,'actress',NULL,'[\"Lakey\"]'),(60479,352466,2,'actress',NULL,'[\"Dottie\"]'),(60479,366946,3,'actress',NULL,'[\"Priss\"]'),(60479,4309,4,'actress',NULL,'[\"Polly\"]'),(60479,1486,5,'director',NULL,NULL),(60479,565239,6,'writer','novel',NULL),(60479,118227,7,'writer','screenplay',NULL),(60479,442100,8,'cinematographer',NULL,NULL),(60479,742471,9,'editor',NULL,NULL),(60522,485702,10,'cinematographer','director of photography',NULL),(60522,30,1,'actress',NULL,'[\"Nicole Bonnet\"]'),(60522,564,2,'actor',NULL,'[\"Simon Dermott\"]'),(60522,908919,3,'actor',NULL,'[\"Davis Leland\"]'),(60522,341518,4,'actor',NULL,'[\"Charles Bonnet\"]'),(60522,943758,5,'director',NULL,NULL),(60522,103488,6,'writer','based on a story by',NULL),(60522,475823,7,'writer','screenplay',NULL),(60522,463334,8,'producer','producer',NULL),(60522,2354,9,'composer',NULL,NULL),(60558,204824,10,'actor',NULL,'[\"Marshal MacPhee\"]'),(60558,527017,1,'actor',NULL,'[\"Jesse James\"]'),(60558,648945,2,'actress',NULL,'[\"Dr. Maria Frankenstein\"]'),(60558,92776,3,'actor',NULL,'[\"Hank Tracy\",\"Igor\"]'),(60558,735310,4,'actress',NULL,'[\"Juanita Lopez\"]'),(60558,64415,5,'director',NULL,NULL),(60558,386973,6,'writer','original story and screenplay',NULL),(60558,143188,7,'producer','producer',NULL),(60558,6159,8,'composer',NULL,NULL),(60558,941700,9,'cinematographer','director of photography',NULL),(60637,817929,10,'editor',NULL,NULL),(60637,63,1,'actor',NULL,'[\"Lt. Col. Pierre Raspeguy\"]'),(60637,1128,2,'actor',NULL,'[\"Captain Philippe Esclavier\"]'),(60637,1719,3,'actor',NULL,'[\"Lt. Mahidi\"]'),(60637,6807,4,'actress',NULL,'[\"Countess Nathalie de Clairefons\"]'),(60637,733476,5,'director',NULL,NULL),(60637,317254,6,'writer','screenplay',NULL),(60637,489320,7,'writer','novel \"The Centurions\"',NULL),(60637,77,8,'composer',NULL,NULL),(60637,5892,9,'cinematographer','director of photography',NULL),(60640,5979,10,'composer',NULL,NULL),(60640,1813,1,'actor',NULL,'[\"Lt. Robin Crusoe\"]'),(60640,477088,2,'actress',NULL,'[\"Wednesday\"]'),(60640,848667,3,'actor',NULL,'[\"Tanamashu\"]'),(60640,539395,4,'actor',NULL,'[\"Umbrella Man\"]'),(60640,666777,5,'director',NULL,NULL),(60640,370,6,'writer','story',NULL),(60640,196119,7,'writer','screenplay',NULL),(60640,909556,8,'writer','screenplay',NULL),(60640,214518,9,'writer','novel \"Robinson Crusoe\"',NULL),(60647,172004,10,'editor',NULL,NULL),(60647,439344,1,'actress',NULL,'[\"Paula Nelson\"]'),(60647,844435,2,'actor',NULL,'[\"Richard Widmark\"]'),(60647,529543,3,'actor',NULL,'[\"Donald Siegel\"]'),(60647,265717,4,'actress',NULL,'[\"Marianne Faithfull\"]'),(60647,419,5,'director',NULL,NULL),(60647,922799,6,'writer','novel \"The Jugger\"',NULL),(60647,64676,7,'producer','producer',NULL),(60647,4958745,8,'producer','producer',NULL),(60647,184170,9,'cinematographer',NULL,NULL),(60665,101501,10,'production_designer',NULL,NULL),(60665,6890,1,'actor',NULL,'[\"Sir Thomas More\"]'),(60665,384908,2,'actress',NULL,'[\"Alice More\"]'),(60665,1727,3,'actor',NULL,'[\"King Henry VIII\"]'),(60665,571674,4,'actor',NULL,'[\"Thomas Cromwell\"]'),(60665,3593,5,'director',NULL,NULL),(60665,4122,6,'writer','from the play by',NULL),(60665,16,7,'composer',NULL,NULL),(60665,601924,8,'cinematographer',NULL,NULL),(60665,447469,9,'editor',NULL,NULL),(60666,412492,1,'actor',NULL,'[\"The Master\"]'),(60666,721786,2,'actor',NULL,'[\"Torgo\"]'),(60666,537248,3,'actress',NULL,'[\"Margaret\"]'),(60666,912849,4,'actor',NULL,'[\"Michael\"]'),(60666,399679,5,'composer',NULL,NULL),(60666,807170,6,'composer',NULL,NULL),(60666,346804,7,'cinematographer','director of photography',NULL),(60666,808170,8,'editor',NULL,NULL),(60666,838117,9,'editor',NULL,NULL),(60728,495402,10,'cinematographer','director of photography',NULL),(60728,1509,1,'actor',NULL,'[\"Matt Helm\"]'),(60728,268,2,'actress',NULL,'[\"Suzie\"]'),(60728,1500,3,'actor',NULL,'[\"Julian Wall\"]'),(60728,817122,4,'actress',NULL,'[\"Coco Duquette\"]'),(60728,505610,5,'director',NULL,NULL),(60728,48511,6,'writer','screenplay',NULL),(60728,357824,7,'writer','novel',NULL),(60728,2164,8,'producer','producer',NULL),(60728,6277,9,'composer',NULL,NULL),(60758,228027,1,'actress',NULL,'[\"Diouana\"]'),(60758,420545,2,'actress',NULL,'[\"Madame\"]'),(60758,284858,3,'actor',NULL,'[\"Monsieur\"]'),(60758,621190,4,'actor',NULL,'[\"Diouana\'s Boyfriend\"]'),(60758,783733,5,'director',NULL,NULL),(60758,959077,6,'producer','producer',NULL),(60758,480235,7,'cinematographer',NULL,NULL),(60758,309948,8,'editor',NULL,NULL),(60782,6209,10,'composer',NULL,NULL),(60782,79,1,'actress',NULL,'[\"Loana\"]'),(60782,724623,2,'actor',NULL,'[\"Tumak\"]'),(60782,378612,3,'actor',NULL,'[\"Sakana\"]'),(60782,114533,4,'actor',NULL,'[\"Akhoba\"]'),(60782,149548,5,'director',NULL,NULL),(60782,140257,6,'writer','screenplay',NULL),(60782,636793,7,'writer','adapted from an original screenplay by',NULL),(60782,1025909,8,'writer','adapted from an original screenplay by',NULL),(60782,294837,9,'writer','adapted from an original screenplay by',NULL),(60827,761,1,'actress',NULL,'[\"Alma\"]'),(60827,880521,2,'actress',NULL,'[\"Elisabet Vogler\"]'),(60827,472234,3,'actress',NULL,'[\"The Doctor\"]'),(60827,85038,4,'actor',NULL,'[\"Mr. Vogler\"]'),(60827,5,5,'director',NULL,NULL),(60827,921305,6,'composer',NULL,NULL),(60827,5815,7,'cinematographer',NULL,NULL),(60827,753276,8,'editor',NULL,NULL),(60827,512482,9,'production_designer',NULL,NULL),(60841,55541,10,'editor',NULL,NULL),(60841,603682,1,'actor',NULL,'[\"Sir James Forbes\"]'),(60841,163493,2,'actress',NULL,'[\"Sylvia\"]'),(60841,930180,3,'actor',NULL,'[\"Dr. Peter Tompson\"]'),(60841,668940,4,'actress',NULL,'[\"Alice\"]'),(60841,319241,5,'director',NULL,NULL),(60841,116999,6,'writer','screenplay',NULL),(60841,450862,7,'producer','producer',NULL),(60841,2302,8,'composer',NULL,NULL),(60841,335264,9,'cinematographer','director of photography',NULL),(60879,182884,10,'editor',NULL,NULL),(60879,569635,1,'actress',NULL,'[\"Polly Maggoo\"]'),(60879,734000,2,'actor',NULL,'[\"Grégoire Pecque\"]'),(60879,293739,3,'actor',NULL,'[\"Le prince Igor\",\"The Prince\"]'),(60879,355621,4,'actress',NULL,'[\"Miss Maxwell\"]'),(60879,459017,5,'director',NULL,NULL),(60879,217798,6,'producer','producer',NULL),(60879,6166,7,'composer',NULL,NULL),(60879,91461,8,'cinematographer',NULL,NULL),(60879,91463,9,'cinematographer',NULL,NULL),(60891,505281,10,'cinematographer',NULL,NULL),(60891,439344,1,'actress',NULL,'[\"Suzanne\"]'),(60891,3813,2,'actress',NULL,'[\"Mme de Chelles\"]'),(60891,696163,3,'actress',NULL,'[\"Mme de Moni\"]'),(60891,75163,4,'actress',NULL,'[\"Soeur Sainte-Christine\"]'),(60891,729626,5,'director',NULL,NULL),(60891,225784,6,'writer','novel',NULL),(60891,344171,7,'writer','written by',NULL),(60891,64676,8,'producer','producer',NULL),(60891,255563,9,'composer',NULL,NULL),(60934,722000,10,'editor',NULL,NULL),(60934,537,1,'actor',NULL,'[\"Jake Holman\"]'),(60934,277,2,'actor',NULL,'[\"Frenchy Burgoyne\"]'),(60934,1077,3,'actor',NULL,'[\"Captain Collins\"]'),(60934,298,4,'actress',NULL,'[\"Shirley Eckert\"]'),(60934,936404,5,'director',NULL,NULL),(60934,571414,6,'writer','novel',NULL),(60934,27355,7,'writer','screenplay',NULL),(60934,25,8,'composer',NULL,NULL),(60934,531796,9,'cinematographer','director of photography',NULL),(60959,639306,10,'writer','dramaturge',NULL),(60959,439037,1,'actress',NULL,'[\"Marie II the Blonde\"]'),(60959,148581,2,'actress',NULL,'[\"Marie I the Brunette\"]'),(60959,149091,3,'actress',NULL,'[\"Woman in the Toilet\"]'),(60959,2531170,4,'actress',NULL,'[\"Toilet Assistant\"]'),(60959,161615,5,'director',NULL,NULL),(60959,433059,6,'writer','story',NULL),(60959,472695,7,'writer','screenplay',NULL),(60959,473621,8,'writer','creative consultant',NULL),(60959,90076,9,'writer','dramaturge',NULL),(60980,346532,10,'cinematographer','director of photography',NULL),(60980,1509,1,'actor',NULL,'[\"Matt Helm\"]'),(60980,1771,2,'actress',NULL,'[\"Gail Hendricks\"]'),(60980,492002,3,'actress',NULL,'[\"Tina\"]'),(60980,120658,4,'actor',NULL,'[\"Tung-Tze\"]'),(60980,439597,5,'director',NULL,NULL),(60980,357824,6,'writer','novels \"The Silencers\" and \"Death of a Citizen\"',NULL),(60980,766665,7,'writer','screenplay',NULL),(60980,2164,8,'producer','producer',NULL),(60980,930,9,'composer',NULL,NULL),(61015,5701,10,'cinematographer','director of photography',NULL),(61015,62,1,'actor',NULL,'[\"Mike McCoy\"]'),(61015,1193,2,'actress',NULL,'[\"Cynthia Foxhugh\"]'),(61015,564223,3,'actress',NULL,'[\"Diana St. Clair\"]'),(61015,550847,4,'actress',NULL,'[\"Susan\"]'),(61015,851537,5,'director',NULL,NULL),(61015,282291,6,'writer','written by',NULL),(61015,456353,7,'writer','written by',NULL),(61015,664990,8,'producer','producer',NULL),(61015,6303,9,'composer',NULL,NULL),(61101,157408,10,'editor',NULL,NULL),(61101,913911,1,'actor',NULL,'[\"Tetsuya \'Phoenix Tetsu\' Hondo\"]'),(61101,559385,2,'actress',NULL,'[\"Chiharu\"]'),(61101,632967,3,'actor',NULL,'[\"Kenji Aizawa\"]'),(61101,442709,4,'actor',NULL,'[\"Tatsuzo, The Viper\"]'),(61101,840671,5,'director',NULL,NULL),(61101,9803391,6,'writer','author',NULL),(61101,973562,7,'producer','producer',NULL),(61101,434120,8,'composer',NULL,NULL),(61101,591098,9,'cinematographer',NULL,NULL),(61107,912860,10,'cinematographer','director of photography',NULL),(61107,56,1,'actor',NULL,'[\"Prof. Michael Armstrong\"]'),(61107,267,2,'actress',NULL,'[\"Dr. Sarah Sherman\"]'),(61107,444321,3,'actress',NULL,'[\"Countess Kuchinska\"]'),(61107,271544,4,'actor',NULL,'[\"Heinrich Gerhard\"]'),(61107,33,5,'director',NULL,NULL),(61107,600972,6,'writer','written by',NULL),(61107,356227,7,'writer','contributor to screenplay',NULL),(61107,913961,8,'writer','contributor to screenplay',NULL),(61107,11709,9,'composer',NULL,NULL),(61122,512068,10,'cinematographer','director of photography',NULL),(61122,751426,1,'actress',NULL,'[\"Mother Superior\"]'),(61122,1539,2,'actress',NULL,'[\"Mary Clancy\"]'),(61122,1931,3,'actress',NULL,'[\"Sister Celestine\"]'),(61122,817122,4,'actress',NULL,'[\"Sister Constance\"]'),(61122,526946,5,'director',NULL,NULL),(61122,359256,6,'writer','screenplay',NULL),(61122,870651,7,'writer','based on a novel by',NULL),(61122,296902,8,'producer','producer',NULL),(61122,25,9,'composer',NULL,NULL),(61184,642714,10,'editor','film editor',NULL),(61184,72,1,'actress',NULL,'[\"Martha\"]'),(61184,9,2,'actor',NULL,'[\"George\"]'),(61184,1719,3,'actor',NULL,'[\"Nick\"]'),(61184,6800,4,'actress',NULL,'[\"Honey\"]'),(61184,1566,5,'director',NULL,NULL),(61184,499626,6,'writer','screenplay',NULL),(61184,16361,7,'writer','play',NULL),(61184,6218,8,'composer',NULL,NULL),(61184,5549,9,'cinematographer','director of photography',NULL),(61197,405937,10,'cinematographer',NULL,NULL),(61197,851,1,'actor',NULL,'[\"Old Shatterhand\"]'),(61197,108523,2,'actor',NULL,'[\"Winnetou\"]'),(61197,313443,3,'actor',NULL,'[\"Jeff Brown\"]'),(61197,321779,4,'actress',NULL,'[\"Apanatschi\"]'),(61197,679974,5,'director',NULL,NULL),(61197,562015,6,'writer','novel',NULL),(61197,219043,7,'writer',NULL,NULL),(61197,339657,8,'producer','producer',NULL),(61197,5989,9,'composer',NULL,NULL),(61198,339657,10,'producer','producer',NULL),(61198,108523,1,'actor',NULL,'[\"Winnetou\"]'),(61198,131713,2,'actor',NULL,'[\"Old Firehand\"]'),(61198,894949,3,'actress',NULL,'[\"Nscho-tschi\"]'),(61198,35925,4,'actor',NULL,'[\"Tom\"]'),(61198,901138,5,'director',NULL,NULL),(61198,562015,6,'writer','based on motifs by',NULL),(61198,5126856,7,'writer','screenplay',NULL),(61198,852083,8,'writer','screenplay',NULL),(61198,677457,9,'writer','screenplay',NULL),(61328,279518,10,'cinematographer','director of photography',NULL),(61328,1958,1,'actor',NULL,'[\"Stephen\"]'),(61328,48939,2,'actor',NULL,'[\"Charley\"]'),(61328,765930,3,'actress',NULL,'[\"Anna\"]'),(61328,1868,4,'actor',NULL,'[\"William\"]'),(61328,521334,5,'director',NULL,NULL),(61328,608845,6,'writer','from the novel by',NULL),(61328,56217,7,'writer','screenplay',NULL),(61328,295711,8,'producer','producer',NULL),(61328,6023,9,'composer',NULL,NULL),(61369,597184,10,'writer','adaptation',NULL),(61369,136789,1,'actor',NULL,'[\"Astérix\"]'),(61369,603600,2,'actor',NULL,'[\"Obélix\"]'),(61369,868139,3,'actor',NULL,'[\"Abraracourcix\",\"Le marchand de boeufs\"]'),(61369,431025,4,'actor',NULL,'[\"Assurancetourix\",\"Caligulaminus\"]'),(61369,329679,5,'director','supervising director',NULL),(61369,331453,6,'writer','comic',NULL),(61369,879853,7,'writer','comic',NULL),(61369,490053,8,'writer','adaptation',NULL),(61369,548117,9,'writer','adaptation',NULL),(61385,528995,10,'editor',NULL,NULL),(61385,602,1,'actor',NULL,'[\"Paul Bratter\"]'),(61385,404,2,'actress',NULL,'[\"Corie Bratter\"]'),(61385,964,3,'actor',NULL,'[\"Victor Velasco\"]'),(61385,622450,4,'actress',NULL,'[\"Ethel Banks\"]'),(61385,757256,5,'director',NULL,NULL),(61385,800319,6,'writer','play',NULL),(61385,909259,7,'producer','producer',NULL),(61385,6126,8,'composer',NULL,NULL),(61385,5766,9,'cinematographer','director of photography',NULL),(61391,177228,1,'actor',NULL,'[\"George Spiggott\"]'),(61391,1545,2,'actor',NULL,'[\"Stanley Moon\"]'),(61391,111376,3,'actress',NULL,'[\"Margaret\"]'),(61391,79,4,'actress',NULL,'[\"Lilian Lust\"]'),(61391,2045,5,'director',NULL,NULL),(61391,218778,6,'cinematographer','director of photography',NULL),(61391,546263,7,'editor',NULL,NULL),(61395,5916,10,'cinematographer','director of photography',NULL),(61395,366,1,'actress',NULL,'[\"Séverine Serizy\",\"Belle de Jour\"]'),(61395,814799,2,'actor',NULL,'[\"Pierre Sérizy\"]'),(61395,681566,3,'actor',NULL,'[\"Henri Husson\"]'),(61395,656180,4,'actress',NULL,'[\"Madame Anais\"]'),(61395,320,5,'director',NULL,NULL),(61395,450262,6,'writer','novel',NULL),(61395,140643,7,'writer','adaptation',NULL),(61395,354623,8,'producer','producer',NULL),(61395,354624,9,'producer','producer',NULL),(61398,693747,10,'editor',NULL,NULL),(61398,1076,1,'actress',NULL,'[\"Monica Rivers\"]'),(61398,362249,2,'actor',NULL,'[\"Frank Hawkins\"]'),(61398,2047,3,'actress',NULL,'[\"Matilda\"]'),(61398,1284,4,'actor',NULL,'[\"Albert Dorando\"]'),(61398,640226,5,'director',NULL,NULL),(61398,437189,6,'writer','original story',NULL),(61398,169432,7,'writer','original story',NULL),(61398,779346,8,'composer',NULL,NULL),(61398,225512,9,'cinematographer','director of photography',NULL),(61418,346532,10,'cinematographer','director of photography',NULL),(61418,886,1,'actor',NULL,'[\"Clyde Barrow\"]'),(61418,1159,2,'actress',NULL,'[\"Bonnie Parker\"]'),(61418,689488,3,'actor',NULL,'[\"C.W. Moss\"]'),(61418,432,4,'actor',NULL,'[\"Buck Barrow\"]'),(61418,671957,5,'director',NULL,NULL),(61418,628058,6,'writer','written by',NULL),(61418,914,7,'writer','written by',NULL),(61418,1801,8,'writer',NULL,NULL),(61418,835190,9,'composer',NULL,NULL),(61452,848234,10,'director',NULL,NULL),(61452,57,1,'actor',NULL,'[\"Sir James Bond\"]'),(61452,634,2,'actor',NULL,'[\"Evelyn Tremble (James Bond - 007)\"]'),(61452,266,3,'actress',NULL,'[\"Vesper Lynd (007)\"]'),(61452,80,4,'actor',NULL,'[\"Le Chiffre\"]'),(61452,346436,5,'director',NULL,NULL),(61452,400731,6,'director',NULL,NULL),(61452,1379,7,'director',NULL,NULL),(61452,569825,8,'director',NULL,NULL),(61452,663577,9,'director',NULL,NULL),(61489,18497,10,'composer',NULL,NULL),(61489,62,1,'actor',NULL,'[\"Scott Hayward\",\"\'Tom Wilson\'\"]'),(61489,1193,2,'actress',NULL,'[\"Dianne Carter\"]'),(61489,404298,3,'actor',NULL,'[\"Tom Wilson\",\"\'Scott Heyward\'\"]'),(61489,84642,4,'actor',NULL,'[\"James J. Jamison III\"]'),(61489,618834,5,'director',NULL,NULL),(61489,114948,6,'writer','story and screenplay',NULL),(61489,306831,7,'producer','producer',NULL),(61489,491852,8,'producer','producer',NULL),(61489,506489,9,'producer','producer',NULL),(61495,743,10,'cinematographer',NULL,NULL),(61495,872,1,'actor',NULL,'[\"Adrien\"]'),(61495,689248,2,'actress',NULL,'[\"Haydée\"]'),(61495,690150,3,'actor',NULL,'[\"Daniel\"]'),(61495,431083,4,'actor',NULL,'[\"Writer\"]'),(61495,6445,5,'director',NULL,NULL),(61495,64676,6,'producer','producer',NULL),(61495,775447,7,'producer','producer',NULL),(61495,89337,8,'composer',NULL,NULL),(61495,326833,9,'composer',NULL,NULL),(61512,6277,10,'composer',NULL,NULL),(61512,56,1,'actor',NULL,'[\"Lucas \'Luke\' Jackson\"]'),(61512,1421,2,'actor',NULL,'[\"Dragline\"]'),(61512,1510,3,'actor',NULL,'[\"Captain\"]'),(61512,134201,4,'actor',NULL,'[\"Society Red\"]'),(61512,742341,5,'director',NULL,NULL),(61512,668914,6,'writer','screenplay',NULL),(61512,682757,7,'writer','screenplay',NULL),(61512,237543,8,'writer',NULL,NULL),(61512,140826,9,'producer','producer',NULL),(61523,8,1,'actor',NULL,'[\"Ogden\"]'),(61523,47,2,'actress',NULL,'[\"Natascha\"]'),(61523,152261,3,'actor',NULL,'[\"Harvey\"]'),(61523,1335,4,'actress',NULL,'[\"Martha\"]'),(61523,122,5,'director',NULL,NULL),(61523,258480,6,'producer','producer',NULL),(61523,406471,7,'cinematographer','director of photography',NULL),(61523,355051,8,'editor',NULL,NULL),(61523,39202,9,'production_designer',NULL,NULL),(61576,458126,10,'editor',NULL,NULL),(61576,1352,1,'actor',NULL,'[\"Cat Stevens\"]'),(61576,938231,2,'actor',NULL,'[\"Bill San Antonio\"]'),(61576,817881,3,'actor',NULL,'[\"Hutch Bessy\"]'),(61576,746290,4,'actress',NULL,'[\"Rose\"]'),(61576,171562,5,'director',NULL,NULL),(61576,597086,6,'writer','screenplay',NULL),(61576,195091,7,'producer','producer',NULL),(61576,6267,8,'composer',NULL,NULL),(61576,5671,9,'cinematographer','director of photography',NULL),(61578,6030,10,'composer',NULL,NULL),(61578,1511,1,'actor',NULL,'[\"Major John Reisman\"]'),(61578,308,2,'actor',NULL,'[\"General Worden\"]'),(61578,314,3,'actor',NULL,'[\"Joseph T. Wladislaw\"]'),(61578,1023,4,'actor',NULL,'[\"Victor R. Franko\"]'),(61578,736,5,'director',NULL,NULL),(61578,425913,6,'writer','screen play by',NULL),(61578,375355,7,'writer','screen play by',NULL),(61578,622284,8,'writer','from the novel by',NULL),(61578,405184,9,'producer','producer',NULL),(61590,130492,10,'producer','producer',NULL),(61590,348,1,'actor',NULL,'[\"Carlo Cofield\"]'),(61590,1012,2,'actress',NULL,'[\"Laura Califatti\"]'),(61590,916434,3,'actor',NULL,'[\"Rod Prescott\"]'),(61590,55645,4,'actress',NULL,'[\"Diane Prescott\"]'),(61590,533241,5,'director',NULL,NULL),(61590,908923,6,'writer','screenplay',NULL),(61590,456353,7,'writer','screenplay',NULL),(61590,725009,8,'writer','adaptation',NULL),(61590,816143,9,'writer',NULL,NULL),(61595,18497,10,'composer',NULL,NULL),(61595,62,1,'actor',NULL,'[\"Guy Lambert\"]'),(61595,206341,2,'actress',NULL,'[\"Jill Conway\"]'),(61595,2369,3,'actor',NULL,'[\"Gerald Waverly\"]'),(61595,738635,4,'actress',NULL,'[\"Claire Dunham\"]'),(61595,851537,5,'director',NULL,NULL),(61595,374268,6,'writer','screenplay',NULL),(61595,104572,7,'writer','story',NULL),(61595,76289,8,'producer','producer',NULL),(61595,5563,9,'producer','producer',NULL),(61619,940215,10,'editor',NULL,NULL),(61619,78,1,'actor',NULL,'[\"Cole Thornton\"]'),(61619,53,2,'actor',NULL,'[\"El Dorado Sheriff J.P. Harrah\"]'),(61619,1001,3,'actor',NULL,'[\"Mississippi\"]'),(61619,392392,4,'actress',NULL,'[\"Maudie\"]'),(61619,1328,5,'director',NULL,NULL),(61619,102824,6,'writer','screenplay',NULL),(61619,113689,7,'writer','novel \"The Stars in Their Courses\"',NULL),(61619,725765,8,'composer',NULL,NULL),(61619,5849,9,'cinematographer','director of photography',NULL),(61620,214729,1,'actress',NULL,'[\"Elvira Madigan\",\"Hedvig Jensen, cirkusdanös\"]'),(61620,74547,2,'actor',NULL,'[\"Sixten Sparre, löjtnant\"]'),(61620,540245,3,'actor',NULL,'[\"Kristoffer, Sixtens vän\"]'),(61620,421386,4,'actress',NULL,'[\"Cleo, kokerskan\"]'),(61620,927090,5,'director',NULL,NULL),(61620,512469,6,'writer','ballad \"Sorgeliga saker hända\"',NULL),(61620,74073,7,'producer','producer',NULL),(61620,273033,8,'producer','producer',NULL),(61620,675608,9,'cinematographer',NULL,NULL),(61634,568756,10,'composer',NULL,NULL),(61634,57,1,'actor',NULL,'[\"Philippe de Montfaucon\"]'),(61634,1790,2,'actress',NULL,'[\"Odile de Caray\"]'),(61634,39,3,'actress',NULL,'[\"Catherine de Montfaucon\"]'),(61634,587,4,'actor',NULL,'[\"Pere Dominic\"]'),(61634,496746,5,'director',NULL,NULL),(61634,261911,6,'writer','screenplay',NULL),(61634,614197,7,'writer','screenplay',NULL),(61634,130492,8,'producer','producer',NULL),(61634,710388,9,'producer','producer',NULL),(61655,793939,10,'production_designer',NULL,NULL),(61655,532290,1,'actor',NULL,'[\"Professor Abronsius\"]'),(61655,591,2,'actor',NULL,'[\"Alfred\"]'),(61655,60023,3,'actor',NULL,'[\"Shagal the Inn-Keeper\"]'),(61655,732305,4,'actress',NULL,'[\"Rebecca Shagal\"]'),(61655,102722,5,'writer','story',NULL),(61655,349667,6,'producer','producer',NULL),(61655,6156,7,'composer',NULL,NULL),(61655,5878,8,'cinematographer','director of photography',NULL),(61655,570608,9,'editor',NULL,NULL),(61695,619208,10,'producer','producer',NULL),(61695,393291,1,'actor',NULL,'[\"Foreman Shiro Tsutsumi\"]'),(61695,879918,2,'actor',NULL,'[\"Tatsuemon Kanamura\"]'),(61695,440381,3,'actress',NULL,'[\"Sumiko Kanamura\"]'),(61695,8367,4,'actor',NULL,'[\"Eiichi Kanamura\"]'),(61695,950633,5,'director',NULL,NULL),(61695,849060,6,'director',NULL,NULL),(61695,847177,7,'writer',NULL,NULL),(61695,291078,8,'producer','producer',NULL),(61695,619207,9,'producer','producer',NULL),(61722,5892,10,'cinematographer','director of photography',NULL),(61722,163,1,'actor',NULL,'[\"Ben Braddock\"]'),(61722,843,2,'actress',NULL,'[\"Mrs. Robinson\"]'),(61722,1684,3,'actress',NULL,'[\"Elaine Robinson\"]'),(61722,200122,4,'actor',NULL,'[\"Mr. Braddock\"]'),(61722,1566,5,'director',NULL,NULL),(61722,932229,6,'writer','screenplay',NULL),(61722,377750,7,'writer','screenplay',NULL),(61722,916047,8,'writer','based on the novel by',NULL),(61722,877274,9,'producer','producer',NULL),(61735,165197,10,'production_designer',NULL,NULL),(61735,75,1,'actor',NULL,'[\"Matt Drayton\"]'),(61735,1627,2,'actor',NULL,'[\"John Prentice\"]'),(61735,31,3,'actress',NULL,'[\"Christina Drayton\"]'),(61735,396455,4,'actress',NULL,'[\"Joey Drayton\"]'),(61735,6452,5,'director',NULL,NULL),(61735,741740,6,'writer','written by',NULL),(61735,6030,7,'composer',NULL,NULL),(61735,495402,8,'cinematographer','director of photography',NULL),(61735,2717,9,'editor',NULL,NULL),(61747,5880,10,'cinematographer','director of photography',NULL),(61747,142,1,'actor',NULL,'[\"Marshal Jed Cooper\"]'),(61747,828447,2,'actress',NULL,'[\"Rachel Warren\"]'),(61747,385757,3,'actor',NULL,'[\"Judge Fenton\"]'),(61747,3225,4,'actor',NULL,'[\"Captain Wilson\"]'),(61747,692872,5,'director',NULL,NULL),(61747,293480,6,'writer','written by',NULL),(61747,325267,7,'writer','written by',NULL),(61747,6089,8,'composer',NULL,NULL),(61747,459660,9,'cinematographer','director of photography',NULL),(61785,325623,10,'editor',NULL,NULL),(61785,18698,1,'actress',NULL,'[\"Toni\"]'),(61785,537961,2,'self',NULL,'[\"Self\"]'),(61785,105234,3,'actress',NULL,'[\"Dody\"]'),(61785,143574,4,'actress',NULL,'[\"Chris\"]'),(61785,77523,5,'director',NULL,NULL),(61785,9250491,6,'writer','original story',NULL),(61785,553487,7,'producer','producer',NULL),(61785,9250489,8,'composer',NULL,NULL),(61785,555019,9,'cinematographer',NULL,NULL),(61811,5549,10,'cinematographer','director of photography',NULL),(61811,1627,1,'actor',NULL,'[\"Det. Virgil Tibbs\"]'),(61811,1768,2,'actor',NULL,'[\"Chief Bill Gillespie\"]'),(61811,643105,3,'actor',NULL,'[\"Officer Sam Wood\"]'),(61811,335519,4,'actress',NULL,'[\"Mrs. Colbert\"]'),(61811,422484,5,'director',NULL,NULL),(61811,798103,6,'writer','screenplay',NULL),(61811,50398,7,'writer','based on a novel by',NULL),(61811,592387,8,'producer','producer',NULL),(61811,5065,9,'composer',NULL,NULL),(61834,529353,10,'actress',NULL,'[\"Ulla\"]'),(61834,638784,1,'self',NULL,'[\"Self\"]'),(61834,803672,2,'self',NULL,'[\"Self\"]'),(61834,14062,3,'self',NULL,'[\"Self\"]'),(61834,511856,4,'actor',NULL,'[\"Rune Nyman\"]'),(61834,511825,5,'producer','producer',NULL),(61834,922558,6,'cinematographer',NULL,NULL),(61834,906350,7,'actress',NULL,'[\"Runes kvinna\"]'),(61834,351401,8,'actress',NULL,'[\"Marie\"]'),(61834,632269,9,'actor',NULL,'[\"Magnus\"]'),(61852,456017,10,'writer','inspired by the Mowgli stories',NULL),(61852,365201,1,'actor',NULL,'[\"Baloo the Bear\"]'),(61852,1982,2,'actor',NULL,'[\"Bagheera the Panther\"]'),(61852,697515,3,'actor',NULL,'[\"King Louie of the Apes\"]'),(61852,718624,4,'actor',NULL,'[\"Mowgli the Man Cub\"]'),(61852,718627,5,'director',NULL,NULL),(61852,166307,6,'writer','story',NULL),(61852,942723,7,'writer','story',NULL),(61852,27011,8,'writer','story',NULL),(61852,314788,9,'writer','story',NULL),(61856,945228,10,'cinematographer',NULL,NULL),(61856,847396,1,'actor',NULL,'[\"Dr. Kusumi\"]'),(61856,473530,2,'actor',NULL,'[\"Goro Maki\"]'),(61856,535330,3,'actress',NULL,'[\"Riko (Saeko) Matsumiya\"]'),(61856,386284,4,'actor',NULL,'[\"Fujisaki\"]'),(61856,297974,5,'director',NULL,NULL),(61856,782883,6,'writer',NULL,NULL),(61856,793049,7,'writer',NULL,NULL),(61856,849083,8,'producer','producer',NULL),(61856,766496,9,'composer',NULL,NULL),(61879,98390,10,'production_designer',NULL,NULL),(61879,387192,1,'actor',NULL,'[\"Old Man\"]'),(61879,394601,2,'actress',NULL,'[\"Martha\"]'),(61879,418702,3,'actor',NULL,'[\"Old Man\"]'),(61879,435849,4,'actress',NULL,'[\"Judith\"]'),(61879,773002,5,'director',NULL,NULL),(61879,433059,6,'writer','screenplay',NULL),(61879,460254,7,'composer',NULL,NULL),(61879,534428,8,'cinematographer',NULL,NULL),(61879,405407,9,'editor',NULL,NULL),(61882,645448,10,'writer','screenplay',NULL),(61882,794425,1,'actor',NULL,'[\"Gorô Hanada\"]'),(61882,644558,2,'actress',NULL,'[\"Mami Hanada\"]'),(61882,30432,3,'actress',NULL,'[\"Misako Nakajô\"]'),(61882,465531,4,'actor',NULL,'[\"No. 1\"]'),(61882,840671,5,'director',NULL,NULL),(61882,649033,6,'writer','screenplay',NULL),(61882,454118,7,'writer','screenplay',NULL),(61882,849099,8,'writer','screenplay',NULL),(61882,814232,9,'writer','screenplay',NULL),(61955,99099,10,'editor',NULL,NULL),(61955,603402,1,'actress',NULL,'[\"Julie Kohler\"]'),(61955,108400,2,'actor',NULL,'[\"Corey\"]'),(61955,99677,3,'actor',NULL,'[\"Robert Coral\"]'),(61955,219342,4,'actor',NULL,'[\"Fergus\"]'),(61955,76,5,'director',NULL,NULL),(61955,941280,6,'writer','from the novel by',NULL),(61955,723827,7,'writer','adaptation and dialogue',NULL),(61955,2136,8,'composer',NULL,NULL),(61955,184170,9,'cinematographer',NULL,NULL),(62082,47268,10,'production_designer',NULL,NULL),(62082,587401,1,'actor',NULL,'[\"The Stranger\"]'),(62082,866186,2,'actress',NULL,'[\"Flory\"]'),(62082,525794,3,'actor',NULL,'[\"Oaks\"]'),(62082,703318,4,'actor',NULL,'[\"Bill Templer\"]'),(62082,703368,5,'director',NULL,NULL),(62082,33490,6,'writer','story and screenplay',NULL),(62082,215450,7,'writer','from an idea by',NULL),(62082,70688,8,'writer','assistant writer',NULL),(62082,888947,9,'composer',NULL,NULL),(62113,190834,10,'cinematographer',NULL,NULL),(62113,1036,1,'actress',NULL,'[\"Elena\",\"Ana\"]'),(62113,7023,2,'actor',NULL,'[\"Julián\"]'),(62113,562841,3,'actor',NULL,'[\"Pablo\"]'),(62113,715127,4,'actor',NULL,'[\"Arturo\"]'),(62113,767022,5,'director',NULL,NULL),(62113,44156,6,'writer','written by',NULL),(62113,284638,7,'writer','written by',NULL),(62113,703262,8,'producer','producer',NULL),(62113,210767,9,'composer',NULL,NULL),(62136,934711,10,'cinematographer','director of photography',NULL),(62136,4244,1,'actor',NULL,'[\"Monsieur Hulot\"]'),(62136,219332,2,'actress',NULL,'[\"Barbara, la touriste américaine\"]'),(62136,537392,3,'actress',NULL,'[\"La compagne de M. Schultz\"]'),(62136,750114,4,'actress',NULL,'[\"La vendeuse de lunettes\"]'),(62136,481401,5,'writer','collaboration',NULL),(62136,118290,6,'writer','additional English dialogue',NULL),(62136,1088124,7,'producer','producer',NULL),(62136,501120,8,'composer',NULL,NULL),(62136,45920,9,'cinematographer','director of photography',NULL),(62151,141167,10,'production_designer',NULL,NULL),(62151,1352,1,'actor',NULL,'[\"Django\"]'),(62151,290955,2,'actor',NULL,'[\"David Barry\"]'),(62151,247642,3,'actor',NULL,'[\"Lucas\"]'),(62151,800074,4,'actress',NULL,'[\"Mercedes\"]'),(62151,49728,5,'director',NULL,NULL),(62151,744081,6,'writer','story',NULL),(62151,720839,7,'composer',NULL,NULL),(62151,5645,8,'cinematographer','director of photography',NULL),(62151,15760,9,'editor',NULL,NULL),(62164,844455,10,'editor',NULL,NULL),(62164,879556,1,'actress',NULL,'[\"Nemecsek\'s mother\"]'),(62164,701780,2,'actor',NULL,'[\"Rácz tanár úr\"]'),(62164,469050,3,'actor',NULL,'[\"Janó\"]'),(62164,447256,4,'actor',NULL,'[\"Nemecsek Ernõ\"]'),(62164,299586,5,'director',NULL,NULL),(62164,92015,6,'writer','writer',NULL),(62164,597175,7,'writer','novel \"A Pál utcai fiúk\"',NULL),(62164,678334,8,'composer',NULL,NULL),(62164,407859,9,'cinematographer',NULL,NULL),(62207,444113,10,'composer',NULL,NULL),(62207,48939,1,'actor',NULL,'[\"Paul Clifton\"]'),(62207,678620,2,'actress',NULL,'[\"Kate Clifton\"]'),(62207,95718,3,'actor',NULL,'[\"Inspector George Langdon\"]'),(62207,277975,4,'actor',NULL,'[\"Robinson\"]'),(62207,946811,5,'director',NULL,NULL),(62207,101756,6,'writer','screenplay',NULL),(62207,548999,7,'writer','screenplay',NULL),(62207,933449,8,'writer','based on a treatment by',NULL),(62207,214303,9,'producer','producer',NULL),(62229,6262,10,'composer',NULL,NULL),(62229,1128,1,'actor',NULL,'[\"Jef Costello\"]'),(62229,673749,2,'actor',NULL,'[\"Le Commissaire\"]'),(62229,217677,3,'actress',NULL,'[\"Jane Lagrange\"]'),(62229,742975,4,'actress',NULL,'[\"La pianiste\"]'),(62229,578483,5,'director',NULL,NULL),(62229,572819,6,'writer','novel \"The Ronin\"',NULL),(62229,670958,7,'writer',NULL,NULL),(62229,96182,8,'producer','producer',NULL),(62229,529646,9,'producer','producer',NULL),(62281,943981,10,'cinematographer',NULL,NULL),(62281,878240,1,'actress',NULL,'[\"Brenda\"]'),(62281,1655,2,'actress',NULL,'[\"Yvonne\"]'),(62281,1868,3,'actor',NULL,'[\"Tom Wabe\"]'),(62281,703032,4,'actress',NULL,'[\"Charlotte Brillig\"]'),(62281,204471,5,'director',NULL,NULL),(62281,578155,6,'writer',NULL,NULL),(62281,589650,7,'producer','producer',NULL),(62281,690638,8,'producer','producer',NULL),(62281,11709,9,'composer',NULL,NULL),(62362,319574,10,'editor',NULL,NULL),(62362,267,1,'actress',NULL,'[\"Millie Dillmount\"]'),(62362,289038,2,'actor',NULL,'[\"Jimmy Smith\"]'),(62362,1546,3,'actress',NULL,'[\"Miss Dorothy Brown\"]'),(62362,151919,4,'actress',NULL,'[\"Muzzy Van Hossmere\"]'),(62362,1351,5,'director',NULL,NULL),(62362,606886,6,'writer','written by',NULL),(62362,403022,7,'producer','producer',NULL),(62362,930,8,'composer',NULL,NULL),(62362,5797,9,'cinematographer','director of photography',NULL),(62373,113693,10,'producer','producer',NULL),(62373,828447,1,'actress',NULL,'[\"Emily Biddle\"]'),(62373,1229,2,'actor',NULL,'[\"Maj. Wolcott\"]'),(62373,676928,3,'actor',NULL,'[\"Blue Lake\"]'),(62373,137046,4,'actor',NULL,'[\"Billy Cat\"]'),(62373,439597,5,'director',NULL,NULL),(62373,339,6,'director',NULL,NULL),(62373,938390,7,'writer','novel \"The Southern Blade\"',NULL),(62373,938391,8,'writer','novel \"The Southern Blade\"',NULL),(62373,919925,9,'writer',NULL,NULL),(62376,1627,1,'actor',NULL,'[\"Mark Thackeray\"]'),(62376,2096,2,'actress',NULL,'[\"Pamela Dare\"]'),(62376,730938,3,'actor',NULL,'[\"Denham\"]'),(62376,447648,4,'actress',NULL,'[\"Gillian Blanchard\"]'),(62376,165412,5,'director',NULL,NULL),(62376,104075,6,'writer','novel',NULL),(62376,6112,7,'composer',NULL,NULL),(62376,66607,8,'cinematographer','director of photography',NULL),(62376,861576,9,'editor',NULL,NULL),(62407,546263,10,'editor',NULL,NULL),(62407,30,1,'actress',NULL,'[\"Joanna Wallace\"]'),(62407,1215,2,'actor',NULL,'[\"Mark Wallace\"]'),(62407,111376,3,'actress',NULL,'[\"Cathy Manchester\"]'),(62407,200122,4,'actor',NULL,'[\"Howard Manchester\"]'),(62407,2045,5,'director',NULL,NULL),(62407,710698,6,'writer','written by',NULL),(62407,49,7,'composer',NULL,NULL),(62407,5666,8,'cinematographer','director of photography',NULL),(62407,346537,9,'editor',NULL,NULL),(62411,1709539,10,'cinematographer',NULL,NULL),(62411,645402,1,'actor',NULL,'[\"Dr. Kato\"]'),(62411,915680,2,'actor',NULL,'[\"Capt. Sano\"]'),(62411,361724,3,'actress',NULL,'[\"Michiko\"]'),(62411,623660,4,'actress',NULL,'[\"Lisa\"]'),(62411,631551,5,'director',NULL,NULL),(62411,410929,6,'writer',NULL,NULL),(62411,609408,7,'writer',NULL,NULL),(62411,412827,8,'composer',NULL,NULL),(62411,386281,9,'cinematographer',NULL,NULL),(62426,792694,10,'producer','producer',NULL),(62426,447648,1,'actress',NULL,'[\"Polly\"]'),(62426,913993,2,'actor',NULL,'[\"Pete\"]'),(62426,513520,3,'actress',NULL,'[\"Sylvie\"]'),(62426,692883,4,'actress',NULL,'[\"Rube\"]'),(62426,172772,5,'director',NULL,NULL),(62426,809787,6,'writer','screenplay',NULL),(62426,242707,7,'writer','adapted from the book by',NULL),(62426,102646,8,'producer','producer',NULL),(62426,369743,9,'producer','producer',NULL),(62430,200125,10,'cinematographer','director of photography',NULL),(62430,662808,1,'actress',NULL,'[\"Anne Welles\"]'),(62430,1157,2,'actress',NULL,'[\"Neely O\'Hara\"]'),(62430,121826,3,'actor',NULL,'[\"Lyon Burke\"]'),(62430,1790,4,'actress',NULL,'[\"Jennifer North\"]'),(62430,733476,5,'director',NULL,NULL),(62430,839797,6,'writer','novel \"Valley of the Dolls\"',NULL),(62430,222079,7,'writer','screenplay',NULL),(62430,455510,8,'writer','screenplay',NULL),(62430,918694,9,'producer','producer',NULL),(62446,1436264,10,'cinematographer',NULL,NULL),(62446,694966,1,'actress',NULL,'[\"Brigitte\"]'),(62446,504760,2,'actor',NULL,'[\"Thomas\"]'),(62446,222533,3,'actress',NULL,'[\"Brigitte\"]'),(62446,667418,4,'actress',NULL,'[\"La soeur vampire rousse\"]'),(62446,210811,5,'director',NULL,NULL),(62446,1734633,6,'writer',NULL,NULL),(62446,783519,7,'producer','producer',NULL),(62446,4007038,8,'composer',NULL,NULL),(62446,1100740,9,'composer',NULL,NULL),(62467,49,10,'composer',NULL,NULL),(62467,30,1,'actress',NULL,'[\"Susy Hendrix\"]'),(62467,273,2,'actor',NULL,'[\"Roat\",\"Roat Jr.\",\"Roat Sr.\"]'),(62467,1077,3,'actor',NULL,'[\"Mike Talman\"]'),(62467,956544,4,'actor',NULL,'[\"Sam Hendrix\"]'),(62467,950109,5,'director',NULL,NULL),(62467,461425,6,'writer','based on the play by',NULL),(62467,140588,7,'writer','screenplay',NULL),(62467,358568,8,'writer','screenplay',NULL),(62467,2072,9,'producer','producer',NULL),(62502,201787,10,'editor',NULL,NULL),(62502,511,1,'actress',NULL,'[\"Paulette\",\"Maria Teresa\",\"Linda\"]'),(62502,634,2,'actor',NULL,'[\"Jean (segment \\\"Funeral Procession\\\")\"]'),(62502,545294,3,'actress',NULL,'[\"Annette (segment \\\"Funeral Procession\\\")\"]'),(62502,106387,4,'actor',NULL,'[\"Giorgio (segment \\\"Amateur Night\\\")\"]'),(62502,1120,5,'director',NULL,NULL),(62502,953790,6,'writer','screenplay',NULL),(62502,4453,7,'producer','producer',NULL),(62502,6221,8,'composer',NULL,NULL),(62502,559300,9,'cinematographer','director of photography',NULL),(62512,110482,10,'producer','producer',NULL),(62512,125,1,'actor',NULL,'[\"James Bond\"]'),(62512,906686,2,'actress',NULL,'[\"Aki\"]'),(62512,357240,3,'actress',NULL,'[\"Kissy\"]'),(62512,848533,4,'actor',NULL,'[\"Tiger Tanaka\"]'),(62512,318150,5,'director',NULL,NULL),(62512,89169,6,'writer','additional story material by',NULL),(62512,1094,7,'writer','screenplay by',NULL),(62512,1220,8,'writer','novel',NULL),(62512,420845,9,'writer','story idea',NULL),(62534,363899,10,'producer','producer',NULL),(62534,3,1,'actress',NULL,'[\"Cecile\"]'),(62534,856187,2,'actor',NULL,'[\"Vincent\"]'),(62534,734000,3,'actor',NULL,'[\"Philippe\"]'),(62534,433150,4,'actor',NULL,'[\"McClintock\"]'),(62534,99984,5,'director',NULL,NULL),(62534,334301,6,'writer','adapted by',NULL),(62534,418625,7,'writer','adapted by',NULL),(62534,441194,8,'writer','original story',NULL),(62534,181928,9,'producer','producer',NULL),(62622,486127,10,'production_designer',NULL,NULL),(62622,1158,1,'actor',NULL,'[\"Dr. Dave Bowman\"]'),(62622,516972,2,'actor',NULL,'[\"Dr. Frank Poole\"]'),(62622,843213,3,'actor',NULL,'[\"Dr. Heywood R. Floyd\"]'),(62622,725220,4,'actor',NULL,'[\"Moon-Watcher\"]'),(62622,40,5,'director',NULL,NULL),(62622,2009,6,'writer','screenplay by',NULL),(62622,5910,7,'cinematographer','director of photography',NULL),(62622,522487,8,'editor','film editor',NULL),(62622,33658,9,'production_designer',NULL,NULL),(62657,169344,10,'cinematographer','director of photography',NULL),(62657,1509,1,'actor',NULL,'[\"Matt Helm\"]'),(62657,919,2,'actress',NULL,'[\"Francesca Madeiros\"]'),(62657,750023,3,'actress',NULL,'[\"Sheila Sommers\"]'),(62657,339834,4,'actor',NULL,'[\"MacDonald\"]'),(62657,505610,5,'director',NULL,NULL),(62657,357824,6,'writer','book \"The Ambushers\"',NULL),(62657,48511,7,'writer','screenplay',NULL),(62657,2164,8,'producer','producer',NULL),(62657,599359,9,'composer',NULL,NULL),(62687,10897226,10,'writer','text: English version',NULL),(62687,136789,1,'actor',NULL,'[\"Astérix\",\"Idéfix\",\"L\'espion de César\"]'),(62687,603600,2,'actor',NULL,'[\"Obélix\"]'),(62687,206317,3,'actress',NULL,'[\"Cléopâtre\"]'),(62687,51281,4,'actor',NULL,'[\"Tournevis\"]'),(62687,331453,5,'director',NULL,NULL),(62687,879853,6,'director',NULL,NULL),(62687,548117,7,'writer','adaptation',NULL),(62687,490052,8,'writer','adaptation',NULL),(62687,853456,9,'writer','screenplay collaboration',NULL),(62711,939618,10,'writer','in collaboration with',NULL),(62711,404,1,'actress',NULL,'[\"Barbarella\"]'),(62711,492342,2,'actor',NULL,'[\"Pygar\"]'),(62711,657848,3,'actress',NULL,'[\"The Great Tyrant\"]'),(62711,642675,4,'actor',NULL,'[\"Concierge\",\"Durand-Durand\"]'),(62711,671862,5,'director',NULL,NULL),(62711,286121,6,'writer','from the best seller \"Barbarella\" by',NULL),(62711,816143,7,'writer','screenplay',NULL),(62711,115892,8,'writer','in collaboration with',NULL),(62711,94558,9,'writer','in collaboration with',NULL),(62765,6277,10,'composer',NULL,NULL),(62765,537,1,'actor',NULL,'[\"Det. Lt. Frank Bullitt\"]'),(62765,302,2,'actress',NULL,'[\"Cathy\"]'),(62765,1816,3,'actor',NULL,'[\"Walter Chalmers\"]'),(62765,330150,4,'actor',NULL,'[\"Det. Delgetti\"]'),(62765,946811,5,'director',NULL,NULL),(62765,874450,6,'writer','screenplay',NULL),(62765,459067,7,'writer','screenplay',NULL),(62765,279302,8,'writer','novel \"Mute Witness\"',NULL),(62765,195358,9,'producer','producer',NULL),(62782,829101,10,'cinematographer','director of photography',NULL),(62782,416228,1,'actor',NULL,'[\"Sir Sidney Ruff-Diamond\"]'),(62782,931054,2,'actor',NULL,'[\"The Khasi of Kalabar\"]'),(62782,1889,3,'actor',NULL,'[\"Pte. James Widdle\"]'),(62782,145321,4,'actor',NULL,'[\"Capt. Keene\"]'),(62782,858873,5,'director',NULL,NULL),(62782,745349,6,'writer','screenplay',NULL),(62782,488672,7,'writer','additional material',NULL),(62782,737127,8,'producer','producer',NULL),(62782,736864,9,'composer',NULL,NULL),(62794,826114,10,'editor',NULL,NULL),(62794,731772,1,'actor',NULL,'[\"Charly Gordon\"]'),(62794,1954,2,'actress',NULL,'[\"Alice Kinian\"]'),(62794,803785,3,'actress',NULL,'[\"Dr. Anna Straus\"]'),(62794,417824,4,'actor',NULL,'[\"Dr. Richard Nemur\"]'),(62794,625680,5,'director',NULL,NULL),(62794,450797,6,'writer','novel \"Flowers for Algernon\"',NULL),(62794,798103,7,'writer','screenplay',NULL),(62794,788170,8,'composer',NULL,NULL),(62794,5817,9,'cinematographer','director of photography',NULL),(62803,792556,10,'composer',NULL,NULL),(62803,1813,1,'actor',NULL,'[\"Caractacus Potts\"]'),(62803,398141,2,'actress',NULL,'[\"Truly Scrumptious\"]'),(62803,420383,3,'actor',NULL,'[\"Grandpa Potts\"]'),(62803,1350,4,'actor',NULL,'[\"Toymaker\"]'),(62803,400731,5,'director',NULL,NULL),(62803,1220,6,'writer','novel',NULL),(62803,1094,7,'writer','screenplay by',NULL),(62803,537363,8,'writer','additional dialogue by',NULL),(62803,110482,9,'producer','producer',NULL),(62851,945218,10,'editor',NULL,NULL),(62851,847033,1,'actress',NULL,'[\"Kozasa Hanabusa\"]'),(62851,31890,2,'actor',NULL,'[\"Tadafumi Hanabusa\"]'),(62851,297754,3,'actor',NULL,'[\"Kogenta Sarumaru\"]'),(62851,327104,4,'actor',NULL,'[\"Samanosuke Oodate\"]'),(62851,946638,5,'director',NULL,NULL),(62851,948940,6,'writer',NULL,NULL),(62851,619211,7,'producer','producer',NULL),(62851,6136,8,'composer',NULL,NULL),(62851,605709,9,'cinematographer',NULL,NULL),(62852,3049533,10,'actor',NULL,'[\"Sanpei\"]'),(62852,632495,1,'actor',NULL,'[\"Tsurukichi\"]'),(62852,394658,2,'actor',NULL,'[\"Daisaku\"]'),(62852,5886258,3,'actor',NULL,'[\"Kinta\"]'),(62852,5886257,4,'actor',NULL,'[\"Sugitatsu\"]'),(62852,605245,5,'director',NULL,NULL),(62852,948940,6,'writer',NULL,NULL),(62852,6136,7,'composer',NULL,NULL),(62852,945597,8,'actor',NULL,'[\"Syôhachi\"]'),(62852,8384,9,'actor',NULL,'[\"Hidanokami Arakawa\"]'),(62853,357278,10,'actor',NULL,'[\"Farmer 2\"]'),(62853,393291,1,'actor',NULL,'[\"Lord Juro\"]'),(62853,297788,2,'actress',NULL,'[\"Lady Sayuri\"]'),(62853,555394,3,'actor',NULL,'[\"Dodohei\"]'),(62853,437176,4,'actor',NULL,'[\"Lord Danjô Mikoshiba\"]'),(62853,593014,5,'director',NULL,NULL),(62853,948940,6,'writer',NULL,NULL),(62853,619211,7,'producer','producer',NULL),(62853,6136,8,'composer',NULL,NULL),(62853,297893,9,'actor',NULL,'[\"Ikkaku Arai\"]'),(62870,6214,10,'composer',NULL,NULL),(62870,1428,1,'actor',NULL,'[\"Le marquis de Sade\"]'),(62870,694454,2,'actress',NULL,'[\"Justine\"]'),(62870,737538,3,'actress',NULL,'[\"Juliette\"]'),(62870,223326,4,'actress',NULL,'[\"Claudine\"]'),(62870,1238,5,'director',NULL,NULL),(62870,211381,6,'writer','novel: Justine ou les malheurs de la vertu',NULL),(62870,869935,7,'writer','screenplay',NULL),(62870,220383,8,'writer','screenplay',NULL),(62870,11901957,9,'writer','screenplay',NULL),(62873,263372,10,'production_designer',NULL,NULL),(62873,366,1,'actress',NULL,'[\"Delphine Garnier\"]'),(62873,1995,2,'actor',NULL,'[\"Etienne\"]'),(62873,233753,3,'actress',NULL,'[\"Solange Garnier\"]'),(62873,674742,4,'actor',NULL,'[\"Maxence\"]'),(62873,218840,5,'director',NULL,NULL),(62873,326017,6,'producer','producer',NULL),(62873,6166,7,'composer',NULL,NULL),(62873,5669,8,'cinematographer',NULL,NULL),(62873,273880,9,'editor',NULL,NULL),(62909,335264,10,'cinematographer','director of photography',NULL),(62909,489,1,'actor',NULL,'[\"Dracula\"]'),(62909,203959,2,'actor',NULL,'[\"Monsignor\"]'),(62909,138040,3,'actress',NULL,'[\"Maria\"]'),(62909,263941,4,'actress',NULL,'[\"Zena\"]'),(62909,5711,5,'director',NULL,NULL),(62909,385573,6,'writer','screenplay',NULL),(62909,831290,7,'writer','based on the character created by',NULL),(62909,949239,8,'producer','producer',NULL),(62909,2302,9,'composer',NULL,NULL),(62925,844454,10,'cinematographer',NULL,NULL),(62925,468479,1,'actor',NULL,'[\"Bornemissza Gergely\"]'),(62925,892917,2,'actress',NULL,'[\"Cecey Éva\"]'),(62925,802458,3,'actor',NULL,'[\"Dobó István\"]'),(62925,466238,4,'actor',NULL,'[\"Bornemissza Jancsika\"]'),(62925,904651,5,'director',NULL,NULL),(62925,350662,6,'writer','novel',NULL),(62925,625909,7,'writer','screenplay',NULL),(62925,639067,8,'producer','producer',NULL),(62925,267565,9,'composer',NULL,NULL),(62990,6277,10,'composer',NULL,NULL),(62990,1158,1,'actor',NULL,'[\"Paul Grenfell\"]'),(62990,6800,2,'actress',NULL,'[\"Jill Banford\"]'),(62990,382391,3,'actress',NULL,'[\"Ellen March\"]'),(62990,606560,4,'actor',NULL,'[\"Overstreet\"]'),(62990,41932,5,'director',NULL,NULL),(62990,137573,6,'writer','screenplay',NULL),(62990,462321,7,'writer','screenplay',NULL),(62990,492692,8,'writer','novella',NULL),(62990,835105,9,'producer','producer',NULL),(62994,762383,10,'editor',NULL,NULL),(62994,659,1,'actress',NULL,'[\"Fanny Brice\"]'),(62994,1725,2,'actor',NULL,'[\"Nick Arnstein\"]'),(62994,575552,3,'actress',NULL,'[\"Rose Brice\"]'),(62994,4282,4,'actress',NULL,'[\"Georgia James\"]'),(62994,943758,5,'director',NULL,NULL),(62994,501973,6,'writer','based on the musical play by',NULL),(62994,823256,7,'producer','producer',NULL),(62994,6312,8,'composer',NULL,NULL),(62994,5889,9,'cinematographer','director of photography',NULL),(63000,457609,10,'cinematographer',NULL,NULL),(63000,393291,1,'actor',NULL,'[\"Scout Master Mr. Shimida\"]'),(63000,847420,2,'actor',NULL,'[\"Masao Nakaya\"]'),(63000,1342123,3,'actor',NULL,'[\"Jim Crane\"]'),(63000,944850,4,'actress',NULL,'[\"Mariko\"]'),(63000,950633,5,'director',NULL,NULL),(63000,849060,6,'director',NULL,NULL),(63000,847177,7,'writer',NULL,NULL),(63000,619207,8,'producer','producer',NULL),(63000,386403,9,'composer',NULL,NULL),(63010,6090,10,'composer',NULL,NULL),(63010,1012,1,'actress',NULL,'[\"Rosa Nicolosi\"]'),(63010,626259,2,'actor',NULL,'[\"Capt. Bellodi\"]'),(63010,2011,3,'actor',NULL,'[\"Don Mariano Arena\"]'),(63010,162326,4,'actor',NULL,'[\"Zecchinetta\"]'),(63010,198765,5,'director',NULL,NULL),(63010,685316,6,'writer','writer',NULL),(63010,778432,7,'writer','novel',NULL),(63010,139527,8,'producer','producer',NULL),(63010,232223,9,'producer','producer',NULL),(63049,868074,1,'actor',NULL,'[\"Peter\"]'),(63049,427888,2,'actor',NULL,'[\"Davy\"]'),(63049,4880,3,'actor',NULL,'[\"Micky\"]'),(63049,626452,4,'actor',NULL,'[\"Mike\"]'),(63049,706182,5,'director',NULL,NULL),(63049,197,6,'writer','written by',NULL),(63049,401066,7,'cinematographer','director of photography',NULL),(63049,694762,8,'editor',NULL,NULL),(63060,87467,10,'editor',NULL,NULL),(63060,78,1,'actor',NULL,'[\"Chance Buckman\"]'),(63060,1684,2,'actress',NULL,'[\"Tish Buckman\"]'),(63060,1380,3,'actor',NULL,'[\"Greg Parker\"]'),(63060,587256,4,'actress',NULL,'[\"Madelyn Buckman\"]'),(63060,572132,5,'director',NULL,NULL),(63060,400236,6,'writer','screenplay by',NULL),(63060,37818,7,'producer','producer',NULL),(63060,6260,8,'composer',NULL,NULL),(63060,5670,9,'cinematographer','director of photography',NULL),(63121,710388,10,'producer','producer',NULL),(63121,1369,1,'actor',NULL,'[\"Cdr. James Ferraday\"]'),(63121,308,2,'actor',NULL,'[\"Boris Vaslov\"]'),(63121,1526,3,'actor',NULL,'[\"David Jones\"]'),(63121,987,4,'actor',NULL,'[\"Capt. Leslie Anders\"]'),(63121,836328,5,'director',NULL,NULL),(63121,533745,6,'writer','novel',NULL),(63121,382227,7,'writer','screenplay',NULL),(63121,277807,8,'writer','screen story',NULL),(63121,122446,9,'writer',NULL,NULL),(63172,849083,10,'producer','producer',NULL),(63172,473530,1,'actor',NULL,'[\"SY-3 Captain Katsuo Yamabe\"]'),(63172,853392,2,'actor',NULL,'[\"Dr. Yoshido\"]'),(63172,462085,3,'actress',NULL,'[\"Kyoko Manabe\"]'),(63172,875237,4,'actor',NULL,'[\"Dr. Otani\"]'),(63172,393094,5,'director',NULL,NULL),(63172,297974,6,'director',NULL,NULL),(63172,454119,7,'writer',NULL,NULL),(63172,496556,8,'producer','executive producer',NULL),(63172,1008137,9,'producer','producer',NULL),(63185,524597,10,'editor',NULL,NULL),(63185,717189,1,'actress',NULL,'[\"June Buckridge\"]'),(63185,948772,2,'actress',NULL,'[\"Alice \'Childie\' McNaught\"]'),(63185,114982,3,'actress',NULL,'[\"Mercy Croft\"]'),(63185,292226,4,'actor',NULL,'[\"Leo Lockhart\"]'),(63185,736,5,'director',NULL,NULL),(63185,546105,6,'writer','from the play by',NULL),(63185,375355,7,'writer','screenplay',NULL),(63185,6086,8,'composer',NULL,NULL),(63185,5657,9,'cinematographer','director of photography',NULL),(63227,89182,10,'editor',NULL,NULL),(63227,564,1,'actor',NULL,'[\"Henry II\"]'),(63227,31,2,'actress',NULL,'[\"Eleanor of Aquitaine\"]'),(63227,164,3,'actor',NULL,'[\"Richard\"]'),(63227,145284,4,'actor',NULL,'[\"Geoffrey\"]'),(63227,367431,5,'director',NULL,NULL),(63227,63953,6,'writer','screenplay',NULL),(63227,689347,7,'producer','producer',NULL),(63227,290,8,'composer',NULL,NULL),(63227,5878,9,'cinematographer','director of photography',NULL),(63231,5758,10,'cinematographer','director of photography',NULL),(63231,62,1,'actor',NULL,'[\"Greg Nolan\"]'),(63231,137004,2,'actress',NULL,'[\"Bernice\"]'),(63231,692093,3,'actor',NULL,'[\"Mike Lansdown\"]'),(63231,884964,4,'actor',NULL,'[\"Penlow\"]'),(63231,851537,5,'director',NULL,NULL),(63231,388629,6,'writer','screenplay',NULL),(63231,338633,7,'writer','screenplay',NULL),(63231,491101,8,'producer','producer',NULL),(63231,833350,9,'composer',NULL,NULL),(63268,346510,1,'actor',NULL,'[\"Ibrahim Dieng\"]'),(63268,618462,2,'actress',NULL,'[\"Méty the First Wife\"]'),(63268,629198,3,'actress',NULL,'[\"Aram the Second Wife\"]'),(63268,876997,4,'actor',NULL,'[\"M\'barka the Shopkeeper\"]'),(63268,783733,5,'director',NULL,NULL),(63268,626438,6,'producer','producer',NULL),(63268,815849,7,'cinematographer',NULL,NULL),(63268,452832,8,'editor',NULL,NULL),(63268,757888,9,'editor',NULL,NULL),(63278,405407,10,'editor',NULL,NULL),(63278,447515,1,'actor',NULL,'[\"Laird of Rohácek Kozlík\"]'),(63278,890330,2,'actress',NULL,'[\"Lazar\'s Daughter Marketa\"]'),(63278,374799,3,'actress',NULL,'[\"Wife of Laird Rohácek Katerina\"]'),(63278,609635,4,'actor',NULL,'[\"Son Jan\"]'),(63278,900712,5,'director',NULL,NULL),(63278,667714,6,'writer',NULL,NULL),(63278,888595,7,'writer','novel',NULL),(63278,514097,8,'composer',NULL,NULL),(63278,61192,9,'cinematographer',NULL,NULL),(63350,774736,10,'actress',NULL,'[\"Karen Cooper\",\"Corpse in House\"]'),(63350,427977,1,'actor',NULL,'[\"Ben\"]'),(63350,640621,2,'actress',NULL,'[\"Barbra\"]'),(63350,362457,3,'actor',NULL,'[\"Harry Cooper\"]'),(63350,247659,4,'actress',NULL,'[\"Helen Cooper\"]'),(63350,1681,5,'director',NULL,NULL),(63350,751652,6,'writer','screenplay by',NULL),(63350,834183,7,'producer','producer',NULL),(63350,915593,8,'actor',NULL,'[\"Tom\"]'),(63350,725985,9,'actress',NULL,'[\"Judy\"]'),(63379,315058,10,'production_designer',NULL,NULL),(63379,357020,1,'actor',NULL,'[\"Bill Kiowa\"]'),(63379,817881,2,'actor',NULL,'[\"O\'Bannion\"]'),(63379,696510,3,'actor',NULL,'[\"Jeff Milton\"]'),(63379,131615,4,'actor',NULL,'[\"Moreno\"]'),(63379,148970,5,'director',NULL,NULL),(63379,783,6,'writer','story and script',NULL),(63379,6164,7,'composer',NULL,NULL),(63379,5937,8,'cinematographer','director of photography',NULL),(63379,458126,9,'editor',NULL,NULL),(63385,5807,10,'cinematographer','director of photography',NULL),(63385,504492,1,'actor',NULL,'[\"Oliver\"]'),(63385,600531,2,'actor',NULL,'[\"Fagin\"]'),(63385,908861,3,'actress',NULL,'[\"Nancy\"]'),(63385,1657,4,'actor',NULL,'[\"Bill Sikes\"]'),(63385,715346,5,'director',NULL,NULL),(63385,58369,6,'writer','book by',NULL),(63385,365417,7,'writer','screenplay',NULL),(63385,2042,8,'writer','freely adapted from \"Oliver Twist\" by',NULL),(63385,941153,9,'producer','producer',NULL),(63415,935988,10,'editor',NULL,NULL),(63415,634,1,'actor',NULL,'[\"Hrundi V. Bakshi\"]'),(63415,519296,2,'actress',NULL,'[\"Michele Monet\"]'),(63415,96859,3,'actress',NULL,'[\"Ballerina\"]'),(63415,141255,4,'actress',NULL,'[\"Nanny\"]'),(63415,1175,5,'director',NULL,NULL),(63415,907209,6,'writer','screenplay',NULL),(63415,907186,7,'writer','screenplay',NULL),(63415,49,8,'composer',NULL,NULL),(63415,5644,9,'cinematographer','director of photography',NULL),(63442,414336,10,'producer','producer',NULL),(63442,32,1,'actor',NULL,'[\"George Taylor\"]'),(63442,1522,2,'actor',NULL,'[\"Cornelius\"]'),(63442,1375,3,'actress',NULL,'[\"Zira\"]'),(63442,263052,4,'actor',NULL,'[\"Dr. Zaius\"]'),(63442,769874,5,'director',NULL,NULL),(63442,933858,6,'writer','screenplay by',NULL),(63442,785245,7,'writer','screenplay by',NULL),(63442,99541,8,'writer','based on the novel by',NULL),(63442,445934,9,'writer','additional dialogue',NULL),(63462,741935,10,'production_designer',NULL,NULL),(63462,609216,1,'actor',NULL,'[\"Max Bialystock\"]'),(63462,698,2,'actor',NULL,'[\"Leo Bloom\"]'),(63462,790071,3,'actor',NULL,'[\"L.S.D. - Lorenzo St. DuBois\"]'),(63462,550318,4,'actor',NULL,'[\"Franz Liebkind\"]'),(63462,316,5,'director',NULL,NULL),(63462,322263,6,'producer','producer',NULL),(63462,606657,7,'composer',NULL,NULL),(63462,168877,8,'cinematographer','director of photography',NULL),(63462,742471,9,'editor',NULL,NULL),(63493,409568,10,'production_designer',NULL,NULL),(63493,176035,1,'actor',NULL,'[\"Procurorul\"]'),(63493,98622,2,'actor',NULL,'[\"Paveliu\"]'),(63493,586150,3,'actor',NULL,'[\"Vuica\"]'),(63493,301426,4,'actor',NULL,'[\"Nicu\"]'),(63493,684596,5,'director',NULL,NULL),(63493,665763,6,'writer','novel',NULL),(63493,649252,7,'producer','producer',NULL),(63493,404802,8,'cinematographer',NULL,NULL),(63493,619320,9,'editor',NULL,NULL),(63518,369743,10,'producer','producer',NULL),(63518,926013,1,'actor',NULL,'[\"Romeo\"]'),(63518,1377,2,'actress',NULL,'[\"Juliet\"]'),(63518,568491,3,'actor',NULL,'[\"Mercutio\"]'),(63518,642675,4,'actor',NULL,'[\"Friar Laurence\"]'),(63518,1874,5,'director',NULL,NULL),(63518,636,6,'writer','play',NULL),(63518,116663,7,'writer','screenplay',NULL),(63518,195148,8,'writer','screenplay',NULL),(63518,102646,9,'producer','producer',NULL),(63522,642714,10,'editor',NULL,NULL),(63522,1201,1,'actress',NULL,'[\"Rosemary Woodhouse\"]'),(63522,1023,2,'actor',NULL,'[\"Guy Woodhouse\"]'),(63522,2106,3,'actress',NULL,'[\"Minnie Castevet\"]'),(63522,85782,4,'actor',NULL,'[\"Roman Castevet\"]'),(63522,591,5,'director',NULL,NULL),(63522,505615,6,'writer','from the novel by',NULL),(63522,145336,7,'producer','producer',NULL),(63522,6156,8,'composer',NULL,NULL),(63522,5710,9,'cinematographer','director of photography',NULL),(63592,721655,10,'writer','screen story',NULL),(63592,125,1,'actor',NULL,'[\"Shalako\"]'),(63592,3,2,'actress',NULL,'[\"Irina Lazaar\"]'),(63592,963,3,'actor',NULL,'[\"Bosky Fulton\"]'),(63592,370144,4,'actor',NULL,'[\"Sir Charles Daggett\"]'),(63592,229424,5,'director',NULL,NULL),(63592,478263,6,'writer','novel',NULL),(63592,341526,7,'writer','screenplay',NULL),(63592,394404,8,'writer','screenplay',NULL),(63592,277451,9,'writer','screenplay',NULL),(63634,372040,10,'composer','composer: your groovy self',NULL),(63634,62,1,'actor',NULL,'[\"Steve Grayson\"]'),(63634,5434,2,'actress',NULL,'[\"Susan Jacks\"]'),(63634,84642,3,'actor',NULL,'[\"Kenny Donford\"]'),(63634,330198,4,'actor',NULL,'[\"R.W. Hepworth\"]'),(63634,851537,5,'director',NULL,NULL),(63634,795639,6,'writer','written by',NULL),(63634,491101,7,'producer','producer',NULL),(63634,18497,8,'composer',NULL,NULL),(63634,125821,9,'composer','composer: There Ain\'t Nothing Like a Song',NULL),(63642,505227,10,'production_designer',NULL,NULL),(63642,267,1,'actress',NULL,'[\"Gertrude Lawrence\"]'),(63642,1077,2,'actor',NULL,'[\"Richard Aldrich\"]'),(63642,185954,3,'actor',NULL,'[\"Sir Anthony Spencer\"]'),(63642,557292,4,'actor',NULL,'[\"Noël Coward\"]'),(63642,936404,5,'director',NULL,NULL),(63642,265535,6,'writer','written by',NULL),(63642,6000,7,'producer','producer',NULL),(63642,5768,8,'cinematographer','director of photography',NULL),(63642,722000,9,'editor',NULL,NULL),(63663,6121,10,'composer',NULL,NULL),(63663,44,1,'actor',NULL,'[\"Ned Merrill\"]'),(63663,484716,2,'actress',NULL,'[\"Julie Hooper\"]'),(63663,750023,3,'actress',NULL,'[\"Shirley Abbott\"]'),(63663,1060280,4,'actor',NULL,'[\"Donald Westerhazy\"]'),(63663,675068,5,'director',NULL,NULL),(63663,1628,6,'director',NULL,NULL),(63663,675052,7,'writer','screenplay',NULL),(63663,154940,8,'writer','story',NULL),(63663,507700,9,'producer','producer',NULL),(63668,1095808,10,'editor',NULL,NULL),(63668,386179,1,'actor',NULL,'[\"Grunwald, the Demon of Ice\"]'),(63668,406700,2,'actress',NULL,'[\"Hilda\"]'),(63668,867391,3,'actor',NULL,'[\"Ganko, the blacksmith\"]'),(63668,592756,4,'actor',NULL,'[\"Village Leader\"]'),(63668,847223,5,'director',NULL,NULL),(63668,297947,6,'writer','screenplay',NULL),(63668,2197915,7,'composer',NULL,NULL),(63668,2409631,8,'cinematographer',NULL,NULL),(63668,949028,9,'cinematographer',NULL,NULL),(63759,903623,10,'production_designer',NULL,NULL),(63759,1884,1,'actor',NULL,'[\"Johan Borg\"]'),(63759,880521,2,'actress',NULL,'[\"Alma Borg\"]'),(63759,294892,3,'actress',NULL,'[\"Corinne von Merkens\"]'),(63759,753062,4,'actor',NULL,'[\"Lindhorst\"]'),(63759,5,5,'director',NULL,NULL),(63759,137324,6,'producer','producer',NULL),(63759,921305,7,'composer',NULL,NULL),(63759,5815,8,'cinematographer',NULL,NULL),(63759,753276,9,'editor',NULL,NULL),(63787,310532,1,'actress',NULL,'[\"Vixen Palmer\"]'),(63787,397306,2,'actor',NULL,'[\"Tom Palmer\"]'),(63787,656188,3,'actor',NULL,'[\"Niles\"]'),(63787,262915,4,'actor',NULL,'[\"Judd\"]'),(63787,540,5,'director',NULL,NULL),(63787,748710,6,'writer','screenplay',NULL),(63787,752420,7,'writer','original story',NULL),(63787,115969,8,'editor',NULL,NULL),(63818,5752,10,'cinematographer',NULL,NULL),(63818,851,1,'actor',NULL,'[\"Old Shatterhand\"]'),(63818,108523,2,'actor',NULL,'[\"Winnetou\"]'),(63818,61309,3,'actor',NULL,'[\"Murdock\"]'),(63818,233312,4,'actress',NULL,'[\"Mabel Kingsley\"]'),(63818,718243,5,'director',NULL,NULL),(63818,717977,6,'writer','screenplay',NULL),(63818,562015,7,'writer','based on',NULL),(63818,105899,8,'producer','producer',NULL),(63818,5989,9,'composer',NULL,NULL),(63823,569534,10,'writer','additional dialogue',NULL),(63823,5200,1,'actor',NULL,'[\"Paul\"]'),(63823,365600,2,'actor',NULL,'[\"George\"]'),(63823,823592,3,'actor',NULL,'[\"Ringo\"]'),(63823,6168,4,'actor',NULL,'[\"John\"]'),(63823,242945,5,'director',NULL,NULL),(63823,591543,6,'writer','original story',NULL),(63823,110771,7,'writer','screenplay',NULL),(63823,578859,8,'writer','screenplay',NULL),(63823,781777,9,'writer','screenplay',NULL),(63850,5816,10,'cinematographer','director of photography',NULL),(63850,532,1,'actor',NULL,'[\"Mick - Crusader\"]'),(63850,939642,2,'actor',NULL,'[\"Johnny - Crusader\"]'),(63850,913264,3,'actor',NULL,'[\"Wallace - Crusader\"]'),(63850,634708,4,'actress',NULL,'[\"The Girl - Crusader\"]'),(63850,755,5,'director',NULL,NULL),(63850,792773,6,'writer','screenplay',NULL),(63850,398222,7,'writer','original script: \"Crusaders\"',NULL),(63850,575974,8,'producer','producer',NULL),(63850,929443,9,'composer',NULL,NULL),(63991,823898,10,'cinematographer','director of photography',NULL),(63991,51,1,'actor',NULL,'[\"Bradley Morahan\"]'),(63991,545,2,'actress',NULL,'[\"Cora\"]'),(63991,532290,3,'actor',NULL,'[\"Nat Kelly\"]'),(63991,139900,4,'actress',NULL,'[\"Ma Ryan\"]'),(63991,3836,5,'director',NULL,NULL),(63991,947343,6,'writer','screenplay',NULL),(63991,512284,7,'writer','novel',NULL),(63991,4368,8,'composer',NULL,NULL),(63991,780311,9,'composer',NULL,NULL),(64002,20441,10,'editor',NULL,NULL),(64002,349241,1,'actor',NULL,'[\"Arlo\"]'),(64002,703947,2,'actress',NULL,'[\"Alice\"]'),(64002,110814,3,'actor',NULL,'[\"Ray\"]'),(64002,781517,4,'actor',NULL,'[\"Pete Seeger\"]'),(64002,671957,5,'director',NULL,NULL),(64002,379759,6,'writer','screenplay',NULL),(64002,253865,7,'producer','producer',NULL),(64002,541900,8,'producer','producer',NULL),(64002,623852,9,'cinematographer',NULL,NULL),(64040,941857,10,'cinematographer',NULL,NULL),(64040,893341,1,'actor',NULL,'[\"Philippe Gerbier\"]'),(64040,582890,2,'actor',NULL,'[\"Luc Jardie\"]'),(64040,144045,3,'actor',NULL,'[\"Jean François Jardie\"]'),(64040,797531,4,'actress',NULL,'[\"Mathilde\"]'),(64040,578483,5,'director',NULL,NULL),(64040,450262,6,'writer','novel',NULL),(64040,233585,7,'producer','producer',NULL),(64040,6034,8,'composer',NULL,NULL),(64040,5774,9,'cinematographer',NULL,NULL),(64106,514458,10,'production_designer',NULL,NULL),(64106,804,1,'actress',NULL,'[\"Hélène\"]'),(64106,946179,2,'actor',NULL,'[\"Popaul\",\"Paul Thomas\"]'),(64106,664207,3,'actor',NULL,'[\"Angelo\"]'),(64106,273812,4,'actor',NULL,'[\"Père Cahrpy\",\"Uncle Cahrpy\"]'),(64106,1031,5,'director',NULL,NULL),(64106,350765,6,'producer','producer',NULL),(64106,6143,7,'composer',NULL,NULL),(64106,704880,8,'cinematographer',NULL,NULL),(64106,301239,9,'editor',NULL,NULL),(64115,397405,10,'editor',NULL,NULL),(64115,56,1,'actor',NULL,'[\"Butch Cassidy\"]'),(64115,602,2,'actor',NULL,'[\"The Sundance Kid\"]'),(64115,1684,3,'actress',NULL,'[\"Etta Place\"]'),(64115,1510,4,'actor',NULL,'[\"Percy Garris\"]'),(64115,1351,5,'director',NULL,NULL),(64115,1279,6,'writer','written by',NULL),(64115,286048,7,'producer','producer',NULL),(64115,820,8,'composer',NULL,NULL),(64115,5734,9,'cinematographer','director of photography',NULL),(64116,1553,10,'composer',NULL,NULL),(64116,20,1,'actor',NULL,'[\"Frank\"]'),(64116,314,2,'actor',NULL,'[\"Harmonica\"]'),(64116,1012,3,'actress',NULL,'[\"Jill McBain\"]'),(64116,1673,4,'actor',NULL,'[\"Manuel \'Cheyenne\' Gutiérrez\"]'),(64116,1466,5,'director',NULL,NULL),(64116,6872,6,'writer','screenplay by',NULL),(64116,783,7,'writer','from a story by',NULL),(64116,934,8,'writer','from a story by',NULL),(64116,607694,9,'producer','producer',NULL),(64155,62,1,'actor',NULL,'[\"Jess Wade\"]'),(64155,839,2,'actress',NULL,'[\"Tracey\"]'),(64155,294229,3,'actor',NULL,'[\"Vince\"]'),(64155,921303,4,'actress',NULL,'[\"Sara Ramsey\"]'),(64155,912766,5,'director',NULL,NULL),(64155,288996,6,'writer','story by',NULL),(64155,599359,7,'composer',NULL,NULL),(64155,5712,8,'cinematographer','director of photography',NULL),(64155,163617,9,'editor',NULL,NULL),(64156,722276,10,'actor',NULL,'[\"Salesman\"]'),(64156,333,1,'actress',NULL,'[\"Chastity\"]'),(64156,518674,2,'actress',NULL,'[\"Diana Midnight\"]'),(64156,926459,3,'actor',NULL,'[\"Eddie\"]'),(64156,76162,4,'actor',NULL,'[\"Tommy\"]'),(64156,210816,5,'director',NULL,NULL),(64156,95122,6,'writer','written by',NULL),(64156,170937,7,'cinematographer',NULL,NULL),(64156,953237,8,'actor',NULL,'[\"Pimp\"]'),(64156,884227,9,'actor',NULL,'[\"First Truck Driver\"]'),(64165,200476,10,'producer','producer',NULL),(64165,681566,1,'actor',NULL,'[\"Pierre Bérard\"]'),(64165,2769,2,'actress',NULL,'[\"Hélène\"]'),(64165,489311,3,'actor',NULL,'[\"Bertrand Bérard\"]'),(64165,99366,4,'actor',NULL,'[\"François\"]'),(64165,767110,5,'director',NULL,NULL),(64165,176420,6,'writer','dialogue: Italian version',NULL),(64165,196362,7,'writer','adaptation and dialogue',NULL),(64165,347257,8,'writer','novel',NULL),(64165,93472,9,'producer','producer',NULL),(64177,5834,10,'cinematographer','director of photography',NULL),(64177,967,1,'actor',NULL,'[\"Dr. Charles Forbin\"]'),(64177,164540,2,'actress',NULL,'[\"Dr. Cleo Markham\"]'),(64177,684521,3,'actor',NULL,'[\"The President\"]'),(64177,769974,4,'actor',NULL,'[\"CIA Director Grauber\"]'),(64177,765121,5,'director',NULL,NULL),(64177,108745,6,'writer','screenplay',NULL),(64177,427821,7,'writer','novel \"Colossus\"',NULL),(64177,153832,8,'producer','producer',NULL),(64177,6014,9,'composer','score composer',NULL),(64208,137559,10,'cinematographer',NULL,NULL),(64208,1812,1,'actor',NULL,'[\"Ryan\"]'),(64208,492342,2,'actor',NULL,'[\"Bill Meceita\"]'),(64208,103828,3,'actor',NULL,'[\"Walcott\'s Henchman in Waistcoat\"]'),(64208,685559,4,'actor',NULL,'[\"Walcott\"]'),(64208,678101,5,'director',NULL,NULL),(64208,898812,6,'writer','script',NULL),(64208,160752,7,'producer','producer',NULL),(64208,763074,8,'producer','producer',NULL),(64208,1553,9,'composer',NULL,NULL),(64240,763727,10,'cinematographer',NULL,NULL),(64240,211922,1,'actor',NULL,'[\"Django\"]'),(64240,333128,2,'actor',NULL,'[\"Maj. Rod Murdok\"]'),(64240,436422,3,'actor',NULL,'[\"Hugh Murdok\"]'),(64240,13313,4,'actor',NULL,'[\"Williams\"]'),(64240,308524,5,'director',NULL,NULL),(64240,169432,6,'producer','producer',NULL),(64240,210151,7,'producer','producer',NULL),(64240,463655,8,'composer',NULL,NULL),(64240,541557,9,'composer',NULL,NULL),(64253,698266,10,'cinematographer','director of photography',NULL),(64253,602,1,'actor',NULL,'[\"Chappellet\"]'),(64253,432,2,'actor',NULL,'[\"Claire\"]'),(64253,817122,3,'actress',NULL,'[\"Carole\"]'),(64253,901044,4,'actor',NULL,'[\"Machet\"]'),(64253,6916,5,'director',NULL,NULL),(64253,759070,6,'writer','written by',NULL),(64253,355964,7,'writer','novel \"The Downhill Racers\"',NULL),(64253,339995,8,'producer','producer',NULL),(64253,6132,9,'composer',NULL,NULL),(64276,1228,1,'actor',NULL,'[\"Wyatt\"]'),(64276,454,2,'actor',NULL,'[\"Billy\"]'),(64276,197,3,'actor',NULL,'[\"George Hanson\"]'),(64276,579234,4,'actor',NULL,'[\"Jesus\"]'),(64276,816143,5,'writer','written by',NULL),(64276,4088,6,'cinematographer','director of photography',NULL),(64276,131333,7,'editor',NULL,NULL),(64324,727983,10,'cinematographer',NULL,NULL),(64324,3,1,'actress',NULL,'[\"Clara\"]'),(64324,740067,2,'actor',NULL,'[\"Jérôme\"]'),(64324,391712,3,'actress',NULL,'[\"Marianne\"]'),(64324,243175,4,'actress',NULL,'[\"Hélène\"]'),(64324,42159,5,'director',NULL,NULL),(64324,491240,6,'writer','screenplay and dialogue',NULL),(64324,200476,7,'producer','producer',NULL),(64324,2267606,8,'composer',NULL,NULL),(64324,496284,9,'cinematographer',NULL,NULL),(64333,824473,10,'editor',NULL,NULL),(64333,79,1,'actress',NULL,'[\"Michele\"]'),(64333,821082,2,'actor',NULL,'[\"Joe Brodnek\"]'),(64333,39435,3,'actor',NULL,'[\"Alan Moris\"]'),(64333,153944,4,'actor',NULL,'[\"Lieutenant Manion\"]'),(64333,624809,5,'director',NULL,NULL),(64333,734740,6,'writer','written by',NULL),(64333,3199,7,'producer','producer',NULL),(64333,5958,8,'composer',NULL,NULL),(64333,570713,9,'cinematographer',NULL,NULL),(64370,2542,10,'editor',NULL,NULL),(64370,1842,1,'actor',NULL,'[\"Johnny Cain\"]'),(64370,477088,2,'actress',NULL,'[\"Revel Drue\"]'),(64370,675490,3,'actor',NULL,'[\"Lieutenant Miles Crawford\"]'),(64370,337432,4,'actor',NULL,'[\"Lucky Jones\"]'),(64370,528927,5,'director',NULL,NULL),(64370,908561,6,'writer','written by',NULL),(64370,528924,7,'producer','producer',NULL),(64370,338796,8,'composer',NULL,NULL),(64370,826701,9,'cinematographer','director of photography',NULL),(64373,594487,10,'composer',NULL,NULL),(64373,756292,1,'actor',NULL,'[\"Kenkichi \'Tack\' Miki (Ichiro\'s Father)\"]'),(64373,619906,2,'actress',NULL,'[\"Ichirô no okâsan\"]'),(64373,946941,3,'actor',NULL,'[\"Ichirô Miki\"]'),(64373,23862,4,'actor',NULL,'[\"Shinpei Inami\"]'),(64373,393094,5,'director',NULL,NULL),(64373,297974,6,'director',NULL,NULL),(64373,299206,7,'director',NULL,NULL),(64373,782883,8,'writer','writer',NULL),(64373,849083,9,'producer','producer',NULL),(64418,5889,10,'cinematographer','director of photography',NULL),(64418,659,1,'actress',NULL,'[\"Dolly Levi\"]'),(64418,527,2,'actor',NULL,'[\"Horace Vandergelder\"]'),(64418,186903,3,'actor',NULL,'[\"Cornelius Hackl\"]'),(64418,564059,4,'actress',NULL,'[\"Irene Molloy\"]'),(64418,37,5,'director',NULL,NULL),(64418,829661,6,'writer','book of stage play by',NULL),(64418,928642,7,'writer','based on \"The Matchmaker\" by',NULL),(64418,499626,8,'writer','written for the screen by',NULL),(64418,626587,9,'writer','play \"Einen Jux will er sich machen\"',NULL),(64437,112411,10,'editor',NULL,NULL),(64437,831471,1,'actress',NULL,'[\"Martha Beck\"]'),(64437,516215,2,'actor',NULL,'[\"Ray Fernandez\"]'),(64437,383275,3,'actress',NULL,'[\"Janet Fay\"]'),(64437,5368,4,'actress',NULL,'[\"Bunny\"]'),(64437,440980,5,'director',NULL,NULL),(64437,217,6,'director',NULL,NULL),(64437,901485,7,'director',NULL,NULL),(64437,825294,8,'producer','producer',NULL),(64437,5929,9,'cinematographer','director of photography',NULL),(64505,517109,10,'editor',NULL,NULL),(64505,323,1,'actor',NULL,'[\"Charlie Croker\"]'),(64505,2021,2,'actor',NULL,'[\"Mr. Bridger\"]'),(64505,1350,3,'actor',NULL,'[\"Professor Simon Peach\"]'),(64505,885203,4,'actor',NULL,'[\"Altabani\"]'),(64505,172772,5,'director',NULL,NULL),(64505,448392,6,'writer','written by',NULL),(64505,214303,7,'producer','producer',NULL),(64505,5065,8,'composer',NULL,NULL),(64505,5878,9,'cinematographer','director of photography',NULL),(64541,915232,10,'editor',NULL,NULL),(64541,103193,1,'actor',NULL,'[\"Billy\"]'),(64541,323093,2,'actor',NULL,'[\"Mr. Sugden\"]'),(64541,282001,3,'actor',NULL,'[\"Jud\"]'),(64541,674665,4,'actress',NULL,'[\"Mrs. Casper\"]'),(64541,516360,5,'director',NULL,NULL),(64541,385632,6,'writer','novel \"A Kestrel for a Knave\"',NULL),(64541,307821,7,'writer','adaptation',NULL),(64541,131624,8,'composer',NULL,NULL),(64541,579580,9,'cinematographer',NULL,NULL),(64612,705124,10,'production_designer',NULL,NULL),(64612,4462,1,'actor',NULL,'[\"Jean-Louis\"]'),(64612,264554,2,'actress',NULL,'[\"Maud\"]'),(64612,56763,3,'actress',NULL,'[\"Françoise\"]'),(64612,900004,4,'actor',NULL,'[\"Vidal\"]'),(64612,6445,5,'director',NULL,NULL),(64612,183172,6,'producer','producer',NULL),(64612,775447,7,'producer','producer',NULL),(64612,743,8,'cinematographer',NULL,NULL),(64612,214038,9,'editor',NULL,NULL),(64665,731867,10,'editor','film editor',NULL),(64665,163,1,'actor',NULL,'[\"Ratso\"]'),(64665,685,2,'actor',NULL,'[\"Joe Buck\"]'),(64665,587249,3,'actress',NULL,'[\"Cass\"]'),(64665,569410,4,'actor',NULL,'[\"Mr. O\'Daniel\"]'),(64665,772259,5,'director',NULL,NULL),(64665,759029,6,'writer','screenplay',NULL),(64665,379052,7,'writer','based on the novel by',NULL),(64665,375477,8,'producer','producer',NULL),(64665,390435,9,'cinematographer','director of photography',NULL),(64708,705723,10,'producer','producer',NULL),(64708,248334,1,'actor',NULL,'[\"Sam Gribley\"]'),(64708,942,2,'actor',NULL,'[\"Bando\"]'),(64708,927810,3,'actress',NULL,'[\"Miss Turner\"]'),(64708,405695,4,'actor',NULL,'[\"Hunter\"]'),(64708,164044,5,'director',NULL,NULL),(64708,186832,6,'writer','writer',NULL),(64708,313469,7,'writer','novel',NULL),(64708,460139,8,'writer','writer',NULL),(64708,792090,9,'writer','writer',NULL),(64757,759162,10,'producer','producer',NULL),(64757,493872,1,'actor',NULL,'[\"James Bond\"]'),(64757,1671,2,'actress',NULL,'[\"Tracy\"]'),(64757,1699,3,'actor',NULL,'[\"Blofeld\"]'),(64757,275213,4,'actor',NULL,'[\"Draco\"]'),(64757,402597,5,'director',NULL,NULL),(64757,712362,6,'writer','additional dialogue',NULL),(64757,537363,7,'writer','screenplay by',NULL),(64757,1220,8,'writer','novel',NULL),(64757,110482,9,'producer','producer',NULL),(64782,874405,10,'production_designer',NULL,NULL),(64782,1511,1,'actor',NULL,'[\"Ben Rumson\"]'),(64782,142,2,'actor',NULL,'[\"Pardner\"]'),(64782,781029,3,'actress',NULL,'[\"Elizabeth\"]'),(64782,696193,4,'actor',NULL,'[\"Rotten Luck Willie\"]'),(64782,517597,5,'director',NULL,NULL),(64782,503585,6,'writer','book and lyrics by',NULL),(64782,154665,7,'writer','adaptation',NULL),(64782,5710,8,'cinematographer','director of photography',NULL),(64782,2717,9,'editor',NULL,NULL),(64793,299827,10,'actor',NULL,'[\"Verner\"]'),(64793,880521,1,'actress',NULL,'[\"Anna Fromm\",\"Self\"]'),(64793,761,2,'actress',NULL,'[\"Eva Vergérus\",\"Self\"]'),(64793,1884,3,'actor',NULL,'[\"Andreas Winkelman\",\"Self\"]'),(64793,430746,4,'actor',NULL,'[\"Elis Vergérus\",\"Self\"]'),(64793,5,5,'director',NULL,NULL),(64793,5815,6,'cinematographer',NULL,NULL),(64793,526459,7,'editor',NULL,NULL),(64793,526456,8,'production_designer',NULL,NULL),(64793,375167,9,'actor',NULL,'[\"Johan Andersson\"]'),(64806,254217,10,'composer',NULL,NULL),(64806,665822,1,'actor',NULL,'[\"Milo\"]'),(64806,175788,2,'actor',NULL,'[\"King Azaz\",\"The MathemaGician\"]'),(64806,305,3,'actor',NULL,'[\"Officer Short Shrift\",\"Dodecahedron\",\"Demon of Insincerity\"]'),(64806,124889,4,'actor',NULL,'[\"Whether Man\",\"Senses Taker\",\"Terrible Trivium\"]'),(64806,5062,5,'director',NULL,NULL),(64806,506187,6,'director',NULL,NULL),(64806,597520,7,'director',NULL,NULL),(64806,742078,8,'writer','screenplay',NULL),(64806,433132,9,'writer','based on the book by',NULL),(64816,51172,10,'cinematographer',NULL,NULL),(64816,1128,1,'actor',NULL,'[\"Jean-Paul\"]'),(64816,2769,2,'actress',NULL,'[\"Marianne\"]'),(64816,740067,3,'actor',NULL,'[\"Harry\"]'),(64816,945,4,'actress',NULL,'[\"Pénélope\"]'),(64816,220227,5,'director',NULL,NULL),(64816,140643,6,'writer','adaptation and dialogue',NULL),(64816,656098,7,'writer','story',NULL),(64816,80013,8,'producer','producer',NULL),(64816,6166,9,'composer',NULL,NULL),(64840,601924,10,'cinematographer','director of photography',NULL),(64840,1749,1,'actress',NULL,'[\"Jean Brodie\"]'),(64840,413561,2,'actor',NULL,'[\"Gordon Lowther\"]'),(64840,827137,3,'actor',NULL,'[\"Teddy Lloyd\"]'),(64840,291512,4,'actress',NULL,'[\"Sandy\"]'),(64840,623768,5,'director',NULL,NULL),(64840,816944,6,'writer','adapted from the novel by',NULL),(64840,696319,7,'writer','based on the play by',NULL),(64840,296917,8,'producer','producer',NULL),(64840,572106,9,'composer',NULL,NULL),(64990,683092,10,'production_designer',NULL,NULL),(64990,366,1,'actress',NULL,'[\"Julie Roussel\",\"Marion Vergano\"]'),(64990,901,2,'actor',NULL,'[\"Louis Mahé\"]'),(64990,96501,3,'actress',NULL,'[\"Berthe\"]'),(64990,274949,4,'actress',NULL,'[\"Landlady\"]'),(64990,76,5,'director',NULL,NULL),(64990,941280,6,'writer','based on the novel by',NULL),(64990,6051,7,'composer',NULL,NULL),(64990,166446,8,'cinematographer',NULL,NULL),(64990,347071,9,'editor',NULL,NULL),(65051,1258,1,'actor',NULL,'[\"Jason\"]'),(65051,352466,2,'actress',NULL,'[\"Prudy\"]'),(65051,974,3,'actor',NULL,'[\"Pa Danby\"]'),(65051,604702,4,'actor',NULL,'[\"Olly Perkins\"]'),(65051,447944,5,'director',NULL,NULL),(65051,101115,6,'writer','written by',NULL),(65051,18497,7,'composer',NULL,NULL),(65051,5888,8,'cinematographer','director of photography',NULL),(65051,111996,9,'editor',NULL,NULL),(65063,435894,10,'editor',NULL,NULL),(65063,95,1,'actor',NULL,'[\"Virgil Starkwell\"]'),(65063,546755,2,'actress',NULL,'[\"Louise\"]'),(65063,384787,3,'actor',NULL,'[\"Fritz - Director\"]'),(65063,404985,4,'actress',NULL,'[\"Miss Blair\"]'),(65063,741582,5,'writer','original screenplay',NULL),(65063,423618,6,'producer','producer',NULL),(65063,6121,7,'composer',NULL,NULL),(65063,795012,8,'cinematographer','director of photography',NULL),(65063,430131,9,'editor',NULL,NULL),(65073,335264,10,'cinematographer','director of photography',NULL),(65073,489,1,'actor',NULL,'[\"Dracula\"]'),(65073,444584,2,'actor',NULL,'[\"William Hargood\"]'),(65073,914220,3,'actress',NULL,'[\"Martha Hargood\"]'),(65073,370769,4,'actress',NULL,'[\"Alice Hargood\"]'),(65073,765856,5,'director',NULL,NULL),(65073,385573,6,'writer','screenplay',NULL),(65073,831290,7,'writer','based on the character created by',NULL),(65073,949239,8,'producer','producer',NULL),(65073,2302,9,'composer',NULL,NULL),(65088,5563,10,'producer','producer',NULL),(65088,404,1,'actress',NULL,'[\"Gloria\"]'),(65088,765546,2,'actor',NULL,'[\"Robert\"]'),(65088,948772,3,'actress',NULL,'[\"Alice\"]'),(65088,949574,4,'actor',NULL,'[\"Rocky\"]'),(65088,1628,5,'director',NULL,NULL),(65088,566752,6,'writer','novel \"They Shoot Horses, Don\'t They?\"',NULL),(65088,688117,7,'writer','screenplay',NULL),(65088,860651,8,'writer','screenplay',NULL),(65088,153590,9,'producer','producer',NULL),(65125,335831,10,'writer','story',NULL),(65125,62,1,'actor',NULL,'[\"Walter Hale\"]'),(65125,556848,2,'actress',NULL,'[\"Charlene\"]'),(65125,415476,3,'actress',NULL,'[\"Betty\"]'),(65125,636065,4,'actress',NULL,'[\"Nita Bix\"]'),(65125,856715,5,'director',NULL,NULL),(65125,679010,6,'writer','screenplay',NULL),(65125,679016,7,'writer','screenplay',NULL),(65125,444706,8,'writer','novel \"Chautauqua\"',NULL),(65125,44831,9,'writer','novel \"Chautauqua\"',NULL),(65126,5644,10,'cinematographer','director of photography',NULL),(65126,78,1,'actor',NULL,'[\"Rooster Cogburn\"]'),(65126,200981,2,'actress',NULL,'[\"Mattie Ross\"]'),(65126,4794,3,'actor',NULL,'[\"\'La Boeuf\'\"]'),(65126,805177,4,'actor',NULL,'[\"Emmett Quincy\"]'),(65126,368871,5,'director',NULL,NULL),(65126,692427,6,'writer','novel',NULL),(65126,731387,7,'writer','screenplay',NULL),(65126,909259,8,'producer','producer',NULL),(65126,930,9,'composer',NULL,NULL),(65134,1553,10,'composer',NULL,NULL),(65134,142,1,'actor',NULL,'[\"Hogan\"]'),(65134,511,2,'actress',NULL,'[\"Sara\"]'),(65134,299578,3,'actor',NULL,'[\"Colonel Beltran\"]'),(65134,605494,4,'actor',NULL,'[\"General LeClaire\"]'),(65134,796923,5,'director',NULL,NULL),(65134,91430,6,'writer','story',NULL),(65134,540816,7,'writer','screenplay',NULL),(65134,143188,8,'producer','producer',NULL),(65134,705228,9,'producer','producer',NULL),(65207,433384,10,'editor',NULL,NULL),(65207,9,1,'actor',NULL,'[\"Maj. Smith\"]'),(65207,142,2,'actor',NULL,'[\"Lt. Schaffer\"]'),(65207,881829,3,'actress',NULL,'[\"Mary Ellison\"]'),(65207,943859,4,'actor',NULL,'[\"Col. Turner\"]'),(65207,404606,5,'director',NULL,NULL),(65207,533745,6,'writer','story',NULL),(65207,440990,7,'producer','producer',NULL),(65207,6109,8,'composer',NULL,NULL),(65207,406471,9,'cinematographer',NULL,NULL),(65225,495402,10,'cinematographer','director of photography',NULL),(65225,1509,1,'actor',NULL,'[\"Matt Helm\"]'),(65225,813961,2,'actress',NULL,'[\"Linka Karensky\"]'),(65225,1790,3,'actress',NULL,'[\"Freya Carlson\"]'),(65225,477088,4,'actress',NULL,'[\"Wen Yu-Rang\"]'),(65225,439597,5,'director',NULL,NULL),(65225,357824,6,'writer','novel \"The Wrecking Crew\"',NULL),(65225,569423,7,'writer','screenplay',NULL),(65225,2164,8,'producer','producer',NULL),(65225,599359,9,'composer',NULL,NULL),(65234,184170,10,'cinematographer','director of photography',NULL),(65234,598971,1,'actor',NULL,'[\"Z\"]'),(65234,660327,2,'actress',NULL,'[\"Hélène\"]'),(65234,4462,3,'actor',NULL,'[\"Le juge d\'instruction\"]'),(65234,673749,4,'actor',NULL,'[\"Le procureur\"]'),(65234,2020,5,'director',NULL,NULL),(65234,890825,6,'writer','novel',NULL),(65234,783934,7,'writer','dialogue',NULL),(65234,59553,8,'writer',NULL,NULL),(65234,6319,9,'composer',NULL,NULL),(65375,939606,10,'writer','co-writer',NULL),(65375,568493,1,'actor',NULL,'[\"Col. Etienne Gerard (Hussars of Conflans)\"]'),(65375,1012,2,'actress',NULL,'[\"Teresa, Countess of Morales\"]'),(65375,908919,3,'actor',NULL,'[\"Napoleon Bonaparte\"]'),(65375,370144,4,'actor',NULL,'[\"Marshal Millefleurs (Renegade English Officer)\"]'),(65375,804592,5,'director',NULL,NULL),(65375,185867,6,'writer','scenario',NULL),(65375,504457,7,'writer','co-scenario',NULL),(65375,349667,8,'writer','co-scenario',NULL),(65375,236279,9,'writer','based on the \"Brigadier Gerard\" stories by',NULL),(65377,5768,10,'cinematographer','director of photography',NULL),(65377,44,1,'actor',NULL,'[\"Mel Bakersfeld\"]'),(65377,1509,2,'actor',NULL,'[\"Vernon Demerest\"]'),(65377,1421,3,'actor',NULL,'[\"Joe Patroni\"]'),(65377,781029,4,'actress',NULL,'[\"Tanya Livingston\"]'),(65377,780833,5,'director',NULL,NULL),(65377,368871,6,'director',NULL,NULL),(65377,354150,7,'writer','novel',NULL),(65377,403022,8,'producer','producer',NULL),(65377,55,9,'composer',NULL,NULL),(65421,166551,10,'writer','story',NULL),(65421,365201,1,'actor',NULL,'[\"O\'Malley\"]'),(65421,1247,2,'actress',NULL,'[\"Duchess\"]'),(65421,1359,3,'actor',NULL,'[\"Roquefort\"]'),(65421,1079,4,'actor',NULL,'[\"Scat Cat\"]'),(65421,718627,5,'director',NULL,NULL),(65421,166307,6,'writer','story',NULL),(65421,314788,7,'writer','story',NULL),(65421,27011,8,'writer','story',NULL),(65421,858826,9,'writer','story',NULL),(65449,778180,10,'actress',NULL,'[\"Heidi\"]'),(65449,714926,1,'actress',NULL,'[\"Iv\"]'),(65449,226136,2,'actress',NULL,'[\"Monika Gerolds\"]'),(65449,81495,3,'actress',NULL,'[\"Irene\"]'),(65449,377348,4,'actor',NULL,'[\"Jynett\"]'),(65449,411853,5,'director',NULL,NULL),(65449,576921,6,'writer',NULL,NULL),(65449,123481,7,'cinematographer',NULL,NULL),(65449,1768652,8,'editor',NULL,NULL),(65449,622609,9,'production_designer',NULL,NULL),(65466,941535,10,'editor',NULL,NULL),(65466,713820,1,'actress',NULL,'[\"Kelly MacNamara\"]'),(65466,616675,2,'actress',NULL,'[\"Casey Anderson\"]'),(65466,564394,3,'actress',NULL,'[\"Petronella Danforth\"]'),(65466,493677,4,'actor',NULL,'[\"Ronnie (Z-Man) Barzell\"]'),(65466,540,5,'director',NULL,NULL),(65466,1170,6,'writer','screenplay',NULL),(65466,6225,7,'composer',NULL,NULL),(65466,5758,8,'cinematographer','director of photography',NULL),(65466,128711,9,'editor',NULL,NULL),(65488,516039,10,'production_designer',NULL,NULL),(65488,625522,1,'actor',NULL,'[\"Michael\"]'),(65488,925320,2,'actor',NULL,'[\"Alan McCarthy\"]'),(65488,294600,3,'actor',NULL,'[\"Harold\"]'),(65488,173644,4,'actor',NULL,'[\"Donald\"]'),(65488,1243,5,'director',NULL,NULL),(65488,189758,6,'writer','play',NULL),(65488,5817,7,'cinematographer','director of photography',NULL),(65488,338513,8,'editor',NULL,NULL),(65488,503594,9,'editor',NULL,NULL),(65528,914239,10,'cinematographer','director of photography',NULL),(65528,273,1,'actor',NULL,'[\"Yossarian\"]'),(65528,842,2,'actor',NULL,'[\"Colonel Cathcart\"]'),(65528,907,3,'actor',NULL,'[\"Major Danby\"]'),(65528,307316,4,'actor',NULL,'[\"Nately\"]'),(65528,1566,5,'director',NULL,NULL),(65528,375342,6,'writer','based on the novel by',NULL),(65528,377750,7,'writer','screenplay by',NULL),(65528,130492,8,'producer','producer',NULL),(65528,710388,9,'producer','producer',NULL),(65531,582891,10,'production_designer',NULL,NULL),(65531,1128,1,'actor',NULL,'[\"Corey\"]'),(65531,100186,2,'actor',NULL,'[\"Le Commissaire Francois Mattei\"]'),(65531,2231,3,'actor',NULL,'[\"Vogel\"]'),(65531,598971,4,'actor',NULL,'[\"Jansen\"]'),(65531,578483,5,'director',NULL,NULL),(65531,233587,6,'producer','producer',NULL),(65531,6034,7,'composer',NULL,NULL),(65531,5684,8,'cinematographer','director of photography',NULL),(65531,239656,9,'editor',NULL,NULL),(65537,606886,10,'writer','story',NULL),(65537,62,1,'actor',NULL,'[\"Dr. John Carpenter\"]'),(65537,1546,2,'actress',NULL,'[\"Sister Michelle\"]'),(65537,573552,3,'actress',NULL,'[\"Sister Irene\"]'),(65537,254243,4,'actress',NULL,'[\"Sister Barbara\"]'),(65537,334353,5,'director',NULL,NULL),(65537,497458,6,'writer','screenplay',NULL),(65537,777831,7,'writer','screenplay',NULL),(65537,73388,8,'writer','screenplay',NULL),(65537,298891,9,'writer','story',NULL),(65566,911307,10,'editor','film editor',NULL),(65566,621,1,'actor',NULL,'[\"Dexter\"]'),(65566,3110,2,'actor',NULL,'[\"A.J. Arno\"]'),(65566,283499,3,'actor',NULL,'[\"Dean Higgins\"]'),(65566,769974,4,'actor',NULL,'[\"Professor Quigley\"]'),(65566,125111,5,'director',NULL,NULL),(65566,568539,6,'writer','written by',NULL),(65566,26419,7,'producer','producer',NULL),(65566,5979,8,'composer',NULL,NULL),(65566,680402,9,'cinematographer','director of photography',NULL),(65569,66963,10,'writer','dialogue: German version',NULL),(65569,489,1,'actor',NULL,'[\"Count Dracula\"]'),(65569,7042,2,'actor',NULL,'[\"Professor Abraham Van Helsing\"]'),(65569,1428,3,'actor',NULL,'[\"R.M. Renfield\"]'),(65569,737538,4,'actress',NULL,'[\"Mina Murray\"]'),(65569,1238,5,'director',NULL,NULL),(65569,831290,6,'writer','novel \"Dracula\"',NULL),(65569,463440,7,'writer','story',NULL),(65569,278326,8,'writer','screenplay',NULL),(65569,869935,9,'writer','screenplay: English version',NULL),(65571,4462,1,'actor',NULL,'[\"Marcello Clerici\"]'),(65571,762248,2,'actress',NULL,'[\"Giulia\"]'),(65571,608311,3,'actor',NULL,'[\"Manganiello\"]'),(65571,850254,4,'actor',NULL,'[\"Professor Quadri\"]'),(65571,934,5,'director',NULL,NULL),(65571,603179,6,'writer','novel',NULL),(65571,16,7,'composer',NULL,NULL),(65571,5886,8,'cinematographer','director of photography',NULL),(65571,33490,9,'editor',NULL,NULL),(65611,140267,10,'production_designer',NULL,NULL),(65611,267,1,'actress',NULL,'[\"Lili Smith\"]'),(65611,1369,2,'actor',NULL,'[\"Major William Larrabee\"]'),(65611,447305,3,'actor',NULL,'[\"Colonel Kurt Von Ruger\"]'),(65611,672886,4,'actor',NULL,'[\"T.C. Carstairs\"]'),(65611,1175,5,'director',NULL,NULL),(65611,87861,6,'writer','written by',NULL),(65611,49,7,'composer',NULL,NULL),(65611,5737,8,'cinematographer','director of photography',NULL),(65611,957038,9,'editor',NULL,NULL),(65649,6316,10,'composer',NULL,NULL),(65649,958831,1,'actor',NULL,'[\"Roku-chan\"]'),(65649,837361,2,'actress',NULL,'[\"Okuni\"]'),(65649,867398,3,'actor',NULL,'[\"Taro Sawagami\"]'),(65649,590929,4,'actor',NULL,'[\"Ryotaro Sawagami\"]'),(65649,41,5,'director',NULL,NULL),(65649,644823,6,'writer','screenplay',NULL),(65649,368074,7,'writer','screenplay',NULL),(65649,945491,8,'writer','novel \"Kisetsu no nai machi\"',NULL),(65649,559452,9,'producer','producer',NULL),(65724,791622,10,'editor',NULL,NULL),(65724,197,1,'actor',NULL,'[\"Robert Eroica Dupea\"]'),(65724,947,2,'actress',NULL,'[\"Rayette Dipesto\"]'),(65724,124100,3,'actor',NULL,'[\"Elton\"]'),(65724,280840,4,'actress',NULL,'[\"Stoney\"]'),(65724,706182,5,'director',NULL,NULL),(65724,247628,6,'writer','screenplay',NULL),(65724,917061,7,'producer','producer',NULL),(65724,4088,8,'cinematographer','director of photography',NULL),(65724,391784,9,'editor',NULL,NULL),(65772,108400,1,'actor',NULL,'[\"Jérôme\"]'),(65772,180454,2,'actress',NULL,'[\"Aurora the Novelist\"]'),(65772,738789,3,'actress',NULL,'[\"Laura\"]'),(65772,597492,4,'actress',NULL,'[\"Claire\"]'),(65772,6445,5,'director',NULL,NULL),(65772,183172,6,'producer','producer',NULL),(65772,775447,7,'producer','producer',NULL),(65772,743,8,'cinematographer',NULL,NULL),(65772,214038,9,'editor',NULL,NULL),(65854,237548,10,'composer',NULL,NULL),(65854,117028,1,'actor',NULL,'[\"Stoker (segment \\\"Framework Story\\\")\"]'),(65854,71838,2,'actor',NULL,'[\"Det. Insp. Holloway (segment \\\"Framework Story\\\")\"]'),(65854,1186,3,'actor',NULL,'[\"Charles (segment \\\"Method for Murder\\\")\"]'),(65854,1088,4,'actor',NULL,'[\"Philip (segment \\\"Waxworks\\\")\"]'),(65854,240439,5,'director',NULL,NULL),(65854,88645,6,'writer','written by',NULL),(65854,429191,7,'writer',NULL,NULL),(65854,742278,8,'producer','producer',NULL),(65854,836988,9,'producer','producer',NULL),(65856,308587,10,'editor',NULL,NULL),(65856,294847,1,'actor',NULL,'[\"Barnabas Collins\"]'),(65856,355621,2,'actress',NULL,'[\"Dr. Julia Hoffman\"]'),(65856,779421,3,'actress',NULL,'[\"Maggie Evans\"]'),(65856,205380,4,'actor',NULL,'[\"Jeff Clark\"]'),(65856,193303,5,'director',NULL,NULL),(65856,356075,6,'writer','screenplay',NULL),(65856,751164,7,'writer','screenplay',NULL),(65856,6013,8,'composer',NULL,NULL),(65856,5817,9,'cinematographer',NULL,NULL),(65889,5765,10,'cinematographer','director of photography',NULL),(65889,2231,1,'actor',NULL,'[\"Police Inspector\",\"Dottore\"]'),(65889,93030,2,'actress',NULL,'[\"Augusta Terzi\"]'),(65889,764369,3,'actor',NULL,'[\"Police Commissioner\"]'),(65889,650010,4,'actor',NULL,'[\"Brigadier Biglia\"]'),(65889,677880,5,'director',NULL,NULL),(65889,685316,6,'writer','story by',NULL),(65889,162072,7,'producer','producer',NULL),(65889,784103,8,'producer','producer',NULL),(65889,1553,9,'composer',NULL,NULL),(65904,742471,10,'editor',NULL,NULL),(65904,230,1,'actor',NULL,'[\"Stud\"]'),(65904,391506,2,'actress',NULL,'[\"Kitty\"]'),(65904,887757,3,'actress',NULL,'[\"Jodi\"]'),(65904,912978,4,'actor',NULL,'[\"Nick\"]'),(65904,5638280,5,'director',NULL,NULL),(65904,507564,6,'writer',NULL,NULL),(65904,143635,7,'composer',NULL,NULL),(65904,490672,8,'cinematographer',NULL,NULL),(65904,435894,9,'editor',NULL,NULL),(65988,5888,10,'cinematographer','director of photography',NULL),(65988,163,1,'actor',NULL,'[\"Jack Crabb\"]'),(65988,1159,2,'actress',NULL,'[\"Mrs. Pendrake\"]'),(65988,313381,3,'actor',NULL,'[\"Old Lodge Skins\"]'),(65988,842,4,'actor',NULL,'[\"Mr. Merriweather\"]'),(65988,671957,5,'director',NULL,NULL),(65988,74383,6,'writer','novel',NULL),(65988,932229,7,'writer','screenplay',NULL),(65988,587706,8,'producer','producer',NULL),(65988,358710,9,'composer',NULL,NULL),(66011,2717,10,'editor',NULL,NULL),(66011,532298,1,'actress',NULL,'[\"Jenny\"]'),(66011,641939,2,'actor',NULL,'[\"Oliver\"]'),(66011,549134,3,'actor',NULL,'[\"Phil\"]'),(66011,1537,4,'actor',NULL,'[\"Oliver Barrett III\"]'),(66011,2137,5,'director',NULL,NULL),(66011,781777,6,'writer','written by',NULL),(66011,591667,7,'producer','producer',NULL),(66011,6162,8,'composer',NULL,NULL),(66011,470012,9,'cinematographer','director of photography',NULL),(66109,5878,10,'cinematographer','director of photography',NULL),(66109,328,1,'actor',NULL,'[\"Tchaikovsky\"]'),(66109,413559,2,'actress',NULL,'[\"Nina\"]'),(66109,12451,3,'actor',NULL,'[\"Rubinstein\"]'),(66109,300083,4,'actor',NULL,'[\"Anton Chiluvsky\"]'),(66109,1692,5,'director',NULL,NULL),(66109,103905,6,'writer','screenplay',NULL),(66109,100810,7,'writer','book \"Beloved Friend\"',NULL),(66109,902685,8,'writer','book \"Beloved Friend\"',NULL),(66109,6238,9,'composer',NULL,NULL),(66115,338714,10,'editor',NULL,NULL),(66115,922213,1,'actress',NULL,'[\"Leticia\"]'),(66115,1379,2,'actor',NULL,'[\"Buck Loner\"]'),(66115,79,3,'actress',NULL,'[\"Myra Breckinridge\"]'),(66115,715643,4,'actor',NULL,'[\"Young Man\"]'),(66115,765398,5,'director',NULL,NULL),(66115,683,6,'writer','novel',NULL),(66115,318429,7,'writer','screenplay',NULL),(66115,296917,8,'producer','producer',NULL),(66115,601785,9,'cinematographer','director of photography',NULL),(66122,828310,10,'composer',NULL,NULL),(66122,38870,1,'actress',NULL,'[\"Susan\"]'),(66122,609699,2,'actor',NULL,'[\"Michael \'Mike\'\"]'),(66122,901044,3,'actor',NULL,'[\"Teacher\"]'),(66122,761851,4,'actor',NULL,'[\"Chris\"]'),(66122,804592,5,'director',NULL,NULL),(66122,344761,6,'writer','written by',NULL),(66122,837877,7,'writer','written by',NULL),(66122,420044,8,'producer','producer',NULL),(66122,133453,9,'composer',NULL,NULL),(66164,496284,10,'cinematographer',NULL,NULL),(66164,3,1,'actress',NULL,'[\"Agnès\"]'),(66164,320760,2,'actress',NULL,'[\"Mona Lisa\"]'),(66164,138405,3,'actor',NULL,'[\"Le client au chien\"]'),(66164,239660,4,'actor',NULL,'[\"Le chauffeur d\'ambulance\"]'),(66164,143007,5,'director',NULL,NULL),(66164,1031,6,'director',NULL,NULL),(66164,337541,7,'writer','dialogue',NULL),(66164,350765,8,'producer','producer',NULL),(66164,6262,9,'composer',NULL,NULL),(66206,565135,10,'producer','producer',NULL),(66206,1715,1,'actor',NULL,'[\"General George S. Patton Jr.\"]'),(66206,1500,2,'actor',NULL,'[\"General Omar N. Bradley\"]'),(66206,950079,3,'actor',NULL,'[\"Captain Chester B. Hansen\"]'),(66206,835021,4,'actor',NULL,'[\"Brigadier General Hobart Carver\"]'),(66206,769874,5,'director',NULL,NULL),(66206,338,6,'writer','screen story by',NULL),(66206,636002,7,'writer','screen story by',NULL),(66206,267018,8,'writer','based on factual material from Patton: Ordeal and Triumph',NULL),(66206,103357,9,'writer','based on factual material from: A Soldier\'s Story',NULL),(66207,182884,10,'editor',NULL,NULL),(66207,366,1,'actress',NULL,'[\"La princesse\",\"La reine bleue\"]'),(66207,544786,2,'actor',NULL,'[\"Le roi bleu\"]'),(66207,674742,3,'actor',NULL,'[\"Le prince charmant\"]'),(66207,696163,4,'actress',NULL,'[\"La reine rouge, la seconde reine\"]'),(66207,218840,5,'director',NULL,NULL),(66207,674518,6,'writer','based on the fairy tale by',NULL),(66207,90776,7,'producer','producer',NULL),(66207,6166,8,'composer',NULL,NULL),(66207,5669,9,'cinematographer',NULL,NULL),(66227,726098,10,'composer',NULL,NULL),(66227,632227,1,'actress',NULL,'[\"Pippi Långstrump\"]'),(66227,675627,2,'actress',NULL,'[\"Annika\"]'),(66227,839090,3,'actor',NULL,'[\"Tommy\"]'),(66227,938456,4,'actor',NULL,'[\"Kapten Långstrump\"]'),(66227,375224,5,'director',NULL,NULL),(66227,480456,6,'writer',NULL,NULL),(66227,511807,7,'writer','manuscript',NULL),(66227,634989,8,'producer','producer',NULL),(66227,423966,9,'composer',NULL,NULL),(66279,201787,10,'editor',NULL,NULL),(66279,792163,1,'actress',NULL,'[\"Mrs. Waterbury\"]'),(66279,187754,2,'actor',NULL,'[\"Albert Perks\"]'),(66279,581674,3,'actor',NULL,'[\"Old Gentleman\"]'),(66279,193868,4,'actor',NULL,'[\"Charles Waterbury\"]'),(66279,420383,5,'director',NULL,NULL),(66279,626334,6,'writer','celebrated novel',NULL),(66279,528790,7,'producer','producer',NULL),(66279,235127,8,'composer',NULL,NULL),(66279,406471,9,'cinematographer','director of photography',NULL),(66301,940215,10,'editor','film editor',NULL),(66301,78,1,'actor',NULL,'[\"Col. Cord McNally\"]'),(66301,729473,2,'actor',NULL,'[\"Capt. Pierre Cordona\"]'),(66301,642198,3,'actress',NULL,'[\"Shasta Delaney\"]'),(66301,1181,4,'actor',NULL,'[\"Phillips\"]'),(66301,1328,5,'director',NULL,NULL),(66301,937386,6,'writer','screenplay',NULL),(66301,102824,7,'writer','screenplay',NULL),(66301,25,8,'composer',NULL,NULL),(66301,5670,9,'cinematographer','director of photography',NULL),(66327,1,1,'actor',NULL,'[\"Narrator - S.D. Kluger\"]'),(66327,1682,2,'actor',NULL,'[\"Kris Kringle\",\"Santa Claus\"]'),(66327,943978,3,'actor',NULL,'[\"Winter Warlock\"]'),(66327,293659,4,'actor',NULL,'[\"Burgermeister Meisterburger\",\"Grimsley\",\"Soldiers\"]'),(66327,60072,5,'director',NULL,NULL),(66327,710230,6,'director',NULL,NULL),(66327,612239,7,'writer','teleplay by',NULL),(66327,493127,8,'composer',NULL,NULL),(66327,170082,9,'production_designer',NULL,NULL),(66380,777010,10,'composer',NULL,NULL),(66380,2817,1,'actress',NULL,'[\"Countess Nadine Carody\"]'),(66380,696866,2,'actor',NULL,'[\"Dr. Alwin Seward\"]'),(66380,612219,3,'actor',NULL,'[\"Dr. Steiner\"]'),(66380,835527,4,'actress',NULL,'[\"Linda Westinghouse\"]'),(66380,1238,5,'director',NULL,NULL),(66380,161621,6,'writer','story: Spanish version',NULL),(66380,786130,7,'writer','screenplay',NULL),(66380,831290,8,'writer','novel',NULL),(66380,400022,9,'composer',NULL,NULL),(66434,616680,10,'cinematographer','director of photography',NULL),(66434,380,1,'actor',NULL,'[\"THX\"]'),(66434,587,2,'actor',NULL,'[\"SEN\"]'),(66434,171824,3,'actor',NULL,'[\"SRT\"]'),(66434,574114,4,'actress',NULL,'[\"LUH\"]'),(66434,184,5,'director',NULL,NULL),(66434,4555,6,'writer','screenplay by',NULL),(66434,836375,7,'producer','producer',NULL),(66434,6277,8,'composer',NULL,NULL),(66434,452753,9,'cinematographer','director of photography',NULL),(66473,644823,10,'writer','screenplay',NULL),(66473,842,1,'actor',NULL,'[\"Admiral Husband E. Kimmel\"]'),(66473,945522,2,'actor',NULL,'[\"Admiral Isoroku Yamamoto\"]'),(66473,1673,3,'actor',NULL,'[\"General Walter C. Short\"]'),(66473,1072,4,'actor',NULL,'[\"Henry L. Stimson\"]'),(66473,281507,5,'director',NULL,NULL),(66473,297935,6,'director',NULL,NULL),(66473,557927,7,'director',NULL,NULL),(66473,41,8,'director',NULL,NULL),(66473,286734,9,'writer','screenplay',NULL),(66491,215811,10,'editor',NULL,NULL),(66491,366,1,'actress',NULL,'[\"Tristana\"]'),(66491,721073,2,'actor',NULL,'[\"Don Lope\"]'),(66491,626259,3,'actor',NULL,'[\"Horacio\"]'),(66491,304747,4,'actress',NULL,'[\"Saturna\"]'),(66491,320,5,'director',NULL,NULL),(66491,17855,6,'writer',NULL,NULL),(66491,701918,7,'writer','novel',NULL),(66491,233587,8,'producer','producer',NULL),(66491,5631,9,'cinematographer',NULL,NULL),(66518,731862,10,'composer',NULL,NULL),(66518,685839,1,'actress',NULL,'[\"Marcilla\",\"Carmilla\",\"Mircalla Karnstein\"]'),(66518,824448,2,'actress',NULL,'[\"Laura\"]'),(66518,809184,3,'actress',NULL,'[\"Emma Morton\"]'),(66518,1088,4,'actor',NULL,'[\"General von Spielsdorf\"]'),(66518,1928,5,'director',NULL,NULL),(66518,494257,6,'writer','story \"Carmilla\"',NULL),(66518,277612,7,'writer','adapted by',NULL),(66518,309633,8,'writer','adapted by',NULL),(66518,836542,9,'writer','adapted by',NULL),(66549,65,10,'composer',NULL,NULL),(66549,1768,1,'actor',NULL,'[\"Napoleon Bonaparte\"]'),(66549,1626,2,'actor',NULL,'[\"Arthur Wellesley - Duke of Wellington\"]'),(66549,80,3,'actor',NULL,'[\"Louis XVIII\"]'),(66549,370144,4,'actor',NULL,'[\"Gen. Sir Thomas Picton\"]'),(66549,94083,5,'director',NULL,NULL),(66549,185867,6,'writer','story and screenplay',NULL),(66549,94558,7,'writer','screenplay collaboration',NULL),(66549,812827,8,'writer','dialogue: Italian version',NULL),(66549,209569,9,'producer','executive producer',NULL),(66579,103457,10,'editor',NULL,NULL),(66579,869,1,'actor',NULL,'[\"Rupert Birkin\"]'),(66579,1657,2,'actor',NULL,'[\"Gerald Crich\"]'),(66579,413559,3,'actress',NULL,'[\"Gudrun Brangwen\"]'),(66579,511614,4,'actress',NULL,'[\"Ursula Brangwen\"]'),(66579,1692,5,'director',NULL,NULL),(66579,492692,6,'writer','novel',NULL),(66579,469594,7,'writer','written for the screen by',NULL),(66579,16,8,'composer',NULL,NULL),(66579,930119,9,'cinematographer','director of photography',NULL),(66601,690638,10,'producer','producer',NULL),(66601,292689,1,'actor',NULL,'[\"Mark\"]'),(66601,356998,2,'actress',NULL,'[\"Daria\"]'),(66601,280707,3,'actor',NULL,'[\"Cafe owner\"]'),(66601,819525,4,'actor',NULL,'[\"Lee\'s associate\"]'),(66601,774,5,'director',NULL,NULL),(66601,744081,6,'writer','screenplay',NULL),(66601,1731,7,'writer','screenplay',NULL),(66601,346096,8,'writer','screenplay',NULL),(66601,672543,9,'writer','screenplay',NULL),(66728,811580,10,'cinematographer','director of photography',NULL),(66728,427894,1,'actor',NULL,'[\"Professor Albert Dooley\"]'),(66728,242098,2,'actress',NULL,'[\"Katie Dooley\"]'),(66728,283499,3,'actor',NULL,'[\"Finley Hooper\"]'),(66728,731634,4,'actor',NULL,'[\"Fred Hines\"]'),(66728,568546,5,'director',NULL,NULL),(66728,450774,6,'writer','story',NULL),(66728,737167,7,'writer',NULL,NULL),(66728,26419,8,'producer','producer',NULL),(66728,48301,9,'composer',NULL,NULL),(66730,6023,10,'composer',NULL,NULL),(66730,277,1,'actor',NULL,'[\"Christie\"]'),(66730,2096,2,'actress',NULL,'[\"Beryl Evans\"]'),(66730,457,3,'actor',NULL,'[\"Timothy Evans\"]'),(66730,382411,4,'actress',NULL,'[\"Ethel Christie\"]'),(66730,281507,5,'director',NULL,NULL),(66730,264088,6,'writer','screenplay by',NULL),(66730,448188,7,'writer','based on the book \"Ten Rillington Place\" by',NULL),(66730,511723,8,'producer','producer',NULL),(66730,710388,9,'producer','producer',NULL),(66763,6005,10,'composer',NULL,NULL),(66763,4435,1,'actor',NULL,'[\"Anand Saigal\"]'),(66763,821,2,'actor',NULL,'[\"Dr. Bhaskar K. Bannerjee\",\"Babu Moshai\"]'),(66763,764407,3,'actress',NULL,'[\"Renu\"]'),(66763,219946,4,'actor',NULL,'[\"Dr. Prakash Kulkarni\"]'),(66763,611531,5,'director',NULL,NULL),(66763,347899,6,'writer','screenplay',NULL),(66763,611520,7,'writer','screenplay',NULL),(66763,244887,8,'writer','screenplay',NULL),(66763,802690,9,'producer','producer',NULL),(66765,633677,10,'editor',NULL,NULL),(66765,92,1,'actor',NULL,'[\"Announcer\",\"Hungarian Citizen\",\"Self-Defence Teacher\"]'),(66765,1589,2,'actor',NULL,'[\"Gumby\",\"Man with tape recorder\",\"Phrasebook Author\"]'),(66765,1037,3,'actor',NULL,'[\"Brother\",\"Policeman\",\"Defence attorney\"]'),(66765,416,4,'actor',NULL,'[\"Self-Defence Nun\",\"Flasher\",\"Uncle Sam\"]'),(66765,534084,5,'director',NULL,NULL),(66765,1385,6,'writer','screen foreplay & conception',NULL),(66765,1402,7,'writer','screen foreplay & conception',NULL),(66765,143513,8,'producer','producer',NULL),(66765,611341,9,'cinematographer','director of photography',NULL),(66769,319574,10,'editor',NULL,NULL),(66769,647921,1,'actor',NULL,'[\"Dr. Mark Hall\"]'),(66769,384050,2,'actor',NULL,'[\"Dr. Jeremy Stone\"]'),(66769,915536,3,'actor',NULL,'[\"Dr. Charles Dutton\"]'),(66769,3679,4,'actress',NULL,'[\"Dr. Ruth Leavitt\"]'),(66769,936404,5,'director',NULL,NULL),(66769,341,6,'writer','novel',NULL),(66769,317254,7,'writer','screenplay',NULL),(66769,6195,8,'composer',NULL,NULL),(66769,459660,9,'cinematographer','director of photography',NULL),(66798,655739,10,'composer',NULL,NULL),(66798,893341,1,'actor',NULL,'[\"Lino Massaro\"]'),(66798,107035,2,'actor',NULL,'[\"Jacques\"]'),(66798,219342,3,'actor',NULL,'[\"Simon Duroc\"]'),(66798,2776,4,'actor',NULL,'[\"Johnny Hallyday\"]'),(66798,500988,5,'director',NULL,NULL),(66798,882683,6,'writer','collaborator',NULL),(66798,199188,7,'producer','producer',NULL),(66798,594891,8,'producer','producer',NULL),(66798,6162,9,'composer',NULL,NULL),(66808,742471,10,'editor',NULL,NULL),(66808,95,1,'actor',NULL,'[\"Fielding Mellish\"]'),(66808,489837,2,'actress',NULL,'[\"Nancy\"]'),(66808,598823,3,'actor',NULL,'[\"General Emilio M. Vargas\"]'),(66808,7707,4,'actress',NULL,'[\"Yolanda\"]'),(66808,741582,5,'writer','written by',NULL),(66808,343532,6,'producer','producer',NULL),(66808,6121,7,'composer',NULL,NULL),(66808,182694,8,'cinematographer','director of photography',NULL),(66808,435894,9,'editor','film editor',NULL),(66817,196119,10,'writer','screenplay',NULL),(66817,1450,1,'actress',NULL,'[\"Miss Price\"]'),(66817,866835,2,'actor',NULL,'[\"Emelius\"]'),(66817,1522,3,'actor',NULL,'[\"Mr. Jelk\"]'),(66817,415488,4,'actor',NULL,'[\"Bookman\"]'),(66817,829038,5,'director',NULL,NULL),(66817,453832,6,'director','animation director',NULL),(66817,942723,7,'writer','animation story',NULL),(66817,75859,8,'writer','animation story',NULL),(66817,909556,9,'writer','screenplay',NULL),(66824,606211,10,'editor',NULL,NULL),(66824,814773,1,'actor',NULL,'[\"Amedeo Battipaglia\"]'),(66824,1012,2,'actress',NULL,'[\"Carmela\"]'),(66824,308523,3,'actor',NULL,'[\"Giuseppe Bartoni\"]'),(66824,647435,4,'actor',NULL,'[\"Don Anselmo\"]'),(66824,952737,5,'director',NULL,NULL),(66824,814242,6,'writer','story',NULL),(66824,372934,7,'producer','producer',NULL),(66824,6227,8,'composer',NULL,NULL),(66824,5905,9,'cinematographer',NULL,NULL),(66857,6262,10,'composer',NULL,NULL),(66857,893341,1,'actor',NULL,'[\"Cornelius von Zeelinga\"]'),(66857,3,2,'actress',NULL,'[\"Linda Larue\"]'),(66857,871272,3,'actor',NULL,'[\"Le commodore Gerry Sanderson\"]'),(66857,720890,4,'actor',NULL,'[\"Lord William Percival Hammond\"]'),(66857,257992,5,'director',NULL,NULL),(66857,669572,6,'writer','novel',NULL),(66857,670806,7,'writer','adaptation',NULL),(66857,714532,8,'writer',NULL,NULL),(66857,688583,9,'producer','producer',NULL),(66914,543066,10,'producer','producer',NULL),(66914,79513,1,'actress',NULL,'[\"Christina\"]'),(66914,629548,2,'actress',NULL,'[\"Carmencé - Abigail and Howard\'s Daughter\"]'),(66914,508826,3,'actress',NULL,'[\"The Queen of the Night\"]'),(66914,658687,4,'actress',NULL,'[\"Abigail - Howard\'s Wife\"]'),(66914,1238,5,'director',NULL,NULL),(66914,704565,6,'director',NULL,NULL),(66914,210811,7,'director',NULL,NULL),(66914,194950,8,'writer','French dialogue',NULL),(66914,504244,9,'producer','producer',NULL),(66919,274721,10,'production_designer',NULL,NULL),(66919,2231,1,'actor',NULL,'[\"Ludovico \'Lulù\' Massa\"]'),(66919,577423,2,'actress',NULL,'[\"Lidia\"]'),(66919,674358,3,'actor',NULL,'[\"Syndacalist\"]'),(66919,225118,4,'actor',NULL,'[\"Bassi\"]'),(66919,677880,5,'director',NULL,NULL),(66919,685316,6,'writer','story & screenplay',NULL),(66919,1553,7,'composer',NULL,NULL),(66919,5765,8,'cinematographer',NULL,NULL),(66919,557870,9,'editor',NULL,NULL),(66921,532,1,'actor',NULL,'[\"Alex\"]'),(66921,535861,2,'actor',NULL,'[\"Mr Alexander\"]'),(66921,60988,3,'actor',NULL,'[\"Chief Guard\"]'),(66921,165049,4,'actor',NULL,'[\"Dim\"]'),(66921,40,5,'director',NULL,NULL),(66921,121256,6,'writer','novel',NULL),(66921,5633,7,'cinematographer',NULL,NULL),(66921,124833,8,'editor',NULL,NULL),(66921,58045,9,'production_designer',NULL,NULL),(66993,914239,10,'cinematographer','director of photography',NULL),(66993,603,1,'actress',NULL,'[\"Sister Jeanne\"]'),(66993,1657,2,'actor',NULL,'[\"Urbain Grandier\"]'),(66993,840303,3,'actor',NULL,'[\"Baron De Laubardemont\"]'),(66993,12451,4,'actor',NULL,'[\"Ibert\"]'),(66993,1692,5,'director',NULL,NULL),(66993,926008,6,'writer','based on the play by',NULL),(66993,404717,7,'writer','novel \"The Devils of Loudun\"',NULL),(66993,813227,8,'producer','producer',NULL),(66993,203903,9,'composer',NULL,NULL),(66995,759162,10,'producer','producer',NULL),(66995,125,1,'actor',NULL,'[\"James Bond\"]'),(66995,1762,2,'actress',NULL,'[\"Tiffany Case\"]'),(66995,336509,3,'actor',NULL,'[\"Blofeld\"]'),(66995,939836,4,'actress',NULL,'[\"Plenty O\'Toole\"]'),(66995,357891,5,'director',NULL,NULL),(66995,537363,6,'writer','screenplay by',NULL),(66995,542539,7,'writer','screenplay by',NULL),(66995,1220,8,'writer','novel \"Diamonds Are Forever\"',NULL),(66995,110482,9,'producer','producer',NULL),(67023,607359,10,'editor',NULL,NULL),(67023,915840,1,'actor',NULL,'[\"David Mann\"]'),(67023,779261,2,'actress',NULL,'[\"Mrs. Mann\"]'),(67023,278646,3,'actor',NULL,'[\"Cafe Owner\"]'),(67023,296135,4,'actor',NULL,'[\"Bus Driver\"]'),(67023,229,5,'director',NULL,NULL),(67023,558577,6,'writer','screenplay',NULL),(67023,248740,7,'producer','producer',NULL),(67023,6105,8,'composer',NULL,NULL),(67023,5785,9,'cinematographer','director of photography',NULL),(67065,5657,10,'cinematographer','director of photography',NULL),(67065,1522,1,'actor',NULL,'[\"Cornelius\"]'),(67065,1375,2,'actress',NULL,'[\"Zira\"]'),(67065,226947,3,'actor',NULL,'[\"Dr. Lewis Dixon\"]'),(67065,874353,4,'actress',NULL,'[\"Dr. Stephanie Branton\"]'),(67065,852279,5,'director',NULL,NULL),(67065,214989,6,'writer','written by',NULL),(67065,99541,7,'writer','based upon characters created by',NULL),(67065,414336,8,'producer','producer',NULL),(67065,25,9,'composer',NULL,NULL),(67116,5845,10,'cinematographer','director of photography',NULL),(67116,432,1,'actor',NULL,'[\"Jimmy Doyle\"]'),(67116,1702,2,'actor',NULL,'[\"Buddy Russo\"]'),(67116,721073,3,'actor',NULL,'[\"Alain Charnier\"]'),(67116,516215,4,'actor',NULL,'[\"Sal Boca\"]'),(67116,1243,5,'director',NULL,NULL),(67116,862781,6,'writer','screenplay by',NULL),(67116,601811,7,'writer','based on the book by',NULL),(67116,195358,8,'producer','producer',NULL),(67116,254803,9,'composer',NULL,NULL),(67128,517109,10,'editor',NULL,NULL),(67128,323,1,'actor',NULL,'[\"Jack Carter\"]'),(67128,376915,2,'actor',NULL,'[\"Eric Paice\"]'),(67128,1180,3,'actress',NULL,'[\"Anna\"]'),(67128,651570,4,'actor',NULL,'[\"Cyril Kinnear\"]'),(67128,388198,5,'director',NULL,NULL),(67128,507794,6,'writer','novel \"Jack\'s Return Home\"',NULL),(67128,459771,7,'producer','producer',NULL),(67128,5982,8,'composer',NULL,NULL),(67128,839807,9,'cinematographer','director of photography',NULL),(67148,475863,10,'editor',NULL,NULL),(67148,945562,1,'actor',NULL,'[\"Dr. Toru Yano\"]'),(67148,454123,2,'actress',NULL,'[\"Toshie Yano\"]'),(67148,442904,3,'actor',NULL,'[\"Ken Yano\"]'),(67148,793053,4,'actor',NULL,'[\"Yukio Keuchi\"]'),(67148,52419,5,'director',NULL,NULL),(67148,393094,6,'director',NULL,NULL),(67148,454119,7,'writer','screenplay',NULL),(67148,541240,8,'composer',NULL,NULL),(67148,543524,9,'cinematographer',NULL,NULL),(67185,913149,10,'editor','film editor',NULL),(67185,2106,1,'actress',NULL,'[\"Maude Chardin\"]'),(67185,1069,2,'actor',NULL,'[\"Harold Chasen\"]'),(67185,681954,3,'actress',NULL,'[\"Mrs. Chasen\"]'),(67185,159258,4,'actor',NULL,'[\"Glaucus\"]'),(67185,797,5,'director',NULL,NULL),(67185,383359,6,'writer','written by',NULL),(67185,612529,7,'producer','producer',NULL),(67185,2166,8,'cinematographer','director of photography',NULL),(67185,768235,9,'editor','film editor',NULL),(67206,746577,1,'actress',NULL,'[\"Maggie\"]'),(67206,458274,2,'actor',NULL,'[\"Benson\"]'),(67206,43055,3,'actress',NULL,'[\"Diana\"]'),(67206,316740,4,'actress',NULL,'[\"Hitchiker\"]'),(67206,780933,5,'director',NULL,NULL),(67206,780944,6,'director',NULL,NULL),(67206,147251,7,'writer','original story',NULL),(67206,169302,8,'composer',NULL,NULL),(67206,388507,9,'editor',NULL,NULL),(67277,601655,10,'editor',NULL,NULL),(67277,961,1,'actor',NULL,'[\"Joe Bonham\"]'),(67277,276293,2,'actress',NULL,'[\"Kareen\"]'),(67277,402554,3,'actress',NULL,'[\"Joe\'s Mother\"]'),(67277,1673,4,'actor',NULL,'[\"Joe\'s Father\"]'),(67277,874308,5,'director',NULL,NULL),(67277,320,6,'writer',NULL,NULL),(67277,132258,7,'producer','producer',NULL),(67277,6076,8,'composer',NULL,NULL),(67277,107486,9,'cinematographer',NULL,NULL),(67309,503594,10,'editor',NULL,NULL),(67309,404,1,'actress',NULL,'[\"Bree Daniels\"]'),(67309,661,2,'actor',NULL,'[\"John Klute\"]'),(67309,162541,3,'actor',NULL,'[\"Peter Cable\"]'),(67309,1702,4,'actor',NULL,'[\"Frank Ligourin\"]'),(67309,1587,5,'director',NULL,NULL),(67309,506920,6,'writer','written by',NULL),(67309,5557134,7,'writer','written by',NULL),(67309,806498,8,'composer',NULL,NULL),(67309,932336,9,'cinematographer','director of photography',NULL),(67322,156512,10,'cinematographer',NULL,NULL),(67322,155607,1,'actress',NULL,'[\"\'Lady Hermit\' Shang Yu-ling\"]'),(67322,516316,2,'actor',NULL,'[\"Wu Chang-chun\"]'),(67322,793389,3,'actress',NULL,'[\"Chin Tsui-peng\"]'),(67322,398782,4,'actor',NULL,'[\"Black Demon\"]'),(67322,387354,5,'director',NULL,NULL),(67322,947304,6,'writer',NULL,NULL),(67322,789956,7,'producer','producer',NULL),(67322,155449,8,'composer',NULL,NULL),(67322,498471,9,'cinematographer',NULL,NULL),(67328,3533486,10,'archive_footage',NULL,NULL),(67328,961,1,'actor',NULL,'[\"Sonny Crawford\"]'),(67328,313,2,'actor',NULL,'[\"Duane Jackson\"]'),(67328,1732,3,'actress',NULL,'[\"Jacy Farrow\"]'),(67328,424565,4,'actor',NULL,'[\"Sam the Lion\"]'),(67328,953,5,'director',NULL,NULL),(67328,573505,6,'writer','screenplay by',NULL),(67328,295375,7,'producer','producer',NULL),(67328,1248907,8,'archive_footage',NULL,NULL),(67328,3533785,9,'archive_footage',NULL,NULL),(67341,49987,10,'cinematographer',NULL,NULL),(67341,483876,1,'actress',NULL,'[\"Jessica\"]'),(67341,382263,2,'actor',NULL,'[\"Duncan\"]'),(67341,640409,3,'actor',NULL,'[\"Woody\"]'),(67341,179151,4,'actress',NULL,'[\"Girl\"]'),(67341,359386,5,'director',NULL,NULL),(67341,435606,6,'writer','written by',NULL),(67341,494257,7,'writer','story \"Carmilla\"',NULL),(67341,608897,8,'producer','producer',NULL),(67341,831045,9,'composer',NULL,NULL),(67355,321353,10,'editor',NULL,NULL),(67355,1352,1,'actor',NULL,'[\"Trinità\"]'),(67355,817881,2,'actor',NULL,'[\"Bambino\"]'),(67355,951597,3,'actor',NULL,'[\"Jonathan\"]'),(67355,836387,4,'actor',NULL,'[\"Tobias\"]'),(67355,5645,5,'director',NULL,NULL),(67355,526876,6,'writer','dialogue',NULL),(67355,956953,7,'producer','producer',NULL),(67355,6200,8,'composer',NULL,NULL),(67355,320291,9,'cinematographer',NULL,NULL),(67367,731862,10,'composer',NULL,NULL),(67367,420266,1,'actress',NULL,'[\"Countess Herritzen\"]'),(67367,61012,2,'actor',NULL,'[\"Giles Barton\"]'),(67367,500299,3,'actress',NULL,'[\"Janet Playfair\"]'),(67367,826662,4,'actress',NULL,'[\"Mircalla\",\"Carmilla Karnstein\"]'),(67367,762727,5,'director',NULL,NULL),(67367,309633,6,'writer','screenplay by',NULL),(67367,494257,7,'writer','based on characters created by',NULL),(67367,277612,8,'producer','producer',NULL),(67367,836542,9,'producer','producer',NULL),(67372,852405,10,'cinematographer','director of photography',NULL),(67372,277424,1,'actor',NULL,'[\"Macbeth\"]'),(67372,768,2,'actress',NULL,'[\"Lady Macbeth\"]'),(67372,789864,3,'actor',NULL,'[\"Banquo\"]'),(67372,63027,4,'actor',NULL,'[\"Macduff\"]'),(67372,591,5,'director',NULL,NULL),(67372,636,6,'writer','play',NULL),(67372,878985,7,'writer','screenplay by',NULL),(67372,105931,8,'producer','producer',NULL),(67372,858202,9,'composer',NULL,NULL),(67402,546263,10,'editor',NULL,NULL),(67402,603,1,'actress',NULL,'[\"Mary, Queen of Scots\"]'),(67402,413559,2,'actress',NULL,'[\"Queen Elizabeth\"]'),(67402,1526,3,'actor',NULL,'[\"James Stuart\"]'),(67402,1096,4,'actor',NULL,'[\"Henry, Lord Darnley\"]'),(67402,418986,5,'director',NULL,NULL),(67402,354942,6,'writer','original screenplay',NULL),(67402,909259,7,'producer','producer',NULL),(67402,290,8,'composer',NULL,NULL),(67402,5666,9,'cinematographer','director of photography',NULL),(67411,112896,10,'producer','producer',NULL),(67411,886,1,'actor',NULL,'[\"John McCabe\"]'),(67411,1046,2,'actress',NULL,'[\"Constance Miller\"]'),(67411,41281,3,'actor',NULL,'[\"Sheehan\"]'),(67411,1137,4,'actor',NULL,'[\"The Lawyer\"]'),(67411,265,5,'director',NULL,NULL),(67411,622547,6,'writer','novel \"McCabe\"',NULL),(67411,2562061,7,'writer','screenplay',NULL),(67411,1801,8,'writer','screenplay',NULL),(67411,130773,9,'writer','screenplay',NULL),(67418,896165,10,'editor',NULL,NULL),(67418,504492,1,'actor',NULL,'[\"Daniel\"]'),(67418,405028,2,'actress',NULL,'[\"Melody\"]'),(67418,928349,3,'actor',NULL,'[\"Ornshaw\"]'),(67418,57370,4,'actor',NULL,'[\"Chambers\"]'),(67418,404014,5,'director',NULL,NULL),(67418,570,6,'writer','original story and screenplay',NULL),(67418,701298,7,'producer','producer',NULL),(67418,1397320,8,'composer',NULL,NULL),(67418,5893,9,'cinematographer','director of photography',NULL),(67439,102021,10,'editor',NULL,NULL),(67439,300991,1,'actor',NULL,'[\"Benoit\"]'),(67439,150619,2,'actress',NULL,'[\"Carmen\"]'),(67439,239760,3,'actor',NULL,'[\"L\'oncle Antoine\"]'),(67439,857789,4,'actress',NULL,'[\"Sa femme\"]'),(67439,433267,5,'director',NULL,NULL),(67439,674817,6,'writer','an original script by',NULL),(67439,64382,7,'producer','producer',NULL),(67439,184058,8,'composer',NULL,NULL),(67439,105693,9,'cinematographer',NULL,NULL),(67445,1958,1,'actor',NULL,'[\"Gustav von Aschenbach\"]'),(67445,885123,2,'actor',NULL,'[\"Hotel Manager\"]'),(67445,122780,3,'actor',NULL,'[\"Alfred\"]'),(67445,723235,4,'actress',NULL,'[\"Tadzio\'s Governess\"]'),(67445,899581,5,'director',NULL,NULL),(67445,3407,6,'writer','from the novel by',NULL),(67445,45938,7,'writer','screenplay by',NULL),(67445,5681,8,'cinematographer','director of photography',NULL),(67445,557870,9,'editor',NULL,NULL),(67451,91980,10,'editor',NULL,NULL),(67451,751426,1,'actress',NULL,'[\"Mrs. Pollifax\"]'),(67451,569000,2,'actor',NULL,'[\"Farrell\"]'),(67451,675490,3,'actor',NULL,'[\"Berisha\"]'),(67451,332390,4,'actor',NULL,'[\"Nexdhet\"]'),(67451,554169,5,'director',NULL,NULL),(67451,319431,6,'writer','book \"The Unexpected Mrs. Pollifax\"',NULL),(67451,109900,7,'producer','producer',NULL),(67451,6277,8,'composer',NULL,NULL),(67451,5657,9,'cinematographer','director of photography',NULL),(67482,346756,10,'editor',NULL,NULL),(67482,527,1,'actor',NULL,'[\"Henry Graham\"]'),(67482,561938,2,'actress',NULL,'[\"Henrietta Lowell\"]'),(67482,922967,3,'actor',NULL,'[\"Andy McPherson\"]'),(67482,741394,4,'actor',NULL,'[\"Harold\"]'),(67482,728567,5,'writer','short story \"The Green Heart\"',NULL),(67482,253865,6,'producer','producer',NULL),(67482,462322,7,'producer','producer',NULL),(67482,541900,8,'producer','producer',NULL),(67482,5842,9,'cinematographer','director of photography',NULL),(67483,5961,10,'composer',NULL,NULL),(67483,419785,1,'actor',NULL,'[\"Nicholas\"]'),(67483,840531,2,'actress',NULL,'[\"Alexandra\"]'),(67483,633661,3,'actor',NULL,'[\"Alexis\"]'),(67483,551323,4,'actress',NULL,'[\"Olga\"]'),(67483,769874,5,'director',NULL,NULL),(67483,557409,6,'writer','book',NULL),(67483,93927,7,'writer','additional dialogue',NULL),(67483,63953,8,'writer','screenplay',NULL),(67483,818545,9,'producer','producer',NULL),(67541,921956,10,'cinematographer','director of photography',NULL),(67541,587,1,'actor',NULL,'[\"Doc Tydon\"]'),(67541,93937,2,'actor',NULL,'[\"John Grant\"]'),(67541,706256,3,'actor',NULL,'[\"Jock Crawford\"]'),(67541,443191,4,'actress',NULL,'[\"Janette Hynes\"]'),(67541,467646,5,'director',NULL,NULL),(67541,428056,6,'writer','screenplay by',NULL),(67541,177146,7,'writer','based on the novel \"Wake in Fright\" by',NULL),(67541,932579,8,'producer','producer',NULL),(67541,779346,9,'composer',NULL,NULL),(67588,684173,10,'editor',NULL,NULL),(67588,142,1,'actor',NULL,'[\"Dave\"]'),(67588,910055,2,'actress',NULL,'[\"Evelyn\"]'),(67588,5234,3,'actress',NULL,'[\"Tobie\"]'),(67588,488024,4,'actor',NULL,'[\"Sgt. McCallum\"]'),(67588,374268,5,'writer','screenplay',NULL),(67588,718466,6,'writer','screenplay',NULL),(67588,197883,7,'producer','producer',NULL),(67588,59121,8,'composer',NULL,NULL),(67588,839732,9,'cinematographer','director of photography',NULL),(67633,388009,10,'editor',NULL,NULL),(67633,92688,1,'actor',NULL,'[\"First Tribunal Defendant\"]'),(67633,1778373,2,'actor',NULL,'[\"Defendant in the tribunal\"]'),(67633,34492,3,'actor',NULL,'[\"Jay Kaufman, Tribunal Defendant\"]'),(67633,1777034,4,'actor',NULL,'[\"Defendant in the tribunal\"]'),(67633,914386,5,'director',NULL,NULL),(67633,553098,6,'producer','producer',NULL),(67633,609354,7,'composer',NULL,NULL),(67633,161443,8,'cinematographer',NULL,NULL),(67633,810545,9,'cinematographer',NULL,NULL),(67637,99429,10,'writer','adaptation',NULL),(67637,3,1,'actress',NULL,'[\"Louise\",\"Frenchie King\"]'),(67637,1012,2,'actress',NULL,'[\"Marie Sarrazin\"]'),(67637,689488,3,'actor',NULL,'[\"Le Shérif\"]'),(67637,696163,4,'actress',NULL,'[\"Tante Amélie\"]'),(67637,160108,5,'director',NULL,NULL),(67637,143007,6,'director',NULL,NULL),(67637,30046,7,'writer','screenplay',NULL),(67637,625999,8,'writer','screenplay',NULL),(67637,939618,9,'writer','adaptation',NULL),(67690,171771,10,'producer','producer',NULL),(67690,786891,1,'actress',NULL,'[\"Countess Elizabeth Báthory\"]'),(67690,439482,2,'actor',NULL,'[\"Stefan\"]'),(67690,653540,3,'actress',NULL,'[\"Valerie\"]'),(67690,711947,4,'actress',NULL,'[\"Ilona Harczy\"]'),(67690,478176,5,'director',NULL,NULL),(67690,238385,6,'writer','screenplay',NULL),(67690,275081,7,'writer','screenplay',NULL),(67690,477814,8,'writer',NULL,NULL),(67690,4822665,9,'writer','screenplay associate',NULL),(67713,335576,10,'cinematographer','director of photography',NULL),(67713,489,1,'actor',NULL,'[\"Dracula\"]'),(67713,913993,2,'actor',NULL,'[\"Simon\"]'),(67713,360081,3,'actress',NULL,'[\"Sarah\"]'),(67713,559968,4,'actor',NULL,'[\"Paul Carlson\"]'),(67713,1928,5,'director',NULL,NULL),(67713,385573,6,'writer','screenplay',NULL),(67713,831290,7,'writer','based on the character created by',NULL),(67713,949239,8,'producer','producer',NULL),(67713,2302,9,'composer',NULL,NULL),(67736,541833,10,'cinematographer',NULL,NULL),(67736,560932,1,'actor',NULL,'[\"Mike Barrett\"]'),(67736,564059,2,'actress',NULL,'[\"Maggie Russell\"]'),(67736,137023,3,'actor',NULL,'[\"Elmo Duncan\"]'),(67736,282435,4,'actor',NULL,'[\"Luther Yerkes\"]'),(67736,540,5,'director',NULL,NULL),(67736,226415,6,'writer','screenplay',NULL),(67736,507670,7,'writer',NULL,NULL),(67736,908683,8,'writer','novel',NULL),(67736,6225,9,'composer',NULL,NULL),(67741,425266,10,'composer',NULL,NULL),(67741,745780,1,'actor',NULL,'[\"John Shaft\"]'),(67741,348214,2,'actor',NULL,'[\"Bumpy Jonas\"]'),(67741,162541,3,'actor',NULL,'[\"Vic Androzzi\"]'),(67741,820626,4,'actor',NULL,'[\"Ben Buford\"]'),(67741,662953,5,'director',NULL,NULL),(67741,862781,6,'writer','screenplay',NULL),(67741,85353,7,'writer','screenplay',NULL),(67741,293446,8,'producer','producer',NULL),(67741,5002,9,'composer',NULL,NULL),(67800,178979,10,'cinematographer','director of photography',NULL),(67800,163,1,'actor',NULL,'[\"David Sumner\"]'),(67800,1265,2,'actress',NULL,'[\"Amy\"]'),(67800,891092,3,'actor',NULL,'[\"Tom Hedden\"]'),(67800,571435,4,'actor',NULL,'[\"Maj. John Scott\"]'),(67800,1603,5,'director',NULL,NULL),(67800,329051,6,'writer','screenplay',NULL),(67800,930684,7,'writer','novel \"The Siege of Trencher\'s Farm\"',NULL),(67800,578176,8,'producer','producer',NULL),(67800,6076,9,'composer',NULL,NULL),(67810,887708,1,'actor',NULL,'[\"Sweetback\"]'),(67810,768788,2,'actor',NULL,'[\"Mu-Mu\"]'),(67810,227647,3,'actor',NULL,'[\"Commissioner\"]'),(67810,160985,4,'actor',NULL,'[\"Beetle\"]'),(67810,343399,5,'producer','producer',NULL),(67810,247451,6,'composer',NULL,NULL),(67810,561803,7,'cinematographer','director of photography',NULL),(67820,5816,10,'cinematographer','director of photography',NULL),(67820,137524,1,'actress',NULL,'[\"Lynn Tyne\"]'),(67820,377750,2,'actor',NULL,'[\"Larry Tyne\"]'),(67820,257077,3,'actress',NULL,'[\"Margot\"]'),(67820,6835795,4,'actor',NULL,'[\"Tony\"]'),(67820,1232,5,'director',NULL,NULL),(67820,345359,6,'writer','written by',NULL),(67820,140643,7,'writer','written by',NULL),(67820,458830,8,'writer','written by',NULL),(67820,189798,9,'producer','producer',NULL),(67866,423524,1,'actor',NULL,'[\"El Topo\"]'),(67866,423526,2,'actor',NULL,'[\"Hijo\",\"Topo\'s son\"]'),(67866,499191,3,'actor',NULL,'[\"Moribundo\"]'),(67866,778,4,'actor',NULL,'[\"Bandido 1\"]'),(67866,179924,5,'cinematographer','director of photography',NULL),(67866,484620,6,'editor',NULL,NULL),(67881,5671,10,'cinematographer',NULL,NULL),(67881,31,1,'actress',NULL,'[\"Hecuba\"]'),(67881,603,2,'actress',NULL,'[\"Andromache\"]'),(67881,991,3,'actress',NULL,'[\"Cassandra\"]'),(67881,660327,4,'actress',NULL,'[\"Helen\"]'),(67881,128050,5,'director',NULL,NULL),(67881,262381,6,'writer','play',NULL),(67881,1020898,7,'writer','English translation',NULL),(67881,634128,8,'producer','producer',NULL),(67881,6319,9,'composer',NULL,NULL),(67919,1884,1,'actor',NULL,'[\"Karl Oskar\"]'),(67919,880521,2,'actress',NULL,'[\"Kristina\"]'),(67919,43453,3,'actor',NULL,'[\"Robert\"]'),(67919,75961,4,'actor',NULL,'[\"Nils\"]'),(67919,873296,5,'director',NULL,NULL),(67919,286873,6,'writer','screenplay',NULL),(67919,595002,7,'writer','based on a novel by',NULL),(67919,635059,8,'composer',NULL,NULL),(67927,2166,10,'cinematographer','director of photography',NULL),(67927,628017,1,'actor',NULL,'[\"Kowalski\"]'),(67927,1476,2,'actor',NULL,'[\"Super Soul\"]'),(67927,1648,3,'actress',NULL,'[\"Hitch-Hiker\"]'),(67927,415591,4,'actor',NULL,'[\"Prospector\"]'),(67927,764781,5,'director',NULL,NULL),(67927,127788,6,'writer','screenplay',NULL),(67927,366422,7,'writer','from a story outline by',NULL),(67927,2264778,8,'writer',NULL,NULL),(67927,818050,9,'producer','producer',NULL),(67959,316626,10,'editor',NULL,NULL),(67959,256,1,'actress',NULL,'[\"Girl\"]'),(67959,347858,2,'actor',NULL,'[\"Black Boy\"]'),(67959,736312,3,'actor',NULL,'[\"White Boy\"]'),(67959,576851,4,'actor',NULL,'[\"Father\"]'),(67959,1676,5,'director',NULL,NULL),(67959,93927,6,'writer','screenplay by',NULL),(67959,131597,7,'writer','from the novel by',NULL),(67959,514843,8,'producer','producer',NULL),(67959,290,9,'composer',NULL,NULL),(67961,448194,10,'actor',NULL,'[\"Judge\"]'),(67961,517056,1,'actress',NULL,'[\"Wanda\"]'),(67961,383449,2,'actor',NULL,'[\"Mr. Dennis\"]'),(67961,795913,3,'actress',NULL,'[\"Wanda\'s Sister\"]'),(67961,795914,4,'actor',NULL,'[\"Brother in Law\"]'),(67961,795972,5,'producer','producer',NULL),(67961,698468,6,'cinematographer',NULL,NULL),(67961,858010,7,'actor',NULL,'[\"Husband\"]'),(67961,858011,8,'actress',NULL,'[\"Miss Godek\"]'),(67961,744740,9,'actor',NULL,'[\"Tony\"]'),(67972,660968,10,'editor',NULL,NULL),(67972,647005,1,'actor',NULL,'[\"Adam\"]'),(67972,25997,2,'actress',NULL,'[\"Helen\"]'),(67972,788035,3,'actor',NULL,'[\"Tarot\"]'),(67972,336474,4,'actor',NULL,'[\"Pill\"]'),(67972,505392,5,'director',NULL,NULL),(67972,442124,6,'writer','written by',NULL),(67972,507606,7,'producer','producer',NULL),(67972,314214,8,'composer',NULL,NULL),(67972,542552,9,'cinematographer','director of photography',NULL),(67977,928570,10,'cinematographer','director of photography',NULL),(67977,1262,1,'actor',NULL,'[\"Doremus Connelly\"]'),(67977,39051,2,'actress',NULL,'[\"Helen Connelly\"]'),(67977,140,3,'actor',NULL,'[\"Craig\"]'),(67977,915382,4,'actor',NULL,'[\"Sheriff Hap Washbrook\"]'),(67977,494885,5,'director',NULL,NULL),(67977,108745,6,'writer','screenplay by',NULL),(67977,268468,7,'writer','based on a novel by',NULL),(67977,794475,8,'producer','producer',NULL),(67977,5808,9,'cinematographer','director of photography',NULL),(67992,406471,10,'cinematographer','director of photography',NULL),(67992,698,1,'actor',NULL,'[\"Willy Wonka\"]'),(67992,16776,2,'actor',NULL,'[\"Grandpa Joe\"]'),(67992,652578,3,'actor',NULL,'[\"Charlie\"]'),(67992,455702,4,'actor',NULL,'[\"Mr. Salt\"]'),(67992,835799,5,'director',NULL,NULL),(67992,1094,6,'writer','screenplay by',NULL),(67992,783544,7,'writer','screenplay by',NULL),(67992,546876,8,'producer','producer',NULL),(67992,938678,9,'producer','producer',NULL),(68154,320291,10,'cinematographer','director of photography',NULL),(68154,1352,1,'actor',NULL,'[\"Trinità\"]'),(68154,817881,2,'actor',NULL,'[\"Bambino\"]'),(68154,813805,3,'actress',NULL,'[\"Perla\"]'),(68154,850254,4,'actor',NULL,'[\"Mitch, Sheriff\"]'),(68154,5645,5,'director',NULL,NULL),(68154,526876,6,'writer','dialogue',NULL),(68154,956953,7,'producer','producer',NULL),(68154,6026,8,'composer',NULL,NULL),(68154,6027,9,'composer',NULL,NULL),(68156,932030,10,'editor',NULL,NULL),(68156,200122,1,'actor',NULL,'[\"John Adams (MA)\"]'),(68156,196247,2,'actor',NULL,'[\"Dr. Benjamin Franklin (PA)\"]'),(68156,397432,3,'actor',NULL,'[\"Thomas Jefferson (VA)\"]'),(68156,534577,4,'actor',NULL,'[\"John Dickinson (PA)\"]'),(68156,402596,5,'director',NULL,NULL),(68156,832099,6,'writer','book: play',NULL),(68156,250360,7,'writer','based on a conception of',NULL),(68156,912491,8,'producer','producer',NULL),(68156,5888,9,'cinematographer','director of photography',NULL),(68161,784939,10,'production_designer',NULL,NULL),(68161,554430,1,'actor',NULL,'[\"Fedot Vaskov, starshina\"]'),(68161,230990,2,'actress',NULL,'[\"Sofya Gurvich\"]'),(68161,237106,3,'actress',NULL,'[\"Elizaveta Brichkina\"]'),(68161,548638,4,'actress',NULL,'[\"Galina Chetvertak\"]'),(68161,744612,5,'director',NULL,NULL),(68161,890564,6,'writer',NULL,NULL),(68161,596449,7,'composer',NULL,NULL),(68161,795878,8,'cinematographer',NULL,NULL),(68161,592502,9,'editor',NULL,NULL),(68182,1428,1,'actor',NULL,'[\"Don Lope de Aguirre\"]'),(68182,346087,2,'actor',NULL,'[\"Don Pedro de Ursua\"]'),(68182,737928,3,'actress',NULL,'[\"Inez de Atienza\"]'),(68182,215683,4,'actor',NULL,'[\"Brother Gaspar de Carvajal\"]'),(68182,1348,5,'director',NULL,NULL),(68182,696083,6,'producer','producer',NULL),(68182,691311,7,'composer',NULL,NULL),(68182,560761,8,'cinematographer','director of photography',NULL),(68182,537754,9,'editor',NULL,NULL),(68205,214038,10,'editor',NULL,NULL),(68205,894302,1,'actor',NULL,'[\"Frédéric\"]'),(68205,958088,2,'actress',NULL,'[\"Chloé\"]'),(68205,894303,3,'actress',NULL,'[\"Hélène\"]'),(68205,147561,4,'actor',NULL,'[\"Gérard\"]'),(68205,6445,5,'director',NULL,NULL),(68205,183172,6,'producer','producer',NULL),(68205,775447,7,'producer','producer',NULL),(68205,246196,8,'composer',NULL,NULL),(68205,743,9,'cinematographer',NULL,NULL),(68232,447652,1,'actor',NULL,'[\"Jack Marlowe\"]'),(68232,761100,2,'actor',NULL,'[\"Mayor Duncan\"]'),(68232,747013,3,'actress',NULL,'[\"Vivian\"]'),(68232,106394,4,'actor',NULL,'[\"Dacosta\"]'),(68232,652261,5,'director',NULL,NULL),(68232,686459,6,'producer','producer',NULL),(68232,6094,7,'composer',NULL,NULL),(68232,273304,8,'cinematographer',NULL,NULL),(68232,737932,9,'editor',NULL,NULL),(68240,493,1,'actor',NULL,'[\"Wendell Armbruster, Jr.\"]'),(68240,5236,2,'actress',NULL,'[\"Pamela Piggott\"]'),(68240,720890,3,'actor',NULL,'[\"Carlo Carlucci\"]'),(68240,28647,4,'actor',NULL,'[\"J.J. Blodgett\"]'),(68240,697,5,'director',NULL,NULL),(68240,853138,6,'writer','play \"Avanti!\"',NULL),(68240,224634,7,'writer','screenplay',NULL),(68240,5765,8,'cinematographer',NULL,NULL),(68240,935988,9,'editor',NULL,NULL),(68273,755057,10,'cinematographer','director of photography',NULL),(68273,427,1,'actress',NULL,'[\"Blossom\"]'),(68273,285503,2,'actress',NULL,'[\"Terry\"]'),(68273,738670,3,'actress',NULL,'[\"Carla\"]'),(68273,102673,4,'actress',NULL,'[\"Bull Jones\"]'),(68273,384335,5,'director',NULL,NULL),(68273,379391,6,'producer','producer',NULL),(68273,769838,7,'producer','producer',NULL),(68273,20313,8,'composer',NULL,NULL),(68273,519771,9,'composer',NULL,NULL),(68278,141380,1,'actress',NULL,'[\"Petra von Kant\"]'),(68278,778016,2,'actress',NULL,'[\"Karin Thimm\"]'),(68278,769440,3,'actress',NULL,'[\"Sidonie von Grasenabb\"]'),(68278,559837,4,'actress',NULL,'[\"Gabriele von Kant\"]'),(68278,1202,5,'director',NULL,NULL),(68278,271831,6,'producer','producer',NULL),(68278,841,7,'cinematographer',NULL,NULL),(68278,264187,8,'editor',NULL,NULL),(68278,704624,9,'production_designer',NULL,NULL),(68281,813882,10,'editor','film editor',NULL),(68281,987,1,'actor',NULL,'[\"Gunn\"]'),(68281,1445,2,'actor',NULL,'[\"Capelli\"]'),(68281,843044,3,'actress',NULL,'[\"Judith\"]'),(68281,658885,4,'actress',NULL,'[\"Toni\"]'),(68281,366708,5,'director',NULL,NULL),(68281,790458,6,'writer','based on an original screenplay by',NULL),(68281,168759,7,'writer','screenplay by',NULL),(68281,651751,8,'composer',NULL,NULL),(68281,459660,9,'cinematographer','director of photography',NULL),(68282,79437,10,'composer',NULL,NULL),(68282,427,1,'actress',NULL,'[\"Lee Daniels\"]'),(68282,548619,2,'actress',NULL,'[\"Karen Brent\"]'),(68282,354085,3,'actor',NULL,'[\"Ruben\"]'),(68282,96143,4,'actress',NULL,'[\"Matron Densmore\"]'),(68282,739388,5,'director',NULL,NULL),(68282,160026,6,'writer','screenplay',NULL),(68282,899187,7,'writer','story',NULL),(68282,1129,8,'writer','story',NULL),(68282,39068,9,'producer','producer',NULL),(68284,827063,10,'cinematographer','director of photography',NULL),(68284,551234,1,'actor',NULL,'[\"Blacula\",\"Mamuwalde\"]'),(68284,569144,2,'actress',NULL,'[\"Tina\",\"Luva\"]'),(68284,629370,3,'actress',NULL,'[\"Michelle\"]'),(68284,711560,4,'actor',NULL,'[\"Dr. Gordon Thomas\"]'),(68284,186091,5,'director',NULL,NULL),(68284,868681,6,'writer','screenplay',NULL),(68284,462849,7,'writer','screenplay',NULL),(68284,618533,8,'producer','producer',NULL),(68284,656178,9,'composer',NULL,NULL),(68326,88340,10,'editor',NULL,NULL),(68326,443,1,'actress',NULL,'[\"Jill\"]'),(68326,1902,2,'actor',NULL,'[\"Don\"]'),(68326,373012,3,'actress',NULL,'[\"Mrs. Baker\"]'),(68326,1274,4,'actor',NULL,'[\"Ralph\"]'),(68326,441501,5,'director',NULL,NULL),(68326,314826,6,'writer','screenplay',NULL),(68326,291622,7,'producer','producer',NULL),(68326,17235,8,'composer',NULL,NULL),(68326,485702,9,'cinematographer','director of photography',NULL),(68327,6074,10,'producer','producer',NULL),(68327,591485,1,'actress',NULL,'[\"Sally Bowles\"]'),(68327,1868,2,'actor',NULL,'[\"Brian Roberts\"]'),(68327,340926,3,'actor',NULL,'[\"Maximilian von Heune\"]'),(68327,1297,4,'actor',NULL,'[\"Master of Ceremonies\"]'),(68327,2080,5,'director',NULL,NULL),(68327,557646,6,'writer','based on the musical play \"Cabaret\" book by',NULL),(68327,886668,7,'writer','based on the play by',NULL),(68327,410877,8,'writer','stories',NULL),(68327,696319,9,'writer','screenplay',NULL),(68346,6227,10,'composer',NULL,NULL),(68346,2231,1,'actor',NULL,'[\"Enrico Mattei\"]'),(68346,820042,2,'actor',NULL,'[\"Journalist\"]'),(68346,49975,3,'actor',NULL,'[\"William McHale\"]'),(68346,738949,4,'actor',NULL,'[\"Journalist\"]'),(68346,742940,5,'director',NULL,NULL),(68346,346096,6,'writer','story',NULL),(68346,591823,7,'writer','collaboration',NULL),(68346,224345,8,'writer','collaboration',NULL),(68346,188053,9,'producer','producer',NULL),(68359,319315,10,'editor',NULL,NULL),(68359,53329,1,'actor',NULL,'[\"Charlie Brown\"]'),(68359,463410,2,'actress',NULL,'[\"Lucy van Pelt\"]'),(68359,790344,3,'actor',NULL,'[\"Linus van Pelt\"]'),(68359,597344,4,'actress',NULL,'[\"Sally Brown\"]'),(68359,6837,5,'director',NULL,NULL),(68359,738736,6,'director',NULL,NULL),(68359,776433,7,'writer','written and created by',NULL),(68359,578882,8,'producer','producer',NULL),(68359,345279,9,'composer',NULL,NULL),(68361,346535,10,'production_designer',NULL,NULL),(68361,721073,1,'actor',NULL,'[\"Don Rafael Acosta\"]'),(68361,786891,2,'actress',NULL,'[\"Simone Thévenot\"]'),(68361,291289,3,'actor',NULL,'[\"François Thévenot\"]'),(68361,644680,4,'actress',NULL,'[\"Florence\"]'),(68361,320,5,'director',NULL,NULL),(68361,140643,6,'writer','with the collaboration of',NULL),(68361,797889,7,'producer','producer',NULL),(68361,723788,8,'cinematographer','director of photography',NULL),(68361,687141,9,'editor',NULL,NULL),(68370,650276,1,'actor',NULL,'[\"Alan\"]'),(68370,541048,2,'actress',NULL,'[\"Val\"]'),(68370,318832,3,'actor',NULL,'[\"Jeff\"]'),(68370,548277,4,'actress',NULL,'[\"Anya\"]'),(68370,163706,5,'director',NULL,NULL),(68370,323661,6,'producer','producer',NULL),(68370,957293,7,'composer',NULL,NULL),(68370,569647,8,'cinematographer','director of photography',NULL),(68371,782883,10,'writer','screenplay',NULL),(68371,411054,1,'actor',NULL,'[\"Gengo Kotaka\"]'),(68371,386805,2,'actress',NULL,'[\"Tomoko Tomoe\"]'),(68371,847394,3,'actor',NULL,'[\"Shosaku Takasugi\"]'),(68371,880849,4,'actress',NULL,'[\"Machiko Shima\"]'),(68371,297974,5,'director',NULL,NULL),(68371,52419,6,'director',NULL,NULL),(68371,393094,7,'director',NULL,NULL),(68371,559398,8,'director',NULL,NULL),(68371,454119,9,'writer','story \"Gojira tai Uchu Kaijû\"',NULL),(68468,680257,10,'actor',NULL,'[\"Mr. Fenster\"]'),(68468,1483,1,'actress',NULL,'[\"Linda Lovelace\"]'),(68468,715857,2,'actor',NULL,'[\"Dr. Young\"]'),(68468,2695124,3,'actress',NULL,'[\"Helen\"]'),(68468,365496,4,'actor',NULL,'[\"Mr. Maltz\"]'),(68468,198790,5,'director',NULL,NULL),(68468,672695,6,'producer','producer',NULL),(68468,272857,7,'cinematographer','director of photography',NULL),(68468,522442,8,'actor',NULL,'[\"Wilber Wang\"]'),(68468,175485,9,'actress',NULL,'[\"The Nurse\"]'),(68473,685,1,'actor',NULL,'[\"Ed\"]'),(68473,608,2,'actor',NULL,'[\"Lewis\"]'),(68473,885,3,'actor',NULL,'[\"Bobby\"]'),(68473,1074,4,'actor',NULL,'[\"Drew\"]'),(68473,958,5,'director',NULL,NULL),(68473,225463,6,'writer','screenplay',NULL),(68473,5936,7,'cinematographer','director of photography',NULL),(68473,697371,8,'editor',NULL,NULL),(68569,915232,10,'editor',NULL,NULL),(68569,711605,1,'actress',NULL,'[\"Janice Baildon\"]'),(68569,212674,2,'actor',NULL,'[\"Mr. Baildon\"]'),(68569,147016,3,'actress',NULL,'[\"Mrs. Baildon\"]'),(68569,862939,4,'actor',NULL,'[\"Tim\"]'),(68569,516360,5,'director',NULL,NULL),(68569,580256,6,'writer','screenplay',NULL),(68569,307821,7,'producer','producer',NULL),(68569,929443,8,'composer',NULL,NULL),(68569,829259,9,'cinematographer',NULL,NULL),(68611,433384,10,'editor',NULL,NULL),(68611,277424,1,'actor',NULL,'[\"Richard Blaney\"]'),(68611,287687,2,'actor',NULL,'[\"Robert Rusk\"]'),(68611,500317,3,'actress',NULL,'[\"Brenda Blaney\"]'),(68611,557281,4,'actress',NULL,'[\"Babs Milligan\"]'),(68611,33,5,'director',NULL,NULL),(68611,478383,6,'writer','based on the novel \"Goodbye Piccadilly, Farewell Leicester Square\" by',NULL),(68611,787289,7,'writer','screenplay by',NULL),(68611,6109,8,'composer',NULL,NULL),(68611,852405,9,'cinematographer','director of photography',NULL),(68638,5065,10,'composer',NULL,NULL),(68638,537,1,'actor',NULL,'[\"Doc McCoy\"]'),(68638,532298,2,'actress',NULL,'[\"Carol McCoy\"]'),(68638,424565,3,'actor',NULL,'[\"Jack Beynon\"]'),(68638,1783,4,'actress',NULL,'[\"Fran Clinton\"]'),(68638,1603,5,'director',NULL,NULL),(68638,1353,6,'writer','screenplay',NULL),(68638,860292,7,'writer','novel',NULL),(68638,112896,8,'producer','producer',NULL),(68638,287759,9,'producer','producer',NULL),(68646,722000,10,'editor',NULL,NULL),(68646,8,1,'actor',NULL,'[\"Don Vito Corleone\"]'),(68646,199,2,'actor',NULL,'[\"Michael Corleone\"]'),(68646,1001,3,'actor',NULL,'[\"Sonny Corleone\"]'),(68646,473,4,'actress',NULL,'[\"Kay Adams\"]'),(68646,338,5,'director',NULL,NULL),(68646,701374,6,'writer','screenplay by',NULL),(68646,748665,7,'producer','producer',NULL),(68646,65,8,'composer',NULL,NULL),(68646,932336,9,'cinematographer','director of photography',NULL),(68675,193474,10,'producer','producer',NULL),(68675,79,1,'actress',NULL,'[\"Hannie Caulder\"]'),(68675,191685,2,'actor',NULL,'[\"Thomas Luther Price\"]'),(68675,308,3,'actor',NULL,'[\"Emmett Clemens\"]'),(68675,1181,4,'actor',NULL,'[\"Frank Clemens\"]'),(68675,447944,5,'director',NULL,NULL),(68675,2216341,6,'writer','characters',NULL),(68675,2219317,7,'writer','characters',NULL),(68675,178305,8,'writer','story',NULL),(68675,353180,9,'writer','screenplay',NULL),(68699,916883,10,'editor','film editor',NULL),(68699,142,1,'actor',NULL,'[\"The Stranger\"]'),(68699,89244,2,'actress',NULL,'[\"Sarah Belding\"]'),(68699,384494,3,'actress',NULL,'[\"Callie Travers\"]'),(68699,752751,4,'actor',NULL,'[\"Dave Drake\"]'),(68699,862781,5,'writer','written by',NULL),(68699,718466,6,'writer',NULL,NULL),(68699,197883,7,'producer','producer',NULL),(68699,59121,8,'composer',NULL,NULL),(68699,839732,9,'cinematographer','director of photography',NULL),(68762,30019,10,'writer','screenplay',NULL),(68762,602,1,'actor',NULL,'[\"Jeremiah Johnson\"]'),(68762,2095,2,'actor',NULL,'[\"Bear Claw\"]'),(68762,93386,3,'actress',NULL,'[\"Swan\"]'),(68762,16365,4,'actor',NULL,'[\"Caleb\"]'),(68762,1628,5,'director',NULL,NULL),(68762,279830,6,'writer','novel \"Mountain Man\"',NULL),(68762,861633,7,'writer','story \"Crow Killer\"',NULL),(68762,120491,8,'writer','story \"Crow Killer\"',NULL),(68762,587518,9,'writer','screenplay',NULL),(68768,916883,10,'editor',NULL,NULL),(68768,142,1,'actor',NULL,'[\"Joe Kidd\"]'),(68768,380,2,'actor',NULL,'[\"Frank Harlan\"]'),(68768,768334,3,'actor',NULL,'[\"Luis Chama\"]'),(68768,835144,4,'actor',NULL,'[\"Lamarr\"]'),(68768,836328,5,'director',NULL,NULL),(68768,1465,6,'writer','written by',NULL),(68768,65639,7,'producer','producer',NULL),(68768,6277,8,'composer',NULL,NULL),(68768,839732,9,'cinematographer','director of photography',NULL),(68815,6679028,10,'composer',NULL,NULL),(68815,423663,1,'actor',NULL,'[\"Ogami Itto\"]'),(68815,913796,2,'actor',NULL,'[\"Bizennokami Yagyû\"]'),(68815,441351,3,'actor',NULL,'[\"Ikiyu\"]'),(68815,562206,4,'actress',NULL,'[\"Osen (whore)\"]'),(68815,593014,5,'director',NULL,NULL),(68815,463521,6,'writer','manga',NULL),(68815,463618,7,'writer','manga',NULL),(68815,441526,8,'producer','producer',NULL),(68815,559387,9,'producer','producer',NULL),(68816,757312,10,'composer',NULL,NULL),(68816,423663,1,'actor',NULL,'[\"Ogami Itto\"]'),(68816,559607,2,'actress',NULL,'[\"Yagyu Sayaka\"]'),(68816,645011,3,'actor',NULL,'[\"Benma Hidari\"]'),(68816,461983,4,'actor',NULL,'[\"Ozunu Kurokuwa\"]'),(68816,593014,5,'director',NULL,NULL),(68816,463521,6,'writer','story',NULL),(68816,463618,7,'writer','story',NULL),(68816,441526,8,'producer','producer',NULL),(68816,559387,9,'producer','producer',NULL),(68817,436473,10,'composer',NULL,NULL),(68817,423663,1,'actor',NULL,'[\"Ogami Itto\"]'),(68817,441351,2,'actor',NULL,'[\"Magomura Kanbei\"]'),(68817,357297,3,'actress',NULL,'[\"Koshio Torizo\",\"Miura Tori\"]'),(68817,945299,4,'actor',NULL,'[\"Sawatari Genba\"]'),(68817,593014,5,'director',NULL,NULL),(68817,463521,6,'writer','story',NULL),(68817,463618,7,'writer','story',NULL),(68817,441526,8,'producer','producer',NULL),(68817,559387,9,'producer','producer',NULL),(68828,565946,10,'writer','screenplay',NULL),(68828,5384,1,'actress',NULL,'[\"Billie Holiday\"]'),(68828,1850,2,'actor',NULL,'[\"Louis McKay\"]'),(68828,1640,3,'actor',NULL,'[\"Piano Man\"]'),(68828,130210,4,'actor',NULL,'[\"Reg Hanley\"]'),(68828,2089,5,'director',NULL,NULL),(68828,163771,6,'writer','screenplay',NULL),(68828,210867,7,'writer','screenplay',NULL),(68828,240762,8,'writer','book',NULL),(68828,390507,9,'writer','book',NULL),(68833,144053,1,'actress',NULL,'[\"Mari Collingwood\"]'),(68833,335715,2,'actress',NULL,'[\"Phyllis Stone\"]'),(68833,381450,3,'actor',NULL,'[\"Krug Stillo\"]'),(68833,511107,4,'actor',NULL,'[\"Fred \'Weasel\' Podowski\"]'),(68833,127,5,'director',NULL,NULL),(68833,410694,6,'writer','earlier screenplay',NULL),(68833,192446,7,'producer','producer',NULL),(68833,403811,8,'cinematographer','director of cinematography',NULL),(69019,5937,10,'cinematographer','director of photography',NULL),(69019,93030,1,'actress',NULL,'[\"Maciara\"]'),(69019,99054,2,'actress',NULL,'[\"Patrizia\"]'),(69019,587401,3,'actor',NULL,'[\"Andrea Martelli\"]'),(69019,660327,4,'actress',NULL,'[\"Dona Aurelia Avallone\"]'),(69019,2086,5,'director',NULL,NULL),(69019,316363,6,'writer','story',NULL),(69019,166405,7,'writer','screenplay',NULL),(69019,24127,8,'producer','producer',NULL),(69019,6221,9,'composer',NULL,NULL),(69067,606628,10,'actor',NULL,'[\"Bob Tally\"]'),(69067,1800,1,'actor',NULL,'[\"Maury Dann\"]'),(69067,135622,2,'actress',NULL,'[\"Mayleen Travis\"]'),(69067,374186,3,'actress',NULL,'[\"Rosamond McClintock\"]'),(69067,350380,4,'actor',NULL,'[\"Clarence McGinty\"]'),(69067,241174,5,'director',NULL,NULL),(69067,139319,6,'writer','writer',NULL),(69067,277840,7,'producer','producer',NULL),(69067,323075,8,'cinematographer','director of photography',NULL),(69067,357041,9,'editor',NULL,NULL),(69089,1145,1,'actor',NULL,'[\"Divine\",\"Babs Johnson\"]'),(69089,516634,2,'actor',NULL,'[\"Raymond Marble\"]'),(69089,668976,3,'actress',NULL,'[\"Cotton\"]'),(69089,831467,4,'actress',NULL,'[\"Connie Marble\"]'),(69089,691,5,'director',NULL,NULL),(69089,672781,6,'production_designer',NULL,NULL),(69095,6026,10,'composer',NULL,NULL),(69095,1352,1,'actor',NULL,'[\"Plata\"]'),(69095,817881,2,'actor',NULL,'[\"Salud\"]'),(69095,464170,3,'actor',NULL,'[\"Mr. Ears\"]'),(69095,612999,4,'actor',NULL,'[\"Pilot, discussing with Salud in town\"]'),(69095,171562,5,'director',NULL,NULL),(69095,16628,6,'writer','screenplay',NULL),(69095,656011,7,'writer','screenplay',NULL),(69095,526876,8,'writer','English dialogue',NULL),(69095,956953,9,'producer','producer',NULL),(69113,2354,10,'composer',NULL,NULL),(69113,432,1,'actor',NULL,'[\"Reverend Scott\"]'),(69113,308,2,'actor',NULL,'[\"Rogo\"]'),(69113,1859,3,'actress',NULL,'[\"Belle Rosen\"]'),(69113,999,4,'actor',NULL,'[\"Martin\"]'),(69113,623768,5,'director',NULL,NULL),(69113,302904,6,'writer','from the novel by',NULL),(69113,798103,7,'writer','screenplay by',NULL),(69113,562606,8,'writer','screenplay by',NULL),(69113,740,9,'producer','producer',NULL),(69281,546263,10,'editor',NULL,NULL),(69281,59,1,'actor',NULL,'[\"Andrew Wyke\"]'),(69281,323,2,'actor',NULL,'[\"Milo Tindle\"]'),(69281,147250,3,'actor',NULL,'[\"Inspector Doppler\"]'),(69281,560064,4,'actor',NULL,'[\"Detective Sergeant Tarrant\"]'),(69281,581,5,'director',NULL,NULL),(69281,787289,6,'writer','play',NULL),(69281,331810,7,'producer','producer',NULL),(69281,11709,8,'composer',NULL,NULL),(69281,5807,9,'cinematographer','director of photography',NULL),(69293,270828,10,'editor',NULL,NULL),(69293,94081,1,'actress',NULL,'[\"Khari\"]'),(69293,52023,2,'actor',NULL,'[\"Kris Kelvin, psikholog\"]'),(69293,433525,3,'actor',NULL,'[\"Doktor Snaut, kibernetik\"]'),(69293,245367,4,'actor',NULL,'[\"Anri Berton, pilot\"]'),(69293,1789,5,'director',NULL,NULL),(69293,501015,6,'writer','novel \"Solaris\"',NULL),(69293,330830,7,'writer','screenplay',NULL),(69293,5949,8,'composer',NULL,NULL),(69293,951134,9,'cinematographer',NULL,NULL),(69404,296917,10,'producer','producer',NULL),(69404,1749,1,'actress',NULL,'[\"Aunt Augusta\"]'),(69404,566680,2,'actor',NULL,'[\"Henry\"]'),(69404,1283,3,'actor',NULL,'[\"Wordsworth\"]'),(69404,827137,4,'actor',NULL,'[\"Visconti\"]'),(69404,2030,5,'director',NULL,NULL),(69404,696319,6,'writer','screenplay',NULL),(69404,923839,7,'writer','screenplay',NULL),(69404,1294,8,'writer','novel',NULL),(69404,187582,9,'producer','producer',NULL),(69442,56697,10,'editor',NULL,NULL),(69442,480942,1,'actress',NULL,'[\"Camille Bliss\"]'),(69442,105475,2,'actor',NULL,'[\"Maître Murene\"]'),(69442,219342,3,'actor',NULL,'[\"Arthur\"]'),(69442,545383,4,'actor',NULL,'[\"Roger, aka Sam Golden\"]'),(69442,76,5,'director',NULL,NULL),(69442,268230,6,'writer','novel \"Such a Gorgeous Kid Like Me\"',NULL),(69442,196362,7,'writer','adaptation and dialogue',NULL),(69442,16,8,'composer',NULL,NULL),(69442,5723,9,'cinematographer',NULL,NULL),(69467,27683,1,'actress',NULL,'[\"Agnes\"]'),(69467,880521,2,'actress',NULL,'[\"Maria\",\"Agnes\' sister\"]'),(69467,843306,3,'actress',NULL,'[\"Anna\",\"maid\"]'),(69467,862026,4,'actress',NULL,'[\"Karin\",\"Agnes\' sister\"]'),(69467,5,5,'director',NULL,NULL),(69467,137324,6,'producer','producer',NULL),(69467,5815,7,'cinematographer',NULL,NULL),(69467,526459,8,'editor',NULL,NULL),(69467,903623,9,'production_designer',NULL,NULL),(69489,914296,10,'editor',NULL,NULL),(69489,587,1,'actor',NULL,'[\"Jim Dougall, Sr.\"]'),(69489,1406,2,'actress',NULL,'[\"Jeannie Dougall\"]'),(69489,677954,3,'actress',NULL,'[\"Mary Dougall\"]'),(69489,680584,4,'actor',NULL,'[\"Sandy\"]'),(69489,296651,5,'director',NULL,NULL),(69489,896480,6,'producer','producer',NULL),(69489,477426,7,'composer',NULL,NULL),(69489,500686,8,'cinematographer',NULL,NULL),(69489,523191,9,'editor',NULL,NULL),(69495,276368,10,'editor',NULL,NULL),(69495,659,1,'actress',NULL,'[\"Judy Maxwell\"]'),(69495,641939,2,'actor',NULL,'[\"Howard Bannister\"]'),(69495,1404,3,'actress',NULL,'[\"Eunice Burns\"]'),(69495,550318,4,'actor',NULL,'[\"Hugh Simon\"]'),(69495,953,5,'director',NULL,NULL),(69495,377750,6,'writer','screenplay',NULL),(69495,628058,7,'writer','screenplay',NULL),(69495,914,8,'writer','screenplay',NULL),(69495,4088,9,'cinematographer','director of photography',NULL),(69697,6026,10,'composer',NULL,NULL),(69697,1352,1,'actor',NULL,'[\"Kid\"]'),(69697,817881,2,'actor',NULL,'[\"Ben\"]'),(69697,789070,3,'actor',NULL,'[\"The Boss\"]'),(69697,791665,4,'actress',NULL,'[\"Liza\"]'),(69697,284503,5,'director',NULL,NULL),(69697,769121,6,'writer','story',NULL),(69697,168746,7,'writer','screenplay',NULL),(69697,284239,8,'writer','screenplay',NULL),(69697,147601,9,'producer','producer',NULL),(69704,263739,10,'cinematographer','director of photography',NULL),(69704,377,1,'actor',NULL,'[\"Curt\"]'),(69704,165,2,'actor',NULL,'[\"Steve\"]'),(69704,494432,3,'actor',NULL,'[\"John\"]'),(69704,1747,4,'actor',NULL,'[\"Terry\"]'),(69704,184,5,'director',NULL,NULL),(69704,441718,6,'writer','written by',NULL),(69704,404754,7,'writer','written by',NULL),(69704,338,8,'producer','producer',NULL),(69704,195022,9,'cinematographer','director of photography',NULL),(69729,1090,10,'cinematographer',NULL,NULL),(69729,548619,1,'actress',NULL,'[\"Bodicia\"]'),(69729,427,2,'actress',NULL,'[\"Mamawi\"]'),(69729,522370,3,'actress',NULL,'[\"Deidre\"]'),(69729,612219,4,'actor',NULL,'[\"Lucilius\"]'),(69729,142587,5,'director',NULL,NULL),(69729,181019,6,'writer',NULL,NULL),(69729,181020,7,'writer',NULL,NULL),(69729,198941,8,'producer','producer',NULL),(69729,6028,9,'composer',NULL,NULL),(69745,739124,1,'actress',NULL,'[\"Countess Irina Karlstein\"]'),(69745,852488,2,'actor',NULL,'[\"Baron Von Rathony\"]'),(69745,36309,3,'actress',NULL,'[\"Princess de Rochefort\'s Servant\"]'),(69745,842737,4,'actress',NULL,'[\"Princess de Rochefort\"]'),(69745,1238,5,'director',NULL,NULL),(69745,109884,6,'writer','writer',NULL),(69745,67514,7,'writer','dialogue',NULL),(69745,504244,8,'producer','producer',NULL),(69745,924647,9,'composer',NULL,NULL),(69747,419470,10,'producer','producer',NULL),(69747,86,1,'actor',NULL,'[\"Victor Pivert\"]'),(69747,591877,2,'actress',NULL,'[\"Antoinette Pivert\"]'),(69747,216177,3,'actress',NULL,'[\"Germaine Pivert\"]'),(69747,197950,4,'actor',NULL,'[\"Rabbi Jacob\"]'),(69747,653620,5,'director',NULL,NULL),(69747,860019,6,'writer','screenplay',NULL),(69747,1000119,7,'writer','collaborating writer',NULL),(69747,209684,8,'writer','writer',NULL),(69747,80013,9,'producer','producer',NULL),(69754,186686,10,'editor',NULL,NULL),(69754,173735,1,'actress',NULL,'[\"Ann Gentry\"]'),(69754,738746,2,'actress',NULL,'[\"Mrs. Wadsworth\"]'),(69754,384494,3,'actress',NULL,'[\"Germaine Wadsworth\"]'),(69754,954911,4,'actress',NULL,'[\"Alba Wadsworth\"]'),(69754,692872,5,'director',NULL,NULL),(69754,689843,6,'writer','written by',NULL),(69754,689846,7,'producer','producer',NULL),(69754,6086,8,'composer',NULL,NULL),(69754,6540,9,'cinematographer','director of photography',NULL),(69762,2333,10,'editor',NULL,NULL),(69762,640,1,'actor',NULL,'[\"Kit\"]'),(69762,651,2,'actress',NULL,'[\"Holly\"]'),(69762,643105,3,'actor',NULL,'[\"Father\"]'),(69762,81560,4,'actor',NULL,'[\"Cato\"]'),(69762,517,5,'director',NULL,NULL),(69762,864169,6,'composer',NULL,NULL),(69762,5714,7,'cinematographer',NULL,NULL),(69762,488377,8,'cinematographer',NULL,NULL),(69762,698266,9,'cinematographer',NULL,NULL),(69848,740284,10,'editor',NULL,NULL),(69848,416228,1,'actor',NULL,'[\"Sidney Fiddler\"]'),(69848,934774,2,'actress',NULL,'[\"Hope Springs\"]'),(69848,801330,3,'actress',NULL,'[\"Connie Philpotts\"]'),(69848,175427,4,'actor',NULL,'[\"Mayor Frederick Bumble\"]'),(69848,858873,5,'director',NULL,NULL),(69848,745349,6,'writer','screenplay',NULL),(69848,737127,7,'producer','producer',NULL),(69848,736864,8,'composer',NULL,NULL),(69848,401727,9,'cinematographer','director of photography',NULL),(69890,909607,10,'cinematographer','director of photography',NULL),(69890,229939,1,'actress',NULL,'[\"Cleopatra Jones\"]'),(69890,143378,2,'actor',NULL,'[\"Reuben\"]'),(69890,843044,3,'actress',NULL,'[\"Tiffany\"]'),(69890,267279,4,'actor',NULL,'[\"Doodlebug\"]'),(69890,823630,5,'director',NULL,NULL),(69890,432273,6,'writer','screenplay by',NULL),(69890,445766,7,'writer','screenplay by',NULL),(69890,855065,8,'producer','producer',NULL),(69890,425266,9,'composer',NULL,NULL),(69895,140889,1,'actress',NULL,'[\"Judy\"]'),(69895,534032,2,'actor',NULL,'[\"David\"]'),(69895,428197,3,'actor',NULL,'[\"Clank\"]'),(69895,390915,4,'actor',NULL,'[\"Col. Peckem\"]'),(69895,1681,5,'director',NULL,NULL),(69895,566130,6,'writer','based on a script by',NULL),(69895,188450,7,'producer','producer',NULL),(69895,730897,8,'composer',NULL,NULL),(69895,386100,9,'cinematographer','director of photography',NULL),(69897,427,1,'actress',NULL,'[\"Coffy\"]'),(69897,103468,2,'actor',NULL,'[\"Howard Brunswick\"]'),(69897,233306,3,'actor',NULL,'[\"King George\"]'),(69897,254670,4,'actor',NULL,'[\"Carter\"]'),(69897,384335,5,'director',NULL,NULL),(69897,660367,6,'producer','producer',NULL),(69897,43806,7,'composer',NULL,NULL),(69897,517873,8,'cinematographer','director of photography',NULL),(69897,2279,9,'editor',NULL,NULL),(69945,639321,1,'actor',NULL,'[\"Pinback\"]'),(69945,656607,2,'actor',NULL,'[\"Talby\"]'),(69945,621406,3,'actor',NULL,'[\"Lt. Doolittle\"]'),(69945,475157,4,'actor',NULL,'[\"Boiler\"]'),(69945,118,5,'director',NULL,NULL),(69945,460475,6,'cinematographer','director of photography',NULL),(69987,406471,10,'cinematographer',NULL,NULL),(69987,1954,1,'actress',NULL,'[\"Nora Helmer\"]'),(69987,164,2,'actor',NULL,'[\"Torvald Helmer\"]'),(69987,724732,3,'actor',NULL,'[\"Dr. Rank\"]'),(69987,1186,4,'actor',NULL,'[\"Krogstad\"]'),(69987,307559,5,'director',NULL,NULL),(69987,406585,6,'writer','play \"Et dukkehjem\"',NULL),(69987,358960,7,'writer','screenplay',NULL),(69987,253865,8,'producer','producer',NULL),(69987,290,9,'composer',NULL,NULL),(69990,934711,10,'cinematographer',NULL,NULL),(69990,3,1,'actress',NULL,'[\"Jeanne\"]'),(69990,396136,2,'actor',NULL,'[\"Louis Prévost\"]'),(69990,140649,3,'actor',NULL,'[\"L\'abbé Paul\"]'),(69990,761187,4,'actress',NULL,'[\"Léporella\"]'),(69990,671862,5,'director',NULL,NULL),(69990,146424,6,'writer','scenario',NULL),(69990,678080,7,'writer','scenario collaborator',NULL),(69990,6177,8,'composer',NULL,NULL),(69990,5684,9,'cinematographer',NULL,NULL),(69995,6043,10,'composer',NULL,NULL),(69995,1046,1,'actress',NULL,'[\"Laura Baxter\"]'),(69995,661,2,'actor',NULL,'[\"John Baxter\"]'),(69995,556739,3,'actress',NULL,'[\"Heather\"]'),(69995,558089,4,'actress',NULL,'[\"Wendy\"]'),(69995,1676,5,'director',NULL,NULL),(69995,238898,6,'writer','story',NULL),(69995,778819,7,'writer','screenplay',NULL),(69995,117068,8,'writer','screenplay',NULL),(69995,441819,9,'producer','producer',NULL),(70003,365239,10,'editor',NULL,NULL),(70003,1588,1,'actor',NULL,'[\"Dracula\"]'),(70003,911844,2,'actor',NULL,'[\"Arthur\"]'),(70003,202638,3,'actor',NULL,'[\"Van Helsing\"]'),(70003,114386,4,'actress',NULL,'[\"Mrs. Westenra\"]'),(70003,193303,5,'director',NULL,NULL),(70003,558577,6,'writer','written by',NULL),(70003,831290,7,'writer','novel',NULL),(70003,6013,8,'composer',NULL,NULL),(70003,5807,9,'cinematographer',NULL,NULL),(70034,399275,10,'cinematographer','director of photography',NULL),(70034,45,1,'actor',NULL,'[\"Lee\"]'),(70034,768334,2,'actor',NULL,'[\"Roper\"]'),(70034,446485,3,'actor',NULL,'[\"Williams\"]'),(70034,135622,4,'actress',NULL,'[\"Tania\"]'),(70034,167195,5,'director',NULL,NULL),(70034,21363,6,'writer','written by',NULL),(70034,375370,7,'producer','producer',NULL),(70034,918518,8,'producer','producer',NULL),(70034,6277,9,'composer',NULL,NULL),(70040,215327,10,'editor',NULL,NULL),(70040,273178,1,'actor',NULL,'[\"Fernando\"]'),(70040,319834,2,'actress',NULL,'[\"Teresa\"]'),(70040,868479,3,'actress',NULL,'[\"Ana\"]'),(70040,854440,4,'actress',NULL,'[\"Isabel\"]'),(70040,258977,5,'director',NULL,NULL),(70040,273335,6,'writer','original screenplay',NULL),(70040,703262,7,'producer','producer',NULL),(70040,210767,8,'composer',NULL,NULL),(70040,190834,9,'cinematographer',NULL,NULL),(70047,539990,10,'production_designer',NULL,NULL),(70047,995,1,'actress',NULL,'[\"Chris MacNeil\"]'),(70047,1884,2,'actor',NULL,'[\"Father Merrin\"]'),(70047,304,3,'actress',NULL,'[\"Regan\"]'),(70047,2011,4,'actor',NULL,'[\"Lt. Kinderman\"]'),(70047,1243,5,'director',NULL,NULL),(70047,87861,6,'writer','written for the screen by',NULL),(70047,5845,7,'cinematographer','director of photography',NULL),(70047,310797,8,'editor',NULL,NULL),(70047,521554,9,'editor',NULL,NULL),(70122,1008137,10,'producer','producer',NULL),(70122,765789,1,'actor',NULL,'[\"Inventor Goro Ibuki\"]'),(70122,442904,2,'actor',NULL,'[\"Rokuro \'Roku-chan\' Ibuki\"]'),(70122,370672,3,'actor',NULL,'[\"Hiroshi Jinkawa\"]'),(70122,242290,4,'actor',NULL,'[\"Emperor Antonio of Seatopia\",\"Motorcycle assailant\"]'),(70122,297974,5,'director',NULL,NULL),(70122,52419,6,'director',NULL,NULL),(70122,393094,7,'director',NULL,NULL),(70122,454119,8,'writer','story \"Gojira tai Uchu Kaijû\"',NULL),(70122,782883,9,'writer','story',NULL),(70215,5811,10,'cinematographer',NULL,NULL),(70215,1352,1,'actor',NULL,'[\"Nessuno\"]'),(70215,20,2,'actor',NULL,'[\"Jack Beauregard\"]'),(70215,552483,3,'actor',NULL,'[\"Sullivan\"]'),(70215,35866,4,'actor',NULL,'[\"Honest John\"]'),(70215,884547,5,'director',NULL,NULL),(70215,1466,6,'writer','idea',NULL),(70215,607694,7,'writer','story',NULL),(70215,2759,8,'writer','story',NULL),(70215,1553,9,'composer',NULL,NULL),(70233,689895,10,'cinematographer',NULL,NULL),(70233,945085,1,'actor',NULL,'[\"Ivan Vasilyevich Bunsha\",\"Czar Ivan The Terrible\"]'),(70233,475610,2,'actor',NULL,'[\"George Miloslavsky\"]'),(70233,218849,3,'actor',NULL,'[\"Shurik\"]'),(70233,469434,4,'actor',NULL,'[\"Feofan\"]'),(70233,301145,5,'director',NULL,NULL),(70233,119888,6,'writer','play \"Ivan Vasilyevich\"',NULL),(70233,49069,7,'writer',NULL,NULL),(70233,953693,8,'composer',NULL,NULL),(70233,9119,9,'cinematographer',NULL,NULL),(70239,316626,10,'editor',NULL,NULL),(70239,624189,1,'actor',NULL,'[\"Jesus Christ\"]'),(70239,26483,2,'actor',NULL,'[\"Judas Iscariot\"]'),(70239,254118,3,'actress',NULL,'[\"Mary Magdalene\"]'),(70239,219336,4,'actor',NULL,'[\"Pontius Pilate\"]'),(70239,422484,5,'director',NULL,NULL),(70239,103905,6,'writer','screenplay: based upon the rock opera \"Jesus Christ Superstar\" by',NULL),(70239,5358,7,'writer','based upon the rock opera \"Jesus Christ Superstar\": book',NULL),(70239,830164,8,'producer','producer',NULL),(70239,5878,9,'cinematographer','director of photography',NULL),(70294,388262,10,'composer',NULL,NULL),(70294,1522,1,'actor',NULL,'[\"Ben Fischer\"]'),(70294,402281,2,'actress',NULL,'[\"Ann\",\"Ann Barrett\"]'),(70294,291512,3,'actress',NULL,'[\"Florence Tanner\"]'),(70294,720890,4,'actor',NULL,'[\"Dr. Barrett\"]'),(70294,396421,5,'director',NULL,NULL),(70294,558577,6,'writer','screenplay',NULL),(70294,271890,7,'producer','producer',NULL),(70294,379198,8,'producer','producer',NULL),(70294,220262,9,'composer',NULL,NULL),(70297,2302,10,'composer',NULL,NULL),(70297,1088,1,'actor',NULL,'[\"Professor Lawrence Van Helsing\"]'),(70297,156955,2,'actor',NULL,'[\"Hsi Ching\"]'),(70297,250774,3,'actress',NULL,'[\"Vanessa Buren\"]'),(70297,151169,4,'actor',NULL,'[\"Leung Hon\"]'),(70297,1928,5,'director',NULL,NULL),(70297,151653,6,'director',NULL,NULL),(70297,396449,7,'writer','screenplay by',NULL),(70297,831290,8,'writer','characters',NULL),(70297,790019,9,'producer','producer',NULL),(70300,317927,1,'actress',NULL,'[\"Lemora\"]'),(70300,807679,2,'actress',NULL,'[\"Lila Lee\"]'),(70300,926595,3,'actor',NULL,'[\"Alvin Lee\"]'),(70300,131987,4,'actor',NULL,'[\"The Bus Driver\"]'),(70300,85636,5,'director',NULL,NULL),(70300,272767,6,'writer','screenplay',NULL),(70300,626877,7,'composer',NULL,NULL),(70300,135942,8,'cinematographer','director of photography',NULL),(70300,399217,9,'editor',NULL,NULL),(70328,552326,10,'composer',NULL,NULL),(70328,549,1,'actor',NULL,'[\"James Bond\"]'),(70328,1433,2,'actor',NULL,'[\"Kananga\",\"Mr. Big\"]'),(70328,5412,3,'actress',NULL,'[\"Solitaire\"]'),(70328,416378,4,'actor',NULL,'[\"Sheriff Pepper\"]'),(70328,357891,5,'director',NULL,NULL),(70328,542539,6,'writer','screenplay by',NULL),(70328,1220,7,'writer','novel',NULL),(70328,110482,8,'producer','producer',NULL),(70328,759162,9,'producer','producer',NULL),(70379,134,1,'actor',NULL,'[\"Johnny Boy\"]'),(70379,172,2,'actor',NULL,'[\"Charlie\"]'),(70379,698998,3,'actor',NULL,'[\"Tony\"]'),(70379,732364,4,'actress',NULL,'[\"Teresa\"]'),(70379,217,5,'director',NULL,NULL),(70379,552731,6,'writer','screenplay',NULL),(70379,850038,7,'producer','producer',NULL),(70379,906814,8,'cinematographer','director of photography',NULL),(70379,505720,9,'editor',NULL,NULL),(70453,301239,10,'editor',NULL,NULL),(70453,804,1,'actress',NULL,'[\"Lucienne Delamare\"]'),(70453,681566,2,'actor',NULL,'[\"Pierre Maury\"]'),(70453,686263,3,'actor',NULL,'[\"Paul Delamare\"]'),(70453,423332,4,'actress',NULL,'[\"Clotilde Maury\"]'),(70453,1031,5,'director',NULL,NULL),(70453,12634,6,'writer','opening quotation',NULL),(70453,350765,7,'producer','producer',NULL),(70453,6143,8,'composer',NULL,NULL),(70453,704880,9,'cinematographer',NULL,NULL),(70460,214088,10,'editor',NULL,NULL),(70460,302,1,'actress',NULL,'[\"Julie Baker\"]'),(70460,529543,2,'actor',NULL,'[\"Alphonse\"]'),(70460,76,3,'actor',NULL,'[\"Ferrand, le réalisateur\"]'),(70460,181305,4,'actress',NULL,'[\"Séverine\"]'),(70460,723827,5,'writer','original screenplay',NULL),(70460,771535,6,'writer','original screenplay',NULL),(70460,16,7,'composer',NULL,NULL),(70460,5723,8,'cinematographer',NULL,NULL),(70460,56697,9,'editor',NULL,NULL),(70468,896165,10,'editor',NULL,NULL),(70468,125,1,'actor',NULL,'[\"Johnson\"]'),(70468,2145,2,'actor',NULL,'[\"Cartwright\"]'),(70468,580357,3,'actress',NULL,'[\"Maureen\"]'),(70468,846,4,'actor',NULL,'[\"Baxter\"]'),(70468,1486,5,'director',NULL,NULL),(70468,394200,6,'writer','play \"This Story of Yours\"',NULL),(70468,640645,7,'producer','producer',NULL),(70468,83803,8,'composer',NULL,NULL),(70468,279518,9,'cinematographer',NULL,NULL),(70510,686895,10,'production_designer',NULL,NULL),(70510,641939,1,'actor',NULL,'[\"Moses Pray\"]'),(70510,1575,2,'actress',NULL,'[\"Addie Loggins\"]'),(70510,1404,3,'actress',NULL,'[\"Trixie Delight\"]'),(70510,384916,4,'actor',NULL,'[\"Deputy Hardin\",\"Jess Hardin\"]'),(70510,953,5,'director',NULL,NULL),(70510,113872,6,'writer','novel \"Addie Pray\"',NULL),(70510,765091,7,'writer','screenplay',NULL),(70510,4088,8,'cinematographer','director of photography',NULL),(70510,276368,9,'editor',NULL,NULL),(70511,233587,10,'producer','producer',NULL),(70511,537,1,'actor',NULL,'[\"Henri \'Papillon\' Charriere\"]'),(70511,163,2,'actor',NULL,'[\"Louis Dega\"]'),(70511,430460,3,'actor',NULL,'[\"Indian Chief\"]'),(70511,330150,4,'actor',NULL,'[\"Julot\"]'),(70511,769874,5,'director',NULL,NULL),(70511,874308,6,'writer','screenplay',NULL),(70511,783913,7,'writer','screenplay',NULL),(70511,153508,8,'writer','book \"Papillon\"',NULL),(70511,1279,9,'writer','contributing writer',NULL),(70518,75530,10,'editor',NULL,NULL),(70518,336,1,'actor',NULL,'[\"Pat Garrett\"]'),(70518,1434,2,'actor',NULL,'[\"Billy The Kid\"]'),(70518,1395,3,'actor',NULL,'[\"Sheriff Kip McKinney\"]'),(70518,432827,4,'actress',NULL,'[\"Mrs. Baker\"]'),(70518,1603,5,'director',NULL,NULL),(70518,943382,6,'writer','written by',NULL),(70518,140826,7,'producer','producer',NULL),(70518,1168,8,'composer',NULL,NULL),(70518,178979,9,'cinematographer','director of photography',NULL),(70534,6026,10,'composer',NULL,NULL),(70534,817881,1,'actor',NULL,'[\"Inspector \'Flatfoot\' Rizzo\"]'),(70534,580986,2,'actor',NULL,'[\"Police Commissioner Tabassi\"]'),(70534,670964,3,'actor',NULL,'[\"Lawyer De Ribbis\"]'),(70534,562831,4,'actress',NULL,'[\"Maria\"]'),(70534,826642,5,'director',NULL,NULL),(70534,207772,6,'writer','screenplay',NULL),(70534,898812,7,'writer','story',NULL),(70534,45938,8,'writer','story',NULL),(70534,95166,9,'producer','producer',NULL),(70544,56186,10,'cinematographer',NULL,NULL),(70544,960,1,'actor',NULL,'[\"Adult Terr - Narrator\"]'),(70544,1980761,2,'actress',NULL,'[\"Tiwa\"]'),(70544,62010,3,'actor',NULL,'[\"Young Terr\"]'),(70544,867622,4,'actor',NULL,'[\"Master Sinh\"]'),(70544,482537,5,'director',NULL,NULL),(70544,943248,6,'writer','novel \"Oms en série\"',NULL),(70544,867718,7,'writer','adaptation, scenario and dialogue',NULL),(70544,202367,8,'producer','producer',NULL),(70544,329751,9,'composer',NULL,NULL),(70608,858826,10,'writer','story sequences',NULL),(70608,66028,1,'actor',NULL,'[\"Robin Hood - A Fox\"]'),(70608,365201,2,'actor',NULL,'[\"Little John - A Bear\"]'),(70608,589248,3,'actor',NULL,'[\"Allan-a-Dale - The Rooster\"]'),(70608,1811,4,'actor',NULL,'[\"Prince John - A Lion\",\"King Richard\"]'),(70608,718627,5,'director',NULL,NULL),(70608,359457,6,'director',NULL,NULL),(70608,166307,7,'writer','story',NULL),(70608,27011,8,'writer','based on: character and story conceptions by',NULL),(70608,314788,9,'writer','story sequences',NULL),(70634,55541,10,'editor',NULL,NULL),(70634,489,1,'actor',NULL,'[\"Count Dracula\"]'),(70634,1088,2,'actor',NULL,'[\"Professor Lorrimer Van Helsing\"]'),(70634,171326,3,'actor',NULL,'[\"Inspector Murray\"]'),(70634,291598,4,'actor',NULL,'[\"Torrence\"]'),(70634,316830,5,'director',NULL,NULL),(70634,396449,6,'writer','screenplay by',NULL),(70634,803984,7,'producer','producer',NULL),(70634,5990,8,'composer',NULL,NULL),(70634,698266,9,'cinematographer','director of photography',NULL),(70641,5765,10,'cinematographer',NULL,NULL),(70641,2231,1,'actor',NULL,'[\"Giancarlo Bizanti\"]'),(70641,308236,2,'actor',NULL,'[\"Roveda\"]'),(70641,851384,3,'actress',NULL,'[\"Bizanti\'s Wife\"]'),(70641,259506,4,'actor',NULL,'[\"Lauri\"]'),(70641,69166,5,'director',NULL,NULL),(70641,6872,6,'writer','original story and screenplay',NULL),(70641,283835,7,'writer','screenplay collaboration',NULL),(70641,875705,8,'producer','producer',NULL),(70641,3607,9,'composer',NULL,NULL),(70666,6319,10,'composer',NULL,NULL),(70666,199,1,'actor',NULL,'[\"Serpico\"]'),(70666,709907,2,'actor',NULL,'[\"Sidney Green\"]'),(70666,444955,3,'actor',NULL,'[\"Tom Keough\"]'),(70666,570161,4,'actor',NULL,'[\"Captain McClain\"]'),(70666,1486,5,'director',NULL,NULL),(70666,530995,6,'writer','book',NULL),(70666,759029,7,'writer','screenplay',NULL),(70666,923319,8,'writer','screenplay',NULL),(70666,106840,9,'producer','producer',NULL),(70694,317485,10,'cinematographer',NULL,NULL),(70694,641929,1,'actor',NULL,'[\"John Carter\"]'),(70694,666247,2,'actor',NULL,'[\"Jeffrey Butler\"]'),(70694,1862,3,'actress',NULL,'[\"Diane Adams\"]'),(70694,373497,4,'actress',NULL,'[\"Ingrid\"]'),(70694,314856,5,'director',NULL,NULL),(70694,465458,6,'writer','screenplay',NULL),(70694,854428,7,'writer','screenplay',NULL),(70694,38002,8,'producer','producer',NULL),(70694,455521,9,'composer',NULL,NULL),(70698,386532,10,'editor',NULL,NULL),(70698,452288,1,'actress',NULL,'[\"Danielle Breton\",\"Dominique Blanchion\"]'),(70698,759022,2,'actress',NULL,'[\"Grace Collier\"]'),(70698,1164,3,'actor',NULL,'[\"Joseph Larch\"]'),(70698,278073,4,'actor',NULL,'[\"Emil Breton\"]'),(70698,361,5,'director',NULL,NULL),(70698,741544,6,'writer','screenplay',NULL),(70698,696299,7,'producer','producer',NULL),(70698,2136,8,'composer',NULL,NULL),(70698,762075,9,'cinematographer',NULL,NULL),(70707,742471,10,'editor',NULL,NULL),(70707,95,1,'actor',NULL,'[\"Miles Monroe\"]'),(70707,473,2,'actress',NULL,'[\"Luna Schlosser\"]'),(70707,65183,3,'actor',NULL,'[\"Erno Windt\"]'),(70707,339889,4,'actress',NULL,'[\"Dr. Melik\"]'),(70707,108613,5,'writer','written by',NULL),(70707,343532,6,'producer','producer',NULL),(70707,909607,7,'cinematographer','director of photography',NULL),(70707,114363,8,'editor','film editor',NULL),(70707,435894,9,'editor','film editor',NULL),(70723,6208,10,'composer',NULL,NULL),(70723,32,1,'actor',NULL,'[\"Detective Thorn\"]'),(70723,64,2,'actor',NULL,'[\"Sol Roth\"]'),(70723,853375,3,'actress',NULL,'[\"Shirl\"]'),(70723,168035,4,'actor',NULL,'[\"Tab Fielding\"]'),(70723,281507,5,'director',NULL,NULL),(70723,338591,6,'writer','screenplay by',NULL),(70723,365621,7,'writer','novel \"Make Room! Make Room!\"',NULL),(70723,783561,8,'producer','producer',NULL),(70723,856825,9,'producer','producer',NULL),(70735,5892,10,'cinematographer','director of photography',NULL),(70735,56,1,'actor',NULL,'[\"Henry Gondorff\"]'),(70735,602,2,'actor',NULL,'[\"Johnny Hooker\"]'),(70735,1727,3,'actor',NULL,'[\"Doyle Lonnegan\"]'),(70735,1164,4,'actor',NULL,'[\"Lt. Wm. Snyder\"]'),(70735,1351,5,'director',NULL,NULL),(70735,911486,6,'writer','written by',NULL),(70735,82300,7,'producer','producer',NULL),(70735,680539,8,'producer','producer',NULL),(70735,680635,9,'producer','producer',NULL),(70782,400390,10,'editor',NULL,NULL),(70782,550849,1,'actor',NULL,'[\"A.J. Thomas\"]'),(70782,205295,2,'actress',NULL,'[\"Joy Lang\"]'),(70782,366948,3,'actress',NULL,'[\"Carmen Simms\"]'),(70782,471549,4,'actress',NULL,'[\"Lee Phillips\"]'),(70782,580571,5,'director',NULL,NULL),(70782,55909,6,'writer','written by',NULL),(70782,841952,7,'writer','written by',NULL),(70782,2467764,8,'composer',NULL,NULL),(70782,479803,9,'cinematographer','director of photography',NULL),(70819,124833,10,'editor',NULL,NULL),(70819,1719,1,'actor',NULL,'[\"Steve Blackburn\"]'),(70819,413559,2,'actress',NULL,'[\"Vickie Allessio\"]'),(70819,649,3,'actor',NULL,'[\"Walter Menkes\"]'),(70819,130282,4,'actress',NULL,'[\"Patty Menkes\"]'),(70819,291035,5,'director',NULL,NULL),(70819,741439,6,'writer','written by',NULL),(70819,291034,7,'writer','based on the story \"She Loves Me, She Told Me So Last Night\" by',NULL),(70819,131624,8,'composer',NULL,NULL),(70819,218778,9,'cinematographer',NULL,NULL),(70842,957,10,'cinematographer',NULL,NULL),(70842,892857,1,'actress',NULL,'[\"Olga\"]'),(70842,442,2,'actor',NULL,'[\"Eric\"]'),(70842,404702,3,'actress',NULL,'[\"Moeder\"]'),(70842,109574,4,'actor',NULL,'[\"Vader\"]'),(70842,682,5,'director',NULL,NULL),(70842,812121,6,'writer','screenplay',NULL),(70842,938512,7,'writer','novel',NULL),(70842,396951,8,'producer','producer',NULL),(70842,653150,9,'composer',NULL,NULL),(70849,53658,10,'composer',NULL,NULL),(70849,8,1,'actor',NULL,'[\"Paul\"]'),(70849,773932,2,'actress',NULL,'[\"Jeanne\"]'),(70849,585170,3,'actress',NULL,'[\"Rosa\'s Mother\",\"La mère de Rosa\"]'),(70849,302815,4,'actress',NULL,'[\"Prostitute\",\"La prostituée\"]'),(70849,934,5,'director',NULL,NULL),(70849,33490,6,'writer','screenplay',NULL),(70849,889513,7,'writer','adaptation: French dialogue',NULL),(70849,4462,8,'writer','dialogue collaborator',NULL),(70849,342090,9,'producer','producer',NULL),(70898,685862,10,'editor',NULL,NULL),(70898,1627,1,'actor',NULL,'[\"Dr. Matt Younger\"]'),(70898,26701,2,'actress',NULL,'[\"Catherine Oswandu\"]'),(70898,193549,3,'actress',NULL,'[\"Stefanie Younger\"]'),(70898,48468,4,'actor',NULL,'[\"Dr. Henry Barlow\"]'),(70898,738710,5,'writer','written by',NULL),(70898,875949,6,'producer','producer',NULL),(70898,674098,7,'composer',NULL,NULL),(70898,66607,8,'cinematographer','director of photography',NULL),(70898,380670,9,'editor',NULL,NULL),(70904,360889,10,'actor',NULL,'[\"Hans Edelkern\"]'),(70904,530594,1,'actor',NULL,'[\"Fred Stiller\"]'),(70904,884157,2,'actress',NULL,'[\"Gloria Fromm\"]'),(70904,704770,3,'actress',NULL,'[\"Eva Vollmer\"]'),(70904,903646,4,'actor',NULL,'[\"Herbert Siskins\"]'),(70904,770859,5,'actor',NULL,'[\"Franz Hahn\"]'),(70904,483945,6,'actor',NULL,'[\"Fritz Walfang\"]'),(70904,518579,7,'actor',NULL,'[\"Rupp, Journalist\"]'),(70904,396998,8,'actor',NULL,'[\"Professor Henri Vollmer\"]'),(70904,221527,9,'actor',NULL,'[\"Günther Lause\"]'),(70917,5924,10,'cinematographer','director of photography',NULL),(70917,940919,1,'actor',NULL,'[\"Sergeant Howie\"]'),(70917,489,2,'actor',NULL,'[\"Lord Summerisle\"]'),(70917,162283,3,'actress',NULL,'[\"Miss Rose\"]'),(70917,1180,4,'actress',NULL,'[\"Willow\"]'),(70917,362736,5,'director',NULL,NULL),(70917,787289,6,'writer','screenplay',NULL),(70917,684432,7,'writer','novel \"Ritual\"',NULL),(70917,811056,8,'producer','producer',NULL),(70917,320516,9,'composer',NULL,NULL),(70926,477088,1,'actress',NULL,'[\"Dr. Tsu\"]'),(70926,353448,2,'actor',NULL,'[\"Mike Harber\"]'),(70926,207117,3,'actress',NULL,'[\"Linda\"]'),(70926,172646,4,'actress',NULL,'[\"Laura\"]'),(70926,642057,5,'director',NULL,NULL),(70926,925742,6,'writer','screenplay',NULL),(70926,926372,7,'composer',NULL,NULL),(70926,203049,8,'cinematographer','director of photography',NULL),(70926,339482,9,'editor',NULL,NULL),(70948,125,1,'actor',NULL,'[\"Zed\"]'),(70948,1648,2,'actress',NULL,'[\"Consuella\"]'),(70948,450414,3,'actress',NULL,'[\"May\"]'),(70948,17596,4,'actor',NULL,'[\"Friend\"]'),(70948,958,5,'director',NULL,NULL),(70948,613211,6,'composer',NULL,NULL),(70948,5910,7,'cinematographer',NULL,NULL),(70948,581424,8,'editor',NULL,NULL),(70948,695421,9,'production_designer',NULL,NULL),(70959,195803,10,'production_designer',NULL,NULL),(70959,598971,1,'actor',NULL,'[\"Philip Michael Santore\"]'),(70959,759395,2,'actor',NULL,'[\"Captain Lopez\"]'),(70959,368394,3,'actor',NULL,'[\"Carlos Ducas\"]'),(70959,916616,4,'actor',NULL,'[\"Hugo\"]'),(70959,2020,5,'director',NULL,NULL),(70959,758357,6,'writer','written by',NULL),(70959,6319,7,'composer',NULL,NULL),(70959,5723,8,'cinematographer',NULL,NULL),(70959,95089,9,'editor',NULL,NULL),(71110,5769,10,'cinematographer','director of photography',NULL),(71110,32,1,'actor',NULL,'[\"Alan Murdock\"]'),(71110,947,2,'actress',NULL,'[\"Nancy Pryor\"]'),(71110,1421,3,'actor',NULL,'[\"Joe Patroni\"]'),(71110,956544,4,'actor',NULL,'[\"Captain Stacy\"]'),(71110,806915,5,'director',NULL,NULL),(71110,354150,6,'writer','novel \"Airport\"',NULL),(71110,408681,7,'writer','written by',NULL),(71110,296902,8,'producer','producer',NULL),(71110,5990,9,'composer',NULL,NULL),(71115,524235,10,'editor',NULL,NULL),(71115,995,1,'actress',NULL,'[\"Alice Hyatt\"]'),(71115,1434,2,'actor',NULL,'[\"David\"]'),(71115,70592,3,'actress',NULL,'[\"Alice - Age 8\"]'),(71115,527501,4,'actor',NULL,'[\"Tommy\"]'),(71115,217,5,'director',NULL,NULL),(71115,315205,6,'writer','written by',NULL),(71115,530972,7,'producer','producer',NULL),(71115,839914,8,'producer','producer',NULL),(71115,906814,9,'cinematographer','director of photography',NULL),(71129,557870,10,'editor',NULL,NULL),(71129,637649,1,'actress',NULL,'[\"Gradisca\"]'),(71129,953025,2,'actor',NULL,'[\"Titta\"]'),(71129,535991,3,'actress',NULL,'[\"Miranda\"]'),(71129,104392,4,'actor',NULL,'[\"Aurelio\"]'),(71129,19,5,'director',NULL,NULL),(71129,346096,6,'writer','story',NULL),(71129,188053,7,'producer','producer',NULL),(71129,65,8,'composer',NULL,NULL),(71129,5850,9,'cinematographer','director of photography',NULL),(71141,559836,10,'actress',NULL,'[\"Mrs. Angermeyer\"]'),(71141,591930,1,'actress',NULL,'[\"Emmi\"]'),(71141,373289,2,'actor',NULL,'[\"Ali\"]'),(71141,884157,3,'actress',NULL,'[\"Barbara\"]'),(71141,379258,4,'actress',NULL,'[\"Krista\"]'),(71141,1202,5,'director',NULL,NULL),(71141,5751,6,'cinematographer',NULL,NULL),(71141,439546,7,'actress',NULL,'[\"Mrs. Kargus\"]'),(71141,118135,8,'actress',NULL,'[\"Mrs. Ellis\"]'),(71141,470699,9,'actress',NULL,'[\"Paula\"]'),(71203,856804,10,'producer','producer',NULL),(71203,619240,1,'actress',NULL,'[\"Jeanne\",\"Belladonna\"]'),(71203,620408,2,'actress',NULL,'[\"Narrator\"]'),(71203,847157,3,'actor',NULL,'[\"The Lord\"]'),(71203,948499,4,'actor',NULL,'[\"The Priest\"]'),(71203,945412,5,'director',NULL,NULL),(71203,1126808,6,'writer','novel \"La sorcière\"',NULL),(71203,297993,7,'writer','writer',NULL),(71203,13367540,8,'producer','producer',NULL),(71203,13367539,9,'producer','producer',NULL),(71222,1377,1,'actress',NULL,'[\"Jess\"]'),(71222,1158,2,'actor',NULL,'[\"Peter\"]'),(71222,452288,3,'actress',NULL,'[\"Barb\"]'),(71222,768334,4,'actor',NULL,'[\"Lt. Ken Fuller\"]'),(71222,163706,5,'director',NULL,NULL),(71222,600860,6,'writer','screenplay',NULL),(71222,957293,7,'composer',NULL,NULL),(71222,5808,8,'cinematographer','director of photography',NULL),(71222,170788,9,'editor',NULL,NULL),(71230,381110,10,'producer','producer',NULL),(71230,1476,1,'actor',NULL,'[\"Bart\"]'),(71230,698,2,'actor',NULL,'[\"Jim\"]'),(71230,1620,3,'actor',NULL,'[\"Taggart\"]'),(71230,466327,4,'actor',NULL,'[\"Hedley Lamarr\"]'),(71230,316,5,'director',NULL,NULL),(71230,825799,6,'writer','screenplay',NULL),(71230,921,7,'writer','screenplay',NULL),(71230,1640,8,'writer','screenplay',NULL),(71230,880078,9,'writer','screenplay',NULL),(71233,912238,10,'producer','producer',NULL),(71233,198072,1,'actor',NULL,'[\"Mario Balato - the Servant\"]'),(71233,1424,2,'actor',NULL,'[\"Count Dracula\"]'),(71233,1120,3,'actor',NULL,'[\"Il Marchese Di Fiore\"]'),(71233,571317,4,'actress',NULL,'[\"La Marchesa Di Fiore\"]'),(71233,607407,5,'director',NULL,NULL),(71233,352493,6,'writer',NULL,NULL),(71233,831290,7,'writer','character',NULL),(71233,105931,8,'producer','producer',NULL),(71233,690638,9,'producer','producer',NULL),(71247,650292,10,'composer',NULL,NULL),(71247,9,1,'actor',NULL,'[\"Alec Harvey\"]'),(71247,47,2,'actress',NULL,'[\"Anna Jesson\"]'),(71247,373324,3,'actor',NULL,'[\"Graham Jesson\"]'),(71247,494863,4,'actress',NULL,'[\"Mrs. Gaines\"]'),(71247,108707,5,'director',NULL,NULL),(71247,100862,6,'writer','screenplay',NULL),(71247,2021,7,'writer','play \"Still Life\"',NULL),(71247,164689,8,'producer','producer',NULL),(71247,690638,9,'producer','producer',NULL),(71315,642714,10,'editor','film editor',NULL),(71315,197,1,'actor',NULL,'[\"J.J. Gittes\"]'),(71315,1159,2,'actress',NULL,'[\"Evelyn Mulwray\"]'),(71315,1379,3,'actor',NULL,'[\"Noah Cross\"]'),(71315,520164,4,'actor',NULL,'[\"Escobar\"]'),(71315,591,5,'director',NULL,NULL),(71315,1801,6,'writer','written by',NULL),(71315,263172,7,'producer','producer',NULL),(71315,25,8,'composer',NULL,NULL),(71315,2166,9,'cinematographer','director of photography',NULL),(71360,432,1,'actor',NULL,'[\"Harry Caul\"]'),(71360,1030,2,'actor',NULL,'[\"Stan\"]'),(71360,307255,3,'actor',NULL,'[\"Bernie Moran\"]'),(71360,2078,4,'actor',NULL,'[\"Mark\"]'),(71360,338,5,'director',NULL,NULL),(71360,6288,6,'composer',NULL,NULL),(71360,124832,7,'cinematographer','director of photography',NULL),(71360,156816,8,'editor',NULL,NULL),(71360,851790,9,'production_designer',NULL,NULL),(71381,719157,10,'cinematographer',NULL,NULL),(71381,78155,1,'actress',NULL,'[\"Celine\"]'),(71381,479628,2,'actress',NULL,'[\"Julie\"]'),(71381,644680,3,'actress',NULL,'[\"Camille\"]'),(71381,685494,4,'actress',NULL,'[\"Sophie\"]'),(71381,729626,5,'director',NULL,NULL),(71381,339713,6,'writer','dialogue',NULL),(71381,416556,7,'writer','Film-within-film based on stories by',NULL),(71381,775447,8,'producer','producer',NULL),(71381,6315,9,'composer',NULL,NULL),(71396,337544,1,'actor',NULL,'[\"Thom\"]'),(71396,384494,2,'actress',NULL,'[\"Arletty\"]'),(71396,51916,3,'actress',NULL,'[\"Toni\"]'),(71396,285503,4,'actress',NULL,'[\"Laura\"]'),(71396,404754,5,'director',NULL,NULL),(71396,441718,6,'director',NULL,NULL),(71396,84167,7,'composer',NULL,NULL),(71396,441863,8,'cinematographer','director of photography',NULL),(71396,175722,9,'editor','film editor',NULL),(71402,730883,10,'producer','producer',NULL),(71402,314,1,'actor',NULL,'[\"Paul Kersey\"]'),(71402,486136,2,'actress',NULL,'[\"Joanna Kersey\"]'),(71402,306696,3,'actor',NULL,'[\"Frank Ochoa\"]'),(71402,444198,4,'actor',NULL,'[\"Jack Toby\"]'),(71402,935382,5,'director',NULL,NULL),(71402,307257,6,'writer','novel',NULL),(71402,562606,7,'writer','screenplay',NULL),(71402,933449,8,'writer',NULL,NULL),(71402,484635,9,'producer','producer',NULL),(71411,229809,10,'cinematographer',NULL,NULL),(71411,613364,1,'actor',NULL,'[\"Dersu Uzala\"]'),(71411,813272,2,'actor',NULL,'[\"Arsenev\"]'),(71411,125730,3,'actor',NULL,'[\"Otryad Arseneva\"]'),(71411,1276196,4,'actor',NULL,'[\"Otryad Arseneva\"]'),(71411,41,5,'director',NULL,NULL),(71411,619330,6,'writer','screenplay',NULL),(71411,37539,7,'writer','novel \"Dersu, okhotnik\"',NULL),(71411,559452,8,'producer','producer',NULL),(71411,796062,9,'composer',NULL,NULL),(71427,1468532,10,'actor',NULL,NULL),(71427,4625,1,'actor',NULL,NULL),(71427,36734,2,'actress',NULL,NULL),(71427,265091,3,'actress',NULL,NULL),(71427,380139,4,'actor',NULL,'[\"Fabián Luna (the kidnapped singer)\"]'),(71427,749914,5,'director',NULL,NULL),(71427,765384,6,'producer','producer',NULL),(71427,44235,7,'cinematographer',NULL,NULL),(71427,188084,8,'actress',NULL,NULL),(71427,688575,9,'actor',NULL,'[\"Luis\",\"Lucho\"]'),(71431,24127,10,'producer','producer',NULL),(71431,301785,1,'actress',NULL,'[\"Edna Simmonds\"]'),(71431,522590,2,'actor',NULL,'[\"George Meaning\"]'),(71431,447913,3,'actor',NULL,'[\"The Inspector\"]'),(71431,557167,4,'actor',NULL,'[\"Detective Sgt. Kinsey\"]'),(71431,336076,5,'director',NULL,NULL),(71431,167966,6,'writer',NULL,NULL),(71431,176420,7,'writer',NULL,NULL),(71431,181753,8,'writer',NULL,NULL),(71431,748364,9,'writer',NULL,NULL),(71464,840658,10,'cinematographer','director of photography',NULL),(71464,482,1,'actress',NULL,'[\"Emmanuelle\"]'),(71464,192490,2,'actor',NULL,'[\"Mario\"]'),(71464,338126,3,'actress',NULL,'[\"Bee\"]'),(71464,765325,4,'actor',NULL,'[\"Jean\"]'),(71464,415333,5,'director',NULL,NULL),(71464,37491,6,'writer','novel',NULL),(71464,723827,7,'writer',NULL,NULL),(71464,746073,8,'producer','producer',NULL),(71464,45406,9,'composer',NULL,NULL),(71517,2279,10,'editor',NULL,NULL),(71517,427,1,'actress',NULL,'[\"Foxy Brown\"]'),(71517,267279,2,'actor',NULL,'[\"Link Brown\"]'),(71517,114422,3,'actor',NULL,'[\"Steve Elias\"]'),(71517,141956,4,'actor',NULL,'[\"Michael Anderson\"]'),(71517,384335,5,'director',NULL,NULL),(71517,791007,6,'writer','Final Re-write',NULL),(71517,270809,7,'producer','producer',NULL),(71517,404188,8,'composer',NULL,NULL),(71517,549665,9,'cinematographer','director of photography',NULL),(71562,548943,10,'editor',NULL,NULL),(71562,199,1,'actor',NULL,'[\"Michael\"]'),(71562,134,2,'actor',NULL,'[\"Vito Corleone\"]'),(71562,380,3,'actor',NULL,'[\"Tom Hagen\"]'),(71562,473,4,'actress',NULL,'[\"Kay\"]'),(71562,338,5,'director',NULL,NULL),(71562,701374,6,'writer','screenplay by',NULL),(71562,65,7,'composer',NULL,NULL),(71562,932336,8,'cinematographer','director of photography',NULL),(71562,539794,9,'editor',NULL,NULL),(71565,766496,10,'composer',NULL,NULL),(71565,197379,1,'actor',NULL,'[\"Keisuke Shimizu\"]'),(71565,31881,2,'actor',NULL,'[\"Masahiko Shimizu\"]'),(71565,846961,3,'actress',NULL,'[\"Saeko Kanagusuku\"]'),(71565,386284,4,'actor',NULL,'[\"Professor Hideto Miyajima\"]'),(71565,297974,5,'director',NULL,NULL),(71565,298040,6,'writer','story',NULL),(71565,782883,7,'writer','story',NULL),(71565,945517,8,'writer',NULL,NULL),(71565,849083,9,'producer','producer',NULL),(71583,788553,1,'actor',NULL,'[\"Ko-ko\",\"Boss\",\"\'Near You\' Singer\"]'),(71583,1938,2,'actor',NULL,'[\"Rodriguez\",\"Leo Batfish\",\"The President\"]'),(71583,331,3,'actor',NULL,'[\"The Fingers\",\"Geritan\",\"Four Leaf Clover\"]'),(71583,512839,4,'actor',NULL,'[\"The Hitchhiker\"]'),(71583,764861,5,'writer','written by',NULL),(71583,1026528,6,'writer',NULL,NULL),(71583,47558,7,'cinematographer',NULL,NULL),(71615,423524,1,'actor',NULL,'[\"The Alchemist\"]'),(71615,758360,2,'actor',NULL,'[\"The Thief\"]'),(71615,766993,3,'actress',NULL,'[\"The Written Woman\"]'),(71615,273988,4,'actor',NULL,'[\"Fon\"]'),(71615,156066,5,'composer',NULL,NULL),(71615,290786,6,'composer',NULL,NULL),(71615,179924,7,'cinematographer',NULL,NULL),(71615,484620,8,'editor',NULL,NULL),(71690,2322275,10,'editor',NULL,NULL),(71690,1901,1,'actress',NULL,'[\"Julie\"]'),(71690,34390,2,'actor',NULL,'[\"Truck-driver\"]'),(71690,915320,3,'actress',NULL,'[\"Girlfriend\"]'),(71690,209154,4,'writer',NULL,NULL),(71690,660684,5,'writer',NULL,NULL),(71690,216769,6,'cinematographer',NULL,NULL),(71690,243339,7,'cinematographer',NULL,NULL),(71690,844167,8,'cinematographer',NULL,NULL),(71690,296984,9,'editor',NULL,NULL),(71695,610797,10,'composer',NULL,NULL),(71695,423663,1,'actor',NULL,'[\"Ogami Itto\"]'),(71695,866674,2,'actor',NULL,'[\"Ogami Daigoro\"]'),(71695,386951,3,'actress',NULL,'[\"Yagyu Kaori\"]'),(71695,616163,4,'actor',NULL,'[\"Iwane Ozunu\"]'),(71695,475852,5,'director',NULL,NULL),(71695,463521,6,'writer','comic',NULL),(71695,463618,7,'writer','comic',NULL),(71695,2919190,8,'writer',NULL,NULL),(71695,760797,9,'producer','producer',NULL),(71717,574979,10,'cinematographer','director of photography',NULL),(71717,907636,1,'actor',NULL,'[\"Lloyd Kelly\"]'),(71717,1810,2,'actor',NULL,'[\"McCarthy\"]'),(71717,79475,3,'actor',NULL,'[\"Dennis Holvig\"]'),(71717,104507,4,'actor',NULL,'[\"Chub Foster\"]'),(71717,518719,5,'director',NULL,NULL),(71717,836318,6,'writer','teleplay',NULL),(71717,533534,7,'writer','teleplay',NULL),(71717,813555,8,'writer','adaptation',NULL),(71717,6195,9,'composer',NULL,NULL),(71762,92422,10,'editor',NULL,NULL),(71762,453006,1,'actor',NULL,'[\"The Pilot\"]'),(71762,912598,2,'actor',NULL,'[\"The Little Prince\"]'),(71762,722,3,'actor',NULL,'[\"The King\"]'),(71762,720890,4,'actor',NULL,'[\"The Business Man\"]'),(71762,2045,5,'director',NULL,NULL),(71762,756686,6,'writer','story \"Le Petit Prince\"',NULL),(71762,503585,7,'writer',NULL,NULL),(71762,517350,8,'composer',NULL,NULL),(71762,5666,9,'cinematographer','director of photography',NULL),(71798,849686,10,'editor',NULL,NULL),(71798,413559,1,'actress',NULL,'[\"Solange\"]'),(71798,948772,2,'actress',NULL,'[\"Claire\"]'),(71798,580357,3,'actress',NULL,'[\"Madame\"]'),(71798,122780,4,'actor',NULL,'[\"Monsieur\"]'),(71798,587085,5,'director',NULL,NULL),(71798,256818,6,'writer','screenplay',NULL),(71798,312792,7,'writer','play \"Les Bonnes\"',NULL),(71798,6145,8,'composer',NULL,NULL),(71798,5878,9,'cinematographer','director of photography',NULL),(71803,956928,10,'writer','screenplay',NULL),(71803,840,1,'actress',NULL,'[\"Mame Dennis\"]'),(71803,696481,2,'actor',NULL,'[\"Beauregard Jackson Pickett Burnside\"]'),(71803,37735,3,'actress',NULL,'[\"Vera Charles\"]'),(71803,1117,4,'actor',NULL,'[\"Older Patrick\"]'),(71803,757256,5,'director',NULL,NULL),(71803,492823,6,'writer','Broadway musical',NULL),(71803,498126,7,'writer','Broadway musical',NULL),(71803,379154,8,'writer','Broadway musical',NULL),(71803,219532,9,'writer','novel \"Auntie Mame\"',NULL),(71807,759162,10,'producer','producer',NULL),(71807,549,1,'actor',NULL,'[\"James Bond\"]'),(71807,489,2,'actor',NULL,'[\"Scaramanga\"]'),(71807,1180,3,'actress',NULL,'[\"Goodnight\"]'),(71807,726,4,'actress',NULL,'[\"Andrea Anders\"]'),(71807,357891,5,'director',NULL,NULL),(71807,537363,6,'writer','screenplay by',NULL),(71807,542539,7,'writer','screenplay by',NULL),(71807,1220,8,'writer','novel',NULL),(71807,110482,9,'producer','producer',NULL),(71853,66055,10,'cinematographer',NULL,NULL),(71853,1037,1,'actor',NULL,'[\"King Arthur\",\"Voice of God\",\"Middle Head\"]'),(71853,92,2,'actor',NULL,'[\"Second Swallow-Savvy Guard\",\"The Black Knight\",\"Peasant 3\"]'),(71853,1385,3,'actor',NULL,'[\"Dead Collector\",\"Peasant 1\",\"Sir Robin the Not-Quite-So-Brave-as-Sir Launcelot\"]'),(71853,416,4,'actor',NULL,'[\"Patsy\",\"Green Knight\",\"Knight of Camelot\"]'),(71853,1402,5,'director',NULL,NULL),(71853,1589,6,'writer','written by',NULL),(71853,540627,7,'writer',NULL,NULL),(71853,286926,8,'producer','producer',NULL),(71853,925214,9,'producer','producer',NULL),(71935,515908,10,'composer',NULL,NULL),(71935,685,1,'actor',NULL,'[\"Peter Miller\"]'),(71935,1703,2,'actor',NULL,'[\"Eduard Roschmann\"]'),(71935,770730,3,'actress',NULL,'[\"Frau Miller\"]'),(71935,848693,4,'actress',NULL,'[\"Sigi\"]'),(71935,623768,5,'director',NULL,NULL),(71935,287046,6,'writer','based on the novel by',NULL),(71935,743584,7,'writer','screenplay',NULL),(71935,548999,8,'writer','screenplay',NULL),(71935,941153,9,'producer','producer',NULL),(71970,806498,10,'composer',NULL,NULL),(71970,886,1,'actor',NULL,'[\"Joseph Frady\"]'),(71970,696038,2,'actress',NULL,'[\"Lee Carter\"]'),(71970,200122,3,'actor',NULL,'[\"Austin Tucker\"]'),(71970,569350,4,'actor',NULL,'[\"Jack Younger\"]'),(71970,1587,5,'director',NULL,NULL),(71970,318429,6,'writer','screenplay',NULL),(71970,783913,7,'writer','screenplay',NULL),(71970,801991,8,'writer','novel',NULL),(71970,1801,9,'writer',NULL,NULL),(71994,279926,10,'production_designer',NULL,NULL),(71994,931437,1,'actor',NULL,'[\"Swan\"]'),(71994,278073,2,'actor',NULL,'[\"Winslow\",\"The Phantom\"]'),(71994,363888,3,'actress',NULL,'[\"Phoenix\"]'),(71994,334057,4,'actor',NULL,'[\"Beef\"]'),(71994,361,5,'director',NULL,NULL),(71994,741544,6,'writer',NULL,NULL),(71994,696299,7,'producer','producer',NULL),(71994,5831,8,'cinematographer','director of photography',NULL),(71994,386532,9,'editor',NULL,NULL),(72226,2354,10,'composer',NULL,NULL),(72226,443,1,'actress',NULL,'[\"Lou Jean\"]'),(72226,424565,2,'actor',NULL,'[\"Captain Tanner\"]'),(72226,755310,3,'actor',NULL,'[\"Slide\"]'),(72226,40472,4,'actor',NULL,'[\"Clovis\"]'),(72226,229,5,'director',NULL,NULL),(72226,59493,6,'writer','screenplay',NULL),(72226,730422,7,'writer','screenplay',NULL),(72226,113360,8,'producer','producer',NULL),(72226,5573,9,'producer','producer',NULL),(72271,724758,10,'editor',NULL,NULL),(72271,122782,1,'actress',NULL,'[\"Sally\"]'),(72271,623605,2,'actor',NULL,'[\"Hitchhiker\"]'),(72271,200758,3,'actor',NULL,'[\"Jerry\"]'),(72271,663935,4,'actor',NULL,'[\"Franklin\"]'),(72271,1361,5,'director',NULL,NULL),(72271,377066,6,'writer','screenplay by',NULL),(72271,68580,7,'composer',NULL,NULL),(72271,669050,8,'cinematographer',NULL,NULL),(72271,140836,9,'editor',NULL,NULL),(72281,896165,10,'editor',NULL,NULL),(72281,1657,1,'actor',NULL,'[\"Athos\"]'),(72281,79,2,'actress',NULL,'[\"Constance de Bonacieux\"]'),(72281,328,3,'actor',NULL,'[\"Aramis\"]'),(72281,1868,4,'actor',NULL,'[\"D\'Artagnan\"]'),(72281,504513,5,'director',NULL,NULL),(72281,292129,6,'writer','screenplay',NULL),(72281,241416,7,'writer','novel',NULL),(72281,6166,8,'composer',NULL,NULL),(72281,914239,9,'cinematographer','director of photography',NULL),(72308,740,10,'producer','producer',NULL),(72308,56,1,'actor',NULL,'[\"Doug Roberts\"]'),(72308,537,2,'actor',NULL,'[\"Chief O\'Halloran\"]'),(72308,34,3,'actor',NULL,'[\"Jim Duncan\"]'),(72308,1159,4,'actress',NULL,'[\"Susan\"]'),(72308,347086,5,'director',NULL,NULL),(72308,827827,6,'writer','novel \"The Tower\"',NULL),(72308,778743,7,'writer','novel \"The Glass Inferno\"',NULL),(72308,732631,8,'writer','novel \"The Glass Inferno\"',NULL),(72308,798103,9,'writer','screenplay',NULL),(72325,918518,10,'producer','producer',NULL),(72325,5002,1,'actor',NULL,'[\"Truck\"]'),(72325,1433,2,'actor',NULL,'[\"Blue\"]'),(72325,917289,3,'actor',NULL,'[\"Jerry\"]'),(72325,153686,4,'actress',NULL,'[\"Annie\"]'),(72325,438279,5,'director',NULL,NULL),(72325,931412,6,'writer','screenplay by',NULL),(72325,21363,7,'writer','screenplay by',NULL),(72325,152443,8,'writer','story by',NULL),(72325,375370,9,'producer','producer',NULL),(72353,671313,10,'editor',NULL,NULL),(72353,367,1,'actor',NULL,'[\"Jean-Claude\"]'),(72353,591877,2,'actress',NULL,'[\"Marie-Ange\"]'),(72353,223033,3,'actor',NULL,'[\"Pierrot\"]'),(72353,18093,4,'actor',NULL,'[\"Henri, le père de Jacqueline\"]'),(72353,88397,5,'director',NULL,NULL),(72353,241413,6,'writer','screenplay',NULL),(72353,165263,7,'producer','producer',NULL),(72353,335799,8,'composer',NULL,NULL),(72353,5814,9,'cinematographer',NULL,NULL),(72354,5924,10,'cinematographer','director of photography',NULL),(72354,606766,1,'actress',NULL,'[\"Fran\"]'),(72354,246224,2,'actress',NULL,'[\"Miriam\"]'),(72354,114324,3,'actor',NULL,'[\"Ted\"]'),(72354,212567,4,'actor',NULL,'[\"John\"]'),(72354,488574,5,'director',NULL,NULL),(72354,202221,6,'writer','screenplay',NULL),(72354,654274,7,'writer','story',NULL),(72354,806764,8,'producer','producer',NULL),(72354,164037,9,'composer',NULL,NULL),(72417,1687,1,'actress',NULL,'[\"Mabel Longhetti\"]'),(72417,393,2,'actor',NULL,'[\"Nick Longhetti\"]'),(72417,237134,3,'actor',NULL,'[\"George Mortensen\"]'),(72417,746767,4,'actress',NULL,'[\"Martha Mortensen\"]'),(72417,1023,5,'director',NULL,NULL),(72417,789960,6,'producer','producer',NULL),(72417,367802,7,'composer',NULL,NULL),(72417,1152181,8,'editor',NULL,NULL),(72417,1580844,9,'editor',NULL,NULL),(72431,397405,10,'editor',NULL,NULL),(72431,698,1,'actor',NULL,'[\"Dr. Frederick Frankenstein\"]'),(72431,1404,2,'actress',NULL,'[\"Elizabeth\"]'),(72431,1204,3,'actor',NULL,'[\"Igor\"]'),(72431,1967,4,'actor',NULL,'[\"The Monster\"]'),(72431,316,5,'director',NULL,NULL),(72431,791217,6,'writer','based on characters in the novel \"Frankenstein\" by',NULL),(72431,344710,7,'producer','producer',NULL),(72431,606657,8,'composer',NULL,NULL),(72431,386583,9,'cinematographer','director of photography',NULL),(72435,5675,10,'cinematographer','director of photography',NULL),(72435,432,1,'actor',NULL,'[\"Zandy Allan\"]'),(72435,880521,2,'actress',NULL,'[\"Hannah Lund\"]'),(72435,373012,3,'actress',NULL,'[\"Ma Allan\"]'),(72435,879073,4,'actress',NULL,'[\"Maria Cordova\"]'),(72435,873296,5,'director',NULL,NULL),(72435,635565,6,'writer','screenplay by',NULL),(72435,743614,7,'writer','based on \"The Stranger\" by',NULL),(72435,559184,8,'producer','producer',NULL),(72435,291676,9,'composer',NULL,NULL),(72443,720162,10,'cinematographer',NULL,NULL),(72443,855486,1,'actress',NULL,'[\"Natalya\",\"Maroussia - the Mother\"]'),(72443,946157,2,'actor',NULL,'[\"Aleksei - Five Years Old\"]'),(72443,200246,3,'actor',NULL,'[\"Ignat\",\"Aleksei - twelve years old\"]'),(72443,946160,4,'actor',NULL,'[\"The Father\"]'),(72443,1789,5,'director',NULL,NULL),(72443,592735,6,'writer',NULL,NULL),(72443,850493,7,'writer','poems',NULL),(72443,906558,8,'producer','producer',NULL),(72443,5949,9,'composer',NULL,NULL),(72448,606211,10,'editor',NULL,NULL),(72448,1128,1,'actor',NULL,'[\"Don Diego\",\"El Zorro\"]'),(72448,48939,2,'actor',NULL,'[\"Col. Huerta\"]'),(72448,681583,3,'actress',NULL,'[\"Contessina Ortensia Pulido\"]'),(72448,610116,4,'actor',NULL,'[\"Sgt. Garcia\"]'),(72448,856319,5,'director',NULL,NULL),(72448,35208,6,'writer','story',NULL),(72448,6026,7,'composer',NULL,NULL),(72448,6027,8,'composer',NULL,NULL),(72448,16882,9,'cinematographer',NULL,NULL),(72500,72483,10,'actress',NULL,'[\"Mrs. Heath\",\"Mrs. White\"]'),(72500,92,1,'actor',NULL,'[\"Basil Fawlty\"]'),(72500,768795,2,'actress',NULL,'[\"Sybil Fawlty\"]'),(72500,755133,3,'actor',NULL,'[\"Manuel\"]'),(72500,95665,4,'actress',NULL,'[\"Polly Sherman\"]'),(72500,75326,5,'actor',NULL,'[\"Major Gowen\"]'),(72500,283148,6,'actress',NULL,'[\"Miss Agatha Tibbs\"]'),(72500,731513,7,'actress',NULL,'[\"Miss Ursula Gatsby\"]'),(72500,355363,8,'actor',NULL,'[\"Terry\"]'),(72500,175560,9,'actor',NULL,'[\"Mr. Johnston\",\"Mr. Wareing\"]'),(72684,641939,1,'actor',NULL,'[\"Barry Lyndon\"]'),(72684,1943,2,'actress',NULL,'[\"Lady Honoria Lyndon\"]'),(72684,535861,3,'actor',NULL,'[\"The Chevalier du Balibari\"]'),(72684,473228,4,'actor',NULL,'[\"Capt. Potzdorf\"]'),(72684,40,5,'director',NULL,NULL),(72684,856842,6,'writer','novel \"The Memoirs of Barry Lyndon, Esq.\"',NULL),(72684,5633,7,'cinematographer',NULL,NULL),(72684,493339,8,'editor',NULL,NULL),(72684,10553,9,'production_designer',NULL,NULL),(72730,175722,10,'editor',NULL,NULL),(72730,467,1,'actor',NULL,'[\"Vic\"]'),(72730,1673,2,'actor',NULL,'[\"Lou Craddock\"]'),(72730,72971,3,'actress',NULL,'[\"Quilla June Holmes\"]'),(72730,532838,4,'actor',NULL,'[\"Blood\"]'),(72730,428618,5,'director',NULL,NULL),(72730,255196,6,'writer','novella',NULL),(72730,190030,7,'writer',NULL,NULL),(72730,600886,8,'producer','producer',NULL),(72730,606308,9,'cinematographer',NULL,NULL),(72791,401727,10,'cinematographer','director of photography',NULL),(72791,229939,1,'actress',NULL,'[\"Cleopatra Jones\"]'),(72791,1771,2,'actress',NULL,'[\"Dragon Lady\"]'),(72791,624075,3,'actress',NULL,'[\"Mi Ling\"]'),(72791,1205,4,'actor',NULL,'[\"Stanley Nagel\"]'),(72791,47094,5,'director',NULL,NULL),(72791,432273,6,'writer','based on characters created by',NULL),(72791,855065,7,'writer','written by',NULL),(72791,788411,8,'producer','producer',NULL),(72791,6089,9,'composer',NULL,NULL),(72824,6071,10,'composer',NULL,NULL),(72824,328,1,'actor',NULL,'[\"Edmond Dantes\"]'),(72824,2145,2,'actor',NULL,'[\"Abbe Faria\"]'),(72824,431139,3,'actor',NULL,'[\"De Villefort\"]'),(72824,587,4,'actor',NULL,'[\"Danglars\"]'),(72824,338719,5,'director',NULL,NULL),(72824,140987,6,'writer','screenplay',NULL),(72824,241416,7,'writer','based on the novel by',NULL),(72824,2668921,8,'writer','additional material',NULL),(72824,741890,9,'producer','producer',NULL),(72856,2414,10,'composer',NULL,NULL),(72856,1016,1,'actor',NULL,'[\"Frankenstein\"]'),(72856,230,2,'actor',NULL,'[\"Machine Gun Joe Viterbo\"]'),(72856,341097,3,'actress',NULL,'[\"Annie\"]'),(72856,1862,4,'actress',NULL,'[\"Calamity Jane\"]'),(72856,860,5,'director',NULL,NULL),(72856,858379,6,'writer','screenplay by',NULL),(72856,341458,7,'writer','screenplay by',NULL),(72856,577477,8,'writer','from a story by',NULL),(72856,339,9,'producer','producer',NULL),(72890,106840,10,'producer','producer',NULL),(72890,199,1,'actor',NULL,'[\"Sonny\"]'),(72890,1030,2,'actor',NULL,'[\"Sal\"]'),(72890,20897,3,'actress',NULL,'[\"Sylvia\"]'),(72890,101604,4,'actor',NULL,'[\"Mulvaney\"]'),(72890,1486,5,'director',NULL,NULL),(72890,682757,6,'writer','screenplay',NULL),(72890,460190,7,'writer','based upon a magazine article by',NULL),(72890,601944,8,'writer','based upon a magazine article by',NULL),(72890,909063,9,'writer','book',NULL),(72895,601834,1,'actor',NULL,'[\"Dolemite\"]'),(72895,552121,2,'actor',NULL,'[\"Willie Green\"]'),(72895,428372,3,'actor',NULL,'[\"Blakeley\"]'),(72895,715539,4,'actress',NULL,'[\"The Queen Bee\"]'),(72895,867207,5,'producer','producer',NULL),(72895,942209,6,'composer',NULL,NULL),(72895,3138,7,'cinematographer','director of photography',NULL),(72901,201183,10,'producer','producer',NULL),(72901,136789,1,'actor',NULL,'[\"Astérix\",\"Idéfix\",\"Caius Pupus\"]'),(72901,603600,2,'actor',NULL,'[\"Obélix\",\"Employé sur la balançoire\"]'),(72901,868139,3,'actor',NULL,'[\"Abraracourcix\",\"Assurancetourix\"]'),(72901,479772,4,'actor',NULL,'[\"Le réceptionniste\"]'),(72901,331453,5,'director',NULL,NULL),(72901,344382,6,'director',NULL,NULL),(72901,879853,7,'director',NULL,NULL),(72901,914471,8,'director',NULL,NULL),(72901,853456,9,'writer','screenplay collaboration',NULL),(72905,5557,1,'actress',NULL,'[\"Dr. Carol Evans\"]'),(72905,95522,2,'actor',NULL,'[\"Brian Thomas\"]'),(72905,419256,3,'actor',NULL,'[\"David Brown\"]'),(72905,810342,4,'actor',NULL,'[\"Gus Dolan\"]'),(72905,42849,5,'director',NULL,NULL),(72905,737197,6,'composer',NULL,NULL),(72905,430650,7,'cinematographer',NULL,NULL),(72905,909101,8,'editor',NULL,NULL),(72933,6162,10,'composer',NULL,NULL),(72933,482,1,'actress',NULL,'[\"Emmanuelle\"]'),(72933,650753,2,'actor',NULL,'[\"Jean\"]'),(72933,481097,3,'actor',NULL,'[\"Christopher\"]'),(72933,729615,4,'actress',NULL,'[\"Anna-Maria\"]'),(72933,316002,5,'director',NULL,NULL),(72933,253415,6,'writer','scenario',NULL),(72933,37491,7,'writer','novel \"L\'antivierge\"',NULL),(72933,746073,8,'producer','producer',NULL),(72933,802852,9,'producer','producer',NULL),(72979,1145,1,'actor',NULL,'[\"Dawn Davenport\",\"Earl Peterson\"]'),(72979,516634,2,'actor',NULL,'[\"Donald Dasher\"]'),(72979,668976,3,'actress',NULL,'[\"Donna Dasher\"]'),(72979,831467,4,'actress',NULL,'[\"Taffy Davenport\"]'),(72979,691,5,'director',NULL,NULL),(72979,737311,6,'editor',NULL,NULL),(73076,63643,1,'self',NULL,'[\"Self\"]'),(73076,1799073,2,'self',NULL,'[\"Self\"]'),(73076,386343,3,'self',NULL,'[\"Self - Gardener\"]'),(73076,317487,4,'director',NULL,NULL),(73076,563099,5,'director',NULL,NULL),(73076,563100,6,'director',NULL,NULL),(73076,583287,7,'director',NULL,NULL),(73076,297085,8,'editor',NULL,NULL),(73114,743,10,'cinematographer',NULL,NULL),(73114,254,1,'actress',NULL,'[\"Adèle Hugo\"]'),(73114,732430,2,'actor',NULL,'[\"Lt Albert Pinson\"]'),(73114,550204,3,'actress',NULL,'[\"Mrs. Saunders\"]'),(73114,87805,4,'actor',NULL,'[\"Mr. Whistler\"]'),(73114,76,5,'director',NULL,NULL),(73114,344171,6,'writer','screenplay',NULL),(73114,771535,7,'writer','screenplay',NULL),(73114,347045,8,'writer','collaboration',NULL),(73114,401048,9,'writer','diary',NULL),(73115,45406,10,'composer',NULL,NULL),(73115,166452,1,'actress',NULL,'[\"O\"]'),(73115,1424,2,'actor',NULL,'[\"Rene\"]'),(73115,824389,3,'actor',NULL,'[\"Sir Stephen\"]'),(73115,310481,4,'actor',NULL,'[\"Pierre\"]'),(73115,415333,5,'director',NULL,NULL),(73115,42213,6,'writer','novel',NULL),(73115,418469,7,'writer',NULL,NULL),(73115,520976,8,'producer','producer',NULL),(73115,733901,9,'producer','executive producer',NULL),(73172,377,1,'actor',NULL,'[\"Boy Wonder\"]'),(73172,363888,2,'actress',NULL,'[\"Cathy Cake\"]'),(73172,1364,3,'actor',NULL,'[\"Big Mac\"]'),(73172,1021,4,'actress',NULL,'[\"Harlene\"]'),(73172,126440,5,'director',NULL,NULL),(73172,69001,6,'producer','producer',NULL),(73172,663796,7,'producer','producer',NULL),(73172,177813,8,'cinematographer',NULL,NULL),(73172,103457,9,'editor',NULL,NULL),(73179,96836,10,'production_designer',NULL,NULL),(73179,616556,1,'actor',NULL,'[\"Zhenya\"]'),(73179,117390,2,'actress',NULL,'[\"Nadya\"]'),(73179,945085,3,'actor',NULL,'[\"Ippolit\"]'),(73179,794415,4,'actor',NULL,'[\"Pavel, Zhenya\'s Friend\"]'),(73179,752922,5,'director',NULL,NULL),(73179,103932,6,'writer',NULL,NULL),(73179,304838,7,'composer',NULL,NULL),(73179,620469,8,'cinematographer',NULL,NULL),(73179,69483,9,'editor',NULL,NULL),(73195,2354,10,'composer',NULL,NULL),(73195,1702,1,'actor',NULL,'[\"Brody\"]'),(73195,1727,2,'actor',NULL,'[\"Quint\"]'),(73195,377,3,'actor',NULL,'[\"Hooper\"]'),(73195,308882,4,'actress',NULL,'[\"Ellen Brody\"]'),(73195,229,5,'director',NULL,NULL),(73195,1940,6,'writer','screenplay by',NULL),(73195,331956,7,'writer','screenplay by',NULL),(73195,113360,8,'producer','producer',NULL),(73195,5573,9,'producer','producer',NULL),(73198,666829,10,'producer','producer',NULL),(73198,786891,1,'actress',NULL,'[\"Jeanne Dielman\"]'),(73198,213964,2,'actor',NULL,'[\"Sylvain Dielman\"]'),(73198,832422,3,'actor',NULL,'[\"1st Caller\"]'),(73198,232540,4,'actor',NULL,'[\"2nd Caller\"]'),(73198,1901,5,'director',NULL,NULL),(73198,146692,6,'producer','producer',NULL),(73198,7175,7,'producer','producer',NULL),(73198,449394,8,'producer','producer',NULL),(73198,433560,9,'producer','producer',NULL),(73233,957,10,'cinematographer',NULL,NULL),(73233,892857,1,'actress',NULL,'[\"Keetje Tippel\"]'),(73233,442,2,'actor',NULL,'[\"Hugo\"]'),(73233,231346,3,'actress',NULL,'[\"Keetje\'s moeder\"]'),(73233,498798,4,'actress',NULL,'[\"Mina, Keetje\'s zus\"]'),(73233,682,5,'director',NULL,NULL),(73233,812121,6,'writer','screenplay',NULL),(73233,230462,7,'writer','novel',NULL),(73233,396951,8,'producer','producer',NULL),(73233,653150,9,'composer',NULL,NULL),(73312,95,1,'actor',NULL,'[\"Boris\"]'),(73312,473,2,'actress',NULL,'[\"Sonja\"]'),(73312,11948,3,'actor',NULL,'[\"Old Nehamkin\"]'),(73312,12524,4,'actor',NULL,'[\"Drill Sergeant\"]'),(73312,423618,5,'producer','producer',NULL),(73312,5669,6,'cinematographer','director of photography',NULL),(73312,435894,7,'editor','film editor',NULL),(73312,742471,8,'editor',NULL,NULL),(73349,3574,10,'composer',NULL,NULL),(73349,51,1,'actor',NULL,'[\"Warren Maxwell\"]'),(73349,1265,2,'actress',NULL,'[\"Blanche Maxwell\"]'),(73349,455133,3,'actor',NULL,'[\"Hammond Maxwell\"]'),(73349,911797,4,'actor',NULL,'[\"Agamemnon\"]'),(73349,281507,5,'director',NULL,NULL),(73349,648892,6,'writer','novel',NULL),(73349,456646,7,'writer','play',NULL),(73349,923319,8,'writer','screenplay',NULL),(73349,209569,9,'producer','producer',NULL),(73373,475863,10,'editor',NULL,NULL),(73373,765789,1,'actor',NULL,'[\"Biologist Akira Ichinose\"]'),(73373,14420,2,'actress',NULL,'[\"Katsura Mafune\"]'),(73373,386284,3,'actor',NULL,'[\"Dr. Shinzô Mafune\"]'),(73373,879736,4,'actor',NULL,'[\"Interpol Agent Jiro Murakoshi\"]'),(73373,393094,5,'director',NULL,NULL),(73373,297974,6,'director',NULL,NULL),(73373,847448,7,'writer','screenplay',NULL),(73373,6136,8,'composer',NULL,NULL),(73373,866715,9,'cinematographer',NULL,NULL),(73440,342737,10,'composer',NULL,NULL),(73440,1018,1,'actor',NULL,'[\"Tom Frank\"]'),(73440,947,2,'actress',NULL,'[\"Connie White\"]'),(73440,86867,3,'actress',NULL,'[\"Barbara Jean\"]'),(73440,1167,4,'actress',NULL,'[\"L. A. Joan\"]'),(73440,265,5,'director',NULL,NULL),(73440,570219,6,'writer','written by',NULL),(73440,55848,7,'composer',NULL,NULL),(73440,55928,8,'composer',NULL,NULL),(73440,997,9,'composer',NULL,NULL),(73471,61458,1,'actress',NULL,'[\"Sandrine\",\"wife\"]'),(73471,653443,2,'actor',NULL,'[\"Pierre\",\"Husband\"]'),(73471,726777,3,'actor',NULL,'[\"Grandfather\"]'),(73471,825016,4,'actress',NULL,'[\"Grandmother\"]'),(73471,419,5,'director',NULL,NULL),(73471,594746,6,'writer',NULL,NULL),(73486,140,10,'producer','producer',NULL),(73486,197,1,'actor',NULL,'[\"R.P. McMurphy\"]'),(73486,1221,2,'actress',NULL,'[\"Nurse Ratched\"]'),(73486,77720,3,'actor',NULL,'[\"Ellis\"]'),(73486,110480,4,'actor',NULL,'[\"Col. Matterson\"]'),(73486,1232,5,'director',NULL,NULL),(73486,369142,6,'writer','screenplay',NULL),(73486,325743,7,'writer','screenplay',NULL),(73486,450181,8,'writer','based on the novel by',NULL),(73486,913670,9,'writer','the play version: \"One Flew Over the Cuckoo\'s Nest\" by',NULL),(73518,190834,10,'cinematographer',NULL,NULL),(73518,351133,1,'actor',NULL,'[\"Pascual Duarte\"]'),(73518,1166932,2,'actress',NULL,'[\"Rosario\"]'),(73518,1450855,3,'actress',NULL,'[\"Pascual\'s mother\"]'),(73518,22765,4,'actor',NULL,'[\"Esteban Duarte Diniz - Pascual\'s father\"]'),(73518,2797,5,'director',NULL,NULL),(73518,554880,6,'writer','screenplay',NULL),(73518,703262,7,'writer','screenplay',NULL),(73518,147911,8,'writer','novel \"La familia de Pascual Duarte\"',NULL),(73518,210767,9,'composer',NULL,NULL),(73540,6570,10,'cinematographer',NULL,NULL),(73540,731499,1,'actress',NULL,'[\"Mrs. Appleyard\"]'),(73540,483069,2,'actress',NULL,'[\"Miranda St Clare\"]'),(73540,337003,3,'actress',NULL,'[\"Miss Greta McCraw\"]'),(73540,607609,4,'actress',NULL,'[\"Mlle. de Poitiers\"]'),(73540,1837,5,'director',NULL,NULL),(73540,512243,6,'writer','novel',NULL),(73540,337730,7,'writer','screenplay',NULL),(73540,568427,8,'producer','producer',NULL),(73540,568434,9,'producer','producer',NULL),(73541,6027,10,'composer',NULL,NULL),(73541,817881,1,'actor',NULL,'[\"Inspector \'Flatfoot\' Rizzo\"]'),(73541,504803,2,'actor',NULL,'[\"Frank Barella\"]'),(73541,134073,3,'actor',NULL,'[\"Inspector Caputo\"]'),(73541,769237,4,'actor',NULL,'[\"Inspector Morabito\"]'),(73541,826642,5,'director',NULL,NULL),(73541,207772,6,'writer','screenplay',NULL),(73541,895059,7,'writer','screenplay',NULL),(73541,95166,8,'producer','producer',NULL),(73541,6026,9,'composer',NULL,NULL),(73582,5765,10,'cinematographer','director of photography',NULL),(73582,376101,1,'actor',NULL,'[\"Marcus Daly\"]'),(73582,630453,2,'actress',NULL,'[\"Gianna Brezzi\"]'),(73582,492006,3,'actor',NULL,'[\"Carlo\"]'),(73582,617736,4,'actress',NULL,'[\"Helga Ulmann\"]'),(73582,783,5,'director',NULL,NULL),(73582,953301,6,'writer','written by',NULL),(73582,34490,7,'producer','producer',NULL),(73582,309160,8,'composer',NULL,NULL),(73582,6102,9,'composer',NULL,NULL),(73598,224157,10,'cinematographer',NULL,NULL),(73598,900143,1,'actress',NULL,'[\"Miele\"]'),(73598,1012,2,'actress',NULL,'[\"Claudia\"]'),(73598,205793,3,'actor',NULL,'[\"Il saltimbanco\",\"l\'angelo\",\"il diavolo\"]'),(73598,503119,4,'actor',NULL,'[\"Marito di Laura\"]'),(73598,5688,5,'director',NULL,NULL),(73598,16628,6,'writer','screenplay',NULL),(73598,656011,7,'writer','screenplay',NULL),(73598,188053,8,'producer','producer',NULL),(73598,6221,9,'composer',NULL,NULL),(73629,347,1,'actor',NULL,'[\"Dr. Frank-N-Furter - A Scientist\"]'),(73629,215,2,'actress',NULL,'[\"Janet Weiss - A Heroine\"]'),(73629,960,3,'actor',NULL,'[\"Brad Majors - A Hero\"]'),(73629,639782,4,'actor',NULL,'[\"Riff Raff - A Handyman\"]'),(73629,788940,5,'director',NULL,NULL),(73629,925214,6,'producer','producer',NULL),(73629,5893,7,'cinematographer','director of photography',NULL),(73629,166625,8,'editor',NULL,NULL),(73629,860972,9,'production_designer',NULL,NULL),(73650,5686,10,'cinematographer','director of photography',NULL),(73650,93678,1,'actor',NULL,'[\"Il duca\"]'),(73650,145863,2,'actor',NULL,'[\"Monsignore\"]'),(73650,704184,3,'actor',NULL,'[\"Eccellenza\"]'),(73650,885084,4,'actor',NULL,'[\"Il presidente\"]'),(73650,1596,5,'director',NULL,NULL),(73650,162952,6,'writer','screenplay collaboration',NULL),(73650,2194,7,'writer','additional scriptwork',NULL),(73650,211381,8,'writer','novel \"Les 120 Journées de Sodome\"',NULL),(73650,342090,9,'producer','producer',NULL),(73697,39544,10,'editor',NULL,NULL),(73697,427,1,'actress',NULL,'[\"Sheba Shayne\"]'),(73697,831288,2,'actor',NULL,'[\"Brick Williams\"]'),(73697,552121,3,'actor',NULL,'[\"Pilot\"]'),(73697,149975,4,'actor',NULL,'[\"Andy Shayne\"]'),(73697,320852,5,'director',NULL,NULL),(73697,791007,6,'writer','story',NULL),(73697,112977,7,'composer',NULL,NULL),(73697,383462,8,'composer',NULL,NULL),(73697,39551,9,'cinematographer','director of photography',NULL),(73747,5845,10,'cinematographer','director of photography',NULL),(73747,1684,1,'actress',NULL,'[\"Joanna Eberhart\"]'),(73747,696038,2,'actress',NULL,'[\"Bobby Markowe\"]'),(73747,557751,3,'actor',NULL,'[\"Walter Eberhart\"]'),(73747,628216,4,'actress',NULL,'[\"Carol Van Sant\"]'),(73747,285302,5,'director',NULL,NULL),(73747,505615,6,'writer','novel',NULL),(73747,1279,7,'writer','screenplay',NULL),(73747,771062,8,'producer','producer',NULL),(73747,806498,9,'composer',NULL,NULL),(73768,685830,1,'actor',NULL,'[\"Clint Ramsey\"]'),(73768,262272,2,'actress',NULL,'[\"SuperAngel\",\"SuperVixen\",\"Wife\"]'),(73768,621008,3,'actor',NULL,'[\"Harry Sledge\"]'),(73768,1142,4,'actress',NULL,'[\"SuperSoul\",\"Telephone Operator\"]'),(73768,540,5,'director',NULL,NULL),(73768,519771,6,'composer',NULL,NULL),(73778,875662,10,'editor',NULL,NULL),(73778,498103,1,'actress',NULL,'[\"Lace\"]'),(73778,619701,2,'actress',NULL,'[\"Maggie\"]'),(73778,310898,3,'actress',NULL,'[\"Patch\"]'),(73778,105900,4,'actor',NULL,'[\"Dominic\"]'),(73778,384335,5,'director',NULL,NULL),(73778,537436,6,'writer','screenplay',NULL),(73778,698190,7,'writer','based on a story by',NULL),(73778,5958,8,'composer',NULL,NULL),(73778,441863,9,'cinematographer','director of photography',NULL),(73802,6115,10,'composer',NULL,NULL),(73802,602,1,'actor',NULL,'[\"Turner\"]'),(73802,1159,2,'actress',NULL,'[\"Kathy\"]'),(73802,731772,3,'actor',NULL,'[\"Higgins\"]'),(73802,1884,4,'actor',NULL,'[\"Joubert\"]'),(73802,1628,5,'director',NULL,NULL),(73802,333600,6,'writer','based on the novel \'Six Days of the Condor\'',NULL),(73802,783913,7,'writer','screenplay by',NULL),(73802,713128,8,'writer','screenplay by',NULL),(73802,3602469,9,'producer','producer',NULL),(73812,830164,10,'producer','producer',NULL),(73812,2032,1,'actor',NULL,'[\"Tommy\"]'),(73812,268,2,'actress',NULL,'[\"Nora\"]'),(73812,1657,3,'actor',NULL,'[\"Frank\"]'),(73812,5056,4,'actor',NULL,'[\"The Pinball Wizard\"]'),(73812,1692,5,'director',NULL,NULL),(73812,1277963,6,'writer','by',NULL),(73812,870175,7,'writer','rock opera',NULL),(73812,258200,8,'writer','additional material',NULL),(73812,7127,9,'writer','additional material',NULL),(73972,750223,10,'actress',NULL,'[\"Waitress\",\"Camera Chick\",\"Cruise Passenger\"]'),(73972,462,1,'actress',NULL,'[\"Sabrina Duncan\"]'),(73972,396,2,'actress',NULL,'[\"Jill Munroe\"]'),(73972,646,3,'actress',NULL,'[\"Kelly Garrett\",\"Dana Cameron\"]'),(73972,236329,4,'actor',NULL,'[\"John Bosley\"]'),(73972,324578,5,'writer','created by',NULL),(73972,730850,6,'writer','created by',NULL),(73972,1440,7,'actress',NULL,'[\"Kris Munroe\",\"Rosemary Garfield\"]'),(73972,352379,8,'actress',NULL,'[\"Tiffany Welles\"]'),(73972,617,9,'actress',NULL,'[\"Julie Rogers\"]'),(74080,421128,1,'actress',NULL,'[\"Desiree Thibodeau\"]'),(74080,319462,2,'actor',NULL,'[\"T.J. Bracken\"]'),(74080,228226,3,'actor',NULL,'[\"Leroy Bracken\"]'),(74080,893320,4,'actor',NULL,'[\"Deputy - Billy Boy\"]'),(74080,780933,5,'director',NULL,NULL),(74080,780944,6,'director',NULL,NULL),(74080,426134,7,'editor',NULL,NULL),(74102,767192,10,'editor',NULL,NULL),(74102,297686,1,'actor',NULL,'[\"Kichizo Ishida\"]'),(74102,559405,2,'actress',NULL,'[\"Sada Abe\"]'),(74102,620026,3,'actress',NULL,'[\"Toku\"]'),(74102,559483,4,'actress',NULL,'[\"Tagawa Inn Manager\"]'),(74102,651915,5,'director',NULL,NULL),(74102,906709,6,'writer',NULL,NULL),(74102,202367,7,'producer','producer',NULL),(74102,586523,8,'composer',NULL,NULL),(74102,411778,9,'cinematographer',NULL,NULL),(74119,6288,10,'composer',NULL,NULL),(74119,163,1,'actor',NULL,'[\"Carl Bernstein\"]'),(74119,602,2,'actor',NULL,'[\"Bob Woodward\"]'),(74119,912001,3,'actor',NULL,'[\"Harry Rosenfeld\"]'),(74119,842,4,'actor',NULL,'[\"Howard Simons\"]'),(74119,1587,5,'director',NULL,NULL),(74119,77012,6,'writer','book',NULL),(74119,940124,7,'writer','book',NULL),(74119,1279,8,'writer','screenplay',NULL),(74119,3144,9,'producer','producer',NULL),(74121,629309,1,'actor',NULL,'[\"The Animator\"]'),(74121,584983,2,'actor',NULL,'[\"The Presenter\"]'),(74121,1799813,3,'actress',NULL,'[\"The Cleaning Girl\"]'),(74121,304887,4,'actor',NULL,'[\"The Orchestra Master\"]'),(74121,102547,5,'director',NULL,NULL),(74121,544306,6,'writer','screenplay',NULL),(74121,555805,7,'cinematographer',NULL,NULL),(74121,556415,8,'cinematographer',NULL,NULL),(74121,744195,9,'editor',NULL,NULL),(74152,221497,1,'actor',NULL,'[\"Patrick Desmouceaux\"]'),(74152,325886,2,'actor',NULL,'[\"Julien Leclou\"]'),(74152,299662,3,'actress',NULL,'[\"Grégory\'s mother\"]'),(74152,580392,4,'actress',NULL,'[\"Chantal Petit, the Schoolteacher\"]'),(74152,76,5,'director',NULL,NULL),(74152,771535,6,'writer','original scenario',NULL),(74152,5723,7,'cinematographer',NULL,NULL),(74152,214088,8,'editor',NULL,NULL),(74152,463492,9,'production_designer',NULL,NULL),(74156,831288,1,'actor',NULL,'[\"Ethan Bishop\"]'),(74156,430944,2,'actor',NULL,'[\"Napoleon Wilson\"]'),(74156,956633,3,'actress',NULL,'[\"Leigh\"]'),(74156,922229,4,'actor',NULL,'[\"Lawson\"]'),(74156,118,5,'director',NULL,NULL),(74156,438260,6,'producer','producer',NULL),(74156,460475,7,'cinematographer','director of photography',NULL),(74256,357421,10,'editor',NULL,NULL),(74256,149,1,'actress',NULL,'[\"Tallulah\"]'),(74256,281,2,'actor',NULL,'[\"Bugsy Malone\"]'),(74256,240967,3,'actress',NULL,'[\"Blousey Brown\"]'),(74256,144320,4,'actor',NULL,'[\"Fat Sam Staccetto\"]'),(74256,570,5,'director',NULL,NULL),(74256,550728,6,'producer','producer',NULL),(74256,931437,7,'composer',NULL,NULL),(74256,84695,8,'cinematographer',NULL,NULL),(74256,785029,9,'cinematographer',NULL,NULL),(74285,869198,10,'cinematographer',NULL,NULL),(74285,651,1,'actress',NULL,'[\"Carrie\"]'),(74285,1453,2,'actress',NULL,'[\"Margaret White\"]'),(74285,1388,3,'actress',NULL,'[\"Sue Snell\"]'),(74285,237,4,'actor',NULL,'[\"Billy Nolan\"]'),(74285,361,5,'director',NULL,NULL),(74285,175,6,'writer','novel',NULL),(74285,169548,7,'writer','screenplay',NULL),(74285,597574,8,'producer','producer',NULL),(74285,6043,9,'composer',NULL,NULL),(74400,267715,10,'producer','producer',NULL),(74400,674742,1,'actor',NULL,'[\"Lieutenant Giovanni Drogo\"]'),(74400,2094,2,'actor',NULL,'[\"Colonel Giovanbattista Filimore\"]'),(74400,312575,3,'actor',NULL,'[\"Major Matis\"]'),(74400,340926,4,'actor',NULL,'[\"Lieutenant Simeon\"]'),(74400,958801,5,'director',NULL,NULL),(74400,125635,6,'writer','novel',NULL),(74400,116113,7,'writer','story',NULL),(74400,78464,8,'writer','story',NULL),(74400,110463,9,'producer','producer',NULL),(74437,806583,10,'composer',NULL,NULL),(74437,643105,1,'actor',NULL,'[\"Hammond Maxwell\"]'),(74437,891835,2,'actress',NULL,'[\"Marianna\"]'),(74437,636243,3,'actor',NULL,'[\"Drum\"]'),(74437,427,4,'actress',NULL,'[\"Regine\"]'),(74437,142587,5,'director',NULL,NULL),(74437,447944,6,'director',NULL,NULL),(74437,648892,7,'writer','based on a novel by',NULL),(74437,923319,8,'writer','screenplay',NULL),(74437,785343,9,'producer','producer',NULL),(74455,135942,10,'cinematographer','director of photography',NULL),(74455,104507,1,'actor',NULL,'[\"Judd\"]'),(74455,2072,2,'actor',NULL,'[\"Harvey Wood\"]'),(74455,427700,3,'actress',NULL,'[\"Miss Hattie\"]'),(74455,122782,4,'actress',NULL,'[\"Faye\"]'),(74455,1361,5,'director',NULL,NULL),(74455,268770,6,'writer','written by',NULL),(74455,6790237,7,'writer','written by',NULL),(74455,377066,8,'writer','adapted for the screen by',NULL),(74455,68580,9,'composer',NULL,NULL),(74462,669905,10,'actress',NULL,'[\"Inger Munch - 1868\"]'),(74462,922484,1,'actor',NULL,'[\"Edvard Munch\"]'),(74462,289458,2,'actress',NULL,'[\"Fru Heiberg\"]'),(74462,21645,3,'actress',NULL,'[\"Sophie Munch - 1868\"]'),(74462,21644,4,'actor',NULL,'[\"Edvard Munch - 1868\"]'),(74462,914386,5,'director',NULL,NULL),(74462,845304,6,'cinematographer',NULL,NULL),(74462,374006,7,'production_designer',NULL,NULL),(74462,873416,8,'actress',NULL,'[\"Laura Munch - 1868\"]'),(74462,143829,9,'actor',NULL,'[\"Peter Andreas Munch - 1868\"]'),(74471,234581,10,'actor',NULL,'[\"Doctor\"]'),(74471,519427,1,'actress',NULL,'[\"White Emanuelle\"]'),(74471,321114,2,'actor',NULL,'[\"Lawrence\"]'),(74471,543042,3,'actress',NULL,'[\"Judith\"]'),(74471,389602,4,'actor',NULL,'[\"Elia\"]'),(74471,684755,5,'director',NULL,NULL),(74471,220207,6,'composer',NULL,NULL),(74471,148339,7,'cinematographer',NULL,NULL),(74471,15760,8,'editor',NULL,NULL),(74471,698495,9,'actor',NULL,'[\"Mr. Johnson\"]'),(74486,620756,1,'actor',NULL,'[\"Henry Spencer\"]'),(74486,829270,2,'actress',NULL,'[\"Mary X\"]'),(74486,430535,3,'actor',NULL,'[\"Mr. X\"]'),(74486,60931,4,'actress',NULL,'[\"Mrs. X\"]'),(74486,186,5,'director',NULL,NULL),(74486,136754,6,'cinematographer',NULL,NULL),(74486,5695,7,'cinematographer',NULL,NULL),(74512,930802,10,'editor','film editor',NULL),(74512,947,1,'actress',NULL,'[\"Fran\"]'),(74512,1136,2,'actor',NULL,'[\"George Lumley\"]'),(74512,364455,3,'actress',NULL,'[\"Blanche Tyler\"]'),(74512,1137,4,'actor',NULL,'[\"Arthur Adamson\"]'),(74512,33,5,'director',NULL,NULL),(74512,499626,6,'writer','screenplay',NULL),(74512,134124,7,'writer','novel \"The Rainbird Pattern\"',NULL),(74512,2354,8,'composer',NULL,NULL),(74512,5880,9,'cinematographer','director of photography',NULL),(74548,205635,10,'actor',NULL,'[\"Gino da Guerra\"]'),(74548,599698,1,'actress',NULL,'[\"Isla the Warden\"]'),(74548,146517,2,'actress',NULL,'[\"Angela De Lam\"]'),(74548,842737,3,'actress',NULL,'[\"Maria Tiboldi\"]'),(74548,836054,4,'actress',NULL,'[\"Lupita Pavona\"]'),(74548,1238,5,'director',NULL,NULL),(74548,226244,6,'writer','screenplay',NULL),(74548,5957,7,'composer',NULL,NULL),(74548,478240,8,'cinematographer',NULL,NULL),(74548,583043,9,'actress',NULL,'[\"Pepa Masul\"]'),(74597,779196,10,'editor',NULL,NULL),(74597,765546,1,'actor',NULL,'[\"Michael Bannon - Cobra Team\"]'),(74597,532838,2,'actor',NULL,'[\"Steve \'Smitty\' Smith - Ferrari Team\"]'),(74597,471,3,'actor',NULL,'[\"\'Franco\'\"]'),(74597,123680,4,'actor',NULL,'[\"Lieutenant Roscoe\"]'),(74597,47094,5,'director',NULL,NULL),(74597,135117,6,'writer','screenplay',NULL),(74597,6089,7,'composer',NULL,NULL),(74597,323075,8,'cinematographer','director of photography',NULL),(74597,660661,9,'editor',NULL,NULL),(74611,661665,10,'producer','producer',NULL),(74611,1201,1,'actress',NULL,'[\"Julia Lofting\"]'),(74611,1158,2,'actor',NULL,'[\"Magnus Lofting\"]'),(74611,2018,3,'actor',NULL,'[\"Mark Berkeley\"]'),(74611,71824,4,'actress',NULL,'[\"Lily Lofting\"]'),(74611,518644,5,'director',NULL,NULL),(74611,111332,6,'writer','story adaption',NULL),(74611,402039,7,'writer','screenplay',NULL),(74611,833718,8,'writer','novel \"Julia, aka Full Circle\"',NULL),(74611,275347,9,'producer','producer',NULL),(74740,6026,10,'composer',NULL,NULL),(74740,626259,1,'actor',NULL,'[\"Keoma Shannon\"]'),(74740,74125,2,'actor',NULL,'[\"William Shannon\"]'),(74740,439466,3,'actress',NULL,'[\"Liza Farrow\"]'),(74740,346315,4,'actor',NULL,'[\"Butch Shannon\"]'),(74740,144758,5,'director',NULL,NULL),(74740,247642,6,'writer','story',NULL),(74740,738247,7,'writer','screenplay',NULL),(74740,239739,8,'writer','screenplay',NULL),(74740,6774,9,'writer','dialogue',NULL),(74806,486611,10,'editor',NULL,NULL),(74806,149,1,'actress',NULL,'[\"Rynn Jacobs\"]'),(74806,640,2,'actor',NULL,'[\"Frank Hallet\"]'),(74806,807252,3,'actress',NULL,'[\"Cora Hallet\"]'),(74806,795837,4,'actor',NULL,'[\"Ron Miglioriti\"]'),(74806,4654,5,'director',NULL,NULL),(74806,462837,6,'writer','screenplay',NULL),(74806,105881,7,'producer','producer',NULL),(74806,309874,8,'composer',NULL,NULL),(74806,5915,9,'cinematographer','director of photography',NULL),(74811,95089,10,'editor',NULL,NULL),(74811,591,1,'actor',NULL,'[\"Trelkovsky\"]'),(74811,254,2,'actress',NULL,'[\"Stella\"]'),(74811,2048,3,'actor',NULL,'[\"Monsieur Zy\"]'),(74811,886888,4,'actress',NULL,'[\"Madame Dioz\"]'),(74811,867718,5,'writer','novel',NULL),(74811,102722,6,'writer','screenplay',NULL),(74811,105931,7,'producer','producer',NULL),(74811,6271,8,'composer',NULL,NULL),(74811,5815,9,'cinematographer','director of photography',NULL),(74812,25,10,'composer',NULL,NULL),(74812,1868,1,'actor',NULL,'[\"Logan\"]'),(74812,256,2,'actress',NULL,'[\"Jessica\"]'),(74812,430151,3,'actor',NULL,'[\"Francis\"]'),(74812,1975,4,'actor',NULL,'[\"Box\"]'),(74812,27183,5,'director',NULL,NULL),(74812,329051,6,'writer','screenplay by',NULL),(74812,634368,7,'writer','based on the novel \"Logan\'s Run\"',NULL),(74812,425138,8,'writer','based on the novel \"Logan\'s Run\"',NULL),(74812,203062,9,'producer','producer',NULL),(74851,680512,10,'composer',NULL,NULL),(74851,309,1,'actor',NULL,'[\"Thomas Jerome Newton\"]'),(74851,1800,2,'actor',NULL,'[\"Nathan Bryce\"]'),(74851,163748,3,'actress',NULL,'[\"Mary-Lou\"]'),(74851,377750,4,'actor',NULL,'[\"Oliver Farnsworth\"]'),(74851,1676,5,'director',NULL,NULL),(74851,562577,6,'writer','screenplay',NULL),(74851,856677,7,'writer','novel',NULL),(74851,214303,8,'producer','producer',NULL),(74851,818731,9,'producer','producer',NULL),(74853,2875,10,'cinematographer','director of photography',NULL),(74853,328,1,'actor',NULL,'[\"Phillipe\",\"Louis\"]'),(74853,1526,2,'actor',NULL,'[\"Fouquet\"]'),(74853,431139,3,'actor',NULL,'[\"D\'Artagnan\"]'),(74853,256,4,'actress',NULL,'[\"Louise de la Valliere\"]'),(74853,1565,5,'director',NULL,NULL),(74853,60378,6,'writer','screenplay',NULL),(74853,241416,7,'writer','based on the novel by',NULL),(74853,741890,8,'producer','producer',NULL),(74853,6071,9,'composer',NULL,NULL),(74855,321114,1,'actor',NULL,'[\"Clarence Hunter\"]'),(74855,698495,2,'actor',NULL,'[\"Richard Hunter\"]'),(74855,728920,3,'actress',NULL,'[\"Mary Foster\"]'),(74855,195621,4,'actress',NULL,'[\"Rhonda\"]'),(74855,684755,5,'director',NULL,NULL),(74855,738806,6,'writer','screenplay',NULL),(74855,320250,7,'composer',NULL,NULL),(74855,148339,8,'cinematographer',NULL,NULL),(74855,15760,9,'editor',NULL,NULL),(74860,5734,10,'cinematographer','director of photography',NULL),(74860,163,1,'actor',NULL,'[\"Thomas \'Babe\' Levy\"]'),(74860,59,2,'actor',NULL,'[\"Dr. Christian Szell\"]'),(74860,1702,3,'actor',NULL,'[\"Henry \'Doc\' Levy\"]'),(74860,1137,4,'actor',NULL,'[\"Janeway\"]'),(74860,772259,5,'director',NULL,NULL),(74860,1279,6,'writer','screenplay',NULL),(74860,65639,7,'producer','producer',NULL),(74860,263172,8,'producer','producer',NULL),(74860,806498,9,'composer',NULL,NULL),(74937,122382,10,'editor',NULL,NULL),(74937,393,1,'actor',NULL,'[\"Sam Diamond\"]'),(74937,27,2,'actor',NULL,'[\"Bensonmum\"]'),(74937,634,3,'actor',NULL,'[\"Sidney Wang\"]'),(74937,107281,4,'actress',NULL,'[\"Tess Skeffington\"]'),(74937,601800,5,'director',NULL,NULL),(74937,800319,6,'writer','written by',NULL),(74937,823256,7,'producer','producer',NULL),(74937,6115,8,'composer',NULL,NULL),(74937,909607,9,'cinematographer','director of photography',NULL),(74958,374189,10,'editor',NULL,NULL),(74958,1159,1,'actress',NULL,'[\"Diana Christensen\"]'),(74958,34,2,'actor',NULL,'[\"Max Schumacher\"]'),(74958,2075,3,'actor',NULL,'[\"Howard Beale\"]'),(74958,380,4,'actor',NULL,'[\"Frank Hackett\"]'),(74958,1486,5,'director',NULL,NULL),(74958,154665,6,'writer','by',NULL),(74958,331907,7,'producer','producer',NULL),(74958,492747,8,'composer',NULL,NULL),(74958,5845,9,'cinematographer','director of photography',NULL),(75005,829,10,'editor',NULL,NULL),(75005,60,1,'actor',NULL,'[\"Robert Thorn\"]'),(75005,1665,2,'actress',NULL,'[\"Katherine Thorn\"]'),(75005,827032,3,'actor',NULL,'[\"Damien\"]'),(75005,1831,4,'actor',NULL,'[\"Jennings\"]'),(75005,1149,5,'director',NULL,NULL),(75005,783544,6,'writer','written by',NULL),(75005,76748,7,'producer','producer',NULL),(75005,25,8,'composer',NULL,NULL),(75005,852405,9,'cinematographer','director of photography',NULL),(75029,839732,10,'cinematographer','director of photography',NULL),(75029,142,1,'actor',NULL,'[\"Josey Wales\"]'),(75029,516800,2,'actress',NULL,'[\"Laura Lee\"]'),(75029,313381,3,'actor',NULL,'[\"Lone Watie\"]'),(75029,571853,4,'actor',NULL,'[\"Captain Terrill\"]'),(75029,141620,5,'writer','book \"Gone To Texas\"',NULL),(75029,442241,6,'writer','screenplay',NULL),(75029,155963,7,'writer','screenplay',NULL),(75029,197883,8,'producer','producer',NULL),(75029,6076,9,'composer',NULL,NULL),(75137,25858,10,'editor',NULL,NULL),(75137,940645,1,'actress',NULL,'[\"Gail\"]'),(75137,807679,2,'actress',NULL,'[\"Heather\"]'),(75137,485766,3,'actress',NULL,'[\"Leslie\"]'),(75137,737543,4,'actress',NULL,'[\"Sesame\"]'),(75137,503641,5,'director',NULL,NULL),(75137,234196,6,'writer','story',NULL),(75137,339260,7,'writer','screenplay',NULL),(75137,1057723,8,'writer','screenplay',NULL),(75137,827533,9,'composer',NULL,NULL),(75148,175722,10,'editor','film editor',NULL),(75148,230,1,'actor',NULL,'[\"Rocky\"]'),(75148,1735,2,'actress',NULL,'[\"Adrian\"]'),(75148,949350,3,'actor',NULL,'[\"Paulie\"]'),(75148,1835,4,'actor',NULL,'[\"Apollo\"]'),(75148,814,5,'director',NULL,NULL),(75148,153590,6,'producer','producer',NULL),(75148,5563,7,'producer','producer',NULL),(75148,6015,8,'composer',NULL,NULL),(75148,185583,9,'cinematographer','director of photography',NULL),(75177,6061,10,'composer',NULL,NULL),(75177,872383,1,'actor',NULL,'[\"Sebastian\"]'),(75177,416290,2,'actor',NULL,'[\"Severus\"]'),(75177,448256,3,'actor',NULL,'[\"Max\"]'),(75177,913264,4,'actor',NULL,'[\"Justin\"]'),(75177,401804,5,'director',NULL,NULL),(75177,418746,6,'director',NULL,NULL),(75177,4512986,7,'writer','latin translation',NULL),(75177,923506,8,'writer',NULL,NULL),(75177,539633,9,'producer','producer',NULL),(75178,6088,10,'composer',NULL,NULL),(75178,897715,1,'actor',NULL,'[\"Rag. Ugo Fantozzi\"]'),(75178,563481,2,'actress',NULL,'[\"Signorina Silvani\"]'),(75178,714805,3,'actor',NULL,'[\"Rag. Filini\"]'),(75178,93244,4,'actor',NULL,'[\"Ispettor degli Ispettori, Corrado Maria Lobbiam\"]'),(75178,757790,5,'director',NULL,NULL),(75178,73053,6,'writer','screenplay',NULL),(75178,207401,7,'writer','screenplay',NULL),(75178,78232,8,'producer','producer',NULL),(75178,84655,9,'composer',NULL,NULL),(75222,517873,10,'cinematographer','director of photography',NULL),(75222,316,1,'actor',NULL,'[\"Mel Funn\"]'),(75222,1204,2,'actor',NULL,'[\"Marty Eggs\"]'),(75222,1123,3,'actor',NULL,'[\"Dom Bell\"]'),(75222,128377,4,'actor',NULL,'[\"Studio Chief\"]'),(75222,164444,5,'writer','screenplay',NULL),(75222,209918,6,'writer','screenplay',NULL),(75222,1469,7,'writer','screenplay',NULL),(75222,381110,8,'producer','producer',NULL),(75222,606657,9,'composer',NULL,NULL),(75223,909607,10,'cinematographer','director of photography',NULL),(75223,698,1,'actor',NULL,'[\"George Caldwell\"]'),(75223,1640,2,'actor',NULL,'[\"Grover T. Muldoon\"]'),(75223,1049,3,'actress',NULL,'[\"Hildegard \'Hilly\' Burns\"]'),(75223,1526,4,'actor',NULL,'[\"Roger Devereau\"]'),(75223,2137,5,'director',NULL,NULL),(75223,383359,6,'writer','written by',NULL),(75223,587558,7,'producer','producer',NULL),(75223,589429,8,'producer','producer',NULL),(75223,49,9,'composer',NULL,NULL),(75249,779196,10,'editor',NULL,NULL),(75249,859365,1,'actor',NULL,'[\"Stix\"]'),(75249,1011,2,'actress',NULL,'[\"Sparkle\"]'),(75249,571188,3,'actress',NULL,'[\"Sister\"]'),(75249,807906,4,'actress',NULL,'[\"Delores\"]'),(75249,642714,5,'director',NULL,NULL),(75249,1708,6,'writer','story by',NULL),(75249,742651,7,'writer','story by',NULL),(75249,562631,8,'composer',NULL,NULL),(75249,839732,9,'cinematographer','director of photography',NULL),(75265,43486,10,'writer',NULL,NULL),(75265,659,1,'actress',NULL,'[\"Esther Hoffman\"]'),(75265,1434,2,'actor',NULL,'[\"John Norman Howard\"]'),(75265,997,3,'actor',NULL,'[\"Bobby Ritchie\"]'),(75265,164339,4,'actor',NULL,'[\"Gary Danziger\"]'),(75265,682757,5,'director',NULL,NULL),(75265,242869,6,'writer','screenplay by',NULL),(75265,225820,7,'writer','screenplay by',NULL),(75265,920074,8,'writer','based on a story by',NULL),(75265,308604,9,'writer','based on a story by',NULL),(75276,754165,1,'actor',NULL,'[\"Der Bruno Stroszek\"]'),(75276,559837,2,'actress',NULL,'[\"Eva\"]'),(75276,770670,3,'actor',NULL,'[\"Scheitz\"]'),(75276,902455,4,'actor',NULL,'[\"Souteneur\"]'),(75276,1348,5,'director',NULL,NULL),(75276,40562,6,'composer',NULL,NULL),(75276,856079,7,'composer',NULL,NULL),(75276,560761,8,'cinematographer',NULL,NULL),(75276,537754,9,'editor',NULL,NULL),(75314,152469,10,'cinematographer','director of photography',NULL),(75314,134,1,'actor',NULL,'[\"Travis Bickle\"]'),(75314,149,2,'actress',NULL,'[\"Iris\"]'),(75314,1732,3,'actress',NULL,'[\"Betsy\"]'),(75314,983,4,'actor',NULL,'[\"Tom\"]'),(75314,217,5,'director',NULL,NULL),(75314,1707,6,'writer','written by',NULL),(75314,680539,7,'producer','producer',NULL),(75314,680635,8,'producer','producer',NULL),(75314,2136,9,'composer',NULL,NULL),(75342,424565,1,'actor',NULL,'[\"Captain J.D. Morales\"]'),(75342,697785,2,'actor',NULL,'[\"Deputy Norman Ramsey\"]'),(75342,920171,3,'actress',NULL,'[\"Helen Reed\"]'),(75342,166000,4,'actor',NULL,'[\"Sgt. Mal Griffin\"]'),(75342,682309,5,'director',NULL,NULL),(75342,808073,6,'writer',NULL,NULL),(75342,579387,7,'composer',NULL,NULL),(75342,730586,8,'cinematographer',NULL,NULL),(75342,100372,9,'editor',NULL,NULL),(75359,386583,10,'cinematographer','director of photography',NULL),(75359,32,1,'actor',NULL,'[\"Capt. Peter Holly\"]'),(75359,1023,2,'actor',NULL,'[\"Sgt. Button\"]'),(75359,842,3,'actor',NULL,'[\"Sam McKeever\"]'),(75359,977,4,'actor',NULL,'[\"Mike Ramsay\"]'),(75359,670282,5,'director',NULL,NULL),(75359,4189182,6,'writer','novel',NULL),(75359,401742,7,'writer','screenplay',NULL),(75359,271026,8,'producer','producer',NULL),(75359,288913,9,'composer',NULL,NULL),(75376,209189,1,'actress',NULL,'[\"Margo\"]'),(75376,423578,2,'actor',NULL,'[\"Paul\",\"Husband\"]'),(75376,939773,3,'actress',NULL,'[\"Alice\",\"wife\"]'),(75376,760121,4,'actress',NULL,'[\"The Headsperson\"]'),(75376,540,5,'director',NULL,NULL),(75376,752420,6,'writer','original story',NULL),(75376,1170,7,'writer','original story',NULL),(75376,519771,8,'composer',NULL,NULL),(75376,749520,9,'composer',NULL,NULL),(75467,891387,10,'production_designer',NULL,NULL),(75467,960236,1,'actor',NULL,'[\"Gyuricza Miklós\"]'),(75467,617277,2,'actor',NULL,'[\"Király László\"]'),(75467,70387,3,'actor',NULL,'[\"Béla\"]'),(75467,395818,4,'actor',NULL,'[\"Kovács János\"]'),(75467,299586,5,'director',NULL,NULL),(75467,845228,6,'writer','novel',NULL),(75467,904397,7,'composer',NULL,NULL),(75467,407859,8,'cinematographer',NULL,NULL),(75467,844455,9,'editor',NULL,NULL),(75612,1167,1,'actress',NULL,'[\"Millie Lammoreaux\"]'),(75612,651,2,'actress',NULL,'[\"Pinky Rose\"]'),(75612,750023,3,'actress',NULL,'[\"Willie Hart\"]'),(75612,287279,4,'actor',NULL,'[\"Edgar Hart\"]'),(75612,265,5,'director',NULL,NULL),(75612,720334,6,'writer',NULL,NULL),(75612,123896,7,'composer',NULL,NULL),(75612,5848,8,'cinematographer','director of photography',NULL),(75612,384190,9,'editor',NULL,NULL),(75617,356781,10,'editor',NULL,NULL),(75617,528586,1,'actress',NULL,'[\"Anni-Frid Lyngstad\"]'),(75617,27630,2,'self',NULL,'[\"Self\"]'),(75617,880744,3,'actor',NULL,'[\"Björn Ulvaeus\"]'),(75617,299611,4,'actress',NULL,'[\"Agnetha Fältskog\"]'),(75617,2120,5,'director',NULL,NULL),(75617,145781,6,'writer','written by',NULL),(75617,27832,7,'composer',NULL,NULL),(75617,161436,8,'cinematographer',NULL,NULL),(75617,648857,9,'cinematographer',NULL,NULL),(75666,1097034,10,'producer','producer',NULL),(75666,111610,1,'actor',NULL,'[\"Dr. Oszek\",\"Hunchbacked Gypsy\"]'),(75666,798270,2,'actor',NULL,'[\"Father Lázaro\"]'),(75666,739589,3,'actress',NULL,'[\"Alucarda\",\"Alucarda\'s Mother\"]'),(75666,436684,4,'actress',NULL,'[\"Justine\"]'),(75666,529877,5,'director',NULL,NULL),(75666,494257,6,'writer','novella \"Carmilla\"',NULL),(75666,1027856,7,'writer','story',NULL),(75666,2960231,8,'writer','story',NULL),(75666,1098358,9,'writer','story',NULL),(75679,582721,10,'cinematographer','director of photography',NULL),(75679,289316,1,'actress',NULL,'[\"R.C.\"]'),(75679,31214,2,'actor',NULL,'[\"Drugstore Boy\"]'),(75679,743046,3,'actress',NULL,'[\"Drugstore Mother\"]'),(75679,4647,4,'actress',NULL,'[\"Hazel Aiken\"]'),(75679,425328,5,'director',NULL,NULL),(75679,352493,6,'writer','story',NULL),(75679,7648,7,'writer','story',NULL),(75679,868164,8,'producer','producer',NULL),(75679,89280,9,'composer',NULL,NULL),(75686,95,1,'actor',NULL,'[\"Alvy Singer\"]'),(75686,473,2,'actress',NULL,'[\"Annie Hall\",\"voice of Evil Queen\"]'),(75686,731634,3,'actor',NULL,'[\"Rob\"]'),(75686,1406,4,'actress',NULL,'[\"Allison\"]'),(75686,108613,5,'writer','written by',NULL),(75686,423618,6,'producer','producer',NULL),(75686,932336,7,'cinematographer','director of photography',NULL),(75686,108629,8,'editor','film editor',NULL),(75686,742471,9,'editor',NULL,NULL),(75784,11709,10,'composer',NULL,NULL),(75784,125,1,'actor',NULL,'[\"Maj. Gen. Urquhart\"]'),(75784,641939,2,'actor',NULL,'[\"Brig. Gen. Gavin\"]'),(75784,323,3,'actor',NULL,'[\"Lt. Col. J.O.E. Vandeleur\"]'),(75784,59,4,'actor',NULL,'[\"Doctor Spaander\"]'),(75784,277,5,'director',NULL,NULL),(75784,752485,6,'writer','based on the book by',NULL),(75784,1279,7,'writer','screenplay by',NULL),(75784,505854,8,'producer','producer',NULL),(75784,505935,9,'producer','producer',NULL),(75860,680539,10,'producer','producer',NULL),(75860,377,1,'actor',NULL,'[\"Roy Neary\"]'),(75860,76,2,'actor',NULL,'[\"Claude Lacombe\"]'),(75860,414,3,'actress',NULL,'[\"Ronnie Neary\"]'),(75860,227039,4,'actress',NULL,'[\"Jillian Guiler\"]'),(75860,229,5,'director',NULL,NULL),(75860,59493,6,'writer','additional story',NULL),(75860,69547,7,'writer','written by',NULL),(75860,384398,8,'writer','additional writing',NULL),(75860,730422,9,'writer','additional story',NULL),(75909,954435,10,'producer','producer',NULL),(75909,1821,1,'actor',NULL,'[\"Tanner\"]'),(75909,577,2,'actor',NULL,'[\"Denton\"]'),(75909,761212,3,'actress',NULL,'[\"Janice\"]'),(75909,934902,4,'actor',NULL,'[\"Keegan\"]'),(75909,806915,5,'director',NULL,NULL),(75909,954467,6,'writer','from the novel \"Damnation Alley\"',NULL),(75909,788991,7,'writer','screenplay',NULL),(75909,375355,8,'writer','screenplay',NULL),(75909,556487,9,'producer','producer',NULL),(75936,719294,1,'actress',NULL,'[\"Muffy St. Jacques\"]'),(75936,831467,2,'actress',NULL,'[\"Peggy Gravel\"]'),(75936,523056,3,'actress',NULL,'[\"Mole McHenry\"]'),(75936,557298,4,'actress',NULL,'[\"Queen Carlotta\"]'),(75936,691,5,'director',NULL,NULL),(75936,8164577,6,'composer',NULL,NULL),(75936,518025,7,'cinematographer','director of photography',NULL),(75936,737311,8,'editor',NULL,NULL),(75938,5681,10,'cinematographer',NULL,NULL),(75938,598356,1,'actor',NULL,'[\"Charles\"]'),(75938,410013,2,'actress',NULL,'[\"Alberte\"]'),(75938,560751,3,'actor',NULL,'[\"Michel\"]'),(75938,136254,4,'actress',NULL,'[\"Edwige\"]'),(75938,975,5,'director',NULL,NULL),(75938,151303,6,'producer','producer',NULL),(75938,300580,7,'producer','producer',NULL),(75938,869099,8,'producer','producer',NULL),(75938,6271,9,'composer',NULL,NULL),(75939,3542,10,'cinematographer',NULL,NULL),(75939,458302,1,'actress',NULL,'[\"Anne Weber\"]'),(75939,584896,2,'actress',NULL,'[\"Frédérique Weber\"]'),(75939,272686,3,'actress',NULL,'[\"Madame Weber\"]'),(75939,701171,4,'actor',NULL,'[\"Monsieur Weber\"]'),(75939,476123,5,'director',NULL,NULL),(75939,494378,6,'writer',NULL,NULL),(75939,2178,7,'producer','producer',NULL),(75939,489637,8,'producer','producer',NULL),(75939,800419,9,'composer',NULL,NULL),(75968,862777,10,'cinematographer','director of photography',NULL),(75968,1018,1,'actor',NULL,'[\"Armand d\'Hubert\"]'),(75968,172,2,'actor',NULL,'[\"Gabriel Feraud\"]'),(75968,1215,3,'actor',NULL,'[\"Fouché\"]'),(75968,2081,4,'actor',NULL,'[\"Colonel\"]'),(75968,631,5,'director',NULL,NULL),(75968,891126,6,'writer','screenplay',NULL),(75968,175676,7,'writer','story \"The Duel\"',NULL),(75968,701298,8,'producer','producer',NULL),(75968,86574,9,'composer',NULL,NULL),(75988,186056,10,'editor',NULL,NULL),(75988,625456,1,'actor',NULL,'[\"Emmet Otter\",\"Weasel\",\"Doc Bullfrog\"]'),(75988,568,2,'actor',NULL,'[\"Chuck\",\"Ma Otter (assistant)\"]'),(75988,812427,3,'actress',NULL,'[\"Ma Otter\"]'),(75988,324397,4,'actor',NULL,'[\"Wendell\",\"Pop-eyed Catfish\",\"Will Possum\"]'),(75988,1345,5,'director',NULL,NULL),(75988,387536,6,'writer','book',NULL),(75988,387539,7,'writer','book',NULL),(75988,432075,8,'writer','written by',NULL),(75988,931437,9,'composer',NULL,NULL),(76054,911307,10,'editor',NULL,NULL),(76054,364455,1,'actress',NULL,'[\"Mrs. Andrews\"]'),(76054,149,2,'actress',NULL,'[\"Annabel\"]'),(76054,40014,3,'actor',NULL,'[\"Mr. Andrews\"]'),(76054,446763,4,'actress',NULL,'[\"Mrs. Schmauss\"]'),(76054,625379,5,'director',NULL,NULL),(76054,734742,6,'writer','screenplay',NULL),(76054,589253,7,'producer','producer',NULL),(76054,6184,8,'composer',NULL,NULL),(76054,923781,9,'cinematographer','director of photography',NULL),(76085,5681,10,'cinematographer',NULL,NULL),(76085,47,1,'actress',NULL,'[\"Antonietta Taberi\"]'),(76085,52,2,'actor',NULL,'[\"Gabriele\"]'),(76085,6893,3,'actor',NULL,'[\"Emanuele Taberi\"]'),(76085,73414,4,'actress',NULL,'[\"Concierge\"]'),(76085,778633,5,'director',NULL,NULL),(76085,531431,6,'writer','original idea',NULL),(76085,182454,7,'writer','collaboration',NULL),(76085,690638,8,'producer','producer',NULL),(76085,6325,9,'composer',NULL,NULL),(76095,122382,10,'editor',NULL,NULL),(76095,377,1,'actor',NULL,'[\"Elliot Garfield\"]'),(76095,556850,2,'actress',NULL,'[\"Paula McFadden\"]'),(76095,191944,3,'actress',NULL,'[\"Lucy McFadden\"]'),(76095,70801,4,'actor',NULL,'[\"Mark\"]'),(76095,6889,5,'director',NULL,NULL),(76095,800319,6,'writer','written by',NULL),(76095,823256,7,'producer','producer',NULL),(76095,6115,8,'composer',NULL,NULL),(76095,909607,9,'cinematographer','director of photography',NULL),(76141,397405,10,'editor',NULL,NULL),(76141,316,1,'actor',NULL,'[\"Dr. Richard H. Thorndyke\"]'),(76141,1404,2,'actress',NULL,'[\"Victoria Brisbane\"]'),(76141,1458,3,'actress',NULL,'[\"Nurse Charlotte Diesel\"]'),(76141,466327,4,'actor',NULL,'[\"Dr. Charles Montague\"]'),(76141,164444,5,'writer','written by',NULL),(76141,209918,6,'writer','written by',NULL),(76141,1469,7,'writer','written by',NULL),(76141,606657,8,'composer',NULL,NULL),(76141,517873,9,'cinematographer','director of photography',NULL),(76155,463492,10,'production_designer',NULL,NULL),(76155,219342,1,'actor',NULL,'[\"Bertrand Morane\"]'),(76155,287637,2,'actress',NULL,'[\"Geneviève Bigey\"]'),(76155,96501,3,'actress',NULL,'[\"Delphine Grezel\"]'),(76155,284974,4,'actress',NULL,'[\"Hélène\"]'),(76155,76,5,'director',NULL,NULL),(76155,272749,6,'writer',NULL,NULL),(76155,771535,7,'writer',NULL,NULL),(76155,743,8,'cinematographer',NULL,NULL),(76155,56697,9,'editor',NULL,NULL),(76161,404978,10,'editor',NULL,NULL),(76161,177228,1,'actor',NULL,'[\"Sherlock Holmes\"]'),(76161,1545,2,'actor',NULL,'[\"Doctor Watson\",\"Mrs. Ada Holmes\",\"Mr. Spiggot\"]'),(76161,1186,3,'actor',NULL,'[\"Stapleton\"]'),(76161,339343,4,'actress',NULL,'[\"Beryl Stapleton\"]'),(76161,607407,5,'director',NULL,NULL),(76161,236279,6,'writer','novel \"The Hound of the Baskervilles\"',NULL),(76161,326364,7,'producer','producer',NULL),(76161,124117,8,'cinematographer','director of photography',NULL),(76161,587781,9,'cinematographer','director of photography',NULL),(76162,461990,10,'composer',NULL,NULL),(76162,407475,1,'actress',NULL,'[\"Oshare (Miyuki Koga)\",\"Gorgeous\",\"Oshare\'s Mother\"]'),(76162,423101,2,'actress',NULL,'[\"Kung Fu\"]'),(76162,643178,3,'actress',NULL,'[\"Fantasy\"]'),(76162,559384,4,'actress',NULL,'[\"Gari\",\"Prof\"]'),(76162,541244,5,'director',NULL,NULL),(76162,441554,6,'writer','screenplay',NULL),(76162,643168,7,'writer','original story',NULL),(76162,849083,8,'producer','producer',NULL),(76162,1239213,9,'producer','producer',NULL),(76175,21065,10,'editor',NULL,NULL),(76175,432,1,'actor',NULL,'[\"Maj. William Sherman Foster\"]'),(76175,1352,2,'actor',NULL,'[\"Marco Segrain\"]'),(76175,366,3,'actress',NULL,'[\"Simone Picard\"]'),(76175,1884,4,'actor',NULL,'[\"Francois Marneau\"]'),(76175,724059,5,'director',NULL,NULL),(76175,329051,6,'writer','story',NULL),(76175,988,7,'producer','producer',NULL),(76175,3574,8,'composer',NULL,NULL),(76175,5633,9,'cinematographer',NULL,NULL),(76240,55407,10,'editor',NULL,NULL),(76240,1914,1,'actor',NULL,'[\"Kid\"]'),(76240,639782,2,'actor',NULL,'[\"John Dee\"]'),(76240,153182,3,'actor',NULL,'[\"Angel\"]'),(76240,183629,4,'actress',NULL,'[\"Lounge Lizard\"]'),(76240,418746,5,'director',NULL,NULL),(76240,539633,6,'producer','producer',NULL),(76240,923506,7,'producer','producer',NULL),(76240,6061,8,'composer',NULL,NULL),(76240,585550,9,'cinematographer','director of photography',NULL),(76245,5878,10,'cinematographer','director of photography',NULL),(76245,404,1,'actress',NULL,'[\"Lillian\"]'),(76245,603,2,'actress',NULL,'[\"Julia\"]'),(76245,1673,3,'actor',NULL,'[\"Hammett\"]'),(76245,1703,4,'actor',NULL,'[\"Johann\"]'),(76245,3593,5,'director',NULL,NULL),(76245,375484,6,'writer','based upon the story by',NULL),(76245,765091,7,'writer','screenplay',NULL),(76245,10607011,8,'producer','producer',NULL),(76245,16,9,'composer',NULL,NULL),(76257,441863,10,'cinematographer','director of photography',NULL),(76257,453447,1,'actor',NULL,'[\"Loo (segment \\\"A Fistful of Yen\\\")\"]'),(76257,359147,2,'actor',NULL,'[\"Dr. Klahn (segment \\\"A Fistful of Yen\\\")\"]'),(76257,84642,3,'self',NULL,'[\"Self (segment \\\"Headache Clinic\\\")\"]'),(76257,493872,4,'actor',NULL,'[\"The Architect (segment \\\"That\'s Armageddon\\\")\"]'),(76257,484,5,'director',NULL,NULL),(76257,1878,6,'writer','written by',NULL),(76257,720,7,'writer','written by',NULL),(76257,958387,8,'writer','written by',NULL),(76257,919154,9,'producer','producer',NULL),(76271,437901,10,'producer','producer',NULL),(76271,638,1,'actor',NULL,'[\"Dr. Robert \'Rack\' Hansen\"]'),(76271,93147,2,'actress',NULL,'[\"Diane Ashley\"]'),(76271,834754,3,'actor',NULL,'[\"Walter Colby\"]'),(76271,237595,4,'actress',NULL,'[\"Emma Washburn\"]'),(76271,4616,5,'director',NULL,NULL),(76271,733015,6,'writer','screenplay',NULL),(76271,128845,7,'writer','screenplay',NULL),(76271,811072,8,'writer','original story',NULL),(76271,517119,9,'writer','original story',NULL),(76319,433384,10,'editor',NULL,NULL),(76319,72,1,'actress',NULL,'[\"Desiree Armfeldt\"]'),(76319,1671,2,'actress',NULL,'[\"Charlotte Mittelheim\"]'),(76319,137230,3,'actor',NULL,'[\"Frederick Egerman\"]'),(76319,1153,4,'actress',NULL,'[\"Anne Egerman\"]'),(76319,697660,5,'director',NULL,NULL),(76319,5,6,'writer','suggested by: a film by \"Sommarnattens leende\"',NULL),(76319,923839,7,'writer','screenplay',NULL),(76319,440990,8,'producer','producer',NULL),(76319,406471,9,'cinematographer',NULL,NULL),(76363,942723,10,'writer','story',NULL),(76363,1982,1,'actor',NULL,'[\"Narrator\"]'),(76363,560076,2,'actor',NULL,'[\"Rabbit\"]'),(76363,524853,3,'actress',NULL,'[\"Kanga\"]'),(76363,606593,4,'actor',NULL,'[\"Gopher\"]'),(76363,522028,5,'director',NULL,NULL),(76363,718627,6,'director',NULL,NULL),(76363,789313,7,'director',NULL,NULL),(76363,590316,8,'writer','books',NULL),(76363,166307,9,'writer','story',NULL),(76504,58021,10,'cinematographer',NULL,NULL),(76504,1321,1,'actor',NULL,'[\"Captain Nolan\"]'),(76504,1648,2,'actress',NULL,'[\"Rachel Bedford\"]'),(76504,760225,3,'actor',NULL,'[\"Jacob Umilak\"]'),(76504,137,4,'actress',NULL,'[\"Annie\"]'),(76504,27183,5,'director',NULL,NULL),(76504,898812,6,'writer','original story by',NULL),(76504,6872,7,'writer','original story by',NULL),(76504,1801,8,'writer',NULL,NULL),(76504,1553,9,'composer',NULL,NULL),(76538,183857,10,'producer','producer',NULL),(76538,551171,1,'actor',NULL,'[\"Pete\"]'),(76538,714761,2,'actress',NULL,'[\"Nora\"]'),(76538,197715,3,'actor',NULL,'[\"Dr. Terminus\"]'),(76538,1682,4,'actor',NULL,'[\"Lampie\"]'),(76538,149548,5,'director',NULL,NULL),(76538,89940,6,'director','animation director',NULL),(76538,549393,7,'writer','screenplay',NULL),(76538,589316,8,'writer','story',NULL),(76538,276039,9,'writer','story',NULL),(76578,59382,10,'editor',NULL,NULL),(76578,216,1,'self',NULL,'[\"Self\"]'),(76578,2073,2,'self',NULL,'[\"Self\"]'),(76578,274830,3,'self',NULL,'[\"Self\"]'),(76578,274833,4,'self',NULL,'[\"Self\"]'),(76578,1000159,5,'director',NULL,NULL),(76578,278447,6,'director',NULL,NULL),(76578,301310,7,'writer','book \"Pumping Iron\"',NULL),(76578,308877,8,'producer','producer',NULL),(76578,806498,9,'composer',NULL,NULL),(76582,65690,10,'cinematographer','director of photography',NULL),(76582,32403,1,'actor',NULL,'[\"Delmus\"]'),(76582,794,2,'actor',NULL,'[\"Warden\"]'),(76582,48983,3,'actor',NULL,'[\"Billy Jerk\"]'),(76582,888404,4,'actress',NULL,'[\"Army Nurse\"]'),(76582,588496,5,'director',NULL,NULL),(76582,695147,6,'writer','screenplay by',NULL),(76582,975323,7,'writer','screenplay by',NULL),(76582,155926,8,'producer','producer',NULL),(76582,242886,9,'composer',NULL,NULL),(76584,549592,10,'writer','written by',NULL),(76584,4149,1,'actor',NULL,'[\"Lt. Robert Yeager\"]'),(76584,393848,2,'actor',NULL,'[\"Tony\"]'),(76584,4365,3,'actor',NULL,'[\"Pvt. Fred Canfield\"]'),(76584,673692,4,'actor',NULL,'[\"Nick\"]'),(76584,144758,5,'director',NULL,NULL),(76584,176420,6,'writer','written by',NULL),(76584,340894,7,'writer','written by',NULL),(76584,585971,8,'writer','written by',NULL),(76584,869125,9,'writer','written by',NULL),(76590,300833,10,'actress',NULL,'[\"Dr. Roxanne Keloid\"]'),(76590,1032,1,'actress',NULL,'[\"Rose\"]'),(76590,601210,2,'actor',NULL,'[\"Hart Read\"]'),(76590,774750,3,'actress',NULL,'[\"Judy Glasberg\"]'),(76590,798718,4,'actor',NULL,'[\"Murray Cypher\"]'),(76590,343,5,'director',NULL,NULL),(76590,242949,6,'producer','producer',NULL),(76590,5915,7,'cinematographer','director of photography',NULL),(76590,480879,8,'editor',NULL,NULL),(76590,753447,9,'actor',NULL,'[\"Dr. Dan Keloid\"]'),(76591,232589,10,'editor',NULL,NULL),(76591,914603,1,'actor',NULL,'[\"Charlie Brown\"]'),(76591,271644,2,'actor',NULL,'[\"Schroeder\",\"Camp Announcer\"]'),(76591,112606,3,'actor',NULL,'[\"Peppermint Patty\"]'),(76591,1827167,4,'actress',NULL,'[\"Sally Brown\"]'),(76591,6837,5,'director',NULL,NULL),(76591,738736,6,'director','co-director',NULL),(76591,776433,7,'writer','written by',NULL),(76591,578882,8,'producer','producer',NULL),(76591,91583,9,'composer',NULL,NULL),(76618,27011,10,'writer','story',NULL),(76618,627878,1,'actor',NULL,'[\"Bernard\"]'),(76618,1247,2,'actress',NULL,'[\"Miss Bianca\"]'),(76618,656183,3,'actress',NULL,'[\"Madame Medusa\"]'),(76618,283499,4,'actor',NULL,'[\"Mr. Snoops\"]'),(76618,522028,5,'director',NULL,NULL),(76618,718627,6,'director',NULL,NULL),(76618,828245,7,'director',NULL,NULL),(76618,789100,8,'writer','suggested by \"The Rescuers\" and \"Miss Bianca\" by',NULL),(76618,166307,9,'writer','story',NULL),(76661,455098,10,'composer',NULL,NULL),(76661,504900,1,'actor',NULL,'[\"Wong Tai-Kwang\"]'),(76661,490573,2,'actor',NULL,'[\"Shan Ho Kuan\"]'),(76661,945188,3,'actor',NULL,NULL),(76661,473314,4,'actor',NULL,'[\"Master Hsi Tak\"]'),(76661,155179,5,'director',NULL,NULL),(76661,648505,6,'writer','screenplay',NULL),(76661,8306810,7,'producer','producer',NULL),(76661,8306808,8,'producer','producer',NULL),(76661,8306809,9,'producer','producer',NULL),(76666,316465,10,'composer',NULL,NULL),(76666,237,1,'actor',NULL,'[\"Tony Manero\"]'),(76666,331186,2,'actress',NULL,'[\"Stephanie\"]'),(76666,587944,3,'actor',NULL,'[\"Bobby C.\"]'),(76666,129955,4,'actor',NULL,'[\"Joey\"]'),(76666,824,5,'director',NULL,NULL),(76666,169936,6,'writer','story \"Tribal Rites of the New Saturday Night\"',NULL),(76666,923319,7,'writer','screenplay',NULL),(76666,830164,8,'producer','producer',NULL),(76666,2956,9,'composer',NULL,NULL),(76683,712625,10,'editor',NULL,NULL),(76683,707043,1,'actress',NULL,'[\"Alison Parker\"]'),(76683,1257,2,'actress',NULL,'[\"Miss Logan\"]'),(76683,1697,3,'actor',NULL,'[\"Michael Lerman\"]'),(76683,842,4,'actor',NULL,'[\"Professor Ruzinsky\"]'),(76683,935382,5,'director',NULL,NULL),(76683,465458,6,'writer','novel',NULL),(76683,6195,7,'composer',NULL,NULL),(76683,470012,8,'cinematographer','director of photography',NULL),(76683,340795,9,'editor',NULL,NULL),(76723,20441,10,'editor',NULL,NULL),(76723,56,1,'actor',NULL,'[\"Reggie\"]'),(76723,648920,2,'actor',NULL,'[\"Ned Braden\"]'),(76723,1510,3,'actor',NULL,'[\"McGrath\"]'),(76723,912874,4,'actress',NULL,'[\"Francine\"]'),(76723,1351,5,'director',NULL,NULL),(76723,235683,6,'writer',NULL,NULL),(76723,295375,7,'producer','producer',NULL),(76723,943351,8,'producer','producer',NULL),(76723,5755,9,'cinematographer',NULL,NULL),(76727,695178,10,'editor',NULL,NULL),(76727,293981,1,'actress',NULL,'[\"Lyudmila Prokofyevna Kalugina \'Mymra\'\"]'),(76727,616556,2,'actor',NULL,'[\"Anatoli Yefremovich Novoseltsev\"]'),(76727,625986,3,'actress',NULL,'[\"Olga Petrovna Ryzhova\"]'),(76727,59847,4,'actor',NULL,'[\"Yuri Grigoryevich Samokhvalov\"]'),(76727,752922,5,'director',NULL,NULL),(76727,103932,6,'writer','play \"Sosluzhivtsy\"',NULL),(76727,678157,7,'composer',NULL,NULL),(76727,620469,8,'cinematographer',NULL,NULL),(76727,69483,9,'editor',NULL,NULL),(76734,653150,10,'composer',NULL,NULL),(76734,442,1,'actor',NULL,'[\"Erik Lanshof\"]'),(76734,469103,2,'actor',NULL,'[\"Guus LeJeune\"]'),(76734,671854,3,'actress',NULL,'[\"Susan\"]'),(76734,2081,4,'actor',NULL,'[\"Colonel Rafelli\"]'),(76734,682,5,'director',NULL,NULL),(76734,736361,6,'writer','book \"Soldaat van Oranje \'40-\'45\"',NULL),(76734,390537,7,'writer',NULL,NULL),(76734,812121,8,'writer',NULL,NULL),(76734,396951,9,'producer','producer',NULL),(76752,6121,10,'composer',NULL,NULL),(76752,549,1,'actor',NULL,'[\"James Bond\"]'),(76752,819,2,'actress',NULL,'[\"Major Anya Amasova\"]'),(76752,432007,3,'actor',NULL,'[\"Stromberg\"]'),(76752,1423,4,'actor',NULL,'[\"Jaws\"]'),(76752,318150,5,'director',NULL,NULL),(76752,228970,6,'writer','screenplay by',NULL),(76752,537363,7,'writer','screenplay by',NULL),(76752,1220,8,'writer','characters',NULL),(76752,110482,9,'producer','producer',NULL),(76759,156816,10,'editor','film editor',NULL),(76759,434,1,'actor',NULL,'[\"Luke Skywalker\"]'),(76759,148,2,'actor',NULL,'[\"Han Solo\"]'),(76759,402,3,'actress',NULL,'[\"Princess Leia Organa\"]'),(76759,27,4,'actor',NULL,'[\"Ben Obi-Wan Kenobi\"]'),(76759,184,5,'director',NULL,NULL),(76759,476030,6,'producer','producer',NULL),(76759,564768,7,'producer','producer',NULL),(76759,2354,8,'composer',NULL,NULL),(76759,852405,9,'cinematographer','director of photography',NULL),(76786,603094,10,'composer',NULL,NULL),(76786,363888,1,'actress',NULL,'[\"Suzy Bannion\"]'),(76786,143743,2,'actress',NULL,'[\"Sara\"]'),(76786,117885,3,'actor',NULL,'[\"Daniel\"]'),(76786,98395,4,'actor',NULL,'[\"Mark\"]'),(76786,783,5,'director',NULL,NULL),(76786,630453,6,'writer','screenplay',NULL),(76786,211063,7,'writer','book \"Suspiria de Profundis\"',NULL),(76786,34483,8,'producer','producer',NULL),(76786,544839,9,'composer',NULL,NULL),(76843,843,1,'actress',NULL,'[\"Emma Jacklin\"]'),(76843,511,2,'actress',NULL,'[\"Deedee\"]'),(76843,864,3,'actor',NULL,'[\"Yuri\"]'),(76843,643,4,'actor',NULL,'[\"Wayne\"]'),(76843,6889,5,'director',NULL,NULL),(76843,491306,6,'writer','written by',NULL),(76843,5892,7,'cinematographer','director of photography',NULL),(76843,722000,8,'editor','film editor',NULL),(76843,107447,9,'production_designer',NULL,NULL),(77189,5723,10,'cinematographer',NULL,NULL),(77189,1369,1,'actor',NULL,'[\"David Shelby\"]'),(77189,1201,2,'actress',NULL,'[\"Caroline Brace\"]'),(77189,1233,3,'actor',NULL,'[\"Nick Thorne\"]'),(77189,634282,4,'actress',NULL,'[\"Florence Shelby\"]'),(77189,1904,5,'director',NULL,NULL),(77189,230357,6,'writer','story',NULL),(77189,483149,7,'writer','writer',NULL),(77189,339,8,'producer','producer',NULL),(77189,469242,9,'composer',NULL,NULL),(77215,170937,10,'cinematographer','director of photography',NULL),(77215,368745,1,'actor',NULL,'[\"Captain Apollo\"]'),(77215,70767,2,'actor',NULL,'[\"Lieutenant Starbuck\"]'),(77215,1296,3,'actor',NULL,'[\"Commander Adama\"]'),(77215,420170,4,'actor',NULL,'[\"Lieutenant Boomer\"]'),(77215,171619,5,'director',NULL,NULL),(77215,505420,6,'director',NULL,NULL),(77215,488991,7,'writer','written by',NULL),(77215,4375,8,'producer','producer',NULL),(77215,6225,9,'composer',NULL,NULL),(77269,25,10,'composer',NULL,NULL),(77269,60,1,'actor',NULL,'[\"Dr. Josef Mengele\"]'),(77269,59,2,'actor',NULL,'[\"Ezra Lieberman\"]'),(77269,51,3,'actor',NULL,'[\"Eduard Seibert\"]'),(77269,658339,4,'actress',NULL,'[\"Esther Lieberman\"]'),(77269,769874,5,'director',NULL,NULL),(77269,505615,6,'writer','novel',NULL),(77269,332392,7,'writer','screenplay',NULL),(77269,642890,8,'producer','producer',NULL),(77269,724237,9,'producer','producer',NULL),(77275,500274,10,'cinematographer','director of photography',NULL),(77275,393,1,'actor',NULL,'[\"Tony Pino\"]'),(77275,1967,2,'actor',NULL,'[\"Joe McGinnis\"]'),(77275,307255,3,'actor',NULL,'[\"Vinnie Costa\"]'),(77275,643105,4,'actor',NULL,'[\"Specs O\'Keefe\"]'),(77275,1243,5,'director',NULL,NULL),(77275,338396,6,'writer','screenplay',NULL),(77275,66949,7,'writer','based on \"Big Stickup At Brink\'s\"',NULL),(77275,785343,8,'producer','producer',NULL),(77275,5961,9,'composer',NULL,NULL),(77288,5811,10,'cinematographer',NULL,NULL),(77288,865575,1,'actor',NULL,'[\"Renato Baldi\"]'),(77288,785664,2,'actor',NULL,'[\"Albin Mougeotte dit Zaza Napoli\"]'),(77288,561158,3,'actress',NULL,'[\"Simone Deblon\"]'),(77288,491275,4,'actor',NULL,'[\"Laurent Baldi\"]'),(77288,596850,5,'director',NULL,NULL),(77288,688497,6,'writer','according to the work of',NULL),(77288,891554,7,'writer','adaptation to the screen',NULL),(77288,200473,8,'writer','adaptation to the screen',NULL),(77288,1553,9,'composer',NULL,NULL),(77369,5888,10,'cinematographer','director of photography',NULL),(77369,1434,1,'actor',NULL,'[\"Rubber Duck\"]'),(77369,532298,2,'actress',NULL,'[\"Melissa\"]'),(77369,308,3,'actor',NULL,'[\"Dirty Lyle\",\"Lyle Wallace\"]'),(77369,949350,4,'actor',NULL,'[\"Pig Pen\"]'),(77369,1603,5,'director',NULL,NULL),(77369,636165,6,'writer','screen story',NULL),(77369,204353,7,'writer','song',NULL),(77369,295588,8,'writer','song',NULL),(77369,792568,9,'producer','producer',NULL),(77394,25,10,'composer',NULL,NULL),(77394,34,1,'actor',NULL,'[\"Richard Thorn\"]'),(77394,335519,2,'actress',NULL,'[\"Ann Thorn\"]'),(77394,779963,3,'actor',NULL,'[\"Damien Thorn\"]'),(77394,289343,4,'actor',NULL,'[\"Paul Buher\"]'),(77394,852279,5,'director',NULL,NULL),(77394,388198,6,'director',NULL,NULL),(77394,76748,7,'writer','story by',NULL),(77394,783544,8,'writer','based on characters created by',NULL),(77394,542970,9,'writer','screenplay by',NULL),(77402,256361,1,'actor',NULL,'[\"Stephen\"]'),(77402,286010,2,'actor',NULL,'[\"Peter\"]'),(77402,718203,3,'actor',NULL,'[\"Roger\"]'),(77402,743417,4,'actress',NULL,'[\"Francine\"]'),(77402,1681,5,'director',NULL,NULL),(77402,748283,6,'producer','producer',NULL),(77402,783,7,'composer',NULL,NULL),(77402,6102,8,'composer',NULL,NULL),(77402,331193,9,'cinematographer','director of photography',NULL),(77405,916502,10,'editor',NULL,NULL),(77405,152,1,'actor',NULL,'[\"Bill\"]'),(77405,724,2,'actress',NULL,'[\"Abby\"]'),(77405,1731,3,'actor',NULL,'[\"The Farmer\"]'),(77405,544371,4,'actress',NULL,'[\"Linda\"]'),(77405,517,5,'director',NULL,NULL),(77405,773721,6,'producer','producer',NULL),(77405,773837,7,'producer','producer',NULL),(77405,1553,8,'composer',NULL,NULL),(77405,743,9,'cinematographer',NULL,NULL),(77413,65,10,'composer',NULL,NULL),(77413,1811,1,'actor',NULL,'[\"Hercule Poirot\"]'),(77413,1201,2,'actress',NULL,'[\"Jacqueline De Bellefort\"]'),(77413,531546,3,'actor',NULL,'[\"Simon Doyle\"]'),(77413,945,4,'actress',NULL,'[\"Louise Bourget\"]'),(77413,347086,5,'director',NULL,NULL),(77413,787289,6,'writer','screenplay',NULL),(77413,2005,7,'writer','novel',NULL),(77413,102646,8,'producer','producer',NULL),(77413,329545,9,'producer','producer',NULL),(77416,678911,10,'producer','producer',NULL),(77416,134,1,'actor',NULL,'[\"Michael\"]'),(77416,686,2,'actor',NULL,'[\"Nick\"]'),(77416,1030,3,'actor',NULL,'[\"Stan\"]'),(77416,1698,4,'actor',NULL,'[\"Steven\"]'),(77416,1047,5,'director',NULL,NULL),(77416,913346,6,'writer','story',NULL),(77416,307311,7,'writer','story',NULL),(77416,714793,8,'writer','story',NULL),(77416,214303,9,'producer','producer',NULL),(77474,483290,10,'editor',NULL,NULL),(77474,641939,1,'actor',NULL,'[\"The Driver\"]'),(77474,1136,2,'actor',NULL,'[\"The Detective\"]'),(77474,254,3,'actress',NULL,'[\"The Player\"]'),(77474,86867,4,'actress',NULL,'[\"The Connection\"]'),(77474,1353,5,'director',NULL,NULL),(77474,330379,6,'producer','producer',NULL),(77474,806498,7,'composer',NULL,NULL),(77474,5769,8,'cinematographer','director of photography',NULL),(77474,386443,9,'editor',NULL,NULL),(77497,950391,10,'editor',NULL,NULL),(77497,482,1,'actress',NULL,'[\"Emmanuelle\"]'),(77497,650753,2,'actor',NULL,'[\"Jean\"]'),(77497,100440,3,'actor',NULL,'[\"Grégory\"]'),(77497,829155,4,'actress',NULL,'[\"Dorothée\"]'),(77497,504641,5,'director',NULL,NULL),(77497,486171,6,'writer','scenario',NULL),(77497,37491,7,'writer','character',NULL),(77497,6092,8,'composer',NULL,NULL),(77497,45920,9,'cinematographer',NULL,NULL),(77578,380670,10,'editor',NULL,NULL),(77578,443,1,'actress',NULL,'[\"Gloria Mundy\"]'),(77578,331,2,'actor',NULL,'[\"Tony Carlson\"]'),(77578,580565,3,'actor',NULL,'[\"Mr. Hennessey\"]'),(77578,731499,4,'actress',NULL,'[\"Gerda Casswell\"]'),(77578,383359,5,'director',NULL,NULL),(77578,587558,6,'producer','producer',NULL),(77578,589429,7,'producer','producer',NULL),(77578,288913,8,'composer',NULL,NULL),(77578,909607,9,'cinematographer','director of photography',NULL),(77613,563039,1,'actress',NULL,'[\"Susan Weinblatt\"]'),(77613,908919,2,'actor',NULL,'[\"Rabbi Gold\"]'),(77613,1226475,3,'actor',NULL,'[\"Bar Mitzvah Boy\"]'),(77613,804206,4,'actress',NULL,'[\"Anne Munroe\"]'),(77613,918041,5,'director',NULL,NULL),(77613,689778,6,'writer','story',NULL),(77613,806498,7,'composer',NULL,NULL),(77613,2320,8,'cinematographer',NULL,NULL),(77613,678740,9,'editor',NULL,NULL),(77629,592387,10,'producer','producer',NULL),(77629,32,1,'actor',NULL,'[\"Capt. Paul Blanchard\"]'),(77629,1016,2,'actor',NULL,'[\"Capt. Gates\"]'),(77629,5078,3,'actor',NULL,'[\"Capt. Bennett\"]'),(77629,885,4,'actor',NULL,'[\"Mickey\"]'),(77629,338719,5,'director',NULL,NULL),(77629,491735,6,'writer','novel \"Event 1000\"',NULL),(77629,926436,7,'writer','screenplay',NULL),(77629,755274,8,'writer','screenplay',NULL),(77629,742212,9,'writer','adaptation',NULL),(77631,830164,10,'producer','producer',NULL),(77631,237,1,'actor',NULL,'[\"Danny\"]'),(77631,556,2,'actress',NULL,'[\"Sandy\"]'),(77631,330,3,'actress',NULL,'[\"Rizzo\"]'),(77631,1063,4,'actor',NULL,'[\"Kenickie\"]'),(77631,459170,5,'director',NULL,NULL),(77631,414448,6,'writer','based on the original musical by',NULL),(77631,143558,7,'writer','based on the original musical by',NULL),(77631,940125,8,'writer','screenplay by',NULL),(77631,139591,9,'writer','adaptation by',NULL),(77651,587,1,'actor',NULL,'[\"Loomis\"]'),(77651,130,2,'actress',NULL,'[\"Laurie\"]'),(77651,602985,3,'actor',NULL,'[\"Michael Myers (Age 23)\"]'),(77651,477341,4,'actress',NULL,'[\"Annie\"]'),(77651,118,5,'director',NULL,NULL),(77651,384185,6,'writer','screenplay by',NULL),(77651,5678,7,'cinematographer','director of photography',NULL),(77651,97132,8,'editor','film editor',NULL),(77651,908890,9,'editor','film editor',NULL),(77681,486839,1,'actress',NULL,'[\"Brenda Carter\"]'),(77681,396884,2,'actor',NULL,'[\"Bobby Carter\"]'),(77681,824113,3,'actor',NULL,'[\"Fred\"]'),(77681,90041,4,'actress',NULL,'[\"Ruby\"]'),(77681,127,5,'director',NULL,NULL),(77681,516779,6,'producer','producer',NULL),(77681,668838,7,'composer',NULL,NULL),(77681,754363,8,'cinematographer','director of photography',NULL),(77687,4730,1,'actor',NULL,'[\"Bilbo Baggins\"]'),(77687,1379,2,'actor',NULL,'[\"Gandalf The Grey\"]'),(77687,857475,3,'actor',NULL,'[\"Gollum\"]'),(77687,728509,4,'actor',NULL,'[\"Elrond\"]'),(77687,60072,5,'director',NULL,NULL),(77687,710230,6,'director',NULL,NULL),(77687,866058,7,'writer','novel',NULL),(77687,612239,8,'writer','adapted for the screen by',NULL),(77687,493127,9,'composer',NULL,NULL),(77707,64492,10,'production_designer',NULL,NULL),(77707,745636,1,'actor',NULL,'[\"The collector\"]'),(77707,657608,2,'actress',NULL,'[\"Personnage des Tableaux\"]'),(77707,713424,3,'actor',NULL,'[\"Personnage des Tableaux\"]'),(77707,342267,4,'actor',NULL,'[\"Personnage des Tableaux\"]'),(77707,749914,5,'director',NULL,NULL),(77707,460074,6,'writer','participation',NULL),(77707,5948,7,'composer',NULL,NULL),(77707,5916,8,'cinematographer',NULL,NULL),(77707,747380,9,'editor',NULL,NULL),(77711,51931,10,'actor',NULL,'[\"Uncle Otto\"]'),(77711,6,1,'actress',NULL,'[\"Charlotte Andergast\"]'),(77711,880521,2,'actress',NULL,'[\"Eva\"]'),(77711,638784,3,'actress',NULL,'[\"Helena\"]'),(77711,84917,4,'actor',NULL,'[\"Viktor\"]'),(77711,5,5,'director',NULL,NULL),(77711,5815,6,'cinematographer',NULL,NULL),(77711,408748,7,'editor',NULL,NULL),(77711,39607,8,'production_designer',NULL,NULL),(77711,24931,9,'actress',NULL,'[\"Charlotte\'s private secretary\"]'),(77713,444169,1,'actress',NULL,'[\"Jennifer\"]'),(77713,846036,2,'actor',NULL,'[\"Johnny\"]'),(77713,655162,3,'actor',NULL,'[\"Matthew\"]'),(77713,629534,4,'actor',NULL,'[\"Stanley\"]'),(77713,953392,5,'director',NULL,NULL),(77713,953949,6,'producer','producer',NULL),(77713,352267,7,'cinematographer','director of photography',NULL),(77742,473,1,'actress',NULL,'[\"Renata\"]'),(77742,656183,2,'actress',NULL,'[\"Eve\"]'),(77742,341562,3,'actress',NULL,'[\"Flyn\"]'),(77742,2148,4,'actress',NULL,'[\"Joey\"]'),(77742,95,5,'director',NULL,NULL),(77742,423618,6,'producer','producer',NULL),(77742,932336,7,'cinematographer','director of photography',NULL),(77742,742471,8,'editor',NULL,NULL),(77742,100080,9,'production_designer',NULL,NULL),(77766,5573,10,'producer','producer',NULL),(77766,1702,1,'actor',NULL,'[\"Brody\"]'),(77766,308882,2,'actress',NULL,'[\"Ellen Brody\"]'),(77766,358069,3,'actor',NULL,'[\"Mayor Vaughn\"]'),(77766,556217,4,'actor',NULL,'[\"Peterson\"]'),(77766,844358,5,'director',NULL,NULL),(77766,1940,6,'writer','based upon characters created by',NULL),(77766,331956,7,'writer','written by',NULL),(77766,755274,8,'writer','written by',NULL),(77766,113360,9,'producer','producer',NULL),(77838,505227,10,'production_designer',NULL,NULL),(77838,5371,1,'self',NULL,'[\"Self - Guitar\",\"Vocal\"]'),(77838,914149,2,'self',NULL,'[\"Self - Performer\"]'),(77838,949918,3,'self',NULL,'[\"Self - Performer\"]'),(77838,607341,4,'self',NULL,'[\"Self - Performer\"]'),(77838,217,5,'director',NULL,NULL),(77838,552731,6,'writer','treatment',NULL),(77838,152469,7,'cinematographer','director of photography',NULL),(77838,1932646,8,'editor',NULL,NULL),(77838,947201,9,'editor',NULL,NULL),(77864,6026,10,'composer',NULL,NULL),(77864,817881,1,'actor',NULL,'[\"Bulldozer\"]'),(77864,363615,2,'actor',NULL,'[\"Sergeant Kempfer\"]'),(77864,217260,3,'actor',NULL,'[\"Gerry\"]'),(77864,660097,4,'actor',NULL,'[\"Odd boy\"]'),(77864,526971,5,'director',NULL,NULL),(77864,284503,6,'writer','story',NULL),(77864,769121,7,'writer','story',NULL),(77864,104989,8,'writer','contributing writer',NULL),(77864,769120,9,'producer','producer',NULL),(77869,6260,10,'composer',NULL,NULL),(77869,345295,1,'actor',NULL,'[\"Frodo\"]'),(77869,820109,2,'actor',NULL,'[\"Gandalf\"]'),(77869,774578,3,'actor',NULL,'[\"Sam\"]'),(77869,457,4,'actor',NULL,'[\"Aragorn\"]'),(77869,835,5,'director',NULL,NULL),(77869,174723,6,'writer','screenplay',NULL),(77869,63566,7,'writer','screenplay',NULL),(77869,866058,8,'writer','novels \"The Fellowship of the Ring\" and \"The Two Towers\"',NULL),(77869,951763,9,'producer','producer',NULL),(77889,5755,10,'cinematographer','director of photography',NULL),(77889,164,1,'actor',NULL,'[\"Corky\",\"Fats\"]'),(77889,268,2,'actress',NULL,'[\"Peggy Ann Snow\"]'),(77889,580565,3,'actor',NULL,'[\"Ben Greene\"]'),(77889,491590,4,'actor',NULL,'[\"Duke\"]'),(77889,277,5,'director',NULL,NULL),(77889,1279,6,'writer','screenplay',NULL),(77889,505854,7,'producer','producer',NULL),(77889,505935,8,'producer','producer',NULL),(77889,25,9,'composer',NULL,NULL),(77914,25355,1,'actor',NULL,'[\"Martin\"]'),(77914,531042,2,'actor',NULL,'[\"Cuda\"]'),(77914,286611,3,'actress',NULL,'[\"Christina\"]'),(77914,618797,4,'actress',NULL,'[\"Mrs. Santini\"]'),(77914,1681,5,'director',NULL,NULL),(77914,748283,6,'producer','producer',NULL),(77914,748261,7,'composer',NULL,NULL),(77914,331193,8,'cinematographer','director of photography',NULL),(77928,701298,10,'producer','producer',NULL),(77928,1113,1,'actor',NULL,'[\"Billy Hayes\"]'),(77928,591968,2,'actress',NULL,'[\"Susan\"]'),(77928,5019,3,'actor',NULL,'[\"Tex\"]'),(77928,93678,4,'actor',NULL,'[\"Rifki\"]'),(77928,570,5,'director',NULL,NULL),(77928,231,6,'writer','screenplay',NULL),(77928,370907,7,'writer','book',NULL),(77928,388772,8,'writer','book',NULL),(77928,550728,9,'producer','producer',NULL),(77975,799841,10,'producer','producer',NULL),(77975,4,1,'actor',NULL,'[\"John Blutarsky\"]'),(77975,261,2,'actress',NULL,'[\"Katy\"]'),(77975,1371,3,'actor',NULL,'[\"Larry Kroger\"]'),(77975,299122,4,'actor',NULL,'[\"Kent Dorfman\"]'),(77975,484,5,'director',NULL,NULL),(77975,601,6,'writer','written by',NULL),(77975,448469,7,'writer','written by',NULL),(77975,588082,8,'writer','written by',NULL),(77975,718645,9,'producer','producer',NULL),(78087,26853,10,'cinematographer','director of photography',NULL),(78087,226947,1,'actor',NULL,'[\"Paul Grogan\"]'),(78087,579991,2,'actress',NULL,'[\"Maggie McKeown\"]'),(78087,2994,3,'actor',NULL,'[\"Dr. Robert Hoak\"]'),(78087,943978,4,'actor',NULL,'[\"Jack\"]'),(78087,1102,5,'director',NULL,NULL),(78087,733015,6,'writer','story',NULL),(78087,626,7,'writer','story',NULL),(78087,205727,8,'producer','producer',NULL),(78087,6043,9,'composer',NULL,NULL),(78089,5858,10,'cinematographer',NULL,NULL),(78089,32417,1,'actress',NULL,'[\"Cindy\"]'),(78089,287837,2,'actor',NULL,'[\"Harvey Baylor\"]'),(78089,204470,3,'actress',NULL,'[\"Derna Lee\"]'),(78089,857216,4,'actor',NULL,'[\"Mike\"]'),(78089,790283,5,'director',NULL,NULL),(78089,524261,6,'writer','screenplay by',NULL),(78089,42138,7,'writer','story by',NULL),(78089,483578,8,'composer',NULL,NULL),(78089,642899,9,'composer',NULL,NULL),(78111,222,1,'actress',NULL,'[\"Violet\"]'),(78111,1018,2,'actor',NULL,'[\"Bellocq\"]'),(78111,215,3,'actress',NULL,'[\"Hattie\"]'),(78111,269662,4,'actress',NULL,'[\"Nell\"]'),(78111,1501,5,'director',NULL,NULL),(78111,686895,6,'writer','story',NULL),(78111,5815,7,'cinematographer',NULL,NULL),(78111,271882,8,'editor',NULL,NULL),(78111,931851,9,'production_designer',NULL,NULL),(78259,898535,10,'editor',NULL,NULL),(78259,869,1,'actor',NULL,'[\"Charles Crossley\"]'),(78259,948772,2,'actress',NULL,'[\"Rachel Fielding\"]'),(78259,457,3,'actor',NULL,'[\"Anthony Fielding\"]'),(78259,827137,4,'actor',NULL,'[\"Chief Medical Officer\"]'),(78259,804592,5,'director',NULL,NULL),(78259,336345,6,'writer','story',NULL),(78259,42472,7,'writer','screenplay',NULL),(78259,859016,8,'producer','producer',NULL),(78259,597125,9,'cinematographer','director of photography',NULL),(78295,504335,10,'actor',NULL,'[\"Burly Man\"]'),(78295,1381,1,'actress',NULL,'[\"Leigh Michaels\"]'),(78295,83709,2,'actor',NULL,'[\"Paul Winkless\"]'),(78295,105,3,'actress',NULL,'[\"Sophie\"]'),(78295,194234,4,'actor',NULL,'[\"Gary Hunt\"]'),(78295,118,5,'director',NULL,NULL),(78295,6313,6,'composer',NULL,NULL),(78295,369556,7,'cinematographer','director of photography',NULL),(78295,852579,8,'editor',NULL,NULL),(78295,385674,9,'actor',NULL,'[\"Steve\"]'),(78346,628174,10,'writer','screenplay',NULL),(78346,1659,1,'actor',NULL,'[\"Superman\",\"Clark Kent\"]'),(78346,452288,2,'actress',NULL,'[\"Lois Lane\"]'),(78346,432,3,'actor',NULL,'[\"Lex Luthor\"]'),(78346,8,4,'actor',NULL,'[\"Jor-El\"]'),(78346,1149,5,'director',NULL,NULL),(78346,796950,6,'writer','character created by: Superman',NULL),(78346,795975,7,'writer','character created by: Superman',NULL),(78346,701374,8,'writer','story',NULL),(78346,628058,9,'writer','screenplay',NULL),(78444,350011,10,'production_designer',NULL,NULL),(78444,1049,1,'actress',NULL,'[\"Erica\"]'),(78444,869,2,'actor',NULL,'[\"Saul Kaplan\"]'),(78444,614526,3,'actor',NULL,'[\"Martin Benton\"]'),(78444,331054,4,'actor',NULL,'[\"Charlie\"]'),(78444,5196,5,'director',NULL,NULL),(78444,712743,6,'producer','producer',NULL),(78444,6015,7,'composer',NULL,NULL),(78444,5817,8,'cinematographer','director of photography',NULL),(78444,660661,9,'editor',NULL,NULL),(78480,457,1,'actor',NULL,'[\"Hazel\"]'),(78480,1972,2,'actor',NULL,'[\"Fiver\"]'),(78480,724732,3,'actor',NULL,'[\"Chief Rabbit\"]'),(78480,185163,4,'actor',NULL,'[\"Bigwig\"]'),(78480,742034,5,'director',NULL,NULL),(78480,399524,6,'director',NULL,NULL),(78480,11293,7,'writer','novel',NULL),(78480,605859,8,'composer',NULL,NULL),(78480,712625,9,'editor',NULL,NULL),(78503,132257,1,'actor',NULL,'[\"Bruce\"]'),(78503,762445,2,'actress',NULL,'[\"Ellen\"]'),(78503,1054292,3,'actress',NULL,'[\"Shelly\"]'),(78503,818547,4,'actor',NULL,'[\"Scotty\"]'),(78503,600,5,'director',NULL,NULL),(78503,849964,6,'producer','executive producer',NULL),(78504,806583,10,'composer',NULL,NULL),(78504,5384,1,'actress',NULL,'[\"Dorothy\"]'),(78504,1391,2,'actor',NULL,'[\"Scarecrow\"]'),(78504,751369,3,'actor',NULL,'[\"Tinman\"]'),(78504,743874,4,'actor',NULL,'[\"Lion\",\"Fleetwood Coupe de Ville\"]'),(78504,1486,5,'director',NULL,NULL),(78504,875,6,'writer','novel \"The Wonderful Wizard of Oz\"',NULL),(78504,114912,7,'writer','book of the musical \"The Wiz\"',NULL),(78504,1708,8,'writer','screenplay',NULL),(78504,3418,9,'producer','producer',NULL),(78509,930454,10,'actor',NULL,'[\"John Tubman\"]'),(78509,1807,1,'actress',NULL,'[\"Harriet Ross Tubman\"]'),(78509,76251,2,'actor',NULL,'[\"Daddy Ben Ross\"]'),(78509,202849,3,'actor',NULL,'[\"Doc Thompson\"]'),(78509,253068,4,'actress',NULL,'[\"Bernette Wilson\"]'),(78509,315288,5,'actor',NULL,'[\"Stewart\"]'),(78509,580284,6,'actress',NULL,'[\"Aunt Juba\"]'),(78509,722440,7,'actor',NULL,'[\"Tavwell Robinson\"]'),(78509,797725,8,'actor',NULL,'[\"McCracken\"]'),(78509,919714,9,'actor',NULL,'[\"Shadrack Davis\"]'),(78748,1353,10,'producer','producer',NULL),(78748,244,1,'actress',NULL,'[\"Ripley\"]'),(78748,643,2,'actor',NULL,'[\"Dallas\"]'),(78748,457,3,'actor',NULL,'[\"Kane\"]'),(78748,1021,4,'actress',NULL,'[\"Lambert\"]'),(78748,631,5,'director',NULL,NULL),(78748,639321,6,'writer','screenplay by',NULL),(78748,795953,7,'writer','story by',NULL),(78748,140826,8,'producer','producer',NULL),(78748,318429,9,'producer','producer',NULL),(78754,1702,1,'actor',NULL,'[\"Joe Gideon\"]'),(78754,1448,2,'actress',NULL,'[\"Angelique\"]'),(78754,718237,3,'actress',NULL,'[\"Kate Jagger\"]'),(78754,658336,4,'actress',NULL,'[\"Audrey Paris\"]'),(78754,2080,5,'director',NULL,NULL),(78754,15899,6,'writer','written by',NULL),(78754,5850,7,'cinematographer',NULL,NULL),(78754,374189,8,'editor',NULL,NULL),(78754,742303,9,'production_designer',NULL,NULL),(78767,312031,10,'producer','producer',NULL),(78767,981,1,'actor',NULL,'[\"George Lutz\"]'),(78767,452288,2,'actress',NULL,'[\"Kathy Lutz\"]'),(78767,1768,3,'actor',NULL,'[\"Father Delaney\"]'),(78767,835144,4,'actor',NULL,'[\"Father Bolen\"]'),(78767,742341,5,'director',NULL,NULL),(78767,827839,6,'writer','screenplay',NULL),(78767,30663,7,'writer','based on the book by',NULL),(78767,527567,8,'writer','story',NULL),(78767,527582,9,'writer','story',NULL),(78778,212453,10,'production_designer',NULL,NULL),(78778,27488,1,'actress',NULL,'[\"Terry Grant\"]'),(78778,15018694,2,'actress',NULL,'[\"Kako Umaro\"]'),(78778,170578,3,'actress',NULL,'[\"April Thomas\"]'),(78778,339470,4,'actress',NULL,'[\"Trish\"]'),(78778,163990,5,'director',NULL,NULL),(78778,268770,6,'writer','written by',NULL),(78778,497314,7,'composer',NULL,NULL),(78778,5678,8,'cinematographer','director of photography',NULL),(78778,914607,9,'editor',NULL,NULL),(78788,178874,10,'composer',NULL,NULL),(78788,640,1,'actor',NULL,'[\"Capt. Benjamin L. Willard\"]'),(78788,8,2,'actor',NULL,'[\"Col. Walter E. Kurtz\"]'),(78788,380,3,'actor',NULL,'[\"Lt. Col. Bill Kilgore\"]'),(78788,2078,4,'actor',NULL,'[\"EN3 Jay \'Chef\' Hicks\"]'),(78788,338,5,'director',NULL,NULL),(78788,587518,6,'writer','written by',NULL),(78788,380282,7,'writer','narration',NULL),(78788,175676,8,'writer','novella \"Heart of Darkness\"',NULL),(78788,41447,9,'producer','producer',NULL),(78841,221042,10,'cinematographer','director of photography',NULL),(78841,634,1,'actor',NULL,'[\"Chance\"]'),(78841,511,2,'actress',NULL,'[\"Eve Rand\"]'),(78841,2048,3,'actor',NULL,'[\"Benjamin Rand\"]'),(78841,912001,4,'actor',NULL,'[\"President \'Bobby\'\"]'),(78841,797,5,'director',NULL,NULL),(78841,467085,6,'writer','novel',NULL),(78841,2717,7,'writer',NULL,NULL),(78841,105931,8,'producer','producer',NULL),(78841,6184,9,'composer',NULL,NULL),(78843,6086,10,'composer',NULL,NULL),(78843,368472,1,'actress',NULL,'[\"Esther Greenwood\"]'),(78843,364915,2,'actress',NULL,'[\"Mrs. Greenwood\"]'),(78843,413271,3,'actress',NULL,'[\"Dr. Nolan\"]'),(78843,57363,4,'actress',NULL,'[\"Jay Cee\"]'),(78843,670282,5,'director',NULL,NULL),(78843,686799,6,'writer','based on the novel by',NULL),(78843,446124,7,'writer','screenplay',NULL),(78843,104854,8,'producer','producer',NULL),(78843,865100,9,'producer','producer',NULL),(78846,1563,1,'actress',NULL,'[\"Lavonia\",\"Lola Langusta\"]'),(78846,547218,2,'actress',NULL,'[\"Eufaula Roop\"]'),(78846,449749,3,'actor',NULL,'[\"Lamar Shedd\"]'),(78846,533024,4,'actress',NULL,'[\"Junkyard Sal\"]'),(78846,540,5,'director',NULL,NULL),(78846,1170,6,'writer',NULL,NULL),(78846,850929,7,'composer',NULL,NULL),(78869,589253,10,'producer','producer',NULL),(78869,1703,1,'actor',NULL,'[\"Dr. Hans Reinhardt\"]'),(78869,578,2,'actor',NULL,'[\"Dr. Alex Durant\"]'),(78869,1233,3,'actor',NULL,'[\"Captain Dan Holland\"]'),(78869,98733,4,'actor',NULL,'[\"Lieutenant Charles Pizer\"]'),(78869,625379,5,'director',NULL,NULL),(78869,741775,6,'writer','story by',NULL),(78869,53267,7,'writer','story by',NULL),(78869,484479,8,'writer','story by',NULL),(78869,206409,9,'writer','screenplay by',NULL),(78875,583115,10,'composer',NULL,NULL),(78875,908,1,'actor',NULL,'[\"Oskar Matzerath\"]'),(78875,728,2,'actor',NULL,'[\"Alfred Matzerath\"]'),(78875,935190,3,'actress',NULL,'[\"Agnes Matzerath\"]'),(78875,856918,4,'actress',NULL,'[\"Maria Matzerath\"]'),(78875,772522,5,'director',NULL,NULL),(78875,335848,6,'writer','novel',NULL),(78875,140643,7,'writer','writer',NULL),(78875,782704,8,'writer','writer',NULL),(78875,3574,9,'composer',NULL,NULL),(78913,582891,10,'production_designer',NULL,NULL),(78913,367,1,'actor',NULL,'[\"Alphonse Tram\"]'),(78913,88396,2,'actor',NULL,'[\"Inspecteur Morvandieu\",\"Insp. Morvandieu\"]'),(78913,138405,3,'actor',NULL,'[\"L\'assassin\",\"The murderer\"]'),(78913,312641,4,'actress',NULL,'[\"L\'hôtesse\",\"The hostess\"]'),(78913,88397,5,'director',NULL,NULL),(78913,764963,6,'producer','producer',NULL),(78913,6271,7,'composer',NULL,NULL),(78913,672441,8,'cinematographer',NULL,NULL),(78913,581000,9,'editor',NULL,NULL),(78935,866495,10,'editor',NULL,NULL),(78935,449404,1,'actor',NULL,'[\"Professor Harold Monroe\"]'),(78935,161889,2,'actress',NULL,'[\"Faye Daniels\"]'),(78935,685194,3,'actor',NULL,'[\"Jack Anders\"]'),(78935,53230,4,'actor',NULL,'[\"Mark Tomaso\"]'),(78935,219959,5,'director',NULL,NULL),(78935,166405,6,'writer','story and screenplay',NULL),(78935,824216,7,'writer','additional dialogue: Italian version',NULL),(78935,6221,8,'composer',NULL,NULL),(78935,5937,9,'cinematographer','director of photography',NULL),(78966,420846,10,'production_designer',NULL,NULL),(78966,404,1,'actress',NULL,'[\"Kimberly Wells\"]'),(78966,493,2,'actor',NULL,'[\"Jack Godell\"]'),(78966,140,3,'actor',NULL,'[\"Richard Adams\"]'),(78966,103722,4,'actor',NULL,'[\"Herman De Young\"]'),(78966,108745,5,'director',NULL,NULL),(78966,336831,6,'writer','written by',NULL),(78966,177304,7,'writer','written by',NULL),(78966,185583,8,'cinematographer','director of photography',NULL),(78966,4330,9,'editor',NULL,NULL),(79095,133591,10,'producer','producer',NULL),(79095,778016,1,'actress',NULL,'[\"Maria Braun\"]'),(79095,530594,2,'actor',NULL,'[\"Hermann Braun\"]'),(79095,221527,3,'actor',NULL,'[\"Karl Oswald\"]'),(79095,880187,4,'actress',NULL,'[\"Mother\"]'),(79095,1202,5,'director',NULL,NULL),(79095,297064,6,'writer','screenplay',NULL),(79095,617504,7,'writer','screenplay',NULL),(79095,704624,8,'writer',NULL,NULL),(79095,117670,9,'producer','producer',NULL),(79116,916883,10,'editor',NULL,NULL),(79116,142,1,'actor',NULL,'[\"Frank Morris\"]'),(79116,1526,2,'actor',NULL,'[\"Warden Arthur Dollison\"]'),(79116,89348,3,'actor',NULL,'[\"Chester \'Doc\' Dalton\"]'),(79116,857806,4,'actor',NULL,'[\"Clarence Anglin\"]'),(79116,796923,5,'director',NULL,NULL),(79116,115431,6,'writer','book',NULL),(79116,876227,7,'writer','screenplay',NULL),(79116,6076,8,'composer',NULL,NULL),(79116,839732,9,'cinematographer','director of photography',NULL),(79180,369556,10,'cinematographer','director of photography',NULL),(79180,698,1,'actor',NULL,'[\"Avram\"]'),(79180,148,2,'actor',NULL,'[\"Tommy\"]'),(79180,81560,3,'actor',NULL,'[\"Mr. Jones\"]'),(79180,84267,4,'actor',NULL,'[\"Chief Gray Cloud\"]'),(79180,736,5,'director',NULL,NULL),(79180,253498,6,'writer','written by',NULL),(79180,789718,7,'writer','written by',NULL),(79180,626883,8,'producer','producer',NULL),(79180,6030,9,'composer',NULL,NULL),(79256,71417,10,'editor',NULL,NULL),(79256,993,1,'actress',NULL,'[\"Gloria Burbank\"]'),(79256,413559,2,'actress',NULL,'[\"Isabella Garnell\"]'),(79256,1258,3,'actor',NULL,'[\"Harry Wolff\"]'),(79256,2,4,'actress',NULL,'[\"Esther Brill\"]'),(79256,265,5,'director',NULL,NULL),(79256,3004592,6,'writer','written by',NULL),(79256,233209,7,'writer','written by',NULL),(79256,126035,8,'composer',NULL,NULL),(79256,465580,9,'cinematographer','director of photography',NULL),(79261,675483,10,'producer','producer',NULL),(79261,1698,1,'actor',NULL,'[\"Claude\"]'),(79261,1852,2,'actor',NULL,'[\"Berger\"]'),(79261,350,3,'actress',NULL,'[\"Sheila\"]'),(79261,325390,4,'actress',NULL,'[\"Jeannie\"]'),(79261,1232,5,'director',NULL,NULL),(79261,706551,6,'writer','musical book',NULL),(79261,705735,7,'writer','musical book',NULL),(79261,919876,8,'writer','writer',NULL),(79261,125061,9,'producer','producer',NULL),(79336,842732,10,'editor',NULL,NULL),(79336,393,1,'actor',NULL,'[\"Vince Ricardo\"]'),(79336,273,2,'actor',NULL,'[\"Dr. Sheldon Kornpett\"]'),(79336,508844,3,'actor',NULL,'[\"General Garcia\"]'),(79336,244684,4,'actress',NULL,'[\"Carol Kornpett\"]'),(79336,2137,5,'director',NULL,NULL),(79336,921,6,'writer','written by',NULL),(79336,755266,7,'producer','producer',NULL),(79336,606657,8,'composer',NULL,NULL),(79336,909607,9,'cinematographer','director of photography',NULL),(79367,254477,10,'composer',NULL,NULL),(79367,188,1,'actor',NULL,'[\"Navin\",\"Cat Juggler\"]'),(79367,1613,2,'actress',NULL,'[\"Marie\"]'),(79367,10818,3,'actress',NULL,'[\"Patty Bernstein\"]'),(79367,455028,4,'actress',NULL,'[\"Mother\"]'),(79367,5348,5,'director',NULL,NULL),(79367,331956,6,'writer','screenplay by',NULL),(79367,253498,7,'writer','screenplay by',NULL),(79367,568530,8,'producer','producer',NULL),(79367,681802,9,'producer','producer',NULL),(79417,843128,10,'production_designer',NULL,NULL),(79417,163,1,'actor',NULL,'[\"Ted Kramer\"]'),(79417,658,2,'actress',NULL,'[\"Joanna Kramer\"]'),(79417,737,3,'actress',NULL,'[\"Margaret Phelps\"]'),(79417,377888,4,'actor',NULL,'[\"Billy Kramer\"]'),(79417,914,5,'director',NULL,NULL),(79417,180011,6,'writer','from the novel by',NULL),(79417,415494,7,'producer','producer',NULL),(79417,743,8,'cinematographer','director of photography',NULL),(79417,338513,9,'editor',NULL,NULL),(79470,236405,10,'editor',NULL,NULL),(79470,1037,1,'actor',NULL,'[\"Wise Man #2\",\"Brian Cohen\",\"Biggus Dickus\"]'),(79470,92,2,'actor',NULL,'[\"Wise Man #1\",\"Reg\",\"Jewish Official\"]'),(79470,1589,3,'actor',NULL,'[\"Wise Man #3\",\"Mr. Big Nose\",\"Francis\"]'),(79470,416,4,'actor',NULL,'[\"Man Even Further Forward\",\"Revolutionary\",\"Jailer\"]'),(79470,1402,5,'director',NULL,NULL),(79470,1385,6,'writer','written by',NULL),(79470,326364,7,'producer','producer',NULL),(79470,121431,8,'composer',NULL,NULL),(79470,84695,9,'cinematographer','director of photography',NULL),(79501,370954,10,'editor',NULL,NULL),(79501,154,1,'actor',NULL,'[\"Max\"]'),(79501,760394,2,'actress',NULL,'[\"Jessie\"]'),(79501,117412,3,'actor',NULL,'[\"Toecutter\"]'),(79501,1950,4,'actor',NULL,'[\"Jim Goose\"]'),(79501,4306,5,'director',NULL,NULL),(79501,565537,6,'writer','screenplay',NULL),(79501,447945,7,'writer','original story',NULL),(79501,6189,8,'composer',NULL,NULL),(79501,250867,9,'cinematographer','director of photography',NULL),(79522,95,1,'actor',NULL,'[\"Isaac\"]'),(79522,473,2,'actress',NULL,'[\"Mary\"]'),(79522,446,3,'actress',NULL,'[\"Tracy\"]'),(79522,614526,4,'actor',NULL,'[\"Yale\"]'),(79522,108613,5,'writer','written by',NULL),(79522,423618,6,'producer','producer',NULL),(79522,932336,7,'cinematographer','director of photography',NULL),(79522,607673,8,'editor','film editor',NULL),(79522,100080,9,'production_designer',NULL,NULL),(79540,930,10,'composer',NULL,NULL),(79540,195,1,'actor',NULL,'[\"Tripper\"]'),(79540,14873,2,'actor',NULL,'[\"Morty\"]'),(79540,528367,3,'actress',NULL,'[\"Roxanne\"]'),(79540,51994,4,'actor',NULL,'[\"Crockett\"]'),(79540,718645,5,'director',NULL,NULL),(79540,89676,6,'writer','written by',NULL),(79540,325175,7,'writer','written by',NULL),(79540,20626,8,'writer','written by',NULL),(79540,601,9,'writer','written by',NULL),(79574,110482,10,'producer','producer',NULL),(79574,549,1,'actor',NULL,'[\"James Bond\"]'),(79574,1042,2,'actress',NULL,'[\"Holly Goodhead\"]'),(79574,3909,3,'actor',NULL,'[\"Hugo Drax\"]'),(79574,1423,4,'actor',NULL,'[\"Jaws\"]'),(79574,318150,5,'director',NULL,NULL),(79574,228970,6,'writer','screenplay by',NULL),(79574,1220,7,'writer','novel',NULL),(79574,26755,8,'writer','screenplay',NULL),(79574,59483,9,'writer','character creator',NULL),(79579,579919,10,'production_designer',NULL,NULL),(79579,18079,1,'actress',NULL,'[\"Katerina \'Katya\' Tikhomirova\"]'),(79579,60692,2,'actor',NULL,'[\"Georgiy \'Gosha\'\"]'),(79579,613655,3,'actress',NULL,'[\"Lyudmila Sviridova\"]'),(79579,268945,4,'actor',NULL,'[\"Sergey \'Seryozha\' Gurin\"]'),(79579,579828,5,'director',NULL,NULL),(79579,155990,6,'writer',NULL,NULL),(79579,631715,7,'composer',NULL,NULL),(79579,805112,8,'cinematographer',NULL,NULL),(79579,586471,9,'editor',NULL,NULL),(79588,542552,10,'cinematographer','director of photography',NULL),(79588,1345,1,'actor',NULL,'[\"Kermit the Frog\",\"Rowlf\",\"Dr. Teeth\"]'),(79588,568,2,'actor',NULL,'[\"Miss Piggy\",\"Fozzie Bear\",\"Animal\"]'),(79588,625456,3,'actor',NULL,'[\"Floyd Pepper\",\"Crazy Harry\",\"Robin the Frog\"]'),(79588,402611,4,'actor',NULL,'[\"Scooter\",\"Statler\",\"Janice\"]'),(79588,292419,5,'director',NULL,NULL),(79588,432075,6,'writer','written by',NULL),(79588,122698,7,'writer','written by',NULL),(79588,38502,8,'composer',NULL,NULL),(79588,931437,9,'composer',NULL,NULL),(79593,841484,10,'cinematographer',NULL,NULL),(79593,27323,1,'actor',NULL,'[\"George Brubaker\"]'),(79593,1684,2,'actress',NULL,'[\"Allison Sinclair\"]'),(79593,1358,3,'actor',NULL,'[\"Arthur Sinclair\"]'),(79593,960,4,'actor',NULL,'[\"Gil Weston\"]'),(79593,206560,5,'director',NULL,NULL),(79593,506087,6,'writer','written by',NULL),(79593,512894,7,'writer','written by',NULL),(79593,660367,8,'producer','producer',NULL),(79593,6032,9,'composer',NULL,NULL),(79596,5791,10,'cinematographer','director of photography',NULL),(79596,1114,1,'actress',NULL,'[\"Sybylla Melvyn\"]'),(79596,554,2,'actor',NULL,'[\"Harry Beecham\"]'),(79596,400998,3,'actress',NULL,'[\"Aunt Helen\"]'),(79596,344188,4,'actor',NULL,'[\"Frank Hawdon\"]'),(79596,788,5,'director',NULL,NULL),(79596,936674,6,'writer','screenplay',NULL),(79596,291504,7,'writer','novel',NULL),(79596,277838,8,'producer','producer',NULL),(79596,906879,9,'composer',NULL,NULL),(79638,6288,10,'composer',NULL,NULL),(79638,398,1,'actress',NULL,'[\"Norma Rae\"]'),(79638,977,2,'actor',NULL,'[\"Sonny\"]'),(79638,500038,3,'actor',NULL,'[\"Reuben\"]'),(79638,385757,4,'actor',NULL,'[\"Vernon\"]'),(79638,728688,5,'director',NULL,NULL),(79638,712419,6,'writer','screenplay',NULL),(79638,290809,7,'writer','screenplay',NULL),(79638,39834,8,'producer','producer',NULL),(79638,741228,9,'producer','producer',NULL),(79639,5880,10,'cinematographer','director of photography',NULL),(79639,1346,1,'actor',NULL,'[\"Michael Hill\"]'),(79639,364455,2,'actress',NULL,'[\"Vickie\"]'),(79639,164540,3,'actress',NULL,'[\"Anne\"]'),(79639,884259,4,'actress',NULL,'[\"Jane\"]'),(79639,82676,5,'director',NULL,NULL),(79639,846884,6,'writer','screenplay',NULL),(79639,384020,7,'writer','book',NULL),(79639,589253,8,'producer','producer',NULL),(79639,5979,9,'composer',NULL,NULL),(79641,537754,10,'editor',NULL,NULL),(79641,1428,1,'actor',NULL,'[\"Count Dracula\"]'),(79641,254,2,'actress',NULL,'[\"Lucy Harker\"]'),(79641,4486,3,'actor',NULL,'[\"Jonathan Harker\"]'),(79641,867718,4,'actor',NULL,'[\"Renfield\"]'),(79641,1348,5,'director',NULL,NULL),(79641,831290,6,'writer','novel \"Dracula\"',NULL),(79641,294813,7,'composer',NULL,NULL),(79641,691311,8,'composer',NULL,NULL),(79641,5860,9,'cinematographer',NULL,NULL),(79679,625884,10,'production_designer',NULL,NULL),(79679,59847,1,'actor',NULL,'[\"Andrey Buzykin\"]'),(79679,348039,2,'actress',NULL,'[\"Nina Buzykina\"]'),(79679,628669,3,'actress',NULL,'[\"Alla Ermakova\"]'),(79679,503095,4,'actor',NULL,'[\"Vasiliy Kharitonov\"]'),(79679,199381,5,'director',NULL,NULL),(79679,901668,6,'writer',NULL,NULL),(79679,678157,7,'composer',NULL,NULL),(79679,904132,8,'cinematographer',NULL,NULL),(79679,947282,9,'editor',NULL,NULL),(79714,49853,1,'actor',NULL,'[\"Mike\"]'),(79714,861332,2,'actor',NULL,'[\"Jody\"]'),(79714,52410,3,'actor',NULL,'[\"Reggie\"]'),(79714,504477,4,'actress',NULL,'[\"Lady in Lavender\"]'),(79714,181741,5,'director',NULL,NULL),(79714,181740,6,'producer','producer',NULL),(79714,6208,7,'composer',NULL,NULL),(79714,780472,8,'composer',NULL,NULL),(79714,181742,9,'production_designer',NULL,NULL),(79766,192612,10,'producer','producer',NULL),(79766,200057,1,'actor',NULL,'[\"Jimmy\"]'),(79766,38650,2,'actress',NULL,'[\"Steph\"]'),(79766,205289,3,'actor',NULL,'[\"Chalky\"]'),(79766,935047,4,'actor',NULL,'[\"Dave\"]'),(79766,734466,5,'director',NULL,NULL),(79766,402039,6,'writer','screenplay',NULL),(79766,826369,7,'writer','screenplay',NULL),(79766,870175,8,'writer',NULL,NULL),(79766,47919,9,'producer','producer',NULL),(79813,278228,10,'producer','producer',NULL),(79813,1753,1,'actress',NULL,'[\"Riff Randell\"]'),(79813,887701,2,'actor',NULL,'[\"Tom Roberts\"]'),(79813,397212,3,'actor',NULL,'[\"Eaglebauer\"]'),(79813,949477,4,'actress',NULL,'[\"Kate Rambeau\"]'),(79813,35106,5,'director',NULL,NULL),(79813,1102,6,'director',NULL,NULL),(79813,926073,7,'writer','screenplay by',NULL),(79813,245299,8,'writer','screenplay by',NULL),(79813,564323,9,'writer','screenplay by',NULL),(79817,230,1,'actor',NULL,'[\"Rocky Balboa\"]'),(79817,1735,2,'actress',NULL,'[\"Adrian\"]'),(79817,949350,3,'actor',NULL,'[\"Paulie\"]'),(79817,1835,4,'actor',NULL,'[\"Apollo Creed\"]'),(79817,153590,5,'producer','producer',NULL),(79817,5563,6,'producer','producer',NULL),(79817,6015,7,'composer',NULL,NULL),(79817,124832,8,'cinematographer','director of photography',NULL),(79817,21065,9,'editor',NULL,NULL),(79820,812358,10,'cinematographer',NULL,NULL),(79820,552483,1,'actor',NULL,'[\"L\'oiseau\"]'),(79820,563695,2,'actor',NULL,'[\"Le roi\"]'),(79820,124482,3,'actor',NULL,'[\"Le chef de la police\"]'),(79820,1208220,4,'actress',NULL,'[\"La bergère\"]'),(79820,342156,5,'director',NULL,NULL),(79820,26153,6,'writer','fairy tale: \"Hyrdinden og Skorsteensfeieren\"',NULL),(79820,699535,7,'writer','screenplay',NULL),(79820,233587,8,'producer','producer',NULL),(79820,4384,9,'composer',NULL,NULL),(79826,751567,10,'producer','producer',NULL),(79826,541,1,'actress',NULL,'[\"Rose\"]'),(79826,869,2,'actor',NULL,'[\"Rudge\"]'),(79826,2078,3,'actor',NULL,'[\"Dyer\"]'),(79826,1765,4,'actor',NULL,'[\"Billy Ray\"]'),(79826,41932,5,'director',NULL,NULL),(79826,449222,6,'writer','screenplay by',NULL),(79826,325743,7,'writer','screenplay by',NULL),(79826,1047,8,'writer','story',NULL),(79826,941703,9,'writer','story',NULL),(79833,437573,10,'producer','producer',NULL),(79833,945280,1,'actor',NULL,'[\"Arsène Lupin III\"]'),(79833,557968,2,'actress',NULL,'[\"Fujiko Mine\"]'),(79833,462017,3,'actor',NULL,'[\"Daisuke Jigen\"]'),(79833,409296,4,'actor',NULL,'[\"Goemon Ishikawa XIII\"]'),(79833,594503,5,'director',NULL,NULL),(79833,700578,6,'writer','graphic novel series',NULL),(79833,1500897,7,'writer','screenplay',NULL),(79833,556856,8,'writer','ADR script',NULL),(79833,495728,9,'writer','characters',NULL),(79871,103457,10,'editor',NULL,NULL),(79871,935653,1,'actor',NULL,'[\"Carlin\"]'),(79871,285795,2,'actor',NULL,'[\"Archer\"]'),(79871,278747,3,'actor',NULL,'[\"Davis\"]'),(79871,89884,4,'actor',NULL,'[\"Banks\"]'),(79871,164639,5,'director',NULL,NULL),(79871,591736,6,'writer','written by',NULL),(79871,69001,7,'producer','producer',NULL),(79871,663796,8,'producer','producer',NULL),(79871,5793,9,'cinematographer','director of photography',NULL),(79944,461862,10,'cinematographer',NULL,NULL),(79944,293981,1,'actress',NULL,'[\"Zhena Stalkera\"]'),(79944,435289,2,'actor',NULL,'[\"Stalker\"]'),(79944,813463,3,'actor',NULL,'[\"Pisatel\"]'),(79944,342458,4,'actor',NULL,'[\"Professor\"]'),(79944,1789,5,'director',NULL,NULL),(79944,835297,6,'writer','novel \"Piknik na obochine\"',NULL),(79944,835298,7,'writer','novel \"Piknik na obochine\"',NULL),(79944,850493,8,'writer','poems',NULL),(79944,5949,9,'composer',NULL,NULL),(79945,25,10,'composer',NULL,NULL),(79945,638,1,'actor',NULL,'[\"Captain Kirk\"]'),(79945,559,2,'actor',NULL,'[\"Spock\"]'),(79945,1420,3,'actor',NULL,'[\"Dr. McCoy\"]'),(79945,1150,4,'actor',NULL,'[\"Scotty\"]'),(79945,936404,5,'director',NULL,NULL),(79945,734472,6,'writer','based on Star Trek created by',NULL),(79945,515245,7,'writer','screenplay by',NULL),(79945,287669,8,'writer','story by',NULL),(79945,270645,9,'producer','producer',NULL),(79946,66607,10,'cinematographer','director of photography',NULL),(79946,331374,1,'actor',NULL,'[\"Akton\"]'),(79946,613098,2,'actress',NULL,'[\"Stella Star\"]'),(79946,1626,3,'actor',NULL,'[\"The Emperor\"]'),(79946,1327,4,'actor',NULL,'[\"Prince Simon\"]'),(79946,172826,5,'director',NULL,NULL),(79946,905162,6,'writer','screenplay',NULL),(79946,1923923,7,'writer','additional dialogue',NULL),(79946,905163,8,'producer','producer',NULL),(79946,290,9,'composer',NULL,NULL),(80025,517873,10,'cinematographer','director of photography',NULL),(80025,532,1,'actor',NULL,'[\"H.G. Wells\"]'),(80025,5460,2,'actress',NULL,'[\"Amy Robbins\"]'),(80025,1831,3,'actor',NULL,'[\"Dr. John Leslie Stevenson - aka Jack the Ripper\"]'),(80025,162541,4,'actor',NULL,'[\"Police Lt. Mitchell\"]'),(80025,583292,5,'director',NULL,NULL),(80025,7375907,6,'writer','story',NULL),(80025,371051,7,'writer','story',NULL),(80025,415448,8,'producer','producer',NULL),(80025,67,9,'composer',NULL,NULL),(80040,168035,1,'actor',NULL,'[\"Slauson\",\"Davey\"]'),(80040,428394,2,'actress',NULL,'[\"Molly\"]'),(80040,887551,3,'actor',NULL,'[\"Jerry\"]'),(80040,792848,4,'actress',NULL,'[\"Eileen\"]'),(80040,227187,5,'director',NULL,NULL),(80040,140836,6,'writer','written by',NULL),(80040,6043,7,'composer',NULL,NULL),(80040,3138,8,'cinematographer','director of photography',NULL),(80040,138609,9,'editor',NULL,NULL),(80120,489970,10,'cinematographer','director of photography',NULL),(80120,65235,1,'actor',NULL,'[\"Swan\"]'),(80120,1664,2,'actor',NULL,'[\"Ajax\"]'),(80120,942352,3,'actor',NULL,'[\"Cleon\"]'),(80120,878784,4,'actor',NULL,'[\"Snow\"]'),(80120,1353,5,'director',NULL,NULL),(80120,951050,6,'writer','based on the novel by',NULL),(80120,787072,7,'writer','screenplay by',NULL),(80120,330379,8,'producer','producer',NULL),(80120,6031,9,'composer',NULL,NULL),(80319,380670,10,'editor',NULL,NULL),(80319,404,1,'actress',NULL,'[\"Judy Bernly\"]'),(80319,5499,2,'actress',NULL,'[\"Violet Newstead\"]'),(80319,573,3,'actress',NULL,'[\"Doralee Rhodes\"]'),(80319,1056,4,'actor',NULL,'[\"Franklin Hart, Jr.\"]'),(80319,383359,5,'director',NULL,NULL),(80319,720334,6,'writer','story',NULL),(80319,317982,7,'producer','producer',NULL),(80319,288913,8,'composer',NULL,NULL),(80319,897794,9,'cinematographer','director of photography',NULL),(80339,354150,10,'writer','screenplay \"Zero Hour\"',NULL),(80339,1332,1,'actor',NULL,'[\"Ted Striker\"]'),(80339,353546,2,'actress',NULL,'[\"Elaine Dickinson\"]'),(80339,558,3,'actor',NULL,'[\"Dr. Rumack\"]'),(80339,717,4,'actor',NULL,'[\"Roger Murdock\"]'),(80339,720,5,'director',NULL,NULL),(80339,1878,6,'director',NULL,NULL),(80339,958387,7,'director',NULL,NULL),(80339,58826,8,'writer','screenplay \"Zero Hour\"',NULL),(80339,150712,9,'writer','screenplay \"Zero Hour\"',NULL),(80365,152,1,'actor',NULL,'[\"Julian\"]'),(80365,1381,2,'actress',NULL,'[\"Michelle\"]'),(80365,1185,3,'actor',NULL,'[\"Sunday\"]'),(80365,887684,4,'actress',NULL,'[\"Anne\"]'),(80365,1707,5,'director',NULL,NULL),(80365,988,6,'producer','producer',NULL),(80365,2380,7,'composer',NULL,NULL),(80365,7037,8,'cinematographer','director of photography',NULL),(80365,357041,9,'editor',NULL,NULL),(80377,816788,10,'editor',NULL,NULL),(80377,142,1,'actor',NULL,'[\"Philo Beddoe\"]'),(80377,516800,2,'actress',NULL,'[\"Lynn Halsey-Taylor\"]'),(80377,507212,3,'actor',NULL,'[\"Orville\"]'),(80377,810342,4,'actor',NULL,'[\"Jack Wilson\"]'),(80377,887174,5,'director',NULL,NULL),(80377,792589,6,'writer','written by',NULL),(80377,472213,7,'writer','characters',NULL),(80377,541991,8,'producer','producer',NULL),(80377,175730,9,'cinematographer','director of photography',NULL),(80388,162992,10,'cinematographer','director of photography',NULL),(80388,44,1,'actor',NULL,'[\"Lou\"]'),(80388,215,2,'actress',NULL,'[\"Sally\"]'),(80388,3679,3,'actress',NULL,'[\"Grace\"]'),(80388,681566,4,'actor',NULL,'[\"Joseph\"]'),(80388,1501,5,'director',NULL,NULL),(80388,345359,6,'writer','written by',NULL),(80388,405759,7,'producer','producer',NULL),(80388,447190,8,'producer','producer',NULL),(80388,6166,9,'composer',NULL,NULL),(80421,35,10,'composer',NULL,NULL),(80421,577,1,'actor',NULL,'[\"Cowboy\"]'),(80421,1816,2,'actor',NULL,'[\"Gelt\"]'),(80421,1796,3,'actor',NULL,'[\"Shad\"]'),(80421,768334,4,'actor',NULL,'[\"Sador\"]'),(80421,613471,5,'director',NULL,NULL),(80421,339,6,'director',NULL,NULL),(80421,626,7,'writer','screenplay by',NULL),(80421,245683,8,'writer','story by',NULL),(80421,137503,9,'producer','producer',NULL),(80453,330560,10,'editor',NULL,NULL),(80453,222,1,'actress',NULL,'[\"Emmeline Lestrange\"]'),(80453,803,2,'actor',NULL,'[\"Richard Lestrange\"]'),(80453,571674,3,'actor',NULL,'[\"Paddy Button\"]'),(80453,200122,4,'actor',NULL,'[\"Arthur Lestrange\"]'),(80453,459170,5,'director',NULL,NULL),(80453,821070,6,'writer','based on the novel by',NULL),(80453,829343,7,'writer','screenplay by',NULL),(80453,6231,8,'composer',NULL,NULL),(80453,743,9,'cinematographer','director of photography',NULL),(80455,4,1,'actor',NULL,'[\"Joliet Jake\"]'),(80455,101,2,'actor',NULL,'[\"Elwood\"]'),(80455,130572,3,'actor',NULL,'[\"Curtis\"]'),(80455,1006,4,'actor',NULL,'[\"Burton Mercer\"]'),(80455,484,5,'director',NULL,NULL),(80455,919154,6,'producer','producer',NULL),(80455,441863,7,'cinematographer',NULL,NULL),(80455,284390,8,'editor',NULL,NULL),(80455,516038,9,'production_designer',NULL,NULL),(80487,141089,10,'editor',NULL,NULL),(80487,331,1,'actor',NULL,'[\"Ty Webb\"]'),(80487,1098,2,'actor',NULL,'[\"Al Czervik\"]'),(80487,195,3,'actor',NULL,'[\"Carl Spackler\"]'),(80487,461095,4,'actor',NULL,'[\"Judge Elihu Smails\"]'),(80487,601,5,'director',NULL,NULL),(80487,236519,6,'writer','written by',NULL),(80487,448469,7,'writer','written by',NULL),(80487,6184,8,'composer',NULL,NULL),(80487,488377,9,'cinematographer','director of photography',NULL),(80492,124832,10,'cinematographer','director of photography',NULL),(80492,801163,1,'actor',NULL,'[\"Village People: Policeman\"]'),(80492,388317,2,'actor',NULL,'[\"Village People: Construction Worker\"]'),(80492,741377,3,'actor',NULL,'[\"Village People: Indian\"]'),(80492,429063,4,'actor',NULL,'[\"Village People: Cowboy\"]'),(80492,908055,5,'director',NULL,NULL),(80492,940125,6,'writer','written by',NULL),(80492,139591,7,'writer','written by',NULL),(80492,69417,8,'producer','producer',NULL),(80492,602792,9,'producer','producer',NULL),(80549,5659,10,'cinematographer','director of photography',NULL),(80549,651,1,'actress',NULL,'[\"Loretta Lynn\"]'),(80549,169,2,'actor',NULL,'[\"Doolittle Lynn\"]'),(80549,375629,3,'actor',NULL,'[\"Ted Webb\"]'),(80549,101992,4,'actress',NULL,'[\"\'Clary\' Webb\"]'),(80549,776,5,'director',NULL,NULL),(80549,725564,6,'writer','screenplay',NULL),(80549,528750,7,'writer','autobiography',NULL),(80549,1557917,8,'writer','autobiography',NULL),(80549,193533,9,'producer','producer',NULL),(80569,807573,10,'editor',NULL,NULL),(80569,199,1,'actor',NULL,'[\"Steve Burns\"]'),(80569,649,2,'actor',NULL,'[\"Capt. Edelson\"]'),(80569,261,3,'actress',NULL,'[\"Nancy\"]'),(80569,185210,4,'actor',NULL,'[\"Stuart Richards\"]'),(80569,1243,5,'director',NULL,NULL),(80569,1558002,6,'writer','novel',NULL),(80569,5545,7,'producer','producer',NULL),(80569,6217,8,'composer',NULL,NULL),(80569,176448,9,'cinematographer','director of photography',NULL),(80684,564768,10,'producer','producer',NULL),(80684,434,1,'actor',NULL,'[\"Luke Skywalker\"]'),(80684,148,2,'actor',NULL,'[\"Han Solo\"]'),(80684,402,3,'actress',NULL,'[\"Princess Leia\"]'),(80684,1850,4,'actor',NULL,'[\"Lando Calrissian\"]'),(80684,449984,5,'director',NULL,NULL),(80684,102824,6,'writer','screenplay by',NULL),(80684,1410,7,'writer','screenplay by',NULL),(80684,184,8,'writer','story by',NULL),(80684,476030,9,'producer','producer',NULL),(80711,593412,10,'editor',NULL,NULL),(80711,160550,1,'actor',NULL,'[\"Eric Binford\"]'),(80711,859772,2,'actor',NULL,'[\"Dr. Jerry Moriarty\"]'),(80711,318522,3,'actress',NULL,'[\"Officer Anne Oshenbull\"]'),(80711,123680,4,'actor',NULL,'[\"Marty Berger\"]'),(80711,956796,5,'director',NULL,NULL),(80711,105945,6,'producer','producer',NULL),(80711,357281,7,'producer','producer',NULL),(80711,6268,8,'composer',NULL,NULL),(80711,680180,9,'cinematographer',NULL,NULL),(80716,785029,10,'cinematographer','director of photography',NULL),(80716,58532,1,'actor',NULL,'[\"Angelo\"]'),(80716,1011,2,'actress',NULL,'[\"Coco\"]'),(80716,1087,3,'actor',NULL,'[\"Bruno\"]'),(80716,212847,4,'actress',NULL,'[\"Lisa\"]'),(80716,570,5,'director',NULL,NULL),(80716,330731,6,'writer','written by',NULL),(80716,211577,7,'producer','producer',NULL),(80716,550728,8,'producer','producer',NULL),(80716,330759,9,'composer',NULL,NULL),(80736,235209,10,'producer','producer',NULL),(80736,18,1,'actor',NULL,'[\"Capt. Matthew Yelland\"]'),(80736,640,2,'actor',NULL,'[\"Warren Lasky\"]'),(80736,1684,3,'actress',NULL,'[\"Laurel Scott\"]'),(80736,267232,4,'actor',NULL,'[\"Cdr. Richard Owens\",\"Mr.Tideman\"]'),(80736,852279,5,'director',NULL,NULL),(80736,403065,6,'writer','story',NULL),(80736,694268,7,'writer','story',NULL),(80736,24388,8,'writer','story',NULL),(80736,204651,9,'writer','screenplay',NULL),(80745,86574,10,'composer',NULL,NULL),(80745,429207,1,'actor',NULL,'[\"Flash Gordon\"]'),(80745,758,2,'actress',NULL,'[\"Dale Arden\"]'),(80745,1884,3,'actor',NULL,'[\"The Emperor Ming\"]'),(80745,867694,4,'actor',NULL,'[\"Dr. Hans Zarkov\"]'),(80745,388198,5,'director',NULL,NULL),(80745,783913,6,'writer','screenplay',NULL),(80745,21363,7,'writer','adaptation',NULL),(80745,713204,8,'writer','based on the characters created by',NULL),(80745,209569,9,'producer','producer',NULL),(80749,105,1,'actress',NULL,'[\"Stevie Wayne\"]'),(80749,130,2,'actress',NULL,'[\"Elizabeth Solley\"]'),(80749,1463,3,'actress',NULL,'[\"Kathy Williams\"]'),(80749,2144,4,'actor',NULL,'[\"Mr. Machen\"]'),(80749,118,5,'director',NULL,NULL),(80749,384185,6,'writer','written by',NULL),(80749,5678,7,'cinematographer','director of photography',NULL),(80749,97132,8,'editor','film editor',NULL),(80749,908890,9,'editor','film editor',NULL),(80761,292711,10,'editor',NULL,NULL),(80761,658133,1,'actress',NULL,'[\"Mrs. Voorhees\"]'),(80761,454415,2,'actress',NULL,'[\"Alice\"]'),(80761,852551,3,'actress',NULL,'[\"Marcie\"]'),(80761,604987,4,'actress',NULL,'[\"Annie\"]'),(80761,192446,5,'director',NULL,NULL),(80761,566699,6,'writer','written by',NULL),(80761,413826,7,'writer',NULL,NULL),(80761,6185,8,'composer',NULL,NULL),(80761,9161,9,'cinematographer','director of photography',NULL),(80855,338513,10,'editor',NULL,NULL),(80855,1434,1,'actor',NULL,'[\"James Averill\"]'),(80855,686,2,'actor',NULL,'[\"Nathan D. Champion\"]'),(80855,457,3,'actor',NULL,'[\"William C. Irvine\"]'),(80855,1832,4,'actor',NULL,'[\"Frank Canton\"]'),(80855,1047,5,'director',NULL,NULL),(80855,136806,6,'producer','producer',NULL),(80855,543779,7,'composer',NULL,NULL),(80855,5936,8,'cinematographer','director of photography',NULL),(80855,296636,9,'editor',NULL,NULL),(80931,617627,10,'producer','producer',NULL),(80931,830153,1,'actor',NULL,'[\"Dean Miller\"]'),(80931,873695,2,'actress',NULL,'[\"Dr. Anna Miller\"]'),(80931,648282,3,'actress',NULL,'[\"Sheila Holmes\"]'),(80931,704719,4,'actor',NULL,'[\"Major Warren Holmes\"]'),(80931,502391,5,'director',NULL,NULL),(80931,181420,6,'writer','written by',NULL),(80931,217005,7,'writer','written by',NULL),(80931,716701,8,'writer','written by',NULL),(80931,17223,9,'producer','producer',NULL),(80979,619938,1,'actor',NULL,'[\"Shingen Takeda\",\"Kagemusha\"]'),(80979,945734,2,'actor',NULL,'[\"Nobukado Takeda\"]'),(80979,353714,3,'actor',NULL,'[\"Katsuyori Takeda\"]'),(80979,628704,4,'actor',NULL,'[\"Sohachiro Tsuchiya\"]'),(80979,41,5,'director',NULL,NULL),(80979,406836,6,'writer',NULL,NULL),(80979,407412,7,'composer',NULL,NULL),(80979,756912,8,'cinematographer',NULL,NULL),(80979,879921,9,'cinematographer',NULL,NULL),(81060,61192,10,'cinematographer',NULL,NULL),(81060,1575,1,'actress',NULL,'[\"Ferris\"]'),(81060,1531,2,'actress',NULL,'[\"Angel\"]'),(81060,800,3,'actor',NULL,'[\"Gary\"]'),(81060,369,4,'actor',NULL,'[\"Randy\"]'),(81060,561813,5,'director',NULL,NULL),(81060,669683,6,'writer','screenplay',NULL),(81060,949430,7,'writer','screenplay',NULL),(81060,295375,8,'producer','producer',NULL),(81060,288913,9,'composer',NULL,NULL),(81114,547585,10,'editor',NULL,NULL),(81114,818874,1,'actor',NULL,'[\"Frank Zito\"]'),(81114,613098,2,'actress',NULL,'[\"Anna D\'Antoni\"]'),(81114,492765,3,'actress',NULL,'[\"Rita\"]'),(81114,684908,4,'actress',NULL,'[\"Nurse\"]'),(81114,527350,5,'director',NULL,NULL),(81114,742186,6,'writer','screenplay',NULL),(81114,308525,7,'producer','producer',NULL),(81114,6001,8,'composer',NULL,NULL),(81114,512304,9,'cinematographer','director of photography',NULL),(81163,329545,10,'producer','producer',NULL),(81163,1450,1,'actress',NULL,'[\"Miss Marple\"]'),(81163,348,2,'actor',NULL,'[\"Martin N. Fenn\"]'),(81163,1369,3,'actor',NULL,'[\"Jason Rudd\"]'),(81163,1036,4,'actress',NULL,'[\"Ella Zielinsky\"]'),(81163,357891,5,'director',NULL,NULL),(81163,355054,6,'writer','screenplay',NULL),(81163,761958,7,'writer','screenplay',NULL),(81163,2005,8,'writer','novel \"The Mirror Crack\'d from Side to Side\"',NULL),(81163,102646,9,'producer','producer',NULL),(81237,498521,10,'editor',NULL,NULL),(81237,5078,1,'actor',NULL,'[\"Col. Vincent Kane\"]'),(81237,934113,2,'actor',NULL,'[\"Capt. Billy Cutshaw\"]'),(81237,588553,3,'actor',NULL,'[\"Lt. Frankie Reno\"]'),(81237,281130,4,'actor',NULL,'[\"Col. Richard Fell\"]'),(81237,87861,5,'director',NULL,NULL),(81237,6031,6,'composer',NULL,NULL),(81237,279518,7,'cinematographer','director of photography',NULL),(81237,204216,8,'editor',NULL,NULL),(81237,212499,9,'editor',NULL,NULL),(81249,827767,10,'writer','written by',NULL),(81249,10915,1,'actor',NULL,'[\"Maxwell Smart\"]'),(81249,397109,2,'actress',NULL,'[\"Agent 22\"]'),(81249,482,3,'actress',NULL,'[\"Agent 34\"]'),(81249,281766,4,'actress',NULL,'[\"Edith Von Secondberg\"]'),(81249,232795,5,'director',NULL,NULL),(81249,316,6,'writer','characters',NULL),(81249,377750,7,'writer','characters',NULL),(81249,838441,8,'writer','written by',NULL),(81249,199049,9,'writer','written by',NULL),(81283,7037,10,'cinematographer','director of photography',NULL),(81283,661,1,'actor',NULL,'[\"Calvin Jarrett\"]'),(81283,1546,2,'actress',NULL,'[\"Beth Jarrett\"]'),(81283,2139,3,'actor',NULL,'[\"Doctor Berger\"]'),(81283,459,4,'actor',NULL,'[\"Conrad\"]'),(81283,602,5,'director',NULL,NULL),(81283,346407,6,'writer','novel',NULL),(81283,765091,7,'writer','screenplay',NULL),(81283,235683,8,'writer',NULL,NULL),(81283,777531,9,'producer','producer',NULL),(81323,757814,10,'editor',NULL,NULL),(81323,560962,1,'actress',NULL,'[\"Pepi\"]'),(81323,744707,2,'actor',NULL,'[\"El policía\",\"Su hermano gemelo\"]'),(81323,304770,3,'actress',NULL,'[\"Bom\"]'),(81323,803325,4,'actress',NULL,'[\"Luciana \'Luci\'\"]'),(81323,264,5,'director',NULL,NULL),(81323,180530,6,'producer','producer',NULL),(81323,217051,7,'producer','producer',NULL),(81323,708049,8,'producer','producer',NULL),(81323,271694,9,'cinematographer',NULL,NULL),(81353,391899,10,'editor',NULL,NULL),(81353,245,1,'actor',NULL,'[\"Popeye\"]'),(81353,1167,2,'actress',NULL,'[\"Olive Oyl\"]'),(81353,1827,3,'actor',NULL,'[\"Poopdeck Pappy\"]'),(81353,233209,4,'actor',NULL,'[\"Wimpy\"]'),(81353,265,5,'director',NULL,NULL),(81353,270547,6,'writer','screenplay',NULL),(81353,781918,7,'writer','based on characters by',NULL),(81353,263172,8,'producer','producer',NULL),(81353,5850,9,'cinematographer',NULL,NULL),(81375,909607,10,'cinematographer','director of photography',NULL),(81375,443,1,'actress',NULL,'[\"Judy Benjamin\"]'),(81375,107281,2,'actress',NULL,'[\"Capt. Doreen Lewis\"]'),(81375,800,3,'actor',NULL,'[\"Henrí Trémont\"]'),(81375,916434,4,'actor',NULL,'[\"Col. Clay Thornbush\"]'),(81375,956052,5,'director',NULL,NULL),(81375,583600,6,'writer','written by',NULL),(81375,796124,7,'writer','written by',NULL),(81375,588458,8,'writer','written by',NULL),(81375,6015,9,'composer',NULL,NULL),(81398,552731,10,'writer','screenplay',NULL),(81398,134,1,'actor',NULL,'[\"Jake La Motta\"]'),(81398,1550,2,'actress',NULL,'[\"Vickie La Motta\"]'),(81398,582,3,'actor',NULL,'[\"Joey\"]'),(81398,898634,4,'actor',NULL,'[\"Salvy\"]'),(81398,217,5,'director',NULL,NULL),(81398,483766,6,'writer','based on the book by',NULL),(81398,141734,7,'writer','with',NULL),(81398,678014,8,'writer','with',NULL),(81398,1707,9,'writer','screenplay',NULL),(81414,869198,10,'cinematographer','director of photography',NULL),(81414,995,1,'actress',NULL,'[\"Edna\"]'),(81414,1731,2,'actor',NULL,'[\"Cal\"]'),(81414,2070,3,'actor',NULL,'[\"Esco\"]'),(81414,89348,4,'actor',NULL,'[\"John Harper\"]'),(81414,677951,5,'director',NULL,NULL),(81414,137573,6,'writer','written by',NULL),(81414,592911,7,'producer','producer',NULL),(81414,742651,8,'producer','producer',NULL),(81414,3574,9,'composer',NULL,NULL),(81455,642198,1,'actress',NULL,'[\"Kim Obrist\"]'),(81455,480099,2,'actor',NULL,'[\"Cameron Vale\"]'),(81455,1526,3,'actor',NULL,'[\"Dr. Paul Ruth\"]'),(81455,199325,4,'actor',NULL,'[\"Braedon Keller\"]'),(81455,343,5,'director',NULL,NULL),(81455,405758,6,'producer','producer',NULL),(81455,6290,7,'composer',NULL,NULL),(81455,410419,8,'cinematographer','director of photography',NULL),(81455,761697,9,'editor',NULL,NULL),(81505,5633,10,'cinematographer',NULL,NULL),(81505,197,1,'actor',NULL,'[\"Jack Torrance\"]'),(81505,1167,2,'actress',NULL,'[\"Wendy Torrance\"]'),(81505,515950,3,'actor',NULL,'[\"Danny\"]'),(81505,1079,4,'actor',NULL,'[\"Hallorann\"]'),(81505,40,5,'director',NULL,NULL),(81505,175,6,'writer','based upon the novel by',NULL),(81505,424956,7,'writer','screenplay by',NULL),(81505,137793,8,'composer',NULL,NULL),(81505,253844,9,'composer',NULL,NULL),(81534,324122,10,'editor',NULL,NULL),(81534,1659,1,'actor',NULL,'[\"Richard Collier\"]'),(81534,5412,2,'actress',NULL,'[\"Elise McKenna\"]'),(81534,1626,3,'actor',NULL,'[\"W. F. Robinson\"]'),(81534,942863,4,'actress',NULL,'[\"Laura Roberts\"]'),(81534,844358,5,'director',NULL,NULL),(81534,558577,6,'writer','screenplay by',NULL),(81534,222104,7,'producer','producer',NULL),(81534,290,8,'composer',NULL,NULL),(81534,542552,9,'cinematographer','director of photography',NULL),(81573,628058,10,'writer','screenplay by',NULL),(81573,432,1,'actor',NULL,'[\"Lex Luthor\"]'),(81573,1659,2,'actor',NULL,'[\"Superman\",\"Clark Kent\"]'),(81573,452288,3,'actress',NULL,'[\"Lois Lane\"]'),(81573,885,4,'actor',NULL,'[\"Otis\"]'),(81573,504513,5,'director',NULL,NULL),(81573,1149,6,'director',NULL,NULL),(81573,796950,7,'writer','character created by: Superman',NULL),(81573,795975,8,'writer','character created by: Superman',NULL),(81573,701374,9,'writer','story by',NULL),(81616,6325,10,'composer',NULL,NULL),(81616,2094,1,'actor',NULL,'[\"Mario\"]'),(81616,865575,2,'actor',NULL,'[\"Amedeo\"]'),(81616,4462,3,'actor',NULL,'[\"Enrico D\'Orsi\"]'),(81616,52,4,'actor',NULL,'[\"Luigi\"]'),(81616,778633,5,'director',NULL,NULL),(81616,408488,6,'writer','story and screenplay',NULL),(81616,769249,7,'writer','story and screenplay',NULL),(81616,29542,8,'producer','producer',NULL),(81616,210323,9,'producer','producer',NULL),(81633,122809,10,'production_designer',NULL,NULL),(81633,125,1,'actor',NULL,'[\"King Agamemnon\",\"Fireman\"]'),(81633,1167,2,'actress',NULL,'[\"Dame Pansy\",\"Pansy\"]'),(81633,92,3,'actor',NULL,'[\"Robin Hood\"]'),(81633,1340,4,'actress',NULL,'[\"Mrs. Ogre\"]'),(81633,416,5,'director',NULL,NULL),(81633,1589,6,'writer','written by',NULL),(81633,602931,7,'composer',NULL,NULL),(81633,84695,8,'cinematographer','director of photography',NULL),(81633,236405,9,'editor',NULL,NULL),(81777,5755,10,'cinematographer',NULL,NULL),(81777,556,1,'actress',NULL,'[\"Kira\"]'),(81777,37,2,'actor',NULL,'[\"Danny McGuire\"]'),(81777,65235,3,'actor',NULL,'[\"Sonny Malone\"]'),(81777,806277,4,'actor',NULL,'[\"Simpson\"]'),(81777,339254,5,'director',NULL,NULL),(81777,200671,6,'writer','written by',NULL),(81777,747822,7,'writer','written by',NULL),(81777,330379,8,'producer','producer',NULL),(81777,6031,9,'composer',NULL,NULL),(81974,434922,10,'editor',NULL,NULL),(81974,56,1,'actor',NULL,'[\"Michael Colin Gallagher\"]'),(81974,398,2,'actress',NULL,'[\"Megan Carter\"]'),(81974,837,3,'actor',NULL,'[\"Elliott Rosen\"]'),(81974,227039,4,'actress',NULL,'[\"Teresa Perrone\"]'),(81974,1628,5,'director',NULL,NULL),(81974,525104,6,'writer','written by',NULL),(81974,713128,7,'writer',NULL,NULL),(81974,6115,8,'composer',NULL,NULL),(81974,5845,9,'cinematographer','director of photography',NULL),(82010,622544,1,'actor',NULL,'[\"David Kessler\"]'),(82010,256,2,'actress',NULL,'[\"Nurse Alex Price\"]'),(82010,67643,3,'actor',NULL,'[\"Truck Driver\"]'),(82010,1162,4,'actor',NULL,'[\"Jack Goodman\"]'),(82010,484,5,'director',NULL,NULL),(82010,284390,6,'producer','producer',NULL),(82010,930,7,'composer',NULL,NULL),(82010,668481,8,'cinematographer','director of photography',NULL),(82010,132695,9,'editor',NULL,NULL),(82045,6026,10,'composer',NULL,NULL),(82045,817881,1,'actor',NULL,'[\"Banana Joe\"]'),(82045,486639,2,'actress',NULL,'[\"Dorianne\"]'),(82045,769265,3,'actor',NULL,'[\"Manuel\"]'),(82045,56593,4,'actor',NULL,'[\"José Torcillo\"]'),(82045,826642,5,'director',NULL,NULL),(82045,24589,6,'writer','screenplay',NULL),(82045,179278,7,'writer','screenplay',NULL),(82045,679973,8,'writer','additional material',NULL),(82045,465340,9,'producer','producer',NULL),(82085,386532,10,'editor',NULL,NULL),(82085,237,1,'actor',NULL,'[\"Jack\"]'),(82085,262,2,'actress',NULL,'[\"Sally\"]'),(82085,1475,3,'actor',NULL,'[\"Burke\"]'),(82085,1240,4,'actor',NULL,'[\"Manny Karp\"]'),(82085,361,5,'director',NULL,NULL),(82085,581785,6,'writer',NULL,NULL),(82085,514788,7,'producer','producer',NULL),(82085,6043,8,'composer',NULL,NULL),(82085,5936,9,'cinematographer','director of photography',NULL),(82089,448457,10,'production_designer',NULL,NULL),(82089,458,1,'actor',NULL,'[\"Ned Racine\"]'),(82089,678,2,'actress',NULL,'[\"Matty Walker\"]'),(82089,1077,3,'actor',NULL,'[\"Edmund Walker\"]'),(82089,1101,4,'actor',NULL,'[\"Peter Lowenstein\"]'),(82089,1410,5,'director',NULL,NULL),(82089,303031,6,'producer','producer',NULL),(82089,290,7,'composer',NULL,NULL),(82089,459660,8,'cinematographer','director of photography',NULL),(82089,514746,9,'editor',NULL,NULL),(82096,5911,10,'cinematographer','director of photography',NULL),(82096,1638,1,'actor',NULL,'[\"Capt.-Lt. Henrich Lehmann-Willenbrock - Der Alte\"]'),(82096,344963,2,'actor',NULL,'[\"Lt. Werner - Correspondent\"]'),(82096,921044,3,'actor',NULL,'[\"Chief Engineer Fritz Grade - Der Leitende-Der LI\"]'),(82096,71059,4,'actor',NULL,'[\"1st Lieutenant - Number One-1WO\"]'),(82096,583,5,'director',NULL,NULL),(82096,118164,6,'writer','based on the novel by',NULL),(82096,7156,7,'producer','producer',NULL),(82096,737582,8,'producer','producer',NULL),(82096,6041,9,'composer','score composer',NULL),(82100,950391,10,'editor',NULL,NULL),(82100,105475,1,'actor',NULL,'[\"François Beretton\"]'),(82100,287637,2,'actress',NULL,'[\"Françoise Beretton\"]'),(82100,521,3,'actress',NULL,'[\"Vic Beretton\"]'),(82100,340551,4,'actress',NULL,'[\"Poupette\"]'),(82100,684509,5,'director',NULL,NULL),(82100,860019,6,'writer','story',NULL),(82100,202073,7,'producer','producer',NULL),(82100,6019,8,'composer',NULL,NULL),(82100,5895,9,'cinematographer',NULL,NULL),(82153,156963,10,'editor',NULL,NULL),(82153,477231,1,'actor',NULL,'[\"Kao Yao\",\"former #2\"]'),(82153,157785,2,'actor',NULL,'[\"Chang Chung\"]'),(82153,156982,3,'actor',NULL,'[\"Chi San Yuen\"]'),(82153,160843,4,'actor',NULL,'[\"Liang Yung\",\"new #2\"]'),(82153,151653,5,'director',NULL,NULL),(82153,393250,6,'writer',NULL,NULL),(82153,284592,7,'producer','producer',NULL),(82153,910881,8,'composer',NULL,NULL),(82153,874720,9,'cinematographer',NULL,NULL),(82158,712625,10,'editor',NULL,NULL),(82158,2027,1,'actor',NULL,'[\"Harold Abrahams\"]'),(82158,153182,2,'actor',NULL,'[\"Eric Liddell\"]'),(82158,268297,3,'actor',NULL,'[\"Aubrey Montague\"]'),(82158,369814,4,'actor',NULL,'[\"Lord Andrew Lindsay\"]'),(82158,399853,5,'director',NULL,NULL),(82158,919815,6,'writer','original screenplay',NULL),(82158,701298,7,'producer','producer',NULL),(82158,6331,8,'composer',NULL,NULL),(82158,914239,9,'cinematographer','director of photography',NULL),(82176,923119,10,'producer','producer',NULL),(82176,116040,1,'actress',NULL,'[\"Christiane\"]'),(82176,42191,2,'actor',NULL,'[\"Alter Fixer\"]'),(82176,751541,3,'actress',NULL,'[\"Puppi\"]'),(82176,150770,4,'actor',NULL,'[\"Rolf\"]'),(82176,248942,5,'director',NULL,NULL),(82176,917833,6,'writer','written by',NULL),(82176,379266,7,'writer','book',NULL),(82176,726072,8,'writer','book',NULL),(82176,251536,9,'producer','producer',NULL),(82186,601924,10,'cinematographer','director of photography',NULL),(82186,59,1,'actor',NULL,'[\"Zeus\"]'),(82186,2122,2,'actor',NULL,'[\"Perseus\"]'),(82186,1954,3,'actress',NULL,'[\"Hera\"]'),(82186,1749,4,'actress',NULL,'[\"Thetis\"]'),(82186,204471,5,'director',NULL,NULL),(82186,189117,6,'writer','written by',NULL),(82186,366063,7,'producer','producer',NULL),(82186,773677,8,'producer','producer',NULL),(82186,2304,9,'composer',NULL,NULL),(82198,270809,10,'producer','producer',NULL),(82198,216,1,'actor',NULL,'[\"Conan\"]'),(82198,469,2,'actor',NULL,'[\"Thulsa Doom\"]'),(82198,1884,3,'actor',NULL,'[\"King Osric\"]'),(82198,922,4,'actress',NULL,'[\"Valeria\"]'),(82198,587518,5,'director',NULL,NULL),(82198,397574,6,'writer','based on the character created by',NULL),(82198,231,7,'writer','written by',NULL),(82198,838598,8,'writer','story',NULL),(82198,209581,9,'producer','producer',NULL),(82242,8578129,10,'writer','novel',NULL),(82242,267232,1,'actor',NULL,'[\"Sheriff Dan Gillis\"]'),(82242,758,2,'actress',NULL,'[\"Janet Gillis\"]'),(82242,16776,3,'actor',NULL,'[\"William G. Dobbs\"]'),(82242,714836,4,'actor',NULL,'[\"Ron\"]'),(82242,792446,5,'director',NULL,NULL),(82242,587674,6,'writer','story',NULL),(82242,827624,7,'writer','story',NULL),(82242,795953,8,'writer','screenplay',NULL),(82242,639321,9,'writer','screenplay',NULL),(82269,697510,10,'editor',NULL,NULL),(82269,273061,1,'actress',NULL,'[\"Cynthia Hawkins\"]'),(82269,29268,2,'actor',NULL,'[\"Jules\"]'),(82269,78109,3,'actor',NULL,'[\"Simon Weinstadt\"]'),(82269,92184,4,'actor',NULL,'[\"Serge Gorodish\"]'),(82269,894,5,'director',NULL,NULL),(82269,644073,6,'writer','novel',NULL),(82269,887015,7,'writer','adaptation',NULL),(82269,6019,8,'composer',NULL,NULL),(82269,3542,9,'cinematographer',NULL,NULL),(82288,779089,10,'production_designer',NULL,NULL),(82288,1493,1,'actor',NULL,'[\"Galen\"]'),(82288,164680,2,'actress',NULL,'[\"Valerian\"]'),(82288,724732,3,'actor',NULL,'[\"Ulrich\"]'),(82288,356268,4,'actor',NULL,'[\"Tyrian\"]'),(82288,730422,5,'director',NULL,NULL),(82288,59493,6,'writer','written by',NULL),(82288,6218,7,'composer',NULL,NULL),(82288,889169,8,'cinematographer','director of photography',NULL),(82288,493339,9,'editor',NULL,NULL),(82307,170354,10,'producer','producer',NULL),(82307,531529,1,'actress',NULL,'[\"Liza Merril\"]'),(82307,911285,2,'actor',NULL,'[\"Dr. John McCabe\"]'),(82307,598443,3,'actress',NULL,'[\"Emily\"]'),(82307,231452,4,'actor',NULL,'[\"Schweick\"]'),(82307,2086,5,'director',NULL,NULL),(82307,332417,6,'writer','story',NULL),(82307,548151,7,'writer','screenplay',NULL),(82307,522454,8,'writer','inspiration',NULL),(82307,1270209,9,'writer','inspiration',NULL),(82334,881973,10,'editor',NULL,NULL),(82334,1347,1,'actress',NULL,'[\"Carla Moran\"]'),(82334,798779,2,'actor',NULL,'[\"Phil Sneiderman\"]'),(82334,479530,3,'actor',NULL,'[\"Billy\"]'),(82334,168642,4,'actor',NULL,'[\"Dr. Weber\"]'),(82334,2089,5,'director',NULL,NULL),(82334,208342,6,'writer','novel',NULL),(82334,773837,7,'producer','producer',NULL),(82334,17450,8,'composer',NULL,NULL),(82334,5664,9,'cinematographer','director of photography',NULL),(82340,5678,10,'cinematographer',NULL,NULL),(82340,621,1,'actor',NULL,'[\"Snake Plissken\"]'),(82340,1812,2,'actor',NULL,'[\"Hauk\"]'),(82340,308,3,'actor',NULL,'[\"Cabbie\"]'),(82340,587,4,'actor',NULL,'[\"President\"]'),(82340,118,5,'director',NULL,NULL),(82340,145309,6,'writer','written by',NULL),(82340,290581,7,'producer','producer',NULL),(82340,384185,8,'producer','producer',NULL),(82340,397697,9,'composer',NULL,NULL),(82348,581424,10,'editor',NULL,NULL),(82348,856050,1,'actor',NULL,'[\"King Arthur\"]'),(82348,545,2,'actress',NULL,'[\"Morgana\"]'),(82348,165551,3,'actor',NULL,'[\"Lancelot\"]'),(82348,526724,4,'actress',NULL,'[\"Guenevere\"]'),(82348,958,5,'director',NULL,NULL),(82348,540627,6,'writer','book \"Le Morte d\'Arthur\"',NULL),(82348,657853,7,'writer','adaptation',NULL),(82348,2303,8,'composer',NULL,NULL),(82348,4287,9,'cinematographer',NULL,NULL),(82370,56697,10,'editor',NULL,NULL),(82370,367,1,'actor',NULL,'[\"Bernard\"]'),(82370,272,2,'actress',NULL,'[\"Mathilde\"]'),(82370,305488,3,'actor',NULL,'[\"Philippe\"]'),(82370,62369,4,'actress',NULL,'[\"Arlette\"]'),(82370,76,5,'director',NULL,NULL),(82370,771535,6,'writer','written by',NULL),(82370,42159,7,'writer','written by',NULL),(82370,16,8,'composer',NULL,NULL),(82370,5779,9,'cinematographer',NULL,NULL),(82398,6015,10,'composer',NULL,NULL),(82398,549,1,'actor',NULL,'[\"James Bond\"]'),(82398,962,2,'actress',NULL,'[\"Melina\"]'),(82398,867694,3,'actor',NULL,'[\"Columbo\"]'),(82398,468,4,'actress',NULL,'[\"Bibi\"]'),(82398,322515,5,'director',NULL,NULL),(82398,537363,6,'writer','screenplay by',NULL),(82398,933865,7,'writer','screenplay by',NULL),(82398,1220,8,'writer','stories \"For Your Eyes Only\" and \"Risico\"',NULL),(82398,110482,9,'producer','producer',NULL),(82405,257,1,'actor',NULL,'[\"Jack Burroughs\"]'),(82405,993,2,'actress',NULL,'[\"Kate Burroughs\"]'),(82405,137230,3,'actor',NULL,'[\"Nick Callan\"]'),(82405,6800,4,'actress',NULL,'[\"Anne Callan\"]'),(82405,106840,5,'producer','producer',NULL),(82405,5755,6,'cinematographer','director of photography',NULL),(82405,248785,7,'editor','film editor',NULL),(82405,172795,8,'production_designer',NULL,NULL),(82406,543438,10,'writer','based on the book by',NULL),(82406,1682,1,'actor',NULL,'[\"Tod\"]'),(82406,621,2,'actor',NULL,'[\"Copper\"]'),(82406,47440,3,'actress',NULL,'[\"Big Mama\"]'),(82406,16776,4,'actor',NULL,'[\"Amos Slade\"]'),(82406,75859,5,'director',NULL,NULL),(82406,723704,6,'director',NULL,NULL),(82406,828245,7,'director',NULL,NULL),(82406,359457,8,'director',NULL,NULL),(82406,718627,9,'director',NULL,NULL),(82418,806003,10,'cinematographer','director of photography',NULL),(82418,658133,1,'actress',NULL,'[\"Mrs. Voorhees\"]'),(82418,824386,2,'actress',NULL,'[\"Ginny\"]'),(82418,298859,3,'actor',NULL,'[\"Paul\"]'),(82418,454415,4,'actress',NULL,'[\"Alice\"]'),(82418,591171,5,'director',NULL,NULL),(82418,413826,6,'writer','written by',NULL),(82418,566699,7,'writer','based on characters created by',NULL),(82418,192446,8,'writer','characters',NULL),(82418,6185,9,'composer',NULL,NULL),(82424,13761,10,'cinematographer',NULL,NULL),(82424,255544,1,'actor',NULL,'[\"Ion\"]'),(82424,661118,2,'actor',NULL,'[\"Iturbe\"]'),(82424,616385,3,'actor',NULL,NULL),(82424,2216608,4,'actor',NULL,NULL),(82424,881919,5,'director',NULL,NULL),(82424,24884,6,'writer','screenplay',NULL),(82424,503824,7,'writer','dialogue: euskera',NULL),(82424,489397,8,'composer',NULL,NULL),(82424,958279,9,'composer',NULL,NULL),(82431,354413,10,'cinematographer','director of photography',NULL),(82431,1902,1,'actor',NULL,'[\"Cabren\"]'),(82431,602844,2,'actress',NULL,'[\"Alluma\"]'),(82431,1827,3,'actor',NULL,'[\"Kore\"]'),(82431,67049,4,'actor',NULL,'[\"Commander Ilvar\"]'),(82431,163736,5,'director',NULL,NULL),(82431,797082,6,'writer','written by',NULL),(82431,832898,7,'writer','outline',NULL),(82431,339,8,'producer','producer',NULL),(82431,775037,9,'composer',NULL,NULL),(82474,710809,10,'composer',NULL,NULL),(82474,1345,1,'actor',NULL,'[\"Kermit the Frog\",\"Rowlf\",\"Dr. Teeth\"]'),(82474,568,2,'actor',NULL,'[\"Miss Piggy\",\"Fozzie Bear\",\"Animal\"]'),(82474,324397,3,'actor',NULL,'[\"The Great Gonzo\",\"Beauregard\",\"Zoot\"]'),(82474,625456,4,'actor',NULL,'[\"Floyd Pepper\",\"Pops\",\"Lew Zealand\"]'),(82474,665305,5,'writer','written by',NULL),(82474,850695,6,'writer','written by',NULL),(82474,432075,7,'writer','written by',NULL),(82474,741439,8,'writer','written by',NULL),(82474,493874,9,'producer','producer',NULL),(82477,332906,10,'editor',NULL,NULL),(82477,329947,1,'actor',NULL,'[\"Gregory\"]'),(82477,378342,2,'actress',NULL,'[\"Dorothy\"]'),(82477,195438,3,'actor',NULL,'[\"Phil Menzies\"]'),(82477,342931,4,'actress',NULL,'[\"Susan\"]'),(82477,287025,5,'director',NULL,NULL),(82477,69001,6,'producer','producer',NULL),(82477,663796,7,'producer','producer',NULL),(82477,876419,8,'composer',NULL,NULL),(82477,183533,9,'cinematographer',NULL,NULL),(82484,6271,10,'composer',NULL,NULL),(82484,569239,1,'actor',NULL,'[\"Naoh\"]'),(82484,579,2,'actor',NULL,'[\"Amoukar\"]'),(82484,252832,3,'actor',NULL,'[\"Gaw\"]'),(82484,1044,4,'actress',NULL,'[\"Ika\"]'),(82484,269,5,'director',NULL,NULL),(82484,102722,6,'writer','screenplay',NULL),(82484,743129,7,'writer','based on the novel by',NULL),(82484,405759,8,'producer','producer',NULL),(82484,447190,9,'producer','producer',NULL),(82495,325358,10,'editor',NULL,NULL),(82495,130,1,'actress',NULL,'[\"Laurie Strode\"]'),(82495,587,2,'actor',NULL,'[\"Sam Loomis\"]'),(82495,194234,3,'actor',NULL,'[\"Leigh Brackett\"]'),(82495,469552,4,'actor',NULL,'[\"Graham\"]'),(82495,742819,5,'director',NULL,NULL),(82495,118,6,'writer','written by',NULL),(82495,384185,7,'writer','written by',NULL),(82495,397697,8,'composer',NULL,NULL),(82495,5678,9,'cinematographer','director of photography',NULL),(82498,242949,10,'producer','producer',NULL),(82498,757,1,'actress',NULL,'[\"Virginia Wainwright\"]'),(82498,1229,2,'actor',NULL,'[\"Dr. David Faraday\"]'),(82498,199325,3,'actor',NULL,'[\"Hal Wainwright\"]'),(82498,9943,4,'actress',NULL,'[\"Estelle Wainwright\"]'),(82498,496746,5,'director',NULL,NULL),(82498,768369,6,'writer','screenplay',NULL),(82498,423401,7,'writer','screenplay',NULL),(82498,3403,8,'writer','screenplay',NULL),(82498,63583,9,'writer',NULL,NULL),(82509,625166,10,'director',NULL,NULL),(82509,739087,1,'actor',NULL,'[\"Harry Canyon (segment \\\"Harry Canyon\\\")\"]'),(82509,1006,2,'actor',NULL,'[\"Desk Sergeant (segment \\\"Harry Canyon\\\")\",\"Dan (segment \\\"Den\\\")\",\"Den (segment \\\"Den\\\")\"]'),(82509,280886,3,'actor',NULL,'[\"Lawyer (segment \\\"Captain Sternn\\\")\",\"General (segment \\\"So Beautiful and So Dangerous\\\")\"]'),(82509,290475,4,'actor',NULL,'[\"Grimaldi (segment \\\"Grimaldi\\\")\",\"Co-Pilot (segment \\\"B-17\\\")\",\"Barbarian (segment \\\"Taarna\\\")\"]'),(82509,693376,5,'director',NULL,NULL),(82509,116497,6,'director',NULL,NULL),(82509,354691,7,'director',NULL,NULL),(82509,844301,8,'director',NULL,NULL),(82509,613471,9,'director',NULL,NULL),(82517,316,1,'actor',NULL,'[\"Moses\",\"Comicus\",\"Torquemada\"]'),(82517,2138,2,'actor',NULL,'[\"Josephus\"]'),(82517,1123,3,'actor',NULL,'[\"Emperor Nero\"]'),(82517,1404,4,'actress',NULL,'[\"Empress Nympho\"]'),(82517,606657,5,'composer',NULL,NULL),(82517,648386,6,'cinematographer','director of photography',NULL),(82517,397405,7,'editor',NULL,NULL),(82517,585118,8,'production_designer',NULL,NULL),(82533,278228,10,'producer','producer',NULL),(82533,908914,1,'actress',NULL,'[\"Karen White\"]'),(82533,1495,2,'actor',NULL,'[\"Dr. George Waggner\"]'),(82533,240797,3,'actor',NULL,'[\"Chris\"]'),(82533,831791,4,'actor',NULL,'[\"R. William \'Bill\' Neill\"]'),(82533,1102,5,'director',NULL,NULL),(82533,104707,6,'writer','based on the novel by',NULL),(82533,626,7,'writer','screenplay by',NULL),(82533,935288,8,'writer','screenplay by',NULL),(82533,175662,9,'producer','producer',NULL),(82639,259003,10,'production_designer',NULL,NULL),(82639,232194,1,'actor',NULL,'[\"Harley Dennis\"]'),(82639,178,2,'actress',NULL,'[\"Corinne Burns\"]'),(82639,437914,3,'actress',NULL,'[\"Tracy Burns\"]'),(82639,368,4,'actress',NULL,'[\"Jessica McNeil\"]'),(82639,4693,5,'director',NULL,NULL),(82639,235683,6,'writer','written by',NULL),(82639,5387,7,'producer','producer',NULL),(82639,839732,8,'cinematographer','director of photography',NULL),(82639,71417,9,'editor',NULL,NULL),(82640,668898,10,'producer','producer',NULL),(82640,482,1,'actress',NULL,'[\"Lady Constance Chatterley\"]'),(82640,108470,2,'actor',NULL,'[\"Sir Clifford Chatterley\"]'),(82640,165551,3,'actor',NULL,'[\"Oliver Mellors\"]'),(82640,593129,4,'actress',NULL,'[\"Ivy Bolton\"]'),(82640,415333,5,'director',NULL,NULL),(82640,66939,6,'writer',NULL,NULL),(82640,492692,7,'writer','novel',NULL),(82640,926924,8,'writer',NULL,NULL),(82640,229106,9,'producer','producer',NULL),(82677,594220,10,'production_designer',NULL,NULL),(82677,1215,1,'actor',NULL,'[\"Dr. Larry Roberts\"]'),(82677,336,2,'actor',NULL,'[\"John Reston\"]'),(82677,1138,3,'actress',NULL,'[\"Cindy Fairmont\"]'),(82677,853375,4,'actress',NULL,'[\"Jennifer Long\"]'),(82677,341,5,'director',NULL,NULL),(82677,420291,6,'producer','producer',NULL),(82677,6031,7,'composer',NULL,NULL),(82677,517873,8,'cinematographer',NULL,NULL),(82677,470927,9,'editor',NULL,NULL),(82700,60138,10,'production_designer',NULL,NULL),(82700,518422,1,'actor',NULL,'[\"Mike Logan\"]'),(82700,211526,2,'actress',NULL,'[\"Gloria Davis\"]'),(82700,559770,3,'actor',NULL,'[\"Rudy Davis\"]'),(82700,449625,4,'actress',NULL,'[\"Pat Johnson\"]'),(82700,502391,5,'director',NULL,NULL),(82700,232246,6,'composer',NULL,NULL),(82700,281738,7,'composer',NULL,NULL),(82700,5653,8,'cinematographer','director of photography',NULL),(82700,579631,9,'editor',NULL,NULL),(82714,106924,10,'writer','collaborating writer',NULL),(82714,814773,1,'actor',NULL,'[\"Il marchese Onofrio Del Grillo\",\"Il carbonaio Gasperino\"]'),(82714,832375,2,'actor',NULL,'[\"Il Papa Pio VII\"]'),(82714,73722,3,'actress',NULL,'[\"Olimpia Martin\"]'),(82714,82419,4,'actor',NULL,'[\"Aronne Piperno\"]'),(82714,598102,5,'director',NULL,NULL),(82714,953301,6,'writer','story',NULL),(82714,73053,7,'writer','story',NULL),(82714,207401,8,'writer','story',NULL),(82714,684083,9,'writer','story',NULL),(82719,288761,10,'editor',NULL,NULL),(82719,1807,1,'actress',NULL,'[\"Marva Collins\"]'),(82719,151,2,'actor',NULL,'[\"Clarence Collins\"]'),(82719,934437,3,'actor',NULL,'[\"Martin Luther Jones\"]'),(82719,362708,4,'actress',NULL,'[\"Cindy Collins\"]'),(82719,505697,5,'director',NULL,NULL),(82719,133048,6,'writer','written by',NULL),(82719,392810,7,'producer','producer',NULL),(82719,6150,8,'composer',NULL,NULL),(82719,83723,9,'cinematographer','director of photography',NULL),(82748,547912,10,'cinematographer','director of photography',NULL),(82748,313387,1,'actor',NULL,'[\"Lt. Bracken\"]'),(82748,313519,2,'actress',NULL,'[\"Mary Riggs\"]'),(82748,106394,3,'actor',NULL,'[\"Sgt. Randy Holden\"]'),(82748,700803,4,'actor',NULL,'[\"The Dean\"]'),(82748,685034,5,'director',NULL,NULL),(82748,646782,6,'writer','screenplay',NULL),(82748,523488,7,'writer','screenplay',NULL),(82748,590973,8,'producer','producer',NULL),(82748,665062,9,'composer',NULL,NULL),(82766,49,10,'composer',NULL,NULL),(82766,1159,1,'actress',NULL,'[\"Joan Crawford\"]'),(82766,769311,2,'actress',NULL,'[\"Christina Crawford (Adult)\"]'),(82766,2079,3,'actor',NULL,'[\"Greg Savitt\"]'),(82766,196247,4,'actor',NULL,'[\"L.B. Mayer\"]'),(82766,675068,5,'director',NULL,NULL),(82766,186726,6,'writer','book',NULL),(82766,944747,7,'writer','screenplay',NULL),(82766,396230,8,'writer','screenplay',NULL),(82766,315205,9,'writer','screenplay',NULL),(82776,568918,10,'actress',NULL,'[\"Carol\"]'),(82776,526259,1,'actress',NULL,'[\"Thana\"]'),(82776,6186725,2,'actor',NULL,'[\"Phil\"]'),(82776,802462,3,'actor',NULL,'[\"Albert\"]'),(82776,836479,4,'actress',NULL,'[\"Laurie\"]'),(82776,1206,5,'director',NULL,NULL),(82776,820669,6,'writer','screenplay',NULL),(82776,217137,7,'composer',NULL,NULL),(82776,501419,8,'cinematographer',NULL,NULL),(82776,28608,9,'editor','film editor',NULL),(82783,56319,10,'editor',NULL,NULL),(82783,339737,1,'actor',NULL,'[\"Andre Gregory\"]'),(82783,1728,2,'actor',NULL,'[\"Wallace Shawn\"]'),(82783,501721,3,'actor',NULL,'[\"Waiter\"]'),(82783,125123,4,'actor',NULL,'[\"Bartender\"]'),(82783,1501,5,'director',NULL,NULL),(82783,313434,6,'producer','producer',NULL),(82783,439918,7,'producer','producer',NULL),(82783,790068,8,'composer',NULL,NULL),(82783,764526,9,'cinematographer',NULL,NULL),(82817,689347,10,'producer','producer',NULL),(82817,230,1,'actor',NULL,'[\"Deke DaSilva\"]'),(82817,442,2,'actor',NULL,'[\"Wulfgar\"]'),(82817,1850,3,'actor',NULL,'[\"Matthew Fox\"]'),(82817,905993,4,'actress',NULL,'[\"Irene\"]'),(82817,540330,5,'director',NULL,NULL),(82817,625379,6,'director',NULL,NULL),(82817,787072,7,'writer','screenplay by',NULL),(82817,843128,8,'writer','story by',NULL),(82817,540331,9,'producer','producer',NULL),(82846,938130,10,'editor',NULL,NULL),(82846,31,1,'actress',NULL,'[\"Ethel Thayer\"]'),(82846,20,2,'actor',NULL,'[\"Norman Thayer Jr.\"]'),(82846,404,3,'actress',NULL,'[\"Chelsea Thayer Wayne\"]'),(82846,571630,4,'actor',NULL,'[\"Billy Ray\"]'),(82846,41932,5,'director',NULL,NULL),(82846,860125,6,'writer','screenplay',NULL),(82846,317982,7,'producer','producer',NULL),(82846,6115,8,'composer',NULL,NULL),(82846,930119,9,'cinematographer','director of photography',NULL),(82869,365812,10,'production_designer',NULL,NULL),(82869,125,1,'actor',NULL,'[\"Marshal William T. O\'Niel\"]'),(82869,827973,2,'actress',NULL,'[\"Dr. Marian Lazarus\"]'),(82869,1967,3,'actor',NULL,'[\"Sheppard\"]'),(82869,797725,4,'actor',NULL,'[\"Sergeant Montone\"]'),(82869,1382,5,'director',NULL,NULL),(82869,4345,6,'producer','producer',NULL),(82869,25,7,'composer',NULL,NULL),(82869,3552,8,'cinematographer','director of photography',NULL),(82869,829,9,'editor',NULL,NULL),(82894,188,1,'actor',NULL,'[\"Arthur\"]'),(82894,1613,2,'actress',NULL,'[\"Eileen\"]'),(82894,363888,3,'actress',NULL,'[\"Joan\"]'),(82894,46770,4,'actor',NULL,'[\"The Accordion Man\"]'),(82894,6889,5,'director',NULL,NULL),(82894,693259,6,'writer','written for the screen by',NULL),(82894,443366,7,'producer','producer',NULL),(82894,932336,8,'cinematographer','director of photography',NULL),(82894,548943,9,'editor',NULL,NULL),(82911,352058,10,'production_designer',NULL,NULL),(82911,332052,1,'actor',NULL,'[\"Thommy\"]'),(82911,473252,2,'actor',NULL,'[\"Mike Wachtel\"]'),(82911,357327,3,'actress',NULL,'[\"Frl. Irmgard Wachtel\"]'),(82911,938754,4,'actor',NULL,'[\"Rundfunkintendant\"]'),(82911,351486,5,'director',NULL,NULL),(82911,818567,6,'producer','producer',NULL),(82911,374734,7,'cinematographer',NULL,NULL),(82911,220133,8,'cinematographer',NULL,NULL),(82911,943489,9,'editor',NULL,NULL),(82926,1145,1,'actor',NULL,'[\"Francine Fishpaw\"]'),(82926,2147,2,'actor',NULL,'[\"Todd Tomorrow\"]'),(82926,557298,3,'actress',NULL,'[\"Cuddles Kovinsky\"]'),(82926,760290,4,'actor',NULL,'[\"Elmer Fishpaw\"]'),(82926,691,5,'director',NULL,NULL),(82926,4383,6,'composer',NULL,NULL),(82926,409392,7,'cinematographer',NULL,NULL),(82926,737311,8,'editor',NULL,NULL),(82933,239656,10,'editor',NULL,NULL),(82933,254,1,'actress',NULL,'[\"Anna\",\"Helen\"]'),(82933,554,2,'actor',NULL,'[\"Mark\"]'),(82933,141380,3,'actress',NULL,'[\"Margit Gluckmeister\"]'),(82933,71502,4,'actor',NULL,'[\"Heinrich\"]'),(82933,958558,5,'director',NULL,NULL),(82933,878292,6,'writer','adaptation',NULL),(82933,722052,7,'producer','producer',NULL),(82933,466863,8,'composer',NULL,NULL),(82933,5814,9,'cinematographer',NULL,NULL),(82951,249134,10,'writer','additional dialogue',NULL),(82951,206290,1,'actress',NULL,'[\"Pam MacDonald\"]'),(82951,332752,2,'actor',NULL,'[\"Mark London\"]'),(82951,862937,3,'actor',NULL,'[\"Major Chatham\"]'),(82951,335048,4,'actor',NULL,'[\"Sheriff George Fraser\"]'),(82951,957263,5,'director',NULL,NULL),(82951,503158,6,'writer','screenplay by',NULL),(82951,53493,7,'writer','screenplay by',NULL),(82951,506718,8,'writer','additional dialogue',NULL),(82951,249133,9,'writer','additional dialogue',NULL),(82970,5271,10,'composer',NULL,NULL),(82970,10,1,'actor',NULL,'[\"New York Police Commissioner Rhinelander Waldo\"]'),(82970,1527,2,'actress',NULL,'[\"Evelyn Nesbit\"]'),(82970,738415,3,'actor',NULL,'[\"Coalhouse Walker Jr.\"]'),(82970,374,4,'actor',NULL,'[\"Younger Brother\"]'),(82970,1232,5,'director',NULL,NULL),(82970,230039,6,'writer','based on the novel by',NULL),(82970,919876,7,'writer','screenplay',NULL),(82970,902535,8,'writer','story \"Michael Kohlhaas\"',NULL),(82970,209569,9,'producer','producer',NULL),(82971,2354,10,'composer',NULL,NULL),(82971,148,1,'actor',NULL,'[\"Indy\"]'),(82971,261,2,'actress',NULL,'[\"Marion\"]'),(82971,293550,3,'actor',NULL,'[\"Belloq\"]'),(82971,722636,4,'actor',NULL,'[\"Sallah\"]'),(82971,229,5,'director',NULL,NULL),(82971,1410,6,'writer','screenplay by',NULL),(82971,184,7,'writer','story by',NULL),(82971,442241,8,'writer','story by',NULL),(82971,550881,9,'producer','producer',NULL),(82979,843129,10,'production_designer',NULL,NULL),(82979,886,1,'actor',NULL,'[\"John Reed\"]'),(82979,473,2,'actress',NULL,'[\"Louise Bryant\"]'),(82979,1346,3,'actor',NULL,'[\"Max Eastman\"]'),(82979,467085,4,'actor',NULL,'[\"Grigory Zinoviev\"]'),(82979,341767,5,'writer','written by',NULL),(82979,814227,6,'composer',NULL,NULL),(82979,5886,7,'cinematographer',NULL,NULL),(82979,20441,8,'editor',NULL,NULL),(82979,570947,9,'editor',NULL,NULL),(82992,676286,10,'cinematographer',NULL,NULL),(82992,302,1,'actress',NULL,'[\"Liz Hamilton\"]'),(82992,298,2,'actress',NULL,'[\"Merry Noel Blake\"]'),(82992,782978,3,'actor',NULL,'[\"Doug Blake\"]'),(82992,952,4,'actor',NULL,'[\"Chris Adams\"]'),(82992,2030,5,'director',NULL,NULL),(82992,886668,6,'writer','play',NULL),(82992,43982,7,'writer','screenplay',NULL),(82992,21687,8,'producer','producer',NULL),(82992,16,9,'composer',NULL,NULL),(83067,860972,10,'production_designer',NULL,NULL),(83067,363888,1,'actress',NULL,'[\"Janet Majors\"]'),(83067,2037,2,'actor',NULL,'[\"Brad Majors\",\"Farley Flavors\"]'),(83067,639782,3,'actor',NULL,'[\"Dr. Cosmo McKinley\"]'),(83067,703946,4,'actress',NULL,'[\"Dr. Nation McKinley\"]'),(83067,788940,5,'director',NULL,NULL),(83067,326364,6,'producer','producer',NULL),(83067,366880,7,'composer',NULL,NULL),(83067,597125,8,'cinematographer',NULL,NULL),(83067,66047,9,'editor',NULL,NULL),(83111,203710,10,'editor',NULL,NULL),(83111,1018,1,'actor',NULL,'[\"Spencer\"]'),(83111,959,2,'actor',NULL,'[\"Hardin\"]'),(83111,911542,3,'actor',NULL,'[\"Reece\"]'),(83111,780546,4,'actor',NULL,'[\"Simms\"]'),(83111,1353,5,'director',NULL,NULL),(83111,437393,6,'writer','written by',NULL),(83111,318429,7,'writer','written by',NULL),(83111,176839,8,'composer',NULL,NULL),(83111,489970,9,'cinematographer','director of photography',NULL),(83131,445650,10,'editor',NULL,NULL),(83131,195,1,'actor',NULL,'[\"John\"]'),(83131,1006,2,'actor',NULL,'[\"Ox\"]'),(83131,601,3,'actor',NULL,'[\"Russell\"]'),(83131,643105,4,'actor',NULL,'[\"Sgt. Hulka\"]'),(83131,718645,5,'director',NULL,NULL),(83131,89676,6,'writer','written by',NULL),(83131,325175,7,'writer','written by',NULL),(83131,930,8,'composer',NULL,NULL),(83131,124832,9,'cinematographer','director of photography',NULL),(83137,905062,10,'editor',NULL,NULL),(83137,739680,1,'actress',NULL,'[\"Anni\"]'),(83137,222094,2,'actor',NULL,'[\"Luc\"]'),(83137,70460,3,'actor',NULL,'[\"Matthias\"]'),(83137,917775,4,'actor',NULL,'[\"Jörn\"]'),(83137,761400,5,'director',NULL,NULL),(83137,399131,6,'producer','producer',NULL),(83137,324300,7,'composer',NULL,NULL),(83137,778078,8,'cinematographer',NULL,NULL),(83137,405809,9,'editor',NULL,NULL),(83190,4241,10,'cinematographer','director of photography',NULL),(83190,1001,1,'actor',NULL,'[\"Frank\"]'),(83190,1839,2,'actress',NULL,'[\"Jessie\"]'),(83190,5268,3,'actor',NULL,'[\"Okla\"]'),(83190,902,4,'actor',NULL,'[\"Barry\"]'),(83190,520,5,'director',NULL,NULL),(83190,389821,6,'writer','based on the book \"The Home Invaders\" by',NULL),(83190,988,7,'producer','producer',NULL),(83190,127392,8,'producer','producer',NULL),(83190,1725839,9,'composer',NULL,NULL),(83248,80325,10,'cinematographer',NULL,NULL),(83248,4334,1,'actress',NULL,'[\"Amiran\"]'),(83248,787582,2,'actor',NULL,'[\"Nawab Sultan\"]'),(83248,787462,3,'actor',NULL,'[\"Gohar Mirza\"]'),(83248,44796,4,'actor',NULL,'[\"Faiz Ali\"]'),(83248,19464,5,'director',NULL,NULL),(83248,1718023,6,'writer','novel',NULL),(83248,952067,7,'writer','screenplay and dialogue',NULL),(83248,796503,8,'writer','screenplay and dialogue',NULL),(83248,451541,9,'composer',NULL,NULL),(83284,276238,10,'producer','producer',NULL),(83284,323,1,'actor',NULL,'[\"The Players: England - Capt. John Colby\"]'),(83284,230,2,'actor',NULL,'[\"The Players: U.S.A. - Capt. Robert Hatch\"]'),(83284,671446,3,'actor',NULL,'[\"The Players: Brazil - Cpl. Luis Fernandez\"]'),(83284,600961,4,'actor',NULL,'[\"The Players: England - Terry Brady\"]'),(83284,1379,5,'director',NULL,NULL),(83284,944757,6,'writer','story',NULL),(83284,587429,7,'writer','story',NULL),(83284,536587,8,'writer','story',NULL),(83284,428056,9,'writer','screenplay',NULL),(83511,5428,10,'producer','producer',NULL),(83511,560,1,'actor',NULL,'[\"Jack Cates\"]'),(83511,552,2,'actor',NULL,'[\"Reggie Hammond\"]'),(83511,1578,3,'actress',NULL,'[\"Elaine\"]'),(83511,574433,4,'actor',NULL,'[\"Haden\"]'),(83511,1353,5,'director',NULL,NULL),(83511,6854,6,'writer','written by',NULL),(83511,343419,7,'writer','written by',NULL),(83511,211823,8,'writer','written by',NULL),(83511,330379,9,'producer','producer',NULL),(83564,823256,10,'producer','producer',NULL),(83564,703747,1,'actress',NULL,'[\"Annie\"]'),(83564,1215,2,'actor',NULL,'[\"Daddy Warbucks\"]'),(83564,993,3,'actress',NULL,'[\"Miss Hannigan\"]'),(83564,718237,4,'actress',NULL,'[\"Grace Farrell\"]'),(83564,1379,5,'director',NULL,NULL),(83564,811807,6,'writer','screenplay',NULL),(83564,576070,7,'writer','book of the stage play',NULL),(83564,153377,8,'writer','play',NULL),(83564,336675,9,'writer','comic strip Little Orphan Annie',NULL),(83629,5958,10,'composer',NULL,NULL),(83629,1074,1,'actor',NULL,'[\"Eli MacCleary\"]'),(83629,935,2,'actress',NULL,'[\"Caroline MacCleary\"]'),(83629,166045,3,'actor',NULL,'[\"Michael MacCleary\"]'),(83629,330150,4,'actor',NULL,'[\"Judge Curwin\"]'),(83629,602333,5,'director',NULL,NULL),(83629,276169,6,'writer','screen story and screenplay by',NULL),(83629,506398,7,'writer','based on the novel by',NULL),(83629,76748,8,'producer','producer',NULL),(83629,441925,9,'producer','producer',NULL),(83642,589429,10,'producer','producer',NULL),(83642,608,1,'actor',NULL,'[\"Sheriff Ed Earl Dodd\"]'),(83642,573,2,'actress',NULL,'[\"Mona Stangley\"]'),(83642,1123,3,'actor',NULL,'[\"Melvin\"]'),(83642,1164,4,'actor',NULL,'[\"Governor\"]'),(83642,383359,5,'director',NULL,NULL),(83642,454979,6,'writer','play',NULL),(83642,557751,7,'writer','play',NULL),(83642,102122,8,'producer','producer',NULL),(83642,587558,9,'producer','producer',NULL),(83658,6331,10,'composer',NULL,NULL),(83658,148,1,'actor',NULL,'[\"Deckard\"]'),(83658,442,2,'actor',NULL,'[\"Batty\"]'),(83658,707,3,'actress',NULL,'[\"Rachael\"]'),(83658,1579,4,'actor',NULL,'[\"Gaff\"]'),(83658,631,5,'director',NULL,NULL),(83658,266684,6,'writer','screenplay',NULL),(83658,672459,7,'writer','screenplay',NULL),(83658,1140,8,'writer','novel \"Do Androids Dream of Electric Sheep?\"',NULL),(83658,214303,9,'producer','producer',NULL),(83686,5895,10,'cinematographer',NULL,NULL),(83686,105475,1,'actor',NULL,'[\"François Beretton\"]'),(83686,287637,2,'actress',NULL,'[\"Françoise Beretton\"]'),(83686,521,3,'actress',NULL,'[\"Vic Beretton\"]'),(83686,933727,4,'actor',NULL,'[\"Félix Maréchal\"]'),(83686,684509,5,'director',NULL,NULL),(83686,860019,6,'writer','story',NULL),(83686,202073,7,'producer','producer',NULL),(83686,6019,8,'composer',NULL,NULL),(83686,719200,9,'composer',NULL,NULL),(83722,7037,10,'cinematographer','director of photography',NULL),(83722,176,1,'actress',NULL,'[\"Irena Gallier\"]'),(83722,532,2,'actor',NULL,'[\"Paul Gallier\"]'),(83722,1334,3,'actor',NULL,'[\"Oliver Yates\"]'),(83722,1578,4,'actress',NULL,'[\"Alice Perrin\"]'),(83722,1707,5,'director',NULL,NULL),(83722,90840,6,'writer','based on the story by',NULL),(83722,650276,7,'writer','screenplay by',NULL),(83722,295594,8,'producer','producer',NULL),(83722,2380,9,'composer',NULL,NULL),(83745,343222,10,'production_designer',NULL,NULL),(83745,333,1,'actress',NULL,'[\"Sissy\"]'),(83745,947,2,'actress',NULL,'[\"Joanne\"]'),(83745,6800,3,'actress',NULL,'[\"Mona\"]'),(83745,94048,4,'actress',NULL,'[\"Juanita\"]'),(83745,265,5,'director',NULL,NULL),(83745,333513,6,'writer','play',NULL),(83745,124312,7,'producer','producer',NULL),(83745,5798,8,'cinematographer',NULL,NULL),(83745,742590,9,'editor',NULL,NULL),(83762,102316,10,'editor','supervising film editor',NULL),(83762,183609,1,'actor',NULL,'[\"Countryman\"]'),(83762,445657,2,'actor',NULL,'[\"Bobby Lloyd\"]'),(83762,103470,3,'actor',NULL,'[\"Captain Benchley\"]'),(83762,443829,4,'actor',NULL,'[\"Colonel Sinclair\"]'),(83762,423422,5,'director',NULL,NULL),(83762,859241,6,'writer','screenplay',NULL),(83762,85889,7,'producer','producer',NULL),(83762,45954,8,'composer',NULL,NULL),(83762,152683,9,'cinematographer','director of photography',NULL),(83791,486127,10,'production_designer',NULL,NULL),(83791,1345,1,'actor',NULL,'[\"Jen, a Gelfling (performer)\",\"High Priest, Ritual Master (performer)\"]'),(83791,612020,2,'actress',NULL,'[\"Kira, a Gelfling (performer)\"]'),(83791,568,3,'actor',NULL,'[\"Aughra, a Keeper Of Secrets (performer)\",\"Chamberlain (performer)\"]'),(83791,324397,4,'actor',NULL,'[\"Fizzgig, a Friendly Monster (performer)\",\"General, Garthim Master (performer)\"]'),(83791,643973,5,'writer','screenplay by',NULL),(83791,476030,6,'producer','producer',NULL),(83791,2303,7,'composer',NULL,NULL),(83791,5807,8,'cinematographer','director of photography',NULL),(83791,447469,9,'editor','film editor',NULL),(83806,5647,10,'cinematographer','director of photography',NULL),(83806,323,1,'actor',NULL,'[\"Sidney Bruhl\"]'),(83806,1659,2,'actor',NULL,'[\"Clifford Anderson\"]'),(83806,1007,3,'actress',NULL,'[\"Myra Bruhl\"]'),(83806,941683,4,'actress',NULL,'[\"Helga ten Dorp\"]'),(83806,1486,5,'director',NULL,NULL),(83806,505615,6,'writer','based on the stage play by',NULL),(83806,696319,7,'writer','screenplay by',NULL),(83806,364509,8,'producer','producer',NULL),(83806,6184,9,'composer',NULL,NULL),(83824,362647,10,'editor',NULL,NULL),(83824,173354,1,'actor',NULL,'[\"Ben-Hur Marcel\",\"Aminemephet\"]'),(83824,785664,2,'actor',NULL,'[\"César\"]'),(83824,946179,3,'actor',NULL,'[\"Paulus\"]'),(83824,264554,4,'actress',NULL,'[\"Laetitia\"]'),(83824,69893,5,'producer','producer',NULL),(83824,1945,6,'producer','producer',NULL),(83824,18139,7,'composer',NULL,NULL),(83824,5919,8,'cinematographer',NULL,NULL),(83824,217959,9,'editor',NULL,NULL),(83833,511742,10,'editor',NULL,NULL),(83833,430,1,'actor',NULL,'[\"Eddie\"]'),(83833,620,2,'actor',NULL,'[\"Boogie\"]'),(83833,102,3,'actor',NULL,'[\"Fenwick\"]'),(83833,827663,4,'actor',NULL,'[\"Shrevie\"]'),(83833,1469,5,'director',NULL,NULL),(83833,5545,6,'producer','producer',NULL),(83833,111021,7,'composer',NULL,NULL),(83833,469380,8,'composer',NULL,NULL),(83833,816292,9,'cinematographer','director of photography',NULL),(83851,1891,1,'actor',NULL,'[\"R Neville\",\"Mr Neville\"]'),(83851,840531,2,'actress',NULL,'[\"Virginia Herbert\",\"Mrs Herbert\"]'),(83851,483069,3,'actress',NULL,'[\"Mrs. Talmann\",\"Mrs. Herbert\'s daughter\"]'),(83851,292140,4,'actor',NULL,'[\"Mr Talmann\",\"Mrs. Herbert\'s son-in-law\"]'),(83851,425,5,'director',NULL,NULL),(83851,668293,6,'producer','producer',NULL),(83851,6219,7,'composer',NULL,NULL),(83851,163797,8,'cinematographer',NULL,NULL),(83851,933622,9,'editor',NULL,NULL),(83866,514746,10,'editor',NULL,NULL),(83866,1794,1,'actor',NULL,'[\"Elliott\"]'),(83866,106,2,'actress',NULL,'[\"Gertie\"]'),(83866,1075,3,'actor',NULL,'[\"Keys\"]'),(83866,908914,4,'actress',NULL,'[\"Mary\"]'),(83866,229,5,'director',NULL,NULL),(83866,558953,6,'writer','written by',NULL),(83866,5086,7,'producer','producer',NULL),(83866,2354,8,'composer',NULL,NULL),(83866,5679,9,'cinematographer','director of photography',NULL),(83907,132257,1,'actor',NULL,'[\"Ashley \'Ash\' J. Williams\"]'),(83907,762445,2,'actress',NULL,'[\"Cheryl\"]'),(83907,217822,3,'actor',NULL,'[\"Scott\"]'),(83907,48260,4,'actress',NULL,'[\"Linda\"]'),(83907,600,5,'director',NULL,NULL),(83907,849964,6,'producer','executive producer',NULL),(83907,6173,7,'composer',NULL,NULL),(83907,680924,8,'cinematographer',NULL,NULL),(83907,666819,9,'editor','film editor',NULL),(83908,329545,10,'producer','producer',NULL),(83908,1811,1,'actor',NULL,'[\"Hercule Poirot\"]'),(83908,51,2,'actor',NULL,'[\"Odell Gardener\"]'),(83908,1749,3,'actress',NULL,'[\"Daphne Castle\"]'),(83908,86780,4,'actor',NULL,'[\"Sir Horace Blatt\"]'),(83908,357891,5,'director',NULL,NULL),(83908,787289,6,'writer','screenplay',NULL),(83908,2005,7,'writer','novel',NULL),(83908,761958,8,'writer',NULL,NULL),(83908,102646,9,'producer','producer',NULL),(83922,349776,1,'actor',NULL,'[\"Alexander Ekdahl - Ekdahlska huset\"]'),(83922,21655,2,'actress',NULL,'[\"Fanny Ekdahl - Ekdahlska huset\"]'),(83922,12358,3,'actress',NULL,'[\"Siri - Ekdahlska huset\"]'),(83922,14062,4,'actor',NULL,'[\"Carl Ekdahl - Ekdahlska huset\"]'),(83922,5,5,'director',NULL,NULL),(83922,232807,6,'producer','producer',NULL),(83922,68126,7,'composer',NULL,NULL),(83922,5815,8,'cinematographer',NULL,NULL),(83922,408748,9,'editor',NULL,NULL),(83929,420838,10,'editor',NULL,NULL),(83929,576,1,'actor',NULL,'[\"Jeff Spicoli\"]'),(83929,492,2,'actress',NULL,'[\"Stacy Hamilton\"]'),(83929,1662,3,'actor',NULL,'[\"Brad Hamilton\"]'),(83929,1680,4,'actor',NULL,'[\"Mike Damone\"]'),(83929,2132,5,'director',NULL,NULL),(83929,1081,6,'writer','screenplay',NULL),(83929,44363,7,'producer','producer',NULL),(83929,513165,8,'producer','producer',NULL),(83929,5772,9,'cinematographer','director of photography',NULL),(83942,1568824,10,'actress',NULL,'[\"La mère de Bah\"]'),(83942,803085,1,'actor',NULL,'[\"Bah\"]'),(83942,347546,2,'actor',NULL,'[\"Batrou\"]'),(83942,445185,3,'actor',NULL,'[\"Le Gouverneur Sangaré\"]'),(83942,765501,4,'actor',NULL,'[\"le grand-père de Bah\"]'),(83942,162878,5,'director',NULL,NULL),(83942,142104,6,'cinematographer',NULL,NULL),(83942,202505,7,'editor',NULL,NULL),(83942,224822,8,'actor',NULL,'[\"La Troisième épouse\"]'),(83942,162873,9,'actor',NULL,'[\"Seydou\"]'),(83944,25,10,'composer',NULL,NULL),(83944,230,1,'actor',NULL,'[\"Rambo\"]'),(83944,1133,2,'actor',NULL,'[\"Teasle\"]'),(83944,1077,3,'actor',NULL,'[\"Trautman\"]'),(83944,571853,4,'actor',NULL,'[\"Kern\"]'),(83944,467646,5,'director',NULL,NULL),(83944,606251,6,'writer','based on the novel by',NULL),(83944,468997,7,'writer','screenplay by',NULL),(83944,755266,8,'writer','screenplay by',NULL),(83944,270809,9,'producer','producer',NULL),(83959,433200,10,'composer',NULL,NULL),(83959,6956,1,'actor',NULL,'[\"Mike Colby\"]'),(83959,242382,2,'actress',NULL,'[\"Tracy Baxter\"]'),(83959,6347,3,'actress',NULL,'[\"Dr. Barbara Glaser\"]'),(83959,157607,4,'actor',NULL,'[\"Dr. Gordon Hauser\"]'),(83959,392833,5,'director',NULL,NULL),(83959,192779,6,'writer','screenplay by',NULL),(83959,691061,7,'writer','story by',NULL),(83959,731992,8,'writer','story by',NULL),(83959,339,9,'producer','producer',NULL),(83967,290,10,'composer',NULL,NULL),(83967,1448,1,'actress',NULL,'[\"Frances Farmer\"]'),(83967,52186,2,'actor',NULL,'[\"Hitchhiker\"]'),(83967,58783,3,'actress',NULL,'[\"Studio Stylist\"]'),(83967,110385,4,'actor',NULL,'[\"Desk Sergeant\"]'),(83967,166625,5,'director',NULL,NULL),(83967,75015,6,'writer','written by',NULL),(83967,212246,7,'writer','written by',NULL),(83967,443582,8,'writer','written by',NULL),(83967,762674,9,'producer','producer',NULL),(83972,192446,10,'writer','based upon characters created by',NULL),(83972,454011,1,'actress',NULL,'[\"Chris\"]'),(83972,767394,2,'actress',NULL,'[\"Debbie\"]'),(83972,111777,3,'actor',NULL,'[\"Jason\"]'),(83972,50676,4,'actor',NULL,'[\"State Trooper #2\"]'),(83972,591171,5,'director',NULL,NULL),(83972,457725,6,'writer','screenplay by',NULL),(83972,914536,7,'writer','screenplay by',NULL),(83972,566699,8,'writer','based upon characters created by',NULL),(83972,413826,9,'writer','based upon characters created by',NULL),(83987,89182,10,'editor',NULL,NULL),(83987,1426,1,'actor',NULL,'[\"Mahatma Gandhi\"]'),(83987,24,2,'actor',NULL,'[\"Lord Irwin\"]'),(83987,368990,3,'actress',NULL,'[\"Kasturba Gandhi\"]'),(83987,786022,4,'actor',NULL,'[\"Pandit Nehru\"]'),(83987,277,5,'director',NULL,NULL),(83987,109300,6,'writer','written by',NULL),(83987,788170,7,'composer',NULL,NULL),(83987,853111,8,'cinematographer','director of photography',NULL),(83987,930119,9,'cinematographer','director of photography',NULL),(84021,830164,10,'producer','producer',NULL),(84021,201,1,'actress',NULL,'[\"Stephanie\"]'),(84021,1028,2,'actor',NULL,'[\"Michael\"]'),(84021,5167,3,'actress',NULL,'[\"Paulette\"]'),(84021,853808,4,'actress',NULL,'[\"Sharon\"]'),(84021,83279,5,'director',NULL,NULL),(84021,277946,6,'writer','written by',NULL),(84021,414448,7,'writer','characters',NULL),(84021,143558,8,'writer','characters',NULL),(84021,139591,9,'producer','producer',NULL),(84090,779346,10,'composer',NULL,NULL),(84090,164975,1,'actor',NULL,'[\"Mark\"]'),(84090,39066,2,'actress',NULL,'[\"Holly\"]'),(84090,883,3,'actress',NULL,'[\"Kate\"]'),(84090,342708,4,'actor',NULL,'[\"Gary\"]'),(84090,912981,5,'director',NULL,NULL),(84090,539438,6,'writer','screenplay',NULL),(84090,539431,7,'writer','screenplay',NULL),(84090,330545,8,'producer','producer',NULL),(84090,817506,9,'producer','producer',NULL),(84234,598413,1,'actor',NULL,'[\"Gary\"]'),(84234,291404,2,'actress',NULL,'[\"Karen\"]'),(84234,31078,3,'actor',NULL,'[\"Rick\"]'),(84234,747806,4,'actor',NULL,'[\"David\"]'),(84234,203246,5,'director',NULL,NULL),(84234,322946,6,'producer','producer',NULL),(84234,324875,7,'producer','producer',NULL),(84234,4229,8,'cinematographer','director of photography',NULL),(84234,203254,9,'editor',NULL,NULL),(84237,313,1,'actor',NULL,'[\"Prince Lir\"]'),(84237,1201,2,'actress',NULL,'[\"Unicorn\",\"Amalthea\"]'),(84237,1450,3,'actress',NULL,'[\"Mommy Fortuna\"]'),(84237,273,4,'actor',NULL,'[\"Schmendrick\"]'),(84237,60072,5,'director',NULL,NULL),(84237,710230,6,'director',NULL,NULL),(84237,63566,7,'writer','screenplay',NULL),(84237,916158,8,'composer',NULL,NULL),(84237,452217,9,'editor',NULL,NULL),(84335,507561,10,'producer','producer',NULL),(84335,493,1,'actor',NULL,'[\"Ed Horman\"]'),(84335,651,2,'actress',NULL,'[\"Beth Horman\"]'),(84335,563039,3,'actress',NULL,'[\"Terry Simon\"]'),(84335,790291,4,'actor',NULL,'[\"Charles Horman\"]'),(84335,2020,5,'director',NULL,NULL),(84335,829329,6,'writer','screenplay',NULL),(84335,369564,7,'writer','based on the book: \"Missing\"',NULL),(84335,629615,8,'writer',NULL,NULL),(84335,507151,9,'producer','producer',NULL),(84352,1204,10,'writer','additional material',NULL),(84352,92,1,'actor',NULL,'[\"First Barbter\",\"Wrestling commentator\",\"Pope Julius II\"]'),(84352,1589,2,'actor',NULL,'[\"Polinski\",\"Emcee\",\"Third Bruce\"]'),(84352,1385,3,'actor',NULL,'[\"Michelangelo\",\"Brewer\",\"First Bruce\"]'),(84352,1037,4,'actor',NULL,'[\"Second Barber\",\"Colin \'Bomber\' Harris\",\"Pope\'s Servant\"]'),(84352,400958,5,'director',NULL,NULL),(84352,534084,6,'director',NULL,NULL),(84352,416,7,'writer','written by',NULL),(84352,1402,8,'writer','written by',NULL),(84352,111756,9,'writer','additional material',NULL),(84358,88346,10,'composer',NULL,NULL),(84358,785664,1,'actor',NULL,'[\"Beauvoir, The \'Eye\'\"]'),(84358,254,2,'actress',NULL,'[\"Catherine Leiris\",\"Lucie Brentano - \'Marie\'\"]'),(84358,545383,3,'actor',NULL,'[\"L\'homme pâle\",\"The pale man\"]'),(84358,804,4,'actress',NULL,'[\"The grey lady\"]'),(84358,2218,5,'director',NULL,NULL),(84358,66939,6,'writer','novel \"The Eye of the Beholder\"',NULL),(84358,2192,7,'writer','scenario',NULL),(84358,2191,8,'writer','scenario',NULL),(84358,340199,9,'producer','producer',NULL),(84390,1050006,10,'cinematographer',NULL,NULL),(84390,644523,1,'actor',NULL,'[\"Tatsuhei\"]'),(84390,757102,2,'actress',NULL,'[\"Orin\"]'),(84390,383094,3,'actor',NULL,'[\"Risuke\"]'),(84390,15310,4,'actress',NULL,'[\"Tamayan\"]'),(84390,408076,5,'director',NULL,NULL),(84390,265792,6,'writer','novel',NULL),(84390,476187,7,'producer','producer',NULL),(84390,866930,8,'producer','producer',NULL),(84390,407412,9,'composer',NULL,NULL),(84434,957038,10,'editor',NULL,NULL),(84434,152,1,'actor',NULL,'[\"Zack Mayo\"]'),(84434,700,2,'actress',NULL,'[\"Paula Pokrifki\"]'),(84434,1418,3,'actor',NULL,'[\"Sid Worley\"]'),(84434,5162,4,'actor',NULL,'[\"Byron Mayo\"]'),(84434,431,5,'director',NULL,NULL),(84434,829343,6,'writer','written by',NULL),(84434,253292,7,'producer','producer',NULL),(84434,6217,8,'composer',NULL,NULL),(84434,4241,9,'cinematographer','director of photography',NULL),(84481,184170,10,'cinematographer',NULL,NULL),(84481,1376,1,'actress',NULL,'[\"Isabelle\"]'),(84481,778016,2,'actress',NULL,'[\"Hanna\"]'),(84481,681566,3,'actor',NULL,'[\"Michel Boulard\"]'),(84481,705956,4,'actor',NULL,'[\"Jerzy\"]'),(84481,419,5,'director',NULL,NULL),(84481,140643,6,'writer',NULL,NULL),(84481,53290,7,'producer','producer',NULL),(84481,487748,8,'producer','producer',NULL),(84481,547376,9,'producer','producer',NULL),(84503,606402,10,'production_designer',NULL,NULL),(84503,2097,1,'actor',NULL,'[\"Pink\"]'),(84503,362959,2,'actress',NULL,'[\"Pink\'s Mother\"]'),(84503,491190,3,'actor',NULL,'[\"J.A. Pinkerton (Pink\'s Father)\"]'),(84503,202870,4,'actress',NULL,'[\"Pink\'s Wife\"]'),(84503,570,5,'director',NULL,NULL),(84503,914166,6,'writer','album \"The Wall\"',NULL),(84503,550728,7,'producer','producer',NULL),(84503,84695,8,'cinematographer','director of photography',NULL),(84503,357421,9,'editor',NULL,NULL),(84516,25,10,'composer',NULL,NULL),(84516,1851,1,'actress',NULL,'[\"Diane Freeling\"]'),(84516,1576,2,'actress',NULL,'[\"Carol Anne Freeling\"]'),(84516,5266,3,'actor',NULL,'[\"Steve Freeling\"]'),(84516,833152,4,'actress',NULL,'[\"Dr. Lesh\"]'),(84516,1361,5,'director',NULL,NULL),(84516,229,6,'writer','screenplay by',NULL),(84516,334457,7,'writer','screenplay by',NULL),(84516,896131,8,'writer','screenplay by',NULL),(84516,550881,9,'producer','producer',NULL),(84522,170788,10,'editor',NULL,NULL),(84522,597517,1,'actor',NULL,'[\"Pee Wee\"]'),(84522,380628,2,'actor',NULL,'[\"Billy\"]'),(84522,461129,3,'actor',NULL,'[\"Tommy\"]'),(84522,934059,4,'actor',NULL,'[\"Mickey\"]'),(84522,163706,5,'director',NULL,NULL),(84522,138502,6,'producer','producer',NULL),(84522,6344,7,'composer',NULL,NULL),(84522,957293,8,'composer',NULL,NULL),(84522,5808,9,'cinematographer','director of photography',NULL),(84548,532772,10,'editor',NULL,NULL),(84548,417370,1,'actress',NULL,'[\"Antonina \'Tonia\' Dziwisz\"]'),(84548,272295,2,'actor',NULL,'[\"Lieutenant Morawski\"]'),(84548,301515,3,'actor',NULL,'[\"Major Zawada \\\"Kapielowy\\\"\"]'),(84548,2140,4,'actress',NULL,'[\"Communist Witkowska\"]'),(84548,3794,5,'director',NULL,NULL),(84548,245913,6,'writer','writer',NULL),(84548,237747,7,'producer','producer',NULL),(84548,953048,8,'composer',NULL,NULL),(84548,678456,9,'cinematographer',NULL,NULL),(84589,623838,10,'cinematographer',NULL,NULL),(84589,367,1,'actor',NULL,'[\"Arnaud du Tihl dit Pansette\"]'),(84589,882,2,'actress',NULL,'[\"Bertrande de Rols\"]'),(84589,57428,3,'actor',NULL,'[\"Pierre Guerre\"]'),(84589,232627,4,'actor',NULL,'[\"Le vrai Martin Guerre\"]'),(84589,897045,5,'director',NULL,NULL),(84589,140643,6,'writer',NULL,NULL),(84589,507312,7,'writer','novel \"The Wife of Martin Guerre\"',NULL),(84589,954790,8,'writer',NULL,NULL),(84589,6233,9,'composer',NULL,NULL),(84602,956699,10,'editor','film editor',NULL),(84602,230,1,'actor',NULL,'[\"Rocky Balboa\"]'),(84602,1735,2,'actress',NULL,'[\"Adrian\"]'),(84602,949350,3,'actor',NULL,'[\"Paulie\"]'),(84602,1835,4,'actor',NULL,'[\"Apollo Creed\"]'),(84602,153590,5,'producer','producer',NULL),(84602,5563,6,'producer','producer',NULL),(84602,6015,7,'composer',NULL,NULL),(84602,124832,8,'cinematographer','director of photography',NULL),(84602,912536,9,'editor','film editor',NULL),(84637,5773,10,'cinematographer','director of photography',NULL),(84637,762,1,'actor',NULL,'[\"Sir Percy Blakeney\",\"The Scarlet Pimpernel\"]'),(84637,5412,2,'actress',NULL,'[\"Marguerite St. Just\"]'),(84637,5212,3,'actor',NULL,'[\"Chauvelin\"]'),(84637,898376,4,'actor',NULL,'[\"Baron de Batz\"]'),(84637,232795,5,'director',NULL,NULL),(84637,60378,6,'writer','teleplay',NULL),(84637,649478,7,'writer','novels \"The Scarlet Pimpernel\" and \"Eldorado\"',NULL),(84637,175804,8,'producer','producer',NULL),(84637,5963,9,'composer',NULL,NULL),(84649,27011,10,'writer',NULL,NULL),(84649,366946,1,'actress',NULL,'[\"Mrs. Brisby\"]'),(84649,1394,2,'actor',NULL,'[\"Nicodemus\"]'),(84649,1123,3,'actor',NULL,'[\"Jeremy\"]'),(84649,539395,4,'actor',NULL,'[\"Mr. Ages\"]'),(84649,89940,5,'director',NULL,NULL),(84649,639791,6,'writer','novel \"Mrs. Frisby and the Rats of NIMH\"',NULL),(84649,690112,7,'writer','story adaptation',NULL),(84649,325776,8,'writer','story adaptation',NULL),(84649,278181,9,'writer','story adaptation',NULL),(84690,869198,10,'cinematographer','director of photography',NULL),(84690,737006,1,'actor',NULL,'[\"Brewster Baker\"]'),(84690,178,2,'actress',NULL,'[\"Breezy\"]'),(84690,1292,3,'actress',NULL,'[\"Lilah\"]'),(84690,179224,4,'actor',NULL,'[\"Sheriff\"]'),(84690,677951,5,'director',NULL,NULL),(84690,555549,6,'writer','written by',NULL),(84690,559808,7,'writer','written by',NULL),(84690,872805,8,'producer','producer',NULL),(84690,288913,9,'composer',NULL,NULL),(84695,584445,1,'actress',NULL,'[\"Trish\"]'),(84695,830241,2,'actress',NULL,'[\"Valerie\"]'),(84695,898252,3,'actor',NULL,'[\"Russ Thorn\"]'),(84695,217231,4,'actress',NULL,'[\"Kim\"]'),(84695,427468,5,'director',NULL,NULL),(84695,114522,6,'writer','written by',NULL),(84695,429058,7,'composer',NULL,NULL),(84695,692675,8,'cinematographer','director of photography',NULL),(84695,3601760,9,'editor',NULL,NULL),(84698,451006,10,'cinematographer','director of photography',NULL),(84698,75857,1,'actress',NULL,'[\"Wren\"]'),(84698,726901,2,'actor',NULL,'[\"Paul\"]'),(84698,375176,3,'actor',NULL,'[\"Eric\"]'),(84698,221631,4,'actress',NULL,'[\"Cecile\"]'),(84698,782384,5,'director',NULL,NULL),(84698,638913,6,'writer','story',NULL),(84698,39468,7,'writer','screenplay',NULL),(84698,580268,8,'composer',NULL,NULL),(84698,589777,9,'composer',NULL,NULL),(84707,521554,10,'editor','film editor',NULL),(84707,658,1,'actress',NULL,'[\"Sophie Zawistowski\"]'),(84707,177,2,'actor',NULL,'[\"Nathan Landau\"]'),(84707,1493,3,'actor',NULL,'[\"Stingo\"]'),(84707,439334,4,'actress',NULL,'[\"Yetta Zimmerman\"]'),(84707,1587,5,'director',NULL,NULL),(84707,836612,6,'writer','based on the novel: \"Sophie\'s Choice\" by',NULL),(84707,54712,7,'producer','producer',NULL),(84707,6121,8,'composer',NULL,NULL),(84707,743,9,'cinematographer','director of photography',NULL),(84725,6155,10,'composer',NULL,NULL),(84725,307255,1,'actor',NULL,'[\"Gordon\"]'),(84725,2087,2,'actor',NULL,'[\"Joe\"]'),(84725,918315,3,'actress',NULL,'[\"Anna\"]'),(84725,667414,4,'actress',NULL,'[\"Joan\"]'),(84725,694,5,'director',NULL,NULL),(84725,469650,6,'writer','screenplay',NULL),(84725,7645119,7,'writer','writer',NULL),(84725,797325,8,'producer','producer',NULL),(84725,464,9,'composer',NULL,NULL),(84726,758591,10,'producer','producer',NULL),(84726,638,1,'actor',NULL,'[\"Kirk\"]'),(84726,559,2,'actor',NULL,'[\"Spock\"]'),(84726,1420,3,'actor',NULL,'[\"McCoy\"]'),(84726,1150,4,'actor',NULL,'[\"Scotty\"]'),(84726,583292,5,'director',NULL,NULL),(84726,734472,6,'writer','based on Star Trek created by',NULL),(84726,816348,7,'writer','screenplay by',NULL),(84726,71790,8,'writer','story by',NULL),(84726,670268,9,'writer','story by',NULL),(84745,102801,10,'editor',NULL,NULL),(84745,431139,1,'actor',NULL,'[\"Arcane\"]'),(84745,105,2,'actress',NULL,'[\"Alice Cable\"]'),(84745,936403,3,'actor',NULL,'[\"Dr. Alec Holland\"]'),(84745,381450,4,'actor',NULL,'[\"Ferret\"]'),(84745,127,5,'director',NULL,NULL),(84745,578195,6,'producer','producer',NULL),(84745,882388,7,'producer','producer',NULL),(84745,6185,8,'composer',NULL,NULL),(84745,338577,9,'cinematographer','director of photography',NULL),(84777,5907,10,'cinematographer','director of photography',NULL),(84777,290047,1,'actor',NULL,'[\"Peter Neal\"]'),(84777,312575,2,'actor',NULL,'[\"Detective Germani\"]'),(84777,768334,3,'actor',NULL,'[\"Bullmer\"]'),(84777,630453,4,'actress',NULL,'[\"Anne\"]'),(84777,783,5,'director',NULL,NULL),(84777,34483,6,'producer','producer',NULL),(84777,603094,7,'composer',NULL,NULL),(84777,683064,8,'composer',NULL,NULL),(84777,6294,9,'composer',NULL,NULL),(84783,5923,10,'cinematographer','director of photography',NULL),(84783,369,1,'actor',NULL,'[\"Tex McCormick\"]'),(84783,582773,2,'actor',NULL,'[\"Mason McCormick\"]'),(84783,672,3,'actress',NULL,'[\"Jamie Collins\"]'),(84783,571853,4,'actor',NULL,'[\"Pop McCormick\"]'),(84783,6853,5,'director',NULL,NULL),(84783,386023,6,'writer','novel',NULL),(84783,351919,7,'writer','screenplay',NULL),(84783,957030,8,'producer','producer',NULL),(84783,6043,9,'composer',NULL,NULL),(84787,1553,10,'composer',NULL,NULL),(84787,621,1,'actor',NULL,'[\"MacReady\"]'),(84787,979,2,'actor',NULL,'[\"Dr. Blair\"]'),(84787,202966,3,'actor',NULL,'[\"Childs\"]'),(84787,557956,4,'actor',NULL,'[\"Clark\"]'),(84787,118,5,'director',NULL,NULL),(84787,484111,6,'writer','screenplay',NULL),(84787,132168,7,'writer','story',NULL),(84787,287759,8,'producer','producer',NULL),(84787,877274,9,'producer','producer',NULL),(84805,307561,10,'writer',NULL,NULL),(84805,163,1,'actor',NULL,'[\"Michael Dorsey\",\"Dorothy Michaels\"]'),(84805,1448,2,'actress',NULL,'[\"Julie Nichols\"]'),(84805,414,3,'actress',NULL,'[\"Sandy Lester\"]'),(84805,1056,4,'actor',NULL,'[\"Ron Carlisle\"]'),(84805,1628,5,'director',NULL,NULL),(84805,570190,6,'writer','story by',NULL),(84805,312205,7,'writer','story by',NULL),(84805,772003,8,'writer','screenplay by',NULL),(84805,1469,9,'writer',NULL,NULL),(84827,517521,10,'cinematographer','director of photography',NULL),(84827,313,1,'actor',NULL,'[\"Kevin Flynn\",\"Clu\"]'),(84827,310,2,'actor',NULL,'[\"Alan Bradley\",\"Tron\"]'),(84827,1831,3,'actor',NULL,'[\"Ed Dillinger\",\"Sark\",\"Master Control Program\"]'),(84827,604563,4,'actress',NULL,'[\"Lora\",\"Yori\"]'),(84827,513974,5,'director',NULL,NULL),(84827,531381,6,'writer','story',NULL),(84827,351919,7,'writer','screenplay',NULL),(84827,476291,8,'producer','producer',NULL),(84827,137793,9,'composer',NULL,NULL),(84855,5573,10,'producer','producer',NULL),(84855,56,1,'actor',NULL,'[\"Frank Galvin\"]'),(84855,1648,2,'actress',NULL,'[\"Laura Fischer\"]'),(84855,912001,3,'actor',NULL,'[\"Mickey Morrissey\"]'),(84855,51,4,'actor',NULL,'[\"Ed Concannon\"]'),(84855,1486,5,'director',NULL,NULL),(84855,715312,6,'writer','based upon the novel by',NULL),(84855,519,7,'writer','screenplay',NULL),(84855,696319,8,'writer',NULL,NULL),(84855,113360,9,'producer','producer',NULL),(84865,124117,10,'cinematographer','director of photography',NULL),(84865,267,1,'actress',NULL,'[\"Victoria Grant\"]'),(84865,1258,2,'actor',NULL,'[\"King Marchand\"]'),(84865,696481,3,'actor',NULL,'[\"Carole \\\"Toddy\\\" Todd\"]'),(84865,690,4,'actress',NULL,'[\"Norma Cassady\"]'),(84865,1175,5,'director',NULL,NULL),(84865,388502,6,'writer','concept',NULL),(84865,778306,7,'writer',NULL,NULL),(84865,11407,8,'producer','producer',NULL),(84865,49,9,'composer',NULL,NULL),(84904,704042,1,'actor',NULL,'[\"Raymond \'Zoro\'\"]'),(84904,264411,2,'actress',NULL,'[\"Rose \'Lady Bug\'\"]'),(84904,292735,3,'actor',NULL,'[\"\'Phade\'\"]'),(84904,40098,4,'actress',NULL,'[\"Virginia\"]'),(84904,13869,5,'director',NULL,NULL),(84904,825421,6,'composer',NULL,NULL),(84904,203275,7,'cinematographer',NULL,NULL),(84904,2318,8,'cinematographer',NULL,NULL),(84904,114728,9,'editor',NULL,NULL),(84917,745450,10,'editor',NULL,NULL),(84917,245,1,'actor',NULL,'[\"T.S. Garp\"]'),(84917,2148,2,'actress',NULL,'[\"Helen Holm\"]'),(84917,335,3,'actress',NULL,'[\"Jenny Fields\"]'),(84917,1475,4,'actor',NULL,'[\"Roberta Muldoon\"]'),(84917,1351,5,'director',NULL,NULL),(84917,410288,6,'writer','novel',NULL),(84917,856270,7,'writer','screenplay',NULL),(84917,186683,8,'producer','producer',NULL),(84917,5816,9,'cinematographer','director of photography',NULL),(85218,411060,10,'cinematographer',NULL,NULL),(85218,594506,1,'actor',NULL,'[\"Gen\"]'),(85218,61486,2,'actress',NULL,'[\"Gen (1995)\"]'),(85218,1455862,3,'actress',NULL,'[\"Kimie\"]'),(85218,606599,4,'actress',NULL,'[\"Kimie (1995)\"]'),(85218,556048,5,'director',NULL,NULL),(85218,620451,6,'writer','manga',NULL),(85218,2355692,7,'producer','producer',NULL),(85218,2354163,8,'producer','producer',NULL),(85218,352600,9,'composer',NULL,NULL),(85231,842794,1,'actress',NULL,'[\"Grace Bradley\"]'),(85231,203768,2,'actor',NULL,'[\"Bob Bradley\"]'),(85231,390604,3,'actor',NULL,'[\"Rev. Hopkins\"]'),(85231,18359,4,'actor',NULL,'[\"Charlie Bradley\"]'),(85231,769615,5,'director',NULL,NULL),(85231,732393,6,'writer','teleplay by',NULL),(85231,253759,7,'composer',NULL,NULL),(85231,113497,8,'cinematographer',NULL,NULL),(85231,89805,9,'editor',NULL,NULL),(85250,296217,10,'cinematographer',NULL,NULL),(85250,2098,1,'actress',NULL,'[\"Emanuelle Arsan\"]'),(85250,864081,2,'actor',NULL,'[\"Crazy Boy Henderson\"]'),(85250,282954,3,'actress',NULL,'[\"Albina\"]'),(85250,738928,4,'actress',NULL,'[\"Laura\"]'),(85250,559769,5,'director',NULL,NULL),(85250,507072,6,'director',NULL,NULL),(85250,238489,7,'writer','co-writer',NULL),(85250,289576,8,'writer','writer',NULL),(85250,147575,9,'composer',NULL,NULL),(85267,393157,1,'actress',NULL,'[\"Honey\"]'),(85267,77855,2,'actress',NULL,'[\"Isabel\"]'),(85267,766392,3,'actress',NULL,'[\"Adelaide Norris\"]'),(85267,448033,4,'actress',NULL,'[\"Zella Wylie\"]'),(85267,1962,5,'director',NULL,NULL),(85267,101130,6,'writer','story',NULL),(85267,763263,7,'cinematographer',NULL,NULL),(85276,259567,10,'producer','producer',NULL),(85276,152,1,'actor',NULL,'[\"Jesse\"]'),(85276,438585,2,'actress',NULL,'[\"Monica\"]'),(85276,582586,3,'actor',NULL,'[\"Birnbaum\"]'),(85276,752636,4,'actor',NULL,'[\"Lt. Parmental\"]'),(85276,564319,5,'director',NULL,NULL),(85276,76,6,'writer','story \"A Bout De Souffle\"',NULL),(85276,419,7,'writer','screenplay \"A Bout De Souffle\"',NULL),(85276,141281,8,'writer','screenplay',NULL),(85276,1031,9,'writer','story \"A Bout De Souffle\"',NULL),(85333,5805,10,'cinematographer','director of photography',NULL),(85333,330360,1,'actor',NULL,'[\"Arnie\"]'),(85333,7082,2,'actor',NULL,'[\"Dennis\"]'),(85333,575,3,'actress',NULL,'[\"Leigh\"]'),(85333,698764,4,'actor',NULL,'[\"Darnell\"]'),(85333,118,5,'director',NULL,NULL),(85333,175,6,'writer','based upon the novel by',NULL),(85333,680250,7,'writer','screenplay by',NULL),(85333,462193,8,'producer','producer',NULL),(85333,397697,9,'composer',NULL,NULL),(85334,957293,10,'composer',NULL,NULL),(85334,82526,1,'actor',NULL,'[\"Ralphie Parker\"]'),(85334,227039,2,'actress',NULL,'[\"Mother Parker\"]'),(85334,569000,3,'actor',NULL,'[\"The Old Man Parker\"]'),(85334,777432,4,'actor',NULL,'[\"Flick\"]'),(85334,163706,5,'director',NULL,NULL),(85334,791789,6,'writer','based on the novel \"In God We Trust, All Others Pay Cash\" by',NULL),(85334,114080,7,'writer','screenplay',NULL),(85334,243340,8,'producer','producer',NULL),(85334,6344,9,'composer',NULL,NULL),(85382,802033,10,'producer','producer',NULL),(85382,908914,1,'actress',NULL,'[\"Donna Trenton\"]'),(85382,446298,2,'actor',NULL,'[\"Vic Trenton\"]'),(85382,1622,3,'actor',NULL,'[\"Tad Trenton\"]'),(85382,831791,4,'actor',NULL,'[\"Steve Kemp\"]'),(85382,853546,5,'director',NULL,NULL),(85382,175,6,'writer','novel',NULL),(85382,241795,7,'writer','writer',NULL),(85382,193009,8,'writer','writer',NULL),(85382,87828,9,'producer','producer',NULL),(85407,410419,10,'cinematographer','director of photography',NULL),(85407,686,1,'actor',NULL,'[\"Johnny Smith\"]'),(85407,724,2,'actress',NULL,'[\"Sarah Bracknell\"]'),(85407,643,3,'actor',NULL,'[\"Sheriff Bannerman\"]'),(85407,7042,4,'actor',NULL,'[\"Dr. Sam Weizak\"]'),(85407,343,5,'director',NULL,NULL),(85407,175,6,'writer','based on the novel by',NULL),(85407,90151,7,'writer','screenplay by',NULL),(85407,384185,8,'producer','producer',NULL),(85407,4383,9,'composer',NULL,NULL),(85478,323,1,'actor',NULL,'[\"Dr. Frank Bryant\"]'),(85478,910278,2,'actress',NULL,'[\"Rita\",\"Susan\"]'),(85478,931302,3,'actor',NULL,'[\"Brian\"]'),(85478,513520,4,'actress',NULL,'[\"Trish\"]'),(85478,318150,5,'director',NULL,NULL),(85478,751516,6,'writer','screenplay',NULL),(85478,378283,7,'composer',NULL,NULL),(85478,915145,8,'cinematographer','director of photography',NULL),(85478,186602,9,'editor',NULL,NULL),(85482,349611,1,'actress',NULL,'[\"Rosa\"]'),(85482,897813,2,'actor',NULL,'[\"Enrique\"]'),(85482,350884,3,'actor',NULL,'[\"Arturo\"]'),(85482,215606,4,'actress',NULL,'[\"Lupe\"]'),(85482,622695,5,'director',NULL,NULL),(85482,858482,6,'writer','screenplay by',NULL),(85482,284302,7,'composer',NULL,NULL),(85482,322694,8,'cinematographer',NULL,NULL),(85482,87575,9,'editor',NULL,NULL),(85486,6177,10,'composer',NULL,NULL),(85486,482,1,'actress',NULL,'[\"Sylvia\"]'),(85486,638648,2,'actress',NULL,'[\"Emmanuelle IV\"]'),(85486,872,3,'actor',NULL,'[\"Marc\"]'),(85486,694389,4,'actress',NULL,'[\"Dona\"]'),(85486,163095,5,'director',NULL,NULL),(85486,504594,6,'director',NULL,NULL),(85486,37491,7,'writer','novel \"Emmanuelle: The Joys of a Woman\"',NULL),(85486,3755905,8,'writer','commentary',NULL),(85486,316002,9,'producer','producer',NULL),(85496,4650,10,'actress',NULL,'[\"Sor Estiercol\"]'),(85496,664440,1,'actress',NULL,'[\"Yolanda\"]'),(85496,22196,2,'actor',NULL,'[\"Jorge\"]'),(85496,148387,3,'actress',NULL,'[\"Lina\"]'),(85496,959245,4,'actor',NULL,'[\"Madero\"]'),(85496,264,5,'director',NULL,NULL),(85496,130962,6,'producer','producer',NULL),(85496,273795,7,'cinematographer',NULL,NULL),(85496,757814,8,'editor',NULL,NULL),(85496,785565,9,'actress',NULL,'[\"Superiora\"]'),(85549,2380,10,'composer',NULL,NULL),(85549,884,1,'actress',NULL,'[\"Alexandra Owens\"]'),(85549,636694,2,'actor',NULL,'[\"Nick Hurley\"]'),(85549,803785,3,'actress',NULL,'[\"Hanna Long\"]'),(85549,1230879,4,'actress',NULL,'[\"Jeanie Szabo\"]'),(85549,1490,5,'director',NULL,NULL),(85549,373320,6,'writer','screenplay',NULL),(85549,390,7,'writer','screenplay',NULL),(85549,988,8,'producer','producer',NULL),(85549,800971,9,'producer','producer',NULL),(85601,1842654,10,'production_designer',NULL,NULL),(85601,1352,1,'actor',NULL,'[\"Rosco Frazer\",\"Steinberg\"]'),(85601,817881,2,'actor',NULL,'[\"Doug O\'Riordan\",\"Mason\"]'),(85601,214156,3,'actor',NULL,'[\"K1\"]'),(85601,399663,4,'actor',NULL,'[\"Tiger\"]'),(85601,5645,5,'director',NULL,NULL),(85601,53716,6,'writer',NULL,NULL),(85601,465340,7,'producer','producer',NULL),(85601,6200,8,'composer',NULL,NULL),(85601,567493,9,'cinematographer',NULL,NULL),(85672,78657,10,'editor',NULL,NULL),(85672,2073,1,'actor',NULL,'[\"Hercules\"]'),(85672,364490,2,'actor',NULL,'[\"King Augeias\"]'),(85672,356,3,'actress',NULL,'[\"Adriana\"]'),(85672,687958,4,'actress',NULL,'[\"Hera\"]'),(85672,172826,5,'director',NULL,NULL),(85672,322946,6,'producer','producer',NULL),(85672,324875,7,'producer','producer',NULL),(85672,6043,8,'composer',NULL,NULL),(85672,816606,9,'cinematographer',NULL,NULL),(85701,415351,10,'composer',NULL,NULL),(85701,366,1,'actress',NULL,'[\"Miriam Blaylock\"]'),(85701,309,2,'actor',NULL,'[\"John Blaylock\"]'),(85701,215,3,'actress',NULL,'[\"Sarah Roberts\"]'),(85701,2037,4,'actor',NULL,'[\"Tom Haver\"]'),(85701,1716,5,'director',NULL,NULL),(85701,182689,6,'writer','screenplay',NULL),(85701,859241,7,'writer','screenplay',NULL),(85701,834460,8,'writer','novel',NULL),(85701,791847,9,'producer','producer',NULL),(85750,437393,10,'writer','additional dialogue',NULL),(85750,598,1,'actor',NULL,'[\"Mike Brody\"]'),(85750,787,2,'actress',NULL,'[\"Dr. Kathryn Morgan\"]'),(85750,531546,3,'actor',NULL,'[\"Philip FitzRoyce\"]'),(85750,1283,4,'actor',NULL,'[\"Calvin Bouchard\"]'),(85750,23469,5,'director',NULL,NULL),(85750,1940,6,'writer','suggested by the novel \"Jaws\"',NULL),(85750,558577,7,'writer','screenplay',NULL),(85750,331956,8,'writer','screenplay',NULL),(85750,874100,9,'writer','story',NULL),(85794,505227,10,'production_designer',NULL,NULL),(85794,134,1,'actor',NULL,'[\"Rupert Pupkin\"]'),(85794,1471,2,'actor',NULL,'[\"Jerry Langford\"]'),(85794,7958,3,'actress',NULL,'[\"Rita Keane\"]'),(85794,928,4,'actress',NULL,'[\"Masha\"]'),(85794,217,5,'director',NULL,NULL),(85794,956857,6,'writer','written by',NULL),(85794,586969,7,'producer','producer',NULL),(85794,5865,8,'cinematographer','director of photography',NULL),(85794,774817,9,'editor',NULL,NULL),(85809,10878502,10,'writer','inspiration/ideas',NULL),(85809,799,1,'archive_footage',NULL,'[\"Self - On TV\"]'),(85809,70232,2,'archive_footage',NULL,'[\"Self\"]'),(85809,113831,3,'archive_footage',NULL,'[\"Self - On TV\"]'),(85809,1992,4,'archive_footage',NULL,'[\"Self - On TV\"]'),(85809,716585,5,'director',NULL,NULL),(85809,294825,6,'writer','scenario',NULL),(85809,6129,7,'writer','scenario',NULL),(85809,909479,8,'writer','scenario',NULL),(85809,7030243,9,'writer','inspiration/ideas',NULL),(85811,522487,10,'editor',NULL,NULL),(85811,550989,1,'actor',NULL,'[\"Colwyn\"]'),(85811,771,2,'actress',NULL,'[\"Lyssa\"]'),(85811,428086,3,'actor',NULL,'[\"Ynyr\"]'),(85811,768,4,'actress',NULL,'[\"Widow of the Web\"]'),(85811,946811,5,'director',NULL,NULL),(85811,792589,6,'writer','written by',NULL),(85811,798968,7,'producer','producer',NULL),(85811,35,8,'composer',NULL,NULL),(85811,5893,9,'cinematographer','director of photography',NULL),(85838,341710,1,'actress',NULL,'[\"Lianna\"]'),(85838,356284,2,'actress',NULL,'[\"Ruth\"]'),(85838,222973,3,'actor',NULL,'[\"Dick\"]'),(85838,376481,4,'actress',NULL,'[\"Sandy\"]'),(85838,626,5,'director',NULL,NULL),(85838,625447,6,'producer','producer',NULL),(85838,719964,7,'producer','producer',NULL),(85838,6025,8,'composer',NULL,NULL),(85838,207413,9,'cinematographer',NULL,NULL),(85852,743833,10,'editor',NULL,NULL),(85852,137592,1,'actress',NULL,'[\"Margaret\",\"Jimmy\"]'),(85852,791974,2,'actress',NULL,'[\"Adrian\"]'),(85852,214229,3,'actress',NULL,'[\"Sylvia\"]'),(85852,903220,4,'actor',NULL,'[\"Johann\"]'),(85852,875367,5,'director',NULL,NULL),(85852,449624,6,'writer','original screenplay',NULL),(85852,404317,7,'composer',NULL,NULL),(85852,3484642,8,'composer',NULL,NULL),(85852,628668,9,'cinematographer','director of photography',NULL),(85859,494861,10,'production_designer',NULL,NULL),(85859,44,1,'actor',NULL,'[\"Felix Happer\"]'),(85859,726200,2,'actor',NULL,'[\"Mac\"]'),(85859,533161,3,'actor',NULL,'[\"Ben Knox\"]'),(85859,493200,4,'actor',NULL,'[\"Gordon Urquhart\"]'),(85859,287025,5,'director',NULL,NULL),(85859,701298,6,'producer','producer',NULL),(85859,461360,7,'composer',NULL,NULL),(85859,579580,8,'cinematographer',NULL,NULL),(85859,103457,9,'editor',NULL,NULL),(85894,152469,10,'cinematographer','director of photography',NULL),(85894,188,1,'actor',NULL,'[\"Dr. Michael Hfuhruhurr\"]'),(85894,678,2,'actress',NULL,'[\"Dolores Benedict\"]'),(85894,1831,3,'actor',NULL,'[\"Dr. Alfred Necessiter\"]'),(85894,70801,4,'actor',NULL,'[\"Butler\"]'),(85894,5348,5,'director',NULL,NULL),(85894,320553,6,'writer','written by',NULL),(85894,568530,7,'producer','producer',NULL),(85894,681802,8,'producer','producer',NULL),(85894,6107,9,'composer',NULL,NULL),(85933,651916,10,'editor',NULL,NULL),(85933,309,1,'actor',NULL,'[\"Celliers\"]'),(85933,2018,2,'actor',NULL,'[\"Lawrence\"]'),(85933,757098,3,'actor',NULL,'[\"Yonoi\"]'),(85933,1429,4,'actor',NULL,'[\"Hara\"]'),(85933,651915,5,'director',NULL,NULL),(85933,562577,6,'writer','screenplay by',NULL),(85933,886394,7,'writer','based on the novel \"The Seed and The Sower\" by',NULL),(85933,859016,8,'producer','producer',NULL),(85933,621545,9,'cinematographer','director of photography',NULL),(85936,3061,10,'writer','story adapted by',NULL),(85936,949241,1,'actor',NULL,'[\"Scrooge\"]'),(85936,21656,2,'actor',NULL,'[\"Bob Cratchit - Mickey Mouse\",\"Weasel Gravedigger\",\"Begger Dog\"]'),(85936,808401,3,'actor',NULL,'[\"Jacob Marley\'s Ghost - Goofy\",\"Collector for the Poor #1\"]'),(85936,752900,4,'actor',NULL,'[\"Collector for the Poor #2\",\"Ghost of Christmas Present (Willie the Giant)\",\"Ghost of Christmas Future (Pete)\"]'),(85936,560329,5,'director',NULL,NULL),(85936,2042,6,'writer','based on the book: \"A Christmas Carol\" by',NULL),(85936,547850,7,'writer','story adapted by',NULL),(85936,326814,8,'writer','story adapted by',NULL),(85936,341476,9,'writer','story adapted by',NULL),(85959,695536,10,'cinematographer',NULL,NULL),(85959,92,1,'actor',NULL,'[\"Fish #2\",\"Dr. Spencer\",\"Humphrey Williams\"]'),(85959,416,2,'actor',NULL,'[\"Window Washer\",\"Fish #4\",\"Walters\"]'),(85959,1385,3,'actor',NULL,'[\"Gunther\",\"Fish #3\",\"\'Meaning of Life\' Singer\"]'),(85959,1402,4,'actor',NULL,'[\"Bert\",\"Fish #6\",\"Mum\"]'),(85959,1037,5,'writer','written by',NULL),(85959,1589,6,'writer','written by',NULL),(85959,326364,7,'producer','producer',NULL),(85959,6047,8,'composer',NULL,NULL),(85959,360346,9,'cinematographer',NULL,NULL),(86034,110482,10,'producer','producer',NULL),(86034,549,1,'actor',NULL,'[\"James Bond\"]'),(86034,726,2,'actress',NULL,'[\"Octopussy\"]'),(86034,431139,3,'actor',NULL,'[\"Kamal Khan\"]'),(86034,915468,4,'actress',NULL,'[\"Magda\"]'),(86034,322515,5,'director',NULL,NULL),(86034,292129,6,'writer','screen story by',NULL),(86034,537363,7,'writer','screen story by',NULL),(86034,933865,8,'writer','screen story by',NULL),(86034,1220,9,'writer','stories \"Octopussy\" and \"The Property of a Lady\"',NULL),(86066,178874,10,'composer',NULL,NULL),(86066,1367,1,'actor',NULL,'[\"Ponyboy Curtis\"]'),(86066,369,2,'actor',NULL,'[\"Dallas Winston\"]'),(86066,1494,3,'actor',NULL,'[\"Johnny Cade\"]'),(86066,664,4,'actor',NULL,'[\"Darrel Curtis\"]'),(86066,338,5,'director',NULL,NULL),(86066,746634,6,'writer','screenplay',NULL),(86066,386023,7,'writer','novel',NULL),(86066,292875,8,'producer','producer',NULL),(86066,740407,9,'producer','producer',NULL),(86104,544432,1,'actor',NULL,'[\"Paco\"]'),(86104,148992,2,'actor',NULL,'[\"Evaristo Torrecuadrada\"]'),(86104,409981,3,'actor',NULL,'[\"Martín Aramendía\"]'),(86104,760640,4,'actor',NULL,'[\"Mikel Orbea\"]'),(86104,407061,5,'director',NULL,NULL),(86104,324770,6,'writer','written by',NULL),(86104,5663,7,'cinematographer',NULL,NULL),(86104,757814,8,'editor',NULL,NULL),(86190,2354,10,'composer',NULL,NULL),(86190,434,1,'actor',NULL,'[\"Luke Skywalker\"]'),(86190,148,2,'actor',NULL,'[\"Han Solo\"]'),(86190,402,3,'actress',NULL,'[\"Princess Leia\"]'),(86190,1850,4,'actor',NULL,'[\"Lando Calrissian\"]'),(86190,549658,5,'director',NULL,NULL),(86190,1410,6,'writer','screenplay by',NULL),(86190,184,7,'writer','screenplay by',NULL),(86190,443599,8,'producer','producer',NULL),(86190,564768,9,'producer','producer',NULL),(86200,897794,10,'cinematographer','director of photography',NULL),(86200,129,1,'actor',NULL,'[\"Joel\"]'),(86200,360,2,'actress',NULL,'[\"Lana\"]'),(86200,1592,3,'actor',NULL,'[\"Guido\"]'),(86200,557956,4,'actor',NULL,'[\"Rutherford\"]'),(86200,1887,5,'director',NULL,NULL),(86200,816,6,'producer','producer',NULL),(86200,5494,7,'producer','producer',NULL),(86200,1725839,8,'composer',NULL,NULL),(86200,839732,9,'cinematographer','director of photography',NULL),(86216,5664,10,'cinematographer','director of photography',NULL),(86216,369,1,'actor',NULL,'[\"Rusty James\"]'),(86216,620,2,'actor',NULL,'[\"The Motorcycle Boy\"]'),(86216,178,3,'actress',NULL,'[\"Patty\"]'),(86216,454,4,'actor',NULL,'[\"Father\"]'),(86216,338,5,'director',NULL,NULL),(86216,386023,6,'writer','novel \"Rumble Fish\"',NULL),(86216,165602,7,'producer','producer',NULL),(86216,740407,8,'producer','producer',NULL),(86216,4841,9,'composer',NULL,NULL),(86250,106840,10,'producer','producer',NULL),(86250,199,1,'actor',NULL,'[\"Tony Montana\"]'),(86250,201,2,'actress',NULL,'[\"Elvira\"]'),(86250,874,3,'actor',NULL,'[\"Manny Ribera\"]'),(86250,1512,4,'actress',NULL,'[\"Gina\"]'),(86250,361,5,'director',NULL,NULL),(86250,231,6,'writer','screenplay by',NULL),(86250,1328,7,'writer',NULL,NULL),(86250,372942,8,'writer',NULL,NULL),(86250,870660,9,'writer','based on the novel by',NULL),(86312,5816,10,'cinematographer','director of photography',NULL),(86312,658,1,'actress',NULL,'[\"Karen Silkwood\"]'),(86312,621,2,'actor',NULL,'[\"Drew Stephens\"]'),(86312,333,3,'actress',NULL,'[\"Dolly Pelliker\"]'),(86312,5266,4,'actor',NULL,'[\"Winston\"]'),(86312,1566,5,'director',NULL,NULL),(86312,1188,6,'writer','written by',NULL),(86312,35146,7,'writer','written by',NULL),(86312,369592,8,'producer','producer',NULL),(86312,16,9,'composer',NULL,NULL),(86340,1592271,1,'actress',NULL,'[\"Mira\"]'),(86340,365035,2,'actress',NULL,'[\"Mara\"]'),(86340,999021,3,'actor',NULL,'[\"Erlick\"]'),(86340,587778,4,'actor',NULL,'[\"Pando\"]'),(86340,384335,5,'director',NULL,NULL),(86340,691061,6,'writer','written by',NULL),(86340,680180,7,'cinematographer','director of photography',NULL),(86340,3231,8,'editor',NULL,NULL),(86340,955175,9,'editor',NULL,NULL),(86373,811435,10,'production_designer',NULL,NULL),(86373,1548,1,'actor',NULL,'[\"Bob McKenzie\"]'),(86373,858686,2,'actor',NULL,'[\"Doug McKenzie\"]'),(86373,1884,3,'actor',NULL,'[\"Brewmeister Smith\"]'),(86373,233209,4,'actor',NULL,'[\"Claude Elsinore\"]'),(86373,208923,5,'writer','written by',NULL),(86373,799049,6,'producer','producer',NULL),(86373,288913,7,'composer',NULL,NULL),(86373,692925,8,'cinematographer','director of photography',NULL),(86373,573073,9,'editor',NULL,NULL),(86393,701374,10,'writer','characters',NULL),(86393,1659,1,'actor',NULL,'[\"Superman\",\"Clark Kent\"]'),(86393,1640,2,'actor',NULL,'[\"Gus Gorman\"]'),(86393,452288,3,'actress',NULL,'[\"Lois Lane\"]'),(86393,178114,4,'actor',NULL,'[\"Perry White\"]'),(86393,504513,5,'director',NULL,NULL),(86393,796950,6,'writer','character created by: Superman',NULL),(86393,795975,7,'writer','character created by: Superman',NULL),(86393,628058,8,'writer','screenplay by',NULL),(86393,628174,9,'writer','screenplay by',NULL),(86394,943489,10,'editor',NULL,NULL),(86394,473252,1,'actor',NULL,'[\"Mike Bachstein\"]'),(86394,332052,2,'actor',NULL,'[\"Tommy Jürgensen\",\"Prinz Faruk al Habib\"]'),(86394,383163,3,'actress',NULL,'[\"Sabine Sasse\"]'),(86394,369193,4,'actor',NULL,'[\"Direktor Heinrich Sasse\"]'),(86394,699591,5,'director',NULL,NULL),(86394,374569,6,'composer',NULL,NULL),(86394,44630,7,'cinematographer',NULL,NULL),(86394,456286,8,'cinematographer',NULL,NULL),(86394,667733,9,'editor',NULL,NULL),(86425,686895,10,'production_designer',NULL,NULL),(86425,511,1,'actress',NULL,'[\"Aurora Greenway\"]'),(86425,700,2,'actress',NULL,'[\"Emma Horton\"]'),(86425,197,3,'actor',NULL,'[\"Garrett Breedlove\"]'),(86425,362,4,'actor',NULL,'[\"Vernon Dahlart\"]'),(86425,985,5,'director',NULL,NULL),(86425,573505,6,'writer','based on the novel by',NULL),(86425,330759,7,'composer',NULL,NULL),(86425,5647,8,'cinematographer','director of photography',NULL),(86425,548943,9,'editor',NULL,NULL),(86465,668481,10,'cinematographer','director of photography',NULL),(86465,552,1,'actor',NULL,'[\"Billy Ray Valentine\"]'),(86465,101,2,'actor',NULL,'[\"Louis Winthorpe III\"]'),(86465,897,3,'actor',NULL,'[\"Randolph Duke\"]'),(86465,747,4,'actor',NULL,'[\"Mortimer Duke\"]'),(86465,484,5,'director',NULL,NULL),(86465,365390,6,'writer','written by',NULL),(86465,918339,7,'writer','written by',NULL),(86465,751567,8,'producer','producer',NULL),(86465,930,9,'composer',NULL,NULL),(86510,5633,10,'cinematographer','director of photography',NULL),(86510,560,1,'actor',NULL,'[\"Russell Price\"]'),(86510,438,2,'actor',NULL,'[\"Oates\"]'),(86510,432,3,'actor',NULL,'[\"Alex Grazier\"]'),(86510,1026,4,'actress',NULL,'[\"Claire\"]'),(86510,6854,5,'director',NULL,NULL),(86510,5421,6,'writer','screenplay by',NULL),(86510,296243,7,'writer','screenplay by',NULL),(86510,850038,8,'producer','producer',NULL),(86510,25,9,'composer',NULL,NULL),(86541,249,1,'actor',NULL,'[\"Max Renn\"]'),(86541,1323,2,'actress',NULL,'[\"Nicki Brand\"]'),(86541,810500,3,'actress',NULL,'[\"Bianca O\'Blivion\"]'),(86541,245356,4,'actor',NULL,'[\"Harlan\"]'),(86541,343,5,'director',NULL,NULL),(86541,405758,6,'producer','producer',NULL),(86541,6290,7,'composer',NULL,NULL),(86541,410419,8,'cinematographer','director of photography',NULL),(86541,761697,9,'editor',NULL,NULL),(86542,78706,10,'editor',NULL,NULL),(86542,2094,1,'actor',NULL,'[\"Walter Guarini\"]'),(86542,706921,2,'actor',NULL,'[\"Comte Michel Forbek\",\"Count Michel Forbek\"]'),(86542,1036,3,'actress',NULL,'[\"Nora Winkle\"]'),(86542,272,4,'actress',NULL,'[\"Livia Cerasquier\"]'),(86542,720297,5,'director',NULL,NULL),(86542,344171,6,'writer','writer',NULL),(86542,244670,7,'producer','producer',NULL),(86542,680024,8,'composer',NULL,NULL),(86542,5814,9,'cinematographer',NULL,NULL),(86543,957,10,'cinematographer',NULL,NULL),(86543,469103,1,'actor',NULL,'[\"Gerard Reve\"]'),(86543,816030,2,'actress',NULL,'[\"Christine Halsslag\"]'),(86543,389109,3,'actor',NULL,'[\"Herman\"]'),(86543,904093,4,'actor',NULL,'[\"Dr. de Vries\"]'),(86543,682,5,'director',NULL,NULL),(86543,720771,6,'writer','novel',NULL),(86543,812121,7,'writer','writer',NULL),(86543,396951,8,'producer','producer',NULL),(86543,226693,9,'composer',NULL,NULL),(86551,743,10,'cinematographer',NULL,NULL),(86551,272,1,'actress',NULL,'[\"Barbara Becker\"]'),(86551,4462,2,'actor',NULL,'[\"Julien Vercel\"]'),(86551,435726,3,'actor',NULL,'[\"Massoulier (the priest)\"]'),(86551,490734,4,'actor',NULL,'[\"Maitre Clement\"]'),(86551,76,5,'director',NULL,NULL),(86551,930241,6,'writer','novel \"The Long Saturday Night\"',NULL),(86551,771535,7,'writer','adaptation',NULL),(86551,42159,8,'writer','adaptation',NULL),(86551,16,9,'composer',NULL,NULL),(86567,6265,10,'composer',NULL,NULL),(86567,111,1,'actor',NULL,'[\"David\"]'),(86567,639,2,'actress',NULL,'[\"Jennifer\"]'),(86567,939795,3,'actor',NULL,'[\"Falken\"]'),(86567,1056,4,'actor',NULL,'[\"McKittrick\"]'),(86567,824,5,'director',NULL,NULL),(86567,489623,6,'writer','written by',NULL),(86567,662748,7,'writer','written by',NULL),(86567,338396,8,'writer','written by',NULL),(86567,773837,9,'producer','producer',NULL),(86589,646263,10,'editor',NULL,NULL),(86589,669868,1,'actor',NULL,'[\"Jack Diddley\"]'),(86589,185417,2,'actor',NULL,'[\"Evan Johnson\"]'),(86589,165531,3,'actress',NULL,'[\"Sheila\"]'),(86589,639850,4,'actor',NULL,'[\"Skinner\"]'),(86589,790715,5,'director',NULL,NULL),(86589,236700,6,'producer','producer',NULL),(86589,316833,7,'composer',NULL,NULL),(86589,5891,8,'cinematographer',NULL,NULL),(86589,16584,9,'editor',NULL,NULL),(86618,606657,10,'composer',NULL,NULL),(86618,1037,1,'actor',NULL,'[\"Yellowbeard\"]'),(86618,1967,2,'actor',NULL,'[\"Moon\"]'),(86618,1507,3,'actor',NULL,'[\"El Segundo\"]'),(86618,1045,4,'actor',NULL,'[\"El Nebuloso\"]'),(86618,198991,5,'director',NULL,NULL),(86618,177228,6,'writer','written by',NULL),(86618,571334,7,'writer','written by',NULL),(86618,792333,8,'writer',NULL,NULL),(86618,214925,9,'producer','producer',NULL),(86619,712625,10,'editor',NULL,NULL),(86619,659,1,'actress',NULL,'[\"Yentl\"]'),(86619,1388,2,'actress',NULL,'[\"Hadass\"]'),(86619,1597,3,'actor',NULL,'[\"Avigdor\"]'),(86619,675490,4,'actor',NULL,'[\"Reb Mendel \'Papa\'\"]'),(86619,742768,5,'writer','screenplay by',NULL),(86619,801953,6,'writer','based on \"Yentl, the Yeshiva Boy\" by',NULL),(86619,501544,7,'producer','producer',NULL),(86619,6166,8,'composer',NULL,NULL),(86619,914239,9,'cinematographer','director of photography',NULL),(86739,539562,10,'actor',NULL,'[\"Hari Kumar\"]'),(86739,683116,1,'actor',NULL,'[\"Ronald Merrick\"]'),(86739,416524,2,'actress',NULL,'[\"Sarah Layton\"]'),(86739,605088,3,'actress',NULL,'[\"Susan Layton\"]'),(86739,661407,4,'actress',NULL,'[\"Mildred Layton\"]'),(86739,494863,5,'actress',NULL,'[\"Aunt Fenny\"]'),(86739,1919,6,'actress',NULL,'[\"Barbie Batchelor\"]'),(86739,66644,7,'actor',NULL,'[\"Kevin Coley\"]'),(86739,692110,8,'actor',NULL,'[\"Dimitri Bronowsky\"]'),(86739,494549,9,'actor',NULL,'[\"Nigel Rowan\"]'),(86837,107447,10,'production_designer',NULL,NULL),(86837,1702,1,'actor',NULL,'[\"Dr. Heywood Floyd\"]'),(86837,1475,2,'actor',NULL,'[\"Dr. Walter Curnow\"]'),(86837,545,3,'actress',NULL,'[\"Tanya Kirbuk\"]'),(86837,837,4,'actor',NULL,'[\"Dr. R. Chandra\"]'),(86837,1382,5,'director',NULL,NULL),(86837,2009,6,'writer','novel',NULL),(86837,6288,7,'composer',NULL,NULL),(86837,325858,8,'editor',NULL,NULL),(86837,593412,9,'editor',NULL,NULL),(86856,101055,10,'editor',NULL,NULL),(86856,693,1,'actor',NULL,'[\"Buckaroo Banzai\"]'),(86856,1475,2,'actor',NULL,'[\"Lord John Whorfin\",\"Dr. Emilio Lizardo\"]'),(86856,289,3,'actress',NULL,'[\"Penny Priddy\"]'),(86856,156,4,'actor',NULL,'[\"New Jersey\"]'),(86856,725379,5,'director',NULL,NULL),(86856,711996,6,'writer','written by',NULL),(86856,134635,7,'producer','producer',NULL),(86856,90799,8,'composer',NULL,NULL),(86856,5758,9,'cinematographer','director of photography',NULL),(86873,2305,10,'composer',NULL,NULL),(86873,188,1,'actor',NULL,'[\"Roger Cobb\"]'),(86873,5499,2,'actress',NULL,'[\"Edwina Cutwater\"]'),(86873,5481,3,'actress',NULL,'[\"Terry Hoskins\"]'),(86873,1750,4,'actress',NULL,'[\"Peggy Schuyler\"]'),(86873,5348,5,'director',NULL,NULL),(86873,204552,6,'writer','novel \"Me Two\"',NULL),(86873,646255,7,'writer','adaptation',NULL),(86873,4675,8,'writer','screenplay',NULL),(86873,295375,9,'producer','producer',NULL),(86879,151434,10,'editor',NULL,NULL),(86879,719,1,'actor',NULL,'[\"Antonio Salieri\"]'),(86879,1371,2,'actor',NULL,'[\"Wolfgang Amadeus Mozart\"]'),(86879,931,3,'actress',NULL,'[\"Constanze Mozart\"]'),(86879,234541,4,'actor',NULL,'[\"Leopold Mozart\"]'),(86879,1232,5,'director',NULL,NULL),(86879,787323,6,'writer','original stage play',NULL),(86879,537004,7,'writer',NULL,NULL),(86879,951763,8,'producer','producer',NULL),(86879,5816,9,'cinematographer','director of photography',NULL),(86896,1112,10,'cinematographer','director of photography',NULL),(86896,331054,1,'actor',NULL,'[\"Lt. Andrews\"]'),(86896,879073,2,'actress',NULL,'[\"Solly Mosler\"]'),(86896,790071,3,'actor',NULL,'[\"Mae\"]'),(86896,1983,4,'actor',NULL,'[\"Kit Carson\"]'),(86896,642057,5,'director',NULL,NULL),(86896,129193,6,'writer','written by',NULL),(86896,96025,7,'producer','producer',NULL),(86896,915232,8,'producer','producer',NULL),(86896,6268,9,'composer',NULL,NULL),(86904,357421,10,'editor',NULL,NULL),(86904,391,1,'actor',NULL,'[\"Guy Bennett\"]'),(86904,147,2,'actor',NULL,'[\"Tommy Judd\"]'),(86904,421044,3,'actor',NULL,'[\"Barclay\"]'),(86904,11665,4,'actor',NULL,'[\"Delahay\"]'),(86904,437709,5,'director',NULL,NULL),(86904,593483,6,'writer','screenplay',NULL),(86904,550728,7,'producer','producer',NULL),(86904,832482,8,'composer',NULL,NULL),(86904,84695,9,'cinematographer','director of photography',NULL),(86927,6077,10,'composer',NULL,NULL),(86927,158,1,'actor',NULL,'[\"Rick Gassko\"]'),(86927,478,2,'actress',NULL,'[\"Debbie Thompson\"]'),(86927,957460,3,'actor',NULL,'[\"Jay O\'Neill\"]'),(86927,342732,4,'actor',NULL,'[\"Ed Thompson\"]'),(86927,411477,5,'director',NULL,NULL),(86927,411444,6,'writer','story',NULL),(86927,698493,7,'writer','screenplay',NULL),(86927,596542,8,'producer','producer',NULL),(86927,665394,9,'producer','producer',NULL),(86955,938485,10,'editor',NULL,NULL),(86955,1545,1,'actor',NULL,'[\"Wylie Cooper\"]'),(86955,552,2,'actor',NULL,'[\"Lieutenant T.M. Landry\"]'),(86955,1009,3,'actress',NULL,'[\"Laura Cooper\"]'),(86955,1169,4,'actor',NULL,'[\"Steve Loparino\"]'),(86955,404754,5,'director',NULL,NULL),(86955,343525,6,'writer','novel \"Easy and Hard Ways Out\"',NULL),(86955,441718,7,'writer','screenplay',NULL),(86955,2305,8,'composer',NULL,NULL),(86955,676286,9,'cinematographer','director of photography',NULL),(86960,266536,10,'composer',NULL,NULL),(86960,552,1,'actor',NULL,'[\"Axel Foley\"]'),(86960,1662,2,'actor',NULL,'[\"Det. Billy Rosewood\"]'),(86960,39226,3,'actor',NULL,'[\"Sgt. Taggart\"]'),(86960,2060,4,'actress',NULL,'[\"Jenny Summers\"]'),(86960,976,5,'director',NULL,NULL),(86960,677943,6,'writer','screenplay by',NULL),(86960,45301,7,'writer','story by',NULL),(86960,988,8,'producer','producer',NULL),(86960,800971,9,'producer','producer',NULL),(86973,387001,10,'editor',NULL,NULL),(86973,323,1,'actor',NULL,'[\"Matthew Hollis\"]'),(86973,1400,2,'actress',NULL,'[\"Jennifer Lyons\"]'),(86973,193,3,'actress',NULL,'[\"Nicole Hollis\"]'),(86973,4767,4,'actor',NULL,'[\"Victor Lyons\"]'),(86973,2045,5,'director',NULL,NULL),(86973,676361,6,'writer','screenplay',NULL),(86973,312205,7,'writer','screenplay',NULL),(86973,1945,8,'writer','based on an original screenplay by',NULL),(86973,897794,9,'cinematographer','director of photography',NULL),(86979,615788,10,'production_designer',NULL,NULL),(86979,315288,1,'actor',NULL,'[\"Ray\"]'),(86979,531,2,'actress',NULL,'[\"Abby\"]'),(86979,445,3,'actor',NULL,'[\"Julian Marty\"]'),(86979,1826,4,'actor',NULL,'[\"Private Detective Loren Visser\"]'),(86979,1054,5,'director',NULL,NULL),(86979,1053,6,'director',NULL,NULL),(86979,1980,7,'composer',NULL,NULL),(86979,1756,8,'cinematographer','director of photography',NULL),(86979,927366,9,'editor',NULL,NULL),(86984,659597,10,'editor',NULL,NULL),(86984,913738,1,'actor',NULL,'[\"Jake\"]'),(86984,429,2,'actress',NULL,'[\"Holly\"]'),(86984,1344,3,'actor',NULL,'[\"Sam\"]'),(86984,1730,4,'actress',NULL,'[\"Gloria\"]'),(86984,361,5,'director',NULL,NULL),(86984,43334,6,'writer','screenplay by',NULL),(86984,6043,7,'composer',NULL,NULL),(86984,5664,8,'cinematographer','director of photography',NULL),(86984,338513,9,'editor',NULL,NULL),(86992,7178,10,'cinematographer',NULL,NULL),(86992,1659,1,'actor',NULL,'[\"Basil Ransome\"]'),(86992,603,2,'actress',NULL,'[\"Olive Chancellor\"]'),(86992,1788,3,'actress',NULL,'[\"Miss Birdseye\"]'),(86992,693317,4,'actress',NULL,'[\"Verena Tarrant\"]'),(86992,412465,5,'director',NULL,NULL),(86992,416556,6,'writer','novel',NULL),(86992,695609,7,'writer','screenplay',NULL),(86992,580337,8,'producer','producer',NULL),(86992,6442,9,'composer',NULL,NULL),(87015,806003,10,'cinematographer','director of photography',NULL),(87015,1334,1,'actor',NULL,'[\"George Cooper\"]'),(87015,827663,2,'actor',NULL,'[\"A.J. \'The Reverend\' Shepherd\"]'),(87015,193061,3,'actor',NULL,'[\"Captain Bosch\"]'),(87015,2114,4,'actress',NULL,'[\"Lauren Daniels\"]'),(87015,154877,5,'director',NULL,NULL),(87015,355973,6,'writer','screenplay by',NULL),(87015,8055,7,'writer','story by',NULL),(87015,94659,8,'producer','producer',NULL),(87015,400542,9,'composer',NULL,NULL),(87050,253486,10,'composer',NULL,NULL),(87050,5022,1,'actor',NULL,'[\"Burt\"]'),(87050,157,2,'actress',NULL,'[\"Vicky\"]'),(87050,35866,3,'actor',NULL,'[\"Diehl\"]'),(87050,291463,4,'actor',NULL,'[\"Isaac\"]'),(87050,452607,5,'director',NULL,NULL),(87050,175,6,'writer','based on the short story by',NULL),(87050,326070,7,'writer','screenplay by',NULL),(87050,96025,8,'producer','producer',NULL),(87050,456231,9,'producer','producer',NULL),(87075,6070,10,'composer',NULL,NULL),(87075,666395,1,'actress',NULL,'[\"Rosaleen\"]'),(87075,1450,2,'actress',NULL,'[\"Granny\"]'),(87075,1831,3,'actor',NULL,'[\"Father\"]'),(87075,189561,4,'actor',NULL,'[\"Old Priest\"]'),(87075,1403,5,'director',NULL,NULL),(87075,141462,6,'writer','screenplay',NULL),(87075,674518,7,'writer','Quotations from \"Petit Chaperon Rouge\"',NULL),(87075,113244,8,'producer','producer',NULL),(87075,941262,9,'producer','executive producer',NULL),(87078,209581,10,'producer','producer',NULL),(87078,216,1,'actor',NULL,'[\"Conan\"]'),(87078,5063,2,'actress',NULL,'[\"Zula\"]'),(87078,1882,3,'actress',NULL,'[\"Princess Jehnna\"]'),(87078,150219,4,'actor',NULL,'[\"Bombaata\"]'),(87078,281507,5,'director',NULL,NULL),(87078,397574,6,'writer','based on the character created by',NULL),(87078,859471,7,'writer','story by',NULL),(87078,176689,8,'writer','story by',NULL),(87078,542970,9,'writer','screenplay by',NULL),(87127,728052,10,'editor',NULL,NULL),(87127,384605,1,'actor',NULL,'[\"Deathstalker\"]'),(87127,72902,2,'actress',NULL,'[\"Codille\"]'),(87127,111777,3,'actor',NULL,'[\"Oghris\"]'),(87127,165096,4,'actress',NULL,'[\"Kaira\"]'),(87127,768618,5,'director',NULL,NULL),(87127,169438,6,'writer','screenplay',NULL),(87127,643606,7,'composer',NULL,NULL),(87127,735684,8,'cinematographer','director of photography',NULL),(87127,11086,9,'editor',NULL,NULL),(87150,2186979,10,'cinematographer',NULL,NULL),(87150,156803,1,'actress',NULL,'[\"Geraldine Tam\"]'),(87150,156801,2,'actress',NULL,'[\"Mrs. Tam\"]'),(87150,939378,3,'actor',NULL,'[\"Uncle Tam\"]'),(87150,161232,4,'actress',NULL,'[\"Auntie May\"]'),(87150,911061,5,'director',NULL,NULL),(87150,783559,6,'writer',NULL,NULL),(87150,827923,7,'producer','producer',NULL),(87150,950942,8,'producer','producer',NULL),(87150,91250,9,'composer',NULL,NULL),(87182,316626,10,'editor',NULL,NULL),(87182,1492,1,'actor',NULL,'[\"Paul Atreides\"]'),(87182,515,2,'actress',NULL,'[\"Princess Irulan\"]'),(87182,768,3,'actress',NULL,'[\"Lady Jessica\"]'),(87182,162361,4,'actor',NULL,'[\"The Baron\'s Doctor\"]'),(87182,186,5,'director',NULL,NULL),(87182,378541,6,'writer','novel',NULL),(87182,209581,7,'producer','producer',NULL),(87182,3058674,8,'composer',NULL,NULL),(87182,5711,9,'cinematographer',NULL,NULL),(87298,169231,10,'writer','screenplay by',NULL),(87298,26687,1,'actor',NULL,'[\"Rob\"]'),(87298,36978,2,'actress',NULL,'[\"Samantha\"]'),(87298,59228,3,'actor',NULL,'[\"Doug\"]'),(87298,65206,4,'actress',NULL,'[\"Trish\"]'),(87298,957263,5,'director',NULL,NULL),(87298,566699,6,'writer','based upon characters created by',NULL),(87298,413826,7,'writer','based upon characters created by',NULL),(87298,457725,8,'writer','based upon characters created by',NULL),(87298,914536,9,'writer','based upon characters created by',NULL),(87332,434922,10,'editor',NULL,NULL),(87332,195,1,'actor',NULL,'[\"Dr. Peter Venkman\"]'),(87332,101,2,'actor',NULL,'[\"Dr. Raymond Stantz\"]'),(87332,244,3,'actress',NULL,'[\"Dana Barrett\"]'),(87332,601,4,'actor',NULL,'[\"Dr. Egon Spengler\"]'),(87332,718645,5,'director',NULL,NULL),(87332,1548,6,'writer',NULL,NULL),(87332,930,7,'composer',NULL,NULL),(87332,4088,8,'cinematographer','director of photography',NULL),(87332,88340,9,'editor',NULL,NULL),(87344,605743,10,'director',NULL,NULL),(87344,994,1,'actor',NULL,'[\"Steve Martin\"]'),(87344,462013,2,'actor',NULL,'[\"Prime Minister Mitamura\"]'),(87344,849006,3,'actor',NULL,'[\"Goro Maki\"]'),(87344,768005,4,'actress',NULL,'[\"Naoko Okumura\"]'),(87344,368057,5,'director',NULL,NULL),(87344,457970,6,'director',NULL,NULL),(87344,393094,7,'director',NULL,NULL),(87344,557927,8,'director',NULL,NULL),(87344,559398,9,'director',NULL,NULL),(87363,386443,10,'editor',NULL,NULL),(87363,2090,1,'actor',NULL,'[\"Billy\"]'),(87363,121,2,'actress',NULL,'[\"Kate\"]'),(87363,1924,3,'actor',NULL,'[\"Randall Peltzer\"]'),(87363,521829,4,'actor',NULL,'[\"Chinese Boy\"]'),(87363,1102,5,'director',NULL,NULL),(87363,1060,6,'writer','written by',NULL),(87363,278228,7,'producer','producer',NULL),(87363,25,8,'composer',NULL,NULL),(87363,394494,9,'cinematographer','director of photography',NULL),(87433,1281653,1,'actor',NULL,'[\"Gu Quing - The Soldier\"]'),(87433,944677,2,'actress',NULL,'[\"Cuiqiao - The Girl\"]'),(87433,514997,3,'actor',NULL,'[\"Hanhan - The Boy\"]'),(87433,848911,4,'actor',NULL,'[\"The Father\"]'),(87433,155280,5,'director',NULL,NULL),(87433,1457722,6,'writer','novel',NULL),(87433,955470,7,'writer','screenplay',NULL),(87433,947921,8,'composer',NULL,NULL),(87433,955443,9,'cinematographer',NULL,NULL),(87451,906470,10,'editor',NULL,NULL),(87451,1810,1,'actor',NULL,'[\"Jason\"]'),(87451,2026,2,'actress',NULL,'[\"Princess Karina\"]'),(87451,731426,3,'actor',NULL,'[\"Roscoe\"]'),(87451,1378,4,'actress',NULL,'[\"Maida\"]'),(87451,706296,5,'director',NULL,NULL),(87451,792589,6,'writer','written by',NULL),(87451,286048,7,'producer','producer',NULL),(87451,5976,8,'composer',NULL,NULL),(87451,5772,9,'cinematographer','director of photography',NULL),(87469,2354,10,'composer',NULL,NULL),(87469,148,1,'actor',NULL,'[\"Indiana Jones\"]'),(87469,1009,2,'actress',NULL,'[\"Willie Scott\"]'),(87469,702841,3,'actor',NULL,'[\"Short Round\"]'),(87469,700869,4,'actor',NULL,'[\"Mola Ram\"]'),(87469,229,5,'director',NULL,NULL),(87469,404754,6,'writer','screenplay by',NULL),(87469,441718,7,'writer','screenplay by',NULL),(87469,184,8,'writer','story by',NULL),(87469,915226,9,'producer','producer',NULL),(87472,648651,10,'composer',NULL,NULL),(87472,587256,1,'actress',NULL,'[\"Frances Fairchild\"]'),(87472,347656,2,'actor',NULL,'[\"Dwight Fairchild\"]'),(87472,1879,3,'actress',NULL,'[\"Kelly Fairchild\"]'),(87472,416856,4,'actor',NULL,'[\"Peter Adams\"]'),(87472,829579,5,'director',NULL,NULL),(87472,186411,6,'director',NULL,NULL),(87472,695415,7,'writer','written by',NULL),(87472,934525,8,'producer','producer',NULL),(87472,85278,9,'composer',NULL,NULL),(87481,798338,10,'cinematographer',NULL,NULL),(87481,1352,1,'actor',NULL,'[\"Eliot Vance\",\"Bastiano Coimbra de la Coronilla y Azevedo\"]'),(87481,817881,2,'actor',NULL,'[\"Greg Wonder\",\"Antonio Coimbra de la Coronilla y Azevedo\"]'),(87481,167168,3,'actress',NULL,'[\"Olympia Chavez\"]'),(87481,74784,4,'actor',NULL,'[\"Managing director of the \'double agency\'\"]'),(87481,5645,5,'director',NULL,NULL),(87481,53716,6,'writer',NULL,NULL),(87481,302077,7,'producer','producer',NULL),(87481,6200,8,'composer',NULL,NULL),(87481,5745,9,'cinematographer',NULL,NULL),(87507,381110,10,'producer','producer',NULL),(87507,474,1,'actor',NULL,'[\"Johnny Dangerously\"]'),(87507,685472,2,'actor',NULL,'[\"Danny Vermin\"]'),(87507,447,3,'actress',NULL,'[\"Lil Sheridan\"]'),(87507,822972,4,'actress',NULL,'[\"Ma Kelly\"]'),(87507,2132,5,'director',NULL,NULL),(87507,825799,6,'writer','written by',NULL),(87507,474374,7,'writer','written by',NULL),(87507,173080,8,'writer','written by',NULL),(87507,364825,9,'writer','written by',NULL),(87538,611705,10,'editor',NULL,NULL),(87538,1494,1,'actor',NULL,'[\"Daniel\"]'),(87538,1552,2,'actor',NULL,'[\"Miyagi\"]'),(87538,223,3,'actress',NULL,'[\"Ali\"]'),(87538,184392,4,'actor',NULL,'[\"Kreese\"]'),(87538,814,5,'director',NULL,NULL),(87538,436543,6,'writer','written by',NULL),(87538,5545,7,'producer','producer',NULL),(87538,6015,8,'composer',NULL,NULL),(87538,185583,9,'cinematographer','director of photography',NULL),(87544,386749,10,'composer',NULL,NULL),(87544,793585,1,'actress',NULL,'[\"Nausicaä\"]'),(87544,875332,2,'actor',NULL,'[\"Jihl\",\"Muzu\"]'),(87544,477449,3,'actress',NULL,'[\"Oh-Baba\"]'),(87544,623214,4,'actor',NULL,'[\"Yupa\"]'),(87544,594503,5,'director',NULL,NULL),(87544,1248357,6,'writer','english language adaptation',NULL),(87544,1248358,7,'writer','english language adaptation',NULL),(87544,411872,8,'writer','earlier screenplay',NULL),(87544,847223,9,'producer','producer',NULL),(87597,1008737,10,'cinematographer','director of photography',NULL),(87597,346411,1,'actor',NULL,'[\"Alex Rogan\",\"Beta Alex\"]'),(87597,696481,2,'actor',NULL,'[\"Centauri\"]'),(87597,476484,3,'actor',NULL,'[\"Enduran\"]'),(87597,556660,4,'actor',NULL,'[\"Lord Kril\"]'),(87597,145309,5,'director',NULL,NULL),(87597,79471,6,'writer','written by',NULL),(87597,11867,7,'producer','producer',NULL),(87597,218891,8,'producer','producer',NULL),(87597,6268,9,'composer',NULL,NULL),(87644,898136,10,'editor',NULL,NULL),(87644,1687,1,'actress',NULL,'[\"Sarah Lawson\"]'),(87644,1023,2,'actor',NULL,'[\"Robert Harmon\"]'),(87644,7958,3,'actress',NULL,'[\"Susan\"]'),(87644,1025,4,'actor',NULL,'[\"Jack Lawson\"]'),(87644,20022,5,'writer','play',NULL),(87644,322946,6,'producer','producer',NULL),(87644,324875,7,'producer','producer',NULL),(87644,367802,8,'composer',NULL,NULL),(87644,747779,9,'cinematographer',NULL,NULL),(87681,785381,10,'cinematographer',NULL,NULL),(87681,487254,1,'actor',NULL,'[\"François\"]'),(87681,3508,2,'actor',NULL,'[\"Denis\"]'),(87681,240309,3,'actress',NULL,'[\"Mathilde\"]'),(87681,95574,4,'actress',NULL,'[\"Katrina\"]'),(87681,223250,5,'writer',NULL,NULL),(87681,37894,6,'producer','producer',NULL),(87681,269992,7,'producer','producer',NULL),(87681,216451,8,'composer',NULL,NULL),(87681,2259913,9,'composer',NULL,NULL),(87755,521554,10,'editor','film editor',NULL),(87755,1345,1,'actor',NULL,'[\"Kermit the Frog\",\"Rowlf\",\"Dr. Teeth\"]'),(87755,568,2,'actor',NULL,'[\"Miss Piggy\",\"Fozzie\",\"Animal\"]'),(87755,324397,3,'actor',NULL,'[\"Gonzo\",\"Chester the Rat\",\"Bill the Frog\"]'),(87755,926209,4,'actor',NULL,'[\"Rizzo the Rat\",\"Gill the Frog\",\"Chicken\"]'),(87755,665305,5,'writer','story by',NULL),(87755,850695,6,'writer','story by',NULL),(87755,493874,7,'producer','producer',NULL),(87755,5985,8,'composer',NULL,NULL),(87755,668481,9,'cinematographer','director of photography',NULL),(87781,5271,10,'composer',NULL,NULL),(87781,602,1,'actor',NULL,'[\"Roy Hobbs\"]'),(87781,380,2,'actor',NULL,'[\"Max Mercy\"]'),(87781,335,3,'actress',NULL,'[\"Iris Gaines\"]'),(87781,107,4,'actress',NULL,'[\"Memo Paris\"]'),(87781,1469,5,'director',NULL,NULL),(87781,538897,6,'writer','novel',NULL),(87781,870013,7,'writer','screenplay',NULL),(87781,244620,8,'writer','screenplay',NULL),(87781,425741,9,'producer','producer',NULL),(87799,821276,10,'editor',NULL,NULL),(87799,829252,1,'actress',NULL,'[\"Regina Belmont\"]'),(87799,549526,2,'actress',NULL,'[\"Samantha Belmont\"]'),(87799,296,3,'actor',NULL,'[\"Hector Gomez\"]'),(87799,268331,4,'actress',NULL,'[\"Doris Belmont\"]'),(87799,248054,5,'director',NULL,NULL),(87799,186988,6,'producer','producer',NULL),(87799,485229,7,'producer','producer',NULL),(87799,132375,8,'composer',NULL,NULL),(87799,16473,9,'cinematographer','director of photography',NULL),(87800,787603,10,'editor',NULL,NULL),(87800,486,1,'actress',NULL,'[\"Nancy Thompson\"]'),(87800,136,2,'actor',NULL,'[\"Glen Lantz\"]'),(87800,387,3,'actor',NULL,'[\"Fred Krueger\"]'),(87800,768334,4,'actor',NULL,'[\"Lt. Thompson\"]'),(87800,127,5,'director',NULL,NULL),(87800,790144,6,'producer','producer',NULL),(87800,17450,7,'composer',NULL,NULL),(87800,354413,8,'cinematographer',NULL,NULL),(87800,573073,9,'editor','co-editor',NULL),(87803,5683,10,'cinematographer','director of photography',NULL),(87803,457,1,'actor',NULL,'[\"Winston Smith\"]'),(87803,9,2,'actor',NULL,'[\"O\'Brien\"]'),(87803,358180,3,'actress',NULL,'[\"Julia\"]'),(87803,159258,4,'actor',NULL,'[\"Charrington\"]'),(87803,705535,5,'director',NULL,NULL),(87803,567,6,'writer','novel \"Nineteen Eighty-Four\"',NULL),(87803,675294,7,'producer','producer',NULL),(87803,1172032,8,'composer',NULL,NULL),(87803,611766,9,'composer',NULL,NULL),(87814,52849,10,'editor',NULL,NULL),(87814,873385,1,'actor',NULL,'[\"Mario\"]'),(87814,905,2,'actor',NULL,'[\"Saverio\"]'),(87814,678960,3,'actress',NULL,'[\"Astriaha\"]'),(87814,762246,4,'actress',NULL,'[\"Pia\"]'),(87814,78233,5,'writer',NULL,NULL),(87814,73272,6,'producer','producer',NULL),(87814,741157,7,'producer','producer',NULL),(87814,6043,8,'composer',NULL,NULL),(87814,5850,9,'cinematographer',NULL,NULL),(87843,33490,10,'writer','screenplay by',NULL),(87843,134,1,'actor',NULL,'[\"Noodles\"]'),(87843,249,2,'actor',NULL,'[\"Max\"]'),(87843,1527,3,'actress',NULL,'[\"Deborah\"]'),(87843,1852,4,'actor',NULL,'[\"Jimmy O\'Donnell\"]'),(87843,1466,5,'director',NULL,NULL),(87843,340580,6,'writer','based on novel \"The Hoods\" by',NULL),(87843,73053,7,'writer','screenplay by',NULL),(87843,207401,8,'writer','screenplay by',NULL),(87843,575804,9,'writer','screenplay by',NULL),(87884,176839,10,'composer',NULL,NULL),(87884,1765,1,'actor',NULL,'[\"Travis Henderson\"]'),(87884,176,2,'actress',NULL,'[\"Jane Henderson\"]'),(87884,1777,3,'actor',NULL,'[\"Walt Henderson\"]'),(87884,77669,4,'actor',NULL,'[\"Gas Station Attendant\"]'),(87884,694,5,'director',NULL,NULL),(87884,141281,6,'writer','adaptation by',NULL),(87884,1731,7,'writer','written by',NULL),(87884,232924,8,'writer','story editor: Channel 4',NULL),(87884,346395,9,'producer','producer',NULL),(87892,3574,10,'composer',NULL,NULL),(87892,1114,1,'actress',NULL,'[\"Adela Quested\"]'),(87892,51856,2,'actor',NULL,'[\"Dr. Aziz\"]'),(87892,1919,3,'actress',NULL,'[\"Mrs. Moore\"]'),(87892,289038,4,'actor',NULL,'[\"Richard Fielding\"]'),(87892,180,5,'director',NULL,NULL),(87892,286950,6,'writer','by',NULL),(87892,1802792,7,'writer','and the play by',NULL),(87892,102646,8,'producer','producer',NULL),(87892,329545,9,'producer','producer',NULL),(87909,292338,10,'editor',NULL,NULL),(87909,124,1,'actress',NULL,'[\"Jennifer Corvino\"]'),(87909,587,2,'actor',NULL,'[\"Professor John McGregor\"]'),(87909,630453,3,'actress',NULL,'[\"Frau Brückner\"]'),(87909,223953,4,'actress',NULL,'[\"Headmistress\"]'),(87909,783,5,'director',NULL,NULL),(87909,274853,6,'writer','written by',NULL),(87909,5972,7,'composer',NULL,NULL),(87909,6102,8,'composer',NULL,NULL),(87909,16295,9,'cinematographer',NULL,NULL),(87910,75688,10,'writer','book',NULL),(87910,1595,1,'actor',NULL,'[\"David Herdeg\"]'),(87910,262,2,'actress',NULL,'[\"Allison Hayes\"]'),(87910,160452,3,'actor',NULL,'[\"Dr. James Longstreet\"]'),(87910,223738,4,'actor',NULL,'[\"Jim Parker\"]'),(87910,706296,5,'director',NULL,NULL),(87910,417903,6,'writer','screenplay',NULL),(87910,337008,7,'writer','screenplay',NULL),(87910,72112,8,'writer','story by',NULL),(87910,415979,9,'writer','story by',NULL),(87913,13761,10,'cinematographer',NULL,NULL),(87913,544432,1,'actor',NULL,'[\"Paco\"]'),(87913,347218,2,'actor',NULL,'[\"Evaristo Torrecuadrada\"]'),(87913,16286,3,'actress',NULL,'[\"Betty\"]'),(87913,885221,4,'actor',NULL,'[\"El Lehendakari\"]'),(87913,407061,5,'director',NULL,NULL),(87913,324770,6,'writer','written by',NULL),(87913,127403,7,'writer','written by',NULL),(87913,701932,8,'producer','producer',NULL),(87913,138549,9,'composer',NULL,NULL),(87928,6540,10,'cinematographer','director of photography',NULL),(87928,430,1,'actor',NULL,'[\"Carey Mahoney\"]'),(87928,47265,2,'actor',NULL,'[\"Lt. Harris\"]'),(87928,326,3,'actress',NULL,'[\"Karen Thompson\"]'),(87928,807571,4,'actor',NULL,'[\"Moses Hightower\"]'),(87928,933505,5,'director',NULL,NULL),(87928,411477,6,'writer','screenplay',NULL),(87928,698493,7,'writer','screenplay',NULL),(87928,556487,8,'writer','original concept',NULL),(87928,6077,9,'composer',NULL,NULL),(87951,843123,10,'producer','producer',NULL),(87951,443,1,'actress',NULL,'[\"Sunny\"]'),(87951,1697,2,'actor',NULL,'[\"Michael Ransome\"]'),(87951,739087,3,'actor',NULL,'[\"Emir\"]'),(87951,339737,4,'actor',NULL,'[\"Nawaf Al Kabeer\"]'),(87951,6889,5,'director',NULL,NULL),(87951,377750,6,'writer','screenplay by',NULL),(87951,796124,7,'writer','story by',NULL),(87951,583600,8,'writer','story by',NULL),(87951,588458,9,'writer','story by',NULL),(87957,6014,10,'composer',NULL,NULL),(87957,2239,1,'actor',NULL,'[\"The Kid\"]'),(87957,467664,2,'actress',NULL,'[\"Apollonia\"]'),(87957,206528,3,'actor',NULL,'[\"Morris\"]'),(87957,439466,4,'actress',NULL,'[\"Mother\"]'),(87957,536299,5,'director',NULL,NULL),(87957,88479,6,'writer','written by',NULL),(87957,146868,7,'producer','producer',NULL),(87957,267302,8,'producer','producer',NULL),(87957,749262,9,'producer','producer',NULL),(87981,5871,10,'cinematographer','director of photography',NULL),(87981,2129,1,'actor',NULL,'[\"Carl Winters\"]'),(87981,925800,2,'actress',NULL,'[\"Sarah Cameron\"]'),(87981,449652,3,'actor',NULL,'[\"Jake Cullen\"]'),(87981,371824,4,'actor',NULL,'[\"Benny Baker\"]'),(87981,611683,5,'director',NULL,NULL),(87981,211193,6,'writer','written by',NULL),(87981,107380,7,'writer','novel',NULL),(87981,568427,8,'producer','producer',NULL),(87981,203762,9,'composer',NULL,NULL),(87995,5810,10,'cinematographer','director of photography',NULL),(87995,1765,1,'actor',NULL,'[\"Bud\"]'),(87995,389,2,'actor',NULL,'[\"Otto\"]'),(87995,910145,3,'actor',NULL,'[\"Miller\"]'),(87995,848,4,'actress',NULL,'[\"Leila\"]'),(87995,7182,5,'director',NULL,NULL),(87995,565292,6,'producer','producer',NULL),(87995,905237,7,'producer','producer',NULL),(87995,400312,8,'composer',NULL,NULL),(87995,488644,9,'composer',NULL,NULL),(88000,276059,10,'producer','producer',NULL),(88000,1019,1,'actor',NULL,'[\"Lewis\"]'),(88000,381,2,'actor',NULL,'[\"Gilbert\"]'),(88000,124079,3,'actor',NULL,'[\"Poindexter\"]'),(88000,144119,4,'actor',NULL,'[\"Wormser\"]'),(88000,437596,5,'director',NULL,NULL),(88000,582481,6,'writer','story',NULL),(88000,854185,7,'writer','story',NULL),(88000,951599,8,'writer','story',NULL),(88000,119542,9,'writer','story',NULL),(88001,170788,10,'editor',NULL,NULL),(88001,230,1,'actor',NULL,'[\"Nick\"]'),(88001,573,2,'actress',NULL,'[\"Jake Farris\"]'),(88001,2070,3,'actor',NULL,'[\"Noah Farris\"]'),(88001,500038,4,'actor',NULL,'[\"Freddie Ugo\"]'),(88001,163706,5,'director',NULL,NULL),(88001,4675,6,'writer','story',NULL),(88001,808477,7,'producer','producer',NULL),(88001,941703,8,'producer','producer',NULL),(88001,302027,9,'cinematographer',NULL,NULL),(88011,6293,10,'composer',NULL,NULL),(88011,140,1,'actor',NULL,'[\"Jack Colton\"]'),(88011,678,2,'actress',NULL,'[\"Joan Wilder\"]'),(88011,362,3,'actor',NULL,'[\"Ralph\"]'),(88011,635649,4,'actor',NULL,'[\"Ira\"]'),(88011,709,5,'director',NULL,NULL),(88011,858736,6,'writer','written by',NULL),(88011,229644,7,'writer',NULL,NULL),(88011,291442,8,'writer',NULL,NULL),(88011,798988,9,'writer',NULL,NULL),(88040,6094,10,'composer',NULL,NULL),(88040,484376,1,'actor',NULL,'[\"Paco, El Bajo\"]'),(88040,701715,2,'actress',NULL,'[\"Régula\"]'),(88040,50778,3,'actress',NULL,'[\"Nieves\"]'),(88040,755109,4,'actor',NULL,'[\"Quirce\"]'),(88040,133426,5,'director',NULL,NULL),(88040,217154,6,'writer','novel',NULL),(88040,488613,7,'writer','adaptation',NULL),(88040,559120,8,'writer','adaptation',NULL),(88040,558290,9,'producer','producer',NULL),(88075,6166,10,'composer',NULL,NULL),(88075,718800,1,'actress',NULL,'[\"Laura Meister\"]'),(88075,532292,2,'actress',NULL,'[\"Patience\"]'),(88075,805,3,'actress',NULL,'[\"Sophie Meister\"]'),(88075,256,4,'actress',NULL,'[\"Miss Lowrie\"]'),(88075,57733,5,'director',NULL,NULL),(88075,254488,6,'writer','novel',NULL),(88075,222399,7,'producer','producer',NULL),(88075,718840,8,'producer','producer',NULL),(88075,804207,9,'producer','producer',NULL),(88117,5858,10,'cinematographer','director of photography',NULL),(88117,154412,1,'actress',NULL,'[\"Mother Superior\"]'),(88117,566525,2,'actress',NULL,'[\"Sister Margaret\"]'),(88117,626270,3,'actress',NULL,'[\"Pamela\"]'),(88117,934042,4,'actor',NULL,'[\"Billy - at 18\"]'),(88117,783398,5,'director',NULL,NULL),(88117,128858,6,'writer','based on a story by',NULL),(88117,382652,7,'writer','written by',NULL),(88117,55304,8,'producer','producer',NULL),(88117,98559,9,'composer',NULL,NULL),(88128,181149,10,'production_designer',NULL,NULL),(88128,208,1,'actress',NULL,'[\"Samantha\"]'),(88128,1309,2,'actor',NULL,'[\"Geek\"]'),(88128,377888,3,'actor',NULL,'[\"Mike Baker\"]'),(88128,1706,4,'actor',NULL,'[\"Jake\"]'),(88128,455,5,'director',NULL,NULL),(88128,337906,6,'producer','producer',NULL),(88128,627673,7,'composer',NULL,NULL),(88128,126128,8,'cinematographer','director of photography',NULL),(88128,913149,9,'editor',NULL,NULL),(88146,6570,10,'cinematographer',NULL,NULL),(88146,738415,1,'actor',NULL,'[\"Captain Davenport\"]'),(88146,128360,2,'actor',NULL,'[\"Sergeant Waters\"]'),(88146,262543,3,'actor',NULL,'[\"Private Wilkie\"]'),(88146,4979,4,'actor',NULL,'[\"Corporal Cobb\"]'),(88146,422484,5,'director',NULL,NULL),(88146,298191,6,'writer','screenplay',NULL),(88146,658404,7,'producer','producer',NULL),(88146,777531,8,'producer','producer',NULL),(88146,359372,9,'composer',NULL,NULL),(88161,2626,10,'composer',NULL,NULL),(88161,158,1,'actor',NULL,'[\"Allen Bauer\"]'),(88161,435,2,'actress',NULL,'[\"Madison\"]'),(88161,506405,3,'actor',NULL,'[\"Walter Kornbluth\"]'),(88161,1006,4,'actor',NULL,'[\"Freddie Bauer\"]'),(88161,165,5,'director',NULL,NULL),(88161,4976,6,'writer','based on a story by',NULL),(88161,295171,7,'writer','screen story by',NULL),(88161,304665,8,'writer','screenplay by',NULL),(88161,541632,9,'writer','screenplay by',NULL),(88167,6034,10,'composer',NULL,NULL),(88167,320808,1,'actor',NULL,'[\"Paul Brandon\"]'),(88167,487254,2,'actor',NULL,'[\"Stéphane Carella\"]'),(88167,419838,3,'actress',NULL,'[\"Laura\"]'),(88167,57428,4,'actor',NULL,'[\"Kovacs\"]'),(88167,496312,5,'director',NULL,NULL),(88167,850396,6,'writer','scenario',NULL),(88167,223250,7,'writer','adaptation and dialogue',NULL),(88167,3508,8,'writer','adaptation and dialogue',NULL),(88167,37894,9,'producer','producer',NULL),(88170,638,1,'actor',NULL,'[\"Kirk\"]'),(88170,559,2,'actor',NULL,'[\"Spock\",\"Elevator Voice\"]'),(88170,1420,3,'actor',NULL,'[\"McCoy\"]'),(88170,1150,4,'actor',NULL,'[\"Scotty\"]'),(88170,734472,5,'writer','based on Star Trek created by',NULL),(88170,71790,6,'writer','written by',NULL),(88170,35,7,'composer',NULL,NULL),(88170,180891,8,'cinematographer',NULL,NULL),(88170,795628,9,'editor',NULL,NULL),(88172,6217,10,'composer',NULL,NULL),(88172,313,1,'actor',NULL,'[\"Starman\"]'),(88172,261,2,'actress',NULL,'[\"Jenny Hayden\"]'),(88172,1747,3,'actor',NULL,'[\"Mark Shermin\"]'),(88172,1395,4,'actor',NULL,'[\"George Fox\"]'),(88172,118,5,'director',NULL,NULL),(88172,262595,6,'writer','written by',NULL),(88172,317279,7,'writer','written by',NULL),(88172,718466,8,'writer',NULL,NULL),(88172,290581,9,'producer','producer',NULL),(88206,177466,10,'editor',NULL,NULL),(88206,644,1,'actress',NULL,'[\"Supergirl\",\"Linda Lee\"]'),(88206,1159,2,'actress',NULL,'[\"Selena\"]'),(88206,564,3,'actor',NULL,'[\"Zaltar\"]'),(88206,1201,4,'actress',NULL,'[\"Alura\"]'),(88206,844358,5,'director',NULL,NULL),(88206,643973,6,'writer','screenplay by',NULL),(88206,123135,7,'producer','producer',NULL),(88206,25,8,'composer',NULL,NULL),(88206,401727,9,'cinematographer','director of photography',NULL),(88247,325358,10,'editor',NULL,NULL),(88247,216,1,'actor',NULL,'[\"Terminator\"]'),(88247,157,2,'actress',NULL,'[\"Sarah Connor\"]'),(88247,299,3,'actor',NULL,'[\"Kyle Reese\"]'),(88247,934902,4,'actor',NULL,'[\"Traxler\"]'),(88247,116,5,'director',NULL,NULL),(88247,5036,6,'writer','written by',NULL),(88247,936537,7,'writer','additional dialogue',NULL),(88247,6075,8,'composer',NULL,NULL),(88247,4229,9,'cinematographer','director of photography',NULL),(88258,427654,10,'production_designer',NULL,NULL),(88258,1661,1,'actor',NULL,'[\"Marty DiBergi\"]'),(88258,571106,2,'actor',NULL,'[\"David St. Hubbins\"]'),(88258,1302,3,'actor',NULL,'[\"Nigel Tufnel\"]'),(88258,834571,4,'actress',NULL,'[\"Heavy Metal Fan\"]'),(88258,733427,5,'writer','written by',NULL),(88258,614420,6,'producer','producer',NULL),(88258,810545,7,'cinematographer',NULL,NULL),(88258,79879,8,'editor',NULL,NULL),(88258,781203,9,'editor',NULL,NULL),(88286,523324,10,'producer','producer',NULL),(88286,174,1,'actor',NULL,'[\"Nick Rivers\"]'),(88286,1725,2,'actor',NULL,'[\"Agent Cedric\"]'),(88286,447305,3,'actor',NULL,'[\"General Streck\"]'),(88286,165049,4,'actor',NULL,'[\"Colonel von Horst\"]'),(88286,720,5,'director',NULL,NULL),(88286,1878,6,'director',NULL,NULL),(88286,958387,7,'director',NULL,NULL),(88286,121789,8,'writer','written by',NULL),(88286,205727,9,'producer','producer',NULL),(88323,312083,10,'producer','producer',NULL),(88323,441,1,'actor',NULL,'[\"Atreyu\"]'),(88323,646768,2,'actor',NULL,'[\"Bastian\"]'),(88323,660,3,'actress',NULL,'[\"The Childlike Empress\"]'),(88323,574468,4,'actor',NULL,'[\"Bastian\'s Father\"]'),(88323,583,5,'director',NULL,NULL),(88323,917833,6,'writer','screenplay by',NULL),(88323,256779,7,'writer','novel',NULL),(88323,247691,8,'writer','additional dialogue',NULL),(88323,251536,9,'producer','producer',NULL),(88379,766884,10,'composer',NULL,NULL),(88379,1016,1,'actor',NULL,'[\"Kain\"]'),(88379,39435,2,'actor',NULL,'[\"Zeg the Tyrant\"]'),(88379,811940,3,'actress',NULL,'[\"Naja the Sorceress\"]'),(88379,209815,4,'actor',NULL,'[\"Kief, Zeg\'s Captain\"]'),(88379,110821,5,'director',NULL,NULL),(88379,832898,6,'writer','screenplay',NULL),(88379,452878,7,'writer','screenplay \"Yojimbo\"',NULL),(88379,644823,8,'writer','screenplay \"Yojimbo\"',NULL),(88379,410490,9,'producer','producer',NULL),(88459,198967,10,'production_designer',NULL,NULL),(88459,332052,1,'actor',NULL,'[\"Tommy\"]'),(88459,473252,2,'actor',NULL,'[\"Mike\"]'),(88459,103980,3,'actress',NULL,'[\"Birgit\"]'),(88459,294842,4,'actor',NULL,'[\"Gangster\"]'),(88459,699591,5,'director',NULL,NULL),(88459,222113,6,'composer',NULL,NULL),(88459,5771,7,'cinematographer',NULL,NULL),(88459,77926,8,'editor',NULL,NULL),(88459,943489,9,'editor',NULL,NULL),(88461,286579,10,'actress',NULL,'[\"Cristal\"]'),(88461,560962,1,'actress',NULL,'[\"Gloria\"]'),(88461,840779,2,'actor',NULL,'[\"Lucas Villalba\"]'),(88461,396159,3,'actor',NULL,'[\"Polo\"]'),(88461,386730,4,'actor',NULL,'[\"Profesor Kendo\"]'),(88461,264,5,'director',NULL,NULL),(88461,5970,6,'composer',NULL,NULL),(88461,273795,7,'cinematographer',NULL,NULL),(88461,757814,8,'editor',NULL,NULL),(88461,29278,9,'actor',NULL,'[\"Antonio\"]'),(88680,841,10,'cinematographer','director of photography',NULL),(88680,1162,1,'actor',NULL,'[\"Paul Hackett\"]'),(88680,275,2,'actress',NULL,'[\"Marcy\"]'),(88680,89244,3,'actress',NULL,'[\"June\"]'),(88680,1045,4,'actor',NULL,'[\"Pepe\"]'),(88680,217,5,'director',NULL,NULL),(88680,591387,6,'writer','written by',NULL),(88680,171348,7,'producer','producer',NULL),(88680,732364,8,'producer','producer',NULL),(88680,6290,9,'composer',NULL,NULL),(88683,316626,10,'editor',NULL,NULL),(88683,404,1,'actress',NULL,'[\"Doctor Martha Livingston\"]'),(88683,843,2,'actress',NULL,'[\"Mother Miriam Ruth\"]'),(88683,672,3,'actress',NULL,'[\"Sister Agnes\"]'),(88683,685771,4,'actress',NULL,'[\"Dr. Livingston\'s Mother\"]'),(88683,422484,5,'director',NULL,NULL),(88683,682196,6,'writer','screenplay',NULL),(88683,658404,7,'producer','producer',NULL),(88683,16,8,'composer',NULL,NULL),(88683,5815,9,'cinematographer','director of photography',NULL),(88727,705374,10,'actress',NULL,'[\"Mrs. Elizabeth Barry\"]'),(88727,1227,1,'actress',NULL,'[\"Anne Shirley\"]'),(88727,223157,2,'actress',NULL,'[\"Marilla Cuthbert\"]'),(88727,2070,3,'actor',NULL,'[\"Matthew Cuthbert\"]'),(88727,358093,4,'actress',NULL,'[\"Rachel Lynde\"]'),(88727,510032,5,'actress',NULL,'[\"Miss Muriel Stacy\"]'),(88727,335643,6,'actress',NULL,'[\"Diana Barry\"]'),(88727,188592,7,'actor',NULL,'[\"Gilbert Blythe\"]'),(88727,454569,8,'actress',NULL,'[\"Aunt Josephine\"]'),(88727,123201,9,'actress',NULL,'[\"Mrs. Amelia Evans\"]'),(88748,546095,10,'writer','english adaptation',NULL),(88748,136789,1,'actor',NULL,'[\"Astérix\",\"Idéfix\"]'),(88748,868139,2,'actor',NULL,'[\"Obélix\"]'),(88748,597816,3,'actor',NULL,'[\"Caius Obtus\"]'),(88748,767194,4,'actor',NULL,'[\"Jules César\"]'),(88748,110293,5,'director',NULL,NULL),(88748,110294,6,'director',NULL,NULL),(88748,331453,7,'writer','comic',NULL),(88748,879853,8,'writer','comic',NULL),(88748,853456,9,'writer','adaptation',NULL),(88763,4637,10,'editor',NULL,NULL),(88763,150,1,'actor',NULL,'[\"Marty McFly\"]'),(88763,502,2,'actor',NULL,'[\"Dr. Emmett Brown\"]'),(88763,670,3,'actress',NULL,'[\"Lorraine Baines\"]'),(88763,417,4,'actor',NULL,'[\"George McFly\"]'),(88763,709,5,'director',NULL,NULL),(88763,301826,6,'writer','written by',NULL),(88763,134635,7,'producer','producer',NULL),(88763,6293,8,'composer',NULL,NULL),(88763,5678,9,'cinematographer','director of photography',NULL),(88771,219021,10,'cinematographer','director of photography',NULL),(88771,165096,1,'actress',NULL,'[\"Amethea\"]'),(88771,2240,2,'actress',NULL,'[\"Estrild\"]'),(88771,951828,3,'actor',NULL,'[\"Argan\"]'),(88771,242382,4,'actress',NULL,'[\"Taramis\"]'),(88771,647055,5,'director',NULL,NULL),(88771,169438,6,'writer','screenplay',NULL),(88771,410490,7,'producer','producer',NULL),(88771,785909,8,'producer','producer',NULL),(88771,2366,9,'composer',NULL,NULL),(88794,956717,10,'production_designer',NULL,NULL),(88794,131,1,'actor',NULL,'[\"Lane Meyer\"]'),(88794,1773,2,'actor',NULL,'[\"Al Meyer\"]'),(88794,200981,3,'actress',NULL,'[\"Jenny Meyer\"]'),(88794,805164,4,'actor',NULL,'[\"Johnny Gasparini\"]'),(88794,390822,5,'director',NULL,NULL),(88794,415468,6,'producer','producer',NULL),(88794,385616,7,'composer',NULL,NULL),(88794,542552,8,'cinematographer',NULL,NULL),(88794,51096,9,'editor',NULL,NULL),(88814,932960,10,'writer','story',NULL),(88814,54344,1,'actor',NULL,'[\"Taran\"]'),(88814,428086,2,'actor',NULL,'[\"Dallben\"]'),(88814,792262,3,'actress',NULL,'[\"Eilonwy\"]'),(88814,1329,4,'actor',NULL,'[\"Fflewddur\"]'),(88814,75859,5,'director',NULL,NULL),(88814,723704,6,'director',NULL,NULL),(88814,18583,7,'writer','novel series \"The Chronicles of Prydain\"',NULL),(88814,420679,8,'writer','story',NULL),(88814,314788,9,'writer','story',NULL),(88846,4383,10,'composer',NULL,NULL),(88846,596,1,'actor',NULL,'[\"Sam Lowry\"]'),(88846,2114,2,'actress',NULL,'[\"Jill Layton\"]'),(88846,134,3,'actor',NULL,'[\"Harry Tuttle\"]'),(88846,1340,4,'actress',NULL,'[\"Mrs. Ida Lowry\"]'),(88846,416,5,'director',NULL,NULL),(88846,1779,6,'writer','screenplay by',NULL),(88846,571650,7,'writer','screenplay by',NULL),(88846,23395,8,'writer',NULL,NULL),(88846,586969,9,'producer','producer',NULL),(88847,181149,10,'production_designer',NULL,NULL),(88847,389,1,'actor',NULL,'[\"Andrew Clark\"]'),(88847,555,2,'actor',NULL,'[\"John Bender\"]'),(88847,208,3,'actress',NULL,'[\"Claire Standish\"]'),(88847,639,4,'actress',NULL,'[\"Allison Reynolds\"]'),(88847,455,5,'director',NULL,NULL),(88847,849232,6,'producer','producer',NULL),(88847,286850,7,'composer',NULL,NULL),(88847,215878,8,'cinematographer','director of photography',NULL),(88847,20441,9,'editor',NULL,NULL),(88885,689871,10,'writer','characters',NULL),(88885,257077,1,'actress',NULL,'[\"Love-a-Lot Bear\"]'),(88885,1682,2,'actor',NULL,'[\"Mr. Cherrywood\"]'),(88885,123201,3,'actress',NULL,'[\"The Spirit\"]'),(88885,861898,4,'actor',NULL,'[\"Jason\"]'),(88885,783676,5,'director',NULL,NULL),(88885,766558,6,'writer','screenplay',NULL),(88885,250172,7,'writer','characters',NULL),(88885,265283,8,'writer','characters',NULL),(88885,473653,9,'writer','characters',NULL),(88915,6074,10,'producer','producer',NULL),(88915,140,1,'actor',NULL,'[\"Zach\"]'),(88915,542994,2,'actor',NULL,'[\"Larry\"]'),(88915,88324,3,'actor',NULL,'[\"Mark\"]'),(88915,96608,4,'actress',NULL,'[\"Morales\"]'),(88915,277,5,'director',NULL,NULL),(88915,776068,6,'writer','screenplay',NULL),(88915,1378431,7,'writer','concept: musical \"A Chorus Line\"',NULL),(88915,456788,8,'writer','book: musical \"A Chorus Line\"',NULL),(88915,200600,9,'writer','book: musical \"A Chorus Line\"',NULL),(88930,5755,10,'cinematographer','director of photography',NULL),(88930,107281,1,'actress',NULL,'[\"Mrs. Peacock\"]'),(88930,347,2,'actor',NULL,'[\"Wadsworth\"]'),(88930,1404,3,'actress',NULL,'[\"Mrs. White\"]'),(88930,502,4,'actor',NULL,'[\"Professor Plum\"]'),(88930,528718,5,'director',NULL,NULL),(88930,484,6,'writer','story',NULL),(88930,695422,7,'writer','board game Cluedo',NULL),(88930,384185,8,'producer','producer',NULL),(88930,606657,9,'composer',NULL,NULL),(88939,550881,10,'producer','producer',NULL),(88939,418,1,'actor',NULL,'[\"Albert\"]'),(88939,155,2,'actress',NULL,'[\"Celie Johnson\"]'),(88939,1856,3,'actress',NULL,'[\"Sofia\"]'),(88939,1923,4,'actress',NULL,'[\"Shug Avery\"]'),(88939,229,5,'director',NULL,NULL),(88939,583675,6,'writer','screenplay',NULL),(88939,907504,7,'writer','novel',NULL),(88939,5065,8,'producer','producer',NULL),(88939,5086,9,'producer','producer',NULL),(88944,35,10,'composer',NULL,NULL),(88944,216,1,'actor',NULL,'[\"Matrix\"]'),(88944,1044,2,'actress',NULL,'[\"Cindy\"]'),(88944,445,3,'actor',NULL,'[\"Arius\"]'),(88944,920460,4,'actor',NULL,'[\"Bennett\"]'),(88944,504495,5,'director',NULL,NULL),(88944,517188,6,'writer','story by',NULL),(88944,918861,7,'writer','story by',NULL),(88944,211823,8,'writer','story by',NULL),(88944,5428,9,'producer','producer',NULL),(88993,26533,10,'production_designer',NULL,NULL),(88993,136440,1,'actress',NULL,'[\"Sarah\"]'),(88993,18777,2,'actor',NULL,'[\"John\"]'),(88993,683334,3,'actor',NULL,'[\"Rhodes\"]'),(88993,175826,4,'actor',NULL,'[\"McDermott\"]'),(88993,1681,5,'director',NULL,NULL),(88993,748283,6,'producer','producer',NULL),(88993,365666,7,'composer',NULL,NULL),(88993,331193,8,'cinematographer','director of photography',NULL),(88993,117779,9,'editor',NULL,NULL),(89010,6045,10,'composer',NULL,NULL),(89010,1810,1,'actor',NULL,'[\"Johnny \'Joker\' Johnson\"]'),(89010,1835,2,'actor',NULL,'[\"Cullen Monroe\"]'),(89010,491590,3,'actor',NULL,'[\"Sheriff Leroy Doyle\"]'),(89010,179224,4,'actor',NULL,'[\"Floyd Carpenter\"]'),(89010,723629,5,'director',NULL,NULL),(89010,57157,6,'writer','screenplay',NULL),(89010,949917,7,'writer','story',NULL),(89010,808414,8,'writer','story',NULL),(89010,522603,9,'producer','producer',NULL),(89015,649223,10,'production_designer',NULL,NULL),(89015,1726,1,'actress',NULL,'[\"Vivian Bell\"]'),(89015,1997,2,'actress',NULL,'[\"Cay Rivvers\"]'),(89015,511964,3,'actress',NULL,'[\"Frances Parker\"]'),(89015,15199,4,'actress',NULL,'[\"Silver\"]'),(89015,215123,5,'director',NULL,NULL),(89015,750022,6,'writer','based on the novel \"Desert of the Heart\" by',NULL),(89015,178276,7,'writer','screenplay by',NULL),(89015,5696,8,'cinematographer','director of photography',NULL),(89015,2333,9,'editor',NULL,NULL),(89017,5767,10,'cinematographer','director of photography',NULL),(89017,275,1,'actress',NULL,'[\"Roberta Glass\"]'),(89017,187,2,'actress',NULL,'[\"Susan\"]'),(89017,1644,3,'actor',NULL,'[\"Dez\"]'),(89017,89685,4,'actor',NULL,'[\"Gary Glass\"]'),(89017,782384,5,'director',NULL,NULL),(89017,54713,6,'writer','written by',NULL),(89017,683579,7,'producer','producer',NULL),(89017,762590,8,'producer','producer',NULL),(89017,2353,9,'composer',NULL,NULL),(89052,930119,10,'cinematographer','director of photography',NULL),(89052,114982,1,'actress',NULL,'[\"Alice Hargreaves\"]'),(89052,453,2,'actor',NULL,'[\"Reverend Charles L. Dodgson\",\"Lewis Carroll\"]'),(89052,1251,3,'actor',NULL,'[\"Jack Dolan\"]'),(89052,179830,4,'actress',NULL,'[\"Sally Mackeson\"]'),(89052,587669,5,'director',NULL,NULL),(89052,693259,6,'writer','written by',NULL),(89052,564768,7,'producer','producer',NULL),(89052,873282,8,'producer','producer',NULL),(89052,4368,9,'composer',NULL,NULL),(89066,1068696,10,'cinematographer',NULL,NULL),(89066,856187,1,'actor',NULL,'[\"William Prospero\"]'),(89066,229564,2,'actress',NULL,'[\"Arielle\"]'),(89066,529543,3,'actor',NULL,'[\"Inspector Neveu\"]'),(89066,882,4,'actress',NULL,'[\"Françoise Chenal\"]'),(89066,419,5,'director',NULL,NULL),(89066,764963,6,'writer','screenplay',NULL),(89066,785998,7,'writer','screenplay',NULL),(89066,594746,8,'writer','adaptation',NULL),(89066,333123,9,'producer','producer',NULL),(89077,405937,10,'cinematographer',NULL,NULL),(89077,332052,1,'actor',NULL,'[\"Tommy\"]'),(89077,473252,2,'actor',NULL,'[\"Mike\"]'),(89077,470175,3,'actress',NULL,'[\"Linda\"]'),(89077,1888282,4,'actress',NULL,'[\"Ling Ling\"]'),(89077,351486,5,'director',NULL,NULL),(89077,818567,6,'producer','producer',NULL),(89077,907173,7,'producer','producer',NULL),(89077,374569,8,'composer',NULL,NULL),(89077,919381,9,'composer',NULL,NULL),(89092,408196,10,'cinematographer',NULL,NULL),(89092,598,1,'actor',NULL,'[\"Davidge\"]'),(89092,1283,2,'actor',NULL,'[\"Drac\"]'),(89092,1397,3,'actor',NULL,'[\"Stubbs\"]'),(89092,546172,4,'actor',NULL,'[\"Arnold\"]'),(89092,583,5,'director',NULL,NULL),(89092,519530,6,'writer','story',NULL),(89092,451689,7,'writer','screenplay',NULL),(89092,295375,8,'producer','producer',NULL),(89092,3574,9,'composer',NULL,NULL),(89108,728052,10,'editor',NULL,NULL),(89108,104809,1,'actor',NULL,'[\"Antonio Musicardi\"]'),(89108,957976,2,'actress',NULL,'[\"Elvira Romero de Musicardi\"]'),(89108,309019,3,'actor',NULL,'[\"Mamá Cora\"]'),(89108,208674,4,'actor',NULL,'[\"Jorge Musicardi\"]'),(89108,233608,5,'director',NULL,NULL),(89108,486700,6,'writer','play',NULL),(89108,294554,7,'producer','executive producer',NULL),(89108,3657831,8,'producer','producer',NULL),(89108,501699,9,'cinematographer',NULL,NULL),(89118,6015,10,'composer',NULL,NULL),(89118,986,1,'actor',NULL,'[\"Roland Tyler\"]'),(89118,1133,2,'actor',NULL,'[\"Leo McCarthy\"]'),(89118,893204,3,'actress',NULL,'[\"Ellen\"]'),(89118,2037,4,'actor',NULL,'[\"Lipton\"]'),(89118,541677,5,'director',NULL,NULL),(89118,576312,6,'writer','written by',NULL),(89118,281411,7,'writer','written by',NULL),(89118,269689,8,'producer','producer',NULL),(89118,927483,9,'producer','producer',NULL),(89126,2377,10,'editor',NULL,NULL),(89126,126,1,'actor',NULL,'[\"Gardner Barnes\"]'),(89126,555,2,'actor',NULL,'[\"Phil Hicks\"]'),(89126,730168,3,'actor',NULL,'[\"Kenneth Waggener\"]'),(89126,124107,4,'actor',NULL,'[\"Dorman\"]'),(89126,721817,5,'director',NULL,NULL),(89126,957030,6,'producer','producer',NULL),(89126,6293,7,'composer',NULL,NULL),(89126,215878,8,'cinematographer','director of photography',NULL),(89126,772831,9,'editor',NULL,NULL),(89153,770936,10,'editor',NULL,NULL),(89153,442,1,'actor',NULL,'[\"Martin\"]'),(89153,492,2,'actress',NULL,'[\"Agnes\"]'),(89153,1979,3,'actor',NULL,'[\"Steven\"]'),(89153,860233,4,'actor',NULL,'[\"Hawkwood\"]'),(89153,682,5,'director',NULL,NULL),(89153,812121,6,'writer','story',NULL),(89153,894956,7,'producer','producer',NULL),(89153,6231,8,'composer',NULL,NULL),(89153,957,9,'cinematographer',NULL,NULL),(89155,340112,10,'producer','producer',NULL),(89155,331,1,'actor',NULL,'[\"Fletch\"]'),(89155,833,2,'actor',NULL,'[\"Chief Karlin\"]'),(89155,923984,3,'actress',NULL,'[\"Gail Stanwyk\"]'),(89155,508844,4,'actor',NULL,'[\"Walker\"]'),(89155,6916,5,'director',NULL,NULL),(89155,567780,6,'writer','novel',NULL),(89155,921,7,'writer','screenplay',NULL),(89155,4675,8,'writer','screenplay',NULL),(89155,235209,9,'producer','producer',NULL),(89173,798807,10,'producer','producer',NULL),(89173,455687,1,'actress',NULL,'[\"Pam\"]'),(89173,791803,2,'actor',NULL,'[\"Tommy\"]'),(89173,57450,3,'actor',NULL,'[\"Vinnie\"]'),(89173,60822,4,'actress',NULL,'[\"Nurse Yates\",\"Receptionist\"]'),(89173,826164,5,'director',NULL,NULL),(89173,457725,6,'writer','story by',NULL),(89173,169308,7,'writer','story by',NULL),(89173,192446,8,'writer','characters',NULL),(89173,566699,9,'writer','characters',NULL),(89175,214039,10,'production_designer',NULL,NULL),(89175,1697,1,'actor',NULL,'[\"Jerry Dandrige\"]'),(89175,706619,2,'actor',NULL,'[\"Charley Brewster\"]'),(89175,294,3,'actress',NULL,'[\"Amy Peterson\"]'),(89175,1522,4,'actor',NULL,'[\"Peter Vincent\"]'),(89175,276169,5,'director',NULL,NULL),(89175,415448,6,'producer','producer',NULL),(89175,6075,7,'composer',NULL,NULL),(89175,452654,8,'cinematographer','director of photography',NULL),(89175,79879,9,'editor',NULL,NULL),(89206,850879,10,'producer','producer',NULL),(89206,849028,1,'actress',NULL,'[\"Giovanni\"]'),(89206,757076,2,'actress',NULL,'[\"Campanella\"]'),(89206,394652,3,'actress',NULL,'[\"Zanelli\"]'),(89206,1902233,4,'actress',NULL,NULL),(89206,837485,5,'director',NULL,NULL),(89206,594531,6,'writer','novel',NULL),(89206,1908699,7,'writer','idea',NULL),(89206,79256,8,'writer','screenplay',NULL),(89206,361683,9,'producer','producer',NULL),(89208,221805,10,'editor','film editor',NULL),(89208,947010,1,'actor',NULL,'[\"Mr. Malene\"]'),(89208,629278,2,'actress',NULL,'[\"Rikki\"]'),(89208,86014,3,'actor',NULL,'[\"DTV Host\"]'),(89208,316421,4,'actor',NULL,'[\"Zach\"]'),(89208,582635,5,'director',NULL,NULL),(89208,818650,6,'writer','written by',NULL),(89208,751080,7,'producer','producer',NULL),(89208,2353,8,'composer',NULL,NULL),(89208,5630,9,'cinematographer','director of photography',NULL),(89218,572622,10,'cinematographer','director of photography',NULL),(89218,276,1,'actor',NULL,'[\"Mikey\"]'),(89218,982,2,'actor',NULL,'[\"Brand\"]'),(89218,169480,3,'actor',NULL,'[\"Chunk\"]'),(89218,397,4,'actor',NULL,'[\"Mouth\"]'),(89218,1149,5,'director',NULL,NULL),(89218,1060,6,'writer','screenplay by',NULL),(89218,229,7,'writer','story by',NULL),(89218,76748,8,'producer','producer',NULL),(89218,6115,9,'composer',NULL,NULL),(89276,534451,10,'editor',NULL,NULL),(89276,1903,1,'actress',NULL,'[\"Alicia\"]'),(89276,22765,2,'actor',NULL,'[\"Roberto\"]'),(89276,897693,3,'actress',NULL,'[\"Ana\"]'),(89276,32955,4,'actor',NULL,'[\"Enrique\"]'),(89276,699933,5,'director',NULL,NULL),(89276,97548,6,'writer','written by',NULL),(89276,686304,7,'producer','producer',NULL),(89276,821925,8,'composer',NULL,NULL),(89276,599983,9,'cinematographer',NULL,NULL),(89297,609918,10,'cinematographer',NULL,NULL),(89297,141418,1,'actress',NULL,'[\"Macabéa\"]'),(89297,241663,2,'actor',NULL,'[\"Olímpico de Jesus\"]'),(89297,851837,3,'actress',NULL,'[\"Glória\"]'),(89297,5244,4,'actress',NULL,'[\"Madame Carlota (the macumbeira)\"]'),(89297,24013,5,'director',NULL,NULL),(89297,514155,6,'writer','novel',NULL),(89297,650439,7,'writer',NULL,NULL),(89297,379486,8,'producer','producer',NULL),(89297,899160,9,'composer',NULL,NULL),(89308,827250,10,'cinematographer','director of photography',NULL),(89308,489,1,'actor',NULL,'[\"Stefan\"]'),(89308,568499,2,'actress',NULL,'[\"Jenny\"]'),(89308,114487,3,'actor',NULL,'[\"Ben\"]'),(89308,402556,4,'actress',NULL,'[\"Mariana\"]'),(89308,602333,5,'director',NULL,NULL),(89308,104707,6,'writer','based on the novel \"The Howling II\" by',NULL),(89308,765434,7,'writer','screenplay by',NULL),(89308,485569,8,'producer','producer',NULL),(89308,663914,9,'composer',NULL,NULL),(89371,52044,10,'composer',NULL,NULL),(89371,482580,1,'actor',NULL,'[\"Master Gau\"]'),(89371,157785,2,'actor',NULL,'[\"Chou Sheng\"]'),(89371,401204,3,'actor',NULL,'[\"Man Choi\"]'),(89371,497920,4,'actress',NULL,'[\"Ting-Ting\"]'),(89371,490605,5,'director',NULL,NULL),(89371,1022277,6,'writer',NULL,NULL),(89371,938944,7,'writer',NULL,NULL),(89371,399065,8,'writer','story',NULL),(89371,461914,9,'producer','producer',NULL),(89393,574238,10,'cinematographer','director of photography',NULL),(89393,405310,1,'actress',NULL,'[\"Terry Griffith\"]'),(89393,737553,2,'actor',NULL,'[\"Rick Morehouse\"]'),(89393,419747,3,'actor',NULL,'[\"Buddy Griffith\"]'),(89393,399981,4,'actress',NULL,'[\"Denise\"]'),(89393,331989,5,'director',NULL,NULL),(89393,271022,6,'writer','screenplay',NULL),(89393,291449,7,'writer','screenplay',NULL),(89393,283907,8,'producer','producer',NULL),(89393,779860,9,'composer',NULL,NULL),(89424,626389,10,'composer',NULL,NULL),(89424,458,1,'actor',NULL,'[\"Luis Molina\"]'),(89424,471,2,'actor',NULL,'[\"Valentin Arregui\"]'),(89424,968,3,'actress',NULL,'[\"Leni Lamaison\",\"Marta\",\"Spider Woman\"]'),(89424,506784,4,'actor',NULL,'[\"Warden\"]'),(89424,2199,5,'director',NULL,NULL),(89424,700194,6,'writer','based on the novel by',NULL),(89424,775055,7,'writer','written by',NULL),(89424,918844,8,'producer','producer',NULL),(89424,1803995,9,'composer',NULL,NULL),(89457,795682,10,'producer','producer',NULL),(89457,111,1,'actor',NULL,'[\"Gaston\"]'),(89457,442,2,'actor',NULL,'[\"Navarre\"]'),(89457,201,3,'actress',NULL,'[\"Isabeau\"]'),(89457,571674,4,'actor',NULL,'[\"Imperius\"]'),(89457,1149,5,'director',NULL,NULL),(89457,451689,6,'writer','screenplay',NULL),(89457,859241,7,'writer','screenplay',NULL),(89457,542539,8,'writer','screenplay',NULL),(89457,672459,9,'writer','screenplay',NULL),(89461,391784,10,'editor',NULL,NULL),(89461,846818,1,'actor',NULL,'[\"Leroy Green\"]'),(89461,889152,2,'actress',NULL,'[\"Laura Charles\"]'),(89461,613997,3,'actor',NULL,'[\"Eddie Arkadian\"]'),(89461,141114,4,'actor',NULL,'[\"Sho\'nuff\",\"The Shogun of Harlem\"]'),(89461,776317,5,'director',NULL,NULL),(89461,893207,6,'writer','written by',NULL),(89461,386991,7,'producer','producer',NULL),(89461,2226,8,'composer',NULL,NULL),(89461,176448,9,'cinematographer','director of photography',NULL),(89469,4287,10,'cinematographer','director of photography',NULL),(89469,129,1,'actor',NULL,'[\"Jack\"]'),(89469,214,2,'actress',NULL,'[\"Lili\"]'),(89469,347,3,'actor',NULL,'[\"Darkness\"]'),(89469,908,4,'actor',NULL,'[\"Gump\"]'),(89469,631,5,'director',NULL,NULL),(89469,387132,6,'writer','written by',NULL),(89469,586969,7,'producer','producer',NULL),(89469,25,8,'composer',NULL,NULL),(89469,1725839,9,'composer',NULL,NULL),(89470,453808,10,'cinematographer','director of photography',NULL),(89470,644,1,'actress',NULL,'[\"Billie Jean\"]'),(89470,225,2,'actor',NULL,'[\"Binx\"]'),(89470,330360,3,'actor',NULL,'[\"Lloyd\"]'),(89470,103071,4,'actor',NULL,'[\"Pyatt\"]'),(89470,730422,5,'director',NULL,NULL),(89470,742797,6,'writer','written by',NULL),(89470,465199,7,'writer','written by',NULL),(89470,3418,8,'producer','producer',NULL),(89470,6268,9,'composer',NULL,NULL),(89606,6141,10,'composer',NULL,NULL),(89606,321764,1,'actor',NULL,'[\"Ingemar\"]'),(89606,902059,2,'actor',NULL,'[\"Gunnar, Ingemars morbror\"]'),(89606,509258,3,'actress',NULL,'[\"Ingemars mamma\"]'),(89606,455688,4,'actress',NULL,'[\"Saga\"]'),(89606,2120,5,'director',NULL,NULL),(89606,433653,6,'writer','novel',NULL),(89606,117530,7,'writer','screenplay',NULL),(89606,74719,8,'writer','screenplay',NULL),(89606,74073,9,'producer','producer',NULL),(89686,354413,10,'cinematographer',NULL,NULL),(89686,387,1,'actor',NULL,'[\"Freddy Krueger\"]'),(89686,666593,2,'actor',NULL,'[\"Jesse Walsh\"]'),(89686,616766,3,'actress',NULL,'[\"Lisa Webber\"]'),(89686,750852,4,'actor',NULL,'[\"Ron Grady\"]'),(89686,794791,5,'director',NULL,NULL),(89686,153883,6,'writer','written by',NULL),(89686,127,7,'writer','characters',NULL),(89686,790144,8,'producer','producer',NULL),(89686,2366,9,'composer',NULL,NULL),(89695,326479,10,'cinematographer','director of photography',NULL),(89695,571893,1,'actor',NULL,'[\"Jason Stillwell\"]'),(89695,241,2,'actor',NULL,'[\"Ivan Kraschinsky the Russian\"]'),(89695,265361,3,'actor',NULL,'[\"R.J. Madison\"]'),(89695,797952,4,'actress',NULL,'[\"Kelly Reilly\"]'),(89695,477035,5,'director',NULL,NULL),(89695,628838,6,'writer','original story',NULL),(89695,833298,7,'writer','screenplay',NULL),(89695,319654,8,'composer',NULL,NULL),(89695,8012207,9,'composer',NULL,NULL),(89730,383837,10,'producer','producer',NULL),(89730,1381,1,'actress',NULL,'[\"Countess\"]'),(89730,120,2,'actor',NULL,'[\"Mark Kendall\"]'),(89730,465789,3,'actress',NULL,'[\"Robin Pierce\"]'),(89730,1476,4,'actor',NULL,'[\"Sebastian\"]'),(89730,832573,5,'director',NULL,NULL),(89730,898001,6,'writer','story',NULL),(89730,385653,7,'writer','screenplay',NULL),(89730,369492,8,'writer','screenplay',NULL),(89730,731271,9,'writer','screenplay',NULL),(89748,951798,10,'editor',NULL,NULL),(89748,195617,1,'actor',NULL,'[\"Malik\"]'),(89748,543547,2,'actor',NULL,'[\"Mehmed Mesa Zolj\"]'),(89748,438905,3,'actress',NULL,'[\"Senija Sena Zolj\"]'),(89748,618768,4,'actor',NULL,'[\"Zijah Zijo Zulfikarpasic\"]'),(89748,1437,5,'director',NULL,NULL),(89748,796710,6,'writer',NULL,NULL),(89748,664572,7,'producer','producer',NULL),(89748,799550,8,'composer',NULL,NULL),(89748,276803,9,'cinematographer',NULL,NULL),(89755,713128,10,'writer',NULL,NULL),(89755,658,1,'actress',NULL,'[\"Karen\"]'),(89755,602,2,'actor',NULL,'[\"Denys\"]'),(89755,1970,3,'actor',NULL,'[\"Bror\"]'),(89755,457655,4,'actor',NULL,'[\"Berkeley\"]'),(89755,1628,5,'director',NULL,NULL),(89755,227598,6,'writer','based upon the following: \"Out of Africa\" and other writings by',NULL),(89755,862189,7,'writer','based upon the following: \"Isak Dinesen: The Life of a Story Teller\" by',NULL),(89755,1429643,8,'writer','based upon the following: \"Silence Will Speak\" by',NULL),(89755,525104,9,'writer','screenplay by',NULL),(89767,137063,10,'production_designer',NULL,NULL),(89767,142,1,'actor',NULL,'[\"Preacher\"]'),(89767,605363,2,'actor',NULL,'[\"Hull Barret\"]'),(89767,811202,3,'actress',NULL,'[\"Sarah Wheeler\"]'),(89767,1607,4,'actress',NULL,'[\"Megan Wheeler\"]'),(89767,125060,5,'writer','written by',NULL),(89767,795461,6,'writer','written by',NULL),(89767,6215,7,'composer',NULL,NULL),(89767,839732,8,'cinematographer','director of photography',NULL),(89767,185088,9,'editor',NULL,NULL),(89791,384,10,'composer',NULL,NULL),(89791,607,1,'actor',NULL,'[\"Pee-wee Herman\"]'),(89791,197354,2,'actress',NULL,'[\"Dottie\"]'),(89791,392625,3,'actor',NULL,'[\"Francis Buxton\"]'),(89791,758405,4,'actress',NULL,'[\"Simone\"]'),(89791,318,5,'director',NULL,NULL),(89791,367005,6,'writer','written by',NULL),(89791,889962,7,'writer','written by',NULL),(89791,9272,8,'producer','producer',NULL),(89791,5414,9,'producer','producer',NULL),(89822,790775,10,'writer','written by',NULL),(89822,430,1,'actor',NULL,'[\"Carey Mahoney\"]'),(89822,807571,2,'actor',NULL,'[\"Hightower\"]'),(89822,333701,3,'actor',NULL,'[\"Tackleberry\"]'),(89822,935498,4,'actor',NULL,'[\"Larvell Jones\"]'),(89822,661577,5,'director',NULL,NULL),(89822,797526,6,'director',NULL,NULL),(89822,411477,7,'writer','characters created by',NULL),(89822,698493,8,'writer','characters created by',NULL),(89822,87904,9,'writer','written by',NULL),(89838,898535,10,'editor',NULL,NULL),(89838,1589,1,'actor',NULL,'[\"Gilbert Chilvers\"]'),(89838,1749,2,'actress',NULL,'[\"Joyce Chilvers\"]'),(89838,1186,3,'actor',NULL,'[\"Dr. Swaby\"]'),(89838,341743,4,'actor',NULL,'[\"Allardyce\"]'),(89838,610261,5,'director',NULL,NULL),(89838,3141,6,'writer','written by',NULL),(89838,794480,7,'producer','producer',NULL),(89838,6047,8,'composer',NULL,NULL),(89838,682503,9,'cinematographer','director of photography',NULL),(89853,943451,10,'production_designer',NULL,NULL),(89853,1201,1,'actress',NULL,'[\"Cecilia\"]'),(89853,1099,2,'actor',NULL,'[\"Tom Baxter\",\"Gil Shepherd\"]'),(89853,732,3,'actor',NULL,'[\"Monk\"]'),(89853,582778,4,'actor',NULL,'[\"Theater Manager\"]'),(89853,95,5,'director',NULL,NULL),(89853,339086,6,'producer','producer',NULL),(89853,405163,7,'composer',NULL,NULL),(89853,932336,8,'cinematographer','director of photography',NULL),(89853,607673,9,'editor',NULL,NULL),(89869,153064,10,'composer',NULL,NULL),(89869,492649,1,'actor',NULL,'[\"Zac Hobson\"]'),(89869,746147,2,'actress',NULL,'[\"Joanne\"]'),(89869,809572,3,'actor',NULL,'[\"Api\"]'),(89869,908525,4,'actor',NULL,'[\"Api\'s Mate\"]'),(89869,614276,5,'director',NULL,NULL),(89869,365532,6,'writer','novel',NULL),(89869,46326,7,'writer','written by',NULL),(89869,683578,8,'writer','written by',NULL),(89869,721691,9,'producer','producer',NULL),(89880,25,10,'composer',NULL,NULL),(89880,230,1,'actor',NULL,'[\"Rambo\"]'),(89880,1077,2,'actor',NULL,'[\"Trautman\"]'),(89880,621008,3,'actor',NULL,'[\"Murdock\"]'),(89880,925,4,'actor',NULL,'[\"Podovsky\"]'),(89880,181902,5,'director',NULL,NULL),(89880,606251,6,'writer','based on characters created by',NULL),(89880,418883,7,'writer','story by',NULL),(89880,116,8,'writer','screenplay by',NULL),(89880,270809,9,'producer','producer',NULL),(89881,797889,10,'producer','producer',NULL),(89881,619938,1,'actor',NULL,'[\"Lord Hidetora Ichimonji\"]'),(89881,855417,2,'actor',NULL,'[\"Taro Takatora Ichimonji\"]'),(89881,628704,3,'actor',NULL,'[\"Jiro Masatora Ichimonji\"]'),(89881,753480,4,'actor',NULL,'[\"Saburo Naotora Ichimonji\"]'),(89881,41,5,'director',NULL,NULL),(89881,644823,6,'writer','screenplay',NULL),(89881,406836,7,'writer','screenplay',NULL),(89881,636,8,'writer','play \"King Lear\"',NULL),(89881,361683,9,'producer','producer',NULL),(89885,51659,10,'composer',NULL,NULL),(89885,1062,1,'actor',NULL,'[\"Herbert West\"]'),(89885,7940,2,'actor',NULL,'[\"Dan Cain\"]'),(89885,186225,3,'actress',NULL,'[\"Megan Halsey\"]'),(89885,301834,4,'actor',NULL,'[\"Dr. Carl Hill\"]'),(89885,2340,5,'director',NULL,NULL),(89885,522454,6,'writer','story \"Herbert West, Re-Animator\"',NULL),(89885,660016,7,'writer','screenplay',NULL),(89885,635920,8,'writer','screenplay',NULL),(89885,951206,9,'producer','producer',NULL),(89886,2353,10,'composer',NULL,NULL),(89886,174,1,'actor',NULL,'[\"Chris Knight\"]'),(89886,672769,2,'actor',NULL,'[\"Shuttle Pilot\"]'),(89886,11937,3,'actor',NULL,'[\"Laser Ray Victim\"]'),(89886,43686,4,'actor',NULL,'[\"Bartender\"]'),(89886,4838,5,'director',NULL,NULL),(89886,411477,6,'writer','story',NULL),(89886,698493,7,'writer','story',NULL),(89886,868242,8,'writer','screenplay',NULL),(89886,4976,9,'producer','producer',NULL),(89893,934817,10,'writer','comic book',NULL),(89893,216,1,'actor',NULL,'[\"Kalidor\"]'),(89893,557,2,'actress',NULL,'[\"Red Sonja\"]'),(89893,922,3,'actress',NULL,'[\"Queen Gedren\"]'),(89893,809544,4,'actor',NULL,'[\"Falkon\"]'),(89893,281507,5,'director',NULL,NULL),(89893,397574,6,'writer','based on the character created by',NULL),(89893,264088,7,'writer','written by',NULL),(89893,292129,8,'writer','written by',NULL),(89893,859471,9,'writer','comic book',NULL),(89908,914239,10,'cinematographer','director of photography',NULL),(89908,103,1,'actress',NULL,'[\"Dorothy\"]'),(89908,932116,2,'actor',NULL,'[\"Dr. Worley\",\"Nome King\"]'),(89908,550577,3,'actress',NULL,'[\"Nurse Wilson\",\"Mombi\"]'),(89908,1453,4,'actress',NULL,'[\"Aunt Em\"]'),(89908,4555,5,'director',NULL,NULL),(89908,219456,6,'writer','screenplay',NULL),(89908,875,7,'writer','novels \"Ozma of Oz\" and \"The Land of Oz\"',NULL),(89908,556487,8,'producer','producer',NULL),(89908,6288,9,'composer',NULL,NULL),(89927,956699,10,'editor','film editor',NULL),(89927,230,1,'actor',NULL,'[\"Rocky Balboa\"]'),(89927,1735,2,'actress',NULL,'[\"Adrian\"]'),(89927,949350,3,'actor',NULL,'[\"Paulie\"]'),(89927,1835,4,'actor',NULL,'[\"Apollo Creed\"]'),(89927,153590,5,'producer','producer',NULL),(89927,5563,6,'producer','producer',NULL),(89927,225746,7,'composer',NULL,NULL),(89927,124832,8,'cinematographer','director of photography',NULL),(89927,923847,9,'editor','film editor',NULL),(89960,61853,10,'production_designer',NULL,NULL),(89960,94789,1,'actress',NULL,'[\"Mona sans toit ni loi\"]'),(89960,617736,2,'actress',NULL,'[\"La platanologue Mme Landier\"]'),(89960,293889,3,'actor',NULL,'[\"Jean-Pierre, ingéneur agronome\"]'),(89960,708136,4,'actor',NULL,'[\"Le marocain qui la trouve\"]'),(89960,889513,5,'director',NULL,NULL),(89960,590594,6,'producer','producer',NULL),(89960,116861,7,'composer',NULL,NULL),(89960,89333,8,'cinematographer',NULL,NULL),(89960,563440,9,'editor',NULL,NULL),(90009,906857,10,'composer',NULL,NULL),(90009,922,1,'actress',NULL,'[\"She\"]'),(90009,331563,2,'actor',NULL,'[\"Tom\"]'),(90009,450375,3,'actress',NULL,'[\"Shanda\"]'),(90009,612078,4,'actor',NULL,'[\"Dick\"]'),(90009,383605,5,'director',NULL,NULL),(90009,353584,6,'writer','novel',NULL),(90009,199242,7,'producer','producer',NULL),(90009,132786,8,'composer',NULL,NULL),(90009,371762,9,'composer',NULL,NULL),(90056,4976,10,'producer','producer',NULL),(90056,331,1,'actor',NULL,'[\"Emmett Fitz-Hume\"]'),(90056,101,2,'actor',NULL,'[\"Austin Millbarge\"]'),(90056,829635,3,'actor',NULL,'[\"Ace Tomato Courier\"]'),(90056,199733,4,'actor',NULL,'[\"Ace Tomato Driver\"]'),(90056,484,5,'director',NULL,NULL),(90056,858686,6,'writer','story',NULL),(90056,304665,7,'writer','screenplay',NULL),(90056,541632,8,'writer','screenplay',NULL),(90056,284390,9,'producer','producer',NULL),(90065,871876,10,'actor',NULL,'[\"Arthur\",\"Man-Droid #1\",\"Smuggler #1\"]'),(90065,171983,1,'actor',NULL,'[\"Orin\"]'),(90065,34492,2,'actor',NULL,'[\"Dagg Dibrimi\"]'),(90065,559166,3,'actress',NULL,'[\"Elan\",\"Aviana\"]'),(90065,209815,4,'actor',NULL,'[\"Lord Zygon\"]'),(90065,353970,5,'director',NULL,NULL),(90065,561026,6,'writer','written by',NULL),(90065,68999,7,'composer',NULL,NULL),(90065,259689,8,'editor',NULL,NULL),(90065,136012,9,'actress',NULL,'[\"Silica\"]'),(90103,5696,10,'cinematographer','director of photography',NULL),(90103,131,1,'actor',NULL,'[\"Walter \'Gib\' Gibson\"]'),(90103,1879,2,'actress',NULL,'[\"Alison Bradbury\"]'),(90103,381,3,'actor',NULL,'[\"Lance\"]'),(90103,301305,4,'actor',NULL,'[\"Jason\"]'),(90103,1661,5,'director',NULL,NULL),(90103,89237,6,'writer','written by',NULL),(90103,731271,7,'writer','written by',NULL),(90103,83696,8,'producer','producer',NULL),(90103,779860,9,'composer',NULL,NULL),(90110,177466,10,'editor',NULL,NULL),(90110,1448,1,'actress',NULL,'[\"Patsy Cline\"]'),(90110,438,2,'actor',NULL,'[\"Charlie Dick\"]'),(90110,917190,3,'actress',NULL,'[\"Hilda Hensley\"]'),(90110,166359,4,'actor',NULL,'[\"Randy Hughes\"]'),(90110,718554,5,'director',NULL,NULL),(90110,315205,6,'writer','written by',NULL),(90110,193533,7,'producer','producer',NULL),(90110,343343,8,'composer',NULL,NULL),(90110,338577,9,'cinematographer','director of photography',NULL),(90142,6108,10,'composer',NULL,NULL),(90142,150,1,'actor',NULL,'[\"Scott Howard\"]'),(90142,358996,2,'actor',NULL,'[\"Harold Howard\"]'),(90142,882151,3,'actress',NULL,'[\"Boof\"]'),(90142,505842,4,'actor',NULL,'[\"Stiles\"]'),(90142,199722,5,'director',NULL,NULL),(90142,517188,6,'writer','written by',NULL),(90142,918861,7,'writer','written by',NULL),(90142,506070,8,'producer','producer',NULL),(90142,742586,9,'producer','producer',NULL),(90192,13972,10,'cinematographer','director of photography',NULL),(90192,859772,1,'actor',NULL,'[\"Jack Deth\"]'),(90192,166,2,'actress',NULL,'[\"Leena\"]'),(90192,824966,3,'actor',NULL,'[\"Whistler\",\"Detective Weisling\"]'),(90192,480869,4,'actor',NULL,'[\"McNulty\"]'),(90192,23929,5,'director',NULL,NULL),(90192,82677,6,'writer','written by',NULL),(90192,210290,7,'writer','written by',NULL),(90192,203905,8,'composer',NULL,NULL),(90192,753125,9,'composer',NULL,NULL),(90203,294483,10,'editor',NULL,NULL),(90203,656183,1,'actress',NULL,'[\"Mrs. Watts\"]'),(90203,1334,2,'actor',NULL,'[\"Ludie Watts\"]'),(90203,323344,3,'actress',NULL,'[\"Jessie Mae\"]'),(90203,103071,4,'actor',NULL,'[\"Sheriff\"]'),(90203,557751,5,'director',NULL,NULL),(90203,285210,6,'writer','screenplay',NULL),(90203,888241,7,'producer','producer',NULL),(90203,2370,8,'composer',NULL,NULL),(90203,2320,9,'cinematographer','director of photography',NULL),(90264,290,10,'composer',NULL,NULL),(90264,549,1,'actor',NULL,'[\"James Bond\"]'),(90264,686,2,'actor',NULL,'[\"Max Zorin\"]'),(90264,617,3,'actress',NULL,'[\"Stacey Sutton\"]'),(90264,5063,4,'actress',NULL,'[\"May Day\"]'),(90264,322515,5,'director',NULL,NULL),(90264,537363,6,'writer','screenplay',NULL),(90264,933865,7,'writer','screenplay',NULL),(90264,1220,8,'writer','story \"From A View to a Kill\"',NULL),(90264,110482,9,'producer','producer',NULL),(90305,5772,10,'cinematographer','director of photography',NULL),(90305,1309,1,'actor',NULL,'[\"Gary\"]'),(90305,593819,2,'actor',NULL,'[\"Wyatt\"]'),(90305,1456,3,'actress',NULL,'[\"Lisa\"]'),(90305,200,4,'actor',NULL,'[\"Chet\"]'),(90305,455,5,'director',NULL,NULL),(90305,271167,6,'writer','comic book',NULL),(90305,301362,7,'writer','comic book',NULL),(90305,5428,8,'producer','producer',NULL),(90305,627673,9,'composer',NULL,NULL),(90310,341210,10,'production_designer',NULL,NULL),(90310,603,1,'actress',NULL,'[\"Jean Travers\"]'),(90310,453,2,'actor',NULL,'[\"Stanley Pilborough\"]'),(90310,1132,3,'actress',NULL,'[\"Marcia Pilborough\"]'),(90310,946789,4,'actress',NULL,'[\"Verity Braithwaite\"]'),(90310,2376,5,'director',NULL,NULL),(90310,718840,6,'producer','producer',NULL),(90310,5963,7,'composer',NULL,NULL),(90310,365355,8,'cinematographer',NULL,NULL),(90310,934440,9,'editor',NULL,NULL),(90315,410308,10,'actor',NULL,NULL),(90315,1919,1,'actress',NULL,'[\"Hilda Bloggs\"]'),(90315,590055,2,'actor',NULL,'[\"Jim Bloggs\"]'),(90315,396886,3,'actor',NULL,'[\"Announcer\"]'),(90315,751210,4,'actor',NULL,NULL),(90315,613471,5,'director',NULL,NULL),(90315,109076,6,'writer','book',NULL),(90315,167641,7,'producer','producer',NULL),(90315,914166,8,'composer',NULL,NULL),(90315,242172,9,'actor',NULL,NULL),(90319,6014,10,'composer',NULL,NULL),(90319,864,1,'actor',NULL,'[\"Nikolai \'Kolya\' Rodchenko\"]'),(90319,2138,2,'actor',NULL,'[\"Raymond Greenwood\"]'),(90319,804592,3,'actor',NULL,'[\"Colonel Chaiko\"]'),(90319,545,4,'actress',NULL,'[\"Galina Ivanova\"]'),(90319,431,5,'director',NULL,NULL),(90319,63953,6,'writer','screenplay by',NULL),(90319,400591,7,'writer','screenplay by',NULL),(90319,235683,8,'writer',NULL,NULL),(90319,319501,9,'producer','producer',NULL),(90329,3574,10,'composer',NULL,NULL),(90329,148,1,'actor',NULL,'[\"John Book\"]'),(90329,534,2,'actress',NULL,'[\"Rachel\"]'),(90329,1305,3,'actor',NULL,'[\"Samuel\"]'),(90329,813977,4,'actor',NULL,'[\"Schaeffer\"]'),(90329,1837,5,'director',NULL,NULL),(90329,446015,6,'writer','story by',NULL),(90329,908807,7,'writer','story by',NULL),(90329,908620,8,'writer','story by',NULL),(90329,271026,9,'producer','producer',NULL),(90555,830638,10,'editor',NULL,NULL),(90555,1357,1,'actor',NULL,'[\"Mick \'Crocodile\' Dundee\"]'),(90555,468957,2,'actress',NULL,'[\"Sue Charlton\"]'),(90555,576851,3,'actor',NULL,'[\"Walter Reilly\"]'),(90555,347858,4,'actor',NULL,'[\"Neville Bell\"]'),(90555,265363,5,'director',NULL,NULL),(90555,787185,6,'writer','screenplay',NULL),(90555,180257,7,'writer','screenplay',NULL),(90555,78984,8,'composer',NULL,NULL),(90555,6570,9,'cinematographer','director of photography',NULL),(90556,441863,10,'cinematographer','director of photography',NULL),(90556,651,1,'actress',NULL,'[\"Jessie Cates\"]'),(90556,843,2,'actress',NULL,'[\"Thelma Cates\"]'),(90556,75303,3,'actor',NULL,'[\"Dawson Cates\"]'),(90556,730306,4,'actress',NULL,'[\"Loretta Cates\"]'),(90556,601963,5,'director',NULL,NULL),(90556,635568,6,'writer','play',NULL),(90556,340112,7,'producer','producer',NULL),(90556,5455,8,'producer','producer',NULL),(90556,6288,9,'composer',NULL,NULL),(90563,697510,10,'editor',NULL,NULL),(90563,767,1,'actor',NULL,'[\"Zorg\"]'),(90563,1095,2,'actress',NULL,'[\"Betty\"]'),(90563,201462,3,'actor',NULL,'[\"Eddy\"]'),(90563,208850,4,'actress',NULL,'[\"Lisa\"]'),(90563,894,5,'director',NULL,NULL),(90563,229172,6,'writer','based on the novel by',NULL),(90563,1189,7,'composer',NULL,NULL),(90563,732199,8,'cinematographer','director of photography',NULL),(90563,213548,9,'editor',NULL,NULL),(90570,6070,10,'composer',NULL,NULL),(90570,843,1,'actress',NULL,'[\"Helene Hanff\"]'),(90570,164,2,'actor',NULL,'[\"Frank P. Doel\"]'),(90570,1132,3,'actress',NULL,'[\"Nora Doel\"]'),(90570,207203,4,'actress',NULL,'[\"Maxine Stuart\"]'),(90570,427880,5,'director',NULL,NULL),(90570,359815,6,'writer','book',NULL),(90570,740464,7,'writer','play',NULL),(90570,925849,8,'writer','screenplay',NULL),(90570,375658,9,'producer','producer',NULL),(90583,645596,10,'producer','producer',NULL),(90583,507,1,'actor',NULL,'[\"Danny\"]'),(90583,193,2,'actress',NULL,'[\"Debbie\"]'),(90583,902,3,'actor',NULL,'[\"Bernie\"]'),(90583,1610,4,'actress',NULL,'[\"Joan\"]'),(90583,1880,5,'director',NULL,NULL),(90583,519,6,'writer','play \"Sexual Perversity in Chicago\"',NULL),(90583,443730,7,'writer','screenplay',NULL),(90583,213932,8,'writer','screenplay',NULL),(90583,107945,9,'producer','producer',NULL),(90605,5036,10,'producer','producer',NULL),(90605,244,1,'actress',NULL,'[\"Ripley\"]'),(90605,299,2,'actor',NULL,'[\"Corporal Hicks\"]'),(90605,1343,3,'actress',NULL,'[\"Newt\"]'),(90605,1663,4,'actor',NULL,'[\"Burke\"]'),(90605,116,5,'director',NULL,NULL),(90605,318429,6,'writer','story by',NULL),(90605,1353,7,'writer','story by',NULL),(90605,639321,8,'writer','based on characters created by',NULL),(90605,795953,9,'writer','based on characters created by',NULL),(90633,690112,10,'producer','producer',NULL),(90633,1123,1,'actor',NULL,'[\"Tiger\"]'),(90633,1626,2,'actor',NULL,'[\"Henri\"]'),(90633,948361,3,'actress',NULL,'[\"Mama Mousekewitz\"]'),(90633,675490,4,'actor',NULL,'[\"Papa Mousekewitz\"]'),(90633,89940,5,'director',NULL,NULL),(90633,456946,6,'writer','story',NULL),(90633,294440,7,'writer','story',NULL),(90633,312076,8,'writer','story',NULL),(90633,325776,9,'producer','producer',NULL),(90655,337669,10,'editor',NULL,NULL),(90655,286033,1,'actress',NULL,'[\"Muffy\",\"Buffy\"]'),(90655,641906,2,'actor',NULL,'[\"Skip\"]'),(90655,737553,3,'actor',NULL,'[\"Chaz\"]'),(90655,48554,4,'actor',NULL,'[\"Harvey\"]'),(90655,910510,5,'director',NULL,NULL),(90655,45301,6,'writer','written by',NULL),(90655,541548,7,'producer','producer',NULL),(90655,17450,8,'composer',NULL,NULL),(90655,591665,9,'cinematographer','director of photography',NULL),(90660,583496,10,'composer',NULL,NULL),(90660,1006,1,'actor',NULL,'[\"Frank Dooley\"]'),(90660,212,2,'actress',NULL,'[\"Maggie Cavanaugh\"]'),(90660,506405,3,'actor',NULL,'[\"Norman Kane\"]'),(90660,5162,4,'actor',NULL,'[\"Michael Carlino\"]'),(90660,504495,5,'director',NULL,NULL),(90660,4976,6,'writer','story',NULL),(90660,601,7,'writer','story',NULL),(90660,5077,8,'writer','story',NULL),(90660,868242,9,'writer','screenplay',NULL),(90667,682181,10,'producer','producer',NULL),(90667,136789,1,'actor',NULL,'[\"Astérix\",\"Idéfix\"]'),(90667,868139,2,'actor',NULL,'[\"Obélix\"]'),(90667,124304,3,'actor',NULL,'[\"Jolitorax\"]'),(90667,597816,4,'actor',NULL,'[\"Décurion Cétinlapsus\"]'),(90667,887351,5,'director',NULL,NULL),(90667,331453,6,'writer','comic',NULL),(90667,879853,7,'writer','comic',NULL),(90667,853456,8,'writer','adaptation',NULL),(90667,546095,9,'writer','english adaptation',NULL),(90685,276248,10,'writer','story by',NULL),(90685,1098,1,'actor',NULL,'[\"Thornton Melon\"]'),(90685,1419,2,'actress',NULL,'[\"Diane\"]'),(90685,949350,3,'actor',NULL,'[\"Lou\"]'),(90685,330360,4,'actor',NULL,'[\"Jason Melon\"]'),(90685,582635,5,'director',NULL,NULL),(90685,436950,6,'writer','screenplay by',NULL),(90685,17620,7,'writer','screenplay by',NULL),(90685,868242,8,'writer','screenplay by',NULL),(90685,601,9,'writer','screenplay by',NULL),(90728,397697,10,'composer',NULL,NULL),(90728,621,1,'actor',NULL,'[\"Jack Burton\"]'),(90728,326,2,'actress',NULL,'[\"Gracie Law\"]'),(90728,241748,3,'actor',NULL,'[\"Wang Chi\"]'),(90728,393222,4,'actor',NULL,'[\"David Lo Pan\"]'),(90728,118,5,'director',NULL,NULL),(90728,325778,6,'writer','written by',NULL),(90728,918434,7,'writer','written by',NULL),(90728,725379,8,'writer','adaptation',NULL),(90728,290581,9,'producer','producer',NULL),(90738,89182,10,'editor',NULL,NULL),(90738,700,1,'actress',NULL,'[\"Alexandra \'Alex\' Barnes\"]'),(90738,622,2,'actress',NULL,'[\"Catharine Petersen\"]'),(90738,293739,3,'actor',NULL,'[\"Paul Nuytten\"]'),(90738,454,4,'actor',NULL,'[\"Ben Dumer\"]'),(90738,706182,5,'director',NULL,NULL),(90738,60103,6,'writer','written by',NULL),(90738,773837,7,'producer','producer',NULL),(90738,806498,8,'composer',NULL,NULL),(90738,5734,9,'cinematographer','director of photography',NULL),(90756,635876,10,'production_designer',NULL,NULL),(90756,618,1,'actress',NULL,'[\"Dorothy Vallens\"]'),(90756,1492,2,'actor',NULL,'[\"Jeffrey Beaumont\"]'),(90756,454,3,'actor',NULL,'[\"Frank Booth\"]'),(90756,368,4,'actress',NULL,'[\"Sandy Williams\"]'),(90756,186,5,'director',NULL,NULL),(90756,142301,6,'producer','producer',NULL),(90756,823,7,'composer',NULL,NULL),(90756,5695,8,'cinematographer','director of photography',NULL),(90756,242271,9,'editor',NULL,NULL),(90793,296636,10,'editor',NULL,NULL),(90793,1391,1,'actor',NULL,'[\"Captain EO\"]'),(90793,1378,2,'actress',NULL,'[\"The Supreme Leader\"]'),(90793,790071,3,'actor',NULL,'[\"Commander Bog\"]'),(90793,185272,4,'actor',NULL,'[\"Hooter\"]'),(90793,338,5,'director',NULL,NULL),(90793,184,6,'writer','screenplay',NULL),(90793,501544,7,'writer','screenplay',NULL),(90793,35,8,'composer',NULL,NULL),(90793,27287,9,'cinematographer',NULL,NULL),(90805,6043,10,'composer',NULL,NULL),(90805,2231,1,'actor',NULL,'[\"Aldo Moro\"]'),(90805,768641,2,'actor',NULL,'[\"1st Brigadist\"]'),(90805,953025,3,'actor',NULL,'[\"2nd Brigadist\"]'),(90805,273959,4,'actress',NULL,'[\"3rd Brigadist\"]'),(90805,273980,5,'director',NULL,NULL),(90805,441828,6,'writer','book \"Days of Wrath\"',NULL),(90805,49833,7,'writer','screenplay',NULL),(90805,778432,8,'writer','book',NULL),(90805,73272,9,'producer','producer',NULL),(90830,837396,10,'producer','producer',NULL),(90830,458,1,'actor',NULL,'[\"James\"]'),(90830,559144,2,'actress',NULL,'[\"Sarah\"]'),(90830,1453,3,'actress',NULL,'[\"Mrs. Norman\"]'),(90830,97842,4,'actor',NULL,'[\"Dr. Curtis Franklin\"]'),(90830,354279,5,'director',NULL,NULL),(90830,575865,6,'writer','stage play',NULL),(90830,26803,7,'writer','screenplay',NULL),(90830,140572,8,'writer',NULL,NULL),(90830,658404,9,'producer','producer',NULL),(90837,742790,10,'editor','film editor',NULL),(90837,549526,1,'actress',NULL,'[\"Alison Parks\"]'),(90837,217251,2,'actor',NULL,'[\"Ferdy Meisel\"]'),(90837,865273,3,'actor',NULL,'[\"Rick Stanton\"]'),(90837,256228,4,'actress',NULL,'[\"Linda Stanton\"]'),(90837,691061,5,'director',NULL,NULL),(90837,593746,6,'writer','written by',NULL),(90837,180022,7,'producer','producer',NULL),(90837,6009,8,'composer',NULL,NULL),(90837,725166,9,'cinematographer','director of photography',NULL),(90848,6293,10,'composer',NULL,NULL),(90848,435,1,'actress',NULL,'[\"Ayla\"]'),(90848,715622,2,'actress',NULL,'[\"Iza\"]'),(90848,1664,3,'actor',NULL,'[\"Creb\"]'),(90848,906640,4,'actor',NULL,'[\"Broud\"]'),(90848,152469,5,'director',NULL,NULL),(90848,41652,6,'writer','novel \"The Clan Of The Cave Bear\"',NULL),(90848,626,7,'writer','screenplay',NULL),(90848,636582,8,'writer',NULL,NULL),(90848,410805,9,'producer','producer',NULL),(90859,5923,10,'cinematographer','director of photography',NULL),(90859,230,1,'actor',NULL,'[\"Marion Cobretti\"]'),(90859,557,2,'actress',NULL,'[\"Ingrid\"]'),(90859,763858,3,'actor',NULL,'[\"Gonzales\"]'),(90859,732367,4,'actor',NULL,'[\"Detective Monte\"]'),(90859,181902,5,'director',NULL,NULL),(90859,331514,6,'writer','based upon the novel \"Fair Game\" by',NULL),(90859,322946,7,'producer','producer',NULL),(90859,324875,8,'producer','producer',NULL),(90859,6169,9,'composer',NULL,NULL),(90887,5891,10,'cinematographer','director of photography',NULL),(90887,908914,1,'actress',NULL,'[\"Helen Brown\"]'),(90887,1826,2,'actor',NULL,'[\"Harv\"]'),(90887,124100,3,'actor',NULL,'[\"Jay Brown\"]'),(90887,342241,4,'actor',NULL,'[\"Brad Brown\"]'),(90887,378893,5,'director',NULL,NULL),(90887,611344,6,'writer','story by',NULL),(90887,649210,7,'writer','additional scenes written by',NULL),(90887,367703,8,'producer','producer',NULL),(90887,628056,9,'composer',NULL,NULL),(90917,5769,10,'cinematographer','director of photography',NULL),(90917,479612,1,'actor',NULL,'[\"Paul\"]'),(90917,1785,2,'actress',NULL,'[\"Samantha\"]'),(90917,789326,3,'actor',NULL,'[\"Tom\"]'),(90917,878645,4,'actress',NULL,'[\"Jeannie\"]'),(90917,127,5,'director',NULL,NULL),(90917,378255,6,'writer','based on the novel \"Friend\" by',NULL),(90917,748022,7,'writer','screenplay by',NULL),(90917,792568,8,'producer','producer',NULL),(90917,17450,9,'composer',NULL,NULL),(90927,416039,10,'editor',NULL,NULL),(90927,1569,1,'actor',NULL,'[\"Scott\"]'),(90927,1511,2,'actor',NULL,'[\"Nick\"]'),(90927,842,3,'actor',NULL,'[\"Ben Kaplan\"]'),(90927,84086,4,'actor',NULL,'[\"Harry Goldman\"]'),(90927,324875,5,'director',NULL,NULL),(90927,116145,6,'writer','written by',NULL),(90927,322946,7,'producer','producer',NULL),(90927,6293,8,'composer',NULL,NULL),(90927,5732,9,'cinematographer',NULL,NULL),(90952,398871,10,'editor',NULL,NULL),(90952,510857,1,'actress',NULL,'[\"Tsao Wan\"]'),(90952,947313,2,'actress',NULL,'[\"Pat Neil\"]'),(90952,161193,3,'actress',NULL,'[\"Sheung Hung\"]'),(90952,155599,4,'actor',NULL,'[\"Ling Pak-Hoi\"]'),(90952,7139,5,'director',NULL,NULL),(90952,864782,6,'writer',NULL,NULL),(90952,161132,7,'producer','producer',NULL),(90952,399074,8,'composer',NULL,NULL),(90952,690940,9,'cinematographer',NULL,NULL),(90967,1823,1,'actor',NULL,'[\"Zack\"]'),(90967,527099,2,'actor',NULL,'[\"Jack\"]'),(90967,905,3,'actor',NULL,'[\"Roberto\"]'),(90967,971,4,'actress',NULL,'[\"Nicoletta\"]'),(90967,464,5,'director',NULL,NULL),(90967,459038,6,'producer','producer',NULL),(90967,5810,7,'cinematographer','director of photography',NULL),(90967,518755,8,'editor',NULL,NULL),(90967,219729,9,'production_designer',NULL,NULL),(91042,181149,10,'production_designer',NULL,NULL),(91042,111,1,'actor',NULL,'[\"Ferris Bueller\"]'),(91042,1688,2,'actor',NULL,'[\"Cameron Frye\"]'),(91042,214,3,'actress',NULL,'[\"Sloane Peterson\"]'),(91042,470,4,'actor',NULL,'[\"Ed Rooney\"]'),(91042,455,5,'director',NULL,NULL),(91042,414930,6,'producer','producer',NULL),(91042,627673,7,'composer',NULL,NULL),(91042,5714,8,'cinematographer','director of photography',NULL),(91042,386532,9,'editor',NULL,NULL),(91059,1890222,10,'producer','producer',NULL),(91059,186160,1,'actor',NULL,'[\"David Freeman\"]'),(91059,607,2,'actor',NULL,'[\"Max\"]'),(91059,2037,3,'actor',NULL,'[\"Bill Freeman\"]'),(91059,1021,4,'actress',NULL,'[\"Helen Freeman\"]'),(91059,459170,5,'director',NULL,NULL),(91059,48741,6,'writer','story',NULL),(91059,123674,7,'writer','screenplay',NULL),(91059,423333,8,'writer','screenplay',NULL),(91059,898001,9,'producer','producer',NULL),(91064,410419,10,'cinematographer',NULL,NULL),(91064,156,1,'actor',NULL,'[\"Seth Brundle\"]'),(91064,133,2,'actress',NULL,'[\"Veronica Quaife\"]'),(91064,315288,3,'actor',NULL,'[\"Stathis Borans\"]'),(91064,100205,4,'actress',NULL,'[\"Tawny\"]'),(91064,343,5,'director',NULL,NULL),(91064,486228,6,'writer','from the story by',NULL),(91064,688279,7,'writer','screenplay by',NULL),(91064,180366,8,'producer','producer',NULL),(91064,6290,9,'composer',NULL,NULL),(91065,949950,10,'cinematographer','director of photography',NULL),(91065,1882,1,'actress',NULL,'[\"Robin Crew\"]'),(91065,206,2,'actor',NULL,'[\"Tommy Warneki\"]'),(91065,878240,3,'actress',NULL,'[\"Jean Stoller\"]'),(91065,824763,4,'actress',NULL,'[\"Carly Simmons\"]'),(91065,528420,5,'director',NULL,NULL),(91065,791949,6,'writer','written by',NULL),(91065,469734,7,'producer','producer',NULL),(91065,114370,8,'composer',NULL,NULL),(91065,192687,9,'composer',NULL,NULL),(91080,469765,10,'cinematographer','director of photography',NULL),(91080,558726,1,'actor',NULL,'[\"Tommy\"]'),(91080,177438,2,'actress',NULL,'[\"Megan\"]'),(91080,434563,3,'actor',NULL,'[\"Sheriff Garris\"]'),(91080,634729,4,'actress',NULL,'[\"Paula\"]'),(91080,572951,5,'director',NULL,NULL),(91080,192446,6,'writer','characters',NULL),(91080,566699,7,'writer','characters',NULL),(91080,67112,8,'producer','producer',NULL),(91080,6185,9,'composer',NULL,NULL),(91083,13972,10,'cinematographer','director of photography',NULL),(91083,1062,1,'actor',NULL,'[\"Crawford Tillinghast\"]'),(91083,186225,2,'actress',NULL,'[\"Dr. Katherine McMichaels\"]'),(91083,814811,3,'actor',NULL,'[\"Dr. Edward Pretorius\"]'),(91083,286010,4,'actor',NULL,'[\"Bubba Brownlee\"]'),(91083,2340,5,'director',NULL,NULL),(91083,522454,6,'writer','short story',NULL),(91083,951206,7,'writer','adaptation',NULL),(91083,660016,8,'writer','adaptation',NULL),(91083,51659,9,'composer',NULL,NULL),(91093,7069,1,'actor',NULL,'[\"François Pignon\"]'),(91093,367,2,'actor',NULL,'[\"Jean Lucas\"]'),(91093,138405,3,'actor',NULL,'[\"Martin\"]'),(91093,57428,4,'actor',NULL,'[\"Superintendant Duroc\"]'),(91093,891554,5,'director',NULL,NULL),(91093,6019,6,'composer',NULL,NULL),(91093,5907,7,'cinematographer',NULL,NULL),(91093,239656,8,'editor',NULL,NULL),(91093,200812,9,'production_designer',NULL,NULL),(91149,314788,10,'writer','story adapted by',NULL),(91149,1637,1,'actor',NULL,'[\"Professor Ratigan\"]'),(91149,408813,2,'actor',NULL,'[\"Basil\",\"Bartholomew\"]'),(91149,79353,3,'actor',NULL,'[\"Dawson\",\"Thug Guard\"]'),(91149,689527,4,'actress',NULL,'[\"Olivia\"]'),(91149,166256,5,'director',NULL,NULL),(91149,560329,6,'director',NULL,NULL),(91149,585150,7,'director',NULL,NULL),(91149,615780,8,'director',NULL,NULL),(91149,949954,9,'writer','story adapted by',NULL),(91167,1201,1,'actress',NULL,'[\"Hannah\"]'),(91167,1848,2,'actress',NULL,'[\"Holly\"]'),(91167,323,3,'actor',NULL,'[\"Elliot\"]'),(91167,1347,4,'actress',NULL,'[\"Lee\"]'),(91167,95,5,'director',NULL,NULL),(91167,339086,6,'producer','producer',NULL),(91167,5688,7,'cinematographer','director of photography',NULL),(91167,607673,8,'editor',NULL,NULL),(91167,943451,9,'production_designer',NULL,NULL),(91203,659949,10,'producer','producer',NULL),(91203,483,1,'actor',NULL,'[\"Connor MacLeod\"]'),(91203,125,2,'actor',NULL,'[\"Ramirez\"]'),(91203,317,3,'actor',NULL,'[\"Kurgan\"]'),(91203,366509,4,'actress',NULL,'[\"Brenda Wyatt\"]'),(91203,611683,5,'director',NULL,NULL),(91203,927074,6,'writer','story',NULL),(91203,69282,7,'writer','screenplay',NULL),(91203,272511,8,'writer','screenplay',NULL),(91203,205287,9,'producer','producer',NULL),(91217,641839,10,'editor',NULL,NULL),(91217,432,1,'actor',NULL,'[\"Coach Norman Dale\"]'),(91217,1347,2,'actress',NULL,'[\"Myra Fleener\"]'),(91217,454,3,'actor',NULL,'[\"Shooter Fletch\"]'),(91217,941125,4,'actor',NULL,'[\"Cletus Summers\"]'),(91217,770,5,'director',NULL,NULL),(91217,686233,6,'writer','written by',NULL),(91217,214925,7,'producer','producer',NULL),(91217,25,8,'composer',NULL,NULL),(91217,2320,9,'cinematographer','director of photography',NULL),(91225,459660,10,'cinematographer','director of photography',NULL),(91225,670,1,'actress',NULL,'[\"Beverly Switzler\"]'),(91225,470,2,'actor',NULL,'[\"Dr. Walter Jenning\"]'),(91225,209,3,'actor',NULL,'[\"Phil Blumburtt\"]'),(91225,301839,4,'actor',NULL,'[\"Howard T. Duck\"]'),(91225,404754,5,'director',NULL,NULL),(91225,314153,6,'writer','based on the character created by',NULL),(91225,441718,7,'writer','written by',NULL),(91225,562554,8,'writer','based on the character created by',NULL),(91225,290,9,'composer',NULL,NULL),(91251,678202,10,'production_designer',NULL,NULL),(91251,470385,1,'actor',NULL,'[\"Flyora Gayshun\"]'),(91251,592500,2,'actress',NULL,'[\"Glasha\"]'),(91251,490708,3,'actor',NULL,'[\"Kosach\"]'),(91251,46575,4,'actor',NULL,'[\"Rubezh\"]'),(91251,459552,5,'director',NULL,NULL),(91251,10696,6,'writer','screenplay',NULL),(91251,945897,7,'composer',NULL,NULL),(91251,734870,8,'cinematographer',NULL,NULL),(91251,69483,9,'editor',NULL,NULL),(91278,4229,10,'cinematographer','director of photography',NULL),(91278,1283,1,'actor',NULL,'[\"Chappy\"]'),(91278,1263,2,'actor',NULL,'[\"Doug\"]'),(91278,837064,3,'actor',NULL,'[\"Minister of Defense\"]'),(91278,859772,4,'actor',NULL,'[\"Ted\"]'),(91278,2089,5,'director',NULL,NULL),(91278,253106,6,'writer','written by',NULL),(91278,760515,7,'producer','producer',NULL),(91278,937208,8,'producer','producer',NULL),(91278,6231,9,'composer',NULL,NULL),(91306,211823,10,'writer',NULL,NULL),(91306,155,1,'actress',NULL,'[\"Terry Doolittle\"]'),(91306,4834,2,'actor',NULL,'[\"Marty Phillips\"]'),(91306,939795,3,'actor',NULL,'[\"Jeremy Talbot\"]'),(91306,1406,4,'actress',NULL,'[\"Cynthia\"]'),(91306,1508,5,'director',NULL,NULL),(91306,291905,6,'writer','story',NULL),(91306,796124,7,'writer','screenplay',NULL),(91306,583600,8,'writer','screenplay',NULL),(91306,859977,9,'writer','screenplay',NULL),(91326,307260,10,'editor',NULL,NULL),(91326,1552,1,'actor',NULL,'[\"Miyagi\"]'),(91326,1494,2,'actor',NULL,'[\"Daniel\"]'),(91326,425944,3,'actor',NULL,'[\"Referee\"]'),(91326,540330,4,'actor',NULL,'[\"Announcer\"]'),(91326,814,5,'director',NULL,NULL),(91326,436543,6,'writer','written by',NULL),(91326,5545,7,'producer','producer',NULL),(91326,6015,8,'composer',NULL,NULL),(91326,185583,9,'cinematographer','director of photography',NULL),(91341,760590,10,'production_designer',NULL,NULL),(91341,529402,1,'actor',NULL,'[\"Vladimir Nikolaevich Mashkov - \'Uncle Vova\'\"]'),(91341,503095,2,'actor',NULL,'[\"Wef - The Wandering Chatlanian Singer\"]'),(91341,945085,3,'actor',NULL,'[\"Bee - the wandering Patsak singer\"]'),(91341,300174,4,'actor',NULL,'[\"Gedevan Alexandrovich Alexidze - \'Fiddler\'\"]'),(91341,199381,5,'director',NULL,NULL),(91341,300175,6,'writer','writer',NULL),(91341,437151,7,'composer',NULL,NULL),(91341,495634,8,'cinematographer',NULL,NULL),(91341,229858,9,'editor',NULL,NULL),(91355,508679,10,'editor',NULL,NULL),(91355,583956,1,'actress',NULL,'[\"Zhou Yufang\"]'),(91355,497757,2,'actor',NULL,'[\"Li Lizhong\"]'),(91355,423084,3,'actor',NULL,'[\"Zhou\'s lover\"]'),(91355,345144,4,'actor',NULL,'[\"The Cop Ku\"]'),(91355,945981,5,'director',NULL,NULL),(91355,947302,6,'writer',NULL,NULL),(91355,510871,7,'producer','producer',NULL),(91355,4021049,8,'composer',NULL,NULL),(91355,150820,9,'cinematographer',NULL,NULL),(91369,4287,10,'cinematographer','director of photography',NULL),(91369,309,1,'actor',NULL,'[\"Jareth\"]'),(91369,124,2,'actress',NULL,'[\"Sarah\"]'),(91369,296614,3,'actor',NULL,'[\"Toby\"]'),(91369,860712,4,'actress',NULL,'[\"Stepmother\"]'),(91369,1345,5,'director',NULL,NULL),(91369,497140,6,'writer','story by',NULL),(91369,1402,7,'writer','screenplay by',NULL),(91369,711918,8,'producer','producer',NULL),(91369,2303,9,'composer',NULL,NULL),(91419,6108,10,'composer',NULL,NULL),(91419,1548,1,'actor',NULL,'[\"Seymour Krelborn\"]'),(91419,338746,2,'actress',NULL,'[\"Audrey\"]'),(91419,306696,3,'actor',NULL,'[\"Mushnik\"]'),(91419,835925,4,'actor',NULL,'[\"Audrey II\"]'),(91419,568,5,'director',NULL,NULL),(91419,39141,6,'writer','screenplay by',NULL),(91419,339,7,'writer','based on the film by',NULL),(91419,341458,8,'writer','based on the 1960 screenplay by',NULL),(91419,311691,9,'producer','producer',NULL),(91472,270678,10,'editor',NULL,NULL),(91472,1475,1,'actor',NULL,'[\"John Mathewson\"]'),(91472,171754,2,'actor',NULL,'[\"Paul Stephens\"]'),(91472,183573,3,'actor',NULL,'[\"Government Aide\"]'),(91472,770938,4,'actor',NULL,'[\"Government Aide\"]'),(91472,108613,5,'director',NULL,NULL),(91472,62136,6,'writer','written by',NULL),(91472,644620,7,'producer','producer',NULL),(91472,6271,8,'composer',NULL,NULL),(91472,930119,9,'cinematographer','director of photography',NULL),(91474,5883,10,'cinematographer','director of photography',NULL),(91474,676973,1,'actor',NULL,'[\"Will Graham\"]'),(91474,2114,2,'actress',NULL,'[\"Molly Graham\"]'),(91474,260,3,'actress',NULL,'[\"Reba\"]'),(91474,4051,4,'actor',NULL,'[\"Dr. Lecktor\"]'),(91474,520,5,'director',NULL,NULL),(91474,365383,6,'writer','based on the novel \"Red Dragon\" by',NULL),(91474,10607011,7,'producer','producer',NULL),(91474,3186809,8,'composer',NULL,NULL),(91474,6264,9,'composer',NULL,NULL),(91495,844922,10,'production_designer',NULL,NULL),(91495,785264,1,'actress',NULL,'[\"María\"]'),(91495,104,2,'actor',NULL,'[\"Angel\"]'),(91495,555260,3,'actor',NULL,'[\"Diego\"]'),(91495,167938,4,'actress',NULL,'[\"Eva\"]'),(91495,264,5,'director',NULL,NULL),(91495,274676,6,'writer','screenplay',NULL),(91495,5970,7,'composer',NULL,NULL),(91495,273795,8,'cinematographer',NULL,NULL),(91495,757814,9,'editor',NULL,NULL),(91499,692938,10,'production_designer',NULL,NULL),(91499,389,1,'actor',NULL,'[\"Bill Robinson\"]'),(91499,385757,2,'actor',NULL,'[\"Hendershot\"]'),(91499,364307,3,'actress',NULL,'[\"Brett\"]'),(91499,810379,4,'actress',NULL,'[\"Connie\"]'),(91499,175,5,'director',NULL,NULL),(91499,776646,6,'producer','producer',NULL),(91499,9540,7,'composer',NULL,NULL),(91499,5811,8,'cinematographer','director of photography',NULL),(91499,521554,9,'editor',NULL,NULL),(91530,579580,10,'cinematographer','director of photography',NULL),(91530,134,1,'actor',NULL,'[\"Mendoza\"]'),(91530,460,2,'actor',NULL,'[\"Gabriel\"]'),(91530,564044,3,'actor',NULL,'[\"Altamirano\"]'),(91530,1644,4,'actor',NULL,'[\"Felipe\"]'),(91530,423646,5,'director',NULL,NULL),(91530,4122,6,'writer','original story & screenplay',NULL),(91530,315721,7,'producer','producer',NULL),(91530,701298,8,'producer','producer',NULL),(91530,1553,9,'composer',NULL,NULL),(91541,6014,10,'composer',NULL,NULL),(91541,158,1,'actor',NULL,'[\"Walter Fielding\"]'),(91541,1480,2,'actress',NULL,'[\"Anna Crowley\"]'),(91541,324231,3,'actor',NULL,'[\"Max Beissart\"]'),(91541,822972,4,'actress',NULL,'[\"Estelle\"]'),(91541,907,5,'director',NULL,NULL),(91541,318429,6,'writer','written by',NULL),(91541,5086,7,'producer','producer',NULL),(91541,506020,8,'producer','producer',NULL),(91541,550881,9,'producer','producer',NULL),(91578,1877,10,'composer',NULL,NULL),(91578,6762,1,'actor',NULL,'[\"Uncle Nasser\"]'),(91578,786022,2,'actor',NULL,'[\"Papa Hussein\"]'),(91578,358,3,'actor',NULL,'[\"Johnny\"]'),(91578,334262,4,'actor',NULL,'[\"Genghis\"]'),(91578,1241,5,'director',NULL,NULL),(91578,475659,6,'writer','by',NULL),(91578,79677,7,'producer','producer',NULL),(91578,705381,8,'producer','producer',NULL),(91578,4368,9,'composer',NULL,NULL),(91605,323708,10,'writer','screenplay',NULL),(91605,125,1,'actor',NULL,'[\"William of Baskerville\"]'),(91605,225,2,'actor',NULL,'[\"Adso of Melk\"]'),(91605,702818,3,'actor',NULL,'[\"Remigio de Varagine\"]'),(91605,59946,4,'actor',NULL,'[\"Severinus\"]'),(91605,269,5,'director',NULL,NULL),(91605,248767,6,'writer','novel \"Il nome della rosa\"',NULL),(91605,1949,7,'writer','screenplay',NULL),(91605,102722,8,'writer','screenplay',NULL),(91605,291442,9,'writer','screenplay',NULL),(91721,806003,10,'cinematographer',NULL,NULL),(91721,1539,1,'actress',NULL,'[\"Susan Carey\",\"Sharon Ferris\"]'),(91721,643,2,'actor',NULL,'[\"Bill Grand\"]'),(91721,374194,3,'actress',NULL,'[\"Nikki Ferris\"]'),(91721,26106,4,'actress',NULL,'[\"Mary Grand\"]'),(91721,561813,5,'director',NULL,NULL),(91721,477696,6,'writer','book \"Das Doppelie Longhen\"',NULL),(91721,471217,7,'writer',NULL,NULL),(91721,55920,8,'producer','executive producer',NULL),(91721,288913,9,'composer',NULL,NULL),(91738,5675,10,'cinematographer','director of photography',NULL),(91738,678,1,'actress',NULL,'[\"Peggy Sue\"]'),(91738,115,2,'actor',NULL,'[\"Charlie Bodell\"]'),(91738,587944,3,'actor',NULL,'[\"Richard Norvik\"]'),(91738,382819,4,'actress',NULL,'[\"Carol Heath\"]'),(91738,338,5,'director',NULL,NULL); +INSERT INTO `MoviesPeople` VALUES (91738,500090,6,'writer','written by',NULL),(91738,765403,7,'writer','written by',NULL),(91738,348612,8,'producer','producer',NULL),(91738,290,9,'composer',NULL,NULL),(91757,5879,10,'cinematographer',NULL,NULL),(91757,527,1,'actor',NULL,'[\"Captain Thomas Bartholomew Red\"]'),(91757,133049,2,'actor',NULL,'[\"The Frog - Jean-Baptiste\"]'),(91757,858669,3,'actor',NULL,'[\"Don Alfonso de la Torré\"]'),(91757,414570,4,'actor',NULL,'[\"Boomako\"]'),(91757,591,5,'director',NULL,NULL),(91757,115224,6,'writer','screenplay collaboration',NULL),(91757,102722,7,'writer','written by',NULL),(91757,69893,8,'producer','producer',NULL),(91757,6271,9,'composer',NULL,NULL),(91763,747941,10,'production_designer',NULL,NULL),(91763,221,1,'actor',NULL,'[\"Chris\"]'),(91763,297,2,'actor',NULL,'[\"Sgt. Barnes\"]'),(91763,353,3,'actor',NULL,'[\"Sgt. Elias\"]'),(91763,202966,4,'actor',NULL,'[\"King\"]'),(91763,231,5,'director',NULL,NULL),(91763,465745,6,'producer','producer',NULL),(91763,16,7,'composer',NULL,NULL),(91763,724744,8,'cinematographer','director of photography',NULL),(91763,800943,9,'editor',NULL,NULL),(91777,790775,10,'writer','characters',NULL),(91777,430,1,'actor',NULL,'[\"Sgt. Mahoney\"]'),(91777,807571,2,'actor',NULL,'[\"Sgt. Hightower\"]'),(91777,333701,3,'actor',NULL,'[\"Sgt. Tackleberry\"]'),(91777,935498,4,'actor',NULL,'[\"Sgt. Jones\"]'),(91777,661577,5,'director',NULL,NULL),(91777,411477,6,'writer','characters creator',NULL),(91777,698493,7,'writer','characters creator',NULL),(91777,704164,8,'writer','written by',NULL),(91777,87904,9,'writer','characters',NULL),(91790,548943,10,'editor',NULL,NULL),(91790,208,1,'actress',NULL,'[\"Andie\"]'),(91790,1083,2,'actor',NULL,'[\"Duckie\"]'),(91790,1765,3,'actor',NULL,'[\"Jack\"]'),(91790,1633,4,'actress',NULL,'[\"Iona\"]'),(91790,222043,5,'director',NULL,NULL),(91790,455,6,'writer','written by',NULL),(91790,795682,7,'producer','producer',NULL),(91790,330759,8,'composer',NULL,NULL),(91790,5714,9,'cinematographer','director of photography',NULL),(91794,3868645,10,'composer',NULL,NULL),(91794,411879,1,'actress',NULL,'[\"Eiko \'A-Ko\' Magami\"]'),(91794,793987,2,'actress',NULL,'[\"Biko \'B-ko\' Daitokuji\"]'),(91794,593911,3,'actress',NULL,'[\"Shiko \'C-ko\' Kotobuki\"]'),(91794,1083220,4,'actress',NULL,'[\"C-ko (1992)\"]'),(91794,632690,5,'director',NULL,NULL),(91794,605799,6,'writer','screenplay',NULL),(91794,442900,7,'writer','screenplay',NULL),(91794,1306550,8,'writer','creator',NULL),(91794,634587,9,'producer','producer',NULL),(91867,682503,10,'cinematographer',NULL,NULL),(91867,1749,1,'actress',NULL,'[\"Charlotte Bartlett, a Chaperon\"]'),(91867,307,2,'actress',NULL,'[\"Lucy Honeychurch, Miss Bartlett\'s cousin and charge\"]'),(91867,1186,3,'actor',NULL,'[\"Mr Emerson, an English tourist\"]'),(91867,1696,4,'actor',NULL,'[\"George Emerson\"]'),(91867,412465,5,'director',NULL,NULL),(91867,286950,6,'writer','novel',NULL),(91867,695609,7,'writer','screenplay',NULL),(91867,580337,8,'producer','producer',NULL),(91867,6442,9,'composer',NULL,NULL),(91869,386727,10,'editor',NULL,NULL),(91869,837784,1,'actress',NULL,'[\"Rosa Luxemburg\"]'),(91869,646037,2,'actor',NULL,'[\"Leo Jogiches\"]'),(91869,761420,3,'actor',NULL,'[\"Karl Liebknecht\"]'),(91869,36120,4,'actress',NULL,'[\"Luise Kautsky\"]'),(91869,903137,5,'director',NULL,NULL),(91869,432723,6,'producer','producer',NULL),(91869,956133,7,'producer','producer',NULL),(91869,248786,8,'composer',NULL,NULL),(91869,711661,9,'cinematographer',NULL,NULL),(91877,679017,10,'producer','producer',NULL),(91877,541,1,'actress',NULL,'[\"Barbara Stone\"]'),(91877,362,2,'actor',NULL,'[\"Sam Stone\"]'),(91877,1662,3,'actor',NULL,'[\"Ken Kessler\"]'),(91877,644,4,'actress',NULL,'[\"Sandy Kessler\"]'),(91877,720,5,'director',NULL,NULL),(91877,1878,6,'director',NULL,NULL),(91877,958387,7,'director',NULL,NULL),(91877,490958,8,'writer','written by',NULL),(91877,377958,9,'writer','story \"The Ransom of Red Chief\"',NULL),(91939,424370,1,'actress',NULL,'[\"Nola Darling\"]'),(91939,382975,2,'actor',NULL,'[\"Jamie Overstreet\"]'),(91939,855825,3,'actor',NULL,'[\"Greer Childs\"]'),(91939,490,4,'actor',NULL,'[\"Mars Blackmon\"]'),(91939,403678,5,'writer','opening quotation',NULL),(91939,496881,6,'composer',NULL,NULL),(91939,225416,7,'cinematographer',NULL,NULL),(91939,859661,8,'production_designer',NULL,NULL),(91949,877274,10,'producer','producer',NULL),(91949,639,1,'actress',NULL,'[\"Stephanie Speck\"]'),(91949,430,2,'actor',NULL,'[\"Newton Crosby\"]'),(91949,1770,3,'actor',NULL,'[\"Ben Jabituya\"]'),(91949,671721,4,'actor',NULL,'[\"Howard Marner\"]'),(91949,824,5,'director',NULL,NULL),(91949,934093,6,'writer','written by',NULL),(91949,534681,7,'writer','written by',NULL),(91949,850695,8,'writer','written by',NULL),(91949,287759,9,'producer','producer',NULL),(91993,3144,10,'producer','producer',NULL),(91993,1009,1,'actress',NULL,'[\"Andie\"]'),(91993,670,2,'actress',NULL,'[\"Kathryn\"]'),(91993,593,3,'actress',NULL,'[\"Tish\"]'),(91993,779467,4,'actor',NULL,'[\"Rudy\"]'),(91993,934863,5,'director',NULL,NULL),(91993,337731,6,'writer','screenplay by',NULL),(91993,593200,7,'writer','screenplay by',NULL),(91993,47436,8,'writer','story by',NULL),(91993,931121,9,'writer','story by',NULL),(92005,6217,10,'composer',NULL,NULL),(92005,696,1,'actor',NULL,'[\"Gordie Lachance\"]'),(92005,203,2,'actor',NULL,'[\"Chris Chambers\"]'),(92005,397,3,'actor',NULL,'[\"Teddy Duchamp\"]'),(92005,5278,4,'actor',NULL,'[\"Vern Tessio\"]'),(92005,1661,5,'director',NULL,NULL),(92005,175,6,'writer','novella \"The Body\"',NULL),(92005,317279,7,'writer','screenplay',NULL),(92005,262595,8,'writer','screenplay',NULL),(92005,770650,9,'producer','producer',NULL),(92007,6260,10,'composer',NULL,NULL),(92007,638,1,'actor',NULL,'[\"Kirk\"]'),(92007,559,2,'actor',NULL,'[\"Spock\"]'),(92007,1420,3,'actor',NULL,'[\"McCoy\"]'),(92007,1150,4,'actor',NULL,'[\"Scotty\"]'),(92007,734472,5,'writer','based on Star Trek created by',NULL),(92007,71790,6,'writer','story by',NULL),(92007,576228,7,'writer','screenplay by',NULL),(92007,471298,8,'writer','screenplay by',NULL),(92007,583292,9,'writer','screenplay by',NULL),(92048,840547,10,'editor',NULL,NULL),(92048,913822,1,'actor',NULL,'[\"Gun\"]'),(92048,945734,2,'actor',NULL,'[\"Gorô\"]'),(92048,594421,3,'actress',NULL,'[\"Tampopo\"]'),(92048,945131,4,'actor',NULL,'[\"Gangster in the White Suit\"]'),(92048,411631,5,'director',NULL,NULL),(92048,396078,6,'producer','producer',NULL),(92048,848448,7,'producer','producer',NULL),(92048,610797,8,'composer',NULL,NULL),(92048,848786,9,'cinematographer',NULL,NULL),(92067,440384,10,'editor',NULL,NULL),(92067,849028,1,'actress',NULL,'[\"Pazu\"]'),(92067,948445,2,'actress',NULL,'[\"Sheeta\"]'),(92067,368969,3,'actress',NULL,'[\"Dola\"]'),(92067,855385,4,'actor',NULL,'[\"Muska\"]'),(92067,594503,5,'director',NULL,NULL),(92067,842605,6,'writer','concept created by',NULL),(92067,847223,7,'producer','producer',NULL),(92067,386749,8,'composer',NULL,NULL),(92067,847122,9,'cinematographer',NULL,NULL),(92076,465629,10,'cinematographer','director of photography',NULL),(92076,454,1,'actor',NULL,'[\"Lieutenant \'Lefty\' Enright\"]'),(92076,930226,2,'actress',NULL,'[\"Vanita \'Stretch\' Brock\"]'),(92076,796842,3,'actor',NULL,'[\"Cook\"]'),(92076,608405,4,'actor',NULL,'[\"Chop-Top\"]'),(92076,1361,5,'director',NULL,NULL),(92076,141281,6,'writer','written by',NULL),(92076,322946,7,'producer','producer',NULL),(92076,324875,8,'producer','producer',NULL),(92076,483187,9,'composer',NULL,NULL),(92086,115073,10,'cinematographer','director of photography',NULL),(92086,188,1,'actor',NULL,'[\"Lucky Day\"]'),(92086,331,2,'actor',NULL,'[\"Dusty Bottoms\"]'),(92086,1737,3,'actor',NULL,'[\"Ned Nederlander\"]'),(92086,778,4,'actor',NULL,'[\"El Guapo\"]'),(92086,484,5,'director',NULL,NULL),(92086,584427,6,'writer','written by',NULL),(92086,5271,7,'writer','written by',NULL),(92086,284390,8,'producer','producer',NULL),(92086,930,9,'composer',NULL,NULL),(92099,988,10,'producer','producer',NULL),(92099,129,1,'actor',NULL,'[\"Maverick\"]'),(92099,209,2,'actor',NULL,'[\"Merlin\"]'),(92099,534,3,'actress',NULL,'[\"Charlie\"]'),(92099,174,4,'actor',NULL,'[\"Ice\"]'),(92099,1716,5,'director',NULL,NULL),(92099,143596,6,'writer','written by',NULL),(92099,258390,7,'writer','written by',NULL),(92099,1274594,8,'writer','suggested by article \"Top Guns\" in California Magazine',NULL),(92099,803730,9,'writer','screenplay',NULL),(92106,225746,10,'composer',NULL,NULL),(92106,80,1,'actor',NULL,'[\"Unicron\"]'),(92106,821041,2,'actor',NULL,'[\"Ultra Magnus\"]'),(92106,559,3,'actor',NULL,'[\"Galvatron\"]'),(92106,17491,4,'actor',NULL,'[\"Kranix\"]'),(92106,793802,5,'director',NULL,NULL),(92106,295357,6,'writer','written by',NULL),(92106,1992327,7,'writer','creator',NULL),(92106,45204,8,'producer','producer',NULL),(92106,341384,9,'producer','producer',NULL),(92133,307147,10,'editor',NULL,NULL),(92133,2239,1,'actor',NULL,'[\"Christopher Tracy\"]'),(92133,72934,2,'actor',NULL,'[\"Tricky\"]'),(92133,218,3,'actress',NULL,'[\"Mary Sharon\"]'),(92133,925,4,'actor',NULL,'[\"Mr Sharon\"]'),(92133,841,5,'director',NULL,NULL),(92133,426539,6,'writer','screenplay by',NULL),(92133,146868,7,'producer','producer',NULL),(92133,267302,8,'producer','producer',NULL),(92133,749262,9,'producer','producer',NULL),(92263,399069,10,'cinematographer',NULL,NULL),(92263,862479,1,'actor',NULL,'[\"Sung Tse-Ho\"]'),(92263,2000,2,'actor',NULL,'[\"Sung Tse-Kit\"]'),(92263,334,3,'actor',NULL,'[\"Mark\"]'),(92263,160823,4,'actress',NULL,'[\"Jackie\"]'),(92263,247,5,'director',NULL,NULL),(92263,150916,6,'writer','written by',NULL),(92263,505000,7,'writer','written by',NULL),(92263,7139,8,'producer','producer',NULL),(92263,345150,9,'composer',NULL,NULL),(92493,830638,10,'editor',NULL,NULL),(92493,1357,1,'actor',NULL,'[\"Mick \'Crocodile\' Dundee\"]'),(92493,468957,2,'actress',NULL,'[\"Sue Charlton\"]'),(92493,576851,3,'actor',NULL,'[\"Walter Reilly\"]'),(92493,227669,4,'actor',NULL,'[\"Charlie\"]'),(92493,180257,5,'director',NULL,NULL),(92493,389495,6,'writer','written by',NULL),(92493,779280,7,'producer','producer',NULL),(92493,78984,8,'composer',NULL,NULL),(92493,6570,9,'cinematographer','director of photography',NULL),(92513,5923,10,'cinematographer','director of photography',NULL),(92513,223,1,'actress',NULL,'[\"Chris\"]'),(92513,108315,2,'actress',NULL,'[\"Sara\"]'),(92513,176861,3,'actor',NULL,'[\"Brad\"]'),(92513,710829,4,'actor',NULL,'[\"Daryl\"]'),(92513,1060,5,'director',NULL,NULL),(92513,799562,6,'writer','written by',NULL),(92513,384185,7,'producer','producer',NULL),(92513,643553,8,'producer','producer',NULL),(92513,4383,9,'composer',NULL,NULL),(92546,57398,10,'writer','written by',NULL),(92546,275,1,'actress',NULL,'[\"Karen (segment \\\"Two I.D.\'s\\\")\"]'),(92546,201,2,'actress',NULL,'[\"Brenda Landers (segment \\\"Hospital\\\")\"]'),(92546,2119,3,'actor',NULL,'[\"Apartment Victim (segment \\\"Mondo Condo\\\")\"]'),(92546,611277,4,'actor',NULL,'[\"Easterbrook (segment \\\"Pethouse Video\\\")\"]'),(92546,1102,5,'director',NULL,NULL),(92546,331956,6,'director',NULL,NULL),(92546,5022,7,'director',NULL,NULL),(92546,484,8,'director',NULL,NULL),(92546,919154,9,'director',NULL,NULL),(92559,748536,10,'composer',NULL,NULL),(92559,360,1,'actress',NULL,'[\"Robin Shea\"]'),(92559,1759,2,'actor',NULL,'[\"Billy Moran\"]'),(92559,1449,3,'actor',NULL,'[\"James Tiernan\"]'),(92559,6230258,4,'actor',NULL,'[\"Peter Moran\"]'),(92559,671862,5,'director',NULL,NULL),(92559,829739,6,'writer','written by',NULL),(92559,105945,7,'producer','producer',NULL),(92559,357281,8,'producer','producer',NULL),(92559,153845,9,'composer',NULL,NULL),(92563,785029,10,'cinematographer','director of photography',NULL),(92563,620,1,'actor',NULL,'[\"Harry Angel\"]'),(92563,134,2,'actor',NULL,'[\"Louis Cyphre\"]'),(92563,956,3,'actress',NULL,'[\"Epiphany Proudfoot\"]'),(92563,1648,4,'actress',NULL,'[\"Margaret Krusemark\"]'),(92563,570,5,'director',NULL,NULL),(92563,387132,6,'writer','novel \"Falling Angel\"',NULL),(92563,440990,7,'producer','producer',NULL),(92563,550728,8,'producer','producer',NULL),(92563,2303,9,'composer',NULL,NULL),(92581,4415,10,'cinematographer',NULL,NULL),(92581,702985,1,'actor',NULL,'[\"Wally Davis\"]'),(92581,203296,2,'actress',NULL,'[\"Mavis Davis\"]'),(92581,672125,3,'actor',NULL,'[\"Roly Davis\"]'),(92581,824651,4,'actor',NULL,'[\"Alex Moffatt\"]'),(92581,533820,5,'director',NULL,NULL),(92581,494933,6,'writer','screenplay',NULL),(92581,253311,7,'producer','producer',NULL),(92581,460454,8,'producer','producer',NULL),(92581,623583,9,'composer',NULL,NULL),(92593,542009,1,'actor',NULL,'[\"Julien Quentin\"]'),(92593,270830,2,'actor',NULL,'[\"Jean Bonnet\"]'),(92593,705072,3,'actress',NULL,'[\"Mme Quentin\"]'),(92593,141133,4,'actor',NULL,'[\"François Quentin\"]'),(92593,1501,5,'director',NULL,NULL),(92593,5655,6,'cinematographer',NULL,NULL),(92593,145530,7,'editor',NULL,NULL),(92593,231248,8,'production_designer',NULL,NULL),(92603,471610,10,'cinematographer','director of photography',NULL),(92603,804,1,'actress',NULL,'[\"Babette Hersant\"]'),(92603,458064,2,'actress',NULL,'[\"Filippa\"]'),(92603,270147,3,'actress',NULL,'[\"Martine\"]'),(92603,474649,4,'actor',NULL,'[\"General Lorens Löwenhielm\",\"Löwenhielm\'s Father\"]'),(92603,2196,5,'director',NULL,NULL),(92603,227598,6,'writer','short story',NULL),(92603,79506,7,'producer','presented by',NULL),(92603,159734,8,'producer','producer',NULL),(92603,639168,9,'composer',NULL,NULL),(92605,397374,10,'production_designer',NULL,NULL),(92605,473,1,'actress',NULL,'[\"J.C. Wiatt\"]'),(92605,1731,2,'actor',NULL,'[\"Dr. Jeff Cooper\"]'),(92605,601,3,'actor',NULL,'[\"Steven Buchner\"]'),(92605,448163,4,'actress',NULL,'[\"Elizabeth Wiatt\"]'),(92605,796124,5,'director',NULL,NULL),(92605,583600,6,'writer','written by',NULL),(92605,6015,7,'composer',NULL,NULL),(92605,5710,8,'cinematographer','director of photography',NULL),(92605,459806,9,'editor',NULL,NULL),(92610,693361,1,'actor',NULL,'[\"Ozzy\",\"3rd Class Alien\"]'),(92610,641402,2,'actor',NULL,'[\"Barry\",\"3rd Class Alien\"]'),(92610,807773,3,'actor',NULL,'[\"Giles\",\"3rd Class Alien\"]'),(92610,591207,4,'actor',NULL,'[\"Frank\",\"3rd Class Alien\"]'),(92610,1392,5,'director',NULL,NULL),(92610,383958,6,'writer','additional material',NULL),(92610,358632,7,'writer','additional material',NULL),(92610,780255,8,'composer',NULL,NULL),(92610,783241,9,'editor',NULL,NULL),(92644,803730,10,'writer','screenplay by',NULL),(92644,552,1,'actor',NULL,'[\"Axel Foley\"]'),(92644,1662,2,'actor',NULL,'[\"Billy Rosewood\"]'),(92644,1638,3,'actor',NULL,'[\"Maxwell Dent\"]'),(92644,1074,4,'actor',NULL,'[\"Andrew Bogomil\"]'),(92644,1716,5,'director',NULL,NULL),(92644,45301,6,'writer','based on characters created by',NULL),(92644,677943,7,'writer','based on characters created by',NULL),(92644,905160,8,'writer','story by',NULL),(92644,272511,9,'writer','screenplay by',NULL),(92675,228262,10,'producer','producer',NULL),(92675,241,1,'actor',NULL,'[\"Frank\"]'),(92675,316455,2,'actor',NULL,'[\"Jackson\"]'),(92675,43994,3,'actress',NULL,'[\"Janice\"]'),(92675,123680,4,'actor',NULL,'[\"Helmer\"]'),(92675,36582,5,'director',NULL,NULL),(92675,504802,6,'writer','story by',NULL),(92675,181731,7,'writer','screenplay by',NULL),(92675,295305,8,'writer','screenplay by',NULL),(92675,245235,9,'writer','this motion picture is based upon true events in the life of',NULL),(92693,13761,10,'cinematographer',NULL,NULL),(92693,484376,1,'actor',NULL,'[\"Malvís\",\"Bandido Fendetestas\"]'),(92693,340317,2,'actress',NULL,'[\"Hermelinda\"]'),(92693,885453,3,'actor',NULL,'[\"Geraldo\"]'),(92693,131373,4,'actor',NULL,'[\"Cura\"]'),(92693,191109,5,'director',NULL,NULL),(92693,273273,6,'writer','novel',NULL),(92693,44156,7,'writer','screenplay',NULL),(92693,239735,8,'producer','producer',NULL),(92693,631308,9,'composer',NULL,NULL),(92699,458,1,'actor',NULL,'[\"Tom Grunick\"]'),(92699,983,2,'actor',NULL,'[\"Aaron Altman\"]'),(92699,456,3,'actress',NULL,'[\"Jane Craig\"]'),(92699,698764,4,'actor',NULL,'[\"Ernie Merriman\"]'),(92699,985,5,'director',NULL,NULL),(92699,6015,6,'composer',NULL,NULL),(92699,841,7,'cinematographer','director of photography',NULL),(92699,548943,8,'editor',NULL,NULL),(92699,741935,9,'production_designer',NULL,NULL),(92718,324122,10,'editor','film editor',NULL),(92718,1131,1,'actor',NULL,'[\"Ronald Miller\"]'),(92718,584,2,'actress',NULL,'[\"Cindy Mancini\"]'),(92718,301381,3,'actor',NULL,'[\"Kenneth Wurman\"]'),(92718,143836,4,'actress',NULL,'[\"Barbara\"]'),(92718,711114,5,'director',NULL,NULL),(92718,842464,6,'writer','written by',NULL),(92718,609861,7,'producer','producer',NULL),(92718,6077,8,'composer',NULL,NULL),(92718,172818,9,'cinematographer','director of photography',NULL),(92730,410535,10,'editor',NULL,NULL),(92730,328,1,'actor',NULL,'[\"Giacomo Casanova\"]'),(92730,1159,2,'actress',NULL,'[\"Madame D\'Urfe\"]'),(92730,482,3,'actress',NULL,'[\"Maddalena\"]'),(92730,1560,4,'actress',NULL,'[\"Henriette\"]'),(92730,486748,5,'director',NULL,NULL),(92730,292129,6,'writer','written by',NULL),(92730,541980,7,'producer','producer',NULL),(92730,6166,8,'composer',NULL,NULL),(92730,3900,9,'cinematographer',NULL,NULL),(92752,46559,1,'actor',NULL,'[\"David Seville\",\"Alvin Seville\",\"Simon Seville\"]'),(92752,439739,2,'actress',NULL,'[\"Theodore Seville\",\"Brittany Miller\",\"Jeanette Miller\"]'),(92752,329060,3,'actress',NULL,'[\"Miss Rebecca Miller\"]'),(92752,879073,4,'actress',NULL,'[\"Claudia Furschtien\"]'),(92752,46564,5,'writer','characters',NULL),(92752,6055,6,'composer',NULL,NULL),(92752,594587,7,'editor',NULL,NULL),(92752,343797,8,'production_designer',NULL,NULL),(92796,906857,10,'composer',NULL,NULL),(92796,1421,1,'actor',NULL,'[\"Ray Spruce (segment \\\"Old Chief Wood\'nhead\\\")\"]'),(92796,1042,2,'actress',NULL,'[\"Annie Lansing (segment \\\"The Hitchhiker\\\")\"]'),(92796,424155,3,'actor',NULL,'[\"Boy Billy\"]'),(92796,767741,4,'actor',NULL,'[\"The Creep\"]'),(92796,331193,5,'director',NULL,NULL),(92796,175,6,'writer','stories',NULL),(92796,1681,7,'writer','screenplay',NULL),(92796,282061,8,'writer','original story: \"The Hitchhiker\"',NULL),(92796,715552,9,'composer',NULL,NULL),(92860,735684,10,'cinematographer',NULL,NULL),(92860,855613,1,'actor',NULL,'[\"Deathstalker\"]'),(92860,1249,2,'actress',NULL,'[\"Reena the Seer\",\"Princess Evie\"]'),(92860,493677,3,'actor',NULL,'[\"Jarek the Sorcerer\"]'),(92860,621062,4,'actress',NULL,'[\"Sultana\"]'),(92860,691061,5,'director',NULL,NULL),(92860,752139,6,'writer','screenplay',NULL),(92860,731992,7,'writer','additional dialogue',NULL),(92860,410490,8,'producer','producer',NULL),(92860,6009,9,'composer',NULL,NULL),(92890,291054,10,'editor',NULL,NULL),(92890,664,1,'actor',NULL,'[\"Johnny Castle\"]'),(92890,426,2,'actress',NULL,'[\"Baby Houseman\"]'),(92890,1583,3,'actor',NULL,'[\"Jake Houseman\"]'),(92890,722407,4,'actress',NULL,'[\"Penny Johnson\"]'),(92890,1915,5,'director',NULL,NULL),(92890,75044,6,'writer','written by',NULL),(92890,331988,7,'producer','producer',NULL),(92890,606657,8,'composer',NULL,NULL),(92890,5749,9,'cinematographer','director of photography',NULL),(92925,627673,10,'composer',NULL,NULL),(92925,101,1,'actor',NULL,'[\"Friday\"]'),(92925,158,2,'actor',NULL,'[\"Streebek\"]'),(92925,1626,3,'actor',NULL,'[\"Whirley\"]'),(92925,604702,4,'actor',NULL,'[\"Gannon\"]'),(92925,542539,5,'director',NULL,NULL),(92925,958993,6,'writer','written by',NULL),(92925,916131,7,'writer','radio and television series',NULL),(92925,674303,8,'producer','producer',NULL),(92925,919154,9,'producer','producer',NULL),(92962,7855800,10,'editor',NULL,NULL),(92962,1249,1,'actress',NULL,'[\"Emmanuelle\"]'),(92962,362148,2,'actor',NULL,'[\"Eric\"]'),(92962,922480,3,'actor',NULL,'[\"Charles\",\"millionaire\"]'),(92962,451342,4,'actor',NULL,'[\"Rajid\",\"Prince\"]'),(92962,97259,5,'director',NULL,NULL),(92962,37491,6,'writer','from an idea by',NULL),(92962,192227,7,'writer','scenario',NULL),(92962,45406,8,'composer',NULL,NULL),(92962,599173,9,'cinematographer','director of photography',NULL),(92965,550881,10,'producer','producer',NULL),(92965,288,1,'actor',NULL,'[\"Jim\"]'),(92965,518,2,'actor',NULL,'[\"Basie\"]'),(92965,1669,3,'actress',NULL,'[\"Mrs. Victor\"]'),(92965,369814,4,'actor',NULL,'[\"Dr. Rawlins\"]'),(92965,229,5,'director',NULL,NULL),(92965,1779,6,'writer','screenplay by',NULL),(92965,50618,7,'writer','based on the novel by',NULL),(92965,583675,8,'writer',NULL,NULL),(92965,5086,9,'producer','producer',NULL),(92972,469254,10,'editor',NULL,NULL),(92972,212324,1,'actor',NULL,NULL),(92972,259724,2,'actor',NULL,NULL),(92972,312523,3,'actor',NULL,NULL),(92972,318406,4,'actor',NULL,NULL),(92972,1885,5,'director',NULL,NULL),(92972,905071,6,'writer','screenplay',NULL),(92972,259259,7,'producer','producer',NULL),(92972,45341,8,'composer',NULL,NULL),(92972,70631,9,'cinematographer','director of photography',NULL),(92991,204946,10,'editor',NULL,NULL),(92991,132257,1,'actor',NULL,'[\"Ashley \'Ash\' J. Williams\"]'),(92991,77670,2,'actress',NULL,'[\"Annie Knowby\"]'),(92991,382830,3,'actor',NULL,'[\"Jake\"]'),(92991,219990,4,'actress',NULL,'[\"Bobby Joe\"]'),(92991,600,5,'director',NULL,NULL),(92991,818547,6,'writer','written by',NULL),(92991,849964,7,'producer','producer',NULL),(92991,6173,8,'composer',NULL,NULL),(92991,5687,9,'cinematographer','director of photography',NULL),(93010,40460,10,'cinematographer','director of photography',NULL),(93010,140,1,'actor',NULL,'[\"Dan Gallagher\"]'),(93010,335,2,'actress',NULL,'[\"Alex Forrest\"]'),(93010,271,3,'actress',NULL,'[\"Beth Gallagher\"]'),(93010,490477,4,'actress',NULL,'[\"Ellen Gallagher\"]'),(93010,1490,5,'director',NULL,NULL),(93010,213139,6,'writer','screenplay',NULL),(93010,415494,7,'producer','producer',NULL),(93010,5121,8,'producer','producer',NULL),(93010,3574,9,'composer',NULL,NULL),(93011,266536,10,'composer',NULL,NULL),(93011,155,1,'actress',NULL,'[\"Rita Rizzoli\"]'),(93011,385,2,'actor',NULL,'[\"Mike Marshak\"]'),(93011,1952,3,'actor',NULL,'[\"Carl Jimenez\"]'),(93011,950867,4,'actor',NULL,'[\"Conrad Kroll\"]'),(93011,276169,5,'director',NULL,NULL),(93011,840908,6,'writer','story',NULL),(93011,377088,7,'writer','screenplay',NULL),(93011,718466,8,'writer','screenplay',NULL),(93011,472059,9,'producer','producer',NULL),(93058,402950,10,'editor',NULL,NULL),(93058,546,1,'actor',NULL,'[\"Pvt. Joker\"]'),(93058,388,2,'actor',NULL,'[\"Gny. Sgt. Hartman\"]'),(93058,352,3,'actor',NULL,'[\"Pvt. Pyle\"]'),(93058,284,4,'actor',NULL,'[\"Animal Mother\"]'),(93058,40,5,'director',NULL,NULL),(93058,380282,6,'writer','screenplay by',NULL),(93058,368007,7,'writer','screenplay by',NULL),(93058,473588,8,'composer',NULL,NULL),(93058,5801,9,'cinematographer',NULL,NULL),(93075,904625,10,'cinematographer',NULL,NULL),(93075,1151,1,'actor',NULL,'[\"Glen\"]'),(93075,219821,2,'actress',NULL,'[\"Al\"]'),(93075,873097,3,'actor',NULL,'[\"Terrence \'Terry\' Chandler\"]'),(93075,746414,4,'actress',NULL,'[\"Lori Lee\"]'),(93075,847749,5,'director',NULL,NULL),(93075,2749,6,'writer','written by',NULL),(93075,447190,7,'producer','producer',NULL),(93075,6129,8,'composer',NULL,NULL),(93075,6254,9,'composer',NULL,NULL),(93105,816292,10,'cinematographer','director of photography',NULL),(93105,245,1,'actor',NULL,'[\"Adrian Cronauer\"]'),(93105,1845,2,'actor',NULL,'[\"Edward Garlick\"]'),(93105,870918,3,'actor',NULL,'[\"Tuan\"]'),(93105,837701,4,'actress',NULL,'[\"Trinh\"]'),(93105,1469,5,'director',NULL,NULL),(93105,548732,6,'writer','written by',NULL),(93105,108368,7,'producer','producer',NULL),(93105,425741,8,'producer','producer',NULL),(93105,6218,9,'composer',NULL,NULL),(93144,324875,10,'producer','producer',NULL),(93144,1831,1,'actor',NULL,'[\"Father\"]'),(93144,689473,2,'actor',NULL,'[\"Hansel\"]'),(93144,822974,3,'actress',NULL,'[\"Gretel\"]'),(93144,723791,4,'actress',NULL,'[\"Mother\"]'),(93144,847796,5,'director',NULL,NULL),(93144,342278,6,'writer','story',NULL),(93144,342303,7,'writer','story',NULL),(93144,917387,8,'writer','screenplay',NULL),(93144,322946,9,'producer','producer',NULL),(93146,335968,10,'production_designer',NULL,NULL),(93146,609078,1,'actor',NULL,'[\"Rowdy Abilene\"]'),(93146,817635,2,'actress',NULL,'[\"Donna\"]'),(93146,138192,3,'actress',NULL,'[\"Taryn\"]'),(93146,224628,4,'actor',NULL,'[\"Jade\"]'),(93146,796477,5,'director',NULL,NULL),(93146,796478,6,'producer','producer',NULL),(93146,830775,7,'composer',NULL,NULL),(93146,923304,8,'cinematographer','director of photography',NULL),(93146,354120,9,'editor',NULL,NULL),(93171,558427,10,'editor',NULL,NULL),(93171,499051,1,'actor',NULL,'[\"Squidlips\"]'),(93171,1413026,2,'actor',NULL,'[\"The Poor Dufus\"]'),(93171,684929,3,'actor',NULL,'[\"Sam Hell\"]'),(93171,810342,4,'actor',NULL,'[\"Capt. Devlin\",\"Count Sodom\"]'),(93171,413459,5,'director',NULL,NULL),(93171,457970,6,'director',NULL,NULL),(93171,289696,7,'writer','story',NULL),(93171,788487,8,'composer',NULL,NULL),(93171,681392,9,'cinematographer',NULL,NULL),(93177,118050,10,'production_designer',NULL,NULL),(93177,732367,1,'actor',NULL,'[\"Larry\"]'),(93177,383354,2,'actress',NULL,'[\"Julia\"]'),(93177,491090,3,'actress',NULL,'[\"Kirsty\"]'),(93177,152521,4,'actor',NULL,'[\"Frank\"]'),(93177,850,5,'director',NULL,NULL),(93177,276541,6,'producer','producer',NULL),(93177,2366,7,'composer',NULL,NULL),(93177,896485,8,'cinematographer','director of photography',NULL),(93177,546263,9,'editor',NULL,NULL),(93191,6155,10,'composer',NULL,NULL),(93191,4486,1,'actor',NULL,'[\"Damiel\"]'),(93191,231652,2,'actress',NULL,'[\"Marion\"]'),(93191,761420,3,'actor',NULL,'[\"Cassiel\"]'),(93191,92290,4,'actor',NULL,'[\"Homer\"]'),(93191,694,5,'director',NULL,NULL),(93191,359563,6,'writer','screenplay by',NULL),(93191,718637,7,'writer','screenplay collaboration',NULL),(93191,252065,8,'writer',NULL,NULL),(93191,202367,9,'producer','producer',NULL),(93209,587234,1,'actress',NULL,'[\"Grace\"]'),(93209,371342,2,'actor',NULL,'[\"Clive\"]'),(93209,723579,3,'actor',NULL,'[\"Bill\"]'),(93209,611356,4,'actress',NULL,'[\"Sue\"]'),(93209,958,5,'director',NULL,NULL),(93209,552897,6,'composer',NULL,NULL),(93209,3542,7,'cinematographer','director of photography',NULL),(93209,185677,8,'editor',NULL,NULL),(93209,695421,9,'production_designer',NULL,NULL),(93220,629882,10,'editor',NULL,NULL),(93220,343325,1,'actor',NULL,'[\"Jesse\"]'),(93220,823206,2,'actor',NULL,'[\"Charlie\"]'),(93220,200455,3,'actor',NULL,'[\"Gramps\"]'),(93220,5175,4,'actor',NULL,'[\"John\"]'),(93220,928832,5,'director',NULL,NULL),(93220,215269,6,'writer','inspired by an original story by',NULL),(93220,192446,7,'producer','producer',NULL),(93220,6185,8,'composer',NULL,NULL),(93220,13972,9,'cinematographer','director of photography',NULL),(93223,794064,10,'editor',NULL,NULL),(93223,1080,1,'actress',NULL,'[\"Margaret Ford\"]'),(93223,1505,2,'actor',NULL,'[\"Mike\"]'),(93223,638276,3,'actor',NULL,'[\"Joey\"]'),(93223,803785,4,'actress',NULL,'[\"Dr. Littauer\"]'),(93223,519,5,'director',NULL,NULL),(93223,441747,6,'writer','story',NULL),(93223,369592,7,'producer','producer',NULL),(93223,417940,8,'composer',NULL,NULL),(93223,5851,9,'cinematographer','director of photography',NULL),(93225,3920,10,'editor',NULL,NULL),(93225,1441,1,'actress',NULL,'[\"Sylvie\"]'),(93225,908192,2,'actress',NULL,'[\"Ruth\"]'),(93225,120869,3,'actress',NULL,'[\"Lucille\"]'),(93225,685771,4,'actress',NULL,'[\"Aunt Lily\"]'),(93225,287025,5,'director',NULL,NULL),(93225,732886,6,'writer','novel \"Housekeeping\"',NULL),(93225,171348,7,'producer','producer',NULL),(93225,2658,8,'composer',NULL,NULL),(93225,183533,9,'cinematographer','director of photography',NULL),(93239,565319,1,'actress',NULL,'[\"Polly Vandersma\"]'),(93239,47575,2,'actress',NULL,'[\"Gabrielle St. Peres\"]'),(93239,531612,3,'actress',NULL,'[\"Mary Joseph\"]'),(93239,597923,4,'actor',NULL,'[\"Clive\"]'),(93239,5390,5,'director',NULL,NULL),(93239,706244,6,'producer','producer',NULL),(93239,466805,7,'composer',NULL,NULL),(93239,462288,8,'cinematographer','director of photography',NULL),(93300,114272,10,'editor',NULL,NULL),(93300,308882,1,'actress',NULL,'[\"Ellen Brody\"]'),(93300,346411,2,'actor',NULL,'[\"Michael Brody\"]'),(93300,5522,3,'actor',NULL,'[\"Jake\"]'),(93300,949744,4,'actress',NULL,'[\"Carla Brody\"]'),(93300,765121,5,'director',NULL,NULL),(93300,1940,6,'writer','characters',NULL),(93300,208775,7,'writer','written by',NULL),(93300,806498,8,'composer',NULL,NULL),(93300,574238,9,'cinematographer','director of photography',NULL),(93342,690974,1,'actor',NULL,'[\"Ahmed\"]'),(93342,690972,2,'actor',NULL,'[\"Mohamed Reda Nematzadeh\"]'),(93342,214438,3,'actor',NULL,'[\"Teacher (Moalem)\"]'),(93342,653649,4,'actress',NULL,'[\"Mother (Madar)\"]'),(93342,452102,5,'director',NULL,NULL),(93342,953584,6,'producer','producer',NULL),(93342,381626,7,'composer',NULL,NULL),(93342,754450,8,'cinematographer',NULL,NULL),(93371,945,1,'actress',NULL,'[\"Mary-Jane\"]'),(93371,218843,2,'actor',NULL,'[\"Julien\"]'),(93371,1250,3,'actress',NULL,'[\"Lucy\"]'),(93371,230697,4,'actress',NULL,'[\"Lou\"]'),(93371,889513,5,'director',NULL,NULL),(93371,116861,6,'composer',NULL,NULL),(93371,161712,7,'cinematographer',NULL,NULL),(93371,41561,8,'editor',NULL,NULL),(93389,126154,10,'composer',NULL,NULL),(93389,518821,1,'actor',NULL,'[\"Pu Yi (Adult)\"]'),(93389,1040,2,'actress',NULL,'[\"Wan Jung\"]'),(93389,564,3,'actor',NULL,'[\"Reginald Johnston (R.J.)\"]'),(93389,948078,4,'actor',NULL,'[\"The Governor\"]'),(93389,934,5,'director',NULL,NULL),(93389,881100,6,'writer','initial screenplay collaboration',NULL),(93389,672546,7,'writer','screenplay',NULL),(93389,699701,8,'writer','autobiography \"From Emperor to Citizen, The Autobiography of Aisin-Gioro Pu Yi\"',NULL),(93389,859016,9,'producer','producer',NULL),(93409,4383,10,'composer',NULL,NULL),(93409,154,1,'actor',NULL,'[\"Martin Riggs\"]'),(93409,418,2,'actor',NULL,'[\"Roger Murtaugh\"]'),(93409,997,3,'actor',NULL,'[\"Joshua\"]'),(93409,752751,4,'actor',NULL,'[\"The General\"]'),(93409,1149,5,'director',NULL,NULL),(93409,948,6,'writer','written by',NULL),(93409,90151,7,'writer',NULL,NULL),(93409,5428,8,'producer','producer',NULL),(93409,2008,9,'composer',NULL,NULL),(93412,555260,10,'actor',NULL,'[\"Doctor Martín\"]'),(93412,690303,1,'actor',NULL,'[\"Pablo Quintero\"]'),(93412,560962,2,'actress',NULL,'[\"Tina Quintero\"]'),(93412,104,3,'actor',NULL,'[\"Antonio Benítez\"]'),(93412,596750,4,'actor',NULL,'[\"Juan Bermúdez\"]'),(93412,264,5,'director',NULL,NULL),(93412,273795,6,'cinematographer',NULL,NULL),(93412,757814,7,'editor',NULL,NULL),(93412,347218,8,'actor',NULL,'[\"Inspector de policía\"]'),(93412,892299,9,'actress',NULL,'[\"Ada, niña\"]'),(93415,131311,10,'editor',NULL,NULL),(93415,150,1,'actor',NULL,'[\"Joe Rasnick\"]'),(93415,1687,2,'actress',NULL,'[\"Jeanette Rasnick\"]'),(93415,5053,3,'actress',NULL,'[\"Patti Rasnick\"]'),(93415,571106,4,'actor',NULL,'[\"Bu Montgomery\"]'),(93415,1707,5,'director',NULL,NULL),(93415,54712,6,'producer','producer',NULL),(93415,3418,7,'producer','producer',NULL),(93415,2353,8,'composer',NULL,NULL),(93415,7037,9,'cinematographer','director of photography',NULL),(93437,2353,10,'composer',NULL,NULL),(93437,574,1,'actor',NULL,'[\"Michael\"]'),(93437,433,2,'actor',NULL,'[\"Sam\"]'),(93437,1848,3,'actress',NULL,'[\"Lucy\"]'),(93437,400464,4,'actor',NULL,'[\"Grandpa\"]'),(93437,1708,5,'director',NULL,NULL),(93437,278969,6,'writer','story',NULL),(93437,421894,7,'writer','story',NULL),(93437,90151,8,'writer','screenplay',NULL),(93437,76748,9,'producer','producer',NULL),(93493,357041,10,'editor',NULL,NULL),(93493,530,1,'actor',NULL,'[\"Jonathan Switcher\"]'),(93493,326,2,'actress',NULL,'[\"Emmy\"]'),(93493,1268,3,'actress',NULL,'[\"Claire Timkin\"]'),(93493,652,4,'actor',NULL,'[\"Richards\"]'),(93493,331998,5,'director',NULL,NULL),(93493,749493,6,'writer','written by',NULL),(93493,506020,7,'producer','producer',NULL),(93493,6169,8,'composer',NULL,NULL),(93493,5891,9,'cinematographer','director of photography',NULL),(93507,6015,10,'composer',NULL,NULL),(93507,185,1,'actor',NULL,'[\"He-Man\"]'),(93507,1449,2,'actor',NULL,'[\"Skeletor\"]'),(93507,1236,3,'actress',NULL,'[\"Evil-Lyn\"]'),(93507,863,4,'actor',NULL,'[\"Gwildor\"]'),(93507,323787,5,'director',NULL,NULL),(93507,643973,6,'writer','written by',NULL),(93507,6809,7,'writer','rewrite',NULL),(93507,322946,8,'producer','producer',NULL),(93507,324875,9,'producer','producer',NULL),(93512,5774,10,'cinematographer',NULL,NULL),(93512,928134,1,'actor',NULL,'[\"Maurice Hall\"]'),(93512,1291,2,'actor',NULL,'[\"Alec Scudder\"]'),(93512,424,3,'actor',NULL,'[\"Clive Durham\"]'),(93512,1186,4,'actor',NULL,'[\"Doctor Barry\"]'),(93512,412465,5,'director',NULL,NULL),(93512,286950,6,'writer','from the novel by',NULL),(93512,381388,7,'writer','screenplay',NULL),(93512,580337,8,'producer','producer',NULL),(93512,6442,9,'composer',NULL,NULL),(93565,518470,10,'editor',NULL,NULL),(93565,333,1,'actress',NULL,'[\"Loretta Castorini\"]'),(93565,115,2,'actor',NULL,'[\"Ronny Cammareri\"]'),(93565,1156,3,'actress',NULL,'[\"Rose Castorini\"]'),(93565,732,4,'actor',NULL,'[\"Mr. Johnny Cammareri\"]'),(93565,422484,5,'director',NULL,NULL),(93565,788234,6,'writer','written by',NULL),(93565,658404,7,'producer','producer',NULL),(93565,405163,8,'composer',NULL,NULL),(93565,914239,9,'cinematographer','director of photography',NULL),(93589,354413,10,'cinematographer',NULL,NULL),(93589,884306,1,'actor',NULL,'[\"Kaz\"]'),(93589,514633,2,'actress',NULL,'[\"Denny\"]'),(93589,871636,3,'actor',NULL,'[\"Charles\"]'),(93589,302704,4,'actress',NULL,'[\"Sonia\"]'),(93589,522604,5,'director',NULL,NULL),(93589,712904,6,'writer','written by',NULL),(93589,647910,7,'producer','producer',NULL),(93589,790144,8,'producer','producer',NULL),(93589,628056,9,'composer',NULL,NULL),(93615,614505,10,'production_designer',NULL,NULL),(93615,848497,1,'actor',NULL,'[\"Uncle Eru\"]'),(93615,354075,2,'actress',NULL,'[\"Nanna Huia\"]'),(93615,594937,3,'actress',NULL,'[\"Nanna Ngaropi\"]'),(93615,862564,4,'actor',NULL,'[\"Tione\"]'),(93615,54020,5,'director',NULL,NULL),(93615,687797,6,'writer',NULL,NULL),(93615,642652,7,'producer','producer',NULL),(93615,3589686,8,'cinematographer',NULL,NULL),(93615,454646,9,'editor',NULL,NULL),(93617,547579,10,'composer',NULL,NULL),(93617,364455,1,'actress',NULL,'[\"Mom\"]'),(93617,1534,2,'actress',NULL,'[\"April Flowers\"]'),(93617,641640,3,'actor',NULL,'[\"Andy\"]'),(93617,1728,4,'actor',NULL,'[\"Ellen\"]'),(93617,553492,5,'director',NULL,NULL),(93617,365174,6,'writer','written by',NULL),(93617,193325,7,'producer','producer',NULL),(93617,920274,8,'producer','producer',NULL),(93617,52108,9,'composer',NULL,NULL),(93629,823,10,'composer',NULL,NULL),(93629,486,1,'actress',NULL,'[\"Nancy Thompson\"]'),(93629,387,2,'actor',NULL,'[\"Freddy Krueger\"]'),(93629,913738,3,'actor',NULL,'[\"Neil Gordon\"]'),(93629,99,4,'actress',NULL,'[\"Kristen Parker\"]'),(93629,751080,5,'director',NULL,NULL),(93629,127,6,'writer','story',NULL),(93629,905818,7,'writer','story',NULL),(93629,1104,8,'writer','screenplay',NULL),(93629,790144,9,'producer','producer',NULL),(93640,5633,10,'cinematographer','director of photography',NULL),(93640,126,1,'actor',NULL,'[\"Tom Farrell\"]'),(93640,432,2,'actor',NULL,'[\"David Brice\"]'),(93640,707,3,'actress',NULL,'[\"Susan Atwell\"]'),(93640,1599,4,'actor',NULL,'[\"Scott Pritchard\"]'),(93640,2044,5,'director',NULL,NULL),(93640,269879,6,'writer','novel \"The Big Clock\"',NULL),(93640,307561,7,'writer','screen story',NULL),(93640,957205,8,'producer','producer',NULL),(93640,3574,9,'composer',NULL,NULL),(93690,909607,10,'cinematographer','director of photography',NULL),(93690,1480,1,'actress',NULL,'[\"Lauren\"]'),(93690,541,2,'actress',NULL,'[\"Sandy\"]'),(93690,1075,3,'actor',NULL,'[\"Michael\"]'),(93690,698764,4,'actor',NULL,'[\"Stanislav Korzenowski\"]'),(93690,2137,5,'director',NULL,NULL),(93690,228908,6,'writer','written by',NULL),(93690,181202,7,'producer','producer',NULL),(93690,276059,8,'producer','producer',NULL),(93690,6293,9,'composer',NULL,NULL),(93693,2166,10,'cinematographer','director of photography',NULL),(93693,443,1,'actress',NULL,'[\"Joanna\",\"Annie\"]'),(93693,621,2,'actor',NULL,'[\"Dean Proffitt\"]'),(93693,1346,3,'actor',NULL,'[\"Grant Stayton III\"]'),(93693,1340,4,'actress',NULL,'[\"Edith Mintz\"]'),(93693,5190,5,'director',NULL,NULL),(93693,228908,6,'writer','written by',NULL),(93693,741228,7,'producer','producer',NULL),(93693,843123,8,'producer','producer',NULL),(93693,6293,9,'composer',NULL,NULL),(93748,188,1,'actor',NULL,'[\"Neal Page\"]'),(93748,1006,2,'actor',NULL,'[\"Del Griffith\"]'),(93748,732309,3,'actress',NULL,'[\"Susan Page\"]'),(93748,571106,4,'actor',NULL,'[\"State Trooper\"]'),(93748,455,5,'director',NULL,NULL),(93748,627673,6,'composer',NULL,NULL),(93748,676286,7,'cinematographer','director of photography',NULL),(93748,386532,8,'editor',NULL,NULL),(93748,181149,9,'production_designer',NULL,NULL),(93756,790775,10,'writer','characters',NULL),(93756,430,1,'actor',NULL,'[\"Mahoney\"]'),(93756,807571,2,'actor',NULL,'[\"Hightower\"]'),(93756,935498,3,'actor',NULL,'[\"Jones\"]'),(93756,333701,4,'actor',NULL,'[\"Tackleberry\"]'),(93756,236930,5,'director',NULL,NULL),(93756,411477,6,'writer','characters',NULL),(93756,698493,7,'writer','characters',NULL),(93756,704164,8,'writer','written by',NULL),(93756,87904,9,'writer','characters',NULL),(93773,5428,10,'producer','producer',NULL),(93773,216,1,'actor',NULL,'[\"Dutch\"]'),(93773,1835,2,'actor',NULL,'[\"Dillon\"]'),(93773,1310,3,'actor',NULL,'[\"The Predator\",\"Helicopter Pilot\"]'),(93773,1990,4,'actress',NULL,'[\"Anna\"]'),(93773,1532,5,'director',NULL,NULL),(93773,859029,6,'writer','written by',NULL),(93773,859049,7,'writer','written by',NULL),(93773,204862,8,'producer','producer',NULL),(93773,330379,9,'producer','producer',NULL),(93777,518561,10,'production_designer',NULL,NULL),(93777,587,1,'actor',NULL,'[\"Priest\"]'),(93777,89408,2,'actress',NULL,'[\"Catherine Danforth\"]'),(93777,662321,3,'actor',NULL,'[\"Brian Marsh\"]'),(93777,939378,4,'actor',NULL,'[\"Prof. Howard Birack\"]'),(93777,118,5,'director',NULL,NULL),(93777,290581,6,'producer','producer',NULL),(93777,397697,7,'composer',NULL,NULL),(93777,452123,8,'cinematographer','director of photography',NULL),(93777,592427,9,'editor',NULL,NULL),(93779,500371,10,'editor','film editor',NULL),(93779,144,1,'actor',NULL,'[\"Westley\"]'),(93779,1597,2,'actor',NULL,'[\"Iñigo Montoya\"]'),(93779,705,3,'actress',NULL,'[\"The Princess Bride\"]'),(93779,1697,4,'actor',NULL,'[\"Prince Humperdinck\"]'),(93779,1661,5,'director',NULL,NULL),(93779,1279,6,'writer','screenplay by',NULL),(93779,770650,7,'producer','producer',NULL),(93779,461360,8,'composer',NULL,NULL),(93779,939,9,'cinematographer','director of photography',NULL),(93818,1201,1,'actress',NULL,'[\"Sally White\"]'),(93818,1848,2,'actress',NULL,'[\"Bea\"]'),(93818,823563,3,'actor',NULL,'[\"Burglar\"]'),(93818,379200,4,'actor',NULL,'[\"Burglar\"]'),(93818,95,5,'director',NULL,NULL),(93818,339086,6,'producer','producer',NULL),(93818,5688,7,'cinematographer','director of photography',NULL),(93818,607673,8,'editor',NULL,NULL),(93818,520288,9,'production_designer',NULL,NULL),(93822,615788,10,'production_designer',NULL,NULL),(93822,115,1,'actor',NULL,'[\"H.I. McDunnough\"]'),(93822,456,2,'actress',NULL,'[\"Ed\"]'),(93822,934254,3,'actor',NULL,'[\"Nathan Arizona, Sr.\"]'),(93822,422,4,'actor',NULL,'[\"Gale\"]'),(93822,1054,5,'director',NULL,NULL),(93822,1053,6,'director',NULL,NULL),(93822,1980,7,'composer',NULL,NULL),(93822,1756,8,'cinematographer',NULL,NULL),(93822,588998,9,'editor',NULL,NULL),(93840,424,1,'actor',NULL,'[\"Lord Byron\"]'),(93840,570569,2,'actress',NULL,'[\"Mary Shelley\"]'),(93840,670893,3,'actor',NULL,'[\"Percy Bysshe Shelley\"]'),(93840,167,4,'actress',NULL,'[\"Claire Clairmont\"]'),(93840,840779,5,'director',NULL,NULL),(93840,557579,6,'composer',NULL,NULL),(93840,840757,7,'cinematographer',NULL,NULL),(93840,757814,8,'editor',NULL,NULL),(93840,122214,9,'production_designer',NULL,NULL),(93870,5911,10,'cinematographer','director of photography',NULL),(93870,693,1,'actor',NULL,'[\"Alex Murphy\",\"RoboCop\"]'),(93870,262,2,'actress',NULL,'[\"Anne Lewis\"]'),(93870,641397,3,'actor',NULL,'[\"The Old Man\"]'),(93870,1074,4,'actor',NULL,'[\"Dick Jones\"]'),(93870,682,5,'director',NULL,NULL),(93870,627159,6,'writer','written by',NULL),(93870,591160,7,'writer','written by',NULL),(93870,772829,8,'producer','producer',NULL),(93870,6231,9,'composer',NULL,NULL),(93894,266536,10,'composer',NULL,NULL),(93894,216,1,'actor',NULL,'[\"Ben Richards\"]'),(93894,744,2,'actress',NULL,'[\"Amber Mendez\"]'),(93894,1433,3,'actor',NULL,'[\"Laughlin\"]'),(93894,987,4,'actor',NULL,'[\"Fireball\"]'),(93894,1274,5,'director',NULL,NULL),(93894,175,6,'writer','based on the novel by',NULL),(93894,211823,7,'writer','screenplay by',NULL),(93894,511707,8,'producer','producer',NULL),(93894,957030,9,'producer','producer',NULL),(93936,5688,10,'cinematographer',NULL,NULL),(93936,150,1,'actor',NULL,'[\"Brantley Foster\",\"Carlton Whitfield\"]'),(93936,644,2,'actress',NULL,'[\"Christy Wills\"]'),(93936,430151,3,'actor',NULL,'[\"Howard Prescott\"]'),(93936,926592,4,'actress',NULL,'[\"Vera Prescott\"]'),(93936,6889,5,'director',NULL,NULL),(93936,143596,6,'writer','screenplay',NULL),(93936,258390,7,'writer','screenplay',NULL),(93936,139218,8,'writer','screenplay',NULL),(93936,287757,9,'composer',NULL,NULL),(93940,834626,1,'actress',NULL,'[\"Diane\"]'),(93940,1186,2,'actor',NULL,'[\"Howard\"]'),(93940,1201,3,'actress',NULL,'[\"Lane\"]'),(93940,1848,4,'actress',NULL,'[\"Stephanie\"]'),(93940,95,5,'director',NULL,NULL),(93940,339086,6,'producer','producer',NULL),(93940,5688,7,'cinematographer',NULL,NULL),(93940,607673,8,'editor',NULL,NULL),(93940,520288,9,'production_designer',NULL,NULL),(93952,589833,10,'composer',NULL,NULL),(93952,299028,1,'actress',NULL,'[\"Asta Cadell\"]'),(93952,58181,2,'actor',NULL,'[\"Tim Curtis\"]'),(93952,118079,3,'actress',NULL,'[\"Lizzie Curtis\"]'),(93952,428143,4,'actress',NULL,'[\"Tina Farrel\"]'),(93952,423532,5,'director',NULL,NULL),(93952,87552,6,'writer','written by',NULL),(93952,109484,7,'writer','written by',NULL),(93952,57704,8,'producer','producer',NULL),(93952,661355,9,'producer','producer',NULL),(93991,895772,10,'cinematographer',NULL,NULL),(93991,435250,1,'actress',NULL,'[\"Daria\"]'),(93991,63601,2,'actress',NULL,'[\"Tisa\"]'),(93991,780116,3,'actor',NULL,'[\"Zed\"]'),(93991,828288,4,'actress',NULL,'[\"Shala\"]'),(93991,228895,5,'director',NULL,NULL),(93991,175028,6,'writer','story \"The Most Dangerous Game\"',NULL),(93991,199611,7,'producer','producer',NULL),(93991,200585,8,'composer',NULL,NULL),(93991,130369,9,'cinematographer',NULL,NULL),(94012,550671,10,'production_designer',NULL,NULL),(94012,316,1,'actor',NULL,'[\"President Skroob\",\"Yogurt\"]'),(94012,1006,2,'actor',NULL,'[\"Barf\"]'),(94012,1548,3,'actor',NULL,'[\"Dark Helmet\"]'),(94012,597,4,'actor',NULL,'[\"Lone Starr\"]'),(94012,576070,5,'writer','written by',NULL),(94012,334283,6,'writer','written by',NULL),(94012,606657,7,'composer',NULL,NULL),(94012,572622,8,'cinematographer','director of photography',NULL),(94012,119322,9,'editor',NULL,NULL),(94027,1579,1,'actor',NULL,'[\"Jaime Escalante\"]'),(94027,364680,2,'actress',NULL,'[\"Secretary\"]'),(94027,679750,3,'actor',NULL,'[\"Cop\"]'),(94027,661639,4,'actress',NULL,'[\"Raquel Ortega\"]'),(94027,579466,5,'director',NULL,NULL),(94027,615556,6,'writer','written by',NULL),(94027,6268,7,'composer',NULL,NULL),(94027,725166,8,'cinematographer','director of photography',NULL),(94027,724706,9,'editor',NULL,NULL),(94074,322946,10,'producer','producer',NULL),(94074,1659,1,'actor',NULL,'[\"Superman\",\"Clark Kent\"]'),(94074,432,2,'actor',NULL,'[\"Lex Luthor\",\"Nuclear Man\"]'),(94074,452288,3,'actress',NULL,'[\"Lois Lane\"]'),(94074,178114,4,'actor',NULL,'[\"Perry White\"]'),(94074,2089,5,'director',NULL,NULL),(94074,796950,6,'writer','character created by: Superman',NULL),(94074,795975,7,'writer','character created by: Superman',NULL),(94074,465199,8,'writer','story by',NULL),(94074,742797,9,'writer','story by',NULL),(94089,572865,10,'production_designer',NULL,NULL),(94089,336960,1,'self',NULL,'[\"Self\"]'),(94089,1832,2,'archive_footage',NULL,'[\"Additional Cast from \'The Killing Fields\'\"]'),(94089,923840,3,'archive_footage',NULL,'[\"Additional Cast from \'The Killing Fields\'\"]'),(94089,1129,4,'director',NULL,NULL),(94089,20767,5,'producer','producer',NULL),(94089,787368,6,'producer','producer',NULL),(94089,2173,7,'composer',NULL,NULL),(94089,7037,8,'cinematographer',NULL,NULL),(94089,514746,9,'editor',NULL,NULL),(94137,276059,10,'producer','producer',NULL),(94137,633,1,'actor',NULL,'[\"Peter\"]'),(94137,430,2,'actor',NULL,'[\"Michael\"]'),(94137,1101,3,'actor',NULL,'[\"Jack\"]'),(94137,1802,4,'actress',NULL,'[\"Sylvia\"]'),(94137,559,5,'director',NULL,NULL),(94137,785684,6,'writer','screenplay \"Trois Hommes et un Couffin\"',NULL),(94137,650561,7,'writer','screenplay',NULL),(94137,189979,8,'writer','screenplay',NULL),(94137,181202,9,'producer','producer',NULL),(94142,709944,10,'production_designer',NULL,NULL),(94142,362,1,'actor',NULL,'[\"Owen\"]'),(94142,345,2,'actor',NULL,'[\"Larry\"]'),(94142,2114,3,'actress',NULL,'[\"Beth\"]'),(94142,1649,4,'actress',NULL,'[\"Momma\"]'),(94142,798800,5,'writer','written by',NULL),(94142,108368,6,'producer','producer',NULL),(94142,628056,7,'composer',NULL,NULL),(94142,1756,8,'cinematographer','director of photography',NULL),(94142,413013,9,'editor',NULL,NULL),(94226,513165,10,'producer','producer',NULL),(94226,126,1,'actor',NULL,'[\"Eliot Ness\"]'),(94226,125,2,'actor',NULL,'[\"Jim Malone\"]'),(94226,134,3,'actor',NULL,'[\"Al Capone\"]'),(94226,1747,4,'actor',NULL,'[\"Oscar Wallace\"]'),(94226,361,5,'director',NULL,NULL),(94226,519,6,'writer','written by',NULL),(94226,289708,7,'writer','suggested by book',NULL),(94226,626479,8,'writer','suggested by book',NULL),(94226,588079,9,'writer','additional material',NULL),(94286,460109,10,'editor',NULL,NULL),(94286,1373,1,'actress',NULL,'[\"Alice B. Toklas\"]'),(94286,60221,2,'actress',NULL,'[\"Gertrude Stein\"]'),(94286,99134,3,'actor',NULL,'[\"Guillaume Apollinaire\"]'),(94286,530,4,'actor',NULL,'[\"Henry Hopper\"]'),(94286,324142,5,'director',NULL,NULL),(94286,2641128,6,'writer','screenplay',NULL),(94286,775980,7,'producer','producer',NULL),(94286,756339,8,'composer',NULL,NULL),(94286,623838,9,'cinematographer','director of photography',NULL),(94315,268685,10,'cinematographer','director of photography',NULL),(94315,12,1,'actress',NULL,'[\"Libby Strong\"]'),(94315,1273,2,'actress',NULL,'[\"Sarah Webber\"]'),(94315,1637,3,'actor',NULL,'[\"Mr. Maranov\"]'),(94315,815433,4,'actress',NULL,'[\"Tisha Doughty\"]'),(94315,755,5,'director',NULL,NULL),(94315,77527,6,'writer','screenplay',NULL),(94315,438332,7,'producer','producer',NULL),(94315,679405,8,'producer','producer',NULL),(94315,696771,9,'composer',NULL,NULL),(94332,287080,10,'producer','producer',NULL),(94332,197,1,'actor',NULL,'[\"Daryl Van Horne\"]'),(94332,333,2,'actress',NULL,'[\"Alexandra Medford\"]'),(94332,215,3,'actress',NULL,'[\"Jane Spofford\"]'),(94332,201,4,'actress',NULL,'[\"Sukie Ridgemont\"]'),(94332,4306,5,'director',NULL,NULL),(94332,881433,6,'writer','novel',NULL),(94332,188165,7,'writer','screenplay',NULL),(94332,134635,8,'producer','producer',NULL),(94332,345542,9,'producer','producer',NULL),(94336,833029,10,'editor',NULL,NULL),(94336,1290,1,'actor',NULL,'[\"Withnail\"]'),(94336,1524,2,'actor',NULL,'[\"...& I\"]'),(94336,341743,3,'actor',NULL,'[\"Monty\"]'),(94336,114460,4,'actor',NULL,'[\"Danny\"]'),(94336,732430,5,'director',NULL,NULL),(94336,375370,6,'producer','producer',NULL),(94336,242172,7,'composer',NULL,NULL),(94336,921135,8,'composer',NULL,NULL),(94336,360346,9,'cinematographer',NULL,NULL),(94357,516319,10,'composer',NULL,NULL),(94357,2000,1,'actor',NULL,'[\"Sung Tse-Kit\"]'),(94357,334,2,'actor',NULL,'[\"Ken\",\"Mark Lee\",\"Mark \'Gor\'\"]'),(94357,862479,3,'actor',NULL,'[\"Sung Tse-Ho\"]'),(94357,790925,4,'actor',NULL,'[\"Lung Si\"]'),(94357,247,5,'director',NULL,NULL),(94357,150916,6,'writer','co-writer',NULL),(94357,505000,7,'writer','co-writer',NULL),(94357,7139,8,'writer','story',NULL),(94357,345150,9,'composer',NULL,NULL),(94588,533326,1,'actress',NULL,'[\"Angelique\"]'),(94588,520594,2,'actor',NULL,'[\"Big T.\"]'),(94588,616271,3,'actor',NULL,'[\"Leroy\"]'),(94588,449129,4,'actor',NULL,'[\"Luke\"]'),(94588,780933,5,'director',NULL,NULL),(94588,780944,6,'director',NULL,NULL),(94588,357871,7,'composer',NULL,NULL),(94606,2354,10,'composer',NULL,NULL),(94606,458,1,'actor',NULL,'[\"Macon Leary\"]'),(94606,678,2,'actress',NULL,'[\"Sarah Leary\"]'),(94606,133,3,'actress',NULL,'[\"Muriel Pritchett\"]'),(94606,942195,4,'actress',NULL,'[\"Rose Leary\"]'),(94606,1410,5,'director',NULL,NULL),(94606,878773,6,'writer','book',NULL),(94606,301715,7,'writer','screenplay',NULL),(94606,342045,8,'producer','producer',NULL),(94606,645795,9,'producer','producer',NULL),(94608,5659,10,'cinematographer','director of photography',NULL),(94608,534,1,'actress',NULL,'[\"Kathryn Murphy\"]'),(94608,149,2,'actress',NULL,'[\"Sarah Tobias\"]'),(94608,183464,3,'actor',NULL,'[\"Ken Joyce\"]'),(94608,744235,4,'actor',NULL,'[\"Cliff \'Scorpion\' Albrect\"]'),(94608,438279,5,'director',NULL,NULL),(94608,867719,6,'writer','written by',NULL),(94608,415494,7,'producer','producer',NULL),(94608,5121,8,'producer','producer',NULL),(94608,6075,9,'composer',NULL,NULL),(94612,5772,10,'cinematographer',NULL,NULL),(94612,1835,1,'actor',NULL,'[\"\'Action\' Jackson\"]'),(94612,5266,2,'actor',NULL,'[\"Peter Dellaplane\"]'),(94612,889152,3,'actress',NULL,'[\"Sydney Ash\"]'),(94612,232,4,'actress',NULL,'[\"Patrice Dellaplane\"]'),(94612,62644,5,'director',NULL,NULL),(94612,719427,6,'writer','written by',NULL),(94612,5428,7,'producer','producer',NULL),(94612,359372,8,'composer',NULL,NULL),(94612,4383,9,'composer',NULL,NULL),(94625,592666,10,'cinematographer','director of photography',NULL),(94625,412628,1,'actor',NULL,'[\"Kaneda\"]'),(94625,765815,2,'actor',NULL,'[\"Tetsuo\"]'),(94625,468708,3,'actress',NULL,'[\"Kei\"]'),(94625,312656,4,'actor',NULL,'[\"Ryu\"]'),(94625,960028,5,'director','supervising director',NULL),(94625,368051,6,'writer','screenplay',NULL),(94625,441394,7,'producer','producer',NULL),(94625,5923859,8,'producer','producer',NULL),(94625,945602,9,'composer',NULL,NULL),(94631,4229,10,'cinematographer',NULL,NULL),(94631,1001,1,'actor',NULL,'[\"Matthew Sykes\"]'),(94631,1597,2,'actor',NULL,'[\"Sam Francisco\"]'),(94631,654,3,'actor',NULL,'[\"William Harcourt\"]'),(94631,397441,4,'actor',NULL,'[\"Rudyard Kipling\"]'),(94631,48491,5,'director',NULL,NULL),(94631,639328,6,'writer','written by',NULL),(94631,5036,7,'producer','producer',NULL),(94631,462193,8,'producer','producer',NULL),(94631,811749,9,'composer',NULL,NULL),(94663,1687,1,'actress',NULL,'[\"Marion\"]'),(94663,1201,2,'actress',NULL,'[\"Hope\"]'),(94663,453,3,'actor',NULL,'[\"Ken\"]'),(94663,1100,4,'actress',NULL,'[\"Lydia\"]'),(94663,95,5,'director',NULL,NULL),(94663,339086,6,'producer','producer',NULL),(94663,5815,7,'cinematographer','director of photography',NULL),(94663,607673,8,'editor',NULL,NULL),(94663,520288,9,'production_designer',NULL,NULL),(94668,1754680,10,'producer','producer',NULL),(94668,441534,1,'actress',NULL,'[\"Deunan Knute\"]'),(94668,756990,2,'actor',NULL,'[\"Briareos Hekatonchires\"]'),(94668,767991,3,'actress',NULL,'[\"Athena Arayas\"]'),(94668,299192,4,'actor',NULL,'[\"Calon Mautholos\"]'),(94668,441176,5,'director',NULL,NULL),(94668,794385,6,'writer','manga',NULL),(94668,538592,7,'producer','producer',NULL),(94668,594258,8,'producer','producer',NULL),(94668,768037,9,'producer','producer',NULL),(94715,16,10,'composer',NULL,NULL),(94715,541,1,'actress',NULL,'[\"CC Bloom\"]'),(94715,1347,2,'actress',NULL,'[\"Hillary Whitney Essex\"]'),(94715,1334,3,'actor',NULL,'[\"John Pierce\"]'),(94715,336960,4,'actor',NULL,'[\"Dr. Richard Milstein\"]'),(94715,5190,5,'director',NULL,NULL),(94715,201727,6,'writer','novel',NULL),(94715,232858,7,'writer','screenplay',NULL),(94715,115668,8,'producer','producer',NULL),(94715,816050,9,'producer','producer',NULL),(94721,368069,10,'producer','producer',NULL),(94721,285,1,'actor',NULL,'[\"Adam\"]'),(94721,133,2,'actress',NULL,'[\"Barbara\"]'),(94721,474,3,'actor',NULL,'[\"Betelgeuse\"]'),(94721,568499,4,'actress',NULL,'[\"Jane Butterfield\"]'),(94721,318,5,'director',NULL,NULL),(94721,568313,6,'writer','story',NULL),(94721,933733,7,'writer','story',NULL),(94721,803730,8,'writer','screenplay',NULL),(94721,70498,9,'producer','producer',NULL),(94737,6290,10,'composer',NULL,NULL),(94737,158,1,'actor',NULL,'[\"Josh\"]'),(94737,1610,2,'actress',NULL,'[\"Susan\"]'),(94737,5162,3,'actor',NULL,'[\"MacMillan\"]'),(94737,1334,4,'actor',NULL,'[\"Paul\"]'),(94737,1508,5,'director',NULL,NULL),(94737,2657,6,'writer','written by',NULL),(94737,818576,7,'writer','written by',NULL),(94737,985,8,'producer','producer',NULL),(94737,339086,9,'producer','producer',NULL),(94739,2626,10,'composer',NULL,NULL),(94739,541,1,'actress',NULL,'[\"Sadie Shelton\",\"Sadie Ratliff\"]'),(94739,5499,2,'actress',NULL,'[\"Rose Shelton\",\"Rose Ratliff\"]'),(94739,911542,3,'actor',NULL,'[\"Roone Dimmick\"]'),(94739,1346,4,'actor',NULL,'[\"Graham Sherbourne\"]'),(94739,720,5,'director',NULL,NULL),(94739,682752,6,'writer','written by',NULL),(94739,747822,7,'writer','written by',NULL),(94739,679017,8,'producer','producer',NULL),(94739,5494,9,'producer','producer',NULL),(94791,535053,10,'actor',NULL,'[\"D\'Armacourt\"]'),(94791,328,1,'actor',NULL,'[\"Jason Bourne\"]'),(94791,646,2,'actress',NULL,'[\"Marie St. Jacques\"]'),(94791,703033,3,'actor',NULL,'[\"Gen. François Villiers\"]'),(94791,595567,4,'actor',NULL,'[\"David Abbott\"]'),(94791,903901,5,'actor',NULL,'[\"Carlos\"]'),(94791,891092,6,'actor',NULL,'[\"Fritz Koenig\"]'),(94791,1186,7,'actor',NULL,'[\"Dr. Geoffrey Washburn\"]'),(94791,352138,8,'actor',NULL,'[\"The Fat Man\"]'),(94791,434759,9,'actor',NULL,'[\"Gold Glasses\"]'),(94812,500371,10,'editor',NULL,NULL),(94812,126,1,'actor',NULL,'[\"Crash Davis\"]'),(94812,215,2,'actress',NULL,'[\"Annie Savoy\"]'),(94812,209,3,'actor',NULL,'[\"Ebby Calvin \'Nuke\' LaLoosh\"]'),(94812,934254,4,'actor',NULL,'[\"Skip\"]'),(94812,5421,5,'director',NULL,NULL),(94812,121117,6,'producer','producer',NULL),(94812,609861,7,'producer','producer',NULL),(94812,6016,8,'composer',NULL,NULL),(94812,126128,9,'cinematographer',NULL,NULL),(94824,134635,10,'producer','producer',NULL),(94824,556750,1,'actor',NULL,'[\"Jack Hartounian\"]'),(94824,821041,2,'actor',NULL,'[\"Chandler Young\"]'),(94824,1007,3,'actress',NULL,'[\"Elizabeth Pearce\"]'),(94824,581277,4,'actress',NULL,'[\"Cynthia Young\"]'),(94824,35106,5,'director',NULL,NULL),(94824,236519,6,'writer','characters',NULL),(94824,601,7,'writer','characters',NULL),(94824,448469,8,'writer','characters',NULL),(94824,868242,9,'writer','written by',NULL),(94849,758627,10,'editor',NULL,NULL),(94849,806693,1,'actress',NULL,'[\"Celia Carmichael\"]'),(94849,247031,2,'actor',NULL,'[\"Ray Carmichael\"]'),(94849,519371,3,'actress',NULL,'[\"Alice Tanner\"]'),(94849,265192,4,'actress',NULL,'[\"Pat Carmichael\"]'),(94849,877382,5,'director',NULL,NULL),(94849,322602,6,'producer','producer',NULL),(94849,925524,7,'producer','producer',NULL),(94849,623583,8,'composer',NULL,NULL),(94849,801005,9,'cinematographer',NULL,NULL),(94862,124832,10,'cinematographer','director of photography',NULL),(94862,382819,1,'actress',NULL,'[\"Karen Barclay\"]'),(94862,1697,2,'actor',NULL,'[\"Mike Norris\"]'),(94862,898571,3,'actor',NULL,'[\"Andy Barclay\"]'),(94862,374,4,'actor',NULL,'[\"Charles Lee Ray\",\"Chucky\"]'),(94862,276169,5,'director',NULL,NULL),(94862,238841,6,'writer','story by',NULL),(94862,480843,7,'writer','screenplay by',NULL),(94862,456946,8,'producer','producer',NULL),(94862,6250,9,'composer',NULL,NULL),(94868,104456,10,'composer',NULL,NULL),(94868,207218,1,'actor',NULL,'[\"Protée\"]'),(94868,97817,2,'actress',NULL,'[\"Aimée Dalens\"]'),(94868,167388,3,'actor',NULL,'[\"Marc Dalens\"]'),(94868,11803,4,'actor',NULL,'[\"Luc\"]'),(94868,219136,5,'director',NULL,NULL),(94868,267288,6,'writer','written by',NULL),(94868,69310,7,'producer','producer',NULL),(94868,901,8,'producer','producer',NULL),(94868,189096,9,'producer','producer',NULL),(94898,734755,10,'composer',NULL,NULL),(94898,552,1,'actor',NULL,'[\"Prince Akeem\",\"Clarence\",\"Saul\"]'),(94898,61003,2,'actor',NULL,'[\"Oha\"]'),(94898,4731,3,'actress',NULL,'[\"Rose Bearer\"]'),(94898,269936,4,'actress',NULL,'[\"Rose Bearer\"]'),(94898,484,5,'director',NULL,NULL),(94898,790775,6,'writer','screenplay',NULL),(94898,87904,7,'writer','screenplay',NULL),(94898,284390,8,'producer','producer',NULL),(94898,905160,9,'producer','producer',NULL),(94919,97132,10,'editor',NULL,NULL),(94919,342241,1,'actor',NULL,'[\"Brad\"]'),(94919,193421,2,'actress',NULL,'[\"Megan\"]'),(94919,542994,3,'actor',NULL,'[\"Ug\"]'),(94919,649210,4,'actor',NULL,'[\"Charlie\"]'),(94919,308376,5,'director',NULL,NULL),(94919,878638,6,'writer','written by',NULL),(94919,649209,7,'producer','producer',NULL),(94919,6229,8,'composer',NULL,NULL),(94919,5665,9,'cinematographer','director of photography',NULL),(94921,787603,10,'editor',NULL,NULL),(94921,1388,1,'actress',NULL,'[\"Isabelle Grossman\"]'),(94921,726200,2,'actor',NULL,'[\"Sam Posner\"]'),(94921,102536,3,'actress',NULL,'[\"Bubbie Kantor\"]'),(94921,469103,4,'actor',NULL,'[\"Anton Maes\"]'),(94921,798717,5,'director',NULL,NULL),(94921,762000,6,'writer','screenplay by',NULL),(94921,637602,7,'producer','producer',NULL),(94921,2414,8,'composer',NULL,NULL),(94921,5856,9,'cinematographer','director of photography',NULL),(94947,6070,10,'composer',NULL,NULL),(94947,335,1,'actress',NULL,'[\"Marquise de Merteuil\"]'),(94947,518,2,'actor',NULL,'[\"Vicomte de Valmont\"]'),(94947,201,3,'actress',NULL,'[\"Madame de Tourvel\"]'),(94947,1436,4,'actress',NULL,'[\"Madame de Volanges\"]'),(94947,1241,5,'director',NULL,NULL),(94947,358960,6,'writer','play',NULL),(94947,480166,7,'writer','novel \"Les liaisons dangereuses\"',NULL),(94947,382278,8,'producer','producer',NULL),(94947,600794,9,'producer','producer',NULL),(94964,6290,10,'composer',NULL,NULL),(94964,460,1,'actor',NULL,'[\"Beverly and Elliot Mantle\"]'),(94964,991,2,'actress',NULL,'[\"Claire Niveau\"]'),(94964,902794,3,'actress',NULL,'[\"Cary\",\"Elliot\'s girlfriend\"]'),(94964,329876,4,'actress',NULL,'[\"Danuta\",\"clinic receptionist\"]'),(94964,343,5,'director',NULL,NULL),(94964,811138,6,'writer','written by',NULL),(94964,939562,7,'writer','book \"Twins\"',NULL),(94964,311316,8,'writer','book \"Twins\"',NULL),(94964,102371,9,'producer','producer',NULL),(95016,5428,10,'producer','producer',NULL),(95016,246,1,'actor',NULL,'[\"John McClane\"]'),(95016,614,2,'actor',NULL,'[\"Hans Gruber\"]'),(95016,889,3,'actress',NULL,'[\"Holly Gennaro McClane\"]'),(95016,1817,4,'actor',NULL,'[\"Sgt. Al Powell\"]'),(95016,1532,5,'director',NULL,NULL),(95016,861636,6,'writer','based on the novel by',NULL),(95016,835732,7,'writer','screenplay by',NULL),(95016,211823,8,'writer','screenplay by',NULL),(95016,330379,9,'producer','producer',NULL),(95031,6108,10,'composer',NULL,NULL),(95031,188,1,'actor',NULL,'[\"Freddy Benson\"]'),(95031,323,2,'actor',NULL,'[\"Lawrence Jamieson\"]'),(95031,444,3,'actress',NULL,'[\"Janet Colgate\"]'),(95031,734668,4,'actor',NULL,'[\"Inspector Andre\"]'),(95031,568,5,'director',NULL,NULL),(95031,490958,6,'writer','written by',NULL),(95031,788630,7,'writer','written by',NULL),(95031,377417,8,'writer','written by',NULL),(95031,930089,9,'producer','producer',NULL),(95037,592,1,'actor',NULL,'[\"Father\"]'),(95037,235782,2,'actress',NULL,'[\"Mother\"]'),(95037,909541,3,'actress',NULL,'[\"Eileen\"]'),(95037,929901,4,'actor',NULL,'[\"Tony\"]'),(95037,203993,5,'director',NULL,NULL),(95037,397715,6,'producer','producer',NULL),(95037,228633,7,'cinematographer',NULL,NULL),(95037,245076,8,'cinematographer',NULL,NULL),(95088,132537,10,'composer',NULL,NULL),(95088,5308,1,'actress',NULL,'[\"Elvira\"]'),(95088,747933,2,'actor',NULL,'[\"Director\"]'),(95088,330380,3,'actor',NULL,'[\"Technical Director\"]'),(95088,293346,4,'actress',NULL,'[\"Associate Producer\"]'),(95088,797526,5,'director',NULL,NULL),(95088,250735,6,'writer','written by',NULL),(95088,660893,7,'writer','written by',NULL),(95088,1140589,8,'producer','producer',NULL),(95088,682790,9,'producer','producer',NULL),(95094,599173,10,'cinematographer',NULL,NULL),(95094,880148,1,'actress',NULL,'[\"Emmanuelle\"]'),(95094,331599,2,'actor',NULL,'[\"Prof. Simon\"]'),(95094,643340,3,'actor',NULL,'[\"Benton\"]'),(95094,735868,4,'actor',NULL,'[\"Tony Harrison\"]'),(95094,956919,5,'director',NULL,NULL),(95094,210811,6,'director',NULL,NULL),(95094,37491,7,'writer','from an idea by',NULL),(95094,206535,8,'composer',NULL,NULL),(95094,323941,9,'cinematographer',NULL,NULL),(95145,131333,10,'editor',NULL,NULL),(95145,360,1,'actress',NULL,'[\"DeWitt\"]'),(95145,343444,2,'actress',NULL,'[\"Zuckerman\"]'),(95145,550989,3,'actor',NULL,'[\"Brent\"]'),(95145,669,4,'actor',NULL,'[\"Bilecki\"]'),(95145,325175,5,'director',NULL,NULL),(95145,89676,6,'writer','written by',NULL),(95145,381245,7,'producer','producer',NULL),(95145,6055,8,'composer',NULL,NULL),(95145,5891,9,'cinematographer',NULL,NULL),(95159,494861,10,'production_designer',NULL,NULL),(95159,92,1,'actor',NULL,'[\"Archie\"]'),(95159,130,2,'actress',NULL,'[\"Wanda\"]'),(95159,177,3,'actor',NULL,'[\"Otto\"]'),(95159,1589,4,'actor',NULL,'[\"Ken\"]'),(95159,187769,5,'director',NULL,NULL),(95159,787834,6,'producer','producer',NULL),(95159,6047,7,'composer',NULL,NULL),(95159,401727,8,'cinematographer',NULL,NULL),(95159,433384,9,'editor',NULL,NULL),(95243,165961,10,'producer','producer',NULL),(95243,244,1,'actress',NULL,'[\"Dian Fossey\"]'),(95243,986,2,'actor',NULL,'[\"Bob Campbell\"]'),(95243,364915,3,'actress',NULL,'[\"Roz Carr\"]'),(95243,590731,4,'actor',NULL,'[\"Sembagare\"]'),(95243,776,5,'director',NULL,NULL),(95243,371038,6,'writer','article',NULL),(95243,287638,7,'writer','work',NULL),(95243,357703,8,'writer','story',NULL),(95243,614742,9,'writer','story',NULL),(95250,496628,10,'producer','producer',NULL),(95250,852,1,'actor',NULL,'[\"Jacques Mayol\"]'),(95250,606,2,'actor',NULL,'[\"Enzo Molinari\"]'),(95250,275,3,'actress',NULL,'[\"Johana\"]'),(95250,791502,4,'actor',NULL,'[\"Dr. Laurence\"]'),(95250,108,5,'director',NULL,NULL),(95250,307561,6,'writer','screenplay',NULL),(95250,325665,7,'writer','screenplay',NULL),(95250,562936,8,'writer','screenplay',NULL),(95250,674700,9,'writer','screenplay',NULL),(95253,281311,10,'editor',NULL,NULL),(95253,101,1,'actor',NULL,'[\"Roman Craig\"]'),(95253,1006,2,'actor',NULL,'[\"Chet Ripley\"]'),(95253,266995,3,'actress',NULL,'[\"Connie Ripley\"]'),(95253,906,4,'actress',NULL,'[\"Kate Craig\"]'),(95253,222043,5,'director',NULL,NULL),(95253,455,6,'writer','written by',NULL),(95253,772829,7,'producer','producer',NULL),(95253,2353,8,'composer',NULL,NULL),(95253,5923,9,'cinematographer','director of photography',NULL),(95270,737311,10,'editor','co-editor',NULL),(95270,95122,1,'actor',NULL,'[\"Franklin von Tussle\"]'),(95270,114616,2,'actress',NULL,'[\"Motormouth Maybelle\"]'),(95270,1145,3,'actor',NULL,'[\"Edna Turnblad\",\"Arvin Hodgepile\"]'),(95270,1323,4,'actress',NULL,'[\"Velma Von Tussle\"]'),(95270,691,5,'director',NULL,NULL),(95270,3080,6,'producer','producer',NULL),(95270,888536,7,'composer',NULL,NULL),(95270,409392,8,'cinematographer',NULL,NULL),(95270,359000,9,'editor',NULL,NULL),(95294,896485,10,'cinematographer','director of photography',NULL),(95294,103208,1,'actor',NULL,'[\"Pinhead\"]'),(95294,491090,2,'actress',NULL,'[\"Kirsty\"]'),(95294,383354,3,'actress',NULL,'[\"Julia\"]'),(95294,186469,4,'actor',NULL,'[\"Channard\"]'),(95294,709752,5,'director',NULL,NULL),(95294,40643,6,'writer','screenplay by',NULL),(95294,850,7,'writer','based on a story by',NULL),(95294,276541,8,'producer','producer',NULL),(95294,2366,9,'composer',NULL,NULL),(95305,64555,10,'editor',NULL,NULL),(95305,1114,1,'actress',NULL,'[\"Lilli\"]'),(95305,11792,2,'actress',NULL,'[\"Bet\"]'),(95305,440286,3,'actress',NULL,'[\"Ally\"]'),(95305,295506,4,'actor',NULL,'[\"Mick\"]'),(95305,788,5,'director',NULL,NULL),(95305,428630,6,'writer','screenplay',NULL),(95305,506607,7,'producer','producer',NULL),(95305,78984,8,'composer',NULL,NULL),(95305,6570,9,'cinematographer','director of photography',NULL),(95327,786707,10,'editor',NULL,NULL),(95327,851302,1,'actor',NULL,'[\"Seita\"]'),(95327,794186,2,'actress',NULL,'[\"Setsuko\"]'),(95327,945312,3,'actress',NULL,'[\"Aunt\"]'),(95327,794002,4,'actress',NULL,'[\"Mother\"]'),(95327,847223,5,'director',NULL,NULL),(95327,636435,6,'writer','novel',NULL),(95327,361701,7,'producer','producer',NULL),(95327,2197915,8,'composer',NULL,NULL),(95327,468710,9,'cinematographer','director of photography',NULL),(95444,744802,10,'editor',NULL,NULL),(95444,186151,1,'actor',NULL,'[\"Mike Tobacco\"]'),(95444,811562,2,'actress',NULL,'[\"Debbie Stone\"]'),(95444,625482,3,'actor',NULL,'[\"Dave Hansen\"]'),(95444,6893,4,'actor',NULL,'[\"Curtis Mooney\"]'),(95444,158014,5,'director',NULL,NULL),(95444,158006,6,'writer','written by',NULL),(95444,158008,7,'writer',NULL,NULL),(95444,6188,8,'composer',NULL,NULL),(95444,851941,9,'cinematographer','director of photography',NULL),(95484,1305,1,'actor',NULL,'[\"Frankie Scarlatti\"]'),(95484,137230,2,'actor',NULL,'[\"Phil Terragrossa\"]'),(95484,733678,3,'actor',NULL,'[\"Angelo \'Al\' Scarlatti\"]'),(95484,1340,4,'actress',NULL,'[\"Amanda\"]'),(95484,482486,5,'director',NULL,NULL),(95484,478701,6,'producer','producer',NULL),(95484,5665,7,'cinematographer','director of photography',NULL),(95484,542977,8,'editor',NULL,NULL),(95484,401848,9,'production_designer',NULL,NULL),(95489,690112,10,'producer','producer',NULL),(95489,385757,1,'actor',NULL,'[\"Narrator\",\"Rooter\"]'),(95489,198925,2,'actor',NULL,'[\"Littlefoot\"]'),(95489,1726,3,'actress',NULL,'[\"Littlefoot\'s Mother\"]'),(95489,259984,4,'actor',NULL,'[\"Grandfather\"]'),(95489,89940,5,'director',NULL,NULL),(95489,471217,6,'writer','screenplay by',NULL),(95489,294440,7,'writer','story by',NULL),(95489,312076,8,'writer','story by',NULL),(95489,325776,9,'producer','producer',NULL),(95497,841,10,'cinematographer','director of photography',NULL),(95497,353,1,'actor',NULL,'[\"Jesus\"]'),(95497,172,2,'actor',NULL,'[\"Judas\"]'),(95497,1347,3,'actress',NULL,'[\"Mary Magdalene\"]'),(95497,8109205,4,'actor',NULL,'[\"Zealot\"]'),(95497,217,5,'director',NULL,NULL),(95497,443611,6,'writer','novel',NULL),(95497,1707,7,'writer','screenplay',NULL),(95497,208381,8,'producer','producer',NULL),(95497,300272,9,'composer',NULL,NULL),(95583,449444,10,'editor',NULL,NULL),(95583,40662,1,'actor',NULL,'[\"Frank McCrae\"]'),(95583,132257,2,'actor',NULL,'[\"Jack Forrest\"]'),(95583,484929,3,'actress',NULL,'[\"Theresa Mallory\"]'),(95583,745780,4,'actor',NULL,'[\"Commissioner Pike\"]'),(95583,527350,5,'director',NULL,NULL),(95583,169540,6,'writer','written by',NULL),(95583,6001,7,'composer',NULL,NULL),(95583,501419,8,'cinematographer',NULL,NULL),(95583,704807,9,'cinematographer',NULL,NULL),(95593,126154,10,'composer',NULL,NULL),(95593,201,1,'actress',NULL,'[\"Angela de Marco\"]'),(95593,285,2,'actor',NULL,'[\"\'Cucumber\' Frank de Marco\"]'),(95593,493684,3,'actor',NULL,'[\"Tommy\"]'),(95593,353614,4,'actor',NULL,'[\"\'The Fat Man\'\"]'),(95593,1129,5,'director',NULL,NULL),(95593,835299,6,'writer','written by',NULL),(95593,122787,7,'writer','written by',NULL),(95593,768324,8,'producer','producer',NULL),(95593,882588,9,'producer','producer',NULL),(95631,873531,10,'editor',NULL,NULL),(95631,134,1,'actor',NULL,'[\"Jack Walsh\"]'),(95631,1301,2,'actor',NULL,'[\"Jonathan Mardukas\"]'),(95631,1433,3,'actor',NULL,'[\"Alonzo Mosely\"]'),(95631,39226,4,'actor',NULL,'[\"Marvin Dorfler\"]'),(95631,976,5,'director',NULL,NULL),(95631,303032,6,'writer','written by',NULL),(95631,384,7,'composer',NULL,NULL),(95631,4241,8,'cinematographer','director of photography',NULL),(95631,495605,9,'editor',NULL,NULL),(95675,560962,1,'actress',NULL,'[\"Pepa\"]'),(95675,104,2,'actor',NULL,'[\"Carlos\"]'),(95675,785565,3,'actress',NULL,'[\"Lucía\"]'),(95675,658041,4,'actress',NULL,'[\"Marisa\"]'),(95675,264,5,'director',NULL,NULL),(95675,168413,6,'writer','play \"La Voix humaine\"',NULL),(95675,5970,7,'composer',NULL,NULL),(95675,3900,8,'cinematographer','director of photography',NULL),(95675,757814,9,'editor',NULL,NULL),(95687,506410,10,'producer','producer',NULL),(95687,101,1,'actor',NULL,'[\"Steven Mills\"]'),(95687,107,2,'actress',NULL,'[\"Celeste Martin\"]'),(95687,1484,3,'actor',NULL,'[\"Ron Mills\"]'),(95687,4989,4,'actress',NULL,'[\"Jessie Mills\"]'),(95687,907,5,'director',NULL,NULL),(95687,421948,6,'writer','written by',NULL),(95687,918339,7,'writer','written by',NULL),(95687,365390,8,'writer','written by',NULL),(95687,721800,9,'writer','written by',NULL),(95690,506070,10,'producer','producer',NULL),(95690,1272,1,'actress',NULL,'[\"Kat\"]'),(95690,210,2,'actress',NULL,'[\"Daisy\"]'),(95690,666,3,'actress',NULL,'[\"Jojo\"]'),(95690,352,4,'actor',NULL,'[\"Bill\"]'),(95690,677953,5,'director',NULL,NULL),(95690,427468,6,'writer','story',NULL),(95690,398286,7,'writer','screenplay',NULL),(95690,398287,8,'writer','screenplay',NULL),(95690,880261,9,'writer','screenplay',NULL),(95705,627673,10,'composer',NULL,NULL),(95705,558,1,'actor',NULL,'[\"Lt. Frank Drebin\"]'),(95705,1636,2,'actress',NULL,'[\"Jane Spencer\"]'),(95705,1740,3,'actor',NULL,'[\"Det. Nordberg\"]'),(95705,1544,4,'actor',NULL,'[\"Vincent Ludwig\"]'),(95705,1878,5,'director',NULL,NULL),(95705,958387,6,'writer','written by',NULL),(95705,720,7,'writer','written by',NULL),(95705,698493,8,'writer','written by',NULL),(95705,919154,9,'producer','producer',NULL),(95742,3117,10,'writer','screenplay',NULL),(95742,387,1,'actor',NULL,'[\"Freddy Krueger\"]'),(95742,247672,2,'actor',NULL,'[\"Joey\"]'),(95742,65806,3,'actor',NULL,'[\"Coach\"]'),(95742,102779,4,'actress',NULL,'[\"Friend\"]'),(95742,1317,5,'director',NULL,NULL),(95742,127,6,'writer','character',NULL),(95742,467889,7,'writer','story',NULL),(95742,1338,8,'writer','story',NULL),(95742,923646,9,'writer','screenplay',NULL),(95765,5721,10,'cinematographer',NULL,NULL),(95765,634159,1,'actor',NULL,'[\"Alfredo\"]'),(95765,134073,2,'actor',NULL,'[\"Spaccafico\"]'),(95765,41066,3,'actress',NULL,'[\"Maria Di Vita - Younger\"]'),(95765,199774,4,'actress',NULL,'[\"Anna\"]'),(95765,868153,5,'director',NULL,NULL),(95765,660031,6,'writer','collaborating writer',NULL),(95765,188053,7,'producer','producer',NULL),(95765,738603,8,'producer','producer',NULL),(95765,1553,9,'composer',NULL,NULL),(95776,300265,10,'writer','story',NULL),(95776,5129,1,'actor',NULL,'[\"Oliver\"]'),(95776,5055,2,'actor',NULL,'[\"Dodger\"]'),(95776,1507,3,'actor',NULL,'[\"Tito\"]'),(95776,612321,4,'actor',NULL,'[\"Einstein\"]'),(95776,780117,5,'director',NULL,NULL),(95776,185084,6,'writer','animation screenplay',NULL),(95776,228400,7,'writer','animation screenplay',NULL),(95776,3506,8,'writer','animation screenplay',NULL),(95776,314788,9,'writer','story',NULL),(95800,3542,10,'cinematographer',NULL,NULL),(95800,1409,1,'actor',NULL,'[\"Tom\"]'),(95800,1075976,2,'actor',NULL,'[\"The Kodiak Bear\"]'),(95800,1212486,3,'actress',NULL,'[\"The Bear Cub\"]'),(95800,908685,4,'actor',NULL,'[\"Bill\"]'),(95800,269,5,'director',NULL,NULL),(95800,193617,6,'writer','novel \"The Grizzly King\"',NULL),(95800,102722,7,'writer','screenplay',NULL),(95800,1945,8,'producer','producer',NULL),(95800,6271,9,'composer',NULL,NULL),(95801,381289,10,'editor',NULL,NULL),(95801,845270,1,'actress',NULL,'[\"Jasmin Münchgstettner\"]'),(95801,1634,2,'actress',NULL,'[\"Brenda\"]'),(95801,1588,3,'actor',NULL,'[\"Rudi Cox\"]'),(95801,442304,4,'actress',NULL,'[\"Debby\"]'),(95801,727,5,'director',NULL,NULL),(95801,12280,6,'writer','screenplay',NULL),(95801,230547,7,'writer','co-writer',NULL),(95801,854551,8,'composer',NULL,NULL),(95801,5739,9,'cinematographer','director of photography',NULL),(95882,704164,10,'writer','characters',NULL),(95882,807571,1,'actor',NULL,'[\"Hightower\"]'),(95882,333701,2,'actor',NULL,'[\"Tackleberry\"]'),(95882,935498,3,'actor',NULL,'[\"Jones\"]'),(95882,247579,4,'actress',NULL,'[\"Callahan\"]'),(95882,2887,5,'director',NULL,NULL),(95882,411477,6,'writer','characters creator',NULL),(95882,698493,7,'writer','characters creator',NULL),(95882,193615,8,'writer','written by',NULL),(95882,87904,9,'writer','characters',NULL),(95889,626124,10,'cinematographer',NULL,NULL),(95889,1576,1,'actress',NULL,'[\"Carol Anne\"]'),(95889,643,2,'actor',NULL,'[\"Bruce Gardner\"]'),(95889,262,3,'actress',NULL,'[\"Patricia Gardner\"]'),(95889,748289,4,'actress',NULL,'[\"Tangina\"]'),(95889,792446,5,'director',NULL,NULL),(95889,846532,6,'writer','written by',NULL),(95889,270841,7,'writer',NULL,NULL),(95889,76444,8,'producer','producer',NULL),(95889,6250,9,'composer',NULL,NULL),(95925,86491,10,'producer','producer',NULL),(95925,448,1,'actor',NULL,'[\"Ed Harley\"]'),(95925,247532,2,'actor',NULL,'[\"Chris\"]'),(95925,195383,3,'actor',NULL,'[\"Joel\"]'),(95925,743590,4,'actress',NULL,'[\"Kim\"]'),(95925,935644,5,'director',NULL,NULL),(95925,433179,6,'writer','poem',NULL),(95925,136737,7,'writer','story',NULL),(95925,918376,8,'writer','story',NULL),(95925,313927,9,'writer','screenplay',NULL),(95953,5868,10,'cinematographer','director of photography',NULL),(95953,163,1,'actor',NULL,'[\"Raymond Babbitt\"]'),(95953,129,2,'actor',NULL,'[\"Charlie Babbitt\"]'),(95953,420,3,'actress',NULL,'[\"Susanna\"]'),(95953,596520,4,'actor',NULL,'[\"Dr. Bruner\"]'),(95953,1469,5,'director',NULL,NULL),(95953,607454,6,'writer','story',NULL),(95953,60103,7,'writer','screenplay',NULL),(95953,425741,8,'producer','producer',NULL),(95953,1877,9,'composer',NULL,NULL),(95956,822285,10,'cinematographer','director of photography',NULL),(95956,230,1,'actor',NULL,'[\"Rambo\"]'),(95956,1077,2,'actor',NULL,'[\"Trautman\"]'),(95956,209030,3,'actor',NULL,'[\"Zaysen\"]'),(95956,1748,4,'actor',NULL,'[\"Griggs\"]'),(95956,3423,5,'director',NULL,NULL),(95956,606251,6,'writer','characters',NULL),(95956,504802,7,'writer','written by',NULL),(95956,270809,8,'producer','producer',NULL),(95956,25,9,'composer',NULL,NULL),(96001,86609,10,'actor',NULL,'[\"Nicky\"]'),(96001,1007,1,'actress',NULL,'[\"Annie Hackett\"]'),(96001,104787,2,'actor',NULL,'[\"Jeff Robins\"]'),(96001,394286,3,'actress',NULL,'[\"Edda\"]'),(96001,501802,4,'actress',NULL,'[\"Connie\"]'),(96001,776317,5,'director',NULL,NULL),(96001,503753,6,'writer',NULL,NULL),(96001,728655,7,'composer',NULL,NULL),(96001,542552,8,'cinematographer',NULL,NULL),(96001,327649,9,'editor',NULL,NULL),(96037,6014,10,'composer',NULL,NULL),(96037,868,1,'actress',NULL,'[\"Jennie Lee\"]'),(96037,553,2,'actor',NULL,'[\"Martin Falcon\"]'),(96037,746,3,'actress',NULL,'[\"Mooch\"]'),(96037,168892,4,'actor',NULL,'[\"Nickie\"]'),(96037,293445,5,'director',NULL,NULL),(96037,700942,6,'writer','written by',NULL),(96037,12581086,7,'writer','writer',NULL),(96037,340112,8,'producer','producer',NULL),(96037,5455,9,'producer','producer',NULL),(96061,384,10,'composer',NULL,NULL),(96061,195,1,'actor',NULL,'[\"Frank Cross\"]'),(96061,261,2,'actress',NULL,'[\"Claire Phillips\"]'),(96061,1234,3,'actor',NULL,'[\"Lew Hayward\"]'),(96061,1278,4,'actor',NULL,'[\"Brice Cummings\"]'),(96061,1149,5,'director',NULL,NULL),(96061,322248,6,'writer','written by',NULL),(96061,640874,7,'writer','written by',NULL),(96061,2042,8,'writer','novel \"A Christmas Carol\"',NULL),(96061,513165,9,'producer','producer',NULL),(96114,390258,1,'actress',NULL,'[\"Alee\"]'),(96114,905843,2,'actor',NULL,'[\"Mikal\"]'),(96114,468,3,'actress',NULL,'[\"Marya\"]'),(96114,665813,4,'actress',NULL,'[\"Vera\"]'),(96114,379391,5,'director',NULL,NULL),(96114,165906,6,'writer','writer',NULL),(96114,718928,7,'cinematographer','director of photography',NULL),(96114,898507,8,'editor',NULL,NULL),(96114,42884,9,'production_designer',NULL,NULL),(96163,295283,10,'editor',NULL,NULL),(96163,232627,1,'actor',NULL,'[\"Raymond Lemorne\"]'),(96163,78517,2,'actor',NULL,'[\"Rex Hofman\"]'),(96163,824373,3,'actress',NULL,'[\"Saskia Wagter\"]'),(96163,248680,4,'actress',NULL,'[\"Lieneke\"]'),(96163,806293,5,'director',NULL,NULL),(96163,469104,6,'writer','novel \"The Golden Egg\"',NULL),(96163,520533,7,'producer','producer',NULL),(96163,904087,8,'composer',NULL,NULL),(96163,474131,9,'cinematographer',NULL,NULL),(96176,644,1,'actress',NULL,'[\"Hattie\"]'),(96176,563039,2,'actress',NULL,'[\"Lolly\"]'),(96176,1129289,3,'actor',NULL,'[\"Jean-Marc\"]'),(96176,888503,4,'actress',NULL,'[\"Evanston\"]'),(96176,10818,5,'director',NULL,NULL),(96176,5999,6,'composer',NULL,NULL),(96176,857982,7,'cinematographer','director of photography',NULL),(96176,718567,8,'editor',NULL,NULL),(96176,779948,9,'production_designer',NULL,NULL),(96256,415445,10,'editor',NULL,NULL),(96256,684929,1,'actor',NULL,'[\"Nada\"]'),(96256,202966,2,'actor',NULL,'[\"Frank\"]'),(96256,1236,3,'actress',NULL,'[\"Holly\"]'),(96256,2668,4,'actor',NULL,'[\"Drifter\"]'),(96256,118,5,'director',NULL,NULL),(96256,625688,6,'writer','short story \"Eight O\'Clock in the Morning\"',NULL),(96256,290581,7,'producer','producer',NULL),(96256,397697,8,'composer',NULL,NULL),(96256,452123,9,'cinematographer','director of photography',NULL),(96283,794174,10,'cinematographer',NULL,NULL),(96283,847054,1,'actor',NULL,'[\"Totoro\"]'),(96283,383022,2,'actress',NULL,'[\"Satsuki\"]'),(96283,757076,3,'actress',NULL,'[\"Mei\"]'),(96283,411790,4,'actor',NULL,'[\"Tatsuo Kusakabe\"]'),(96283,594503,5,'director',NULL,NULL),(96283,361701,6,'producer','producer',NULL),(96283,1566098,7,'producer','producer',NULL),(96283,386749,8,'composer',NULL,NULL),(96283,1147210,9,'cinematographer',NULL,NULL),(96289,843,1,'actress',NULL,'[\"Ma Beckoff\"]'),(96289,111,2,'actor',NULL,'[\"Alan Simon\"]'),(96289,1213,3,'actor',NULL,'[\"Arnold Beckoff\"]'),(96289,450116,4,'actor',NULL,'[\"Ed Reese\"]'),(96289,91575,5,'director',NULL,NULL),(96289,331907,6,'producer','producer',NULL),(96289,4121,7,'cinematographer',NULL,NULL),(96289,809449,8,'editor',NULL,NULL),(96289,393922,9,'production_designer',NULL,NULL),(96320,16,10,'composer',NULL,NULL),(96320,216,1,'actor',NULL,'[\"Julius Benedict\"]'),(96320,362,2,'actor',NULL,'[\"Vincent Benedict\"]'),(96320,593,3,'actress',NULL,'[\"Marnie Mason\"]'),(96320,916050,4,'actress',NULL,'[\"Linda Mason\"]'),(96320,718645,5,'director',NULL,NULL),(96320,204030,6,'writer','written by',NULL),(96320,651758,7,'writer','written by',NULL),(96320,365390,8,'writer','written by',NULL),(96320,918339,9,'writer','written by',NULL),(96324,2733,10,'editor',NULL,NULL),(96324,145,1,'actress',NULL,'[\"April Delongpre\"]'),(96324,879186,2,'actor',NULL,'[\"Perry Tyson\"]'),(96324,1221,3,'actress',NULL,'[\"Belle Delongpre\"]'),(96324,412322,4,'actor',NULL,'[\"Sheriff Earl Hawkins\"]'),(96324,455394,5,'director',NULL,NULL),(96324,235167,6,'writer','story',NULL),(96324,96025,7,'producer','producer',NULL),(96324,253486,8,'composer',NULL,NULL),(96324,687641,9,'cinematographer','director of photography',NULL),(96378,35,10,'composer',NULL,NULL),(96378,490980,1,'actress',NULL,'[\"Sylvia Pickel\"]'),(96378,156,2,'actor',NULL,'[\"Nick Deezy\"]'),(96378,81560,3,'actor',NULL,'[\"Eli Diamond\"]'),(96378,503627,4,'actor',NULL,'[\"Burt Wilder\"]'),(96378,477129,5,'director',NULL,NULL),(96378,89634,6,'writer','story by',NULL),(96378,304665,7,'writer','story by',NULL),(96378,541632,8,'writer','story by',NULL),(96378,304673,9,'producer','producer',NULL),(96438,5927608,10,'writer','character: Huey, Dewey, and Louie Duck',NULL),(96438,1364,1,'actor',NULL,'[\"Eddie Valiant\"]'),(96438,502,2,'actor',NULL,'[\"Judge Doom\"]'),(96438,1026,3,'actress',NULL,'[\"Dolores\"]'),(96438,281486,4,'actor',NULL,'[\"Roger Rabbit\",\"Benny the Cab\",\"Greasy\"]'),(96438,709,5,'director',NULL,NULL),(96438,696949,6,'writer','screenplay by',NULL),(96438,780620,7,'writer','screenplay by',NULL),(96438,937757,8,'writer','based on the book: \"Who Censored Roger Rabbit?\" by',NULL),(96438,5927607,9,'writer','character: Huey, Dewey, and Louie Duck',NULL),(96446,939,10,'cinematographer','director of photography',NULL),(96446,174,1,'actor',NULL,'[\"Madmartigan\"]'),(96446,695,2,'actress',NULL,'[\"Sorsha\"]'),(96446,1116,3,'actor',NULL,'[\"Willow\"]'),(96446,550577,4,'actress',NULL,'[\"Queen Bavmorda\"]'),(96446,165,5,'director',NULL,NULL),(96446,184,6,'writer','story by',NULL),(96446,231190,7,'writer','screenplay by',NULL),(96446,941214,8,'producer','producer',NULL),(96446,35,9,'composer',NULL,NULL),(96461,490487,10,'cinematographer',NULL,NULL),(96461,490489,1,'actor',NULL,'[\"Wah\"]'),(96461,1041,2,'actress',NULL,'[\"Ngor\"]'),(96461,156484,3,'actor',NULL,'[\"Fly\"]'),(96461,504973,4,'actor',NULL,'[\"Tony\"]'),(96461,939182,5,'director',NULL,NULL),(96461,311508,6,'writer','writer',NULL),(96461,849257,7,'producer','producer',NULL),(96461,161204,8,'composer',NULL,NULL),(96461,477108,9,'composer',NULL,NULL),(96463,902038,10,'production_designer',NULL,NULL),(96463,429,1,'actress',NULL,'[\"Tess McGill\"]'),(96463,148,2,'actor',NULL,'[\"Jack Trainer\"]'),(96463,244,3,'actress',NULL,'[\"Katharine Parker\"]'),(96463,285,4,'actor',NULL,'[\"Mick Dugan\"]'),(96463,1566,5,'director',NULL,NULL),(96463,905458,6,'writer','written by',NULL),(96463,926824,7,'producer','producer',NULL),(96463,841,8,'cinematographer','director of photography',NULL),(96463,642714,9,'editor',NULL,NULL),(96465,341081,10,'editor',NULL,NULL),(96465,1136,1,'actor',NULL,'[\"Ethan\"]'),(96465,1595,2,'actor',NULL,'[\"George Landon\"]'),(96465,829252,3,'actress',NULL,'[\"Angie\"]'),(96465,1914,4,'actor',NULL,'[\"Derek Abernathy\"]'),(96465,441914,5,'director',NULL,NULL),(96465,952502,6,'writer','written by',NULL),(96465,742070,7,'producer','producer',NULL),(96465,431791,8,'composer',NULL,NULL),(96465,121281,9,'cinematographer','director of photography',NULL),(96487,5871,10,'cinematographer','director of photography',NULL),(96487,389,1,'actor',NULL,'[\"William H. Bonney\"]'),(96487,662,2,'actor',NULL,'[\"Doc Scurlock\"]'),(96487,1617,3,'actor',NULL,'[\"Chavez y Chavez\"]'),(96487,221,4,'actor',NULL,'[\"Dick Brewer\"]'),(96487,128883,5,'director',NULL,NULL),(96487,299301,6,'writer','written by',NULL),(96487,5387,7,'producer','producer',NULL),(96487,52108,8,'composer',NULL,NULL),(96487,547579,9,'composer',NULL,NULL),(96523,240973,10,'production_designer',NULL,NULL),(96523,521,1,'actress',NULL,'[\"Valentine Ezquerra\"]'),(96523,512071,2,'actor',NULL,'[\"Ned\"]'),(96523,899930,3,'actress',NULL,'[\"Celine\"]'),(96523,499540,4,'actor',NULL,'[\"Charly\"]'),(96523,684509,5,'director',NULL,NULL),(96523,860019,6,'writer','writer',NULL),(96523,6019,7,'composer',NULL,NULL),(96523,734417,8,'cinematographer',NULL,NULL),(96523,950391,9,'editor',NULL,NULL),(96734,828731,10,'cinematographer','director of photography',NULL),(96734,158,1,'actor',NULL,'[\"Ray Peterson\"]'),(96734,1136,2,'actor',NULL,'[\"Mark Rumsfield\"]'),(96734,402,3,'actress',NULL,'[\"Carol Peterson\"]'),(96734,397,4,'actor',NULL,'[\"Ricky Butler\"]'),(96734,1102,5,'director',NULL,NULL),(96734,647615,6,'writer','written by',NULL),(96734,108368,7,'producer','producer',NULL),(96734,278228,8,'producer','producer',NULL),(96734,25,9,'composer',NULL,NULL),(96754,119322,10,'editor',NULL,NULL),(96754,438,1,'actor',NULL,'[\"Bud Brigman\"]'),(96754,1512,2,'actress',NULL,'[\"Lindsey Brigman\"]'),(96754,299,3,'actor',NULL,'[\"Lt. Coffey\"]'),(96754,122238,4,'actor',NULL,'[\"Catfish De Vries\"]'),(96754,116,5,'director',NULL,NULL),(96754,5036,6,'producer','producer',NULL),(96754,512746,7,'producer','producer',NULL),(96754,6293,8,'composer',NULL,NULL),(96754,4121,9,'cinematographer',NULL,NULL),(96764,4383,10,'composer',NULL,NULL),(96764,627453,1,'actor',NULL,'[\"Hieronymus Karl Frederick Baron von Munchausen\"]'),(96764,1385,2,'actor',NULL,'[\"Desmond\",\"Berthold\"]'),(96764,1631,3,'actress',NULL,'[\"Sally Salt\"]'),(96764,1657,4,'actor',NULL,'[\"Vulcan\"]'),(96764,416,5,'director',NULL,NULL),(96764,571650,6,'writer','screenplay',NULL),(96764,119279,7,'writer','novel',NULL),(96764,711474,8,'writer','novel',NULL),(96764,778285,9,'producer','producer',NULL),(96787,588818,10,'writer','story by',NULL),(96787,1123,1,'actor',NULL,'[\"Itchy\"]'),(96787,608,2,'actor',NULL,'[\"Charlie\"]'),(96787,756,3,'actress',NULL,'[\"Flo\"]'),(96787,58279,4,'actress',NULL,'[\"Anne-Marie\"]'),(96787,89940,5,'director',NULL,NULL),(96787,325776,6,'director','co-director',NULL),(96787,473941,7,'director','co-director',NULL),(96787,188580,8,'writer','story by',NULL),(96787,500858,9,'writer','story by',NULL),(96869,386650,10,'writer','story',NULL),(96869,684521,1,'actor',NULL,'[\"King Babar\"]'),(96869,536479,2,'actor',NULL,'[\"Boy Babar\"]'),(96869,360200,3,'actress',NULL,'[\"Queen Celeste\",\"The Old Lady\"]'),(96869,102380,4,'actress',NULL,'[\"Isabelle\"]'),(96869,120327,5,'director',NULL,NULL),(96869,116251,6,'writer','characters',NULL),(96869,116252,7,'writer','characters',NULL),(96869,521621,8,'writer','story',NULL),(96869,766558,9,'writer','story',NULL),(96874,4637,10,'editor',NULL,NULL),(96874,150,1,'actor',NULL,'[\"Marty McFly\",\"Marty McFly Jr.\",\"Marlene McFly\"]'),(96874,502,2,'actor',NULL,'[\"Dr. Emmett Brown\"]'),(96874,670,3,'actress',NULL,'[\"Lorraine\"]'),(96874,1855,4,'actor',NULL,'[\"Biff Tannen\",\"Griff\"]'),(96874,709,5,'director',NULL,NULL),(96874,301826,6,'writer','characters',NULL),(96874,134635,7,'producer','producer',NULL),(96874,6293,8,'composer',NULL,NULL),(96874,5678,9,'cinematographer','director of photography',NULL),(96895,5307,10,'producer','producer',NULL),(96895,474,1,'actor',NULL,'[\"Batman\",\"Bruce Wayne\"]'),(96895,197,2,'actor',NULL,'[\"Joker\",\"Jack Napier\"]'),(96895,107,3,'actress',NULL,'[\"Vicki Vale\"]'),(96895,943237,4,'actor',NULL,'[\"Alexander Knox\"]'),(96895,318,5,'director',NULL,NULL),(96895,4170,6,'writer','Batman characters',NULL),(96895,358334,7,'writer','story',NULL),(96895,803730,8,'writer','screenplay',NULL),(96895,345542,9,'producer','producer',NULL),(96928,812373,10,'producer','producer',NULL),(96928,206,1,'actor',NULL,'[\"Ted \'Theodore\' Logan\"]'),(96928,935664,2,'actor',NULL,'[\"Bill S. Preston\"]'),(96928,137506,3,'actor',NULL,'[\"Rufus\"]'),(96928,131811,4,'actor',NULL,'[\"Napoleon\"]'),(96928,378893,5,'director',NULL,NULL),(96928,558533,6,'writer','written by',NULL),(96928,4412,7,'writer','written by',NULL),(96928,472256,8,'producer','producer',NULL),(96928,3864,9,'producer','producer',NULL),(96945,6254,10,'composer',NULL,NULL),(96945,442,1,'actor',NULL,'[\"Nick Parker\"]'),(96945,642368,2,'actor',NULL,'[\"Frank Devereaux\"]'),(96945,130085,3,'actor',NULL,'[\"Billy Devereaux\"]'),(96945,932244,4,'actor',NULL,'[\"MacCready\"]'),(96945,637518,5,'director',NULL,NULL),(96945,440383,6,'writer','earlier screenplay',NULL),(96945,138706,7,'writer','screen story',NULL),(96945,342841,8,'producer','producer',NULL),(96945,1513,9,'producer','producer',NULL),(96969,107463,10,'editor',NULL,NULL),(96969,129,1,'actor',NULL,'[\"Ron Kovic\"]'),(96969,488267,2,'actor',NULL,'[\"Young Ron\"]'),(96969,855,3,'actor',NULL,'[\"Mr. Kovic\"]'),(96969,442512,4,'actress',NULL,'[\"Mrs. Kovic\"]'),(96969,231,5,'director',NULL,NULL),(96969,468407,6,'writer','based on the book by',NULL),(96969,457715,7,'producer','producer',NULL),(96969,2354,8,'composer',NULL,NULL),(96969,724744,9,'cinematographer','director of photography',NULL),(97027,5664,10,'cinematographer','director of photography',NULL),(97027,150,1,'actor',NULL,'[\"Eriksson\"]'),(97027,576,2,'actor',NULL,'[\"Meserve\"]'),(97027,367496,3,'actor',NULL,'[\"Clark\"]'),(97027,604,4,'actor',NULL,'[\"Hatcher\"]'),(97027,361,5,'director',NULL,NULL),(97027,485718,6,'writer','book \"Casualties of War\"',NULL),(97027,704792,7,'writer','screenplay',NULL),(97027,513165,8,'producer','producer',NULL),(97027,1553,9,'composer',NULL,NULL),(97050,757098,10,'composer',NULL,NULL),(97050,463592,1,'actress',NULL,'[\"Poetry Recitation\"]'),(97050,1545,2,'actor',NULL,'[\"Narrator\"]'),(97050,4230239,3,'self',NULL,'[\"Self\"]'),(97050,4230873,4,'self',NULL,'[\"Self\"]'),(97050,368675,5,'director',NULL,NULL),(97050,759166,6,'writer','screenplay',NULL),(97050,435446,7,'producer','producer',NULL),(97050,644533,8,'producer','producer',NULL),(97050,90799,9,'composer',NULL,NULL),(97106,500984,10,'actor',NULL,'[\"Gildas\"]'),(97106,856778,1,'actress',NULL,'[\"Jeanne\"]'),(97106,703364,2,'actor',NULL,'[\"Igor\"]'),(97106,201151,3,'actress',NULL,'[\"Natacha\"]'),(97106,71744,4,'actress',NULL,'[\"Ève\"]'),(97106,6445,5,'director',NULL,NULL),(97106,617705,6,'producer','producer',NULL),(97106,656584,7,'cinematographer',NULL,NULL),(97106,305324,8,'editor',NULL,NULL),(97106,732231,9,'actress',NULL,'[\"Gaëlle\"]'),(97108,651470,10,'production_designer',NULL,NULL),(97108,92184,1,'actor',NULL,'[\"Richard Borst\"]'),(97108,2091,2,'actor',NULL,'[\"Albert\"]'),(97108,545,3,'actress',NULL,'[\"Georgina\"]'),(97108,397102,4,'actor',NULL,'[\"Michael\"]'),(97108,425,5,'director',NULL,NULL),(97108,440413,6,'producer','producer',NULL),(97108,6219,7,'composer',NULL,NULL),(97108,5916,8,'cinematographer','director of photography',NULL),(97108,933622,9,'editor',NULL,NULL),(97123,1445,1,'actor',NULL,'[\"Judah Rosenthal\"]'),(97123,95,2,'actor',NULL,'[\"Cliff Stern\"]'),(97123,77007,3,'actor',NULL,'[\"Testimonial Speaker\"]'),(97123,1954,4,'actress',NULL,'[\"Miriam Rosenthal\"]'),(97123,339086,5,'producer','producer',NULL),(97123,5815,6,'cinematographer','director of photography',NULL),(97123,607673,7,'editor',NULL,NULL),(97123,520288,8,'production_designer',NULL,NULL),(97162,6251,10,'composer',NULL,NULL),(97162,173,1,'actress',NULL,'[\"Rae Ingram\"]'),(97162,554,2,'actor',NULL,'[\"John Ingram\"]'),(97162,708,3,'actor',NULL,'[\"Hughie Warriner\"]'),(97162,612367,4,'actor',NULL,'[\"Russell Bellows\"]'),(97162,637518,5,'director',NULL,NULL),(97162,371249,6,'writer','screenplay',NULL),(97162,930241,7,'writer','novel',NULL),(97162,4306,8,'producer','producer',NULL),(97162,593294,9,'producer','producer',NULL),(97165,3574,10,'composer',NULL,NULL),(97165,245,1,'actor',NULL,'[\"John Keating\"]'),(97165,494,2,'actor',NULL,'[\"Neil Perry\"]'),(97165,160,3,'actor',NULL,'[\"Todd Anderson\"]'),(97165,1038,4,'actor',NULL,'[\"Knox Overstreet\"]'),(97165,1837,5,'director',NULL,NULL),(97165,776114,6,'writer','written by',NULL),(97165,353187,7,'producer','producer',NULL),(97165,432625,8,'producer','producer',NULL),(97165,859597,9,'producer','producer',NULL),(97182,547876,10,'writer','screenplay',NULL),(97182,1541,1,'actress',NULL,'[\"Lola\"]'),(97182,772116,2,'actor',NULL,'[\"Brownie\"]'),(97182,492649,3,'actor',NULL,'[\"Bosun\"]'),(97182,101668,4,'actor',NULL,'[\"Lyle\"]'),(97182,860979,5,'director',NULL,NULL),(97182,296243,6,'writer','screenplay',NULL),(97182,345637,7,'writer','screenplay',NULL),(97182,737445,8,'writer','novel \"The Delinquents\"',NULL),(97182,381976,9,'writer','screenplay',NULL),(97202,266646,10,'editor',NULL,NULL),(97202,334,1,'actor',NULL,'[\"Ah Jong\"]'),(97202,497097,2,'actor',NULL,'[\"Insp. Lee Ying\",\"Little Eagle\"]'),(97202,947313,3,'actress',NULL,'[\"Jennie\"]'),(97202,160846,4,'actor',NULL,'[\"Fung Sei\"]'),(97202,247,5,'director',NULL,NULL),(97202,7139,6,'producer','producer',NULL),(97202,516319,7,'composer',NULL,NULL),(97202,666702,8,'cinematographer',NULL,NULL),(97202,399069,9,'cinematographer',NULL,NULL),(97216,732,1,'actor',NULL,'[\"Sal\"]'),(97216,1115,2,'actor',NULL,'[\"Da Mayor\"]'),(97216,2039,3,'actress',NULL,'[\"Mother Sister\"]'),(97216,2057,4,'actor',NULL,'[\"Vito\"]'),(97216,490,5,'director',NULL,NULL),(97216,496881,6,'composer',NULL,NULL),(97216,225416,7,'cinematographer',NULL,NULL),(97216,113084,8,'editor',NULL,NULL),(97216,859661,9,'production_designer',NULL,NULL),(97235,390435,10,'cinematographer','director of photography',NULL),(97235,474,1,'actor',NULL,'[\"Billy Caufield\"]'),(97235,502,2,'actor',NULL,'[\"Henry Sikorsky\"]'),(97235,1967,3,'actor',NULL,'[\"Jack McDermott\"]'),(97235,299122,4,'actor',NULL,'[\"Albert Ianuzzi\"]'),(97235,956052,5,'director',NULL,NULL),(97235,175300,6,'writer','written by',NULL),(97235,521649,7,'writer','written by',NULL),(97235,460846,8,'producer','producer',NULL),(97235,570439,9,'composer',NULL,NULL),(97239,416824,10,'cinematographer','director of photography',NULL),(97239,151,1,'actor',NULL,'[\"Hoke Colburn\"]'),(97239,1788,2,'actress',NULL,'[\"Daisy Werthan\"]'),(97239,101,3,'actor',NULL,'[\"Boolie Werthan\"]'),(97239,526985,4,'actress',NULL,'[\"Florine Werthan\"]'),(97239,915,5,'director',NULL,NULL),(97239,880261,6,'writer','screenplay',NULL),(97239,5572,7,'producer','producer',NULL),(97239,5573,8,'producer','producer',NULL),(97239,1877,9,'composer',NULL,NULL),(97240,917059,10,'producer','producer',NULL),(97240,369,1,'actor',NULL,'[\"Bob\"]'),(97240,1488,2,'actress',NULL,'[\"Dianne\"]'),(97240,1457,3,'actor',NULL,'[\"Rick\"]'),(97240,1287,4,'actress',NULL,'[\"Nadine\"]'),(97240,1814,5,'director',NULL,NULL),(97240,283942,6,'writer','novel',NULL),(97240,949127,7,'writer','screenplay',NULL),(97240,123221,8,'writer','additional dialogue',NULL),(97240,614420,9,'producer','producer',NULL),(97257,734755,10,'composer',NULL,NULL),(97257,133,1,'actress',NULL,'[\"Valerie\"]'),(97257,156,2,'actor',NULL,'[\"Mac\"]'),(97257,120,3,'actor',NULL,'[\"Wiploc\"]'),(97257,1834,4,'actor',NULL,'[\"Zeebo\"]'),(97257,854697,5,'director',NULL,NULL),(97257,113935,6,'writer','written by',NULL),(97257,168849,7,'writer','written by',NULL),(97257,573644,8,'writer','written by',NULL),(97257,307821,9,'producer','producer',NULL),(97334,5871,10,'cinematographer','director of photography',NULL),(97334,560,1,'actor',NULL,'[\"Learoyd\"]'),(97334,369814,2,'actor',NULL,'[\"Botanist\"]'),(97334,574433,3,'actor',NULL,'[\"Tenga\"]'),(97334,520068,4,'actor',NULL,'[\"Gwai\"]'),(97334,587518,5,'director',NULL,NULL),(97334,6954,6,'writer','book',NULL),(97334,3132,7,'producer','producer',NULL),(97334,748665,8,'producer','producer',NULL),(97334,6231,9,'composer',NULL,NULL),(97336,95089,10,'editor',NULL,NULL),(97336,56,1,'actor',NULL,'[\"General Leslie R. Groves\"]'),(97336,776239,2,'actor',NULL,'[\"J. Robert Oppenheimer\"]'),(97336,889,3,'actress',NULL,'[\"Kitty Oppenheimer\"]'),(97336,131,4,'actor',NULL,'[\"Michael Merriman\"]'),(97336,423646,5,'director',NULL,NULL),(97336,732430,6,'writer','story',NULL),(97336,307821,7,'producer','producer',NULL),(97336,1553,8,'composer',NULL,NULL),(97336,5936,9,'cinematographer','director of photography',NULL),(97351,511979,10,'cinematographer','director of photography',NULL),(97351,126,1,'actor',NULL,'[\"Ray Kinsella\"]'),(97351,469,2,'actor',NULL,'[\"Terence Mann\"]'),(97351,501,3,'actor',NULL,'[\"Shoeless Joe Jackson\"]'),(97351,1496,4,'actress',NULL,'[\"Annie Kinsella\"]'),(97351,4675,5,'director',NULL,NULL),(97351,455875,6,'writer','book \"Shoeless Joe\"',NULL),(97351,330077,7,'producer','producer',NULL),(97351,330379,8,'producer','producer',NULL),(97351,35,9,'composer',NULL,NULL),(97366,266536,10,'composer',NULL,NULL),(97366,331,1,'actor',NULL,'[\"Fletch\"]'),(97366,1358,2,'actor',NULL,'[\"Ham Johnson\"]'),(97366,680541,3,'actress',NULL,'[\"Becky Culpepper\"]'),(97366,388,4,'actor',NULL,'[\"Jimmy Lee Farnsworth\"]'),(97366,6916,5,'director',NULL,NULL),(97366,567780,6,'writer','character',NULL),(97366,135117,7,'writer','written by',NULL),(97366,235209,8,'producer','producer',NULL),(97366,340112,9,'producer','producer',NULL),(97388,592427,10,'editor',NULL,NULL),(97388,196762,1,'actress',NULL,'[\"Rennie\"]'),(97388,387987,2,'actor',NULL,'[\"Jason\"]'),(97388,129445,3,'actor',NULL,'[\"Jim\"]'),(97388,667330,4,'actress',NULL,'[\"Suzi\"]'),(97388,373154,5,'director',NULL,NULL),(97388,566699,6,'writer','based on character created by',NULL),(97388,156709,7,'producer','producer',NULL),(97388,6204,8,'composer',NULL,NULL),(97388,257417,9,'cinematographer','director of photography',NULL),(97423,578185,10,'composer',NULL,NULL),(97423,10915,1,'actor',NULL,'[\"Maxwell Smart\"]'),(97423,271156,2,'actress',NULL,'[\"99\"]'),(97423,465728,3,'actor',NULL,'[\"Conrad Siegfried\",\"Prof. Helmut Schmelding\"]'),(97423,310370,4,'actor',NULL,'[\"Hymie\"]'),(97423,625379,5,'director',NULL,NULL),(97423,827767,6,'writer','story',NULL),(97423,193567,7,'writer','teleplay',NULL),(97423,38660,8,'writer','teleplay',NULL),(97423,633816,9,'producer','producer',NULL),(97428,919514,10,'production_designer',NULL,NULL),(97428,195,1,'actor',NULL,'[\"Dr. Peter Venkman\"]'),(97428,101,2,'actor',NULL,'[\"Dr. Raymond Stantz\"]'),(97428,244,3,'actress',NULL,'[\"Dana Barrett\"]'),(97428,601,4,'actor',NULL,'[\"Dr. Egon Spengler\"]'),(97428,718645,5,'director',NULL,NULL),(97428,6055,6,'composer',NULL,NULL),(97428,152469,7,'cinematographer','director of photography',NULL),(97428,131333,8,'editor',NULL,NULL),(97428,434922,9,'editor',NULL,NULL),(97441,276238,10,'producer','producer',NULL),(97441,111,1,'actor',NULL,'[\"Col. Robert Gould Shaw\"]'),(97441,243,2,'actor',NULL,'[\"Pvt. Trip\"]'),(97441,144,3,'actor',NULL,'[\"Maj. Cabot Forbes\"]'),(97441,151,4,'actor',NULL,'[\"Sgt. Maj. John Rawlins\"]'),(97441,1880,5,'director',NULL,NULL),(97441,418883,6,'writer','screenplay',NULL),(97441,457016,7,'writer','book \"Lay This Laurel\"',NULL),(97441,120837,8,'writer','book \"One Gallant Rush\"',NULL),(97441,789946,9,'writer','letters',NULL),(97444,782883,10,'writer','story \"Gojira Densetsu Asuka no Yosai\"',NULL),(97444,593055,1,'actor',NULL,'[\"Kazuhito Kirishima\"]'),(97444,849095,2,'actress',NULL,'[\"Asuka Okouchi\"]'),(97444,847393,3,'actor',NULL,'[\"Major Sho Kuroki\"]'),(97444,465532,4,'actor',NULL,'[\"Dr. Genichiro Shiragami\"]'),(97444,648457,5,'director',NULL,NULL),(97444,368057,6,'director',NULL,NULL),(97444,648458,7,'director',NULL,NULL),(97444,8398916,8,'writer','story',NULL),(97444,462058,9,'writer','story',NULL),(97493,391431,10,'editor',NULL,NULL),(97493,213,1,'actress',NULL,'[\"Veronica Sawyer\"]'),(97493,225,2,'actor',NULL,'[\"Jason \'J.D.\' Dean\"]'),(97493,1147,3,'actress',NULL,'[\"Heather Duke\"]'),(97493,266170,4,'actress',NULL,'[\"Heather McNamara\"]'),(97493,499724,5,'director',NULL,NULL),(97493,914058,6,'writer','written by',NULL),(97493,224145,7,'producer','producer',NULL),(97493,628056,8,'composer',NULL,NULL),(97493,448568,9,'cinematographer','director of photography',NULL),(97499,367733,10,'production_designer',NULL,NULL),(97499,110,1,'actor',NULL,'[\"King Henry V\"]'),(97499,1394,2,'actor',NULL,'[\"Chorus\"]'),(97499,791871,3,'actor',NULL,'[\"Duke Humphrey of Gloucester\"]'),(97499,488289,4,'actor',NULL,'[\"Duke John of Bedford\"]'),(97499,636,5,'writer','by',NULL),(97499,788935,6,'producer','producer',NULL),(97499,236462,7,'composer',NULL,NULL),(97499,534013,8,'cinematographer','director of photography',NULL),(97499,103457,9,'editor',NULL,NULL),(97523,277896,10,'producer','producer',NULL),(97523,1548,1,'actor',NULL,'[\"Wayne Szalinski\"]'),(97523,1242,2,'actor',NULL,'[\"Big Russ Thompson\"]'),(97523,833519,3,'actress',NULL,'[\"Diane Szalinski\"]'),(97523,840133,4,'actress',NULL,'[\"Mae Thompson\"]'),(97523,2653,5,'director',NULL,NULL),(97523,2340,6,'writer','story',NULL),(97523,951206,7,'writer','story',NULL),(97523,619547,8,'writer','story',NULL),(97523,776114,9,'writer','screenplay',NULL),(97561,615880,10,'production_designer',NULL,NULL),(97561,875129,1,'actor',NULL,'[\"Moro\"]'),(97561,807076,2,'actress',NULL,'[\"Dina\"]'),(97561,541136,3,'actor',NULL,'[\"Artur, surgeon\"]'),(97561,59800,4,'actor',NULL,'[\"Spartak\"]'),(97561,637835,5,'director',NULL,NULL),(97561,52993,6,'writer','writer',NULL),(97561,453083,7,'writer','writer',NULL),(97561,637834,8,'cinematographer',NULL,NULL),(97561,882013,9,'editor',NULL,NULL),(97576,915226,10,'producer','producer',NULL),(97576,148,1,'actor',NULL,'[\"Indiana Jones\"]'),(97576,125,2,'actor',NULL,'[\"Professor Henry Jones\"]'),(97576,233145,3,'actress',NULL,'[\"Elsa\"]'),(97576,1186,4,'actor',NULL,'[\"Marcus Brody\"]'),(97576,229,5,'director',NULL,NULL),(97576,90151,6,'writer','screenplay',NULL),(97576,184,7,'writer','story',NULL),(97576,583675,8,'writer','story',NULL),(97576,442241,9,'writer','characters',NULL),(97647,141713,10,'editor',NULL,NULL),(97647,1494,1,'actor',NULL,'[\"Daniel\"]'),(97647,1552,2,'actor',NULL,'[\"Mr. Miyagi\"]'),(97647,1477,3,'actress',NULL,'[\"Jessica Andrews\"]'),(97647,1299,4,'actor',NULL,'[\"Terry Silver\"]'),(97647,814,5,'director',NULL,NULL),(97647,436543,6,'writer','characters',NULL),(97647,5545,7,'producer','producer',NULL),(97647,6015,8,'composer',NULL,NULL),(97647,5933,9,'cinematographer','director of photography',NULL),(97659,906387,10,'editor',NULL,NULL),(97659,241,1,'actor',NULL,'[\"Kurt Sloane\"]'),(97659,18966,2,'actor',NULL,'[\"Eric Sloane\"]'),(97659,150862,3,'actor',NULL,'[\"Xian\"]'),(97659,702680,4,'actor',NULL,'[\"Tong Po\"]'),(97659,228262,5,'director',NULL,NULL),(97659,175730,6,'director',NULL,NULL),(97659,115486,7,'writer','screenplay by',NULL),(97659,381128,8,'composer',NULL,NULL),(97659,469765,9,'cinematographer',NULL,NULL),(97728,758742,10,'cinematographer',NULL,NULL),(97728,671231,1,'actor',NULL,'[\"Vladimir Kuzmin, the Manager\"]'),(97728,904901,2,'actor',NULL,'[\"Igor (Village Idiot)\"]'),(97728,433520,3,'actor',NULL,'[\"The Leningrad Cowboys\"]'),(97728,450212,4,'actor',NULL,'[\"The Leningrad Cowboys\"]'),(97728,442454,5,'director',NULL,NULL),(97728,885417,6,'writer','story',NULL),(97728,267026,7,'producer','producer',NULL),(97728,647520,8,'producer','producer',NULL),(97728,838928,9,'composer',NULL,NULL),(97731,3609471,10,'cinematographer',NULL,NULL),(97731,377,1,'actor',NULL,'[\"Jay Trotter\"]'),(97731,414,2,'actress',NULL,'[\"Pam\"]'),(97731,423774,3,'actor',NULL,'[\"Looney\"]'),(97731,236,4,'actress',NULL,'[\"Vicki\"]'),(97731,701592,5,'director',NULL,NULL),(97731,188832,6,'writer','book \"Good Vibes\"',NULL),(97731,235683,7,'writer','screenplay',NULL),(97731,318429,8,'producer','producer',NULL),(97731,2380,9,'composer',NULL,NULL),(97733,2008,10,'composer',NULL,NULL),(97733,154,1,'actor',NULL,'[\"Martin Riggs\"]'),(97733,418,2,'actor',NULL,'[\"Roger Murtaugh\"]'),(97733,582,3,'actor',NULL,'[\"Leo Getz\"]'),(97733,475,4,'actress',NULL,'[\"Rika Van Den Haas\"]'),(97733,1149,5,'director',NULL,NULL),(97733,90151,6,'writer','screenplay',NULL),(97733,948,7,'writer','story',NULL),(97733,614775,8,'writer','story',NULL),(97733,5428,9,'producer','producer',NULL),(97737,25,10,'composer',NULL,NULL),(97737,693,1,'actor',NULL,'[\"Steven Beck\"]'),(97737,1077,2,'actor',NULL,'[\"Dr. Glen \'Doc\' Thompson\"]'),(97737,5301,3,'actress',NULL,'[\"Elizabeth \'Willie\' Williams\"]'),(97737,827663,4,'actor',NULL,'[\"Buzz \'Sixpack\' Parrish\"]'),(97737,181902,5,'director',NULL,NULL),(97737,672459,6,'writer','story',NULL),(97737,835732,7,'writer','screenplay',NULL),(97737,209566,8,'producer','producer',NULL),(97737,209577,9,'producer','producer',NULL),(97742,4383,10,'composer',NULL,NULL),(97742,1096,1,'actor',NULL,'[\"James Bond\"]'),(97742,1108,2,'actor',NULL,'[\"Franz Sanchez\"]'),(97742,508,3,'actress',NULL,'[\"Pam Bouvier\"]'),(97742,650,4,'actress',NULL,'[\"Lupe Lamora\"]'),(97742,322515,5,'director',NULL,NULL),(97742,933865,6,'writer','written by',NULL),(97742,537363,7,'writer','written by',NULL),(97742,1220,8,'writer','characters',NULL),(97742,110482,9,'producer','producer',NULL),(97757,3071117,10,'writer','additional dialogue',NULL),(97757,72533,1,'actress',NULL,'[\"Ariel\"]'),(97757,942787,2,'actor',NULL,'[\"Sebastian\"]'),(97757,41281,3,'actor',NULL,'[\"Louis\"]'),(97757,55549,4,'actor',NULL,'[\"Eric\"]'),(97757,166256,5,'director',NULL,NULL),(97757,615780,6,'director',NULL,NULL),(97757,26153,7,'writer','based on the fairy tale by',NULL),(97757,39141,8,'writer','additional dialogue',NULL),(97757,334057,9,'writer','additional dialogue',NULL),(97790,2263704,10,'producer','producer',NULL),(97790,1131,1,'actor',NULL,'[\"Randy Bodek\"]'),(97790,462,2,'actress',NULL,'[\"Diane Bodek\"]'),(97790,320180,3,'actor',NULL,'[\"Joe Bodek\"]'),(97790,883940,4,'actress',NULL,'[\"Jenny Gordon\"]'),(97790,798717,5,'director',NULL,NULL),(97790,771494,6,'writer','story',NULL),(97790,740568,7,'writer','screenplay',NULL),(97790,228908,8,'writer','screenplay',NULL),(97790,287811,9,'producer','producer',NULL),(97814,786707,10,'editor',NULL,NULL),(97814,379,1,'actress',NULL,'[\"Kiki\"]'),(97814,847439,2,'actress',NULL,'[\"Kiki\",\"Ursula\"]'),(97814,757290,3,'actress',NULL,'[\"Jiji\"]'),(97814,945322,4,'actor',NULL,'[\"Tombo\"]'),(97814,594503,5,'director',NULL,NULL),(97814,434395,6,'writer','novel',NULL),(97814,774749,7,'producer','executive producer',NULL),(97814,386749,8,'composer',NULL,NULL),(97814,1022268,9,'cinematographer',NULL,NULL),(97815,384190,10,'editor',NULL,NULL),(97815,297,1,'actor',NULL,'[\"Jake Taylor\"]'),(97815,221,2,'actor',NULL,'[\"Ricky Vaughn\"]'),(97815,929,3,'actor',NULL,'[\"Roger Dorn\"]'),(97815,926592,4,'actress',NULL,'[\"Rachel Phelps\"]'),(97815,911486,5,'director',NULL,NULL),(97815,156283,6,'producer','producer',NULL),(97815,808511,7,'producer','producer',NULL),(97815,6133,8,'composer',NULL,NULL),(97815,897794,9,'cinematographer','director of photography',NULL),(97858,590359,10,'cinematographer',NULL,NULL),(97858,611833,1,'actor',NULL,'[\"Heidi the Hippo\"]'),(97858,15223,2,'actress',NULL,'[\"Samantha the Cat\",\"The Sheep\"]'),(97858,222313,3,'actor',NULL,'[\"Sebastian\",\"Dr. Quack\",\"Daisy the Cow\"]'),(97858,352921,4,'actor',NULL,'[\"Heidi the Hippo\",\"Barry the Bulldog\",\"Robert the hedgehog\"]'),(97858,1392,5,'director',NULL,NULL),(97858,909638,6,'writer','written by',NULL),(97858,801728,7,'writer','written by',NULL),(97858,95725,8,'producer','producer',NULL),(97858,201942,9,'composer',NULL,NULL),(97883,644964,10,'cinematographer','director of photography',NULL),(97883,1434,1,'actor',NULL,'[\"Bill Smith\"]'),(97883,1440,2,'actress',NULL,'[\"Louise Baltimore\"]'),(97883,871240,3,'actor',NULL,'[\"Arnold Mayer\"]'),(97883,431451,4,'actor',NULL,'[\"Sherman\"]'),(97883,27183,5,'director',NULL,NULL),(97883,890043,6,'writer','short story \"Air Raid\"',NULL),(97883,500682,7,'producer','producer',NULL),(97883,1557652,8,'producer','producer',NULL),(97883,731832,9,'composer',NULL,NULL),(97937,175820,10,'cinematographer','director of photography',NULL),(97937,358,1,'actor',NULL,'[\"Christy Brown\"]'),(97937,2084,2,'actress',NULL,'[\"Mrs. Brown\"]'),(97937,924009,3,'actress',NULL,'[\"Sheila\"]'),(97937,792202,4,'actress',NULL,'[\"Sharon\"]'),(97937,6487,5,'director',NULL,NULL),(97937,174934,6,'writer','screenplay',NULL),(97937,113272,7,'writer','novel',NULL),(97937,669348,8,'producer','producer',NULL),(97937,930,9,'composer',NULL,NULL),(97940,84019,10,'production_designer',NULL,NULL),(97940,619185,1,'actor',NULL,'[\"Jun (segment \\\"Far from Yokohama\\\")\"]'),(97940,473802,2,'actress',NULL,'[\"Mitzuko (segment \\\"Far from Yokohama\\\")\"]'),(97940,370221,3,'actor',NULL,'[\"Night Clerk (segment \\\"Far from Yokohama\\\")\"]'),(97940,497046,4,'actor',NULL,'[\"Bellboy (segment \\\"Far from Yokohama\\\")\"]'),(97940,464,5,'director',NULL,NULL),(97940,823196,6,'producer','producer',NULL),(97940,527099,7,'composer',NULL,NULL),(97940,5810,8,'cinematographer','director of photography',NULL),(97940,518755,9,'editor',NULL,NULL),(97958,338513,10,'editor',NULL,NULL),(97958,331,1,'actor',NULL,'[\"Clark Griswold\"]'),(97958,350,2,'actress',NULL,'[\"Ellen Griswold\"]'),(97958,496,3,'actress',NULL,'[\"Audrey Griswold\"]'),(97958,301959,4,'actor',NULL,'[\"Rusty Griswold\"]'),(97958,154819,5,'director',NULL,NULL),(97958,455,6,'writer','written by',NULL),(97958,414930,7,'producer','producer',NULL),(97958,823,8,'composer',NULL,NULL),(97958,5630,9,'cinematographer','director of photography',NULL),(97981,367703,10,'producer','producer',NULL),(97981,387,1,'actor',NULL,'[\"Freddy Krueger\"]'),(97981,928244,2,'actress',NULL,'[\"Alice\"]'),(97981,591702,3,'actress',NULL,'[\"Yvonne\"]'),(97981,368397,4,'actor',NULL,'[\"Dan\"]'),(97981,394280,5,'director',NULL,NULL),(97981,127,6,'writer','characters',NULL),(97981,804345,7,'writer','story',NULL),(97981,817468,8,'writer','story',NULL),(97981,92018,9,'writer','story',NULL),(97991,156519,10,'cinematographer',NULL,NULL),(97991,2290,1,'actor',NULL,'[\"Scott Wylde\"]'),(97991,857216,2,'actor',NULL,'[\"Mac Jarvis\"]'),(97991,1686,3,'actress',NULL,'[\"Terry\"]'),(97991,911239,4,'actress',NULL,'[\"Sulin Nguyen\"]'),(97991,477035,5,'director',NULL,NULL),(97991,148161,6,'writer','screenplay',NULL),(97991,394547,7,'writer','screenplay',NULL),(97991,833298,8,'writer','screenplay',NULL),(97991,817295,9,'composer',NULL,NULL),(98032,103473,10,'actress',NULL,'[\"Melanie\"]'),(98032,568603,1,'actress',NULL,'[\"Mother\"]'),(98032,819655,2,'actress',NULL,'[\"May\"]'),(98032,235782,3,'actress',NULL,'[\"Mrs. Green\"]'),(98032,330517,4,'actor',NULL,'[\"William\"]'),(98032,170976,5,'actress',NULL,'[\"Jess\"]'),(98032,936742,6,'actress',NULL,'[\"Elsie\"]'),(98032,186469,7,'actor',NULL,'[\"Pastor Finch\"]'),(98032,382799,8,'actress',NULL,'[\"Cissy\"]'),(98032,274913,9,'actress',NULL,'[\"Mrs. Arkwright\"]'),(98063,5745,10,'cinematographer',NULL,NULL),(98063,135666,1,'actress',NULL,'[\"Paprika\"]'),(98063,274008,2,'actor',NULL,'[\"Rocco\"]'),(98063,110496,3,'actress',NULL,'[\"Madame Collette\"]'),(98063,94986,4,'actor',NULL,'[\"Franco\"]'),(98063,972,5,'director',NULL,NULL),(98063,165987,6,'writer','novel \"Fanny Hill or, Memoirs of a Woman of Pleasure\"',NULL),(98063,953301,7,'writer',NULL,NULL),(98063,131840,8,'producer','producer',NULL),(98063,6221,9,'composer',NULL,NULL),(98067,5791,10,'cinematographer','director of photography',NULL),(98067,188,1,'actor',NULL,'[\"Gil Buckman\"]'),(98067,5460,2,'actress',NULL,'[\"Karen Buckman\"]'),(98067,1848,3,'actress',NULL,'[\"Helen Buckman\"]'),(98067,1673,4,'actor',NULL,'[\"Frank Buckman\"]'),(98067,165,5,'director',NULL,NULL),(98067,304665,6,'writer','story',NULL),(98067,541632,7,'writer','story',NULL),(98067,4976,8,'producer','producer',NULL),(98067,5271,9,'composer',NULL,NULL),(98105,5848,10,'cinematographer','director of photography',NULL),(98105,807571,1,'actor',NULL,'[\"Hightower\"]'),(98105,333701,2,'actor',NULL,'[\"Tackleberry\"]'),(98105,935498,3,'actor',NULL,'[\"Jones\"]'),(98105,247579,4,'actress',NULL,'[\"Callahan\"]'),(98105,94288,5,'director',NULL,NULL),(98105,411477,6,'writer','characters',NULL),(98105,698493,7,'writer','characters',NULL),(98105,193615,8,'writer','written by',NULL),(98105,556487,9,'producer','producer',NULL),(98141,919831,10,'editor',NULL,NULL),(98141,185,1,'actor',NULL,'[\"Frank Castle\"]'),(98141,1283,2,'actor',NULL,'[\"Jake Berkowitz\"]'),(98141,469103,3,'actor',NULL,'[\"Gianni Franco\"]'),(98141,594540,4,'actress',NULL,'[\"Lady Tanaka\"]'),(98141,325358,5,'director',NULL,NULL),(98141,945026,6,'writer','written by',NULL),(98141,436543,7,'producer','producer',NULL),(98141,106982,8,'composer',NULL,NULL),(98141,48524,9,'cinematographer','director of photography',NULL),(98147,246738,10,'composer',NULL,NULL),(98147,955443,1,'actor',NULL,'[\"Tian Fong\"]'),(98147,84,2,'actress',NULL,'[\"Winter\",\"Lili Chu\"]'),(98147,943177,3,'actor',NULL,'[\"Movie Director\"]'),(98147,950552,4,'actor',NULL,'[\"Bai Yun Fei\"]'),(98147,155642,5,'director',NULL,NULL),(98147,497762,6,'writer',NULL,NULL),(98147,160831,7,'producer','producer',NULL),(98147,610786,8,'producer','producer',NULL),(98147,7139,9,'producer','producer',NULL),(98180,272857,10,'cinematographer','director of photography',NULL),(98180,185,1,'actor',NULL,'[\"Lt. Nikolai Rachenko\"]'),(98180,1826,2,'actor',NULL,'[\"Dewey Ferguson\"]'),(98180,924424,3,'actor',NULL,'[\"Kallunda Kintash\"]'),(98180,571435,4,'actor',NULL,'[\"General Vortek\"]'),(98180,957263,5,'director',NULL,NULL),(98180,9107,6,'writer','story by',NULL),(98180,9106,7,'writer','story by',NULL),(98180,647592,8,'writer','story by',NULL),(98180,6001,9,'composer',NULL,NULL),(98189,6141,10,'composer',NULL,NULL),(98189,249735,1,'actor',NULL,'[\"Prospero\"]'),(98189,138122,2,'actress',NULL,'[\"Miranda\"]'),(98189,765563,3,'actor',NULL,'[\"Ferdinand\"]'),(98189,902059,4,'actor',NULL,'[\"Ariel\"]'),(98189,959746,5,'director',NULL,NULL),(98189,636,6,'writer','play \"The Tempest\"',NULL),(98189,711432,7,'writer','screenplay',NULL),(98189,267026,8,'producer','producer',NULL),(98189,647520,9,'producer','producer',NULL),(98193,578195,10,'producer','producer',NULL),(98193,244270,1,'actor',NULL,'[\"Swamp Thing\"]'),(98193,181,2,'actress',NULL,'[\"Abby Arcane\"]'),(98193,431139,3,'actor',NULL,'[\"Dr. Anton Arcane\"]'),(98193,235243,4,'actress',NULL,'[\"Dr. Lana Zurrell\"]'),(98193,691061,5,'director',NULL,NULL),(98193,193854,6,'writer','written by',NULL),(98193,606568,7,'writer','written by',NULL),(98193,918083,8,'writer','Swamp Thing created by',NULL),(98193,942951,9,'writer','Swamp Thing created by',NULL),(98206,5678,10,'cinematographer','director of photography',NULL),(98206,664,1,'actor',NULL,'[\"Dalton\"]'),(98206,1488,2,'actress',NULL,'[\"Doc\"]'),(98206,385,3,'actor',NULL,'[\"Wade Garrett\"]'),(98206,1262,4,'actor',NULL,'[\"Brad Wesley\"]'),(98206,380705,5,'director',NULL,NULL),(98206,377792,6,'writer','story',NULL),(98206,377088,7,'writer','screenplay',NULL),(98206,5428,8,'producer','producer',NULL),(98206,4383,9,'composer',NULL,NULL),(98257,352695,10,'production_designer',NULL,NULL),(98257,817635,1,'actress',NULL,'[\"Donna\"]'),(98257,138192,2,'actress',NULL,'[\"Taryn\"]'),(98257,32501,3,'actor',NULL,'[\"Captain Andreas\"]'),(98257,671855,4,'actor',NULL,'[\"Bruce Christian\"]'),(98257,796477,5,'director',NULL,NULL),(98257,796478,6,'producer','producer',NULL),(98257,830775,7,'composer',NULL,NULL),(98257,923304,8,'cinematographer','director of photography',NULL),(98257,354120,9,'editor',NULL,NULL),(98258,548943,10,'editor',NULL,NULL),(98258,131,1,'actor',NULL,'[\"Lloyd Dobler\"]'),(98258,1746,2,'actress',NULL,'[\"Diane Court\"]'),(98258,1498,3,'actor',NULL,'[\"James Court\"]'),(98258,666,4,'actress',NULL,'[\"Corey Flood\"]'),(98258,1081,5,'director',NULL,NULL),(98258,686895,6,'producer','producer',NULL),(98258,6050,7,'composer',NULL,NULL),(98258,6099,8,'composer',NULL,NULL),(98258,4088,9,'cinematographer',NULL,NULL),(98273,853111,10,'cinematographer',NULL,NULL),(98273,199,1,'actor',NULL,'[\"Frank Keller\"]'),(98273,289,2,'actress',NULL,'[\"Helen\"]'),(98273,422,3,'actor',NULL,'[\"Sherman\"]'),(98273,740264,4,'actor',NULL,'[\"Terry\"]'),(98273,887,5,'director',NULL,NULL),(98273,697115,6,'writer','written by',NULL),(98273,106840,7,'producer','producer',NULL),(98273,834870,8,'producer','producer',NULL),(98273,2303,9,'composer',NULL,NULL),(98300,941262,10,'producer','producer',NULL),(98300,121,1,'actress',NULL,'[\"Carson\"]'),(98300,403,2,'actress',NULL,'[\"Melaina\"]'),(98300,168892,3,'actor',NULL,'[\"Chip\"]'),(98300,1272,4,'actress',NULL,'[\"Pudge\"]'),(98300,57733,5,'director',NULL,NULL),(98300,485640,6,'writer','story by',NULL),(98300,842202,7,'writer','story by',NULL),(98300,842523,8,'writer','screenplay by',NULL),(98300,153892,9,'producer','producer',NULL),(98309,6290,10,'composer',NULL,NULL),(98309,658,1,'actress',NULL,'[\"Mary Fisher\"]'),(98309,1683,2,'actress',NULL,'[\"Ruth\"]'),(98309,893,3,'actor',NULL,'[\"Bob\"]'),(98309,1373,4,'actress',NULL,'[\"Hooper\"]'),(98309,782384,5,'director',NULL,NULL),(98309,919720,6,'writer','novel \"The Life and Loves of a She-Devil\"',NULL),(98309,835299,7,'writer','screenplay',NULL),(98309,122787,8,'writer','screenplay',NULL),(98309,107954,9,'producer','producer',NULL),(98319,172604,1,'actress',NULL,'[\"Shirley Valentine\"]'),(98319,2018,2,'actor',NULL,'[\"Costas\"]'),(98319,571549,3,'actress',NULL,'[\"Gillian\"]'),(98319,824102,4,'actress',NULL,'[\"Jane\"]'),(98319,318150,5,'director',NULL,NULL),(98319,751516,6,'writer','play',NULL),(98319,401727,7,'cinematographer',NULL,NULL),(98319,907970,8,'editor',NULL,NULL),(98319,831515,9,'production_designer',NULL,NULL),(98325,485273,1,'actor',NULL,'[\"Artist\"]'),(98325,23662,2,'actress',NULL,'[\"Child\"]'),(98325,3733605,3,'actor',NULL,'[\"Bookseller\"]'),(98325,3733695,4,'actor',NULL,'[\"Penny Pincher #1\"]'),(98325,108619,5,'producer','producer',NULL),(98325,546278,6,'composer',NULL,NULL),(98325,226778,7,'cinematographer',NULL,NULL),(98325,825392,8,'editor',NULL,NULL),(98325,562671,9,'production_designer',NULL,NULL),(98327,194474,10,'production_designer',NULL,NULL),(98327,231085,1,'actress',NULL,'[\"Anna Schober\"]'),(98327,76679,2,'actor',NULL,'[\"Georg Schober\"]'),(98327,849892,3,'actress',NULL,'[\"Evi Schober\"]'),(98327,759797,4,'actor',NULL,'[\"Alexander\"]'),(98327,359734,5,'director',NULL,NULL),(98327,853991,6,'writer','script',NULL),(98327,374002,7,'producer','producer',NULL),(98327,675926,8,'cinematographer',NULL,NULL),(98327,393029,9,'editor',NULL,NULL),(98382,489970,10,'cinematographer','director of photography',NULL),(98382,638,1,'actor',NULL,'[\"Kirk\"]'),(98382,559,2,'actor',NULL,'[\"Spock\"]'),(98382,1420,3,'actor',NULL,'[\"McCoy\"]'),(98382,1150,4,'actor',NULL,'[\"Scotty\"]'),(98382,734472,5,'writer','creator: based on \"Star Trek\"',NULL),(98382,71790,6,'writer','story',NULL),(98382,521739,7,'writer','story',NULL),(98382,25,8,'composer',NULL,NULL),(98382,5355674,9,'composer',NULL,NULL),(98384,386532,10,'editor',NULL,NULL),(98384,511,1,'actress',NULL,'[\"Ouiser Boudreaux\"]'),(98384,1156,2,'actress',NULL,'[\"Clairee Belcher\"]'),(98384,398,3,'actress',NULL,'[\"M\'Lynn Eatenton\"]'),(98384,210,4,'actress',NULL,'[\"Shelby Eatenton Latcherie\"]'),(98384,6889,5,'director',NULL,NULL),(98384,363326,6,'writer','screenplay',NULL),(98384,823256,7,'producer','producer',NULL),(98384,16,8,'composer',NULL,NULL),(98384,2166,9,'cinematographer','director of photography',NULL),(98439,5307,10,'producer','producer',NULL),(98439,230,1,'actor',NULL,'[\"Tango\"]'),(98439,621,2,'actor',NULL,'[\"Cash\"]'),(98439,159,3,'actress',NULL,'[\"Kiki\"]'),(98439,1588,4,'actor',NULL,'[\"Yves Perret\"]'),(98439,464846,5,'director',NULL,NULL),(98439,536299,6,'director',NULL,NULL),(98439,271098,7,'writer','written by',NULL),(98439,345542,8,'producer','producer',NULL),(98439,287080,9,'producer','producer',NULL),(98453,2460952,10,'composer',NULL,NULL),(98453,1477,1,'actress',NULL,'[\"Louise Miller\"]'),(98453,310248,2,'actor',NULL,'[\"Brad Powell\"]'),(98453,588679,3,'actor',NULL,'[\"Richie Miller\"]'),(98453,443268,4,'actress',NULL,'[\"Margaret Miller\"]'),(98453,907697,5,'director',NULL,NULL),(98453,579683,6,'writer','written by',NULL),(98453,956796,7,'writer','written by',NULL),(98453,252046,8,'producer','producer',NULL),(98453,483441,9,'producer','producer',NULL),(98519,4241,10,'cinematographer','director of photography',NULL),(98519,1480,1,'actress',NULL,'[\"Phyllis Nefler\"]'),(98519,5266,2,'actor',NULL,'[\"Freddy Nefler\"]'),(98519,858525,3,'actress',NULL,'[\"Velda Plendor\"]'),(98519,343444,4,'actress',NULL,'[\"Annie Herman\"]'),(98519,437596,5,'director',NULL,NULL),(98519,652398,6,'writer','story',NULL),(98519,635873,7,'writer','screenplay',NULL),(98519,643315,8,'writer','screenplay',NULL),(98519,6055,9,'composer',NULL,NULL),(98532,653669,1,'actress',NULL,'[\"Iris Rukka\"]'),(98532,758825,2,'actress',NULL,'[\"Mother\"]'),(98532,631741,3,'actor',NULL,'[\"Stepfather\"]'),(98532,896801,4,'actor',NULL,'[\"Aarne\"]'),(98532,442454,5,'director',NULL,NULL),(98532,267026,6,'producer','producer',NULL),(98532,647520,7,'producer','producer',NULL),(98532,758742,8,'cinematographer',NULL,NULL),(98536,258390,10,'writer','screenplay',NULL),(98536,158,1,'actor',NULL,'[\"Det. Scott Turner\"]'),(98536,1858,2,'actress',NULL,'[\"Dr. Emily Carson\"]'),(98536,5266,3,'actor',NULL,'[\"Chief Howard Hyde\"]'),(98536,1817,4,'actor',NULL,'[\"David Sutton\"]'),(98536,6854,5,'director',NULL,NULL),(98536,795461,6,'writer','story',NULL),(98536,88793,7,'writer','story',NULL),(98536,677943,8,'writer','screenplay',NULL),(98536,143596,9,'writer','screenplay',NULL),(98546,507080,10,'cinematographer','director of photography',NULL),(98546,946148,1,'actor',NULL,'[\"George Newman\"]'),(98546,414130,2,'actress',NULL,'[\"Teri\"]'),(98546,2994,3,'actor',NULL,'[\"R.J. Fletcher\"]'),(98546,724245,4,'actor',NULL,'[\"Stanley Spadowski\"]'),(98546,505409,5,'director',NULL,NULL),(98546,1411461,6,'writer','based on the sketch \"Conan the Librarian\" by',NULL),(98546,404991,7,'producer','producer',NULL),(98546,456801,8,'producer','producer',NULL),(98546,6047,9,'composer',NULL,NULL),(98554,518505,10,'editor',NULL,NULL),(98554,1006,1,'actor',NULL,'[\"Buck Russell\"]'),(98554,346,2,'actor',NULL,'[\"Miles Russell\"]'),(98554,446465,3,'actress',NULL,'[\"Tia Russell\"]'),(98554,451,4,'actress',NULL,'[\"Maizy Russell\"]'),(98554,455,5,'director',NULL,NULL),(98554,414930,6,'producer','producer',NULL),(98554,627673,7,'composer',NULL,NULL),(98554,5659,8,'cinematographer','director of photography',NULL),(98554,518470,9,'editor',NULL,NULL),(98627,698832,10,'cinematographer',NULL,NULL),(98627,530,1,'actor',NULL,'[\"Larry Wilson\"]'),(98627,1738,2,'actor',NULL,'[\"Richard Parker\"]'),(98627,829252,3,'actress',NULL,'[\"Gwen Saunders\"]'),(98627,435218,4,'actor',NULL,'[\"Bernie Lomax\"]'),(98627,467646,5,'director',NULL,NULL),(98627,458228,6,'writer','written by',NULL),(98627,236819,7,'producer','producer',NULL),(98627,1557652,8,'producer','producer',NULL),(98627,814047,9,'composer',NULL,NULL),(98635,615788,10,'production_designer',NULL,NULL),(98635,345,1,'actor',NULL,'[\"Harry Burns\"]'),(98635,212,2,'actress',NULL,'[\"Sally Albright\"]'),(98635,402,3,'actress',NULL,'[\"Marie\"]'),(98635,456124,4,'actor',NULL,'[\"Jess\"]'),(98635,1661,5,'director',NULL,NULL),(98635,1188,6,'writer','written by',NULL),(98635,770650,7,'producer','producer',NULL),(98635,1756,8,'cinematographer','director of photography',NULL),(98635,500371,9,'editor',NULL,NULL),(98724,652,1,'actor',NULL,'[\"Graham\"]'),(98724,510,2,'actress',NULL,'[\"Ann\"]'),(98724,1251,3,'actor',NULL,'[\"John\"]'),(98724,624,4,'actress',NULL,'[\"Cynthia\"]'),(98724,1752,5,'director',NULL,NULL),(98724,362675,6,'producer','producer',NULL),(98724,628352,7,'producer','producer',NULL),(98724,553498,8,'composer',NULL,NULL),(98724,516162,9,'cinematographer',NULL,NULL),(98897,907614,10,'actor',NULL,'[\"Ben Nicolson\"]'),(98897,5216,1,'actress',NULL,'[\"Vita Sackville-West\"]'),(98897,354069,2,'actor',NULL,'[\"Harold Nicolson\"]'),(98897,365518,3,'actress',NULL,'[\"Violet Keppel Trefusis\"]'),(98897,265563,4,'actress',NULL,'[\"Lady Sackville\"]'),(98897,388092,5,'writer','developed for television in association with',NULL),(98897,83281,6,'actor',NULL,'[\"Denys Trefusis\"]'),(98897,668877,7,'actor',NULL,'[\"Nigel Nicolson\"]'),(98897,41323,8,'actor',NULL,'[\"Concierge\"]'),(98897,341472,9,'actor',NULL,'[\"Purser\"]'),(99005,343343,10,'composer',NULL,NULL),(99005,154,1,'actor',NULL,'[\"Gene\"]'),(99005,375,2,'actor',NULL,'[\"Billy\"]'),(99005,1802,3,'actress',NULL,'[\"Corinne Landreaux\"]'),(99005,420898,4,'actor',NULL,'[\"Major Donald Lemond\"]'),(99005,6854,5,'director',NULL,NULL),(99005,730313,6,'writer','based on the book by',NULL),(99005,260675,7,'writer','screenplay by',NULL),(99005,750701,8,'writer','screenplay by',NULL),(99005,578176,9,'producer','producer',NULL),(99012,1201,1,'actress',NULL,'[\"Alice\"]'),(99012,458,2,'actor',NULL,'[\"Doug\"]'),(99012,1505,3,'actor',NULL,'[\"Joe\"]'),(99012,820053,4,'actress',NULL,'[\"Hilda\"]'),(99012,95,5,'director',NULL,NULL),(99012,339086,6,'producer','producer',NULL),(99012,5688,7,'cinematographer','director of photography',NULL),(99012,607673,8,'editor',NULL,NULL),(99012,520288,9,'production_designer',NULL,NULL),(99040,238698,10,'cinematographer',NULL,NULL),(99040,289098,1,'actress',NULL,'[\"Janet\"]'),(99040,449038,2,'actress',NULL,'[\"Young Janet\"]'),(99040,272649,3,'actress',NULL,'[\"Teenage Janet\"]'),(99040,161515,4,'actress',NULL,'[\"Mother\"]'),(99040,1005,5,'director',NULL,NULL),(99040,289737,6,'writer','based on the autobiographies of',NULL),(99040,428630,7,'writer','screenplay',NULL),(99040,407498,8,'producer','producer',NULL),(99040,569429,9,'composer',NULL,NULL),(99088,4637,10,'editor',NULL,NULL),(99088,150,1,'actor',NULL,'[\"Marty McFly\",\"Seamus McFly\"]'),(99088,502,2,'actor',NULL,'[\"Dr. Emmett Brown\"]'),(99088,5460,3,'actress',NULL,'[\"Clara Clayton\"]'),(99088,1855,4,'actor',NULL,'[\"Buford \'Mad Dog\' Tannen\",\"Biff Tannen\"]'),(99088,709,5,'director',NULL,NULL),(99088,301826,6,'writer','characters',NULL),(99088,134635,7,'producer','producer',NULL),(99088,6293,8,'composer',NULL,NULL),(99088,5678,9,'cinematographer','director of photography',NULL),(99160,596360,10,'cinematographer','director of photography',NULL),(99160,130,1,'actress',NULL,'[\"Megan Turner\"]'),(99160,798779,2,'actor',NULL,'[\"Eugene Hunt\"]'),(99160,317,3,'actor',NULL,'[\"Nick Mann\"]'),(99160,1615,4,'actress',NULL,'[\"Tracy Perez\"]'),(99160,941,5,'director',NULL,NULL),(99160,714599,6,'writer','written by',NULL),(99160,696299,7,'producer','producer',NULL),(99160,231,8,'producer','producer',NULL),(99160,6075,9,'composer',NULL,NULL),(99165,659597,10,'editor',NULL,NULL),(99165,158,1,'actor',NULL,'[\"Sherman McCoy\"]'),(99165,246,2,'actor',NULL,'[\"Peter Fallow\"]'),(99165,429,3,'actress',NULL,'[\"Maria Ruskin\"]'),(99165,326,4,'actress',NULL,'[\"Judy McCoy\"]'),(99165,361,5,'director',NULL,NULL),(99165,188165,6,'writer','screenplay',NULL),(99165,4366,7,'writer','novel',NULL),(99165,6115,8,'composer',NULL,NULL),(99165,5936,9,'cinematographer','director of photography',NULL),(99253,913149,10,'editor',NULL,NULL),(99253,898571,1,'actor',NULL,'[\"Andy Barclay\"]'),(99253,256,2,'actress',NULL,'[\"Joanne Simpson\"]'),(99253,334057,3,'actor',NULL,'[\"Phil Simpson\"]'),(99253,253705,4,'actress',NULL,'[\"Kyle\"]'),(99253,480843,5,'director',NULL,NULL),(99253,238841,6,'writer','based on characters created by',NULL),(99253,456946,7,'producer','producer',NULL),(99253,6251,8,'composer',NULL,NULL),(99253,194356,9,'cinematographer',NULL,NULL),(99277,175722,10,'editor',NULL,NULL),(99277,339562,1,'actor',NULL,'[\"Cody Culp\"]'),(99277,511270,2,'actress',NULL,'[\"Christie Langford\"]'),(99277,532,3,'actor',NULL,'[\"Dr. Miles Langford\"]'),(99277,5078,4,'actor',NULL,'[\"Dr. Bob Forrest\"]'),(99277,504495,5,'director',NULL,NULL),(99277,3676,6,'writer','screenplay by',NULL),(99277,804345,7,'writer',NULL,NULL),(99277,6129,8,'composer',NULL,NULL),(99277,410419,9,'cinematographer','director of photography',NULL),(99321,84019,10,'production_designer',NULL,NULL),(99321,1845,1,'actor',NULL,'[\"Jessie Williams\"]'),(99321,1439,2,'actor',NULL,'[\"David Ringel\"]'),(99321,1609,3,'actress',NULL,'[\"Denise Moore\"]'),(99321,426,4,'actress',NULL,'[\"Liz Carter\"]'),(99321,938490,5,'director',NULL,NULL),(99321,637602,6,'producer','producer',NULL),(99321,6106,7,'composer',NULL,NULL),(99321,276405,8,'cinematographer','director of photography',NULL),(99321,921075,9,'editor',NULL,NULL),(99329,672781,10,'production_designer',NULL,NULL),(99329,136,1,'actor',NULL,'[\"Cry-Baby\"]'),(99329,1442,2,'actress',NULL,'[\"Pepper Walker\"]'),(99329,504,3,'actress',NULL,'[\"Allison Vernon-Williams\"]'),(99329,879073,4,'actress',NULL,'[\"Ramona Rickettes\"]'),(99329,691,5,'director',NULL,NULL),(99329,3080,6,'producer','producer',NULL),(99329,2305,7,'composer',NULL,NULL),(99329,409392,8,'cinematographer','director of photography',NULL),(99329,359000,9,'editor',NULL,NULL),(99348,556067,10,'editor',NULL,NULL),(99348,126,1,'actor',NULL,'[\"Lieutenant Dunbar\"]'),(99348,1521,2,'actress',NULL,'[\"Stands With A Fist\"]'),(99348,1295,3,'actor',NULL,'[\"Kicking Bird\"]'),(99348,2110,4,'actor',NULL,'[\"Wind In His Hair\"]'),(99348,86658,5,'writer','screenplay by',NULL),(99348,933604,6,'producer','producer',NULL),(99348,290,7,'composer',NULL,NULL),(99348,5871,8,'cinematographer','director of photography',NULL),(99348,398343,9,'editor',NULL,NULL),(99365,849964,10,'producer','producer',NULL),(99365,553,1,'actor',NULL,'[\"Peyton Westlake\",\"Darkman\"]'),(99365,531,2,'actress',NULL,'[\"Julie Hastings\"]'),(99365,295506,3,'actor',NULL,'[\"Louis Strack Jr.\"]'),(99365,236952,4,'actor',NULL,'[\"Robert G. Durant\"]'),(99365,600,5,'director',NULL,NULL),(99365,679326,6,'writer','screenplay',NULL),(99365,706898,7,'writer','screenplay',NULL),(99365,325653,8,'writer','screenplay',NULL),(99365,325662,9,'writer','screenplay',NULL),(99371,751505,10,'cinematographer','director of photography',NULL),(99371,129,1,'actor',NULL,'[\"Cole Trickle\"]'),(99371,173,2,'actress',NULL,'[\"Dr. Claire Lewicki\"]'),(99371,380,3,'actor',NULL,'[\"Harry Hogge\"]'),(99371,1642,4,'actor',NULL,'[\"Tim Daland\"]'),(99371,1716,5,'director',NULL,NULL),(99371,1801,6,'writer','story',NULL),(99371,988,7,'producer','producer',NULL),(99371,800971,8,'producer','producer',NULL),(99371,1877,9,'composer',NULL,NULL),(99388,874926,10,'editor',NULL,NULL),(99388,384605,1,'actor',NULL,'[\"Deathstalker\"]'),(99388,285768,2,'actress',NULL,'[\"Dionara\"]'),(99388,163725,3,'actor',NULL,'[\"Vaniat\"]'),(99388,595640,4,'actress',NULL,'[\"Kana\"]'),(99388,169438,5,'director',NULL,NULL),(99388,336472,6,'writer','story editor',NULL),(99388,704918,7,'producer','producer',NULL),(99388,493784,8,'composer',NULL,NULL),(99388,883075,9,'cinematographer','director of photography',NULL),(99399,668898,10,'producer','producer',NULL),(99399,1569,1,'actor',NULL,'[\"Col. Scott McCoy\"]'),(99399,752636,2,'actor',NULL,'[\"Gen. Taylor\"]'),(99399,236711,3,'actor',NULL,'[\"Ramon Cota\"]'),(99399,1395,4,'actor',NULL,'[\"John Page - DEA Agent\"]'),(99399,635760,5,'director',NULL,NULL),(99399,116145,6,'writer','characters',NULL),(99399,324875,7,'writer','characters',NULL),(99399,721825,8,'writer','written by',NULL),(99399,322946,9,'producer','producer',NULL),(99422,548943,10,'editor',NULL,NULL),(99422,886,1,'actor',NULL,'[\"Dick Tracy\"]'),(99422,187,2,'actress',NULL,'[\"Breathless Mahoney\"]'),(99422,199,3,'actor',NULL,'[\"Big Boy Caprice\"]'),(99422,1432,4,'actor',NULL,'[\"Kid\"]'),(99422,332333,5,'writer','based on characters created by: for the Dick Tracy comic strip distributed by Tribune Media Services, Inc.',NULL),(99422,143596,6,'writer','written by',NULL),(99422,258390,7,'writer','written by',NULL),(99422,384,8,'composer',NULL,NULL),(99422,5886,9,'cinematographer',NULL,NULL),(99423,330077,10,'producer','producer',NULL),(99423,246,1,'actor',NULL,'[\"John McClane\"]'),(99423,40472,2,'actor',NULL,'[\"Thornberg\"]'),(99423,889,3,'actress',NULL,'[\"Holly McClane\"]'),(99423,1817,4,'actor',NULL,'[\"Al Powell\"]'),(99423,1317,5,'director',NULL,NULL),(99423,211823,6,'writer','screenplay by',NULL),(99423,724514,7,'writer','screenplay by',NULL),(99423,905709,8,'writer','based upon the novel \"58 Minutes\" by',NULL),(99423,861636,9,'writer','certain original characters by',NULL),(99426,482559,10,'cinematographer',NULL,NULL),(99426,504897,1,'actor',NULL,'[\"Ben\",\"Siu Bun\"]'),(99426,156484,2,'actor',NULL,'[\"Frank\",\"Fai Jai\"]'),(99426,498429,3,'actor',NULL,'[\"Paul\",\"Sau Ming\"]'),(99426,945189,4,'actor',NULL,'[\"Luke\",\"Lok\"]'),(99426,247,5,'director',NULL,NULL),(99426,150929,6,'writer',NULL,NULL),(99426,504980,7,'writer',NULL,NULL),(99426,1735425,8,'composer',NULL,NULL),(99426,151163,9,'cinematographer',NULL,NULL),(99487,357023,10,'editor',NULL,NULL),(99487,136,1,'actor',NULL,'[\"Edward Scissorhands\"]'),(99487,213,2,'actress',NULL,'[\"Kim\"]'),(99487,1848,3,'actress',NULL,'[\"Peg\"]'),(99487,1309,4,'actor',NULL,'[\"Jim\"]'),(99487,318,5,'director',NULL,NULL),(99487,3031,6,'writer','story',NULL),(99487,224145,7,'producer','producer',NULL),(99487,384,8,'composer',NULL,NULL),(99487,194356,9,'cinematographer','director of photography',NULL),(99582,957,10,'cinematographer','director of photography',NULL),(99582,662,1,'actor',NULL,'[\"Nelson Wright\"]'),(99582,102,2,'actor',NULL,'[\"David Labraccio\"]'),(99582,210,3,'actress',NULL,'[\"Dr. Rachel Mannus\"]'),(99582,287,4,'actor',NULL,'[\"Joe Hurley\"]'),(99582,1708,5,'director',NULL,NULL),(99582,276823,6,'writer','written by',NULL),(99582,81279,7,'producer','producer',NULL),(99582,140,8,'producer','producer',NULL),(99582,6133,9,'composer',NULL,NULL),(99653,4555,10,'editor',NULL,NULL),(99653,664,1,'actor',NULL,'[\"Sam Wheat\"]'),(99653,193,2,'actress',NULL,'[\"Molly Jensen\"]'),(99653,155,3,'actress',NULL,'[\"Oda Mae Brown\"]'),(99653,1282,4,'actor',NULL,'[\"Carl Bruner\"]'),(99653,958387,5,'director',NULL,NULL),(99653,748022,6,'writer','written by',NULL),(99653,918456,7,'producer','producer',NULL),(99653,3574,8,'composer',NULL,NULL),(99653,4229,9,'cinematographer','director of photography',NULL),(99674,539794,10,'editor',NULL,NULL),(99674,199,1,'actor',NULL,'[\"Michael Corleone\"]'),(99674,473,2,'actress',NULL,'[\"Kay Adams\"]'),(99674,412,3,'actor',NULL,'[\"Vincent Mancini\"]'),(99674,1735,4,'actress',NULL,'[\"Connie Corleone Rizzi\"]'),(99674,338,5,'director',NULL,NULL),(99674,701374,6,'writer','written by',NULL),(99674,178874,7,'composer',NULL,NULL),(99674,932336,8,'cinematographer','director of photography',NULL),(99674,296636,9,'editor',NULL,NULL),(99685,774817,10,'editor','film editor',NULL),(99685,134,1,'actor',NULL,'[\"James Conway\"]'),(99685,501,2,'actor',NULL,'[\"Henry Hill\"]'),(99685,582,3,'actor',NULL,'[\"Tommy DeVito\"]'),(99685,966,4,'actress',NULL,'[\"Karen Hill\"]'),(99685,217,5,'director',NULL,NULL),(99685,683380,6,'writer','book \"Wiseguy\"',NULL),(99685,5563,7,'producer','producer',NULL),(99685,841,8,'cinematographer','director of photography',NULL),(99685,477158,9,'editor','film editor',NULL),(99700,25,10,'composer',NULL,NULL),(99700,2090,1,'actor',NULL,'[\"Billy Peltzer\"]'),(99700,121,2,'actress',NULL,'[\"Kate Beringer\"]'),(99700,5177,3,'actor',NULL,'[\"Gizmo\"]'),(99700,709704,4,'actor',NULL,'[\"Brain Gremlin\"]'),(99700,1102,5,'director',NULL,NULL),(99700,5062,6,'director',NULL,NULL),(99700,351919,7,'writer','written by',NULL),(99700,1060,8,'writer','based on characters created by',NULL),(99700,278228,9,'producer','producer',NULL),(99731,5780,10,'cinematographer',NULL,NULL),(99731,1670,1,'actress',NULL,'[\"Kate\"]'),(99731,1159,2,'actress',NULL,'[\"Serena Joy\"]'),(99731,1644,3,'actor',NULL,'[\"Nick\"]'),(99731,1527,4,'actress',NULL,'[\"Moira\"]'),(99731,772522,5,'director',NULL,NULL),(99731,41194,6,'writer','novel',NULL),(99731,56217,7,'writer','screenplay',NULL),(99731,933249,8,'producer','producer',NULL),(99731,757098,9,'composer',NULL,NULL),(99733,302293,10,'editor',NULL,NULL),(99733,799,1,'actor',NULL,'[\"Scowl\"]'),(99733,1011,2,'actress',NULL,'[\"Snow White\"]'),(99733,151919,3,'actress',NULL,'[\"Muddy\"]'),(99733,1123,4,'actor',NULL,'[\"The Looking Glass\"]'),(99733,398244,5,'director',NULL,NULL),(99733,602922,6,'writer','screenplay',NULL),(99733,518773,7,'writer','screenplay',NULL),(99733,770617,8,'producer','producer',NULL),(99733,65408,9,'composer',NULL,NULL),(99768,606682,10,'editor',NULL,NULL),(99768,531,1,'actress',NULL,'[\"Ingrid Jessner\"]'),(99768,4051,2,'actor',NULL,'[\"Kerrigan\"]'),(99768,374,3,'actor',NULL,'[\"Paul Sullivan\"]'),(99768,955195,4,'actress',NULL,'[\"Moa\"]'),(99768,516360,5,'director',NULL,NULL),(99768,20653,6,'writer',NULL,NULL),(99768,271479,7,'producer','producer',NULL),(99768,4841,8,'composer',NULL,NULL),(99768,862702,9,'cinematographer',NULL,NULL),(99772,730051,10,'cinematographer',NULL,NULL),(99772,1884,1,'actor',NULL,'[\"Father Siemes\"]'),(99772,555,2,'actor',NULL,'[\"Pete Dunham\"]'),(99772,538683,3,'actor',NULL,'[\"Sgt. Moritaki\"]'),(99772,674,4,'actress',NULL,'[\"Sally\"]'),(99772,921464,5,'director',NULL,NULL),(99772,569950,6,'writer','written by',NULL),(99772,122140,7,'producer','producer',NULL),(99772,339254,8,'producer','executive producer',NULL),(99772,404870,9,'composer',NULL,NULL),(99776,520641,10,'editor',NULL,NULL),(99776,673251,1,'self',NULL,'[\"Self\"]'),(99776,389424,2,'actor',NULL,'[\"Sally\"]'),(99776,389425,3,'actor',NULL,'[\"Isaak, Sally\'s Brother\"]'),(99776,932870,4,'actor',NULL,'[\"Kellerman\"]'),(99776,2140,5,'director',NULL,NULL),(99776,105899,6,'producer','producer',NULL),(99776,617705,7,'producer','producer',NULL),(99776,6237,8,'composer',NULL,NULL),(99776,678456,9,'cinematographer',NULL,NULL),(99785,616141,10,'production_designer',NULL,NULL),(99785,346,1,'actor',NULL,'[\"Kevin\"]'),(99785,582,2,'actor',NULL,'[\"Harry\"]'),(99785,827663,3,'actor',NULL,'[\"Marv\"]'),(99785,1334,4,'actor',NULL,'[\"Peter\"]'),(99785,1060,5,'director',NULL,NULL),(99785,455,6,'writer','written by',NULL),(99785,2354,7,'composer',NULL,NULL),(99785,531310,8,'cinematographer','director of photography',NULL),(99785,331532,9,'editor',NULL,NULL),(99810,626883,10,'producer','producer',NULL),(99810,125,1,'actor',NULL,'[\"Marko Ramius\"]'),(99810,285,2,'actor',NULL,'[\"Jack Ryan\"]'),(99810,1277,3,'actor',NULL,'[\"Bart Mancuso\"]'),(99810,554,4,'actor',NULL,'[\"Captain Borodin\"]'),(99810,1532,5,'director',NULL,NULL),(99810,2007,6,'writer','based on the novel by',NULL),(99810,272511,7,'writer','screenplay by',NULL),(99810,829329,8,'writer','screenplay by',NULL),(99810,787072,9,'writer','screenplay',NULL),(99817,410419,10,'cinematographer','director of photography',NULL),(99817,185,1,'actor',NULL,'[\"Det. Jack Caine\"]'),(99817,903,2,'actor',NULL,'[\"Special Agent Arwood \'Larry\' Smith\"]'),(99817,105280,3,'actress',NULL,'[\"Diane Pallone\"]'),(99817,400117,4,'actor',NULL,'[\"Bad Alien - Talec\"]'),(99817,62644,5,'director',NULL,NULL),(99817,878716,6,'writer','written by',NULL),(99817,462895,7,'writer','written by',NULL),(99817,949676,8,'producer','producer',NULL),(99817,6122,9,'composer',NULL,NULL),(99818,529543,1,'actor',NULL,'[\"Henri Boulanger\"]'),(99818,164891,2,'actress',NULL,'[\"Margaret\"]'),(99818,171829,3,'actor',NULL,'[\"The Killer\"]'),(99818,100928,4,'actor',NULL,'[\"Department Head\"]'),(99818,442454,5,'director',NULL,NULL),(99818,901911,6,'writer','story idea',NULL),(99818,758742,7,'cinematographer','director of photography',NULL),(99818,247977,8,'production_designer',NULL,NULL),(99819,5845,10,'cinematographer','director of photography',NULL),(99819,177,1,'actor',NULL,'[\"Joey\"]'),(99819,1808,2,'actress',NULL,'[\"Rosalie\"]'),(99819,458,3,'actor',NULL,'[\"Harlan\"]'),(99819,687506,4,'actress',NULL,'[\"Nadja\"]'),(99819,1410,5,'director',NULL,NULL),(99819,467482,6,'writer','written by',NULL),(99819,527097,7,'producer','producer',NULL),(99819,596542,8,'producer','producer',NULL),(99819,35,9,'composer',NULL,NULL),(99851,389058,10,'actor',NULL,'[\"Steward\"]'),(99851,1613,1,'actress',NULL,'[\"The Witch\"]'),(99851,322306,2,'actress',NULL,'[\"Baker\'s Wife\"]'),(99851,956268,3,'actor',NULL,'[\"Baker\"]'),(99851,291839,4,'actress',NULL,'[\"Cinderella\'s Stepmother\"]'),(99851,487567,5,'director',NULL,NULL),(99851,581034,6,'producer','producer',NULL),(99851,80259,7,'editor',NULL,NULL),(99851,833151,8,'production_designer','set designer',NULL),(99851,528520,9,'actor',NULL,'[\"Cinderella\'s Father\"]'),(99864,186315,10,'actor',NULL,'[\"Ben Hanscom - Age 12\",\"Young Ben Hanscom\"]'),(99864,1796,1,'actor',NULL,'[\"Bill Denbrough\"]'),(99864,5347,2,'actor',NULL,'[\"Mike Hanlon\"]'),(99864,1578,3,'actress',NULL,'[\"Beverly Marsh\"]'),(99864,26789,4,'actor',NULL,'[\"Richie Tozier\"]'),(99864,160550,5,'actor',NULL,'[\"Eddie Kaspbrak\"]'),(99864,557956,6,'actor',NULL,'[\"Stanley Uris\"]'),(99864,615,7,'actor',NULL,'[\"Ben Hanscom\"]'),(99864,347,8,'actor',NULL,'[\"Pennywise\"]'),(99864,970,9,'actor',NULL,'[\"Bill Denbrough - Age 12\",\"Young Bill Denbrough\"]'),(99871,738196,10,'editor',NULL,NULL),(99871,209,1,'actor',NULL,'[\"Jacob\"]'),(99871,1615,2,'actress',NULL,'[\"Jezzie\"]'),(99871,732,3,'actor',NULL,'[\"Louis\"]'),(99871,2023,4,'actor',NULL,'[\"Michael\"]'),(99871,1490,5,'director',NULL,NULL),(99871,748022,6,'writer','written by',NULL),(99871,550728,7,'producer','producer',NULL),(99871,3574,8,'composer',NULL,NULL),(99871,453808,9,'cinematographer','director of photography',NULL),(99892,357041,10,'editor',NULL,NULL),(99892,158,1,'actor',NULL,'[\"Joe\"]'),(99892,212,2,'actress',NULL,'[\"DeDe\",\"Angelica\",\"Patricia\"]'),(99892,978,3,'actor',NULL,'[\"Graynamore\"]'),(99892,821041,4,'actor',NULL,'[\"Dr. Ellison\"]'),(99892,788234,5,'director',NULL,NULL),(99892,777462,6,'producer','producer',NULL),(99892,16,7,'composer',NULL,NULL),(99892,330518,8,'composer',NULL,NULL),(99892,3552,9,'cinematographer','director of photography',NULL),(99938,6055,10,'composer',NULL,NULL),(99938,216,1,'actor',NULL,'[\"Det. John Kimble\"]'),(99938,542,2,'actress',NULL,'[\"Joyce\"]'),(99938,715622,3,'actress',NULL,'[\"Det. Phoebe O\'Hara\"]'),(99938,1373,4,'actress',NULL,'[\"Miss Schlowski\"]'),(99938,718645,5,'director',NULL,NULL),(99938,758010,6,'writer','story',NULL),(99938,918339,7,'writer','screenplay',NULL),(99938,365390,8,'writer','screenplay',NULL),(99938,4976,9,'producer','producer',NULL),(100009,538935,10,'editor',NULL,NULL),(100009,821734,1,'actor',NULL,'[\"Mac Richards\"]'),(100009,882853,2,'actress',NULL,'[\"Stella Hudson\"]'),(100009,10878,3,'actor',NULL,'[\"Sheriff Parker\"]'),(100009,1479127,4,'actor',NULL,'[\"Butch\"]'),(100009,94217,5,'director',NULL,NULL),(100009,72913,6,'writer','screenplay',NULL),(100009,491976,7,'producer','producer',NULL),(100009,143635,8,'composer',NULL,NULL),(100009,408691,9,'cinematographer',NULL,NULL),(100024,158360,10,'production_designer',NULL,NULL),(100024,824102,1,'actress',NULL,'[\"Wendy\"]'),(100024,980,2,'actor',NULL,'[\"Andy\"]'),(100024,804218,3,'actress',NULL,'[\"Natalie\"]'),(100024,1363,4,'actress',NULL,'[\"Nicola\"]'),(100024,5139,5,'director',NULL,NULL),(100024,151925,6,'producer','producer',NULL),(100024,6235,7,'composer',NULL,NULL),(100024,5836,8,'cinematographer',NULL,NULL),(100024,339856,9,'editor',NULL,NULL),(100029,627589,10,'cinematographer',NULL,NULL),(100029,241,1,'actor',NULL,'[\"Lyon\"]'),(100029,656188,2,'actor',NULL,'[\"Joshua\"]'),(100029,719612,3,'actress',NULL,'[\"Cynthia\"]'),(100029,670852,4,'actress',NULL,'[\"Helene\"]'),(100029,504802,5,'director',NULL,NULL),(100029,913027,6,'writer','earlier screenplay',NULL),(100029,440171,7,'producer','producer',NULL),(100029,787420,8,'producer','producer',NULL),(100029,779346,9,'composer',NULL,NULL),(100046,5683,10,'cinematographer','director of photography',NULL),(100046,651,1,'actress',NULL,'[\"Miriam Thompson\"]'),(100046,155,2,'actress',NULL,'[\"Odessa Cotter\"]'),(100046,776239,3,'actor',NULL,'[\"Norman Thompson\"]'),(100046,609,4,'actor',NULL,'[\"Herbert Cotter\"]'),(100046,669004,5,'director',NULL,NULL),(100046,179896,6,'writer',NULL,NULL),(100046,68132,7,'producer','producer',NULL),(100046,462242,8,'producer','producer',NULL),(100046,6070,9,'composer',NULL,NULL),(100054,297620,10,'cinematographer','director of photography',NULL),(100054,1267,1,'actor',NULL,'[\"Ralph\"]'),(100054,299077,2,'actor',NULL,'[\"Jack Merridew\"]'),(100054,684999,3,'actor',NULL,'[\"Piggy\"]'),(100054,197647,4,'actor',NULL,'[\"Simon\"]'),(100054,393591,5,'director',NULL,NULL),(100054,325717,6,'writer','based on the novel by',NULL),(100054,696319,7,'writer','screenplay by',NULL),(100054,589869,8,'producer','producer',NULL),(100054,6271,9,'composer',NULL,NULL),(100140,658404,10,'producer','producer',NULL),(100140,333,1,'actress',NULL,'[\"Mrs. Flax\"]'),(100140,1364,2,'actor',NULL,'[\"Lou Landsky\"]'),(100140,213,3,'actress',NULL,'[\"Charlotte Flax\"]'),(100140,1706,4,'actor',NULL,'[\"Joe\"]'),(100140,907,5,'director',NULL,NULL),(100140,200351,6,'writer','novel',NULL),(100140,731293,7,'writer','screenplay',NULL),(100140,516056,8,'producer','producer',NULL),(100140,629950,9,'producer','producer',NULL),(100142,854403,10,'editor',NULL,NULL),(100142,267449,1,'actress',NULL,'[\"Audrey Rouget\"]'),(100142,166221,2,'actor',NULL,'[\"Tom Townsend\"]'),(100142,1177,3,'actor',NULL,'[\"Nick Smith\"]'),(100142,629737,4,'actor',NULL,'[\"Charlie Black\"]'),(100142,1775,5,'director',NULL,NULL),(100142,4172574,6,'producer','producer',NULL),(100142,2344,7,'composer',NULL,NULL),(100142,839438,8,'composer',NULL,NULL),(100142,859047,9,'cinematographer','director of photography',NULL),(100150,588998,10,'editor',NULL,NULL),(100150,321,1,'actor',NULL,'[\"Tom Reagan\"]'),(100150,1215,2,'actor',NULL,'[\"Leo\"]'),(100150,1806,3,'actor',NULL,'[\"Bernie Bernbaum\"]'),(100150,1315,4,'actress',NULL,'[\"Verna\"]'),(100150,1054,5,'director',NULL,NULL),(100150,1053,6,'director',NULL,NULL),(100150,358591,7,'writer','novels \"Red Harvest\" and \"Glass Key\"',NULL),(100150,1980,8,'composer',NULL,NULL),(100150,1756,9,'cinematographer','director of photography',NULL),(100151,440505,10,'cinematographer',NULL,NULL),(100151,880521,1,'actress',NULL,'[\"Sonia Hoffman\"]'),(100151,1832,2,'actor',NULL,'[\"Jack Edwards\"]'),(100151,1334,3,'actor',NULL,'[\"Thomas Harriman\"]'),(100151,1746,4,'actress',NULL,'[\"Kit Hoffman\"]'),(100151,3464,5,'director',NULL,NULL),(100151,125698,6,'writer','screenplay',NULL),(100151,135586,7,'writer','screenplay',NULL),(100151,169172,8,'producer','producer',NULL),(100151,1275,9,'composer',NULL,NULL),(100157,1756,10,'cinematographer','director of photography',NULL),(100157,1001,1,'actor',NULL,'[\"Paul Sheldon\"]'),(100157,870,2,'actress',NULL,'[\"Annie Wilkes\"]'),(100157,2070,3,'actor',NULL,'[\"Buster\"]'),(100157,827973,4,'actress',NULL,'[\"Virginia\"]'),(100157,1661,5,'director',NULL,NULL),(100157,175,6,'writer','novel \"Misery\"',NULL),(100157,1279,7,'writer','screenplay',NULL),(100157,770650,8,'producer','producer',NULL),(100157,3299,9,'composer',NULL,NULL),(100222,695421,10,'production_designer',NULL,NULL),(100222,352,1,'actor',NULL,'[\"Cholo\"]'),(100222,528,2,'actress',NULL,'[\"Alba\",\"Stephanie\"]'),(100222,721073,3,'actor',NULL,'[\"Judge Torres\"]'),(100222,668455,4,'actor',NULL,'[\"Waiter\"]'),(100222,775055,5,'director',NULL,NULL),(100222,918844,6,'producer','producer',NULL),(100222,2353,7,'composer',NULL,NULL),(100222,5851,8,'cinematographer',NULL,NULL),(100222,567507,9,'editor',NULL,NULL),(100232,6169,10,'composer',NULL,NULL),(100232,221,1,'actor',NULL,'[\"Lt. Dale Hawkins\"]'),(100232,299,2,'actor',NULL,'[\"Lt. James Curran\"]'),(100232,695,3,'actress',NULL,'[\"Claire Varrens\"]'),(100232,1685,4,'actor',NULL,'[\"Leary\"]'),(100232,853546,5,'director',NULL,NULL),(100232,679326,6,'writer','written by',NULL),(100232,325778,7,'writer','written by',NULL),(100232,270568,8,'producer','producer',NULL),(100232,930089,9,'producer','producer',NULL),(100234,267115,10,'actor',NULL,'[\"Reporter\"]'),(100234,754969,1,'actor',NULL,'[\"Hossain Sabzian (Bazigar)\"]'),(100234,538532,2,'actor',NULL,'[\"Mohsen Makhmalbaf (Kargardan)\"]'),(100234,13842,3,'actor',NULL,'[\"Abolfazl Ahankhah (Pedar-e Khanevadeh)\"]'),(100234,13844,4,'actor',NULL,'[\"Mehrdad Ahankhah (Pesar-e Ahankhah)\"]'),(100234,452102,5,'director',NULL,NULL),(100234,439308,6,'producer','producer',NULL),(100234,202102,7,'cinematographer',NULL,NULL),(100234,957831,8,'actress',NULL,'[\"Nayer Mohseni Zonoozi (Hamsar-e Ahankhah)\"]'),(100234,596101,9,'actor',NULL,'[\"Ahmad Reza Moayed Mohseni (Doost-e Ahankhah)\"]'),(100260,325358,10,'editor',NULL,NULL),(100260,1729,1,'actor',NULL,'[\"Aaron Boone\",\"Cabal\"]'),(100260,343,2,'actor',NULL,'[\"Dr. Philip K. Decker\"]'),(100260,90321,3,'actress',NULL,'[\"Lori Winston\"]'),(100260,354024,4,'actor',NULL,'[\"Captain Eigerman\"]'),(100260,850,5,'director',NULL,NULL),(100260,553355,6,'producer','producer',NULL),(100260,1639750,7,'producer','producer',NULL),(100260,384,8,'composer',NULL,NULL),(100260,896485,9,'cinematographer',NULL,NULL),(100263,1594,1,'actress',NULL,'[\"Nikita\",\"Marie Clément\"]'),(100263,244019,2,'actor',NULL,'[\"Rico\"]'),(100263,284938,3,'actor',NULL,'[\"Coyotte\"]'),(100263,1016405,4,'actor',NULL,'[\"Zap\"]'),(100263,108,5,'director',NULL,NULL),(100263,785385,6,'composer',NULL,NULL),(100263,5636,7,'cinematographer','director of photography',NULL),(100263,560830,8,'editor',NULL,NULL),(100263,917942,9,'production_designer',NULL,NULL),(100266,726825,10,'production_designer',NULL,NULL),(100266,2290,1,'actor',NULL,'[\"Will Alexander\"]'),(100266,899918,2,'actor',NULL,'[\"Casey Alexander\"]'),(100266,132103,3,'actor',NULL,'[\"John Alexander\"]'),(100266,10349,4,'actress',NULL,'[\"Maria\"]'),(100266,523000,5,'director',NULL,NULL),(100266,833298,6,'writer','screenplay',NULL),(100266,400062,7,'composer',NULL,NULL),(100266,402165,8,'cinematographer',NULL,NULL),(100266,398861,9,'editor',NULL,NULL),(100332,632466,10,'self',NULL,'[\"Self\"]'),(100332,2002784,1,'self',NULL,'[\"Self\"]'),(100332,159980,2,'self',NULL,'[\"Self\"]'),(100332,179776,3,'self',NULL,'[\"Self\"]'),(100332,243484,4,'self',NULL,'[\"Self\"]'),(100332,515255,5,'director',NULL,NULL),(100332,317140,6,'cinematographer',NULL,NULL),(100332,649165,7,'editor',NULL,NULL),(100332,495568,8,'self',NULL,'[\"Self\"]'),(100332,479425,9,'self',NULL,'[\"Self\"]'),(100395,642714,10,'editor',NULL,NULL),(100395,658,1,'actress',NULL,'[\"Suzanne Vale\"]'),(100395,511,2,'actress',NULL,'[\"Doris Mann\"]'),(100395,598,3,'actor',NULL,'[\"Jack Faulkner\"]'),(100395,432,4,'actor',NULL,'[\"Lowell Kolchek\"]'),(100395,1566,5,'director',NULL,NULL),(100395,402,6,'writer','book',NULL),(100395,130492,7,'producer','producer',NULL),(100395,800089,8,'composer',NULL,NULL),(100395,841,9,'cinematographer','director of photography',NULL),(100403,5428,10,'producer','producer',NULL),(100403,418,1,'actor',NULL,'[\"Lieutenant Mike Harrigan\"]'),(100403,997,2,'actor',NULL,'[\"Peter Keyes\"]'),(100403,1310,3,'actor',NULL,'[\"The Predator\"]'),(100403,1952,4,'actor',NULL,'[\"Danny Archuleta\"]'),(100403,394280,5,'director',NULL,NULL),(100403,859029,6,'writer','characters',NULL),(100403,859049,7,'writer','characters',NULL),(100403,204862,8,'producer','producer',NULL),(100403,330379,9,'producer','producer',NULL),(100404,2354,10,'composer',NULL,NULL),(100404,148,1,'actor',NULL,'[\"Rusty Sabich\"]'),(100404,471,2,'actor',NULL,'[\"Sandy Stern\"]'),(100404,627,3,'actress',NULL,'[\"Carolyn Polhemus\"]'),(100404,1133,4,'actor',NULL,'[\"Raymond Horgan\"]'),(100404,1587,5,'director',NULL,NULL),(100404,878017,6,'writer','novel',NULL),(100404,682757,7,'writer','screenplay',NULL),(100404,1628,8,'producer','producer',NULL),(100404,742275,9,'producer','producer',NULL),(100405,591665,10,'cinematographer',NULL,NULL),(100405,152,1,'actor',NULL,'[\"Edward Lewis\"]'),(100405,210,2,'actress',NULL,'[\"Vivian Ward\"]'),(100405,4517,3,'actor',NULL,'[\"Philip Stuckey\"]'),(100405,624,4,'actress',NULL,'[\"Kit De Luca\"]'),(100405,5190,5,'director',NULL,NULL),(100405,493369,6,'writer','written by',NULL),(100405,586969,7,'producer','producer',NULL),(100405,720715,8,'producer','producer',NULL),(100405,6133,9,'composer',NULL,NULL),(100449,374189,10,'editor',NULL,NULL),(100449,195,1,'actor',NULL,'[\"Grimm\"]'),(100449,133,2,'actress',NULL,'[\"Phyllis\"]'),(100449,1642,3,'actor',NULL,'[\"Loomis\"]'),(100449,334746,4,'actor',NULL,'[\"Street Barker\"]'),(100449,291442,5,'director',NULL,NULL),(100449,188832,6,'writer','book',NULL),(100449,339086,7,'producer','producer',NULL),(100449,6055,8,'composer',NULL,NULL),(100449,152469,9,'cinematographer','director of photography',NULL),(100469,859500,10,'editor',NULL,NULL),(100469,1557,1,'actor',NULL,'[\"Cameron Dove\"]'),(100469,242026,2,'actress',NULL,'[\"Dolphin Blue\"]'),(100469,178144,3,'actor',NULL,'[\"Seth Dove\"]'),(100469,601874,4,'actress',NULL,'[\"Ruth Dove\"]'),(100469,726000,5,'director',NULL,NULL),(100469,25823,6,'producer','producer',NULL),(100469,120987,7,'producer','producer',NULL),(100469,5963,8,'composer',NULL,NULL),(100469,5836,9,'cinematographer',NULL,NULL),(100477,710020,10,'writer','animation screenplay by',NULL),(100477,627878,1,'actor',NULL,'[\"Bernard\"]'),(100477,1247,2,'actress',NULL,'[\"Miss Bianca\"]'),(100477,1006,3,'actor',NULL,'[\"Wilbur\"]'),(100477,737248,4,'actor',NULL,'[\"Jake\"]'),(100477,125186,5,'director',NULL,NULL),(100477,300265,6,'director',NULL,NULL),(100477,185084,7,'writer','animation screenplay by',NULL),(100477,456732,8,'writer','animation screenplay by',NULL),(100477,800927,9,'writer','animation screenplay by',NULL),(100491,606682,10,'editor',NULL,NULL),(100491,1015,1,'actor',NULL,'[\"Stevie\"]'),(100491,566659,2,'actress',NULL,'[\"Susan\"]'),(100491,2951942,3,'actor',NULL,'[\"Shem\"]'),(100491,608972,4,'actor',NULL,'[\"Mo\"]'),(100491,516360,5,'director',NULL,NULL),(100491,422161,6,'writer','screenplay',NULL),(100491,382516,7,'producer','producer',NULL),(100491,4841,8,'composer',NULL,NULL),(100491,10096,9,'cinematographer',NULL,NULL),(100502,205727,10,'producer','producer',NULL),(100502,693,1,'actor',NULL,'[\"Robocop\"]'),(100502,262,2,'actress',NULL,'[\"Anne Lewis\"]'),(100502,873,3,'actress',NULL,'[\"Juliette Faxx\"]'),(100502,641397,4,'actor',NULL,'[\"Old Man\"]'),(100502,449984,5,'director',NULL,NULL),(100502,627159,6,'writer','characters',NULL),(100502,591160,7,'writer','characters',NULL),(100502,588340,8,'writer','story',NULL),(100502,338396,9,'writer','screenplay',NULL),(100507,274729,10,'editor',NULL,NULL),(100507,230,1,'actor',NULL,'[\"Rocky\"]'),(100507,1735,2,'actress',NULL,'[\"Adrian\"]'),(100507,949350,3,'actor',NULL,'[\"Paulie\"]'),(100507,821739,4,'actor',NULL,'[\"Rocky Jr.\"]'),(100507,814,5,'director',NULL,NULL),(100507,153590,6,'producer','producer',NULL),(100507,5563,7,'producer','producer',NULL),(100507,6015,8,'composer',NULL,NULL),(100507,692925,9,'cinematographer','director of photography',NULL),(100519,309423,10,'editor',NULL,NULL),(100519,198,1,'actor',NULL,'[\"Rosencrantz\"]'),(100519,619,2,'actor',NULL,'[\"Guildenstern\"]'),(100519,377,3,'actor',NULL,'[\"The Player\"]'),(100519,46256,4,'actor',NULL,'[\"Tragedian\"]'),(100519,1779,5,'director',NULL,NULL),(100519,44196,6,'producer','producer',NULL),(100519,104701,7,'producer','producer',NULL),(100519,4368,8,'composer',NULL,NULL),(100519,84695,9,'cinematographer','director of photography',NULL),(100530,48524,10,'cinematographer','director of photography',NULL),(100530,125,1,'actor',NULL,'[\"Barley\"]'),(100530,201,2,'actress',NULL,'[\"Katya\"]'),(100530,1702,3,'actor',NULL,'[\"Russell\"]'),(100530,289038,4,'actor',NULL,'[\"Ned\"]'),(100530,770961,5,'director',NULL,NULL),(100530,494170,6,'writer','novel',NULL),(100530,1779,7,'writer','screenplay',NULL),(100530,556487,8,'producer','producer',NULL),(100530,25,9,'composer',NULL,NULL),(100557,772454,10,'composer',NULL,NULL),(100557,831660,1,'actress',NULL,'[\"Sonja Rosenberger\"]'),(100557,618176,2,'actor',NULL,'[\"Dr. Juckenack\"]'),(100557,62370,3,'actress',NULL,'[\"Maria Rosenberger Sonja\'s mother\"]'),(100557,78307,4,'actress',NULL,'[\"Sonja\'s grandma\"]'),(100557,894201,5,'director',NULL,NULL),(100557,919,6,'producer','producer',NULL),(100557,42679,7,'composer',NULL,NULL),(100557,331027,8,'composer',NULL,NULL),(100557,381047,9,'composer',NULL,NULL),(100594,5886,10,'cinematographer',NULL,NULL),(100594,700,1,'actress',NULL,'[\"Kit\"]'),(100594,518,2,'actor',NULL,'[\"Port\"]'),(100594,1714,3,'actor',NULL,'[\"Tunner\"]'),(100594,71824,4,'actress',NULL,'[\"Mrs Lyle\"]'),(100594,934,5,'director',NULL,NULL),(100594,101247,6,'writer','book',NULL),(100594,672546,7,'writer','screenplay',NULL),(100594,859016,8,'producer','producer',NULL),(100594,757098,9,'composer',NULL,NULL),(100691,930119,10,'cinematographer','director of photography',NULL),(100691,541,1,'actress',NULL,'[\"Stella Claire\"]'),(100691,422,2,'actor',NULL,'[\"Ed Munn\"]'),(100691,746,3,'actress',NULL,'[\"Jenny Claire\"]'),(100691,4834,4,'actor',NULL,'[\"Stephen Dallas\"]'),(100691,259589,5,'director',NULL,NULL),(100691,698989,6,'writer','novel \"Stella Dallas\"',NULL),(100691,315205,7,'writer','screenplay',NULL),(100691,326412,8,'producer','producer',NULL),(100691,606657,9,'composer',NULL,NULL),(100758,150858,10,'producer','producer',NULL),(100758,387432,1,'actress',NULL,'[\"April O\'Neil\"]'),(100758,480,2,'actor',NULL,'[\"Casey Jones\"]'),(100758,656929,3,'actor',NULL,'[\"Raphael (voice)\",\"Passenger In Cab\"]'),(100758,286335,4,'actor',NULL,'[\"Leonardo\",\"Gang Member\"]'),(100758,6625,5,'director',NULL,NULL),(100758,247653,6,'writer','characters',NULL),(100758,481990,7,'writer','characters',NULL),(100758,378478,8,'writer','story',NULL),(100758,486244,9,'writer','screenplay',NULL),(100802,325778,10,'writer','screenplay',NULL),(100802,216,1,'actor',NULL,'[\"Quaid\"]'),(100802,232,2,'actress',NULL,'[\"Lori\"]'),(100802,461,3,'actor',NULL,'[\"Richter\"]'),(100802,1797,4,'actress',NULL,'[\"Melina\"]'),(100802,682,5,'director',NULL,NULL),(100802,1140,6,'writer','short story \"We Can Remember It For You Wholesale\"',NULL),(100802,795953,7,'writer','screen story',NULL),(100802,639321,8,'writer','screen story',NULL),(100802,693956,9,'writer','screen story',NULL),(100814,114363,10,'editor',NULL,NULL),(100814,102,1,'actor',NULL,'[\"Valentine McKee\"]'),(100814,911542,2,'actor',NULL,'[\"Earl Bassett\"]'),(100814,141617,3,'actress',NULL,'[\"Rhonda LeBeck\"]'),(100814,343447,4,'actor',NULL,'[\"Burt Gummer\"]'),(100814,881038,5,'director',NULL,NULL),(100814,934093,6,'writer','story',NULL),(100814,534681,7,'writer','story',NULL),(100814,873560,8,'composer',NULL,NULL),(100814,344738,9,'cinematographer','director of photography',NULL),(100911,254580,10,'cinematographer',NULL,NULL),(100911,213,1,'actress',NULL,'[\"Dinky Bossetti\"]'),(100911,1099,2,'actor',NULL,'[\"Denton Webb\"]'),(100911,732309,3,'actress',NULL,'[\"Elizabeth Zaks\"]'),(100911,114787,4,'actor',NULL,'[\"Gerald Howells\"]'),(100911,720,5,'director',NULL,NULL),(100911,394212,6,'writer','written by',NULL),(100911,277896,7,'producer','producer',NULL),(100911,4902,8,'composer',NULL,NULL),(100911,2353,9,'composer',NULL,NULL),(100924,818621,10,'production_designer',NULL,NULL),(100924,1056,1,'actor',NULL,'[\"Stewart McBain\"]'),(100924,235,2,'actress',NULL,'[\"Daphne McBain\"]'),(100924,1026,3,'actress',NULL,'[\"Jean\"]'),(100924,417,4,'actor',NULL,'[\"Lionel\"]'),(100924,958,5,'director',NULL,NULL),(100924,95579,6,'writer','written by',NULL),(100924,552897,7,'composer',NULL,NULL),(100924,5893,8,'cinematographer',NULL,NULL),(100924,185677,9,'editor',NULL,NULL),(100928,185088,10,'editor',NULL,NULL),(100928,142,1,'actor',NULL,'[\"John Wilson\"]'),(100928,1194,2,'actor',NULL,'[\"Pete Verrill\"]'),(100928,180489,3,'actress',NULL,'[\"Miss Wilding, Wilson\'s Secretary\"]'),(100928,525972,4,'actor',NULL,'[\"Butler George\"]'),(100928,896830,5,'writer','novel',NULL),(100928,108745,6,'writer','screenplay',NULL),(100928,447944,7,'writer','screenplay',NULL),(100928,6215,8,'composer',NULL,NULL),(100928,5726,9,'cinematographer','director of photography',NULL),(100934,325543,10,'composer',NULL,NULL),(100934,620,1,'actor',NULL,'[\"James Wheeler\"]'),(100934,302,2,'actress',NULL,'[\"Claudia Dennis\"]'),(100934,652895,3,'actress',NULL,'[\"Emily Reed\"]'),(100934,785264,4,'actress',NULL,'[\"Hanna Munch\"]'),(100934,455394,5,'director',NULL,NULL),(100934,461341,6,'writer','written by',NULL),(100934,31026,7,'producer','producer',NULL),(100934,75801,8,'producer','producer',NULL),(100934,198941,9,'producer','producer',NULL),(100935,823,10,'composer',NULL,NULL),(100935,115,1,'actor',NULL,'[\"Sailor\"]'),(100935,368,2,'actress',NULL,'[\"Lula\"]'),(100935,353,3,'actor',NULL,'[\"Bobby Peru\"]'),(100935,293422,4,'actor',NULL,'[\"Santos\"]'),(100935,186,5,'director',NULL,NULL),(100935,317510,6,'writer','novel \"Wild at Heart: The Story of Sailor and Lula\"',NULL),(100935,326512,7,'producer','producer',NULL),(100935,599863,8,'producer','producer',NULL),(100935,797451,9,'producer','producer',NULL),(100944,365623,10,'cinematographer',NULL,NULL),(100944,1378,1,'actress',NULL,'[\"Miss Ernst\",\"Grand High Witch\"]'),(100944,955195,2,'actress',NULL,'[\"Helga\"]'),(100944,279557,3,'actor',NULL,'[\"Luke\"]'),(100944,100,4,'actor',NULL,'[\"Mr. Stringer\"]'),(100944,1676,5,'director',NULL,NULL),(100944,1094,6,'writer','based on the book by',NULL),(100944,778819,7,'writer','screenplay by',NULL),(100944,794480,8,'producer','producer',NULL),(100944,4368,9,'composer',NULL,NULL),(100963,477274,10,'editor',NULL,NULL),(100963,159507,1,'actor',NULL,'[\"So-cha-ha-yee Chan\",\"So Hak Yee\"]'),(100963,156522,2,'actress',NULL,'[\"Yu-Shang\"]'),(100963,628806,3,'actor',NULL,'[\"General So\"]'),(100963,160865,4,'actor',NULL,'[\"Chiu\"]'),(100963,150906,5,'director',NULL,NULL),(100963,150977,6,'writer','screenplay',NULL),(100963,803314,7,'producer','producer',NULL),(100963,345150,8,'composer',NULL,NULL),(100963,161205,9,'cinematographer',NULL,NULL),(100990,599983,10,'cinematographer',NULL,NULL),(100990,785264,1,'actress',NULL,'[\"Juana Inés de la Cruz\"]'),(100990,761212,2,'actress',NULL,'[\"La Virreina\"]'),(100990,22765,3,'actor',NULL,'[\"The Viceroy\"]'),(100990,615511,4,'actor',NULL,'[\"Archbishop\"]'),(100990,69833,5,'director',NULL,NULL),(100990,488613,6,'writer',NULL,NULL),(100990,668583,7,'writer','novel \"Sor Juana Ines De La Cruz\"',NULL),(100990,822711,8,'producer','producer',NULL),(100990,766884,9,'composer',NULL,NULL),(101258,434988,10,'editor',NULL,NULL),(101258,2000,1,'actor',NULL,'[\"Yuddy\"]'),(101258,1041,2,'actress',NULL,'[\"Su Li-zhen\"]'),(101258,490489,3,'actor',NULL,'[\"Tide\"]'),(101258,490500,4,'actress',NULL,'[\"Leung Fung-ying\"]'),(101258,939182,5,'director',NULL,NULL),(101258,311508,6,'writer',NULL,NULL),(101258,849331,7,'producer','producer',NULL),(101258,5232468,8,'composer',NULL,NULL),(101258,236313,9,'cinematographer',NULL,NULL),(101272,3299,10,'composer',NULL,NULL),(101272,1378,1,'actress',NULL,'[\"Morticia Addams\"]'),(101272,471,2,'actor',NULL,'[\"Gomez Addams\"]'),(101272,502,3,'actor',NULL,'[\"Uncle Fester Addams\"]'),(101272,445,4,'actor',NULL,'[\"Tully Alford\"]'),(101272,1756,5,'director',NULL,NULL),(101272,11623,6,'writer','characters',NULL),(101272,3031,7,'writer','written by',NULL),(101272,933733,8,'writer','written by',NULL),(101272,748784,9,'producer','producer',NULL),(101316,5709,10,'cinematographer',NULL,NULL),(101316,1506,1,'actress',NULL,'[\"The young girl\"]'),(101316,504899,2,'actor',NULL,'[\"The chinaman\"]'),(101316,603402,3,'actress',NULL,'[\"Narrator\"]'),(101316,576928,4,'actress',NULL,'[\"The mother\"]'),(101316,269,5,'director',NULL,NULL),(101316,243921,6,'writer','based on the novel',NULL),(101316,102722,7,'writer','adaptation',NULL),(101316,1945,8,'producer','producer',NULL),(101316,1189,9,'composer',NULL,NULL),(101318,300,1,'actress',NULL,'[\"Michèle Stalens\"]'),(101318,491777,2,'actor',NULL,'[\"Alex\"]'),(101318,345046,3,'actor',NULL,'[\"Hans\"]'),(101318,821637,4,'actress',NULL,'[\"Marion\"]'),(101318,136021,5,'director',NULL,NULL),(101318,269992,6,'producer','producer',NULL),(101318,260389,7,'cinematographer',NULL,NULL),(101318,582848,8,'editor',NULL,NULL),(101318,888905,9,'production_designer',NULL,NULL),(101329,229,10,'producer','producer',NULL),(101329,71,1,'actor',NULL,'[\"Wylie\"]'),(101329,92,2,'actor',NULL,'[\"Cat R. Waul\"]'),(101329,1388,3,'actress',NULL,'[\"Miss Kitty\"]'),(101329,322064,4,'actor',NULL,'[\"Fievel\"]'),(101329,629216,5,'director',NULL,NULL),(101329,920425,6,'director',NULL,NULL),(101329,456946,7,'writer','creator',NULL),(101329,842415,8,'writer','story',NULL),(101329,226863,9,'writer','screenplay',NULL),(101393,1877,10,'composer',NULL,NULL),(101393,621,1,'actor',NULL,'[\"Stephen McCaffrey\"]'),(101393,287,2,'actor',NULL,'[\"Brian McCaffrey\"]'),(101393,134,3,'actor',NULL,'[\"Donald Rimgale\"]'),(101393,661,4,'actor',NULL,'[\"Ronald Bartel\"]'),(101393,165,5,'director',NULL,NULL),(101393,927074,6,'writer','written by',NULL),(101393,219720,7,'producer','producer',NULL),(101393,507669,8,'producer','producer',NULL),(101393,914709,9,'producer','producer',NULL),(101399,4372,10,'cinematographer','director of photography',NULL),(101399,5557,1,'actress',NULL,'[\"Emanuelle\"]'),(101399,201695,2,'actor',NULL,'[\"TJ McMasters\"]'),(101399,828288,3,'actress',NULL,'[\"Myra\"]'),(101399,724604,4,'actor',NULL,'[\"Richard Trent\"]'),(101399,676248,5,'director',NULL,NULL),(101399,569100,6,'writer','written by',NULL),(101399,907187,7,'producer','producer',NULL),(101399,6068,8,'composer',NULL,NULL),(101399,745448,9,'composer',NULL,NULL),(101410,1806,1,'actor',NULL,'[\"Barton Fink\"]'),(101410,422,2,'actor',NULL,'[\"Charlie Meadows\"]'),(101410,1114,3,'actress',NULL,'[\"Audrey Taylor\"]'),(101410,503627,4,'actor',NULL,'[\"Jack Lipnick\"]'),(101410,1054,5,'director',NULL,NULL),(101410,1053,6,'director',NULL,NULL),(101410,1980,7,'composer',NULL,NULL),(101410,5683,8,'cinematographer','director of photography',NULL),(101410,309357,9,'production_designer',NULL,NULL),(101414,560329,10,'writer','story',NULL),(101414,641314,1,'actress',NULL,'[\"Belle\"]'),(101414,913,2,'actor',NULL,'[\"Beast\"]'),(101414,181425,3,'actor',NULL,'[\"Lefou\"]'),(101414,263591,4,'actor',NULL,'[\"Maurice\"]'),(101414,873779,5,'director',NULL,NULL),(101414,936374,6,'director',NULL,NULL),(101414,941314,7,'writer','animation screenplay by',NULL),(101414,152312,8,'writer','story',NULL),(101414,761498,9,'writer','story',NULL),(101452,5929,10,'cinematographer','director of photography',NULL),(101452,206,1,'actor',NULL,'[\"Ted\"]'),(101452,935664,2,'actor',NULL,'[\"Bill\",\"Granny Preston\"]'),(101452,6669,3,'actor',NULL,'[\"Grim Reaper\"]'),(101452,722,4,'actor',NULL,'[\"De Nomolos\"]'),(101452,382072,5,'director',NULL,NULL),(101452,558533,6,'writer','written by',NULL),(101452,4412,7,'writer','written by',NULL),(101452,472256,8,'producer','producer',NULL),(101452,628056,9,'composer',NULL,NULL),(101458,6251,10,'composer',NULL,NULL),(101458,458,1,'actor',NULL,'[\"Sam Farber, alias Trevor McPhee\"]'),(101458,231652,2,'actress',NULL,'[\"Claire Tourneur\"]'),(101458,265989,3,'actor',NULL,'[\"Mario\"]'),(101458,878090,4,'actor',NULL,'[\"Arzt\"]'),(101458,694,5,'director',NULL,NULL),(101458,137020,6,'writer','screenplay',NULL),(101458,21899,7,'writer',NULL,NULL),(101458,202367,8,'producer','producer',NULL),(101458,850038,9,'producer','producer',NULL),(101465,16,10,'composer',NULL,NULL),(101465,89937,1,'actor',NULL,'[\"Laforgue\"]'),(101465,949237,2,'actor',NULL,'[\"Daniel\"]'),(101465,2142,3,'actress',NULL,'[\"Annuka\"]'),(101465,770763,4,'actor',NULL,'[\"Chomina\"]'),(101465,915,5,'director',NULL,NULL),(101465,600972,6,'writer','screenplay',NULL),(101465,487190,7,'producer','producer',NULL),(101465,589738,8,'producer','producer',NULL),(101465,717008,9,'producer','producer',NULL),(101507,421,1,'actor',NULL,'[\"Tre Styles\"]'),(101507,401,2,'actor',NULL,'[\"Furious Styles\"]'),(101507,15677,3,'actor',NULL,'[\"S.A.T. Man\"]'),(101507,42998,4,'actor',NULL,'[\"Knucklehead #2\"]'),(101507,5436,5,'director',NULL,NULL),(101507,630222,6,'producer','producer',NULL),(101507,6010,7,'composer',NULL,NULL),(101507,589941,8,'cinematographer','director of photography',NULL),(101507,134164,9,'editor',NULL,NULL),(101540,5711,10,'cinematographer','director of photography',NULL),(101540,134,1,'actor',NULL,'[\"Max Cady\"]'),(101540,560,2,'actor',NULL,'[\"Sam Bowden\"]'),(101540,1448,3,'actress',NULL,'[\"Leigh Bowden\"]'),(101540,496,4,'actress',NULL,'[\"Danielle Bowden\"]'),(101540,217,5,'director',NULL,NULL),(101540,531792,6,'writer','novel \"The Executioners\"',NULL),(101540,916139,7,'writer','earlier screenplay',NULL),(101540,834338,8,'writer','screenplay',NULL),(101540,208381,9,'producer','producer',NULL),(101587,5871,10,'cinematographer','director of photography',NULL),(101587,345,1,'actor',NULL,'[\"Mitch Robbins\"]'),(101587,1588,2,'actor',NULL,'[\"Curly\"]'),(101587,827663,3,'actor',NULL,'[\"Phil Berquist\"]'),(101587,456124,4,'actor',NULL,'[\"Ed Furillo\"]'),(101587,881038,5,'director',NULL,NULL),(101587,304665,6,'writer','written by',NULL),(101587,541632,7,'writer','written by',NULL),(101587,808511,8,'producer','producer',NULL),(101587,3299,9,'composer',NULL,NULL),(101597,656,1,'actress',NULL,'[\"Victim\"]'),(101597,614,2,'actor',NULL,'[\"Interrogator\"]'),(101597,80233,3,'director',NULL,NULL),(101597,583558,4,'producer','producer',NULL),(101597,251849,5,'composer',NULL,NULL),(101597,691084,6,'cinematographer',NULL,NULL),(101597,161497,7,'editor',NULL,NULL),(101597,411130,8,'production_designer',NULL,NULL),(101605,709721,10,'producer','producer',NULL),(101605,35087,1,'actor',NULL,'[\"Jimmy Rabbitte\"]'),(101605,13932,2,'actor',NULL,'[\"Steven Clifford\"]'),(101605,50337,3,'actress',NULL,'[\"Imelda Quirke\"]'),(101605,448204,4,'actress',NULL,'[\"Natalie Murphy\"]'),(101605,570,5,'director',NULL,NULL),(101605,236486,6,'writer','novel',NULL),(101605,166074,7,'writer','screenplay',NULL),(101605,478588,8,'writer','screenplay',NULL),(101605,4405791,9,'producer','producer',NULL),(101627,649209,10,'writer','story by',NULL),(101627,130890,1,'actor',NULL,'[\"Clifford\"]'),(101627,111846,2,'actress',NULL,'[\"Annie\"]'),(101627,184085,3,'actor',NULL,'[\"Johnny\"]'),(101627,184102,4,'actor',NULL,'[\"Johnny\"]'),(101627,677253,5,'director',NULL,NULL),(101627,158006,6,'writer','Critters created by',NULL),(101627,158008,7,'writer','Critters created by',NULL),(101627,158014,8,'writer','Critters created by',NULL),(101627,367703,9,'writer','story by',NULL),(101628,130369,10,'cinematographer','director of photography',NULL),(101628,649210,1,'actor',NULL,'[\"Charlie McFadden\"]'),(101628,542994,2,'actor',NULL,'[\"Counselor Tetra\",\"Ug\"]'),(101628,926510,3,'actor',NULL,'[\"Ethan\"]'),(101628,396992,4,'actor',NULL,'[\"Rick\"]'),(101628,367703,5,'director',NULL,NULL),(101628,649209,6,'writer','story by',NULL),(101628,528104,7,'writer','screenplay by',NULL),(101628,775017,8,'writer','screenplay by',NULL),(101628,732974,9,'composer',NULL,NULL),(101640,947921,10,'composer',NULL,NULL),(101640,84,1,'actress',NULL,'[\"Songlian\"]'),(101640,530864,2,'actor',NULL,'[\"The Master\"]'),(101640,372078,3,'actress',NULL,'[\"Meishan (Third Wife)\"]'),(101640,134862,4,'actress',NULL,'[\"Zhuoyan (Second Wife)\"]'),(101640,955443,5,'director',NULL,NULL),(101640,867263,6,'writer','original novel \"Wives and Concubines\" by',NULL),(101640,955600,7,'writer','scriptwriter',NULL),(101640,158393,8,'producer','producer',NULL),(101640,846190,9,'composer',NULL,NULL),(101698,983,1,'actor',NULL,'[\"Daniel Miller\"]'),(101698,658,2,'actress',NULL,'[\"Julia\"]'),(101698,1800,3,'actor',NULL,'[\"Bob Diamond\"]'),(101698,335519,4,'actress',NULL,'[\"Lena Foster\"]'),(101698,342045,5,'producer','producer',NULL),(101698,330759,6,'composer',NULL,NULL),(101698,5679,7,'cinematographer','director of photography',NULL),(101698,277722,8,'editor',NULL,NULL),(101698,709944,9,'production_designer',NULL,NULL),(101701,828731,10,'cinematographer','director of photography',NULL),(101701,1006,1,'actor',NULL,'[\"Jack Gable\"]'),(101701,446,2,'actress',NULL,'[\"Janet Dubois\",\"Louise\"]'),(101701,759924,3,'actress',NULL,'[\"Rachel Hedison\",\"Laura Claybourne\"]'),(101701,994,4,'actor',NULL,'[\"Carter Hedison\"]'),(101701,542539,5,'director',NULL,NULL),(101701,169549,6,'writer','written by',NULL),(101701,293391,7,'writer','written by',NULL),(101701,165602,8,'producer','producer',NULL),(101701,6056,9,'composer',NULL,NULL),(101702,576863,10,'composer',NULL,NULL),(101702,1024,1,'actor',NULL,'[\"Charlie\"]'),(101702,235040,2,'actor',NULL,'[\"Sam\"]'),(101702,635869,3,'actor',NULL,'[\"Greg\"]'),(101702,671992,4,'actor',NULL,'[\"Richard\"]'),(101702,278735,5,'director',NULL,NULL),(101702,3978,6,'writer','written by',NULL),(101702,490417,7,'writer','written by',NULL),(101702,203246,8,'writer','written by',NULL),(101702,668898,9,'producer','producer',NULL),(101745,2417,10,'writer','screenplay',NULL),(101745,150,1,'actor',NULL,'[\"Ben Stone\"]'),(101745,689,2,'actress',NULL,'[\"Lou\"]'),(101745,400464,3,'actor',NULL,'[\"Dr. Hogue\"]'),(101745,437,4,'actor',NULL,'[\"Hank\"]'),(101745,1994,5,'director',NULL,NULL),(101745,795743,6,'writer','book \"What?...Dead Again?\"',NULL),(101745,499348,7,'writer','adaptation',NULL),(101745,696949,8,'writer','screenplay',NULL),(101745,780620,9,'writer','screenplay',NULL),(101757,717648,10,'producer','producer',NULL),(101757,775,1,'actress',NULL,'[\"Swell\"]'),(101757,1026,2,'actress',NULL,'[\"Rose Lindsey\"]'),(101757,315288,3,'actor',NULL,'[\"Gus\"]'),(101757,1038,4,'actor',NULL,'[\"Bryan\"]'),(101757,378893,5,'director',NULL,NULL),(101757,484475,6,'writer','written by',NULL),(101757,411416,7,'writer','written by',NULL),(101757,628352,8,'producer','producer',NULL),(101757,680539,9,'producer','producer',NULL),(101764,447396,10,'composer',NULL,NULL),(101764,241,1,'actor',NULL,'[\"Alex\",\"Chad Wagner\"]'),(101764,507212,2,'actor',NULL,'[\"Frank Avery\"]'),(101764,789585,3,'actress',NULL,'[\"Danielle Wilde\"]'),(101764,263691,4,'actress',NULL,'[\"Kara\"]'),(101764,504802,5,'director',NULL,NULL),(101764,576228,6,'writer','screen story',NULL),(101764,471298,7,'writer','screen story',NULL),(101764,2170,8,'producer','producer',NULL),(101764,1274,9,'producer','producer',NULL),(101765,936915,10,'editor',NULL,NULL),(101765,1393,1,'actress',NULL,'[\"Weronika\",\"Véronique\"]'),(101765,468651,2,'actor',NULL,'[\"Le père de Weronika\"]'),(101765,344798,3,'actress',NULL,'[\"La Tante\"]'),(101765,420065,4,'actress',NULL,'[\"La femme barjolée\"]'),(101765,1425,5,'director',NULL,NULL),(101765,682830,6,'writer',NULL,NULL),(101765,209250,7,'producer','producer',NULL),(101765,6237,8,'composer',NULL,NULL),(101765,5744,9,'cinematographer',NULL,NULL),(101775,6055,10,'composer',NULL,NULL),(101775,121,1,'actress',NULL,'[\"Elizabeth\"]'),(101775,562201,2,'actor',NULL,'[\"Drop Dead Fred\"]'),(101775,556850,3,'actress',NULL,'[\"Polly\"]'),(101775,1513,4,'actor',NULL,'[\"Charles\"]'),(101775,429517,5,'director',NULL,NULL),(101775,1228100,6,'writer','story',NULL),(101775,204313,7,'writer','written by',NULL),(101775,277759,8,'writer','written by',NULL),(101775,916986,9,'producer','producer',NULL),(101811,537402,10,'cinematographer',NULL,NULL),(101811,547,1,'actor',NULL,'[\"Mellersh Wilkins\"]'),(101811,687506,2,'actress',NULL,'[\"Mrs Fisher\"]'),(101811,1669,3,'actress',NULL,'[\"Rose Arbuthnot\"]'),(101811,908116,4,'actress',NULL,'[\"Caroline Dester\"]'),(101811,1565,5,'director',NULL,NULL),(101811,901896,6,'writer','novel',NULL),(101811,55726,7,'writer',NULL,NULL),(101811,778840,8,'producer','producer',NULL),(101811,5961,9,'composer',NULL,NULL),(101829,70631,10,'cinematographer',NULL,NULL),(101829,837784,1,'actress',NULL,'[\"Katharina Hartmann\"]'),(101829,852,2,'actor',NULL,'[\"Leopold Kessler\"]'),(101829,1424,3,'actor',NULL,'[\"Lawrence Hartmann\"]'),(101829,433495,4,'actor',NULL,'[\"Uncle Kessler\"]'),(101829,1885,5,'director',NULL,NULL),(101829,905071,6,'writer',NULL,NULL),(101829,159734,7,'producer','producer',NULL),(101829,421639,8,'producer','producer',NULL),(101829,389996,9,'composer',NULL,NULL),(101844,5856,10,'cinematographer',NULL,NULL),(101844,237,1,'actor',NULL,'[\"Bobby\"]'),(101844,704618,2,'actress',NULL,'[\"The Girl\"]'),(101844,488644,3,'actor',NULL,'[\"Cissy\"]'),(101844,7650165,4,'actor',NULL,'[\"The Dog\"]'),(101844,363553,5,'director',NULL,NULL),(101844,830626,6,'writer','written by',NULL),(101844,156283,7,'producer','producer',NULL),(101844,680635,8,'producer','executive producer',NULL),(101844,6055,9,'composer',NULL,NULL),(101889,695536,10,'cinematographer','director of photography',NULL),(101889,313,1,'actor',NULL,'[\"Jack\"]'),(101889,245,2,'actor',NULL,'[\"Parry\"]'),(101889,117035,3,'actor',NULL,'[\"Radio Engineer\"]'),(101889,3051240,4,'actor',NULL,'[\"Radio Engineer\"]'),(101889,416,5,'director',NULL,NULL),(101889,481418,6,'writer','written by',NULL),(101889,384185,7,'producer','producer',NULL),(101889,643553,8,'producer','producer',NULL),(101889,6070,9,'composer',NULL,NULL),(101891,859661,10,'production_designer',NULL,NULL),(101891,870186,1,'actor',NULL,'[\"Duck\"]'),(101891,942646,2,'actor',NULL,'[\"Eddie\"]'),(101891,502442,3,'actor',NULL,'[\"J.T.\"]'),(101891,502015,4,'actor',NULL,'[\"Dresser\"]'),(101891,5540,5,'writer','written by',NULL),(101891,428699,6,'producer','producer',NULL),(101891,6010,7,'composer',NULL,NULL),(101891,226778,8,'cinematographer',NULL,NULL),(101891,141713,9,'editor',NULL,NULL),(101898,317163,10,'editor',NULL,NULL),(101898,852965,1,'actor',NULL,'[\"Danny Embling\"]'),(101898,628601,2,'actress',NULL,'[\"Thandiwe Adjewa\"]'),(101898,173,3,'actress',NULL,'[\"Nicola\"]'),(101898,741261,4,'actor',NULL,'[\"\'Gilby\' Fryer\"]'),(101898,241090,5,'director',NULL,NULL),(101898,371249,6,'producer','producer',NULL),(101898,4306,7,'producer','producer',NULL),(101898,593294,8,'producer','producer',NULL),(101898,123587,9,'cinematographer',NULL,NULL),(101902,816050,10,'producer','producer',NULL),(101902,541,1,'actress',NULL,'[\"Dixie Leonard\"]'),(101902,1001,2,'actor',NULL,'[\"Eddie Sparks\"]'),(101902,1719,3,'actor',NULL,'[\"Art Silver\"]'),(101902,641929,4,'actor',NULL,'[\"Shephard\"]'),(101902,41932,5,'director',NULL,NULL),(101902,422791,6,'writer','story',NULL),(101902,490657,7,'writer','story',NULL),(101902,108613,8,'writer','screenplay',NULL),(101902,115668,9,'producer','producer',NULL),(101912,204216,10,'editor',NULL,NULL),(101912,199,1,'actor',NULL,'[\"Johnny\"]'),(101912,201,2,'actress',NULL,'[\"Frankie\"]'),(101912,1185,3,'actor',NULL,'[\"Nick\"]'),(101912,1447,4,'actor',NULL,'[\"Tim\"]'),(101912,5190,5,'director',NULL,NULL),(101912,573645,6,'writer','play \"Frankie and Johnny in the Clair De Lune\"',NULL),(101912,6121,7,'composer',NULL,NULL),(101912,5883,8,'cinematographer',NULL,NULL),(101912,131311,9,'editor',NULL,NULL),(101917,6189,10,'composer',NULL,NULL),(101917,387,1,'actor',NULL,'[\"Freddy Krueger\"]'),(101917,5571,2,'actress',NULL,'[\"Maggie Burroughs\"]'),(101917,338625,3,'actor',NULL,'[\"John Doe\"]'),(101917,213034,4,'actress',NULL,'[\"Tracy\"]'),(101917,3080,5,'director',NULL,NULL),(101917,127,6,'writer','characters',NULL),(101917,6894,7,'writer','screenplay',NULL),(101917,790144,8,'producer','producer',NULL),(101917,912403,9,'producer','producer',NULL),(101921,801005,10,'cinematographer','director of photography',NULL),(101921,870,1,'actress',NULL,'[\"Evelyn Couch\"]'),(101921,1788,2,'actress',NULL,'[\"Ninny Threadgoode\"]'),(101921,524,3,'actress',NULL,'[\"Idgie Threadgoode\"]'),(101921,571,4,'actress',NULL,'[\"Ruth Jamison\"]'),(101921,816,5,'director',NULL,NULL),(101921,280840,6,'writer','novel \"Fried Green Tomatoes At the Whistle Stop Cafe\"',NULL),(101921,811807,7,'writer','screenplay',NULL),(101921,449549,8,'producer','producer',NULL),(101921,2353,9,'composer',NULL,NULL),(101991,756912,10,'cinematographer',NULL,NULL),(101991,613561,1,'actress',NULL,'[\"Kane\"]'),(101991,152,2,'actor',NULL,'[\"Clark\"]'),(101991,407030,3,'actor',NULL,'[\"Tadao\"]'),(101991,443238,4,'actress',NULL,'[\"Machino\"]'),(101991,41,5,'director',NULL,NULL),(101991,613594,6,'writer','novel \"Nabe no Naka\"',NULL),(101991,393094,7,'writer',NULL,NULL),(101991,475902,8,'producer','producer',NULL),(101991,407412,9,'composer',NULL,NULL),(102034,205287,10,'producer','producer',NULL),(102034,483,1,'actor',NULL,'[\"MacLeod\"]'),(102034,125,2,'actor',NULL,'[\"Ramírez\"]'),(102034,515,3,'actress',NULL,'[\"Louise\"]'),(102034,461,4,'actor',NULL,'[\"Katana\"]'),(102034,611683,5,'director',NULL,NULL),(102034,927074,6,'writer','characters',NULL),(102034,166018,7,'writer','story',NULL),(102034,659949,8,'writer','story',NULL),(102034,69282,9,'writer','screenplay',NULL),(102057,5086,10,'producer','producer',NULL),(102057,163,1,'actor',NULL,'[\"Captain Hook\"]'),(102057,245,2,'actor',NULL,'[\"Peter Banning\",\"Peter Pan\"]'),(102057,210,3,'actress',NULL,'[\"Tinkerbell\"]'),(102057,1364,4,'actor',NULL,'[\"Smee\"]'),(102057,229,5,'director',NULL,NULL),(102057,57381,6,'writer','books',NULL),(102057,366337,7,'writer','screen story',NULL),(102057,145309,8,'writer','screen story',NULL),(102057,549369,9,'writer','screenplay',NULL),(102059,475957,10,'editor',NULL,NULL),(102059,221,1,'actor',NULL,'[\"Topper Harley\",\"Rhett Butler\",\"Superman\"]'),(102059,144,2,'actor',NULL,'[\"Kent Gregory\"]'),(102059,420,3,'actress',NULL,'[\"Ramada Thompson\",\"Scarlett O\'Hara\",\"Lois Lane\"]'),(102059,978,4,'actor',NULL,'[\"Adm. Benson\"]'),(102059,720,5,'director',NULL,NULL),(102059,698493,6,'writer','written by',NULL),(102059,45927,7,'producer','producer',NULL),(102059,6169,8,'composer',NULL,NULL),(102059,124832,9,'cinematographer',NULL,NULL),(102070,4383,10,'composer',NULL,NULL),(102070,246,1,'actor',NULL,'[\"Hudson Hawk\"]'),(102070,732,2,'actor',NULL,'[\"Tommy Five-Tone\"]'),(102070,510,3,'actress',NULL,'[\"Anna Baragli\"]'),(102070,336,4,'actor',NULL,'[\"George Kaplan\"]'),(102070,499724,5,'director',NULL,NULL),(102070,469234,6,'writer','story',NULL),(102070,211823,7,'writer','screenplay',NULL),(102070,914058,8,'writer','screenplay',NULL),(102070,5428,9,'producer','producer',NULL),(102103,3920,10,'editor',NULL,NULL),(102103,1114,1,'actress',NULL,'[\"George Sand\"]'),(102103,424,2,'actor',NULL,'[\"Frederic Chopin\"]'),(102103,1597,3,'actor',NULL,'[\"Alfred De Musset\"]'),(102103,1613,4,'actress',NULL,'[\"Marie D\'Agoult\"]'),(102103,487567,5,'director',NULL,NULL),(102103,449576,6,'writer','written by',NULL),(102103,645596,7,'producer','producer',NULL),(102103,792320,8,'producer','producer',NULL),(102103,5756,9,'cinematographer',NULL,NULL),(102138,2354,10,'composer',NULL,NULL),(102138,126,1,'actor',NULL,'[\"Jim Garrison\"]'),(102138,198,2,'actor',NULL,'[\"Lee Harvey Oswald\"]'),(102138,493,3,'actor',NULL,'[\"Jack Martin\"]'),(102138,527,4,'actor',NULL,'[\"Senator Long\"]'),(102138,231,5,'director',NULL,NULL),(102138,308426,6,'writer','based on the book \"On the Trail of the Assassins\" by',NULL),(102138,550285,7,'writer','based on the book \"Crossfire: The Plot That Killed Kennedy\" by',NULL),(102138,804466,8,'writer','screenplay by',NULL),(102138,457715,9,'producer','producer',NULL),(102202,439844,10,'producer','producer',NULL),(102202,593711,1,'actor',NULL,'[\"David Sloan\"]'),(102202,1967,2,'actor',NULL,'[\"Justin Maciah\"]'),(102202,150862,3,'actor',NULL,'[\"Xian Chow\"]'),(102202,846480,4,'actor',NULL,'[\"Sanga\"]'),(102202,89502,5,'director',NULL,NULL),(102202,228262,6,'writer','characters',NULL),(102202,241,7,'writer','characters',NULL),(102202,275286,8,'writer','written by',NULL),(102202,295375,9,'producer','producer',NULL),(102250,365239,10,'editor',NULL,NULL),(102250,188,1,'actor',NULL,'[\"Harris K. Telemacher\"]'),(102250,5481,2,'actress',NULL,'[\"Sara McDowel\"]'),(102250,1290,3,'actor',NULL,'[\"Roland Mackey\"]'),(102250,572,4,'actress',NULL,'[\"SanDeE*\"]'),(102250,413875,5,'director',NULL,NULL),(102250,578176,6,'producer','producer',NULL),(102250,705136,7,'producer','producer',NULL),(102250,578185,8,'composer',NULL,NULL),(102250,242491,9,'cinematographer','director of photography',NULL),(102266,4383,10,'composer',NULL,NULL),(102266,246,1,'actor',NULL,'[\"Joe Hallenbeck\"]'),(102266,1834,2,'actor',NULL,'[\"Jimmy Dix\"]'),(102266,1210,3,'actress',NULL,'[\"Sarah Hallenbeck\"]'),(102266,932244,4,'actor',NULL,'[\"Sheldon Marcone\"]'),(102266,1716,5,'director',NULL,NULL),(102266,948,6,'writer','screenplay by',NULL),(102266,382855,7,'writer','story by',NULL),(102266,506546,8,'producer','producer',NULL),(102266,5428,9,'producer','producer',NULL),(102303,611703,10,'editor',NULL,NULL),(102303,316,1,'actor',NULL,'[\"Goddard Bolt\"]'),(102303,690,2,'actress',NULL,'[\"Molly\"]'),(102303,1787,3,'actor',NULL,'[\"Vance Crasswell\"]'),(102303,659573,4,'actor',NULL,'[\"Pritchard\"]'),(102303,164444,5,'writer','story',NULL),(102303,209918,6,'writer','story',NULL),(102303,352229,7,'writer','story',NULL),(102303,606657,8,'composer',NULL,NULL),(102303,692925,9,'cinematographer','director of photography',NULL),(102313,5934,10,'cinematographer',NULL,NULL),(102313,275,1,'actress',NULL,'[\"Lucy\"]'),(102313,309,2,'actor',NULL,'[\"Monte\"]'),(102313,50264,3,'actress',NULL,'[\"Vivian\"]'),(102313,339737,4,'actor',NULL,'[\"Dante\"]'),(102313,791672,5,'director',NULL,NULL),(102313,112618,6,'writer',NULL,NULL),(102313,414029,7,'producer','producer',NULL),(102313,649792,8,'producer','producer',NULL),(102313,2353,9,'composer',NULL,NULL),(102370,310422,10,'self',NULL,'[\"Self - Dancer\"]'),(102370,187,1,'self',NULL,'[\"Self\"]'),(102370,217752,2,'self',NULL,'[\"Self - Vocals and Dancer\"]'),(102370,365153,3,'self',NULL,'[\"Self - Vocals and Dancer\"]'),(102370,131104,4,'self',NULL,'[\"Self - Dancer\"]'),(102370,450194,5,'director',NULL,NULL),(102370,165472,6,'producer','producer',NULL),(102370,736502,7,'producer','producer',NULL),(102370,113084,8,'editor',NULL,NULL),(102370,190065,9,'self',NULL,'[\"Self - Dancer\"]'),(102397,929571,10,'composer',NULL,NULL),(102397,1709,1,'actor',NULL,'[\"Bertie\"]'),(102397,750004,2,'actress',NULL,'[\"Uschi\"]'),(102397,311348,3,'actor',NULL,'[\"Gerd\"]'),(102397,73827,4,'actress',NULL,'[\"Florentine\"]'),(102397,127294,5,'director',NULL,NULL),(102397,186525,6,'writer','written by',NULL),(102397,251536,7,'writer','presenter',NULL),(102397,609265,8,'producer','producer',NULL),(102397,954874,9,'producer','producer',NULL),(102411,413013,10,'editor',NULL,NULL),(102411,107,1,'actress',NULL,'[\"Vicki Anderson\"]'),(102411,285,2,'actor',NULL,'[\"Charley Pearl\"]'),(102411,5162,3,'actor',NULL,'[\"Lew Horner\"]'),(102411,223,4,'actress',NULL,'[\"Adele Horner\"]'),(102411,715916,5,'director',NULL,NULL),(102411,800319,6,'writer','written by',NULL),(102411,674303,7,'producer','producer',NULL),(102411,628056,8,'composer',NULL,NULL),(102411,4241,9,'cinematographer',NULL,NULL),(102426,591184,10,'producer','producer',NULL),(102426,7746,1,'actor',NULL,'[\"Nicola Lorusso\"]'),(102426,81702,2,'actor',NULL,'[\"Raffaele Montini\"]'),(102426,147794,3,'actor',NULL,'[\"Antonio Farina\"]'),(102426,84241,4,'actor',NULL,'[\"Corrado Noventa\"]'),(102426,759368,5,'director',NULL,NULL),(102426,599291,6,'writer',NULL,NULL),(102426,75706,7,'producer','producer',NULL),(102426,147601,8,'producer','producer',NULL),(102426,147603,9,'producer','producer',NULL),(102436,1250,1,'actress',NULL,'[\"Camille Pelleveau\"]'),(102436,342393,2,'actress',NULL,'[\"Joëlle\"]'),(102436,3508,3,'actor',NULL,'[\"Raymond Pelleveau (Young Father)\"]'),(102436,138405,4,'actor',NULL,'[\"Raymond Pelleveau (Old Father)\"]'),(102436,88397,5,'director',NULL,NULL),(102436,515201,6,'producer','producer',NULL),(102436,3542,7,'cinematographer',NULL,NULL),(102436,581000,8,'editor',NULL,NULL),(102436,582891,9,'production_designer',NULL,NULL),(102492,108629,10,'editor',NULL,NULL),(102492,1043,1,'actress',NULL,'[\"Vada Sultenfuss\"]'),(102492,346,2,'actor',NULL,'[\"Thomas J. Sennett\"]'),(102492,101,3,'actor',NULL,'[\"Harry Sultenfuss\"]'),(102492,130,4,'actress',NULL,'[\"Shelly DeVoto\"]'),(102492,956052,5,'director',NULL,NULL),(102492,253214,6,'writer','written by',NULL),(102492,4976,7,'producer','producer',NULL),(102492,6133,8,'composer',NULL,NULL),(102492,254580,9,'cinematographer','director of photography',NULL),(102494,4090,10,'cinematographer',NULL,NULL),(102494,203,1,'actor',NULL,'[\"Mike Waters\"]'),(102494,206,2,'actor',NULL,'[\"Scott Favor\"]'),(102494,751638,3,'actor',NULL,'[\"Richard Waters\"]'),(102494,724927,4,'actor',NULL,'[\"Bob Pigeon\"]'),(102494,1814,5,'director',NULL,NULL),(102494,636,6,'writer','play \"Henry IV\"',NULL),(102494,662435,7,'producer','producer',NULL),(102494,821247,8,'composer',NULL,NULL),(102494,6408,9,'cinematographer',NULL,NULL),(102510,627673,10,'composer',NULL,NULL),(102510,558,1,'actor',NULL,'[\"Lt. Frank Drebin\"]'),(102510,1636,2,'actress',NULL,'[\"Jane Spencer\"]'),(102510,1421,3,'actor',NULL,'[\"Ed Hocken\"]'),(102510,1740,4,'actor',NULL,'[\"Nordberg\"]'),(102510,1878,5,'director',NULL,NULL),(102510,720,6,'writer','television series Police Squad',NULL),(102510,958387,7,'writer','television series Police Squad',NULL),(102510,698493,8,'writer','written by',NULL),(102510,919154,9,'producer','producer',NULL),(102522,530804,1,'actress',NULL,'[\"Monika\"]'),(102522,715784,2,'actor',NULL,'[\"Mark\"]'),(102522,819439,3,'actress',NULL,NULL),(102522,543659,4,'actress',NULL,'[\"Betty\"]'),(102522,125367,5,'director',NULL,NULL),(102522,734585,6,'writer',NULL,NULL),(102522,420572,7,'producer','producer',NULL),(102522,465841,8,'composer',NULL,NULL),(102522,910543,9,'composer',NULL,NULL),(102526,71014,10,'composer','original score composer',NULL),(102526,648,1,'actor',NULL,'[\"Nino Brown\"]'),(102526,1384,2,'actor',NULL,'[\"Scotty Appleton\"]'),(102526,5300,3,'actor',NULL,'[\"Gee Money\"]'),(102526,1674,4,'actor',NULL,'[\"Pookie\"]'),(102526,5522,5,'director',NULL,NULL),(102526,942870,6,'writer','story',NULL),(102526,177875,7,'writer','screenplay',NULL),(102526,413547,8,'producer','producer',NULL),(102526,570408,9,'producer','producer',NULL),(102536,213,1,'actress',NULL,'[\"Corky (segment \\\"Los Angeles\\\")\"]'),(102536,1687,2,'actress',NULL,'[\"Victoria Snelling (segment \\\"Los Angeles\\\")\"]'),(102536,266170,3,'actress',NULL,'[\"Rock Manager (segment \\\"Los Angeles\\\")\"]'),(102536,778804,4,'actor',NULL,'[\"Rock Musician #1 (segment \\\"Los Angeles\\\")\"]'),(102536,464,5,'director',NULL,NULL),(102536,1823,6,'composer',NULL,NULL),(102536,5695,7,'cinematographer','director of photography',NULL),(102536,704950,8,'editor',NULL,NULL),(102573,230069,10,'production_designer',NULL,NULL),(102573,518,1,'actor',NULL,'[\"Jake\"]'),(102573,510,2,'actress',NULL,'[\"Tina (Oates)\"]'),(102573,357,3,'actress',NULL,'[\"Joan\"]'),(102573,203958,4,'actress',NULL,'[\"Jenny\"]'),(102573,512327,5,'director',NULL,NULL),(102573,219654,6,'producer','producer',NULL),(102573,126642,7,'composer',NULL,NULL),(102573,914239,8,'cinematographer',NULL,NULL),(102573,288038,9,'editor',NULL,NULL),(102587,5347659,10,'producer','producer',NULL),(102587,408030,1,'actress',NULL,'[\"Taeko\"]'),(102587,945839,2,'actor',NULL,'[\"Toshio\"]'),(102587,393365,3,'actress',NULL,'[\"Taeko (Child)\"]'),(102587,407372,4,'actress',NULL,'[\"Tsuneko\"]'),(102587,847223,5,'director',NULL,NULL),(102587,645470,6,'writer','manga',NULL),(102587,7818935,7,'writer','manga',NULL),(102587,293168,8,'writer','english adaptation',NULL),(102587,840699,9,'producer','producer',NULL),(102603,930,10,'composer',NULL,NULL),(102603,230,1,'actor',NULL,'[\"Angelo \'Snaps\' Provolone\"]'),(102603,1560,2,'actress',NULL,'[\"Sofia Provolone\"]'),(102603,726200,3,'actor',NULL,'[\"Aldo\"]'),(102603,1590,4,'actor',NULL,'[\"Connie\"]'),(102603,484,5,'director',NULL,NULL),(102603,536249,6,'writer','play',NULL),(102603,57398,7,'writer','screenplay',NULL),(102603,611848,8,'writer','screenplay',NULL),(102603,69798,9,'producer','producer',NULL),(102609,5549,10,'cinematographer','director of photography',NULL),(102609,362,1,'actor',NULL,'[\"Lawrence Garfield\"]'),(102609,60,2,'actor',NULL,'[\"Andrew Jorgenson\"]'),(102609,542,3,'actress',NULL,'[\"Kate Sullivan\"]'),(102609,1453,4,'actress',NULL,'[\"Bea Sullivan\"]'),(102609,422484,5,'director',NULL,NULL),(102609,827957,6,'writer','play',NULL),(102609,765091,7,'writer','screenplay',NULL),(102609,452305,8,'producer','producer',NULL),(102609,628056,9,'composer',NULL,NULL),(102685,506597,10,'producer','producer',NULL),(102685,664,1,'actor',NULL,'[\"Bodhi\"]'),(102685,206,2,'actor',NULL,'[\"Johnny Utah\"]'),(102685,997,3,'actor',NULL,'[\"Pappas\"]'),(102685,1614,4,'actress',NULL,'[\"Tyler\"]'),(102685,941,5,'director',NULL,NULL),(102685,4488,6,'writer','story',NULL),(102685,407717,7,'writer','story',NULL),(102685,9222,8,'producer','producer',NULL),(102685,169522,9,'producer','producer',NULL),(102797,499589,10,'cinematographer',NULL,NULL),(102797,920,1,'actor',NULL,'[\"Sir Robert Hode\",\"Robin Hood\"]'),(102797,235,2,'actress',NULL,'[\"Maid Marian\"]'),(102797,1638,3,'actor',NULL,'[\"Sir Miles Folcanet\"]'),(102797,2081,4,'actor',NULL,'[\"Prince John\"]'),(102797,410139,5,'director',NULL,NULL),(102797,720338,6,'writer','story',NULL),(102797,569819,7,'writer','teleplay',NULL),(102797,705381,8,'producer','producer',NULL),(102797,121431,9,'composer',NULL,NULL),(102798,5801,10,'cinematographer','director of photography',NULL),(102798,126,1,'actor',NULL,'[\"Robin of Locksley\"]'),(102798,151,2,'actor',NULL,'[\"Azeem\"]'),(102798,1512,3,'actress',NULL,'[\"Marian\"]'),(102798,225,4,'actor',NULL,'[\"Will Scarlett\"]'),(102798,721817,5,'director',NULL,NULL),(102798,219720,6,'writer','story',NULL),(102798,914709,7,'writer','screenplay',NULL),(102798,507669,8,'producer','producer',NULL),(102798,4383,9,'composer',NULL,NULL),(102803,330077,10,'producer','producer',NULL),(102803,1004,1,'actor',NULL,'[\"Cliff\"]'),(102803,124,2,'actress',NULL,'[\"Jenny\"]'),(102803,273,3,'actor',NULL,'[\"Peevy\"]'),(102803,1096,4,'actor',NULL,'[\"Neville Sinclair\"]'),(102803,2653,5,'director',NULL,NULL),(102803,828349,6,'writer','graphic novel \"The Rocketeer\"',NULL),(102803,82677,7,'writer','story',NULL),(102803,210290,8,'writer','story',NULL),(102803,213100,9,'writer','story',NULL),(102817,402763,10,'production_designer',NULL,NULL),(102817,417,1,'actor',NULL,'[\"Rubin Farr\"]'),(102817,381606,2,'actor',NULL,'[\"Ed Tuttle\"]'),(102817,947,3,'actress',NULL,'[\"Rula\"]'),(102817,338867,4,'actor',NULL,'[\"Mr. Busta\"]'),(102817,365408,5,'director',NULL,NULL),(102817,916986,6,'producer','producer',NULL),(102817,6208,7,'composer',NULL,NULL),(102817,240891,8,'cinematographer',NULL,NULL),(102817,774395,9,'editor',NULL,NULL),(102829,327649,10,'editor',NULL,NULL),(102829,954114,1,'actress',NULL,'[\"Roswitha\"]'),(102829,485807,2,'actress',NULL,'[\"Kotzebue\"]'),(102829,442725,3,'actor',NULL,'[\"Butch\"]'),(102829,648413,4,'actor',NULL,'[\"Ovy\"]'),(102829,727,5,'director',NULL,NULL),(102829,12281,6,'writer','screenplay co-written and translated from the German by',NULL),(102829,12280,7,'producer','producer',NULL),(102829,854551,8,'composer',NULL,NULL),(102829,5875,9,'cinematographer','director of photography',NULL),(102898,317004,10,'editor',NULL,NULL),(102898,1281,1,'actor',NULL,'[\"Shakes the Clown\"]'),(102898,113935,2,'actress',NULL,'[\"Judy\"]'),(102898,62070,3,'actor',NULL,'[\"Ty the Rodeo Clown\"]'),(102898,63815,4,'actor',NULL,'[\"Beaten Mime in Park\"]'),(102898,171473,5,'producer','producer',NULL),(102898,973443,6,'producer','producer',NULL),(102898,779860,7,'composer',NULL,NULL),(102898,119785,8,'cinematographer','director of photography',NULL),(102898,204567,9,'cinematographer','director of photography',NULL),(102915,410419,10,'cinematographer','director of photography',NULL),(102915,185,1,'actor',NULL,'[\"Sgt. Chris Kenner\"]'),(102915,488,2,'actor',NULL,'[\"Johnny Murata\"]'),(102915,846480,3,'actor',NULL,'[\"Funekei Yoshida\"]'),(102915,119,4,'actress',NULL,'[\"Minako Okeya\"]'),(102915,504495,5,'director',NULL,NULL),(102915,321739,6,'writer','written by',NULL),(102915,105585,7,'writer','written by',NULL),(102915,127389,8,'producer','producer',NULL),(102915,6080,9,'composer',NULL,NULL),(102926,882588,10,'producer','producer',NULL),(102926,149,1,'actress',NULL,'[\"Clarice Starling\"]'),(102926,164,2,'actor',NULL,'[\"Dr. Hannibal Lecter\"]'),(102926,95029,3,'actor',NULL,'[\"FBI Instructor\"]'),(102926,501435,4,'actress',NULL,'[\"Ardelia Mapp\"]'),(102926,1129,5,'director',NULL,NULL),(102926,365383,6,'writer','based on the novel by',NULL),(102926,848217,7,'writer','screenplay by',NULL),(102926,102508,8,'producer','producer',NULL),(102926,768324,9,'producer','producer',NULL),(102943,101712,10,'actor',NULL,'[\"Officer Bozzio\"]'),(102943,500,1,'actor',NULL,'[\"Should Have Stayed at Bus Station\"]'),(102943,60015,2,'actor',NULL,'[\"Taxi Driver\"]'),(102943,128414,3,'actress',NULL,'[\"Roadkill\"]'),(102943,387914,4,'actress',NULL,'[\"Jogger\"]'),(102943,199679,5,'cinematographer','director of photography',NULL),(102943,722524,6,'editor',NULL,NULL),(102943,387916,7,'actor',NULL,'[\"Running Late\"]'),(102943,416739,8,'actor',NULL,'[\"Hit-and-Run Son\"]'),(102943,226191,9,'actor',NULL,'[\"Grocery Grabber of Death\'s Bounty\"]'),(102951,6293,10,'composer',NULL,NULL),(102951,398,1,'actress',NULL,'[\"Celeste Talbert\"]'),(102951,177,2,'actor',NULL,'[\"Jeffrey Anderson\"]'),(102951,1550,3,'actress',NULL,'[\"Montana Moorehead\"]'),(102951,159,4,'actress',NULL,'[\"Ariel Maloney\"]'),(102951,1355,5,'director',NULL,NULL),(102951,363326,6,'writer','story',NULL),(102951,921,7,'writer','screenplay',NULL),(102951,340112,8,'producer','producer',NULL),(102951,5455,9,'producer','producer',NULL),(102975,415498,10,'producer','producer',NULL),(102975,638,1,'actor',NULL,'[\"Kirk\"]'),(102975,559,2,'actor',NULL,'[\"Spock\"]'),(102975,1420,3,'actor',NULL,'[\"McCoy\"]'),(102975,1150,4,'actor',NULL,'[\"Scotty\"]'),(102975,583292,5,'director',NULL,NULL),(102975,734472,6,'writer','television series \"Star Trek\"',NULL),(102975,465199,7,'writer','story',NULL),(102975,742797,8,'writer','story',NULL),(102975,282364,9,'writer','screenplay',NULL),(102993,212238,10,'cinematographer','director of photography',NULL),(102993,224426,1,'actress',NULL,'[\"Alice\"]'),(102993,307667,2,'actress',NULL,'[\"Constance\"]'),(102993,916345,3,'actress',NULL,'[\"Beth\"]'),(102993,733916,4,'actress',NULL,'[\"Catherine\"]'),(102993,778993,5,'director',NULL,NULL),(102993,218342,6,'writer','written by',NULL),(102993,933262,7,'writer','with',NULL),(102993,90618,8,'writer','with',NULL),(102993,76310,9,'composer',NULL,NULL),(103030,721,1,'actress',NULL,'[\"Rebeca Giner\"]'),(103030,4650,2,'actress',NULL,'[\"Becky del Páramo\"]'),(103030,98395,3,'actor',NULL,'[\"Juez Domínguez\",\"Hugo\",\"Letal\"]'),(103030,515440,4,'actress',NULL,'[\"Margarita\"]'),(103030,264,5,'director',NULL,NULL),(103030,757098,6,'composer',NULL,NULL),(103030,5790,7,'cinematographer',NULL,NULL),(103030,757814,8,'editor',NULL,NULL),(103030,862429,9,'production_designer',NULL,NULL),(103060,206175,10,'producer','producer',NULL),(103060,876958,1,'actress',NULL,'[\"April O\'Neil\"]'),(103060,1831,2,'actor',NULL,'[\"Professor Jordon Perry\"]'),(103060,803145,3,'actor',NULL,'[\"Michelangelo\",\"Soho Man\"]'),(103060,863208,4,'actor',NULL,'[\"Donatello\",\"Foot #3\"]'),(103060,696309,5,'director',NULL,NULL),(103060,247653,6,'writer','based on characters created by',NULL),(103060,481990,7,'writer','based on characters created by',NULL),(103060,486244,8,'writer','written by',NULL),(103060,150858,9,'producer','producer',NULL),(103064,233827,10,'editor',NULL,NULL),(103064,216,1,'actor',NULL,'[\"The Terminator\"]'),(103064,157,2,'actress',NULL,'[\"Sarah Connor\"]'),(103064,411,3,'actor',NULL,'[\"John Connor\"]'),(103064,1598,4,'actor',NULL,'[\"T-1000\"]'),(103064,116,5,'director',NULL,NULL),(103064,936537,6,'writer','written by',NULL),(103064,6075,7,'composer',NULL,NULL),(103064,4229,8,'cinematographer','director of photography',NULL),(103064,119322,9,'editor',NULL,NULL),(103074,633677,10,'editor',NULL,NULL),(103074,215,1,'actress',NULL,'[\"Louise\"]'),(103074,133,2,'actress',NULL,'[\"Thelma\"]'),(103074,172,3,'actor',NULL,'[\"Hal\"]'),(103074,514,4,'actor',NULL,'[\"Jimmy\"]'),(103074,631,5,'director',NULL,NULL),(103074,451884,6,'writer','written by',NULL),(103074,689316,7,'producer','producer',NULL),(103074,1877,8,'composer',NULL,NULL),(103074,939,9,'cinematographer','director of photography',NULL),(103112,931917,10,'producer','producer',NULL),(103112,276,1,'actor',NULL,'[\"Billy Tepper\"]'),(103112,696,2,'actor',NULL,'[\"Joey Trotta\"]'),(103112,176861,3,'actor',NULL,'[\"Snuffy Bradberry\"]'),(103112,228678,4,'actor',NULL,'[\"Luis Cali\"]'),(103112,677943,5,'director',NULL,NULL),(103112,448388,6,'writer','novel',NULL),(103112,462895,7,'writer','screenplay',NULL),(103112,293190,8,'producer','producer',NULL),(103112,380977,9,'producer','producer',NULL),(103241,841,10,'cinematographer','director of photography',NULL),(103241,195,1,'actor',NULL,'[\"Bob Wiley\"]'),(103241,377,2,'actor',NULL,'[\"Dr. Leo Marvin\"]'),(103241,353546,3,'actress',NULL,'[\"Fay Marvin\"]'),(103241,1432,4,'actor',NULL,'[\"Siggy Marvin\"]'),(103241,568,5,'director',NULL,NULL),(103241,765091,6,'writer','story',NULL),(103241,957205,7,'writer','story',NULL),(103241,776114,8,'writer','screenplay',NULL),(103241,6108,9,'composer',NULL,NULL),(103247,694230,10,'producer','producer',NULL),(103247,160,1,'actor',NULL,'[\"Jack\"]'),(103247,1970,2,'actor',NULL,'[\"Alex\"]'),(103247,1058600,3,'actor',NULL,'[\"White Fang\"]'),(103247,1025,4,'actor',NULL,'[\"Skunker\"]'),(103247,459170,5,'director',NULL,NULL),(103247,518711,6,'writer','novel',NULL),(103247,742236,7,'writer','screenplay',NULL),(103247,857904,8,'writer','screenplay',NULL),(103247,266409,9,'writer','screenplay',NULL),(103639,21249,10,'writer','story',NULL),(103639,918334,1,'actor',NULL,'[\"Aladdin\"]'),(103639,245,2,'actor',NULL,'[\"Genie\",\"Peddler\"]'),(103639,488306,3,'actress',NULL,'[\"Princess Jasmine\"]'),(103639,293455,4,'actor',NULL,'[\"Jafar\"]'),(103639,166256,5,'director',NULL,NULL),(103639,615780,6,'director',NULL,NULL),(103639,254645,7,'writer','screenplay by',NULL),(103639,744429,8,'writer','screenplay by',NULL),(103639,560329,9,'writer','story',NULL),(103644,1353,10,'writer','screenplay',NULL),(103644,244,1,'actress',NULL,'[\"Ellen Ripley\"]'),(103644,1165,2,'actor',NULL,'[\"Leonard Dillon\"]'),(103644,1097,3,'actor',NULL,'[\"Dr. Jonathan Clemens\"]'),(103644,1524,4,'actor',NULL,'[\"Walter Golic\"]'),(103644,399,5,'director',NULL,NULL),(103644,639321,6,'writer','characters',NULL),(103644,795953,7,'writer','characters',NULL),(103644,911910,8,'writer','story',NULL),(103644,318429,9,'writer','screenplay',NULL),(103767,228286,1,'actor',NULL,'[\"Journeyman\"]'),(103767,294825,2,'director',NULL,NULL),(103767,536056,3,'writer','concept',NULL),(103767,629382,4,'writer','treatment',NULL),(103767,629368,5,'writer','treatment',NULL),(103767,6897793,6,'writer','concept',NULL),(103767,824195,7,'composer',NULL,NULL),(103767,41393,8,'editor',NULL,NULL),(103768,2366,10,'composer',NULL,NULL),(103768,165096,1,'actress',NULL,'[\"Princess Athalia\"]'),(103768,942010,2,'actor',NULL,'[\"Aurion\"]'),(103768,788830,3,'actress',NULL,'[\"Zarla\"]'),(103768,415353,4,'actress',NULL,'[\"Noki\"]'),(103768,278048,5,'director',NULL,NULL),(103768,169438,6,'writer','screenplay',NULL),(103768,809029,7,'writer','screenplay',NULL),(103768,339,8,'producer','producer',NULL),(103768,210599,9,'producer','producer',NULL),(103772,881973,10,'editor',NULL,NULL),(103772,140,1,'actor',NULL,'[\"Det. Nick Curran\"]'),(103772,232,2,'actress',NULL,'[\"Catherine Tramell\"]'),(103772,1169,3,'actor',NULL,'[\"Det. Gus Moran\"]'),(103772,675,4,'actress',NULL,'[\"Dr. Beth Garner\"]'),(103772,682,5,'director',NULL,NULL),(103772,390,6,'writer','written by',NULL),(103772,550728,7,'producer','producer',NULL),(103772,25,8,'composer',NULL,NULL),(103772,957,9,'cinematographer','director of photography',NULL),(103776,384,10,'composer',NULL,NULL),(103776,474,1,'actor',NULL,'[\"Batman\",\"Bruce Wayne\"]'),(103776,362,2,'actor',NULL,'[\"Penguin\"]'),(103776,201,3,'actress',NULL,'[\"Catwoman\",\"Selina\"]'),(103776,686,4,'actor',NULL,'[\"Max Shreck\"]'),(103776,318,5,'director',NULL,NULL),(103776,4170,6,'writer','Batman characters',NULL),(103776,914058,7,'writer','story',NULL),(103776,358334,8,'writer','story',NULL),(103776,224145,9,'producer','producer',NULL),(103786,6055,10,'composer',NULL,NULL),(103786,1301,1,'actor',NULL,'[\"George Newton\"]'),(103786,1372,2,'actress',NULL,'[\"Alice Newton\"]'),(103786,427894,3,'actor',NULL,'[\"Dr. Varnick\"]'),(103786,5497,4,'actress',NULL,'[\"Ryce\"]'),(103786,505152,5,'director',NULL,NULL),(103786,455,6,'writer','written by',NULL),(103786,427468,7,'writer','written by',NULL),(103786,343453,8,'producer','producer',NULL),(103786,575817,9,'producer','producer',NULL),(103812,547175,10,'production_designer',NULL,NULL),(103812,244633,1,'actor',NULL,'[\"Jack\"]'),(103812,239729,2,'actress',NULL,'[\"Melissa\"]'),(103812,104728,3,'actress',NULL,'[\"Amy\"]'),(103812,114637,4,'actress',NULL,'[\"Sunny\"]'),(103812,360766,5,'director',NULL,NULL),(103812,2668,6,'writer','screenplay',NULL),(103812,999480,7,'composer',NULL,NULL),(103812,650381,8,'cinematographer',NULL,NULL),(103812,690278,9,'editor',NULL,NULL),(103850,209,1,'actor',NULL,'[\"Bob Roberts\"]'),(103850,2064,2,'actor',NULL,'[\"Bugs Raplin\"]'),(103850,614,3,'actor',NULL,'[\"Lukas Hart III\"]'),(103850,936403,4,'actor',NULL,'[\"Chet MacGregor\"]'),(103850,614950,5,'producer','producer',NULL),(103850,730321,6,'composer',NULL,NULL),(103850,529648,7,'cinematographer',NULL,NULL),(103850,161497,8,'editor',NULL,NULL),(103850,393922,9,'production_designer',NULL,NULL),(103855,131333,10,'editor',NULL,NULL),(103855,126,1,'actor',NULL,'[\"Frank Farmer\"]'),(103855,1365,2,'actress',NULL,'[\"Rachel Marron\"]'),(103855,447290,3,'actor',NULL,'[\"Sy Spector\"]'),(103855,167850,4,'actor',NULL,'[\"Devaney\"]'),(103855,413875,5,'director',NULL,NULL),(103855,1410,6,'writer','written by',NULL),(103855,933604,7,'producer','producer',NULL),(103855,6293,8,'composer',NULL,NULL),(103855,242491,9,'cinematographer','director of photography',NULL),(103859,588883,10,'composer',NULL,NULL),(103859,552,1,'actor',NULL,'[\"Marcus\"]'),(103859,2101,2,'actress',NULL,'[\"Jacqueline\"]'),(103859,932,3,'actress',NULL,'[\"Angela\"]'),(103859,4979,4,'actor',NULL,'[\"Gerard\"]'),(103859,399737,5,'director',NULL,NULL),(103859,87904,6,'writer','screenplay by',NULL),(103859,790775,7,'writer','screenplay by',NULL),(103859,4976,8,'producer','producer',NULL),(103859,399738,9,'producer','producer',NULL),(103873,590359,10,'cinematographer',NULL,NULL),(103873,50975,1,'actor',NULL,'[\"Lionel Cosgrove\"]'),(103873,679272,2,'actress',NULL,'[\"Paquita Maria Sanchez\"]'),(103873,600473,3,'actress',NULL,'[\"Mum (Vera Cosgrove)\"]'),(103873,914240,4,'actor',NULL,'[\"Uncle Les\"]'),(103873,1392,5,'director',NULL,NULL),(103873,801728,6,'writer','story',NULL),(103873,909638,7,'writer','screenplay',NULL),(103873,95725,8,'producer','producer',NULL),(103873,201942,9,'composer',NULL,NULL),(103874,4384,10,'composer',NULL,NULL),(103874,198,1,'actor',NULL,'[\"Dracula\"]'),(103874,213,2,'actress',NULL,'[\"Mina Murray\",\"Elisabeta\"]'),(103874,164,3,'actor',NULL,'[\"Professor Abraham Van Helsing\"]'),(103874,206,4,'actor',NULL,'[\"Jonathan Harker\"]'),(103874,338,5,'director',NULL,NULL),(103874,831290,6,'writer','novel \"Dracula\"',NULL),(103874,366337,7,'writer','screenplay',NULL),(103874,297209,8,'producer','producer',NULL),(103874,612529,9,'producer','producer',NULL),(103893,371348,10,'cinematographer','director of photography',NULL),(103893,1785,1,'actress',NULL,'[\"Buffy\"]'),(103893,661,2,'actor',NULL,'[\"Merrick\"]'),(103893,607,3,'actor',NULL,'[\"Amilyn\"]'),(103893,442,4,'actor',NULL,'[\"Lothos\"]'),(103893,476900,5,'director',NULL,NULL),(103893,923736,6,'writer','written by',NULL),(103893,476901,7,'producer','producer',NULL),(103893,742651,8,'producer','producer',NULL),(103893,1980,9,'composer',NULL,NULL),(103919,1275,10,'composer',NULL,NULL),(103919,515,1,'actress',NULL,'[\"Helen Lyle\"]'),(103919,75359,2,'actor',NULL,'[\"Trevor Lyle\"]'),(103919,865302,3,'actor',NULL,'[\"The Candyman\"]'),(103919,501435,4,'actress',NULL,'[\"Bernadette Walsh\"]'),(103919,741262,5,'director',NULL,NULL),(103919,850,6,'writer','based on \"The Forbidden\" by',NULL),(103919,326512,7,'producer','producer',NULL),(103919,693561,8,'producer','producer',NULL),(103919,797451,9,'producer','producer',NULL),(103939,285302,10,'writer','screenplay',NULL),(103939,375,1,'actor',NULL,'[\"Charles Spencer Chaplin\"]'),(103939,1036,2,'actress',NULL,'[\"Hannah Chaplin\"]'),(103939,722631,3,'actor',NULL,'[\"Sydney Chaplin\"]'),(103939,857177,4,'actor',NULL,'[\"Fred Karno\"]'),(103939,277,5,'director',NULL,NULL),(103939,732527,6,'writer','book \"Chaplin His Life and Art\"',NULL),(103939,122,7,'writer','book \"My Autobiography\"',NULL),(103939,370114,8,'writer','story',NULL),(103939,101956,9,'writer','screenplay',NULL),(103956,502954,10,'cinematographer',NULL,NULL),(103956,923529,1,'actor',NULL,'[\"Andy Barclay\"]'),(103956,716275,2,'actress',NULL,'[\"De Silva\"]'),(103956,843199,3,'actor',NULL,'[\"Tyler\"]'),(103956,3910,4,'actor',NULL,'[\"Shelton\"]'),(103956,70474,5,'director',NULL,NULL),(103956,238841,6,'writer','based on characters created by',NULL),(103956,114556,7,'producer','producer',NULL),(103956,195224,8,'composer',NULL,NULL),(103956,503548,9,'composer',NULL,NULL),(103959,741454,1,'actress',NULL,'[\"Dede\"]'),(103959,137365,2,'actress',NULL,'[\"Rox\"]'),(103959,619031,3,'actress',NULL,'[\"T.C.\"]'),(103959,292822,4,'actress',NULL,'[\"Jewel\"]'),(103959,396017,5,'director',NULL,NULL),(103959,811515,6,'producer','producer',NULL),(103959,561906,7,'composer',NULL,NULL),(103959,292250,8,'cinematographer','director of photography',NULL),(103959,308225,9,'editor',NULL,NULL),(103994,92632,10,'editor',NULL,NULL),(103994,502813,1,'actor',NULL,'[\"Pedro Muzquiz\"]'),(103994,4816,2,'actress',NULL,'[\"Tita\"]'),(103994,868207,3,'actress',NULL,'[\"Mamá Elena\"]'),(103994,555227,4,'actor',NULL,'[\"Doctor John Brown\"]'),(103994,778,5,'director',NULL,NULL),(103994,261294,6,'writer','novel',NULL),(103994,5977,7,'composer',NULL,NULL),(103994,77149,8,'cinematographer',NULL,NULL),(103994,523881,9,'cinematographer',NULL,NULL),(104036,165534,10,'production_designer',NULL,NULL),(104036,1653,1,'actor',NULL,'[\"Fergus\"]'),(104036,1109,2,'actor',NULL,'[\"Dil\"]'),(104036,1845,3,'actor',NULL,'[\"Jody\"]'),(104036,1669,4,'actress',NULL,'[\"Jude\"]'),(104036,1403,5,'director',NULL,NULL),(104036,941262,6,'producer','producer',NULL),(104036,6050,7,'composer',NULL,NULL),(104036,933510,8,'cinematographer',NULL,NULL),(104036,659013,9,'editor',NULL,NULL),(104040,2305,10,'composer',NULL,NULL),(104040,665,1,'actor',NULL,'[\"Doug Dorsey\"]'),(104040,446702,2,'actress',NULL,'[\"Kate Moseley\"]'),(104040,234541,3,'actor',NULL,'[\"Anton Pamchenko\"]'),(104040,642368,4,'actor',NULL,'[\"Jack Moseley\"]'),(104040,1274,5,'director',NULL,NULL),(104040,6904,6,'writer','written by',NULL),(104040,181202,7,'producer','producer',NULL),(104040,276059,8,'producer','producer',NULL),(104040,614420,9,'producer','producer',NULL),(104057,136897,10,'editor',NULL,NULL),(104057,206365,1,'actress',NULL,'[\"Nana Peazant\"]'),(104057,736705,2,'actress',NULL,'[\"Eula Peazant\"]'),(104057,427538,3,'actress',NULL,'[\"Yellow Mary\"]'),(104057,393842,4,'actress',NULL,'[\"Trula\"]'),(104057,201969,5,'director',NULL,NULL),(104057,415409,6,'producer','producer',NULL),(104057,429292,7,'producer','producer',NULL),(104057,55649,8,'composer',NULL,NULL),(104057,123629,9,'editor',NULL,NULL),(104070,5678,10,'cinematographer','director of photography',NULL),(104070,658,1,'actress',NULL,'[\"Madeline Ashton\"]'),(104070,246,2,'actor',NULL,'[\"Ernest Menville\"]'),(104070,443,3,'actress',NULL,'[\"Helen Sharp\"]'),(104070,618,4,'actress',NULL,'[\"Lisle Von Rhuman\"]'),(104070,709,5,'director',NULL,NULL),(104070,233026,6,'writer','written by',NULL),(104070,462895,7,'writer','written by',NULL),(104070,823330,8,'producer','producer',NULL),(104070,6293,9,'composer',NULL,NULL),(104105,699627,10,'editor',NULL,NULL),(104105,587,1,'actor',NULL,'[\"Howard Simpson\"]'),(104105,145880,2,'actor',NULL,'[\"Le capitaine Jégu de Kerveguen\"]'),(104105,50983,3,'actor',NULL,'[\"L\'homme de l\'AFP\",\"AFP employee\"]'),(104105,586370,4,'actress',NULL,'[\"Béatrice Vergnes\"]'),(104105,6954,5,'director',NULL,NULL),(104105,456997,6,'producer','producer',NULL),(104105,503276,7,'producer','producer',NULL),(104105,16,8,'composer',NULL,NULL),(104105,5781,9,'cinematographer',NULL,NULL),(104187,446668,10,'editor',NULL,NULL),(104187,276,1,'actor',NULL,'[\"Dave Morgan\"]'),(104187,409,2,'actor',NULL,'[\"Link\"]'),(104187,1736,3,'actor',NULL,'[\"Stoney Brown\"]'),(104187,911725,4,'actress',NULL,'[\"Robyn Sweeney\"]'),(104187,562645,5,'director',NULL,NULL),(104187,4043,6,'writer','story',NULL),(104187,770974,7,'writer','story',NULL),(104187,6254,8,'composer',NULL,NULL),(104187,109658,9,'cinematographer','director of photography',NULL),(104231,360067,10,'editor',NULL,NULL),(104231,129,1,'actor',NULL,'[\"Joseph Donnelly\"]'),(104231,173,2,'actress',NULL,'[\"Shannon Christie\"]'),(104231,4959,3,'actor',NULL,'[\"Stephen Chase\"]'),(104231,698764,4,'actor',NULL,'[\"Daniel Christie\"]'),(104231,165,5,'director',NULL,NULL),(104231,231190,6,'writer','story',NULL),(104231,4976,7,'producer','producer',NULL),(104231,2354,8,'composer',NULL,NULL),(104231,4121,9,'cinematographer','director of photography',NULL),(104237,89182,10,'editor',NULL,NULL),(104237,460,1,'actor',NULL,'[\"Dr. Stephen\"]'),(104237,300,2,'actress',NULL,'[\"Anna\"]'),(104237,1669,3,'actress',NULL,'[\"Ingrid\"]'),(104237,1291,4,'actor',NULL,'[\"Martyn\"]'),(104237,1501,5,'director',NULL,NULL),(104237,2376,6,'writer','screenplay',NULL),(104237,366375,7,'writer','novel',NULL),(104237,6237,8,'composer',NULL,NULL),(104237,84695,9,'cinematographer','director of photography',NULL),(104246,687782,10,'cinematographer',NULL,NULL),(104246,481709,1,'actor',NULL,'[\"Wu Fei\"]'),(104246,156522,2,'actress',NULL,'[\"Purple Yuen\"]'),(104246,718348,3,'actress',NULL,'[\"Ching Ling\"]'),(104246,875275,4,'actor',NULL,'[\"Fung Nam-Tin\"]'),(104246,690952,5,'director',NULL,NULL),(104246,149222,6,'writer','novel',NULL),(104246,538332,7,'writer','screenplay',NULL),(104246,803314,8,'writer','screenplay',NULL),(104246,159494,9,'producer','producer',NULL),(104254,6293,10,'composer',NULL,NULL),(104254,526,1,'actress',NULL,'[\"Crysta\"]'),(104254,225,2,'actor',NULL,'[\"Pips\"]'),(104254,245,3,'actor',NULL,'[\"Batty Koda\"]'),(104254,347,4,'actor',NULL,'[\"Hexxus\"]'),(104254,472386,5,'director',NULL,NULL),(104254,185084,6,'writer','screenplay',NULL),(104254,949479,7,'writer','original stories',NULL),(104254,265363,8,'producer','producer',NULL),(104254,950153,9,'producer','producer',NULL),(104257,724744,10,'cinematographer','director of photography',NULL),(104257,129,1,'actor',NULL,'[\"Lt. Daniel Kaffee\"]'),(104257,197,2,'actor',NULL,'[\"Col. Nathan R. Jessep\"]'),(104257,193,3,'actress',NULL,'[\"Lt. Cdr. JoAnne Galloway\"]'),(104257,102,4,'actor',NULL,'[\"Capt. Jack Ross\"]'),(104257,1661,5,'director',NULL,NULL),(104257,815070,6,'writer','play',NULL),(104257,113360,7,'producer','producer',NULL),(104257,770650,8,'producer','producer',NULL),(104257,3299,9,'composer',NULL,NULL),(104298,627472,10,'cinematographer',NULL,NULL),(104298,1426,1,'actor',NULL,'[\"Freddie\"]'),(104298,256,2,'actress',NULL,'[\"Daffers\"]'),(104298,39200,3,'actor',NULL,'[\"Additional Voices\"]'),(104298,306,4,'actor',NULL,'[\"El Supremo\"]'),(104298,9743,5,'director',NULL,NULL),(104298,1275668,6,'writer','additional writer: American version',NULL),(104298,295711,7,'producer','producer',NULL),(104298,242172,8,'composer',NULL,NULL),(104298,921135,9,'composer',NULL,NULL),(104321,556208,10,'composer',NULL,NULL),(104321,724,1,'actress',NULL,'[\"Nora\"]'),(104321,1746,2,'actress',NULL,'[\"Trudi\"]'),(104321,103,3,'actress',NULL,'[\"Shade\"]'),(104321,981,4,'actor',NULL,'[\"John Evans\"]'),(104321,25978,5,'director',NULL,NULL),(104321,669708,6,'writer','based on the novel \"Don\'t Look and It Won\'t Hurt\" by',NULL),(104321,263867,7,'producer','producer',NULL),(104321,368477,8,'producer','producer',NULL),(104321,929771,9,'producer','producer',NULL),(104348,5851,10,'cinematographer','director of photography',NULL),(104348,199,1,'actor',NULL,'[\"Ricky Roma\"]'),(104348,493,2,'actor',NULL,'[\"Shelley Levene\"]'),(104348,285,3,'actor',NULL,'[\"Blake\"]'),(104348,273,4,'actor',NULL,'[\"George Aaronow\"]'),(104348,1226,5,'director',NULL,NULL),(104348,519,6,'writer','based on the play by',NULL),(104348,865774,7,'producer','producer',NULL),(104348,958726,8,'producer','producer',NULL),(104348,6133,9,'composer',NULL,NULL),(104389,511219,10,'editor',NULL,NULL),(104389,1711,1,'actress',NULL,'[\"Claire Bartel\"]'),(104389,360,2,'actress',NULL,'[\"Peyton Flanders\"]'),(104389,566783,3,'actor',NULL,'[\"Michael Bartel\"]'),(104389,1368,4,'actor',NULL,'[\"Solomon\"]'),(104389,436,5,'director',NULL,NULL),(104389,798646,6,'writer','written by',NULL),(104389,534574,7,'producer','producer',NULL),(104389,6251,8,'composer',NULL,NULL),(104389,5696,9,'cinematographer','director of photography',NULL),(104409,6685,10,'cinematographer','director of photography',NULL),(104409,395,1,'actress',NULL,'[\"Joey Summerskill\"]'),(104409,103208,2,'actor',NULL,'[\"Pinhead\",\"Elliot\"]'),(104409,76791,3,'actor',NULL,'[\"J.P. Monroe\"]'),(104409,608118,4,'actor',NULL,'[\"Bum\"]'),(104409,382776,5,'director',NULL,NULL),(104409,40643,6,'writer','original story by',NULL),(104409,709752,7,'writer','original story by',NULL),(104409,850,8,'writer','based on characters created by',NULL),(104409,589172,9,'composer',NULL,NULL),(104412,822975,10,'cinematographer','director of photography',NULL),(104412,163,1,'actor',NULL,'[\"Bernie LaPlante\"]'),(104412,133,2,'actress',NULL,'[\"Gale Gayley\"]'),(104412,412,3,'actor',NULL,'[\"John Bubber\"]'),(104412,349,4,'actress',NULL,'[\"Evelyn\"]'),(104412,1241,5,'director',NULL,NULL),(104412,957205,6,'writer','story',NULL),(104412,765091,7,'writer','story',NULL),(104412,672459,8,'writer','story',NULL),(104412,6070,9,'composer',NULL,NULL),(104431,893079,10,'production_designer',NULL,NULL),(104431,346,1,'actor',NULL,'[\"Kevin\"]'),(104431,582,2,'actor',NULL,'[\"Harry\"]'),(104431,827663,3,'actor',NULL,'[\"Marv\"]'),(104431,1573,4,'actress',NULL,'[\"Kate\"]'),(104431,1060,5,'director',NULL,NULL),(104431,455,6,'writer','characters',NULL),(104431,2354,7,'composer',NULL,NULL),(104431,531310,8,'cinematographer','director of photography',NULL),(104431,331532,9,'editor',NULL,NULL),(104452,433384,10,'editor',NULL,NULL),(104452,188,1,'actor',NULL,'[\"Davis\"]'),(104452,443,2,'actress',NULL,'[\"Gwen\"]'),(104452,1127,3,'actress',NULL,'[\"Becky\"]'),(104452,364915,4,'actress',NULL,'[\"Edna Davis\"]'),(104452,568,5,'director',NULL,NULL),(104452,825559,6,'writer','story',NULL),(104452,4976,7,'writer','story',NULL),(104452,6108,8,'composer',NULL,NULL),(104452,2166,9,'cinematographer','director of photography',NULL),(104454,682503,10,'cinematographer',NULL,NULL),(104454,164,1,'actor',NULL,'[\"Henry Wilcox\"]'),(104454,668,2,'actress',NULL,'[\"Margaret Schlegel\"]'),(104454,603,3,'actress',NULL,'[\"Ruth Wilcox\"]'),(104454,307,4,'actress',NULL,'[\"Helen Schlegel\"]'),(104454,412465,5,'director',NULL,NULL),(104454,286950,6,'writer','novel',NULL),(104454,695609,7,'writer','screenplay',NULL),(104454,580337,8,'producer','producer',NULL),(104454,6442,9,'composer',NULL,NULL),(104466,95,1,'actor',NULL,'[\"Gabe Roth\"]'),(104466,1201,2,'actress',NULL,'[\"Judy Roth\"]'),(104466,1628,3,'actor',NULL,'[\"Jack\"]'),(104466,1114,4,'actress',NULL,'[\"Sally\"]'),(104466,339086,5,'producer','producer',NULL),(104466,5688,6,'cinematographer','director of photography',NULL),(104466,607673,7,'editor',NULL,NULL),(104466,520288,8,'production_designer',NULL,NULL),(104575,640634,10,'production_designer',NULL,NULL),(104575,424519,1,'actress',NULL,'[\"Chantel\"]'),(104575,858104,2,'actor',NULL,'[\"Tyrone\"]'),(104575,421949,3,'actress',NULL,'[\"Natete\"]'),(104575,413359,4,'actress',NULL,'[\"Paula\"]'),(104575,365001,5,'director',NULL,NULL),(104575,933383,6,'producer','producer',NULL),(104575,755534,7,'composer',NULL,NULL),(104575,175538,8,'cinematographer',NULL,NULL),(104575,3470,9,'editor',NULL,NULL),(104652,645777,10,'cinematographer',NULL,NULL),(104652,605797,1,'actor',NULL,'[\"Porco Rosso\"]'),(104652,441401,2,'actress',NULL,'[\"Madame Gina\"]'),(104652,1185314,3,'actor',NULL,'[\"Mr. Piccolo\"]'),(104652,436639,4,'actor',NULL,'[\"Mamma Aiuto Boss\"]'),(104652,594503,5,'director',NULL,NULL),(104652,218760,6,'producer','producer',NULL),(104652,840699,7,'producer','producer',NULL),(104652,386749,8,'composer',NULL,NULL),(104652,1147210,9,'cinematographer',NULL,NULL),(104670,1162557,10,'composer',NULL,NULL),(104670,1098,1,'actor',NULL,'[\"Chester Lee\"]'),(104670,364068,2,'actress',NULL,'[\"Julie Benson\"]'),(104670,970,3,'actor',NULL,'[\"Matthew\",\"Martha\"]'),(104670,333778,4,'actress',NULL,'[\"Bess\"]'),(104670,2089,5,'director',NULL,NULL),(104670,120790,6,'writer','written by',NULL),(104670,3132,7,'producer','producer',NULL),(104670,748665,8,'producer','producer',NULL),(104670,6099,9,'composer',NULL,NULL),(104684,2658,10,'composer',NULL,NULL),(104684,334,1,'actor',NULL,'[\"Insp. \'Tequila\' Yuen\"]'),(104684,504897,2,'actor',NULL,'[\"Alan\"]'),(104684,594909,3,'actress',NULL,'[\"Teresa Chang\"]'),(104684,151068,4,'actor',NULL,'[\"Supt. Pang\"]'),(104684,247,5,'director',NULL,NULL),(104684,938944,6,'writer','screenplay',NULL),(104684,150906,7,'writer','screenplay',NULL),(104684,151835,8,'producer','producer',NULL),(104684,474308,9,'producer','producer',NULL),(104691,242897,10,'writer',NULL,NULL),(104691,358,1,'actor',NULL,'[\"Hawkeye\"]'),(104691,656,2,'actress',NULL,'[\"Cora\"]'),(104691,575184,3,'actor',NULL,'[\"Chingachgook\"]'),(104691,777760,4,'actor',NULL,'[\"Uncas\"]'),(104691,520,5,'director',NULL,NULL),(104691,178126,6,'writer','novel',NULL),(104691,49721,7,'writer','adaptation',NULL),(104691,673585,8,'writer','adaptation',NULL),(104691,601086,9,'writer','adaptation',NULL),(104692,62328,10,'editor',NULL,NULL),(104692,1194,1,'actor',NULL,'[\"Jobe Smith\"]'),(104692,112,2,'actor',NULL,'[\"Lawrence Angelo\"]'),(104692,942486,3,'actress',NULL,'[\"Marnie Burke\"]'),(104692,109517,4,'actor',NULL,'[\"Sebastian Timms\"]'),(104692,502577,5,'director',NULL,NULL),(104692,175,6,'writer','based on a short story by',NULL),(104692,263518,7,'writer','screenplay by',NULL),(104692,943831,8,'composer',NULL,NULL),(104692,5665,9,'cinematographer',NULL,NULL),(104694,7966,10,'producer','producer',NULL),(104694,158,1,'actor',NULL,'[\"Jimmy Dugan\"]'),(104694,133,2,'actress',NULL,'[\"Dottie Hinson - Catcher\"]'),(104694,1614,3,'actress',NULL,'[\"Kit Keller - Pitcher\"]'),(104694,187,4,'actress',NULL,'[\"Mae Mordabito - Center Fielder\"]'),(104694,1508,5,'director',NULL,NULL),(104694,933718,6,'writer','story',NULL),(104694,133676,7,'writer','story',NULL),(104694,304665,8,'writer','screenplay',NULL),(104694,541632,9,'writer','screenplay',NULL),(104695,833759,10,'composer',NULL,NULL),(104695,188,1,'actor',NULL,'[\"Jonas\"]'),(104695,700,2,'actress',NULL,'[\"Jane\"]'),(104695,357,3,'actress',NULL,'[\"Marva\"]'),(104695,553,4,'actor',NULL,'[\"Will\"]'),(104695,669004,5,'director',NULL,NULL),(104695,148489,6,'writer','written by',NULL),(104695,542333,7,'producer','producer',NULL),(104695,681802,8,'producer','producer',NULL),(104695,6056,9,'composer',NULL,NULL),(104697,238848,10,'editor',NULL,NULL),(104697,1441,1,'actress',NULL,'[\"Darly\"]'),(104697,672,2,'actress',NULL,'[\"Marianne\"]'),(104697,4858,3,'actress',NULL,'[\"66\"]'),(104697,902188,4,'actor',NULL,'[\"Harry\"]'),(104697,1880,5,'director',NULL,NULL),(104697,4412,6,'writer','written by',NULL),(104697,233386,7,'producer','producer',NULL),(104697,6336,8,'composer',NULL,NULL),(104697,5659,9,'cinematographer','director of photography',NULL),(104779,5686,10,'cinematographer','director of photography',NULL),(104779,424,1,'actor',NULL,'[\"Nigel\"]'),(104779,218,2,'actress',NULL,'[\"Fiona\"]'),(104779,782561,3,'actress',NULL,'[\"Mimi\"]'),(104779,1075,4,'actor',NULL,'[\"Oscar\"]'),(104779,591,5,'director',NULL,NULL),(104779,115685,6,'writer','novel \"Lunes de Fiel\"',NULL),(104779,102722,7,'writer','screenplay',NULL),(104779,115224,8,'writer','screenplay',NULL),(104779,6331,9,'composer',NULL,NULL),(104797,225416,10,'cinematographer',NULL,NULL),(104797,243,1,'actor',NULL,'[\"Malcolm X\"]'),(104797,291,2,'actress',NULL,'[\"Betty Shabazz\"]'),(104797,5148,3,'actor',NULL,'[\"West Indian Archie\"]'),(104797,490,4,'actor',NULL,'[\"Shorty\"]'),(104797,674135,5,'writer','written by',NULL),(104797,355077,6,'writer','based on \"The Autobiography of Malcolm X\" as told to',NULL),(104797,944318,7,'writer','based on \"The Autobiography of Malcolm X\"',NULL),(104797,941703,8,'producer','producer',NULL),(104797,5966,9,'composer',NULL,NULL),(104815,874223,10,'composer',NULL,NULL),(104815,2230,1,'actor',NULL,'[\"El Mariachi\"]'),(104815,351042,2,'actress',NULL,'[\"Domino\"]'),(104815,398426,3,'actor',NULL,'[\"Bigotón\"]'),(104815,549682,4,'actor',NULL,'[\"Mauricio\"]'),(104815,1675,5,'director',NULL,NULL),(104815,349259,6,'composer',NULL,NULL),(104815,390969,7,'composer',NULL,NULL),(104815,735765,8,'composer',NULL,NULL),(104815,736155,9,'composer',NULL,NULL),(104868,215878,10,'cinematographer','director of photography',NULL),(104868,389,1,'actor',NULL,'[\"Gordon Bombay\"]'),(104868,722,2,'actor',NULL,'[\"Hans\"]'),(104868,809031,3,'actor',NULL,'[\"Coach Reilly\"]'),(104868,459706,4,'actress',NULL,'[\"Casey\"]'),(104868,378893,5,'director',NULL,NULL),(104868,109359,6,'writer','written by',NULL),(104868,816,7,'producer','producer',NULL),(104868,449549,8,'producer','producer',NULL),(104868,628056,9,'composer',NULL,NULL),(104922,894251,10,'editor',NULL,NULL),(104922,584150,1,'actor',NULL,'[\"Gus\"]'),(104922,703925,2,'actress',NULL,'[\"Bank Teller\"]'),(104922,618998,3,'actor',NULL,'[\"Boy at Wagon Wheel\"]'),(104922,879073,4,'actress',NULL,'[\"Bartender\"]'),(104922,793522,5,'director',NULL,NULL),(104922,591387,6,'writer','written by',NULL),(104922,96025,7,'producer','producer',NULL),(104922,814047,8,'composer',NULL,NULL),(104922,944795,9,'cinematographer','director of photography',NULL),(104940,271940,10,'cinematographer','director of photography',NULL),(104940,323,1,'actor',NULL,'[\"Scrooge\"]'),(104940,324397,2,'actor',NULL,'[\"The Great Gonzo\",\"Robert Marley\",\"Bunsen Honeydew\"]'),(104940,926209,3,'actor',NULL,'[\"Rizzo the Rat\",\"Bean Bunny\",\"Kermit the Frog\"]'),(104940,625456,4,'actor',NULL,'[\"Tiny Tim Cratchit\",\"Jacob Marley\",\"Ghost of Christmas Present\"]'),(104940,5008,5,'director',NULL,NULL),(104940,2042,6,'writer','novel \"A Christmas Carol\"',NULL),(104940,432075,7,'writer','screenplay',NULL),(104940,48744,8,'producer','producer',NULL),(104940,6108,9,'composer',NULL,NULL),(104952,518505,10,'editor',NULL,NULL),(104952,582,1,'actor',NULL,'[\"Vinny Gambini\"]'),(104952,673,2,'actress',NULL,'[\"Mona Lisa Vito\"]'),(104952,1494,3,'actor',NULL,'[\"Bill Gambini\"]'),(104952,925943,4,'actor',NULL,'[\"Stan Rothenstein\"]'),(104952,528718,5,'director',NULL,NULL),(104952,490958,6,'writer','written by',NULL),(104952,771490,7,'producer','producer',NULL),(104952,6055,8,'composer',NULL,NULL),(104952,5687,9,'cinematographer',NULL,NULL),(104981,3502,10,'composer',NULL,NULL),(104981,461,1,'actor',NULL,'[\"Harry M. Stark\"]'),(104981,889152,2,'actress',NULL,'[\"Reno\"]'),(104981,23668,3,'actor',NULL,'[\"Bulk\"]'),(104981,928720,4,'actress',NULL,'[\"Sandy Randall\"]'),(104981,548449,5,'director',NULL,NULL),(104981,277391,6,'writer',NULL,NULL),(104981,66836,7,'writer',NULL,NULL),(104981,773257,8,'producer','producer',NULL),(104981,813367,9,'producer','producer',NULL),(104990,489970,10,'cinematographer',NULL,NULL),(104990,288,1,'actor',NULL,'[\"Jack Kelly\"]'),(104990,597,2,'actor',NULL,'[\"Bryan Denton\"]'),(104990,380,3,'actor',NULL,'[\"Joseph Pulitzer\"]'),(104990,268,4,'actress',NULL,'[\"Medda Larkson\"]'),(104990,650905,5,'director',NULL,NULL),(104990,879318,6,'writer','written by',NULL),(104990,925276,7,'writer','written by',NULL),(104990,278228,8,'producer','producer',NULL),(104990,2370,9,'composer',NULL,NULL),(105104,723676,10,'producer','producer',NULL),(105104,648,1,'actor',NULL,'[\"John Cutter\"]'),(105104,668271,2,'actor',NULL,'[\"Charles Rane\"]'),(105104,1744,3,'actor',NULL,'[\"Sly Delvecchio\"]'),(105104,202131,4,'actress',NULL,'[\"Marti Slayton\"]'),(105104,393661,5,'director',NULL,NULL),(105104,706296,6,'writer','story',NULL),(105104,330108,7,'writer','story',NULL),(105104,521739,8,'writer','screenplay',NULL),(105104,667340,9,'producer','producer',NULL),(105107,84019,10,'production_designer',NULL,NULL),(105107,1521,1,'actress',NULL,'[\"May-Alice\"]'),(105107,5569,2,'actress',NULL,'[\"Chantelle\"]'),(105107,291,3,'actress',NULL,'[\"Rhonda\",\"Dawn\"]'),(105107,52202,4,'actress',NULL,'[\"Nurse Quick\"]'),(105107,626,5,'director',NULL,NULL),(105107,338320,6,'producer','producer',NULL),(105107,719964,7,'producer','producer',NULL),(105107,6025,8,'composer',NULL,NULL),(105107,5683,9,'cinematographer','director of photography',NULL),(105121,167917,10,'editor',NULL,NULL),(105121,10781,1,'actor',NULL,'[\"Fool\"]'),(105121,569239,2,'actor',NULL,'[\"Man\"]'),(105121,732133,3,'actress',NULL,'[\"Woman\"]'),(105121,486277,4,'actress',NULL,'[\"Alice\"]'),(105121,127,5,'director',NULL,NULL),(105121,78804,6,'producer','producer',NULL),(105121,534543,7,'producer','producer',NULL),(105121,668838,8,'composer',NULL,NULL),(105121,5876,9,'cinematographer',NULL,NULL),(105130,491402,1,'actor',NULL,'[\"Roger Anderson\"]'),(105130,410,2,'actor',NULL,'[\"Peter Morton\"]'),(105130,668,3,'actress',NULL,'[\"Maggie Chester\"]'),(105130,110,4,'actor',NULL,'[\"Andrew Benson\"]'),(105130,748852,5,'writer','written by',NULL),(105130,74918,6,'writer','written by',NULL),(105130,484249,7,'cinematographer',NULL,NULL),(105130,546064,8,'editor',NULL,NULL),(105130,367733,9,'production_designer',NULL,NULL),(105151,529648,10,'cinematographer','director of photography',NULL),(105151,209,1,'actor',NULL,'[\"Griffin Mill\"]'),(105151,627,2,'actress',NULL,'[\"June Gudmundsdottir\"]'),(105151,911542,3,'actor',NULL,'[\"Walter Stuckel\"]'),(105151,155,4,'actress',NULL,'[\"Detective Avery\"]'),(105151,265,5,'director',NULL,NULL),(105151,866062,6,'writer','screenplay',NULL),(105151,113360,7,'producer','producer',NULL),(105151,917059,8,'producer','producer',NULL),(105151,2353,9,'composer',NULL,NULL),(105236,2325211,10,'production_designer',NULL,NULL),(105236,172,1,'actor',NULL,'[\"Mr. White\",\"Larry\"]'),(105236,619,2,'actor',NULL,'[\"Mr. Orange\",\"Freddy\"]'),(105236,514,3,'actor',NULL,'[\"Mr. Blonde\",\"Vic\"]'),(105236,1606,4,'actor',NULL,'[\"Nice Guy Eddie\"]'),(105236,233,5,'director',NULL,NULL),(105236,812,6,'writer','background radio dialogue written by',NULL),(105236,4744,7,'producer','producer',NULL),(105236,782900,8,'cinematographer',NULL,NULL),(105236,579673,9,'editor',NULL,NULL),(105265,6142,10,'composer',NULL,NULL),(105265,1729,1,'actor',NULL,'[\"Norman Maclean\"]'),(105265,93,2,'actor',NULL,'[\"Paul Maclean\"]'),(105265,643,3,'actor',NULL,'[\"Rev. Maclean\"]'),(105265,950,4,'actress',NULL,'[\"Mrs. Maclean\"]'),(105265,602,5,'director',NULL,NULL),(105265,533805,6,'writer','story',NULL),(105265,295030,7,'writer','screenplay',NULL),(105265,548410,8,'producer','producer',NULL),(105265,559175,9,'producer','producer',NULL),(105316,4368,10,'composer',NULL,NULL),(105316,155,1,'actress',NULL,'[\"Mary Masembuko\"]'),(105316,452009,2,'actress',NULL,'[\"Sarafina\"]'),(105316,538460,3,'actress',NULL,'[\"Angelina\"]'),(105316,434712,4,'actor',NULL,'[\"School Principal\"]'),(105316,740213,5,'director',NULL,NULL),(105316,628913,6,'writer','play',NULL),(105316,629933,7,'writer','screenplay',NULL),(105316,802081,8,'producer','producer',NULL),(105316,860034,9,'producer','producer',NULL),(105323,2353,10,'composer',NULL,NULL),(105323,199,1,'actor',NULL,'[\"Lt. Col. Frank Slade\"]'),(105323,563,2,'actor',NULL,'[\"Charlie Simms\"]'),(105323,714310,3,'actor',NULL,'[\"Mr. Trask\"]'),(105323,270,4,'actress',NULL,'[\"Donna\"]'),(105323,976,5,'director',NULL,NULL),(105323,37097,6,'writer','novel \"Il Buio E Il Miele\"',NULL),(105323,325743,7,'writer','screenplay',NULL),(105323,531431,8,'writer','character from Profumo Di Donna',NULL),(105323,728271,9,'writer','character from Profumo Di Donna',NULL),(105328,917088,10,'composer',NULL,NULL),(105328,313443,1,'actor',NULL,'[\"Hermann Willié\"]'),(105328,643805,2,'actor',NULL,'[\"Fritz Knobel\"]'),(105328,405974,3,'actress',NULL,'[\"Freya von Hepp\"]'),(105328,544465,4,'actress',NULL,'[\"Biggi\"]'),(105328,226200,5,'director',NULL,NULL),(105328,510789,6,'writer','screenplay',NULL),(105328,617504,7,'writer','original story concept',NULL),(105328,297064,8,'writer','original story concept',NULL),(105328,737582,9,'producer','producer',NULL),(105414,672915,10,'editor',NULL,NULL),(105414,403,1,'actress',NULL,'[\"Allison Jones\"]'),(105414,492,2,'actress',NULL,'[\"Hedra Carlson\"]'),(105414,1836,3,'actor',NULL,'[\"Sam Rawson\"]'),(105414,295334,4,'actor',NULL,'[\"Graham Knox\"]'),(105414,775447,5,'director',NULL,NULL),(105414,1661375,6,'writer','novel \"SWF Seeks Same\"',NULL),(105414,740400,7,'writer','screenplay',NULL),(105414,6290,8,'composer',NULL,NULL),(105414,5907,9,'cinematographer',NULL,NULL),(105415,156816,10,'editor',NULL,NULL),(105415,403,1,'actress',NULL,'[\"Janet Livermore\"]'),(105415,1714,2,'actor',NULL,'[\"Steve Dunne\"]'),(105415,1718,3,'actress',NULL,'[\"Linda Powell\"]'),(105415,445992,4,'actress',NULL,'[\"Debbie Hunt\"]'),(105415,1081,5,'director',NULL,NULL),(105415,368069,6,'producer','producer',NULL),(105415,922581,7,'composer',NULL,NULL),(105415,5714,8,'cinematographer',NULL,NULL),(105415,825336,9,'cinematographer',NULL,NULL),(105417,357023,10,'editor','film editor',NULL),(105417,155,1,'actress',NULL,'[\"Deloris\"]'),(105417,1749,2,'actress',NULL,'[\"Mother Superior\"]'),(105417,172,3,'actor',NULL,'[\"Vince LaRocca\"]'),(105417,638056,4,'actor',NULL,'[\"Eddie Souther\"]'),(105417,1915,5,'director',NULL,NULL),(105417,397411,6,'writer','written by',NULL),(105417,777462,7,'producer','producer',NULL),(105417,3299,8,'composer',NULL,NULL),(105417,4229,9,'cinematographer','director of photography',NULL),(105435,738196,10,'editor',NULL,NULL),(105435,602,1,'actor',NULL,'[\"Bishop\"]'),(105435,101,2,'actor',NULL,'[\"Mother\"]'),(105435,1627,3,'actor',NULL,'[\"Crease\"]'),(105435,549992,4,'actor',NULL,'[\"College-Aged Cosmo\"]'),(105435,4675,5,'director',NULL,NULL),(105435,489623,6,'writer','written by',NULL),(105435,662748,7,'writer','written by',NULL),(105435,35,8,'composer',NULL,NULL),(105435,511979,9,'cinematographer','director of photography',NULL),(105459,862702,10,'cinematographer',NULL,NULL),(105459,442,1,'actor',NULL,'[\"Harley Stone\"]'),(105459,326,2,'actress',NULL,'[\"Michelle McLaine\"]'),(105459,241885,3,'actor',NULL,'[\"Det. Dick Durkin\"]'),(105459,689488,4,'actor',NULL,'[\"The Rat Catcher\"]'),(105459,562699,5,'director',NULL,NULL),(105459,860155,6,'writer','written by',NULL),(105459,339874,7,'producer','producer',NULL),(105459,354245,8,'composer',NULL,NULL),(105459,663914,9,'composer',NULL,NULL),(105466,5976,10,'composer',NULL,NULL),(105466,615,1,'actor',NULL,'[\"Roy Knable\"]'),(105466,1118,2,'actress',NULL,'[\"Helen Knable\"]'),(105466,470,3,'actor',NULL,'[\"Spike\"]'),(105466,5495,4,'actor',NULL,'[\"Darryl Knable\"]'),(105466,1382,5,'director',NULL,NULL),(105466,662678,6,'writer','screenplay',NULL),(105466,421084,7,'writer','screenplay',NULL),(105466,797001,8,'writer','story',NULL),(105466,732708,9,'producer','producer',NULL),(105477,575817,10,'producer','producer',NULL),(105477,230,1,'actor',NULL,'[\"Joe Bomowski\"]'),(105477,1268,2,'actress',NULL,'[\"Tutti\"]'),(105477,1851,3,'actress',NULL,'[\"Gwen Harper\"]'),(105477,715953,4,'actor',NULL,'[\"Parnell\"]'),(105477,6854,5,'director',NULL,NULL),(105477,811414,6,'writer','written by',NULL),(105477,651758,7,'writer','written by',NULL),(105477,204030,8,'writer','written by',NULL),(105477,343453,9,'producer','producer',NULL),(105481,6075,10,'composer',NULL,NULL),(105481,573,1,'actress',NULL,'[\"Shirlee\"]'),(105481,249,2,'actor',NULL,'[\"Jack\"]'),(105481,1162,3,'actor',NULL,'[\"Alan\"]'),(105481,514,4,'actor',NULL,'[\"Steve\"]'),(105481,446060,5,'director',NULL,NULL),(105481,93271,6,'writer','story',NULL),(105481,720334,7,'writer','screenplay',NULL),(105481,76681,8,'producer','producer',NULL),(105481,153590,9,'producer','producer',NULL),(105488,556965,10,'cinematographer','director of photography',NULL),(105488,580527,1,'actor',NULL,'[\"Scott Hastings\"]'),(105488,605388,2,'actress',NULL,'[\"Fran\"]'),(105488,402730,3,'actor',NULL,'[\"Barry Fife\"]'),(105488,861066,4,'actress',NULL,'[\"Shirley Hastings\"]'),(105488,525303,5,'director',NULL,NULL),(105488,100597,6,'writer','earlier screenplay',NULL),(105488,668902,7,'writer','screenplay',NULL),(105488,583938,8,'producer','producer',NULL),(105488,386595,9,'composer',NULL,NULL),(105577,126128,10,'cinematographer',NULL,NULL),(105577,1413,1,'actress',NULL,'[\"Dottie Ingels\"]'),(105577,526,2,'actress',NULL,'[\"Erica Ingels\"]'),(105577,451,3,'actress',NULL,'[\"Opal Ingels\"]'),(105577,402,4,'actress',NULL,'[\"Claudia Curtis\"]'),(105577,1188,5,'director',NULL,NULL),(105577,938487,6,'writer','book \"This Is Your Life\"',NULL),(105577,258286,7,'writer','screenplay',NULL),(105577,643553,8,'producer','producer',NULL),(105577,800089,9,'composer',NULL,NULL),(105616,454236,1,'actor',NULL,'[\"Tom\"]'),(105616,384162,2,'actress',NULL,'[\"Jerry\"]'),(105616,563884,3,'actress',NULL,'[\"Robyn Starling\"]'),(105616,419645,4,'actor',NULL,'[\"Lickboot\"]'),(105616,738736,5,'director',NULL,NULL),(105616,548808,6,'writer','screenplay',NULL),(105616,360253,7,'writer','creator: Tom and Jerry',NULL),(105616,53484,8,'writer','creator: Tom and Jerry',NULL),(105616,49,9,'composer',NULL,NULL),(105619,690940,10,'cinematographer',NULL,NULL),(105619,706,1,'actress',NULL,'[\"Ching\",\"Invisible Woman\",\"Number 3\"]'),(105619,611315,2,'actress',NULL,'[\"Tung\",\"Wonder Woman\",\"Shadow Fox\"]'),(105619,1041,3,'actress',NULL,'[\"Chat\",\"Thief Catcher\",\"Mercy\"]'),(105619,490521,4,'actor',NULL,'[\"Inspector Lau\"]'),(105619,864775,5,'director',NULL,NULL),(105619,789966,6,'writer','written by',NULL),(105619,155642,7,'producer','producer',NULL),(105619,398911,8,'composer',NULL,NULL),(105619,490486,9,'cinematographer',NULL,NULL),(105629,4229,10,'cinematographer','director of photography',NULL),(105629,245,1,'actor',NULL,'[\"Leslie Zevo\"]'),(105629,2091,2,'actor',NULL,'[\"Lt. General Leland Zevo\"]'),(105629,349,3,'actress',NULL,'[\"Alsatia Zevo\"]'),(105629,705,4,'actress',NULL,'[\"Gwen Tyler\"]'),(105629,1469,5,'director',NULL,NULL),(105629,193224,6,'writer','written by',NULL),(105629,425741,7,'producer','producer',NULL),(105629,394924,8,'composer','co-composer',NULL),(105629,1877,9,'composer',NULL,NULL),(105643,827294,1,'actor',NULL,'[\"Joshua Waits\"]'),(105643,362643,2,'actor',NULL,'[\"Michael Waits\"]'),(105643,696705,3,'actress',NULL,'[\"Diana Waits\"]'),(105643,568750,4,'actress',NULL,'[\"Holly Waits\"]'),(105643,289576,5,'director',NULL,NULL),(105643,238489,6,'writer','co-story',NULL),(105643,6017,7,'composer',NULL,NULL),(105643,273904,8,'cinematographer','director of photography',NULL),(105643,24825,9,'editor',NULL,NULL),(105665,5715,10,'cinematographer','director of photography',NULL),(105665,498247,1,'actress',NULL,'[\"Laura Palmer\"]'),(105665,936403,2,'actor',NULL,'[\"Leland Palmer\"]'),(105665,749,3,'actress',NULL,'[\"Shelly Johnson\"]'),(105665,796,4,'actor',NULL,'[\"Bobby Briggs\"]'),(105665,186,5,'director',NULL,NULL),(105665,257306,6,'writer','written by',NULL),(105665,4111,7,'writer','television series Twin Peaks',NULL),(105665,276385,8,'producer','producer',NULL),(105665,823,9,'composer',NULL,NULL),(105682,515201,10,'producer','producer',NULL),(105682,809,1,'actor',NULL,'[\"Stéphane\"]'),(105682,322,2,'actress',NULL,'[\"Camille\"]'),(105682,244707,3,'actor',NULL,'[\"Maxime\"]'),(105682,99953,4,'actress',NULL,'[\"Hélène\"]'),(105682,767110,5,'director',NULL,NULL),(105682,276466,6,'writer','scenario and dialogue',NULL),(105682,867374,7,'writer','scenario collaborator',NULL),(105682,880606,8,'writer','collaborating writer',NULL),(105682,136260,9,'producer','producer',NULL),(105695,142,1,'actor',NULL,'[\"Bill Munny\"]'),(105695,432,2,'actor',NULL,'[\"Little Bill Daggett\"]'),(105695,151,3,'actor',NULL,'[\"Ned Logan\"]'),(105695,1321,4,'actor',NULL,'[\"English Bob\"]'),(105695,672459,5,'writer','written by',NULL),(105695,6215,6,'composer',NULL,NULL),(105695,5726,7,'cinematographer','director of photography',NULL),(105695,185088,8,'editor',NULL,NULL),(105695,120317,9,'production_designer',NULL,NULL),(105793,5856,10,'cinematographer','director of photography',NULL),(105793,196,1,'actor',NULL,'[\"Wayne Campbell\"]'),(105793,1022,2,'actor',NULL,'[\"Garth Algar\"]'),(105793,507,3,'actor',NULL,'[\"Benjamin Oliver\"]'),(105793,119,4,'actress',NULL,'[\"Cassandra\"]'),(105793,790715,5,'director',NULL,NULL),(105793,877425,6,'writer','written by',NULL),(105793,877901,7,'writer','written by',NULL),(105793,584427,8,'producer','producer',NULL),(105793,6254,9,'composer',NULL,NULL),(105851,628956,10,'cinematographer',NULL,NULL),(105851,334,1,'actor',NULL,'[\"Gou Fei\"]'),(105851,945189,2,'actor',NULL,'[\"Judge\"]'),(105851,46993,3,'actress',NULL,'[\"Mona\"]'),(105851,938893,4,'actor',NULL,'[\"Sam Sei\"]'),(105851,482681,5,'director',NULL,NULL),(105851,620609,6,'writer','writer',NULL),(105851,477108,7,'composer',NULL,NULL),(105851,150945,8,'cinematographer',NULL,NULL),(105851,490551,9,'cinematographer',NULL,NULL),(105859,150888,10,'composer',NULL,NULL),(105859,504899,1,'actor',NULL,'[\"Chow Wai On\"]'),(105859,510857,2,'actress',NULL,'[\"Yau Mok Yin\"]'),(105859,1041,3,'actress',NULL,'[\"Gam Seung Yuk\"]'),(105859,947447,4,'actor',NULL,'[\"Eunuch Cho Siu Hing\"]'),(105859,498064,5,'director',NULL,NULL),(105859,155642,6,'director',NULL,NULL),(105859,7139,7,'director',NULL,NULL),(105859,848826,8,'writer',NULL,NULL),(105859,372099,9,'writer',NULL,NULL),(106220,676286,10,'cinematographer','director of photography',NULL),(106220,1378,1,'actress',NULL,'[\"Morticia Addams\"]'),(106220,471,2,'actor',NULL,'[\"Gomez Addams\"]'),(106220,502,3,'actor',NULL,'[\"Uncle Fester Addams\"]'),(106220,349,4,'actress',NULL,'[\"Debbie Jellinsky\"]'),(106220,1756,5,'director',NULL,NULL),(106220,11623,6,'writer','characters',NULL),(106220,397411,7,'writer','written by',NULL),(106220,748784,8,'producer','producer',NULL),(106220,3299,9,'composer',NULL,NULL),(106226,841,10,'cinematographer','director of photography',NULL),(106226,358,1,'actor',NULL,'[\"Newland Archer\"]'),(106226,201,2,'actress',NULL,'[\"Ellen Olenska\"]'),(106226,213,3,'actress',NULL,'[\"May Welland\"]'),(106226,267586,4,'actress',NULL,'[\"Female Opera Singer\"]'),(106226,217,5,'director',NULL,NULL),(106226,923585,6,'writer','novel \"The Age of Innocence\"',NULL),(106226,168379,7,'writer','screenplay',NULL),(106226,208381,8,'producer','producer',NULL),(106226,930,9,'composer',NULL,NULL),(106303,32359,10,'editor',NULL,NULL),(106303,442,1,'actor',NULL,'[\"Ben Corbett\"]'),(106303,909620,2,'actor',NULL,'[\"Eric Desmond\"]'),(106303,452748,3,'actress',NULL,'[\"Anne Marie\"]'),(106303,193850,4,'actor',NULL,'[\"Lemalle\"]'),(106303,557751,5,'director',NULL,NULL),(106303,482780,6,'writer','written by',NULL),(106303,829037,7,'producer','producer',NULL),(106303,578185,8,'composer',NULL,NULL),(106303,123394,9,'cinematographer','director of photography',NULL),(106308,613657,10,'editor',NULL,NULL),(106308,132257,1,'actor',NULL,'[\"Ash\"]'),(106308,1110,2,'actress',NULL,'[\"Sheila\"]'),(106308,317956,3,'actor',NULL,'[\"Lord Arthur\"]'),(106308,718,4,'actor',NULL,'[\"Wiseman\"]'),(106308,600,5,'director',NULL,NULL),(106308,706898,6,'writer','written by',NULL),(106308,849964,7,'producer','producer',NULL),(106308,6173,8,'composer',NULL,NULL),(106308,691084,9,'cinematographer',NULL,NULL),(106332,345146,10,'cinematographer',NULL,NULL),(106332,2000,1,'actor',NULL,'[\"Cheng Dieyi (segment \\\"Douzi\\\")\"]'),(106332,955342,2,'actor',NULL,'[\"Duan Xiaolou (segment \\\"Shitou\\\")\"]'),(106332,84,3,'actress',NULL,'[\"Juxian\"]'),(106332,311212,4,'actor',NULL,'[\"Master Yuan\"]'),(106332,155280,5,'director',NULL,NULL),(106332,497762,6,'writer','novel',NULL),(106332,523760,7,'writer','writer',NULL),(106332,271799,8,'producer','producer',NULL),(106332,947921,9,'composer',NULL,NULL),(106341,44064,10,'editor',NULL,NULL),(106341,394034,1,'actor',NULL,'[\"Bubby\"]'),(106341,71239,2,'actress',NULL,'[\"Mam\"]'),(106341,182995,3,'actor',NULL,'[\"Pop\"]'),(106341,109771,4,'actor',NULL,'[\"Yobbo\"]'),(106341,208854,5,'director',NULL,NULL),(106341,237210,6,'producer','producer',NULL),(106341,698271,7,'producer','producer',NULL),(106341,850374,8,'composer',NULL,NULL),(106341,428244,9,'cinematographer','director of photography',NULL),(106364,863622,10,'director',NULL,NULL),(106364,175834,1,'actor',NULL,'[\"Batman\"]'),(106364,1127,2,'actress',NULL,'[\"Andrea Beaumont\"]'),(106364,952,3,'actor',NULL,'[\"Arthur Reeves\"]'),(106364,5078,4,'actor',NULL,'[\"Phantasm\",\"Carl Beaumont\"]'),(106364,22828,5,'director','sequence director',NULL),(106364,456631,6,'director','sequence director',NULL),(106364,667469,7,'director','sequence director',NULL),(106364,722713,8,'director','sequence director',NULL),(106364,705779,9,'director',NULL,NULL),(106387,6235,10,'composer',NULL,NULL),(106387,136,1,'actor',NULL,'[\"Sam\"]'),(106387,524,2,'actress',NULL,'[\"Joon Pearl\"]'),(106387,1644,3,'actor',NULL,'[\"Benny Pearl\"]'),(106387,194,4,'actress',NULL,'[\"Ruthie\"]'),(106387,154819,5,'director',NULL,NULL),(106387,75727,6,'writer','story',NULL),(106387,573905,7,'writer','story',NULL),(106387,36641,8,'producer','producer',NULL),(106387,744828,9,'producer','producer',NULL),(106400,820852,10,'writer','screenplay',NULL),(106400,46033,1,'actor',NULL,'[\"Jethro Bodine\",\"Jethrine Bodine\"]'),(106400,143,2,'actress',NULL,'[\"Elly May Clampett\"]'),(106400,1815,3,'actor',NULL,'[\"Jed Clampett\"]'),(106400,1458,4,'actress',NULL,'[\"Granny\"]'),(106400,790715,5,'director',NULL,NULL),(106400,377417,6,'writer','television series',NULL),(106400,465199,7,'writer','story',NULL),(106400,742797,8,'writer','story',NULL),(106400,279576,9,'writer','screenplay',NULL),(106408,699192,10,'composer',NULL,NULL),(106408,900012,1,'actress',NULL,'[\"Ginder\"]'),(106408,363167,2,'actor',NULL,'[\"Ranjit\"]'),(106408,451045,3,'actress',NULL,'[\"Hashida\"]'),(106408,475988,4,'actor',NULL,'[\"Manjit\"]'),(106408,149446,5,'director',NULL,NULL),(106408,842934,6,'writer','story and screenplay',NULL),(106408,550691,7,'producer','producer',NULL),(106408,22903,8,'composer',NULL,NULL),(106408,1971705,9,'composer',NULL,NULL),(106417,34885,10,'composer',NULL,NULL),(106417,594074,1,'actress',NULL,'[\"Usagi Tsukino\",\"Sailor Moon\",\"Young Usagi\"]'),(106417,299228,2,'actor',NULL,'[\"Mamoru Chiba\",\"Tuxedo Mask\"]'),(106417,593911,3,'actress',NULL,'[\"Rei Hino\",\"Sailor Mars\"]'),(106417,386752,4,'actress',NULL,'[\"Ami Mizuno\",\"Sailor Mercury\"]'),(106417,407552,5,'director',NULL,NULL),(106417,866742,6,'writer','screenplay',NULL),(106417,847603,7,'writer','author: Kodansha Monthly Nakayoshi',NULL),(106417,525873,8,'writer','adaptation',NULL),(106417,1033257,9,'producer','producer',NULL),(106449,452123,10,'cinematographer',NULL,NULL),(106449,118,1,'actor',NULL,'[\"The Coroner (segment \\\"The Morgue\\\")\"]'),(106449,792,2,'actor',NULL,'[\"Morgue Worker #1 (segment \\\"The Morgue\\\")\"]'),(106449,1361,3,'actor',NULL,'[\"Morgue Worker #2 (segment \\\"The Morgue\\\")\"]'),(106449,1019,4,'actor',NULL,'[\"Bill (segment \\\"The Gas Station\\\")\"]'),(106449,837917,5,'director',NULL,NULL),(106449,113126,6,'writer','written by',NULL),(106449,29445,7,'writer','written by',NULL),(106449,455253,8,'producer','executive producer',NULL),(106449,485788,9,'composer',NULL,NULL),(106452,660016,10,'writer','screenplay by',NULL),(106452,270,1,'actress',NULL,'[\"Marti Malone\"]'),(106452,672,2,'actress',NULL,'[\"Carol Malone\"]'),(106452,455767,3,'actor',NULL,'[\"Steve Malone\"]'),(106452,614641,4,'actor',NULL,'[\"Andy Malone\"]'),(106452,1206,5,'director',NULL,NULL),(106452,278277,6,'writer','based on the novel \"The Body Snatchers\" by',NULL),(106452,162888,7,'writer','screen story by',NULL),(106452,169540,8,'writer','screen story by',NULL),(106452,2340,9,'writer','screenplay by',NULL),(106453,5801,10,'cinematographer',NULL,NULL),(106453,187,1,'actress',NULL,'[\"Rebecca Carlson\"]'),(106453,353,2,'actor',NULL,'[\"Frank Dulaney\"]'),(106453,1505,3,'actor',NULL,'[\"Robert Garrett\"]'),(106453,271,4,'actress',NULL,'[\"Joanne Braslow\"]'),(106453,248942,5,'director',NULL,NULL),(106453,592436,6,'writer','written by',NULL),(106453,209569,7,'producer','producer',NULL),(106453,609265,8,'producer','producer',NULL),(106453,6251,9,'composer',NULL,NULL),(106469,314858,10,'producer','producer',NULL),(106469,152082,1,'actor',NULL,'[\"Miklo\"]'),(106469,1963,2,'actor',NULL,'[\"Cruz\"]'),(106469,973,3,'actor',NULL,'[\"Paco\"]'),(106469,145049,4,'actor',NULL,'[\"Montana\"]'),(106469,431,5,'director',NULL,NULL),(106469,859469,6,'writer','story',NULL),(106469,45180,7,'writer','screenplay',NULL),(106469,406228,8,'writer','screenplay',NULL),(106469,616152,9,'writer','screenplay',NULL),(106471,125809,10,'cinematographer','director of photography',NULL),(106471,1696,1,'actor',NULL,'[\"Dr. Nick Cavanaugh\"]'),(106471,145,2,'actress',NULL,'[\"Helena\"]'),(106471,200,3,'actor',NULL,'[\"Ray O\'Malley\"]'),(106471,1748,4,'actor',NULL,'[\"Dr. Alan Harrison\"]'),(106471,528337,5,'director',NULL,NULL),(106471,129310,6,'writer','story',NULL),(106471,563604,7,'producer','producer',NULL),(106471,6251,8,'composer',NULL,NULL),(106471,5648,9,'cinematographer',NULL,NULL),(106582,4287,10,'cinematographer','director of photography',NULL),(106582,230,1,'actor',NULL,'[\"Gabe Walker\"]'),(106582,1475,2,'actor',NULL,'[\"Eric Qualen\"]'),(106582,740264,3,'actor',NULL,'[\"Hal Tucker\"]'),(106582,5508,4,'actress',NULL,'[\"Jessie Deighan\"]'),(106582,1317,5,'director',NULL,NULL),(106582,519026,6,'writer','premise',NULL),(106582,289833,7,'writer','screen story',NULL),(106582,550728,8,'producer','producer',NULL),(106582,2303,9,'composer',NULL,NULL),(106598,628056,10,'composer',NULL,NULL),(106598,101,1,'actor',NULL,'[\"Beldar Conehead\",\"Donald R. DeCicco\"]'),(106598,4852,2,'actress',NULL,'[\"Prymatt Conehead\",\"Mary Margaret DeCicco\"]'),(106598,461446,3,'actor',NULL,'[\"Air Traffic Controller\"]'),(106598,672103,4,'actor',NULL,'[\"Captain Air Traffic\"]'),(106598,6625,5,'director',NULL,NULL),(106598,205569,6,'writer','written by',NULL),(106598,877425,7,'writer','written by',NULL),(106598,877901,8,'writer','written by',NULL),(106598,584427,9,'producer','producer',NULL),(106611,824406,10,'producer','producer',NULL),(106611,1006,1,'actor',NULL,'[\"Irv\"]'),(106611,502442,2,'actor',NULL,'[\"Derice Bannock\"]'),(106611,234791,3,'actor',NULL,'[\"Sanka Coffie\"]'),(106611,507644,4,'actor',NULL,'[\"Junior Bevil\"]'),(106611,5509,5,'director',NULL,NULL),(106611,796848,6,'writer','story',NULL),(106611,6916,7,'writer','story',NULL),(106611,842476,8,'writer','screenplay',NULL),(106611,325271,9,'writer','screenplay',NULL),(106673,434922,10,'editor','film editor',NULL),(106673,177,1,'actor',NULL,'[\"Dave Kovic\",\"Bill Mitchell\"]'),(106673,244,2,'actress',NULL,'[\"Ellen Mitchell\"]'),(106673,1449,3,'actor',NULL,'[\"Bob Alexander\"]'),(106673,242656,4,'actor',NULL,'[\"Alan Reed\"]'),(106673,718645,5,'director',NULL,NULL),(106673,2657,6,'writer','written by',NULL),(106673,795682,7,'producer','producer',NULL),(106673,6133,8,'composer',NULL,NULL),(106673,4229,9,'cinematographer','director of photography',NULL),(106677,4205,10,'production_designer',NULL,NULL),(106677,518715,1,'actor',NULL,'[\"Randall \'Pink\' Floyd\"]'),(106677,927812,2,'actor',NULL,'[\"Mitch Kramer\"]'),(106677,190,3,'actor',NULL,'[\"David Wooderson\"]'),(106677,168262,4,'actor',NULL,'[\"Ron Slater\"]'),(106677,500,5,'director',NULL,NULL),(106677,199733,6,'producer','producer',NULL),(106677,413208,7,'producer','producer',NULL),(106677,199679,8,'cinematographer','director of photography',NULL),(106677,10471,9,'editor',NULL,NULL),(106689,336341,10,'editor',NULL,NULL),(106689,112,1,'actor',NULL,'[\"Mike Graham\"]'),(106689,1772,2,'actor',NULL,'[\"Malcolm Philpott\"]'),(106689,575,3,'actress',NULL,'[\"Sabrina Carver\"]'),(106689,505971,4,'actor',NULL,'[\"Alex Tierney\"]'),(106689,2413,5,'director',NULL,NULL),(106689,811056,6,'producer','producer',NULL),(106689,2303,7,'composer',NULL,NULL),(106689,247885,8,'cinematographer','director of photography',NULL),(106689,101964,9,'editor',NULL,NULL),(106697,506546,10,'producer','producer',NULL),(106697,230,1,'actor',NULL,'[\"John Spartan\"]'),(106697,648,2,'actor',NULL,'[\"Simon Phoenix\"]'),(106697,113,3,'actress',NULL,'[\"Lenina Huxley\"]'),(106697,1329,4,'actor',NULL,'[\"Dr. Raymond Cocteau\"]'),(106697,104193,5,'director',NULL,NULL),(106697,6997,6,'writer','story',NULL),(106697,719427,7,'writer','story',NULL),(106697,914058,8,'writer','screenplay',NULL),(106697,443599,9,'producer','producer',NULL),(106770,209581,10,'producer','producer',NULL),(106770,1462,1,'actor',NULL,'[\"Bruce Lee\"]'),(106770,452,2,'actress',NULL,'[\"Linda Lee\"]'),(106770,1822,3,'actor',NULL,'[\"Bill Krieger\"]'),(106770,495229,4,'actress',NULL,'[\"Vivian Emery\"]'),(106770,3418,5,'director',NULL,NULL),(106770,167195,6,'writer','book \"Bruce Lee: The Biography\"',NULL),(106770,4791,7,'writer','book \"Bruce Lee: The Man Only I Knew\"',NULL),(106770,451689,8,'writer','screenplay',NULL),(106770,706311,9,'writer','screenplay',NULL),(106834,591413,10,'composer',NULL,NULL),(106834,235,1,'actress',NULL,'[\"Sissy Hankshaw\"]'),(106834,966,2,'actress',NULL,'[\"Delores Del Ruby\"]'),(106834,1552,3,'actor',NULL,'[\"The Chink\"]'),(106834,1141,4,'actress',NULL,'[\"Miss Adrian\"]'),(106834,1814,5,'director',NULL,NULL),(106834,730478,6,'writer','novel',NULL),(106834,662435,7,'producer','producer',NULL),(106834,680599,8,'producer','producer',NULL),(106834,485807,9,'composer',NULL,NULL),(106873,75244,10,'cinematographer',NULL,NULL),(106873,800,1,'actor',NULL,'[\"Ned Ravine\"]'),(106873,145,2,'actress',NULL,'[\"Laura Lincolnberry\"]'),(106873,625075,3,'actress',NULL,'[\"Lana Ravine\"]'),(106873,707,4,'actress',NULL,'[\"Lola Cain\"]'),(106873,5348,5,'director',NULL,NULL),(106873,641714,6,'writer','written by',NULL),(106873,307070,7,'producer','producer',NULL),(106873,414498,8,'producer','producer',NULL),(106873,6099,9,'composer',NULL,NULL),(106880,779467,1,'actor',NULL,'[\"Tasty Taste\"]'),(106880,492924,2,'actor',NULL,'[\"Tone Def\"]'),(106880,192090,3,'actor',NULL,'[\"Ice Cold\"]'),(106880,501435,4,'actress',NULL,'[\"Nina Blackburn\"]'),(106880,779011,5,'producer','producer',NULL),(106880,3180502,6,'composer',NULL,NULL),(106880,3686,7,'cinematographer',NULL,NULL),(106880,394862,8,'editor',NULL,NULL),(106880,87842,9,'production_designer',NULL,NULL),(106918,204862,10,'producer','producer',NULL),(106918,129,1,'actor',NULL,'[\"Mitch McDeere\"]'),(106918,675,2,'actress',NULL,'[\"Abby McDeere\"]'),(106918,432,3,'actor',NULL,'[\"Avery Tolar\"]'),(106918,1358,4,'actor',NULL,'[\"Oliver Lambert\"]'),(106918,1628,5,'director',NULL,NULL),(106918,1300,6,'writer','novel',NULL),(106918,704792,7,'writer','screenplay',NULL),(106918,1801,8,'writer','screenplay',NULL),(106918,713128,9,'writer','screenplay',NULL),(106965,6231,10,'composer',NULL,NULL),(106965,725284,1,'actor',NULL,'[\"Jesse\"]'),(106965,1614,2,'actress',NULL,'[\"Rae Lindley\"]'),(106965,514,3,'actor',NULL,'[\"Glen\"]'),(106965,40739,4,'actress',NULL,'[\"Annie Greenwood\"]'),(106965,934578,5,'director',NULL,NULL),(106965,907929,6,'writer','screenplay by',NULL),(106965,88097,7,'writer','screenplay by',NULL),(106965,506681,8,'producer','producer',NULL),(106965,795682,9,'producer','producer',NULL),(106977,6133,10,'composer',NULL,NULL),(106977,148,1,'actor',NULL,'[\"Dr. Richard Kimble\"]'),(106977,169,2,'actor',NULL,'[\"Samuel Gerard\"]'),(106977,688,3,'actress',NULL,'[\"Helen Kimble\"]'),(106977,194,4,'actress',NULL,'[\"Dr. Anne Eastman\"]'),(106977,1112,5,'director',NULL,NULL),(106977,835732,6,'writer','screenplay',NULL),(106977,878638,7,'writer','screenplay',NULL),(106977,400403,8,'writer','characters',NULL),(106977,465745,9,'producer','producer',NULL),(106989,853752,10,'editor',NULL,NULL),(106989,631362,1,'actor',NULL,'[\"Gatica\"]'),(106989,846752,2,'actor',NULL,'[\"El Ruso\"]'),(106989,182211,3,'actor',NULL,'[\"Jesús Gatica\"]'),(106989,309679,4,'actress',NULL,'[\"Madre\"]'),(106989,269420,5,'director',NULL,NULL),(106989,433056,6,'writer',NULL,NULL),(106989,702000,7,'composer',NULL,NULL),(106989,944158,8,'composer',NULL,NULL),(106989,4600,9,'cinematographer',NULL,NULL),(107007,887635,10,'cinematographer',NULL,NULL),(107007,297,1,'actor',NULL,'[\"Lieut. Gen. James Longstreet\"]'),(107007,640,2,'actor',NULL,'[\"Gen. Robert E. Lee\"]'),(107007,2332,3,'actor',NULL,'[\"Maj. Gen. George E. Pickett\"]'),(107007,430151,4,'actor',NULL,'[\"Brig. Gen. Lewis A. Armistead\"]'),(107007,561813,5,'director',NULL,NULL),(107007,787033,6,'writer','novel \"The Killer Angels\"',NULL),(107007,260800,7,'producer','producer',NULL),(107007,441831,8,'producer','producer',NULL),(107007,6055,9,'composer',NULL,NULL),(107048,380670,10,'editor',NULL,NULL),(107048,195,1,'actor',NULL,'[\"Phil\"]'),(107048,510,2,'actress',NULL,'[\"Rita\"]'),(107048,254402,3,'actor',NULL,'[\"Larry\"]'),(107048,864997,4,'actor',NULL,'[\"Ned\"]'),(107048,601,5,'director',NULL,NULL),(107048,748035,6,'writer','story by',NULL),(107048,16603,7,'producer','producer',NULL),(107048,6070,8,'composer',NULL,NULL),(107048,7037,9,'cinematographer','director of photography',NULL),(107050,421528,10,'cinematographer','director of photography',NULL),(107050,493,1,'actor',NULL,'[\"John Gustafson\"]'),(107050,527,2,'actor',NULL,'[\"Max Goldman\"]'),(107050,268,3,'actress',NULL,'[\"Ariel Truax\"]'),(107050,580565,4,'actor',NULL,'[\"Grandpa Gustafson\"]'),(107050,677953,5,'director',NULL,NULL),(107050,425756,6,'writer','written by',NULL),(107050,75828,7,'producer','producer',NULL),(107050,204862,8,'producer','producer',NULL),(107050,6293,9,'composer',NULL,NULL),(107057,521554,10,'editor',NULL,NULL),(107057,360,1,'actress',NULL,'[\"Jennifer Haines\"]'),(107057,467,2,'actor',NULL,'[\"David Edgar Greenhill\"]'),(107057,2332,3,'actor',NULL,'[\"Phil Garson\"]'),(107057,912001,4,'actor',NULL,'[\"Moe Plimpton\"]'),(107057,1486,5,'director',NULL,NULL),(107057,169540,6,'writer','written by',NULL),(107057,710388,7,'producer','producer',NULL),(107057,6290,8,'composer',NULL,NULL),(107057,5647,9,'cinematographer','director of photography',NULL),(107065,5659,10,'cinematographer',NULL,NULL),(107065,541,1,'actress',NULL,'[\"Mama Rose\"]'),(107065,726200,2,'actor',NULL,'[\"Herbie\"]'),(107065,1269,3,'actress',NULL,'[\"Louise\",\"Gypsy Rose Lee\"]'),(107065,799,4,'actor',NULL,'[\"Pop\"]'),(107065,1915,5,'director',NULL,NULL),(107065,491306,6,'writer','book',NULL),(107065,497346,7,'writer','memoirs: \"Gypsy, A Memoir\"',NULL),(107065,319507,8,'producer','producer',NULL),(107065,6312,9,'composer',NULL,NULL),(107076,5665,10,'cinematographer','director of photography',NULL),(107076,241,1,'actor',NULL,'[\"Chance Boudreaux\"]'),(107076,448,2,'actor',NULL,'[\"Emil Fouchon\"]'),(107076,319,3,'actress',NULL,'[\"Natasha \'Nat\' Binder\"]'),(107076,679326,4,'actor',NULL,'[\"Douglas Binder\"]'),(107076,247,5,'director',NULL,NULL),(107076,199733,6,'producer','producer',NULL),(107076,413208,7,'producer','producer',NULL),(107076,6251,8,'composer',NULL,NULL),(107076,800405,9,'composer',NULL,NULL),(107091,199733,10,'producer','producer',NULL),(107091,375,1,'actor',NULL,'[\"Thomas Reilly\"]'),(107091,1301,2,'actor',NULL,'[\"Harrison Winslow\"]'),(107091,5569,3,'actress',NULL,'[\"Penny Washington\"]'),(107091,1718,4,'actress',NULL,'[\"Julia\"]'),(107091,881038,5,'director',NULL,NULL),(107091,360810,6,'writer','short film',NULL),(107091,360779,7,'writer','screen story',NULL),(107091,534681,8,'writer','screen story',NULL),(107091,934093,9,'writer','screen story',NULL),(107096,459663,10,'producer','producer',NULL),(107096,494693,1,'actress',NULL,'[\"Le Ly\"]'),(107096,169,2,'actor',NULL,'[\"Steve Butler\"]'),(107096,628955,3,'actor',NULL,'[\"Papa\"]'),(107096,763009,4,'actress',NULL,'[\"Le Ly - Age 5\"]'),(107096,231,5,'director',NULL,NULL),(107096,371665,6,'writer','book \"When Heaven and Earth Changed Places\"',NULL),(107096,943430,7,'writer','book \"When Heaven and Earth Changed Places\"',NULL),(107096,371664,8,'writer','book \"Child of War, Woman of Peace\"',NULL),(107096,457715,9,'producer','producer',NULL),(107099,396013,10,'actor',NULL,'[\"Sebastian\"]'),(107099,1673,1,'actor',NULL,'[\"Grandfather\"]'),(107099,5412,2,'actress',NULL,'[\"Fräulein Rottenmeier\"]'),(107099,623658,3,'actress',NULL,'[\"Grandmother\"]'),(107099,680795,4,'actress',NULL,'[\"Frau Sesemann\"]'),(107099,709634,5,'actress',NULL,'[\"Klara\"]'),(107099,861572,6,'actress',NULL,'[\"Heidi\"]'),(107099,372021,7,'actress',NULL,'[\"Dete\"]'),(107099,81070,8,'actor',NULL,'[\"Herr Sesemann\"]'),(107099,106338,9,'actor',NULL,'[\"Peter\"]'),(107120,2201,10,'composer',NULL,NULL),(107120,541,1,'actress',NULL,'[\"Winifred\"]'),(107120,572,2,'actress',NULL,'[\"Sarah\"]'),(107120,1562,3,'actress',NULL,'[\"Mary\"]'),(107120,441814,4,'actor',NULL,'[\"Max\"]'),(107120,650905,5,'director',NULL,NULL),(107120,456946,6,'writer','story',NULL),(107120,308376,7,'writer','story',NULL),(107120,193854,8,'writer','screenplay',NULL),(107120,353187,9,'producer','producer',NULL),(107131,506410,10,'producer','producer',NULL),(107131,150,1,'actor',NULL,'[\"Chance\"]'),(107131,398,2,'actress',NULL,'[\"Sassy\"]'),(107131,17519,3,'actor',NULL,'[\"Molly\'s Father\"]'),(107131,76204,4,'actor',NULL,'[\"Desk Sergeant\"]'),(107131,242271,5,'director',NULL,NULL),(107131,122484,6,'writer','novel \"The Incredible Journey\"',NULL),(107131,3031,7,'writer','screenplay',NULL),(107131,941314,8,'writer','screenplay',NULL),(107131,155942,9,'producer','producer',NULL),(107144,132695,10,'editor',NULL,NULL),(107144,221,1,'actor',NULL,'[\"Topper Harley\"]'),(107144,978,2,'actor',NULL,'[\"Tug Benson\"]'),(107144,420,3,'actress',NULL,'[\"Ramada Rodham Hayman\"]'),(107144,1077,4,'actor',NULL,'[\"Col. Denton Walters\"]'),(107144,720,5,'director',NULL,NULL),(107144,698493,6,'writer','characters',NULL),(107144,45927,7,'producer','producer',NULL),(107144,6231,8,'composer',NULL,NULL),(107144,502954,9,'cinematographer','director of photography',NULL),(107151,418011,10,'editor',NULL,NULL),(107151,460,1,'actor',NULL,'[\"Esteban Trueba\"]'),(107151,658,2,'actress',NULL,'[\"Clara\"]'),(107151,744,3,'actress',NULL,'[\"Tránsito\"]'),(107151,39911,4,'actor',NULL,'[\"Man at Cattlemarket\"]'),(107151,806,5,'director',NULL,NULL),(107151,21196,6,'writer','novel',NULL),(107151,251536,7,'producer','producer',NULL),(107151,1877,8,'composer',NULL,NULL),(107151,675608,9,'cinematographer',NULL,NULL),(107156,510908,10,'cinematographer',NULL,NULL),(107156,152061,1,'actor',NULL,'[\"Wai-Tung Gao\"]'),(107156,157771,2,'actress',NULL,'[\"Wei-Wei\"]'),(107156,13833,3,'actress',NULL,'[\"Mrs. Gao\"]'),(107156,485950,4,'actor',NULL,'[\"Mr. Gao\"]'),(107156,487,5,'director',NULL,NULL),(107156,671824,6,'writer','written by',NULL),(107156,770005,7,'writer','written by',NULL),(107156,394046,8,'producer','producer',NULL),(107156,534794,9,'composer',NULL,NULL),(107206,167613,10,'editor',NULL,NULL),(107206,142,1,'actor',NULL,'[\"Frank Horrigan\"]'),(107206,518,2,'actor',NULL,'[\"Mitch Leary\"]'),(107206,623,3,'actress',NULL,'[\"Lilly Raines\"]'),(107206,1518,4,'actor',NULL,'[\"Al D\'Andrea\"]'),(107206,583,5,'director',NULL,NULL),(107206,536587,6,'writer','written by',NULL),(107206,32314,7,'producer','producer',NULL),(107206,1553,8,'composer',NULL,NULL),(107206,7037,9,'cinematographer','director of photography',NULL),(107207,357421,10,'editor',NULL,NULL),(107207,358,1,'actor',NULL,'[\"Gerry Conlon\"]'),(107207,592,2,'actor',NULL,'[\"Giuseppe Conlon\"]'),(107207,188949,3,'actress',NULL,'[\"Girl in Pub\"]'),(107207,2535022,4,'actor',NULL,'[\"Guildford Soldier\"]'),(107207,6487,5,'director',NULL,NULL),(107207,174840,6,'writer','autobiographical book \"Proved Innocent\"',NULL),(107207,313623,7,'writer','screenplay',NULL),(107207,2303,8,'composer',NULL,NULL),(107207,84695,9,'cinematographer','director of photography',NULL),(107211,40460,10,'cinematographer','director of photography',NULL),(107211,602,1,'actor',NULL,'[\"John Gage\"]'),(107211,193,2,'actress',NULL,'[\"Diana Murphy\"]'),(107211,437,3,'actor',NULL,'[\"David Murphy\"]'),(107211,1025,4,'actor',NULL,'[\"William Shackleford\"]'),(107211,1490,5,'director',NULL,NULL),(107211,257209,6,'writer','novel',NULL),(107211,427468,7,'writer','screenplay',NULL),(107211,5121,8,'producer','producer',NULL),(107211,290,9,'composer',NULL,NULL),(107212,6108,10,'composer',NULL,NULL),(107212,273,1,'actor',NULL,'[\"Unca Lou\"]'),(107212,2023,2,'actor',NULL,'[\"Jamie Ross\"]'),(107212,178,3,'actress',NULL,'[\"Beth Warden\",\"Claire Everett\"]'),(107212,200,4,'actor',NULL,'[\"Jack Belston\"]'),(107212,82802,5,'director',NULL,NULL),(107212,467942,6,'producer','producer',NULL),(107212,81751,7,'producer','producer',NULL),(107212,628352,8,'producer','producer',NULL),(107212,798711,9,'producer','producer',NULL),(107214,465941,10,'editor',NULL,NULL),(107214,352780,1,'actor',NULL,'[\"Heinzi Bösel\"]'),(107214,233544,2,'actor',NULL,'[\"Kurt Fellner\"]'),(107214,389463,3,'actress',NULL,'[\"Kirchnerwirtin\"]'),(107214,613677,4,'actor',NULL,'[\"Kirchbergwirt\"]'),(107214,361864,5,'director',NULL,NULL),(107214,233315,6,'producer','producer',NULL),(107214,470338,7,'producer','producer',NULL),(107214,802470,8,'composer',NULL,NULL),(107214,783178,9,'cinematographer',NULL,NULL),(107282,596360,10,'cinematographer','director of photography',NULL),(107282,674,1,'actress',NULL,'[\"Waverly - The Daughter\"]'),(107282,1034,2,'actress',NULL,'[\"Rose - The Daughter\"]'),(107282,157905,3,'actress',NULL,'[\"Suyuan - The Mother\"]'),(107282,157796,4,'actress',NULL,'[\"Lindo - The Mother\"]'),(107282,911061,5,'director',NULL,NULL),(107282,848819,6,'writer','novel',NULL),(107282,60103,7,'writer','screenplay',NULL),(107282,548410,8,'producer','producer',NULL),(107282,6235,9,'composer',NULL,NULL),(107290,2354,10,'composer',NULL,NULL),(107290,554,1,'actor',NULL,'[\"Grant\"]'),(107290,368,2,'actress',NULL,'[\"Ellie\"]'),(107290,156,3,'actor',NULL,'[\"Malcolm\"]'),(107290,277,4,'actor',NULL,'[\"Hammond\"]'),(107290,229,5,'director',NULL,NULL),(107290,341,6,'writer','novel',NULL),(107290,462895,7,'writer','screenplay',NULL),(107290,5086,8,'producer','producer',NULL),(107290,596520,9,'producer','producer',NULL),(107315,22134,10,'actress',NULL,'[\"Amparo\"]'),(107315,1075,1,'actor',NULL,'[\"Nicholas\"]'),(107315,286579,2,'actress',NULL,'[\"Kika\"]'),(107315,721,3,'actress',NULL,'[\"Andrea Caracortada\"]'),(107315,142964,4,'actor',NULL,'[\"Ramón\"]'),(107315,264,5,'director',NULL,NULL),(107315,5790,6,'cinematographer','director of photography',NULL),(107315,757814,7,'editor',NULL,NULL),(107315,658041,8,'actress',NULL,'[\"Juana\"]'),(107315,482081,9,'actor',NULL,'[\"Pablo\"]'),(107362,745030,10,'producer','producer',NULL),(107362,216,1,'actor',NULL,'[\"Jack Slater\"]'),(107362,719,2,'actor',NULL,'[\"John Practice\"]'),(107362,138770,3,'actor',NULL,'[\"Frank\"]'),(107362,1097,4,'actor',NULL,'[\"Benedict\"]'),(107362,1532,5,'director',NULL,NULL),(107362,672015,6,'writer','story',NULL),(107362,498963,7,'writer','story',NULL),(107362,948,8,'writer','screenplay',NULL),(107362,36714,9,'writer','screenplay',NULL),(107387,744802,10,'editor',NULL,NULL),(107387,1116,1,'actor',NULL,'[\"Leprechaun\"]'),(107387,98,2,'actress',NULL,'[\"Tory\"]'),(107387,645949,3,'actor',NULL,'[\"Nathan\"]'),(107387,392625,4,'actor',NULL,'[\"Ozzie\"]'),(107387,428751,5,'director',NULL,NULL),(107387,540009,6,'producer','producer',NULL),(107387,454349,7,'composer',NULL,NULL),(107387,2886,8,'composer',NULL,NULL),(107387,410521,9,'cinematographer','director of photography',NULL),(107426,5886,10,'cinematographer',NULL,NULL),(107426,206,1,'actor',NULL,'[\"Siddhartha\"]'),(107426,403,2,'actress',NULL,'[\"Lisa Conrad\"]'),(107426,948078,3,'actor',NULL,'[\"Lama Norbu\"]'),(107426,1389,4,'actor',NULL,'[\"Dean Conrad\"]'),(107426,934,5,'director',NULL,NULL),(107426,943382,6,'writer','screenplay',NULL),(107426,672546,7,'writer','screenplay',NULL),(107426,859016,8,'producer','producer',NULL),(107426,757098,9,'composer',NULL,NULL),(107492,6188,10,'composer',NULL,NULL),(107492,727120,1,'actor',NULL,'[\"Clive Walton\"]'),(107492,710909,2,'actor',NULL,'[\"Marvin Handleman\"]'),(107492,5220,3,'actress',NULL,'[\"Dial S Woman\"]'),(107492,722269,4,'actress',NULL,'[\"Nude Ninja\"]'),(107492,96995,5,'director',NULL,NULL),(107492,97000,6,'writer','story',NULL),(107492,539719,7,'writer','screenplay',NULL),(107492,193454,8,'writer','screenplay',NULL),(107492,705400,9,'producer','producer',NULL),(107501,316626,10,'editor',NULL,NULL),(107501,154,1,'actor',NULL,'[\"Justin McLeod\"]'),(107501,1763,2,'actor',NULL,'[\"Charles E. \'Chuck\' Norstadt\"]'),(107501,926592,3,'actress',NULL,'[\"Catherine Palin\"]'),(107501,557739,4,'actress',NULL,'[\"Gloria Norstadt\"]'),(107501,390708,5,'writer','novel',NULL),(107501,534352,6,'writer','screenplay',NULL),(107501,202704,7,'producer','producer',NULL),(107501,35,8,'composer',NULL,NULL),(107501,5791,9,'cinematographer',NULL,NULL),(107507,95,1,'actor',NULL,'[\"Larry Lipton\"]'),(107507,473,2,'actress',NULL,'[\"Carol Lipton\"]'),(107507,12178,3,'actor',NULL,'[\"Paul House\"]'),(107507,169565,4,'actress',NULL,'[\"Lillian House\"]'),(107507,108613,5,'writer','written by',NULL),(107507,339086,6,'producer','producer',NULL),(107507,5688,7,'cinematographer',NULL,NULL),(107507,607673,8,'editor',NULL,NULL),(107507,520288,9,'production_designer',NULL,NULL),(107529,394494,10,'cinematographer','director of photography',NULL),(107529,422,1,'actor',NULL,'[\"Lawrence Woolsey\"]'),(107529,1550,2,'actress',NULL,'[\"Ruth Corday\",\"Carole in \'Mant!\'\"]'),(107529,272086,3,'actor',NULL,'[\"Gene Loomis\"]'),(107529,441814,4,'actor',NULL,'[\"Stan\"]'),(107529,1102,5,'director',NULL,NULL),(107529,351919,6,'writer','screenplay by',NULL),(107529,421948,7,'writer','story by',NULL),(107529,278228,8,'producer','producer',NULL),(107529,25,9,'composer',NULL,NULL),(107566,156816,10,'editor',NULL,NULL),(107566,43170,1,'actress',NULL,'[\"Sad Girl\"]'),(107566,520203,2,'actress',NULL,'[\"Mousie\"]'),(107566,889846,3,'actor',NULL,'[\"Ernesto\"]'),(107566,222591,4,'actor',NULL,'[\"Devine\"]'),(107566,25978,5,'director',NULL,NULL),(107566,173207,6,'producer','producer',NULL),(107566,368477,7,'producer','producer',NULL),(107566,852616,8,'composer',NULL,NULL),(107566,6554,9,'cinematographer',NULL,NULL),(107614,931265,10,'producer','producer',NULL),(107614,245,1,'actor',NULL,'[\"Daniel Hillard\",\"Mrs. Doubtfire\"]'),(107614,398,2,'actress',NULL,'[\"Miranda Hillard\"]'),(107614,112,3,'actor',NULL,'[\"Stu Dunmeyer\"]'),(107614,1213,4,'actor',NULL,'[\"Frank Hillard\"]'),(107614,1060,5,'director',NULL,NULL),(107614,277590,6,'writer','based upon \"Alias Madame Doubtfire\" by',NULL),(107614,802020,7,'writer','screenplay by',NULL),(107614,228908,8,'writer','screenplay by',NULL),(107614,705365,9,'producer','producer',NULL),(107616,546064,10,'editor',NULL,NULL),(107616,110,1,'actor',NULL,'[\"Benedick\"]'),(107616,668,2,'actress',NULL,'[\"Beatrice\"]'),(107616,206,3,'actor',NULL,'[\"Don John\"]'),(107616,295,4,'actress',NULL,'[\"Hero\"]'),(107616,636,5,'writer','play',NULL),(107616,263236,6,'producer','producer',NULL),(107616,661406,7,'producer','producer',NULL),(107616,236462,8,'composer',NULL,NULL),(107616,484249,9,'cinematographer','director of photography',NULL),(107653,158360,10,'production_designer',NULL,NULL),(107653,667,1,'actor',NULL,'[\"Johnny\"]'),(107653,789093,2,'actress',NULL,'[\"Louise\"]'),(107653,1020,3,'actress',NULL,'[\"Sophie\"]'),(107653,190208,4,'actor',NULL,'[\"Jeremy\"]'),(107653,5139,5,'director',NULL,NULL),(107653,151925,6,'producer','producer',NULL),(107653,225614,7,'composer',NULL,NULL),(107653,5836,8,'cinematographer',NULL,NULL),(107653,339856,9,'editor',NULL,NULL),(107688,353893,10,'producer','producer',NULL),(107688,384,1,'actor',NULL,'[\"Jack Skellington - Singing Voice\",\"Barrel\",\"Clown with the Tear Away Face\"]'),(107688,1697,2,'actor',NULL,'[\"Jack Skellington\"]'),(107688,1573,3,'actress',NULL,'[\"Sally\",\"Shock\"]'),(107688,382676,4,'actor',NULL,'[\"Dr. Finkelstein\"]'),(107688,783139,5,'director',NULL,NULL),(107688,318,6,'writer','based on a story and characters by',NULL),(107688,568313,7,'writer','adaptation by',NULL),(107688,3031,8,'writer','screenplay by',NULL),(107688,224145,9,'producer','producer',NULL),(107745,590042,10,'producer','producer',NULL),(107745,186903,1,'actor',NULL,'[\"Cornelius\"]'),(107745,893965,2,'actor',NULL,'[\"Phineas\"]'),(107745,86111,3,'actress',NULL,'[\"Abigail\"]'),(107745,339745,4,'actor',NULL,'[\"Edgar\"]'),(107745,343799,5,'director',NULL,NULL),(107745,483286,6,'writer','story',NULL),(107745,949861,7,'writer','written by',NULL),(107745,911660,8,'writer','written by',NULL),(107745,456946,9,'producer','producer',NULL),(107756,734870,10,'cinematographer','director of photography',NULL),(107756,842770,1,'actress',NULL,'[\"Orlando\"]'),(107756,708,2,'actor',NULL,'[\"Shelmerdine\"]'),(107756,187998,3,'actor',NULL,'[\"Queen Elizabeth I\"]'),(107756,813896,4,'actor',NULL,'[\"Singer\",\"Angel\"]'),(107756,6845,5,'director',NULL,NULL),(107756,941173,6,'writer','based on the book by',NULL),(107756,232924,7,'writer','story editor',NULL),(107756,791931,8,'producer','producer',NULL),(107756,609365,9,'composer',NULL,NULL),(107798,738196,10,'editor',NULL,NULL),(107798,210,1,'actress',NULL,'[\"Darby Shaw\"]'),(107798,243,2,'actor',NULL,'[\"Gray Grantham\"]'),(107798,1731,3,'actor',NULL,'[\"Thomas Callahan\"]'),(107798,1334,4,'actor',NULL,'[\"Gavin Verheek\"]'),(107798,1587,5,'director',NULL,NULL),(107798,1300,6,'writer','book',NULL),(107798,115764,7,'producer','producer',NULL),(107798,35,8,'composer',NULL,NULL),(107798,3552,9,'cinematographer','director of photography',NULL),(107808,185088,10,'editor',NULL,NULL),(107808,126,1,'actor',NULL,'[\"Butch Haynes\"]'),(107808,142,2,'actor',NULL,'[\"Red Garnett\"]'),(107808,368,3,'actress',NULL,'[\"Sally Gerber\"]'),(107808,412901,4,'actor',NULL,'[\"Phillip Perry\"]'),(107808,359387,5,'writer','written by',NULL),(107808,425741,6,'producer','producer',NULL),(107808,883603,7,'producer','producer',NULL),(107808,6215,8,'composer',NULL,NULL),(107808,5726,9,'cinematographer','director of photography',NULL),(107818,570947,10,'editor',NULL,NULL),(107818,158,1,'actor',NULL,'[\"Andrew Beckett\"]'),(107818,243,2,'actor',NULL,'[\"Joe Miller\"]'),(107818,561809,3,'actress',NULL,'[\"Judge Tate\"]'),(107818,453248,4,'actor',NULL,'[\"\'Crutches\'\"]'),(107818,1129,5,'director',NULL,NULL),(107818,638913,6,'writer','written by',NULL),(107818,768324,7,'producer','producer',NULL),(107818,6290,8,'composer',NULL,NULL),(107818,5714,9,'cinematographer',NULL,NULL),(107822,564028,10,'production_designer',NULL,NULL),(107822,456,1,'actress',NULL,'[\"Ada McGrath\"]'),(107822,172,2,'actor',NULL,'[\"George Baines\"]'),(107822,554,3,'actor',NULL,'[\"Alisdair Stewart\"]'),(107822,1593,4,'actress',NULL,'[\"Flora McGrath\"]'),(107822,1005,5,'director',NULL,NULL),(107822,152396,6,'producer','producer',NULL),(107822,6219,7,'composer',NULL,NULL),(107822,238698,8,'cinematographer',NULL,NULL),(107822,353074,9,'editor',NULL,NULL),(107840,122740,10,'production_designer',NULL,NULL),(107840,1390,1,'actress',NULL,'[\"Justice\"]'),(107840,637,2,'actor',NULL,'[\"Lucky\"]'),(107840,5093,3,'actress',NULL,'[\"Iesha\"]'),(107840,868957,4,'actor',NULL,'[\"Chicago\"]'),(107840,5436,5,'director',NULL,NULL),(107840,630222,6,'producer','producer',NULL),(107840,6010,7,'composer',NULL,NULL),(107840,172818,8,'cinematographer','director of photography',NULL),(107840,134164,9,'editor',NULL,NULL),(107843,1877,10,'composer',NULL,NULL),(107843,403,1,'actress',NULL,'[\"Maggie\"]'),(107843,321,2,'actor',NULL,'[\"Bob\"]'),(107843,551,3,'actor',NULL,'[\"J.P.\"]'),(107843,1208,4,'actor',NULL,'[\"Kaufman\"]'),(107843,824,5,'director',NULL,NULL),(107843,108,6,'writer','film La Femme Nikita',NULL),(107843,315205,7,'writer','screenplay',NULL),(107843,785311,8,'writer','screenplay',NULL),(107843,513165,9,'producer','producer',NULL),(107875,1954,1,'actress',NULL,'[\"Great Great Grandmother Irene\"]'),(107875,722,2,'actor',NULL,'[\"King Papa\"]'),(107875,455702,3,'actor',NULL,'[\"Mump\"]'),(107875,550655,4,'actress',NULL,'[\"Princess Irene\"]'),(107875,350758,5,'director',NULL,NULL),(107875,529151,6,'writer','screenplay',NULL),(107875,531726,7,'writer','novel',NULL),(107875,503475,8,'composer',NULL,NULL),(107875,361593,9,'editor',NULL,NULL),(107943,1566,10,'producer','producer',NULL),(107943,164,1,'actor',NULL,'[\"Stevens\"]'),(107943,668,2,'actress',NULL,'[\"Miss Kenton\"]'),(107943,370700,3,'actor',NULL,'[\"Auctioneer\"]'),(107943,1659,4,'actor',NULL,'[\"Lewis\"]'),(107943,412465,5,'director',NULL,NULL),(107943,410958,6,'writer','novel',NULL),(107943,695609,7,'writer','screenplay',NULL),(107943,130492,8,'producer','producer',NULL),(107943,580337,9,'producer','producer',NULL),(107952,566407,10,'writer','story',NULL),(107952,293455,1,'actor',NULL,'[\"Jafar\"]'),(107952,918334,2,'actor',NULL,'[\"Aladdin\"]'),(107952,144657,3,'actor',NULL,'[\"Genie\"]'),(107952,4517,4,'actor',NULL,'[\"Abis Mal\"]'),(107952,791401,5,'director',NULL,NULL),(107952,832309,6,'director',NULL,NULL),(107952,953649,7,'director',NULL,NULL),(107952,135184,8,'writer','story',NULL),(107952,486007,9,'writer','story',NULL),(107969,152469,10,'cinematographer','director of photography',NULL),(107969,125,1,'actor',NULL,'[\"Capt. John Connor\"]'),(107969,648,2,'actor',NULL,'[\"Lt. Webster Smith\"]'),(107969,172,3,'actor',NULL,'[\"Lt. Tom Graham\"]'),(107969,846480,4,'actor',NULL,'[\"Eddie Sakamura\"]'),(107969,442241,5,'director',NULL,NULL),(107969,341,6,'writer','novel',NULL),(107969,45660,7,'writer','screenplay',NULL),(107969,442239,8,'producer','producer',NULL),(107969,6316,9,'composer',NULL,NULL),(107977,729701,10,'editor',NULL,NULL),(107977,144,1,'actor',NULL,'[\"Robin Hood\"]'),(107977,507659,2,'actor',NULL,'[\"Prince John\"]'),(107977,715953,3,'actor',NULL,'[\"Sheriff of Rottingham\"]'),(107977,1865,4,'actress',NULL,'[\"Marian\"]'),(107977,316,5,'director',NULL,NULL),(107977,788526,6,'writer','story',NULL),(107977,151362,7,'writer','story',NULL),(107977,6186,8,'composer',NULL,NULL),(107977,642672,9,'cinematographer','director of photography',NULL),(107978,6231,10,'composer',NULL,NULL),(107978,121559,1,'actor',NULL,'[\"RoboCop\"]'),(107978,262,2,'actress',NULL,'[\"Officer Anne Lewis\"]'),(107978,532478,3,'actor',NULL,'[\"Casey Wong\"]'),(107978,752802,4,'actress',NULL,'[\"Nikko\"]'),(107978,215269,5,'director',NULL,NULL),(107978,627159,6,'writer','characters',NULL),(107978,591160,7,'writer','characters',NULL),(107978,588340,8,'writer','story',NULL),(107978,189777,9,'producer','producer',NULL),(108000,171,1,'actress',NULL,'[\"Ruby Lee Gissing\"]'),(108000,276062,2,'actor',NULL,'[\"Mike McCaslin\"]'),(108000,593841,3,'actor',NULL,'[\"Ricky Chambers\"]'),(108000,212695,4,'actress',NULL,'[\"Rochelle Bridges\"]'),(108000,638033,5,'director',NULL,NULL),(108000,807,6,'writer','loosely based on novel \"Northanger Abbey\"',NULL),(108000,257752,7,'composer',NULL,NULL),(108000,900503,8,'cinematographer',NULL,NULL),(108000,406241,9,'production_designer',NULL,NULL),(108037,725072,10,'cinematographer','director of photography',NULL),(108037,347509,1,'actor',NULL,'[\"Scotty Smalls\"]'),(108037,899953,2,'actor',NULL,'[\"Benjamin Franklin Rodriguez\"]'),(108037,480869,3,'actor',NULL,'[\"The Babe\"]'),(108037,719606,4,'actor',NULL,'[\"Hamilton \'Ham\' Porter\"]'),(108037,262693,5,'director',NULL,NULL),(108037,348363,6,'writer','written by',NULL),(108037,209413,7,'producer','producer',NULL),(108037,319501,8,'producer','producer',NULL),(108037,628056,9,'composer',NULL,NULL),(108052,2354,10,'composer',NULL,NULL),(108052,553,1,'actor',NULL,'[\"Oskar Schindler\"]'),(108052,146,2,'actor',NULL,'[\"Amon Goeth\"]'),(108052,1426,3,'actor',NULL,'[\"Itzhak Stern\"]'),(108052,328751,4,'actress',NULL,'[\"Emilie Schindler\"]'),(108052,229,5,'director',NULL,NULL),(108052,447745,6,'writer','book',NULL),(108052,1873,7,'writer','screenplay',NULL),(108052,527322,8,'producer','producer',NULL),(108052,596520,9,'producer','producer',NULL),(108065,5734,10,'cinematographer','director of photography',NULL),(108065,1505,1,'actor',NULL,'[\"Fred Waitzkin\"]'),(108065,1426,2,'actor',NULL,'[\"Bruce Pandolfini\"]'),(108065,690051,3,'actor',NULL,'[\"Josh Waitzkin\"]'),(108065,260,4,'actress',NULL,'[\"Bonnie Waitzkin\"]'),(108065,1873,5,'director',NULL,NULL),(108065,906659,6,'writer','book',NULL),(108065,394564,7,'producer','producer',NULL),(108065,748784,8,'producer','producer',NULL),(108065,35,9,'composer',NULL,NULL),(108071,740407,10,'producer','producer',NULL),(108071,531069,1,'actress',NULL,'[\"Mary Lennox\"]'),(108071,1749,2,'actress',NULL,'[\"Mrs. Medlock\"]'),(108071,699117,3,'actor',NULL,'[\"Colin Craven\"]'),(108071,461409,4,'actor',NULL,'[\"Dickon\"]'),(108071,2140,5,'director',NULL,NULL),(108071,122364,6,'writer','book',NULL),(108071,3031,7,'writer','screenplay',NULL),(108071,297209,8,'producer','producer',NULL),(108071,524855,9,'producer','producer',NULL),(108122,516162,10,'cinematographer','director of photography',NULL),(108122,510,1,'actress',NULL,'[\"Ann Finnigan\"]'),(108122,194,2,'actress',NULL,'[\"Marian Wyman\"]'),(108122,209,3,'actor',NULL,'[\"Gene Shepard\"]'),(108122,1117,4,'actor',NULL,'[\"Howard Finnigan\"]'),(108122,265,5,'director',NULL,NULL),(108122,142577,6,'writer','based on the writings of',NULL),(108122,3004592,7,'writer','screenplay by',NULL),(108122,111225,8,'producer','producer',NULL),(108122,6142,9,'composer',NULL,NULL),(108147,748784,10,'producer','producer',NULL),(108147,155,1,'actress',NULL,'[\"Deloris\"]'),(108147,1562,2,'actress',NULL,'[\"Sister Mary Patrick\"]'),(108147,1749,3,'actress',NULL,'[\"Mother Superior\"]'),(108147,400464,4,'actor',NULL,'[\"Father Maurice\"]'),(108147,4886,5,'director',NULL,NULL),(108147,650561,6,'writer','written by',NULL),(108147,189979,7,'writer','written by',NULL),(108147,556789,8,'writer','written by',NULL),(108147,397411,9,'writer','based on characters by',NULL),(108149,392000,10,'editor',NULL,NULL),(108149,226,1,'actor',NULL,'[\"Paul\"]'),(108149,330,2,'actress',NULL,'[\"Ouisa\"]'),(108149,661,3,'actor',NULL,'[\"Flan\"]'),(108149,5212,4,'actor',NULL,'[\"Geoffrey\"]'),(108149,770961,5,'director',NULL,NULL),(108149,345359,6,'writer','play',NULL),(108149,586969,7,'producer','producer',NULL),(108149,25,8,'composer',NULL,NULL),(108149,48524,9,'cinematographer','director of photography',NULL),(108160,5815,10,'cinematographer','director of photography',NULL),(108160,158,1,'actor',NULL,'[\"Sam Baldwin\"]'),(108160,212,2,'actress',NULL,'[\"Annie Reed\"]'),(108160,539678,3,'actor',NULL,'[\"Jonah Baldwin\"]'),(108160,1854,4,'actress',NULL,'[\"Suzy\"]'),(108160,1188,5,'director',NULL,NULL),(108160,33578,6,'writer','story',NULL),(108160,911486,7,'writer','screenplay',NULL),(108160,287811,8,'producer','producer',NULL),(108160,3299,9,'composer',NULL,NULL),(108162,6290,10,'composer',NULL,NULL),(108162,232,1,'actress',NULL,'[\"Carly Norris\"]'),(108162,287,2,'actor',NULL,'[\"Zeke Hawkins\"]'),(108162,297,3,'actor',NULL,'[\"Jack Landsford\"]'),(108162,908116,4,'actress',NULL,'[\"Vida Warren\"]'),(108162,637518,5,'director',NULL,NULL),(108162,505615,6,'writer','novel',NULL),(108162,390,7,'writer','screenplay',NULL),(108162,263172,8,'producer','producer',NULL),(108162,287080,9,'producer','producer',NULL),(108174,531310,10,'cinematographer',NULL,NULL),(108174,196,1,'actor',NULL,'[\"Charlie MacKenzie\",\"Stuart MacKenzie\"]'),(108174,1802,2,'actress',NULL,'[\"Harriet Michaels\"]'),(108174,1439,3,'actor',NULL,'[\"Tony Giardino\"]'),(108174,1625,4,'actress',NULL,'[\"Rose Michaels\"]'),(108174,772095,5,'director',NULL,NULL),(108174,289219,6,'writer','written by',NULL),(108174,294975,7,'producer','producer',NULL),(108174,940531,8,'producer','producer',NULL),(108174,5976,9,'composer',NULL,NULL),(108188,945851,10,'cinematographer',NULL,NULL),(108188,1429,1,'actor',NULL,'[\"Aniki Murakawa\"]'),(108188,463814,2,'actress',NULL,'[\"Miyuki\"]'),(108188,913880,3,'actor',NULL,'[\"Uechi\"]'),(108188,441548,4,'actor',NULL,'[\"Ryoji\"]'),(108188,605271,5,'producer','producer',NULL),(108188,618579,6,'producer','producer',NULL),(108188,3906854,7,'producer','producer',NULL),(108188,948934,8,'producer','producer',NULL),(108188,386749,9,'composer',NULL,NULL),(108255,248180,10,'producer','producer',NULL),(108255,1364,1,'actor',NULL,'[\"Mario Mario\"]'),(108255,491,2,'actor',NULL,'[\"Luigi Mario\"]'),(108255,454,3,'actor',NULL,'[\"King Koopa\"]'),(108255,526,4,'actress',NULL,'[\"Daisy\"]'),(108255,417708,5,'director',NULL,NULL),(108255,608084,6,'director',NULL,NULL),(108255,71970,7,'writer','written by',NULL),(108255,750344,8,'writer','written by',NULL),(108255,4412,9,'writer','written by',NULL),(108265,956195,10,'cinematographer',NULL,NULL),(108265,494,1,'actor',NULL,'[\"Peter\"]'),(108265,288,2,'actor',NULL,'[\"Thomas\"]'),(108265,1844,3,'actor',NULL,'[\"Arvid\"]'),(108265,1347,4,'actress',NULL,'[\"Frau Muller\"]'),(108265,141961,5,'director',NULL,NULL),(108265,271061,6,'writer','written by',NULL),(108265,330428,7,'producer','producer',NULL),(108265,544307,8,'producer','producer',NULL),(108265,35,9,'composer',NULL,NULL),(108308,336978,10,'producer','producer',NULL),(108308,480,1,'actor',NULL,'[\"Casey Jones\",\"Whit\"]'),(108308,876958,2,'actress',NULL,'[\"April O\'Neil\"]'),(108308,934179,3,'actor',NULL,'[\"Walker\"]'),(108308,793634,4,'actor',NULL,'[\"Lord Norinaga\"]'),(108308,318795,5,'director',NULL,NULL),(108308,247653,6,'writer','based on characters created by',NULL),(108308,481990,7,'writer','based on characters created by',NULL),(108308,150858,8,'producer','producer',NULL),(108308,206175,9,'producer','producer',NULL),(108310,105019,10,'editor',NULL,NULL),(108310,1732,1,'actress',NULL,'[\"Faith Kelsey\"]'),(108310,646440,2,'actor',NULL,'[\"Det. Jay Jensen\"]'),(108310,1520,3,'actor',NULL,'[\"Terry Kelsey\"]'),(108310,819525,4,'actor',NULL,'[\"Walter Jefferson\"]'),(108310,159007,5,'director',NULL,NULL),(108310,588588,6,'writer','written by',NULL),(108310,936852,7,'producer','producer',NULL),(108310,6296,8,'composer',NULL,NULL),(108310,542552,9,'cinematographer',NULL,NULL),(108358,5976,10,'composer',NULL,NULL),(108358,621,1,'actor',NULL,'[\"Wyatt Earp\"]'),(108358,174,2,'actor',NULL,'[\"Doc Holliday\"]'),(108358,385,3,'actor',NULL,'[\"Virgil Earp\"]'),(108358,200,4,'actor',NULL,'[\"Morgan Earp\"]'),(108358,181902,5,'director',NULL,NULL),(108358,418883,6,'director',NULL,NULL),(108358,199733,7,'producer','producer',NULL),(108358,413208,8,'producer','producer',NULL),(108358,592824,9,'producer','producer',NULL),(108388,5793,10,'cinematographer','director of photography',NULL),(108388,1492,1,'actor',NULL,'[\"Josef K.\"]'),(108388,164,2,'actor',NULL,'[\"The Priest\"]'),(108388,1673,3,'actor',NULL,'[\"Doctor Huld\"]'),(108388,828980,4,'actress',NULL,'[\"Fräulein Burstner\"]'),(108388,427880,5,'director',NULL,NULL),(108388,434525,6,'writer','novel',NULL),(108388,56217,7,'writer','screenplay',NULL),(108388,548903,8,'producer','producer',NULL),(108388,2301,9,'composer',NULL,NULL),(108394,439767,10,'producer','producer',NULL),(108394,300,1,'actress',NULL,'[\"Julie\"]'),(108394,952498,2,'actor',NULL,'[\"Karol Karol (cameo)\"]'),(108394,365,3,'actress',NULL,'[\"Dominique (cameo)\"]'),(108394,753666,4,'actor',NULL,'[\"Olivier\"]'),(108394,1425,5,'director',NULL,NULL),(108394,682830,6,'writer','scenario',NULL),(108394,2140,7,'writer','scenario collaborator',NULL),(108394,954072,8,'writer','scenario collaborator',NULL),(108394,5744,9,'writer','scenario collaborator',NULL),(108399,675305,10,'producer','producer',NULL),(108399,225,1,'actor',NULL,'[\"Clarence Worley\"]'),(108399,99,2,'actress',NULL,'[\"Alabama Whitman\"]'),(108399,454,3,'actor',NULL,'[\"Clifford Worley\"]'),(108399,174,4,'actor',NULL,'[\"Mentor\"]'),(108399,1716,5,'director',NULL,NULL),(108399,233,6,'writer','written by',NULL),(108399,812,7,'writer',NULL,NULL),(108399,53388,8,'producer','producer',NULL),(108399,352820,9,'producer','producer',NULL),(108432,847182,10,'producer','producer',NULL),(108432,864980,1,'actor',NULL,'[\"Taku Morisaki\"]'),(108432,782841,2,'actor',NULL,'[\"Yutaka Matsuno\"]'),(108432,1296967,3,'actress',NULL,'[\"Rikako Muto\"]'),(108432,23924,4,'actress',NULL,'[\"Akiko Shimizu\"]'),(108432,595101,5,'director',NULL,NULL),(108432,1118378,6,'writer','novel',NULL),(108432,2146668,7,'writer','screenplay',NULL),(108432,1084385,8,'producer','producer',NULL),(108432,840699,9,'producer','producer',NULL),(108442,623979,10,'editor',NULL,NULL),(108442,678,1,'actress',NULL,'[\"Jane Blue\"]'),(108442,598,2,'actor',NULL,'[\"Jeff Blue\"]'),(108442,789716,3,'actress',NULL,'[\"Novacek\"]'),(108442,1804,4,'actor',NULL,'[\"Muerte\"]'),(108442,6889,5,'director',NULL,NULL),(108442,9183,6,'writer','written by',NULL),(108442,516465,7,'producer','producer',NULL),(108442,628056,8,'composer',NULL,NULL),(108442,4241,9,'cinematographer',NULL,NULL),(108451,325858,10,'editor',NULL,NULL),(108451,225,1,'actor',NULL,'[\"Adam\"]'),(108451,673,2,'actress',NULL,'[\"Caroline\"]'),(108451,1609,3,'actress',NULL,'[\"Cindy\"]'),(108451,1717,4,'actor',NULL,'[\"Howard\"]'),(108451,82300,5,'director',NULL,NULL),(108451,797220,6,'writer','written by',NULL),(108451,58829,7,'producer','producer',NULL),(108451,6056,8,'composer',NULL,NULL),(108451,5911,9,'cinematographer','director of photography',NULL),(108550,6141,10,'composer',NULL,NULL),(108550,136,1,'actor',NULL,'[\"Gilbert Grape\"]'),(108550,138,2,'actor',NULL,'[\"Arnie Grape\"]'),(108550,496,3,'actress',NULL,'[\"Becky\"]'),(108550,5460,4,'actress',NULL,'[\"Betty Carver\"]'),(108550,2120,5,'director',NULL,NULL),(108550,373282,6,'writer','novel \"What\'s Eating Gilbert Grape?\"',NULL),(108550,558061,7,'producer','producer',NULL),(108550,645072,8,'producer','producer',NULL),(108550,855283,9,'producer','producer',NULL),(108551,472323,10,'producer','producer',NULL),(108551,291,1,'actress',NULL,'[\"Tina Turner\"]'),(108551,401,2,'actor',NULL,'[\"Ike Turner\"]'),(108551,446805,3,'actress',NULL,'[\"Young Anna Mae\"]'),(108551,135102,4,'actress',NULL,'[\"Choir Mistress\"]'),(108551,1270,5,'director',NULL,NULL),(108551,877913,6,'writer','book \"I, Tina\"',NULL),(108551,517064,7,'writer','book \"I, Tina\"',NULL),(108551,486824,8,'writer','screenplay',NULL),(108551,152162,9,'producer','producer',NULL),(108624,1472,1,'actor',NULL,'[\"Chang Mo Kei\"]'),(108624,156522,2,'actress',NULL,'[\"Yan So So\",\"Chao Min\"]'),(108624,946873,3,'actress',NULL,'[\"Siu Chiu\"]'),(108624,5033,4,'actor',NULL,'[\"Chang San Fung\"]'),(108624,939147,5,'director',NULL,NULL),(108624,149222,6,'writer','novel',NULL),(108624,938954,7,'cinematographer',NULL,NULL),(108941,832531,10,'actor',NULL,'[\"Larry Underwood\"]'),(108941,641,1,'actor',NULL,'[\"Stu Redman\"]'),(108941,208,2,'actress',NULL,'[\"Frannie Goldsmith\"]'),(108941,792177,3,'actor',NULL,'[\"Randall Flagg\"]'),(108941,624,4,'actress',NULL,'[\"Nadine Cross\"]'),(108941,2039,5,'actress',NULL,'[\"Mother Abagail Freemantle\"]'),(108941,1115,6,'actor',NULL,'[\"Judge Richard Farris\"]'),(108941,1208,7,'actor',NULL,'[\"Lloyd Henreid\"]'),(108941,5269,8,'actor',NULL,'[\"Harold Lauder\"]'),(108941,1242,9,'actor',NULL,'[\"Trashcan Man\"]'),(109040,956699,10,'editor','film editor',NULL),(109040,120,1,'actor',NULL,'[\"Ace Ventura\"]'),(109040,1073,2,'actress',NULL,'[\"Melissa\"]'),(109040,707,3,'actress',NULL,'[\"Einhorn\"]'),(109040,5159,4,'actor',NULL,'[\"Emilio\"]'),(109040,1723,5,'director',NULL,NULL),(109040,77062,6,'writer','story',NULL),(109040,732708,7,'producer','producer',NULL),(109040,627673,8,'composer',NULL,NULL),(109040,531310,9,'cinematographer','director of photography',NULL),(109045,86180,10,'editor',NULL,NULL),(109045,915989,1,'actor',NULL,'[\"Tick\",\"Mitzi\"]'),(109045,1602,2,'actor',NULL,'[\"Adam\",\"Felicia\"]'),(109045,654,3,'actor',NULL,'[\"Bernadette\"]'),(109045,751405,4,'actress',NULL,'[\"Logowoman\"]'),(109045,254632,5,'director',NULL,NULL),(109045,163618,6,'producer','producer',NULL),(109045,358300,7,'producer','producer',NULL),(109045,343378,8,'composer',NULL,NULL),(109045,106866,9,'cinematographer','director of photography',NULL),(109066,508684,10,'cinematographer',NULL,NULL),(109066,150940,1,'actor',NULL,'[\"Ah-jung\"]'),(109066,497642,2,'actor',NULL,'[\"Hsiao-kang\"]'),(109066,945992,3,'actress',NULL,'[\"May Lin\"]'),(109066,523717,4,'actress',NULL,'[\"Waitress\"]'),(109066,158857,5,'director',NULL,NULL),(109066,874642,6,'writer',NULL,NULL),(109066,946040,7,'writer',NULL,NULL),(109066,161230,8,'producer','producer',NULL),(109066,398836,9,'producer','producer',NULL),(109068,6701,10,'cinematographer','director of photography',NULL),(109068,409,1,'actor',NULL,'[\"Chazz\"]'),(109068,114,2,'actor',NULL,'[\"Rex\"]'),(109068,1191,3,'actor',NULL,'[\"Pip\"]'),(109068,394,4,'actor',NULL,'[\"Wilson\"]'),(109068,499724,5,'director',NULL,NULL),(109068,929186,6,'writer','written by',NULL),(109068,121117,7,'producer','producer',NULL),(109068,800465,8,'producer','producer',NULL),(109068,1980,9,'composer',NULL,NULL),(109093,2843,10,'production_designer',NULL,NULL),(109093,1376,1,'actress',NULL,'[\"Isabelle\"]'),(109093,233027,2,'actor',NULL,'[\"Thomas Ludens\"]'),(109093,530581,3,'actress',NULL,'[\"Sofia Ludens\"]'),(109093,949433,4,'actor',NULL,'[\"Edward, Jaque\'s Accountant\"]'),(109093,1325,5,'director',NULL,NULL),(109093,394046,6,'producer','producer',NULL),(109093,852563,7,'composer',NULL,NULL),(109093,818785,8,'cinematographer',NULL,NULL),(109093,358172,9,'editor',NULL,NULL),(109127,83696,10,'producer','producer',NULL),(109127,418,1,'actor',NULL,'[\"George Knox\"]'),(109127,2084,2,'actress',NULL,'[\"Maggie Nelson\"]'),(109127,1103,3,'actor',NULL,'[\"Mel Clark\"]'),(109127,502,4,'actor',NULL,'[\"Al - the Boss Angel\"]'),(109127,213100,5,'director',NULL,NULL),(109127,455510,6,'writer',NULL,NULL),(109127,920216,7,'writer',NULL,NULL),(109127,174823,8,'writer',NULL,NULL),(109127,805965,9,'writer','screenplay',NULL),(109144,329486,10,'composer',NULL,NULL),(109144,444196,1,'actor',NULL,'[\"Nicholas Sinclair\"]'),(109144,185168,2,'actor',NULL,'[\"Shepherd\"]'),(109144,751295,3,'actress',NULL,'[\"Natasha Sinclair\"]'),(109144,42172,4,'actor',NULL,'[\"Taylor\"]'),(109144,744985,5,'director',NULL,NULL),(109144,768908,6,'writer','story',NULL),(109144,1112923,7,'writer','screenplay',NULL),(109144,121568,8,'producer','producer',NULL),(109144,135708,9,'producer','executive producer',NULL),(109198,877945,10,'writer','screenplay',NULL),(109198,656,1,'actress',NULL,'[\"Cody Zamora\"]'),(109198,524,2,'actress',NULL,'[\"Anita Crown\"]'),(109198,510,3,'actress',NULL,'[\"Eileen Spenser\"]'),(109198,106,4,'actress',NULL,'[\"Lilly Laronette\"]'),(109198,438279,5,'director',NULL,NULL),(109198,748665,6,'writer','story',NULL),(109198,277393,7,'writer','story',NULL),(109198,292875,8,'writer','story',NULL),(109198,295271,9,'writer','screenplay',NULL),(109254,5345,10,'producer','producer',NULL),(109254,552,1,'actor',NULL,'[\"Axel Foley\"]'),(109254,855103,2,'actor',NULL,'[\"Levine\"]'),(109254,871456,3,'actor',NULL,'[\"Giolito\"]'),(109254,171903,4,'actor',NULL,'[\"Leppert\"]'),(109254,484,5,'director',NULL,NULL),(109254,45301,6,'writer','character',NULL),(109254,677943,7,'writer','character',NULL),(109254,211823,8,'writer','written by',NULL),(109254,626883,9,'producer','producer',NULL),(109275,475650,10,'producer','producer',NULL),(109275,424635,1,'actor',NULL,'[\"Ted\"]'),(109275,1210,2,'actress',NULL,'[\"May\"]'),(109275,622553,3,'actor',NULL,'[\"Frank\"]'),(109275,747962,4,'actor',NULL,'[\"Karl\"]'),(109275,742819,5,'director',NULL,NULL),(109275,238898,6,'writer','short story',NULL),(109275,3117,7,'writer','teleplay',NULL),(109275,923646,8,'writer','teleplay',NULL),(109275,251935,9,'writer','teleplay',NULL),(109277,2500556,10,'cinematographer','director of photography',NULL),(109277,594074,1,'actress',NULL,'[\"Usagi Tsukino\",\"Super Sailor Moon\"]'),(109277,386752,2,'actress',NULL,'[\"Ami Mizuno\",\"Sailor Mercury\"]'),(109277,593911,3,'actress',NULL,'[\"Rei Hino\",\"Sailor Mars\"]'),(109277,793987,4,'actress',NULL,'[\"Makoto Kino\",\"Sailor Jupiter\"]'),(109277,386384,5,'director',NULL,NULL),(109277,866742,6,'writer','screenplay',NULL),(109277,847603,7,'writer','author: Kodansha Monthly Nakayoshi',NULL),(109277,1033257,8,'producer','dvd producer',NULL),(109277,34885,9,'composer',NULL,NULL),(109279,4287,10,'cinematographer','director of photography',NULL),(109279,293,1,'actor',NULL,'[\"Farmer Grey\"]'),(109279,667,2,'actor',NULL,'[\"Jerry Barker\"]'),(109279,4647895,3,'actor',NULL,'[\"Black Beauty\"]'),(109279,1086,4,'actor',NULL,'[\"Black Beauty\"]'),(109279,3031,5,'director',NULL,NULL),(109279,786564,6,'writer','novel',NULL),(109279,532368,7,'producer','producer',NULL),(109279,5414,8,'producer','producer',NULL),(109279,384,9,'composer',NULL,NULL),(109306,6217,10,'composer',NULL,NULL),(109306,1448,1,'actress',NULL,'[\"Carly Marshall\"]'),(109306,169,2,'actor',NULL,'[\"Hank Marshall\"]'),(109306,959,3,'actor',NULL,'[\"Vince Johnson\"]'),(109306,811202,4,'actress',NULL,'[\"Vera Johnson\"]'),(109306,724798,5,'director',NULL,NULL),(109306,821417,6,'writer','screenplay',NULL),(109306,765403,7,'writer','screenplay',NULL),(109306,500090,8,'writer','screenplay',NULL),(109306,813227,9,'producer','producer',NULL),(109327,698832,10,'cinematographer','director of photography',NULL),(109327,411,1,'actor',NULL,'[\"Michael\"]'),(109327,1449,2,'actor',NULL,'[\"Detective Hayden\"]'),(109327,810086,3,'actor',NULL,'[\"The Trickster\"]'),(109327,362955,4,'actress',NULL,'[\"Kimberly\"]'),(109327,283500,5,'director',NULL,NULL),(109327,654323,6,'writer','story',NULL),(109327,1825,7,'writer','screenplay',NULL),(109327,747118,8,'producer','producer',NULL),(109327,3392,9,'composer',NULL,NULL),(109370,5549,10,'cinematographer','director of photography',NULL),(109370,1006,1,'actor',NULL,'[\"Sheriff Bud Boomer\"]'),(109370,257,2,'actor',NULL,'[\"President of the United States\"]'),(109370,674231,3,'actress',NULL,'[\"Honey\"]'),(109370,1629,4,'actor',NULL,'[\"Stu Smiley\"]'),(109370,601619,5,'director',NULL,NULL),(109370,113360,6,'producer','producer',NULL),(109370,745272,7,'producer','producer',NULL),(109370,930,8,'composer',NULL,NULL),(109370,3367,9,'composer',NULL,NULL),(109424,306473,10,'composer',NULL,NULL),(109424,510857,1,'actress',NULL,'[\"Woman in Blonde Wig\"]'),(109424,437580,2,'actor',NULL,'[\"He Zhiwu, Cop 223\"]'),(109424,504897,3,'actor',NULL,'[\"Cop 663\"]'),(109424,910947,4,'actress',NULL,'[\"Faye\"]'),(109424,939182,5,'director',NULL,NULL),(109424,151176,6,'producer','producer',NULL),(109424,311508,7,'producer','producer',NULL),(109424,150894,8,'composer',NULL,NULL),(109424,301704,9,'composer',NULL,NULL),(109440,449255,10,'production_designer',NULL,NULL),(109440,490702,1,'actress',NULL,'[\"Odile Deray\",\"Louise, journaliste TV\"]'),(109440,149260,2,'actor',NULL,'[\"Serge Karamazov\",\"Youri (dans \\\"Red is Dead\\\")\",\"Jacques, journaliste TV\"]'),(109440,268543,3,'actor',NULL,'[\"Simon Jérémi\",\"Benjamin (dans \\\"Red is Dead\\\")\",\"Michel, journaliste TV\"]'),(109440,201462,4,'actor',NULL,'[\"Commissaire Patrick Bialès\",\"Maurice Bialès\",\"Alicia Lampéro\"]'),(109440,73322,5,'director',NULL,NULL),(109440,309369,6,'producer','producer',NULL),(109440,152031,7,'composer',NULL,NULL),(109440,197340,8,'cinematographer',NULL,NULL),(109440,663221,9,'editor',NULL,NULL),(109444,626883,10,'producer','producer',NULL),(109444,148,1,'actor',NULL,'[\"Jack Ryan\"]'),(109444,353,2,'actor',NULL,'[\"Clark\"]'),(109444,271,3,'actress',NULL,'[\"Cathy Ryan\"]'),(109444,21835,4,'actor',NULL,'[\"Felix Cortez\"]'),(109444,637518,5,'director',NULL,NULL),(109444,2007,6,'writer','based on the novel by',NULL),(109444,829329,7,'writer','screenplay by',NULL),(109444,1873,8,'writer','screenplay by',NULL),(109444,587518,9,'writer','screenplay by',NULL),(109445,641168,1,'actor',NULL,'[\"Dante Hicks\"]'),(109445,26879,2,'actor',NULL,'[\"Randal Graves\"]'),(109445,3870,3,'actress',NULL,'[\"Veronica\"]'),(109445,819412,4,'actress',NULL,'[\"Caitlin Bree\"]'),(109445,3620,5,'director',NULL,NULL),(109445,608714,6,'producer','producer',NULL),(109445,3140,7,'cinematographer',NULL,NULL),(109446,720715,10,'producer','producer',NULL),(109446,215,1,'actress',NULL,'[\"Reggie Love\"]'),(109446,169,2,'actor',NULL,'[\"Roy Foltrigg\"]'),(109446,605,3,'actor',NULL,'[\"Mark Sway\"]'),(109446,571,4,'actress',NULL,'[\"Dianne Sway\"]'),(109446,1708,5,'director',NULL,NULL),(109446,1300,6,'writer','novel',NULL),(109446,326040,7,'writer','screenplay',NULL),(109446,315205,8,'writer','screenplay',NULL),(109446,586969,9,'producer','producer',NULL),(109447,6099,10,'composer',NULL,NULL),(109447,1737,1,'actor',NULL,'[\"Clifford Daniels\"]'),(109447,1301,2,'actor',NULL,'[\"Martin Daniels\"]'),(109447,5460,3,'actress',NULL,'[\"Sarah Davis\"]'),(109447,1056,4,'actor',NULL,'[\"Gerald Ellis\"]'),(109447,280901,5,'director',NULL,NULL),(109447,17620,6,'writer','written by',NULL),(109447,436950,7,'writer','written by',NULL),(109447,108368,8,'producer','producer',NULL),(109447,115764,9,'producer','producer',NULL),(109456,6089,10,'composer',NULL,NULL),(109456,246,1,'actor',NULL,'[\"Bill Capa\"]'),(109456,1506,2,'actress',NULL,'[\"Rose\"]'),(109456,1952,3,'actor',NULL,'[\"Martinez\"]'),(109456,690,4,'actress',NULL,'[\"Sondra\"]'),(109456,750701,5,'director',NULL,NULL),(109456,712753,6,'writer','story',NULL),(109456,152466,7,'writer','screenplay',NULL),(109456,270809,8,'producer','producer',NULL),(109456,558061,9,'producer','producer',NULL),(109484,672915,10,'editor',NULL,NULL),(109484,501,1,'actor',NULL,'[\"Manny Singer\"]'),(109484,155,2,'actress',NULL,'[\"Corrina Washington\"]'),(109484,1499,3,'actress',NULL,'[\"Molly Singer\"]'),(109484,377269,4,'actress',NULL,'[\"High Heels\"]'),(109484,625458,5,'director',NULL,NULL),(109484,563394,6,'producer','producer',NULL),(109484,5494,7,'producer','producer',NULL),(109484,185215,8,'composer',NULL,NULL),(109484,839732,9,'cinematographer',NULL,NULL),(109504,113084,10,'editor',NULL,NULL),(109504,5569,1,'actress',NULL,'[\"Carolyn\"]'),(109504,5148,2,'actor',NULL,'[\"Woody\"]'),(109504,446314,3,'actor',NULL,'[\"Tony Eyes\",\"Jim\"]'),(109504,365450,4,'actress',NULL,'[\"Troy\"]'),(109504,490,5,'director',NULL,NULL),(109504,497578,6,'writer','story',NULL),(109504,497046,7,'writer','screenplay',NULL),(109504,5966,8,'composer',NULL,NULL),(109504,415409,9,'cinematographer',NULL,NULL),(109506,696299,10,'producer','producer',NULL),(109506,488,1,'actor',NULL,'[\"Eric\"]'),(109506,699,2,'actor',NULL,'[\"Top Dollar\"]'),(109506,205373,3,'actress',NULL,'[\"Sarah\"]'),(109506,1368,4,'actor',NULL,'[\"Albrecht\"]'),(109506,1639,5,'director',NULL,NULL),(109506,639335,6,'writer','comic book series and comic strip',NULL),(109506,775017,7,'writer','screenplay',NULL),(109506,794326,8,'writer','screenplay',NULL),(109506,609184,9,'producer','producer',NULL),(109520,410419,10,'cinematographer','director of photography',NULL),(109520,389,1,'actor',NULL,'[\"Gordon Bombay\"]'),(109520,2062,2,'actress',NULL,'[\"Michele\"]'),(109520,875951,3,'actor',NULL,'[\"Tibbles\"]'),(109520,747962,4,'actor',NULL,'[\"Jan\"]'),(109520,918873,5,'director',NULL,NULL),(109520,109359,6,'writer','characters',NULL),(109520,816,7,'producer','producer',NULL),(109520,449549,8,'producer','producer',NULL),(109520,2370,9,'composer',NULL,NULL),(109579,4384,10,'composer',NULL,NULL),(109579,244,1,'actress',NULL,'[\"Paulina Escobar\"]'),(109579,1426,2,'actor',NULL,'[\"Dr. Roberto Miranda\"]'),(109579,934179,3,'actor',NULL,'[\"Gerardo Escobar\"]'),(109579,610210,4,'actress',NULL,'[\"Dr. Miranda\'s Wife\"]'),(109579,591,5,'director',NULL,NULL),(109579,233557,6,'writer','play',NULL),(109579,947913,7,'writer','screenplay',NULL),(109579,469571,8,'producer','producer',NULL),(109579,609861,9,'producer','producer',NULL),(109642,75244,10,'cinematographer','director of photography',NULL),(109642,870,1,'actress',NULL,'[\"Dolores Claiborne\"]'),(109642,492,2,'actress',NULL,'[\"Selena St. George\"]'),(109642,1626,3,'actor',NULL,'[\"Detective John Mackey\"]'),(109642,661407,4,'actress',NULL,'[\"Vera Donovan\"]'),(109642,431,5,'director',NULL,NULL),(109642,175,6,'writer','book',NULL),(109642,6904,7,'writer','screenplay',NULL),(109642,612529,8,'producer','producer',NULL),(109642,384,9,'composer',NULL,NULL),(109644,95,1,'actor',NULL,'[\"Walter Hollander\"]'),(109644,1413,2,'actress',NULL,'[\"Marion Hollander\"]'),(109644,379051,3,'actor',NULL,'[\"Narrator\"]'),(109644,813977,4,'actor',NULL,'[\"Ambassador Magee\"]'),(109644,339086,5,'producer','producer',NULL),(109644,5688,6,'cinematographer',NULL,NULL),(109644,607673,7,'editor',NULL,NULL),(109644,520288,8,'production_designer',NULL,NULL),(109676,142286,10,'producer','producer',NULL),(109676,648,1,'actor',NULL,'[\"Pete Nessip\"]'),(109676,997,2,'actor',NULL,'[\"Ty Moncrief\"]'),(109676,319,3,'actress',NULL,'[\"Jessie Crossman\"]'),(109676,5052,4,'actor',NULL,'[\"Earl Leedy\"]'),(109676,824,5,'director',NULL,NULL),(109676,341389,6,'writer','story',NULL),(109676,543619,7,'writer','story',NULL),(109676,58302,8,'writer','story',NULL),(109676,84090,9,'writer','screenplay',NULL),(109686,921853,10,'producer','producer',NULL),(109686,120,1,'actor',NULL,'[\"Lloyd\"]'),(109686,1099,2,'actor',NULL,'[\"Harry\"]'),(109686,452,3,'actress',NULL,'[\"Mary\"]'),(109686,823563,4,'actor',NULL,'[\"Joe Mentalino\"]'),(109686,268380,5,'director',NULL,NULL),(109686,125803,6,'director',NULL,NULL),(109686,947395,7,'writer','written by',NULL),(109686,471097,8,'producer','producer',NULL),(109686,820925,9,'producer','producer',NULL),(109688,150894,10,'composer',NULL,NULL),(109688,510857,1,'actress',NULL,'[\"Mu-rong Yin\",\"Mu-rong Yang\"]'),(109688,1041,2,'actress',NULL,'[\"The Woman\"]'),(109688,2000,3,'actor',NULL,'[\"Ou-yang Feng\"]'),(109688,504897,4,'actor',NULL,'[\"Blind Swordsman\"]'),(109688,939182,5,'director',NULL,NULL),(109688,149222,6,'writer','novel \"The Eagle Shooting Heroes\"',NULL),(109688,311508,7,'producer','producer',NULL),(109688,659388,8,'producer','producer',NULL),(109688,874639,9,'producer','producer',NULL),(109699,284765,10,'editor',NULL,NULL),(109699,351029,1,'actor',NULL,'[\"Antonio\"]'),(109699,300282,2,'actress',NULL,'[\"Charo\"]'),(109699,849,3,'actor',NULL,'[\"Lisardo\"]'),(109699,253216,4,'actor',NULL,'[\"Rafa\"]'),(109699,881919,5,'director',NULL,NULL),(109699,535107,6,'writer','novel',NULL),(109699,763269,7,'producer','producer',NULL),(109699,631308,8,'composer',NULL,NULL),(109699,13761,9,'cinematographer','director of photography',NULL),(109707,6290,10,'composer',NULL,NULL),(109707,136,1,'actor',NULL,'[\"Ed Wood\"]'),(109707,1445,2,'actor',NULL,'[\"Bela Lugosi\"]'),(109707,572,3,'actress',NULL,'[\"Dolores Fuller\"]'),(109707,99,4,'actress',NULL,'[\"Kathy O\'Hara\"]'),(109707,318,5,'director',NULL,NULL),(109707,340674,6,'writer','book \"Nightmare of Ecstasy\"',NULL),(109707,18735,7,'writer','written by',NULL),(109707,438989,8,'writer','written by',NULL),(109707,224145,9,'producer','producer',NULL),(109770,704918,10,'producer','producer',NULL),(109770,405033,1,'actor',NULL,'[\"Dr. Reed Richards\"]'),(109770,1809,2,'actor',NULL,'[\"Johnny Storm\"]'),(109770,820847,3,'actress',NULL,'[\"Susan Storm\"]'),(109770,809344,4,'actor',NULL,'[\"Ben Grimm\"]'),(109770,766020,5,'director',NULL,NULL),(109770,627537,6,'writer','screenplay',NULL),(109770,1255914,7,'writer','screenplay',NULL),(109770,456158,8,'writer','comic book',NULL),(109770,498278,9,'writer','comic book',NULL),(109791,550108,10,'cinematographer',NULL,NULL),(109791,876300,1,'actor',NULL,'[\"Francis\"]'),(109791,728,2,'actor',NULL,'[\"Bluebeard\"]'),(109791,773845,3,'actor',NULL,'[\"Jesaja\"]'),(109791,381538,4,'actor',NULL,'[\"Kong\"]'),(109791,769405,5,'director',NULL,NULL),(109791,685188,6,'writer','novel',NULL),(109791,460201,7,'writer','screenplay',NULL),(109791,404483,8,'producer','producer',NULL),(109791,6050,9,'composer',NULL,NULL),(109798,99749,10,'producer','producer',NULL),(109798,521,1,'actress',NULL,'[\"Eloïse d\'Artagnan\"]'),(109798,634159,2,'actor',NULL,'[\"D\'Artagnan\"]'),(109798,723623,3,'actor',NULL,'[\"Le duc de Crassac\"]'),(109798,293739,4,'actor',NULL,'[\"Aramis\"]'),(109798,851724,5,'director',NULL,NULL),(109798,529706,6,'writer','screenplay',NULL),(109798,181924,7,'writer','adaptation and dialogue',NULL),(109798,292720,8,'writer','based on an original idea by',NULL),(109798,1493942,9,'writer','based on an original idea by',NULL),(109813,628056,10,'composer',NULL,NULL),(109813,422,1,'actor',NULL,'[\"Fred Flintstone\"]'),(109813,1548,2,'actor',NULL,'[\"Barney Rubble\"]'),(109813,5280,3,'actress',NULL,'[\"Betty Rubble\"]'),(109813,932,4,'actress',NULL,'[\"Miss Stone\"]'),(109813,505152,5,'director',NULL,NULL),(109813,662678,6,'writer','written by',NULL),(109813,421084,7,'writer','written by',NULL),(109813,211823,8,'writer','written by',NULL),(109813,169260,9,'producer','producer',NULL),(109830,5494,10,'producer','producer',NULL),(109830,158,1,'actor',NULL,'[\"Forrest Gump\"]'),(109830,705,2,'actress',NULL,'[\"Jenny Curran\"]'),(109830,641,3,'actor',NULL,'[\"Lieutenant Dan Taylor\"]'),(109830,398,4,'actress',NULL,'[\"Mrs. Gump\"]'),(109830,709,5,'director',NULL,NULL),(109830,343165,6,'writer','novel',NULL),(109830,744839,7,'writer','screenplay',NULL),(109830,277704,8,'producer','producer',NULL),(109830,823330,9,'producer','producer',NULL),(109831,339856,10,'editor',NULL,NULL),(109831,424,1,'actor',NULL,'[\"Charles - Wedding One\"]'),(109831,510,2,'actress',NULL,'[\"Carrie - Wedding One\"]'),(109831,281424,3,'actor',NULL,'[\"Tom - Wedding One\"]'),(109831,1003,4,'actor',NULL,'[\"Gareth - Wedding One\"]'),(109831,1565,5,'director',NULL,NULL),(109831,193485,6,'writer','written by',NULL),(109831,448953,7,'producer','producer',NULL),(109831,5961,8,'composer',NULL,NULL),(109831,183533,9,'cinematographer','director of photography',NULL),(109849,6307801,10,'actor',NULL,'[\"August Strindberg 12 År\"]'),(109849,560488,1,'actor',NULL,'[\"August Strindberg\"]'),(109849,786122,2,'actress',NULL,'[\"Siri von Essen\"]'),(109849,1741809,3,'actor',NULL,'[\"Carl-Oskar Strindberg\"]'),(109849,6119137,4,'actress',NULL,'[\"Ulrika Eleonora Strindberg\"]'),(109849,914386,5,'director',NULL,NULL),(109849,88385,6,'writer',NULL,NULL),(109849,471636,7,'writer',NULL,NULL),(109849,922617,8,'writer',NULL,NULL),(109849,299723,9,'actor',NULL,'[\"August Strindberg Gammal\"]'),(109900,197067,1,'actor',NULL,'[\"Giorgio\",\"Giorgino\"]'),(109900,267785,2,'actress',NULL,'[\"Catherine\"]'),(109900,722,3,'actor',NULL,'[\"Father Glaise\"]'),(109900,1221,4,'actress',NULL,'[\"Innkeeper\"]'),(109900,100365,5,'director',NULL,NULL),(109900,491229,6,'writer',NULL,NULL),(109900,767159,7,'cinematographer',NULL,NULL),(109900,609625,8,'editor',NULL,NULL),(109900,346535,9,'production_designer',NULL,NULL),(109913,831738,10,'cinematographer',NULL,NULL),(109913,110922,1,'actress',NULL,'[\"Ely\"]'),(109913,877587,2,'actress',NULL,'[\"Camille \'Max\' West\"]'),(109913,573331,3,'actress',NULL,'[\"Kia\"]'),(109913,577597,4,'actress',NULL,'[\"Evy\"]'),(109913,873266,5,'director',NULL,NULL),(109913,17699,6,'composer',NULL,NULL),(109913,230752,7,'composer',NULL,NULL),(109913,789234,8,'composer',NULL,NULL),(109913,744077,9,'cinematographer',NULL,NULL),(110005,783241,10,'editor',NULL,NULL),(110005,1491,1,'actress',NULL,'[\"Pauline\"]'),(110005,701,2,'actress',NULL,'[\"Juliet\"]'),(110005,670582,3,'actress',NULL,'[\"Honora\"]'),(110005,448712,4,'actress',NULL,'[\"Hilda\"]'),(110005,1392,5,'director',NULL,NULL),(110005,909638,6,'writer','screenplay',NULL),(110005,95725,7,'producer','producer',NULL),(110005,201942,8,'composer',NULL,NULL),(110005,93151,9,'cinematographer',NULL,NULL),(110006,358510,10,'cinematographer',NULL,NULL),(110006,569711,1,'actor',NULL,'[\"Pat Finley\"]'),(110006,777125,2,'actor',NULL,'[\"Gerald \'Gerry\' Garner\"]'),(110006,1774,3,'actor',NULL,'[\"Tony Perkis\",\"Tony Perkis Sr.\"]'),(110006,325762,4,'actor',NULL,'[\"Nicholas\"]'),(110006,109359,5,'director',NULL,NULL),(110006,31976,6,'writer','written by',NULL),(110006,83696,7,'producer','producer',NULL),(110006,5387,8,'producer','producer',NULL),(110006,2370,9,'composer',NULL,NULL),(110008,645777,10,'cinematographer',NULL,NULL),(110008,1525033,1,'actor',NULL,'[\"Narrator\"]'),(110008,1228447,2,'actor',NULL,'[\"Shôkichi\"]'),(110008,410942,3,'actress',NULL,'[\"Okiyo\"]'),(110008,586524,4,'actor',NULL,'[\"Seizaemon\"]'),(110008,847223,5,'director',NULL,NULL),(110008,1566098,6,'producer','producer',NULL),(110008,840699,7,'producer','producer',NULL),(110008,865807,8,'producer','producer',NULL),(110008,1146422,9,'composer',NULL,NULL),(110054,1472,1,'actor',NULL,'[\"Hung Hei Kwun\"]'),(110054,946873,2,'actress',NULL,'[\"Red Bean\"]'),(110054,409677,3,'actress',NULL,'[\"Red Bean\'s Mother\"]'),(110054,874865,4,'actor',NULL,'[\"Hung Man Ting\"]'),(110054,939147,5,'director',NULL,NULL),(110054,219045,6,'producer','producer',NULL),(110054,781452,7,'composer',NULL,NULL),(110054,490486,8,'cinematographer',NULL,NULL),(110054,482560,9,'editor',NULL,NULL),(110074,633677,10,'editor',NULL,NULL),(110074,209,1,'actor',NULL,'[\"Norville Barnes\"]'),(110074,56,2,'actor',NULL,'[\"Sidney J. Mussburger\"]'),(110074,492,3,'actress',NULL,'[\"Amy Archer\"]'),(110074,1164,4,'actor',NULL,'[\"Waring Hudsucker\"]'),(110074,1054,5,'director',NULL,NULL),(110074,1053,6,'director',NULL,NULL),(110074,600,7,'writer','written by',NULL),(110074,1980,8,'composer',NULL,NULL),(110074,5683,9,'cinematographer','director of photography',NULL),(110091,291054,10,'editor',NULL,NULL),(110091,904967,1,'actress',NULL,'[\"Lisette Linares\"]'),(110091,781218,2,'actor',NULL,'[\"Chino Linares\"]'),(110091,578157,3,'actor',NULL,'[\"Li\'l Chino Linares\"]'),(110091,143935,4,'actress',NULL,'[\"Minnie Linares\"]'),(110091,552140,5,'director',NULL,NULL),(110091,4653,6,'producer','producer',NULL),(110091,417553,7,'producer','producer',NULL),(110091,313609,8,'composer',NULL,NULL),(110091,344738,9,'cinematographer','director of photography',NULL),(110099,48524,10,'cinematographer','director of photography',NULL),(110099,209,1,'actor',NULL,'[\"Ed Walters\"]'),(110099,212,2,'actress',NULL,'[\"Catherine Boyd\"]'),(110099,527,3,'actor',NULL,'[\"Albert Einstein\"]'),(110099,414279,4,'actor',NULL,'[\"Kurt Gödel\"]'),(110099,770961,5,'director',NULL,NULL),(110099,106563,6,'writer','story',NULL),(110099,498775,7,'writer','screenplay',NULL),(110099,62071,8,'producer','producer',NULL),(110099,25,9,'composer',NULL,NULL),(110148,3542,10,'cinematographer','director of photography',NULL),(110148,93,1,'actor',NULL,'[\"Louis\"]'),(110148,129,2,'actor',NULL,'[\"Lestat\"]'),(110148,104,3,'actor',NULL,'[\"Armand\"]'),(110148,379,4,'actress',NULL,'[\"Claudia\"]'),(110148,1403,5,'director',NULL,NULL),(110148,723351,6,'writer','screenplay',NULL),(110148,311691,7,'producer','producer',NULL),(110148,941262,8,'producer','producer',NULL),(110148,6106,9,'composer',NULL,NULL),(110167,539794,10,'editor',NULL,NULL),(110167,115,1,'actor',NULL,'[\"Charlie Lang\"]'),(110167,403,2,'actress',NULL,'[\"Yvonne Biasi\"]'),(110167,1609,3,'actress',NULL,'[\"Muriel Lang\"]'),(110167,682495,4,'actor',NULL,'[\"Bo Williams\"]'),(110167,921,5,'director',NULL,NULL),(110167,26862,6,'writer','written by',NULL),(110167,516465,7,'producer','producer',NULL),(110167,1980,8,'composer',NULL,NULL),(110167,221042,9,'cinematographer','director of photography',NULL),(110169,5749,10,'cinematographer',NULL,NULL),(110169,842140,1,'actress',NULL,'[\"Pat\"]'),(110169,4929,2,'actor',NULL,'[\"Chris\"]'),(110169,734236,3,'actor',NULL,'[\"Kyle\"]'),(110169,4980,4,'actress',NULL,'[\"Kathy\"]'),(110169,2835,5,'director',NULL,NULL),(110169,256219,6,'writer','written by',NULL),(110169,382512,7,'writer','written by',NULL),(110169,921853,8,'producer','producer',NULL),(110169,6205,9,'composer',NULL,NULL),(110171,323707,10,'cinematographer',NULL,NULL),(110171,326751,1,'actress',NULL,'[\"Daiga\"]'),(110171,183675,2,'actor',NULL,'[\"Camille\"]'),(110171,243348,3,'actor',NULL,'[\"Raphaël\"]'),(110171,344932,4,'actor',NULL,'[\"le docteur\"]'),(110171,219136,5,'director',NULL,NULL),(110171,267288,6,'writer','screenplay',NULL),(110171,702455,7,'producer','producer',NULL),(110171,613577,8,'composer',NULL,NULL),(110171,1180175,9,'composer',NULL,NULL),(110236,926731,10,'production_designer',NULL,NULL),(110236,842915,1,'actor',NULL,'[\"Berra\"]'),(110236,761926,2,'actor',NULL,'[\"Ulf\"]'),(110236,651807,3,'actor',NULL,'[\"Nils\"]'),(110236,435983,4,'actress',NULL,'[\"Tora\"]'),(110236,358530,5,'director',NULL,NULL),(110236,823279,6,'writer','novel',NULL),(110236,343844,7,'composer',NULL,NULL),(110236,489725,8,'cinematographer',NULL,NULL),(110236,469254,9,'editor',NULL,NULL),(110297,3281,10,'composer',NULL,NULL),(110297,2643814,1,'actor',NULL,'[\"Attorney\"]'),(110297,49623,2,'actor',NULL,'[\"Old man at HQ\"]'),(110297,63143,3,'actor',NULL,'[\"Russel Means\"]'),(110297,63838,4,'actor',NULL,'[\"Reasonable man\"]'),(110297,682757,5,'director',NULL,NULL),(110297,189519,6,'writer','biography Lakota Woman',NULL),(110297,258777,7,'writer','biography Lakota Woman',NULL),(110297,449222,8,'writer','written by',NULL),(110297,76681,9,'producer','producer',NULL),(110308,64062,10,'editor',NULL,NULL),(110308,400,1,'actress',NULL,'[\"Bridget Gregory\"]'),(110308,916,2,'actor',NULL,'[\"Mike Swale\"]'),(110308,597,3,'actor',NULL,'[\"Clay Gregory\"]'),(110308,713552,4,'actor',NULL,'[\"Phone Sales Rep.\"]'),(110308,1093,5,'director',NULL,NULL),(110308,52964,6,'writer','written by',NULL),(110308,792871,7,'producer','producer',NULL),(110308,899958,8,'composer',NULL,NULL),(110308,5749,9,'cinematographer','director of photography',NULL),(110322,35,10,'composer',NULL,NULL),(110322,93,1,'actor',NULL,'[\"Tristan Ludlow\"]'),(110322,164,2,'actor',NULL,'[\"Colonel William Ludlow\"]'),(110322,1644,3,'actor',NULL,'[\"Alfred Ludlow\"]'),(110322,566,4,'actress',NULL,'[\"Susannah Fincannon-Ludlow\"]'),(110322,1880,5,'director',NULL,NULL),(110322,793463,6,'writer','screenplay',NULL),(110322,937074,7,'writer','screenplay',NULL),(110322,365659,8,'writer','novella',NULL),(110322,380980,9,'producer','producer',NULL),(110357,560329,10,'writer','story',NULL),(110357,111,1,'actor',NULL,'[\"Simba\"]'),(110357,460,2,'actor',NULL,'[\"Scar\"]'),(110357,469,3,'actor',NULL,'[\"Mufasa\"]'),(110357,155,4,'actress',NULL,'[\"Shenzi\"]'),(110357,21249,5,'director',NULL,NULL),(110357,591450,6,'director',NULL,NULL),(110357,575293,7,'writer','screenplay by',NULL),(110357,731271,8,'writer','screenplay by',NULL),(110357,941314,9,'writer','screenplay by',NULL),(110366,2006629,10,'producer','producer',NULL),(110366,853779,1,'actor',NULL,'[\"Spanky\"]'),(110366,355379,2,'actor',NULL,'[\"Alfalfa\"]'),(110366,391762,3,'actress',NULL,'[\"Darla\"]'),(110366,940673,4,'actor',NULL,'[\"Stymie\"]'),(110366,790715,5,'director',NULL,NULL),(110366,938774,6,'writer','story',NULL),(110366,779592,7,'writer','story',NULL),(110366,345488,8,'writer','story',NULL),(110366,563397,9,'writer','story',NULL),(110367,801005,10,'cinematographer','director of photography',NULL),(110367,215,1,'actress',NULL,'[\"Mrs. March\"]'),(110367,213,2,'actress',NULL,'[\"Jo March\"]'),(110367,379,3,'actress',NULL,'[\"Younger Amy March\"]'),(110367,132,4,'actress',NULL,'[\"Beth March\"]'),(110367,788,5,'director',NULL,NULL),(110367,17301,6,'writer','novel',NULL),(110367,842523,7,'writer','screenplay',NULL),(110367,224145,8,'producer','producer',NULL),(110367,2353,9,'composer',NULL,NULL),(110413,606,1,'actor',NULL,'[\"Leon\"]'),(110413,198,2,'actor',NULL,'[\"Stansfield\"]'),(110413,204,3,'actress',NULL,'[\"Mathilda\"]'),(110413,732,4,'actor',NULL,'[\"Tony\"]'),(110413,108,5,'director',NULL,NULL),(110413,785385,6,'composer',NULL,NULL),(110413,5636,7,'cinematographer','director of photography',NULL),(110413,484981,8,'editor',NULL,NULL),(110413,917942,9,'production_designer',NULL,NULL),(110443,520893,10,'writer','screenplay',NULL),(110443,1834,1,'actor',NULL,'[\"Maj. Benson Payne\"]'),(110443,461,2,'actor',NULL,'[\"Lt. Col. Stone\"]'),(110443,81759,3,'actor',NULL,'[\"Huge Biker\"]'),(110443,86379,4,'actor',NULL,'[\"Cadet Bryan\"]'),(110443,145309,5,'director',NULL,NULL),(110443,175080,6,'writer','story',NULL),(110443,608658,7,'writer','story',NULL),(110443,731679,8,'writer','earlier screenplay',NULL),(110443,671766,9,'writer','earlier screenplay',NULL),(110475,6055,10,'composer',NULL,NULL),(110475,120,1,'actor',NULL,'[\"Stanley Ipkiss\",\"The Mask\"]'),(110475,139,2,'actress',NULL,'[\"Tina Carlyle\"]'),(110475,726200,3,'actor',NULL,'[\"Lt. Mitch Kellaway\"]'),(110475,338886,4,'actor',NULL,'[\"Dorian\"]'),(110475,751080,5,'director',NULL,NULL),(110475,266430,6,'writer','story',NULL),(110475,894156,7,'writer','story',NULL),(110475,108273,8,'writer','screenplay',NULL),(110475,257258,9,'producer','producer',NULL),(110490,325350,10,'producer','producer',NULL),(110490,185,1,'actor',NULL,'[\"Nick Gunar\"]'),(110490,1470,2,'actress',NULL,'[\"Loki\"]'),(110490,703,3,'actor',NULL,'[\"Po\"]'),(110490,219208,4,'actor',NULL,'[\"Jimmy G.\"]'),(110490,485878,5,'director',NULL,NULL),(110490,737390,6,'writer','story',NULL),(110490,626,7,'writer','screenplay',NULL),(110490,717550,8,'writer','screenplay',NULL),(110490,903456,9,'writer','screenplay',NULL),(110521,157351,10,'production_designer',NULL,NULL),(110521,1960,1,'actress',NULL,'[\"Mina Tannenbaum\"]'),(110521,959113,2,'actress',NULL,'[\"Ethel Benegui\"]'),(110521,859740,3,'actress',NULL,'[\"La cousine\"]'),(110521,959897,4,'actor',NULL,'[\"Jacques Dana\"]'),(110521,240987,5,'director',NULL,NULL),(110521,153817,6,'composer',NULL,NULL),(110521,152683,7,'cinematographer',NULL,NULL),(110521,56697,8,'editor',NULL,NULL),(110521,130506,9,'editor',NULL,NULL),(110524,394728,10,'composer',NULL,NULL),(110524,241881,1,'actor',NULL,'[\"Asao\"]'),(110524,383093,2,'actress',NULL,'[\"Asao\'s Mother\"]'),(110524,461983,3,'actor',NULL,'[\"Chief of World Defence Force\"]'),(110524,4930736,4,'actor',NULL,'[\"Swordsman\"]'),(110524,1429,5,'director',NULL,NULL),(110524,605271,6,'producer','producer',NULL),(110524,618579,7,'producer','producer',NULL),(110524,875257,8,'producer','producer',NULL),(110524,948934,9,'producer','producer',NULL),(110527,531310,10,'cinematographer',NULL,NULL),(110527,277,1,'actor',NULL,'[\"Kriss Kringle\"]'),(110527,1610,2,'actress',NULL,'[\"Dorey Walker\"]'),(110527,1518,3,'actor',NULL,'[\"Bryan Bedford\"]'),(110527,687,4,'actor',NULL,'[\"Ed Collins\"]'),(110527,562645,5,'director',NULL,NULL),(110527,204016,6,'writer','story',NULL),(110527,780833,7,'writer',NULL,NULL),(110527,455,8,'writer','screenplay',NULL),(110527,5976,9,'composer',NULL,NULL),(110598,82162,10,'editor',NULL,NULL),(110598,1057,1,'actress',NULL,'[\"Muriel\"]'),(110598,341737,2,'actress',NULL,'[\"Rhonda\"]'),(110598,402730,3,'actor',NULL,'[\"Bill\"]'),(110598,498275,4,'actress',NULL,'[\"Tania\"]'),(110598,389591,5,'director',NULL,NULL),(110598,396684,6,'producer','producer',NULL),(110598,602104,7,'producer','producer',NULL),(110598,78984,8,'composer',NULL,NULL),(110598,569845,9,'cinematographer',NULL,NULL),(110622,958387,10,'writer','television series \"Police Squad\"',NULL),(110622,558,1,'actor',NULL,'[\"Lt. Frank Drebin\"]'),(110622,1636,2,'actress',NULL,'[\"Jane Spencer\"]'),(110622,1421,3,'actor',NULL,'[\"Ed Hocken\"]'),(110622,1740,4,'actor',NULL,'[\"Nordberg\"]'),(110622,781842,5,'director',NULL,NULL),(110622,698493,6,'writer','written by',NULL),(110622,1878,7,'writer','written by',NULL),(110622,516598,8,'writer','written by',NULL),(110622,720,9,'writer','television series: \"Police Squad\"',NULL),(110632,6613,10,'producer','producer',NULL),(110632,437,1,'actor',NULL,'[\"Mickey Knox\"]'),(110632,496,2,'actress',NULL,'[\"Mallory Knox\"]'),(110632,1744,3,'actor',NULL,'[\"Det. Jack Scagnetti\"]'),(110632,1098,4,'actor',NULL,'[\"Ed Wilson, Mallory\'s Dad\"]'),(110632,231,5,'director',NULL,NULL),(110632,233,6,'writer','story',NULL),(110632,892705,7,'writer','screenplay',NULL),(110632,752116,8,'writer','screenplay',NULL),(110632,359100,9,'producer','producer',NULL),(110657,4088,10,'cinematographer','director of photography',NULL),(110657,1552,1,'actor',NULL,'[\"Miyagi\"]'),(110657,5476,2,'actress',NULL,'[\"Julie Pierce\"]'),(110657,461,3,'actor',NULL,'[\"Dugan\"]'),(110657,869927,4,'actress',NULL,'[\"Louisa\"]'),(110657,128883,5,'director',NULL,NULL),(110657,436543,6,'writer','characters',NULL),(110657,497828,7,'writer','written by',NULL),(110657,5545,8,'producer','producer',NULL),(110657,6015,9,'composer',NULL,NULL),(110678,6251,10,'composer',NULL,NULL),(110678,501,1,'actor',NULL,'[\"Robbins\"]'),(110678,448,2,'actor',NULL,'[\"The Father\"]'),(110678,934179,3,'actor',NULL,'[\"Marek\"]'),(110678,1143,4,'actor',NULL,'[\"Casey\"]'),(110678,132709,5,'director',NULL,NULL),(110678,379044,6,'writer','novel \"The Penal Colony\"',NULL),(110678,310920,7,'writer','screenplay',NULL),(110678,343403,8,'writer','screenplay',NULL),(110678,5036,9,'producer','producer',NULL),(110722,876392,10,'editor',NULL,NULL),(110722,513,1,'actor',NULL,'[\"John\"]'),(110722,252067,2,'actress',NULL,'[\"Carol\"]'),(110722,2112410,3,'actor',NULL,'[\"Quarterback\"]'),(110722,956370,4,'actor',NULL,'[\"Clerk in Copy Shop\"]'),(110722,519,5,'director',NULL,NULL),(110722,338320,6,'producer','producer',NULL),(110722,938303,7,'producer','producer',NULL),(110722,682071,8,'composer',NULL,NULL),(110722,782900,9,'cinematographer',NULL,NULL),(110763,315001,10,'producer','producer',NULL),(110763,346,1,'actor',NULL,'[\"Richard Tyler\"]'),(110763,502,2,'actor',NULL,'[\"Mr. Dewey\",\"The Pagemaster\"]'),(110763,397940,3,'actor',NULL,'[\"Neighborhood Kid\"]'),(110763,456943,4,'actress',NULL,'[\"Neighborhood Kid\"]'),(110763,402563,5,'director','animation director',NULL),(110763,2653,6,'director',NULL,NULL),(110763,456946,7,'writer','story',NULL),(110763,143129,8,'writer','story',NULL),(110763,176497,9,'writer','screenplay',NULL),(110805,540331,10,'producer','producer',NULL),(110805,185,1,'actor',NULL,'[\"Eric Brogar\"]'),(110805,815800,2,'actor',NULL,'[\"Heinrich Müller\"]'),(110805,171187,3,'actress',NULL,'[\"Julia Davis\"]'),(110805,608853,4,'actor',NULL,'[\"John Creese\"]'),(110805,540330,5,'director',NULL,NULL),(110805,821132,6,'writer','story',NULL),(110805,567771,7,'writer','screenplay',NULL),(110805,222904,8,'writer','screenplay',NULL),(110805,127389,9,'producer','producer',NULL),(110857,556487,10,'producer','producer',NULL),(110857,47265,1,'actor',NULL,'[\"Capt. Harris\"]'),(110857,310960,2,'actor',NULL,'[\"Commandant Lassard\"]'),(110857,935498,3,'actor',NULL,'[\"Sgt. Jones\"]'),(110857,333701,4,'actor',NULL,'[\"Sgt. Tackleberry\"]'),(110857,582635,5,'director',NULL,NULL),(110857,411477,6,'writer','characters',NULL),(110857,698493,7,'writer','characters',NULL),(110857,205307,8,'writer','written by',NULL),(110857,158749,9,'writer','written by',NULL),(110889,848712,10,'cinematographer',NULL,NULL),(110889,730070,1,'actor',NULL,'[\"Father Greg Pilkington\"]'),(110889,929489,2,'actor',NULL,'[\"Father Matthew Thomas\"]'),(110889,1015,3,'actor',NULL,'[\"Graham\"]'),(110889,879154,4,'actress',NULL,'[\"Maria Kerrigan\"]'),(110889,944,5,'director',NULL,NULL),(110889,569568,6,'writer',NULL,NULL),(110889,264480,7,'producer','producer',NULL),(110889,911647,8,'producer','producer',NULL),(110889,3983,9,'composer',NULL,NULL),(110912,913300,10,'production_designer',NULL,NULL),(110912,237,1,'actor',NULL,'[\"Vincent Vega\"]'),(110912,235,2,'actress',NULL,'[\"Mia Wallace\"]'),(110912,168,3,'actor',NULL,'[\"Jules Winnfield\"]'),(110912,246,4,'actor',NULL,'[\"Butch Coolidge\"]'),(110912,233,5,'director',NULL,NULL),(110912,812,6,'writer','stories by',NULL),(110912,4744,7,'producer','producer',NULL),(110912,782900,8,'cinematographer',NULL,NULL),(110912,579673,9,'editor',NULL,NULL),(110932,637602,10,'producer','producer',NULL),(110932,146,1,'actor',NULL,'[\"Charles Van Doren\"]'),(110932,1806,2,'actor',NULL,'[\"Herbie Stempel\"]'),(110932,1555,3,'actor',NULL,'[\"Dick Goodwin\"]'),(110932,6890,4,'actor',NULL,'[\"Mark Van Doren\"]'),(110932,602,5,'director',NULL,NULL),(110932,1921,6,'writer','screenplay',NULL),(110932,329544,7,'writer','book \"Remembering America: A Voice From the Sixties\"',NULL),(110932,414551,8,'producer','producer',NULL),(110932,469313,9,'producer','producer',NULL),(110950,161497,10,'editor',NULL,NULL),(110950,213,1,'actress',NULL,'[\"Lelaina Pierce\"]'),(110950,160,2,'actor',NULL,'[\"Troy Dyer\"]'),(110950,413,3,'actress',NULL,'[\"Vickie Miner\"]'),(110950,1872,4,'actor',NULL,'[\"Sammy Gray\"]'),(110950,1774,5,'director',NULL,NULL),(110950,157536,6,'writer','written by',NULL),(110950,362,7,'producer','producer',NULL),(110950,787834,8,'producer','producer',NULL),(110950,523881,9,'cinematographer','director of photography',NULL),(110955,347465,10,'composer',NULL,NULL),(110955,1459,1,'actor',NULL,'[\"Gus\"]'),(110955,1114,2,'actress',NULL,'[\"Caroline\"]'),(110955,228,3,'actor',NULL,'[\"Lloyd\"]'),(110955,826198,4,'actor',NULL,'[\"Jesse\"]'),(110955,1130,5,'director',NULL,NULL),(110955,919087,6,'writer','story',NULL),(110955,481418,7,'writer','screenplay',NULL),(110955,102508,8,'producer','producer',NULL),(110955,1923205,9,'producer','producer',NULL),(110958,827454,10,'cinematographer',NULL,NULL),(110958,4462,1,'actor',NULL,'[\"Marx\"]'),(110958,946179,2,'actor',NULL,'[\"Simon\"]'),(110958,440913,3,'actor',NULL,'[\"Johnny\"]'),(110958,644680,4,'actress',NULL,'[\"Louise\"]'),(110958,2191,5,'director',NULL,NULL),(110958,494378,6,'writer',NULL,NULL),(110958,925503,7,'writer','novel \"Triangle\"',NULL),(110958,369201,8,'producer','producer',NULL),(110958,6035,9,'composer',NULL,NULL),(110971,883351,10,'producer','producer',NULL),(110971,362,1,'actor',NULL,'[\"Bill Rago\"]'),(110971,2138,2,'actor',NULL,'[\"Sergeant Cass\"]'),(110971,1664,3,'actor',NULL,'[\"Captain Tom Murdoch\"]'),(110971,893,4,'actor',NULL,'[\"Jack Markin\"]'),(110971,1508,5,'director',NULL,NULL),(110971,122950,6,'writer','written by',NULL),(110971,7966,7,'producer','producer',NULL),(110971,171780,8,'producer','producer',NULL),(110971,339086,9,'producer','producer',NULL),(111001,84695,10,'cinematographer','director of photography',NULL),(111001,164,1,'actor',NULL,'[\"Dr. John Harvey Kellogg\"]'),(111001,403,2,'actress',NULL,'[\"Eleanor Lightbody\"]'),(111001,111,3,'actor',NULL,'[\"William Lightbody\"]'),(111001,131,4,'actor',NULL,'[\"Charles Ossining\"]'),(111001,570,5,'director',NULL,NULL),(111001,102339,6,'writer','novel \"Road to Wellville\"',NULL),(111001,77000,7,'producer','producer',NULL),(111001,171348,8,'producer','producer',NULL),(111001,6235,9,'composer',NULL,NULL),(111033,384185,10,'producer','producer',NULL),(111033,100866,1,'actress',NULL,'[\"Angie Gordon\"]'),(111033,276253,2,'actress',NULL,'[\"Mary Nicholson\"]'),(111033,507343,3,'actress',NULL,'[\"Laura Cahn\"]'),(111033,748620,4,'actor',NULL,'[\"Jimmy Rusoff\"]'),(111033,1102,5,'director',NULL,NULL),(111033,750870,6,'writer','story',NULL),(111033,351919,7,'writer','story',NULL),(111033,35097,8,'producer','producer',NULL),(111033,318429,9,'producer','producer',NULL),(111070,798711,10,'producer','producer',NULL),(111070,741,1,'actor',NULL,'[\"Scott Calvin\"]'),(111070,1662,2,'actor',NULL,'[\"Neal\"]'),(111070,187724,3,'actress',NULL,'[\"Laura\"]'),(111070,5156,4,'actor',NULL,'[\"Charlie Calvin\"]'),(111070,664756,5,'director',NULL,NULL),(111070,1080144,6,'writer','written by',NULL),(111070,748874,7,'writer','written by',NULL),(111070,628352,8,'producer','producer',NULL),(111070,717648,9,'producer','producer',NULL),(111112,5549,10,'cinematographer','director of photography',NULL),(111112,183926,1,'actress',NULL,'[\"Fiona\"]'),(111112,171428,2,'actress',NULL,'[\"Tess\"]'),(111112,482473,3,'actor',NULL,'[\"Hugh\"]'),(111112,806268,4,'actor',NULL,'[\"Priest\"]'),(111112,626,5,'director',NULL,NULL),(111112,296785,6,'writer','book \"The Secret of Ron Mor Skerry\"',NULL),(111112,338320,7,'producer','producer',NULL),(111112,719964,8,'producer','producer',NULL),(111112,6025,9,'composer',NULL,NULL),(111127,359000,10,'editor',NULL,NULL),(111127,678,1,'actress',NULL,'[\"Mom\"]'),(111127,1832,2,'actor',NULL,'[\"Dad\"]'),(111127,1442,3,'actress',NULL,'[\"Misty\"]'),(111127,498,4,'actor',NULL,'[\"Chip\"]'),(111127,691,5,'director',NULL,NULL),(111127,275836,6,'producer','producer',NULL),(111127,850516,7,'producer','producer',NULL),(111127,6231,8,'composer',NULL,NULL),(111127,828731,9,'cinematographer','director of photography',NULL),(111143,126653,10,'producer','producer',NULL),(111143,285,1,'actor',NULL,'[\"Lamont Cranston\",\"The Shadow\"]'),(111143,518821,2,'actor',NULL,'[\"Shiwan Khan\"]'),(111143,542,3,'actress',NULL,'[\"Margo Lane\"]'),(111143,1967,4,'actor',NULL,'[\"Moe Shrevnitz\"]'),(111143,611683,5,'director',NULL,NULL),(111143,317212,6,'writer','character The Shadow from stories',NULL),(111143,462895,7,'writer','written by',NULL),(111143,106840,8,'producer','producer',NULL),(111143,106841,9,'producer','producer',NULL),(111161,290358,10,'editor',NULL,NULL),(111161,209,1,'actor',NULL,'[\"Andy Dufresne\"]'),(111161,151,2,'actor',NULL,'[\"Ellis Boyd \'Red\' Redding\"]'),(111161,348409,3,'actor',NULL,'[\"Warden Norton\"]'),(111161,6669,4,'actor',NULL,'[\"Heywood\"]'),(111161,1104,5,'director',NULL,NULL),(111161,175,6,'writer','based on the short novel \"Rita Hayworth and the Shawshank Redemption\" by',NULL),(111161,555550,7,'producer','producer',NULL),(111161,2353,8,'composer',NULL,NULL),(111161,5683,9,'cinematographer','director of photography',NULL),(111201,285857,10,'production_designer',NULL,NULL),(111201,424,1,'actor',NULL,'[\"Anthony Campion\"]'),(111201,1216,2,'actress',NULL,'[\"Estella Campion\"]'),(111201,554,3,'actor',NULL,'[\"Norman Lindsay\"]'),(111201,512,4,'actress',NULL,'[\"Sheela\"]'),(111201,241090,5,'director',NULL,NULL),(111201,589738,6,'producer','producer',NULL),(111201,6235,7,'composer',NULL,NULL),(111201,123587,8,'cinematographer','director of photography',NULL),(111201,228850,9,'editor',NULL,NULL),(111205,830638,10,'editor',NULL,NULL),(111205,910278,1,'actress',NULL,'[\"Madame Danzard\"]'),(111205,613,2,'actress',NULL,'[\"Christine Papin\"]'),(111205,562003,3,'actress',NULL,'[\"Lea Papin\"]'),(111205,862232,4,'actress',NULL,'[\"Isabelle Danzard\"]'),(111205,575361,5,'director',NULL,NULL),(111205,450277,6,'writer','play',NULL),(111205,382278,7,'producer','producer',NULL),(111205,6339,8,'composer',NULL,NULL),(111205,746474,9,'cinematographer',NULL,NULL),(111255,453808,10,'cinematographer','director of photography',NULL),(111255,230,1,'actor',NULL,'[\"Ray Quick\"]'),(111255,232,2,'actress',NULL,'[\"May Munro\"]'),(111255,249,3,'actor',NULL,'[\"Ned Trent\"]'),(111255,1768,4,'actor',NULL,'[\"Joe Leon\"]'),(111255,515891,5,'director',NULL,NULL),(111255,794326,6,'writer','Specialist novels',NULL),(111255,785311,7,'writer','written by',NULL),(111255,5545,8,'producer','producer',NULL),(111255,290,9,'composer',NULL,NULL),(111257,942510,10,'editor',NULL,NULL),(111257,206,1,'actor',NULL,'[\"Jack Traven\"]'),(111257,454,2,'actor',NULL,'[\"Howard Payne\"]'),(111257,113,3,'actress',NULL,'[\"Annie\"]'),(111257,608012,4,'actor',NULL,'[\"Capt. McMahon\"]'),(111257,957,5,'director',NULL,NULL),(111257,3662,6,'writer','written by',NULL),(111257,330428,7,'producer','producer',NULL),(111257,6183,8,'composer',NULL,NULL),(111257,5647,9,'cinematographer','director of photography',NULL),(111280,565103,10,'composer',NULL,NULL),(111280,1772,1,'actor',NULL,'[\"Picard\"]'),(111280,638,2,'actor',NULL,'[\"Kirk\"]'),(111280,532,3,'actor',NULL,'[\"Soran\"]'),(111280,408,4,'actor',NULL,'[\"Riker\"]'),(111280,141222,5,'director',NULL,NULL),(111280,734472,6,'writer','television series Star Trek',NULL),(111280,75834,7,'writer','story',NULL),(111280,601822,8,'writer','story',NULL),(111280,103804,9,'writer','story',NULL),(111282,5776,10,'cinematographer',NULL,NULL),(111282,621,1,'actor',NULL,'[\"Colonel Jonathan \'Jack\' O\'Neil\"]'),(111282,652,2,'actor',NULL,'[\"Dr. Daniel Jackson\"]'),(111282,1109,3,'actor',NULL,'[\"Ra\"]'),(111282,511798,4,'actress',NULL,'[\"Catherine Langford\"]'),(111282,386,5,'director',NULL,NULL),(111282,2041,6,'writer','written by',NULL),(111282,248082,7,'producer','producer',NULL),(111282,584382,8,'producer','producer',NULL),(111282,3417,9,'composer',NULL,NULL),(111301,2155,10,'editor',NULL,NULL),(111301,241,1,'actor',NULL,'[\"Colonel Guile\"]'),(111301,471,2,'actor',NULL,'[\"Bison\"]'),(111301,1840,3,'actress',NULL,'[\"Chun-Li\"]'),(111301,152082,4,'actor',NULL,'[\"Ken\"]'),(111301,211823,5,'director',NULL,NULL),(111301,696299,6,'producer','producer',NULL),(111301,875329,7,'producer','producer',NULL),(111301,6251,8,'composer',NULL,NULL),(111301,5710,9,'cinematographer','director of photography',NULL),(111333,463060,10,'editor',NULL,NULL),(111333,1588,1,'actor',NULL,'[\"Sir Rothbart\"]'),(111333,569294,2,'actor',NULL,'[\"Adult Prince Derek\"]'),(111333,629264,3,'actress',NULL,'[\"Adult Princess Odette\"]'),(111333,130356,4,'actress',NULL,'[\"Princess Odette\"]'),(111333,723704,5,'director',NULL,NULL),(111333,1270819,6,'writer','story',NULL),(111333,113794,7,'producer','executive producer',NULL),(111333,207185,8,'composer',NULL,NULL),(111333,414157,9,'editor',NULL,NULL),(111341,903167,10,'producer','producer',NULL),(111341,896902,1,'actor',NULL,'[\"Irimiás\"]'),(111341,395814,2,'actor',NULL,'[\"Petrina\"]'),(111341,269841,3,'actor',NULL,'[\"Schmidt\"]'),(111341,22034,4,'actress',NULL,'[\"Schmidtné\"]'),(111341,850601,5,'director',NULL,NULL),(111341,470004,6,'writer','novel \"Sátántangó\"',NULL),(111341,229569,7,'writer','story',NULL),(111341,586280,8,'writer','story',NULL),(111341,270486,9,'producer','producer',NULL),(111359,6055,10,'composer',NULL,NULL),(111359,664,1,'actor',NULL,'[\"Pecos Bill\"]'),(111359,1624,2,'actor',NULL,'[\"Paul Bunyan\"]'),(111359,114578,3,'actor',NULL,'[\"John Henry\"]'),(111359,1763,4,'actor',NULL,'[\"Daniel Hackett\"]'),(111359,154819,5,'director',NULL,NULL),(111359,89237,6,'writer','written by',NULL),(111359,734441,7,'writer','written by',NULL),(111359,83696,8,'producer','producer',NULL),(111359,5387,9,'producer','producer',NULL),(111438,849964,10,'producer','producer',NULL),(111438,241,1,'actor',NULL,'[\"Walker\"]'),(111438,214,2,'actress',NULL,'[\"Melissa\"]'),(111438,798779,3,'actor',NULL,'[\"McComb\"]'),(111438,569226,4,'actor',NULL,'[\"Matuzak\"]'),(111438,1382,5,'director',NULL,NULL),(111438,894156,6,'writer','screenplay',NULL),(111438,724700,7,'writer','story',NULL),(111438,224537,8,'producer','producer',NULL),(111438,600,9,'producer','producer',NULL),(111470,2925,10,'editor',NULL,NULL),(111470,651,1,'actress',NULL,'[\"Mommy\",\"Mama\",\"Mom\"]'),(111470,1043,2,'actress',NULL,'[\"Elizabeth\"]'),(111470,582485,3,'actor',NULL,'[\"Jeremy\"]'),(111470,582487,4,'actor',NULL,'[\"Harry\"]'),(111470,107045,5,'director',NULL,NULL),(111470,107044,6,'writer','novel \"The Mummy Market\"',NULL),(111470,209581,7,'producer','producer',NULL),(111470,457598,8,'composer',NULL,NULL),(111470,270806,9,'cinematographer',NULL,NULL),(111503,6075,10,'composer',NULL,NULL),(111503,216,1,'actor',NULL,'[\"Harry\"]'),(111503,130,2,'actress',NULL,'[\"Helen\"]'),(111503,792,3,'actor',NULL,'[\"Gib\"]'),(111503,200,4,'actor',NULL,'[\"Simon\"]'),(111503,116,5,'director',NULL,NULL),(111503,956022,6,'writer','based upon a screenplay by',NULL),(111503,584770,7,'writer','based upon a screenplay by',NULL),(111503,436687,8,'writer','based upon a screenplay by',NULL),(111503,42520,9,'producer','producer',NULL),(111507,489995,10,'writer','dialogue translation',NULL),(111507,952498,1,'actor',NULL,'[\"Karol Karol\"]'),(111507,365,2,'actress',NULL,'[\"Dominique\"]'),(111507,301515,3,'actor',NULL,'[\"Mikolaj\"]'),(111507,836136,4,'actor',NULL,'[\"Jurek\"]'),(111507,1425,5,'director',NULL,NULL),(111507,682830,6,'writer','scenario',NULL),(111507,2140,7,'writer','scenario collaborator',NULL),(111507,954072,8,'writer','scenario collaborator',NULL),(111507,460058,9,'writer','scenario collaborator',NULL),(111512,874676,10,'producer','producer',NULL),(111512,329,1,'actor',NULL,'[\"Wong Fei-hung\"]'),(111512,657064,2,'actor',NULL,'[\"Henry\"]'),(111512,862479,3,'actor',NULL,'[\"Wong Kei-ying, Wong\'s Father\"]'),(111512,611315,4,'actress',NULL,'[\"Ling - Wong\'s Step-Mother\"]'),(111512,514906,5,'director',NULL,NULL),(111512,849282,6,'writer','screenplay',NULL),(111512,867246,7,'writer','screenplay',NULL),(111512,950699,8,'writer','screenplay',NULL),(111512,212933,9,'writer','english adaptation',NULL),(111520,489678,10,'cinematographer',NULL,NULL),(111520,469,1,'self',NULL,'[\"Self - Host\"]'),(111520,1388,2,'actress',NULL,'[\"Melissa Sanders - James\' Fiancee (segment \\\"The Theatre\\\")\"]'),(111520,170550,3,'actor',NULL,'[\"James (segment \\\"The Theatre\\\")\"]'),(111520,920,4,'actor',NULL,'[\"Dr. Benjamin Ramsey (segment \\\"Where the Dead Are\\\")\"]'),(111520,548740,5,'director',NULL,NULL),(111520,785245,6,'writer','story',NULL),(111520,558577,7,'writer','teleplay',NULL),(111520,382786,8,'producer','producer',NULL),(111520,2305,9,'composer',NULL,NULL),(111549,6271,10,'composer',NULL,NULL),(111549,295,1,'actress',NULL,'[\"Julia\"]'),(111549,939795,2,'actor',NULL,'[\"Cesar\"]'),(111549,193661,3,'actress',NULL,'[\"Menchu\"]'),(111549,66854,4,'actor',NULL,'[\"Domenec\"]'),(111549,564319,5,'director',NULL,NULL),(111549,702416,6,'writer','novel \"La Tabla De Flandes\"',NULL),(111549,386694,7,'writer','screenplay',NULL),(111549,52944,8,'writer','screenplay',NULL),(111549,692713,9,'producer','producer',NULL),(111640,263652,10,'composer',NULL,NULL),(111640,314305,1,'actor',NULL,'[\"Tommie\",\"Dieter\",\"Heinz\"]'),(111640,845609,2,'actor',NULL,'[\"Mario\"]'),(111640,274704,3,'actress',NULL,'[\"Carmen\"]'),(111640,828435,4,'actress',NULL,'[\"Gabi\"]'),(111640,400170,5,'director',NULL,NULL),(111640,474709,6,'writer','story',NULL),(111640,332080,7,'writer','story',NULL),(111640,251536,8,'producer','producer',NULL),(111640,954874,9,'producer','producer',NULL),(111686,152868,10,'production_designer',NULL,NULL),(111686,486,1,'actress',NULL,'[\"Heather Langenkamp\"]'),(111686,387,2,'actor',NULL,'[\"Robert Englund\",\"Freddy Krueger\"]'),(111686,204791,3,'actor',NULL,'[\"Freddy\'s Hand Double\"]'),(111686,400816,4,'actor',NULL,'[\"Dylan\"]'),(111686,127,5,'director',NULL,NULL),(111686,534543,6,'producer','producer',NULL),(111686,6254,7,'composer',NULL,NULL),(111686,410419,8,'cinematographer',NULL,NULL),(111686,527261,9,'editor',NULL,NULL),(111693,6237,10,'composer',NULL,NULL),(111693,212,1,'actress',NULL,'[\"Alice Green\"]'),(111693,412,2,'actor',NULL,'[\"Michael Green\"]'),(111693,995,3,'actress',NULL,'[\"Emily\"]'),(111693,1499,4,'actress',NULL,'[\"Jess Green\"]'),(111693,1502,5,'director',NULL,NULL),(111693,60103,6,'writer','written by',NULL),(111693,291253,7,'writer','written by',NULL),(111693,816,8,'producer','producer',NULL),(111693,449549,9,'producer','producer',NULL),(111751,718143,10,'cinematographer',NULL,NULL),(111751,652577,1,'actress',NULL,'[\"Wrona\"]'),(111751,843833,2,'actress',NULL,'[\"Malenstwo\"]'),(111751,354484,3,'actress',NULL,'[\"Matka Wrony\"]'),(111751,699147,4,'actress',NULL,'[\"Nauczycielka\"]'),(111751,444328,5,'director',NULL,NULL),(111751,158582,6,'producer','producer',NULL),(111751,844363,7,'producer','producer',NULL),(111751,936127,8,'producer','producer',NULL),(111751,668043,9,'composer',NULL,NULL),(111797,534794,10,'composer',NULL,NULL),(111797,485950,1,'actor',NULL,'[\"Chu\"]'),(111797,945992,2,'actress',NULL,'[\"Jia-Jen\"]'),(111797,911096,3,'actress',NULL,'[\"Jia-Ning\"]'),(111797,943072,4,'actress',NULL,'[\"Jia-Chien\"]'),(111797,487,5,'director',NULL,NULL),(111797,770005,6,'writer','screenplay',NULL),(111797,910924,7,'writer','screenplay',NULL),(111797,398832,8,'producer','producer',NULL),(111797,398836,9,'producer','producer',NULL),(111800,496742,10,'cinematographer',NULL,NULL),(111800,706,1,'actress',NULL,'[\"Yim Wing Chun\"]'),(111800,947447,2,'actor',NULL,'[\"Leung Pok To\"]'),(111800,950738,3,'actress',NULL,'[\"Abacus Fong\"]'),(111800,402175,4,'actress',NULL,'[\"Charmy\"]'),(111800,950759,5,'director',NULL,NULL),(111800,849283,6,'writer',NULL,NULL),(111800,2060068,7,'writer',NULL,NULL),(111800,482697,8,'composer',NULL,NULL),(111800,155715,9,'composer',NULL,NULL),(112040,171754,10,'actor',NULL,'[\"Albert Kaussner\"]'),(112040,923210,1,'actress',NULL,'[\"Laurel Stevenson\"]'),(112040,1777,2,'actor',NULL,'[\"Bob Jenkins\"]'),(112040,276169,3,'actor',NULL,'[\"Harker\"]'),(112040,531069,4,'actress',NULL,'[\"Dinah Bellman\"]'),(112040,152464,5,'actor',NULL,'[\"Nick Hopewell\"]'),(112040,514127,6,'actress',NULL,'[\"Aunt Vicki\"]'),(112040,265670,7,'actor',NULL,'[\"Don Gaffney\"]'),(112040,364463,8,'actor',NULL,'[\"Rudy Warwick\"]'),(112040,521681,9,'actor',NULL,'[\"Richard Logan\"]'),(112130,151250,10,'actress',NULL,'[\"Miss Bingley\"]'),(112130,147,1,'actor',NULL,'[\"Mr Darcy\"]'),(112130,383,2,'actress',NULL,'[\"Elizabeth Bennet\"]'),(112130,363117,3,'actress',NULL,'[\"Jane Bennet\"]'),(112130,768018,4,'actress',NULL,'[\"Lydia Bennet\"]'),(112130,824102,5,'actress',NULL,'[\"Mrs. Bennet\"]'),(112130,926368,6,'actor',NULL,'[\"Mr. Bennet\"]'),(112130,94502,7,'actor',NULL,'[\"Mr Bingley\"]'),(112130,531070,8,'actress',NULL,'[\"Kitty Bennet\"]'),(112130,108939,9,'actress',NULL,'[\"Mary Bennet\"]'),(112281,132695,10,'editor',NULL,NULL),(112281,120,1,'actor',NULL,'[\"Ace Ventura\"]'),(112281,573862,2,'actor',NULL,'[\"Fulton Greenwall\"]'),(112281,1003,3,'actor',NULL,'[\"Vincent Cadby\"]'),(112281,264330,4,'actor',NULL,'[\"Ouda\"]'),(112281,644203,5,'director',NULL,NULL),(112281,77062,6,'writer','characters',NULL),(112281,732708,7,'producer','producer',NULL),(112281,6077,8,'composer',NULL,NULL),(112281,4241,9,'cinematographer','director of photography',NULL),(112288,4302,10,'cinematographer',NULL,NULL),(112288,666,1,'actress',NULL,'[\"Kathleen Conklin\"]'),(112288,686,2,'actor',NULL,'[\"Peina\"]'),(112288,1711,3,'actress',NULL,'[\"Casanova\"]'),(112288,4908,4,'actress',NULL,'[\"Jean\"]'),(112288,1206,5,'director',NULL,NULL),(112288,820669,6,'writer','written by',NULL),(112288,360173,7,'producer','producer',NULL),(112288,837875,8,'producer','producer',NULL),(112288,217137,9,'composer',NULL,NULL),(112346,453344,10,'production_designer',NULL,NULL),(112346,140,1,'actor',NULL,'[\"Andrew Shepherd\"]'),(112346,906,2,'actress',NULL,'[\"Sydney Ellen Wade\"]'),(112346,640,3,'actor',NULL,'[\"A.J. MacInerney\"]'),(112346,150,4,'actor',NULL,'[\"Lewis Rothschild\"]'),(112346,1661,5,'director',NULL,NULL),(112346,815070,6,'writer','written by',NULL),(112346,3299,7,'composer',NULL,NULL),(112346,5868,8,'cinematographer','director of photography',NULL),(112346,500371,9,'editor',NULL,NULL),(112379,823725,10,'cinematographer',NULL,NULL),(112379,2168,1,'actress',NULL,'[\"Antonia\"]'),(112379,213912,2,'actor',NULL,'[\"Boer Bas\"]'),(112379,887675,3,'actress',NULL,'[\"Thérèse\"]'),(112379,234579,4,'actress',NULL,'[\"Danielle\"]'),(112379,331296,5,'director',NULL,NULL),(112379,180168,6,'producer','producer',NULL),(112379,212355,7,'producer','producer',NULL),(112379,937770,8,'producer','producer',NULL),(112379,782794,9,'composer',NULL,NULL),(112384,4976,10,'producer','producer',NULL),(112384,158,1,'actor',NULL,'[\"Jim Lovell\"]'),(112384,200,2,'actor',NULL,'[\"Fred Haise\"]'),(112384,102,3,'actor',NULL,'[\"Jack Swigert\"]'),(112384,641,4,'actor',NULL,'[\"Ken Mattingly\"]'),(112384,165,5,'director',NULL,NULL),(112384,522554,6,'writer','book \"Lost Moon\"',NULL),(112384,460200,7,'writer','book \"Lost Moon\"',NULL),(112384,115310,8,'writer','screenplay',NULL),(112384,718031,9,'writer','screenplay',NULL),(112386,552909,10,'producer','producer',NULL),(112386,873005,1,'actress',NULL,'[\"Lorette\"]'),(112386,167388,2,'actor',NULL,'[\"Antoine\"]'),(112386,220016,3,'actor',NULL,'[\"Fred\"]'),(112386,377882,4,'actress',NULL,'[\"Sylvie\"]'),(112386,759270,5,'director',NULL,NULL),(112386,362854,6,'writer','story',NULL),(112386,61633,7,'writer','collaboration',NULL),(112386,190988,8,'writer','collaboration',NULL),(112386,843483,9,'writer','collaboration',NULL),(112389,869979,10,'writer','additional story and dialogue',NULL),(112389,1637,1,'actor',NULL,'[\"ZigZag\"]'),(112389,111,2,'actor',NULL,'[\"Tack the Cobbler (Miramax version)\"]'),(112389,884,3,'actress',NULL,'[\"Princess YumYum (Miramax version)\"]'),(112389,656116,4,'actress',NULL,'[\"Princess YumYum (Majestic Films version)\",\"Additional voices (Miramax version)\"]'),(112389,931530,5,'director',NULL,NULL),(112389,294140,6,'writer','screenplay',NULL),(112389,71970,7,'writer','additional story and dialogue',NULL),(112389,750344,8,'writer','additional story and dialogue',NULL),(112389,2700755,9,'writer','additional story and dialogue',NULL),(112401,317279,10,'producer','producer',NULL),(112401,230,1,'actor',NULL,'[\"Robert Rath\"]'),(112401,104,2,'actor',NULL,'[\"Miguel Bain\"]'),(112401,194,3,'actress',NULL,'[\"Electra\"]'),(112401,205863,4,'actor',NULL,'[\"Nicolai Tashlinkov\"]'),(112401,1149,5,'director',NULL,NULL),(112401,905152,6,'writer','story',NULL),(112401,905154,7,'writer','story',NULL),(112401,1338,8,'writer','screenplay',NULL),(112401,262595,9,'producer','producer',NULL),(112431,922806,10,'composer',NULL,NULL),(112431,342,1,'actor',NULL,'[\"Farmer Hoggett\"]'),(112431,844294,2,'actress',NULL,'[\"Esme Hoggett\"]'),(112431,4815,3,'actress',NULL,'[\"Babe\"]'),(112431,546816,4,'actress',NULL,'[\"Fly\"]'),(112431,3088,5,'director',NULL,NULL),(112431,455404,6,'writer','novel \"The Sheep Pig\"',NULL),(112431,4306,7,'writer','screenplay',NULL),(112431,587964,8,'producer','producer',NULL),(112431,593294,9,'producer','producer',NULL),(112435,6080,10,'composer',NULL,NULL),(112435,4922,1,'actress',NULL,'[\"Kristy\"]'),(112435,86205,2,'actress',NULL,'[\"Stacey\"]'),(112435,337,3,'actress',NULL,'[\"Mary Anne\"]'),(112435,646351,4,'actress',NULL,'[\"Dawn\"]'),(112435,563039,5,'director',NULL,NULL),(112435,551923,6,'writer','based on the book series by',NULL),(112435,949430,7,'writer','written by',NULL),(112435,21977,8,'producer','producer',NULL),(112435,823661,9,'producer','producer',NULL),(112442,988,10,'producer','producer',NULL),(112442,226,1,'actor',NULL,'[\"Mike Lowrey\"]'),(112442,1454,2,'actor',NULL,'[\"Marcus Burnett\"]'),(112442,102288,3,'actress',NULL,'[\"Girl Decoy\"]'),(112442,848075,4,'actor',NULL,'[\"Carjacker\"]'),(112442,881,5,'director',NULL,NULL),(112442,303032,6,'writer','story',NULL),(112442,57398,7,'writer','screenplay',NULL),(112442,611848,8,'writer','screenplay',NULL),(112442,724514,9,'writer','screenplay',NULL),(112453,9054338,10,'producer','producer',NULL),(112453,102,1,'actor',NULL,'[\"Balto\"]'),(112453,1364,2,'actor',NULL,'[\"Boris\"]'),(112453,403,3,'actress',NULL,'[\"Jenna\"]'),(112453,191906,4,'actor',NULL,'[\"Steele\"]'),(112453,920425,5,'director',NULL,NULL),(112453,748429,6,'writer','story by',NULL),(112453,504327,7,'writer','story by',NULL),(112453,169325,8,'writer','screenplay by',NULL),(112453,776107,9,'writer','screenplay by',NULL),(112461,6251,10,'composer',NULL,NULL),(112461,138,1,'actor',NULL,'[\"Jim Carroll\"]'),(112461,966,2,'actress',NULL,'[\"Jim\'s Mother\"]'),(112461,812427,3,'actress',NULL,'[\"Chanting Woman\"]'),(112461,534944,4,'actor',NULL,'[\"Pedro\"]'),(112461,436284,5,'director',NULL,NULL),(112461,140860,6,'writer','novel',NULL),(112461,326734,7,'writer','screenplay',NULL),(112461,375353,8,'producer','producer',NULL),(112461,544307,9,'producer','producer',NULL),(112462,318,10,'producer','producer',NULL),(112462,174,1,'actor',NULL,'[\"Batman\",\"Bruce Wayne\"]'),(112462,169,2,'actor',NULL,'[\"Harvey Two-Face\",\"Harvey Dent\"]'),(112462,120,3,'actor',NULL,'[\"Riddler\",\"Edward Nygma\"]'),(112462,173,4,'actress',NULL,'[\"Dr. Chase Meridian\"]'),(112462,1708,5,'director',NULL,NULL),(112462,4170,6,'writer','characters',NULL),(112462,60761,7,'writer','story',NULL),(112462,60760,8,'writer','story',NULL),(112462,326040,9,'writer','screenplay',NULL),(112471,10471,10,'editor',NULL,NULL),(112471,160,1,'actor',NULL,'[\"Jesse\"]'),(112471,365,2,'actress',NULL,'[\"Céline\"]'),(112471,248600,3,'actress',NULL,'[\"Wife on Train\"]'),(112471,702541,4,'actor',NULL,'[\"Husband on Train\"]'),(112471,500,5,'director',NULL,NULL),(112471,471811,6,'writer','written by',NULL),(112471,908323,7,'producer','producer',NULL),(112471,295947,8,'composer',NULL,NULL),(112471,199679,9,'cinematographer','director of photography',NULL),(112508,319673,10,'editor',NULL,NULL),(112508,1191,1,'actor',NULL,'[\"Billy Madison\"]'),(112508,569000,2,'actor',NULL,'[\"Brian Madison\"]'),(112508,933098,3,'actress',NULL,'[\"Veronica Vaughn\"]'),(112508,925966,4,'actor',NULL,'[\"Eric Gordon\"]'),(112508,205542,5,'director',NULL,NULL),(112508,379056,6,'writer','written by',NULL),(112508,800465,7,'producer','producer',NULL),(112508,6055,8,'composer',NULL,NULL),(112508,358510,9,'cinematographer',NULL,NULL),(112513,34885,10,'composer',NULL,NULL),(112513,594074,1,'actress',NULL,'[\"Usagi Tsukino - Super Sailor Moon\"]'),(112513,32890,2,'actress',NULL,'[\"Chibi Usa - Super Sailor Chibi Moon\"]'),(112513,593911,3,'actress',NULL,'[\"Rei Hino - Sailor Mars\"]'),(112513,386752,4,'actress',NULL,'[\"Ami Mizuno - Sailor Mercury\"]'),(112513,386384,5,'director',NULL,NULL),(112513,257939,6,'writer','screenplay',NULL),(112513,847603,7,'writer','author: Kodansha Monthly Nakayoshi',NULL),(112513,525873,8,'writer','adaptation',NULL),(112513,1033257,9,'producer','dvd producer',NULL),(112571,4241,10,'cinematographer','director of photography',NULL),(112571,155,1,'actress',NULL,'[\"Jane\"]'),(112571,571,2,'actress',NULL,'[\"Robin\"]'),(112571,106,3,'actress',NULL,'[\"Holly\"]'),(112571,190,4,'actor',NULL,'[\"Abe\"]'),(112571,6889,5,'director',NULL,NULL),(112571,740400,6,'writer','written by',NULL),(112571,586969,7,'producer','producer',NULL),(112571,720715,8,'producer','producer',NULL),(112571,628056,9,'composer',NULL,NULL),(112573,742475,10,'editor',NULL,NULL),(112573,154,1,'actor',NULL,'[\"William Wallace\"]'),(112573,521,2,'actress',NULL,'[\"Princess Isabelle\"]'),(112573,1526,3,'actor',NULL,'[\"Longshanks - King Edward I\"]'),(112573,5171,4,'actor',NULL,'[\"Robert the Bruce\"]'),(112573,908824,5,'writer','written by',NULL),(112573,202704,6,'producer','producer',NULL),(112573,480440,7,'producer','producer',NULL),(112573,35,8,'composer',NULL,NULL),(112573,1799,9,'cinematographer','director of photography',NULL),(112579,185088,10,'editor',NULL,NULL),(112579,142,1,'actor',NULL,'[\"Robert Kincaid\"]'),(112579,658,2,'actress',NULL,'[\"Francesca Johnson\"]'),(112579,179960,3,'actress',NULL,'[\"Carolyn Johnson\"]'),(112579,805789,4,'actor',NULL,'[\"Michael Johnson\"]'),(112579,481418,5,'writer','screenplay',NULL),(112579,909077,6,'writer','novel',NULL),(112579,5086,7,'producer','producer',NULL),(112579,6215,8,'composer',NULL,NULL),(112579,5726,9,'cinematographer','director of photography',NULL),(112604,568974,10,'cinematographer',NULL,NULL),(112604,1625,1,'actress',NULL,'[\"Eunice\"]'),(112604,417126,2,'actress',NULL,'[\"Wendy\"]'),(112604,716293,3,'actress',NULL,'[\"Miriam\"]'),(112604,563922,4,'actor',NULL,'[\"Eric McDermott\"]'),(112604,935863,5,'director',NULL,NULL),(112604,101639,6,'writer','written by',NULL),(112604,47787,7,'producer','producer',NULL),(112604,199730,8,'producer','producer',NULL),(112604,363259,9,'composer',NULL,NULL),(112641,274721,10,'production_designer',NULL,NULL),(112641,134,1,'actor',NULL,'[\"Sam \'Ace\' Rothstein\"]'),(112641,232,2,'actress',NULL,'[\"Ginger McKenna\"]'),(112641,582,3,'actor',NULL,'[\"Nicky Santoro\"]'),(112641,249,4,'actor',NULL,'[\"Lester Diamond\"]'),(112641,217,5,'director',NULL,NULL),(112641,683380,6,'writer','book',NULL),(112641,208381,7,'producer','producer',NULL),(112641,724744,8,'cinematographer','director of photography',NULL),(112641,774817,9,'editor',NULL,NULL),(112642,35,10,'composer',NULL,NULL),(112642,597,1,'actor',NULL,'[\"Dr. Harvey\"]'),(112642,207,2,'actress',NULL,'[\"Kat\"]'),(112642,1550,3,'actress',NULL,'[\"Carrigan\"]'),(112642,1385,4,'actor',NULL,'[\"Dibs\"]'),(112642,797869,5,'director',NULL,NULL),(112642,649866,6,'writer','characters',NULL),(112642,832300,7,'writer','written by',NULL),(112642,646818,8,'writer','written by',NULL),(112642,933213,9,'producer','producer',NULL),(112651,1980,10,'composer',NULL,NULL),(112651,5499,1,'self',NULL,'[\"Self - Narrator\"]'),(112651,348,2,'self',NULL,'[\"Self\"]'),(112651,109192,3,'self',NULL,'[\"Self\"]'),(112651,491306,4,'self',NULL,'[\"Self\"]'),(112651,258531,5,'director',NULL,NULL),(112651,295243,6,'director',NULL,NULL),(112651,751752,7,'writer','based on the work of',NULL),(112651,940000,8,'writer','story',NULL),(112651,560945,9,'writer','narration written by',NULL),(112679,935131,10,'producer','producer',NULL),(112679,563,1,'actor',NULL,'[\"Jack\"]'),(112679,378,2,'actress',NULL,'[\"Benny\"]'),(112679,642374,3,'actress',NULL,'[\"Eve\"]'),(112679,4787,4,'actress',NULL,'[\"Nan\"]'),(112679,640466,5,'director',NULL,NULL),(112679,203577,6,'writer','screenplay',NULL),(112679,82759,7,'writer','novel',NULL),(112679,696895,8,'producer','producer',NULL),(112679,783333,9,'producer','producer',NULL),(112682,372910,10,'producer','producer',NULL),(112682,579,1,'actor',NULL,'[\"One\"]'),(112682,256399,2,'actor',NULL,'[\"Krank\"]'),(112682,900136,3,'actress',NULL,'[\"Miette\"]'),(112682,684500,4,'actor',NULL,'[\"Le scaphandrier\",\"Les clones\"]'),(112682,1988,5,'director',NULL,NULL),(112682,466,6,'director',NULL,NULL),(112682,12496,7,'writer','story',NULL),(112682,491011,8,'writer','additional dialogue',NULL),(112682,1069032,9,'producer','producer',NULL),(112697,157096,10,'editor',NULL,NULL),(112697,224,1,'actress',NULL,'[\"Cher\"]'),(112697,1107,2,'actress',NULL,'[\"Dionne\"]'),(112697,5261,3,'actress',NULL,'[\"Tai\"]'),(112697,748620,4,'actor',NULL,'[\"Josh\"]'),(112697,2132,5,'director',NULL,NULL),(112697,492994,6,'producer','producer',NULL),(112697,748784,7,'producer','producer',NULL),(112697,457598,8,'composer',NULL,NULL),(112697,691084,9,'cinematographer',NULL,NULL),(112701,3372,10,'cinematographer','director of photography',NULL),(112701,40586,1,'actress',NULL,'[\"Judith Starkadder\"]'),(112701,295,2,'actress',NULL,'[\"Flora Poste\"]'),(112701,123090,3,'actress',NULL,'[\"Ada Doom\"]'),(112701,410,4,'actor',NULL,'[\"Mybug\"]'),(112701,772259,5,'director',NULL,NULL),(112701,102903,6,'writer','screenplay',NULL),(112701,316599,7,'writer','novel',NULL),(112701,318336,8,'producer','producer',NULL),(112701,516894,9,'composer',NULL,NULL),(112715,25,10,'composer',NULL,NULL),(112715,1473,1,'actress',NULL,'[\"Dr. Karen Ross\"]'),(112715,347,2,'actor',NULL,'[\"Herkermer Homolka\"]'),(112715,909620,3,'actor',NULL,'[\"Dr. Peter Elliot\"]'),(112715,1368,4,'actor',NULL,'[\"Captain Monroe Kelly\"]'),(112715,550881,5,'director',NULL,NULL),(112715,341,6,'writer','novel',NULL),(112715,788234,7,'writer','screenplay',NULL),(112715,5086,8,'producer','producer',NULL),(112715,580303,9,'producer','producer',NULL),(112722,2366,10,'composer',NULL,NULL),(112722,244,1,'actress',NULL,'[\"Helen Hudson\"]'),(112722,456,2,'actress',NULL,'[\"MJ Monahan\"]'),(112722,551,3,'actor',NULL,'[\"Ruben Goetz\"]'),(112722,1530,4,'actor',NULL,'[\"Peter Foley\"]'),(112722,750,5,'director',NULL,NULL),(112722,81189,6,'writer','written by',NULL),(112722,535189,7,'writer','written by',NULL),(112722,586969,8,'producer','producer',NULL),(112722,850516,9,'producer','producer',NULL),(112740,1877,10,'composer',NULL,NULL),(112740,432,1,'actor',NULL,'[\"Ramsey\"]'),(112740,243,2,'actor',NULL,'[\"Hunter\"]'),(112740,2023,3,'actor',NULL,'[\"Zimmer\"]'),(112740,1169,4,'actor',NULL,'[\"Cob\"]'),(112740,1716,5,'director',NULL,NULL),(112740,771512,6,'writer','story',NULL),(112740,377543,7,'writer','story',NULL),(112740,988,8,'producer','producer',NULL),(112740,800971,9,'producer','producer',NULL),(112757,227842,10,'cinematographer','director of photography',NULL),(112757,1515,1,'actor',NULL,'[\"Dexter\"]'),(112757,605,2,'actor',NULL,'[\"Erik\"]'),(112757,250643,3,'actor',NULL,'[\"Tyler\"]'),(112757,294070,4,'actress',NULL,'[\"Tyler\'s Girlfriend\"]'),(112757,5022,5,'director',NULL,NULL),(112757,2675,6,'writer','written by',NULL),(112757,121117,7,'producer','producer',NULL),(112757,252140,8,'producer','producer',NULL),(112757,6115,9,'composer',NULL,NULL),(112760,455207,10,'writer','screenplay',NULL),(112760,133,1,'actress',NULL,'[\"Morgan Adams\"]'),(112760,546,2,'actor',NULL,'[\"William Shaw\"]'),(112760,1449,3,'actor',NULL,'[\"Dawg Brown\"]'),(112760,1999,4,'actor',NULL,'[\"John Reed\"]'),(112760,1317,5,'director',NULL,NULL),(112760,65847,6,'writer','story',NULL),(112760,331079,7,'writer','story',NULL),(112760,262595,8,'writer','story',NULL),(112760,317279,9,'writer','story',NULL),(112769,5935,10,'cinematographer',NULL,NULL),(112769,1376,1,'actress',NULL,'[\"Jeanne la postière\"]'),(112769,94789,2,'actress',NULL,'[\"Sophie la bonne\"]'),(112769,302,3,'actress',NULL,'[\"Catherine Lelievre\"]'),(112769,144045,4,'actor',NULL,'[\"Georges Lelievre\"]'),(112769,1031,5,'director',NULL,NULL),(112769,719334,6,'writer','based on the novel \"A Judgment in Stone\" by',NULL),(112769,253428,7,'writer','adaptation',NULL),(112769,439767,8,'producer','producer',NULL),(112769,149347,9,'composer',NULL,NULL),(112792,171123,10,'composer',NULL,NULL),(112792,201,1,'actress',NULL,'[\"Louanne Johnson\"]'),(112792,1169,2,'actor',NULL,'[\"Hal Griffith\"]'),(112792,5524,3,'actor',NULL,'[\"Mr. George Grandey\"]'),(112792,862,4,'actress',NULL,'[\"Mrs. Carla Nichols\"]'),(112792,808807,5,'director',NULL,NULL),(112792,425676,6,'writer','book \"My Posse Don\'t Do Homework\"',NULL),(112792,60103,7,'writer','screenplay',NULL),(112792,988,8,'producer','producer',NULL),(112792,800971,9,'producer','producer',NULL),(112818,5683,10,'cinematographer','director of photography',NULL),(112818,215,1,'actress',NULL,'[\"Sister Helen Prejean\"]'),(112818,576,2,'actor',NULL,'[\"Matthew Poncelet\"]'),(112818,698764,3,'actor',NULL,'[\"Hilton Barber\"]'),(112818,855,4,'actor',NULL,'[\"Earl Delacroix\"]'),(112818,209,5,'director',NULL,NULL),(112818,695878,6,'writer','book \"Dead Man Walking\"',NULL),(112818,453091,7,'producer','producer',NULL),(112818,799886,8,'producer','producer',NULL),(112818,730321,9,'composer',NULL,NULL),(112819,384,10,'composer',NULL,NULL),(112819,5478,1,'actor',NULL,'[\"Anthony Curtis\"]'),(112819,202966,2,'actor',NULL,'[\"Kirby\"]'),(112819,676,3,'actor',NULL,'[\"Skip\"]'),(112819,135585,4,'actor',NULL,'[\"Jose\"]'),(112819,400436,5,'director',NULL,NULL),(112819,400441,6,'director',NULL,NULL),(112819,114285,7,'writer','story',NULL),(112819,1088323,8,'writer','story \"Specialist No.4 Haywood T. \'The Kid\' Kirkland\"',NULL),(112819,1428229,9,'producer','producer',NULL),(112851,104,1,'actor',NULL,'[\"El Mariachi\"]'),(112851,161,2,'actress',NULL,'[\"Carolina\"]'),(112851,21835,3,'actor',NULL,'[\"Bucho\"]'),(112851,1507,4,'actor',NULL,'[\"Short Bartender\"]'),(112851,1675,5,'director',NULL,NULL),(112851,96115,6,'producer','producer',NULL),(112851,521233,7,'composer',NULL,NULL),(112851,622897,8,'cinematographer','director of photography',NULL),(112851,600044,9,'production_designer',NULL,NULL),(112857,5714,10,'cinematographer','director of photography',NULL),(112857,243,1,'actor',NULL,'[\"Easy Rawlins\"]'),(112857,1744,2,'actor',NULL,'[\"Dewitt Albright\"]'),(112857,884,3,'actress',NULL,'[\"Daphne Monet\"]'),(112857,332,4,'actor',NULL,'[\"Mouse Alexander\"]'),(112857,2083,5,'director',NULL,NULL),(112857,608859,6,'writer','book',NULL),(112857,64106,7,'producer','producer',NULL),(112857,324556,8,'producer','producer',NULL),(112857,930,9,'composer',NULL,NULL),(112864,579977,10,'cinematographer','director of photography',NULL),(112864,246,1,'actor',NULL,'[\"John McClane\"]'),(112864,460,2,'actor',NULL,'[\"Simon\"]'),(112864,168,3,'actor',NULL,'[\"Zeus\"]'),(112864,1295,4,'actor',NULL,'[\"Joe Lambert\"]'),(112864,1532,5,'director',NULL,NULL),(112864,378144,6,'writer','written by',NULL),(112864,861636,7,'writer','certain original characters by',NULL),(112864,846333,8,'producer','producer',NULL),(112864,4383,9,'composer',NULL,NULL),(112870,802168,10,'cinematographer',NULL,NULL),(112870,451321,1,'actor',NULL,'[\"Raj Malhotra\"]'),(112870,4418,2,'actress',NULL,'[\"Simran Singh\"]'),(112870,700869,3,'actor',NULL,'[\"Chaudhry Baldev Singh\"]'),(112870,416077,4,'actress',NULL,'[\"Lajwanti \'Lajjo\' Singh\"]'),(112870,159147,5,'director',NULL,NULL),(112870,796503,6,'writer','dialogue',NULL),(112870,7181,7,'producer','producer',NULL),(112870,1269729,8,'composer',NULL,NULL),(112870,1269730,9,'composer',NULL,NULL),(112896,918891,10,'editor',NULL,NULL),(112896,558,1,'actor',NULL,'[\"Dracula\"]'),(112896,316,2,'actor',NULL,'[\"Professor Van Helsing\"]'),(112896,1493,3,'actor',NULL,'[\"Renfield\"]'),(112896,1836,4,'actor',NULL,'[\"Harker\"]'),(112896,209918,5,'writer','screenplay',NULL),(112896,352229,6,'writer','screenplay',NULL),(112896,831290,7,'writer','characters',NULL),(112896,6186,8,'composer',NULL,NULL),(112896,642672,9,'cinematographer','director of photography',NULL),(112913,151858,10,'editor',NULL,NULL),(112913,481709,1,'actor',NULL,'[\"Wong Chi-Ming\",\"Killer\"]'),(112913,718348,2,'actress',NULL,'[\"The Killer\'s Agent\"]'),(112913,437580,3,'actor',NULL,'[\"He Zhiwu\"]'),(112913,947777,4,'actress',NULL,'[\"Charlie\",\"Cherry\"]'),(112913,939182,5,'director',NULL,NULL),(112913,311508,6,'producer','producer',NULL),(112913,150894,7,'composer',NULL,NULL),(112913,306473,8,'composer',NULL,NULL),(112913,236313,9,'cinematographer',NULL,NULL),(112922,29962,1,'actor',NULL,'[\"Cura\"]'),(112922,211089,2,'actor',NULL,'[\"Cavan\"]'),(112922,782213,3,'actor',NULL,'[\"José María\"]'),(112922,701715,4,'actress',NULL,'[\"Rosario\"]'),(112922,407067,5,'director',NULL,NULL),(112922,346277,6,'writer','screenplay',NULL),(112922,61474,7,'composer',NULL,NULL),(112922,554871,8,'cinematographer',NULL,NULL),(112922,284765,9,'editor',NULL,NULL),(112950,724843,10,'producer','producer',NULL),(112950,1439,1,'actor',NULL,'[\"Joe Reaves\"]'),(112950,529,2,'actress',NULL,'[\"Jane\"]'),(112950,1028,3,'actor',NULL,'[\"Rex Manning\"]'),(112950,168262,4,'actor',NULL,'[\"Lucas\"]'),(112950,610496,5,'director',NULL,NULL),(112950,374084,6,'writer','written by',NULL),(112950,525059,7,'producer','producer',NULL),(112950,586969,8,'producer','producer',NULL),(112950,622296,9,'producer','producer',NULL),(112966,552150,10,'editor',NULL,NULL),(112966,424,1,'actor',NULL,'[\"Anson\"]'),(112966,1216,2,'actress',NULL,'[\"Betty\"]'),(112966,538,3,'actor',NULL,'[\"Morgan the Goat\"]'),(112966,573862,4,'actor',NULL,'[\"Garrad\"]'),(112966,3355,5,'director',NULL,NULL),(112966,598036,6,'writer','story',NULL),(112966,193501,7,'producer','producer',NULL),(112966,6059,8,'composer',NULL,NULL),(112966,493645,9,'cinematographer','director of photography',NULL),(113071,25,10,'composer',NULL,NULL),(113071,125,1,'actor',NULL,'[\"King Arthur\"]'),(113071,152,2,'actor',NULL,'[\"Lancelot\"]'),(113071,566,3,'actress',NULL,'[\"Guinevere\"]'),(113071,2027,4,'actor',NULL,'[\"Prince Malagant\"]'),(113071,958387,5,'director',NULL,NULL),(113071,131661,6,'writer','story',NULL),(113071,395924,7,'writer','story',NULL),(113071,629933,8,'writer','story',NULL),(113071,523324,9,'producer','producer',NULL),(113083,5790,10,'cinematographer',NULL,NULL),(113083,4650,1,'actress',NULL,'[\"Leocadia Macías\",\"Amanda Gris\"]'),(113083,248364,2,'actor',NULL,'[\"Ángel\"]'),(113083,255979,3,'actress',NULL,'[\"Betty\"]'),(113083,658041,4,'actress',NULL,'[\"Rosa\"]'),(113083,264,5,'director',NULL,NULL),(113083,662213,6,'writer','short story \"The lovely leave\"',NULL),(113083,306088,7,'producer','producer',NULL),(113083,407076,8,'composer',NULL,NULL),(113083,5649,9,'cinematographer',NULL,NULL),(113101,4744,10,'producer','producer',NULL),(113101,619,1,'actor',NULL,'[\"Ted the Bellhop\"]'),(113101,104,2,'actor',NULL,'[\"Man (segment \\\"The Misbehavers\\\")\"]'),(113101,205423,3,'actress',NULL,'[\"Jezebel (segment \\\"The Missing Ingredient\\\")\"]'),(113101,4866,4,'actress',NULL,'[\"Diana (segment \\\"The Missing Ingredient\\\")\"]'),(113101,25978,5,'director',NULL,NULL),(113101,734319,6,'director',NULL,NULL),(113101,1675,7,'director',NULL,NULL),(113101,233,8,'director',NULL,NULL),(113101,5062,9,'director',NULL,NULL),(113114,506681,10,'producer','producer',NULL),(113114,725284,1,'actor',NULL,'[\"Jesse\"]'),(113114,514,2,'actor',NULL,'[\"Glenn\"]'),(113114,135584,3,'actor',NULL,'[\"Elvis\"]'),(113114,770788,4,'actress',NULL,'[\"Nadine\"]'),(113114,514546,5,'director',NULL,NULL),(113114,418321,6,'writer','written by',NULL),(113114,88097,7,'writer','written by',NULL),(113114,560469,8,'writer','written by',NULL),(113114,907929,9,'writer','based on characters created by',NULL),(113117,6133,10,'composer',NULL,NULL),(113117,212,1,'actress',NULL,'[\"Kate\"]'),(113117,177,2,'actor',NULL,'[\"Luc Teyssier\"]'),(113117,459,3,'actor',NULL,'[\"Charlie\"]'),(113117,606,4,'actor',NULL,'[\"Inspector Jean-Paul Cardon\"]'),(113117,1410,5,'director',NULL,NULL),(113117,111845,6,'writer','written by',NULL),(113117,79677,7,'producer','producer',NULL),(113117,271479,8,'producer','producer',NULL),(113117,301592,9,'producer','producer',NULL),(113118,68684,10,'production_designer',NULL,NULL),(113118,1084,1,'actor',NULL,'[\"Craig Jones\"]'),(113118,676,2,'actor',NULL,'[\"Smokey\"]'),(113118,505,3,'actress',NULL,'[\"Debbie\"]'),(113118,1474,4,'actor',NULL,'[\"Deebo\"]'),(113118,336620,5,'director',NULL,NULL),(113118,690770,6,'writer','written by',NULL),(113118,152788,7,'producer','producer',NULL),(113118,6685,8,'cinematographer',NULL,NULL),(113118,141713,9,'editor',NULL,NULL),(113188,6193,10,'composer',NULL,NULL),(113188,207,1,'actress',NULL,'[\"Beth Easton\"]'),(113188,1043,2,'actress',NULL,'[\"Jody Salerno\"]'),(113188,237164,3,'actress',NULL,'[\"Kate Easton\"]'),(113188,450116,4,'actor',NULL,'[\"Matt Hollinger\"]'),(113188,229914,5,'director',NULL,NULL),(113188,322045,6,'writer','written by',NULL),(113188,106840,7,'producer','producer',NULL),(113188,106841,8,'producer','producer',NULL),(113188,223383,9,'producer','producer',NULL),(113189,110483,10,'producer','producer',NULL),(113189,112,1,'actor',NULL,'[\"James Bond\"]'),(113189,293,2,'actor',NULL,'[\"Alec Trevelyan\"]'),(113189,1713,3,'actress',NULL,'[\"Natalya Simonova\"]'),(113189,463,4,'actress',NULL,'[\"Xenia Onatopp\"]'),(113189,132709,5,'director',NULL,NULL),(113189,1220,6,'writer','characters',NULL),(113189,289833,7,'writer','story',NULL),(113189,128997,8,'writer','screenplay',NULL),(113189,270761,9,'writer','screenplay',NULL),(113198,233233,10,'writer','additional written material',NULL),(113198,267724,1,'actor',NULL,'[\"Goofy\"]'),(113198,5189,2,'actor',NULL,'[\"Max Goof\"]'),(113198,191906,3,'actor',NULL,'[\"Pete\"]'),(113198,5192,4,'actress',NULL,'[\"Roxanne\"]'),(113198,510674,5,'director',NULL,NULL),(113198,536440,6,'writer','story by',NULL),(113198,558533,7,'writer','screenplay by',NULL),(113198,683724,8,'writer','screenplay by',NULL),(113198,35664,9,'writer','additional written material',NULL),(113221,1005857,10,'production_designer',NULL,NULL),(113221,944687,1,'actor',NULL,'[\"Rob\"]'),(113221,151257,2,'actor',NULL,'[\"Steve\"]'),(113221,871737,3,'actor',NULL,'[\"Grim\"]'),(113221,280569,4,'actor',NULL,'[\"Ken\"]'),(113221,560135,5,'director',NULL,NULL),(113221,560014,6,'producer','producer',NULL),(113221,855098,7,'composer',NULL,NULL),(113221,873833,8,'cinematographer',NULL,NULL),(113221,560142,9,'editor',NULL,NULL),(113228,5714,10,'cinematographer','director of photography',NULL),(113228,527,1,'actor',NULL,'[\"Max Goldman\"]'),(113228,493,2,'actor',NULL,'[\"John Gustafson\"]'),(113228,268,3,'actress',NULL,'[\"Ariel Gustafson\"]'),(113228,47,4,'actress',NULL,'[\"Maria Sophia Coletta Ragetti\"]'),(113228,222043,5,'director',NULL,NULL),(113228,425756,6,'writer','characters',NULL),(113228,75828,7,'producer','producer',NULL),(113228,204862,8,'producer','producer',NULL),(113228,6293,9,'composer',NULL,NULL),(113243,695460,10,'composer',NULL,NULL),(113243,1538,1,'actor',NULL,'[\"Dade\"]'),(113243,1401,2,'actress',NULL,'[\"Kate\"]'),(113243,103038,3,'actor',NULL,'[\"Joey\"]'),(113243,498,4,'actor',NULL,'[\"Cereal\"]'),(113243,812200,5,'director',NULL,NULL),(113243,604360,6,'writer','written by',NULL),(113243,679017,7,'producer','producer',NULL),(113243,3515,8,'producer','producer',NULL),(113243,5972,9,'composer',NULL,NULL),(113247,690720,10,'production_designer',NULL,NULL),(113247,1993,1,'actor',NULL,'[\"Vinz\"]'),(113247,468003,2,'actor',NULL,'[\"Hubert\"]'),(113247,846548,3,'actor',NULL,'[\"Saïd\"]'),(113247,315760,4,'actor',NULL,'[\"Abdel\"]'),(113247,440913,5,'director',NULL,NULL),(113247,744384,6,'producer','producer',NULL),(113247,1125169,7,'composer',NULL,NULL),(113247,44545,8,'cinematographer',NULL,NULL),(113247,829054,9,'editor',NULL,NULL),(113277,325549,10,'editor',NULL,NULL),(113277,199,1,'actor',NULL,'[\"Lt. Vincent Hanna\"]'),(113277,134,2,'actor',NULL,'[\"Neil McCauley\"]'),(113277,174,3,'actor',NULL,'[\"Chris Shiherlis\"]'),(113277,685,4,'actor',NULL,'[\"Nate\"]'),(113277,520,5,'director',NULL,NULL),(113277,513165,6,'producer','producer',NULL),(113277,6106,7,'composer',NULL,NULL),(113277,5883,8,'cinematographer','director of photography',NULL),(113277,117779,9,'editor',NULL,NULL),(113305,122740,10,'production_designer',NULL,NULL),(113305,4898,1,'actor',NULL,'[\"Malik Williams\"]'),(113305,1785,2,'actress',NULL,'[\"Kristen Connor\"]'),(113305,1650,3,'actor',NULL,'[\"Remy\"]'),(113305,124,4,'actress',NULL,'[\"Taryn\"]'),(113305,5436,5,'director',NULL,NULL),(113305,355983,6,'producer','producer',NULL),(113305,6010,7,'composer',NULL,NULL),(113305,172818,8,'cinematographer','director of photography',NULL),(113305,134164,9,'editor',NULL,NULL),(113321,5759,10,'cinematographer','director of photography',NULL),(113321,456,1,'actress',NULL,'[\"Claudia Larson\"]'),(113321,843,2,'actress',NULL,'[\"Adele Larson\"]'),(113321,375,3,'actor',NULL,'[\"Tommy Larson\"]'),(113321,1164,4,'actor',NULL,'[\"Henry Larson\"]'),(113321,149,5,'director',NULL,NULL),(113321,705331,6,'writer','short story',NULL),(113321,725379,7,'writer','screenplay',NULL),(113321,707475,8,'producer','producer',NULL),(113321,6142,9,'composer',NULL,NULL),(113326,910996,10,'composer',NULL,NULL),(113326,329,1,'actor',NULL,'[\"Keung\"]'),(113326,611315,2,'actress',NULL,'[\"Elaine\"]'),(113326,948123,3,'actress',NULL,'[\"Nancy\"]'),(113326,876603,4,'actor',NULL,'[\"Uncle Bill\"]'),(113326,867262,5,'director',NULL,NULL),(113326,849282,6,'writer','written by',NULL),(113326,530853,7,'writer','written by',NULL),(113326,876602,8,'producer','producer',NULL),(113326,6254,9,'composer',NULL,NULL),(113347,2353,10,'composer',NULL,NULL),(113347,213,1,'actress',NULL,'[\"Finn\"]'),(113347,995,2,'actress',NULL,'[\"Hy\"]'),(113347,843,3,'actress',NULL,'[\"Glady Joe\"]'),(113347,185644,4,'actress',NULL,'[\"Young Finn\"]'),(113347,602104,5,'director',NULL,NULL),(113347,653307,6,'writer','novel',NULL),(113347,26862,7,'writer','screenplay',NULL),(113347,683579,8,'producer','producer',NULL),(113347,762590,9,'producer','producer',NULL),(113362,5636,10,'cinematographer',NULL,NULL),(113362,553648,1,'actor',NULL,'[\"Angelo Pardi\"]'),(113362,300,2,'actress',NULL,'[\"Pauline de Théus\"]'),(113362,34079,3,'actor',NULL,'[\"Monsieur Peyrolle\"]'),(113362,167388,4,'actor',NULL,'[\"The Doctor\"]'),(113362,710919,5,'director',NULL,NULL),(113362,320274,6,'writer','novel',NULL),(113362,173953,7,'writer','written by',NULL),(113362,140643,8,'writer','written by',NULL),(113362,6223,9,'composer',NULL,NULL),(113409,1836376,10,'editor',NULL,NULL),(113409,554,1,'actor',NULL,'[\"John Trent\"]'),(113409,1638,2,'actor',NULL,'[\"Sutter Cane\"]'),(113409,138388,3,'actress',NULL,'[\"Linda Styles\"]'),(113409,1831,4,'actor',NULL,'[\"Dr. Wrenn\"]'),(113409,118,5,'director',NULL,NULL),(113409,6894,6,'writer','written by',NULL),(113409,455253,7,'producer','producer',NULL),(113409,485788,8,'composer',NULL,NULL),(113409,452123,9,'cinematographer','director of photography',NULL),(113416,333638,10,'editor',NULL,NULL),(113416,391274,1,'actress',NULL,'[\"Randy Dean\"]'),(113416,662519,2,'actress',NULL,'[\"Evie Roy\"]'),(113416,601548,3,'actress',NULL,'[\"Wendy\"]'),(113416,821311,4,'actress',NULL,'[\"Rebecca Dean\"]'),(113416,535940,5,'director',NULL,NULL),(113416,355502,6,'producer','producer',NULL),(113416,198696,7,'composer',NULL,NULL),(113416,12092085,8,'cinematographer',NULL,NULL),(113416,717145,9,'cinematographer',NULL,NULL),(113442,958666,10,'cinematographer','director of photography',NULL),(113442,263,1,'actress',NULL,'[\"Diane Barrows\"]'),(113442,430,2,'actor',NULL,'[\"Roger Callaway\"]'),(113442,1581,3,'actress',NULL,'[\"Amanda Lemmon\",\"Alyssa Callaway\"]'),(113442,1580,4,'actress',NULL,'[\"Alyssa Callaway\",\"Amanda Lemmon\"]'),(113442,855035,5,'director',NULL,NULL),(113442,204456,6,'writer','written by',NULL),(113442,189979,7,'producer','producer',NULL),(113442,650561,8,'producer','producer',NULL),(113442,285232,9,'composer',NULL,NULL),(113492,211823,10,'writer','screenplay',NULL),(113492,230,1,'actor',NULL,'[\"Judge Dredd\"]'),(113492,800,2,'actor',NULL,'[\"Rico\"]'),(113492,1705,3,'actor',NULL,'[\"Fergie\"]'),(113492,1638,4,'actor',NULL,'[\"Judge Griffin\"]'),(113492,134176,5,'director',NULL,NULL),(113492,905957,6,'writer','characters',NULL),(113492,264338,7,'writer','characters',NULL),(113492,6894,8,'writer','story',NULL),(113492,936537,9,'writer','story',NULL),(113497,472256,10,'producer','producer',NULL),(113497,245,1,'actor',NULL,'[\"Alan Parrish\"]'),(113497,379,2,'actress',NULL,'[\"Judy Shepherd\"]'),(113497,1372,3,'actress',NULL,'[\"Sarah Whittle\"]'),(113497,404993,4,'actor',NULL,'[\"Van Pelt\",\"Sam Parrish\"]'),(113497,2653,5,'director',NULL,NULL),(113497,378144,6,'writer','screenplay by',NULL),(113497,852430,7,'writer','screenplay by',NULL),(113497,833164,8,'writer','screenplay by',NULL),(113497,885575,9,'writer','screen story by',NULL),(113540,4090,10,'cinematographer','director of photography',NULL),(113540,280559,1,'actor',NULL,'[\"Telly\"]'),(113540,682399,2,'actor',NULL,'[\"Casper\"]'),(113540,1721,3,'actress',NULL,'[\"Jennie\"]'),(113540,1344991,4,'actress',NULL,'[\"Girl #1\"]'),(113540,164187,5,'director',NULL,NULL),(113540,5101,6,'writer','written by',NULL),(113540,940531,7,'producer','producer',NULL),(113540,55261,8,'composer',NULL,NULL),(113540,204863,9,'composer',NULL,NULL),(113568,559526,10,'producer','producer',NULL),(113568,848968,1,'actress',NULL,'[\"Kusanagi Motoko\"]'),(113568,443509,2,'actor',NULL,'[\"Ningyô tsukai\"]'),(113568,960033,3,'actor',NULL,'[\"Batô\"]'),(113568,945290,4,'actor',NULL,'[\"Togusa\"]'),(113568,651900,5,'director',NULL,NULL),(113568,794385,6,'writer','based on the manga by',NULL),(113568,411872,7,'writer','screenplay',NULL),(113568,411070,8,'producer','producer',NULL),(113568,412669,9,'producer','producer',NULL),(113627,808780,10,'editor',NULL,NULL),(113627,115,1,'actor',NULL,'[\"Ben Sanderson\"]'),(113627,223,2,'actress',NULL,'[\"Sera\"]'),(113627,1696,3,'actor',NULL,'[\"Yuri\"]'),(113627,507659,4,'actor',NULL,'[\"Peter\"]'),(113627,1214,5,'director',NULL,NULL),(113627,3840714,6,'writer','based upon the novel by',NULL),(113627,147416,7,'producer','producer',NULL),(113627,829176,8,'producer','producer',NULL),(113627,2336,9,'cinematographer','director of photography',NULL),(113649,631308,10,'composer',NULL,NULL),(113649,6702,1,'actress',NULL,'[\"Pilar\"]'),(113649,721,2,'actress',NULL,'[\"Floren\"]'),(113649,317725,3,'actress',NULL,'[\"María\"]'),(113649,32042,4,'actress',NULL,'[\"Aura\"]'),(113649,33005,5,'director',NULL,NULL),(113649,345409,6,'writer','story',NULL),(113649,345549,7,'writer','story',NULL),(113649,704911,8,'writer',NULL,NULL),(113649,351006,9,'producer','executive producer',NULL),(113670,236462,10,'composer',NULL,NULL),(113670,560093,1,'actress',NULL,'[\"Sara Crewe\"]'),(113670,111376,2,'actress',NULL,'[\"Miss Minchin\"]'),(113670,192377,3,'actor',NULL,'[\"Capt. Crewe\",\"Prince Rama\"]'),(113670,5404,4,'actress',NULL,'[\"Amelia Minchin\"]'),(113670,190859,5,'director',NULL,NULL),(113670,122364,6,'writer','novel',NULL),(113670,481418,7,'writer','screenplay',NULL),(113670,151358,8,'writer','screenplay',NULL),(113670,425741,9,'producer','producer',NULL),(113725,619919,10,'cinematographer',NULL,NULL),(113725,261968,1,'actress',NULL,'[\"Yumiko\"]'),(113725,619822,2,'actor',NULL,'[\"Tamio\"]'),(113725,38355,3,'actor',NULL,'[\"Ikuo\"]'),(113725,440581,4,'actor',NULL,'[\"Yuichi\"]'),(113725,466153,5,'director',NULL,NULL),(113725,594429,6,'writer','novel',NULL),(113725,644720,7,'writer','screenplay',NULL),(113725,333132,8,'producer','producer',NULL),(113725,155328,9,'composer',NULL,NULL),(113737,777190,10,'composer',NULL,NULL),(113737,1319,1,'actor',NULL,'[\"Jack Black\"]'),(113737,468772,2,'actress',NULL,'[\"Dr. Wanda Bell\"]'),(113737,5045,3,'actor',NULL,'[\"Joshua Black\"]'),(113737,1908009,4,'actress',NULL,'[\"Ashley Black\"]'),(113737,829037,5,'director',NULL,NULL),(113737,557313,6,'writer','screenplay',NULL),(113737,242210,7,'writer','story',NULL),(113737,640438,8,'producer','producer',NULL),(113737,829070,9,'producer','producer',NULL),(113749,3140,10,'cinematographer','director of photography',NULL),(113749,1147,1,'actress',NULL,'[\"Rene\"]'),(113749,518718,2,'actor',NULL,'[\"TS Quint\"]'),(113749,5134,3,'actor',NULL,'[\"Brodie\"]'),(113749,1231,4,'actress',NULL,'[\"Brandi\"]'),(113749,3620,5,'director',NULL,NULL),(113749,199733,6,'producer','producer',NULL),(113749,413208,7,'producer','producer',NULL),(113749,608714,8,'producer','producer',NULL),(113749,627673,9,'composer',NULL,NULL),(113820,6251,10,'composer',NULL,NULL),(113820,39074,1,'actress',NULL,'[\"Aisha\",\"Yellow Ranger\"]'),(113820,97765,2,'actor',NULL,'[\"Adam\",\"Black Ranger\"]'),(113820,136399,3,'actor',NULL,'[\"Rocky\",\"Red Ranger\"]'),(113820,290969,4,'actor',NULL,'[\"Tommy\",\"White Ranger\"]'),(113820,818465,5,'director',NULL,NULL),(113820,436960,6,'writer','story',NULL),(113820,647592,7,'writer','story',NULL),(113820,536805,8,'producer','executive producer',NULL),(113820,865297,9,'producer','producer',NULL),(113824,1566098,10,'producer','producer',NULL),(113824,393365,1,'actress',NULL,'[\"Shizuku Tsukishima\"]'),(113824,1534063,2,'actor',NULL,'[\"Seiji Amasawa\"]'),(113824,846181,3,'actor',NULL,'[\"Seiya Tsukishima\"]'),(113824,614026,4,'actress',NULL,'[\"Asako Tsukishima\"]'),(113824,464911,5,'director',NULL,NULL),(113824,594503,6,'writer','screenplay',NULL),(113824,383707,7,'writer','comic',NULL),(113824,1248357,8,'writer','screenplay: English version',NULL),(113824,1248358,9,'writer','screenplay: English version',NULL),(113855,3392,10,'composer',NULL,NULL),(113855,483,1,'actor',NULL,'[\"Lord Raiden\"]'),(113855,795225,2,'actor',NULL,'[\"Liu Kang\"]'),(113855,798,3,'actor',NULL,'[\"Johnny Cage\"]'),(113855,846480,4,'actor',NULL,'[\"Shang Tsung\"]'),(113855,27271,5,'director',NULL,NULL),(113855,95460,6,'writer','video games',NULL),(113855,864880,7,'writer','video games',NULL),(113855,238256,8,'writer','written by',NULL),(113855,440415,9,'producer','producer',NULL),(113862,4383,10,'composer',NULL,NULL),(113862,377,1,'actor',NULL,'[\"Glenn Holland\"]'),(113862,444,2,'actress',NULL,'[\"Iris Holland\"]'),(113862,858988,3,'actor',NULL,'[\"Bill Meister\"]'),(113862,1156,4,'actress',NULL,'[\"Principal Jacobs\"]'),(113862,378893,5,'director',NULL,NULL),(113862,242059,6,'writer','written by',NULL),(113862,181202,7,'producer','producer',NULL),(113862,276059,8,'producer','producer',NULL),(113862,634445,9,'producer','producer',NULL),(113918,721,1,'actress',NULL,'[\"Gloria\"]'),(113918,54224,2,'actress',NULL,'[\"Doña Julia\"]'),(113918,527002,3,'actor',NULL,'[\"Eduardo\"]'),(113918,17358,4,'actor',NULL,'[\"Juan\"]'),(113918,246503,5,'director',NULL,NULL),(113918,5970,6,'composer',NULL,NULL),(113918,271694,7,'cinematographer',NULL,NULL),(113918,757814,8,'editor',NULL,NULL),(113918,273414,9,'production_designer',NULL,NULL),(113957,5726,10,'cinematographer','director of photography',NULL),(113957,113,1,'actress',NULL,'[\"Angela Bennett\"]'),(113957,562,2,'actor',NULL,'[\"Jack Devlin\"]'),(113957,588222,3,'actor',NULL,'[\"Dr. Alan Champion\"]'),(113957,832,4,'actress',NULL,'[\"Mrs. Bennett\"]'),(113957,5563,5,'director',NULL,NULL),(113957,104335,6,'writer','written by',NULL),(113957,274905,7,'writer','written by',NULL),(113957,184620,8,'producer','producer',NULL),(113957,6142,9,'composer',NULL,NULL),(113972,830615,10,'editor',NULL,NULL),(113972,136,1,'actor',NULL,'[\"Gene Watson\"]'),(113972,686,2,'actor',NULL,'[\"Mr. Smith\"]'),(113972,153733,3,'actress',NULL,'[\"Lynn Watson\"]'),(113972,1165,4,'actor',NULL,'[\"Huey\"]'),(113972,824,5,'director',NULL,NULL),(113972,242059,6,'writer','written by',NULL),(113972,6265,7,'composer',NULL,NULL),(113972,906096,8,'cinematographer','director of photography',NULL),(113972,607359,9,'editor',NULL,NULL),(114011,131311,10,'editor',NULL,NULL),(114011,207,1,'actress',NULL,'[\"Roberta\"]'),(114011,193,2,'actress',NULL,'[\"Samantha\"]'),(114011,5280,3,'actress',NULL,'[\"Roberta\"]'),(114011,301,4,'actress',NULL,'[\"Teeny\"]'),(114011,322128,5,'director',NULL,NULL),(114011,454783,6,'writer','written by',NULL),(114011,865297,7,'producer','producer',NULL),(114011,6056,8,'composer',NULL,NULL),(114011,825336,9,'cinematographer','director of photography',NULL),(114057,424900,10,'cinematographer','director of photography',NULL),(114057,401,1,'actor',NULL,'[\"Othello\"]'),(114057,110,2,'actor',NULL,'[\"Iago\"]'),(114057,1393,3,'actress',NULL,'[\"Desdemona\"]'),(114057,662511,4,'actor',NULL,'[\"Cassio\"]'),(114057,662529,5,'director',NULL,NULL),(114057,636,6,'writer','play',NULL),(114057,57655,7,'producer','producer',NULL),(114057,736312,8,'producer','producer',NULL),(114057,596495,9,'composer',NULL,NULL),(114069,6133,10,'composer',NULL,NULL),(114069,163,1,'actor',NULL,'[\"Sam Daniels\"]'),(114069,623,2,'actress',NULL,'[\"Robby Keough\"]'),(114069,151,3,'actor',NULL,'[\"General Billy Ford\"]'),(114069,228,4,'actor',NULL,'[\"Casey Schuler\"]'),(114069,583,5,'director',NULL,NULL),(114069,245435,6,'writer','written by',NULL),(114069,690798,7,'writer','written by',NULL),(114069,441713,8,'producer','producer',NULL),(114069,465745,9,'producer','producer',NULL),(114095,806252,10,'cinematographer',NULL,NULL),(114095,205,1,'actress',NULL,'[\"Mary\"]'),(114095,870168,2,'actor',NULL,'[\"Mustafa\"]'),(114095,1338532,3,'actress',NULL,'[\"The \'Lady\' Bunny\"]'),(114095,659397,4,'actor',NULL,'[\"Policeman\"]'),(114095,902939,5,'director',NULL,NULL),(114095,83326,6,'writer','story',NULL),(114095,300760,7,'writer','story',NULL),(114095,467978,8,'producer','producer',NULL),(114095,762863,9,'composer',NULL,NULL),(114108,915053,10,'composer',NULL,NULL),(114108,1737,1,'actor',NULL,'[\"Hubie\"]'),(114108,902,2,'actor',NULL,'[\"Rocko\"]'),(114108,325390,3,'actress',NULL,'[\"Marina\"]'),(114108,347,4,'actor',NULL,'[\"Drake\"]'),(114108,89940,5,'director',NULL,NULL),(114108,325776,6,'director',NULL,NULL),(114108,466216,7,'writer','screenplay by',NULL),(114108,925906,8,'writer','screenplay by',NULL),(114108,92693,9,'producer','producer',NULL),(114117,198459,10,'cinematographer',NULL,NULL),(114117,740500,1,'actress',NULL,'[\"Anne Elliot\"]'),(114117,1354,2,'actor',NULL,'[\"Captain Wentworth\"]'),(114117,281453,3,'actress',NULL,'[\"Lady Russell\"]'),(114117,714874,4,'actor',NULL,'[\"Sir Walter Elliot\"]'),(114117,585011,5,'director',NULL,NULL),(114117,807,6,'writer','novel',NULL),(114117,213116,7,'writer','screenplay',NULL),(114117,277974,8,'producer','producer',NULL),(114117,760255,9,'composer',NULL,NULL),(114129,733763,10,'cinematographer',NULL,NULL),(114129,473802,1,'actress',NULL,'[\"Riyo\"]'),(114129,847425,2,'actor',NULL,'[\"Matsuji\"]'),(114129,846480,3,'actor',NULL,'[\"Kanzaki\"]'),(114129,674,4,'actress',NULL,'[\"Kana\"]'),(114129,368981,5,'director',NULL,NULL),(114129,368982,6,'writer','screenplay',NULL),(114129,548233,7,'writer','story',NULL),(114129,648786,8,'producer','producer',NULL),(114129,12206,9,'composer',NULL,NULL),(114148,443855,10,'writer','story',NULL),(114148,154,1,'actor',NULL,'[\"John Smith\"]'),(114148,1373,2,'actress',NULL,'[\"Grandmother Willow\"]'),(114148,288,3,'actor',NULL,'[\"Thomas\"]'),(114148,48589,4,'actor',NULL,'[\"Lon\"]'),(114148,300265,5,'director',NULL,NULL),(114148,325196,6,'director',NULL,NULL),(114148,82772,7,'writer','written by',NULL),(114148,335666,8,'writer','written by',NULL),(114148,493857,9,'writer','written by',NULL),(114151,575530,10,'cinematographer',NULL,NULL),(114151,192,1,'actress',NULL,'[\"Lily Leonetti\"]'),(114151,628,2,'actor',NULL,'[\"Gredin\"]'),(114151,75359,3,'actor',NULL,'[\"Donald Falk\"]'),(114151,873,4,'actress',NULL,'[\"Angela Falk\"]'),(114151,258424,5,'director',NULL,NULL),(114151,454573,6,'writer',NULL,NULL),(114151,78473,7,'producer','producer',NULL),(114151,6733,8,'producer','producer',NULL),(114151,930990,9,'composer',NULL,NULL),(114214,6293,10,'composer',NULL,NULL),(114214,232,1,'actress',NULL,'[\"Ellen\"]'),(114214,432,2,'actor',NULL,'[\"Herod\"]'),(114214,128,3,'actor',NULL,'[\"Cort\"]'),(114214,138,4,'actor',NULL,'[\"Kid\"]'),(114214,600,5,'director',NULL,NULL),(114214,601881,6,'writer','written by',NULL),(114214,232433,7,'producer','producer',NULL),(114214,548410,8,'producer','producer',NULL),(114214,788458,9,'producer','producer',NULL),(114287,5776,10,'cinematographer','director of photography',NULL),(114287,553,1,'actor',NULL,'[\"Rob Roy\"]'),(114287,1448,2,'actress',NULL,'[\"Mary\"]'),(114287,457,3,'actor',NULL,'[\"Montrose\"]'),(114287,619,4,'actor',NULL,'[\"Cunningham\"]'),(114287,1994,5,'director',NULL,NULL),(114287,788991,6,'writer','screenplay',NULL),(114287,112666,7,'producer','producer',NULL),(114287,413970,8,'producer','producer',NULL),(114287,1980,9,'composer',NULL,NULL),(114319,713128,10,'writer','screenplay',NULL),(114319,148,1,'actor',NULL,'[\"Linus Larrabee\"]'),(114319,566,2,'actress',NULL,'[\"Sabrina Fairchild\"]'),(114319,1427,3,'actor',NULL,'[\"David Larrabee\"]'),(114319,545408,4,'actress',NULL,'[\"Maude Larrabee\"]'),(114319,1628,5,'director',NULL,NULL),(114319,853138,6,'writer','play',NULL),(114319,697,7,'writer','earlier screenplay',NULL),(114319,499626,8,'writer','earlier screenplay',NULL),(114319,70660,9,'writer','screenplay',NULL),(114323,529071,10,'editor',NULL,NULL),(114323,194,1,'actress',NULL,'[\"Carol\"]'),(114323,75359,2,'actor',NULL,'[\"Greg\"]'),(114323,606487,3,'actor',NULL,'[\"Mover\"]'),(114323,121313,4,'actress',NULL,'[\"Aerobics Instructor\"]'),(114323,1331,5,'director',NULL,NULL),(114323,882927,6,'producer','producer',NULL),(114323,952388,7,'producer','producer',NULL),(114323,866927,8,'composer',NULL,NULL),(114323,626124,9,'cinematographer','director of photography',NULL),(114369,290358,10,'editor',NULL,NULL),(114369,151,1,'actor',NULL,'[\"Somerset\"]'),(114369,93,2,'actor',NULL,'[\"Mills\"]'),(114369,228,3,'actor',NULL,'[\"John Doe\"]'),(114369,1825,4,'actor',NULL,'[\"Dead Man at 1st Crime Scene\"]'),(114369,399,5,'director',NULL,NULL),(114369,138287,6,'producer','producer',NULL),(114369,465745,7,'producer','producer',NULL),(114369,6290,8,'composer',NULL,NULL),(114369,451787,9,'cinematographer','director of photography',NULL),(114388,820163,10,'editor',NULL,NULL),(114388,668,1,'actress',NULL,'[\"Elinor Dashwood\"]'),(114388,701,2,'actress',NULL,'[\"Marianne Dashwood\"]'),(114388,281424,3,'actor',NULL,'[\"John Dashwood\"]'),(114388,929489,4,'actor',NULL,'[\"Mr. Dashwood\"]'),(114388,487,5,'director',NULL,NULL),(114388,807,6,'writer','novel',NULL),(114388,233386,7,'producer','producer',NULL),(114388,236462,8,'composer',NULL,NULL),(114388,183533,9,'cinematographer','director of photography',NULL),(114395,746697,10,'editor',NULL,NULL),(114395,335,1,'actress',NULL,'[\"Col. Margarethe Cammermeyer\"]'),(114395,1114,2,'actress',NULL,'[\"Diane\"]'),(114395,747962,3,'actor',NULL,'[\"Far\"]'),(114395,538655,4,'actress',NULL,'[\"Mary Newcombe\"]'),(114395,88121,5,'director',NULL,NULL),(114395,189105,6,'writer','written by',NULL),(114395,381868,7,'producer','producer',NULL),(114395,6288,8,'composer',NULL,NULL),(114395,534215,9,'cinematographer','director of photography',NULL),(114436,5911,10,'cinematographer','director of photography',NULL),(114436,924,1,'actress',NULL,'[\"Nomi Malone\"]'),(114436,1492,2,'actor',NULL,'[\"Zack Carey\"]'),(114436,153,3,'actress',NULL,'[\"Cristal Connors\"]'),(114436,687625,4,'actor',NULL,'[\"James Smith\"]'),(114436,682,5,'director',NULL,NULL),(114436,390,6,'writer','written by',NULL),(114436,262622,7,'producer','producer',NULL),(114436,550728,8,'producer','producer',NULL),(114436,347465,9,'composer',NULL,NULL),(114508,119322,10,'editor',NULL,NULL),(114508,449,1,'actress',NULL,'[\"Sil\"]'),(114508,514,2,'actor',NULL,'[\"Preston Lennox\"]'),(114508,1426,3,'actor',NULL,'[\"Xavier Fitch\"]'),(114508,547,4,'actor',NULL,'[\"Dr. Stephen Arden\"]'),(114508,2044,5,'director',NULL,NULL),(114508,271022,6,'writer','written by',NULL),(114508,541548,7,'producer','producer',NULL),(114508,2366,8,'composer',NULL,NULL),(114508,5647,9,'cinematographer','director of photography',NULL),(114558,5772,10,'cinematographer',NULL,NULL),(114558,146,1,'actor',NULL,'[\"Lenny Nero\"]'),(114558,291,2,'actress',NULL,'[\"Lornette \'Mace\' Mason\"]'),(114558,496,3,'actress',NULL,'[\"Faith Justin\"]'),(114558,1744,4,'actor',NULL,'[\"Max Peltier\"]'),(114558,941,5,'director',NULL,NULL),(114558,116,6,'writer','story',NULL),(114558,168379,7,'writer','screenplay',NULL),(114558,415498,8,'producer','producer',NULL),(114558,6251,9,'composer',NULL,NULL),(114614,507669,10,'producer','producer',NULL),(114614,1614,1,'actress',NULL,'[\"Tank Girl\"]'),(114614,1384,2,'actor',NULL,'[\"T-Saint\"]'),(114614,915208,3,'actress',NULL,'[\"Jet Girl\"]'),(114614,367496,4,'actor',NULL,'[\"Sgt. Small\"]'),(114614,3080,5,'director',NULL,NULL),(114614,551875,6,'writer','comic strip',NULL),(114614,382114,7,'writer','comic strip',NULL),(114614,93328,8,'writer','written by',NULL),(114614,219720,9,'producer','producer',NULL),(114671,606682,10,'editor',NULL,NULL),(114671,1324,1,'actor',NULL,'[\"David Carr\"]'),(114671,665082,2,'actress',NULL,'[\"Blanca\"]'),(114671,93081,3,'actress',NULL,'[\"Maite\"]'),(114671,319680,4,'actor',NULL,'[\"Lawrence\"]'),(114671,516360,5,'director',NULL,NULL),(114671,20653,6,'writer','screenplay',NULL),(114671,639780,7,'producer','producer',NULL),(114671,6070,8,'composer',NULL,NULL),(114671,10096,9,'cinematographer','director of photography',NULL),(114682,597812,10,'editor',NULL,NULL),(114682,648,1,'actor',NULL,'[\"Noxeema\"]'),(114682,664,2,'actor',NULL,'[\"Vida\"]'),(114682,491,3,'actor',NULL,'[\"Chi-Chi\"]'),(114682,330,4,'actress',NULL,'[\"Carol Ann\"]'),(114682,452319,5,'director',NULL,NULL),(114682,63819,6,'writer','written by',NULL),(114682,113583,7,'producer','producer',NULL),(114682,6235,8,'composer',NULL,NULL),(114682,556965,9,'cinematographer',NULL,NULL),(114689,1033257,10,'producer','producer',NULL),(114689,383022,1,'actress',NULL,'[\"Buburina\"]'),(114689,386372,2,'actor',NULL,'[\"Toriyasu\"]'),(114689,412628,3,'actor',NULL,'[\"Do-Do\"]'),(114689,407372,4,'actress',NULL,'[\"Chu-Chu\"]'),(114689,620236,5,'director',NULL,NULL),(114689,464810,6,'writer',NULL,NULL),(114689,38401,7,'producer','producer',NULL),(114689,409279,8,'producer','producer',NULL),(114689,538592,9,'producer','producer',NULL),(114694,5755,10,'cinematographer','director of photography',NULL),(114694,394,1,'actor',NULL,'[\"Tommy\"]'),(114694,5450,2,'actor',NULL,'[\"Richard\"]'),(114694,1133,3,'actor',NULL,'[\"Big Tom\"]'),(114694,137,4,'actress',NULL,'[\"Beverly\"]'),(114694,781842,5,'director',NULL,NULL),(114694,877425,6,'writer','written by',NULL),(114694,877901,7,'writer','written by',NULL),(114694,584427,8,'producer','producer',NULL),(114694,628056,9,'composer',NULL,NULL),(114702,520641,10,'editor',NULL,NULL),(114702,138,1,'actor',NULL,'[\"Arthur Rimbaud\"]'),(114702,667,2,'actor',NULL,'[\"Paul Verlaine\"]'),(114702,1960,3,'actress',NULL,'[\"Mathilde Maute\"]'),(114702,86924,4,'actress',NULL,'[\"Isabelle Rimbaud\"]'),(114702,2140,5,'director',NULL,NULL),(114702,358960,6,'writer','screenplay',NULL),(114702,708919,7,'producer','producer',NULL),(114702,434222,8,'composer',NULL,NULL),(114702,2187,9,'cinematographer',NULL,NULL),(114709,169505,10,'writer','screenplay by',NULL),(114709,158,1,'actor',NULL,'[\"Woody\"]'),(114709,741,2,'actor',NULL,'[\"Buzz Lightyear\"]'),(114709,725543,3,'actor',NULL,'[\"Mr. Potato Head\"]'),(114709,1815,4,'actor',NULL,'[\"Slinky Dog\"]'),(114709,5124,5,'director',NULL,NULL),(114709,230032,6,'writer','original story by',NULL),(114709,4056,7,'writer','original story by',NULL),(114709,710020,8,'writer','original story by',NULL),(114709,923736,9,'writer','screenplay by',NULL),(114720,272471,10,'composer',NULL,NULL),(114720,911542,1,'actor',NULL,'[\"Earl Bassett\"]'),(114720,308651,2,'actor',NULL,'[\"Grady Hoover\"]'),(114720,1726,3,'actress',NULL,'[\"Kate \'White\' Reilly\"]'),(114720,343447,4,'actor',NULL,'[\"Burt Gummer\"]'),(114720,934093,5,'director',NULL,NULL),(114720,534681,6,'writer','characters',NULL),(114720,881038,7,'writer','characters',NULL),(114720,2211,8,'producer','producer',NULL),(114720,731443,9,'producer','producer',NULL),(114736,415445,10,'editor',NULL,NULL),(114736,224,1,'actress',NULL,'[\"Mary Giordano\"]'),(114736,1143,2,'actor',NULL,'[\"Tony Campbell\"]'),(114736,638056,3,'actor',NULL,'[\"Detective Jerry Guinn\"]'),(114736,100889,4,'actor',NULL,'[\"Earl Parkins\"]'),(114736,893895,5,'director',NULL,NULL),(114736,298900,6,'producer','producer',NULL),(114736,380898,7,'producer','producer',NULL),(114736,508048,8,'composer',NULL,NULL),(114736,820114,9,'cinematographer',NULL,NULL),(114746,118729,10,'composer','music composer',NULL),(114746,246,1,'actor',NULL,'[\"James Cole\"]'),(114746,656,2,'actress',NULL,'[\"Kathryn Railly\"]'),(114746,93,3,'actor',NULL,'[\"Jeffrey Goines\"]'),(114746,577828,4,'actor',NULL,'[\"Young Cole\"]'),(114746,416,5,'director',NULL,NULL),(114746,3408,6,'writer','inspired by the film \'La Jetée\' written by',NULL),(114746,672459,7,'writer','screenplay by',NULL),(114746,672466,8,'writer','screenplay by',NULL),(114746,746273,9,'producer','producer',NULL),(114787,459907,10,'production_designer',NULL,NULL),(114787,543547,1,'actor',NULL,'[\"Marko\",\"Actor playing Marko\"]'),(114787,728476,2,'actor',NULL,'[\"Crni (Blacky)\",\"Actor playing Blacky\"]'),(114787,427066,3,'actress',NULL,'[\"Natalija\",\"Actress playing Natalija\"]'),(114787,830371,4,'actor',NULL,'[\"Ivan\"]'),(114787,1437,5,'director',NULL,NULL),(114787,468169,6,'writer','story',NULL),(114787,5975,7,'composer',NULL,NULL),(114787,276803,8,'cinematographer',NULL,NULL),(114787,148395,9,'editor',NULL,NULL),(114814,191896,10,'production_designer',NULL,NULL),(114814,228,1,'actor',NULL,'[\"Verbal\"]'),(114814,321,2,'actor',NULL,'[\"Keaton\"]'),(114814,1590,3,'actor',NULL,'[\"Dave Kujan\"]'),(114814,286,4,'actor',NULL,'[\"McManus\"]'),(114814,1741,5,'director',NULL,NULL),(114814,3160,6,'writer','written by',NULL),(114814,568120,7,'producer','producer',NULL),(114814,653211,8,'composer',NULL,NULL),(114814,5875,9,'cinematographer','director of photography',NULL),(114852,385430,10,'writer','screenplay',NULL),(114852,1659,1,'actor',NULL,'[\"Dr. Alan Chaffee\"]'),(114852,263,2,'actress',NULL,'[\"Dr. Susan Verner\"]'),(114852,468957,3,'actress',NULL,'[\"Jill McGowan\"]'),(114852,1595,4,'actor',NULL,'[\"Frank McGowan\"]'),(114852,118,5,'director',NULL,NULL),(114852,943909,6,'writer','book \"The Midwich Cuckoos\"',NULL),(114852,798103,7,'writer',NULL,NULL),(114852,727211,8,'writer',NULL,NULL),(114852,455785,9,'writer',NULL,NULL),(114885,4892,10,'composer',NULL,NULL),(114885,1365,1,'actress',NULL,'[\"Savannah\"]'),(114885,291,2,'actress',NULL,'[\"Bernadine\"]'),(114885,222643,3,'actress',NULL,'[\"Gloria\"]'),(114885,5375,4,'actress',NULL,'[\"Robin\"]'),(114885,1845,5,'director',NULL,NULL),(114885,573334,6,'writer','novel',NULL),(114885,60103,7,'writer','screenplay',NULL),(114885,771834,8,'producer','producer',NULL),(114885,842470,9,'producer','producer',NULL),(114898,330379,10,'producer','producer',NULL),(114898,126,1,'actor',NULL,'[\"Mariner\"]'),(114898,675,2,'actress',NULL,'[\"Helen\"]'),(114898,454,3,'actor',NULL,'[\"Deacon\"]'),(114898,1499,4,'actress',NULL,'[\"Enola\"]'),(114898,721817,5,'director',NULL,NULL),(114898,705474,6,'writer','written by',NULL),(114898,878638,7,'writer','written by',NULL),(114898,204862,8,'producer','producer',NULL),(114898,330077,9,'producer','producer',NULL),(114906,525,1,'actress',NULL,'[\"Dawn Wiener\"]'),(114906,115402,2,'actress',NULL,'[\"Cookie\"]'),(114906,1592211,3,'actress',NULL,'[\"Lolita\"]'),(114906,896292,4,'actress',NULL,'[\"Cynthia\"]'),(114906,1754,5,'director',NULL,NULL),(114906,936608,6,'composer',NULL,NULL),(114906,238585,7,'cinematographer',NULL,NULL),(114906,654601,8,'editor',NULL,NULL),(114906,88769,9,'production_designer',NULL,NULL),(114916,232364,10,'production_designer',NULL,NULL),(114916,124481,1,'actress',NULL,'[\"Camille Baker\"]'),(114916,6692,2,'actress',NULL,'[\"Petra Soft\"]'),(114916,1089,3,'actor',NULL,'[\"Martin\"]'),(114916,288944,4,'actor',NULL,'[\"Reverend DeBoer\"]'),(114916,5390,5,'director',NULL,NULL),(114916,871009,6,'producer','producer',NULL),(114916,53427,7,'composer',NULL,NULL),(114916,462288,8,'cinematographer','director of photography',NULL),(114916,794156,9,'editor',NULL,NULL),(114924,6055,10,'composer',NULL,NULL),(114924,113,1,'actress',NULL,'[\"Lucy\"]'),(114924,597,2,'actor',NULL,'[\"Jack\"]'),(114924,1251,3,'actor',NULL,'[\"Peter\"]'),(114924,1967,4,'actor',NULL,'[\"Ox\"]'),(114924,5509,5,'director',NULL,NULL),(114924,838015,6,'writer','written by',NULL),(114924,495863,7,'writer','written by',NULL),(114924,83696,8,'producer','producer',NULL),(114924,5387,9,'producer','producer',NULL),(115133,408771,10,'actor',NULL,'[\"Weirdo-Kaj\"]'),(115133,231152,1,'actress',NULL,'[\"Charlotte Margrethe\",\"Charlotte Magrethe\"]'),(115133,385026,2,'actress',NULL,'[\"Charlot\"]'),(115133,654070,3,'actor',NULL,'[\"Pastor Zeem\"]'),(115133,159867,4,'actor',NULL,'[\"Thomas \'To\'\"]'),(115133,819825,5,'actor',NULL,'[\"Grev Birksted\"]'),(115133,471576,6,'actor',NULL,'[\"Poul Teddy\"]'),(115133,295740,7,'actor',NULL,'[\"Hans Jørgen Wilder\"]'),(115133,630746,8,'actor',NULL,'[\"Hr. Grå\"]'),(115133,448895,9,'actor',NULL,'[\"Orson\"]'),(115433,939,10,'cinematographer','director of photography',NULL),(115433,335,1,'actress',NULL,'[\"Cruella DeVil\"]'),(115433,1099,2,'actor',NULL,'[\"Roger\"]'),(115433,613,3,'actress',NULL,'[\"Anita\"]'),(115433,687506,4,'actress',NULL,'[\"Nanny\"]'),(115433,378893,5,'director',NULL,NULL),(115433,807977,6,'writer','novel \"The One Hundred and One Dalmations\"',NULL),(115433,455,7,'writer','screenplay',NULL),(115433,582338,8,'producer','producer',NULL),(115433,4383,9,'composer',NULL,NULL),(115438,588607,10,'editor',NULL,NULL),(115438,159,1,'actress',NULL,'[\"Becky Foxx\"]'),(115438,1099,2,'actor',NULL,'[\"Alvin Strayer\"]'),(115438,732,3,'actor',NULL,'[\"Dosmo Pizzo\"]'),(115438,234,4,'actress',NULL,'[\"Helga Svelgen\"]'),(115438,381273,5,'director',NULL,NULL),(115438,620720,6,'producer','producer',NULL),(115438,907002,7,'producer','producer',NULL),(115438,547579,8,'composer',NULL,NULL),(115438,5929,9,'cinematographer','director of photography',NULL),(115462,740766,10,'production_designer',NULL,NULL),(115462,260884,1,'actress',NULL,'[\"Glòria Marc\"]'),(115462,3030,2,'actress',NULL,'[\"Assumpta Roca\"]'),(115462,515440,3,'actress',NULL,'[\"Maria Caminal\"]'),(115462,690514,4,'actress',NULL,'[\"Estudiant\"]'),(115462,690532,5,'director',NULL,NULL),(115462,70932,6,'writer','play \'E.R.\'',NULL),(115462,143352,7,'composer',NULL,NULL),(115462,686385,8,'cinematographer',NULL,NULL),(115462,7609,9,'editor',NULL,NULL),(115485,11431312,10,'producer','producer',NULL),(115485,706,1,'actress',NULL,'[\"Ah Kam\"]'),(115485,5033,2,'actor',NULL,'[\"Chief Tung\"]'),(115485,13483791,3,'actor',NULL,'[\"Ah Long\"]'),(115485,388367,4,'actor',NULL,'[\"Copy\"]'),(115485,401176,5,'director',NULL,NULL),(115485,150977,6,'writer',NULL,NULL),(115485,151013,7,'writer',NULL,NULL),(115485,159494,8,'producer','producer',NULL),(115485,161020,9,'producer','producer',NULL),(115491,615780,10,'writer','based on the characters from \"Aladdin\" created by',NULL),(115491,918334,1,'actor',NULL,'[\"Aladdin\"]'),(115491,245,2,'actor',NULL,'[\"Genie\"]'),(115491,722636,3,'actor',NULL,'[\"Cassim\"]'),(115491,79353,4,'actor',NULL,'[\"Sultan\"]'),(115491,832309,5,'director',NULL,NULL),(115491,566407,6,'writer','screenplay by',NULL),(115491,774792,7,'writer','screenplay by',NULL),(115491,166256,8,'writer','based on the characters from \"Aladdin\" created by',NULL),(115491,254645,9,'writer','based on the characters from \"Aladdin\" created by',NULL),(115580,324907,10,'producer','producer',NULL),(115580,155,1,'actress',NULL,'[\"Laurel\"]'),(115580,1848,2,'actress',NULL,'[\"Sally\"]'),(115580,908919,3,'actor',NULL,'[\"Fallon\"]'),(115580,4857,4,'actor',NULL,'[\"Frank\"]'),(115580,677953,5,'director',NULL,NULL),(115580,697412,6,'writer','novel \"El Socio\"',NULL),(115580,140643,7,'writer','screenplay \"L\'Associé\"',NULL),(115580,301390,8,'writer','screenplay \"L\'Associé\"',NULL),(115580,857904,9,'writer','screenplay',NULL),(115591,543743,10,'editor',NULL,NULL),(115591,164,1,'actor',NULL,'[\"Ieuan Davies\"]'),(115591,680587,2,'actor',NULL,'[\"Prof. Alexander Blathwaite\"]'),(115591,123632,3,'actress',NULL,'[\"Helen Blathwaite\"]'),(115591,334438,4,'actor',NULL,'[\"Dr. Michael Lloyd\"]'),(115591,593483,5,'writer','screenplay',NULL),(115591,155009,6,'writer','play \"Dyadya Vanya\"',NULL),(115591,189248,7,'producer','producer',NULL),(115591,943921,8,'producer','producer',NULL),(115591,896485,9,'cinematographer',NULL,NULL),(115624,724700,10,'producer','producer',NULL),(115624,97,1,'actress',NULL,'[\"Barb Wire\"]'),(115624,8894,2,'actor',NULL,'[\"Patron\"]'),(115624,18234,3,'actress',NULL,'[\"Redhead\"]'),(115624,29025,4,'actor',NULL,'[\"Goon #2\"]'),(115624,389514,5,'director',NULL,NULL),(115624,912431,6,'writer','characters in comic',NULL),(115624,149669,7,'writer','story',NULL),(115624,679326,8,'writer','screenplay',NULL),(115624,610465,9,'producer','producer',NULL),(115632,652553,10,'producer','producer',NULL),(115632,942482,1,'actor',NULL,'[\"Jean Michel Basquiat\"]'),(115632,699,2,'actor',NULL,'[\"Rene Ricard\"]'),(115632,1125,3,'actor',NULL,'[\"Benny Dalmau\"]'),(115632,1231,4,'actress',NULL,'[\"Gina Cardinale\"]'),(115632,773603,5,'director',NULL,NULL),(115632,538107,6,'writer','story',NULL),(115632,100765,7,'writer','short story',NULL),(115632,1035537,8,'writer','story development',NULL),(115632,453091,9,'producer','producer',NULL),(115639,937800,10,'editor',NULL,NULL),(115639,369,1,'actor',NULL,'[\"Tommy \'Birdman\' Rowland\"]'),(115639,459,2,'actor',NULL,'[\"Willie Conway\"]'),(115639,1187,3,'actor',NULL,'[\"Michael \'Mo\' Morris\"]'),(115639,1272,4,'actress',NULL,'[\"Tracy Stover\"]'),(115639,1130,5,'director',NULL,NULL),(115639,3298,6,'writer','written by',NULL),(115639,940531,7,'producer','producer',NULL),(115639,347465,8,'composer',NULL,NULL),(115639,453981,9,'cinematographer','director of photography',NULL),(115640,3372,10,'cinematographer','director of photography',NULL),(115640,77551,1,'actor',NULL,'[\"Jamie Gangel\"]'),(115640,377905,2,'actress',NULL,'[\"Sandra Gangel\"]'),(115640,623673,3,'actor',NULL,'[\"Ste Pearce\"]'),(115640,256658,4,'actress',NULL,'[\"Leah Russell\"]'),(115640,531751,5,'director',NULL,NULL),(115640,1281893,6,'writer','written by',NULL),(115640,307821,7,'producer','producer',NULL),(115640,788673,8,'producer','producer',NULL),(115640,22903,9,'composer',NULL,NULL),(115641,855605,10,'producer','producer',NULL),(115641,431918,1,'actor',NULL,'[\"Beavis\",\"Butt-Head\",\"Tom Anderson\"]'),(115641,246,2,'actor',NULL,'[\"Muddy\"]'),(115641,193,3,'actress',NULL,'[\"Dallas\"]'),(115641,1458,4,'actress',NULL,'[\"Old Woman on Plane and Bus\"]'),(115641,221133,5,'director','segment director',NULL),(115641,1301264,6,'director','segment director',NULL),(115641,438394,7,'director',NULL,NULL),(115641,830294,8,'writer','written by',NULL),(115641,3219778,9,'producer','producer',NULL),(115650,785684,1,'actress',NULL,'[\"Mila\"]'),(115650,512071,2,'actor',NULL,'[\"Max\"]'),(115650,858022,3,'actor',NULL,'[\"Mesaje\"]'),(115650,850907,4,'actor',NULL,'[\"Mesaul\"]'),(115650,764963,5,'producer','producer',NULL),(115650,16139,6,'cinematographer',NULL,NULL),(115650,719265,7,'editor',NULL,NULL),(115650,291975,8,'production_designer',NULL,NULL),(115678,255440,10,'editor',NULL,NULL),(115678,1724,1,'actor',NULL,'[\"Primo\"]'),(115678,1804,2,'actor',NULL,'[\"Secondo\"]'),(115678,4711,3,'actor',NULL,'[\"Cristiano\"]'),(115678,88745,4,'actor',NULL,'[\"Man in Restaurant\"]'),(115678,1714,5,'director',NULL,NULL),(115678,873579,6,'writer','written by',NULL),(115678,277204,7,'producer','producer',NULL),(115678,218460,8,'composer',NULL,NULL),(115678,4302,9,'cinematographer','director of photography',NULL),(115685,561938,10,'writer','screenplay',NULL),(115685,245,1,'actor',NULL,'[\"Armand Goldman\"]'),(115685,1447,2,'actor',NULL,'[\"Albert\"]'),(115685,432,3,'actor',NULL,'[\"Senator Keeley\"]'),(115685,1848,4,'actress',NULL,'[\"Louise Keeley\"]'),(115685,1566,5,'director',NULL,NULL),(115685,688497,6,'writer','play \"La Cage Aux Folles\"',NULL),(115685,891554,7,'writer','earlier screenplay',NULL),(115685,596850,8,'writer','earlier screenplay',NULL),(115685,200473,9,'writer','earlier screenplay',NULL),(115736,691084,10,'cinematographer',NULL,NULL),(115736,236,1,'actress',NULL,'[\"Violet\"]'),(115736,153,2,'actress',NULL,'[\"Corky\"]'),(115736,1592,3,'actor',NULL,'[\"Caesar\"]'),(115736,752636,4,'actor',NULL,'[\"Mickey Malnato\"]'),(115736,905154,5,'director',NULL,NULL),(115736,905152,6,'director',NULL,NULL),(115736,97214,7,'producer','producer',NULL),(115736,493662,8,'producer','producer',NULL),(115736,204485,9,'composer',NULL,NULL),(115744,852280,10,'production_designer',NULL,NULL),(115744,592,1,'actor',NULL,'[\"Danny\"]'),(115744,1216,2,'actress',NULL,'[\"Gloria\"]'),(115744,191,3,'actor',NULL,'[\"Andy\"]'),(115744,867017,4,'actor',NULL,'[\"Phil\"]'),(115744,379179,5,'director',NULL,NULL),(115744,2011724,6,'producer','producer',NULL),(115744,2303,7,'composer',NULL,NULL),(115744,172130,8,'cinematographer',NULL,NULL),(115744,3920,9,'editor',NULL,NULL),(115759,1877,10,'composer',NULL,NULL),(115759,237,1,'actor',NULL,'[\"Vic Deakins\"]'),(115759,225,2,'actor',NULL,'[\"Riley Hale\"]'),(115759,526,3,'actress',NULL,'[\"Terry Carmichael\"]'),(115759,5148,4,'actor',NULL,'[\"Colonel Max Wilkins\"]'),(115759,247,5,'director',NULL,NULL),(115759,3662,6,'writer','written by',NULL),(115759,45927,7,'producer','producer',NULL),(115759,151835,8,'producer','producer',NULL),(115759,330428,9,'producer','producer',NULL),(115798,653211,10,'composer',NULL,NULL),(115798,120,1,'actor',NULL,'[\"The Cable Guy\"]'),(115798,111,2,'actor',NULL,'[\"Steven M. Kovacs\"]'),(115798,5182,3,'actress',NULL,'[\"Robin Harris\"]'),(115798,85312,4,'actor',NULL,'[\"Rick\"]'),(115798,1774,5,'director',NULL,NULL),(115798,392648,6,'writer','written by',NULL),(115798,31976,7,'producer','producer',NULL),(115798,508988,8,'producer','producer',NULL),(115798,611064,9,'producer','producer',NULL),(115819,336260,10,'cinematographer','director of photography',NULL),(115819,5295,1,'actor',NULL,'[\"Alferd Packer\"]'),(115819,45379,2,'actor',NULL,'[\"George Noon\"]'),(115819,85823,3,'actor',NULL,'[\"Black Cat\"]'),(115819,104132,4,'actor',NULL,'[\"Noon\'s Father\"]'),(115819,1778,5,'writer','screenplay',NULL),(115819,362220,6,'producer','producer',NULL),(115819,446168,7,'producer','executive producer',NULL),(115819,570454,8,'producer','executive producer',NULL),(115819,761686,9,'composer',NULL,NULL),(115856,761260,10,'editor',NULL,NULL),(115856,165401,1,'actress',NULL,'[\"Chloé\"]'),(115856,815668,2,'actor',NULL,'[\"Djamel\"]'),(115856,494161,3,'actress',NULL,'[\"Madame Renée\"]'),(115856,701396,4,'actor',NULL,'[\"Michel\"]'),(115856,458251,5,'director',NULL,NULL),(115856,229062,6,'producer','producer',NULL),(115856,481610,7,'producer','producer',NULL),(115856,613349,8,'producer','producer',NULL),(115856,217120,9,'cinematographer',NULL,NULL),(115857,97544,10,'writer','screenplay',NULL),(115857,206,1,'actor',NULL,'[\"Eddie Kasalivich\"]'),(115857,151,2,'actor',NULL,'[\"Paul Shannon\"]'),(115857,1838,3,'actress',NULL,'[\"Dr. Lily Sinclair\"]'),(115857,911542,4,'actor',NULL,'[\"FBI Agent Leon Ford\"]'),(115857,1112,5,'director',NULL,NULL),(115857,772829,6,'writer','story',NULL),(115857,780622,7,'writer','story',NULL),(115857,295264,8,'writer','story',NULL),(115857,493369,9,'writer','screenplay',NULL),(115956,35,10,'composer',NULL,NULL),(115956,243,1,'actor',NULL,'[\"Nat Serling\"]'),(115956,212,2,'actress',NULL,'[\"Karen Walden\"]'),(115956,1617,3,'actor',NULL,'[\"Monfriez\"]'),(115956,605363,4,'actor',NULL,'[\"General Hershberg\"]'),(115956,1880,5,'director',NULL,NULL),(115956,242059,6,'writer','written by',NULL),(115956,204862,7,'producer','producer',NULL),(115956,295560,8,'producer','producer',NULL),(115956,801972,9,'producer','producer',NULL),(115963,293435,10,'editor',NULL,NULL),(115963,677,1,'actress',NULL,'[\"Sarah Bailey\"]'),(115963,103,2,'actress',NULL,'[\"Nancy Downs\"]'),(115963,117,3,'actress',NULL,'[\"Bonnie\"]'),(115963,874086,4,'actress',NULL,'[\"Rochelle\"]'),(115963,281598,5,'director',NULL,NULL),(115963,276823,6,'writer','story',NULL),(115963,926824,7,'producer','producer',NULL),(115963,6251,8,'composer',NULL,NULL),(115963,344738,9,'cinematographer','director of photography',NULL),(115964,818621,10,'production_designer',NULL,NULL),(115964,652,1,'actor',NULL,'[\"James Ballard\"]'),(115964,456,2,'actress',NULL,'[\"Helen Remington\"]'),(115964,480,3,'actor',NULL,'[\"Vaughan\"]'),(115964,679,4,'actress',NULL,'[\"Catherine Ballard\"]'),(115964,343,5,'director',NULL,NULL),(115964,50618,6,'writer','novel \"Crash\"',NULL),(115964,6290,7,'composer',NULL,NULL),(115964,5893,8,'cinematographer','director of photography',NULL),(115964,761697,9,'editor',NULL,NULL),(115988,242491,10,'cinematographer','director of photography',NULL),(115988,358,1,'actor',NULL,'[\"John Proctor\"]'),(115988,213,2,'actress',NULL,'[\"Abigail Williams\"]'),(115988,6890,3,'actor',NULL,'[\"Judge Thomas Danforth\"]'),(115988,260,4,'actress',NULL,'[\"Elizabeth Proctor\"]'),(115988,405336,5,'director',NULL,NULL),(115988,7186,6,'writer','play',NULL),(115988,589224,7,'producer','producer',NULL),(115988,681802,8,'producer','producer',NULL),(115988,6070,9,'composer',NULL,NULL),(115994,77149,10,'cinematographer','director of photography',NULL),(115994,287,1,'actor',NULL,'[\"Paul Guell\"]'),(115994,427484,2,'actress',NULL,'[\"Gabriela\"]'),(115994,708873,3,'actor',NULL,'[\"Eduardo\"]'),(115994,1042,4,'actress',NULL,'[\"Katrina Brandt\"]'),(115994,102929,5,'director',NULL,NULL),(115994,531021,6,'writer',NULL,NULL),(115994,700201,7,'producer','producer',NULL),(115994,328251,8,'composer',NULL,NULL),(115994,2648003,9,'composer',NULL,NULL),(116040,6055,10,'composer',NULL,NULL),(116040,230,1,'actor',NULL,'[\"Kit Latura\"]'),(116040,312,2,'actress',NULL,'[\"Madelyne Thompson\"]'),(116040,1557,3,'actor',NULL,'[\"Roy Nord\"]'),(116040,445,4,'actor',NULL,'[\"Frank Kraft\"]'),(116040,3418,5,'director',NULL,NULL),(116040,92018,6,'writer','written by',NULL),(116040,204862,7,'producer','producer',NULL),(116040,295560,8,'producer','producer',NULL),(116040,801972,9,'producer','producer',NULL),(116041,564415,10,'editor',NULL,NULL),(116041,204706,1,'actress',NULL,'[\"Eliza Malone D\'Amico\"]'),(116041,1804,2,'actor',NULL,'[\"Louis D\'Amico\"]'),(116041,205,3,'actress',NULL,'[\"Jo Malone\"]'),(116041,630,4,'actor',NULL,'[\"Carl Petrovic\"]'),(116041,609549,5,'director',NULL,NULL),(116041,1752,6,'producer','producer',NULL),(116041,854941,7,'producer','producer',NULL),(116041,553680,8,'composer',NULL,NULL),(116041,409479,9,'cinematographer',NULL,NULL),(116130,6055,10,'composer',NULL,NULL),(116130,1288,1,'actor',NULL,'[\"Tom Dodge\"]'),(116130,452,2,'actress',NULL,'[\"Emily\"]'),(116130,1705,3,'actor',NULL,'[\"Marty Pascal\"]'),(116130,1765,4,'actor',NULL,'[\"Howard\"]'),(116130,911486,5,'director',NULL,NULL),(116130,933505,6,'writer','screenplay',NULL),(116130,476065,7,'writer','screenplay',NULL),(116130,906997,8,'writer','screenplay',NULL),(116130,492994,9,'producer','producer',NULL),(116136,250867,10,'cinematographer','director of photography',NULL),(116136,598,1,'actor',NULL,'[\"Bowen\"]'),(116136,125,2,'actor',NULL,'[\"Draco\"]'),(116136,539,3,'actress',NULL,'[\"Kara\"]'),(116136,592,4,'actor',NULL,'[\"Gilbert\"]'),(116136,3418,5,'director',NULL,NULL),(116136,425957,6,'writer','story by',NULL),(116136,688279,7,'writer','story by',NULL),(116136,209581,8,'producer','producer',NULL),(116136,6055,9,'composer',NULL,NULL),(116191,933510,10,'cinematographer','director of photography',NULL),(116191,569,1,'actress',NULL,'[\"Emma Woodhouse\"]'),(116191,181920,2,'actor',NULL,'[\"Mr Weston\"]'),(116191,627,3,'actress',NULL,'[\"Mrs Weston\"]'),(116191,1086,4,'actor',NULL,'[\"Mr Elton\"]'),(116191,569790,5,'director',NULL,NULL),(116191,807,6,'writer','novel',NULL),(116191,144025,7,'producer','producer',NULL),(116191,353187,8,'producer','producer',NULL),(116191,6235,9,'composer',NULL,NULL),(116209,4555,10,'editor',NULL,NULL),(116209,146,1,'actor',NULL,'[\"Almásy\"]'),(116209,300,2,'actress',NULL,'[\"Hana\"]'),(116209,353,3,'actor',NULL,'[\"Caravaggio\"]'),(116209,218,4,'actress',NULL,'[\"Katharine Clifton\"]'),(116209,5237,5,'director',NULL,NULL),(116209,648546,6,'writer','novel',NULL),(116209,951763,7,'producer','producer',NULL),(116209,1189,8,'composer',NULL,NULL),(116209,5868,9,'cinematographer','director of photography',NULL),(116212,268685,10,'cinematographer',NULL,NULL),(116212,446702,1,'actress',NULL,'[\"Dorothy Day\"]'),(116212,640,2,'actor',NULL,'[\"Peter Maurin\"]'),(116212,902188,3,'actor',NULL,'[\"Forster Batterham\"]'),(116212,227039,4,'actress',NULL,'[\"Sister Aloysius\"]'),(116212,722493,5,'director',NULL,NULL),(116212,920274,6,'writer','written by',NULL),(116212,452632,7,'producer','producer',NULL),(116212,6015,8,'composer',NULL,NULL),(116212,410344,9,'composer',NULL,NULL),(116213,465745,10,'producer','producer',NULL),(116213,216,1,'actor',NULL,'[\"Eraser\"]'),(116213,1853,2,'actress',NULL,'[\"Lee\"]'),(116213,1001,3,'actor',NULL,'[\"DeGuerin\"]'),(116213,336,4,'actor',NULL,'[\"Beller\"]'),(116213,751080,5,'director',NULL,NULL),(116213,701049,6,'writer','story',NULL),(116213,338396,7,'writer','story',NULL),(116213,155961,8,'writer','story',NULL),(116213,465744,9,'producer','producer',NULL),(116225,1836376,10,'editor',NULL,NULL),(116225,621,1,'actor',NULL,'[\"Snake Plissken\"]'),(116225,114,2,'actor',NULL,'[\"Map to the Stars Eddie\"]'),(116225,5078,3,'actor',NULL,'[\"Cmdr. Malloy\"]'),(116225,486277,4,'actress',NULL,'[\"Utopia\"]'),(116225,118,5,'director',NULL,NULL),(116225,145309,6,'writer','characters',NULL),(116225,384185,7,'writer','written by',NULL),(116225,2980,8,'composer',NULL,NULL),(116225,452123,9,'cinematographer',NULL,NULL),(116250,515908,10,'composer',NULL,NULL),(116250,187,1,'actress',NULL,'[\"Eva Perón\"]'),(116250,596,2,'actor',NULL,'[\"Juan Perón\"]'),(116250,104,3,'actor',NULL,'[\"Ché\"]'),(116250,619700,4,'actor',NULL,'[\"Agustín Magaldi\"]'),(116250,570,5,'director',NULL,NULL),(116250,5358,6,'writer','book of the musical play \"Evita\"',NULL),(116250,231,7,'writer','screenplay',NULL),(116250,830164,8,'producer','producer',NULL),(116250,883351,9,'producer','producer',NULL),(116260,6133,10,'composer',NULL,NULL),(116260,398,1,'actress',NULL,'[\"Karen McCann\"]'),(116260,662,2,'actor',NULL,'[\"Robert Doob\"]'),(116260,438,3,'actor',NULL,'[\"Mack McCann\"]'),(116260,122466,4,'actress',NULL,'[\"Julie McCann\"]'),(116260,772259,5,'director',NULL,NULL),(116260,392788,6,'writer','novel',NULL),(116260,798646,7,'writer','screenplay',NULL),(116260,415425,8,'writer','screenplay',NULL),(116260,506548,9,'producer','producer',NULL),(116277,3011,10,'cinematographer','director of photography',NULL),(116277,134,1,'actor',NULL,'[\"Gil Renard\"]'),(116277,648,2,'actor',NULL,'[\"Bobby Rayburn\"]'),(116277,289,3,'actress',NULL,'[\"Jewel Stern\"]'),(116277,491,4,'actor',NULL,'[\"Manny\"]'),(116277,1716,5,'director',NULL,NULL),(116277,9029,6,'writer','book',NULL),(116277,840380,7,'writer','screenplay',NULL),(116277,277704,8,'producer','producer',NULL),(116277,1877,9,'composer',NULL,NULL),(116282,513,1,'actor',NULL,'[\"Jerry Lundegaard\"]'),(116282,531,2,'actress',NULL,'[\"Marge Gunderson\"]'),(116282,114,3,'actor',NULL,'[\"Carl Showalter\"]'),(116282,1780,4,'actor',NULL,'[\"Gaear Grimsrud\"]'),(116282,1054,5,'director',NULL,NULL),(116282,1053,6,'director',NULL,NULL),(116282,1980,7,'composer',NULL,NULL),(116282,5683,8,'cinematographer','director of photography',NULL),(116282,374511,9,'production_designer',NULL,NULL),(116287,1980,10,'composer',NULL,NULL),(116287,242,1,'actor',NULL,'[\"David McCall\"]'),(116287,702,2,'actress',NULL,'[\"Nicole Walker\"]'),(116287,676973,3,'actor',NULL,'[\"Steve Walker\"]'),(116287,312,4,'actress',NULL,'[\"Laura Walker\"]'),(116287,1226,5,'director',NULL,NULL),(116287,189610,6,'writer','written by',NULL),(116287,4976,7,'producer','producer',NULL),(116287,452305,8,'producer','producer',NULL),(116287,811285,9,'producer','producer',NULL),(116293,575782,10,'cinematographer',NULL,NULL),(116293,842770,1,'actress',NULL,'[\"Eve Stephens\"]'),(116293,1496,2,'actress',NULL,'[\"Maddie Stephens\"]'),(116293,798076,3,'actress',NULL,'[\"Renee\"]'),(116293,4920,4,'actress',NULL,'[\"Annunciata\"]'),(116293,834201,5,'director',NULL,NULL),(116293,438303,6,'writer','book \"Female Perversions: The Tempations of Emma Bovary\"',NULL),(116293,372877,7,'writer','screenplay',NULL),(116293,12700,8,'producer','producer',NULL),(116293,6341,9,'composer',NULL,NULL),(116308,786006,10,'production_designer',NULL,NULL),(116308,818,1,'actress',NULL,'[\"Radha\"]'),(116308,201903,2,'actress',NULL,'[\"Sita\"]'),(116308,422558,3,'actress',NULL,'[\"Young Radha\"]'),(116308,442445,4,'actress',NULL,'[\"Young Radha\'s mother\"]'),(116308,576548,5,'director',NULL,NULL),(116308,66063,6,'producer','producer',NULL),(116308,6246,7,'composer',NULL,NULL),(116308,638365,8,'cinematographer',NULL,NULL),(116308,268179,9,'editor',NULL,NULL),(116313,4241,10,'cinematographer',NULL,NULL),(116313,443,1,'actress',NULL,'[\"Elise Elliot Atchison\"]'),(116313,541,2,'actress',NULL,'[\"Brenda Morelli Cushman\"]'),(116313,473,3,'actress',NULL,'[\"Annie MacDuggan Paradis\"]'),(116313,1749,4,'actress',NULL,'[\"Gunilla Garson Goldberg\"]'),(116313,933505,5,'director',NULL,NULL),(116313,326118,6,'writer','based on the novel by',NULL),(116313,363326,7,'writer','screenplay by',NULL),(116313,748784,8,'producer','producer',NULL),(116313,3299,9,'composer',NULL,NULL),(116329,892109,10,'producer','producer',NULL),(116329,1099,1,'actor',NULL,'[\"Thomas Alden\"]'),(116329,1593,2,'actress',NULL,'[\"Amy Alden\"]'),(116329,1127,3,'actress',NULL,'[\"Susan Barnes\"]'),(116329,455767,4,'actor',NULL,'[\"David Alden\"]'),(116329,50597,5,'director',NULL,NULL),(116329,514043,6,'writer','autobiography',NULL),(116329,734441,7,'writer','screenplay',NULL),(116329,571706,8,'writer','screenplay',NULL),(116329,62071,9,'producer','producer',NULL),(116353,550585,10,'producer','producer',NULL),(116353,123102,1,'actress',NULL,'[\"Maddy Wirtz\"]'),(116353,1401,2,'actress',NULL,'[\"Legs Sadovsky\"]'),(116353,507343,3,'actress',NULL,'[\"Rita Faldes\"]'),(116353,793652,4,'actress',NULL,'[\"Goldie Goldman\"]'),(116353,371852,5,'director',NULL,NULL),(116353,643093,6,'writer','novel',NULL),(116353,924772,7,'writer','screenplay',NULL),(116353,527097,8,'producer','producer',NULL),(116353,544307,9,'producer','producer',NULL),(116361,398335,10,'editor',NULL,NULL),(116361,702,1,'actress',NULL,'[\"Vanessa Lutz\"]'),(116361,662,2,'actor',NULL,'[\"Bob Wolverton\"]'),(116361,940158,3,'actor',NULL,'[\"Chopper\"]'),(116361,674646,4,'actor',NULL,'[\"Cop #1\"]'),(116361,109165,5,'director',NULL,NULL),(116361,360065,6,'producer','producer',NULL),(116361,943829,7,'producer','producer',NULL),(116361,384,8,'composer',NULL,NULL),(116361,859047,9,'cinematographer','director of photography',NULL),(116365,93151,10,'cinematographer',NULL,NULL),(116365,150,1,'actor',NULL,'[\"Frank Bannister\"]'),(116365,746,2,'actress',NULL,'[\"Lucy Lynskey\"]'),(116365,229930,3,'actor',NULL,'[\"Ray Lynskey\"]'),(116365,40014,4,'actor',NULL,'[\"The Judge\"]'),(116365,1392,5,'director',NULL,NULL),(116365,909638,6,'writer','written by',NULL),(116365,783241,7,'producer','producer',NULL),(116365,384,8,'composer',NULL,NULL),(116365,88373,9,'cinematographer',NULL,NULL),(116367,622897,10,'cinematographer',NULL,NULL),(116367,172,1,'actor',NULL,'[\"Jacob Fuller\"]'),(116367,123,2,'actor',NULL,'[\"Seth Gecko\"]'),(116367,496,3,'actress',NULL,'[\"Kate Fuller\"]'),(116367,233,4,'actor',NULL,'[\"Richard Gecko\"]'),(116367,1675,5,'director',NULL,NULL),(116367,476071,6,'writer','story',NULL),(116367,638089,7,'producer','producer',NULL),(116367,855283,8,'producer','producer',NULL),(116367,6251,9,'composer',NULL,NULL),(116378,516326,10,'editor',NULL,NULL),(116378,686,1,'actor',NULL,'[\"Ray\"]'),(116378,1606,2,'actor',NULL,'[\"Chez\"]'),(116378,1711,3,'actress',NULL,'[\"Jean\"]'),(116378,618,4,'actress',NULL,'[\"Clara\"]'),(116378,1206,5,'director',NULL,NULL),(116378,820669,6,'writer','written by',NULL),(116378,437391,7,'producer','producer',NULL),(116378,217137,8,'composer',NULL,NULL),(116378,4302,9,'cinematographer',NULL,NULL),(116418,355285,10,'editor',NULL,NULL),(116418,666,1,'actress',NULL,'[\"Patti Lucci\"]'),(116418,364781,2,'actress',NULL,'[\"Angela\"]'),(116418,333317,3,'actress',NULL,'[\"Emma\"]'),(116418,254712,4,'actress',NULL,'[\"Nikki\"]'),(116418,570995,5,'director',NULL,NULL),(116418,142899,6,'writer','written by',NULL),(116418,952388,7,'producer','producer',NULL),(116418,857260,8,'composer',NULL,NULL),(116418,277655,9,'cinematographer',NULL,NULL),(116421,131333,10,'editor',NULL,NULL),(116421,219,1,'actor',NULL,'[\"Lt. Jack Cole\"]'),(116421,5540,2,'actor',NULL,'[\"Det. Jim Campbell\"]'),(116421,348409,3,'actor',NULL,'[\"Frank Deverell\"]'),(116421,4051,4,'actor',NULL,'[\"Mr. Smith\"]'),(116421,336726,5,'director',NULL,NULL),(116421,110778,6,'writer','written by',NULL),(116421,621993,7,'producer','producer',NULL),(116421,704909,8,'composer',NULL,NULL),(116421,98400,9,'cinematographer','director of photography',NULL),(116426,628804,10,'composer',NULL,NULL),(116426,159507,1,'actor',NULL,'[\"Stephen Chow, The God of Cookery\"]'),(116426,596297,2,'actress',NULL,'[\"Turkey\"]'),(116426,463674,3,'actor',NULL,'[\"Bull Tong\"]'),(116426,628806,4,'actor',NULL,'[\"Old Man\"]'),(116426,497758,5,'director',NULL,NULL),(116426,2650758,6,'writer',NULL,NULL),(116426,874683,7,'writer',NULL,NULL),(116426,947799,8,'producer','producer',NULL),(116426,401180,9,'composer',NULL,NULL),(116442,477158,10,'editor',NULL,NULL),(116442,1152,1,'actress',NULL,'[\"Denise Waverly\",\"Edna Buxton\"]'),(116442,1806,2,'actor',NULL,'[\"Joel Millner\"]'),(116442,101918,3,'actress',NULL,'[\"Dress Saleswoman\"]'),(116442,681943,4,'actress',NULL,'[\"Mrs. Buxton\"]'),(116442,25978,5,'director',NULL,NULL),(116442,153398,6,'producer','producer',NULL),(116442,368477,7,'producer','producer',NULL),(116442,458860,8,'composer',NULL,NULL),(116442,260389,9,'cinematographer',NULL,NULL),(116477,367733,10,'production_designer',NULL,NULL),(116477,110,1,'actor',NULL,'[\"Hamlet\"]'),(116477,1046,2,'actress',NULL,'[\"Gertrude\"]'),(116477,1394,3,'actor',NULL,'[\"Claudius\"]'),(116477,701,4,'actress',NULL,'[\"Ophelia\"]'),(116477,636,5,'writer','play \"The Tragedy of Hamlet, Prince of Denmark\"',NULL),(116477,57655,6,'producer','producer',NULL),(116477,236462,7,'composer',NULL,NULL),(116477,4287,8,'cinematographer',NULL,NULL),(116477,268294,9,'editor',NULL,NULL),(116483,324122,10,'editor','film editor',NULL),(116483,1191,1,'actor',NULL,'[\"Happy Gilmore\"]'),(116483,1520,2,'actor',NULL,'[\"Shooter McGavin\"]'),(116483,100866,3,'actress',NULL,'[\"Virginia Venit\"]'),(116483,62844,4,'actress',NULL,'[\"Grandma\"]'),(116483,240797,5,'director',NULL,NULL),(116483,379056,6,'writer','written by',NULL),(116483,800465,7,'producer','producer',NULL),(116483,6205,8,'composer',NULL,NULL),(116483,16473,9,'cinematographer','director of photography',NULL),(116493,714246,10,'writer','screenplay',NULL),(116493,5502,1,'actress',NULL,'[\"Harriet M. Welsch\"]'),(116493,5280,2,'actress',NULL,'[\"Ole Golly\"]'),(116493,808376,3,'actor',NULL,'[\"Sport\"]'),(116493,156345,4,'actress',NULL,'[\"Janie Gibbs\"]'),(116493,400486,5,'director',NULL,NULL),(116493,280447,6,'writer','novel',NULL),(116493,852430,7,'writer','adaptation',NULL),(116493,848027,8,'writer','adaptation',NULL),(116493,677956,9,'writer','screenplay',NULL),(116514,108585,10,'editor',NULL,NULL),(116514,708873,1,'actor',NULL,'[\"Phillip\",\"John\",\"Paul\"]'),(116514,889926,2,'actress',NULL,'[\"Angelique\"]'),(116514,103208,3,'actor',NULL,'[\"Pinhead\"]'),(116514,154195,4,'actress',NULL,'[\"Genevieve\"]'),(116514,944892,5,'director',NULL,NULL),(116514,40643,6,'writer','written by',NULL),(116514,832077,7,'producer','producer',NULL),(116514,6171,8,'composer',NULL,NULL),(116514,6685,9,'cinematographer','director of photography',NULL),(116552,5976,10,'composer',NULL,NULL),(116552,150,1,'actor',NULL,'[\"Chance\"]'),(116552,398,2,'actress',NULL,'[\"Sassy\"]'),(116552,906627,3,'actor',NULL,'[\"Shadow\"]'),(116552,584279,4,'actor',NULL,'[\"Sparky Michaels\"]'),(116552,254786,5,'director',NULL,NULL),(116552,369675,6,'writer','written by',NULL),(116552,382997,7,'writer','written by',NULL),(116552,122484,8,'writer','characters from novel \"The Incredible Journey\"',NULL),(116552,430904,9,'producer','producer',NULL),(116583,879318,10,'writer','animation screenplay by',NULL),(116583,193,1,'actress',NULL,'[\"Esmeralda\"]'),(116583,4517,2,'actor',NULL,'[\"Hugo\"]'),(116583,74834,3,'actress',NULL,'[\"Quasimodo\'s Mother\",\"Additional Voices\"]'),(116583,123553,4,'actor',NULL,'[\"Brutish Guard\",\"Additional Voices\"]'),(116583,873779,5,'director',NULL,NULL),(116583,936374,6,'director',NULL,NULL),(116583,614742,7,'writer','animation story by',NULL),(116583,401076,8,'writer','from the novel \"Notre Dame de Paris\" by',NULL),(116583,575293,9,'writer','animation screenplay by',NULL),(116594,882927,10,'producer','producer',NULL),(116594,666,1,'actress',NULL,'[\"Valerie Jean Solanas\"]'),(116594,364813,2,'actor',NULL,'[\"Andy Warhol\"]'),(116594,588,3,'actress',NULL,'[\"Stevie\"]'),(116594,89937,4,'actor',NULL,'[\"Maurice Girodias\"]'),(116594,366004,5,'director',NULL,NULL),(116594,628534,6,'writer','book: additional scenes dialogue from \"The Letters and Diaries of Candy Darling, 1992\"',NULL),(116594,875844,7,'writer','research',NULL),(116594,590889,8,'writer','written by',NULL),(116594,435788,9,'producer','producer',NULL),(116629,774606,10,'production_designer',NULL,NULL),(116629,226,1,'actor',NULL,'[\"Capt. Steven Hiller\"]'),(116629,597,2,'actor',NULL,'[\"President Thomas J. Whitmore\"]'),(116629,156,3,'actor',NULL,'[\"David Levinson\"]'),(116629,1521,4,'actress',NULL,'[\"Marilyn Whitmore\"]'),(116629,386,5,'director',NULL,NULL),(116629,2041,6,'writer','written by',NULL),(116629,3417,7,'composer',NULL,NULL),(116629,5776,8,'cinematographer','director of photography',NULL),(116629,107463,9,'editor',NULL,NULL),(116650,56086,10,'editor',NULL,NULL),(116650,1041,1,'actress',NULL,'[\"Maggie Cheung\"]'),(116650,529543,2,'actor',NULL,'[\"René Vidal\"]'),(116650,723865,3,'actress',NULL,'[\"Zoé\"]'),(116650,59971,4,'actor',NULL,'[\"Journalist\"]'),(116650,801,5,'director',NULL,NULL),(116650,70300,6,'producer','producer',NULL),(116650,723878,7,'composer',NULL,NULL),(116650,2717855,8,'composer',NULL,NULL),(116650,310341,9,'cinematographer',NULL,NULL),(116669,4383,10,'composer',NULL,NULL),(116669,245,1,'actor',NULL,'[\"Jack Powell\"]'),(116669,178,2,'actress',NULL,'[\"Karen Powell\"]'),(116669,450116,3,'actor',NULL,'[\"Brian Powell\"]'),(116669,182,4,'actress',NULL,'[\"Miss Marquez\"]'),(116669,338,5,'director',NULL,NULL),(116669,218621,6,'writer','written by',NULL),(116669,618800,7,'writer','written by',NULL),(116669,297209,8,'producer','producer',NULL),(116669,582338,9,'producer','producer',NULL),(116683,318,10,'producer','producer',NULL),(116683,856057,1,'actor',NULL,'[\"James\"]'),(116683,525921,2,'actress',NULL,'[\"Aunt Spiker\"]'),(116683,592,3,'actor',NULL,'[\"Old Man\"]'),(116683,1003,4,'actor',NULL,'[\"Grasshopper\"]'),(116683,783139,5,'director',NULL,NULL),(116683,1094,6,'writer','based on the book by',NULL),(116683,456732,7,'writer','screenplay',NULL),(116683,731271,8,'writer','screenplay',NULL),(116683,89237,9,'writer','screenplay',NULL),(116684,135542,10,'composer',NULL,NULL),(116684,458,1,'actor',NULL,'[\"Rochester\"]'),(116684,1250,2,'actress',NULL,'[\"Jane Eyre\"]'),(116684,1593,3,'actress',NULL,'[\"Young Jane Eyre\"]'),(116684,461025,4,'actor',NULL,'[\"John Reed\"]'),(116684,1874,5,'director',NULL,NULL),(116684,111576,6,'writer','novel',NULL),(116684,925849,7,'writer','screenplay',NULL),(116684,5462342,8,'writer','translation and adaptation',NULL),(116684,522545,9,'producer','producer',NULL),(116692,718426,10,'composer',NULL,NULL),(116692,856500,1,'actress',NULL,'[\"Lara\"]'),(116692,872653,2,'actress',NULL,'[\"Lara als Kind (Lara as Child)\"]'),(116692,780462,3,'actor',NULL,'[\"Martin\"]'),(116692,479608,4,'actress',NULL,'[\"Kai\"]'),(116692,512862,5,'director',NULL,NULL),(116692,785237,6,'writer',NULL,NULL),(116692,165361,7,'producer','producer',NULL),(116692,907173,8,'producer','producer',NULL),(116692,944230,9,'producer','producer',NULL),(116695,404528,10,'editor',NULL,NULL),(116695,129,1,'actor',NULL,'[\"Jerry Maguire\"]'),(116695,421,2,'actor',NULL,'[\"Rod Tidwell\"]'),(116695,250,3,'actress',NULL,'[\"Dorothy Boyd\"]'),(116695,593,4,'actress',NULL,'[\"Avery Bishop\"]'),(116695,1081,5,'director',NULL,NULL),(116695,985,6,'producer','producer',NULL),(116695,548257,7,'producer','producer',NULL),(116695,757017,8,'producer','producer',NULL),(116695,1405,9,'cinematographer',NULL,NULL),(116705,628056,10,'composer',NULL,NULL),(116705,216,1,'actor',NULL,'[\"Howard Langston\"]'),(116705,5435,2,'actor',NULL,'[\"Myron Larabee\"]'),(116705,367005,3,'actor',NULL,'[\"Ted Maltin\"]'),(116705,1854,4,'actress',NULL,'[\"Liz Langston\"]'),(116705,505152,5,'director',NULL,NULL),(116705,466473,6,'writer','written by',NULL),(116705,55431,7,'producer','producer',NULL),(116705,1060,8,'producer','producer',NULL),(116705,705365,9,'producer','producer',NULL),(116767,945851,10,'cinematographer',NULL,NULL),(116767,437511,1,'actor',NULL,'[\"Masaru Miyawaki\"]'),(116767,27942,2,'actor',NULL,'[\"Shinji Takagi\"]'),(116767,605480,3,'actor',NULL,'[\"Homeroom Teacher\"]'),(116767,945650,4,'actor',NULL,'[\"Boxing Club Manager\"]'),(116767,1429,5,'director',NULL,NULL),(116767,605271,6,'producer','producer',NULL),(116767,875257,7,'producer','producer',NULL),(116767,948934,8,'producer','producer',NULL),(116767,386749,9,'composer',NULL,NULL),(116770,215357,10,'production_designer',NULL,NULL),(116770,164918,1,'actress',NULL,'[\"Candy\"]'),(116770,244321,2,'actor',NULL,'[\"Johnny\"]'),(116770,303574,3,'actress',NULL,'[\"Rita\"]'),(116770,440075,4,'actress',NULL,'[\"Old Nun\"]'),(116770,778404,5,'director',NULL,NULL),(116770,276541,6,'producer','producer',NULL),(116770,351006,7,'producer','producer',NULL),(116770,189301,8,'cinematographer',NULL,NULL),(116770,316681,9,'editor',NULL,NULL),(116778,820925,10,'producer','producer',NULL),(116778,437,1,'actor',NULL,'[\"Roy Munson\"]'),(116778,1642,2,'actor',NULL,'[\"Ishmael\"]'),(116778,195,3,'actor',NULL,'[\"Ernie McCracken\"]'),(116778,29502,4,'actress',NULL,'[\"Claudia\"]'),(116778,125803,5,'director',NULL,NULL),(116778,268380,6,'director',NULL,NULL),(116778,266673,7,'writer','written by',NULL),(116778,622240,8,'writer','written by',NULL),(116778,471097,9,'producer','producer',NULL),(116830,13889,10,'cinematographer','director of photography',NULL),(116830,246,1,'actor',NULL,'[\"John Smith\"]'),(116830,1136,2,'actor',NULL,'[\"Sheriff Ed Galt\"]'),(116830,761836,3,'actor',NULL,'[\"Joe Monday\"]'),(116830,686,4,'actor',NULL,'[\"Hickey\"]'),(116830,1353,5,'director',NULL,NULL),(116830,452878,6,'writer','story',NULL),(116830,41,7,'writer','story',NULL),(116830,765306,8,'producer','producer',NULL),(116830,176839,9,'composer',NULL,NULL),(116905,84019,10,'production_designer',NULL,NULL),(116905,177933,1,'actor',NULL,'[\"Sam\"]'),(116905,1615,2,'actress',NULL,'[\"Pilar\"]'),(116905,579116,3,'actor',NULL,'[\"Cliff\"]'),(116905,485917,4,'actor',NULL,'[\"Mikey\"]'),(116905,626,5,'director',NULL,NULL),(116905,589158,6,'producer','producer',NULL),(116905,719964,7,'producer','producer',NULL),(116905,6025,8,'composer',NULL,NULL),(116905,238698,9,'cinematographer','director of photography',NULL),(116908,325549,10,'editor',NULL,NULL),(116908,133,1,'actress',NULL,'[\"Samantha Caine (Charly)\"]'),(116908,168,2,'actor',NULL,'[\"Mitch Henessey\"]'),(116908,956531,3,'actress',NULL,'[\"Caitlin\"]'),(116908,81572,4,'actor',NULL,'[\"Timothy\"]'),(116908,1317,5,'director',NULL,NULL),(116908,948,6,'writer','written by',NULL),(116908,42520,7,'producer','producer',NULL),(116908,6293,8,'composer',NULL,NULL),(116908,622897,9,'cinematographer',NULL,NULL),(116922,823,10,'composer',NULL,NULL),(116922,597,1,'actor',NULL,'[\"Fred Madison\"]'),(116922,99,2,'actress',NULL,'[\"Renee Madison\",\"Alice Wakefield\"]'),(116922,741803,3,'actor',NULL,'[\"Al\"]'),(116922,258388,4,'actor',NULL,'[\"Ed\"]'),(116922,186,5,'director',NULL,NULL),(116922,317510,6,'writer','written by',NULL),(116922,623235,7,'producer','producer',NULL),(116922,827923,8,'producer','producer',NULL),(116922,842156,9,'producer','producer',NULL),(116931,108600,10,'cinematographer',NULL,NULL),(116931,640323,1,'actress',NULL,'[\"Mia\"]'),(116931,307681,2,'actress',NULL,'[\"Alice\"]'),(116931,206510,3,'actor',NULL,'[\"Michael Douglas\"]'),(116931,245876,4,'actor',NULL,'[\"Ari\"]'),(116931,188521,5,'director',NULL,NULL),(116931,74880,6,'writer','screenplay',NULL),(116931,51748,7,'writer','screenplay',NULL),(116931,443613,8,'writer','story',NULL),(116931,936680,9,'composer',NULL,NULL),(116932,310341,10,'cinematographer',NULL,NULL),(116932,1250,1,'actress',NULL,'[\"Marie\"]'),(116932,40939,2,'actor',NULL,'[\"Benoît\"]'),(116932,75650,3,'actor',NULL,'[\"Pierre\"]'),(116932,598857,4,'actor',NULL,'[\"Bernard\"]'),(116932,894742,5,'director',NULL,NULL),(116932,380826,6,'writer','adaptation and dialogue',NULL),(116932,55658,7,'writer','novel \"Talking It Over\"',NULL),(116932,323885,8,'producer','producer',NULL),(116932,6035,9,'composer',NULL,NULL),(116985,518594,10,'production_designer',NULL,NULL),(116985,424060,1,'actress',NULL,'[\"Amanda\"]'),(116985,657760,2,'actress',NULL,'[\"Laurel\"]'),(116985,5316,3,'actress',NULL,'[\"Elaine\"]'),(116985,799003,4,'actor',NULL,'[\"Suburban Family\"]'),(116985,472495,5,'director',NULL,NULL),(116985,372968,6,'producer','producer',NULL),(116985,527099,7,'composer',NULL,NULL),(116985,472518,8,'cinematographer',NULL,NULL),(116985,789025,9,'editor',NULL,NULL),(116996,766921,10,'writer','trading card series',NULL),(116996,197,1,'actor',NULL,'[\"President James Dale\",\"Art Land\"]'),(116996,112,2,'actor',NULL,'[\"Professor Donald Kessler\"]'),(116996,572,3,'actress',NULL,'[\"Nathalie Lake\"]'),(116996,906,4,'actress',NULL,'[\"Barbara Land\"]'),(116996,318,5,'director',NULL,NULL),(116996,114083,6,'writer','trading card series',NULL),(116996,312481,7,'writer','trading card series',NULL),(116996,940071,8,'writer','trading card series',NULL),(116996,694035,9,'writer','trading card series',NULL),(116999,811834,10,'cinematographer','director of photography',NULL),(116999,658,1,'actress',NULL,'[\"Lee\"]'),(116999,138,2,'actor',NULL,'[\"Hank\"]'),(116999,473,3,'actress',NULL,'[\"Bessie\"]'),(116999,134,4,'actor',NULL,'[\"Dr. Wally\"]'),(116999,952360,5,'director',NULL,NULL),(116999,574259,6,'writer','play',NULL),(116999,742772,7,'producer','producer',NULL),(116999,748784,8,'producer','producer',NULL),(116999,6235,9,'composer',NULL,NULL),(117008,792049,10,'producer','producer',NULL),(117008,362,1,'actor',NULL,'[\"Mr. Wormwood\",\"Narrator\"]'),(117008,674231,2,'actress',NULL,'[\"Mrs. Wormwood\"]'),(117008,933798,3,'actress',NULL,'[\"Matilda\"]'),(117008,1110,4,'actress',NULL,'[\"Miss Honey\"]'),(117008,1094,5,'writer','book',NULL),(117008,443582,6,'writer','screenplay',NULL),(117008,842523,7,'writer','screenplay',NULL),(117008,196946,8,'producer','producer',NULL),(117008,787834,9,'producer','producer',NULL),(117038,413208,10,'producer','producer',NULL),(117038,237,1,'actor',NULL,'[\"Michael\"]'),(117038,510,2,'actress',NULL,'[\"Dorothy Winters\"]'),(117038,458,3,'actor',NULL,'[\"Frank Quinlan\"]'),(117038,1364,4,'actor',NULL,'[\"Vartan Malt\"]'),(117038,1188,5,'director',NULL,NULL),(117038,223320,6,'writer','story',NULL),(117038,703720,7,'writer','story',NULL),(117038,258286,8,'writer','screenplay',NULL),(117038,199733,9,'producer','producer',NULL),(117039,493339,10,'editor',NULL,NULL),(117039,553,1,'actor',NULL,'[\"Michael Collins\"]'),(117039,1644,2,'actor',NULL,'[\"Harry Boland\"]'),(117039,210,3,'actress',NULL,'[\"Kitty Kiernan\"]'),(117039,1324,4,'actor',NULL,'[\"Joe O\'Reilly\"]'),(117039,1403,5,'director',NULL,NULL),(117039,941262,6,'producer','producer',NULL),(117039,6106,7,'composer',NULL,NULL),(117039,579580,8,'cinematographer','director of photography',NULL),(117039,240476,9,'editor',NULL,NULL),(117056,451371,1,'actress',NULL,'[\"Little Girl\",\"Mina\"]'),(117056,596257,2,'actor',NULL,NULL),(117056,648487,3,'actor',NULL,NULL),(117056,794420,4,'actor',NULL,NULL),(117056,70159,5,'director',NULL,NULL),(117056,631744,6,'producer','producer',NULL),(117056,415272,7,'cinematographer',NULL,NULL),(117057,586969,10,'producer','producer',NULL),(117057,659,1,'actress',NULL,'[\"Rose Morgan\"]'),(117057,313,2,'actor',NULL,'[\"Gregory Larkin\"]'),(117057,2,3,'actress',NULL,'[\"Hannah Morgan\"]'),(117057,1719,4,'actor',NULL,'[\"Henry Fine\"]'),(117057,147158,5,'writer','screenplay \"Le Miroir a Deux Faces\"',NULL),(117057,653620,6,'writer','screenplay \"Le Miroir a Deux Faces\"',NULL),(117057,481418,7,'writer','screen story',NULL),(117057,24894,8,'writer','motion picture dialogue Le Miroir a Deux Faces',NULL),(117057,674592,9,'writer','motion picture dialogue Le Miroir a Deux Faces',NULL),(117060,906048,10,'producer','producer',NULL),(117060,129,1,'actor',NULL,'[\"Ethan Hunt\"]'),(117060,685,2,'actor',NULL,'[\"Jim Phelps\"]'),(117060,322,3,'actress',NULL,'[\"Claire\"]'),(117060,1089,4,'actor',NULL,'[\"Kittridge\"]'),(117060,361,5,'director',NULL,NULL),(117060,312367,6,'writer','television series',NULL),(117060,462895,7,'writer','story',NULL),(117060,1873,8,'writer','story',NULL),(117060,1801,9,'writer','screenplay',NULL),(117091,742708,10,'editor',NULL,NULL),(117091,983,1,'actor',NULL,'[\"John Henderson\"]'),(117091,1666,2,'actress',NULL,'[\"Beatrice Henderson\"]'),(117091,172598,3,'actor',NULL,'[\"Lawyer\"]'),(117091,917281,4,'actress',NULL,'[\"Karen Henderson\"]'),(117091,569606,5,'writer','written by',NULL),(117091,620720,6,'producer','producer',NULL),(117091,748784,7,'producer','producer',NULL),(117091,3299,8,'composer',NULL,NULL),(117091,5759,9,'cinematographer',NULL,NULL),(117093,704950,10,'editor',NULL,NULL),(117093,560,1,'actor',NULL,'[\"Howard Campbell\"]'),(117093,498247,2,'actress',NULL,'[\"Helga & Resi Noth\"]'),(117093,732271,3,'actor',NULL,'[\"Prison Warden\"]'),(117093,569267,4,'actor',NULL,'[\"Prison Official\"]'),(117093,330360,5,'director',NULL,NULL),(117093,903361,6,'writer','novel',NULL),(117093,4332,7,'writer','screenplay',NULL),(117093,6016,8,'composer',NULL,NULL),(117093,725166,9,'cinematographer','director of photography',NULL),(117102,6268,10,'composer',NULL,NULL),(117102,1122,1,'actress',NULL,'[\"Martha Alston\"]'),(117102,597,2,'actor',NULL,'[\"Whitman Crawford\"]'),(117102,349,3,'actress',NULL,'[\"Inga Gunther\"]'),(117102,1777,4,'actor',NULL,'[\"Jack Tramonte\"]'),(117102,145309,5,'director',NULL,NULL),(117102,558533,6,'writer','written by',NULL),(117102,251328,7,'writer','written by',NULL),(117102,613248,8,'writer','written by',NULL),(117102,441794,9,'producer','producer',NULL),(117110,366337,10,'writer','screenplay',NULL),(117110,347,1,'actor',NULL,'[\"Long John Silver\"]'),(117110,175262,2,'actor',NULL,'[\"Billy Bones\"]'),(117110,766837,3,'actress',NULL,'[\"Mrs. Bluveridge\"]'),(117110,84107,4,'actor',NULL,'[\"Jim Hawkins\"]'),(117110,5008,5,'director',NULL,NULL),(117110,485298,6,'director',NULL,NULL),(117110,829044,7,'writer','novel \"Treasure Island\"',NULL),(117110,432075,8,'writer','screenplay',NULL),(117110,857130,9,'writer','screenplay',NULL),(117128,53352,10,'composer',NULL,NULL),(117128,64546,1,'actor',NULL,'[\"Dr. Clayton Forrester\",\"Crow T. Robot\"]'),(117128,625621,2,'actor',NULL,'[\"Mike Nelson\"]'),(117128,540075,3,'actor',NULL,'[\"Gypsy\"]'),(117128,614436,4,'actor',NULL,'[\"Tom Servo\"]'),(117128,670447,5,'writer','written by',NULL),(117128,152255,6,'writer','written by',NULL),(117128,427638,7,'writer','written by',NULL),(117128,388273,8,'writer','television series \"Mystery Science Theater 3000\"',NULL),(117128,175239,9,'writer',NULL,NULL),(117331,287080,10,'producer','producer',NULL),(117331,708,1,'actor',NULL,'[\"The Phantom\",\"Kit Walker\"]'),(117331,1785,2,'actress',NULL,'[\"Diana Palmer\"]'),(117331,1852,3,'actor',NULL,'[\"Xander Drax\"]'),(117331,1876,4,'actress',NULL,'[\"Sala\"]'),(117331,934578,5,'director',NULL,NULL),(117331,266166,6,'writer','characters',NULL),(117331,90151,7,'writer','written by',NULL),(117331,263172,8,'producer','producer',NULL),(117331,480440,9,'producer','producer',NULL),(117372,778819,10,'writer','screenplay',NULL),(117372,243,1,'actor',NULL,'[\"Dudley\"]'),(117372,1365,2,'actress',NULL,'[\"Julia Biggs\"]'),(117372,5524,3,'actor',NULL,'[\"Reverend Henry Biggs\"]'),(117372,2138,4,'actor',NULL,'[\"Joe Hamilton\"]'),(117372,1508,5,'director',NULL,NULL),(117372,622251,6,'writer','novel \"The Bishop\'s Wife\"',NULL),(117372,792845,7,'writer','earlier screenplay',NULL),(117372,73394,8,'writer','earlier screenplay',NULL),(117372,560894,9,'writer','screenplay',NULL),(117381,6133,10,'composer',NULL,NULL),(117381,152,1,'actor',NULL,'[\"Martin Vail\"]'),(117381,1473,2,'actress',NULL,'[\"Janet Venable\"]'),(117381,1570,3,'actor',NULL,'[\"Aaron\",\"Roy\"]'),(117381,1498,4,'actor',NULL,'[\"Shaughnessy\"]'),(117381,387706,5,'director',NULL,NULL),(117381,225942,6,'writer','novel',NULL),(117381,787399,7,'writer','screenplay',NULL),(117381,81189,8,'writer','screenplay',NULL),(117381,524342,9,'producer','producer',NULL),(117407,845612,10,'cinematographer',NULL,NULL),(117407,91035,1,'actor',NULL,'[\"Frank\"]'),(117407,121519,2,'actor',NULL,'[\"Milo\"]'),(117407,237200,3,'actress',NULL,'[\"Vic\"]'),(117407,479637,4,'actor',NULL,'[\"Radovan\"]'),(117407,716347,5,'director',NULL,NULL),(117407,196930,6,'writer',NULL,NULL),(117407,200546,7,'producer','producer',NULL),(117407,471598,8,'composer',NULL,NULL),(117407,676238,9,'composer',NULL,NULL),(117420,340797,10,'cinematographer',NULL,NULL),(117420,241,1,'actor',NULL,'[\"Christopher Dubois\"]'),(117420,549,2,'actor',NULL,'[\"Lord Edgar Dobbs\"]'),(117420,1664,3,'actor',NULL,'[\"Maxie Devine\"]'),(117420,348186,4,'actress',NULL,'[\"Carrie Newton\"]'),(117420,245235,5,'writer','story',NULL),(117420,12026427,6,'writer','screenplay',NULL),(117420,597857,7,'writer','screenplay',NULL),(117420,224537,8,'producer','producer',NULL),(117420,6055,9,'composer',NULL,NULL),(117468,471097,10,'producer','producer',NULL),(117468,902,1,'actor',NULL,'[\"Frank\"]'),(117468,871406,2,'actress',NULL,'[\"Karen\"]'),(117468,924204,3,'actress',NULL,'[\"Rayanne\"]'),(117468,1844,4,'actor',NULL,'[\"Brian\"]'),(117468,7128,5,'director',NULL,NULL),(117468,358228,6,'writer','written by',NULL),(117468,833866,7,'writer','written by',NULL),(117468,46093,8,'writer','written by',NULL),(117468,84658,9,'producer','producer',NULL),(117477,136260,10,'producer','producer',NULL),(117477,75650,1,'actor',NULL,'[\"Ponceludon\"]'),(117477,734000,2,'actor',NULL,'[\"Bellegarde\"]'),(117477,272,3,'actress',NULL,'[\"Mme de Blayac\"]'),(117477,2105,4,'actress',NULL,'[\"Mathilde\"]'),(117477,496312,5,'director',NULL,NULL),(117477,913966,6,'writer','written by',NULL),(117477,275260,7,'writer','collaborating writer',NULL),(117477,895859,8,'writer','collaborating writer',NULL),(117477,109393,9,'producer','producer',NULL),(117500,800971,10,'producer','producer',NULL),(117500,125,1,'actor',NULL,'[\"John Patrick Mason\"]'),(117500,115,2,'actor',NULL,'[\"Stanley Goodspeed\"]'),(117500,438,3,'actor',NULL,'[\"General Francis X. Hummel\"]'),(117500,817983,4,'actor',NULL,'[\"F.B.I. Director Womack\"]'),(117500,881,5,'director',NULL,NULL),(117500,918711,6,'writer','story',NULL),(117500,177018,7,'writer','story',NULL),(117500,743119,8,'writer','screenplay',NULL),(117500,988,9,'producer','producer',NULL),(117509,393780,10,'composer',NULL,NULL),(117509,138,1,'actor',NULL,'[\"Romeo\"]'),(117509,132,2,'actress',NULL,'[\"Juliet\"]'),(117509,491,3,'actor',NULL,'[\"Tybalt\"]'),(117509,674782,4,'actor',NULL,'[\"Mercutio\"]'),(117509,525303,5,'director',NULL,NULL),(117509,636,6,'writer','play',NULL),(117509,668902,7,'writer','screenplay',NULL),(117509,553355,8,'producer','producer',NULL),(117509,3946,9,'composer',NULL,NULL),(117534,483441,10,'producer','producer',NULL),(117534,4997,1,'actress',NULL,'[\"Sabrina Sawyer\"]'),(117534,589334,2,'actress',NULL,'[\"Aunt Hilda\"]'),(117534,273127,3,'actress',NULL,'[\"Aunt Zelda\"]'),(117534,64433,4,'actress',NULL,'[\"Marnie Littlefield\"]'),(117534,847749,5,'director',NULL,NULL),(117534,169231,6,'writer','teleplay',NULL),(117534,908942,7,'writer','teleplay',NULL),(117534,264878,8,'writer','teleplay',NULL),(117534,205327,9,'producer','producer',NULL),(117571,410419,10,'cinematographer','director of photography',NULL),(117571,117,1,'actress',NULL,'[\"Sidney\"]'),(117571,1073,2,'actress',NULL,'[\"Gale Weathers\"]'),(117571,274,3,'actor',NULL,'[\"Deputy Dewey\"]'),(117571,240,4,'actor',NULL,'[\"Billy\"]'),(117571,127,5,'director',NULL,NULL),(117571,932078,6,'writer','written by',NULL),(117571,465298,7,'producer','producer',NULL),(117571,940531,8,'producer','producer',NULL),(117571,1937,9,'composer',NULL,NULL),(117589,158360,10,'production_designer',NULL,NULL),(117589,1758,1,'actor',NULL,'[\"Maurice\"]'),(117589,950,2,'actress',NULL,'[\"Cynthia\"]'),(117589,517642,3,'actress',NULL,'[\"Monica\"]'),(117589,750718,4,'actress',NULL,'[\"Roxanne\"]'),(117589,5139,5,'director',NULL,NULL),(117589,151925,6,'producer','producer',NULL),(117589,225614,7,'composer',NULL,NULL),(117589,5836,8,'cinematographer',NULL,NULL),(117589,339856,9,'editor',NULL,NULL),(117603,2366,10,'composer',NULL,NULL),(117603,586,1,'actress',NULL,'[\"Stony\"]'),(117603,1451,2,'actress',NULL,'[\"Cleo\"]'),(117603,407,3,'actress',NULL,'[\"Frankie\"]'),(117603,253708,4,'actress',NULL,'[\"Tisean\"]'),(117603,336620,5,'director',NULL,NULL),(117603,119405,6,'writer','story',NULL),(117603,486824,7,'writer','screenplay',NULL),(117603,467977,8,'producer','producer',NULL),(117603,689645,9,'producer','producer',NULL),(117665,511742,10,'editor',NULL,NULL),(117665,134,1,'actor',NULL,'[\"Father Bobby\"]'),(117665,102,2,'actor',NULL,'[\"Nokes\"]'),(117665,93,3,'actor',NULL,'[\"Michael\"]'),(117665,574,4,'actor',NULL,'[\"Shakes\"]'),(117665,1469,5,'director',NULL,NULL),(117665,136262,6,'writer','book',NULL),(117665,326512,7,'producer','producer',NULL),(117665,2354,8,'composer',NULL,NULL),(117665,841,9,'cinematographer','director of photography',NULL),(117705,325175,10,'producer','producer',NULL),(117705,3044,1,'actor',NULL,'[\"Michael Jordan\"]'),(117705,1431,2,'actor',NULL,'[\"Stan Podolak\"]'),(117705,5337,3,'actress',NULL,'[\"Juanita Jordan\"]'),(117705,913502,4,'actor',NULL,'[\"Jeffery Jordan\"]'),(117705,701592,5,'director',NULL,NULL),(117705,1080144,6,'writer','written by',NULL),(117705,748874,7,'writer','written by',NULL),(117705,365390,8,'writer','written by',NULL),(117705,918339,9,'writer','written by',NULL),(117718,191896,10,'production_designer',NULL,NULL),(117718,254362,1,'actress',NULL,'[\"Percy Talbott\"]'),(117718,995,2,'actress',NULL,'[\"Hannah Ferguson\"]'),(117718,1315,3,'actress',NULL,'[\"Shelby Goddard\"]'),(117718,1599,4,'actor',NULL,'[\"Nahum Goddard\"]'),(117718,957453,5,'director',NULL,NULL),(117718,614950,6,'producer','producer',NULL),(117718,35,7,'composer',NULL,NULL),(117718,237170,8,'cinematographer','director of photography',NULL),(117718,329390,9,'editor',NULL,NULL),(117723,465458,10,'producer','producer',NULL),(117723,558,1,'actor',NULL,'[\"Dick Steele \'Agent WD-40\'\"]'),(117723,1733,2,'actress',NULL,'[\"Veronique Ukrinsky \'Agent 3.14\'\"]'),(117723,1164,3,'actor',NULL,'[\"The Director\"]'),(117723,1315,4,'actress',NULL,'[\"Miss Cheevus\"]'),(117723,295007,5,'director',NULL,NULL),(117723,294997,6,'writer','story',NULL),(117723,783536,7,'writer','story',NULL),(117723,161003,8,'writer','screenplay',NULL),(117723,236841,9,'producer','producer',NULL),(117731,5772,10,'cinematographer','director of photography',NULL),(117731,1772,1,'actor',NULL,'[\"Picard\"]'),(117731,408,2,'actor',NULL,'[\"Riker\"]'),(117731,653,3,'actor',NULL,'[\"Data\"]'),(117731,996,4,'actor',NULL,'[\"Geordi\"]'),(117731,734472,5,'writer','television series Star Trek',NULL),(117731,75834,6,'writer','story',NULL),(117731,103804,7,'writer','story',NULL),(117731,601822,8,'writer','story',NULL),(117731,25,9,'composer',NULL,NULL),(117737,768817,10,'editor',NULL,NULL),(117737,460,1,'actor',NULL,'[\"Alex\"]'),(117737,239,2,'actress',NULL,'[\"Lucy Harmon\"]'),(117737,147605,3,'actor',NULL,'[\"Carlo Lisca\"]'),(117737,193661,4,'actress',NULL,'[\"Diana\"]'),(117737,934,5,'director',NULL,NULL),(117737,591612,6,'writer',NULL,NULL),(117737,859016,7,'producer','producer',NULL),(117737,366880,8,'composer',NULL,NULL),(117737,451787,9,'cinematographer','director of photography',NULL),(117765,167613,10,'editor',NULL,NULL),(117765,193,1,'actress',NULL,'[\"Erin Grant\"]'),(117765,608,2,'actor',NULL,'[\"Congressman David Dilbeck\"]'),(117765,800,3,'actor',NULL,'[\"Lt. Al Garcia\"]'),(117765,609,4,'actor',NULL,'[\"Shad\"]'),(117765,921,5,'director',NULL,NULL),(117765,382437,6,'writer','book',NULL),(117765,516465,7,'producer','producer',NULL),(117765,6290,8,'composer',NULL,NULL),(117765,3552,9,'cinematographer','director of photography',NULL),(117797,849222,10,'production_designer',NULL,NULL),(117797,586345,1,'actor',NULL,'[\"Feihong\"]'),(117797,152713,2,'actress',NULL,'[\"Glico\"]'),(117797,411683,3,'actress',NULL,'[\"Ageha\"]'),(117797,251139,4,'actor',NULL,'[\"Ryou Ryanki\"]'),(117797,412517,5,'director',NULL,NULL),(117797,442777,6,'producer','producer',NULL),(117797,535338,7,'producer','associate producer',NULL),(117797,462064,8,'composer',NULL,NULL),(117797,793984,9,'cinematographer',NULL,NULL),(117802,681,1,'actor',NULL,'[\"Trent\"]'),(117802,1287,2,'actress',NULL,'[\"Lorraine\"]'),(117802,269463,3,'actor',NULL,'[\"Mike\"]'),(117802,515296,4,'actor',NULL,'[\"Rob\"]'),(117802,510731,5,'director',NULL,NULL),(117802,800865,6,'producer','producer',NULL),(117802,718117,7,'composer',NULL,NULL),(117802,592537,8,'editor',NULL,NULL),(117802,357176,9,'production_designer',NULL,NULL),(117876,766102,10,'producer','producer',NULL),(117876,588929,1,'actor',NULL,'[\"Tenchi Masaki\"]'),(117876,370677,2,'actress',NULL,'[\"Achika\"]'),(117876,23924,3,'actress',NULL,'[\"Kiyone\"]'),(117876,31844,4,'actor',NULL,'[\"Katsuhito Masaki\",\"Nobuyuki Masaki\"]'),(117876,624374,5,'director',NULL,NULL),(117876,435312,6,'writer','creator',NULL),(117876,875378,7,'writer',NULL,NULL),(117876,8379,8,'producer','producer',NULL),(117876,620202,9,'producer','producer',NULL),(117887,156816,10,'editor',NULL,NULL),(117887,158,1,'actor',NULL,'[\"Mr. White\"]'),(117887,239,2,'actress',NULL,'[\"Faye Dolan\"]'),(117887,234,3,'actress',NULL,'[\"Tina\"]'),(117887,779866,4,'actor',NULL,'[\"Guy Patterson\"]'),(117887,1129,5,'producer','producer',NULL),(117887,324556,6,'producer','producer',NULL),(117887,768324,7,'producer','producer',NULL),(117887,6290,8,'composer',NULL,NULL),(117887,5714,9,'cinematographer','director of photography',NULL),(117918,6570,10,'cinematographer',NULL,NULL),(117918,126,1,'actor',NULL,'[\"Roy McAvoy\"]'),(117918,623,2,'actress',NULL,'[\"Dr. Molly Griswold\"]'),(117918,467,3,'actor',NULL,'[\"David Simms\"]'),(117918,1507,4,'actor',NULL,'[\"Romeo Posar\"]'),(117918,5421,5,'director',NULL,NULL),(117918,636358,6,'writer','written by',NULL),(117918,287811,7,'producer','producer',NULL),(117918,504434,8,'producer','producer',NULL),(117918,743919,9,'composer',NULL,NULL),(117951,386227,10,'editor',NULL,NULL),(117951,191,1,'actor',NULL,'[\"Renton\"]'),(117951,1971,2,'actor',NULL,'[\"Spud\"]'),(117951,1538,3,'actor',NULL,'[\"Sick Boy\"]'),(117951,571727,4,'actor',NULL,'[\"Tommy\"]'),(117951,965,5,'director',NULL,NULL),(117951,920543,6,'writer','based on the novel by',NULL),(117951,388076,7,'writer','screenplay',NULL),(117951,531602,8,'producer','producer',NULL),(117951,5909,9,'cinematographer','director of photography',NULL),(117968,917163,10,'editor',NULL,NULL),(117968,52,1,'actor',NULL,'[\"Mateo Strano\",\"Georges Vickers\",\"Butler\"]'),(117968,302105,2,'actress',NULL,'[\"Maria Gabri-Colosso, \\\"Tania la Corse\\\"\"]'),(117968,4650,3,'actress',NULL,'[\"María\"]'),(117968,693799,4,'actor',NULL,'[\"Martin\"]'),(117968,749914,5,'director',NULL,NULL),(117968,94726,6,'writer','written by',NULL),(117968,104418,7,'producer','producer',NULL),(117968,5948,8,'composer',NULL,NULL),(117968,532576,9,'cinematographer',NULL,NULL),(117979,2377,10,'editor',NULL,NULL),(117979,235,1,'actress',NULL,'[\"Noelle\"]'),(117979,413,2,'actress',NULL,'[\"Abby\"]'),(117979,1035,3,'actor',NULL,'[\"Brian\"]'),(117979,4937,4,'actor',NULL,'[\"Ed\"]'),(117979,499724,5,'director',NULL,NULL),(117979,920108,6,'writer','written by',NULL),(117979,16479,7,'producer','producer',NULL),(117979,6290,8,'composer',NULL,NULL),(117979,109658,9,'cinematographer','director of photography',NULL),(117991,862702,10,'cinematographer',NULL,NULL),(117991,307,1,'actress',NULL,'[\"Olivia\"]'),(117991,1290,2,'actor',NULL,'[\"Sir Andrew Aguecheek\"]'),(117991,835916,3,'actress',NULL,'[\"Viola\"]'),(117991,533599,4,'actor',NULL,'[\"Sebastian\"]'),(117991,638080,5,'director',NULL,NULL),(117991,636,6,'writer','by',NULL),(117991,263236,7,'producer','producer',NULL),(117991,661406,8,'producer','producer',NULL),(117991,202753,9,'composer',NULL,NULL),(117998,6183,10,'composer',NULL,NULL),(117998,166,1,'actress',NULL,'[\"Dr. Jo Harding\"]'),(117998,200,2,'actor',NULL,'[\"Bill Harding\"]'),(117998,144,3,'actor',NULL,'[\"Dr. Jonas Miller\"]'),(117998,415,4,'actress',NULL,'[\"Dr. Melissa Reeves\"]'),(117998,957,5,'director',NULL,NULL),(117998,341,6,'writer','written by',NULL),(117998,551926,7,'writer','written by',NULL),(117998,117290,8,'producer','producer',NULL),(117998,5086,9,'producer','producer',NULL),(118015,256475,10,'production_designer',NULL,NULL),(118015,45870,1,'actor',NULL,'[\"Henri\"]'),(118015,201669,2,'actor',NULL,'[\"Denis\"]'),(118015,296594,3,'actress',NULL,'[\"Yolande\"]'),(118015,418450,4,'actress',NULL,'[\"Betty\"]'),(118015,458251,5,'director',NULL,NULL),(118015,309369,6,'producer','producer',NULL),(118015,251632,7,'composer',NULL,NULL),(118015,217120,8,'cinematographer',NULL,NULL),(118015,761260,9,'editor',NULL,NULL),(118105,900505,10,'composer',NULL,NULL),(118105,514059,1,'actress',NULL,'[\"Olga anziana\"]'),(118105,125540,2,'actress',NULL,'[\"Olga giovane\"]'),(118105,710520,3,'actress',NULL,'[\"Ilaria\"]'),(118105,315767,4,'actor',NULL,'[\"Augusto\"]'),(118105,173724,5,'director',NULL,NULL),(118105,563677,6,'writer',NULL,NULL),(118105,848481,7,'writer','novel',NULL),(118105,108988,8,'producer','producer',NULL),(118105,135542,9,'composer',NULL,NULL),(118111,89805,10,'editor',NULL,NULL),(118111,1302,1,'actor',NULL,'[\"Corky St. Clair\"]'),(118111,929609,2,'actor',NULL,'[\"Ron Albertson\"]'),(118111,1573,3,'actress',NULL,'[\"Sheila Albertson\"]'),(118111,205,4,'actress',NULL,'[\"Libby Mae Brown\"]'),(118111,506405,5,'writer','written by',NULL),(118111,614420,6,'producer','producer',NULL),(118111,571106,7,'composer',NULL,NULL),(118111,733427,8,'composer',NULL,NULL),(118111,769656,9,'cinematographer','director of photography',NULL),(118113,503429,10,'editor',NULL,NULL),(118113,1416,1,'actress',NULL,'[\"Amelia\"]'),(118113,162,2,'actress',NULL,'[\"Laura\"]'),(118113,106010,3,'actress',NULL,'[\"Young Amelia\"]'),(118113,722614,4,'actress',NULL,'[\"Young Laura\"]'),(118113,392237,5,'director',NULL,NULL),(118113,394046,6,'producer','producer',NULL),(118113,770005,7,'producer','producer',NULL),(118113,103891,8,'composer',NULL,NULL),(118113,818785,9,'cinematographer',NULL,NULL),(118125,11675554,10,'editor',NULL,NULL),(118125,243109,1,'actress',NULL,'[\"Cheryl\"]'),(118125,877587,2,'actress',NULL,'[\"Diana\"]'),(118125,908285,3,'actress',NULL,'[\"Tamara\"]'),(118125,111524,4,'actress',NULL,'[\"Fae \'The Watermelon Woman\' Richards\"]'),(118125,571653,5,'writer','written by: film recreations, \"Plantation Memories\" and \"Souls of Deceit\"',NULL),(118125,432055,6,'producer','co-producer: Watermelon Woman photo archive',NULL),(118125,842657,7,'producer','producer',NULL),(118125,788611,8,'composer',NULL,NULL),(118125,187410,9,'cinematographer',NULL,NULL),(118414,1853,10,'actress',NULL,'[\"Calypso\"]'),(118414,800,1,'actor',NULL,'[\"Odysseus\"]'),(118414,627,2,'actress',NULL,'[\"Penelope\"]'),(118414,618,3,'actress',NULL,'[\"Athena\"]'),(118414,1613,4,'actress',NULL,'[\"Circe\"]'),(118414,616,5,'actor',NULL,'[\"Eurymachus\"]'),(118414,660327,6,'actress',NULL,'[\"Anticleia\"]'),(118414,469103,7,'actor',NULL,'[\"King Alcinous\"]'),(118414,1036,8,'actress',NULL,'[\"Eurycleia\"]'),(118414,489,9,'actor',NULL,'[\"Tiresias\"]'),(118550,180075,10,'editor',NULL,NULL),(118550,536134,1,'actress',NULL,'[\"Elena\"]'),(118550,420,2,'actress',NULL,'[\"Maria\"]'),(118550,550069,3,'actress',NULL,'[\"Teresa\"]'),(118550,765012,4,'actress',NULL,'[\"Anita\"]'),(118550,812862,5,'director',NULL,NULL),(118550,1129264,6,'writer','collaboration',NULL),(118550,502859,7,'writer','screenplay',NULL),(118550,893206,8,'composer',NULL,NULL),(118550,81723,9,'cinematographer',NULL,NULL),(118570,898549,10,'producer','producer',NULL),(118570,5052,1,'actor',NULL,'[\"Norm Snively\"]'),(118570,954225,2,'actor',NULL,'[\"Josh Framm\"]'),(118570,538655,3,'actress',NULL,'[\"Jackie Framm\"]'),(118570,167850,4,'actor',NULL,'[\"Arthur Chaney\"]'),(118570,1747,5,'director',NULL,NULL),(118570,225235,6,'writer','character \"Air Bud\"',NULL),(118570,848496,7,'writer','written by',NULL),(118570,578850,8,'writer','written by',NULL),(118570,898547,9,'producer','producer',NULL),(118571,25,10,'composer',NULL,NULL),(118571,148,1,'actor',NULL,'[\"President James Marshall\"]'),(118571,198,2,'actor',NULL,'[\"Ivan Korshunov\"]'),(118571,335,3,'actress',NULL,'[\"Vice President Kathryn Bennett\"]'),(118571,187724,4,'actress',NULL,'[\"Grace Marshall\"]'),(118571,583,5,'director',NULL,NULL),(118571,549256,6,'writer','written by',NULL),(118571,77000,7,'producer','producer',NULL),(118571,441713,8,'producer','producer',NULL),(118571,792871,9,'producer','producer',NULL),(118583,140826,10,'producer','producer',NULL),(118583,244,1,'actress',NULL,'[\"Ripley\"]'),(118583,213,2,'actress',NULL,'[\"Call\"]'),(118583,684500,3,'actor',NULL,'[\"Vriess\"]'),(118583,579,4,'actor',NULL,'[\"Johner\"]'),(118583,466,5,'director',NULL,NULL),(118583,639321,6,'writer','characters',NULL),(118583,795953,7,'writer','characters',NULL),(118583,923736,8,'writer','written by',NULL),(118583,45927,9,'producer','producer',NULL),(118589,801005,10,'cinematographer',NULL,NULL),(118589,1014,1,'actress',NULL,'[\"Billie Frank\"]'),(118589,73160,2,'actor',NULL,'[\"Rafael\"]'),(118589,66586,3,'actor',NULL,'[\"Julian Dice\"]'),(118589,4771,4,'actress',NULL,'[\"Louise\"]'),(118589,193554,5,'director',NULL,NULL),(118589,921985,6,'writer','story',NULL),(118589,486824,7,'writer','screenplay',NULL),(118589,548257,8,'producer','producer',NULL),(118589,5966,9,'composer',NULL,NULL),(118604,386556,10,'composer',NULL,NULL),(118604,779866,1,'actor',NULL,'[\"Andy McDermott\"]'),(118604,365,2,'actress',NULL,'[\"Serafine Pigot\"]'),(118604,896735,3,'actor',NULL,'[\"Brad\"]'),(118604,118720,4,'actor',NULL,'[\"Chris\"]'),(118604,909026,5,'director',NULL,NULL),(118604,484,6,'writer','characters in An American Werewolf in London',NULL),(118604,122899,7,'writer','written by',NULL),(118604,827868,8,'writer','written by',NULL),(118604,165290,9,'producer','producer',NULL),(118607,1405,10,'cinematographer','director of photography',NULL),(118607,5023,1,'actor',NULL,'[\"Cinque\"]'),(118607,190,2,'actor',NULL,'[\"Roger Sherman Baldwin\"]'),(118607,164,3,'actor',NULL,'[\"John Quincy Adams\"]'),(118607,151,4,'actor',NULL,'[\"Theodore Joadson\"]'),(118607,229,5,'director',NULL,NULL),(118607,291905,6,'writer','written by',NULL),(118607,739,7,'producer','producer',NULL),(118607,933213,8,'producer','producer',NULL),(118607,2354,9,'composer',NULL,NULL),(118615,514528,10,'producer','producer',NULL),(118615,685,1,'actor',NULL,'[\"Paul Serone\"]'),(118615,182,2,'actress',NULL,'[\"Terri Flores\"]'),(118615,655,3,'actor',NULL,'[\"Dr. Steven Cale\"]'),(118615,1084,4,'actor',NULL,'[\"Danny Rich\"]'),(118615,515891,5,'director',NULL,NULL),(118615,61829,6,'writer','written by',NULL),(118615,143596,7,'writer','written by',NULL),(118615,258390,8,'writer','written by',NULL),(118615,364045,9,'producer','producer',NULL),(118617,925276,10,'writer','screenplay by',NULL),(118617,212,1,'actress',NULL,'[\"Anastasia\"]'),(118617,131,2,'actor',NULL,'[\"Dimitri\"]'),(118617,502,3,'actor',NULL,'[\"Rasputin\"]'),(118617,1288,4,'actor',NULL,'[\"Vladimir\"]'),(118617,89940,5,'director',NULL,NULL),(118617,325776,6,'director',NULL,NULL),(118617,310319,7,'writer','screenplay by',NULL),(118617,333949,8,'writer','screenplay by',NULL),(118617,879318,9,'writer','screenplay by',NULL),(118636,653211,10,'composer',NULL,NULL),(118636,5212,1,'actor',NULL,'[\"Kurt Dussander\"]'),(118636,605,2,'actor',NULL,'[\"Todd Bowden\"]'),(118636,5045,3,'actor',NULL,'[\"Joey\"]'),(118636,183170,4,'actor',NULL,'[\"Sociology Teacher\"]'),(118636,1741,5,'director',NULL,NULL),(118636,175,6,'writer','novella \"Apt Pupil\"',NULL),(118636,101625,7,'writer','screenplay',NULL),(118636,359100,8,'producer','producer',NULL),(118636,6613,9,'producer','producer',NULL),(118655,5687,10,'cinematographer','director of photography',NULL),(118655,196,1,'actor',NULL,'[\"Austin Powers\",\"Dr. Evil\"]'),(118655,167,2,'actress',NULL,'[\"Vanessa Kensington\"]'),(118655,1868,3,'actor',NULL,'[\"Basil Exposition\"]'),(118655,211,4,'actress',NULL,'[\"Mrs. Kensington\"]'),(118655,5366,5,'director',NULL,NULL),(118655,193,6,'producer','producer',NULL),(118655,865189,7,'producer','producer',NULL),(118655,865297,8,'producer','producer',NULL),(118655,3392,9,'composer',NULL,NULL),(118661,695536,10,'cinematographer',NULL,NULL),(118661,146,1,'actor',NULL,'[\"John Steed\"]'),(118661,235,2,'actress',NULL,'[\"Dr. Emma Peel\"]'),(118661,125,3,'actor',NULL,'[\"Sir August de Wynter\"]'),(118661,1495,4,'actor',NULL,'[\"Invisible Jones\"]'),(118661,154819,5,'director',NULL,NULL),(118661,628285,6,'writer','television series The Avengers',NULL),(118661,534207,7,'writer','written by',NULL),(118661,5545,8,'producer','producer',NULL),(118661,6193,9,'composer',NULL,NULL),(118688,3552,10,'cinematographer','director of photography',NULL),(118688,216,1,'actor',NULL,'[\"Mr. Freeze\",\"Dr. Victor Fries\"]'),(118688,123,2,'actor',NULL,'[\"Batman\",\"Bruce Wayne\"]'),(118688,563,3,'actor',NULL,'[\"Robin\",\"Dick Grayson\"]'),(118688,235,4,'actress',NULL,'[\"Poison Ivy\",\"Dr. Pamela Isley\"]'),(118688,1708,5,'director',NULL,NULL),(118688,4170,6,'writer','Batman characters',NULL),(118688,326040,7,'writer','written by',NULL),(118688,532368,8,'producer','producer',NULL),(118688,6106,9,'composer',NULL,NULL),(118694,496742,10,'cinematographer',NULL,NULL),(118694,504897,1,'actor',NULL,'[\"Chow Mo-wan\"]'),(118694,1041,2,'actress',NULL,'[\"Su Li-zhen - Mrs. Chan\"]'),(118694,803310,3,'actor',NULL,'[\"Ah Ping\"]'),(118694,156432,4,'actor',NULL,'[\"Man living in Mr. Koo\'s apartment\"]'),(118694,939182,5,'director',NULL,NULL),(118694,301704,6,'composer',NULL,NULL),(118694,880839,7,'composer',NULL,NULL),(118694,236313,8,'cinematographer',NULL,NULL),(118694,477095,9,'cinematographer',NULL,NULL),(118715,374511,10,'production_designer',NULL,NULL),(118715,313,1,'actor',NULL,'[\"The Dude\"]'),(118715,422,2,'actor',NULL,'[\"Walter Sobchak\"]'),(118715,194,3,'actress',NULL,'[\"Maude Lebowski\"]'),(118715,114,4,'actor',NULL,'[\"Theodore Donald \'Donny\' Kerabatsos\"]'),(118715,1054,5,'director',NULL,NULL),(118715,1053,6,'director',NULL,NULL),(118715,1980,7,'composer',NULL,NULL),(118715,5683,8,'cinematographer','director of photography',NULL),(118715,177504,9,'editor',NULL,NULL),(118749,5696,10,'cinematographer','director of photography',NULL),(118749,242,1,'actor',NULL,'[\"Eddie Adams\",\"Dirk Diggler\"]'),(118749,194,2,'actress',NULL,'[\"Amber Waves\"]'),(118749,608,3,'actor',NULL,'[\"Jack Horner\"]'),(118749,350079,4,'actor',NULL,'[\"Maurice t.t. Rodriguez\"]'),(118749,759,5,'director',NULL,NULL),(118749,505656,6,'producer','producer',NULL),(118749,529092,7,'producer','producer',NULL),(118749,783280,8,'producer','producer',NULL),(118749,5304,9,'composer',NULL,NULL),(118755,271479,10,'producer','producer',NULL),(118755,422,1,'actor',NULL,'[\"Ocious P. Potter\"]'),(118755,980,2,'actor',NULL,'[\"Pod Clock\"]'),(118755,931247,3,'actor',NULL,'[\"Exterminator Jeff\"]'),(118755,408309,4,'actress',NULL,'[\"Homily Clock\"]'),(118755,382072,5,'director',NULL,NULL),(118755,636260,6,'writer','novels',NULL),(118755,779170,7,'writer','screenplay',NULL),(118755,436960,8,'writer','screenplay',NULL),(118755,79677,9,'producer','producer',NULL),(118789,1252,1,'actor',NULL,'[\"Billy Brown\"]'),(118789,207,2,'actress',NULL,'[\"Layla\"]'),(118789,1262,3,'actor',NULL,'[\"Jimmy Brown\"]'),(118789,620,4,'actor',NULL,'[\"The Bookie\"]'),(118789,46750,5,'writer','screenplay',NULL),(118789,360065,6,'producer','producer',NULL),(118789,10139,7,'cinematographer','director of photography',NULL),(118789,165679,8,'editor',NULL,NULL),(118789,690584,9,'production_designer',NULL,NULL),(118799,5686,10,'cinematographer','director of photography',NULL),(118799,905,1,'actor',NULL,'[\"Guido\"]'),(118799,971,2,'actress',NULL,'[\"Dora\"]'),(118799,134493,3,'actor',NULL,'[\"Giosué\"]'),(118799,243842,4,'actor',NULL,'[\"Zio\"]'),(118799,148437,5,'writer','story by',NULL),(118799,105346,6,'producer','producer',NULL),(118799,1897,7,'producer','producer',NULL),(118799,274754,8,'producer','producer',NULL),(118799,3607,9,'composer',NULL,NULL),(118818,758128,10,'editor',NULL,NULL),(118818,1020,1,'actress',NULL,'[\"Hannah\"]'),(118818,824117,2,'actress',NULL,'[\"Annie\"]'),(118818,125824,3,'actress',NULL,'[\"Claire\"]'),(118818,72949,4,'actor',NULL,'[\"Richard \'Ricky\' Burton\"]'),(118818,5139,5,'director',NULL,NULL),(118818,151925,6,'producer','producer',NULL),(118818,1399,7,'composer',NULL,NULL),(118818,719084,8,'composer',NULL,NULL),(118818,5836,9,'cinematographer',NULL,NULL),(118819,5649,10,'cinematographer','director of photography',NULL),(118819,704721,1,'actor',NULL,'[\"Víctor Plaza\"]'),(118819,626202,2,'actress',NULL,'[\"Elena Benedetti\"]'),(118819,849,3,'actor',NULL,'[\"David de Paz\"]'),(118819,596807,4,'actress',NULL,'[\"Clara\"]'),(118819,264,5,'director',NULL,NULL),(118819,719334,6,'writer','based on the novel by',NULL),(118819,520943,7,'writer','with the collaboration of',NULL),(118819,346277,8,'writer','with the collaboration of',NULL),(118819,407076,9,'composer',NULL,NULL),(118826,158802,10,'composer',NULL,NULL),(118826,146264,1,'actor',NULL,'[\"Darryl Kerrigan\"]'),(118826,855093,2,'actress',NULL,'[\"Sal Kerrigan\"]'),(118826,193135,3,'actor',NULL,'[\"Dale Kerrigan\"]'),(118826,799402,4,'actor',NULL,'[\"Steve Kerrigan\"]'),(118826,803203,5,'director',NULL,NULL),(118826,162274,6,'writer','written and conceived by',NULL),(118826,322467,7,'writer','written and conceived by',NULL),(118826,448088,8,'writer','written and conceived by',NULL),(118826,158671,9,'producer','producer',NULL),(118829,938846,10,'writer','story',NULL),(118829,836,1,'actor',NULL,'[\"Danny\"]'),(118829,4982,2,'actress',NULL,'[\"Sawyer\"]'),(118829,4831,3,'actress',NULL,'[\"Sawyer\"]'),(118829,670779,4,'actress',NULL,'[\"Darla Dimple\"]'),(118829,227540,5,'director',NULL,NULL),(118829,773985,6,'writer','story',NULL),(118829,501729,7,'writer','story',NULL),(118829,946636,8,'writer','story',NULL),(118829,568505,9,'writer','story',NULL),(118842,255,1,'actor',NULL,'[\"Holden McNeil\"]'),(118842,725,2,'actress',NULL,'[\"Alyssa Jones\"]'),(118842,839486,3,'actor',NULL,'[\"Fan\"]'),(118842,608714,4,'actor',NULL,'[\"Collector\"]'),(118842,3620,5,'director',NULL,NULL),(118842,685216,6,'composer',NULL,NULL),(118842,3140,7,'cinematographer','director of photography',NULL),(118842,392692,8,'production_designer',NULL,NULL),(118843,816914,10,'composer',NULL,NULL),(118843,786281,1,'actor',NULL,'[\"Matko Destanov\"]'),(118843,865411,2,'actor',NULL,'[\"Dadan Karambolo\"]'),(118843,441287,3,'actress',NULL,'[\"Ida\"]'),(118843,14981,4,'actor',NULL,'[\"Zare Destanov\"]'),(118843,1437,5,'director',NULL,NULL),(118843,586235,6,'writer','writer',NULL),(118843,62362,7,'producer','producer',NULL),(118843,32916,8,'composer',NULL,NULL),(118843,438785,9,'composer',NULL,NULL),(118845,151858,10,'editor',NULL,NULL),(118845,2000,1,'actor',NULL,'[\"Ho Po-wing\"]'),(118845,504897,2,'actor',NULL,'[\"Lai Yiu-fai\"]'),(118845,151654,3,'actor',NULL,'[\"Chang\"]'),(118845,206753,4,'actor',NULL,'[\"Lover\"]'),(118845,939182,5,'director',NULL,NULL),(118845,700194,6,'writer','novel: The Buenos Aires Affair',NULL),(118845,151175,7,'producer','producer',NULL),(118845,161204,8,'composer',NULL,NULL),(118845,236313,9,'cinematographer',NULL,NULL),(118849,368359,10,'editor',NULL,NULL),(118849,619870,1,'actor',NULL,'[\"Ali\'s Father\"]'),(118849,268488,2,'actor',NULL,'[\"Ali\"]'),(118849,781245,3,'actress',NULL,'[\"Zahra\"]'),(118849,415412,4,'actress',NULL,'[\"Roya\"]'),(118849,6498,5,'director',NULL,NULL),(118849,260556,6,'producer','producer',NULL),(118849,260557,7,'producer','producer',NULL),(118849,415663,8,'composer',NULL,NULL),(118849,539342,9,'cinematographer',NULL,NULL),(118866,592537,10,'editor',NULL,NULL),(118866,1057,1,'actress',NULL,'[\"Iris\"]'),(118866,205,2,'actress',NULL,'[\"Margaret\"]'),(118866,1435,3,'actress',NULL,'[\"Paula\"]'),(118866,5513,4,'actress',NULL,'[\"Jane\"]'),(118866,819613,5,'director',NULL,NULL),(118866,819614,6,'writer','written by',NULL),(118866,720314,7,'producer','producer',NULL),(118866,534794,8,'composer',NULL,NULL),(118866,2681,9,'cinematographer',NULL,NULL),(118880,5897,10,'cinematographer','director of photography',NULL),(118880,115,1,'actor',NULL,'[\"Cameron Poe\"]'),(118880,131,2,'actor',NULL,'[\"Agent Vince Larkin\"]'),(118880,518,3,'actor',NULL,'[\"Cyrus \'The Virus\' Grissom\"]'),(118880,538,4,'actor',NULL,'[\"Agent Duncan Malloy\"]'),(118880,922346,5,'director',NULL,NULL),(118880,3298,6,'writer','written by',NULL),(118880,988,7,'producer','producer',NULL),(118880,6183,8,'composer',NULL,NULL),(118880,704909,9,'composer',NULL,NULL),(118883,830615,10,'editor',NULL,NULL),(118883,154,1,'actor',NULL,'[\"Jerry Fletcher\"]'),(118883,210,2,'actress',NULL,'[\"Alice Sutton\"]'),(118883,1772,3,'actor',NULL,'[\"Dr. Jonas\"]'),(118883,185475,4,'actor',NULL,'[\"Agent Lowry\"]'),(118883,1149,5,'director',NULL,NULL),(118883,1338,6,'writer','written by',NULL),(118883,5428,7,'producer','producer',NULL),(118883,1980,8,'composer',NULL,NULL),(118883,6701,9,'cinematographer','director of photography',NULL),(118884,823330,10,'producer','producer',NULL),(118884,149,1,'actress',NULL,'[\"Ellie Arroway\"]'),(118884,190,2,'actor',NULL,'[\"Palmer Joss\"]'),(118884,643,3,'actor',NULL,'[\"David Drumlin\"]'),(118884,457,4,'actor',NULL,'[\"S.R. Hadden\"]'),(118884,709,5,'director',NULL,NULL),(118884,366337,6,'writer','screenplay by',NULL),(118884,325533,7,'writer','screenplay by',NULL),(118884,755981,8,'writer','based on the novel by',NULL),(118884,238668,9,'writer','based on the story by',NULL),(118887,4090,10,'cinematographer','director of photography',NULL),(118887,230,1,'actor',NULL,'[\"Freddy Heflin\"]'),(118887,172,2,'actor',NULL,'[\"Ray Donlan\"]'),(118887,501,3,'actor',NULL,'[\"Gary Figgis\"]'),(118887,134,4,'actor',NULL,'[\"Moe Tilden\"]'),(118887,3506,5,'director',NULL,NULL),(118887,465298,6,'producer','producer',NULL),(118887,842470,7,'producer','producer',NULL),(118887,940531,8,'producer','producer',NULL),(118887,6290,9,'composer',NULL,NULL),(118892,1880,10,'producer','producer',NULL),(118892,1517,1,'actress',NULL,'[\"Veronica Franco\"]'),(118892,1722,2,'actor',NULL,'[\"Marco Venier\"]'),(118892,1624,3,'actor',NULL,'[\"Maffio Venier\"]'),(118892,911542,4,'actor',NULL,'[\"Domenico Venier\"]'),(118892,380980,5,'director',NULL,NULL),(118892,742796,6,'writer','book \"The Honest Courtesan\"',NULL),(118892,231639,7,'writer','written by',NULL),(118892,135235,8,'producer','producer',NULL),(118892,586969,9,'producer','producer',NULL),(118906,6091,10,'composer',NULL,NULL),(118906,350642,1,'actor',NULL,'[\"Uncle Simon\"]'),(118906,22029,2,'actor',NULL,'[\"Attila\"]'),(118906,879432,3,'actress',NULL,'[\"Angéla\"]'),(118906,720879,4,'actor',NULL,'[\"Cézár\"]'),(118906,879423,5,'director',NULL,NULL),(118906,617350,6,'writer','novel \"Bambi szalmaszállal\"',NULL),(118906,753875,7,'producer','producer',NULL),(118906,126536,8,'composer',NULL,NULL),(118906,223456,9,'composer',NULL,NULL),(118928,5647,10,'cinematographer','director of photography',NULL),(118928,112,1,'actor',NULL,'[\"Harry Dalton\"]'),(118928,157,2,'actress',NULL,'[\"Rachel Wando\"]'),(118928,808603,3,'actress',NULL,'[\"Lauren Wando\"]'),(118928,284158,4,'actor',NULL,'[\"Graham Wando\"]'),(118928,2044,5,'director',NULL,NULL),(118928,92018,6,'writer','written by',NULL),(118928,5036,7,'producer','producer',NULL),(118928,801972,8,'producer','producer',NULL),(118928,2227,9,'composer',NULL,NULL),(118929,3011,10,'cinematographer',NULL,NULL),(118929,1722,1,'actor',NULL,'[\"John Murdoch\"]'),(118929,662,2,'actor',NULL,'[\"Dr Daniel Schreber\"]'),(118929,124,3,'actress',NULL,'[\"Emma Murdoch\"]'),(118929,458,4,'actor',NULL,'[\"Inspector Frank Bumstead\"]'),(118929,1639,5,'director',NULL,NULL),(118929,229644,6,'writer','screenplay',NULL),(118929,275286,7,'writer','screenplay',NULL),(118929,556580,8,'producer','producer',NULL),(118929,2303,9,'composer',NULL,NULL),(118971,465745,10,'producer','producer',NULL),(118971,206,1,'actor',NULL,'[\"Kevin Lomax\"]'),(118971,199,2,'actor',NULL,'[\"John Milton\"]'),(118971,234,3,'actress',NULL,'[\"Mary Ann Lomax\"]'),(118971,470,4,'actor',NULL,'[\"Eddie Barzoon\"]'),(118971,431,5,'director',NULL,NULL),(118971,3825,6,'writer','novel',NULL),(118971,501380,7,'writer','screenplay',NULL),(118971,6904,8,'writer','screenplay',NULL),(118971,465744,9,'producer','producer',NULL),(119008,425741,10,'producer','producer',NULL),(119008,199,1,'actor',NULL,'[\"Lefty\"]'),(119008,136,2,'actor',NULL,'[\"Donnie\"]'),(119008,514,3,'actor',NULL,'[\"Sonny\"]'),(119008,456124,4,'actor',NULL,'[\"Nicky\"]'),(119008,1565,5,'director',NULL,NULL),(119008,685587,6,'writer','book \"Donnie Brasco: My Undercover Life in the Mafia\"',NULL),(119008,940361,7,'writer','book \"Donnie Brasco: My Undercover Life in the Mafia\"',NULL),(119008,1921,8,'writer','screenplay',NULL),(119008,226544,9,'producer','producer',NULL),(119038,508293,1,'actor',NULL,'[\"Pierre Brochant\"]'),(119038,898317,2,'actor',NULL,'[\"François Pignon\"]'),(119038,404091,3,'actor',NULL,'[\"Juste Leblanc\"]'),(119038,699545,4,'actor',NULL,'[\"Lucien Cheval\"]'),(119038,891554,5,'director',NULL,NULL),(119038,6019,6,'composer',NULL,NULL),(119038,5907,7,'cinematographer',NULL,NULL),(119038,460109,8,'editor',NULL,NULL),(119038,864371,9,'production_designer',NULL,NULL),(119080,397374,10,'production_designer',NULL,NULL),(119080,168,1,'actor',NULL,'[\"Louis Batiste\"]'),(119080,810619,2,'actress',NULL,'[\"Eve Batiste\"]'),(119080,328709,3,'actress',NULL,'[\"Cisely Batiste\"]'),(119080,5551,4,'actress',NULL,'[\"Roz Batiste\"]'),(119080,501435,5,'director',NULL,NULL),(119080,160941,6,'producer','producer',NULL),(119080,5966,7,'composer',NULL,NULL),(119080,898575,8,'cinematographer',NULL,NULL),(119080,795443,9,'editor',NULL,NULL),(119081,4383,10,'composer',NULL,NULL),(119081,401,1,'actor',NULL,'[\"Miller\"]'),(119081,554,2,'actor',NULL,'[\"Weir\"]'),(119081,599,3,'actress',NULL,'[\"Peters\"]'),(119081,613,4,'actress',NULL,'[\"Starck\"]'),(119081,27271,5,'director',NULL,NULL),(119081,252155,6,'writer','written by',NULL),(119081,93337,7,'producer','producer',NULL),(119081,330379,8,'producer','producer',NULL),(119081,505656,9,'producer','producer',NULL),(119094,651614,10,'producer','producer',NULL),(119094,237,1,'actor',NULL,'[\"Sean Archer\"]'),(119094,115,2,'actor',NULL,'[\"Castor Troy\"]'),(119094,260,3,'actress',NULL,'[\"Eve Archer\"]'),(119094,5273,4,'actor',NULL,'[\"Pollux Troy\"]'),(119094,247,5,'director',NULL,NULL),(119094,108273,6,'writer','written by',NULL),(119094,171718,7,'writer','written by',NULL),(119094,151835,8,'producer','producer',NULL),(119094,324216,9,'producer','producer',NULL),(119114,3372,10,'cinematographer',NULL,NULL),(119114,147,1,'actor',NULL,'[\"Paul Ashworth\"]'),(119114,312587,2,'actress',NULL,'[\"Sarah Hughes\"]'),(119114,14606,3,'actor',NULL,'[\"Young Paul\"]'),(119114,345291,4,'actress',NULL,'[\"Paul\'s Sister\"]'),(119114,262678,5,'director',NULL,NULL),(119114,394984,6,'writer','book',NULL),(119114,692656,7,'producer','producer',NULL),(119114,381963,8,'composer',NULL,NULL),(119114,531534,9,'composer',NULL,NULL),(119115,787834,10,'producer','producer',NULL),(119115,92,1,'actor',NULL,'[\"Rollo Lee\"]'),(119115,130,2,'actress',NULL,'[\"Willa Weston\"]'),(119115,177,3,'actor',NULL,'[\"Vince McCain\",\"Rod McCain\"]'),(119115,1589,4,'actor',NULL,'[\"Bugsy Malone\"]'),(119115,950000,5,'director',NULL,NULL),(119115,770961,6,'director','co-director',NULL),(119115,426917,7,'writer','written by',NULL),(119115,1402,8,'writer','idea for \"The Fierce Animal Policy\"',NULL),(119115,1279,9,'writer',NULL,NULL),(119116,484981,10,'editor',NULL,NULL),(119116,246,1,'actor',NULL,'[\"Korben Dallas\"]'),(119116,170,2,'actress',NULL,'[\"Leeloo\"]'),(119116,198,3,'actor',NULL,'[\"Zorg\"]'),(119116,453,4,'actor',NULL,'[\"Cornelius\"]'),(119116,108,5,'director',NULL,NULL),(119116,436543,6,'writer','screenplay by',NULL),(119116,496628,7,'producer','producer',NULL),(119116,785385,8,'composer',NULL,NULL),(119116,5636,9,'cinematographer',NULL,NULL),(119137,384,10,'composer',NULL,NULL),(119137,245,1,'actor',NULL,'[\"Professor Philip Brainard\"]'),(119137,1315,2,'actress',NULL,'[\"Dr. Sara Jean Reynolds\"]'),(119137,1520,3,'actor',NULL,'[\"Wilson Croft\"]'),(119137,505971,4,'actor',NULL,'[\"Wesson\"]'),(119137,562645,5,'director',NULL,NULL),(119137,853139,6,'writer','short story \"A Situation of Gravity\"',NULL),(119137,455,7,'writer','screenplay',NULL),(119137,909556,8,'writer','screenplay',NULL),(119137,582338,9,'producer','producer',NULL),(119142,790901,10,'producer','producer',NULL),(119142,741,1,'actor',NULL,'[\"Brad Sexton\"]'),(119142,263,2,'actress',NULL,'[\"Caroline Sexton\"]'),(119142,761587,3,'actor',NULL,'[\"Samuel Yoder\"]'),(119142,503627,4,'actor',NULL,'[\"Phil Kleinman\"]'),(119142,818465,5,'director',NULL,NULL),(119142,398174,6,'writer','written by',NULL),(119142,525503,7,'writer','written by',NULL),(119142,790898,8,'producer','producer',NULL),(119142,790900,9,'producer','producer',NULL),(119152,5859,10,'cinematographer','director of photography',NULL),(119152,725284,1,'actor',NULL,'[\"Jesse\"]'),(119152,770763,2,'actor',NULL,'[\"Randolph Johnson\"]'),(119152,179960,3,'actress',NULL,'[\"Drew Halbert\"]'),(119152,77692,4,'actor',NULL,'[\"Max Wesley\"]'),(119152,683578,5,'director',NULL,NULL),(119152,560469,6,'writer','written by',NULL),(119152,907929,7,'writer','based on characters created by',NULL),(119152,506681,8,'producer','producer',NULL),(119152,6056,9,'composer',NULL,NULL),(119164,293352,10,'editor',NULL,NULL),(119164,1015,1,'actor',NULL,'[\"Gaz\"]'),(119164,929489,2,'actor',NULL,'[\"Gerald\"]'),(119164,4692,3,'actor',NULL,'[\"Dave\"]'),(119164,810890,4,'actor',NULL,'[\"Nathan\"]'),(119164,146341,5,'director',NULL,NULL),(119164,64479,6,'writer','written by',NULL),(119164,664667,7,'producer','producer',NULL),(119164,6050,8,'composer',NULL,NULL),(119164,207532,9,'cinematographer','director of photography',NULL),(119167,521443,1,'actress',NULL,'[\"Anna\"]'),(119167,618057,2,'actor',NULL,'[\"Georg\"]'),(119167,295823,3,'actor',NULL,'[\"Paul\"]'),(119167,317385,4,'actor',NULL,'[\"Peter\"]'),(119167,359734,5,'director',NULL,NULL),(119167,374002,6,'producer','executive producer',NULL),(119167,5751,7,'cinematographer',NULL,NULL),(119167,698283,8,'editor',NULL,NULL),(119167,2496,9,'production_designer',NULL,NULL),(119173,2303,10,'composer',NULL,NULL),(119173,193,1,'actress',NULL,'[\"Jordan O\'Neill\"]'),(119173,1557,2,'actor',NULL,'[\"Master Chief John James Urgayle\"]'),(119173,843,3,'actress',NULL,'[\"Lillian DeHaven\"]'),(119173,892,4,'actor',NULL,'[\"Royce\"]'),(119173,631,5,'director',NULL,NULL),(119173,18824,6,'writer','story',NULL),(119173,878638,7,'writer','screenplay',NULL),(119173,83696,8,'producer','producer',NULL),(119173,865297,9,'producer','producer',NULL),(119174,6290,10,'composer',NULL,NULL),(119174,140,1,'actor',NULL,'[\"Nicholas Van Orton\"]'),(119174,679,2,'actress',NULL,'[\"Christine\"]'),(119174,576,3,'actor',NULL,'[\"Conrad\"]'),(119174,714310,4,'actor',NULL,'[\"Jim Feingold\"]'),(119174,399,5,'director',NULL,NULL),(119174,104335,6,'writer','written by',NULL),(119174,274905,7,'writer','written by',NULL),(119174,149556,8,'producer','producer',NULL),(119174,326512,9,'producer','producer',NULL),(119177,5744,10,'cinematographer','director of photography',NULL),(119177,160,1,'actor',NULL,'[\"Vincent\",\"Jerome\"]'),(119177,235,2,'actress',NULL,'[\"Irene\"]'),(119177,179,3,'actor',NULL,'[\"Jerome\",\"Eugene\"]'),(119177,683,4,'actor',NULL,'[\"Director Josef\"]'),(119177,629272,5,'director',NULL,NULL),(119177,362,6,'producer','producer',NULL),(119177,787834,7,'producer','producer',NULL),(119177,792049,8,'producer','producer',NULL),(119177,6219,9,'composer',NULL,NULL),(119190,387674,10,'producer','producer',NULL),(119190,409,1,'actor',NULL,'[\"George\"]'),(119190,5182,2,'actress',NULL,'[\"Ursula Stanhope\"]'),(119190,2006,3,'actor',NULL,'[\"Lyle Van de Groot\"]'),(119190,745780,4,'actor',NULL,'[\"Kwame\"]'),(119190,918873,5,'director',NULL,NULL),(119190,911599,6,'writer','characters',NULL),(119190,647615,7,'writer','story',NULL),(119190,920108,8,'writer','screenplay',NULL),(119190,816,9,'producer','producer',NULL),(119204,960270,10,'cinematographer',NULL,NULL),(119204,335098,1,'actress',NULL,'[\"Flaxa Mildväder\"]'),(119204,1745,2,'actor',NULL,'[\"Albert\"]'),(119204,278,3,'actress',NULL,'[\"Sofia\"]'),(119204,670778,4,'actor',NULL,'[\"Klas\"]'),(119204,344985,5,'director',NULL,NULL),(119204,342505,6,'writer','novel',NULL),(119204,423765,7,'writer','teleplay',NULL),(119204,83555,8,'producer','producer',NULL),(119204,845542,9,'composer',NULL,NULL),(119215,4841,10,'composer',NULL,NULL),(119215,5239,1,'actor',NULL,'[\"Ed\"]'),(119215,860380,2,'actor',NULL,'[\"Dexter Reed\"]'),(119215,5435,3,'actor',NULL,'[\"Mr. Wheat\"]'),(119215,1820,4,'actor',NULL,'[\"Otis\"]'),(119215,5367,5,'director',NULL,NULL),(119215,773759,6,'writer','characters',NULL),(119215,465741,7,'writer','characters',NULL),(119215,782499,8,'writer','characters',NULL),(119215,866132,9,'producer','producer',NULL),(119217,829681,10,'production_designer',NULL,NULL),(119217,245,1,'actor',NULL,'[\"Sean\"]'),(119217,354,2,'actor',NULL,'[\"Will\"]'),(119217,255,3,'actor',NULL,'[\"Chuckie\"]'),(119217,1745,4,'actor',NULL,'[\"Lambeau\"]'),(119217,1814,5,'director',NULL,NULL),(119217,4744,6,'producer','producer',NULL),(119217,384,7,'composer',NULL,NULL),(119217,260389,8,'cinematographer','director of photography',NULL),(119217,768817,9,'editor',NULL,NULL),(119223,523881,10,'cinematographer','director of photography',NULL),(119223,160,1,'actor',NULL,'[\"Finnegan Bell\"]'),(119223,569,2,'actress',NULL,'[\"Estella\"]'),(119223,279,3,'actor',NULL,'[\"Walter Plane\"]'),(119223,177933,4,'actor',NULL,'[\"Joe\"]'),(119223,190859,5,'director',NULL,NULL),(119223,2042,6,'writer','novel',NULL),(119223,322248,7,'writer','screenplay',NULL),(119223,513165,8,'producer','producer',NULL),(119223,236462,9,'composer',NULL,NULL),(119227,257259,10,'producer','producer',NULL),(119227,244,1,'actress',NULL,'[\"Claudia Hoffman\"]'),(119227,554,2,'actor',NULL,'[\"Frederick Hoffman\"]'),(119227,4743,3,'actor',NULL,'[\"Will\"]'),(119227,205545,4,'actress',NULL,'[\"Little Lilli\"]'),(119227,169931,5,'director',NULL,NULL),(119227,844214,6,'writer','screenplay',NULL),(119227,785376,7,'writer','screenplay',NULL),(119227,342278,8,'writer','story',NULL),(119227,342303,9,'writer','story',NULL),(119229,83696,10,'producer','producer',NULL),(119229,131,1,'actor',NULL,'[\"Martin Q. Blank\"]'),(119229,378,2,'actress',NULL,'[\"Debi Newberry\"]'),(119229,101,3,'actor',NULL,'[\"Grocer\"]'),(119229,349,4,'actress',NULL,'[\"Marcella\"]'),(119229,786,5,'director',NULL,NULL),(119229,417716,6,'writer','story',NULL),(119229,222584,7,'writer','screenplay',NULL),(119229,684336,8,'writer','screenplay',NULL),(119229,36641,9,'producer','producer',NULL),(119237,840371,1,'actor',NULL,'[\"Tummler\"]'),(119237,786580,2,'actor',NULL,'[\"Bunny Boy\"]'),(119237,869164,3,'actress',NULL,'[\"Girl in Car\"]'),(119237,721758,4,'actor',NULL,'[\"Solomon\"]'),(119237,5101,5,'director',NULL,NULL),(119237,940531,6,'producer','producer',NULL),(119237,260389,7,'cinematographer',NULL,NULL),(119237,854403,8,'editor',NULL,NULL),(119237,230422,9,'production_designer',NULL,NULL),(119250,649025,10,'editor',NULL,NULL),(119250,1429,1,'actor',NULL,'[\"Yoshitaka Nishi\"]'),(119250,457229,2,'actress',NULL,'[\"Nishi\'s wife\"]'),(119250,652592,3,'actor',NULL,'[\"Horibe\"]'),(119250,855398,4,'actor',NULL,'[\"Nakamura\"]'),(119250,605271,5,'producer','producer',NULL),(119250,875257,6,'producer','producer',NULL),(119250,948934,7,'producer','producer',NULL),(119250,386749,8,'composer',NULL,NULL),(119250,945418,9,'cinematographer',NULL,NULL),(119256,5696,10,'cinematographer','director of photography',NULL),(119256,1311,1,'actor',NULL,'[\"Sydney\"]'),(119256,604,2,'actor',NULL,'[\"John\"]'),(119256,569,3,'actress',NULL,'[\"Clementine\"]'),(119256,168,4,'actor',NULL,'[\"Jimmy\"]'),(119256,759,5,'director',NULL,NULL),(119256,429134,6,'producer','producer',NULL),(119256,529092,7,'producer','producer',NULL),(119256,109726,8,'composer',NULL,NULL),(119256,5304,9,'composer',NULL,NULL),(119280,758128,10,'editor',NULL,NULL),(119280,1132,1,'actress',NULL,'[\"Queen Victoria\"]'),(119280,175262,2,'actor',NULL,'[\"John Brown\"]'),(119280,658244,3,'actor',NULL,'[\"Henry Ponsonby\"]'),(119280,792029,4,'actor',NULL,'[\"Disraeli\"]'),(119280,6960,5,'director',NULL,NULL),(119280,110591,6,'writer',NULL,NULL),(119280,193501,7,'producer','producer',NULL),(119280,6339,8,'composer',NULL,NULL),(119280,337313,9,'cinematographer','director of photography',NULL),(119282,436314,10,'writer','story',NULL),(119282,4883,1,'actor',NULL,'[\"Hercules\"]'),(119282,250743,2,'actress',NULL,'[\"Meg\"]'),(119282,249,3,'actor',NULL,'[\"Hades\"]'),(119282,57363,4,'actress',NULL,'[\"Alcmene\"]'),(119282,166256,5,'director',NULL,NULL),(119282,615780,6,'director',NULL,NULL),(119282,568490,7,'writer','animation screenplay by',NULL),(119282,789624,8,'writer','animation screenplay by',NULL),(119282,575293,9,'writer','animation screenplay by',NULL),(119303,132695,10,'editor',NULL,NULL),(119303,513281,1,'actor',NULL,'[\"Alex Pruitt\"]'),(119303,472762,2,'actor',NULL,'[\"Petr Beaupre\"]'),(119303,452748,3,'actress',NULL,'[\"Alice Ribbons\"]'),(119303,902188,4,'actor',NULL,'[\"Burton Jernigan\"]'),(119303,331532,5,'director',NULL,NULL),(119303,455,6,'writer','written by',NULL),(119303,337906,7,'producer','producer',NULL),(119303,322684,8,'composer',NULL,NULL),(119303,531310,9,'cinematographer','director of photography',NULL),(119313,156816,10,'editor',NULL,NULL),(119313,113,1,'actress',NULL,'[\"Birdee Pruitt\"]'),(119313,1065,2,'actor',NULL,'[\"Justin Matisse\"]'),(119313,1687,3,'actress',NULL,'[\"Ramona Calvert\"]'),(119313,926165,4,'actress',NULL,'[\"Bernice Pruitt\"]'),(119313,1845,5,'director',NULL,NULL),(119313,737216,6,'writer','written by',NULL),(119313,643553,7,'producer','producer',NULL),(119313,6115,8,'composer',NULL,NULL),(119313,221042,9,'cinematographer','director of photography',NULL),(119324,818785,10,'cinematographer',NULL,NULL),(119324,205,1,'actress',NULL,'[\"Jackie-O\"]'),(119324,357979,2,'actor',NULL,'[\"Marty\"]'),(119324,1760,3,'actress',NULL,'[\"Lesly\"]'),(119324,5327,4,'actor',NULL,'[\"Anthony\"]'),(119324,914132,5,'director',NULL,NULL),(119324,533938,6,'writer','play',NULL),(119324,4927,7,'producer','producer',NULL),(119324,799393,8,'producer','producer',NULL),(119324,448843,9,'composer',NULL,NULL),(119336,512399,10,'composer',NULL,NULL),(119336,576,1,'actor',NULL,'[\"Eddie\"]'),(119336,228,2,'actor',NULL,'[\"Mickey\"]'),(119336,1590,3,'actor',NULL,'[\"Phil\"]'),(119336,705,4,'actress',NULL,'[\"Darlene\"]'),(119336,237292,5,'director',NULL,NULL),(119336,704792,6,'writer','play',NULL),(119336,321621,7,'producer','producer',NULL),(119336,357464,8,'producer','producer',NULL),(119336,46412,9,'composer',NULL,NULL),(119345,605775,10,'producer','producer',NULL),(119345,1349,1,'actress',NULL,'[\"Julie James\"]'),(119345,1264,2,'actress',NULL,'[\"Helen Shivers\"]'),(119345,162,3,'actress',NULL,'[\"Melissa Egan\"]'),(119345,202,4,'actor',NULL,'[\"Barry Cox\"]'),(119345,318947,5,'director',NULL,NULL),(119345,932078,6,'writer','screenplay by',NULL),(119345,242028,7,'writer','based on the novel by',NULL),(119345,149563,8,'producer','producer',NULL),(119345,270549,9,'producer','producer',NULL),(119360,360067,10,'editor',NULL,NULL),(119360,177,1,'actor',NULL,'[\"Howard Brackett\"]'),(119360,349,2,'actress',NULL,'[\"Emily Montgomery\"]'),(119360,633,3,'actor',NULL,'[\"Peter Malloy\"]'),(119360,369,4,'actor',NULL,'[\"Cameron Drake\"]'),(119360,568,5,'director',NULL,NULL),(119360,397411,6,'writer','written by',NULL),(119360,748784,7,'producer','producer',NULL),(119360,3299,8,'composer',NULL,NULL),(119360,353963,9,'cinematographer',NULL,NULL),(119361,381784,10,'cinematographer','director of photography',NULL),(119361,1173,1,'actor',NULL,'[\"Chad\"]'),(119361,540164,2,'actor',NULL,'[\"Howard\"]'),(119361,250368,3,'actress',NULL,'[\"Christine\"]'),(119361,3140171,4,'actor',NULL,'[\"Co-worker #1\"]'),(119361,1438,5,'director',NULL,NULL),(119361,4001,6,'producer','producer',NULL),(119361,678927,7,'producer','producer',NULL),(119361,736468,8,'composer',NULL,NULL),(119361,931050,9,'composer',NULL,NULL),(119369,426224,10,'cinematographer','director of photography',NULL),(119369,790158,1,'actress',NULL,'[\"Edith Adelon\"]'),(119369,202203,2,'actress',NULL,'[\"Amy Hamilton\"]'),(119369,829722,3,'actor',NULL,'[\"Frederick Arlington\"]'),(119369,909578,4,'actress',NULL,'[\"Ida Glenshaw\"]'),(119369,744794,5,'director',NULL,NULL),(119369,622329,6,'writer','teleplay',NULL),(119369,17301,7,'writer','novel',NULL),(119369,783102,8,'producer','producer',NULL),(119369,6081,9,'composer',NULL,NULL),(119396,913300,10,'production_designer',NULL,NULL),(119396,427,1,'actress',NULL,'[\"Jackie Brown\"]'),(119396,168,2,'actor',NULL,'[\"Ordell Robbie\"]'),(119396,1233,3,'actor',NULL,'[\"Max Cherry\"]'),(119396,403,4,'actress',NULL,'[\"Melanie\"]'),(119396,233,5,'director',NULL,NULL),(119396,1465,6,'writer','novel \"Rum Punch\"',NULL),(119396,4744,7,'producer','producer',NULL),(119396,622897,8,'cinematographer','director of photography',NULL),(119396,579673,9,'editor',NULL,NULL),(119432,262595,10,'writer','screenplay',NULL),(119432,741,1,'actor',NULL,'[\"Michael Cromwell\"]'),(119432,1737,2,'actor',NULL,'[\"Richard Kempster\"]'),(119432,1851,3,'actress',NULL,'[\"Dr. Patricia Cromwell\"]'),(119432,357,4,'actress',NULL,'[\"Charlotte\"]'),(119432,664756,5,'director',NULL,NULL),(119432,658836,6,'writer','earlier screenplay Un indien dans la ville',NULL),(119432,508293,7,'writer','earlier screenplay Un indien dans la ville',NULL),(119432,15150416,8,'writer','earlier screenplay Un indien dans la ville',NULL),(119432,116091,9,'writer','earlier screenplay Un indien dans la ville',NULL),(119468,6142,10,'composer',NULL,NULL),(119468,151,1,'actor',NULL,'[\"Dr. Alex Cross\"]'),(119468,171,2,'actress',NULL,'[\"Kate Mctiernan\"]'),(119468,144,3,'actor',NULL,'[\"Nick Ruskin\"]'),(119468,564107,4,'actor',NULL,'[\"Sikes\"]'),(119468,1219,5,'director',NULL,NULL),(119468,666248,6,'writer','novel',NULL),(119468,458318,7,'writer','screenplay',NULL),(119468,113360,8,'producer','producer',NULL),(119468,937208,9,'producer','producer',NULL),(119472,687274,10,'composer',NULL,NULL),(119472,1709,1,'actor',NULL,'[\"Martin Brest\"]'),(119472,509583,2,'actor',NULL,'[\"Rudi Wurlitzer\"]'),(119472,888276,3,'actor',NULL,'[\"Henk - der Belgier\"]'),(119472,1953,4,'actor',NULL,'[\"Abdul - der Araber\"]'),(119472,415714,5,'director',NULL,NULL),(119472,377333,6,'producer','producer',NULL),(119472,955995,7,'producer','producer',NULL),(119472,1659865,8,'composer',NULL,NULL),(119472,686693,9,'composer',NULL,NULL),(119488,25,10,'composer',NULL,NULL),(119488,228,1,'actor',NULL,'[\"Jack Vincennes\"]'),(119488,128,2,'actor',NULL,'[\"Bud White\"]'),(119488,1602,3,'actor',NULL,'[\"Ed Exley\"]'),(119488,107,4,'actress',NULL,'[\"Lynn Bracken\"]'),(119488,436,5,'director',NULL,NULL),(119488,255278,6,'writer','based on the novel by',NULL),(119488,1338,7,'writer','screenplay by',NULL),(119488,586969,8,'producer','producer',NULL),(119488,622296,9,'producer','producer',NULL),(119517,3710,10,'production_designer',NULL,NULL),(119517,312,1,'actress',NULL,'[\"Mary\"]'),(119517,1173,2,'actor',NULL,'[\"Barry\"]'),(119517,1774,3,'actor',NULL,'[\"Jerry\"]'),(119517,176,4,'actress',NULL,'[\"Cheri\"]'),(119517,1438,5,'director',NULL,NULL),(119517,326512,6,'producer','producer',NULL),(119517,574,7,'producer','producer',NULL),(119517,775262,8,'cinematographer',NULL,NULL),(119517,687412,9,'editor',NULL,NULL),(119528,6570,10,'cinematographer','director of photography',NULL),(119528,120,1,'actor',NULL,'[\"Fletcher Reede\"]'),(119528,5491,2,'actress',NULL,'[\"Audrey Reede\"]'),(119528,372,3,'actress',NULL,'[\"Miranda\"]'),(119528,236,4,'actress',NULL,'[\"Samantha Cole\"]'),(119528,1723,5,'director',NULL,NULL),(119528,345488,6,'writer','written by',NULL),(119528,563397,7,'writer','written by',NULL),(119528,4976,8,'producer','producer',NULL),(119528,2201,9,'composer',NULL,NULL),(119535,386227,10,'editor',NULL,NULL),(119535,139,1,'actress',NULL,'[\"Celine\"]'),(119535,191,2,'actor',NULL,'[\"Robert\"]'),(119535,456,3,'actress',NULL,'[\"O\'Reilly\"]'),(119535,5148,4,'actor',NULL,'[\"Jackson\"]'),(119535,965,5,'director',NULL,NULL),(119535,388076,6,'writer','written by',NULL),(119535,531602,7,'producer','producer',NULL),(119535,3417,8,'composer',NULL,NULL),(119535,5909,9,'cinematographer',NULL,NULL),(119558,1553,10,'composer',NULL,NULL),(119558,460,1,'actor',NULL,'[\"Humbert Humbert\"]'),(119558,663,2,'actress',NULL,'[\"Dolores \'Lolita\' Haze\"]'),(119558,429,3,'actress',NULL,'[\"Charlotte Haze\"]'),(119558,1449,4,'actor',NULL,'[\"Clare Quilty\"]'),(119558,1490,5,'director',NULL,NULL),(119558,618603,6,'writer','novel \"Lolita\"',NULL),(119558,771496,7,'writer','screenplay',NULL),(119558,440830,8,'producer','producer',NULL),(119558,584382,9,'producer','producer',NULL),(119567,2354,10,'composer',NULL,NULL),(119567,156,1,'actor',NULL,'[\"Ian Malcolm\"]'),(119567,194,2,'actress',NULL,'[\"Sarah Harding\"]'),(119567,592,3,'actor',NULL,'[\"Roland Tembo\"]'),(119567,681,4,'actor',NULL,'[\"Nick Van Owen\"]'),(119567,229,5,'director',NULL,NULL),(119567,341,6,'writer','novel \"The Lost World\"',NULL),(119567,462895,7,'writer','screenplay',NULL),(119567,596520,8,'producer','producer',NULL),(119567,933213,9,'producer','producer',NULL),(119590,134992,10,'cinematographer',NULL,NULL),(119590,238878,1,'actor',NULL,'[\"Ludovic Fabre\"]'),(119590,488477,2,'actress',NULL,'[\"Hanna Fabre\"]'),(119590,959897,3,'actor',NULL,'[\"Pierre Fabre\"]'),(119590,898653,4,'actress',NULL,'[\"Élisabeth\"]'),(119590,75626,5,'director',NULL,NULL),(119590,888720,6,'writer','original story',NULL),(119590,779970,7,'producer','producer',NULL),(119590,197624,8,'composer',NULL,NULL),(119590,953919,9,'composer',NULL,NULL),(119643,143281,10,'writer','play \"Death Takes a Holiday\"',NULL),(119643,93,1,'actor',NULL,'[\"Joe Black\",\"Young Man in Coffee Shop\"]'),(119643,164,2,'actor',NULL,'[\"William Parrish\"]'),(119643,1231,3,'actress',NULL,'[\"Susan Parrish\"]'),(119643,916617,4,'actor',NULL,'[\"Drew\"]'),(119643,976,5,'director',NULL,NULL),(119643,651592,6,'writer','screenplay',NULL),(119643,719734,7,'writer','screenplay',NULL),(119643,905458,8,'writer','screenplay',NULL),(119643,325743,9,'writer','screenplay',NULL),(119654,384,10,'composer',NULL,NULL),(119654,169,1,'actor',NULL,'[\"Kay\"]'),(119654,226,2,'actor',NULL,'[\"Jay\"]'),(119654,400,3,'actress',NULL,'[\"Laurel\"]'),(119654,352,4,'actor',NULL,'[\"Edgar\"]'),(119654,1756,5,'director',NULL,NULL),(119654,192384,6,'writer','comic',NULL),(119654,4412,7,'writer','screen story',NULL),(119654,531827,8,'producer','producer',NULL),(119654,662748,9,'producer','producer',NULL),(119698,786707,10,'editor',NULL,NULL),(119698,559444,1,'actor',NULL,'[\"Ashitaka\"]'),(119698,410942,2,'actress',NULL,'[\"San\",\"Mononoke-Hime\",\"Kaya\"]'),(119698,849100,3,'actress',NULL,'[\"Eboshi-gozen\"]'),(119698,1082,4,'actor',NULL,'[\"Ashitaka\"]'),(119698,594503,5,'director',NULL,NULL),(119698,301274,6,'writer','adapted by: English version',NULL),(119698,840699,7,'producer','producer',NULL),(119698,386749,8,'composer',NULL,NULL),(119698,645777,9,'cinematographer',NULL,NULL),(119699,947390,10,'producer','producer',NULL),(119699,1718,1,'actress',NULL,'[\"Claire\"]'),(119699,1804,2,'actor',NULL,'[\"Nick\"]'),(119699,677,3,'actress',NULL,'[\"Kitty\"]'),(119699,1059,4,'actor',NULL,'[\"The Boss\"]'),(119699,500745,5,'director',NULL,NULL),(119699,388375,6,'writer','written by',NULL),(119699,388377,7,'writer','written by',NULL),(119699,177621,8,'producer','producer',NULL),(119699,506254,9,'producer','producer',NULL),(119707,295165,10,'writer','screenplay',NULL),(119707,795225,1,'actor',NULL,'[\"Liu Kang\"]'),(119707,650,2,'actress',NULL,'[\"Kitana\"]'),(119707,1664,3,'actor',NULL,'[\"Raiden\"]'),(119707,381524,4,'actress',NULL,'[\"Sonya Blade\"]'),(119707,502954,5,'director',NULL,NULL),(119707,95460,6,'writer','video games',NULL),(119707,440415,7,'writer','story',NULL),(119707,923312,8,'writer','story',NULL),(119707,864880,9,'writer','story',NULL),(119723,782794,10,'composer',NULL,NULL),(119723,603,1,'actress',NULL,'[\"Mrs. Clarissa Dalloway\"]'),(119723,1523,2,'actress',NULL,'[\"Young Clarissa\"]'),(119723,457655,3,'actor',NULL,'[\"Peter Walsh\"]'),(119723,184893,4,'actor',NULL,'[\"Young Peter\"]'),(119723,331296,5,'director',NULL,NULL),(119723,40586,6,'writer','screenplay',NULL),(119723,941173,7,'writer','novel',NULL),(119723,63127,8,'producer','producer',NULL),(119723,664179,9,'producer','producer',NULL),(119731,2366,10,'composer',NULL,NULL),(119731,648,1,'actor',NULL,'[\"Detective Regis\"]'),(119731,178,2,'actress',NULL,'[\"Nina Chance\"]'),(119731,73137,3,'actor',NULL,'[\"Spikings\"]'),(119731,588222,4,'actor',NULL,'[\"Detective Stengel\"]'),(119731,514546,5,'director',NULL,NULL),(119731,63511,6,'writer','written by',NULL),(119731,388227,7,'writer','written by',NULL),(119731,465745,8,'producer','producer',NULL),(119731,586969,9,'producer','producer',NULL),(119738,186602,10,'editor',NULL,NULL),(119738,210,1,'actress',NULL,'[\"Julianne Potter\"]'),(119738,551,2,'actor',NULL,'[\"Michael O\'Neal\"]'),(119738,139,3,'actress',NULL,'[\"Kimberly Wallace\"]'),(119738,391,4,'actor',NULL,'[\"George Downes\"]'),(119738,389591,5,'director',NULL,NULL),(119738,60103,6,'writer','written by',NULL),(119738,958387,7,'producer','producer',NULL),(119738,6133,8,'composer',NULL,NULL),(119738,4088,9,'cinematographer','director of photography',NULL),(119778,221971,10,'production_designer',NULL,NULL),(119778,204706,1,'actress',NULL,'[\"Erin Castleton\"]'),(119778,312297,2,'actor',NULL,'[\"Alan Monteiro\"]'),(119778,450,3,'actor',NULL,'[\"Sean\"]'),(119778,861361,4,'actress',NULL,'[\"Cricket\"]'),(119778,26442,5,'director',NULL,NULL),(119778,891299,6,'writer','screenplay',NULL),(119778,730429,7,'producer','producer',NULL),(119778,706420,8,'composer',NULL,NULL),(119778,3802,9,'cinematographer','director of photography',NULL),(119784,443832,10,'composer',NULL,NULL),(119784,1208,1,'actor',NULL,'[\"Richard Dees\"]'),(119784,258195,2,'actress',NULL,'[\"Katherine Blair\"]'),(119784,597517,3,'actor',NULL,'[\"Merton Morrison\"]'),(119784,609040,4,'actor',NULL,'[\"Dwight Renfield\"]'),(119784,667630,5,'director',NULL,NULL),(119784,175,6,'writer','story',NULL),(119784,640767,7,'writer','screenplay',NULL),(119784,302127,8,'producer','producer',NULL),(119784,748283,9,'producer','producer',NULL),(119809,1166,1,'actor',NULL,'[\"Dark\"]'),(119809,874086,2,'actress',NULL,'[\"Mel\"]'),(119809,79846,3,'actor',NULL,'[\"Montgomery\"]'),(119809,557859,4,'actress',NULL,'[\"Kriss\"]'),(119809,777,5,'director',NULL,NULL),(119809,818304,6,'producer','producer',NULL),(119809,807375,7,'cinematographer',NULL,NULL),(119809,4162,8,'production_designer',NULL,NULL),(119822,7037,10,'cinematographer','director of photography',NULL),(119822,197,1,'actor',NULL,'[\"Melvin Udall\"]'),(119822,166,2,'actress',NULL,'[\"Carol Connelly\"]'),(119822,1427,3,'actor',NULL,'[\"Simon Bishop\"]'),(119822,421,4,'actor',NULL,'[\"Frank Sachs\"]'),(119822,985,5,'director',NULL,NULL),(119822,29125,6,'writer','story',NULL),(119822,424660,7,'producer','producer',NULL),(119822,954034,8,'producer','producer',NULL),(119822,1877,9,'composer',NULL,NULL),(119859,589738,10,'producer','producer',NULL),(119859,335,1,'actress',NULL,'[\"Adrienne Pargiter\"]'),(119859,531,2,'actress',NULL,'[\"Dr. Verstak\"]'),(119859,172604,3,'actress',NULL,'[\"Margaret Drummond\"]'),(119859,949,4,'actress',NULL,'[\"Susan Macarthy\"]'),(119859,915,5,'director',NULL,NULL),(119859,318446,6,'writer','story',NULL),(119859,574996,7,'writer','story',NULL),(119859,420282,8,'writer','diaries',NULL),(119859,178505,9,'producer','producer',NULL),(119874,662748,10,'producer','producer',NULL),(119874,123,1,'actor',NULL,'[\"Thomas Devoe\"]'),(119874,173,2,'actress',NULL,'[\"Julia Kelly\"]'),(119874,411903,3,'actor',NULL,'[\"Dusan Gavrich\"]'),(119874,51282,4,'actor',NULL,'[\"Alexsander Kodoroff\"]'),(119874,1460,5,'director',NULL,NULL),(119874,168298,6,'writer','article One Point Safe',NULL),(119874,168285,7,'writer','article One Point Safe',NULL),(119874,771512,8,'writer','screenplay',NULL),(119874,527322,9,'producer','producer',NULL),(119891,812373,10,'producer','producer',NULL),(119891,564,1,'actor',NULL,'[\"Dr. Timothy Flyte\"]'),(119891,535,2,'actress',NULL,'[\"Lisa Pailey\"]'),(119891,324790,3,'actress',NULL,'[\"Jennifer Pailey, M.D.\"]'),(119891,630,4,'actor',NULL,'[\"Deputy Stuart \'Stu\' Wargle\"]'),(119891,152640,5,'director',NULL,NULL),(119891,465588,6,'writer','novel \"Phantoms\"',NULL),(119891,485569,7,'producer','producer',NULL),(119891,494999,8,'producer','producer',NULL),(119891,11977834,9,'producer','producer',NULL),(119896,1980,10,'composer',NULL,NULL),(119896,98,1,'actress',NULL,'[\"Kate\"]'),(119896,1542,2,'actor',NULL,'[\"Nick\"]'),(119896,102,3,'actor',NULL,'[\"Sam\"]'),(119896,1156,4,'actress',NULL,'[\"Rita\"]'),(119896,139111,5,'director',NULL,NULL),(119896,815071,6,'writer','story',NULL),(119896,805284,7,'writer','story',NULL),(119896,703515,8,'writer','story',NULL),(119896,831098,9,'producer','producer',NULL),(119918,191906,1,'actor',NULL,'[\"Winnie the Pooh\",\"Skullasaurus growls\",\"Tigger (singing)\"]'),(119918,275835,2,'actor',NULL,'[\"Piglet\"]'),(119918,763052,3,'actor',NULL,'[\"Rabbit\"]'),(119918,831254,4,'actor',NULL,'[\"Owl\"]'),(119918,315324,5,'director',NULL,NULL),(119918,590316,6,'writer','stories',NULL),(119918,188349,7,'writer','screenplay',NULL),(119918,424710,8,'composer',NULL,NULL),(119925,6133,10,'composer',NULL,NULL),(119925,126,1,'actor',NULL,'[\"The Postman\"]'),(119925,1599,2,'actor',NULL,'[\"General Bethlehem\"]'),(119925,5478,3,'actor',NULL,'[\"Ford Lincoln Mercury\"]'),(119925,931404,4,'actress',NULL,'[\"Abby\"]'),(119925,109432,5,'writer','novel',NULL),(119925,744839,6,'writer','screenplay',NULL),(119925,1338,7,'writer','screenplay',NULL),(119925,5494,8,'producer','producer',NULL),(119925,933604,9,'producer','producer',NULL),(119942,841,10,'cinematographer','director of photography',NULL),(119942,237,1,'actor',NULL,'[\"Governor Jack Stanton\"]'),(119942,668,2,'actress',NULL,'[\"Susan Stanton\"]'),(119942,870,3,'actress',NULL,'[\"Libby Holden\"]'),(119942,1306,4,'actor',NULL,'[\"Gov. Fred Picker\"]'),(119942,1566,5,'director',NULL,NULL),(119942,458826,6,'writer','novel',NULL),(119942,561938,7,'writer','screenplay',NULL),(119942,5004782,8,'producer','producer',NULL),(119942,176839,9,'composer',NULL,NULL),(120032,277722,10,'editor',NULL,NULL),(120032,227,1,'actress',NULL,'[\"Romy\"]'),(120032,1435,2,'actress',NULL,'[\"Michele\"]'),(120032,413,3,'actress',NULL,'[\"Heather\"]'),(120032,1086,4,'actor',NULL,'[\"Sandy Frink\"]'),(120032,592400,5,'director',NULL,NULL),(120032,771494,6,'writer','play \"The Ladies Room\"',NULL),(120032,548257,7,'producer','producer',NULL),(120032,58418,8,'composer',NULL,NULL),(120032,897794,9,'cinematographer','director of photography',NULL),(120082,5687,10,'cinematographer','director of photography',NULL),(120082,117,1,'actress',NULL,'[\"Sidney Prescott\"]'),(120082,1073,2,'actress',NULL,'[\"Gale Weathers\"]'),(120082,274,3,'actor',NULL,'[\"Dewey Riley\"]'),(120082,586,4,'actress',NULL,'[\"Maureen\"]'),(120082,127,5,'director',NULL,NULL),(120082,932078,6,'writer','characters',NULL),(120082,465298,7,'producer','producer',NULL),(120082,534543,8,'producer','producer',NULL),(120082,1937,9,'composer',NULL,NULL),(120089,816788,10,'editor',NULL,NULL),(120089,583487,1,'actress',NULL,'[\"Nicole Voss\"]'),(120089,4941,2,'actress',NULL,'[\"Emily De Capprio\"]'),(120089,440860,3,'actor',NULL,'[\"Greg Dunleavy\"]'),(120089,641417,4,'actor',NULL,'[\"Ted Dunleavy\"]'),(120089,636495,5,'director',NULL,NULL),(120089,294352,6,'writer','written by',NULL),(120089,459036,7,'producer','producer',NULL),(120089,12114,8,'composer',NULL,NULL),(120089,4678,9,'cinematographer','director of photography',NULL),(120094,724706,10,'editor',NULL,NULL),(120094,182,1,'actress',NULL,'[\"Selena Quintanilla\"]'),(120094,1579,2,'actor',NULL,'[\"Abraham Quintanilla\"]'),(120094,781218,3,'actor',NULL,'[\"Chris Perez\"]'),(120094,346027,4,'actress',NULL,'[\"Suzette Quintanilla\"]'),(120094,622695,5,'director',NULL,NULL),(120094,260800,6,'producer','producer',NULL),(120094,441831,7,'producer','producer',NULL),(120094,6115,8,'composer',NULL,NULL),(120094,5767,9,'cinematographer','director of photography',NULL),(120102,2354,10,'composer',NULL,NULL),(120102,93,1,'actor',NULL,'[\"Heinrich Harrer\"]'),(120102,667,2,'actor',NULL,'[\"Peter Aufschnaiter\"]'),(120102,703,3,'actor',NULL,'[\"Ngawang Jigme\"]'),(120102,538683,4,'actor',NULL,'[\"Kungo Tsarong\"]'),(120102,269,5,'director',NULL,NULL),(120102,364143,6,'writer','book',NULL),(120102,426539,7,'writer','screenplay',NULL),(120102,808498,8,'producer','producer',NULL),(120102,930964,9,'producer','producer',NULL),(120108,6059,10,'composer',NULL,NULL),(120108,110,1,'actor',NULL,'[\"Michael\"]'),(120108,656,2,'actress',NULL,'[\"Eleanor\"]'),(120108,458,3,'actor',NULL,'[\"Arthur\"]'),(120108,5162,4,'actor',NULL,'[\"Hannibal\"]'),(120108,322128,5,'director',NULL,NULL),(120108,707931,6,'writer','written by',NULL),(120108,276059,7,'producer','producer',NULL),(120108,472256,8,'producer','producer',NULL),(120108,618558,9,'producer','producer',NULL),(120131,903392,10,'writer','additional written material',NULL),(120131,111,1,'actor',NULL,'[\"Simba\"]'),(120131,117,2,'actress',NULL,'[\"Kiara\"]'),(120131,4873,3,'actor',NULL,'[\"Nuka\"]'),(120131,347039,4,'actor',NULL,'[\"Rafiki\"]'),(120131,740311,5,'director',NULL,NULL),(120131,480349,6,'director','co-director',NULL),(120131,462164,7,'writer','screenplay',NULL),(120131,546083,8,'writer','screenplay',NULL),(120131,935053,9,'writer','additional written material',NULL),(120133,5976,10,'composer',NULL,NULL),(120133,1737,1,'actor',NULL,'[\"Murray\"]'),(120133,933798,2,'actress',NULL,'[\"Anabel\"]'),(120133,665123,3,'actor',NULL,'[\"Oliver\"]'),(120133,2039,4,'actress',NULL,'[\"Hortense\"]'),(120133,6916,5,'director',NULL,NULL),(120133,745087,6,'writer','written by',NULL),(120133,790898,7,'producer','producer',NULL),(120133,790900,8,'producer','producer',NULL),(120133,790901,9,'producer','producer',NULL),(120148,1899,10,'cinematographer',NULL,NULL),(120148,569,1,'actress',NULL,'[\"Helen\"]'),(120148,1314,2,'actor',NULL,'[\"James\"]'),(120148,1487,3,'actor',NULL,'[\"Gerry\"]'),(120148,675,4,'actress',NULL,'[\"Lydia\"]'),(120148,398185,5,'director',NULL,NULL),(120148,104088,6,'producer','producer',NULL),(120148,394564,7,'producer','producer',NULL),(120148,1628,8,'producer','producer',NULL),(120148,386595,9,'composer',NULL,NULL),(120152,4581,10,'composer',NULL,NULL),(120152,566,1,'actress',NULL,'[\"Smilla Jaspersen\"]'),(120152,11361245,2,'actor',NULL,'[\"Inuit Hunter\"]'),(120152,647583,3,'actress',NULL,'[\"Juliane Christiansen\"]'),(120152,276012,4,'actor',NULL,'[\"Policeman\"]'),(120152,806,5,'director',NULL,NULL),(120152,406032,6,'writer','novel \"Frøken Smillas fornemmelse for sne\"',NULL),(120152,81189,7,'writer','screenplay',NULL),(120152,251536,8,'producer','producer',NULL),(120152,609265,9,'producer','producer',NULL),(120169,254580,10,'cinematographer','director of photography',NULL),(120169,1853,1,'actress',NULL,'[\"Teri\"]'),(120169,407,2,'actress',NULL,'[\"Maxine\"]'),(120169,505,3,'actress',NULL,'[\"Bird\"]'),(120169,4729,4,'actor',NULL,'[\"Miles\"]'),(120169,863387,5,'director',NULL,NULL),(120169,249525,6,'producer','producer',NULL),(120169,854052,7,'producer','producer',NULL),(120169,171123,8,'composer',NULL,NULL),(120169,578540,9,'composer',NULL,NULL),(120177,622897,10,'cinematographer','director of photography',NULL),(120177,925220,1,'actor',NULL,'[\"Al Simmons\",\"Spawn\"]'),(120177,491,2,'actor',NULL,'[\"Clown\",\"Violator\"]'),(120177,640,3,'actor',NULL,'[\"Jason Wynn\"]'),(120177,5337,4,'actress',NULL,'[\"Wanda Blake\"]'),(120177,228147,5,'director',NULL,NULL),(120177,568825,6,'writer','comic book',NULL),(120177,568416,7,'writer','screen story',NULL),(120177,325755,8,'producer','producer',NULL),(120177,6251,9,'composer',NULL,NULL),(120184,906993,10,'producer','producer',NULL),(120184,163,1,'actor',NULL,'[\"Norman\"]'),(120184,232,2,'actress',NULL,'[\"Beth\"]'),(120184,168,3,'actor',NULL,'[\"Harry\"]'),(120184,1075,4,'actor',NULL,'[\"Barnes\"]'),(120184,1469,5,'director',NULL,NULL),(120184,341,6,'writer','novel',NULL),(120184,934483,7,'writer','adaptation',NULL),(120184,369561,8,'writer','screenplay',NULL),(120184,1921,9,'writer','screenplay',NULL),(120185,3275,10,'producer','producer',NULL),(120185,114256,1,'actress',NULL,'[\"Scary Spice\"]'),(120185,1978,2,'actress',NULL,'[\"Baby Spice\"]'),(120185,4822,3,'actress',NULL,'[\"Sporty Spice\"]'),(120185,1312,4,'actress',NULL,'[\"Ginger Spice\"]'),(120185,818639,5,'director',NULL,NULL),(120185,1381694,6,'writer','idea',NULL),(120185,298279,7,'writer','idea',NULL),(120185,193370,8,'writer','additional writing',NULL),(120185,296641,9,'producer','producer',NULL),(120201,6231,10,'composer',NULL,NULL),(120201,680,1,'actor',NULL,'[\"Johnny Rico\"]'),(120201,612,2,'actress',NULL,'[\"Carmen Ibanez\"]'),(120201,539,3,'actress',NULL,'[\"Dizzy Flores\"]'),(120201,998,4,'actor',NULL,'[\"Ace Levy\"]'),(120201,682,5,'director',NULL,NULL),(120201,627159,6,'writer','screenplay',NULL),(120201,374423,7,'writer','book',NULL),(120201,205727,8,'producer','producer',NULL),(120201,550728,9,'producer','producer',NULL),(120207,800210,10,'producer','producer',NULL),(120207,641944,1,'actor',NULL,'[\"John Henry Irons\"]'),(120207,1272,2,'actress',NULL,'[\"Sparky\"]'),(120207,555,3,'actor',NULL,'[\"Nathaniel Burke\"]'),(120207,745780,4,'actor',NULL,'[\"Uncle Joe\"]'),(120207,425540,5,'director',NULL,NULL),(120207,800791,6,'writer','comic book series',NULL),(120207,91650,7,'writer','comic book series',NULL),(120207,5065,8,'producer','producer',NULL),(120207,759566,9,'producer','producer',NULL),(120265,259831,1,'actor',NULL,'[\"Mr. Badii\"]'),(120265,46667,2,'actor',NULL,'[\"Mr. Bagheri\"]'),(120265,49086,3,'actor',NULL,'[\"The Soldier\"]'),(120265,602392,4,'actor',NULL,'[\"The Soldier\"]'),(120265,452102,5,'director',NULL,NULL),(120265,220013,6,'producer','producer',NULL),(120265,668537,7,'cinematographer',NULL,NULL),(120274,5886,10,'cinematographer',NULL,NULL),(120274,813691,1,'actor',NULL,'[\"Mario Suárez\"]'),(120274,621507,2,'actress',NULL,'[\"Laura Fuentes\"]'),(120274,535502,3,'actress',NULL,'[\"Elena Flores\"]'),(120274,178690,4,'actor',NULL,'[\"Carlos Nebbia\"]'),(120274,767022,5,'director',NULL,NULL),(120274,168437,6,'producer','producer',NULL),(120274,579852,7,'producer','producer',NULL),(120274,768771,8,'producer','producer',NULL),(120274,6277,9,'composer',NULL,NULL),(120321,2809,10,'cinematographer','director of photography',NULL),(120321,63440,1,'actor',NULL,'[\"Victor Joseph\"]'),(120321,10963,2,'actor',NULL,'[\"Thomas Builds-the-Fire\"]'),(120321,65942,3,'actress',NULL,'[\"Suzy Song\"]'),(120321,1200,4,'actor',NULL,'[\"Arnold Joseph\"]'),(120321,264220,5,'director',NULL,NULL),(120321,18963,6,'writer','screenplay',NULL),(120321,261663,7,'producer','producer',NULL),(120321,742586,8,'producer','producer',NULL),(120321,807413,9,'composer',NULL,NULL),(120338,365239,10,'editor',NULL,NULL),(120338,138,1,'actor',NULL,'[\"Jack Dawson\"]'),(120338,701,2,'actress',NULL,'[\"Rose Dewitt Bukater\"]'),(120338,708,3,'actor',NULL,'[\"Cal Hockley\"]'),(120338,870,4,'actress',NULL,'[\"Molly Brown\"]'),(120338,116,5,'director',NULL,NULL),(120338,484457,6,'producer','producer',NULL),(120338,35,7,'composer',NULL,NULL),(120338,5665,8,'cinematographer','director of photography',NULL),(120338,119322,9,'editor',NULL,NULL),(120347,3417,10,'composer',NULL,NULL),(120347,112,1,'actor',NULL,'[\"James Bond\"]'),(120347,596,2,'actor',NULL,'[\"Elliot Carver\"]'),(120347,706,3,'actress',NULL,'[\"Wai Lin\"]'),(120347,159,4,'actress',NULL,'[\"Paris Carver\"]'),(120347,6854,5,'director',NULL,NULL),(120347,270761,6,'writer','written by',NULL),(120347,1220,7,'writer','characters',NULL),(120347,110483,8,'producer','producer',NULL),(120347,933865,9,'producer','producer',NULL),(120363,398763,10,'writer','screenplay by',NULL),(120363,158,1,'actor',NULL,'[\"Woody\"]'),(120363,741,2,'actor',NULL,'[\"Buzz Lightyear\"]'),(120363,349,3,'actress',NULL,'[\"Jessie\"]'),(120363,1288,4,'actor',NULL,'[\"Prospector\"]'),(120363,5124,5,'director',NULL,NULL),(120363,105169,6,'director','co-director',NULL),(120363,881279,7,'director','co-director',NULL),(120363,230032,8,'writer','original story by',NULL),(120363,4056,9,'writer','original story by',NULL),(120382,902129,10,'composer',NULL,NULL),(120382,120,1,'actor',NULL,'[\"Truman Burbank\"]'),(120382,438,2,'actor',NULL,'[\"Christof\"]'),(120382,1473,3,'actress',NULL,'[\"Meryl Burbank\",\"Hannah Gill\"]'),(120382,1187,4,'actor',NULL,'[\"Marlon\"]'),(120382,1837,5,'director',NULL,NULL),(120382,629272,6,'writer','written by',NULL),(120382,271026,7,'producer','producer',NULL),(120382,748784,8,'producer','producer',NULL),(120382,775443,9,'producer','producer',NULL),(120389,2120520,10,'writer','original creator: \"Super Sentai\"',NULL),(120389,290969,1,'actor',NULL,'[\"Tommy Oliver\",\"Red Turbo Ranger\"]'),(120389,840059,2,'actress',NULL,'[\"Katherine \'Kat\' Hillard\",\"Pink Turbo Ranger\"]'),(120389,5422,3,'actress',NULL,'[\"Divatox\"]'),(120389,799312,4,'actor',NULL,'[\"Lerigot\"]'),(120389,506619,5,'director',NULL,NULL),(120389,3941,6,'director',NULL,NULL),(120389,200164,7,'writer','written by',NULL),(120389,536805,8,'writer','based upon \"Mighty Morphin Power Rangers\" created by',NULL),(120389,411127,9,'writer','original creator: \"Super Sentai\"',NULL),(120434,5710,10,'cinematographer','director of photography',NULL),(120434,331,1,'actor',NULL,'[\"Clark Griswold\"]'),(120434,350,2,'actress',NULL,'[\"Ellen Griswold\"]'),(120434,1642,3,'actor',NULL,'[\"Cousin Eddie\"]'),(120434,256121,4,'actor',NULL,'[\"Rusty Griswold\"]'),(120434,450387,5,'director',NULL,NULL),(120434,68183,6,'writer','story',NULL),(120434,3032,7,'writer','story',NULL),(120434,5545,8,'producer','producer',NULL),(120434,6193,9,'composer',NULL,NULL),(120449,862961,10,'composer',NULL,NULL),(120449,1965,1,'actress',NULL,'[\"Isabelle \'Isa\' Tostin\"]'),(120449,753696,2,'actress',NULL,'[\"Marie Thomas\"]'),(120449,171499,3,'actor',NULL,'[\"Chriss\"]'),(120449,580174,4,'actor',NULL,'[\"Charly\"]'),(120449,957794,5,'director',NULL,NULL),(120449,92006,6,'writer','writer',NULL),(120449,906174,7,'writer','artistic collaboration',NULL),(120449,159262,8,'writer','writer',NULL),(120449,549907,9,'producer','producer',NULL),(120458,250867,10,'cinematographer','director of photography',NULL),(120458,130,1,'actress',NULL,'[\"Kit Foster\"]'),(120458,661,2,'actor',NULL,'[\"Captain Robert Everton\"]'),(120458,287,3,'actor',NULL,'[\"Steve Baker\"]'),(120458,1586,4,'actress',NULL,'[\"Nadia\"]'),(120458,116497,5,'director',NULL,NULL),(120458,679326,6,'writer','creator: Dark Horse Comic Book series: \"Virus\"',NULL),(120458,271022,7,'writer','screenplay',NULL),(120458,5036,8,'producer','producer',NULL),(120458,6193,9,'composer',NULL,NULL),(120461,6293,10,'composer',NULL,NULL),(120461,169,1,'actor',NULL,'[\"Mike Roark\"]'),(120461,162,2,'actress',NULL,'[\"Dr. Amy Barnes\"]'),(120461,451,3,'actress',NULL,'[\"Kelly Roark\"]'),(120461,332,4,'actor',NULL,'[\"Emmit Reese\"]'),(120461,413875,5,'director',NULL,NULL),(120461,35749,6,'writer','story',NULL),(120461,712753,7,'writer','screenplay',NULL),(120461,2397,8,'producer','producer',NULL),(120461,605775,9,'producer','producer',NULL),(120484,77149,10,'cinematographer','director of photography',NULL),(120484,1191,1,'actor',NULL,'[\"Bobby Boucher\"]'),(120484,870,2,'actress',NULL,'[\"Mama Boucher\"]'),(120484,1857,3,'actor',NULL,'[\"Coach Klein\"]'),(120484,103,4,'actress',NULL,'[\"Vicki Vallencourt\"]'),(120484,178997,5,'director',NULL,NULL),(120484,379056,6,'writer','written by',NULL),(120484,316406,7,'producer','producer',NULL),(120484,800465,8,'producer','producer',NULL),(120484,664676,9,'composer',NULL,NULL),(120493,907999,10,'cinematographer',NULL,NULL),(120493,704802,1,'actress',NULL,'[\"Hester\"]'),(120493,1584,2,'actress',NULL,'[\"Katherine\"]'),(120493,160945,3,'actor',NULL,'[\"Harry Bird\"]'),(120493,933407,4,'actor',NULL,'[\"Francis Harper\"]'),(120493,485904,5,'director',NULL,NULL),(120493,428630,6,'writer','screenplay',NULL),(120493,427156,7,'writer','novel',NULL),(120493,506607,8,'producer','producer',NULL),(120493,706003,9,'composer',NULL,NULL),(120512,6193,10,'composer',NULL,NULL),(120512,1795,1,'actor',NULL,'[\"Marshall\"]'),(120512,1701,2,'actor',NULL,'[\"Mark\"]'),(120512,282,3,'actor',NULL,'[\"Marty\"]'),(120512,4920,4,'actress',NULL,'[\"Agnes\"]'),(120512,213100,5,'director',NULL,NULL),(120512,927345,6,'writer','written by',NULL),(120512,732708,7,'producer','producer',NULL),(120512,808511,8,'producer','producer',NULL),(120512,832824,9,'producer','producer',NULL),(120514,6341,10,'composer',NULL,NULL),(120514,410,1,'actor',NULL,'[\"Oscar Wilde\"]'),(120514,179,2,'actor',NULL,'[\"Lord Alfred Douglas\"]'),(120514,603,3,'actress',NULL,'[\"Lady \'Speranza\' Wilde\"]'),(120514,383,4,'actress',NULL,'[\"Constance Wilde\"]'),(120514,317981,5,'director',NULL,NULL),(120514,593483,6,'writer','original screenplay',NULL),(120514,255264,7,'writer','based on the book by',NULL),(120514,760555,8,'producer','producer',NULL),(120514,6873,9,'producer','producer',NULL),(120521,4383,10,'composer',NULL,NULL),(120521,492373,1,'actress',NULL,'[\"Elspeth\"]'),(120521,668,2,'actress',NULL,'[\"Frances\"]'),(120521,715693,3,'actress',NULL,'[\"Lily\"]'),(120521,900806,4,'actress',NULL,'[\"Chloe\"]'),(120521,614,5,'director',NULL,NULL),(120521,531930,6,'writer','screenplay',NULL),(120521,164626,7,'producer','producer',NULL),(120521,513601,8,'producer','producer',NULL),(120521,696299,9,'producer','producer',NULL),(120533,110,1,'actor',NULL,'[\"Lee Simon\"]'),(120533,1114,2,'actress',NULL,'[\"Robin Simon\"]'),(120533,138,3,'actor',NULL,'[\"Brandon Darrow\"]'),(120533,609549,4,'actor',NULL,'[\"Director\"]'),(120533,95,5,'director',NULL,NULL),(120533,235389,6,'producer','producer',NULL),(120533,5815,7,'cinematographer','director of photography',NULL),(120533,607673,8,'editor',NULL,NULL),(120533,520288,9,'production_designer',NULL,NULL),(120536,177942,10,'editor',NULL,NULL),(120536,4929,1,'actor',NULL,'[\"Nelson Hibbert\"]'),(120536,383371,2,'actor',NULL,'[\"Det. Arlen\"]'),(120536,236,3,'actress',NULL,'[\"Lynn Holden\"]'),(120536,280886,4,'actor',NULL,'[\"Fred Holden\"]'),(120536,825731,5,'director',NULL,NULL),(120536,463124,6,'writer','written by',NULL),(120536,805265,7,'producer','producer',NULL),(120536,795340,8,'composer',NULL,NULL),(120536,538610,9,'cinematographer','director of photography',NULL),(120577,344738,10,'cinematographer','director of photography',NULL),(120577,202,1,'actor',NULL,'[\"Shane O\'Shea\"]'),(120577,161,2,'actress',NULL,'[\"Anita\"]'),(120577,117,3,'actress',NULL,'[\"Julie Black\"]'),(120577,196,4,'actor',NULL,'[\"Steve Rubell\"]'),(120577,160602,5,'director',NULL,NULL),(120577,222048,6,'producer','producer',NULL),(120577,321621,7,'producer','producer',NULL),(120577,355502,8,'producer','producer',NULL),(120577,1937,9,'composer',NULL,NULL),(120586,374189,10,'editor',NULL,NULL),(120586,1570,1,'actor',NULL,'[\"Derek\"]'),(120586,411,2,'actor',NULL,'[\"Danny\"]'),(120586,350,3,'actress',NULL,'[\"Doris\"]'),(120586,497,4,'actress',NULL,'[\"Davina\"]'),(120586,443411,5,'director',NULL,NULL),(120586,571346,6,'writer','written by',NULL),(120586,554204,7,'producer','producer',NULL),(120586,6050,8,'composer',NULL,NULL),(120586,338513,9,'editor',NULL,NULL),(120587,506977,10,'producer','producer',NULL),(120587,95,1,'actor',NULL,'[\"Z\"]'),(120587,232,2,'actress',NULL,'[\"Bala\"]'),(120587,432,3,'actor',NULL,'[\"Mandible\"]'),(120587,230,4,'actor',NULL,'[\"Weaver\"]'),(120587,201509,5,'director',NULL,NULL),(120587,426333,6,'director',NULL,NULL),(120587,17305,7,'writer','screenplay',NULL),(120587,919363,8,'writer','screenplay',NULL),(120587,919369,9,'writer','screenplay',NULL),(120591,690798,10,'writer','story',NULL),(120591,246,1,'actor',NULL,'[\"Harry S. Stamper\"]'),(120591,671,2,'actor',NULL,'[\"Dan Truman\"]'),(120591,255,3,'actor',NULL,'[\"A.J. Frost\"]'),(120591,239,4,'actress',NULL,'[\"Grace Stamper\"]'),(120591,881,5,'director',NULL,NULL),(120591,378144,6,'writer','screenplay',NULL),(120591,9190,7,'writer','screenplay',NULL),(120591,6904,8,'writer','adaptation',NULL),(120591,4307,9,'writer','adaptation',NULL),(120601,5468,10,'producer','producer',NULL),(120601,131,1,'actor',NULL,'[\"Craig Schwartz\"]'),(120601,139,2,'actress',NULL,'[\"Lotte Schwartz\"]'),(120601,1416,3,'actress',NULL,'[\"Maxine Lund\"]'),(120601,518,4,'actor',NULL,'[\"John Horatio Malkovich\"]'),(120601,5069,5,'director',NULL,NULL),(120601,442109,6,'writer','written by',NULL),(120601,326512,7,'producer','producer',NULL),(120601,484504,8,'producer','producer',NULL),(120601,827840,9,'producer','producer',NULL),(120603,287164,10,'producer','producer',NULL),(120603,1856,1,'actress',NULL,'[\"Sethe\"]'),(120603,418,2,'actor',NULL,'[\"Paul D\"]'),(120603,66463,3,'actress',NULL,'[\"Denver aged 9\"]'),(120603,684460,4,'actor',NULL,'[\"Howard aged 14\"]'),(120603,1129,5,'director',NULL,NULL),(120603,607339,6,'writer','novel',NULL),(120603,124333,7,'writer','screenplay',NULL),(120603,481418,8,'writer','screenplay',NULL),(120603,111845,9,'writer','screenplay',NULL),(120611,5856,10,'cinematographer','director of photography',NULL),(120611,648,1,'actor',NULL,'[\"Blade\"]'),(120611,1151,2,'actor',NULL,'[\"Deacon Frost\"]'),(120611,1434,3,'actor',NULL,'[\"Whistler\"]'),(120611,942668,4,'actress',NULL,'[\"Karen\"]'),(120611,635759,5,'director',NULL,NULL),(120611,275286,6,'writer','written by',NULL),(120611,257258,7,'producer','producer',NULL),(120611,291293,8,'producer','producer',NULL),(120611,6142,9,'composer',NULL,NULL),(120613,462867,10,'producer','producer',NULL),(120613,178,1,'actress',NULL,'[\"Pearl Kantrowitz\"]'),(120613,1557,2,'actor',NULL,'[\"Walker Jerome\"]'),(120613,96772,3,'actor',NULL,'[\"Daniel Kantrowitz\"]'),(120613,1593,4,'actress',NULL,'[\"Alison Kantrowitz\"]'),(120613,1282,5,'director',NULL,NULL),(120613,336861,6,'writer','written by',NULL),(120613,1530021,7,'producer','producer',NULL),(120613,332069,8,'producer','producer',NULL),(120613,163,9,'producer','producer',NULL),(120616,770337,10,'writer','story',NULL),(120616,409,1,'actor',NULL,'[\"Rick O\'Connell\"]'),(120616,1838,2,'actress',NULL,'[\"Evelyn Carnahan\"]'),(120616,1314,3,'actor',NULL,'[\"Jonathan Carnahan\"]'),(120616,903677,4,'actor',NULL,'[\"Imhotep\"]'),(120616,814085,5,'director',NULL,NULL),(120616,285126,6,'writer','screen story',NULL),(120616,418883,7,'writer','screen story',NULL),(120616,49721,8,'writer',NULL,NULL),(120616,701233,9,'writer','story',NULL),(120620,165679,10,'editor',NULL,NULL),(120620,132,1,'actress',NULL,'[\"Alice Marano\"]'),(120620,295,2,'actress',NULL,'[\"Darlene Davis\"]'),(120620,597,3,'actor',NULL,'[\"Hank Greene\"]'),(120620,453492,4,'actress',NULL,'[\"Yon Greene\"]'),(120620,438279,5,'director',NULL,NULL),(120620,276178,6,'writer','story',NULL),(120620,33153,7,'writer','story',NULL),(120620,628056,8,'composer',NULL,NULL),(120620,5875,9,'cinematographer',NULL,NULL),(120623,26565,10,'producer','producer',NULL),(120623,228,1,'actor',NULL,'[\"Hopper\"]'),(120623,4929,2,'actor',NULL,'[\"Flik\"]'),(120623,506,3,'actress',NULL,'[\"Atta\"]'),(120623,659363,4,'actress',NULL,'[\"Dot\"]'),(120623,5124,5,'director',NULL,NULL),(120623,4056,6,'director','co-director',NULL),(120623,710020,7,'writer','original story by',NULL),(120623,568490,8,'writer','screenplay by',NULL),(120623,789624,9,'writer','screenplay by',NULL),(120630,819862,10,'producer','producer',NULL),(120630,154,1,'actor',NULL,'[\"Rocky\"]'),(120630,768018,2,'actress',NULL,'[\"Ginger\"]'),(120630,200057,3,'actor',NULL,'[\"Fetcher\"]'),(120630,272521,4,'actress',NULL,'[\"Mac\"]'),(120630,520485,5,'director',NULL,NULL),(120630,661910,6,'director',NULL,NULL),(120630,456732,7,'writer','screenplay',NULL),(120630,123666,8,'writer','additional dialogue',NULL),(120630,640976,9,'writer','additional dialogue',NULL),(120631,872058,10,'producer','producer',NULL),(120631,106,1,'actress',NULL,'[\"Danielle\"]'),(120631,1378,2,'actress',NULL,'[\"Rodmilla\"]'),(120631,779084,3,'actor',NULL,'[\"Prince Henry\"]'),(120631,324009,4,'actor',NULL,'[\"Leonardo\"]'),(120631,855035,5,'director',NULL,NULL),(120631,335666,6,'writer','screenplay',NULL),(120631,663002,7,'writer','screenplay',NULL),(120631,674518,8,'writer',NULL,NULL),(120631,814969,9,'producer','producer',NULL),(120632,746273,10,'producer','producer',NULL),(120632,115,1,'actor',NULL,'[\"Seth\"]'),(120632,212,2,'actress',NULL,'[\"Dr. Maggie Rice\"]'),(120632,105672,3,'actor',NULL,'[\"Cassiel\"]'),(120632,1240,4,'actor',NULL,'[\"Nathaniel Messinger\"]'),(120632,797869,5,'director',NULL,NULL),(120632,694,6,'writer','screenplay \"Der Himmel über Berlin\"',NULL),(120632,359563,7,'writer','screenplay \"Der Himmel über Berlin\"',NULL),(120632,718637,8,'writer','screenplay \"Der Himmel über Berlin\"',NULL),(120632,828342,9,'writer','screenplay',NULL),(120643,924013,10,'composer',NULL,NULL),(120643,658,1,'actress',NULL,'[\"Kate Mundy\"]'),(120643,2091,2,'actor',NULL,'[\"Father Jack Mundy\"]'),(120643,574561,3,'actor',NULL,'[\"Narration by\"]'),(120643,1517,4,'actress',NULL,'[\"Christina Mundy\"]'),(120643,640466,5,'director',NULL,NULL),(120643,295486,6,'writer','play',NULL),(120643,570128,7,'writer','screenplay',NULL),(120643,947102,8,'writer','poem \"Down by the Salley Gardens\"',NULL),(120643,669348,9,'producer','producer',NULL),(120646,930,10,'composer',NULL,NULL),(120646,201,1,'actress',NULL,'[\"Beth\"]'),(120646,1852,2,'actor',NULL,'[\"Pat\"]'),(120646,155,3,'actress',NULL,'[\"Candy\"]'),(120646,5044,4,'actor',NULL,'[\"Vincent (age 16)\"]'),(120646,343260,5,'director',NULL,NULL),(120646,593066,6,'writer','book',NULL),(120646,771496,7,'writer','screenplay',NULL),(120646,347443,8,'producer','producer',NULL),(120646,630222,9,'producer','producer',NULL),(120647,35,10,'composer',NULL,NULL),(120647,380,1,'actor',NULL,'[\"Spurgeon Tanner\"]'),(120647,495,2,'actress',NULL,'[\"Jenny Lerner\"]'),(120647,704,3,'actor',NULL,'[\"Leo Biederman\"]'),(120647,151,4,'actor',NULL,'[\"President Beck\"]'),(120647,1460,5,'director',NULL,NULL),(120647,748022,6,'writer','written by',NULL),(120647,866062,7,'writer','written by',NULL),(120647,113360,8,'producer','producer',NULL),(120647,5573,9,'producer','producer',NULL),(120655,255,1,'actor',NULL,'[\"Bartleby\"]'),(120655,354,2,'actor',NULL,'[\"Loki\"]'),(120655,400,3,'actress',NULL,'[\"Bethany\"]'),(120655,1069,4,'actor',NULL,'[\"John Doe Jersey\"]'),(120655,3620,5,'director',NULL,NULL),(120655,608714,6,'producer','producer',NULL),(120655,6290,7,'composer',NULL,NULL),(120655,5934,8,'cinematographer','director of photography',NULL),(120655,392692,9,'production_designer',NULL,NULL),(120657,25,10,'composer',NULL,NULL),(120657,104,1,'actor',NULL,'[\"Ahmed Ibn Fahdlan\"]'),(120657,893204,2,'actress',NULL,'[\"Queen Weilew\"]'),(120657,832509,3,'actor',NULL,'[\"Herger - Joyous\"]'),(120657,474520,4,'actor',NULL,'[\"Buliwyf - Leader\"]'),(120657,1532,5,'director',NULL,NULL),(120657,341,6,'director',NULL,NULL),(120657,936537,7,'writer','screenplay',NULL),(120657,507863,8,'writer','screenplay',NULL),(120657,235684,9,'producer','producer',NULL),(120660,591053,10,'cinematographer','director of photography',NULL),(120660,226,1,'actor',NULL,'[\"Robert Clayton Dean\"]'),(120660,432,2,'actor',NULL,'[\"Edward Lyle\",\"Brill\"]'),(120660,685,3,'actor',NULL,'[\"Thomas Brian Reynolds\"]'),(120660,956,4,'actress',NULL,'[\"Rachel F. Banks\"]'),(120660,1716,5,'director',NULL,NULL),(120660,545861,6,'writer','written by',NULL),(120660,988,7,'producer','producer',NULL),(120660,4581,8,'composer',NULL,NULL),(120660,704909,9,'composer',NULL,NULL),(120663,303348,10,'editor',NULL,NULL),(120663,129,1,'actor',NULL,'[\"Dr. William Harford\"]'),(120663,173,2,'actress',NULL,'[\"Alice Harford\"]'),(120663,276062,3,'actor',NULL,'[\"Nick Nightingale\"]'),(120663,1628,4,'actor',NULL,'[\"Victor Ziegler\"]'),(120663,40,5,'director',NULL,NULL),(120663,710698,6,'writer','screenplay',NULL),(120663,774217,7,'writer','inspired by \"Traumnovelle\" by',NULL),(120663,690772,8,'composer',NULL,NULL),(120663,809040,9,'cinematographer',NULL,NULL),(120667,32696,10,'producer','producer',NULL),(120667,344435,1,'actor',NULL,'[\"Reed Richards\"]'),(120667,4821,2,'actor',NULL,'[\"Ben Grimm\"]'),(120667,262635,3,'actor',NULL,'[\"Johnny Storm\"]'),(120667,4695,4,'actress',NULL,'[\"Sue Storm\"]'),(120667,1103162,5,'director',NULL,NULL),(120667,4111,6,'writer','written by',NULL),(120667,289833,7,'writer','written by',NULL),(120667,498278,8,'writer','Marvel comic book',NULL),(120667,456158,9,'writer','Marvel comic book',NULL),(120669,144025,10,'producer','producer',NULL),(120669,136,1,'actor',NULL,'[\"Raoul Duke\"]'),(120669,1125,2,'actor',NULL,'[\"Dr. Gonzo\"]'),(120669,1497,3,'actor',NULL,'[\"Hitchhiker\"]'),(120669,324672,4,'actor',NULL,'[\"Uniformed Dwarf\"]'),(120669,416,5,'director',NULL,NULL),(120669,860219,6,'writer','book',NULL),(120669,342617,7,'writer','screenplay',NULL),(120669,204000,8,'writer','screenplay',NULL),(120669,7182,9,'writer','screenplay',NULL),(120679,858482,10,'writer','screenplay',NULL),(120679,161,1,'actress',NULL,'[\"Frida Kahlo\"]'),(120679,547,2,'actor',NULL,'[\"Diego Rivera\"]'),(120679,1691,3,'actor',NULL,'[\"Leon Trotsky\"]'),(120679,535502,4,'actress',NULL,'[\"Cristina Kahlo\"]'),(120679,853380,5,'director',NULL,NULL),(120679,380419,6,'writer','book \"Frida: A Biography of Frida Kahlo\"',NULL),(120679,797397,7,'writer','screenplay',NULL),(120679,1187860,8,'writer','screenplay',NULL),(120679,622695,9,'writer','screenplay',NULL),(120681,947913,10,'writer','screenplay',NULL),(120681,136,1,'actor',NULL,'[\"Inspector Frederick Abberline\"]'),(120681,1287,2,'actress',NULL,'[\"Mary Kelly\"]'),(120681,453,3,'actor',NULL,'[\"Sir William Gull\"]'),(120681,1059,4,'actor',NULL,'[\"Sergeant Peter Godley\"]'),(120681,400436,5,'director',NULL,NULL),(120681,400441,6,'director',NULL,NULL),(120681,600872,7,'writer','graphic novel',NULL),(120681,132427,8,'writer','graphic novel',NULL),(120681,371249,9,'writer','screenplay',NULL),(120685,825336,10,'cinematographer','director of photography',NULL),(120685,111,1,'actor',NULL,'[\"Dr. Niko Tatopoulos\"]'),(120685,606,2,'actor',NULL,'[\"Philippe Roaché\"]'),(120685,1623,3,'actress',NULL,'[\"Audrey Timmonds\"]'),(120685,279,4,'actor',NULL,'[\"Victor \'Animal\' Palotti\"]'),(120685,386,5,'director',NULL,NULL),(120685,2041,6,'writer','screenplay',NULL),(120685,254645,7,'writer','story',NULL),(120685,744429,8,'writer','story',NULL),(120685,3417,9,'composer',NULL,NULL),(120686,60103,10,'writer','screenplay',NULL),(120686,210,1,'actress',NULL,'[\"Isabel Kelly\"]'),(120686,215,2,'actress',NULL,'[\"Jackie Harrison\"]'),(120686,438,3,'actor',NULL,'[\"Luke Harrison\"]'),(120686,540441,4,'actress',NULL,'[\"Anna Harrison\"]'),(120686,1060,5,'director',NULL,NULL),(120686,505144,6,'writer','story',NULL),(120686,625458,7,'writer','screenplay',NULL),(120686,737216,8,'writer','screenplay',NULL),(120686,394212,9,'writer','screenplay',NULL),(120689,290358,10,'editor',NULL,NULL),(120689,158,1,'actor',NULL,'[\"Paul Edgecomb\"]'),(120689,3817,2,'actor',NULL,'[\"John Coffey\"]'),(120689,1556,3,'actor',NULL,'[\"Brutus \'Brutal\' Howell\"]'),(120689,1372,4,'actress',NULL,'[\"Jan Edgecomb\"]'),(120689,1104,5,'director',NULL,NULL),(120689,175,6,'writer','novel',NULL),(120689,883603,7,'producer','producer',NULL),(120689,2353,8,'composer',NULL,NULL),(120689,5897,9,'cinematographer','director of photography',NULL),(120692,417806,10,'cinematographer',NULL,NULL),(120692,379,1,'actress',NULL,'[\"Verena von Stefan\"]'),(120692,1655,2,'actress',NULL,'[\"Miss McVane\"]'),(120692,451,3,'actress',NULL,'[\"Odette\"]'),(120692,337,4,'actress',NULL,'[\"Abigail \'Abby\' Sawyer\"]'),(120692,449576,5,'director',NULL,NULL),(120692,222048,6,'producer','producer',NULL),(120692,537164,7,'producer','producer',NULL),(120692,628226,8,'producer','producer',NULL),(120692,6251,9,'composer',NULL,NULL),(120694,293551,10,'producer','producer',NULL),(120694,130,1,'actress',NULL,'[\"Laurie Strode\",\"Keri Tate\"]'),(120694,1326,2,'actor',NULL,'[\"John\"]'),(120694,35060,3,'actor',NULL,'[\"Will Brennan\"]'),(120694,931329,4,'actress',NULL,'[\"Molly\"]'),(120694,591171,5,'director',NULL,NULL),(120694,384185,6,'writer','characters',NULL),(120694,118,7,'writer','characters',NULL),(120694,2526,8,'writer','story',NULL),(120694,338557,9,'writer','screenplay',NULL),(120696,506020,10,'producer','producer',NULL),(120696,151,1,'actor',NULL,'[\"Jim\"]'),(120696,225,2,'actor',NULL,'[\"Tom\"]'),(120696,1642,3,'actor',NULL,'[\"Sheriff\"]'),(120696,378,4,'actress',NULL,'[\"Karen\"]'),(120696,4121,5,'director',NULL,NULL),(120696,3662,6,'writer','written by',NULL),(120696,117290,7,'producer','producer',NULL),(120696,330428,8,'producer','producer',NULL),(120696,506013,9,'producer','producer',NULL),(120728,867277,10,'production_designer',NULL,NULL),(120728,1721,1,'actress',NULL,'[\"Alice\"]'),(120728,295,2,'actress',NULL,'[\"Charlotte\"]'),(120728,1177,3,'actor',NULL,'[\"Des\"]'),(120728,40015,4,'actor',NULL,'[\"Jimmy\"]'),(120728,1775,5,'director',NULL,NULL),(120728,839438,6,'composer',NULL,NULL),(120728,859047,7,'cinematographer','director of photography',NULL),(120728,353137,8,'editor',NULL,NULL),(120728,685129,9,'editor',NULL,NULL),(120735,398167,10,'editor',NULL,NULL),(120735,2076,1,'actor',NULL,'[\"Tom\"]'),(120735,2077,2,'actor',NULL,'[\"Soap\"]'),(120735,602941,3,'actor',NULL,'[\"Eddy\"]'),(120735,5458,4,'actor',NULL,'[\"Bacon\"]'),(120735,5363,5,'director',NULL,NULL),(120735,891216,6,'producer','producer',NULL),(120735,400542,7,'composer',NULL,NULL),(120735,614373,8,'composer',NULL,NULL),(120735,362165,9,'cinematographer','director of photography',NULL),(120737,761744,10,'producer','producer',NULL),(120737,704,1,'actor',NULL,'[\"Frodo\"]'),(120737,5212,2,'actor',NULL,'[\"Gandalf\"]'),(120737,89217,3,'actor',NULL,'[\"Legolas\"]'),(120737,293,4,'actor',NULL,'[\"Boromir\"]'),(120737,1392,5,'director',NULL,NULL),(120737,866058,6,'writer','novel \"The Fellowship of the Ring\"',NULL),(120737,909638,7,'writer','screenplay',NULL),(120737,101991,8,'writer','screenplay',NULL),(120737,651614,9,'producer','producer',NULL),(120738,5976,10,'composer',NULL,NULL),(120738,198,1,'actor',NULL,'[\"Dr. Smith\",\"Spider Smith\"]'),(120738,458,2,'actor',NULL,'[\"John Robinson\"]'),(120738,1455,3,'actor',NULL,'[\"Don West\"]'),(120738,211,4,'actress',NULL,'[\"Maureen Robinson\"]'),(120738,394280,5,'director',NULL,NULL),(120738,740,6,'writer','television series',NULL),(120738,326040,7,'writer','written by',NULL),(120738,296735,8,'producer','producer',NULL),(120738,462370,9,'producer','producer',NULL),(120744,398343,10,'editor',NULL,NULL),(120744,138,1,'actor',NULL,'[\"King Louis\",\"Phillippe\"]'),(120744,460,2,'actor',NULL,'[\"Aramis\"]'),(120744,518,3,'actor',NULL,'[\"Athos\"]'),(120744,367,4,'actor',NULL,'[\"Porthos\"]'),(120744,908824,5,'director',NULL,NULL),(120744,241416,6,'writer','novels \"Vingt ans après\" and \"Le Vicomte de Bragelonne\"',NULL),(120744,809833,7,'producer','producer',NULL),(120744,322684,8,'composer',NULL,NULL),(120744,5893,9,'cinematographer',NULL,NULL),(120746,260675,10,'writer','screenplay',NULL),(120746,104,1,'actor',NULL,'[\"Alejandro Murrieta\",\"Zorro\"]'),(120746,164,2,'actor',NULL,'[\"Don Diego de la Vega\",\"Zorro\"]'),(120746,1876,3,'actress',NULL,'[\"Elena\"]'),(120746,851767,4,'actor',NULL,'[\"Young Alejandro Murrieta\"]'),(120746,132709,5,'director',NULL,NULL),(120746,191547,6,'writer','character Zorro',NULL),(120746,254645,7,'writer','story',NULL),(120746,744429,8,'writer','story',NULL),(120746,415745,9,'writer','story',NULL),(120749,444916,10,'producer','producer',NULL),(120749,246,1,'actor',NULL,'[\"Art Jeffries\"]'),(120749,400816,2,'actor',NULL,'[\"Simon Lynch\"]'),(120749,285,3,'actor',NULL,'[\"Nick Kudrow\"]'),(120749,564277,4,'actor',NULL,'[\"Tommy B. Jordan\"]'),(120749,887,5,'director',NULL,NULL),(120749,669379,6,'writer','novel \"Simple Simon\"',NULL),(120749,465199,7,'writer','screenplay',NULL),(120749,742797,8,'writer','screenplay',NULL),(120749,4976,9,'producer','producer',NULL),(120755,906048,10,'producer','producer',NULL),(120755,129,1,'actor',NULL,'[\"Ethan Hunt\"]'),(120755,779084,2,'actor',NULL,'[\"Sean Ambrose\"]'),(120755,628601,3,'actress',NULL,'[\"Nyah Hall\"]'),(120755,609,4,'actor',NULL,'[\"Luther Strickell\"]'),(120755,247,5,'director',NULL,NULL),(120755,312367,6,'writer','creator television series Mission: Impossible',NULL),(120755,601822,7,'writer','story',NULL),(120755,103804,8,'writer','story',NULL),(120755,1801,9,'writer','screenplay',NULL),(120756,600237,10,'actor',NULL,'[\"Tashtego\"]'),(120756,1794,1,'actor',NULL,'[\"Ishmael\"]'),(120756,1772,2,'actor',NULL,'[\"Captain Ahab\"]'),(120756,117412,3,'actor',NULL,'[\"Mr. Stubb\"]'),(120756,912183,4,'actor',NULL,'[\"Queequeg\"]'),(120756,270359,5,'actor',NULL,'[\"Mr. Flask\"]'),(120756,325382,6,'actor',NULL,'[\"Little Pip\"]'),(120756,700712,7,'actor',NULL,'[\"Bulkington\"]'),(120756,505971,8,'actor',NULL,'[\"Starbuck\"]'),(120756,947436,9,'actor',NULL,'[\"Carpenter\"]'),(120762,493857,10,'writer','screenplay by',NULL),(120762,1840,1,'actress',NULL,'[\"Mulan\"]'),(120762,552,2,'actor',NULL,'[\"Mushu\"]'),(120762,703,3,'actor',NULL,'[\"Shang\"]'),(120762,1208,4,'actor',NULL,'[\"Shan-Yu\"]'),(120762,51643,5,'director',NULL,NULL),(120762,176905,6,'director',NULL,NULL),(120762,760745,7,'writer','based on a story by',NULL),(120762,398763,8,'writer','screenplay by',NULL),(120762,761498,9,'writer','screenplay by',NULL),(120768,6251,10,'composer',NULL,NULL),(120768,168,1,'actor',NULL,'[\"Danny Roman\"]'),(120768,228,2,'actor',NULL,'[\"Chris Sabian\"]'),(120768,1556,3,'actor',NULL,'[\"Adam Beck\"]'),(120768,726492,4,'actor',NULL,'[\"Grant Frost\"]'),(120768,336620,5,'director',NULL,NULL),(120768,218621,6,'writer','written by',NULL),(120768,289100,7,'writer','written by',NULL),(120768,387674,8,'producer','producer',NULL),(120768,586969,9,'producer','producer',NULL),(120777,168549,10,'editor',NULL,NULL),(120777,207,1,'actress',NULL,'[\"Dedee Truitt\"]'),(120777,233027,2,'actor',NULL,'[\"Bill Truitt\"]'),(120777,1435,3,'actress',NULL,'[\"Lucia DeLury\"]'),(120777,5164,4,'actor',NULL,'[\"Sheriff Carl Tippett\"]'),(120777,740400,5,'director',NULL,NULL),(120777,78698,6,'producer','producer',NULL),(120777,456712,7,'producer','producer',NULL),(120777,6025,8,'composer',NULL,NULL),(120777,846246,9,'cinematographer','director of photography',NULL),(120780,792049,10,'producer','producer',NULL),(120780,123,1,'actor',NULL,'[\"Jack Foley\"]'),(120780,182,2,'actress',NULL,'[\"Karen Sisco\"]'),(120780,609,3,'actor',NULL,'[\"Buddy Bragg\"]'),(120780,1872,4,'actor',NULL,'[\"Glenn Michaels\"]'),(120780,1752,5,'director',NULL,NULL),(120780,1465,6,'writer','novel',NULL),(120780,291082,7,'writer','screenplay',NULL),(120780,362,8,'producer','producer',NULL),(120780,787834,9,'producer','producer',NULL),(120783,5678,10,'cinematographer','director of photography',NULL),(120783,517820,1,'actress',NULL,'[\"Hallie Parker\",\"Annie James\"]'),(120783,598,2,'actor',NULL,'[\"Nick Parker\"]'),(120783,1670,3,'actress',NULL,'[\"Elizabeth James\"]'),(120783,5006,4,'actress',NULL,'[\"Meredith Blake\"]'),(120783,583600,5,'director',NULL,NULL),(120783,477696,6,'writer','book \"Das Doppelte Lottchen\"',NULL),(120783,842582,7,'writer','screenplay',NULL),(120783,796124,8,'writer','screenplay',NULL),(120783,6293,9,'composer',NULL,NULL),(120784,179697,10,'cinematographer','director of photography',NULL),(120784,154,1,'actor',NULL,'[\"Porter\"]'),(120784,1344,2,'actor',NULL,'[\"Val Resnick\"]'),(120784,4742,3,'actress',NULL,'[\"Rosie\"]'),(120784,1601,4,'actor',NULL,'[\"Arthur Stegman\"]'),(120784,1338,5,'director',NULL,NULL),(120784,922799,6,'writer','novel \"The Hunter\"',NULL),(120784,371249,7,'writer','screenplay',NULL),(120784,202704,8,'producer','producer',NULL),(120784,63973,9,'composer',NULL,NULL),(120787,532368,10,'producer','producer',NULL),(120787,140,1,'actor',NULL,'[\"Steven Taylor\"]'),(120787,569,2,'actress',NULL,'[\"Emily Bradford Taylor\"]'),(120787,1557,3,'actor',NULL,'[\"David Shaw\"]'),(120787,837064,4,'actor',NULL,'[\"Mohamed Karaman\"]'),(120787,1112,5,'director',NULL,NULL),(120787,461425,6,'writer','play \"Dial M for Murder\"',NULL),(120787,446761,7,'writer','screenplay',NULL),(120787,465744,8,'producer','producer',NULL),(120787,465745,9,'producer','producer',NULL),(120789,511979,10,'cinematographer',NULL,NULL),(120789,1497,1,'actor',NULL,'[\"David\"]'),(120789,1099,2,'actor',NULL,'[\"Mr. Johnson\"]'),(120789,260,3,'actress',NULL,'[\"Betty\"]'),(120789,513,4,'actor',NULL,'[\"George\"]'),(120789,2657,5,'director',NULL,NULL),(120789,214889,6,'producer','producer',NULL),(120789,453091,7,'producer','producer',NULL),(120789,1752,8,'producer','producer',NULL),(120789,5271,9,'composer',NULL,NULL),(120791,224145,10,'producer','producer',NULL),(120791,113,1,'actress',NULL,'[\"Sally Owens\"]'),(120791,173,2,'actress',NULL,'[\"Gillian Owens\"]'),(120791,330,3,'actress',NULL,'[\"Aunt Frances\"]'),(120791,1848,4,'actress',NULL,'[\"Aunt Jet\"]'),(120791,1162,5,'director',NULL,NULL),(120791,388805,6,'writer','novel',NULL),(120791,842523,7,'writer','screenplay',NULL),(120791,326040,8,'writer','screenplay',NULL),(120791,111845,9,'writer','screenplay',NULL),(120794,277896,10,'producer','producer',NULL),(120794,174,1,'actor',NULL,'[\"Moses\",\"God\"]'),(120794,146,2,'actor',NULL,'[\"Rameses\"]'),(120794,201,3,'actress',NULL,'[\"Tzipporah\"]'),(120794,113,4,'actress',NULL,'[\"Miriam\"]'),(120794,152312,5,'director',NULL,NULL),(120794,9054338,6,'director',NULL,NULL),(120794,920425,7,'director',NULL,NULL),(120794,493857,8,'writer','written by',NULL),(120794,583292,9,'writer','additional screenplay material',NULL),(120800,782436,10,'writer','screenplay by',NULL),(120800,319698,1,'actress',NULL,'[\"Kayley\"]'),(120800,144,2,'actor',NULL,'[\"Garrett\"]'),(120800,180639,3,'actress',NULL,'[\"Kayley\"]'),(120800,5550,4,'actor',NULL,'[\"Garrett\"]'),(120800,238865,5,'director',NULL,NULL),(120800,152545,6,'writer','based on the novel \"The King\'s Damosel\" by',NULL),(120800,210320,7,'writer','screenplay by',NULL),(120800,771547,8,'writer','screenplay by',NULL),(120800,269940,9,'writer','screenplay by',NULL),(120802,234500,10,'cinematographer',NULL,NULL),(120802,147605,1,'actor',NULL,'[\"Nicolo Bussotti (Cremona)\"]'),(120802,81175,2,'actor',NULL,'[\"Georges Poussin (Vienna)\"]'),(120802,464855,3,'actor',NULL,'[\"Kaspar Weiss (Vienna)\"]'),(120802,2076,4,'actor',NULL,'[\"Frederick Pope (Oxford)\"]'),(120802,320660,5,'director',NULL,NULL),(120802,1528,6,'writer','written by',NULL),(120802,275651,7,'producer','producer',NULL),(120802,895774,8,'producer','producer',NULL),(120802,179858,9,'composer',NULL,NULL),(120804,1504,10,'composer',NULL,NULL),(120804,170,1,'actress',NULL,'[\"Alice\"]'),(120804,735442,2,'actress',NULL,'[\"Rain\"]'),(120804,1011675,3,'actor',NULL,'[\"Mr. Grey\"]'),(120804,668994,4,'actor',NULL,'[\"Mr. Red\"]'),(120804,27271,5,'director',NULL,NULL),(120804,93337,6,'producer','producer',NULL),(120804,251536,7,'producer','producer',NULL),(120804,352820,8,'producer','producer',NULL),(120804,1937,9,'composer',NULL,NULL),(120812,765306,10,'producer','producer',NULL),(120812,329,1,'actor',NULL,'[\"Lee\"]'),(120812,676,2,'actor',NULL,'[\"Carter\"]'),(120812,504962,3,'actor',NULL,'[\"Sang\"]'),(120812,929489,4,'actor',NULL,'[\"Griffin\",\"Juntao\"]'),(120812,711840,5,'director',NULL,NULL),(120812,482780,6,'writer','story',NULL),(120812,467942,7,'writer','screenplay',NULL),(120812,83696,8,'producer','producer',NULL),(120812,322802,9,'producer','producer',NULL),(120813,788640,10,'composer',NULL,NULL),(120813,5377,1,'actor',NULL,'[\"Sam\"]'),(120813,1872,2,'actor',NULL,'[\"Eddie\"]'),(120813,503627,3,'actor',NULL,'[\"Big Fat Bernie Gayle\"]'),(120813,316079,4,'actor',NULL,'[\"Veal Chop\"]'),(120813,357453,5,'director',NULL,NULL),(120813,111429,6,'producer','producer',NULL),(120813,166641,7,'producer','producer',NULL),(120813,169515,8,'producer','producer',NULL),(120813,369448,9,'producer','producer',NULL),(120815,2354,10,'composer',NULL,NULL),(120815,158,1,'actor',NULL,'[\"Captain Miller\"]'),(120815,354,2,'actor',NULL,'[\"Private Ryan\"]'),(120815,1744,3,'actor',NULL,'[\"Sergeant Horvath\"]'),(120815,122653,4,'actor',NULL,'[\"Private Reiben\"]'),(120815,229,5,'director',NULL,NULL),(120815,734441,6,'writer','written by',NULL),(120815,117290,7,'producer','producer',NULL),(120815,330428,8,'producer','producer',NULL),(120815,506013,9,'producer','producer',NULL),(120828,152469,10,'cinematographer','director of photography',NULL),(120828,148,1,'actor',NULL,'[\"Quinn Harris\"]'),(120828,162,2,'actress',NULL,'[\"Robin Monroe\"]'),(120828,1710,3,'actor',NULL,'[\"Frank Martin\"]'),(120828,5283,4,'actress',NULL,'[\"Angelica\"]'),(120828,718645,5,'director',NULL,NULL),(120828,115192,6,'writer','written by',NULL),(120828,83696,7,'producer','producer',NULL),(120828,629950,8,'producer','producer',NULL),(120828,6055,9,'composer',NULL,NULL),(120831,552862,10,'editor',NULL,NULL),(120831,5169,1,'actress',NULL,'[\"Vivian\"]'),(120831,273,2,'actor',NULL,'[\"Murray\"]'),(120831,918934,3,'actress',NULL,'[\"Saleslady\"]'),(120831,673,4,'actress',NULL,'[\"Rita\"]'),(120831,420982,5,'director',NULL,NULL),(120831,637602,6,'producer','producer',NULL),(120831,937262,7,'producer','producer',NULL),(120831,448843,8,'composer',NULL,NULL),(120831,725166,9,'cinematographer','director of photography',NULL),(120832,698008,10,'production_designer',NULL,NULL),(120832,115,1,'actor',NULL,'[\"Rick Santoro\"]'),(120832,641,2,'actor',NULL,'[\"Commander Kevin Dunne\"]'),(120832,1334,3,'actor',NULL,'[\"Gilbert Powell\"]'),(120832,1303,4,'actress',NULL,'[\"Julia Costello\"]'),(120832,361,5,'director',NULL,NULL),(120832,462895,6,'writer','story',NULL),(120832,757098,7,'composer',NULL,NULL),(120832,5664,8,'cinematographer','director of photography',NULL),(120832,659597,9,'editor',NULL,NULL),(120841,5772,10,'cinematographer',NULL,NULL),(120841,449,1,'actress',NULL,'[\"Eve\"]'),(120841,514,2,'actor',NULL,'[\"Press\"]'),(120841,1339,3,'actress',NULL,'[\"Laura\"]'),(120841,932112,4,'actor',NULL,'[\"Gamble\"]'),(120841,575389,5,'director',NULL,NULL),(120841,271022,6,'writer','characters',NULL),(120841,104333,7,'writer','written by',NULL),(120841,541548,8,'producer','producer',NULL),(120841,790481,9,'composer',NULL,NULL),(120844,74318,10,'editor',NULL,NULL),(120844,1772,1,'actor',NULL,'[\"Picard\"]'),(120844,408,2,'actor',NULL,'[\"Riker\"]'),(120844,653,3,'actor',NULL,'[\"Data\"]'),(120844,996,4,'actor',NULL,'[\"Geordi\"]'),(120844,734472,5,'writer','creator: \"Star Trek\"',NULL),(120844,75834,6,'writer','story',NULL),(120844,683522,7,'writer','story',NULL),(120844,25,8,'composer',NULL,NULL),(120844,5772,9,'cinematographer','director of photography',NULL),(120855,27459,10,'writer','story',NULL),(120855,1282,1,'actor',NULL,'[\"Tarzan\"]'),(120855,378,2,'actress',NULL,'[\"Jane\"]'),(120855,306,3,'actor',NULL,'[\"Clayton\"]'),(120855,335,4,'actress',NULL,'[\"Kala\"]'),(120855,118333,5,'director',NULL,NULL),(120855,510674,6,'director',NULL,NULL),(120855,614742,7,'writer','screenplay by',NULL),(120855,879318,8,'writer','screenplay by',NULL),(120855,925276,9,'writer','screenplay by',NULL),(120857,35998,10,'composer',NULL,NULL),(120857,1749,1,'actress',NULL,'[\"Lady Hester\"]'),(120857,1132,2,'actress',NULL,'[\"Arabella\"]'),(120857,687506,3,'actress',NULL,'[\"Mary\"]'),(120857,333,4,'actress',NULL,'[\"Elsa\"]'),(120857,1874,5,'director',NULL,NULL),(120857,607876,6,'writer','screenplay',NULL),(120857,663796,7,'producer','producer',NULL),(120857,870369,8,'producer','producer',NULL),(120857,953080,9,'producer','producer',NULL),(120863,1877,10,'composer',NULL,NULL),(120863,1029,1,'actor',NULL,'[\"Pvt. Witt\"]'),(120863,576,2,'actor',NULL,'[\"1st Sgt. Welsh\"]'),(120863,560,3,'actor',NULL,'[\"Lt. Col. Tall\"]'),(120863,9716,4,'actor',NULL,'[\"Pvt. Tella\"]'),(120863,517,5,'director',NULL,NULL),(120863,428296,6,'writer','novel',NULL),(120863,312059,7,'producer','producer',NULL),(120863,384294,8,'producer','producer',NULL),(120863,730535,9,'producer','producer',NULL),(120866,5907,10,'cinematographer',NULL,NULL),(120866,164,1,'actor',NULL,'[\"Titus\"]'),(120866,1448,2,'actress',NULL,'[\"Tamora\"]'),(120866,428965,3,'actor',NULL,'[\"Young Lucius\"]'),(120866,195083,4,'actor',NULL,'[\"Clown\"]'),(120866,853380,5,'director',NULL,NULL),(120866,636,6,'writer','play \"Titus Andronicus\"',NULL),(120866,14808,7,'producer','producer',NULL),(120866,666580,8,'producer','producer',NULL),(120866,6106,9,'composer',NULL,NULL),(120877,1836376,10,'editor','film editor',NULL),(120877,249,1,'actor',NULL,'[\"Jack Crow\"]'),(120877,838,2,'actor',NULL,'[\"Anthony Montoya\"]'),(120877,498247,3,'actress',NULL,'[\"Katrina\"]'),(120877,1299,4,'actor',NULL,'[\"Jan Valek\"]'),(120877,118,5,'director',NULL,NULL),(120877,824139,6,'writer','novel \"Vampire$\"',NULL),(120877,415979,7,'writer','screenplay',NULL),(120877,455253,8,'producer','producer',NULL),(120877,452123,9,'cinematographer','director of photography',NULL),(120879,16662,10,'cinematographer',NULL,NULL),(120879,191,1,'actor',NULL,'[\"Curt Wild\"]'),(120879,1667,2,'actor',NULL,'[\"Brian Slade\"]'),(120879,288,3,'actor',NULL,'[\"Arthur Stuart\"]'),(120879,1057,4,'actress',NULL,'[\"Mandy Slade\"]'),(120879,1331,5,'director',NULL,NULL),(120879,529071,6,'writer','story',NULL),(120879,882927,7,'producer','producer',NULL),(120879,1980,8,'composer',NULL,NULL),(120879,917208,9,'composer',NULL,NULL),(120888,5891,10,'cinematographer','director of photography',NULL),(120888,1191,1,'actor',NULL,'[\"Robbie Hart\"]'),(120888,106,2,'actress',NULL,'[\"Julia Sullivan\"]'),(120888,852132,3,'actress',NULL,'[\"Holly Sullivan\"]'),(120888,184445,4,'actor',NULL,'[\"Sammy\"]'),(120888,178997,5,'director',NULL,NULL),(120888,379056,6,'writer','written by',NULL),(120888,316406,7,'producer','producer',NULL),(120888,800465,8,'producer','producer',NULL),(120888,144841,9,'composer',NULL,NULL),(120889,4383,10,'composer',NULL,NULL),(120889,245,1,'actor',NULL,'[\"Chris Nielsen\"]'),(120889,421,2,'actor',NULL,'[\"Albert\"]'),(120889,1711,3,'actress',NULL,'[\"Annie Nielsen\"]'),(120889,1884,4,'actor',NULL,'[\"The Tracker\"]'),(120889,911910,5,'director',NULL,NULL),(120889,558577,6,'writer','novel \"What Dreams May Come\"',NULL),(120889,60103,7,'writer','screenplay',NULL),(120889,47685,8,'producer','producer',NULL),(120889,222104,9,'producer','producer',NULL),(120890,453808,10,'cinematographer','director of photography',NULL),(120890,102,1,'actor',NULL,'[\"Ray Duquette\"]'),(120890,117,2,'actress',NULL,'[\"Suzie Toller\"]'),(120890,369,3,'actor',NULL,'[\"Sam Lombardo\"]'),(120890,612,4,'actress',NULL,'[\"Kelly Van Ryan\"]'),(120890,573796,5,'director',NULL,NULL),(120890,2983,6,'writer','written by',NULL),(120890,429293,7,'producer','producer',NULL),(120890,508764,8,'producer','producer',NULL),(120890,3392,9,'composer',NULL,NULL),(120891,696949,10,'writer','screenplay',NULL),(120891,226,1,'actor',NULL,'[\"James West\"]'),(120891,177,2,'actor',NULL,'[\"Artemus Gordon\",\"President Grant\"]'),(120891,110,3,'actor',NULL,'[\"Dr. Arliss Loveless\"]'),(120891,161,4,'actress',NULL,'[\"Rita Escobar\"]'),(120891,1756,5,'director',NULL,NULL),(120891,859029,6,'writer','story',NULL),(120891,859049,7,'writer','story',NULL),(120891,934093,8,'writer','screenplay',NULL),(120891,534681,9,'writer','screenplay',NULL),(120902,751505,10,'cinematographer','director of photography',NULL),(120902,141,1,'actor',NULL,'[\"Agent Fox Mulder\"]'),(120902,96,2,'actress',NULL,'[\"Agent Dana Scully\"]'),(120902,627453,3,'actor',NULL,'[\"The Well-Manicured Man\"]'),(120902,205657,4,'actor',NULL,'[\"The Cigarette-Smoking Man\"]'),(120902,101385,5,'director',NULL,NULL),(120902,4810,6,'writer','story',NULL),(120902,819487,7,'writer','story',NULL),(120902,755261,8,'producer','producer',NULL),(120902,6296,9,'composer',NULL,NULL),(120903,4383,10,'composer',NULL,NULL),(120903,1772,1,'actor',NULL,'[\"Professor Charles Xavier\"]'),(120903,413168,2,'actor',NULL,'[\"Logan\",\"Wolverine\"]'),(120903,5212,3,'actor',NULL,'[\"Eric Lensherr\",\"Magneto\"]'),(120903,463,4,'actress',NULL,'[\"Jean Grey\"]'),(120903,1741,5,'director',NULL,NULL),(120903,220892,6,'writer','story',NULL),(120903,371684,7,'writer','screenplay',NULL),(120903,795682,8,'producer','producer',NULL),(120903,3515,9,'producer','producer',NULL),(120907,761697,10,'editor',NULL,NULL),(120907,179,1,'actor',NULL,'[\"Ted Pikul\"]'),(120907,492,2,'actress',NULL,'[\"Allegra Geller\"]'),(120907,453,3,'actor',NULL,'[\"Kiri Vinokur\"]'),(120907,353,4,'actor',NULL,'[\"Gas\"]'),(120907,343,5,'director',NULL,NULL),(120907,358877,6,'producer','producer',NULL),(120907,487190,7,'producer','producer',NULL),(120907,6290,8,'composer',NULL,NULL),(120907,5893,9,'cinematographer',NULL,NULL),(120910,325196,10,'director',NULL,NULL),(120910,505824,1,'self',NULL,'[\"Self - Host (segment \\\"Pomp and Circumstance\\\"), Conductor (Chicago Symphony Orchestra)\"]'),(120910,188,2,'self',NULL,'[\"Self - Introductory Host\"]'),(120910,674221,3,'self',NULL,'[\"Self - Host (segment \\\"Pines of Rome\\\")\"]'),(120910,5065,4,'self',NULL,'[\"Self - Host (segment \\\"Rhapsody in Blue\\\")\"]'),(120910,19282,5,'director',NULL,NULL),(120910,110293,6,'director',NULL,NULL),(120910,110294,7,'director',NULL,NULL),(120910,125186,8,'director',NULL,NULL),(120910,322368,9,'director',NULL,NULL),(120912,662748,10,'producer','producer',NULL),(120912,169,1,'actor',NULL,'[\"Kay\"]'),(120912,226,2,'actor',NULL,'[\"Jay\"]'),(120912,1800,3,'actor',NULL,'[\"Zed\"]'),(120912,1223,4,'actress',NULL,'[\"Serleena\"]'),(120912,1756,5,'director',NULL,NULL),(120912,192384,6,'writer','comic book \"Malibu Comics\"',NULL),(120912,330565,7,'writer','story',NULL),(120912,266673,8,'writer','screenplay',NULL),(120912,531827,9,'producer','producer',NULL),(120913,41864,10,'writer','screenplay',NULL),(120913,354,1,'actor',NULL,'[\"Cale\"]'),(120913,106,2,'actress',NULL,'[\"Akima\"]'),(120913,597,3,'actor',NULL,'[\"Korso\"]'),(120913,108028,4,'actor',NULL,'[\"The Cook\"]'),(120913,89940,5,'director',NULL,NULL),(120913,325776,6,'director',NULL,NULL),(120913,61829,7,'writer','story',NULL),(120913,566595,8,'writer','story',NULL),(120913,249421,9,'writer','screenplay',NULL),(120915,809551,10,'editor',NULL,NULL),(120915,191,1,'actor',NULL,'[\"Obi-Wan Kenobi\"]'),(120915,553,2,'actor',NULL,'[\"Qui-Gon Jinn\"]'),(120915,204,3,'actress',NULL,'[\"Queen Amidala\",\"Padmé\"]'),(120915,5157,4,'actor',NULL,'[\"Anakin Skywalker\"]'),(120915,184,5,'director',NULL,NULL),(120915,564768,6,'producer','producer',NULL),(120915,2354,7,'composer',NULL,NULL),(120915,5897,8,'cinematographer','director of photography',NULL),(120915,123785,9,'editor',NULL,NULL),(120917,636236,10,'writer','additional story material by',NULL),(120917,5450,1,'actor',NULL,'[\"Kuzco\"]'),(120917,422,2,'actor',NULL,'[\"Pacha\"]'),(120917,457755,3,'actress',NULL,'[\"Yzma\"]'),(120917,911320,4,'actor',NULL,'[\"Kronk\"]'),(120917,227540,5,'director',NULL,NULL),(120917,930261,6,'writer','story by',NULL),(120917,721675,7,'writer','screenplay by',NULL),(120917,27459,8,'writer','additional story material by',NULL),(120917,2320658,9,'writer','additional story material by',NULL),(121164,972040,10,'writer','screenplay',NULL),(121164,136,1,'actor',NULL,'[\"Victor Van Dort\"]'),(121164,307,2,'actress',NULL,'[\"Corpse Bride\"]'),(121164,1833,3,'actress',NULL,'[\"Victoria Everglot\"]'),(121164,1808,4,'actress',NULL,'[\"Nell Van Dort\",\"Hildegarde\"]'),(121164,318,5,'director',NULL,NULL),(121164,425843,6,'director',NULL,NULL),(121164,335022,7,'writer','characters',NULL),(121164,41864,8,'writer','screenplay',NULL),(121164,3031,9,'writer','screenplay',NULL),(121401,1097178,1,'actress',NULL,'[\"Indira\"]'),(121401,841552,2,'actor',NULL,'[\"Thiyagu\"]'),(121401,621937,3,'actor',NULL,'[\"Sethupathy\"]'),(121401,1099597,4,'actor',NULL,'[\"Kotamarayar\"]'),(121401,7124,5,'director',NULL,NULL),(121401,711745,6,'writer','screenplay',NULL),(121401,1234765,7,'producer','producer',NULL),(121401,6246,8,'composer',NULL,NULL),(121401,7144,9,'cinematographer',NULL,NULL),(121403,959901,10,'production_designer',NULL,NULL),(121403,648221,1,'actor',NULL,'[\"Bendegúz\"]'),(121403,464417,2,'actor',NULL,'[\"A Bakter\"]'),(121403,395819,3,'actress',NULL,'[\"A Banya\"]'),(121403,369412,4,'actor',NULL,'[\"A Patás\"]'),(121403,586277,5,'director',NULL,NULL),(121403,725799,6,'writer','novel',NULL),(121403,777053,7,'writer',NULL,NULL),(121403,444284,8,'cinematographer',NULL,NULL),(121403,1127645,9,'editor',NULL,NULL),(121765,5897,10,'cinematographer','director of photography',NULL),(121765,159789,1,'actor',NULL,'[\"Anakin Skywalker\"]'),(121765,204,2,'actress',NULL,'[\"Padmé\"]'),(121765,191,3,'actor',NULL,'[\"Obi-Wan Kenobi\"]'),(121765,489,4,'actor',NULL,'[\"Count Dooku\",\"Darth Tyranus\"]'),(121765,184,5,'director',NULL,NULL),(121765,355054,6,'writer','screenplay by',NULL),(121765,564768,7,'producer','producer',NULL),(121765,650038,8,'producer','producer',NULL),(121765,2354,9,'composer',NULL,NULL),(121766,5897,10,'cinematographer','director of photography',NULL),(121766,159789,1,'actor',NULL,'[\"Anakin Skywalker\"]'),(121766,204,2,'actress',NULL,'[\"Padmé\"]'),(121766,191,3,'actor',NULL,'[\"Obi-Wan Kenobi\"]'),(121766,168,4,'actor',NULL,'[\"Mace Windu\"]'),(121766,184,5,'director',NULL,NULL),(121766,1694619,6,'writer','character created by: Aayla Secura',NULL),(121766,2176955,7,'writer','character created by: Aayla Secura',NULL),(121766,564768,8,'producer','producer',NULL),(121766,2354,9,'composer',NULL,NULL),(122151,316888,10,'writer','screenplay',NULL),(122151,154,1,'actor',NULL,'[\"Martin Riggs\"]'),(122151,418,2,'actor',NULL,'[\"Roger Murtaugh\"]'),(122151,582,3,'actor',NULL,'[\"Leo Getz\"]'),(122151,623,4,'actress',NULL,'[\"Lorna Cole\"]'),(122151,1149,5,'director',NULL,NULL),(122151,948,6,'writer','characters',NULL),(122151,501380,7,'writer','story',NULL),(122151,332184,8,'writer','story',NULL),(122151,587692,9,'writer','story',NULL),(122459,6229,10,'composer',NULL,NULL),(122459,141,1,'actor',NULL,'[\"Bob Rueland\"]'),(122459,378,2,'actress',NULL,'[\"Grace Briggs\"]'),(122459,5279,3,'actor',NULL,'[\"Marty O\'Reilly\"]'),(122459,5162,4,'actor',NULL,'[\"Angelo Pardipillo\"]'),(122459,1372,5,'director',NULL,NULL),(122459,482141,6,'writer','story',NULL),(122459,827632,7,'writer','story',NULL),(122459,329224,8,'writer','story',NULL),(122459,506681,9,'producer','producer',NULL),(122648,61474,10,'composer',NULL,NULL),(122648,299998,1,'actor',NULL,'[\"Piero at 18 years\"]'),(122648,526728,2,'actor',NULL,'[\"Piero at 13 years\"]'),(122648,649864,3,'actress',NULL,'[\"Lisa\"]'),(122648,266954,4,'actor',NULL,'[\"Ivanone\"]'),(122648,899501,5,'director',NULL,NULL),(122648,116263,6,'writer','story',NULL),(122648,769249,7,'writer','screenplay',NULL),(122648,147603,8,'producer','producer',NULL),(122648,147602,9,'producer','producer',NULL),(122690,5709,10,'cinematographer','director of photography',NULL),(122690,134,1,'actor',NULL,'[\"Sam\"]'),(122690,606,2,'actor',NULL,'[\"Vincent\"]'),(122690,1523,3,'actress',NULL,'[\"Deirdre\"]'),(122690,1745,4,'actor',NULL,'[\"Gregor\"]'),(122690,1239,5,'director',NULL,NULL),(122690,954345,6,'writer','story',NULL),(122690,519,7,'writer','screenplay',NULL),(122690,541548,8,'producer','producer',NULL),(122690,6012,9,'composer',NULL,NULL),(122718,278228,10,'producer','producer',NULL),(122718,379,1,'actress',NULL,'[\"Christy Fimple\"]'),(122718,808376,2,'actor',NULL,'[\"Alan Abernathy\"]'),(122718,189144,3,'actor',NULL,'[\"Irwin Wayfair\"]'),(122718,1542,4,'actor',NULL,'[\"Larry Benson\"]'),(122718,1102,5,'director',NULL,NULL),(122718,779170,6,'writer','written by',NULL),(122718,726472,7,'writer','written by',NULL),(122718,254645,8,'writer','written by',NULL),(122718,744429,9,'writer','written by',NULL),(122933,6290,10,'composer',NULL,NULL),(122933,134,1,'actor',NULL,'[\"Paul Vitti\"]'),(122933,345,2,'actor',NULL,'[\"Dr. Ben Sobel\"]'),(122933,1435,3,'actress',NULL,'[\"Laura MacNamara Sobel\"]'),(122933,1590,4,'actor',NULL,'[\"Primo Sidone\"]'),(122933,601,5,'director',NULL,NULL),(122933,518836,6,'writer','story',NULL),(122933,865847,7,'writer','story',NULL),(122933,742772,8,'producer','producer',NULL),(122933,918463,9,'producer','producer',NULL),(123209,6235,10,'composer',NULL,NULL),(123209,496,1,'actress',NULL,'[\"Carla\"]'),(123209,473,2,'actress',NULL,'[\"Elizabeth\"]'),(123209,610,3,'actor',NULL,'[\"Danny\"]'),(123209,643,4,'actor',NULL,'[\"Radley\"]'),(123209,5190,5,'director',NULL,NULL),(123209,741228,6,'writer','story',NULL),(123209,725407,7,'writer','story',NULL),(123209,116358,8,'writer','story',NULL),(123209,410773,9,'producer','producer',NULL),(123755,466805,10,'composer',NULL,NULL),(123755,207498,1,'actress',NULL,'[\"Leaven\"]'),(123755,935659,2,'actor',NULL,'[\"Quentin\"]'),(123755,382110,3,'actor',NULL,'[\"Worth\"]'),(123755,587884,4,'actor',NULL,'[\"Kazan\"]'),(123755,622112,5,'director',NULL,NULL),(123755,82008,6,'writer','written by',NULL),(123755,543919,7,'writer','written by',NULL),(123755,576372,8,'producer','producer',NULL),(123755,650527,9,'producer','producer',NULL),(123865,780762,10,'editor',NULL,NULL),(123865,1401,1,'actress',NULL,'[\"Gia Carangi\"]'),(123865,1159,2,'actress',NULL,'[\"Wilhelmina Cooper\"]'),(123865,593310,3,'actress',NULL,'[\"Linda\"]'),(123865,1689,4,'actress',NULL,'[\"Kathleen Carangi\"]'),(123865,188165,5,'director',NULL,NULL),(123865,570557,6,'writer','written by',NULL),(123865,115384,7,'producer','producer',NULL),(123865,5966,8,'composer',NULL,NULL),(123865,6554,9,'cinematographer','director of photography',NULL),(123948,875223,10,'producer','producer',NULL),(123948,353717,1,'actor',NULL,'[\"Kunio Mamiya\"]'),(123948,945131,2,'actor',NULL,'[\"Kenichi Takabe\"]'),(123948,880299,3,'actor',NULL,'[\"Makoto Sakuma\"]'),(123948,619953,4,'actress',NULL,'[\"Fumie Takabe\"]'),(123948,475905,5,'director',NULL,NULL),(123948,407462,6,'producer','producer',NULL),(123948,3807837,7,'producer','producer',NULL),(123948,12927645,8,'producer','producer',NULL),(123948,793710,9,'producer','producer',NULL),(123987,178373,10,'producer','producer',NULL),(123987,531,1,'actress',NULL,'[\"Miss Clavel\"]'),(123987,1329,2,'actor',NULL,'[\"Lord Covington\"]'),(123987,428201,3,'actress',NULL,'[\"Madeline\"]'),(123987,199842,4,'actor',NULL,'[\"Leopold the Tutor\"]'),(123987,902939,5,'director',NULL,NULL),(123987,69840,6,'writer','books',NULL),(123987,549369,7,'writer','screen story',NULL),(123987,505662,8,'writer','screen story',NULL),(123987,280814,9,'writer','screen story',NULL),(124298,110519,10,'editor',NULL,NULL),(124298,409,1,'actor',NULL,'[\"Adam\"]'),(124298,224,2,'actress',NULL,'[\"Eve\"]'),(124298,686,3,'actor',NULL,'[\"Calvin\"]'),(124298,651,4,'actress',NULL,'[\"Helen\"]'),(124298,933505,5,'director',NULL,NULL),(124298,446210,6,'writer','story',NULL),(124298,1317,7,'producer','producer',NULL),(124298,6045,8,'composer',NULL,NULL),(124298,3900,9,'cinematographer','director of photography',NULL),(124315,161497,10,'editor',NULL,NULL),(124315,1497,1,'actor',NULL,'[\"Homer Wells\"]'),(124315,234,2,'actress',NULL,'[\"Candy Kendall\"]'),(124315,323,3,'actor',NULL,'[\"Dr. Wilbur Larch\"]'),(124315,5148,4,'actor',NULL,'[\"Mr. Rose\"]'),(124315,2120,5,'director',NULL,NULL),(124315,410288,6,'writer','novel',NULL),(124315,321621,7,'producer','producer',NULL),(124315,6235,8,'composer',NULL,NULL),(124315,822975,9,'cinematographer','director of photography',NULL),(124317,3604,10,'cinematographer',NULL,NULL),(124317,1527,1,'actress',NULL,'[\"Sara Kate\"]'),(124317,1368,2,'actor',NULL,'[\"Gaten Hill\"]'),(124317,365450,3,'actress',NULL,'[\"Clover\"]'),(124317,222643,4,'actress',NULL,'[\"Everleen\"]'),(124317,852676,5,'director',NULL,NULL),(124317,761537,6,'writer','novel',NULL),(124317,128874,7,'writer','teleplay',NULL),(124317,438757,8,'producer','producer',NULL),(124317,795340,9,'composer',NULL,NULL),(124595,76810,10,'producer','producer',NULL),(124595,681,1,'actor',NULL,'[\"Sheriff\"]'),(124595,162,2,'actress',NULL,'[\"Beth\"]'),(124595,1618,3,'actor',NULL,'[\"Lewis\"]'),(124595,175633,4,'actor',NULL,'[\"Tony\"]'),(124595,747849,5,'director',NULL,NULL),(124595,427136,6,'writer','motion picture Force Majeure',NULL),(124595,770241,7,'writer','motion picture Force Majeure',NULL),(124595,834338,8,'writer','screenplay',NULL),(124595,732430,9,'writer','screenplay',NULL),(124819,1248268,10,'cinematographer',NULL,NULL),(124819,5295,1,'actor',NULL,'[\"Joe Young\",\"Orgazmo\"]'),(124819,45379,2,'actor',NULL,'[\"Ben Chapleski\",\"Choda Boy\"]'),(124819,704632,3,'actress',NULL,'[\"Lisa\"]'),(124819,414554,4,'actor',NULL,'[\"Maxxx Orbison\"]'),(124819,1778,5,'writer','written by',NULL),(124819,476900,6,'producer','producer',NULL),(124819,570454,7,'producer','producer',NULL),(124819,742457,8,'producer','producer',NULL),(124819,730221,9,'composer',NULL,NULL),(124829,823322,10,'production_designer',NULL,NULL),(124829,940064,1,'actress',NULL,'[\"Margaret\"]'),(124829,910278,2,'actress',NULL,'[\"Pat\"]'),(124829,408309,3,'actress',NULL,'[\"Claire\"]'),(124829,376405,4,'actor',NULL,'[\"Billy\"]'),(124829,587669,5,'director',NULL,NULL),(124829,129827,6,'producer','producer',NULL),(124829,870061,7,'composer',NULL,NULL),(124829,198459,8,'cinematographer',NULL,NULL),(124829,668966,9,'editor',NULL,NULL),(124901,871816,10,'editor',NULL,NULL),(124901,5048,1,'actor',NULL,'[\"Casey\"]'),(124901,1173,2,'actor',NULL,'[\"Nick\"]'),(124901,5320,3,'actress',NULL,'[\"Dallas\"]'),(124901,1457,4,'actor',NULL,'[\"Billy Hill\"]'),(124901,940790,5,'director',NULL,NULL),(124901,693561,6,'producer','producer',NULL),(124901,525988,7,'composer',NULL,NULL),(124901,3631,8,'cinematographer',NULL,NULL),(124901,76412,9,'editor',NULL,NULL),(125022,648641,10,'producer','producer',NULL),(125022,244,1,'actress',NULL,'[\"Angela Nardino\",\"Max Conners\",\"Ulga Yevanova\"]'),(125022,1349,2,'actress',NULL,'[\"Wendy\",\"Page Conners\",\"Jane Helstrom\"]'),(125022,432,3,'actor',NULL,'[\"William B. Tensy\"]'),(125022,501,4,'actor',NULL,'[\"Dean Cumanno\",\"Vinny Staggliano\"]'),(125022,592400,5,'director',NULL,NULL),(125022,242743,6,'writer','written by',NULL),(125022,345488,7,'writer','written by',NULL),(125022,563397,8,'writer','written by',NULL),(125022,204862,9,'producer','producer',NULL),(125209,793,1,'actress',NULL,'[\"Bob\"]'),(125209,535393,2,'actor',NULL,'[\"Brendan\"]'),(125209,904967,3,'actress',NULL,'[\"Carol\"]'),(125209,365988,4,'actor',NULL,'[\"Matt\"]'),(125209,805935,5,'director',NULL,NULL),(125209,417553,6,'producer','producer',NULL),(125209,436346,7,'cinematographer',NULL,NULL),(125209,449190,8,'editor',NULL,NULL),(125209,212139,9,'production_designer',NULL,NULL),(125439,601680,10,'editor',NULL,NULL),(125439,424,1,'actor',NULL,'[\"William Thacker\"]'),(125439,210,2,'actress',NULL,'[\"Anna Scott\"]'),(125439,564500,3,'actor',NULL,'[\"Tony\"]'),(125439,406975,4,'actor',NULL,'[\"Spike\"]'),(125439,585011,5,'director',NULL,NULL),(125439,193485,6,'writer','written by',NULL),(125439,448953,7,'producer','producer',NULL),(125439,2303,8,'composer',NULL,NULL),(125439,183533,9,'cinematographer','director of photography',NULL),(125659,5663,10,'cinematographer',NULL,NULL),(125659,635330,1,'actor',NULL,'[\"César\"]'),(125659,4851,2,'actress',NULL,'[\"Sofía\"]'),(125659,503443,3,'actor',NULL,'[\"Antonio\"]'),(125659,555093,4,'actor',NULL,'[\"Pelayo\"]'),(125659,24622,5,'director',NULL,NULL),(125659,317834,6,'writer',NULL,NULL),(125659,100559,7,'producer','producer',NULL),(125659,191109,8,'producer','producer',NULL),(125659,555968,9,'composer',NULL,NULL),(125664,1032121,10,'composer',NULL,NULL),(125664,120,1,'actor',NULL,'[\"Andy Kaufman\"]'),(125664,362,2,'actor',NULL,'[\"George Shapiro\"]'),(125664,65418,3,'actor',NULL,'[\"Stanley Kaufman - Andy\'s Father\"]'),(125664,671761,4,'actor',NULL,'[\"Little Michael Kaufman\"]'),(125664,1232,5,'director',NULL,NULL),(125664,18735,6,'writer','written by',NULL),(125664,438989,7,'writer','written by',NULL),(125664,787834,8,'producer','producer',NULL),(125664,792049,9,'producer','producer',NULL),(126004,719198,10,'cinematographer',NULL,NULL),(126004,664256,1,'actress',NULL,'[\"La femme\"]'),(126004,703364,2,'actor',NULL,'[\"L\'homme\"]'),(126004,674630,3,'actress',NULL,'[\"La vieille femme au cimetière\"]'),(126004,201193,4,'actress',NULL,'[\"Le Clown\"]'),(126004,210811,5,'director',NULL,NULL),(126004,179258,6,'writer','poem',NULL),(126004,501085,7,'writer','dialogue',NULL),(126004,783519,8,'producer','producer',NULL),(126004,710685,9,'composer',NULL,NULL),(126029,830294,10,'writer','written by',NULL),(126029,196,1,'actor',NULL,'[\"Shrek\",\"Blind Mouse\",\"Opening Narration\"]'),(126029,552,2,'actor',NULL,'[\"Donkey\"]'),(126029,139,3,'actress',NULL,'[\"Princess Fiona\"]'),(126029,1475,4,'actor',NULL,'[\"Lord Farquaad\"]'),(126029,11470,5,'director',NULL,NULL),(126029,421776,6,'director',NULL,NULL),(126029,825308,7,'writer','based upon the book by',NULL),(126029,254645,8,'writer','written by',NULL),(126029,744429,9,'writer','written by',NULL),(126604,359000,10,'editor',NULL,NULL),(126604,411,1,'actor',NULL,'[\"Pecker\"]'),(126604,207,2,'actress',NULL,'[\"Shelley\"]'),(126604,787,3,'actress',NULL,'[\"Dr. Klompus\"]'),(126604,431438,4,'actor',NULL,'[\"Jimmy\"]'),(126604,691,5,'director',NULL,NULL),(126604,275836,6,'producer','producer',NULL),(126604,850516,7,'producer','producer',NULL),(126604,4841,8,'composer',NULL,NULL),(126604,828731,9,'cinematographer','director of photography',NULL),(126774,543779,10,'composer',NULL,NULL),(126774,646440,1,'actor',NULL,'[\"Abe Ringel\"]'),(126774,2127,2,'actress',NULL,'[\"Rendi\"]'),(126774,5312,3,'actress',NULL,'[\"Emma\"]'),(126774,682495,4,'actor',NULL,'[\"Justin\"]'),(126774,88121,5,'director',NULL,NULL),(126774,220641,6,'writer','novel',NULL),(126774,637493,7,'writer','teleplay',NULL),(126774,5610,8,'writer','teleplay',NULL),(126774,1027122,9,'producer','producer',NULL),(126886,760131,10,'producer','producer',NULL),(126886,111,1,'actor',NULL,'[\"Jim McAllister\"]'),(126886,702,2,'actress',NULL,'[\"Tracy Flick\"]'),(126886,5098,3,'actor',NULL,'[\"Paul Metzler\"]'),(126886,4795,4,'actress',NULL,'[\"Tammy Metzler\"]'),(126886,668247,5,'director',NULL,NULL),(126886,674909,6,'writer','novel',NULL),(126886,852591,7,'writer','screenplay',NULL),(126886,74100,8,'producer','producer',NULL),(126886,301835,9,'producer','producer',NULL),(126916,6231,10,'composer',NULL,NULL),(126916,126,1,'actor',NULL,'[\"Billy Chapel\"]'),(126916,593,2,'actress',NULL,'[\"Jane Aubrey\"]'),(126916,604,3,'actor',NULL,'[\"Gus Sinski\"]'),(126916,540441,4,'actress',NULL,'[\"Heather Aubrey\"]'),(126916,600,5,'director',NULL,NULL),(126916,787033,6,'writer','novel',NULL),(126916,828342,7,'writer','screenplay',NULL),(126916,77000,8,'producer','producer',NULL),(126916,732364,9,'producer','producer',NULL),(127296,269860,10,'cinematographer',NULL,NULL),(127296,5370,1,'actress',NULL,'[\"Veronica\"]'),(127296,628,2,'actor',NULL,'[\"Abel\"]'),(127296,444832,3,'actor',NULL,'[\"Zed\"]'),(127296,531808,4,'actress',NULL,'[\"Mike\"]'),(127296,777,5,'director',NULL,NULL),(127296,137075,6,'writer','additional voice over',NULL),(127296,110357,7,'producer','producer',NULL),(127296,427827,8,'producer','producer',NULL),(127296,6171,9,'composer',NULL,NULL),(127302,557053,10,'cinematographer',NULL,NULL),(127302,560198,1,'actress',NULL,'[\"Tucker\"]'),(127302,953377,2,'actress',NULL,'[\"Drew\"]'),(127302,65352,3,'actress',NULL,'[\"Ofelia\"]'),(127302,881672,4,'actor',NULL,'[\"Isaac\"]'),(127302,112668,5,'director',NULL,NULL),(127302,144785,6,'producer','producer',NULL),(127302,730358,7,'producer','producer',NULL),(127302,832939,8,'producer','producer',NULL),(127302,623068,9,'composer',NULL,NULL),(127536,386595,10,'composer',NULL,NULL),(127536,949,1,'actress',NULL,'[\"Elizabeth I\"]'),(127536,318884,2,'actress',NULL,'[\"Female Martyr\"]'),(127536,191358,3,'actor',NULL,'[\"Master Ridley\"]'),(127536,289183,4,'actor',NULL,'[\"Male Martyr\"]'),(127536,1408,5,'director',NULL,NULL),(127536,386694,6,'writer','written by',NULL),(127536,79677,7,'producer','producer',NULL),(127536,271479,8,'producer','producer',NULL),(127536,654077,9,'producer','producer',NULL),(127723,13889,10,'cinematographer','director of photography',NULL),(127723,1349,1,'actress',NULL,'[\"Amanda Beckett\"]'),(127723,256121,2,'actor',NULL,'[\"Preston Meyers\"]'),(127723,1432,3,'actor',NULL,'[\"William Lichter\"]'),(127723,24404,4,'actress',NULL,'[\"Denise Fleming\"]'),(127723,253323,5,'director',NULL,NULL),(127723,438226,6,'director',NULL,NULL),(127723,858525,7,'producer','producer',NULL),(127723,867768,8,'producer','producer',NULL),(127723,457598,9,'composer',NULL,NULL),(127948,165223,1,'actor',NULL,'[\"The Male Janitor\"]'),(127948,9342429,2,'actress',NULL,'[\"The Female Janitor\"]'),(127948,2083046,3,'actor',NULL,'[\"The Soldier\"]'),(127948,617587,4,'actor',NULL,'[\"The Son of the Devilish Tenant\"]'),(127948,617588,5,'director',NULL,NULL),(127948,4592,6,'composer',NULL,NULL),(128442,2366,10,'composer',NULL,NULL),(128442,354,1,'actor',NULL,'[\"Mike McDermott\"]'),(128442,1570,2,'actor',NULL,'[\"Worm\"]'),(128442,1543,3,'actress',NULL,'[\"Jo\"]'),(128442,518,4,'actor',NULL,'[\"Teddy KGB\"]'),(128442,1093,5,'director',NULL,NULL),(128442,505522,6,'writer','written by',NULL),(128442,2718,7,'writer','written by',NULL),(128442,1130,8,'producer','producer',NULL),(128442,830255,9,'producer','producer',NULL),(128445,5934,10,'cinematographer',NULL,NULL),(128445,5403,1,'actor',NULL,'[\"Max Fischer\"]'),(128445,195,2,'actor',NULL,'[\"Herman Blume\"]'),(128445,931404,3,'actress',NULL,'[\"Rosemary Cross\"]'),(128445,1025,4,'actor',NULL,'[\"Bert Fischer\"]'),(128445,27572,5,'director',NULL,NULL),(128445,5562,6,'writer','written by',NULL),(128445,578814,7,'producer','producer',NULL),(128445,771490,8,'producer','producer',NULL),(128445,6205,9,'composer',NULL,NULL),(128853,511979,10,'cinematographer',NULL,NULL),(128853,158,1,'actor',NULL,'[\"Joe Fox\"]'),(128853,212,2,'actress',NULL,'[\"Kathleen Kelly\"]'),(128853,1427,3,'actor',NULL,'[\"Frank Navasky\"]'),(128853,205,4,'actress',NULL,'[\"Patricia Eden\"]'),(128853,1188,5,'director',NULL,NULL),(128853,529450,6,'writer','play \"Parfumerie\"',NULL),(128853,258286,7,'writer','screenplay',NULL),(128853,795682,8,'producer','producer',NULL),(128853,6070,9,'composer',NULL,NULL),(128996,598895,10,'producer','producer',NULL),(128996,5275,1,'actress',NULL,'[\"Cinderella\"]'),(128996,1613,2,'actress',NULL,'[\"Cinderella\'s Stepmother\"]'),(128996,185274,3,'actress',NULL,'[\"Calliope\"]'),(128996,221754,4,'actress',NULL,'[\"Minerva\"]'),(128996,410769,5,'director',NULL,NULL),(128996,358564,6,'writer','book and lyrics by',NULL),(128996,293231,7,'writer','teleplay',NULL),(128996,674518,8,'writer','story',NULL),(128996,595235,9,'producer','producer',NULL),(129023,516162,10,'cinematographer',NULL,NULL),(129023,614,1,'actor',NULL,'[\"David\",\"husband\"]'),(129023,908116,2,'actress',NULL,'[\"Alexis\",\"wife\"]'),(129023,5342,3,'actor',NULL,'[\"Young Man\"]'),(129023,575290,4,'actress',NULL,'[\"Alexis Sr.\"]'),(129023,170901,5,'director',NULL,NULL),(129023,493699,6,'writer','writer',NULL),(129023,366363,7,'producer','producer',NULL),(129023,1104170,8,'producer','producer',NULL),(129023,543779,9,'composer',NULL,NULL),(129167,5197,10,'producer','producer',NULL),(129167,547349,1,'actor',NULL,'[\"Hogarth Hughes\"]'),(129167,1065,2,'actor',NULL,'[\"Dean McCoppin\"]'),(129167,98,3,'actress',NULL,'[\"Annie Hughes\"]'),(129167,4874,4,'actor',NULL,'[\"The Iron Giant\"]'),(129167,83348,5,'director',NULL,NULL),(129167,564827,6,'writer','screenplay by',NULL),(129167,400954,7,'writer','based on the book \"The Iron Man\" by',NULL),(129167,286715,8,'writer','screenplay by',NULL),(129167,7831,9,'producer','producer',NULL),(129290,447260,10,'producer','producer',NULL),(129290,245,1,'actor',NULL,'[\"Patch Adams\"]'),(129290,518687,2,'actor',NULL,'[\"Truman\"]'),(129290,5321,3,'actress',NULL,'[\"Carin\"]'),(129290,450,4,'actor',NULL,'[\"Mitch\"]'),(129290,1723,5,'director',NULL,NULL),(129290,11254,6,'writer','book \"Gesundheit: Good Health Is a Laughing Matter\"',NULL),(129290,616962,7,'writer','book \"Gesundheit: Good Health Is a Laughing Matter\"',NULL),(129290,644203,8,'writer','screenplay',NULL),(129290,268286,9,'producer','producer',NULL),(129332,6219,10,'composer',NULL,NULL),(129332,1602,1,'actor',NULL,'[\"Capt. John Boyd\"]'),(129332,1015,2,'actor',NULL,'[\"Col. Ives\",\"F.W. Colqhoun\"]'),(129332,274,3,'actor',NULL,'[\"Pvt. Cleaves\"]'),(129332,1111,4,'actor',NULL,'[\"Pvt. Toffler\"]'),(129332,944,5,'director',NULL,NULL),(129332,341372,6,'writer','written by',NULL),(129332,276178,7,'producer','producer',NULL),(129332,382268,8,'producer','producer',NULL),(129332,16332,9,'composer',NULL,NULL),(129387,825790,10,'producer','producer',NULL),(129387,139,1,'actress',NULL,'[\"Mary\"]'),(129387,369,2,'actor',NULL,'[\"Healy\"]'),(129387,1774,3,'actor',NULL,'[\"Ted\"]'),(129387,262968,4,'actor',NULL,'[\"Tucker\"]'),(129387,125803,5,'director',NULL,NULL),(129387,268380,6,'director',NULL,NULL),(129387,214036,7,'writer','story',NULL),(129387,833828,8,'writer','story',NULL),(129387,65980,9,'producer','producer',NULL),(129924,3029723,10,'writer','additional story ideas',NULL),(129924,1404665,1,'actor',NULL,'[\"Root\"]'),(129924,588929,2,'actor',NULL,'[\"Batty\"]'),(129924,74897,3,'actor',NULL,'[\"Stump\",\"Captain\"]'),(129924,150602,4,'actress',NULL,'[\"Budgie\"]'),(129924,732989,5,'director',NULL,NULL),(129924,550825,6,'director','co-director',NULL),(129924,876403,7,'writer','screenplay',NULL),(129924,949479,8,'writer','original stories',NULL),(129924,1764881,9,'writer','additional story ideas',NULL),(130018,270549,10,'producer','producer',NULL),(130018,1349,1,'actress',NULL,'[\"Julie James\"]'),(130018,5327,2,'actor',NULL,'[\"Ray Bronson\"]'),(130018,5275,3,'actress',NULL,'[\"Karla Wilson\"]'),(130018,1616,4,'actor',NULL,'[\"Tyrell\"]'),(130018,134176,5,'director',NULL,NULL),(130018,242028,6,'writer','characters',NULL),(130018,7029,7,'writer','written by',NULL),(130018,64057,8,'producer','producer',NULL),(130018,149563,9,'producer','producer',NULL),(130141,5777,10,'cinematographer',NULL,NULL),(130141,383163,1,'actress',NULL,'[\"Katharina\"]'),(130141,209870,2,'actress',NULL,'[\"Anne\"]'),(130141,36144,3,'actor',NULL,'[\"Stefan\"]'),(130141,1017242,4,'actress',NULL,'[\"Ehefrau von Stefan\"]'),(130141,836693,5,'director',NULL,NULL),(130141,560761,6,'producer','producer',NULL),(130141,7917371,7,'composer',NULL,NULL),(130141,10808267,8,'composer',NULL,NULL),(130141,251502,9,'composer',NULL,NULL),(130236,120494,1,'actor',NULL,'[\"Yamashita\"]'),(130236,360481,2,'actor',NULL,'[\"Joe Marshall\"]'),(130236,417840,3,'actress',NULL,'[\"Jennifer\"]'),(130236,292528,4,'actor',NULL,'[\"Frank Washington\"]'),(130236,792763,5,'director',NULL,NULL),(130236,180664,6,'producer','producer',NULL),(130236,220435,7,'composer',NULL,NULL),(130236,657659,8,'cinematographer',NULL,NULL),(130236,5039655,9,'editor',NULL,NULL),(130444,434222,10,'composer',NULL,NULL),(130444,775056,1,'actress',NULL,'[\"Felice Schragenheim (Jaguar)\"]'),(130444,477810,2,'actress',NULL,'[\"Lilly Wust (Aimée)\"]'),(130444,937557,3,'actress',NULL,'[\"Ilse\"]'),(130444,538443,4,'actress',NULL,'[\"Klärchen\"]'),(130444,299621,5,'director',NULL,NULL),(130444,613163,6,'writer','writer',NULL),(130444,7288074,7,'writer','book',NULL),(130444,404483,8,'producer','producer',NULL),(130444,737582,9,'producer','producer',NULL),(130623,338396,10,'writer','based on an earlier screenplay by',NULL),(130623,665,1,'actor',NULL,'[\"Aladar\"]'),(130623,523,2,'actress',NULL,'[\"Neera\"]'),(130623,942787,3,'actor',NULL,'[\"Kron\"]'),(130623,5569,4,'actress',NULL,'[\"Plio\"]'),(130623,500343,5,'director',NULL,NULL),(130623,957798,6,'director',NULL,NULL),(130623,258059,7,'writer','story',NULL),(130623,365666,8,'writer','story',NULL),(130623,414608,9,'writer','story',NULL),(130827,94850,10,'editor',NULL,NULL),(130827,4376,1,'actress',NULL,'[\"Lola\"]'),(130827,1953,2,'actor',NULL,'[\"Manni\"]'),(130827,460578,3,'actor',NULL,'[\"Vater\"]'),(130827,677899,4,'actress',NULL,'[\"Frau Hansen\"]'),(130827,878756,5,'director',NULL,NULL),(130827,36155,6,'producer','producer',NULL),(130827,374112,7,'composer',NULL,NULL),(130827,459517,8,'composer',NULL,NULL),(130827,340864,9,'cinematographer',NULL,NULL),(131325,208614,10,'production_designer',NULL,NULL),(131325,188,1,'actor',NULL,'[\"Bowfinger\"]'),(131325,552,2,'actor',NULL,'[\"Kit Ramsey\",\"Jiff Ramsey\"]'),(131325,1287,3,'actress',NULL,'[\"Daisy\"]'),(131325,4724,4,'actress',NULL,'[\"Carol\"]'),(131325,568,5,'director',NULL,NULL),(131325,4976,6,'producer','producer',NULL),(131325,628056,7,'composer',NULL,NULL),(131325,825336,8,'cinematographer',NULL,NULL),(131325,669362,9,'editor',NULL,NULL),(131335,523543,10,'production_designer',NULL,NULL),(131335,524468,1,'actor',NULL,'[\"El señor cura\"]'),(131335,761055,2,'actor',NULL,'[\"El testigo\"]'),(131335,350884,3,'actor',NULL,'[\"Lucas García\"]'),(131335,7415457,4,'actor',NULL,'[\"Julián González Baez\"]'),(131335,147356,5,'director',NULL,NULL),(131335,702035,6,'writer','screenplay',NULL),(131335,680180,7,'cinematographer',NULL,NULL),(131335,147502,8,'editor',NULL,NULL),(131335,334894,9,'production_designer',NULL,NULL),(131369,52797,10,'producer','producer',NULL),(131369,190,1,'actor',NULL,'[\"Ed\"]'),(131369,1184,2,'actress',NULL,'[\"Shari\"]'),(131369,86553,3,'actor',NULL,'[\"Keith\"]'),(131369,91768,4,'actress',NULL,'[\"Wife\"]'),(131369,165,5,'director',NULL,NULL),(131369,309996,6,'writer','screenplay \"Louis 19, le roi des ondes\"',NULL),(131369,98943,7,'writer','screenplay \"Louis 19, le roi des ondes\"',NULL),(131369,304665,8,'writer','screenplay',NULL),(131369,541632,9,'writer','screenplay',NULL),(131620,196814,10,'production_designer',NULL,NULL),(131620,430,1,'actor',NULL,'[\"Buzzy Crocker\"]'),(131620,379,2,'actress',NULL,'[\"Anna Petterson\"]'),(131620,1604,3,'actress',NULL,'[\"Jill Perry\"]'),(131620,574540,4,'actor',NULL,'[\"Chris \'Q\' Todd\"]'),(131620,532530,5,'director',NULL,NULL),(131620,665494,6,'producer','producer',NULL),(131620,6068,7,'composer',NULL,NULL),(131620,2323,8,'cinematographer',NULL,NULL),(131620,955175,9,'editor',NULL,NULL),(131646,5636,10,'cinematographer','director of photography',NULL),(131646,5327,1,'actor',NULL,'[\"Lt. Christopher Blair\"]'),(131646,498,2,'actor',NULL,'[\"Lt. Todd \'Maniac\' Marshall\"]'),(131646,4787,3,'actress',NULL,'[\"Lt. Cdr. \'Angel\' Deveraux\"]'),(131646,1409,4,'actor',NULL,'[\"Commodore James \'Paladin\' Taggart\"]'),(131646,730932,5,'director',NULL,NULL),(131646,238256,6,'writer','screen story',NULL),(131646,610465,7,'producer','producer',NULL),(131646,3417,8,'composer',NULL,NULL),(131646,454349,9,'composer',NULL,NULL),(131857,627673,10,'composer',NULL,NULL),(131857,5295,1,'actor',NULL,'[\"Joe Cooper\"]'),(131857,1778,2,'actor',NULL,'[\"Doug Remer\"]'),(131857,45379,3,'actor',NULL,'[\"Squeak Scolari\"]'),(131857,109,4,'actress',NULL,'[\"Jenna Reed\"]'),(131857,1878,5,'director',NULL,NULL),(131857,516598,6,'writer','written by',NULL),(131857,295281,7,'writer','written by',NULL),(131857,942480,8,'writer','written by',NULL),(131857,626696,9,'producer','producer',NULL),(131934,617588,1,'actor',NULL,'[\"Barbe-bleue\"]'),(131934,194945,2,'actress',NULL,'[\"Le nouvelle épouse de Barbe-bleue\"]'),(131934,76933,3,'actress',NULL,'[\"La fée\"]'),(131934,925513,4,'actor',NULL,NULL),(131934,674518,5,'writer','fairy tale',NULL),(132134,858405,1,'actor',NULL,'[\"Queen Mary\"]'),(132134,7291423,2,'actress',NULL,'[\"Queen Mary\"]'),(132134,163632,3,'director',NULL,NULL),(132134,374658,4,'cinematographer',NULL,NULL),(132347,724700,10,'producer','producer',NULL),(132347,1774,1,'actor',NULL,'[\"Furious\"]'),(132347,413,2,'actress',NULL,'[\"Bowler\"]'),(132347,513,3,'actor',NULL,'[\"Shoveler\"]'),(132347,279,4,'actor',NULL,'[\"Blue Raja\"]'),(132347,882330,5,'director',NULL,NULL),(132347,193854,6,'writer','written by',NULL),(132347,120918,7,'writer','comic book series',NULL),(132347,330379,8,'producer','producer',NULL),(132347,505656,9,'producer','producer',NULL),(132477,6142,10,'composer',NULL,NULL),(132477,350453,1,'actor',NULL,'[\"Homer Hickam\"]'),(132477,177933,2,'actor',NULL,'[\"John Hickam\"]'),(132477,368,3,'actress',NULL,'[\"Miss Riley\"]'),(132477,654104,4,'actor',NULL,'[\"Quentin\"]'),(132477,2653,5,'director',NULL,NULL),(132477,382573,6,'writer','book \"Rocket Boys\"',NULL),(132477,171474,7,'writer','screenplay',NULL),(132477,290581,8,'producer','producer',NULL),(132477,330077,9,'producer','producer',NULL),(133046,794762,10,'production_designer',NULL,NULL),(133046,545,1,'actress',NULL,'[\"Mrs. Tingle\"]'),(133046,4846,2,'actress',NULL,'[\"Jo Lynn Jordan\"]'),(133046,5017,3,'actress',NULL,'[\"Leigh Ann Watson\"]'),(133046,1787,4,'actor',NULL,'[\"Coach Wenchell\"]'),(133046,932078,5,'director',NULL,NULL),(133046,465298,6,'producer','producer',NULL),(133046,2227,7,'composer',NULL,NULL),(133046,956195,8,'cinematographer','director of photography',NULL),(133046,624705,9,'editor',NULL,NULL),(133093,821205,10,'editor',NULL,NULL),(133093,206,1,'actor',NULL,'[\"Neo\"]'),(133093,401,2,'actor',NULL,'[\"Morpheus\"]'),(133093,5251,3,'actress',NULL,'[\"Trinity\"]'),(133093,915989,4,'actor',NULL,'[\"Agent Smith\"]'),(133093,905154,5,'director',NULL,NULL),(133093,905152,6,'director',NULL,NULL),(133093,5428,7,'producer','producer',NULL),(133093,204485,8,'composer',NULL,NULL),(133093,691084,9,'cinematographer','director of photography',NULL),(133152,5573,10,'producer','producer',NULL),(133152,242,1,'actor',NULL,'[\"Captain Leo Davidson\"]'),(133152,307,2,'actress',NULL,'[\"Ari\"]'),(133152,619,3,'actor',NULL,'[\"Thade\"]'),(133152,3817,4,'actor',NULL,'[\"Attar\"]'),(133152,318,5,'director',NULL,NULL),(133152,99541,6,'writer','novel \"La Planète des Singes\"',NULL),(133152,115310,7,'writer','screenplay',NULL),(133152,465199,8,'writer','screenplay',NULL),(133152,742797,9,'writer','screenplay',NULL),(133189,540269,10,'production_designer',NULL,NULL),(133189,498,1,'actor',NULL,'[\"Stevo\"]'),(133189,329640,2,'actor',NULL,'[\"Bob\"]'),(133189,1272,3,'actress',NULL,'[\"Trish\"]'),(133189,497,4,'actress',NULL,'[\"Sandy\"]'),(133189,580669,5,'director',NULL,NULL),(133189,562287,6,'producer','producer',NULL),(133189,911783,7,'producer','producer',NULL),(133189,514761,8,'cinematographer',NULL,NULL),(133189,751135,9,'editor',NULL,NULL),(133240,744429,10,'writer','animation story by',NULL),(133240,330687,1,'actor',NULL,'[\"Jim Hawkins\"]'),(133240,668,2,'actress',NULL,'[\"Captain Amelia\"]'),(133240,1737,3,'actor',NULL,'[\"B.E.N.\"]'),(133240,1975,4,'actor',NULL,'[\"Mr. Arrow\"]'),(133240,166256,5,'director',NULL,NULL),(133240,615780,6,'director',NULL,NULL),(133240,829044,7,'writer','based on the novel \"Treasure Island\" by',NULL),(133240,972395,8,'writer','screenplay by',NULL),(133240,254645,9,'writer','animation story by',NULL),(133385,325799,10,'composer',NULL,NULL),(133385,2010,1,'actor',NULL,'[\"Astérix\"]'),(133385,367,2,'actor',NULL,'[\"Obélix\"]'),(133385,905,3,'actor',NULL,'[\"Lucius Detritus\"]'),(133385,301556,4,'actor',NULL,'[\"Abraracourcix\"]'),(133385,956022,5,'director',NULL,NULL),(133385,331453,6,'writer','comic book',NULL),(133385,879853,7,'writer','comic book',NULL),(133385,491671,8,'writer','dialogue',NULL),(133385,1945,9,'producer','producer',NULL),(133751,1937,10,'composer',NULL,NULL),(133751,108287,1,'actress',NULL,'[\"Delilah Profitt\"]'),(133751,245112,2,'actress',NULL,'[\"Stokely \'Stokes\' Mitchell\"]'),(133751,364977,3,'actress',NULL,'[\"Marybeth Louise Hutchinson\"]'),(133751,1326,4,'actor',NULL,'[\"Zeke Tyler\"]'),(133751,1675,5,'director',NULL,NULL),(133751,917066,6,'writer','story',NULL),(133751,453987,7,'writer','story',NULL),(133751,932078,8,'writer','screenplay',NULL),(133751,42882,9,'producer','producer',NULL),(134067,190780,10,'writer','based on the television series created by',NULL),(134067,197354,1,'actress',NULL,'[\"Tommy Pickles\"]'),(134067,4815,2,'actress',NULL,'[\"Chuckie Finster\"]'),(134067,815718,3,'actress',NULL,'[\"Philip Deville\",\"Lillian Deville\",\"Betty Deville\"]'),(134067,153589,4,'actress',NULL,'[\"Didi Pickles\",\"Minka\"]'),(134067,468335,5,'director',NULL,NULL),(134067,899329,6,'director',NULL,NULL),(134067,918955,7,'writer','written by',NULL),(134067,826425,8,'writer','written by',NULL),(134067,458312,9,'writer','based on the television series created by',NULL),(134084,1937,10,'composer',NULL,NULL),(134084,274,1,'actor',NULL,'[\"Dewey Riley\"]'),(134084,117,2,'actress',NULL,'[\"Sidney Prescott\"]'),(134084,1073,3,'actress',NULL,'[\"Gale Weathers\"]'),(134084,630,4,'actor',NULL,'[\"Cotton Weary\"]'),(134084,127,5,'director',NULL,NULL),(134084,932078,6,'writer','characters',NULL),(134084,472567,7,'writer','written by',NULL),(134084,465298,8,'producer','producer',NULL),(134084,534543,9,'producer','producer',NULL),(134119,5868,10,'cinematographer','director of photography',NULL),(134119,354,1,'actor',NULL,'[\"Tom Ripley\"]'),(134119,569,2,'actress',NULL,'[\"Marge Sherwood\"]'),(134119,179,3,'actor',NULL,'[\"Dickie Greenleaf\"]'),(134119,949,4,'actress',NULL,'[\"Meredith Logue\"]'),(134119,5237,5,'director',NULL,NULL),(134119,383604,6,'writer','novel',NULL),(134119,394564,7,'producer','producer',NULL),(134119,827923,8,'producer','producer',NULL),(134119,1189,9,'composer',NULL,NULL),(134230,350595,10,'production_designer',NULL,NULL),(134230,720879,1,'actor',NULL,'[\"Fikász úr, azaz Zimmer Feri\"]'),(134230,688292,2,'actress',NULL,'[\"Vilma,Fikász felesége\"]'),(134230,468511,3,'actress',NULL,'[\"Rozi,Fikász lánya\"]'),(134230,523796,4,'actress',NULL,'[\"Lucia\"]'),(134230,879423,5,'director',NULL,NULL),(134230,477585,6,'producer','producer',NULL),(134230,1759257,7,'composer',NULL,NULL),(134230,959182,8,'composer',NULL,NULL),(134230,843816,9,'cinematographer',NULL,NULL),(134273,5696,10,'cinematographer','director of photography',NULL),(134273,115,1,'actor',NULL,'[\"Tom Welles\"]'),(134273,1618,2,'actor',NULL,'[\"Max California\"]'),(134273,1254,3,'actor',NULL,'[\"Eddie Poole\"]'),(134273,1780,4,'actor',NULL,'[\"Dino Velvet\"]'),(134273,1708,5,'director',NULL,NULL),(134273,1825,6,'writer','written by',NULL),(134273,388788,7,'producer','producer',NULL),(134273,689780,8,'producer','producer',NULL),(134273,2217,9,'composer',NULL,NULL),(134619,58933,10,'cinematographer','director of photography',NULL),(134619,5188,1,'actor',NULL,'[\"Steve Clark\"]'),(134619,5017,2,'actress',NULL,'[\"Rachel Wagner\"]'),(134619,1763,3,'actor',NULL,'[\"Gavin Strick\"]'),(134619,576425,4,'actor',NULL,'[\"Andy Effkin\"]'),(134619,638354,5,'director',NULL,NULL),(134619,3298,6,'writer','written by',NULL),(134619,77000,7,'producer','producer',NULL),(134619,792871,8,'producer','producer',NULL),(134619,6296,9,'composer',NULL,NULL),(134847,250867,10,'cinematographer','director of photography',NULL),(134847,593664,1,'actress',NULL,'[\"Carolyn Fry\"]'),(134847,369513,2,'actor',NULL,'[\"William J. Johns\"]'),(134847,4874,3,'actor',NULL,'[\"Richard B. Riddick\"]'),(134847,202966,4,'actor',NULL,'[\"Abu \'Imam\' al-Walid\"]'),(134847,878638,5,'director',NULL,NULL),(134847,923646,6,'writer','story',NULL),(134847,3117,7,'writer','story',NULL),(134847,257259,8,'producer','producer',NULL),(134847,6251,9,'composer',NULL,NULL),(134928,3644000,10,'composer',NULL,NULL),(134928,766233,1,'actor',NULL,'[\"Mitsuo Andô\"]'),(134928,620397,2,'actress',NULL,'[\"Mai Takano\"]'),(134928,755725,3,'actress',NULL,'[\"Sadako Yamamura\"]'),(134928,875457,4,'actor',NULL,'[\"Miyashita\"]'),(134928,407332,5,'director',NULL,NULL),(134928,840626,6,'writer','novel',NULL),(134928,406772,7,'producer','producer',NULL),(134928,442777,8,'producer','producer',NULL),(134928,784540,9,'producer','producer',NULL),(134983,933276,10,'writer','screenplay',NULL),(134983,652,1,'actor',NULL,'[\"Nick Vanzant\"]'),(134983,4906,2,'actor',NULL,'[\"Karl Larson\"]'),(134983,677,3,'actress',NULL,'[\"Danika Lund\"]'),(134983,291,4,'actress',NULL,'[\"Dr. Kaela Evers\"]'),(134983,1353,5,'director',NULL,NULL),(134983,338,6,'director',NULL,NULL),(134983,794791,7,'director',NULL,NULL),(134983,540532,8,'writer','story',NULL),(134983,160935,9,'writer','story',NULL),(135033,709229,10,'production_designer',NULL,NULL),(135033,737912,1,'actress',NULL,'[\"Verónica\"]'),(135033,349493,2,'actress',NULL,'[\"Flavia\"]'),(135033,515700,3,'actress',NULL,'[\"La Bruja\"]'),(135033,825417,4,'actress',NULL,'[\"Nana\"]'),(135033,846010,5,'director',NULL,NULL),(135033,530144,6,'producer','producer',NULL),(135033,422866,7,'composer',NULL,NULL),(135033,306313,8,'cinematographer',NULL,NULL),(135033,767266,9,'editor',NULL,NULL),(135122,617588,1,'actor',NULL,'[\"The Bill Poster\"]'),(135122,13098444,2,'self',NULL,'[\"Self - on a poster\"]'),(135179,617588,1,'actor',NULL,NULL),(135180,617588,1,'actor',NULL,'[\"Devil\"]'),(135180,2038194,2,'composer',NULL,NULL),(135453,617588,1,'actor',NULL,'[\"All the members of the orchestra\"]'),(135631,617588,1,'actor',NULL,'[\"Man with whiskers\"]'),(135659,710292,10,'actor',NULL,'[\"Jack Carver\"]'),(135659,4857,1,'actor',NULL,'[\"Constable Mike Anderson\",\"Mike Anderson\"]'),(135659,272173,2,'actor',NULL,'[\"Andre Linoge\",\"Andre Linoge (Human & Monster Form)\",\"Minister on TV\"]'),(135659,1198,3,'actress',NULL,'[\"Molly Anderson\"]'),(135659,218810,4,'actor',NULL,'[\"Town Manager Robbie Beals\"]'),(135659,629855,5,'actress',NULL,'[\"Katrina Withers\"]'),(135659,48250,6,'actress',NULL,'[\"Ursula Godsoe\"]'),(135659,107748,7,'actor',NULL,'[\"Donny Beals\"]'),(135659,221631,8,'actress',NULL,'[\"Sandra Beals\"]'),(135659,149910,9,'actress',NULL,'[\"Joanna Stanhope\"]'),(135690,617588,1,'director',NULL,NULL),(135696,617588,1,'actor',NULL,'[\"The Magician and His Three Heads\"]'),(136244,207532,10,'cinematographer',NULL,NULL),(136244,701,1,'actress',NULL,'[\"Julia\"]'),(136244,729763,2,'actress',NULL,'[\"Bea\"]'),(136244,846548,3,'actor',NULL,'[\"Bilal\"]'),(136244,611925,4,'actress',NULL,'[\"Lucy\"]'),(136244,533564,5,'director',NULL,NULL),(136244,294431,6,'writer','novel',NULL),(136244,533549,7,'writer','writer',NULL),(136244,778840,8,'producer','producer',NULL),(136244,443866,9,'composer',NULL,NULL),(137226,521385,10,'cinematographer',NULL,NULL),(137226,449431,1,'actor',NULL,'[\"Jónás Botsinkay\"]'),(137226,688292,2,'actress',NULL,'[\"Szaffi\"]'),(137226,323576,3,'actress',NULL,'[\"Old Witch\"]'),(137226,126585,4,'actor',NULL,'[\"Feuerstein lovag\"]'),(137226,201187,5,'director',NULL,NULL),(137226,433584,6,'writer','novel',NULL),(137226,626134,7,'writer',NULL,NULL),(137226,739630,8,'writer',NULL,NULL),(137226,377571,9,'cinematographer',NULL,NULL),(137338,6205,10,'composer',NULL,NULL),(137338,255,1,'actor',NULL,'[\"Bartender\"]'),(137338,729,2,'actor',NULL,'[\"Tom\"]'),(137338,152638,3,'actor',NULL,'[\"Disco Cabbie\"]'),(137338,246585,4,'actor',NULL,'[\"Dave\"]'),(137338,305405,5,'director',NULL,NULL),(137338,488899,6,'writer','written by',NULL),(137338,66530,7,'producer','producer',NULL),(137338,301835,8,'producer','producer',NULL),(137338,865508,9,'producer','producer',NULL),(137523,513165,10,'producer','producer',NULL),(137523,93,1,'actor',NULL,'[\"Tyler Durden\"]'),(137523,1570,2,'actor',NULL,'[\"Narrator\"]'),(137523,1533,3,'actor',NULL,'[\"Robert Paulsen\"]'),(137523,340260,4,'actor',NULL,'[\"Richard Chesler (Regional Manager)\"]'),(137523,399,5,'director',NULL,NULL),(137523,657333,6,'writer','based on the novel by',NULL),(137523,880243,7,'writer','screenplay by',NULL),(137523,68501,8,'producer','producer',NULL),(137523,149556,9,'producer','producer',NULL),(138097,5544,10,'producer','producer',NULL),(138097,569,1,'actress',NULL,'[\"Viola De Lesseps\"]'),(138097,1212,2,'actor',NULL,'[\"Will Shakespeare\"]'),(138097,1691,3,'actor',NULL,'[\"Philip Henslowe\"]'),(138097,929489,4,'actor',NULL,'[\"Hugh Fennyman\"]'),(138097,6960,5,'director',NULL,NULL),(138097,635565,6,'writer','written by',NULL),(138097,1779,7,'writer','written by',NULL),(138097,317642,8,'producer','producer',NULL),(138097,661406,9,'producer','producer',NULL),(138510,865189,10,'producer','producer',NULL),(138510,1701,1,'actor',NULL,'[\"Anton Tobias\"]'),(138510,1293,2,'actor',NULL,'[\"Mick\"]'),(138510,711805,3,'actor',NULL,'[\"Pnub\"]'),(138510,4695,4,'actress',NULL,'[\"Molly\"]'),(138510,281869,5,'director',NULL,NULL),(138510,400957,6,'writer','written by',NULL),(138510,586922,7,'writer','written by',NULL),(138510,508988,8,'producer','producer',NULL),(138510,611064,9,'producer','producer',NULL),(138524,4976,10,'producer','producer',NULL),(138524,123,1,'actor',NULL,'[\"Miles\"]'),(138524,1876,2,'actress',NULL,'[\"Marylin\"]'),(138524,671,3,'actor',NULL,'[\"Howard D. Doyle\"]'),(138524,1691,4,'actor',NULL,'[\"Donovan Donaly\"]'),(138524,1054,5,'director',NULL,NULL),(138524,1053,6,'director',NULL,NULL),(138524,709070,7,'writer','story',NULL),(138524,832043,8,'writer','story',NULL),(138524,738908,9,'writer','story',NULL),(138704,544768,10,'production_designer',NULL,NULL),(138704,347797,1,'actor',NULL,'[\"Maximillian Cohen\"]'),(138704,546797,2,'actor',NULL,'[\"Sol Robeson\"]'),(138704,791570,3,'actor',NULL,'[\"Lenny Meyer\"]'),(138704,366466,4,'actress',NULL,'[\"Marcy Dawson\"]'),(138704,4716,5,'director',NULL,NULL),(138704,914615,6,'writer','story',NULL),(138704,543739,7,'composer',NULL,NULL),(138704,508732,8,'cinematographer','director of photography',NULL),(138704,764930,9,'editor',NULL,NULL),(138749,456732,10,'writer','additional dialogue by',NULL),(138749,177,1,'actor',NULL,'[\"Tulio\"]'),(138749,110,2,'actor',NULL,'[\"Miguel\"]'),(138749,1609,3,'actress',NULL,'[\"Chel\"]'),(138749,800,4,'actor',NULL,'[\"Tzekel-Kan\"]'),(138749,74426,5,'director',NULL,NULL),(138749,666802,6,'director',NULL,NULL),(138749,5076,7,'director',NULL,NULL),(138749,254645,8,'writer','written by',NULL),(138749,744429,9,'writer','written by',NULL),(139134,293435,10,'editor',NULL,NULL),(139134,1264,1,'actress',NULL,'[\"Kathryn Merteuil\"]'),(139134,202,2,'actor',NULL,'[\"Sebastian Valmont\"]'),(139134,702,3,'actress',NULL,'[\"Annette Hargrove\"]'),(139134,4757,4,'actress',NULL,'[\"Cecile Caldwell\"]'),(139134,474955,5,'director',NULL,NULL),(139134,480166,6,'writer','novel \"Les liaisons dangereuses\"',NULL),(139134,605775,7,'producer','producer',NULL),(139134,790481,8,'composer',NULL,NULL),(139134,5856,9,'cinematographer',NULL,NULL),(139151,3503,10,'cinematographer',NULL,NULL),(139151,241,1,'actor',NULL,'[\"Eddie Lomax\"]'),(139151,1552,2,'actor',NULL,'[\"Jubal Early\"]'),(139151,1803,3,'actor',NULL,'[\"Johnny Sixtoes\"]'),(139151,280521,4,'actress',NULL,'[\"Rhonda Reynolds\"]'),(139151,814,5,'director',NULL,NULL),(139151,642583,6,'writer','screenplay',NULL),(139151,463844,7,'producer','producer',NULL),(139151,506504,8,'producer','producer',NULL),(139151,6015,9,'composer',NULL,NULL),(139239,117741,10,'composer',NULL,NULL),(139239,1631,1,'actress',NULL,'[\"Ronna Martin\"]'),(139239,1542,2,'actor',NULL,'[\"Zack\"]'),(139239,937930,3,'actor',NULL,'[\"Adam\"]'),(139239,4875,4,'actor',NULL,'[\"Marcus\"]'),(139239,510731,5,'director',NULL,NULL),(139239,41864,6,'writer','written by',NULL),(139239,293513,7,'producer','producer',NULL),(139239,509176,8,'producer','producer',NULL),(139239,742296,9,'producer','producer',NULL),(139362,489059,10,'composer',NULL,NULL),(139362,593664,1,'actress',NULL,'[\"Syd\"]'),(139362,639,2,'actress',NULL,'[\"Lucy Berliner\"]'),(139362,165101,3,'actress',NULL,'[\"Greta\"]'),(139362,542759,4,'actor',NULL,'[\"James\"]'),(139362,158966,5,'director',NULL,NULL),(139362,355502,6,'producer','producer',NULL),(139362,506664,7,'producer','producer',NULL),(139362,832939,8,'producer','producer',NULL),(139362,384700,9,'composer',NULL,NULL),(139414,367630,10,'editor',NULL,NULL),(139414,403,1,'actress',NULL,'[\"Kelly Scott\"]'),(139414,597,2,'actor',NULL,'[\"Jack Wells\"]'),(139414,1624,3,'actor',NULL,'[\"Hector Cyr\"]'),(139414,322407,4,'actor',NULL,'[\"Sheriff Hank Keough\"]'),(139414,591171,5,'director',NULL,NULL),(139414,5082,6,'writer','written by',NULL),(139414,696309,7,'producer','producer',NULL),(139414,653211,8,'composer',NULL,NULL),(139414,645401,9,'cinematographer','director of photography',NULL),(139462,1189,10,'composer',NULL,NULL),(139462,126,1,'actor',NULL,'[\"Garret\"]'),(139462,705,2,'actress',NULL,'[\"Theresa\"]'),(139462,56,3,'actor',NULL,'[\"Dodge\"]'),(139462,1698,4,'actor',NULL,'[\"Johnny Land\"]'),(139462,1502,5,'director',NULL,NULL),(139462,817023,6,'writer','novel',NULL),(139462,224187,7,'writer','screenplay',NULL),(139462,224145,8,'producer','producer',NULL),(139462,933604,9,'producer','producer',NULL),(139654,278475,10,'cinematographer','director of photography',NULL),(139654,243,1,'actor',NULL,'[\"Alonzo\"]'),(139654,160,2,'actor',NULL,'[\"Jake\"]'),(139654,1277,3,'actor',NULL,'[\"Roger\"]'),(139654,297,4,'actor',NULL,'[\"Stan Gursky\"]'),(139654,298807,5,'director',NULL,NULL),(139654,43742,6,'writer','written by',NULL),(139654,628352,7,'producer','producer',NULL),(139654,798711,8,'producer','producer',NULL),(139654,6183,9,'composer',NULL,NULL),(140379,186602,10,'editor',NULL,NULL),(140379,177,1,'actor',NULL,'[\"Nick Bottom\"]'),(140379,201,2,'actress',NULL,'[\"Titania\"]'),(140379,391,3,'actor',NULL,'[\"Oberon\"]'),(140379,1804,4,'actor',NULL,'[\"Puck\"]'),(140379,1355,5,'director',NULL,NULL),(140379,636,6,'writer','play',NULL),(140379,881811,7,'producer','producer',NULL),(140379,5972,8,'composer',NULL,NULL),(140379,822975,9,'cinematographer','director of photography',NULL),(140627,247243,1,'actor',NULL,'[\"Skinny man in rain\"]'),(140627,784262,2,'actor',NULL,'[\"Larger man in rain\"]'),(140627,58178,3,'actor',NULL,'[\"Guy who runs into store\"]'),(140627,804443,4,'actor',NULL,'[\"Charles\"]'),(140627,127373,5,'director',NULL,NULL),(140627,837405,6,'composer',NULL,NULL),(140627,449087,7,'cinematographer',NULL,NULL),(140627,3575,8,'editor',NULL,NULL),(140627,3238,9,'production_designer',NULL,NULL),(140888,602,10,'producer','producer',NULL),(140888,5244,1,'actress',NULL,'[\"Isadora\"]'),(140888,646737,2,'actor',NULL,'[\"Josué\"]'),(140888,702479,3,'actress',NULL,'[\"Irene\"]'),(140888,513913,4,'actress',NULL,'[\"Ana\"]'),(140888,758574,5,'director',NULL,NULL),(140888,77094,6,'writer','writer',NULL),(140888,138676,7,'writer','writer',NULL),(140888,4453,8,'producer','producer',NULL),(140888,166439,9,'producer','producer',NULL),(141098,694173,10,'composer',NULL,NULL),(141098,113,1,'actress',NULL,'[\"Sarah\"]'),(141098,255,2,'actor',NULL,'[\"Ben\"]'),(141098,5491,3,'actress',NULL,'[\"Bridget\"]'),(141098,1872,4,'actor',NULL,'[\"Alan\"]'),(141098,400486,5,'director',NULL,NULL),(141098,492909,6,'writer','written by',NULL),(141098,36641,7,'producer','producer',NULL),(141098,117290,8,'producer','producer',NULL),(141098,744828,9,'producer','producer',NULL),(142032,123648,10,'actress',NULL,'[\"Alia Atreides\"]'),(142032,458,1,'actor',NULL,'[\"Duke Leto Atreides\"]'),(142032,627995,2,'actor',NULL,'[\"Muad\'Dib\",\"Paul Atreides\"]'),(142032,316284,3,'actor',NULL,'[\"Padishah - Emperor Shaddam Corrino IV\"]'),(142032,643805,4,'actor',NULL,'[\"Stilgar\"]'),(142032,716293,5,'actress',NULL,'[\"Lady Jessica Atreides\"]'),(142032,914679,6,'actor',NULL,'[\"Duncan Idaho\"]'),(142032,900651,7,'actor',NULL,'[\"Thufir Hawat\"]'),(142032,605365,8,'actor',NULL,'[\"Gurney Halleck\"]'),(142032,1503521,9,'actor',NULL,'[\"Dr. Yueh\"]'),(142233,1037557,10,'producer','producer',NULL),(142233,637586,1,'actress',NULL,'[\"Son Gokû\",\"Son Gohan\",\"Tullece\"]'),(142233,849028,2,'actress',NULL,'[\"Kuririn\"]'),(142233,299228,3,'actor',NULL,'[\"Yamcha\"]'),(142233,840721,4,'actor',NULL,'[\"Tenshinhan\"]'),(142233,632788,5,'director',NULL,NULL),(142233,868066,6,'writer','original manga \"Dragon Ball\"',NULL),(142233,468715,7,'writer','screenplay',NULL),(142233,425061,8,'writer','English script',NULL),(142233,1037430,9,'producer','producer',NULL),(142237,452853,10,'composer',NULL,NULL),(142237,637586,1,'actress',NULL,'[\"Son Gokû\",\"Son Gohan\"]'),(142237,299192,2,'actor',NULL,'[\"Piccolo\"]'),(142237,849028,3,'actress',NULL,'[\"Kuririn\",\"Yajirobe\"]'),(142237,394690,4,'actor',NULL,'[\"Vegeta\"]'),(142237,632788,5,'director',NULL,NULL),(142237,868066,6,'writer','original manga \"Dragon Ball\"',NULL),(142237,468715,7,'writer','screenplay',NULL),(142237,408000,8,'producer','producer',NULL),(142237,2255696,9,'producer','producer',NULL),(142243,2328867,10,'cinematographer',NULL,NULL),(142243,637586,1,'actress',NULL,'[\"Son Gokû\",\"Son Gohan\",\"Son Goten\"]'),(142243,476223,2,'actor',NULL,'[\"Trunks\",\"Gotenks\"]'),(142243,849028,3,'actress',NULL,'[\"Kuririn\",\"Minoshia\"]'),(142243,875442,4,'actress',NULL,'[\"Bulma\"]'),(142243,973260,5,'director',NULL,NULL),(142243,868066,6,'writer','original manga \"Dragon Ball\"',NULL),(142243,468715,7,'writer','screenplay',NULL),(142243,7695036,8,'composer',NULL,NULL),(142243,452853,9,'composer',NULL,NULL),(142245,1038863,10,'writer','writer: English version',NULL),(142245,637586,1,'actress',NULL,'[\"Bardock\",\"Son Gokû (Kakarotto)\"]'),(142245,443733,2,'actor',NULL,'[\"Tôma\"]'),(142245,593047,3,'actress',NULL,'[\"Seripa\"]'),(142245,913780,4,'actor',NULL,'[\"Panbûkin\"]'),(142245,973260,5,'director',NULL,NULL),(142245,632788,6,'director','series director',NULL),(142245,868066,7,'writer','manga \"Dragon Ball\"',NULL),(142245,468715,8,'writer','scenario',NULL),(142245,838572,9,'writer','scenario',NULL),(142247,452853,10,'composer',NULL,NULL),(142247,637586,1,'actress',NULL,'[\"Son Gokû\",\"Son Gohan\"]'),(142247,849028,2,'actress',NULL,'[\"Kuririn\"]'),(142247,875442,3,'actress',NULL,'[\"Bulma\",\"Baby Trunks\"]'),(142247,394690,4,'actor',NULL,'[\"Vegeta\"]'),(142247,973920,5,'director',NULL,NULL),(142247,632788,6,'director','series director',NULL),(142247,868066,7,'writer','original manga',NULL),(142247,1014208,8,'writer','screenplay',NULL),(142247,1038863,9,'writer','writer: English version',NULL),(142342,144841,10,'composer',NULL,NULL),(142342,1191,1,'actor',NULL,'[\"Sonny Koufax\"]'),(142342,725,2,'actress',NULL,'[\"Layla Maloney\"]'),(142342,829537,3,'actor',NULL,'[\"Kevin Gerrity\"]'),(142342,819850,4,'actor',NULL,'[\"Julian \'Frankenstien\' McGrath\"]'),(142342,240797,5,'director',NULL,NULL),(142342,291692,6,'writer','story',NULL),(142342,379056,7,'writer','screenplay',NULL),(142342,304398,8,'producer','producer',NULL),(142342,316406,9,'producer','producer',NULL),(142688,451787,10,'cinematographer',NULL,NULL),(142688,136,1,'actor',NULL,'[\"Dean Corso\"]'),(142688,1449,2,'actor',NULL,'[\"Boris Balkan\"]'),(142688,565,3,'actress',NULL,'[\"Liana Telfer\"]'),(142688,782561,4,'actress',NULL,'[\"The Girl\"]'),(142688,591,5,'director',NULL,NULL),(142688,702416,6,'writer','novel \"El Club Dumas\"',NULL),(142688,115224,7,'writer','screenplay',NULL),(142688,881762,8,'writer','screenplay',NULL),(142688,4384,9,'composer',NULL,NULL),(142964,375086,10,'cinematographer',NULL,NULL),(142964,182666,1,'actor',NULL,'[\"Ossy\"]'),(142964,586568,2,'actor',NULL,'[\"Jimmy\"]'),(142964,637864,3,'actress',NULL,'[\"Jóna\"]'),(142964,433593,4,'actress',NULL,'[\"Anna\"]'),(142964,821526,5,'director',NULL,NULL),(142964,200546,6,'producer','producer',NULL),(142964,296144,7,'producer','producer',NULL),(142964,421639,8,'producer','producer',NULL),(142964,385180,9,'composer',NULL,NULL),(143088,558420,10,'cinematographer',NULL,NULL),(143088,14650,1,'actor',NULL,'[\"Michel Lambert\"]'),(143088,220956,2,'actor',NULL,'[\"Daniel\"]'),(143088,754584,3,'actress',NULL,'[\"Juliette\"]'),(143088,194672,4,'actress',NULL,'[\"Liliane\"]'),(143088,747613,5,'director',NULL,NULL),(143088,641056,6,'writer','scenario and dialogue',NULL),(143088,219265,7,'composer',NULL,NULL),(143088,559781,8,'composer',NULL,NULL),(143088,767065,9,'composer',NULL,NULL),(143127,175834,1,'actor',NULL,'[\"Batman\"]'),(143127,30516,2,'actor',NULL,'[\"Mr. Freeze\"]'),(143127,504489,3,'actor',NULL,'[\"Robin\"]'),(143127,956544,4,'actor',NULL,'[\"Alfred\"]'),(143127,456631,5,'director',NULL,NULL),(143127,736609,6,'writer','written by',NULL),(143127,4170,7,'writer','created by: Batman',NULL),(143127,567090,8,'composer',NULL,NULL),(143127,106969,9,'editor',NULL,NULL),(143145,110483,10,'producer','producer',NULL),(143145,112,1,'actor',NULL,'[\"James Bond\"]'),(143145,521,2,'actress',NULL,'[\"Elektra King\"]'),(143145,1015,3,'actor',NULL,'[\"Renard\"]'),(143145,612,4,'actress',NULL,'[\"Dr. Christmas Jones\"]'),(143145,776,5,'director',NULL,NULL),(143145,701031,6,'writer','story',NULL),(143145,905498,7,'writer','story',NULL),(143145,270761,8,'writer','screenplay',NULL),(143145,1220,9,'writer','characters',NULL),(143348,594335,10,'cinematographer',NULL,NULL),(143348,423663,1,'actor',NULL,'[\"Ogami Itto\"]'),(143348,370666,2,'actor',NULL,'[\"Yagyu Gunbei\"]'),(143348,4501511,3,'actress',NULL,'[\"Oyuki\"]'),(143348,866674,4,'actor',NULL,'[\"Daigoro\"]'),(143348,756828,5,'director',NULL,NULL),(143348,463521,6,'writer','story',NULL),(143348,463618,7,'writer','story',NULL),(143348,559387,8,'producer','producer',NULL),(143348,757312,9,'composer',NULL,NULL),(143808,82772,10,'writer','characters',NULL),(143808,65942,1,'actress',NULL,'[\"Pocahontas\"]'),(143808,316945,2,'actor',NULL,'[\"John Smith\"]'),(143808,191906,3,'actor',NULL,'[\"King James\"]'),(143808,1370,4,'actress',NULL,'[\"Queen Anne\"]'),(143808,254085,5,'director',NULL,NULL),(143808,713214,6,'director',NULL,NULL),(143808,261914,7,'writer','screenplay',NULL),(143808,546083,8,'writer','screenplay',NULL),(143808,462164,9,'writer','screenplay',NULL),(144084,696299,10,'producer','producer',NULL),(144084,288,1,'actor',NULL,'[\"Patrick Bateman\"]'),(144084,857620,2,'actor',NULL,'[\"Timothy Bryce\"]'),(144084,524197,3,'actor',NULL,'[\"Craig McDermott\"]'),(144084,756083,4,'actor',NULL,'[\"David Van Patten\"]'),(144084,366004,5,'director',NULL,NULL),(144084,254735,6,'writer','novel',NULL),(144084,877587,7,'writer','screenplay',NULL),(144084,357018,8,'producer','producer',NULL),(144084,360065,9,'producer','producer',NULL),(144117,4582,10,'composer',NULL,NULL),(144117,353,1,'actor',NULL,'[\"Paul Smecker\"]'),(144117,1218,2,'actor',NULL,'[\"Connor MacManus\"]'),(144117,5342,3,'actor',NULL,'[\"Murphy MacManus\"]'),(144117,217386,4,'actor',NULL,'[\"Rocco\"]'),(144117,240627,5,'director',NULL,NULL),(144117,109578,6,'producer','producer',NULL),(144117,294975,7,'producer','producer',NULL),(144117,759627,8,'producer','producer',NULL),(144117,781912,9,'producer','producer',NULL),(144120,666702,10,'cinematographer','director of photography',NULL),(144120,236,1,'actress',NULL,'[\"Tiffany\"]'),(144120,374,2,'actor',NULL,'[\"Chucky\"]'),(144120,1337,3,'actress',NULL,'[\"Jade\"]'),(144120,820903,4,'actor',NULL,'[\"Jesse\"]'),(144120,950553,5,'director',NULL,NULL),(144120,238841,6,'writer','based on characters created by',NULL),(144120,319666,7,'producer','producer',NULL),(144120,456946,8,'producer','producer',NULL),(144120,6251,9,'composer',NULL,NULL),(144168,325858,10,'editor',NULL,NULL),(144168,379,1,'actress',NULL,'[\"Betsy Jobs\"]'),(144168,931329,2,'actress',NULL,'[\"Arlene Lorenzo\"]'),(144168,445,3,'actor',NULL,'[\"Dick\"]'),(144168,2071,4,'actor',NULL,'[\"Bob Woodward\"]'),(144168,281598,5,'director',NULL,NULL),(144168,519351,6,'writer','written by',NULL),(144168,5036,7,'producer','producer',NULL),(144168,2201,8,'composer',NULL,NULL),(144168,344738,9,'cinematographer',NULL,NULL),(144640,900354,10,'producer','producer',NULL),(144640,117,1,'actress',NULL,'[\"Amy Post\"]'),(144640,1612,2,'actor',NULL,'[\"Oscar Novak\"]'),(144640,1518,3,'actor',NULL,'[\"Charles Newman\"]'),(144640,1624,4,'actor',NULL,'[\"Peter Steinberg\"]'),(144640,764319,5,'director',NULL,NULL),(144640,882867,6,'writer','story',NULL),(144640,112459,7,'writer','screenplay',NULL),(144640,628352,8,'producer','producer',NULL),(144640,798711,9,'producer','producer',NULL),(144715,353074,10,'editor',NULL,NULL),(144715,701,1,'actress',NULL,'[\"Ruth\"]'),(144715,172,2,'actor',NULL,'[\"PJ Waters\"]'),(144715,357986,3,'actress',NULL,'[\"Mum\"]'),(144715,498275,4,'actress',NULL,'[\"Yvonne\"]'),(144715,1005,5,'director',NULL,NULL),(144715,133044,6,'writer','written by',NULL),(144715,152396,7,'producer','producer',NULL),(144715,823,8,'composer',NULL,NULL),(144715,66244,9,'cinematographer','director of photography',NULL),(144814,4311,10,'composer',NULL,NULL),(144814,4749,1,'actress',NULL,'[\"Rachel Lang\"]'),(144814,518715,2,'actor',NULL,'[\"Jesse Ryan\"]'),(144814,116465,3,'actor',NULL,'[\"Mark\"]'),(144814,810397,4,'actress',NULL,'[\"Barbara Lang\"]'),(144814,2240,5,'director',NULL,NULL),(144814,541677,6,'director',NULL,NULL),(144814,175,7,'writer','characters',NULL),(144814,604360,8,'writer','written by',NULL),(144814,597574,9,'producer','producer',NULL),(145487,957205,10,'producer','producer',NULL),(145487,1497,1,'actor',NULL,'[\"Spider-Man\",\"Peter Parker\"]'),(145487,379,2,'actress',NULL,'[\"Mary Jane Watson\"]'),(145487,353,3,'actor',NULL,'[\"Green Goblin\",\"Norman Osborn\"]'),(145487,290556,4,'actor',NULL,'[\"Harry Osborn\"]'),(145487,600,5,'director',NULL,NULL),(145487,498278,6,'writer','Marvel comic book',NULL),(145487,228492,7,'writer','Marvel comic book',NULL),(145487,462895,8,'writer','screenplay',NULL),(145487,117290,9,'producer','producer',NULL),(145531,4842,10,'composer',NULL,NULL),(145531,99,1,'actress',NULL,'[\"Frankie Paige\"]'),(145531,321,2,'actor',NULL,'[\"Father Andrew Kiernan\"]'),(145531,596,3,'actor',NULL,'[\"Cardinal Daniel Houseman\"]'),(145531,505,4,'actress',NULL,'[\"Donna Chadway\"]'),(145531,906548,5,'director',NULL,NULL),(145531,493842,6,'writer','story',NULL),(145531,707931,7,'writer','screenplay',NULL),(145531,541548,8,'producer','producer',NULL),(145531,6012,9,'composer',NULL,NULL),(145660,865189,10,'producer','producer',NULL),(145660,196,1,'actor',NULL,'[\"Austin Powers\",\"Dr. Evil\",\"Fat Bastard\"]'),(145660,1287,2,'actress',NULL,'[\"Felicity Shagwell\"]'),(145660,1868,3,'actor',NULL,'[\"Basil Exposition\"]'),(145660,1822,4,'actor',NULL,'[\"Number Two\"]'),(145660,5366,5,'director',NULL,NULL),(145660,567112,6,'writer','written by',NULL),(145660,529092,7,'producer','producer',NULL),(145660,572805,8,'producer','producer',NULL),(145660,193,9,'producer','producer',NULL),(145937,1213219,10,'editor',NULL,NULL),(145937,68643,1,'self',NULL,'[\"Self\"]'),(145937,8,2,'archive_footage',NULL,'[\"Self\"]'),(145937,5056,3,'archive_footage',NULL,'[\"Self\"]'),(145937,506,4,'archive_footage',NULL,'[\"Self\"]'),(145937,716585,5,'director',NULL,NULL),(145937,67270,6,'producer','producer',NULL),(145937,7055,7,'producer','producer',NULL),(145937,1275,8,'composer',NULL,NULL),(145937,277655,9,'cinematographer',NULL,NULL),(146309,77000,10,'producer','producer',NULL),(146309,126,1,'actor',NULL,'[\"Kenny O\'Donnell\"]'),(146309,339304,2,'actor',NULL,'[\"John F. Kennedy\"]'),(146309,238057,3,'actor',NULL,'[\"U-2 Pilot\"]'),(146309,177020,4,'actor',NULL,'[\"Mark O\'Donnell\"]'),(146309,2044,5,'director',NULL,NULL),(146309,783100,6,'writer','written by',NULL),(146309,561943,7,'writer','book \"The Kennedy Tapes - Inside the White House During the Cuban Missile Crisis\"',NULL),(146309,954546,8,'writer','book \"The Kennedy Tapes - Inside the White House During the Cuban Missile Crisis\"',NULL),(146309,21977,9,'producer','producer',NULL),(146316,957003,10,'writer','screenplay',NULL),(146316,1401,1,'actress',NULL,'[\"Lara Croft\"]'),(146316,685,2,'actor',NULL,'[\"Lord Richard Croft\"]'),(146316,322513,3,'actor',NULL,'[\"Manfred Powell\"]'),(146316,852965,4,'actor',NULL,'[\"Bryce\"]'),(146316,922346,5,'director',NULL,NULL),(146316,153384,6,'writer','story',NULL),(146316,108273,7,'writer','story',NULL),(146316,171718,8,'writer','story',NULL),(146316,557266,9,'writer','screenplay',NULL),(146336,2366,10,'composer',NULL,NULL),(146336,1467,1,'actor',NULL,'[\"Paul Gardener\"]'),(146336,1860,2,'actress',NULL,'[\"Natalie Simon\"]'),(146336,1261,3,'actress',NULL,'[\"Brenda Bates\"]'),(146336,742146,4,'actor',NULL,'[\"Parker Riley\"]'),(146336,87595,5,'director',NULL,NULL),(146336,395531,6,'writer','written by',NULL),(146336,560033,7,'producer','producer',NULL),(146336,568120,8,'producer','producer',NULL),(146336,605775,9,'producer','producer',NULL),(146468,898420,10,'actor',NULL,'[\"Ricardo\"]'),(146468,127604,1,'actor',NULL,'[\"Rai\"]'),(146468,71257,2,'actor',NULL,'[\"Javi\"]'),(146468,947112,3,'actor',NULL,'[\"Manu\"]'),(146468,650485,4,'actress',NULL,'[\"Susi\"]'),(146468,508208,5,'director',NULL,NULL),(146468,703262,6,'producer','producer',NULL),(146468,5790,7,'cinematographer',NULL,NULL),(146468,749593,8,'editor',NULL,NULL),(146468,760890,9,'actress',NULL,'[\"Carmen\"]'),(146838,870106,10,'producer','producer',NULL),(146838,199,1,'actor',NULL,'[\"Tony D\'Amato\"]'),(146838,598,2,'actor',NULL,'[\"Jack \'Cap\' Rooney\"]'),(146838,139,3,'actress',NULL,'[\"Christina Pagniacci\"]'),(146838,249,4,'actor',NULL,'[\"Dr. Harvey Mandrake\"]'),(146838,231,5,'director',NULL,NULL),(146838,2417,6,'writer','screen story',NULL),(146838,517589,7,'writer','screen story',NULL),(146838,357074,8,'producer','producer',NULL),(146838,795682,9,'producer','producer',NULL),(146882,79677,10,'producer','producer',NULL),(146882,131,1,'actor',NULL,'[\"Rob Gordon\"]'),(146882,5013,2,'actress',NULL,'[\"Laura\"]'),(146882,521974,3,'actor',NULL,'[\"Dick\"]'),(146882,85312,4,'actor',NULL,'[\"Barry Judd\"]'),(146882,1241,5,'director',NULL,NULL),(146882,394984,6,'writer','book',NULL),(146882,222584,7,'writer','screenplay',NULL),(146882,684336,8,'writer','screenplay',NULL),(146882,3298,9,'writer','screenplay',NULL),(147004,3920,10,'editor',NULL,NULL),(147004,950,1,'actress',NULL,'[\"Mari Hoff\"]'),(147004,1363,2,'actress',NULL,'[\"LV\"]'),(147004,323,3,'actor',NULL,'[\"Ray Say\"]'),(147004,191,4,'actor',NULL,'[\"Billy\"]'),(147004,379179,5,'director',NULL,NULL),(147004,142179,6,'writer','based on the stage play entitled \"The Rise and Fall of Little Voice\" by',NULL),(147004,439563,7,'producer','producer',NULL),(147004,22903,8,'composer',NULL,NULL),(147004,172130,9,'cinematographer','director of photography',NULL),(147612,654601,10,'editor',NULL,NULL),(147612,11038,1,'actress',NULL,'[\"Joy Jordan\"]'),(147612,1484,2,'actor',NULL,'[\"Andy Kornbluth\"]'),(147612,450,3,'actor',NULL,'[\"Allen\"]'),(147612,48414,4,'actor',NULL,'[\"Bill Maplewood\"]'),(147612,1754,5,'director',NULL,NULL),(147612,394046,6,'producer','producer',NULL),(147612,882927,7,'producer','producer',NULL),(147612,464924,8,'composer',NULL,NULL),(147612,16662,9,'cinematographer',NULL,NULL),(147800,6099,10,'composer',NULL,NULL),(147800,5132,1,'actor',NULL,'[\"Patrick Verona\"]'),(147800,5466,2,'actress',NULL,'[\"Kat Stratford\"]'),(147800,330687,3,'actor',NULL,'[\"Cameron James\"]'),(147800,646351,4,'actress',NULL,'[\"Bianca Stratford\"]'),(147800,432627,5,'director',NULL,NULL),(147800,527581,6,'writer','written by',NULL),(147800,809006,7,'writer','written by',NULL),(147800,636,8,'writer','play \"The Taming of the Shrew\"',NULL),(147800,493662,9,'producer','producer',NULL),(149261,525059,10,'producer','producer',NULL),(149261,5048,1,'actor',NULL,'[\"Carter Blake\"]'),(149261,4787,2,'actress',NULL,'[\"Dr. Susan McAlester\"]'),(149261,168,3,'actor',NULL,'[\"Russell Franklin\"]'),(149261,571537,4,'actress',NULL,'[\"Janice Higgins\"]'),(149261,1317,5,'director',NULL,NULL),(149261,3300,6,'writer','written by',NULL),(149261,694526,7,'writer','written by',NULL),(149261,694638,8,'writer','written by',NULL),(149261,326040,9,'producer','producer',NULL),(149691,5683,10,'cinematographer','director of photography',NULL),(149691,215,1,'actress',NULL,'[\"Adele August\"]'),(149691,204,2,'actress',NULL,'[\"Ann August\"]'),(149691,952,3,'actor',NULL,'[\"Josh Spritzer\"]'),(149691,752527,4,'actress',NULL,'[\"Lillian\"]'),(149691,911061,5,'director',NULL,NULL),(149691,801130,6,'writer','book',NULL),(149691,765091,7,'writer','screenplay',NULL),(149691,548257,8,'producer','producer',NULL),(149691,384,9,'composer',NULL,NULL),(150377,416824,10,'cinematographer','director of photography',NULL),(150377,171,1,'actress',NULL,'[\"Libby\"]'),(150377,169,2,'actor',NULL,'[\"Travis\"]'),(150377,339304,3,'actor',NULL,'[\"Nick\"]'),(150377,918573,4,'actor',NULL,'[\"Matty - Age 4\"]'),(150377,915,5,'director',NULL,NULL),(150377,918711,6,'writer','written by',NULL),(150377,177018,7,'writer','written by',NULL),(150377,325252,8,'producer','producer',NULL),(150377,2934,9,'composer',NULL,NULL),(150662,756525,10,'production_designer',NULL,NULL),(150662,197164,1,'actress',NULL,'[\"Elin Olsson\"]'),(150662,510275,2,'actress',NULL,'[\"Agnes Ahlberg\"]'),(150662,137907,3,'actress',NULL,'[\"Jessica Olsson\"]'),(150662,751798,4,'actor',NULL,'[\"Johan Hulth\"]'),(150662,600546,5,'director',NULL,NULL),(150662,433646,6,'producer','producer',NULL),(150662,105308,7,'cinematographer',NULL,NULL),(150662,504576,8,'editor',NULL,NULL),(150662,935199,9,'editor',NULL,NULL),(151568,980,1,'actor',NULL,'[\"William Schwenck Gilbert\"]'),(151568,179680,2,'actor',NULL,'[\"Arthur Sullivan\"]'),(151568,2077,3,'actor',NULL,'[\"Louis\"]'),(151568,810058,4,'actress',NULL,'[\"Clothilde\"]'),(151568,5139,5,'director',NULL,NULL),(151568,151925,6,'producer','producer',NULL),(151568,5836,7,'cinematographer',NULL,NULL),(151568,758128,8,'editor',NULL,NULL),(151568,829378,9,'production_designer',NULL,NULL),(151691,606682,10,'editor',NULL,NULL),(151691,611932,1,'actor',NULL,'[\"Joe Kavanagh\"]'),(151691,328765,2,'actress',NULL,'[\"Sarah Downie\"]'),(151691,507207,3,'actor',NULL,'[\"Shanks\"]'),(151691,570670,4,'actress',NULL,'[\"Maggie\"]'),(151691,516360,5,'director',NULL,NULL),(151691,491956,6,'writer','screenplay',NULL),(151691,639780,7,'producer','producer',NULL),(151691,6070,8,'composer',NULL,NULL),(151691,10096,9,'cinematographer',NULL,NULL),(151738,628056,10,'composer',NULL,NULL),(151738,106,1,'actress',NULL,'[\"Josie Geller\"]'),(151738,274,2,'actor',NULL,'[\"Rob Geller\"]'),(151738,890232,3,'actor',NULL,'[\"Sam Coulson\"]'),(151738,788340,4,'actress',NULL,'[\"Anita\"]'),(151738,331532,5,'director',NULL,NULL),(151738,463359,6,'writer','written by',NULL),(151738,799050,7,'writer','written by',NULL),(151738,410516,8,'producer','producer',NULL),(151738,433339,9,'producer','producer',NULL),(151804,719679,10,'editor',NULL,NULL),(151804,515296,1,'actor',NULL,'[\"Peter\"]'),(151804,98,2,'actress',NULL,'[\"Joanna\"]'),(151804,379114,3,'actor',NULL,'[\"Michael Bolton\"]'),(151804,619651,4,'actor',NULL,'[\"Samir\"]'),(151804,431918,5,'director',NULL,NULL),(151804,710883,6,'producer','producer',NULL),(151804,744754,7,'producer','producer',NULL),(151804,2227,8,'composer',NULL,NULL),(151804,5891,9,'cinematographer','director of photography',NULL),(152930,767159,10,'cinematographer',NULL,NULL),(152930,618651,1,'actor',NULL,'[\"Daniel Morales\"]'),(152930,225899,2,'actor',NULL,'[\"Émilien Coutant-Kerbalec\"]'),(152930,182839,3,'actress',NULL,'[\"Lilly Bertineau\"]'),(152930,332659,4,'actress',NULL,'[\"Camille Coutant-Kerbalec\"]'),(152930,91,5,'director',NULL,NULL),(152930,108,6,'writer','scenario',NULL),(152930,702466,7,'producer','producer',NULL),(152930,702467,8,'producer','producer',NULL),(152930,15254,9,'composer',NULL,NULL),(154152,600903,1,'self',NULL,'[\"Self\"]'),(154152,5690,2,'director',NULL,NULL),(154152,374658,3,'director',NULL,NULL),(154420,652020,10,'editor',NULL,NULL),(154420,860947,1,'actor',NULL,'[\"Christian\"]'),(154420,605786,2,'actor',NULL,'[\"Faderen\"]'),(154420,488917,3,'actor',NULL,'[\"Michael\"]'),(154420,824785,4,'actress',NULL,'[\"Helene\"]'),(154420,899121,5,'director',NULL,NULL),(154420,750000,6,'writer','screenplay',NULL),(154420,354774,7,'producer','producer',NULL),(154420,421575,8,'composer',NULL,NULL),(154420,230045,9,'cinematographer',NULL,NULL),(154421,697978,10,'actor',NULL,'[\"Ped\"]'),(154421,433697,1,'actress',NULL,'[\"Karen\"]'),(154421,16850,2,'actor',NULL,'[\"Stoffer\"]'),(154421,368482,3,'actress',NULL,'[\"Susanne\"]'),(154421,527937,4,'actor',NULL,'[\"Henrik\"]'),(154421,1885,5,'director',NULL,NULL),(154421,934668,6,'producer','producer',NULL),(154421,826663,7,'editor',NULL,NULL),(154421,509263,8,'actor',NULL,'[\"Jeppe\"]'),(154421,585788,9,'actress',NULL,'[\"Josephine\"]'),(154506,857458,1,'actor',NULL,'[\"The Young Man\"]'),(154506,369918,2,'actor',NULL,'[\"Cobb\"]'),(154506,751301,3,'actress',NULL,'[\"The Blonde\"]'),(154506,634297,4,'actor',NULL,'[\"The Policeman\"]'),(154506,634240,5,'director',NULL,NULL),(154506,858799,6,'producer','producer',NULL),(154506,432382,7,'composer',NULL,NULL),(154506,372213,8,'editor',NULL,NULL),(154683,331834,10,'editor',NULL,NULL),(154683,23715,1,'actor',NULL,'[\"Shirô Shimizu\"]'),(154683,594093,2,'actress',NULL,'[\"Yukiko\",\"Sachiko\"]'),(154683,637894,3,'actor',NULL,'[\"Tamura\"]'),(154683,370621,4,'actor',NULL,'[\"Gôzô Shimizu\"]'),(154683,619966,5,'director',NULL,NULL),(154683,594332,6,'writer','written by',NULL),(154683,645830,7,'producer','producer',NULL),(154683,913810,8,'composer',NULL,NULL),(154683,605720,9,'cinematographer',NULL,NULL),(155180,1107894,1,'actor',NULL,'[\"J.K. Balaganapathi\"]'),(155180,7124,2,'actress',NULL,'[\"Sindhu\"]'),(155180,837817,3,'actress',NULL,'[\"Bhairavi\"]'),(155180,304265,4,'actor',NULL,'[\"Gurumoorthy\"]'),(155180,49335,5,'director',NULL,NULL),(155180,1471715,6,'producer','producer',NULL),(155180,6137,7,'composer',NULL,NULL),(155180,1474846,8,'cinematographer',NULL,NULL),(155180,417301,9,'actor',NULL,NULL),(155267,6015,10,'composer',NULL,NULL),(155267,112,1,'actor',NULL,'[\"Thomas Crown\"]'),(155267,623,2,'actress',NULL,'[\"Catherine Banning\"]'),(155267,1459,3,'actor',NULL,'[\"Michael McCann\"]'),(155267,1262,4,'actor',NULL,'[\"Andrew Wallace\"]'),(155267,1532,5,'director',NULL,NULL),(155267,874450,6,'writer','story',NULL),(155267,228908,7,'writer','screenplay',NULL),(155267,934483,8,'writer','screenplay',NULL),(155267,820429,9,'producer','producer',NULL),(155711,736360,10,'production_designer',NULL,NULL),(155711,134,1,'actor',NULL,'[\"Walt Koontz\"]'),(155711,450,2,'actor',NULL,'[\"Rusty\"]'),(155711,587944,3,'actor',NULL,'[\"Leonard Wilcox\"]'),(155711,61777,4,'actor',NULL,'[\"Jacko\"]'),(155711,1708,5,'director',NULL,NULL),(155711,742772,6,'producer','producer',NULL),(155711,730897,7,'composer',NULL,NULL),(155711,2336,8,'cinematographer',NULL,NULL),(155711,828596,9,'editor',NULL,NULL),(155723,2681,10,'cinematographer',NULL,NULL),(155723,1794,1,'actor',NULL,'[\"Raymond Toker\"]'),(155723,657,2,'actor',NULL,'[\"Truman Lester\"]'),(155723,786806,3,'actress',NULL,'[\"Josephine Priddy\"]'),(155723,625280,4,'actor',NULL,'[\"Hindmarch\"]'),(155723,225869,5,'director',NULL,NULL),(155723,740256,6,'writer','story',NULL),(155723,139234,7,'producer','producer',NULL),(155723,355147,8,'producer','producer',NULL),(155723,543779,9,'composer',NULL,NULL),(155776,847258,10,'editor',NULL,NULL),(155776,535,1,'actress',NULL,'[\"Courtney\"]'),(155776,1261,2,'actress',NULL,'[\"Julie Freeman\"]'),(155776,4748,3,'actress',NULL,'[\"Marcie Fox\"]'),(155776,4301,4,'actress',NULL,'[\"Cheerleader #1\"]'),(155776,825434,5,'director',NULL,NULL),(155776,469668,6,'producer','producer',NULL),(155776,868178,7,'producer','producer',NULL),(155776,6059,8,'composer',NULL,NULL),(155776,898575,9,'cinematographer',NULL,NULL),(156031,934965,1,'actor',NULL,'[\"Narrator\"]'),(156031,281502,2,'director',NULL,NULL),(156031,562111,3,'writer','original story',NULL),(156031,836177,4,'writer','screen adaptation',NULL),(156031,771171,5,'cinematographer',NULL,NULL),(156729,363094,10,'editor',NULL,NULL),(156729,1528,1,'actor',NULL,'[\"Patrick Wheeler\"]'),(156729,644897,2,'actress',NULL,'[\"Sandra\"]'),(156729,561809,3,'actress',NULL,'[\"Mrs. Wheeler\"]'),(156729,303981,4,'actor',NULL,'[\"Mr. Wheeler\"]'),(156729,275651,5,'producer','producer',NULL),(156729,410065,6,'producer','producer',NULL),(156729,521812,7,'composer',NULL,NULL),(156729,666723,8,'composer',NULL,NULL),(156729,462288,9,'cinematographer',NULL,NULL),(156757,198434,10,'production_designer',NULL,NULL),(156757,38673,1,'actor',NULL,'[\"Danny Mitchell\"]'),(156757,829623,2,'actor',NULL,'[\"Mickey\"]'),(156757,516385,3,'actor',NULL,'[\"Brother McBride\"]'),(156757,809831,4,'actor',NULL,'[\"Gary\"]'),(156757,287161,5,'director',NULL,NULL),(156757,446308,6,'producer','producer',NULL),(156757,366880,7,'composer',NULL,NULL),(156757,746474,8,'cinematographer',NULL,NULL),(156757,552150,9,'editor',NULL,NULL),(156807,635,1,'actor',NULL,'[\"Roger Crumpkin\"]'),(156807,197940,2,'actress',NULL,'[\"Sunday Valentine\"]'),(156807,275913,3,'actor',NULL,'[\"Duxton Chevalier\",\"Sir Walter Raleigh\"]'),(156807,685221,4,'actor',NULL,'[\"Lyndon\"]'),(156807,730000,5,'writer','screenplay',NULL),(156807,743916,6,'producer','producer',NULL),(156807,879198,7,'composer',NULL,NULL),(156807,36634,8,'cinematographer',NULL,NULL),(156807,553070,9,'editor',NULL,NULL),(156843,651627,10,'actor',NULL,'[\"Darmoor\"]'),(156843,242010,1,'actor',NULL,'[\"Dr. Acula\"]'),(156843,601146,2,'actor',NULL,'[\"Lt. Daniel Bradford\"]'),(156843,426363,3,'actor',NULL,'[\"Lobo\"]'),(156843,361119,4,'actress',NULL,'[\"The White Ghost\"]'),(156843,248,5,'director',NULL,NULL),(156843,860847,6,'cinematographer','director of photography',NULL),(156843,139383,7,'actor',NULL,'[\"Captain Robbins\"]'),(156843,545803,8,'actor',NULL,'[\"Kelton\"]'),(156843,619265,9,'actor',NULL,'[\"Crandel\"]'),(156887,409279,10,'producer','producer',NULL),(156887,412585,1,'actress',NULL,'[\"Mima Kirigoe\"]'),(156887,559551,2,'actress',NULL,'[\"Rumi\"]'),(156887,875320,3,'actor',NULL,'[\"Tadokoro\"]'),(156887,959991,4,'actor',NULL,'[\"Uchida\"]'),(156887,464804,5,'director',NULL,NULL),(156887,613444,6,'writer','screenplay',NULL),(156887,847621,7,'writer','novel \"Pâfekuto burû: Kanzen hentai\"',NULL),(156887,1038897,8,'writer','translation',NULL),(156887,765126,9,'writer','adaptation',NULL),(157503,818785,10,'cinematographer',NULL,NULL),(157503,379,1,'actress',NULL,'[\"Amber Atkins\"]'),(157503,612,2,'actress',NULL,'[\"Rebecca \'Becky\' Ann Leeman\"]'),(157503,289,3,'actress',NULL,'[\"Annette Atkins\"]'),(157503,5049,4,'actress',NULL,'[\"Loretta\"]'),(157503,417794,5,'director',NULL,NULL),(157503,931185,6,'writer','written by',NULL),(157503,388788,7,'producer','producer',NULL),(157503,689780,8,'producer','producer',NULL),(157503,6205,9,'composer',NULL,NULL),(158011,2681,10,'cinematographer',NULL,NULL),(158011,642573,1,'actress',NULL,'[\"Alice\"]'),(158011,809135,2,'actress',NULL,'[\"Mrs. Ferriter\"]'),(158011,254362,3,'actress',NULL,'[\"Nora\",\"Niamh\"]'),(158011,364813,4,'actor',NULL,'[\"Jim\"]'),(158011,21899,5,'director',NULL,NULL),(158011,24909,6,'producer','producer',NULL),(158011,124239,7,'producer','producer',NULL),(158011,276404,8,'producer','producer',NULL),(158011,279842,9,'composer',NULL,NULL),(158371,576,1,'actor',NULL,'[\"Emmet Ray\"]'),(158371,608090,2,'actress',NULL,'[\"Hattie\"]'),(158371,95,3,'actor',NULL,'[\"Woody Allen\"]'),(158371,241909,4,'actor',NULL,'[\"Ben Duncan\"]'),(158371,235389,5,'producer','producer',NULL),(158371,270508,6,'cinematographer','director of photography',NULL),(158371,503429,7,'editor',NULL,NULL),(158371,520288,8,'production_designer',NULL,NULL),(158409,293456,10,'cinematographer',NULL,NULL),(158409,1002,1,'actor',NULL,'[\"Tre Ramzey\"]'),(158409,1853,2,'actress',NULL,'[\"Alex Torres\"]'),(158409,648,3,'actor',NULL,'[\"Obike Fixx\"]'),(158409,159513,4,'actress',NULL,'[\"Jet\"]'),(158409,225416,5,'director',NULL,NULL),(158409,208923,6,'writer','story',NULL),(158409,938129,7,'writer','story',NULL),(158409,736462,8,'producer','producer',NULL),(158409,4841,9,'composer',NULL,NULL),(158446,190607,10,'cinematographer',NULL,NULL),(158446,491422,1,'actress',NULL,'[\"Laurie\"]'),(158446,851658,2,'actor',NULL,'[\"Lorenzo\"]'),(158446,92830,3,'actor',NULL,'[\"Jeune Lorenzo\"]'),(158446,167501,4,'actress',NULL,'[\"La Bella\"]'),(158446,108447,5,'director',NULL,NULL),(158446,292024,6,'producer','producer',NULL),(158446,334747,7,'composer',NULL,NULL),(158446,334773,8,'composer',NULL,NULL),(158446,33596,9,'cinematographer',NULL,NULL),(158692,475411,1,'actor',NULL,'[\"Juha\"]'),(158692,653669,2,'actress',NULL,'[\"Marja\"]'),(158692,932870,3,'actor',NULL,'[\"Shemeikka\"]'),(158692,671326,4,'actor',NULL,'[\"Autonkuljettaja\"]'),(158692,442454,5,'director',NULL,NULL),(158692,14251,6,'writer','novel',NULL),(158692,863129,7,'composer',NULL,NULL),(158692,758742,8,'cinematographer',NULL,NULL),(158714,848786,10,'cinematographer',NULL,NULL),(158714,435299,1,'actress',NULL,'[\"Yuki Kashima (Shurayuki-hime)\"]'),(158714,475910,2,'actor',NULL,'[\"Ryûrei Ashio\"]'),(158714,197379,3,'actor',NULL,'[\"Gô Kashima\"]'),(158714,15128,4,'actress',NULL,'[\"Sayo Kashima\"]'),(158714,297846,5,'director',NULL,NULL),(158714,436655,6,'writer','story',NULL),(158714,463521,7,'writer','story',NULL),(158714,651487,8,'writer','screenplay',NULL),(158714,386265,9,'composer',NULL,NULL),(158811,5008,10,'producer','producer',NULL),(158811,324397,1,'actor',NULL,'[\"Gonzo\",\"Bunsen Honeydew\",\"Waldorf\"]'),(158811,926209,2,'actor',NULL,'[\"Kermit the Frog\",\"Rizzo the Rat\",\"Beaker\"]'),(158811,57321,3,'actor',NULL,'[\"Pepe the Prawn\",\"Bobo as Rentro\",\"Johnny Fiama\"]'),(158811,625456,4,'actor',NULL,'[\"Robin\",\"Statler\",\"Ubergonzo\"]'),(158811,384722,5,'director',NULL,NULL),(158811,432075,6,'writer','written by',NULL),(158811,563505,7,'writer','written by',NULL),(158811,442190,8,'writer','written by',NULL),(158811,48744,9,'producer','producer',NULL),(158983,5295,1,'actor',NULL,'[\"Stan Marsh\",\"Eric Cartman\",\"Satan\"]'),(158983,1778,2,'actor',NULL,'[\"Kyle Broflovski\",\"Kenny McCormick\",\"Saddam Hussein\"]'),(158983,74834,3,'actress',NULL,'[\"Liane Cartman\",\"Sheila Broflovski\",\"Sharon Marsh\"]'),(158983,5002,4,'actor',NULL,'[\"Chef\"]'),(158983,103702,5,'writer','written by',NULL),(158983,3299,6,'composer',NULL,NULL),(158983,893487,7,'editor',NULL,NULL),(159097,360065,10,'producer','producer',NULL),(159097,379,1,'actress',NULL,'[\"Lux Lisbon\"]'),(159097,1326,2,'actor',NULL,'[\"Trip Fontaine\"]'),(159097,249,3,'actor',NULL,'[\"Mr. Lisbon\"]'),(159097,678,4,'actress',NULL,'[\"Mrs. Lisbon\"]'),(159097,1068,5,'director',NULL,NULL),(159097,262325,6,'writer','novel',NULL),(159097,338,7,'producer','producer',NULL),(159097,182449,8,'producer','producer',NULL),(159097,357074,9,'producer','producer',NULL),(159272,378219,10,'production_designer',NULL,NULL),(159272,329339,1,'actor',NULL,'[\"Youth with Mobile Phone\"]'),(159272,699306,2,'actor',NULL,'[\"Croat\"]'),(159272,676709,3,'actor',NULL,'[\"Bus Driver\"]'),(159272,420448,4,'actor',NULL,'[\"Serb\"]'),(159272,229026,5,'director',NULL,NULL),(159272,941199,6,'producer','producer',NULL),(159272,68211,7,'composer',NULL,NULL),(159272,10096,8,'cinematographer',NULL,NULL),(159272,456974,9,'editor',NULL,NULL),(159273,204862,10,'producer','producer',NULL),(159273,432,1,'actor',NULL,'[\"Reigart\"]'),(159273,5562,2,'actor',NULL,'[\"Burnett\"]'),(159273,532683,3,'actor',NULL,'[\"Stackhouse\"]'),(159273,925916,4,'actor',NULL,'[\"Rodway\"]'),(159273,601382,5,'director',NULL,NULL),(159273,859029,6,'writer','story',NULL),(159273,859049,7,'writer','story',NULL),(159273,892705,8,'writer','screenplay',NULL),(159273,672015,9,'writer','screenplay',NULL),(159365,947695,10,'producer','producer',NULL),(159365,179,1,'actor',NULL,'[\"Inman\"]'),(159365,173,2,'actress',NULL,'[\"Ada Monroe\"]'),(159365,250,3,'actress',NULL,'[\"Ruby Thewes\"]'),(159365,40586,4,'actress',NULL,'[\"Maddy\"]'),(159365,5237,5,'director',NULL,NULL),(159365,292565,6,'writer','book',NULL),(159365,74100,7,'producer','producer',NULL),(159365,394564,8,'producer','producer',NULL),(159365,1628,9,'producer','producer',NULL),(160127,730850,10,'writer','TV series',NULL),(160127,139,1,'actress',NULL,'[\"Natalie\"]'),(160127,106,2,'actress',NULL,'[\"Dylan\"]'),(160127,5154,3,'actress',NULL,'[\"Alex\"]'),(160127,195,4,'actor',NULL,'[\"Bosley\"]'),(160127,629334,5,'director',NULL,NULL),(160127,746598,6,'writer','written by',NULL),(160127,4412,7,'writer','written by',NULL),(160127,41864,8,'writer','written by',NULL),(160127,324578,9,'writer','TV series',NULL),(160399,878638,10,'writer','screenplay',NULL),(160399,111274,1,'actor',NULL,'[\"Lt. Burrows\"]'),(160399,352,2,'actor',NULL,'[\"Hathaway\"]'),(160399,641,3,'actor',NULL,'[\"Spencer Olham\"]'),(160399,656,4,'actress',NULL,'[\"Maya Olham\"]'),(160399,1219,5,'director',NULL,NULL),(160399,1140,6,'writer','short story \"The Impostor\"',NULL),(160399,3298,7,'writer','adaptation',NULL),(160399,143187,8,'writer','screenplay',NULL),(160399,472567,9,'writer','screenplay',NULL),(160611,27582,10,'editor',NULL,NULL),(160611,228,1,'actor',NULL,'[\"Michael Lynch\"]'),(160611,400,2,'actress',NULL,'[\"Christine Lynch\"]'),(160611,611932,3,'actor',NULL,'[\"Stevie\"]'),(160611,226820,4,'actor',NULL,'[\"Noel Quigley\"]'),(160611,642823,5,'director',NULL,NULL),(160611,826437,6,'writer',NULL,NULL),(160611,147080,7,'producer','producer',NULL),(160611,16332,8,'composer',NULL,NULL),(160611,242491,9,'cinematographer','director of photography',NULL),(160862,4841,10,'composer',NULL,NULL),(160862,5327,1,'actor',NULL,'[\"Zack Siler\"]'),(160862,337,2,'actress',NULL,'[\"Laney Boggs\"]'),(160862,498,3,'actor',NULL,'[\"Brock Hudson\"]'),(160862,908094,4,'actor',NULL,'[\"Dean Sampson\"]'),(160862,410769,5,'director',NULL,NULL),(160862,281592,6,'writer','written by',NULL),(160862,9222,7,'producer','producer',NULL),(160862,321621,8,'producer','producer',NULL),(160862,506597,9,'producer','producer',NULL),(161081,6293,10,'composer',NULL,NULL),(161081,148,1,'actor',NULL,'[\"Norman Spencer\"]'),(161081,201,2,'actress',NULL,'[\"Claire Spencer\"]'),(161081,870007,3,'actress',NULL,'[\"Caitlin Spencer\"]'),(161081,1584,4,'actress',NULL,'[\"Mary Feur\"]'),(161081,709,5,'director',NULL,NULL),(161081,163988,6,'writer','screenplay',NULL),(161081,449576,7,'writer','story',NULL),(161081,710759,8,'producer','producer',NULL),(161081,823330,9,'producer','producer',NULL),(161860,739688,10,'editor',NULL,NULL),(161860,477810,1,'actress',NULL,'[\"Jettel Redlich\"]'),(161860,632457,2,'actor',NULL,'[\"Walter Redlich\"]'),(161860,352278,3,'actor',NULL,'[\"Walter Süßkind\"]'),(161860,648943,4,'actor',NULL,'[\"Owuor\"]'),(161860,512862,5,'director',NULL,NULL),(161860,959004,6,'writer','novel',NULL),(161860,380764,7,'producer','producer',NULL),(161860,718426,8,'composer',NULL,NULL),(161860,5846,9,'cinematographer',NULL,NULL),(162222,121281,10,'cinematographer','director of photography',NULL),(162222,158,1,'actor',NULL,'[\"Chuck Noland\"]'),(162222,166,2,'actress',NULL,'[\"Kelly Frears\"]'),(162222,584052,3,'actor',NULL,'[\"Ramon\"]'),(162222,925096,4,'actress',NULL,'[\"Bettina Peterson\"]'),(162222,709,5,'director',NULL,NULL),(162222,115310,6,'writer','written by',NULL),(162222,710759,7,'producer','producer',NULL),(162222,823330,8,'producer','producer',NULL),(162222,6293,9,'composer',NULL,NULL),(162346,457598,10,'composer',NULL,NULL),(162346,114,1,'actor',NULL,'[\"Seymour\"]'),(162346,301,2,'actress',NULL,'[\"Enid\"]'),(162346,424060,3,'actress',NULL,'[\"Rebecca\"]'),(162346,605,4,'actor',NULL,'[\"Josh\"]'),(162346,959062,5,'director',NULL,NULL),(162346,167280,6,'writer','comic book',NULL),(162346,355147,7,'producer','producer',NULL),(162346,518,8,'producer','producer',NULL),(162346,809833,9,'producer','producer',NULL),(162556,740766,10,'production_designer',NULL,NULL),(162556,142972,1,'actress',NULL,'[\"Camille\"]'),(162556,310865,2,'actress',NULL,'[\"Eva\"]'),(162556,701327,3,'actor',NULL,'[\"Nico\"]'),(162556,518666,4,'actress',NULL,'[\"Ariane\"]'),(162556,321403,5,'director',NULL,NULL),(162556,12433,6,'producer','producer',NULL),(162556,556550,7,'producer','producer',NULL),(162556,733728,8,'cinematographer',NULL,NULL),(162556,777173,9,'editor',NULL,NULL),(162661,775443,10,'producer','producer',NULL),(162661,136,1,'actor',NULL,'[\"Ichabod Crane\"]'),(162661,207,2,'actress',NULL,'[\"Katrina Van Tassel\"]'),(162661,1669,3,'actress',NULL,'[\"Lady Van Tassel\",\"Crone\"]'),(162661,2091,4,'actor',NULL,'[\"Baltus Van Tassel\"]'),(162661,318,5,'director',NULL,NULL),(162661,410331,6,'writer','story \"The Legend of Sleepy Hollow\"',NULL),(162661,944892,7,'writer','screen story',NULL),(162661,1825,8,'writer','screen story',NULL),(162661,748784,9,'producer','producer',NULL),(162710,820987,10,'cinematographer',NULL,NULL),(162710,132301,1,'actor',NULL,'[\"Gabriel\"]'),(162710,685755,2,'actor',NULL,'[\"Mark\"]'),(162710,1760,3,'actress',NULL,'[\"Katherine\"]'),(162710,79894,4,'actor',NULL,'[\"Rich\"]'),(162710,266302,5,'director',NULL,NULL),(162710,769778,6,'writer','writer',NULL),(162710,195396,7,'producer','producer',NULL),(162710,441839,8,'producer','producer',NULL),(162710,295195,9,'composer',NULL,NULL),(162735,22903,10,'composer',NULL,NULL),(162735,686,1,'actor',NULL,'[\"James Houston\"]'),(162735,39435,2,'actor',NULL,'[\"William Parkerson\"]'),(162735,317,3,'actor',NULL,'[\"Chief Hennessy\"]'),(162735,171608,4,'actor',NULL,'[\"Gaspare Marchesi\"]'),(162735,583292,5,'director',NULL,NULL),(162735,303754,6,'writer','book',NULL),(162735,695112,7,'writer','teleplay',NULL),(162735,422343,8,'producer','producer',NULL),(162735,548299,9,'producer','producer',NULL),(162973,898535,10,'editor',NULL,NULL),(162973,799066,1,'actor',NULL,'[\"Steven Carter\"]'),(162973,331379,2,'actor',NULL,'[\"John Dixon\"]'),(162973,110083,3,'actress',NULL,'[\"Linda\"]'),(162973,366525,4,'actress',NULL,'[\"Jessica\"]'),(162973,794960,5,'director',NULL,NULL),(162973,928495,6,'writer','play \"What\'s Wrong with Angry\"',NULL),(162973,853198,7,'producer','producer',NULL),(162973,526753,8,'composer',NULL,NULL),(162973,21961,9,'cinematographer',NULL,NULL),(162983,598520,10,'editor',NULL,NULL),(162983,473,1,'actress',NULL,'[\"Georgia\"]'),(162983,212,2,'actress',NULL,'[\"Eve\"]'),(162983,1435,3,'actress',NULL,'[\"Maddy\"]'),(162983,527,4,'actor',NULL,'[\"Lou\"]'),(162983,258286,5,'writer','book',NULL),(162983,1188,6,'writer','screenplay',NULL),(162983,548257,7,'producer','producer',NULL),(162983,386595,8,'composer',NULL,NULL),(162983,40460,9,'cinematographer','director of photography',NULL),(163025,290581,10,'producer','producer',NULL),(163025,554,1,'actor',NULL,'[\"Dr. Alan Grant\"]'),(163025,513,2,'actor',NULL,'[\"Paul Kirby\"]'),(163025,495,3,'actress',NULL,'[\"Amanda Kirby\"]'),(163025,5273,4,'actor',NULL,'[\"Billy Brennan\"]'),(163025,2653,5,'director',NULL,NULL),(163025,341,6,'writer','characters',NULL),(163025,118224,7,'writer','written by',NULL),(163025,668247,8,'writer','written by',NULL),(163025,852591,9,'writer','written by',NULL),(163178,165078,10,'editor',NULL,NULL),(163178,565883,1,'actress',NULL,'[\"Det. JJ Wilson\"]'),(163178,115979,2,'actor',NULL,'[\"Det. Robbie Walsh\"]'),(163178,536485,3,'actor',NULL,'[\"Det. Chris Hill\"]'),(163178,229994,4,'actor',NULL,'[\"Det. Lamz Fry\"]'),(163178,382054,5,'director',NULL,NULL),(163178,455066,6,'producer','producer',NULL),(163178,1737002,7,'producer','producer',NULL),(163178,569855,8,'composer',NULL,NULL),(163178,700050,9,'cinematographer',NULL,NULL),(163187,472256,10,'producer','producer',NULL),(163187,210,1,'actress',NULL,'[\"Maggie Carpenter\"]'),(163187,152,2,'actor',NULL,'[\"Ike Graham\"]'),(163187,349,3,'actress',NULL,'[\"Peggy Flemming\"]'),(163187,1185,4,'actor',NULL,'[\"Fisher\"]'),(163187,5190,5,'director',NULL,NULL),(163187,569210,6,'writer','written by',NULL),(163187,663490,7,'writer','written by',NULL),(163187,181202,8,'producer','producer',NULL),(163187,276059,9,'producer','producer',NULL),(163651,956015,10,'producer','producer',NULL),(163651,4755,1,'actor',NULL,'[\"Jim\"]'),(163651,5098,2,'actor',NULL,'[\"Oz\"]'),(163651,5272,3,'actor',NULL,'[\"Kevin\"]'),(163651,177639,4,'actress',NULL,'[\"Stifler\'s Mom\"]'),(163651,919369,5,'director',NULL,NULL),(163651,919363,6,'director',NULL,NULL),(163651,381221,7,'writer','written by',NULL),(163651,601031,8,'producer','producer',NULL),(163651,675013,9,'producer','producer',NULL),(163978,451787,10,'cinematographer',NULL,NULL),(163978,138,1,'actor',NULL,'[\"Richard\"]'),(163978,842770,2,'actress',NULL,'[\"Sal\"]'),(163978,948679,3,'actor',NULL,'[\"Hustler\"]'),(163978,665265,4,'actress',NULL,'[\"Hotel Receptionist\"]'),(163978,965,5,'director',NULL,NULL),(163978,388076,6,'writer','screenplay',NULL),(163978,307497,7,'writer','novel',NULL),(163978,531602,8,'producer','producer',NULL),(163978,823,9,'composer',NULL,NULL),(163983,626883,10,'producer','producer',NULL),(163983,107,1,'actress',NULL,'[\"Maggie O\'Connor\"]'),(163983,1751,2,'actor',NULL,'[\"John Travis\"]'),(163983,1722,3,'actor',NULL,'[\"Eric Stark\"]'),(163983,171052,4,'actress',NULL,'[\"Cody\"]'),(163983,751080,5,'director',NULL,NULL),(163983,817697,6,'writer','novel',NULL),(163983,725564,7,'writer','screenplay',NULL),(163983,337731,8,'writer','screenplay',NULL),(163983,337825,9,'writer','screenplay',NULL),(164052,25,10,'composer',NULL,NULL),(164052,102,1,'actor',NULL,'[\"Sebastian Caine\"]'),(164052,223,2,'actress',NULL,'[\"Linda McKay\"]'),(164052,982,3,'actor',NULL,'[\"Matthew Kensington\"]'),(164052,225332,4,'actress',NULL,'[\"Sarah Kennedy\"]'),(164052,682,5,'director',NULL,NULL),(164052,860155,6,'writer','story',NULL),(164052,549256,7,'writer','story',NULL),(164052,550728,8,'producer','producer',NULL),(164052,926824,9,'producer','producer',NULL),(164184,25,10,'composer',NULL,NULL),(164184,255,1,'actor',NULL,'[\"Jack Ryan\"]'),(164184,151,2,'actor',NULL,'[\"DCI William Cabot\"]'),(164184,1172817,3,'actor',NULL,'[\"Syrian Radar Operator\"]'),(164184,90309,4,'actor',NULL,'[\"Israeli Pilot\"]'),(164184,4675,5,'director',NULL,NULL),(164184,2007,6,'writer','novel',NULL),(164184,1921,7,'writer','screenplay',NULL),(164184,2417,8,'writer','screenplay',NULL),(164184,626883,9,'producer','producer',NULL),(164334,25,10,'composer',NULL,NULL),(164334,151,1,'actor',NULL,'[\"Alex Cross\"]'),(164334,699,2,'actor',NULL,'[\"Gary Soneji\"]'),(164334,5321,3,'actress',NULL,'[\"Jezzie Flannigan\"]'),(164334,48414,4,'actor',NULL,'[\"Ollie McArthur\"]'),(164334,848414,5,'director',NULL,NULL),(164334,666248,6,'writer','novel',NULL),(164334,609031,7,'writer','screenplay',NULL),(164334,113360,8,'producer','producer',NULL),(164334,937208,9,'producer','producer',NULL),(164912,6293,10,'composer',NULL,NULL),(164912,150,1,'actor',NULL,'[\"Stuart Little\"]'),(164912,133,2,'actress',NULL,'[\"Mrs. Little\"]'),(164912,491402,3,'actor',NULL,'[\"Mr. Little\"]'),(164912,5151,4,'actor',NULL,'[\"George Little\"]'),(164912,591450,5,'director',NULL,NULL),(164912,924754,6,'writer','book',NULL),(164912,796117,7,'writer','screenplay',NULL),(164912,111769,8,'writer','screenplay',NULL),(164912,926824,9,'producer','producer',NULL),(165078,945594,10,'cinematographer',NULL,NULL),(165078,33152,1,'actor',NULL,'[\"Takashi Mochizuki, counselor\"]'),(165078,643861,2,'actress',NULL,'[\"Shiori Satonaka, trainee counselor\"]'),(165078,855398,3,'actor',NULL,'[\"Satoru Kawashima, counselor\"]'),(165078,619822,4,'actor',NULL,'[\"Takuro Sugie, counselor\"]'),(165078,466153,5,'director',NULL,NULL),(165078,15316,6,'producer','producer',NULL),(165078,766261,7,'producer','producer',NULL),(165078,440408,8,'composer',NULL,NULL),(165078,837763,9,'cinematographer',NULL,NULL),(165499,156906,10,'editor',NULL,NULL),(165499,477209,1,'actor',NULL,'[\"Striding Cloud\",\"Bou Ging Wan\"]'),(165499,155562,2,'actor',NULL,'[\"Whispering Wind\",\"Nip Fung\"]'),(165499,2002,3,'actor',NULL,'[\"Lord Conqueror\",\"Hung Baa\"]'),(165499,946015,4,'actress',NULL,'[\"Charity\",\"Hung Chi\"]'),(165499,490487,5,'director',NULL,NULL),(165499,1173525,6,'writer','story',NULL),(165499,939236,7,'writer','screenplay',NULL),(165499,2689732,8,'producer','producer',NULL),(165499,150989,9,'composer',NULL,NULL),(165598,1748,10,'actor',NULL,'[\"Red Forman\",\"Reginald \\\"Red\\\" Forman\",\"Reginald \'Red\' Forman\"]'),(165598,333410,1,'actor',NULL,'[\"Eric Forman\"]'),(165598,696059,2,'actress',NULL,'[\"Donna Pinciotti\"]'),(165598,5109,3,'actress',NULL,'[\"Jackie Burkhart\"]'),(165598,5194,4,'actor',NULL,'[\"Steven Hyde\"]'),(165598,106373,5,'writer','created by',NULL),(165598,877425,6,'writer','created by',NULL),(165598,877901,7,'writer','created by',NULL),(165598,5519,8,'actor',NULL,'[\"Fez\"]'),(165598,750468,9,'actress',NULL,'[\"Kitty Forman\"]'),(165643,335592,10,'composer',NULL,NULL),(165643,1774,1,'actor',NULL,'[\"Mark Clear\"]'),(165643,396796,2,'actor',NULL,'[\"Dean Carter\"]'),(165643,629,3,'actress',NULL,'[\"Greta\"]'),(165643,4790,4,'actor',NULL,'[\"Scotty\"]'),(165643,864812,5,'director',NULL,NULL),(165643,81730,6,'producer','producer',NULL),(165643,537550,7,'producer','producer',NULL),(165643,745272,8,'producer','producer',NULL),(165643,2140588,9,'composer',NULL,NULL),(165798,76703,10,'production_designer',NULL,NULL),(165798,1845,1,'actor',NULL,'[\"Ghost Dog\"]'),(165798,798328,2,'actor',NULL,'[\"Ray Vargo\"]'),(165798,868110,3,'actor',NULL,'[\"Louie\"]'),(165798,331054,4,'actor',NULL,'[\"Sonny Valerio\"]'),(165798,464,5,'director',NULL,NULL),(165798,345491,6,'producer','producer',NULL),(165798,753526,7,'composer',NULL,NULL),(165798,5810,8,'cinematographer',NULL,NULL),(165798,704950,9,'editor',NULL,NULL),(165929,888329,10,'producer','producer',NULL),(165929,1472,1,'actor',NULL,'[\"Han Sing\"]'),(165929,4691,2,'actress',NULL,'[\"Trish O\'Day\"]'),(165929,913460,3,'actor',NULL,'[\"Mac\"]'),(165929,5568,4,'actor',NULL,'[\"Kai\"]'),(165929,5647,5,'director',NULL,NULL),(165929,438449,6,'writer','story',NULL),(165929,77171,7,'writer','screenplay',NULL),(165929,418904,8,'writer','screenplay',NULL),(165929,5428,9,'producer','producer',NULL),(165982,4581,10,'composer',NULL,NULL),(165982,93,1,'actor',NULL,'[\"Sinbad\"]'),(165982,1876,2,'actress',NULL,'[\"Marina\"]'),(165982,1212,3,'actor',NULL,'[\"Proteus\"]'),(165982,201,4,'actress',NULL,'[\"Eris\"]'),(165982,1369708,5,'director',NULL,NULL),(165982,426333,6,'director',NULL,NULL),(165982,517589,7,'writer','written by',NULL),(165982,5076,8,'producer','producer',NULL),(165982,814969,9,'producer','producer',NULL),(166175,662491,10,'editor',NULL,NULL),(166175,700875,1,'actor',NULL,'[\"George Khan\"]'),(166175,60221,2,'actress',NULL,'[\"Ella Khan\"]'),(166175,746149,3,'actor',NULL,'[\"Sajid Khan\"]'),(166175,659544,4,'actress',NULL,'[\"Meenah Khan\"]'),(166175,640740,5,'director',NULL,NULL),(166175,451351,6,'writer','play',NULL),(166175,879889,7,'producer','producer',NULL),(166175,597073,8,'composer',NULL,NULL),(166175,5909,9,'cinematographer','director of photography',NULL),(166222,480217,1,'actor',NULL,'[\"The director\"]'),(166222,598925,2,'actress',NULL,'[\"The actress\",\"Sandy\"]'),(166222,1363997,3,'actress',NULL,'[\"The roommate\",\"Martha\"]'),(166222,385809,4,'actor',NULL,'[\"Producer #2\"]'),(166222,255,5,'director',NULL,NULL),(166222,520234,6,'writer',NULL,NULL),(166222,1287946,7,'editor',NULL,NULL),(166222,712887,8,'production_designer',NULL,NULL),(166276,6050,10,'composer',NULL,NULL),(166276,409,1,'actor',NULL,'[\"Stu Miley\"]'),(166276,403,2,'actress',NULL,'[\"Julie McElroy\"]'),(166276,1806,3,'actor',NULL,'[\"Voice of Monkeybone\"]'),(166276,441592,4,'actor',NULL,'[\"Organ Donor Stu\"]'),(166276,783139,5,'director',NULL,NULL),(166276,85718,6,'writer','graphic novel \"Dark Town\"',NULL),(166276,358334,7,'writer','written by',NULL),(166276,55431,8,'producer','producer',NULL),(166276,705365,9,'producer','producer',NULL),(166485,252992,10,'producer','producer',NULL),(166485,149,1,'actress',NULL,'[\"Anna\"]'),(166485,334,2,'actor',NULL,'[\"King Mongkut\"]'),(166485,499,3,'actress',NULL,'[\"Tuptim\"]'),(166485,271657,4,'actor',NULL,'[\"Louis\"]'),(166485,855035,5,'director',NULL,NULL),(166485,503103,6,'writer','diaries',NULL),(166485,576228,7,'writer','screenplay',NULL),(166485,471298,8,'writer','screenplay',NULL),(166485,4744,9,'producer','producer',NULL),(166792,31758,10,'producer','producer',NULL),(166792,409186,1,'actor',NULL,'[\"Scooby-Doo\"]'),(166792,921942,2,'actor',NULL,'[\"Norville \'Shaggy\' Rogers\"]'),(166792,74834,3,'actress',NULL,'[\"Daphne Blake\"]'),(166792,919798,4,'actor',NULL,'[\"Fred Jones\"]'),(166792,826693,5,'director',NULL,NULL),(166792,503158,6,'writer','story by',NULL),(166792,230669,7,'writer','story by',NULL),(166792,360253,8,'writer','based upon characters created by',NULL),(166792,53484,9,'writer','based upon characters created by',NULL),(166813,814969,10,'producer','producer',NULL),(166813,354,1,'actor',NULL,'[\"Spirit\"]'),(166813,342,2,'actor',NULL,'[\"The Colonel\"]'),(166813,836070,3,'actor',NULL,'[\"Little Creek\"]'),(166813,76718,4,'actor',NULL,'[\"Sgt. Adams\"]'),(166813,38432,5,'director',NULL,NULL),(166813,177170,6,'director',NULL,NULL),(166813,299301,7,'writer','screenplay by',NULL),(166813,524710,8,'writer','co-writer',NULL),(166813,5076,9,'producer','producer',NULL),(166896,5711,10,'cinematographer','director of photography',NULL),(166896,2070,1,'actor',NULL,'[\"Alvin\"]'),(166896,651,2,'actress',NULL,'[\"Rose\"]'),(166896,1886964,3,'actress',NULL,'[\"Dorothy\"]'),(166896,139388,4,'actor',NULL,'[\"Bud\"]'),(166896,186,5,'director',NULL,NULL),(166896,730034,6,'writer','written by',NULL),(166896,842156,7,'writer','written by',NULL),(166896,249050,8,'producer','producer',NULL),(166896,823,9,'composer',NULL,NULL),(166924,842156,10,'producer','producer',NULL),(166924,915208,1,'actress',NULL,'[\"Betty Elms\",\"Diane Selwyn\"]'),(166924,5009,2,'actress',NULL,'[\"Rita\",\"Camilla Rhodes\"]'),(166924,857620,3,'actor',NULL,'[\"Adam\"]'),(166924,60931,4,'actress',NULL,'[\"Irene\"]'),(166924,186,5,'director',NULL,NULL),(166924,249050,6,'producer','producer',NULL),(166924,469813,7,'producer','producer',NULL),(166924,688789,8,'producer','producer',NULL),(166924,764963,9,'producer','producer',NULL),(166943,771200,10,'producer','producer',NULL),(166943,658,1,'actress',NULL,'[\"Roberta\"]'),(166943,1458,2,'actress',NULL,'[\"Assunta\"]'),(166943,227693,3,'actor',NULL,'[\"Lexi at 5\"]'),(166943,29400,4,'actor',NULL,'[\"Nick at 7\"]'),(166943,127,5,'director',NULL,NULL),(166943,336861,6,'writer','written by',NULL),(166943,438379,7,'producer','producer',NULL),(166943,534543,8,'producer','producer',NULL),(166943,5850281,9,'producer','producer',NULL),(167190,724700,10,'producer','producer',NULL),(167190,579,1,'actor',NULL,'[\"Hellboy\"]'),(167190,427964,2,'actor',NULL,'[\"Abe Sapien\"]'),(167190,4757,3,'actress',NULL,'[\"Liz Sherman\"]'),(167190,457,4,'actor',NULL,'[\"Trevor \\\"Broom\\\" Bruttenholm\"]'),(167190,868219,5,'director',NULL,NULL),(167190,1486009,6,'writer','screen story',NULL),(167190,586005,7,'writer','comic books',NULL),(167190,330379,8,'producer','producer',NULL),(167190,505656,9,'producer','producer',NULL),(167260,651614,10,'producer','producer',NULL),(167260,704,1,'actor',NULL,'[\"Frodo\"]'),(167260,1557,2,'actor',NULL,'[\"Aragorn\"]'),(167260,5212,3,'actor',NULL,'[\"Gandalf\"]'),(167260,89217,4,'actor',NULL,'[\"Legolas\"]'),(167260,1392,5,'director',NULL,NULL),(167260,866058,6,'writer','novel \"The Return of the King\"',NULL),(167260,909638,7,'writer','screenplay',NULL),(167260,101991,8,'writer','screenplay',NULL),(167260,8662749,9,'producer','producer',NULL),(167261,8662749,10,'producer','producer',NULL),(167261,704,1,'actor',NULL,'[\"Frodo\"]'),(167261,5212,2,'actor',NULL,'[\"Gandalf\"]'),(167261,1557,3,'actor',NULL,'[\"Aragorn\"]'),(167261,89217,4,'actor',NULL,'[\"Legolas\"]'),(167261,1392,5,'director',NULL,NULL),(167261,866058,6,'writer','novel \"The Two Towers\"',NULL),(167261,909638,7,'writer','screenplay',NULL),(167261,101991,8,'writer','screenplay',NULL),(167261,801728,9,'writer','screenplay',NULL),(167404,5714,10,'cinematographer','director of photography',NULL),(167404,246,1,'actor',NULL,'[\"Malcolm Crowe\"]'),(167404,5286,2,'actor',NULL,'[\"Cole Sear\"]'),(167404,1057,3,'actress',NULL,'[\"Lynn Sear\"]'),(167404,931404,4,'actress',NULL,'[\"Anna Crowe\"]'),(167404,796117,5,'director',NULL,NULL),(167404,5086,6,'producer','producer',NULL),(167404,550881,7,'producer','producer',NULL),(167404,578814,8,'producer','producer',NULL),(167404,6133,9,'composer',NULL,NULL),(167456,567112,10,'writer','screenplay',NULL),(167456,200,1,'actor',NULL,'[\"Jeff Tracy\"]'),(167456,381,2,'actor',NULL,'[\"Brains\"]'),(167456,1426,3,'actor',NULL,'[\"The Hood\"]'),(167456,1227232,4,'actor',NULL,'[\"Alan Tracy\"]'),(167456,408,5,'director',NULL,NULL),(167456,26755,6,'writer','television series',NULL),(167456,27487,7,'writer','television series',NULL),(167456,382072,8,'writer','story',NULL),(167456,651758,9,'writer','story',NULL),(167752,3911,10,'composer',NULL,NULL),(167752,496,1,'actress',NULL,'[\"Jane Emelin\"]'),(167752,458,2,'actor',NULL,'[\"Greg Harrison\"]'),(167752,1167,3,'actress',NULL,'[\"Martha Stewart\"]'),(167752,671721,4,'actor',NULL,'[\"Mr. Collins\"]'),(167752,458441,5,'director',NULL,NULL),(167752,203246,6,'producer','producer',NULL),(167752,221638,7,'producer','producer',NULL),(167752,860315,8,'producer','producer',NULL),(167752,898549,9,'producer','producer',NULL),(168629,826663,10,'editor',NULL,NULL),(168629,1951,1,'actress',NULL,'[\"Selma Jezkova\"]'),(168629,366,2,'actress',NULL,'[\"Kathy\"]'),(168629,1556,3,'actor',NULL,'[\"Bill Houston\"]'),(168629,1780,4,'actor',NULL,'[\"Jeff\"]'),(168629,1885,5,'director',NULL,NULL),(168629,797604,6,'writer','librettist',NULL),(168629,934668,7,'producer','producer',NULL),(168629,5810,8,'cinematographer','director of photography',NULL),(168629,350726,9,'editor',NULL,NULL),(168740,551785,10,'cinematographer',NULL,NULL),(168740,75650,1,'actor',NULL,'[\"Martin\"]'),(168740,347069,2,'actress',NULL,'[\"Cécilia\"]'),(168740,231319,3,'actress',NULL,'[\"Sophie\"]'),(168740,469650,4,'actor',NULL,'[\"Meyers\"]'),(168740,434806,5,'director',NULL,NULL),(168740,274262,6,'writer','adaptation',NULL),(168740,603179,7,'writer','based on the novel by',NULL),(168740,851522,8,'writer',NULL,NULL),(168740,104418,9,'producer','producer',NULL),(168786,119322,10,'editor',NULL,NULL),(168786,243,1,'actor',NULL,'[\"Dr. Jerome Davenport\"]'),(168786,1035682,2,'actor',NULL,'[\"Antwone Fisher\"]'),(168786,117146,3,'actress',NULL,'[\"Cheryl Smolley\"]'),(168786,1287636,4,'actor',NULL,'[\"Antwone Fisher Age 7\"]'),(168786,279376,5,'writer','written by',NULL),(168786,85542,6,'producer','producer',NULL),(168786,354279,7,'producer','producer',NULL),(168786,2217,8,'composer',NULL,NULL),(168786,3542,9,'cinematographer','director of photography',NULL),(168972,793066,10,'cinematographer',NULL,NULL),(168972,38355,1,'actor',NULL,'[\"Captain XX\"]'),(168972,297956,2,'actor',NULL,'[\"Yoshimura\"]'),(168972,370677,3,'actress',NULL,'[\"Voice\"]'),(168972,410907,4,'actor',NULL,'[\"Voice\"]'),(168972,30417,5,'director',NULL,NULL),(168972,766364,6,'writer','screenplay',NULL),(168972,613487,7,'writer','novel',NULL),(168972,653004,8,'producer','producer',NULL),(168972,594081,9,'composer',NULL,NULL),(168987,333315,10,'editor',NULL,NULL),(168987,187724,1,'actress',NULL,'[\"Lila\"]'),(168987,245507,2,'actress',NULL,'[\"Maggie\"]'),(168987,184965,3,'actress',NULL,'[\"Kim\"]'),(168987,531612,4,'actress',NULL,'[\"Frances\"]'),(168987,923768,5,'director',NULL,NULL),(168987,860588,6,'writer','screenplay',NULL),(168987,569703,7,'producer','producer',NULL),(168987,171046,8,'composer',NULL,NULL),(168987,4545,9,'cinematographer','director of photography',NULL),(169102,576540,10,'cinematographer',NULL,NULL),(169102,451148,1,'actor',NULL,'[\"Bhuvan\"]'),(169102,944834,2,'actor',NULL,'[\"Bhura\"]'),(169102,961737,3,'actress',NULL,'[\"Gauri\"]'),(169102,791226,4,'actress',NULL,'[\"Elizabeth Russell\"]'),(169102,332950,5,'director',NULL,NULL),(169102,1021349,6,'writer','screenplay',NULL),(169102,1021353,7,'writer','screenplay',NULL),(169102,1022153,8,'writer','dialogue',NULL),(169102,6246,9,'composer',NULL,NULL),(169299,283655,10,'cinematographer',NULL,NULL),(169299,444687,1,'actor',NULL,'[\"Casey Kaufman\"]'),(169299,490348,2,'actress',NULL,'[\"Jennifer\"]'),(169299,442207,3,'actor',NULL,'[\"Larry Benjamin\"]'),(169299,351772,4,'actor',NULL,'[\"Jerry\"]'),(169299,144236,5,'writer','screenplay by',NULL),(169299,118348,6,'writer','screenplay by',NULL),(169299,348181,7,'writer','inspired by the book \"All I Need to Know about Filmmaking I Learned from the Toxic Avenger\" by',NULL),(169299,381230,8,'producer','producer',NULL),(169299,605629,9,'composer',NULL,NULL),(169547,5734,10,'cinematographer','director of photography',NULL),(169547,228,1,'actor',NULL,'[\"Lester Burnham\"]'),(169547,906,2,'actress',NULL,'[\"Carolyn Burnham\"]'),(169547,301,3,'actress',NULL,'[\"Jane Burnham\"]'),(169547,4747,4,'actor',NULL,'[\"Ricky Fitts\"]'),(169547,5222,5,'director',NULL,NULL),(169547,50332,6,'writer','written by',NULL),(169547,169260,7,'producer','producer',NULL),(169547,423134,8,'producer','producer',NULL),(169547,2353,9,'composer',NULL,NULL),(169858,935313,10,'producer','producer',NULL),(169858,644527,1,'actress',NULL,'[\"Shinji Ikari\"]'),(169858,370677,2,'actress',NULL,'[\"Rei Ayanami\",\"Yui Ikari\"]'),(169858,594436,3,'actress',NULL,'[\"Asuka Langley Sôryû\"]'),(169858,594074,4,'actress',NULL,'[\"Misato Katsuragi\"]'),(169858,30417,5,'director','senior director: segment \"Magokoro o, kimi ni\"',NULL),(169858,875453,6,'director',NULL,NULL),(169858,411070,7,'producer','producer',NULL),(169858,434393,8,'producer','executive producer',NULL),(169858,497485,9,'producer','producer',NULL),(170016,35,10,'composer',NULL,NULL),(170016,120,1,'actor',NULL,'[\"Grinch\"]'),(170016,597410,2,'actress',NULL,'[\"Cindy Lou Who\"]'),(170016,3679189,3,'actress',NULL,'[\"Max\"]'),(170016,1787,4,'actor',NULL,'[\"May Who\"]'),(170016,165,5,'director',NULL,NULL),(170016,317450,6,'writer','book',NULL),(170016,696949,7,'writer','screenplay',NULL),(170016,780620,8,'writer','screenplay',NULL),(170016,4976,9,'producer','producer',NULL),(171363,933213,10,'producer','producer',NULL),(171363,553,1,'actor',NULL,'[\"Dr. David Marrow\"]'),(171363,1876,2,'actress',NULL,'[\"Theo\"]'),(171363,5562,3,'actor',NULL,'[\"Luke Sanderson\"]'),(171363,666,4,'actress',NULL,'[\"Nell\"]'),(171363,957,5,'director',NULL,NULL),(171363,783100,6,'writer','screenplay',NULL),(171363,414047,7,'writer','novel \"The Haunting of Hill House\"',NULL),(171363,36641,8,'producer','producer',NULL),(171363,744828,9,'producer','producer',NULL),(171725,220465,10,'producer','producer',NULL),(171725,1493,1,'actor',NULL,'[\"Narrator\"]'),(171725,239967,2,'actor',NULL,'[\"Timmy At 10\"]'),(171725,886745,3,'actor',NULL,'[\"Young Martin\"]'),(171725,1123,4,'actor',NULL,'[\"Jeremy\"]'),(171725,780922,5,'director',NULL,NULL),(171725,3071117,6,'writer',NULL,NULL),(171725,399252,7,'writer',NULL,NULL),(171725,536440,8,'writer','additional material',NULL),(171725,639791,9,'writer','characters',NULL),(171804,882927,10,'producer','producer',NULL),(171804,5476,1,'actress',NULL,'[\"Brandon Teena\"]'),(171804,1721,2,'actress',NULL,'[\"Lana Tisdel\"]'),(171804,765597,3,'actor',NULL,'[\"John Lotter\"]'),(171804,786639,4,'actor',NULL,'[\"Tom Nissen\"]'),(171804,5303,5,'director',NULL,NULL),(171804,81493,6,'writer','written by',NULL),(171804,366363,7,'producer','producer',NULL),(171804,464286,8,'producer','producer',NULL),(171804,1104170,9,'producer','producer',NULL),(172156,821466,10,'writer','screenplay',NULL),(172156,226,1,'actor',NULL,'[\"Detective Mike Lowrey\"]'),(172156,1454,2,'actor',NULL,'[\"Detective Marcus Burnett\"]'),(172156,5517,3,'actress',NULL,'[\"Syd\"]'),(172156,3244,4,'actor',NULL,'[\"Hector Juan Carlos \'Johnny\' Tapia\"]'),(172156,881,5,'director',NULL,NULL),(172156,303032,6,'writer','characters',NULL),(172156,926729,7,'writer','story',NULL),(172156,926727,8,'writer','story',NULL),(172156,5421,9,'writer','story',NULL),(172348,930,10,'composer',NULL,NULL),(172348,932,1,'actress',NULL,'[\"Dorothy Dandridge\"]'),(172348,653,2,'actor',NULL,'[\"Earl Mills\"]'),(172348,1970,3,'actor',NULL,'[\"Otto Preminger\"]'),(172348,44762,4,'actor',NULL,'[\"Harold Nicholas\"]'),(172348,4838,5,'director',NULL,NULL),(172348,589974,6,'writer','book \"Dorothy Dandridge\"',NULL),(172348,722274,7,'writer','teleplay',NULL),(172348,8053,8,'writer','teleplay',NULL),(172348,17058,9,'producer','producer',NULL),(172493,926824,10,'producer','producer',NULL),(172493,213,1,'actress',NULL,'[\"Susanna\"]'),(172493,1401,2,'actress',NULL,'[\"Lisa\"]'),(172493,245112,3,'actress',NULL,'[\"Georgina\"]'),(172493,5261,4,'actress',NULL,'[\"Daisy\"]'),(172493,3506,5,'director',NULL,NULL),(172493,443476,6,'writer','book',NULL),(172493,519666,7,'writer','screenplay',NULL),(172493,357703,8,'writer','screenplay',NULL),(172493,465298,9,'producer','producer',NULL),(172495,926824,10,'producer','producer',NULL),(172495,128,1,'actor',NULL,'[\"Maximus\"]'),(172495,1618,2,'actor',NULL,'[\"Commodus\"]'),(172495,1567,3,'actress',NULL,'[\"Lucilla\"]'),(172495,1657,4,'actor',NULL,'[\"Proximo\"]'),(172495,631,5,'director',NULL,NULL),(172495,291905,6,'writer','story',NULL),(172495,517589,7,'writer','screenplay',NULL),(172495,629933,8,'writer','screenplay',NULL),(172495,527322,9,'producer','producer',NULL),(172543,14874,10,'production_designer',NULL,NULL),(172543,852965,1,'actor',NULL,'[\"Danny\"]'),(172543,357838,2,'actress',NULL,'[\"Sam\"]'),(172543,1960,3,'actress',NULL,'[\"Anya\"]'),(172543,498275,4,'actress',NULL,'[\"Nina\"]'),(172543,523154,5,'director',NULL,NULL),(172543,83658,6,'writer','adapted from the book by',NULL),(172543,574150,7,'producer','producer',NULL),(172543,698271,8,'producer','producer',NULL),(172543,208701,9,'cinematographer',NULL,NULL),(172684,762861,10,'editor',NULL,NULL),(172684,451321,1,'actor',NULL,'[\"Rahul Khanna\"]'),(172684,4418,2,'actress',NULL,'[\"Anjali Sharma\"]'),(172684,611552,3,'actress',NULL,'[\"Tina Malhotra\"]'),(172684,755705,4,'actress',NULL,'[\"Anjali Khanna\"]'),(172684,424103,5,'director',NULL,NULL),(172684,424105,6,'producer','producer',NULL),(172684,1269729,7,'composer',NULL,NULL),(172684,1269730,8,'composer',NULL,NULL),(172684,862094,9,'cinematographer',NULL,NULL),(173716,688953,10,'composer',NULL,NULL),(173716,429,1,'actress',NULL,'[\"Honey Whitlock\"]'),(173716,1151,2,'actor',NULL,'[\"Cecil B. Demented\"]'),(173716,1860,3,'actress',NULL,'[\"Cherish\"]'),(173716,4978,4,'actor',NULL,'[\"Lyle\"]'),(173716,691,5,'director',NULL,NULL),(173716,135847,6,'producer','producer',NULL),(173716,275836,7,'producer','producer',NULL),(173716,850516,8,'producer','producer',NULL),(173716,6231,9,'composer',NULL,NULL),(173840,10455508,10,'writer','story editor',NULL),(173840,285,1,'actor',NULL,'[\"Captain Gray Edwards\"]'),(173840,114,2,'actor',NULL,'[\"Neil\"]'),(173840,1840,3,'actress',NULL,'[\"Doctor Aki Ross\"]'),(173840,609,4,'actor',NULL,'[\"Ryan\"]'),(173840,756983,5,'director',NULL,NULL),(173840,1012102,6,'director','co-director',NULL),(173840,718031,7,'writer','written by',NULL),(173840,899113,8,'writer','written by',NULL),(173840,282027,9,'writer','additional dialogue',NULL),(173886,6205,10,'composer',NULL,NULL),(173886,1666,1,'actress',NULL,'[\"Aggie Cromwell\"]'),(173886,4782,2,'actress',NULL,'[\"Marnie Piper\"]'),(173886,387432,3,'actress',NULL,'[\"Gwen Cromwell Piper\"]'),(173886,956726,4,'actor',NULL,'[\"Dylan Piper\"]'),(173886,242271,5,'director',NULL,NULL),(173886,76602,6,'writer','story',NULL),(173886,177532,7,'writer','teleplay',NULL),(173886,558520,8,'writer','teleplay',NULL),(173886,593691,9,'producer','producer',NULL),(174480,1189,10,'composer',NULL,NULL),(174480,152,1,'actor',NULL,'[\"Will Keane\"]'),(174480,213,2,'actress',NULL,'[\"Charlotte Fielding\"]'),(174480,1439,3,'actor',NULL,'[\"John\"]'),(174480,834626,4,'actress',NULL,'[\"Dolly\"]'),(174480,1040,5,'director',NULL,NULL),(174480,122335,6,'writer','written by',NULL),(174480,524342,7,'producer','producer',NULL),(174480,732364,8,'producer','producer',NULL),(174480,742347,9,'producer','producer',NULL),(174856,330108,10,'writer','screenplay',NULL),(174856,243,1,'actor',NULL,'[\"Rubin Carter\"]'),(174856,788370,2,'actor',NULL,'[\"Lesra\"]'),(174856,679,3,'actress',NULL,'[\"Lisa\"]'),(174856,630,4,'actor',NULL,'[\"Sam\"]'),(174856,422484,5,'director',NULL,NULL),(174856,141918,6,'writer','book \"The 16th Round\"',NULL),(174856,149760,7,'writer','book \"Lazarus and the Hurricane\"',NULL),(174856,842768,8,'writer','book \"Lazarus and the Hurricane\"',NULL),(174856,77000,9,'writer','screenplay',NULL),(175142,783536,10,'writer','written by',NULL),(175142,267506,1,'actress',NULL,'[\"Cindy Campbell\"]'),(175142,9016,2,'actor',NULL,'[\"Bobby Prinze\"]'),(175142,5541,3,'actor',NULL,'[\"Shorty\"]'),(175142,1182,4,'actress',NULL,'[\"Drew\"]'),(175142,5540,5,'director',NULL,NULL),(175142,915465,6,'writer','written by',NULL),(175142,424688,7,'writer','written by',NULL),(175142,64556,8,'writer','written by',NULL),(175142,294997,9,'writer','written by',NULL),(175526,725072,10,'cinematographer',NULL,NULL),(175526,5261,1,'actress',NULL,'[\"Jody Marken\"]'),(175526,1542,2,'actor',NULL,'[\"Leonard Marliston\"]'),(175526,299,3,'actor',NULL,'[\"Sheriff Brent Marken\"]'),(175526,103038,4,'actor',NULL,'[\"Rod Harper\"]'),(175526,942408,5,'director',NULL,NULL),(175526,783023,6,'writer','written by',NULL),(175526,675470,7,'producer','producer',NULL),(175526,783020,8,'producer','producer',NULL),(175526,7141,9,'composer',NULL,NULL),(175880,36670,10,'production_designer',NULL,NULL),(175880,129,1,'actor',NULL,'[\"Frank T.J. Mackey\"]'),(175880,1673,2,'actor',NULL,'[\"Earl Partridge\"]'),(175880,194,3,'actress',NULL,'[\"Linda Partridge\"]'),(175880,450,4,'actor',NULL,'[\"Phil Parma\"]'),(175880,759,5,'director',NULL,NULL),(175880,783280,6,'producer','producer',NULL),(175880,109726,7,'composer',NULL,NULL),(175880,5696,8,'cinematographer','director of photography',NULL),(175880,862664,9,'editor',NULL,NULL),(177242,33338,10,'composer',NULL,NULL),(177242,770449,1,'actor',NULL,'[\"Michael \'Micha\' Ehrenreich\"]'),(177242,79890,2,'actor',NULL,'[\"Mario\"]'),(177242,821177,3,'actor',NULL,'[\"Wuschel\"]'),(177242,919442,4,'actress',NULL,'[\"Miriam Sommer\"]'),(177242,369686,5,'director',NULL,NULL),(177242,116748,6,'writer','screenplay',NULL),(177242,118345,7,'writer','collaborator on screenplay',NULL),(177242,818316,8,'writer','collaborator on screenplay',NULL),(177242,92497,9,'producer','producer',NULL),(177507,450302,10,'production_designer',NULL,NULL),(177507,317385,1,'actor',NULL,'[\"Floyd\"]'),(177507,525518,2,'actor',NULL,'[\"Ricco\"]'),(177507,6801,3,'actor',NULL,'[\"Walter\"]'),(177507,401872,4,'actress',NULL,'[\"Telsa\"]'),(177507,771923,5,'director',NULL,NULL),(177507,36155,6,'producer','producer',NULL),(177507,878756,7,'producer','producer',NULL),(177507,340864,8,'cinematographer',NULL,NULL),(177507,83340,9,'editor',NULL,NULL),(177707,5690,1,'actor',NULL,'[\"Violinist\"]'),(177707,4555,2,'editor',NULL,NULL),(177721,896057,10,'editor',NULL,NULL),(177721,5384,1,'actress',NULL,'[\"Olivia King\"]'),(177721,5275,2,'actress',NULL,'[\"Kayla Harris\"]'),(177721,2056,3,'actress',NULL,'[\"Peggy\"]'),(177721,5300,4,'actor',NULL,'[\"Ric Ortega\"]'),(177721,10012,5,'director',NULL,NULL),(177721,791551,6,'writer','written by',NULL),(177721,713514,7,'producer','producer',NULL),(177721,6288,8,'composer',NULL,NULL),(177721,268685,9,'cinematographer',NULL,NULL),(177789,628056,10,'composer',NULL,NULL),(177789,741,1,'actor',NULL,'[\"Jason Nesmith\"]'),(177789,244,2,'actress',NULL,'[\"Gwen DeMarco\"]'),(177789,614,3,'actor',NULL,'[\"Alexander Dane\"]'),(177789,1724,4,'actor',NULL,'[\"Fred Kwan\"]'),(177789,661751,5,'director',NULL,NULL),(177789,397232,6,'writer','story',NULL),(177789,330565,7,'writer','screenplay',NULL),(177789,425741,8,'producer','producer',NULL),(177789,627917,9,'producer','producer',NULL),(177971,35,10,'composer',NULL,NULL),(177971,123,1,'actor',NULL,'[\"Billy Tyne\"]'),(177971,242,2,'actor',NULL,'[\"Bobby Shatford\"]'),(177971,604,3,'actor',NULL,'[\"Dale \'Murph\' Murphy\"]'),(177971,178,4,'actress',NULL,'[\"Christina Cotter\"]'),(177971,583,5,'director',NULL,NULL),(177971,432631,6,'writer','book',NULL),(177971,937074,7,'writer','screenplay',NULL),(177971,441713,8,'producer','producer',NULL),(177971,918463,9,'producer','producer',NULL),(178737,909760,10,'editor',NULL,NULL),(178737,640323,1,'actress',NULL,'[\"Fanny Price\"]'),(178737,1538,2,'actor',NULL,'[\"Edmund Bertram\"]'),(178737,5273,3,'actor',NULL,'[\"Henry Crawford\"]'),(178737,853364,4,'actress',NULL,'[\"Young Fanny\"]'),(178737,5390,5,'director',NULL,NULL),(178737,807,6,'writer','novel \"Mansfield Park\"',NULL),(178737,193501,7,'producer','producer',NULL),(178737,53427,8,'composer',NULL,NULL),(178737,183533,9,'cinematographer','director of photography',NULL),(178844,93751,10,'editor',NULL,NULL),(178844,1197,1,'actress',NULL,'[\"Mirabella\"]'),(178844,187470,2,'actor',NULL,'[\"Leonardo\"]'),(178844,737109,3,'actor',NULL,'[\"Ademaro\"]'),(178844,140649,4,'actor',NULL,'[\"Re Hamil\"]'),(178844,877,5,'director',NULL,NULL),(178844,739744,6,'writer',NULL,NULL),(178844,681344,7,'producer','producer',NULL),(178844,591289,8,'composer',NULL,NULL),(178844,61295,9,'cinematographer',NULL,NULL),(178868,784540,10,'producer','producer',NULL),(178868,559652,1,'actress',NULL,'[\"Reiko Asakawa\"]'),(178868,620397,2,'actress',NULL,'[\"Mai Takano\"]'),(178868,847624,3,'actress',NULL,'[\"Tomoko Ôishi\"]'),(178868,766212,4,'actress',NULL,'[\"Masami\"]'),(178868,620378,5,'director',NULL,NULL),(178868,847126,6,'writer','screenplay',NULL),(178868,840626,7,'writer','novel',NULL),(178868,406772,8,'producer','producer',NULL),(178868,442777,9,'producer','producer',NULL),(179098,829681,10,'production_designer',NULL,NULL),(179098,350453,1,'actor',NULL,'[\"Joe Nast\"]'),(179098,163,2,'actor',NULL,'[\"Ben Floss\"]'),(179098,215,3,'actress',NULL,'[\"Jojo Floss\"]'),(179098,6952,4,'actress',NULL,'[\"Cheryl\"]'),(179098,797869,5,'director',NULL,NULL),(179098,425741,6,'producer','producer',NULL),(179098,6142,7,'composer',NULL,NULL),(179098,3659,8,'cinematographer',NULL,NULL),(179098,161497,9,'editor',NULL,NULL),(179116,479354,10,'cinematographer','director of photography',NULL),(179116,5169,1,'actress',NULL,'[\"Megan\"]'),(179116,245112,2,'actress',NULL,'[\"Graham\"]'),(179116,931329,3,'actress',NULL,'[\"Kimberly\"]'),(179116,929683,4,'actor',NULL,'[\"Jared\"]'),(179116,44803,5,'director',NULL,NULL),(179116,677048,6,'writer','screenplay',NULL),(179116,187252,7,'producer','producer',NULL),(179116,818304,8,'producer','producer',NULL),(179116,410436,9,'composer',NULL,NULL),(179955,889714,10,'cinematographer',NULL,NULL),(179955,70672,1,'actor',NULL,'[\"Mr. Fritz Teufel\"]'),(179955,91072,2,'actor',NULL,'[\"Maxipocak\"]'),(179955,126909,3,'actress',NULL,'[\"Pissy\"]'),(179955,369412,4,'actor',NULL,'[\"Safranek\"]'),(179955,855681,5,'director',NULL,NULL),(179955,626134,6,'writer',NULL,NULL),(179955,223456,7,'composer',NULL,NULL),(179955,619443,8,'cinematographer',NULL,NULL),(179955,626018,9,'cinematographer',NULL,NULL),(180052,834870,10,'producer','producer',NULL),(180052,552,1,'actor',NULL,'[\"Pluto Nash\"]'),(180052,1542,2,'actor',NULL,'[\"Tony Francis\"]'),(180052,1642,3,'actor',NULL,'[\"Bruno\"]'),(180052,206257,4,'actress',NULL,'[\"Dina Lake\"]'),(180052,881038,5,'director',NULL,NULL),(180052,193854,6,'writer','written by',NULL),(180052,13613139,7,'producer','producer',NULL),(180052,106840,8,'producer','producer',NULL),(180052,106841,9,'producer','producer',NULL),(180093,508732,10,'cinematographer','director of photography',NULL),(180093,995,1,'actress',NULL,'[\"Sara Goldfarb\"]'),(180093,1467,2,'actor',NULL,'[\"Harry Goldfarb\"]'),(180093,124,3,'actress',NULL,'[\"Marion Silver\"]'),(180093,5541,4,'actor',NULL,'[\"Tyrone C. Love\"]'),(180093,4716,5,'director',NULL,NULL),(180093,782968,6,'writer','based on the book by',NULL),(180093,914615,7,'producer','producer',NULL),(180093,922279,8,'producer','producer',NULL),(180093,543739,9,'composer',NULL,NULL),(180679,139220,10,'production_designer',NULL,NULL),(180679,1099,1,'actor',NULL,'[\"Rueben Soady\"]'),(180679,696193,2,'actor',NULL,'[\"Albert Soady\"]'),(180679,17020,3,'actor',NULL,'[\"Remnar Soady\",\"Porcelain Bus Dancer\"]'),(180679,202795,4,'actor',NULL,'[\"Jimmer Negamanee\"]'),(180679,764393,5,'writer','story',NULL),(180679,819089,6,'producer','producer',NULL),(180679,1264759,7,'composer',NULL,NULL),(180679,1074662,8,'cinematographer',NULL,NULL),(180679,1073755,9,'editor',NULL,NULL),(181316,605775,10,'producer','producer',NULL),(181316,1454,1,'actor',NULL,'[\"Miles Logan\"]'),(181316,5561,2,'actor',NULL,'[\"Carlson\"]'),(181316,338886,3,'actor',NULL,'[\"Deacon\"]'),(181316,152638,4,'actor',NULL,'[\"Tulley\"]'),(181316,562645,5,'director',NULL,NULL),(181316,1158243,6,'writer','written by',NULL),(181316,89824,7,'writer','written by',NULL),(181316,139461,8,'writer','written by',NULL),(181316,3993,9,'producer','producer',NULL),(181536,652020,10,'editor',NULL,NULL),(181536,125,1,'actor',NULL,'[\"Forrester\"]'),(181536,114532,2,'actor',NULL,'[\"Jamal\"]'),(181536,719,3,'actor',NULL,'[\"Crawford\"]'),(181536,1593,4,'actress',NULL,'[\"Claire\"]'),(181536,1814,5,'director',NULL,NULL),(181536,723692,6,'writer','written by',NULL),(181536,548257,7,'producer','producer',NULL),(181536,866104,8,'producer','producer',NULL),(181536,767647,9,'cinematographer',NULL,NULL),(181627,2188766,10,'production_designer',NULL,NULL),(181627,3251022,1,'actor',NULL,'[\"Kirikou enfant\"]'),(181627,618460,2,'actress',NULL,'[\"La Mère\"]'),(181627,765499,3,'actress',NULL,'[\"Karaba\"]'),(181627,509672,4,'actor',NULL,'[\"Le Sage dans la montagne\"]'),(181627,643664,5,'director',NULL,NULL),(181627,122127,6,'director',NULL,NULL),(181627,618468,7,'composer',NULL,NULL),(181627,498921,8,'editor',NULL,NULL),(181627,1946585,9,'production_designer',NULL,NULL),(181689,957,10,'producer','producer',NULL),(181689,129,1,'actor',NULL,'[\"Chief John Anderton\"]'),(181689,268199,2,'actor',NULL,'[\"Danny Witwer\"]'),(181689,608090,3,'actress',NULL,'[\"Agatha\"]'),(181689,1884,4,'actor',NULL,'[\"Director Lamar Burgess\"]'),(181689,229,5,'director',NULL,NULL),(181689,291082,6,'writer','screenplay by',NULL),(181689,169509,7,'writer','screenplay by',NULL),(181689,1140,8,'writer','based upon a short story by',NULL),(181689,193268,9,'producer','producer',NULL),(181739,858554,10,'producer','producer',NULL),(181739,401,1,'actor',NULL,'[\"Thrax\"]'),(181739,1674,2,'actor',NULL,'[\"Osmosis Jones\"]'),(181739,1383,3,'actor',NULL,'[\"Drix\"]'),(181739,5275,4,'actress',NULL,'[\"Leah\"]'),(181739,125803,5,'director',NULL,NULL),(181739,268380,6,'director',NULL,NULL),(181739,405190,7,'writer','written by',NULL),(181739,219550,8,'producer','producer',NULL),(181739,672015,9,'producer','producer',NULL),(181852,509386,10,'producer','producer',NULL),(181852,216,1,'actor',NULL,'[\"Terminator\"]'),(181852,1763,2,'actor',NULL,'[\"John Connor\"]'),(181852,518085,3,'actress',NULL,'[\"T-X\"]'),(181852,132,4,'actress',NULL,'[\"Kate Brewster\"]'),(181852,609236,5,'director',NULL,NULL),(181852,104335,6,'writer','story by',NULL),(181852,274905,7,'writer','story by',NULL),(181852,93328,8,'writer','story by',NULL),(181852,440830,9,'producer','producer',NULL),(181865,1880,10,'producer','producer',NULL),(181865,140,1,'actor',NULL,'[\"Robert Wakefield\"]'),(181865,1125,2,'actor',NULL,'[\"Javier Rodríguez\"]'),(181865,1876,3,'actress',NULL,'[\"Helena Ayala\"]'),(181865,889846,4,'actor',NULL,'[\"Manolo Sanchez\"]'),(181865,1752,5,'director',NULL,NULL),(181865,601881,6,'writer','miniseries Traffik',NULL),(181865,300866,7,'writer','screenplay',NULL),(181865,81046,8,'producer','producer',NULL),(181865,380980,9,'producer','producer',NULL),(181875,458964,10,'editor',NULL,NULL),(181875,1082,1,'actor',NULL,'[\"Russell Hammond\"]'),(181875,297578,2,'actor',NULL,'[\"William Miller\"]'),(181875,5028,3,'actress',NULL,'[\"Penny Lane\"]'),(181875,531,4,'actress',NULL,'[\"Elaine Miller\"]'),(181875,1081,5,'director',NULL,NULL),(181875,117290,6,'producer','producer',NULL),(181875,933896,7,'composer',NULL,NULL),(181875,1799,8,'cinematographer','director of photography',NULL),(181875,404528,9,'editor',NULL,NULL),(181984,672562,10,'editor',NULL,NULL),(181984,610,1,'actor',NULL,'[\"Seth Davis\"]'),(181984,4874,2,'actor',NULL,'[\"Chris Varick\"]'),(181984,505,3,'actress',NULL,'[\"Abbie Halpert\"]'),(181984,441588,4,'actor',NULL,'[\"Greg Weinstein\"]'),(181984,950226,5,'director',NULL,NULL),(181984,865189,6,'producer','producer',NULL),(181984,865297,7,'producer','producer',NULL),(181984,29500,8,'composer',NULL,NULL),(181984,2926,9,'cinematographer',NULL,NULL),(182508,446867,10,'cinematographer',NULL,NULL),(182508,1246,1,'actor',NULL,'[\"Charlie\"]'),(182508,219673,2,'actor',NULL,'[\"Ken\"]'),(182508,876958,3,'actress',NULL,'[\"Cassandra\"]'),(182508,50458,4,'actor',NULL,'[\"Dean\"]'),(182508,790398,5,'director',NULL,NULL),(182508,718670,6,'writer','play \"Urban Folk Tales\"',NULL),(182508,325497,7,'producer','producer',NULL),(182508,364787,8,'producer','producer',NULL),(182508,860446,9,'composer',NULL,NULL),(182576,307621,10,'actor',NULL,'[\"Various\",\"Waiter\",\"Cab Driver\"]'),(182576,532235,1,'actor',NULL,'[\"Peter Griffin\",\"Stewie Griffin\",\"Brian Griffin\"]'),(182576,97504,2,'actress',NULL,'[\"Lois Griffin\",\"Tricia Takanawa\",\"Barbara Pewterschmidt\"]'),(182576,1293,3,'actor',NULL,'[\"Chris Griffin\",\"Neil Goldman\",\"Additional Voices\"]'),(182576,5109,4,'actress',NULL,'[\"Meg Griffin\",\"Bank Teller\",\"Elizabeth\"]'),(182576,958412,5,'writer','developed by',NULL),(182576,1396611,6,'actor',NULL,'[\"Cleveland Brown\",\"John Herbert\",\"Bruce the Performance Artist\"]'),(182576,896742,7,'actor',NULL,'[\"TV Announcer\",\"Announcer\",\"Emcee\"]'),(182576,911320,8,'actor',NULL,'[\"Joe Swanson\",\"Boggs\",\"Colonial Joe\"]'),(182576,807834,9,'actor',NULL,'[\"TV Announcer\",\"Jim Kaplan\",\"Man\"]'),(182789,441713,10,'producer','producer',NULL),(182789,245,1,'actor',NULL,'[\"Andrew\"]'),(182789,1110,2,'actress',NULL,'[\"Little Miss\",\"Portia\"]'),(182789,554,3,'actor',NULL,'[\"Sir\"]'),(182789,1624,4,'actor',NULL,'[\"Rupert Burns\"]'),(182789,1060,5,'director',NULL,NULL),(182789,1920,6,'writer','short story \"The Bicentennial Man\"',NULL),(182789,798844,7,'writer','novel \"The Positronic Man\"',NULL),(182789,443582,8,'writer','screenplay',NULL),(182789,55431,9,'producer','producer',NULL),(183505,948832,10,'composer',NULL,NULL),(183505,120,1,'actor',NULL,'[\"Charlie\",\"Hank\"]'),(183505,250,2,'actress',NULL,'[\"Irene\"]'),(183505,26364,3,'actor',NULL,'[\"Jamaal\"]'),(183505,115236,4,'actor',NULL,'[\"Lee Harvey\"]'),(183505,125803,5,'director',NULL,NULL),(183505,268380,6,'director',NULL,NULL),(183505,148808,7,'writer','written by',NULL),(183505,858554,8,'producer','producer',NULL),(183505,779475,9,'composer',NULL,NULL),(183523,414930,10,'producer','producer',NULL),(183523,209,1,'actor',NULL,'[\"Woody Blake\"]'),(183523,641,2,'actor',NULL,'[\"Jim McConnell\"]'),(183523,332,3,'actor',NULL,'[\"Luke Graham\"]'),(183523,1567,4,'actress',NULL,'[\"Terri Fisher\"]'),(183523,361,5,'director',NULL,NULL),(183523,134230,6,'writer','story',NULL),(183523,859029,7,'writer','story',NULL),(183523,859049,8,'writer','story',NULL),(183523,3662,9,'writer','screenplay',NULL),(183649,508732,10,'cinematographer','director of photography',NULL),(183649,268199,1,'actor',NULL,'[\"Stu Shepard\"]'),(183649,662,2,'actor',NULL,'[\"The Caller\"]'),(183649,1845,3,'actor',NULL,'[\"Captain Ramey\"]'),(183649,593664,4,'actress',NULL,'[\"Kelly Shepard\"]'),(183649,1708,5,'director',NULL,NULL),(183649,169540,6,'writer','written by',NULL),(183649,626696,7,'producer','producer',NULL),(183649,1878,8,'producer','producer',NULL),(183649,4581,9,'composer',NULL,NULL),(183790,830615,10,'editor',NULL,NULL),(183790,5132,1,'actor',NULL,'[\"William Thatcher\"]'),(183790,4692,2,'actor',NULL,'[\"Roland\"]'),(183790,1722,3,'actor',NULL,'[\"Count Adhemar\"]'),(183790,815370,4,'actress',NULL,'[\"Jocelyn\"]'),(183790,1338,5,'director',NULL,NULL),(183790,85542,6,'producer','producer',NULL),(183790,887800,7,'producer','producer',NULL),(183790,1980,8,'composer',NULL,NULL),(183790,337313,9,'cinematographer','director of photography',NULL),(184894,322802,10,'producer','producer',NULL),(184894,329,1,'actor',NULL,'[\"Chon Wang\"]'),(184894,5562,2,'actor',NULL,'[\"Roy O\'Bannon\"]'),(184894,5154,3,'actress',NULL,'[\"Princess Pei Pei\"]'),(184894,581266,4,'actress',NULL,'[\"Indian Wife\"]'),(184894,223359,5,'director',NULL,NULL),(184894,587692,6,'writer','written by',NULL),(184894,332184,7,'writer','written by',NULL),(184894,53388,8,'producer','producer',NULL),(184894,83696,9,'producer','producer',NULL),(185014,5883,10,'cinematographer','director of photography',NULL),(185014,140,1,'actor',NULL,'[\"Grady Tripp\"]'),(185014,1497,2,'actor',NULL,'[\"James Leer\"]'),(185014,531,3,'actress',NULL,'[\"Sara Gaskell\"]'),(185014,375,4,'actor',NULL,'[\"Terry Crabtree\"]'),(185014,436,5,'director',NULL,NULL),(185014,149290,6,'writer','novel',NULL),(185014,460141,7,'writer','screenplay',NULL),(185014,748784,8,'producer','producer',NULL),(185014,2366,9,'composer',NULL,NULL),(185125,5386,1,'actress',NULL,'[\"Manuela\"]'),(185125,4650,2,'actress',NULL,'[\"Huma Rojo\"]'),(185125,679150,3,'actress',NULL,'[\"Nina\"]'),(185125,760665,4,'actress',NULL,'[\"Agrado\"]'),(185125,264,5,'director',NULL,NULL),(185125,407076,6,'composer',NULL,NULL),(185125,5649,7,'cinematographer','director of photography',NULL),(185125,757814,8,'editor',NULL,NULL),(185125,351016,9,'production_designer',NULL,NULL),(185431,929967,10,'composer',NULL,NULL),(185431,1191,1,'actor',NULL,'[\"Nicky\"]'),(185431,99,2,'actress',NULL,'[\"Valerie Veran\"]'),(185431,172,3,'actor',NULL,'[\"Dad\"]'),(185431,406975,4,'actor',NULL,'[\"Adrian\"]'),(185431,109359,5,'director',NULL,NULL),(185431,379056,6,'writer','written by',NULL),(185431,316406,7,'producer','producer',NULL),(185431,800465,8,'producer','producer',NULL),(185431,144841,9,'composer',NULL,NULL),(185906,191044,10,'actor',NULL,'[\"Denver (Bull) Randleman\"]'),(185906,342241,1,'actor',NULL,'[\"Donald G. Malarkey\"]'),(185906,507073,2,'actor',NULL,'[\"Richard D. Winters\"]'),(185906,515296,3,'actor',NULL,'[\"Lewis Nixon\"]'),(185906,853169,4,'actor',NULL,'[\"Eugene G. Roe\"]'),(185906,5531,5,'actor',NULL,'[\"C. Carwood Lipton\"]'),(185906,950186,6,'actor',NULL,'[\"Darrell C. (Shifty) Powers\"]'),(185906,500614,7,'actor',NULL,'[\"Floyd M. (Tab) Talbert\"]'),(185906,1056790,8,'actor',NULL,'[\"Robert E. (Popeye) Wynn\"]'),(185906,53028,9,'actor',NULL,'[\"Wayne A. (Skinny) Sisk\"]'),(185937,292864,10,'cinematographer','director of photography',NULL),(185937,231946,1,'actress',NULL,'[\"Heather Donahue\"]'),(185937,931321,2,'actor',NULL,'[\"Michael Williams\"]'),(185937,502671,3,'actor',NULL,'[\"Joshua Leonard\"]'),(185937,1482809,4,'actor',NULL,'[\"Short Fisherman\"]'),(185937,617130,5,'director',NULL,NULL),(185937,844896,6,'director',NULL,NULL),(185937,184770,7,'producer','producer',NULL),(185937,354918,8,'producer','producer',NULL),(185937,178992,9,'composer',NULL,NULL),(186566,185088,10,'editor',NULL,NULL),(186566,142,1,'actor',NULL,'[\"Frank Corvin\"]'),(186566,169,2,'actor',NULL,'[\"Hawk Hawkins\"]'),(186566,661,3,'actor',NULL,'[\"Jerry O\'Neill\"]'),(186566,1258,4,'actor',NULL,'[\"Tank Sullivan\"]'),(186566,442190,5,'writer','written by',NULL),(186566,458439,6,'writer','written by',NULL),(186566,493662,7,'producer','producer',NULL),(186566,6215,8,'composer',NULL,NULL),(186566,5726,9,'cinematographer','director of photography',NULL),(186589,1406689,10,'editor',NULL,NULL),(186589,5448,1,'actress',NULL,'[\"Lisa Janusch\"]'),(186589,5420,2,'actress',NULL,'[\"Diane Weston\"]'),(186589,313534,3,'actress',NULL,'[\"Cleo Miller\"]'),(186589,2546,4,'actress',NULL,'[\"Kansas Hill\"]'),(186589,568230,5,'director',NULL,NULL),(186589,625570,6,'writer','written by',NULL),(186589,277704,7,'producer','producer',NULL),(186589,6205,8,'composer',NULL,NULL),(186589,109658,9,'cinematographer',NULL,NULL),(186894,5696,10,'cinematographer','director of photography',NULL),(186894,255,1,'actor',NULL,'[\"Buddy Amaral\"]'),(186894,569,2,'actress',NULL,'[\"Abby Janello\"]'),(186894,449,3,'actress',NULL,'[\"Mimi Prager\"]'),(186894,249962,4,'actor',NULL,'[\"Ron Wachter\"]'),(186894,740400,5,'director',NULL,NULL),(186894,78698,6,'producer','producer',NULL),(186894,326512,7,'producer','producer',NULL),(186894,2217,8,'composer',NULL,NULL),(186894,3599794,9,'composer',NULL,NULL),(187078,704909,10,'composer',NULL,NULL),(187078,115,1,'actor',NULL,'[\"Memphis Raines\"]'),(187078,1401,2,'actress',NULL,'[\"Sara \'Sway\' Wayland\"]'),(187078,610,3,'actor',NULL,'[\"Kip Raines\"]'),(187078,189278,4,'actor',NULL,'[\"Mirror Man\"]'),(187078,784061,5,'director',NULL,NULL),(187078,355181,6,'writer',NULL,NULL),(187078,3298,7,'writer','screenplay',NULL),(187078,988,8,'producer','producer',NULL),(187078,826679,9,'producer','producer',NULL),(187393,2354,10,'composer',NULL,NULL),(187393,154,1,'actor',NULL,'[\"Benjamin Martin\"]'),(187393,5132,2,'actor',NULL,'[\"Gabriel Martin\"]'),(187393,613,3,'actress',NULL,'[\"Charlotte Selton\"]'),(187393,5042,4,'actor',NULL,'[\"Col. William Tavington\"]'),(187393,386,5,'director',NULL,NULL),(187393,734441,6,'writer','written by',NULL),(187393,2041,7,'producer','producer',NULL),(187393,330428,8,'producer','producer',NULL),(187393,506013,9,'producer','producer',NULL),(187512,454908,10,'producer','producer',NULL),(187512,5305,1,'actress',NULL,'[\"Genevieve Le Plouff\"]'),(187512,569990,2,'actress',NULL,'[\"Starla Grady\"]'),(187512,571106,3,'actor',NULL,'[\"Monsieur Duke\"]'),(187512,285913,4,'actor',NULL,'[\"Ed Mitchell\"]'),(187512,563039,5,'director',NULL,NULL),(187512,198938,6,'writer','written by',NULL),(187512,455214,7,'writer','written by',NULL),(187512,256134,8,'producer','producer',NULL),(187512,4927,9,'producer','producer',NULL),(187738,470727,10,'producer','producer',NULL),(187738,648,1,'actor',NULL,'[\"Blade\"]'),(187738,1434,2,'actor',NULL,'[\"Whistler\"]'),(187738,579,3,'actor',NULL,'[\"Reinhardt\"]'),(187738,7237,4,'actress',NULL,'[\"Nyssa\"]'),(187738,868219,5,'director',NULL,NULL),(187738,938379,6,'writer','character',NULL),(187738,170160,7,'writer','character',NULL),(187738,275286,8,'writer','written by',NULL),(187738,291293,9,'producer','producer',NULL),(188484,1926,1,'self',NULL,'[\"Self\"]'),(188484,364600,2,'self',NULL,'[\"Self - Husband of Joan Baez\"]'),(188484,185428,3,'director',NULL,NULL),(188484,11158936,4,'director','collaborating director',NULL),(188484,5358048,5,'director','collaborating director',NULL),(188484,427595,6,'cinematographer','co-cinematographer',NULL),(188674,71696,10,'cinematographer','director of photography',NULL),(188674,799591,1,'actor',NULL,'[\"Jip\"]'),(188674,683455,2,'actress',NULL,'[\"Lulu\"]'),(188674,662744,3,'actor',NULL,'[\"Koop\"]'),(188674,721885,4,'actress',NULL,'[\"Nina\"]'),(188674,449863,5,'director',NULL,NULL),(188674,566659,6,'producer','producer',NULL),(188674,629242,7,'producer','producer',NULL),(188674,378593,8,'composer',NULL,NULL),(188674,578141,9,'composer',NULL,NULL),(189071,508715,10,'composer',NULL,NULL),(189071,41280,1,'actor',NULL,'[\"Baxter\"]'),(189071,89454,2,'actress',NULL,'[\"Sibella Dracula\"]'),(189071,131985,3,'actor',NULL,'[\"Phantom Father\"]'),(189071,169480,4,'actor',NULL,'[\"Grunt\"]'),(189071,629363,5,'director',NULL,NULL),(189071,666362,6,'director','supervising director',NULL),(189071,503158,7,'writer','written by',NULL),(189071,368906,8,'producer','producer',NULL),(189071,937678,9,'producer','producer',NULL),(189219,8499674,10,'editor',NULL,NULL),(189219,191275,1,'actor',NULL,'[\"Lao Huang\"]'),(189219,508536,2,'actor',NULL,'[\"Zhang Zhichen\"]'),(189219,793033,3,'actor',NULL,'[\"Dai Liyan\"]'),(189219,917672,4,'actress',NULL,'[\"Zhou Yuwen\"]'),(189219,270502,5,'director',NULL,NULL),(189219,508525,6,'writer','writer',NULL),(189219,10024442,7,'producer','producer',NULL),(189219,399064,8,'composer',NULL,NULL),(189219,508510,9,'cinematographer',NULL,NULL),(189498,617588,1,'actor',NULL,'[\"Townsperson\"]'),(189584,3712,10,'cinematographer','director of photography',NULL),(189584,228,1,'actor',NULL,'[\"Larry Mann\"]'),(189584,362,2,'actor',NULL,'[\"Phil Cooper\"]'),(189584,4906,3,'actor',NULL,'[\"Bob Walker\"]'),(189584,206225,4,'actor',NULL,'[\"Bellboy\"]'),(189584,841647,5,'director',NULL,NULL),(189584,749149,6,'writer','screenplay',NULL),(189584,759627,7,'producer','producer',NULL),(189584,2989,8,'producer','producer',NULL),(189584,2366,9,'composer',NULL,NULL),(190138,324975,10,'composer',NULL,NULL),(190138,246,1,'actor',NULL,'[\"Jimmy Tudeski\"]'),(190138,1612,2,'actor',NULL,'[\"Oz Oseransky\"]'),(190138,275,3,'actress',NULL,'[\"Sophie\"]'),(190138,3817,4,'actor',NULL,'[\"Frankie Figs\"]'),(190138,528718,5,'director',NULL,NULL),(190138,438449,6,'writer','written by',NULL),(190138,442075,7,'producer','producer',NULL),(190138,932303,8,'producer','producer',NULL),(190138,6055,9,'composer',NULL,NULL),(190332,398836,10,'producer','producer',NULL),(190332,334,1,'actor',NULL,'[\"Master Li Mu Bai\"]'),(190332,706,2,'actress',NULL,'[\"Yu Shu Lien\"]'),(190332,955471,3,'actress',NULL,'[\"Jen\"]'),(190332,151654,4,'actor',NULL,'[\"Lo\"]'),(190332,487,5,'director',NULL,NULL),(190332,910924,6,'writer','screenplay by',NULL),(190332,770005,7,'writer','screenplay by',NULL),(190332,874631,8,'writer','screenplay by',NULL),(190332,238893,9,'writer','based on the book by',NULL),(190590,177504,10,'editor',NULL,NULL),(190590,123,1,'actor',NULL,'[\"Everett\"]'),(190590,1806,2,'actor',NULL,'[\"Pete Hogwallop\"]'),(190590,625789,3,'actor',NULL,'[\"Delmar O\'Donnell\"]'),(190590,422,4,'actor',NULL,'[\"Big Dan Teague\"]'),(190590,1054,5,'director',NULL,NULL),(190590,1053,6,'director',NULL,NULL),(190590,392955,7,'writer','epic poem \"The Odyssey\"',NULL),(190590,122439,8,'composer',NULL,NULL),(190590,5683,9,'cinematographer','director of photography',NULL),(190641,605303,10,'producer','producer',NULL),(190641,853301,1,'actress',NULL,'[\"Ash Ketchum\",\"Female Scientist\",\"Computer\"]'),(190641,510418,2,'actress',NULL,'[\"Misty\",\"Jessie\",\"Wigglytuff\"]'),(190641,835688,3,'actor',NULL,'[\"Brock\",\"James\",\"Squirtle\"]'),(190641,559551,4,'actress',NULL,'[\"Satoshi\"]'),(190641,951197,5,'director',NULL,NULL),(190641,846969,6,'writer','creator',NULL),(190641,795575,7,'writer','written by',NULL),(190641,343570,8,'producer','producer',NULL),(190641,407025,9,'producer','producer',NULL),(190865,6133,10,'composer',NULL,NULL),(190865,1277,1,'actor',NULL,'[\"Montgomery Wick\"]'),(190865,563,2,'actor',NULL,'[\"Peter Garrett\"]'),(190865,200,3,'actor',NULL,'[\"Elliot Vaughn\"]'),(190865,677,4,'actress',NULL,'[\"Annie Garrett\"]'),(190865,132709,5,'director',NULL,NULL),(190865,455207,6,'writer','story',NULL),(190865,371249,7,'writer','screenplay',NULL),(190865,621587,8,'producer','executive producer',NULL),(190865,680595,9,'producer','executive producer',NULL),(190975,562462,10,'producer','producer',NULL),(190975,547647,1,'actress',NULL,'[\"Judite\"]'),(190975,346962,2,'actor',NULL,'[\"André\"]'),(190975,605706,3,'actor',NULL,'[\"Dr. Gould\"]'),(190975,1174105,4,'actress',NULL,'[\"Carmen\"]'),(190975,635145,5,'director',NULL,NULL),(190975,50618,6,'writer','story',NULL),(190975,1171466,7,'writer',NULL,NULL),(190975,910609,8,'writer',NULL,NULL),(190975,37665,9,'producer','producer',NULL),(191397,281311,10,'editor',NULL,NULL),(191397,206,1,'actor',NULL,'[\"Shane Falco\"]'),(191397,432,2,'actor',NULL,'[\"Jimmy McGinty\"]'),(191397,486728,3,'actress',NULL,'[\"Annabelle Farrell\"]'),(191397,428963,4,'actor',NULL,'[\"Clifford Franklin\"]'),(191397,222043,5,'director',NULL,NULL),(191397,571706,6,'writer','written by',NULL),(191397,783346,7,'producer','producer',NULL),(191397,2201,8,'composer',NULL,NULL),(191397,5714,9,'cinematographer',NULL,NULL),(191754,856249,10,'editor',NULL,NULL),(191754,113,1,'actress',NULL,'[\"Gwen Cummings\"]'),(191754,1557,2,'actor',NULL,'[\"Eddie Boone\"]'),(191754,922035,3,'actor',NULL,'[\"Jasper\"]'),(191754,1610,4,'actress',NULL,'[\"Lily\"]'),(191754,858525,5,'director',NULL,NULL),(191754,335666,6,'writer','written by',NULL),(191754,867768,7,'producer','producer',NULL),(191754,6099,8,'composer',NULL,NULL),(191754,2336,9,'cinematographer','director of photography',NULL),(192023,807413,10,'composer',NULL,NULL),(192023,5292,1,'actor',NULL,'[\"Tepper\"]'),(192023,5351,2,'actor',NULL,'[\"Quigley\"]'),(192023,5231,3,'actor',NULL,'[\"Bolan\"]'),(192023,5318,4,'actress',NULL,'[\"Carla\"]'),(192023,698251,5,'director',NULL,NULL),(192023,347732,6,'writer','story',NULL),(192023,885612,7,'producer','producer',NULL),(192023,2359,8,'producer','producer',NULL),(192023,932144,9,'producer','producer',NULL),(192618,922162,10,'cinematographer',NULL,NULL),(192618,5408,1,'actress',NULL,'[\"Pat\"]'),(192618,581365,2,'actor',NULL,'[\"Ben\"]'),(192618,901384,3,'actress',NULL,'[\"Angie\"]'),(192618,453273,4,'actor',NULL,'[\"Nick\"]'),(192618,996,5,'director',NULL,NULL),(192618,399990,6,'writer','written by',NULL),(192618,471217,7,'writer','written by',NULL),(192618,593691,8,'producer','producer',NULL),(192618,325151,9,'composer',NULL,NULL),(193019,49320,10,'composer',NULL,NULL),(193019,122886,1,'actor',NULL,'[\"Steve\"]'),(193019,153124,2,'actor',NULL,'[\"G-Clef\"]'),(193019,2791163,3,'actor',NULL,'[\"Notes\"]'),(193019,426365,4,'actress',NULL,'[\"Blue\"]'),(193019,1383079,5,'director',NULL,NULL),(193019,996022,6,'writer','written by',NULL),(193019,996078,7,'writer','written by',NULL),(193019,996011,8,'writer','story editor',NULL),(193019,1012373,9,'producer','producer',NULL),(193364,6043,10,'composer',NULL,NULL),(193364,241,1,'actor',NULL,'[\"Rudy Cafmeyer\"]'),(193364,590499,2,'actress',NULL,'[\"Dalia\"]'),(193364,32,3,'actor',NULL,'[\"Professor Finley\"]'),(193364,859921,4,'actor',NULL,'[\"Cyrus\"]'),(193364,504802,5,'director',NULL,NULL),(193364,2659,6,'writer','written by',NULL),(193364,503592,7,'producer','producer',NULL),(193364,503600,8,'producer','producer',NULL),(193364,860315,9,'producer','producer',NULL),(193524,728125,10,'writer','written by',NULL),(193524,608056,1,'actor',NULL,'[\"Malla\"]'),(193524,540593,2,'actress',NULL,'[\"Lumpy\"]'),(193524,301893,3,'actor',NULL,'[\"Itchy\"]'),(193524,434,4,'actor',NULL,'[\"Luke Skywalker\"]'),(193524,4596,5,'director',NULL,NULL),(193524,10128,6,'director',NULL,NULL),(193524,913017,7,'writer','written by',NULL),(193524,897358,8,'writer','written by',NULL),(193524,698493,9,'writer','written by',NULL),(194722,203246,10,'producer','producer',NULL),(194722,185,1,'actor',NULL,'[\"Warchild\"]'),(194722,846480,2,'actor',NULL,'[\"General Ruechang\"]'),(194722,159513,3,'actress',NULL,'[\"Princess Halo\"]'),(194722,399839,4,'actor',NULL,'[\"Emmerich\"]'),(194722,282708,5,'director',NULL,NULL),(194722,390290,6,'writer','original screenplay',NULL),(194722,490417,7,'writer','rewrite',NULL),(194722,509627,8,'writer','rewrite',NULL),(194722,59544,9,'producer','producer',NULL),(194800,59001,10,'cinematographer',NULL,NULL),(194800,172333,1,'actor',NULL,'[\"Skip Lang\"]'),(194800,487917,2,'actor',NULL,'[\"McKinney\"]'),(194800,931015,3,'actor',NULL,'[\"Hutch\"]'),(194800,582257,4,'actor',NULL,'[\"Vickers\"]'),(194800,4161,5,'director',NULL,NULL),(194800,503600,6,'writer','story',NULL),(194800,817065,7,'writer','written by',NULL),(194800,890144,8,'producer','producer',NULL),(194800,4679,9,'composer',NULL,NULL),(195234,829378,10,'production_designer',NULL,NULL),(195234,950,1,'actress',NULL,'[\"Grace\"]'),(195234,272401,2,'actor',NULL,'[\"Matthew\"]'),(195234,167340,3,'actor',NULL,'[\"Dr. Bamford\"]'),(195234,1409,4,'actor',NULL,'[\"Jacques\"]'),(195234,170719,5,'director',NULL,NULL),(195234,189596,6,'writer','story',NULL),(195234,751319,7,'composer',NULL,NULL),(195234,207532,8,'cinematographer','director of photography',NULL),(195234,833029,9,'editor',NULL,NULL),(195685,2353,10,'composer',NULL,NULL),(195685,210,1,'actress',NULL,'[\"Erin Brockovich\"]'),(195685,1215,2,'actor',NULL,'[\"Ed Masry\"]'),(195685,109773,3,'actor',NULL,'[\"Dr. Jaffe\"]'),(195685,225767,4,'actress',NULL,'[\"Rosalind\"]'),(195685,1752,5,'director',NULL,NULL),(195685,335666,6,'writer','written by',NULL),(195685,362,7,'producer','producer',NULL),(195685,787834,8,'producer','producer',NULL),(195685,792049,9,'producer','producer',NULL),(195714,1795813,10,'composer',NULL,NULL),(195714,1701,1,'actor',NULL,'[\"Alex Browning\"]'),(195714,5123,2,'actress',NULL,'[\"Clear Rivers\"]'),(195714,5445,3,'actor',NULL,'[\"Carter Horton\"]'),(195714,167028,4,'actress',NULL,'[\"Valerie Lewton\"]'),(195714,939128,5,'director',NULL,NULL),(195714,604688,6,'writer','screenplay',NULL),(195714,714695,7,'writer','screenplay',NULL),(195714,675013,8,'producer','producer',NULL),(195714,956015,9,'producer','producer',NULL),(195945,2969,10,'production_designer',NULL,NULL),(195945,1084,1,'actor',NULL,'[\"Craig Jones\"]'),(195945,258402,2,'actor',NULL,'[\"Day-Day\"]'),(195945,682399,3,'actor',NULL,'[\"Roach\"]'),(195945,936762,4,'actor',NULL,'[\"Mr. Jones\"]'),(195945,139867,5,'director',NULL,NULL),(195945,690770,6,'writer','characters',NULL),(195945,5966,7,'composer',NULL,NULL),(195945,46484,8,'cinematographer','director of photography',NULL),(195945,535718,9,'editor',NULL,NULL),(196069,707847,10,'cinematographer',NULL,NULL),(196069,473329,1,'actor',NULL,'[\"Tashi\",\"Husband\"]'),(196069,161198,2,'actress',NULL,'[\"Pema\",\"Wife\"]'),(196069,61088,3,'actress',NULL,'[\"Sujata\",\"Migrant farm worker\"]'),(196069,1146415,4,'actor',NULL,'[\"Dawa\",\"Local merchant\"]'),(196069,659023,5,'director',NULL,NULL),(196069,48973,6,'writer','screenplay',NULL),(196069,62362,7,'producer','producer',NULL),(196069,295016,8,'producer','producer',NULL),(196069,605513,9,'composer',NULL,NULL),(196229,677021,10,'cinematographer',NULL,NULL),(196229,1774,1,'actor',NULL,'[\"Derek Zoolander\"]'),(196229,5562,2,'actor',NULL,'[\"Hansel\"]'),(196229,852132,3,'actress',NULL,'[\"Matilda Jeffries\"]'),(196229,2071,4,'actor',NULL,'[\"Mugatu\"]'),(196229,766153,5,'writer','character Derek Zoolander',NULL),(196229,357453,6,'writer','screenplay',NULL),(196229,180366,7,'producer','producer',NULL),(196229,748784,8,'producer','producer',NULL),(196229,3417,9,'composer',NULL,NULL),(196378,1235567,1,'actress',NULL,'[\"Dillea\"]'),(196378,1788758,2,'actor',NULL,'[\"Salacious Thatch\"]'),(196378,1467141,3,'actor',NULL,'[\"Larry - The Male Bimbo\"]'),(196378,597552,4,'actress',NULL,'[\"Trianna\"]'),(196378,790743,5,'director',NULL,NULL),(196378,1235773,6,'actress',NULL,'[\"Doc\"]'),(196378,1235835,7,'actress',NULL,'[\"Gabrielle\"]'),(196378,2360190,8,'actor',NULL,'[\"Morbius\"]'),(196931,266162,10,'writer','additional development',NULL),(196931,409186,1,'actor',NULL,'[\"Scooby Doo\",\"Norville \'Shaggy\' Rogers\"]'),(196931,74834,2,'actress',NULL,'[\"Daphne Blake\"]'),(196931,919798,3,'actor',NULL,'[\"Fred Jones\"]'),(196931,911389,4,'actress',NULL,'[\"Velma\"]'),(196931,826693,5,'director',NULL,NULL),(196931,178769,6,'writer','written by',NULL),(196931,329047,7,'writer','written by',NULL),(196931,230669,8,'writer','written by',NULL),(196931,503158,9,'writer','written by',NULL),(197096,359000,10,'editor',NULL,NULL),(197096,1040,1,'actress',NULL,'[\"Trinh Nguyen\"]'),(197096,523,2,'actress',NULL,'[\"Carla\"]'),(197096,1689,3,'actress',NULL,'[\"Elizabeth Avila\"]'),(197096,729582,4,'actor',NULL,'[\"Javier Avila\"]'),(197096,149446,5,'director',NULL,NULL),(197096,74488,6,'writer','written by',NULL),(197096,852564,7,'producer','producer',NULL),(197096,699192,8,'composer',NULL,NULL),(197096,510908,9,'cinematographer','director of photography',NULL),(197626,958641,10,'editor',NULL,NULL),(197626,877234,1,'actress',NULL,'[\"Kate\"]'),(197626,372796,2,'actress',NULL,'[\"Chloe\"]'),(197626,888780,3,'actress',NULL,'[\"Rebecca\"]'),(197626,238538,4,'actress',NULL,'[\"Sara\"]'),(197626,1068,5,'director',NULL,NULL),(197626,371364,6,'writer','screenplay',NULL),(197626,241399,7,'producer','producer',NULL),(197626,624670,8,'producer','producer',NULL),(197626,10139,9,'cinematographer','director of photography',NULL),(198021,568730,10,'producer','producer',NULL),(198021,204,1,'actress',NULL,'[\"Novalee Nation\"]'),(198021,289656,2,'actor',NULL,'[\"Forney Hull\"]'),(198021,171,3,'actress',NULL,'[\"Lexie Coop\"]'),(198021,330,4,'actress',NULL,'[\"Sister Husband\"]'),(198021,931285,5,'director',NULL,NULL),(198021,304665,6,'writer','screenplay',NULL),(198021,541632,7,'writer','screenplay',NULL),(198021,504819,8,'writer','novel',NULL),(198021,142134,9,'producer','producer',NULL),(198781,250995,10,'writer','original story by',NULL),(198781,345,1,'actor',NULL,'[\"Mike\"]'),(198781,422,2,'actor',NULL,'[\"Sullivan\"]'),(198781,316701,3,'actress',NULL,'[\"Boo\"]'),(198781,114,4,'actor',NULL,'[\"Randall\"]'),(198781,230032,5,'director',NULL,NULL),(198781,798899,6,'director','co-director',NULL),(198781,881279,7,'director','co-director',NULL),(198781,191717,8,'writer','original story by',NULL),(198781,682066,9,'writer','original story by',NULL),(199626,385180,10,'composer',NULL,NULL),(199626,212,1,'actress',NULL,'[\"Frannie Avery\"]'),(199626,749263,2,'actor',NULL,'[\"Detective Giovanni A. Malloy\"]'),(199626,492,3,'actress',NULL,'[\"Pauline\"]'),(199626,1476796,4,'actor',NULL,'[\"Frannie\'s Young Father\"]'),(199626,1005,5,'director',NULL,NULL),(199626,601912,6,'writer','screenplay',NULL),(199626,443613,7,'writer','additional writer',NULL),(199626,173,8,'producer','producer',NULL),(199626,662435,9,'producer','producer',NULL),(199683,654753,10,'production_designer',NULL,NULL),(199683,1429,1,'actor',NULL,'[\"Kikujiro\"]'),(199683,782858,2,'actor',NULL,'[\"Masao\"]'),(199683,457229,3,'actress',NULL,'[\"Kikujiro\'s Wife\"]'),(199683,317243,4,'actor',NULL,'[\"Biker\"]'),(199683,605271,5,'producer','producer',NULL),(199683,948934,6,'producer','producer',NULL),(199683,386749,7,'composer',NULL,NULL),(199683,945851,8,'cinematographer',NULL,NULL),(199683,649025,9,'editor',NULL,NULL),(199725,795443,10,'editor',NULL,NULL),(199725,5125,1,'actress',NULL,'[\"Monica Wright\"]'),(199725,4898,2,'actor',NULL,'[\"Quincy McCall\"]'),(199725,154071,3,'actor',NULL,'[\"Young Quincy\"]'),(199725,929615,4,'actor',NULL,'[\"Jamal\"]'),(199725,697656,5,'director',NULL,NULL),(199725,457757,6,'producer','producer',NULL),(199725,490,7,'producer','producer',NULL),(199725,5966,8,'composer',NULL,NULL),(199725,897794,9,'cinematographer',NULL,NULL),(199753,764822,10,'producer','producer',NULL),(199753,174,1,'actor',NULL,'[\"Gallagher\"]'),(199753,5251,2,'actress',NULL,'[\"Bowman\"]'),(199753,1744,3,'actor',NULL,'[\"Burchenal\"]'),(199753,973,4,'actor',NULL,'[\"Santen\"]'),(199753,388817,5,'director',NULL,NULL),(199753,679326,6,'writer','story',NULL),(199753,501380,7,'writer','screenplay',NULL),(199753,75732,8,'producer','producer',NULL),(199753,4799,9,'producer','producer',NULL),(199849,151714,10,'cinematographer',NULL,NULL),(199849,365835,1,'actor',NULL,'[\"Ninja master Harry\"]'),(199849,399007,2,'actor',NULL,'[\"Tiger\"]'),(199849,915074,3,'actor',NULL,NULL),(199849,1177331,4,'actress',NULL,NULL),(199849,61792,5,'director',NULL,NULL),(199849,7554,6,'writer','story',NULL),(199849,1892366,7,'writer','story',NULL),(199849,150804,8,'producer','producer',NULL),(199849,481699,9,'producer','producer',NULL),(200027,171780,10,'producer','producer',NULL),(200027,106,1,'actress',NULL,'[\"Beverly Donofrio\"]'),(200027,1872,2,'actor',NULL,'[\"Ray Hasek\"]'),(200027,305081,3,'actor',NULL,'[\"Jason\"]'),(200027,5261,4,'actress',NULL,'[\"Fay Forrester\"]'),(200027,1508,5,'director',NULL,NULL),(200027,195838,6,'writer','book \"Riding in Cars with Boys\"',NULL),(200027,911750,7,'writer','screenplay',NULL),(200027,30572,8,'producer','producer',NULL),(200027,985,9,'producer','producer',NULL),(200208,551108,10,'composer',NULL,NULL),(200208,823059,1,'actor',NULL,'[\"Cody Griffin\"]'),(200208,743566,2,'actor',NULL,'[\"Jess Wheatley\"]'),(200208,237124,3,'actress',NULL,'[\"Sam\"]'),(200208,109785,4,'actor',NULL,'[\"Big John Wheatley\"]'),(200208,242271,5,'director',NULL,NULL),(200208,33159,6,'writer','story',NULL),(200208,47916,7,'writer','teleplay',NULL),(200208,784177,8,'writer','teleplay',NULL),(200208,173476,9,'producer','producer',NULL),(200465,6254,10,'composer',NULL,NULL),(200465,5458,1,'actor',NULL,'[\"Terry Leather\"]'),(200465,4787,2,'actress',NULL,'[\"Martine Love\"]'),(200465,1304386,3,'actor',NULL,'[\"Kevin Swain\"]'),(200465,990547,4,'actor',NULL,'[\"Dave Shilling\"]'),(200465,2044,5,'director',NULL,NULL),(200465,166074,6,'writer','written by',NULL),(200465,478588,7,'writer','written by',NULL),(200465,153893,8,'producer','producer',NULL),(200465,746273,9,'producer','producer',NULL),(200550,596360,10,'cinematographer','director of photography',NULL),(200550,5305,1,'actress',NULL,'[\"Violet Sanford\"]'),(200550,305081,2,'actor',NULL,'[\"Kevin O\'Donnell\"]'),(200550,422,3,'actor',NULL,'[\"Bill\"]'),(200550,4742,4,'actress',NULL,'[\"Lil\"]'),(200550,573589,5,'director',NULL,NULL),(200550,920859,6,'writer','written by',NULL),(200550,988,7,'producer','producer',NULL),(200550,648288,8,'producer','producer',NULL),(200550,394924,9,'composer',NULL,NULL),(200809,462732,10,'editor',NULL,NULL),(200809,517820,1,'actress',NULL,'[\"Casey Stuart\"]'),(200809,122716,2,'actor',NULL,'[\"Ben Stuart\"]'),(200809,517059,3,'actress',NULL,'[\"Drew McDonald\"]'),(200809,762560,4,'actor',NULL,'[\"Richie\"]'),(200809,743093,5,'director',NULL,NULL),(200809,2381451,6,'writer','teleplay',NULL),(200809,128325,7,'producer','producer',NULL),(200809,173433,8,'composer',NULL,NULL),(200809,513294,9,'cinematographer','director of photography',NULL),(201820,1154160,1,'actress',NULL,'[\"Meg the Peg\"]'),(201820,33986,2,'actress',NULL,'[\"Therapist\"]'),(201820,93946,3,'actor',NULL,NULL),(201820,199186,4,'actress',NULL,NULL),(201820,223051,5,'cinematographer',NULL,NULL),(201820,591275,6,'editor',NULL,NULL),(202677,419473,10,'production_designer',NULL,NULL),(202677,202,1,'actor',NULL,'[\"Mr. Parker\"]'),(202677,1125,2,'actor',NULL,'[\"Harold Longbaugh\"]'),(202677,496,3,'actress',NULL,'[\"Robin\"]'),(202677,4875,4,'actor',NULL,'[\"Jeffers\"]'),(202677,3160,5,'director',NULL,NULL),(202677,463714,6,'producer','producer',NULL),(202677,469145,7,'composer',NULL,NULL),(202677,5836,8,'cinematographer',NULL,NULL),(202677,2377,9,'editor',NULL,NULL),(203009,5791,10,'cinematographer','director of photography',NULL),(203009,173,1,'actress',NULL,'[\"Satine\"]'),(203009,191,2,'actor',NULL,'[\"Christian\"]'),(203009,491,3,'actor',NULL,'[\"Toulouse-Lautrec\"]'),(203009,980,4,'actor',NULL,'[\"Harold Zidler\"]'),(203009,525303,5,'director',NULL,NULL),(203009,668902,6,'writer','written by',NULL),(203009,56236,7,'producer','producer',NULL),(203009,114213,8,'producer','producer',NULL),(203009,35661,9,'composer',NULL,NULL),(203019,725072,10,'cinematographer',NULL,NULL),(203019,421,1,'actor',NULL,'[\"Chief Carl Brashear\"]'),(203019,134,2,'actor',NULL,'[\"Master Chief Billy Sunday\"]'),(203019,234,3,'actress',NULL,'[\"Gwen Sunday\"]'),(203019,254712,4,'actress',NULL,'[\"Jo\"]'),(203019,863387,5,'director',NULL,NULL),(203019,809899,6,'writer','written by',NULL),(203019,45927,7,'producer','producer',NULL),(203019,854052,8,'producer','producer',NULL),(203019,6142,9,'composer',NULL,NULL),(203040,620014,10,'cinematographer',NULL,NULL),(203040,361660,1,'actress',NULL,'[\"Kuniko Sugimoto\"]'),(203040,457483,2,'actress',NULL,'[\"Chieko\"]'),(203040,434593,3,'actress',NULL,'[\"Mrs. Shima\"]'),(203040,43398,4,'actress',NULL,'[\"Director Nogami\"]'),(203040,849011,5,'director',NULL,NULL),(203040,849068,6,'writer',NULL,NULL),(203040,2085938,7,'writer','novel \'Michi aredo\', 1960',NULL),(203040,793408,8,'producer','producer',NULL),(203040,370618,9,'composer',NULL,NULL),(203119,83382,10,'cinematographer','director of photography',NULL),(203119,935653,1,'actor',NULL,'[\"Gal\"]'),(203119,1426,2,'actor',NULL,'[\"Don Logan\"]'),(203119,574534,3,'actor',NULL,'[\"Teddy Bass\"]'),(203119,714985,4,'actress',NULL,'[\"Deedee Dove\"]'),(203119,322242,5,'director',NULL,NULL),(203119,578011,6,'writer','written by',NULL),(203119,778476,7,'writer','written by',NULL),(203119,859016,8,'producer','producer',NULL),(203119,63414,9,'composer',NULL,NULL),(203166,511841,1,'actress',NULL,'[\"Elisabeth\"]'),(203166,638824,2,'actor',NULL,'[\"Rolf\"]'),(203166,760571,3,'actress',NULL,'[\"Eva\"]'),(203166,450269,4,'actor',NULL,'[\"Stefan\"]'),(203166,600546,5,'director',NULL,NULL),(203166,433646,6,'producer','producer',NULL),(203166,105308,7,'cinematographer',NULL,NULL),(203166,9036,8,'editor',NULL,NULL),(203166,504576,9,'editor',NULL,NULL),(203540,198459,10,'cinematographer','director of photography',NULL),(203540,654110,1,'actor',NULL,'[\"Colin Briggs\"]'),(203540,545,2,'actress',NULL,'[\"Georgina Woodhouse\"]'),(203540,446303,3,'actor',NULL,'[\"Fergus Wilks\"]'),(203540,165049,4,'actor',NULL,'[\"Governor Hodge\"]'),(203540,380957,5,'director',NULL,NULL),(203540,836548,6,'producer','producer',NULL),(203540,842899,7,'producer','producer',NULL),(203540,896097,8,'producer','executive producer',NULL),(203540,196840,9,'composer',NULL,NULL),(203646,193696,1,'self',NULL,'[\"Self\"]'),(203646,502719,2,'self',NULL,'[\"Self\"]'),(203646,5690,3,'director',NULL,NULL),(203646,374658,4,'cinematographer',NULL,NULL),(204082,755156,10,'actor',NULL,'[\"Charles James Fox\"]'),(204082,680795,1,'actress',NULL,'[\"Narrator\",\"Older Lady Emily\"]'),(204082,35605,2,'actor',NULL,'[\"Henry Fox\"]'),(204082,199842,3,'actor',NULL,'[\"Lord Kildare\"]'),(204082,330601,4,'actress',NULL,'[\"Lady Caroline\"]'),(204082,240359,5,'actress',NULL,'[\"Lady Louisa\"]'),(204082,429363,6,'actor',NULL,'[\"Ste Fox\"]'),(204082,612443,7,'actor',NULL,'[\"Thomas Conolly\"]'),(204082,562003,8,'actress',NULL,'[\"Lady Sarah\"]'),(204082,813893,9,'actress',NULL,'[\"Lady Emily\"]'),(204640,3392,10,'composer',NULL,NULL),(204640,4785,1,'actress',NULL,'[\"Noleta Nethercott\"]'),(204640,889,2,'actress',NULL,'[\"Latrelle Williamson\"]'),(204640,556,3,'actress',NULL,'[\"Bitsy Mae Harling\"]'),(204640,311912,4,'actor',NULL,'[\"Ty Williamson\"]'),(204640,794971,5,'director',NULL,NULL),(204640,22285,6,'producer','producer',NULL),(204640,163049,7,'producer','producer',NULL),(204640,364787,8,'producer','producer',NULL),(204640,485553,9,'producer','producer',NULL),(204700,863893,10,'composer',NULL,NULL),(204700,1252,1,'actor',NULL,'[\"Shane Brown\"]'),(204700,895308,2,'actress',NULL,'[\"June Brown\"]'),(204700,1095,3,'actress',NULL,'[\"Coré\"]'),(204700,220976,4,'actor',NULL,'[\"Léo\"]'),(204700,219136,5,'director',NULL,NULL),(204700,267288,6,'writer',NULL,NULL),(204700,70300,7,'producer','producer',NULL),(204700,515510,8,'producer','producer',NULL),(204700,721097,9,'producer','producer',NULL),(204761,239656,10,'editor',NULL,NULL),(204761,521,1,'actress',NULL,'[\"Clélia\"]'),(204761,339621,2,'actor',NULL,'[\"Clève\"]'),(204761,133899,3,'actor',NULL,'[\"Némo\"]'),(204761,637649,4,'actress',NULL,'[\"La mère de clélia\"]'),(204761,958558,5,'director',NULL,NULL),(204761,478548,6,'writer','inspired by the book \"La Princesse de Clèves\"',NULL),(204761,104418,7,'producer','producer',NULL),(204761,466863,8,'composer',NULL,NULL),(204761,89333,9,'cinematographer',NULL,NULL),(204946,561053,10,'cinematographer',NULL,NULL),(204946,379,1,'actress',NULL,'[\"Torrance Shipman\"]'),(204946,244630,2,'actress',NULL,'[\"Missy Pantone\"]'),(204946,103038,3,'actor',NULL,'[\"Cliff Pantone\"]'),(204946,5517,4,'actress',NULL,'[\"Isis\"]'),(204946,715636,5,'director',NULL,NULL),(204946,70566,6,'writer','written by',NULL),(204946,8953,7,'producer','producer',NULL),(204946,88536,8,'producer','producer',NULL),(204946,65100,9,'composer',NULL,NULL),(205000,172818,10,'cinematographer','director of photography',NULL),(205000,1705,1,'actor',NULL,'[\"Deuce Bigalow\"]'),(205000,1235,2,'actor',NULL,'[\"Detective Chuck Fowler\"]'),(205000,341176,3,'actor',NULL,'[\"T.J. Hicks\"]'),(205000,54397,4,'actress',NULL,'[\"Kate\"]'),(205000,593610,5,'director',NULL,NULL),(205000,325214,6,'writer','written by',NULL),(205000,76444,7,'producer','producer',NULL),(205000,304398,8,'producer','producer',NULL),(205000,144841,9,'composer',NULL,NULL),(205177,691171,10,'composer',NULL,NULL),(205177,256960,1,'actor',NULL,'[\"Kevin\",\"Executioner\"]'),(205177,121755,2,'actress',NULL,'[\"Perry\"]'),(205177,406975,3,'actor',NULL,'[\"Eye Ball Paul\"]'),(205177,292182,4,'actress',NULL,'[\"Candice\"]'),(205177,125753,5,'director',NULL,NULL),(205177,191874,6,'writer','screenplay',NULL),(205177,71564,7,'producer','producer',NULL),(205177,843365,8,'producer','producer',NULL),(205177,1523097,9,'composer',NULL,NULL),(205214,277975,10,'actor',NULL,'[\"General Bulstrode\"]'),(205214,1642,1,'actor',NULL,'[\"Jack Woods\"]'),(205214,155,2,'actress',NULL,'[\"The Grand Banshee\"]'),(205214,2032,3,'actor',NULL,'[\"King Boric\"]'),(205214,538,4,'actor',NULL,'[\"Seamus Muldoon\"]'),(205214,1085,5,'actor',NULL,'[\"Barney O\'Grady\"]'),(205214,910738,6,'actress',NULL,'[\"Mary Muldoon\"]'),(205214,79418,7,'actor',NULL,'[\"Mickey Muldoon\"]'),(205214,103699,8,'actress',NULL,'[\"Kathleen Fitzpatrick\"]'),(205214,142543,9,'actress',NULL,'[\"Princess Jessica\"]'),(205271,674419,10,'editor',NULL,NULL),(205271,152,1,'actor',NULL,'[\"Dr. T\"]'),(205271,166,2,'actress',NULL,'[\"Bree\"]'),(205271,396,3,'actress',NULL,'[\"Kate\"]'),(205271,368,4,'actress',NULL,'[\"Peggy\"]'),(205271,265,5,'director',NULL,NULL),(205271,710828,6,'writer','written by',NULL),(205271,572906,7,'producer','producer',NULL),(205271,5164,8,'composer',NULL,NULL),(205271,452654,9,'cinematographer','director of photography',NULL),(205873,158802,10,'composer',NULL,NULL),(205873,554,1,'actor',NULL,'[\"Cliff\"]'),(205873,4177597,2,'actor',NULL,'[\"Cameron\"]'),(205873,358774,3,'actress',NULL,'[\"Miss Nolan\"]'),(205873,834067,4,'actor',NULL,'[\"Damien\"]'),(205873,803203,5,'director',NULL,NULL),(205873,162274,6,'writer','conceived and written by',NULL),(205873,322467,7,'writer','conceived and written by',NULL),(205873,448088,8,'writer','conceived and written by',NULL),(205873,386651,9,'producer','producer',NULL),(206036,908620,10,'writer','created by',NULL),(206036,603,1,'actress',NULL,'[\"Edith Tree (segment \\\"1961\\\")\"]'),(206036,783033,2,'actress',NULL,'[\"Abby Hedley (segment \\\"1961\\\")\"]'),(206036,316079,3,'actor',NULL,'[\"Ted Hedley (segment \\\"1961\\\")\"]'),(206036,1610,4,'actress',NULL,'[\"Alice Hedley (segment \\\"1961\\\")\"]'),(206036,26862,5,'director',NULL,NULL),(206036,4838,6,'director',NULL,NULL),(206036,162,7,'director',NULL,NULL),(206036,796359,8,'writer','teleplay',NULL),(206036,796357,9,'writer','story',NULL),(206064,377454,10,'cinematographer',NULL,NULL),(206064,846480,1,'actor',NULL,'[\"Johnny Tsunami\"]'),(206064,48288,2,'actor',NULL,'[\"Johnny Kapahaala\"]'),(206064,5081,3,'actress',NULL,'[\"Melanie\"]'),(206064,645785,4,'actor',NULL,'[\"Pete\"]'),(206064,102434,5,'director',NULL,NULL),(206064,460458,6,'writer','written by',NULL),(206064,805957,7,'writer','written by',NULL),(206064,647910,8,'producer','producer',NULL),(206064,551108,9,'composer',NULL,NULL),(206275,6142,10,'composer',NULL,NULL),(206275,5466,1,'actress',NULL,'[\"Sara\"]'),(206275,859503,2,'actor',NULL,'[\"Derek\"]'),(206275,913488,3,'actress',NULL,'[\"Chenille\"]'),(206275,823507,4,'actor',NULL,'[\"Malakai\"]'),(206275,141961,5,'director',NULL,NULL),(206275,12137,6,'writer','story',NULL),(206275,249882,7,'writer','screenplay',NULL),(206275,181202,8,'producer','producer',NULL),(206275,534574,9,'producer','producer',NULL),(206634,416807,10,'writer','novel \"The Children of Men\"',NULL),(206634,194,1,'actress',NULL,'[\"Julian\"]'),(206634,654110,2,'actor',NULL,'[\"Theo Faron\"]'),(206634,252230,3,'actor',NULL,'[\"Luke\"]'),(206634,323,4,'actor',NULL,'[\"Jasper\"]'),(206634,190859,5,'director',NULL,NULL),(206634,786694,6,'writer','screenplay',NULL),(206634,33153,7,'writer','screenplay',NULL),(206634,1318843,8,'writer','screenplay',NULL),(206634,1319757,9,'writer','screenplay',NULL),(206917,176323,10,'production_designer',NULL,NULL),(206917,207,1,'actress',NULL,'[\"Suzie\"]'),(206917,949,2,'actress',NULL,'[\"Lola\"]'),(206917,946160,3,'actor',NULL,'[\"Father\"]'),(206917,484606,4,'actress',NULL,'[\"Young Suzie\"]'),(206917,6845,5,'director',NULL,NULL),(206917,791931,6,'producer','producer',NULL),(206917,326497,7,'composer',NULL,NULL),(206917,5916,8,'cinematographer','director of photography',NULL),(206917,773685,9,'editor',NULL,NULL),(207061,795642,1,'actress',NULL,'[\"P.J. Smith\"]'),(207061,261724,2,'actor',NULL,'[\"Chico Dennis\"]'),(207061,111926,3,'actor',NULL,'[\"Swamp Farmer\"]'),(207061,2530809,4,'actress',NULL,'[\"Slingshot\"]'),(207061,413459,5,'director',NULL,NULL),(207061,2396,6,'writer',NULL,NULL),(207061,670585,7,'producer','producer',NULL),(207061,5941117,8,'editor',NULL,NULL),(207061,1090337,9,'production_designer',NULL,NULL),(207201,202704,10,'producer','producer',NULL),(207201,154,1,'actor',NULL,'[\"Nick Marshall\"]'),(207201,166,2,'actress',NULL,'[\"Darcy Maguire\"]'),(207201,673,3,'actress',NULL,'[\"Lola\"]'),(207201,257,4,'actor',NULL,'[\"Dan Wanamaker\"]'),(207201,583600,5,'director',NULL,NULL),(207201,326092,6,'writer','story',NULL),(207201,951135,7,'writer','story',NULL),(207201,236884,8,'writer','story',NULL),(207201,142134,9,'producer','producer',NULL),(207972,5659,10,'cinematographer','director of photography',NULL),(207972,870,1,'actress',NULL,'[\"Miss Agatha Hannigan\"]'),(207972,1086,2,'actor',NULL,'[\"Daniel Francis \\\"Rooster\\\" Hannigan\"]'),(207972,567653,3,'actress',NULL,'[\"Grace Farrell\"]'),(207972,155693,4,'actress',NULL,'[\"Lily St. Regis\"]'),(207972,551128,5,'director',NULL,NULL),(207972,575293,6,'writer','teleplay',NULL),(207972,576070,7,'writer','book of musical play \"Annie\"',NULL),(207972,153377,8,'writer','lyrics',NULL),(207972,926151,9,'producer','producer',NULL),(208092,524829,10,'production_designer',NULL,NULL),(208092,5458,1,'actor',NULL,'[\"Turkish\"]'),(208092,93,2,'actor',NULL,'[\"Mickey O\'Neil\"]'),(208092,334318,3,'actor',NULL,'[\"Tommy\"]'),(208092,5068,4,'actor',NULL,'[\"Bullet-Tooth Tony\"]'),(208092,5363,5,'director',NULL,NULL),(208092,891216,6,'producer','producer',NULL),(208092,614373,7,'composer',NULL,NULL),(208092,362165,8,'cinematographer','director of photography',NULL),(208092,1154184,9,'editor',NULL,NULL),(208185,4951,10,'actor',NULL,'[\"Tank\"]'),(208185,267724,1,'actor',NULL,'[\"Goofy\"]'),(208185,5189,2,'actor',NULL,'[\"Max Goof\"]'),(208185,71818,3,'actor',NULL,'[\"Bradley Uppercrust, III\",\"Unemployment Lady\",\"Chuck the Sportscaster\"]'),(208185,191906,4,'actor',NULL,'[\"Pete\"]'),(208185,565119,5,'director',NULL,NULL),(208185,329879,6,'writer','screenplay by',NULL),(208185,137575,7,'writer','additional screenplay material by',NULL),(208185,816110,8,'producer','producer',NULL),(208185,58418,9,'composer',NULL,NULL),(208502,905278,10,'producer','producer',NULL),(208502,405289,1,'actress',NULL,'[\"Girl\"]'),(208502,628704,2,'actor',NULL,'[\"Boy\"]'),(208502,633791,3,'actor',NULL,'[\"Narrator\"]'),(208502,651900,4,'director',NULL,NULL),(208502,23923,5,'writer','story',NULL),(208502,2143725,6,'producer','producer',NULL),(208502,462033,7,'producer','producer',NULL),(208502,7206142,8,'producer','producer',NULL),(208502,840699,9,'producer','producer',NULL),(208874,343935,10,'composer',NULL,NULL),(208874,260,1,'actress',NULL,'[\"Laine Hanson\"]'),(208874,198,2,'actor',NULL,'[\"Shelly Runyon\"]'),(208874,313,3,'actor',NULL,'[\"President Jackson Evans\"]'),(208874,225,4,'actor',NULL,'[\"Reginald Webster\"]'),(208874,527109,5,'director',NULL,NULL),(208874,126653,6,'producer','producer',NULL),(208874,296827,7,'producer','producer',NULL),(208874,818657,8,'producer','producer',NULL),(208874,881703,9,'producer','producer',NULL),(209095,9454271,10,'writer','screenplay by',NULL),(209095,1116,1,'actor',NULL,'[\"Leprechaun\"]'),(209095,1384,2,'actor',NULL,'[\"Mack Daddy\"]'),(209095,599719,3,'actor',NULL,'[\"Postmaster P.\"]'),(209095,620558,4,'actor',NULL,'[\"Stray Bullet\"]'),(209095,818237,5,'director',NULL,NULL),(209095,428751,6,'writer','based upon characters created by',NULL),(209095,1113287,7,'writer','story by',NULL),(209095,1113283,8,'writer','story by',NULL),(209095,400277,9,'writer','screenplay by',NULL),(209144,2892,10,'cinematographer','director of photography',NULL),(209144,1602,1,'actor',NULL,'[\"Leonard\"]'),(209144,5251,2,'actress',NULL,'[\"Natalie\"]'),(209144,1592,3,'actor',NULL,'[\"Teddy\"]'),(209144,95478,4,'actor',NULL,'[\"Burt\"]'),(209144,634240,5,'director',NULL,NULL),(209144,634300,6,'writer','short story \"Memento Mori\"',NULL),(209144,865189,7,'producer','producer',NULL),(209144,865297,8,'producer','producer',NULL),(209144,432382,9,'composer',NULL,NULL),(209163,3032,10,'editor',NULL,NULL),(209163,409,1,'actor',NULL,'[\"Rick O\'Connell\"]'),(209163,1838,2,'actress',NULL,'[\"Evelyn Carnahan\",\"Nefertiri\"]'),(209163,1314,3,'actor',NULL,'[\"Jonathan\"]'),(209163,903677,4,'actor',NULL,'[\"Imhotep\"]'),(209163,814085,5,'director',NULL,NULL),(209163,199733,6,'producer','producer',NULL),(209163,413208,7,'producer','producer',NULL),(209163,6293,8,'composer',NULL,NULL),(209163,939,9,'cinematographer',NULL,NULL),(209189,955310,10,'editor',NULL,NULL),(209189,917660,1,'actress',NULL,'[\"Wei Minzhi\"]'),(209189,955356,2,'actor',NULL,'[\"Zhang Huike\"]'),(209189,862513,3,'actor',NULL,'[\"Village Chief\"]'),(209189,304701,4,'actor',NULL,'[\"Teacher Gao\"]'),(209189,955443,5,'director',NULL,NULL),(209189,793026,6,'writer','writer',NULL),(209189,955516,7,'producer','producer',NULL),(209189,760753,8,'composer',NULL,NULL),(209189,396290,9,'cinematographer',NULL,NULL),(209475,316774,10,'producer','producer',NULL),(209475,182,1,'actress',NULL,'[\"Mary Fiore\"]'),(209475,190,2,'actor',NULL,'[\"Steve Edison\"]'),(209475,933098,3,'actress',NULL,'[\"Fran Donolly\"]'),(209475,150362,4,'actor',NULL,'[\"Massimo\"]'),(209475,788202,5,'director',NULL,NULL),(209475,266184,6,'writer','written by',NULL),(209475,963400,7,'writer','written by',NULL),(209475,9222,8,'producer','producer',NULL),(209475,215769,9,'producer','producer',NULL),(209933,958733,10,'composer',NULL,NULL),(209933,491777,1,'actor',NULL,'[\"Galoup\"]'),(209933,836977,2,'actor',NULL,'[\"Commander Bruno Forestier\"]'),(209933,171499,3,'actor',NULL,'[\"Gilles Sentain\"]'),(209933,183675,4,'actor',NULL,'[\"Legionnaire\"]'),(209933,219136,5,'director',NULL,NULL),(209933,267288,6,'writer','writer',NULL),(209933,578479,7,'writer','story \"Billy Budd, Sailor\"',NULL),(209933,334924,8,'producer','producer',NULL),(209933,682667,9,'composer',NULL,NULL),(209958,490817,10,'cinematographer','director of photography',NULL),(209958,182,1,'actress',NULL,'[\"Catherine Deane\"]'),(209958,681,2,'actor',NULL,'[\"Peter Novak\"]'),(209958,352,3,'actor',NULL,'[\"Carl Stargher\"]'),(209958,416381,4,'actor',NULL,'[\"Edward Baines\"]'),(209958,802248,5,'director',NULL,NULL),(209958,698873,6,'writer','written by',NULL),(209958,138918,7,'producer','producer',NULL),(209958,572805,8,'producer','producer',NULL),(209958,6290,9,'composer',NULL,NULL),(210044,268685,10,'cinematographer',NULL,NULL),(210044,546,1,'actor',NULL,'[\"Charlie Gordon\"]'),(210044,5559,2,'actress',NULL,'[\"Alice Kinian\"]'),(210044,156739,3,'actor',NULL,NULL),(210044,701146,4,'actor',NULL,NULL),(210044,88121,5,'director',NULL,NULL),(210044,450797,6,'writer','novel',NULL),(210044,682196,7,'writer','teleplay',NULL),(210044,934855,8,'producer','producer',NULL),(210044,12206,9,'composer',NULL,NULL),(210070,79001,10,'cinematographer','director of photography',NULL),(210070,673932,1,'actress',NULL,'[\"Brigitte\"]'),(210070,410622,2,'actress',NULL,'[\"Ginger\"]'),(210070,501210,3,'actor',NULL,'[\"Sam\"]'),(210070,211,4,'actress',NULL,'[\"Pamela\"]'),(210070,269502,5,'director',NULL,NULL),(210070,910550,6,'writer','story',NULL),(210070,355775,7,'producer','producer',NULL),(210070,387541,8,'producer','producer',NULL),(210070,793232,9,'composer',NULL,NULL),(210075,788640,10,'composer',NULL,NULL),(210075,735442,1,'actress',NULL,'[\"Diana Guzman\"]'),(210075,235242,2,'actor',NULL,'[\"Adrian Sturges\"]'),(210075,864222,3,'actor',NULL,'[\"Hector Soto\"]'),(210075,129538,4,'actor',NULL,'[\"Sandro Guzman\"]'),(210075,476201,5,'director',NULL,NULL),(210075,338320,6,'producer','producer',NULL),(210075,341301,7,'producer','producer',NULL),(210075,719964,8,'producer','producer',NULL),(210075,567403,9,'composer',NULL,NULL),(210299,714070,10,'editor',NULL,NULL),(210299,5216,1,'actress',NULL,'[\"Lily Penleric\"]'),(210299,362268,2,'actor',NULL,'[\"Reese Kincaid\"]'),(210299,8293427,3,'actor',NULL,'[\"Dean Arthur Pembroke\"]'),(210299,329517,4,'actor',NULL,'[\"Professor Wallace Aldrich\"]'),(210299,339245,5,'director',NULL,NULL),(210299,589194,6,'producer','producer',NULL),(210299,726538,7,'producer','producer',NULL),(210299,543779,8,'composer',NULL,NULL),(210299,2926,9,'cinematographer',NULL,NULL),(210358,523881,10,'cinematographer','director of photography',NULL),(210358,335,1,'actress',NULL,'[\"Dr. Elaine Keener (segments \\\"This is Dr. Keener\\\" and \\\"Fantasies about Rebecca\\\")\"]'),(210358,139,2,'actress',NULL,'[\"Carol Faber (segment \\\"Love Waits For Kathy\\\")\"]'),(210358,1222,3,'actress',NULL,'[\"Christine Taylor (segments \\\"Goodnight Lilly, Goodnight Christine\\\" and \\\"This is Dr. Keener\\\")\"]'),(210358,834,4,'actress',NULL,'[\"Rose (segments \\\"Someone For Rose\\\" and \\\"Fantasies about Rebecca\\\")\"]'),(210358,6554,5,'director',NULL,NULL),(210358,816,6,'producer','producer',NULL),(210358,512461,7,'producer','producer',NULL),(210358,644749,8,'producer','producer',NULL),(210358,790481,9,'composer',NULL,NULL),(210567,5934,10,'cinematographer',NULL,NULL),(210567,378,1,'actress',NULL,'[\"Mona\"]'),(210567,4893,2,'actress',NULL,'[\"Vanessa\"]'),(210567,725,3,'actress',NULL,'[\"Ruby\"]'),(210567,678,4,'actress',NULL,'[\"Verna Chickle\"]'),(210567,398,5,'director',NULL,NULL),(210567,7075,6,'writer','written by',NULL),(210567,78224,7,'producer','producer',NULL),(210567,705205,8,'producer','producer',NULL),(210567,2227,9,'composer',NULL,NULL),(210616,31697,10,'editor',NULL,NULL),(210616,776040,1,'actress',NULL,'[\"Jody\"]'),(210616,830059,2,'actor',NULL,'[\"Cooper\"]'),(210616,705492,3,'actor',NULL,'[\"Charlie\"]'),(210616,242266,4,'actress',NULL,'[\"Audition Teacher\"]'),(210616,405336,5,'director',NULL,NULL),(210616,374084,6,'writer','written by',NULL),(210616,548257,7,'producer','producer',NULL),(210616,6070,8,'composer',NULL,NULL),(210616,801005,9,'cinematographer',NULL,NULL),(210945,3542,10,'cinematographer','director of photography',NULL),(210945,243,1,'actor',NULL,'[\"Coach Herman Boone\"]'),(210945,1599,2,'actor',NULL,'[\"Coach Bill Yoast\"]'),(210945,365445,3,'actor',NULL,'[\"Julius Campbell\"]'),(210945,403652,4,'actor',NULL,'[\"Gerry Bertier\"]'),(210945,945026,5,'director',NULL,NULL),(210945,397322,6,'writer','written by',NULL),(210945,988,7,'producer','producer',NULL),(210945,648288,8,'producer','producer',NULL),(210945,704909,9,'composer',NULL,NULL),(211181,925276,10,'writer','screenplay',NULL),(211181,335,1,'actress',NULL,'[\"Cruella de Vil\"]'),(211181,367,2,'actor',NULL,'[\"Jean-Pierre Le Pelt\"]'),(211181,344435,3,'actor',NULL,'[\"Kevin Sheperd\"]'),(211181,262521,4,'actress',NULL,'[\"Chloe Simon\"]'),(211181,510674,5,'director',NULL,NULL),(211181,807977,6,'writer','novel \"The One Hundred and One Dalmatians\"',NULL),(211181,118649,7,'writer','story',NULL),(211181,716391,8,'writer','story',NULL),(211181,879318,9,'writer','screenplay',NULL),(211443,880979,10,'cinematographer','director of photography',NULL),(211443,387987,1,'actor',NULL,'[\"Jason Voorhees\",\"Uber Jason\"]'),(211443,230693,2,'actress',NULL,'[\"Rowan\"]'),(211443,311473,3,'actor',NULL,'[\"Johnson (Soldier #1)\"]'),(211443,343,4,'actor',NULL,'[\"Dr. Wimmer\"]'),(211443,410494,5,'director',NULL,NULL),(211443,267805,6,'writer','written by',NULL),(211443,566699,7,'writer','based on characters created by',NULL),(211443,192409,8,'producer','producer',NULL),(211443,6185,9,'composer',NULL,NULL),(211915,773685,10,'editor',NULL,NULL),(211915,851582,1,'actress',NULL,'[\"Amélie Poulain\"]'),(211915,440913,2,'actor',NULL,'[\"Nino Quincampoix\"]'),(211915,749363,3,'actor',NULL,'[\"Raphaël Poulain\"]'),(211915,186677,4,'actress',NULL,'[\"Amandine Poulain\"]'),(211915,466,5,'director',NULL,NULL),(211915,491011,6,'writer','scenario',NULL),(211915,652226,7,'producer','producer',NULL),(211915,862961,8,'composer',NULL,NULL),(211915,216632,9,'cinematographer',NULL,NULL),(211933,6251,10,'composer',NULL,NULL),(211933,159789,1,'actor',NULL,'[\"Clay Beresford\"]'),(211933,4695,2,'actress',NULL,'[\"Sam Lockwood\"]'),(211933,5024,3,'actor',NULL,'[\"Dr. Jack Harper\"]'),(211933,565,4,'actress',NULL,'[\"Lilith Beresford\"]'),(211933,1703612,5,'director',NULL,NULL),(211933,459852,6,'producer','producer',NULL),(211933,6597,7,'producer','producer',NULL),(211933,1770,8,'producer','producer',NULL),(211933,895903,9,'producer','producer',NULL),(212338,742772,10,'producer','producer',NULL),(212338,1774,1,'actor',NULL,'[\"Greg Focker\"]'),(212338,134,2,'actor',NULL,'[\"Jack Byrnes\"]'),(212338,1632,3,'actress',NULL,'[\"Pam Byrnes\"]'),(212338,1100,4,'actress',NULL,'[\"Dina Byrnes\"]'),(212338,5366,5,'director',NULL,NULL),(212338,322839,6,'writer',NULL,NULL),(212338,164898,7,'writer',NULL,NULL),(212338,381272,8,'writer','screenplay',NULL),(212338,357453,9,'writer','screenplay',NULL),(212346,4088,10,'cinematographer','director of photography',NULL),(212346,113,1,'actress',NULL,'[\"Gracie Hart\"]'),(212346,323,2,'actor',NULL,'[\"Victor Melling\"]'),(212346,973,3,'actor',NULL,'[\"Eric Matthews\"]'),(212346,298,4,'actress',NULL,'[\"Kathy Morningside\"]'),(212346,677953,5,'director',NULL,NULL),(212346,492909,6,'writer','written by',NULL),(212346,974301,7,'writer','written by',NULL),(212346,524095,8,'writer','written by',NULL),(212346,790481,9,'composer',NULL,NULL),(212604,2318,10,'cinematographer',NULL,NULL),(212604,280245,1,'actor',NULL,'[\"Earl Coates\"]'),(212604,609845,2,'actor',NULL,'[\"Tully Coates Jr.\"]'),(212604,123313,3,'actor',NULL,'[\"Tully Russell Coates Sr.\"]'),(212604,629855,4,'actress',NULL,'[\"Ella Smalley\"]'),(212604,83656,5,'director',NULL,NULL),(212604,236966,6,'writer',NULL,NULL),(212604,573826,7,'writer','story',NULL),(212604,839064,8,'producer','producer',NULL),(212604,953616,9,'composer',NULL,NULL),(212712,504897,1,'actor',NULL,'[\"Chow Mo-wan\"]'),(212712,955471,2,'actress',NULL,'[\"Bai Ling\"]'),(212712,910947,3,'actress',NULL,'[\"Wang Jing-wen\",\"Android\"]'),(212712,84,4,'actress',NULL,'[\"Su Li-zhen\"]'),(212712,939182,5,'director',NULL,NULL),(212712,880839,6,'composer',NULL,NULL),(212712,236313,7,'cinematographer',NULL,NULL),(212712,477095,8,'cinematographer',NULL,NULL),(212712,151858,9,'editor',NULL,NULL),(212720,2354,10,'composer',NULL,NULL),(212720,5286,1,'actor',NULL,'[\"David\"]'),(212720,179,2,'actor',NULL,'[\"Gigolo Joe\"]'),(212720,640323,3,'actress',NULL,'[\"Monica Swinton\"]'),(212720,730168,4,'actor',NULL,'[\"Henry Swinton\"]'),(212720,229,5,'director',NULL,NULL),(212720,735,6,'writer','short story \"Supertoys Last All Summer Long\"',NULL),(212720,914668,7,'writer','screen story',NULL),(212720,193268,8,'producer','producer',NULL),(212720,5086,9,'producer','producer',NULL),(212826,606682,10,'editor',NULL,NULL),(212826,655761,1,'actress',NULL,'[\"Maya\"]'),(212826,4778,2,'actor',NULL,'[\"Sam Shapiro\"]'),(212826,1990,3,'actress',NULL,'[\"Rosa\"]'),(212826,569079,4,'actor',NULL,'[\"Bert\"]'),(212826,516360,5,'director',NULL,NULL),(212826,491956,6,'writer','screenplay',NULL),(212826,639780,7,'producer','producer',NULL),(212826,6070,8,'composer',NULL,NULL),(212826,10096,9,'cinematographer',NULL,NULL),(212985,776646,10,'producer','producer',NULL),(212985,164,1,'actor',NULL,'[\"Hannibal Lecter\"]'),(212985,194,2,'actress',NULL,'[\"Clarice Starling\"]'),(212985,198,3,'actor',NULL,'[\"Mason Verger\"]'),(212985,501,4,'actor',NULL,'[\"Paul Krendler\"]'),(212985,631,5,'director',NULL,NULL),(212985,365383,6,'writer','based upon the novel by',NULL),(212985,519,7,'writer','screenplay by',NULL),(212985,1873,8,'writer','screenplay by',NULL),(212985,209569,9,'producer','producer',NULL),(213121,354011,10,'composer',NULL,NULL),(213121,49313,1,'actress',NULL,'[\"Mooney Pottie\"]'),(213121,818166,2,'actress',NULL,'[\"Lou Benzoa\"]'),(213121,909763,3,'actress',NULL,'[\"Cookie Pottie\"]'),(213121,132757,4,'actor',NULL,'[\"Frances Pottie\"]'),(213121,610496,5,'director',NULL,NULL),(213121,279314,6,'writer','screenplay',NULL),(213121,442786,7,'producer','producer',NULL),(213121,785012,8,'producer','producer',NULL),(213121,71777,9,'composer',NULL,NULL),(213149,59242,10,'editor','film editor',NULL),(213149,255,1,'actor',NULL,'[\"Rafe McCawley\"]'),(213149,295,2,'actress',NULL,'[\"Evelyn Johnson\"]'),(213149,1326,3,'actor',NULL,'[\"Danny Walker\"]'),(213149,5406,4,'actor',NULL,'[\"Billy\"]'),(213149,881,5,'director',NULL,NULL),(213149,908824,6,'writer','written by',NULL),(213149,988,7,'producer','producer',NULL),(213149,1877,8,'composer',NULL,NULL),(213149,6701,9,'cinematographer','director of photography',NULL),(213203,379747,10,'writer','written by',NULL),(213203,4815,1,'actress',NULL,'[\"Chuckie Finster\"]'),(213203,197354,2,'actress',NULL,'[\"Tommy Pickles\"]'),(213203,153719,3,'actress',NULL,'[\"Angelica Pickles\"]'),(213203,152839,4,'actress',NULL,'[\"Dil Pickles\"]'),(213203,75010,5,'director',NULL,NULL),(213203,218450,6,'director',NULL,NULL),(213203,826425,7,'writer','written by',NULL),(213203,918955,8,'writer','written by',NULL),(213203,330856,9,'writer','written by',NULL),(213847,5759,10,'cinematographer',NULL,NULL),(213847,899,1,'actress',NULL,'[\"Malèna Scordia\"]'),(213847,837868,2,'actor',NULL,'[\"Renato Amoroso\"]'),(213847,270119,3,'actor',NULL,'[\"Renato\'s Father\"]'),(213847,681218,4,'actress',NULL,'[\"Renato\'s Mother\"]'),(213847,868153,5,'director',NULL,NULL),(213847,898812,6,'writer','original story',NULL),(213847,76555,7,'producer','producer',NULL),(213847,5544,8,'producer','producer',NULL),(213847,1553,9,'composer',NULL,NULL),(214529,6020,10,'composer',NULL,NULL),(214529,521,1,'actress',NULL,'[\"Lisa\",\"Belphégor\"]'),(214529,785664,2,'actor',NULL,'[\"Verlac\"]'),(214529,225899,3,'actor',NULL,'[\"Martin\"]'),(214529,1046,4,'actress',NULL,'[\"Glenda Spender\"]'),(214529,758933,5,'director',NULL,NULL),(214529,77220,6,'writer','novel \"Belphégor\"',NULL),(214529,860019,7,'writer',NULL,NULL),(214529,867374,8,'writer',NULL,NULL),(214529,764963,9,'producer','producer',NULL),(214641,571574,10,'composer',NULL,NULL),(214641,557733,1,'actor',NULL,'[\"Geoff\"]'),(214641,2246,2,'actor',NULL,'[\"Osric\",\"Old Bowen\"]'),(214641,276738,3,'actress',NULL,'[\"Lian\"]'),(214641,8218149,4,'actor',NULL,'[\"Mansel\"]'),(214641,498991,5,'director',NULL,NULL),(214641,425957,6,'writer','based on characters created by',NULL),(214641,688279,7,'writer','based on characters created by',NULL),(214641,328912,8,'writer','written by',NULL),(214641,209581,9,'producer','producer',NULL),(215033,1182244,10,'actor',NULL,'[\"Gnanasekharan\"]'),(215033,659250,1,'actress',NULL,'[\"Vimala\"]'),(215033,233347,2,'actor',NULL,'[\"Manickampillai; the father of Chandrasekaran & Gnanasekaran & Gunasekaran & Kalyani\"]'),(215033,304262,3,'actor',NULL,'[\"Gunasekharan\"]'),(215033,3510864,4,'actress',NULL,'[\"Kantha\"]'),(215033,471487,5,'director',NULL,NULL),(215033,659549,6,'director',NULL,NULL),(215033,440271,7,'writer',NULL,NULL),(215033,577149,8,'producer','producer',NULL),(215033,1885643,9,'cinematographer',NULL,NULL),(215364,397928,10,'actor',NULL,'[\"Roger Hamley\"]'),(215364,768,1,'actress',NULL,'[\"Mrs. Gibson\"]'),(215364,905311,2,'actress',NULL,'[\"Molly\"]'),(215364,665473,3,'actor',NULL,'[\"Mr. Gibson\"]'),(215364,369954,4,'actress',NULL,'[\"Cynthia\"]'),(215364,277525,5,'actress',NULL,'[\"Miss Phoebe\"]'),(215364,283409,6,'actress',NULL,'[\"Miss Browning\"]'),(215364,571515,7,'actress',NULL,'[\"Maria\",\"Maid\"]'),(215364,322513,8,'actor',NULL,'[\"Mr. Preston\"]'),(215364,390903,9,'actor',NULL,'[\"Osborne Hamley\"]'),(215545,447504,10,'production_designer',NULL,NULL),(215545,1834,1,'actor',NULL,'[\"Pierre Delacroix\"]'),(215545,323174,2,'actor',NULL,'[\"Manray\",\"Mantan\"]'),(215545,586,3,'actress',NULL,'[\"Sloan Hopkins\"]'),(215545,1650,4,'actor',NULL,'[\"Dunwitty\"]'),(215545,490,5,'director',NULL,NULL),(215545,453091,6,'producer','producer',NULL),(215545,5966,7,'composer',NULL,NULL),(215545,475578,8,'cinematographer',NULL,NULL),(215545,689498,9,'editor',NULL,NULL),(215575,617588,1,'actor',NULL,NULL),(215664,617588,1,'actor',NULL,NULL),(215737,6440362,1,'actress',NULL,'[\"Comet\"]'),(215737,9335353,2,'actor',NULL,'[\"The Class Supervisor\"]'),(215737,617588,3,'actor',NULL,'[\"Professor of Astronomy\"]'),(215737,4491570,4,'composer',NULL,NULL),(215750,92384,10,'editor',NULL,NULL),(215750,179,1,'actor',NULL,'[\"Vassili\"]'),(215750,438,2,'actor',NULL,'[\"Major König\"]'),(215750,1212,3,'actor',NULL,'[\"Commisar Danilov\"]'),(215750,1838,4,'actress',NULL,'[\"Tania Chernova\"]'),(215750,269,5,'director',NULL,NULL),(215750,323708,6,'writer','written by',NULL),(215750,774528,7,'producer','producer',NULL),(215750,35,8,'composer',NULL,NULL),(215750,5709,9,'cinematographer',NULL,NULL),(215817,617588,1,'actor',NULL,NULL),(216016,617588,1,'actor',NULL,NULL),(216216,704909,10,'composer',NULL,NULL),(216216,216,1,'actor',NULL,'[\"Adam Gibson\"]'),(216216,1650,2,'actor',NULL,'[\"Hank Morgan\"]'),(216216,1282,3,'actor',NULL,'[\"Michael Drucker\"]'),(216216,740264,4,'actor',NULL,'[\"Robert Marshall\"]'),(216216,6854,5,'director',NULL,NULL),(216216,926727,6,'writer','written by',NULL),(216216,926729,7,'writer','written by',NULL),(216216,205727,8,'producer','producer',NULL),(216216,5219,9,'producer','producer',NULL),(217355,445992,10,'producer','producer',NULL),(217355,43662,1,'actress',NULL,'[\"Jessie\"]'),(217355,435,2,'actress',NULL,'[\"Angel\"]'),(217355,61877,3,'actress',NULL,'[\"Nico\"]'),(217355,114868,4,'actor',NULL,'[\"Bobby\"]'),(217355,705535,5,'director',NULL,NULL),(217355,513197,6,'writer','screenplay',NULL),(217355,74851,7,'producer','producer',NULL),(217355,110357,8,'producer','producer',NULL),(217355,427827,9,'producer','producer',NULL),(217505,5544,10,'producer','producer',NULL),(217505,138,1,'actor',NULL,'[\"Amsterdam Vallon\"]'),(217505,139,2,'actress',NULL,'[\"Jenny Everdeane\"]'),(217505,358,3,'actor',NULL,'[\"Bill \'The Butcher\' Cutting\"]'),(217505,980,4,'actor',NULL,'[\"Boss Tweed\"]'),(217505,217,5,'director',NULL,NULL),(217505,168379,6,'writer','story',NULL),(217505,1873,7,'writer','screenplay',NULL),(217505,518836,8,'writer','screenplay',NULL),(217505,342090,9,'producer','producer',NULL),(217869,862664,10,'editor',NULL,NULL),(217869,246,1,'actor',NULL,'[\"David Dunn\"]'),(217869,168,2,'actor',NULL,'[\"Elijah Price\"]'),(217869,705,3,'actress',NULL,'[\"Audrey Dunn\"]'),(217869,4829,4,'actor',NULL,'[\"Joseph Dunn\"]'),(217869,796117,5,'director',NULL,NULL),(217869,578814,6,'producer','producer',NULL),(217869,580303,7,'producer','producer',NULL),(217869,6133,8,'composer',NULL,NULL),(217869,785381,9,'cinematographer','director of photography',NULL),(217990,815747,10,'editor',NULL,NULL),(217990,772704,1,'actor',NULL,'[\"Alex Thompson\"]'),(217990,722647,2,'actor',NULL,'[\"Todd McLemore\"]'),(217990,192505,3,'actress',NULL,'[\"Elisa Bowers\"]'),(217990,657621,4,'actress',NULL,'[\"Delia Graci\"]'),(217990,199722,5,'director',NULL,NULL),(217990,683912,6,'writer','written by',NULL),(217990,604558,7,'producer','producer',NULL),(217990,254383,8,'composer',NULL,NULL),(217990,3413,9,'cinematographer','director of photography',NULL),(218553,442766,10,'composer',NULL,NULL),(218553,620397,1,'actress',NULL,'[\"Mai Takano\"]'),(218553,766212,2,'actress',NULL,'[\"Masami Kurahashi\"]'),(218553,297906,3,'actress',NULL,'[\"Kanae Sawaguchi\"]'),(218553,463201,4,'actor',NULL,'[\"Kawajiri Ishi\"]'),(218553,620378,5,'director',NULL,NULL),(218553,847126,6,'writer','screenplay',NULL),(218553,840626,7,'writer','novel \"Ringu\"',NULL),(218553,406772,8,'producer','producer',NULL),(218553,410975,9,'producer','producer',NULL),(218616,643912,10,'cinematographer',NULL,NULL),(218616,185819,1,'actor',NULL,'[\"Ray\"]'),(218616,607375,2,'actor',NULL,'[\"Pete\"]'),(218616,531808,3,'actress',NULL,'[\"Laura\"]'),(218616,334150,4,'actress',NULL,'[\"Mandy\"]'),(218616,148116,5,'director',NULL,NULL),(218616,671856,6,'writer',NULL,NULL),(218616,110357,7,'producer','producer',NULL),(218616,427827,8,'producer','producer',NULL),(218616,426514,9,'composer',NULL,NULL),(218817,204485,10,'composer',NULL,NULL),(218817,202,1,'actor',NULL,'[\"Milo Hoffman\"]'),(218817,209,2,'actor',NULL,'[\"Gary Winston\"]'),(218817,337,3,'actress',NULL,'[\"Lisa Calighan\"]'),(218817,1231,4,'actress',NULL,'[\"Alice Poulson\"]'),(218817,398185,5,'director',NULL,NULL),(218817,291442,6,'writer','written by',NULL),(218817,11688,7,'producer','producer',NULL),(218817,630090,8,'producer','producer',NULL),(218817,917059,9,'producer','producer',NULL),(218839,308488,10,'production_designer',NULL,NULL),(218839,929609,1,'actor',NULL,'[\"Buck Laughlin\"]'),(218839,506405,2,'actor',NULL,'[\"Gerry Fleck\"]'),(218839,1573,3,'actress',NULL,'[\"Cookie Fleck\"]'),(218839,177639,4,'actress',NULL,'[\"Sherri Ann Cabot\"]'),(218839,1302,5,'director',NULL,NULL),(218839,614420,6,'producer','producer',NULL),(218839,889350,7,'composer',NULL,NULL),(218839,769656,8,'cinematographer','director of photography',NULL),(218839,500371,9,'editor',NULL,NULL),(218922,5966,10,'composer',NULL,NULL),(218922,104,1,'actor',NULL,'[\"Luis Antonio Vargas\"]'),(218922,1401,2,'actress',NULL,'[\"Julia Russell\",\"Bonny Castle\"]'),(218922,5048,3,'actor',NULL,'[\"Billy\",\"Walter Downs\",\"Mephisto\"]'),(218922,860233,4,'actor',NULL,'[\"Alan Jordan\"]'),(218922,188165,5,'director',NULL,NULL),(218922,941280,6,'writer','novel \"Waltz Into Darkness\"',NULL),(218922,224145,7,'producer','producer',NULL),(218922,347443,8,'producer','producer',NULL),(218922,498718,9,'producer','producer',NULL),(218967,724843,10,'producer','producer',NULL),(218967,115,1,'actor',NULL,'[\"Jack Campbell\"]'),(218967,495,2,'actress',NULL,'[\"Kate Reynolds\"]'),(218967,332,3,'actor',NULL,'[\"Cash\"]'),(218967,5315,4,'actor',NULL,'[\"Arnie\"]'),(218967,711840,5,'director',NULL,NULL),(218967,224606,6,'writer','written by',NULL),(218967,919289,7,'writer','written by',NULL),(218967,8953,8,'producer','producer',NULL),(218967,525059,9,'producer','producer',NULL),(219400,948267,10,'producer','producer',NULL),(219400,671,1,'actor',NULL,'[\"Lonnie Earl Dodd\"]'),(219400,234,2,'actress',NULL,'[\"Candy Kirkendall\"]'),(219400,664,3,'actor',NULL,'[\"Roy Kirkendall\"]'),(219400,1670,4,'actress',NULL,'[\"Darlene Dodd\"]'),(219400,103655,5,'director',NULL,NULL),(219400,109785,6,'writer','written by',NULL),(219400,269226,7,'writer','written by',NULL),(219400,617147,8,'producer','producer',NULL),(219400,7011,9,'producer','producer',NULL),(219699,742347,10,'producer','producer',NULL),(219699,949,1,'actress',NULL,'[\"Annie Wilson\"]'),(219699,5017,2,'actress',NULL,'[\"Jessica King\"]'),(219699,206,3,'actor',NULL,'[\"Donnie Barksdale\"]'),(219699,610,4,'actor',NULL,'[\"Buddy Cole\"]'),(219699,600,5,'director',NULL,NULL),(219699,671,6,'writer','written by',NULL),(219699,258370,7,'writer','written by',NULL),(219699,413208,8,'producer','producer',NULL),(219699,524342,9,'producer','producer',NULL),(219822,6251,10,'composer',NULL,NULL),(219822,209,1,'actor',NULL,'[\"Dr. Nathan Bronfman\"]'),(219822,99,2,'actress',NULL,'[\"Lila Jute\"]'),(219822,406975,3,'actor',NULL,'[\"Puff\"]'),(219822,535850,4,'actor',NULL,'[\"Police Detective\"]'),(219822,327273,5,'director',NULL,NULL),(219822,442109,6,'writer','written by',NULL),(219822,106835,7,'producer','producer',NULL),(219822,394046,8,'producer','producer',NULL),(219822,5069,9,'producer','producer',NULL),(219964,1347,1,'archive_footage',NULL,NULL),(219964,874787,2,'director',NULL,NULL),(220099,5679,10,'cinematographer','director of photography: Simex Digital Studios',NULL),(220099,191906,1,'actor',NULL,'[\"Tigger\",\"Winnie the Pooh\"]'),(220099,394251,2,'actor',NULL,'[\"Roo\"]'),(220099,763052,3,'actor',NULL,'[\"Rabbit\"]'),(220099,275835,4,'actor',NULL,'[\"Piglet\"]'),(220099,266255,5,'director',NULL,NULL),(220099,349966,6,'writer','story',NULL),(220099,590316,7,'writer','characters',NULL),(220099,8859,8,'producer','producer',NULL),(220099,4581,9,'composer',NULL,NULL),(221027,1459,10,'producer','producer',NULL),(221027,136,1,'actor',NULL,'[\"George Jung\"]'),(221027,4851,2,'actress',NULL,'[\"Mirtha Jung\"]'),(221027,4376,3,'actress',NULL,'[\"Barbara Buckley\"]'),(221027,341737,4,'actress',NULL,'[\"Ermine Jung\"]'),(221027,1130,5,'director',NULL,NULL),(221027,692051,6,'writer','book',NULL),(221027,571346,7,'writer','screenplay',NULL),(221027,1024,8,'writer','screenplay',NULL),(221027,470727,9,'producer','producer',NULL),(221218,808483,10,'editor',NULL,NULL),(221218,178,1,'actress',NULL,'[\"Erin Glass\"]'),(221218,5447,2,'actress',NULL,'[\"Ruby Baker\"]'),(221218,1745,3,'actor',NULL,'[\"Terrence \'Terry\' Glass\"]'),(221218,1136,4,'actor',NULL,'[\"Begleiter\"]'),(221218,755261,5,'director',NULL,NULL),(221218,834338,6,'writer','written by',NULL),(221218,605775,7,'producer','producer',NULL),(221218,2366,8,'composer',NULL,NULL),(221218,457886,9,'cinematographer',NULL,NULL),(221637,165573,1,'actress',NULL,'[\"Erica\"]'),(221637,114615,2,'actor',NULL,'[\"Michael\"]'),(221637,248913,3,'actress',NULL,'[\"McGregor\"]'),(221637,791462,4,'actor',NULL,'[\"Chan\"]'),(221637,3888,5,'director',NULL,NULL),(221637,377674,6,'composer',NULL,NULL),(221637,189243,7,'cinematographer',NULL,NULL),(221637,428325,8,'cinematographer',NULL,NULL),(221637,775036,9,'editor',NULL,NULL),(221889,339856,10,'editor',NULL,NULL),(221889,1838,1,'actress',NULL,'[\"Petula\"]'),(221889,528462,2,'actress',NULL,'[\"Dorothy\"]'),(221889,322513,3,'actor',NULL,'[\"Tony\"]'),(221889,195438,4,'actor',NULL,'[\"Train Guard\"]'),(221889,247123,5,'director',NULL,NULL),(221889,232049,6,'writer','screenplay',NULL),(221889,910807,7,'producer','producer',NULL),(221889,325050,8,'composer',NULL,NULL),(221889,919816,9,'cinematographer','director of photography',NULL),(222137,525910,1,'director',NULL,NULL),(222137,525908,2,'producer','producer',NULL),(222368,1261676,10,'production_designer',NULL,NULL),(222368,897401,1,'actress',NULL,'[\"Claudia\"]'),(222368,253216,2,'actor',NULL,'[\"Massera\"]'),(222368,880554,3,'actor',NULL,'[\"Quiroga\"]'),(222368,786477,4,'actor',NULL,'[\"Franco\"]'),(222368,49371,5,'director',NULL,NULL),(222368,132793,6,'writer','story',NULL),(222368,143352,7,'composer',NULL,NULL),(222368,319885,8,'cinematographer',NULL,NULL),(222368,209303,9,'editor',NULL,NULL),(223341,349785,1,'actress',NULL,NULL),(223341,4905952,2,'actress',NULL,NULL),(223341,4906549,3,'actress',NULL,'[\"The Cabbage Fairy\"]'),(223755,617588,1,'actor',NULL,NULL),(223897,720715,10,'producer','producer',NULL),(223897,228,1,'actor',NULL,'[\"Eugene Simonet\"]'),(223897,5286,2,'actor',NULL,'[\"Trevor McKinney\"]'),(223897,166,3,'actress',NULL,'[\"Arlene McKinney\"]'),(223897,1542,4,'actor',NULL,'[\"Chris Chandler\"]'),(223897,1460,5,'director',NULL,NULL),(223897,404954,6,'writer','book',NULL),(223897,228908,7,'writer','screenplay',NULL),(223897,9222,8,'producer','producer',NULL),(223897,506597,9,'producer','producer',NULL),(224005,767266,10,'editor',NULL,NULL),(224005,617674,1,'actress',NULL,'[\"Alicia Estrada\"]'),(224005,891830,2,'actor',NULL,'[\"Dr. César Arellano\"]'),(224005,695048,3,'actress',NULL,'[\"Monse castillo\"]'),(224005,645327,4,'actor',NULL,'[\"Doctor Alvar\"]'),(224005,210322,5,'director',NULL,NULL),(224005,524003,6,'writer','novel',NULL),(224005,36052,7,'producer','producer',NULL),(224005,617686,8,'composer',NULL,NULL),(224005,651051,9,'cinematographer',NULL,NULL),(224240,194945,1,'actress',NULL,'[\"Seductive Woman Who Appears on the Cross\"]'),(224240,617588,2,'actor',NULL,'[\"St. Anthony\"]'),(224412,832126,10,'composer',NULL,NULL),(224412,86806,1,'actress',NULL,'[\"Betty Bennett\"]'),(224412,674,2,'actress',NULL,'[\"Miyeko\"]'),(224412,1151,3,'actor',NULL,'[\"Johnny Bennett\"]'),(224412,557956,4,'actor',NULL,'[\"Jim Bennett\"]'),(224412,201375,5,'director',NULL,NULL),(224412,146958,6,'writer',NULL,NULL),(224412,378157,7,'writer',NULL,NULL),(224412,378178,8,'writer',NULL,NULL),(224412,642195,9,'producer','producer',NULL),(227051,840547,10,'editor',NULL,NULL),(227051,1007364,1,'actress',NULL,'[\"Masako\"]'),(227051,949105,2,'actor',NULL,'[\"Honda\"]'),(227051,1009441,3,'actress',NULL,'[\"Jun\"]'),(227051,993607,4,'actress',NULL,'[\"Omitsu\"]'),(227051,849040,5,'director',NULL,NULL),(227051,1374328,6,'writer',NULL,NULL),(227051,411734,7,'producer','producer',NULL),(227051,757144,8,'composer',NULL,NULL),(227051,353715,9,'cinematographer',NULL,NULL),(227200,4679,10,'composer',NULL,NULL),(227200,859604,1,'actor',NULL,'[\"Brad Kennedy\"]'),(227200,421709,2,'actor',NULL,'[\"Bob Johnson\"]'),(227200,2134538,3,'actor',NULL,'[\"Skip Loomis\"]'),(227200,1651129,4,'actor',NULL,'[\"Scott\"]'),(227200,906481,5,'director',NULL,NULL),(227200,503600,6,'writer','story',NULL),(227200,1649647,7,'writer','screenplay',NULL),(227200,210089,8,'producer','producer',NULL),(227200,646267,9,'producer','producer',NULL),(227438,617588,1,'actor',NULL,'[\"The Doctor\"]'),(227445,287811,10,'producer','producer',NULL),(227445,134,1,'actor',NULL,'[\"Nick\"]'),(227445,1570,2,'actor',NULL,'[\"Jack\",\"Brian\"]'),(227445,8,3,'actor',NULL,'[\"Max\"]'),(227445,291,4,'actress',NULL,'[\"Diane\"]'),(227445,568,5,'director',NULL,NULL),(227445,852196,6,'writer','story',NULL),(227445,758002,7,'writer','story',NULL),(227445,229644,8,'writer','screenplay',NULL),(227445,809899,9,'writer','screenplay',NULL),(227538,521233,10,'composer',NULL,NULL),(227538,891786,1,'actress',NULL,'[\"Carmen Cortez\"]'),(227538,754512,2,'actor',NULL,'[\"Juni Cortez\"]'),(227538,104,3,'actor',NULL,'[\"Gregorio Cortez\"]'),(227538,1303,4,'actress',NULL,'[\"Ingrid Cortez\"]'),(227538,1675,5,'director',NULL,NULL),(227538,42882,6,'producer','producer',NULL),(227538,2201,7,'composer',NULL,NULL),(227538,384,8,'composer',NULL,NULL),(227538,4581,9,'composer',NULL,NULL),(227984,572649,10,'producer','producer',NULL),(227984,168,1,'actor',NULL,'[\"Elmo McElroy\"]'),(227984,1015,2,'actor',NULL,'[\"Felix DeSouza\"]'),(227984,607865,3,'actress',NULL,'[\"Dakota Parker\"]'),(227984,926205,4,'actor',NULL,'[\"L.A. Highway Patrol\"]'),(227984,950553,5,'director',NULL,NULL),(227984,667770,6,'writer','written by',NULL),(227984,213433,7,'producer','producer',NULL),(227984,358877,8,'producer','producer',NULL),(227984,463325,9,'producer','producer',NULL),(228333,913150,10,'editor',NULL,NULL),(228333,449,1,'actress',NULL,'[\"Lieutenant Melanie Ballard\"]'),(228333,1084,2,'actor',NULL,'[\"Desolation Williams\"]'),(228333,427,3,'actress',NULL,'[\"Commander Helena Braddock\"]'),(228333,5458,4,'actor',NULL,'[\"Sgt Jericho Butler\"]'),(228333,118,5,'director',NULL,NULL),(228333,837917,6,'writer','written by',NULL),(228333,455253,7,'producer','producer',NULL),(228333,31045,8,'composer',NULL,NULL),(228333,452123,9,'cinematographer',NULL,NULL),(229024,617588,1,'actor',NULL,'[\"Gulliver\"]'),(229024,842605,2,'writer','novel \"Gulliver\'s Travels\"',NULL),(229217,600903,1,'self',NULL,'[\"Self\"]'),(229217,5690,2,'director',NULL,NULL),(229217,374658,3,'cinematographer',NULL,NULL),(229235,5690,1,'director',NULL,NULL),(229235,374658,2,'director',NULL,NULL),(229340,489437,10,'composer',NULL,NULL),(229340,732,1,'actor',NULL,'[\"Louis Cropa\"]'),(229340,50737,2,'actor',NULL,'[\"Chef Udo Cropa\"]'),(229340,745232,3,'actor',NULL,'[\"Gary Lieberman\"]'),(229340,94471,4,'actor',NULL,'[\"Enrico Coventie\"]'),(229340,320588,5,'director',NULL,NULL),(229340,789486,6,'writer','written by',NULL),(229340,435559,7,'writer','written by',NULL),(229340,226544,8,'producer','producer',NULL),(229340,337287,9,'producer','producer',NULL),(229440,7141,10,'composer',NULL,NULL),(229440,1729,1,'actor',NULL,'[\"Joseph\"]'),(229440,878155,2,'actor',NULL,'[\"Tony\"]'),(229440,1664,3,'actor',NULL,'[\"Dr. Gregory\"]'),(229440,103208,4,'actor',NULL,'[\"Pinhead\"]'),(229440,220600,5,'director',NULL,NULL),(229440,850,6,'writer','based on characters created by',NULL),(229440,90199,7,'writer','written by',NULL),(229440,96176,8,'producer','producer',NULL),(229440,812373,9,'producer','producer',NULL),(230011,951392,10,'writer','story by',NULL),(230011,150,1,'actor',NULL,'[\"Milo\"]'),(230011,1815,2,'actor',NULL,'[\"Cookie\"]'),(230011,123553,3,'actor',NULL,'[\"Moliere\"]'),(230011,160004,4,'actress',NULL,'[\"Helga\"]'),(230011,873779,5,'director',NULL,NULL),(230011,936374,6,'director',NULL,NULL),(230011,614742,7,'writer','screenplay by',NULL),(230011,923736,8,'writer','story by',NULL),(230011,7233,9,'writer','story by',NULL),(230183,459299,10,'actor',NULL,'[\"Mr. Jemelík\"]'),(230183,418440,1,'actress',NULL,'[\"Helena Zachová\"]'),(230183,837054,2,'actor',NULL,'[\"Jan Zach\"]'),(230183,719051,3,'actress',NULL,'[\"Jana Zachová\"]'),(230183,392714,4,'actress',NULL,'[\"Kveta Laskonová\"]'),(230183,625080,5,'director',NULL,NULL),(230183,998046,6,'producer','producer',NULL),(230183,419522,7,'actor',NULL,'[\"Pavel Kittnar\"]'),(230183,615757,8,'actress',NULL,'[\"Jirina Krcková\"]'),(230183,418441,9,'actress',NULL,'[\"Jarmila Knerová\"]'),(230600,749593,10,'editor',NULL,NULL),(230600,173,1,'actress',NULL,'[\"Grace\"]'),(230600,1172,2,'actor',NULL,'[\"Charles\"]'),(230600,1217,3,'actress',NULL,'[\"Mrs. Mills\"]'),(230600,542635,4,'actress',NULL,'[\"Anne\"]'),(230600,24622,5,'director',NULL,NULL),(230600,100559,6,'producer','producer',NULL),(230600,191109,7,'producer','producer',NULL),(230600,839331,8,'producer','producer',NULL),(230600,13761,9,'cinematographer',NULL,NULL),(230746,807236,1,'director',NULL,NULL),(230838,720715,10,'producer','producer',NULL),(230838,206,1,'actor',NULL,'[\"Nelson Moss\"]'),(230838,234,2,'actress',NULL,'[\"Sara Deever\"]'),(230838,5042,3,'actor',NULL,'[\"Chaz Watley\"]'),(230838,314524,4,'actor',NULL,'[\"Vince Holland\"]'),(230838,640466,5,'director',NULL,NULL),(230838,712029,6,'writer',NULL,NULL),(230838,951049,7,'writer','story',NULL),(230838,900820,8,'writer','story',NULL),(230838,440990,9,'producer','producer',NULL),(231844,342176,10,'producer','producer',NULL),(231844,861862,1,'actor',NULL,'[\"Laurent\"]'),(231844,346306,2,'actor',NULL,'[\"Cédric\"]'),(231844,201319,3,'actress',NULL,'[\"Emma\"]'),(231844,895530,4,'actress',NULL,'[\"Carole\"]'),(231844,269168,5,'director',NULL,NULL),(231844,488019,6,'writer','head writer',NULL),(231844,667468,7,'writer','adaptation',NULL),(231844,44391,8,'producer','producer',NULL),(231844,133763,9,'producer','producer',NULL),(232500,605775,10,'producer','producer',NULL),(232500,4874,1,'actor',NULL,'[\"Dominic Toretto\"]'),(232500,908094,2,'actor',NULL,'[\"Brian O\'Conner\"]'),(232500,735442,3,'actress',NULL,'[\"Letty\"]'),(232500,108287,4,'actress',NULL,'[\"Mia Toretto\"]'),(232500,3418,5,'director',NULL,NULL),(232500,508446,6,'writer','magazine article \"Racer X\"',NULL),(232500,860155,7,'writer','screen story',NULL),(232500,74980,8,'writer','screenplay',NULL),(232500,43742,9,'writer','screenplay',NULL),(232821,687575,1,'actor',NULL,NULL),(232821,851953,2,'actress',NULL,'[\"Tilly\"]'),(232821,924613,3,'actress',NULL,'[\"Sally\"]'),(232821,280432,4,'director',NULL,NULL),(232821,378408,5,'producer','producer',NULL),(233298,1047603,10,'writer','characters created by: Joker',NULL),(233298,295115,1,'actor',NULL,'[\"Terry McGinnis\",\"Batman\"]'),(233298,434,2,'actor',NULL,'[\"The Joker\"]'),(233298,175834,3,'actor',NULL,'[\"Bruce Wayne\"]'),(233298,4990,4,'actress',NULL,'[\"Barbara Gordon\"]'),(233298,311435,5,'director',NULL,NULL),(233298,4170,6,'writer','character created by: Batman',NULL),(233298,227704,7,'writer','story by',NULL),(233298,613460,8,'writer','story by',NULL),(233298,863622,9,'writer','story by',NULL),(233657,570483,10,'composer',NULL,NULL),(233657,1418,1,'actor',NULL,'[\"Mason Rand\"]'),(233657,633318,2,'actress',NULL,'[\"Dr. KC Czaban\"]'),(233657,641939,3,'actor',NULL,'[\"Allen Lysander\"]'),(233657,859921,4,'actor',NULL,'[\"Captain Tower\"]'),(233657,168439,5,'director',NULL,NULL),(233657,1027640,6,'writer','screenplay',NULL),(233657,744985,7,'writer','screenplay',NULL),(233657,63470,8,'producer','producer',NULL),(233657,645949,9,'producer','producer',NULL),(233841,443737,10,'production_designer',NULL,NULL),(233841,8416,1,'actor',NULL,'[\"Lateef\"]'),(233841,46969,2,'actress',NULL,'[\"Baran\"]'),(233841,619870,3,'actor',NULL,'[\"Memar\"]'),(233841,536954,4,'actor',NULL,'[\"Bric-A-Brac Trader\"]'),(233841,6498,5,'director',NULL,NULL),(233841,619564,6,'producer','producer',NULL),(233841,679074,7,'composer',NULL,NULL),(233841,205828,8,'cinematographer',NULL,NULL),(233841,368359,9,'editor',NULL,NULL),(234215,821205,10,'editor',NULL,NULL),(234215,206,1,'actor',NULL,'[\"Neo\"]'),(234215,401,2,'actor',NULL,'[\"Morpheus\"]'),(234215,5251,3,'actress',NULL,'[\"Trinity\"]'),(234215,915989,4,'actor',NULL,'[\"Agent Smith\"]'),(234215,905154,5,'director',NULL,NULL),(234215,905152,6,'director',NULL,NULL),(234215,5428,7,'producer','producer',NULL),(234215,204485,8,'composer',NULL,NULL),(234215,691084,9,'cinematographer','director of photography',NULL),(234520,454371,1,'self',NULL,'[\"Self\"]'),(234520,525910,2,'director',NULL,NULL),(235133,3374408,10,'producer','producer',NULL),(235133,847138,1,'actor',NULL,'[\"Kazuyuki Asakawa\"]'),(235133,594231,2,'actress',NULL,'[\"Sadako Yamamura\"]'),(235133,846184,3,'actress',NULL,'[\"Shizuka Asakawa\"]'),(235133,357260,4,'actress',NULL,'[\"Mai Takano\"]'),(235133,847659,5,'director',NULL,NULL),(235133,407332,6,'writer','teleplay',NULL),(235133,3464673,7,'writer','teleplay',NULL),(235133,840626,8,'writer','novel \"Ringu\"',NULL),(235133,3465034,9,'producer','producer',NULL),(235154,820277,10,'actor',NULL,'[\"Old Man\"]'),(235154,648678,1,'actress',NULL,'[\"Jim\"]'),(235154,681104,2,'actor',NULL,'[\"Kanchit\"]'),(235154,659927,3,'actress',NULL,'[\"Tum\"]'),(235154,1399205,4,'actress',NULL,'[\"Pen\"]'),(235154,711579,5,'director',NULL,NULL),(235154,150553,6,'cinematographer',NULL,NULL),(235154,950843,7,'editor',NULL,NULL),(235154,1709882,8,'actor',NULL,'[\"Shop owner\"]'),(235154,1398632,9,'actor',NULL,NULL),(235198,256862,10,'composer',NULL,NULL),(235198,410903,1,'actor',NULL,'[\"Shigeharu Aoyama\"]'),(235198,793402,2,'actress',NULL,'[\"Asami Yamazaki\"]'),(235198,768017,3,'actor',NULL,'[\"Shigehiko Aoyama\"]'),(235198,475165,4,'actor',NULL,'[\"Yasuhisa Yoshikawa\"]'),(235198,586281,5,'director',NULL,NULL),(235198,613487,6,'writer','novel',NULL),(235198,854976,7,'writer','screenplay',NULL),(235198,298043,8,'producer','producer',NULL),(235198,840500,9,'producer','producer',NULL),(235327,3786,1,'self',NULL,'[\"Self\"]'),(235327,787204,2,'composer',NULL,NULL),(235327,630656,3,'editor',NULL,NULL),(235712,1654405,10,'producer','producer',NULL),(235712,620090,1,'actress',NULL,'[\"Sadako Yamamura\"]'),(235712,848948,2,'actor',NULL,'[\"Hiroshi Tôyama\"]'),(235712,39591,3,'actress',NULL,'[\"Etsuko Tachihara\"]'),(235712,906711,4,'actor',NULL,'[\"Yûsaku Shigemori\"]'),(235712,875468,5,'director',NULL,NULL),(235712,847126,6,'writer','screenplay',NULL),(235712,840626,7,'writer','novel \"Bâsudei\"',NULL),(235712,406772,8,'producer','producer',NULL),(235712,619084,9,'producer','producer',NULL),(236027,470929,10,'cinematographer',NULL,NULL),(236027,683587,1,'actor',NULL,'[\"Torkild\"]'),(236027,860947,2,'actor',NULL,'[\"Peter\"]'),(236027,586568,3,'actor',NULL,'[\"Arne\"]'),(236027,509263,4,'actor',NULL,'[\"Stefan\"]'),(236027,421314,5,'director',NULL,NULL),(236027,536385,6,'producer','producer',NULL),(236027,536410,7,'producer','producer',NULL),(236027,6065,8,'composer',NULL,NULL),(236027,433967,9,'composer',NULL,NULL),(236348,220533,10,'producer','producer',NULL),(236348,337,1,'actress',NULL,'[\"Josie McCoy\"]'),(236348,5346,2,'actress',NULL,'[\"Melody Valentine\"]'),(236348,206257,3,'actress',NULL,'[\"Valerie Brown\"]'),(236348,542759,4,'actor',NULL,'[\"Alan M.\"]'),(236348,253323,5,'director',NULL,NULL),(236348,438226,6,'director',NULL,NULL),(236348,326406,7,'writer','characters',NULL),(236348,213642,8,'writer','characters',NULL),(236348,326402,9,'writer','characters',NULL),(236493,3011,10,'cinematographer',NULL,NULL),(236493,93,1,'actor',NULL,'[\"Jerry Welbach\"]'),(236493,210,2,'actress',NULL,'[\"Samantha Barzel\"]'),(236493,1254,3,'actor',NULL,'[\"Leroy\"]'),(236493,799777,4,'actor',NULL,'[\"Ted Slocum\"]'),(236493,893659,5,'director',NULL,NULL),(236493,437249,6,'writer','written by',NULL),(236493,49689,7,'producer','producer',NULL),(236493,4744,8,'producer','producer',NULL),(236493,6293,9,'composer',NULL,NULL),(237534,491565,10,'cinematographer',NULL,NULL),(237534,494078,1,'actor',NULL,'[\"Grégoire de Fronsac\"]'),(237534,1092,2,'actor',NULL,'[\"Mani\"]'),(237534,753737,3,'actor',NULL,'[\"Thomas d\'Apcher\"]'),(237534,1993,4,'actor',NULL,'[\"Jean-François\"]'),(237534,304521,5,'director',NULL,NULL),(237534,127562,6,'writer','original scenario',NULL),(237534,334926,7,'producer','producer',NULL),(237534,352820,8,'producer','producer',NULL),(237534,6173,9,'composer',NULL,NULL),(237765,149218,10,'actor',NULL,'[\"Old Man Owl\"]'),(237765,1198568,1,'actor',NULL,'[\"Sonic the Hedgehog\"]'),(237765,273925,2,'actress',NULL,'[\"Miles \'Tails\' Prower\"]'),(237765,936315,3,'actor',NULL,'[\"Knuckles the Echidna\"]'),(237765,623605,4,'actor',NULL,'[\"Dr. Robotnik\",\"President\"]'),(237765,619913,5,'writer','co-creator',NULL),(237765,1398795,6,'writer','co-creator',NULL),(237765,1432739,7,'writer','co-creator',NULL),(237765,81644,8,'actress',NULL,'[\"Sara\"]'),(237765,132285,9,'actor',NULL,'[\"Old Man Owl\"]'),(238380,738196,10,'editor',NULL,NULL),(238380,288,1,'actor',NULL,'[\"John Preston\"]'),(238380,293,2,'actor',NULL,'[\"Partridge\"]'),(238380,1833,3,'actress',NULL,'[\"Mary O\'Brien\"]'),(238380,4875,4,'actor',NULL,'[\"Brandt\"]'),(238380,934483,5,'director',NULL,NULL),(238380,957,6,'producer','producer',NULL),(238380,287946,7,'producer','producer',NULL),(238380,46004,8,'composer',NULL,NULL),(238380,66244,9,'cinematographer',NULL,NULL),(238546,204901,10,'composer',NULL,NULL),(238546,4691,1,'actress',NULL,'[\"Akasha\"]'),(238546,870204,2,'actor',NULL,'[\"Lestat\"]'),(238546,603413,3,'actress',NULL,'[\"Jesse\"]'),(238546,1641,4,'actor',NULL,'[\"Marius\"]'),(238546,753382,5,'director',NULL,NULL),(238546,723351,6,'writer','novels \"The Vampire Chronicles\"',NULL),(238546,8053,7,'writer','screenplay',NULL),(238546,678104,8,'writer','screenplay',NULL),(238546,764822,9,'producer','producer',NULL),(238924,498834,10,'producer','producer',NULL),(238924,1085,1,'actor',NULL,'[\"Tim Sullivan\"]'),(238924,540441,2,'actress',NULL,'[\"Margie Flynn\"]'),(238924,386472,3,'actor',NULL,'[\"Francis Doyle\"]'),(238924,352,4,'actor',NULL,'[\"Father Casey\"]'),(238924,136775,5,'director',NULL,NULL),(238924,297626,6,'writer','book',NULL),(238924,830969,7,'writer','screenplay',NULL),(238924,678104,8,'writer','screenplay',NULL),(238924,149,9,'producer','producer',NULL),(238936,1166460,10,'composer',NULL,NULL),(238936,451321,1,'actor',NULL,'[\"Devdas Mukherji\"]'),(238936,706787,2,'actress',NULL,'[\"Parvati \'Paro\'\"]'),(238936,2043,3,'actress',NULL,'[\"Chandramukhi\"]'),(238936,6763,4,'actor',NULL,'[\"Chunnilal\"]'),(238936,80220,5,'director',NULL,NULL),(238936,154158,6,'writer','based on the novel by',NULL),(238936,1165501,7,'writer','screenplay',NULL),(238936,787423,8,'producer','producer',NULL),(238936,200930,9,'composer',NULL,NULL),(240119,1835194,10,'composer',NULL,NULL),(240119,437816,1,'actress',NULL,'[\"Tomie Kawakami\"]'),(240119,620115,2,'actress',NULL,'[\"Tsukiko Izumisawa\"]'),(240119,235345,3,'actress',NULL,'[\"Dr. Hosono\"]'),(240119,846630,4,'actor',NULL,'[\"Detective Harada\"]'),(240119,645231,5,'director',NULL,NULL),(240119,411702,6,'writer','comic',NULL),(240119,44465,7,'producer','producer',NULL),(240119,648726,8,'producer','producer',NULL),(240119,793689,9,'producer','producer',NULL),(240200,638365,10,'cinematographer','director of photography',NULL),(240200,712908,1,'actress',NULL,'[\"Kalyani\"]'),(240200,1303433,2,'actor',NULL,'[\"Narayan\"]'),(240200,84443,3,'actress',NULL,'[\"Shakuntala\"]'),(240200,1084553,4,'actress',NULL,'[\"Chuyia\"]'),(240200,576548,5,'director',NULL,NULL),(240200,440604,6,'writer','dialogue',NULL),(240200,357810,7,'producer','producer',NULL),(240200,2217,8,'composer',NULL,NULL),(240200,6246,9,'composer',NULL,NULL),(240419,608187,1,'actress',NULL,'[\"Tali\"]'),(240419,96559,2,'actress',NULL,'[\"Mecha\"]'),(240419,12033,3,'actor',NULL,'[\"Gregorio\"]'),(240419,49559,4,'actress',NULL,'[\"Verónica\"]'),(240419,551506,5,'director',NULL,NULL),(240419,822711,6,'producer','producer',NULL),(240419,170130,7,'cinematographer',NULL,NULL),(240419,723250,8,'editor',NULL,NULL),(240419,644034,9,'production_designer',NULL,NULL),(240462,628056,10,'composer',NULL,NULL),(240462,552,1,'actor',NULL,'[\"Dr. John Dolittle\"]'),(240462,147825,2,'actor',NULL,'[\"Zoo Bear #1\"]'),(240462,933723,3,'actress',NULL,'[\"Lisa Dolittle\"]'),(240462,712368,4,'actress',NULL,'[\"Charisse Dolittle\"]'),(240462,139867,5,'director',NULL,NULL),(240462,517452,6,'writer','Doctor Dolittle stories',NULL),(240462,505648,7,'writer','written by',NULL),(240462,204862,8,'producer','producer',NULL),(240462,801972,9,'producer','producer',NULL),(240515,410419,10,'cinematographer','director of photography',NULL),(240515,338381,1,'actor',NULL,'[\"Gord Brody\"]'),(240515,1800,2,'actor',NULL,'[\"Jim Brody\"]'),(240515,4846,3,'actress',NULL,'[\"Betty\"]'),(240515,858776,4,'actor',NULL,'[\"Freddy Brody\"]'),(240515,367761,5,'writer','written by',NULL),(240515,108368,6,'producer','producer',NULL),(240515,487505,7,'producer','producer',NULL),(240515,516056,8,'producer','producer',NULL),(240515,801117,9,'composer',NULL,NULL),(240684,195705,10,'writer','additional screenplay material',NULL),(240684,152839,1,'actress',NULL,'[\"Melody\"]'),(240684,140946,2,'actress',NULL,'[\"Morgana\"]'),(240684,72533,3,'actress',NULL,'[\"Ariel\"]'),(240684,942787,4,'actor',NULL,'[\"Sebastian\"]'),(240684,436851,5,'director',NULL,NULL),(240684,807531,6,'director','co-director',NULL),(240684,817585,7,'director','co-director',NULL),(240684,26671,8,'writer','screenplay',NULL),(240684,558721,9,'writer','screenplay',NULL),(240772,341372,10,'writer','screenplay',NULL),(240772,123,1,'actor',NULL,'[\"Danny Ocean\"]'),(240772,93,2,'actor',NULL,'[\"Rusty Ryan\"]'),(240772,210,3,'actress',NULL,'[\"Tess Ocean\"]'),(240772,354,4,'actor',NULL,'[\"Linus\"]'),(240772,1752,5,'director',NULL,NULL),(240772,425138,6,'writer',NULL,NULL),(240772,751207,7,'writer',NULL,NULL),(240772,113689,8,'writer',NULL,NULL),(240772,496468,9,'writer',NULL,NULL),(240890,6293,10,'composer',NULL,NULL),(240890,131,1,'actor',NULL,'[\"Jonathan Trager\"]'),(240890,295,2,'actress',NULL,'[\"Sara Thomas\"]'),(240890,5315,3,'actor',NULL,'[\"Dean Kansky\"]'),(240890,5256,4,'actress',NULL,'[\"Halley Buchanan\"]'),(240890,155093,5,'director',NULL,NULL),(240890,458884,6,'writer','written by',NULL),(240890,9222,7,'producer','producer',NULL),(240890,276353,8,'producer','producer',NULL),(240890,506597,9,'producer','producer',NULL),(241073,158763,1,'actress',NULL,'[\"Yoon Jae-yi\"]'),(241073,453589,2,'actress',NULL,'[\"Lim Ji-oh\"]'),(241073,453609,3,'actress',NULL,NULL),(241073,1323287,4,'actor',NULL,'[\"Math teacher\"]'),(241073,661882,5,'director',NULL,NULL),(241073,408328,6,'writer','writer',NULL),(241073,497010,7,'producer','producer',NULL),(241073,600672,8,'composer',NULL,NULL),(241073,357230,9,'editor',NULL,NULL),(241266,5690,1,'producer','producer',NULL),(241266,374658,2,'cinematographer',NULL,NULL),(241303,390970,10,'producer','producer',NULL),(241303,300,1,'actress',NULL,'[\"Vianne\"]'),(241303,136,2,'actor',NULL,'[\"Roux\"]'),(241303,1132,3,'actress',NULL,'[\"Armande Voizin\"]'),(241303,547,4,'actor',NULL,'[\"Comte de Reynaud\"]'),(241303,2120,5,'director',NULL,NULL),(241303,364862,6,'writer','novel',NULL),(241303,414608,7,'writer','screenplay',NULL),(241303,113360,8,'producer','producer',NULL),(241303,325455,9,'producer','producer',NULL),(241373,5690,1,'actor',NULL,NULL),(241373,374658,2,'producer','producer',NULL),(241392,241988,1,'actor',NULL,NULL),(241392,5690,2,'director',NULL,NULL),(241392,374658,3,'director',NULL,NULL),(241393,241988,1,'actor',NULL,NULL),(241393,5690,2,'director',NULL,NULL),(241393,374658,3,'director',NULL,NULL),(241394,222884,1,'actor',NULL,NULL),(241394,241988,2,'actor',NULL,NULL),(241394,5690,3,'director',NULL,NULL),(241394,374658,4,'director',NULL,NULL),(241446,5690,1,'director',NULL,NULL),(241446,374658,2,'cinematographer',NULL,NULL),(241527,5868,10,'cinematographer','director of photography',NULL),(241527,705356,1,'actor',NULL,'[\"Harry Potter\"]'),(241527,342488,2,'actor',NULL,'[\"Ron Weasley\"]'),(241527,1321,3,'actor',NULL,'[\"Albus Dumbledore\"]'),(241527,1749,4,'actress',NULL,'[\"Professor McGonagall\"]'),(241527,1060,5,'director',NULL,NULL),(241527,746830,6,'writer','novel',NULL),(241527,460141,7,'writer','screenplay',NULL),(241527,382268,8,'producer','producer',NULL),(241527,2354,9,'composer',NULL,NULL),(241715,5690,1,'director',NULL,NULL),(241715,374658,2,'director',NULL,NULL),(241735,5690,1,'director',NULL,NULL),(241735,374658,2,'director',NULL,NULL),(241763,5690,1,'director',NULL,NULL),(241763,374658,2,'producer','producer',NULL),(242148,5690,1,'director',NULL,NULL),(242148,374658,2,'cinematographer',NULL,NULL),(242423,723573,10,'producer','producer',NULL),(242423,5110,1,'actor',NULL,'[\"Jesse\"]'),(242423,5405,2,'actor',NULL,'[\"Chester\"]'),(242423,4950,3,'actress',NULL,'[\"Wanda\"]'),(242423,5448,4,'actress',NULL,'[\"Wilma\"]'),(242423,500444,5,'director',NULL,NULL),(242423,823255,6,'writer','written by',NULL),(242423,424663,7,'producer','producer',NULL),(242423,467255,8,'producer','producer',NULL),(242423,626696,9,'producer','producer',NULL),(242587,284078,10,'composer',NULL,NULL),(242587,4051,1,'actor',NULL,'[\"Big John Harrigan\"]'),(242587,200452,2,'actor',NULL,'[\"Howie Blitzer\"]'),(242587,22883,3,'actor',NULL,'[\"Marty Blitzer\"]'),(242587,443004,4,'actor',NULL,'[\"Gary\"]'),(242587,191147,5,'director',NULL,NULL),(242587,753147,6,'writer','written by',NULL),(242587,191138,7,'writer','written by',NULL),(242587,60459,8,'producer','producer',NULL),(242587,2385,9,'producer','producer',NULL),(242653,821205,10,'editor',NULL,NULL),(242653,206,1,'actor',NULL,'[\"Neo\"]'),(242653,401,2,'actor',NULL,'[\"Morpheus\"]'),(242653,5251,3,'actress',NULL,'[\"Trinity\"]'),(242653,915989,4,'actor',NULL,'[\"Agent Smith\"]'),(242653,905154,5,'director',NULL,NULL),(242653,905152,6,'director',NULL,NULL),(242653,5428,7,'producer','producer',NULL),(242653,204485,8,'composer',NULL,NULL),(242653,691084,9,'cinematographer','director of photography',NULL),(242998,361912,10,'writer','screenplay',NULL),(242998,612,1,'actress',NULL,'[\"Paige Prescott\"]'),(242998,4770,2,'actor',NULL,'[\"Adam Carr\"]'),(242998,5420,3,'actress',NULL,'[\"Kate Davies\"]'),(242998,4800,4,'actress',NULL,'[\"Dorothy Wheeler\"]'),(242998,87595,5,'director',NULL,NULL),(242998,767393,6,'writer','novel',NULL),(242998,694526,7,'writer','screenplay',NULL),(242998,694638,8,'writer','screenplay',NULL),(242998,73766,9,'writer','screenplay',NULL),(243017,318666,10,'composer',NULL,NULL),(243017,160,1,'actor',NULL,'[\"Jesse\"]'),(243017,1085025,2,'actor',NULL,'[\"Young Boy Playing Paper Game\"]'),(243017,1085951,3,'actress',NULL,'[\"Young Girl Playing Paper Game\"]'),(243017,927812,4,'actor',NULL,'[\"Main Character\"]'),(243017,500,5,'director',NULL,NULL),(243017,657921,6,'producer','producer',NULL),(243017,808819,7,'producer','producer',NULL),(243017,908323,8,'producer','producer',NULL),(243017,922279,9,'producer','producer',NULL),(243155,147080,10,'producer','producer',NULL),(243155,250,1,'actress',NULL,'[\"Bridget Jones\"]'),(243155,147,2,'actor',NULL,'[\"Mark Darcy\"]'),(243155,424,3,'actor',NULL,'[\"Daniel Cleaver\"]'),(243155,428121,4,'actress',NULL,'[\"Bridget\'s Mum\"]'),(243155,536632,5,'director',NULL,NULL),(243155,276144,6,'writer','novel',NULL),(243155,203577,7,'writer','screenplay',NULL),(243155,193485,8,'writer','screenplay',NULL),(243155,79677,9,'producer','producer',NULL),(243255,79341,10,'actress',NULL,'[\"Fernando\'s Mother\"]'),(243255,714378,1,'actress',NULL,'[\"Anaïs Pingot\"]'),(243255,581953,2,'actress',NULL,'[\"Elena Pingot\"]'),(243255,211144,3,'actor',NULL,'[\"Fernando\"]'),(243255,451376,4,'actress',NULL,'[\"Mother\"]'),(243255,106924,5,'director',NULL,NULL),(243255,2187,6,'cinematographer',NULL,NULL),(243255,154439,7,'editor',NULL,NULL),(243255,479352,8,'production_designer',NULL,NULL),(243255,332647,9,'actor',NULL,'[\"François Pingot\",\"Father\"]'),(243558,9672613,10,'composer',NULL,NULL),(243558,442808,1,'actress',NULL,'[\"Utena Tenjou\"]'),(243558,297167,2,'actress',NULL,'[\"Anthy Himemiya\"]'),(243558,32334,3,'actress',NULL,'[\"Nanami\"]'),(243558,65583,4,'actress',NULL,'[\"Anthy Himemiya\"]'),(243558,407552,5,'director',NULL,NULL),(243558,6649029,6,'writer','story',NULL),(243558,257939,7,'writer','screenplay',NULL),(243558,1046088,8,'producer','producer',NULL),(243558,2208460,9,'producer','producer',NULL),(243655,720532,10,'editor',NULL,NULL),(243655,413,1,'actress',NULL,'[\"Beth\"]'),(243655,1383,2,'actor',NULL,'[\"Henry\"]'),(243655,795290,3,'actor',NULL,'[\"Coop\"]'),(243655,603413,4,'actress',NULL,'[\"Katie\"]'),(243655,906476,5,'director',NULL,NULL),(243655,4087,6,'producer','producer',NULL),(243655,788640,7,'composer',NULL,NULL),(243655,917208,8,'composer',NULL,NULL),(243655,918422,9,'cinematographer',NULL,NULL),(243664,89182,10,'editor',NULL,NULL),(243664,668,1,'actress',NULL,'[\"Vivian Bearing\"]'),(243664,502,2,'actor',NULL,'[\"Dr. Harvey Kelekian\"]'),(243664,40586,3,'actress',NULL,'[\"Evelyn \'E.M.\' Ashford\"]'),(243664,567653,4,'actress',NULL,'[\"Susie Monahan\"]'),(243664,1566,5,'director',NULL,NULL),(243664,249682,6,'writer','play',NULL),(243664,97717,7,'producer','producer',NULL),(243664,330782,8,'composer',NULL,NULL),(243664,568974,9,'cinematographer',NULL,NULL),(243862,77944,1,'actor',NULL,'[\"Andreas\"]'),(243862,433692,2,'actress',NULL,'[\"Karen\"]'),(243862,836742,3,'actress',NULL,'[\"Olympia\"]'),(243862,304644,4,'actor',NULL,'[\"Jørgen Mortensen\"]'),(243862,771054,5,'director',NULL,NULL),(243862,82759,6,'writer','based on her novel \"Evening Class\"',NULL),(243862,850385,7,'producer','producer',NULL),(243862,423979,8,'cinematographer',NULL,NULL),(243862,864686,9,'editor',NULL,NULL),(244000,704909,10,'composer',NULL,NULL),(244000,268199,1,'actor',NULL,'[\"Jesse James\"]'),(244000,4790,2,'actor',NULL,'[\"Cole Younger\"]'),(244000,5123,3,'actress',NULL,'[\"Zerelda \'Zee\' Mimms\"]'),(244000,532683,4,'actor',NULL,'[\"Frank James\"]'),(244000,562645,5,'director',NULL,NULL),(244000,266023,6,'writer','story',NULL),(244000,736966,7,'writer','screenplay',NULL),(244000,314088,8,'producer','producer',NULL),(244000,732708,9,'producer','producer',NULL),(244244,2366,10,'composer',NULL,NULL),(244244,237,1,'actor',NULL,'[\"Gabriel\"]'),(244244,413168,2,'actor',NULL,'[\"Stanley\"]'),(244244,932,3,'actress',NULL,'[\"Ginger\"]'),(244244,332,4,'actor',NULL,'[\"Roberts\"]'),(244244,784061,5,'director',NULL,NULL),(244244,940790,6,'writer','written by',NULL),(244244,6790,7,'producer','producer',NULL),(244244,5428,8,'producer','producer',NULL),(244244,642949,9,'composer',NULL,NULL),(244283,258127,1,'self',NULL,'[\"Self\"]'),(244283,493038,2,'actor',NULL,'[\"Vagina Graduate\"]'),(244283,2062196,3,'actress',NULL,'[\"Singer\"]'),(244283,816551,4,'producer','producer',NULL),(244283,827746,5,'producer','producer',NULL),(244283,47977,6,'composer',NULL,NULL),(244283,721012,7,'cinematographer',NULL,NULL),(244283,831578,8,'cinematographer',NULL,NULL),(244283,378870,9,'editor',NULL,NULL),(244297,649839,10,'cinematographer',NULL,NULL),(244297,295484,1,'actress',NULL,'[\"Lily\"]'),(244297,2084,2,'actress',NULL,'[\"Betty\"]'),(244297,949237,3,'actor',NULL,'[\"Charlie\"]'),(244297,363,4,'actor',NULL,'[\"Joe\"]'),(244297,160952,5,'director',NULL,NULL),(244297,941453,6,'writer','written by',NULL),(244297,77269,7,'producer','producer',NULL),(244297,533826,8,'producer','executive producer',NULL),(244297,784955,9,'composer',NULL,NULL),(244316,943150,1,'actor',NULL,'[\"N.J.\"]'),(244316,157805,2,'actress',NULL,'[\"Min-Min\"]'),(244316,644521,3,'actor',NULL,'[\"Mr. Ota\"]'),(244316,497662,4,'actress',NULL,'[\"Ting-Ting\"]'),(244316,945981,5,'director',NULL,NULL),(244316,671821,6,'composer',NULL,NULL),(244316,946077,7,'cinematographer',NULL,NULL),(244316,155163,8,'editor',NULL,NULL),(244316,671812,9,'production_designer',NULL,NULL),(244353,428765,10,'actor',NULL,'[\"Uther\"]'),(244353,1378,1,'actress',NULL,'[\"Vivianne\"]'),(244353,523,2,'actress',NULL,'[\"Morgaine\"]'),(244353,260,3,'actress',NULL,'[\"Morgause\"]'),(244353,526,4,'actress',NULL,'[\"Gwenwyfar\"]'),(244353,328751,5,'actress',NULL,'[\"Igraine\"]'),(244353,41029,6,'actor',NULL,'[\"Arthur\"]'),(244353,890232,7,'actor',NULL,'[\"Lancelot\"]'),(244353,126250,8,'actor',NULL,'[\"Merlin\"]'),(244353,558548,9,'actor',NULL,'[\"Mordred\"]'),(244730,938099,10,'actress',NULL,'[\"Melba\"]'),(244730,321017,1,'actress',NULL,'[\"Kay Rivers\"]'),(244730,96294,2,'actress',NULL,'[\"Gertie\"]'),(244730,359552,3,'actress',NULL,'[\"Toni\"]'),(244730,36917,4,'actress',NULL,'[\"Joyce\"]'),(244730,221265,5,'director',NULL,NULL),(244730,4084999,6,'writer','written by',NULL),(244730,314831,7,'producer','producer',NULL),(244730,342523,8,'producer','producer',NULL),(244730,9399636,9,'editor',NULL,NULL),(244870,1069858,10,'producer','producer',NULL),(244870,368971,1,'actress',NULL,'[\"Kirie Goshima\"]'),(244870,266635,2,'actor',NULL,'[\"Shuichi Saito\"]'),(244870,755725,3,'actress',NULL,'[\"Kyoko Sekino\"]'),(244870,793781,4,'actress',NULL,'[\"Chie Marayama\"]'),(244870,383692,5,'director',NULL,NULL),(244870,411702,6,'writer','manga',NULL),(244870,435296,7,'writer','supervising screenwriter',NULL),(244870,633029,8,'writer',NULL,NULL),(244870,946681,9,'writer',NULL,NULL),(244970,725072,10,'cinematographer',NULL,NULL),(244970,171,1,'actress',NULL,'[\"Jane Goodale\"]'),(244970,1427,2,'actor',NULL,'[\"Ray Brown\"]'),(244970,413168,3,'actor',NULL,'[\"Eddie Alden\"]'),(244970,673,4,'actress',NULL,'[\"Liz\"]'),(244970,1282,5,'director',NULL,NULL),(244970,956376,6,'writer','novel \"Animal Husbandry\"',NULL),(244970,151358,7,'writer','screenplay',NULL),(244970,643553,8,'producer','producer',NULL),(244970,448843,9,'composer',NULL,NULL),(245046,6339,10,'composer',NULL,NULL),(245046,949,1,'actress',NULL,'[\"Charlotte Gray\"]'),(245046,281424,2,'actor',NULL,'[\"Richard Cannerly\"]'),(245046,190206,3,'actress',NULL,'[\"Daisy\"]'),(245046,1130277,4,'actress',NULL,'[\"Sally\"]'),(245046,788,5,'director',NULL,NULL),(245046,269127,6,'writer','novel',NULL),(245046,110591,7,'writer','screenplay',NULL),(245046,193501,8,'producer','producer',NULL),(245046,706002,9,'producer','producer',NULL),(245238,734117,10,'producer','producer',NULL),(245238,5305,1,'actress',NULL,'[\"Pauline \'Paulie\' Oster\"]'),(245238,664175,2,'actress',NULL,'[\"Victoria \'Tori\' Moller\"]'),(245238,59215,3,'actress',NULL,'[\"Mary \'Mouse\' Bedford\"]'),(245238,123201,4,'actress',NULL,'[\"Fay Vaughn\"]'),(245238,690794,5,'director',NULL,NULL),(245238,841634,6,'writer','novel \"The Wives of Bath\"',NULL),(245238,860352,7,'writer','screenplay',NULL),(245238,241600,8,'producer','producer',NULL),(245238,723845,9,'producer','producer',NULL),(245429,645777,10,'cinematographer',NULL,NULL),(245429,153738,1,'actress',NULL,'[\"Chihiro\"]'),(245429,687189,2,'actress',NULL,'[\"Yubaba\",\"Zeniba\"]'),(245429,997115,3,'actor',NULL,'[\"Haku\"]'),(245429,383708,4,'actress',NULL,'[\"Chihiro Ogino\",\"Sen\"]'),(245429,594503,5,'director',NULL,NULL),(245429,259689,6,'producer','producer',NULL),(245429,5124,7,'producer','producer',NULL),(245429,840699,8,'producer','producer',NULL),(245429,386749,9,'composer',NULL,NULL),(245562,742851,10,'producer','producer',NULL),(245562,115,1,'actor',NULL,'[\"Joe Enders\"]'),(245562,63440,2,'actor',NULL,'[\"Ben Yahzee\"]'),(245562,1780,3,'actor',NULL,'[\"Hjelmstad\"]'),(245562,1187,4,'actor',NULL,'[\"Chick\"]'),(245562,247,5,'director',NULL,NULL),(245562,723468,6,'writer','written by',NULL),(245562,61337,7,'writer','written by',NULL),(245562,151835,8,'producer','producer',NULL),(245562,334337,9,'producer','producer',NULL),(245574,66079,10,'production_designer',NULL,NULL),(245574,893941,1,'actress',NULL,'[\"Luisa Cortés\"]'),(245574,305558,2,'actor',NULL,'[\"Julio Zapata\"]'),(245574,319843,3,'actor',NULL,'[\"Narrator\"]'),(245574,1004635,4,'actress',NULL,'[\"Ana Morelos\"]'),(245574,190859,5,'director',NULL,NULL),(245574,190860,6,'writer','written by',NULL),(245574,998264,7,'producer','producer',NULL),(245574,523881,8,'cinematographer','director of photography',NULL),(245574,1008771,9,'editor',NULL,NULL),(245674,348181,10,'writer','additional writing',NULL),(245674,1724,1,'actor',NULL,'[\"Arthur Kriticos\"]'),(245674,2436,2,'actress',NULL,'[\"Kathy Kriticos\"]'),(245674,1110,3,'actress',NULL,'[\"Kalina Oretzia\"]'),(245674,498,4,'actor',NULL,'[\"Dennis Rafkin\"]'),(245674,65284,5,'director',NULL,NULL),(245674,925380,6,'writer','story',NULL),(245674,139605,7,'writer','screenplay',NULL),(245674,6902,8,'writer','screenplay',NULL),(245674,17305,9,'writer','screenplay',NULL),(245712,702036,10,'editor',NULL,NULL),(245712,248408,1,'actor',NULL,'[\"El Chivo\"]'),(245712,305558,2,'actor',NULL,'[\"Octavio\"]'),(245712,865949,3,'actress',NULL,'[\"Valeria\"]'),(245712,346270,4,'actor',NULL,'[\"Daniel\"]'),(245712,327944,5,'director',NULL,NULL),(245712,37247,6,'writer','written by',NULL),(245712,763395,7,'composer',NULL,NULL),(245712,6509,8,'cinematographer','director of photography',NULL),(245712,136057,9,'editor',NULL,NULL),(246278,678142,10,'editor',NULL,NULL),(246278,220183,1,'actress',NULL,'[\"Eglantine Laville\"]'),(246278,432040,2,'actor',NULL,'[\"Erwann Moenner - the psychotherapist\"]'),(246278,209136,3,'actress',NULL,'[\"Denise Laville\"]'),(246278,861862,4,'actor',NULL,'[\"Sébastien \'Seb\' Douglas\"]'),(246278,491774,5,'director',NULL,NULL),(246278,470118,6,'producer','producer',NULL),(246278,684004,7,'producer','producer',NULL),(246278,739151,8,'composer',NULL,NULL),(246278,146430,9,'cinematographer',NULL,NULL),(246460,933865,10,'producer','producer',NULL),(246460,112,1,'actor',NULL,'[\"James Bond\"]'),(246460,932,2,'actress',NULL,'[\"Jinx Johnson\"]'),(246460,683253,3,'actress',NULL,'[\"Miranda Frost\"]'),(246460,827170,4,'actor',NULL,'[\"Gustav Graves\"]'),(246460,848414,5,'director',NULL,NULL),(246460,1220,6,'writer','characters',NULL),(246460,701031,7,'writer','written by',NULL),(246460,905498,8,'writer','written by',NULL),(246460,110483,9,'producer','producer',NULL),(246464,430742,10,'producer','producer',NULL),(246464,741,1,'actor',NULL,'[\"Eliot Arnold\"]'),(246464,623,2,'actress',NULL,'[\"Anna Herk\"]'),(246464,1804,3,'actor',NULL,'[\"Arthur Herk\"]'),(246464,1744,4,'actor',NULL,'[\"Snake Dupree\"]'),(246464,1756,5,'director',NULL,NULL),(246464,57970,6,'writer','novel',NULL),(246464,709070,7,'writer','screenplay',NULL),(246464,832043,8,'writer','screenplay',NULL),(246464,414930,9,'producer','producer',NULL),(246578,692925,10,'cinematographer','director of photography',NULL),(246578,350453,1,'actor',NULL,'[\"Donnie Darko\"]'),(246578,540441,2,'actress',NULL,'[\"Gretchen Ross\"]'),(246578,1521,3,'actress',NULL,'[\"Rose Darko\"]'),(246578,651660,4,'actor',NULL,'[\"Eddie Darko\"]'),(246578,446819,5,'director',NULL,NULL),(246578,276178,6,'producer','producer',NULL),(246578,433339,7,'producer','producer',NULL),(246578,572014,8,'producer','producer',NULL),(246578,28787,9,'composer',NULL,NULL),(246592,378028,10,'editor',NULL,NULL),(246592,4778,1,'actor',NULL,'[\"Steven\"]'),(246592,170,2,'actress',NULL,'[\"Fangora\"]'),(246592,1152,3,'actress',NULL,'[\"Heidi\"]'),(246592,267812,4,'actress',NULL,'[\"Lorena\"]'),(246592,698119,5,'director',NULL,NULL),(246592,265009,6,'producer','producer',NULL),(246592,854813,7,'producer','producer',NULL),(246592,1307003,8,'composer',NULL,NULL),(246592,549966,9,'cinematographer','director of photography',NULL),(246734,1377027,10,'actor',NULL,'[\"Kanie\"]'),(246734,948901,1,'actress',NULL,'[\"Sawa\"]'),(246734,34843,2,'actor',NULL,'[\"Akai\"]'),(246734,645522,3,'actor',NULL,'[\"Oburi\"]'),(246734,5233249,4,'actor',NULL,'[\"Kanie\"]'),(246734,5233732,5,'actor',NULL,'[\"Street Kid A\"]'),(246734,5232740,6,'actress',NULL,'[\"Street Kid B\"]'),(246734,1423932,7,'actress',NULL,'[\"Sawa\"]'),(246734,880993,8,'actor',NULL,'[\"Akai\"]'),(246734,130253,9,'actor',NULL,'[\"Oburi\"]'),(246772,117538,10,'editor',NULL,NULL),(246772,311476,1,'actress',NULL,'[\"Martha Klein\"]'),(246772,283815,2,'actress',NULL,'[\"Lina Klein\"]'),(246772,144812,3,'actor',NULL,'[\"Mario\"]'),(246772,957178,4,'actor',NULL,'[\"Martha\'s Therapist\"]'),(246772,626686,5,'director',NULL,NULL),(246772,62362,6,'producer','producer',NULL),(246772,295016,7,'producer','producer',NULL),(246772,5187049,8,'composer',NULL,NULL),(246772,78139,9,'cinematographer',NULL,NULL),(246913,3140104,10,'editor',NULL,NULL),(246913,304262,1,'actor',NULL,'[\"Naradha\",\"Vidhyapathy\"]'),(246913,304261,2,'actor',NULL,'[\"Veeravallan\"]'),(246913,767800,3,'actress',NULL,'[\"Goddess Saraswathi\"]'),(246913,655803,4,'actress',NULL,'[\"Goddess Parvathi\"]'),(246913,619162,5,'director',NULL,NULL),(246913,3140495,6,'producer','producer',NULL),(246913,4479,7,'composer',NULL,NULL),(246913,1871847,8,'cinematographer',NULL,NULL),(246913,3140616,9,'editor',NULL,NULL),(247380,767089,10,'cinematographer',NULL,NULL),(247380,921608,1,'self',NULL,'[\"Self\"]'),(247380,889513,2,'self',NULL,'[\"Self\"]'),(247380,11222310,3,'self',NULL,'[\"Self\"]'),(247380,514403,4,'self',NULL,'[\"Self\"]'),(247380,116861,5,'composer',NULL,NULL),(247380,647154,6,'composer',NULL,NULL),(247380,235453,7,'cinematographer',NULL,NULL),(247380,470347,8,'cinematographer',NULL,NULL),(247380,745632,9,'cinematographer',NULL,NULL),(247425,2353,10,'composer',NULL,NULL),(247425,929489,1,'actor',NULL,'[\"Matt Fowler\"]'),(247425,651,2,'actress',NULL,'[\"Ruth Fowler\"]'),(247425,1763,3,'actor',NULL,'[\"Frank Fowler\"]'),(247425,673,4,'actress',NULL,'[\"Natalie Strout\"]'),(247425,276062,5,'director',NULL,NULL),(247425,239653,6,'writer','story \"Killings\"',NULL),(247425,275284,7,'writer','screenplay',NULL),(247425,441839,8,'producer','producer',NULL),(247425,494910,9,'producer','producer',NULL),(247638,410773,10,'producer','producer',NULL),(247638,267,1,'actress',NULL,'[\"Queen Clarisse Renaldi\"]'),(247638,4266,2,'actress',NULL,'[\"Mia Thermopolis\"]'),(247638,1185,3,'actor',NULL,'[\"Joe\"]'),(247638,525,4,'actress',NULL,'[\"Lilly Moscovitz\"]'),(247638,5190,5,'director',NULL,NULL),(247638,127690,6,'writer','novel',NULL),(247638,920859,7,'writer','screenplay',NULL),(247638,153744,8,'producer','producer',NULL),(247638,1365,9,'producer','producer',NULL),(247745,187044,10,'editor',NULL,NULL),(247745,151540,1,'actor',NULL,'[\"Thorny\"]'),(247745,373571,2,'actor',NULL,'[\"Farva\"]'),(247745,899282,3,'actor',NULL,'[\"College Boy 1\"]'),(247745,449466,4,'actor',NULL,'[\"College Boy 2\"]'),(247745,501399,5,'writer','written by',NULL),(247745,815418,6,'writer','written by',NULL),(247745,831479,7,'writer','written by',NULL),(247745,673270,8,'producer','producer',NULL),(247745,45202,9,'cinematographer',NULL,NULL),(247840,2255267,10,'writer','book',NULL),(247840,97753,1,'actor',NULL,'[\"Tanet\"]'),(247840,5849491,2,'actress',NULL,'[\"Tecla\"]'),(247840,284059,3,'actor',NULL,'[\"Cap Pelat\"]'),(247840,5884374,4,'actress',NULL,'[\"Mariona\"]'),(247840,740760,5,'director',NULL,NULL),(247840,5884393,6,'writer',NULL,NULL),(247840,5884395,7,'writer',NULL,NULL),(247840,5884394,8,'writer',NULL,NULL),(247840,2722888,9,'writer',NULL,NULL),(248126,1269730,10,'composer',NULL,NULL),(248126,451321,1,'actor',NULL,'[\"Rahul Raichand\"]'),(248126,4418,2,'actress',NULL,'[\"Anjali Sharma\"]'),(248126,821,3,'actor',NULL,'[\"Yashvardhan Raichand\"]'),(248126,4335,4,'actor',NULL,'[\"Rohan Raichand\"]'),(248126,424103,5,'director',NULL,NULL),(248126,1099235,6,'writer','screenplay',NULL),(248126,424105,7,'producer','producer',NULL),(248126,1089323,8,'composer',NULL,NULL),(248126,1269729,9,'composer',NULL,NULL),(248254,816845,10,'composer',NULL,NULL),(248254,44865,1,'actress',NULL,'[\"Christie\"]'),(248254,183668,2,'actor',NULL,'[\"Nico Pasquali\"]'),(248254,43705,3,'actor',NULL,'[\"Al Soltani\"]'),(248254,652263,4,'actor',NULL,'[\"Benny Leduc\"]'),(248254,8079,5,'writer',NULL,NULL),(248254,95878,6,'writer',NULL,NULL),(248254,396381,7,'producer','producer',NULL),(248254,417845,8,'producer','producer',NULL),(248254,823536,9,'composer',NULL,NULL),(248408,920958,10,'composer',NULL,NULL),(248408,378660,1,'actor',NULL,'[\"Abahachi\",\"Winnetouch\",\"Grauer Star (extended edition)\"]'),(248408,870780,2,'actor',NULL,'[\"Ranger\"]'),(248408,126669,3,'actress',NULL,'[\"Uschi\"]'),(248408,241694,4,'actor',NULL,'[\"Santa Maria\"]'),(248408,81305,5,'writer','written by',NULL),(248408,442622,6,'writer','written by',NULL),(248408,165326,7,'writer','written by',NULL),(248408,251536,8,'producer','producer',NULL),(248408,937877,9,'producer','producer',NULL),(248845,220149,10,'production_designer',NULL,NULL),(248845,593463,1,'actor',NULL,'[\"Hedwig\"]'),(248845,794896,2,'actress',NULL,'[\"Yitzhak\"]'),(248845,871136,3,'actor',NULL,'[\"Skszp - Band Member\"]'),(248845,514007,4,'actor',NULL,'[\"Jacek - Band Member\"]'),(248845,463025,5,'producer','producer',NULL),(248845,745746,6,'producer','producer',NULL),(248845,882927,7,'producer','producer',NULL),(248845,1054979,8,'cinematographer',NULL,NULL),(248845,546064,9,'editor',NULL,NULL),(249380,41898,10,'editor',NULL,NULL),(249380,27303,1,'actress',NULL,'[\"Manu\"]'),(249380,484189,2,'actress',NULL,'[\"Nadine\"]'),(249380,79552,3,'actress',NULL,'[\"La blonde au billard\"]'),(249380,629195,4,'actor',NULL,'[\"Le garçon au billard\"]'),(249380,221591,5,'director',NULL,NULL),(249380,179023,6,'director','co-director',NULL),(249380,323886,7,'producer','producer',NULL),(249380,417291,8,'composer',NULL,NULL),(249380,150102,9,'cinematographer',NULL,NULL),(249462,5909,10,'cinematographer','director of photography',NULL),(249462,68260,1,'actor',NULL,'[\"Billy\"]'),(249462,910278,2,'actress',NULL,'[\"Mrs. Wilkinson\"]'),(249462,382402,3,'actress',NULL,'[\"Grandma\"]'),(249462,237237,4,'actor',NULL,'[\"Tony\"]'),(249462,197636,5,'director',NULL,NULL),(249462,355822,6,'writer','written by',NULL),(249462,107231,7,'producer','producer',NULL),(249462,278128,8,'producer','producer',NULL),(249462,6339,9,'composer',NULL,NULL),(249577,612239,10,'writer','story',NULL),(249577,1414,1,'actor',NULL,'[\"Seymour S. Sassafras\",\"Antoine\",\"Col. Wellington B. Bunny\"]'),(249577,293659,2,'actor',NULL,'[\"Colonel Bunny\'s Assistant\",\"Fireman\",\"Father at Thanksgiving Table\"]'),(249577,1134445,3,'actress',NULL,'[\"Bonnie\",\"Esmeralda\",\"Shopkeeper\"]'),(249577,440487,4,'actor',NULL,'[\"Peter Cottontail\"]'),(249577,60072,5,'director',NULL,NULL),(249577,710230,6,'director',NULL,NULL),(249577,10490965,7,'writer','teleplay based on the book \"The Easter Bunny That Overslept\" by',NULL),(249577,10490966,8,'writer','teleplay based on the book \"The Easter Bunny That Overslept\" by',NULL),(249577,1600848,9,'writer','story',NULL),(250223,152031,10,'composer',NULL,NULL),(250223,367,1,'actor',NULL,'[\"Obélix\"]'),(250223,2010,2,'actor',NULL,'[\"Astérix\"]'),(250223,213354,3,'actor',NULL,'[\"Numérobis\"]'),(250223,899,4,'actress',NULL,'[\"Cléopâtre\"]'),(250223,149260,5,'director',NULL,NULL),(250223,331453,6,'writer','comic book \"Astérix et Cléopatre\"',NULL),(250223,879853,7,'writer','comic book \"Astérix et Cléopatre\"',NULL),(250223,3019865,8,'producer','producer',NULL),(250223,1945,9,'producer','producer',NULL),(250292,2320,10,'cinematographer','director of photography',NULL),(250292,270470,1,'actor',NULL,'[\"Handsome\"]'),(250292,492932,2,'actor',NULL,'[\"Victor\"]'),(250292,711805,3,'actor',NULL,'[\"Sammy\"]'),(250292,26997,4,'actress',NULL,'[\"2nd Grade Teacher\"]'),(250292,348640,5,'director',NULL,NULL),(250292,70454,6,'producer','producer',NULL),(250292,228690,7,'producer','producer',NULL),(250292,818940,8,'producer','producer',NULL),(250292,6205,9,'composer',NULL,NULL),(250440,3804804,10,'composer',NULL,NULL),(250440,31222,1,'actress',NULL,NULL),(250440,58294,2,'actor',NULL,'[\"Sam\"]'),(250440,88700,3,'actor',NULL,NULL),(250440,111275,4,'actress',NULL,NULL),(250440,228327,5,'director',NULL,NULL),(250440,601262,6,'director',NULL,NULL),(250440,251550,7,'writer','written by',NULL),(250440,630437,8,'writer','written by',NULL),(250440,658108,9,'producer','producer',NULL),(250494,686887,10,'producer','producer',NULL),(250494,702,1,'actress',NULL,'[\"Elle Woods\"]'),(250494,5561,2,'actor',NULL,'[\"Emmett\"]'),(250494,4757,3,'actress',NULL,'[\"Vivian\"]'),(250494,205127,4,'actor',NULL,'[\"Warner\"]'),(250494,525659,5,'director',NULL,NULL),(250494,113005,6,'writer','novel',NULL),(250494,527581,7,'writer','screenplay',NULL),(250494,809006,8,'writer','screenplay',NULL),(250494,452305,9,'producer','producer',NULL),(250687,5630,10,'cinematographer','director of photography',NULL),(250687,5227,1,'actor',NULL,'[\"Nick Schaffer\"]'),(250687,5442,2,'actress',NULL,'[\"Tracy Faucet\"]'),(250687,155,3,'actress',NULL,'[\"Vera Baker\"]'),(250687,896735,4,'actor',NULL,'[\"Blaine Cody\"]'),(250687,958387,5,'director',NULL,NULL),(250687,106563,6,'writer','written by',NULL),(250687,199733,7,'producer','producer',NULL),(250687,958384,8,'producer','producer',NULL),(250687,694173,9,'composer',NULL,NULL),(250739,90867,10,'editor',NULL,NULL),(250739,473,1,'actress',NULL,'[\"Sister Mary Ignatius\"]'),(250739,903,2,'actor',NULL,'[\"Gary Sullivan\"]'),(250739,5120,3,'actor',NULL,'[\"Aloysius Benheim\"]'),(250739,624,4,'actress',NULL,'[\"Angela DiMarco\"]'),(250739,108613,5,'director',NULL,NULL),(250739,243837,6,'writer','play \"Sister Mary Ignatius Explains It All For You\"',NULL),(250739,102508,7,'producer','producer',NULL),(250739,6271,8,'composer',NULL,NULL),(250739,725072,9,'cinematographer',NULL,NULL),(250797,434222,10,'composer',NULL,NULL),(250797,152,1,'actor',NULL,'[\"Edward Sumner\"]'),(250797,178,2,'actress',NULL,'[\"Connie Sumner\"]'),(250797,553648,3,'actor',NULL,'[\"Paul Martel\"]'),(250797,838059,4,'actor',NULL,'[\"Charlie Sumner\"]'),(250797,1490,5,'director',NULL,NULL),(250797,1031,6,'writer','film \"La Femme infidèle\"',NULL),(250797,765091,7,'writer','screenplay',NULL),(250797,115310,8,'writer','screenplay',NULL),(250797,113583,9,'producer','producer',NULL),(251075,575817,10,'producer','producer',NULL),(251075,141,1,'actor',NULL,'[\"Ira Kane\"]'),(251075,428963,2,'actor',NULL,'[\"Harry Block\"]'),(251075,194,3,'actress',NULL,'[\"Allison\"]'),(251075,5405,4,'actor',NULL,'[\"Wayne\"]'),(251075,718645,5,'director',NULL,NULL),(251075,415979,6,'writer','story',NULL),(251075,224606,7,'writer','screenplay',NULL),(251075,919289,8,'writer','screenplay',NULL),(251075,325175,9,'producer','producer',NULL),(251110,411229,10,'cinematographer',NULL,NULL),(251110,749081,1,'actress',NULL,'[\"Gypsy Vale\"]'),(251110,878141,2,'actor',NULL,'[\"Clive Webb\"]'),(251110,947,3,'actress',NULL,'[\"Bambi LeBleau\"]'),(251110,230335,4,'actor',NULL,'[\"Ray Vale\"]'),(251110,827171,5,'director',NULL,NULL),(251110,436228,6,'writer','story by',NULL),(251110,418809,7,'producer','producer',NULL),(251110,68877,8,'composer',NULL,NULL),(251110,214747,9,'cinematographer',NULL,NULL),(251127,824882,10,'writer','screenplay',NULL),(251127,5028,1,'actress',NULL,'[\"Andie\"]'),(251127,190,2,'actor',NULL,'[\"Ben\"]'),(251127,4965,3,'actor',NULL,'[\"Tony\"]'),(251127,1063517,4,'actress',NULL,'[\"Michelle\"]'),(251127,677953,5,'director',NULL,NULL),(251127,18630,6,'writer','book',NULL),(251127,519009,7,'writer','book',NULL),(251127,118649,8,'writer','screenplay',NULL),(251127,716391,9,'writer','screenplay',NULL),(251382,802731,10,'producer','producer',NULL),(251382,558,1,'actor',NULL,'[\"Santa Claus\"]'),(251382,248692,2,'actor',NULL,'[\"Peter Albright\"]'),(251382,1477,3,'actress',NULL,'[\"Claire Dreyer\"]'),(251382,607525,4,'actor',NULL,'[\"Zack Dreyer\"]'),(251382,213100,5,'director',NULL,NULL),(251382,290900,6,'writer','teleplay',NULL),(251382,371235,7,'writer','teleplay',NULL),(251382,388840,8,'writer','unpublished story',NULL),(251382,777412,9,'writer','unpublished story',NULL),(251474,714070,10,'editor',NULL,NULL),(251474,222,1,'actress',NULL,'[\"Janine Nielssen\"]'),(251474,427728,2,'actress',NULL,'[\"Sandy Cataldi\"]'),(251474,575198,3,'actress',NULL,'[\"Evelyn Cataldi\"]'),(251474,915382,4,'actor',NULL,'[\"Frank Cataldi\"]'),(251474,339245,5,'director',NULL,NULL),(251474,293231,6,'writer','written by',NULL),(251474,337284,7,'producer','producer',NULL),(251474,543779,8,'composer',NULL,NULL),(251474,605731,9,'cinematographer',NULL,NULL),(251736,385442,10,'editor',NULL,NULL),(251736,354085,1,'actor',NULL,'[\"Captain Spaulding\"]'),(251736,947,2,'actress',NULL,'[\"Mother Firefly\"]'),(251736,608405,3,'actor',NULL,'[\"Otis\"]'),(251736,600667,4,'actress',NULL,'[\"Baby Firefly\"]'),(251736,957772,5,'director',NULL,NULL),(251736,332308,6,'producer','producer',NULL),(251736,1353974,7,'composer',NULL,NULL),(251736,691541,8,'cinematographer','director of photography',NULL),(251736,725166,9,'cinematographer','director of photography',NULL),(252076,771834,10,'producer','producer',NULL),(252076,182,1,'actress',NULL,'[\"Marisa Ventura\"]'),(252076,146,2,'actor',NULL,'[\"Christopher Marshall\"]'),(252076,1670,3,'actress',NULL,'[\"Caroline Lane\"]'),(252076,1804,4,'actor',NULL,'[\"Jerry Siegel\"]'),(252076,911061,5,'director',NULL,NULL),(252076,455,6,'writer','story',NULL),(252076,905458,7,'writer','screenplay',NULL),(252076,326063,8,'producer','producer',NULL),(252076,771490,9,'producer','producer',NULL),(252227,934589,10,'actress',NULL,'[\"Madame Raya\"]'),(252227,46559,1,'actor',NULL,'[\"Alvin Seville\",\"Simon Seville\",\"Dave Seville\"]'),(252227,439739,2,'actress',NULL,'[\"Theodore\",\"Brittany\",\"Jeanette\"]'),(252227,5606,3,'actor',NULL,'[\"Mr. Lawrence Talbot\"]'),(252227,283565,4,'actress',NULL,'[\"Principal Milliken\"]'),(252227,145117,5,'director',NULL,NULL),(252227,523431,6,'writer','screenplay',NULL),(252227,915053,7,'composer',NULL,NULL),(252227,84663,8,'editor',NULL,NULL),(252227,667326,9,'actor',NULL,'[\"Mr. Rochelle\"]'),(252444,236313,10,'cinematographer',NULL,NULL),(252444,1082266,1,'actress',NULL,'[\"Molly Craig\"]'),(252444,1082270,2,'actress',NULL,'[\"Daisy Craig Kadibill\"]'),(252444,110,3,'actor',NULL,'[\"A.O. Neville\"]'),(252444,1081920,4,'actress',NULL,'[\"Gracie Fields\"]'),(252444,637518,5,'director',NULL,NULL),(252444,969922,6,'writer','book \"Follow the Rabbit-Proof Fence\"',NULL),(252444,647608,7,'writer','screenplay',NULL),(252444,935761,8,'producer','producer',NULL),(252444,300272,9,'composer',NULL,NULL),(252503,5696,10,'cinematographer','director of photography',NULL),(252503,432,1,'actor',NULL,'[\"Joe Moore\"]'),(252503,682071,2,'actress',NULL,'[\"Fran Moore\"]'),(252503,362,3,'actor',NULL,'[\"Mickey Bergman\"]'),(252503,5148,4,'actor',NULL,'[\"Bobby \'Bob\' Blane\"]'),(252503,519,5,'director',NULL,NULL),(252503,513165,6,'producer','producer',NULL),(252503,759627,7,'producer','producer',NULL),(252503,2989,8,'producer','producer',NULL),(252503,788640,9,'composer',NULL,NULL),(252684,935060,10,'composer',NULL,NULL),(252684,330687,1,'actor',NULL,'[\"Lyle\"]'),(252684,45209,2,'actor',NULL,'[\"Chad\"]'),(252684,221046,3,'actress',NULL,'[\"Tracey\"]'),(252684,332,4,'actor',NULL,'[\"Dr. David Monroe\"]'),(252684,577332,5,'director',NULL,NULL),(252684,915814,6,'writer','written by',NULL),(252684,6592,7,'producer','producer',NULL),(252684,368478,8,'producer','producer',NULL),(252684,513061,9,'composer',NULL,NULL),(252866,956015,10,'producer','producer',NULL),(252866,4755,1,'actor',NULL,'[\"Jim Levenstein\"]'),(252866,5405,2,'actor',NULL,'[\"Stifler\"]'),(252866,2436,3,'actress',NULL,'[\"Nadia\"]'),(252866,4989,4,'actress',NULL,'[\"Michelle Flaherty\"]'),(252866,736930,5,'director',NULL,NULL),(252866,381221,6,'writer','characters',NULL),(252866,825738,7,'writer','story',NULL),(252866,601031,8,'producer','producer',NULL),(252866,675013,9,'producer','producer',NULL),(253126,596495,10,'composer',NULL,NULL),(253126,573618,1,'actor',NULL,'[\"Mason\"]'),(253126,378,2,'actress',NULL,'[\"Shannon\"]'),(253126,5203,3,'actress',NULL,'[\"Frances\"]'),(253126,931247,4,'actor',NULL,'[\"Tremaine\"]'),(253126,809321,5,'director',NULL,NULL),(253126,298279,6,'writer','story',NULL),(253126,698095,7,'writer','story',NULL),(253126,296641,8,'producer','producer',NULL),(253126,859877,9,'producer','producer',NULL),(253474,4384,10,'composer',NULL,NULL),(253474,4778,1,'actor',NULL,'[\"Wladyslaw Szpilman\"]'),(253474,470981,2,'actor',NULL,'[\"Captain Wilm Hosenfeld\"]'),(253474,277975,3,'actor',NULL,'[\"Father\"]'),(253474,288976,4,'actress',NULL,'[\"Dorota\"]'),(253474,591,5,'director',NULL,NULL),(253474,367838,6,'writer','screenplay by',NULL),(253474,844262,7,'writer','based on the book by',NULL),(253474,71452,8,'producer','producer',NULL),(253474,764963,9,'producer','producer',NULL),(253556,83696,10,'producer','producer',NULL),(253556,190,1,'actor',NULL,'[\"Denton Van Zan\"]'),(253556,288,2,'actor',NULL,'[\"Quinn Abercromby\"]'),(253556,1713,3,'actress',NULL,'[\"Alex Jensen\"]'),(253556,124930,4,'actor',NULL,'[\"Creedy\"]'),(253556,101385,5,'director',NULL,NULL),(253556,149305,6,'writer','story',NULL),(253556,676270,7,'writer','story',NULL),(253556,338557,8,'writer','screenplay',NULL),(253556,53388,9,'producer','producer',NULL),(253595,6059,10,'composer',NULL,NULL),(253595,372,1,'actress',NULL,'[\"Lauren Marcus\"]'),(253595,1111,2,'actor',NULL,'[\"Flush\"]'),(253595,756083,3,'actor',NULL,'[\"Jon\"]'),(253595,129538,4,'actor',NULL,'[\"Guy\"]'),(253595,799003,5,'director',NULL,NULL),(253595,521059,6,'writer','additional dialogue',NULL),(253595,3945847,7,'writer','additional dialogue',NULL),(253595,372968,8,'producer','producer',NULL),(253595,901456,9,'producer','producer',NULL),(253754,453808,10,'cinematographer',NULL,NULL),(253754,1772,1,'actor',NULL,'[\"Jean-Luc Picard\"]'),(253754,408,2,'actor',NULL,'[\"William Riker\"]'),(253754,653,3,'actor',NULL,'[\"Data\",\"B-4\"]'),(253754,996,4,'actor',NULL,'[\"Geordi La Forge\"]'),(253754,829,5,'director',NULL,NULL),(253754,734472,6,'writer','television series Star Trek',NULL),(253754,517589,7,'writer','story',NULL),(253754,75834,8,'writer','story',NULL),(253754,25,9,'composer',NULL,NULL),(253867,108629,10,'editor',NULL,NULL),(253867,139,1,'actress',NULL,'[\"Christina\"]'),(253867,5048,2,'actor',NULL,'[\"Peter\"]'),(253867,775,3,'actress',NULL,'[\"Courtney\"]'),(253867,11148,4,'actress',NULL,'[\"Aunt Frida\"]'),(253867,474955,5,'director',NULL,NULL),(253867,683726,6,'writer','written by',NULL),(253867,465298,7,'producer','producer',NULL),(253867,790481,8,'composer',NULL,NULL),(253867,725072,9,'cinematographer',NULL,NULL),(254686,929889,10,'editor',NULL,NULL),(254686,1376,1,'actress',NULL,'[\"Erika Kohut\"]'),(254686,320760,2,'actress',NULL,'[\"The Mother\"]'),(254686,536095,3,'actor',NULL,'[\"Walter Klemmer\"]'),(254686,521443,4,'actress',NULL,'[\"Mrs. Schober\"]'),(254686,359734,5,'director',NULL,NULL),(254686,420548,6,'writer','novel',NULL),(254686,374002,7,'producer','producer',NULL),(254686,74141,8,'cinematographer',NULL,NULL),(254686,6933,9,'editor',NULL,NULL),(255067,529457,10,'editor',NULL,NULL),(255067,560962,1,'actress',NULL,'[\"Julia\"]'),(255067,31612,2,'actor',NULL,'[\"Charly\"]'),(255067,39707,3,'actress',NULL,'[\"Encarna\"]'),(255067,94625,4,'actor',NULL,'[\"Ricardo\"]'),(255067,407067,5,'director',NULL,NULL),(255067,346277,6,'writer',NULL,NULL),(255067,351006,7,'producer','producer',NULL),(255067,63414,8,'composer',NULL,NULL),(255067,209364,9,'cinematographer',NULL,NULL),(255094,21747,1,'actress',NULL,'[\"Arezou\"]'),(255094,541104,2,'actress',NULL,'[\"Nargess\"]'),(255094,267077,3,'actress',NULL,'[\"Mojgan - Prostitute\"]'),(255094,754850,4,'actress',NULL,'[\"Elham - Nurse\"]'),(255094,70159,5,'director',NULL,NULL),(255094,664031,6,'writer','written by',NULL),(255094,45916,7,'cinematographer',NULL,NULL),(255094,1052069,8,'production_designer',NULL,NULL),(255589,432591,1,'actress',NULL,'[\"Hee-Jin\"]'),(255589,453747,2,'actor',NULL,'[\"Hyun-Shik\"]'),(255589,128345,3,'actor',NULL,'[\"Mang-Chee\"]'),(255589,417526,4,'actor',NULL,'[\"Middle-aged man\"]'),(255589,1104118,5,'director',NULL,NULL),(255589,1030817,6,'producer','producer',NULL),(255589,421816,7,'composer',NULL,NULL),(255589,793439,8,'cinematographer',NULL,NULL),(255589,389966,9,'editor',NULL,NULL),(256009,622782,10,'composer',NULL,NULL),(256009,4650,1,'actress',NULL,'[\"Carmen\"]'),(256009,635330,2,'actor',NULL,'[\"Jacinto\"]'),(256009,527002,3,'actor',NULL,'[\"Dr. Casares\"]'),(256009,862858,4,'actor',NULL,'[\"Carlos\"]'),(256009,868219,5,'director',NULL,NULL),(256009,871121,6,'writer','written by',NULL),(256009,616393,7,'writer','written by',NULL),(256009,21948,8,'producer','producer',NULL),(256009,622838,9,'producer','producer',NULL),(256127,297931,10,'editor',NULL,NULL),(256127,297895,1,'actress',NULL,'[\"Masako Yoshimura\"]'),(256127,870317,2,'actor',NULL,'[\"Hiroyuki Nakagami\"]'),(256127,644856,3,'actress',NULL,'[\"Ritsuko Nakagami\"]'),(256127,538641,4,'actress',NULL,'[\"Yukari Yoshimura\"]'),(256127,757081,5,'director',NULL,NULL),(256127,881302,6,'writer','story by',NULL),(256127,793400,7,'producer','producer',NULL),(256127,167712,8,'composer',NULL,NULL),(256127,440407,9,'cinematographer',NULL,NULL),(256380,1132350,10,'composer',NULL,NULL),(256380,85312,1,'actor',NULL,'[\"Hal\"]'),(256380,569,2,'actress',NULL,'[\"Rosemary\"]'),(256380,4517,3,'actor',NULL,'[\"Mauricio\"]'),(256380,899995,4,'actor',NULL,'[\"Steve Shanahan\"]'),(256380,125803,5,'director',NULL,NULL),(256380,268380,6,'director',NULL,NULL),(256380,1765923,7,'writer','written by',NULL),(256380,858554,8,'producer','producer',NULL),(256380,921853,9,'producer','producer',NULL),(256415,6070,10,'composer',NULL,NULL),(256415,702,1,'actress',NULL,'[\"Melanie Smooter\"]'),(256415,1131,2,'actor',NULL,'[\"Andrew Hennings\"]'),(256415,524197,3,'actor',NULL,'[\"Jake Perry\"]'),(256415,298,4,'actress',NULL,'[\"Mayor Kate Hennings\"]'),(256415,855035,5,'director',NULL,NULL),(256415,248248,6,'writer','story',NULL),(256415,184947,7,'writer','screenplay',NULL),(256415,149563,8,'producer','producer',NULL),(256415,605775,9,'producer','producer',NULL),(256524,824240,1,'actor',NULL,'[\"Cop\"]'),(256524,95,2,'actor',NULL,'[\"CW Briggs\"]'),(256524,868110,3,'actor',NULL,'[\"Sam\"]'),(256524,775870,4,'actor',NULL,'[\"Mize\"]'),(256524,36981,5,'producer','producer',NULL),(256524,270508,6,'cinematographer','director of photography',NULL),(256524,503429,7,'editor',NULL,NULL),(256524,520288,8,'production_designer',NULL,NULL),(256692,729817,10,'producer','producer',NULL),(256692,6795,1,'actor',NULL,'[\"Raj Malhotra\"]'),(256692,611552,2,'actress',NULL,'[\"Priya Malhotra\"]'),(256692,6689,3,'actress',NULL,'[\"Madhubala\"]'),(256692,700869,4,'actor',NULL,'[\"Kailashnath Malhotra\"]'),(256692,122216,5,'director',NULL,NULL),(256692,122217,6,'director',NULL,NULL),(256692,333033,7,'writer','screenplay',NULL),(256692,796503,8,'writer','dialogue',NULL),(256692,903423,9,'writer','story',NULL),(256782,9389426,1,'actor',NULL,'[\"The Tramp & the Athlete\"]'),(256782,5690,2,'director',NULL,NULL),(257044,5573,10,'producer','producer',NULL),(257044,158,1,'actor',NULL,'[\"Michael Sullivan\"]'),(257044,388382,2,'actor',NULL,'[\"Michael Sullivan Jr.\"]'),(257044,1005576,3,'actor',NULL,'[\"Drugstore Owner\"]'),(257044,14582,4,'actor',NULL,'[\"Peter Sullivan\"]'),(257044,5222,5,'director',NULL,NULL),(257044,172523,6,'writer','graphic novel',NULL),(257044,713479,7,'writer','graphic novel',NULL),(257044,783100,8,'writer','screenplay',NULL),(257044,953124,9,'producer','producer',NULL),(257076,571346,10,'writer','screenplay',NULL),(257076,168,1,'actor',NULL,'[\"Sgt. Dan \'Hondo\' Harrelson\"]'),(257076,268199,2,'actor',NULL,'[\"Jim Street\"]'),(257076,735442,3,'actress',NULL,'[\"Chris Sanchez\"]'),(257076,5112,4,'actor',NULL,'[\"Deacon \'Deke\' Kaye\"]'),(257076,424800,5,'director',NULL,NULL),(257076,358842,6,'writer','characters',NULL),(257076,593856,7,'writer','story',NULL),(257076,572151,8,'writer','story',NULL),(257076,43742,9,'writer','screenplay',NULL),(257106,783536,10,'writer','characters',NULL),(257106,267506,1,'actress',NULL,'[\"Cindy\"]'),(257106,5541,2,'actor',NULL,'[\"Shorty\"]'),(257106,9919,3,'actor',NULL,'[\"Exorcist Party Goer\"]'),(257106,57221,4,'actor',NULL,'[\"Exorcist Party Goer\"]'),(257106,5540,5,'director',NULL,NULL),(257106,915465,6,'writer','characters',NULL),(257106,424688,7,'writer','characters',NULL),(257106,64556,8,'writer','characters',NULL),(257106,294997,9,'writer','characters',NULL),(257360,448843,10,'composer',NULL,NULL),(257360,197,1,'actor',NULL,'[\"Warren Schmidt\"]'),(257360,204706,2,'actress',NULL,'[\"Jeannie Schmidt\"]'),(257360,551,3,'actor',NULL,'[\"Randall Hertzel\"]'),(257360,870,4,'actress',NULL,'[\"Roberta Hertzel\"]'),(257360,668247,5,'director',NULL,NULL),(257360,1095201,6,'writer','novel \"About Schmidt\"',NULL),(257360,852591,7,'writer','screenplay',NULL),(257360,78698,8,'producer','producer',NULL),(257360,321228,9,'producer','producer',NULL),(257516,527261,10,'editor',NULL,NULL),(257516,207,1,'actress',NULL,'[\"Ellie\"]'),(257516,251986,2,'actor',NULL,'[\"Jimmy\"]'),(257516,5577,3,'actress',NULL,'[\"Zela\"]'),(257516,616550,4,'actress',NULL,'[\"Jenny\"]'),(257516,127,5,'director',NULL,NULL),(257516,932078,6,'writer','written by',NULL),(257516,534543,7,'producer','producer',NULL),(257516,1937,8,'composer',NULL,NULL),(257516,572123,9,'cinematographer',NULL,NULL),(257568,704909,10,'composer',NULL,NULL),(257568,26364,1,'actor',NULL,'[\"Louis Booker\"]'),(257568,5278,2,'actor',NULL,'[\"Charlie Carbone\"]'),(257568,5535,3,'actress',NULL,'[\"Jessie\"]'),(257568,686,4,'actor',NULL,'[\"Sal Maggio\"]'),(257568,573589,5,'director',NULL,NULL),(257568,82893,6,'writer','story',NULL),(257568,639434,7,'writer','story',NULL),(257568,3298,8,'writer','screenplay',NULL),(257568,988,9,'producer','producer',NULL),(257654,378408,1,'actor',NULL,'[\"Driver\"]'),(257654,1416127,2,'actor',NULL,'[\"Passenger\"]'),(257756,586969,10,'producer','producer',NULL),(257756,1029,1,'actor',NULL,'[\"Tom Kubik\",\"Sgt. Ron Chapman\"]'),(257756,151,2,'actor',NULL,'[\"Charles W. Grimes\"]'),(257756,171,3,'actress',NULL,'[\"Claire Kubik\"]'),(257756,4395,4,'actor',NULL,'[\"Lt. Terrence Embry\"]'),(257756,2083,5,'director',NULL,NULL),(257756,277511,6,'writer','novel',NULL),(257756,954693,7,'writer','screenplay',NULL),(257756,81060,8,'writer','screenplay',NULL),(257756,64106,9,'producer','producer',NULL),(257778,424710,10,'composer',NULL,NULL),(257778,4517,1,'actor',NULL,'[\"Hugo\"]'),(257778,1349,2,'actress',NULL,'[\"Madellaine\"]'),(257778,1371,3,'actor',NULL,'[\"Quasimodo\"]'),(257778,437199,4,'actor',NULL,'[\"Clopin\"]'),(257778,713214,5,'director',NULL,NULL),(257778,782964,6,'writer','screenplay by',NULL),(257778,462164,7,'writer','screenplay by',NULL),(257778,546083,8,'writer','screenplay by',NULL),(257778,401076,9,'writer','novel \"Notre Dame de Paris\"',NULL),(258000,6290,10,'composer',NULL,NULL),(258000,149,1,'actress',NULL,'[\"Meg Altman\"]'),(258000,829576,2,'actress',NULL,'[\"Sarah Altman\"]'),(258000,1845,3,'actor',NULL,'[\"Burnham\"]'),(258000,948267,4,'actor',NULL,'[\"Raoul\"]'),(258000,399,5,'director',NULL,NULL),(258000,462895,6,'writer','written by',NULL),(258000,149556,7,'producer','producer',NULL),(258000,388788,8,'producer','producer',NULL),(258000,689780,9,'producer','producer',NULL),(258068,394564,10,'producer','producer',NULL),(258068,323,1,'actor',NULL,'[\"Thomas Fowler\"]'),(258068,409,2,'actor',NULL,'[\"Alden Pyle\"]'),(258068,229498,3,'actress',NULL,'[\"Phuong\"]'),(258068,784884,4,'actor',NULL,'[\"Inspector Vigot\"]'),(258068,637518,5,'director',NULL,NULL),(258068,1294,6,'writer','novel',NULL),(258068,358960,7,'writer','screenplay',NULL),(258068,770938,8,'writer','screenplay',NULL),(258068,14300,9,'producer','producer',NULL),(258104,954087,1,'director',NULL,NULL),(258153,199,1,'actor',NULL,'[\"Viktor Taransky\"]'),(258153,1416,2,'actress',NULL,'[\"Elaine Christian\"]'),(258153,1212051,3,'actress',NULL,'[\"Simone\"]'),(258153,758436,4,'actor',NULL,'[\"Production Assistant\"]'),(258153,629272,5,'director',NULL,NULL),(258153,1980,6,'composer',NULL,NULL),(258153,5767,7,'cinematographer',NULL,NULL),(258153,747824,8,'editor',NULL,NULL),(258153,736360,9,'production_designer',NULL,NULL),(258273,98020,10,'cinematographer','director of photography',NULL),(258273,1416,1,'actress',NULL,'[\"Michelle Marks\"]'),(258273,950,2,'actress',NULL,'[\"Jane Marks\"]'),(258273,750527,3,'actor',NULL,'[\"Photographer\"]'),(258273,607865,4,'actress',NULL,'[\"Elizabeth Marks\"]'),(258273,392237,5,'director',NULL,NULL),(258273,106835,6,'producer','producer',NULL),(258273,195396,7,'producer','producer',NULL),(258273,394046,8,'producer','producer',NULL),(258273,724950,9,'composer',NULL,NULL),(258463,321621,10,'producer','producer',NULL),(258463,4376,1,'actress',NULL,'[\"Marie\"]'),(258463,354,2,'actor',NULL,'[\"Bourne\"]'),(258463,177933,3,'actor',NULL,'[\"Conklin\"]'),(258463,654110,4,'actor',NULL,'[\"The Professor\"]'),(258463,510731,5,'director',NULL,NULL),(258463,6904,6,'writer','screenplay',NULL),(258463,380819,7,'writer','screenplay',NULL),(258463,524924,8,'writer','novel',NULL),(258463,189777,9,'producer','producer',NULL),(259060,269006,10,'cinematographer',NULL,NULL),(259060,431956,1,'actor',NULL,'[\"Eric\"]'),(259060,66080,2,'actor',NULL,'[\"Ramzy\"]'),(259060,283997,3,'actress',NULL,'[\"Stéphanie Lanceval\"]'),(259060,722657,4,'actor',NULL,'[\"De Fursac\"]'),(259060,625896,5,'director',NULL,NULL),(259060,31867,6,'writer',NULL,NULL),(259060,560253,7,'writer',NULL,NULL),(259060,269992,8,'producer','line producer',NULL),(259060,889255,9,'composer',NULL,NULL),(259153,132610,10,'actress',NULL,'[\"Ellen Rimbauer\"]'),(259153,1802,1,'actress',NULL,'[\"Prof. Joyce Reardon\"]'),(259153,444832,2,'actor',NULL,'[\"Steve Rimbauer\"]'),(259153,4782,3,'actress',NULL,'[\"Annie Wheaton\"]'),(259153,241232,4,'actor',NULL,'[\"Professor Carl Miller\"]'),(259153,412382,5,'actress',NULL,'[\"Cathy Kramer\"]'),(259153,1491,6,'actress',NULL,'[\"Rachel Wheaton\"]'),(259153,743671,7,'actor',NULL,'[\"Emery Waterman\"]'),(259153,1696,8,'actor',NULL,'[\"Nick Hardaway\"]'),(259153,1798,9,'actor',NULL,'[\"Victor Kandinsky\"]'),(259288,83696,10,'producer','producer',NULL),(259288,126,1,'actor',NULL,'[\"Joe Darrow\"]'),(259288,860749,2,'actress',NULL,'[\"Emily Darrow\"]'),(259288,608012,3,'actor',NULL,'[\"Hugh Campbell\"]'),(259288,726492,4,'actor',NULL,'[\"Charlie Dickinson\"]'),(259288,1723,5,'director',NULL,NULL),(259288,131969,6,'writer','story',NULL),(259288,860513,7,'writer','story',NULL),(259288,783544,8,'writer','screenplay',NULL),(259288,53388,9,'producer','producer',NULL),(259324,2366,10,'composer',NULL,NULL),(259324,115,1,'actor',NULL,'[\"Johnny Blaze\",\"Ghost Rider\"]'),(259324,578949,2,'actress',NULL,'[\"Roxanne Simpson\"]'),(259324,385,3,'actor',NULL,'[\"Caretaker\"]'),(259324,1668265,4,'actor',NULL,'[\"Young Johnny Blaze\"]'),(259324,425756,5,'director',NULL,NULL),(259324,32696,6,'producer','producer',NULL),(259324,6894,7,'producer','producer',NULL),(259324,287811,8,'producer','producer',NULL),(259324,666999,9,'producer','producer',NULL),(259446,1158071,10,'composer',NULL,NULL),(259446,889522,1,'actress',NULL,'[\"Toula Portokalos\"]'),(259446,179173,2,'actor',NULL,'[\"Ian Miller\"]'),(259446,176073,3,'actor',NULL,'[\"Gus Portokalos\"]'),(259446,1164392,4,'actress',NULL,'[\"Toula Portokalos - Age 6\"]'),(259446,959034,5,'director',NULL,NULL),(259446,324556,6,'producer','producer',NULL),(259446,158,7,'producer','producer',NULL),(259446,1854,8,'producer','producer',NULL),(259446,417724,9,'composer',NULL,NULL),(259685,363999,10,'cinematographer',NULL,NULL),(259685,343447,1,'actor',NULL,'[\"Burt Gummer\"]'),(259685,160085,2,'actor',NULL,'[\"Desert Jack Sawyer\"]'),(259685,160930,3,'actress',NULL,'[\"Jodi Chang\"]'),(259685,829270,4,'actress',NULL,'[\"Nancy Sterngood\"]'),(259685,534681,5,'director',NULL,NULL),(259685,934093,6,'writer','story',NULL),(259685,731443,7,'writer','story',NULL),(259685,924095,8,'writer','teleplay',NULL),(259685,454349,9,'composer',NULL,NULL),(259711,1799,10,'cinematographer','director of photography',NULL),(259711,129,1,'actor',NULL,'[\"David Aames\"]'),(259711,4851,2,'actress',NULL,'[\"Sofia Serrano\"]'),(259711,139,3,'actress',NULL,'[\"Julie Gianni\"]'),(259711,621,4,'actor',NULL,'[\"McCabe\"]'),(259711,1081,5,'director',NULL,NULL),(259711,24622,6,'writer','film \"Abre Los Ojos\"',NULL),(259711,317834,7,'writer','film \"Abre Los Ojos\"',NULL),(259711,906048,8,'producer','producer',NULL),(259711,933896,9,'composer',NULL,NULL),(260191,238546,10,'actor',NULL,'[\"Zechs Merquise\"]'),(260191,383926,1,'actor',NULL,'[\"Heero Yuy\"]'),(260191,573926,2,'actor',NULL,'[\"Duo Maxwell\"]'),(260191,607516,3,'actor',NULL,'[\"Trowa Barton\"]'),(260191,841448,4,'actor',NULL,'[\"Quatre Raberba Winner\"]'),(260191,31835,5,'director',NULL,NULL),(260191,1038897,6,'writer','translation',NULL),(260191,866707,7,'writer','creator',NULL),(260191,652745,8,'composer',NULL,NULL),(260191,170809,9,'actor',NULL,'[\"Chang Wufei\"]'),(260332,538530,10,'editor',NULL,NULL),(260332,15242,1,'actress',NULL,'[\"Hava\"]'),(260332,623879,2,'actor',NULL,'[\"Hassan\"]'),(260332,803006,3,'actress',NULL,'[\"Mother\"]'),(260332,664802,4,'actress',NULL,'[\"Grandmother\"]'),(260332,581863,5,'director',NULL,NULL),(260332,538532,6,'writer',NULL,NULL),(260332,201802,7,'composer',NULL,NULL),(260332,14123,8,'cinematographer',NULL,NULL),(260332,315476,9,'cinematographer',NULL,NULL),(260866,465745,10,'producer','producer',NULL),(260866,140,1,'actor',NULL,'[\"Nathan Conrad\"]'),(260866,293,2,'actor',NULL,'[\"Patrick Koster\"]'),(260866,5261,3,'actress',NULL,'[\"Elisabeth Burrows\"]'),(260866,566084,4,'actress',NULL,'[\"Jessie Conrad\"]'),(260866,1219,5,'director',NULL,NULL),(260866,458461,6,'writer','novel',NULL),(260866,669756,7,'writer','screenplay',NULL),(260866,446761,8,'writer','screenplay',NULL),(260866,465744,9,'producer','producer',NULL),(260991,661931,10,'writer','novel \"DMZ\"',NULL),(260991,498472,1,'actress',NULL,'[\"Maj. Sophie E. Jean\"]'),(260991,496932,2,'actor',NULL,'[\"Sgt. Lee Soo-hyeok\"]'),(260991,814280,3,'actor',NULL,'[\"Sgt. Oh Kyeong-pil\"]'),(260991,453705,4,'actor',NULL,'[\"Nam Sung-shik\"]'),(260991,661791,5,'director',NULL,NULL),(260991,421825,6,'writer',NULL,NULL),(260991,453477,7,'writer',NULL,NULL),(260991,497929,8,'writer',NULL,NULL),(260991,5371819,9,'writer','comic',NULL),(261392,582939,1,'actor',NULL,'[\"Jay\"]'),(261392,3620,2,'actor',NULL,'[\"Silent Bob\"]'),(261392,255,3,'actor',NULL,'[\"Holden McNeil\",\"Ben Affleck\"]'),(261392,26879,4,'actor',NULL,'[\"Randal Graves\"]'),(261392,608714,5,'producer','producer',NULL),(261392,892868,6,'composer',NULL,NULL),(261392,26853,7,'cinematographer','director of photography',NULL),(261392,8564177,8,'production_designer',NULL,NULL),(261392,392692,9,'production_designer',NULL,NULL),(263215,60631,10,'cinematographer','director of photography',NULL),(263215,496,1,'actress',NULL,'[\"Claire Beaucage\"]'),(263215,153,2,'actress',NULL,'[\"Lily Warden\"]'),(263215,620,3,'actor',NULL,'[\"Eddie\"]'),(263215,719678,4,'actor',NULL,'[\"Laramie\"]'),(263215,567680,5,'director',NULL,NULL),(263215,155069,6,'writer','written by',NULL),(263215,337284,7,'producer','producer',NULL),(263215,487190,8,'producer','producer',NULL),(263215,368248,9,'composer',NULL,NULL),(263467,663026,10,'composer',NULL,NULL),(263467,161,1,'actress',NULL,'[\"Minerva\"]'),(263467,4816,2,'actress',NULL,'[\"Patria\"]'),(263467,1579,3,'actor',NULL,'[\"Trujillo\"]'),(263467,535502,4,'actress',NULL,'[\"Mate\"]'),(263467,57819,5,'director',NULL,NULL),(263467,959482,6,'writer','novel',NULL),(263467,458322,7,'writer','teleplay',NULL),(263467,458318,8,'writer','teleplay',NULL),(263467,736472,9,'producer','producer',NULL),(263488,3759,10,'editor',NULL,NULL),(263488,5312,1,'actress',NULL,'[\"Trish\"]'),(263488,519043,2,'actor',NULL,'[\"Darry\"]'),(263488,106534,3,'actor',NULL,'[\"The Creeper\"]'),(263488,6970,4,'actress',NULL,'[\"Jezelle Gay Hartman\"]'),(263488,759207,5,'director',NULL,NULL),(263488,527167,6,'producer','producer',NULL),(263488,649209,7,'producer','producer',NULL),(263488,759403,8,'composer',NULL,NULL),(263488,5703,9,'cinematographer','director of photography',NULL),(263725,189301,10,'cinematographer','director of photography',NULL),(263725,295484,1,'actress',NULL,'[\"Marina\"]'),(263725,931329,2,'actress',NULL,'[\"Holly\"]'),(263725,428025,3,'actress',NULL,'[\"Young Holly\"]'),(263725,691600,4,'actress',NULL,'[\"Young Marina\"]'),(263725,325128,5,'director',NULL,NULL),(263725,179851,6,'writer','screenplay',NULL),(263725,245493,7,'producer','producer',NULL),(263725,426514,8,'composer',NULL,NULL),(263725,3743052,9,'composer',NULL,NULL),(263757,6597,10,'producer','producer',NULL),(263757,5261,1,'actress',NULL,'[\"Molly\"]'),(263757,266824,2,'actress',NULL,'[\"Ray\"]'),(263757,181,3,'actress',NULL,'[\"Roma Schleine\"]'),(263757,817980,4,'actor',NULL,'[\"Neal\"]'),(263757,945026,5,'director',NULL,NULL),(263757,196932,6,'writer','screenplay',NULL),(263757,644806,7,'writer','screenplay',NULL),(263757,203183,8,'writer','screenplay',NULL),(263757,414324,9,'writer','story',NULL),(264150,788640,10,'composer',NULL,NULL),(264150,569,1,'actress',NULL,'[\"Donna Jensen\"]'),(264150,775,2,'actress',NULL,'[\"Christine Montgomery\"]'),(264150,593,3,'actress',NULL,'[\"Sherry\"]'),(264150,749263,4,'actor',NULL,'[\"Ted Stewart\"]'),(264150,853,5,'director',NULL,NULL),(264150,906998,6,'writer','written by',NULL),(264150,46367,7,'producer','producer',NULL),(264150,169256,8,'producer','producer',NULL),(264150,340522,9,'producer','producer',NULL),(264395,46004,10,'composer',NULL,NULL),(264395,237,1,'actor',NULL,'[\"Hardy\"]'),(264395,168,2,'actor',NULL,'[\"West\"]'),(264395,1567,3,'actress',NULL,'[\"Osborne\"]'),(264395,4857,4,'actor',NULL,'[\"Styles\"]'),(264395,1532,5,'director',NULL,NULL),(264395,888743,6,'writer','written by',NULL),(264395,5219,7,'producer','producer',NULL),(264395,1103781,8,'producer','producer',NULL),(264395,846333,9,'producer','producer',NULL),(264464,2354,10,'composer',NULL,NULL),(264464,138,1,'actor',NULL,'[\"Frank Abagnale Jr.\"]'),(264464,158,2,'actor',NULL,'[\"Carl Hanratty\"]'),(264464,686,3,'actor',NULL,'[\"Frank Abagnale\"]'),(264464,640,4,'actor',NULL,'[\"Roger Strong\"]'),(264464,229,5,'director',NULL,NULL),(264464,622288,6,'writer','screenplay',NULL),(264464,7646,7,'writer','book \"Catch Me If You Can: The Amazing True Story of the Youngest and Most Daring Con Man in the History of Fun and Profit\"',NULL),(264464,1127221,8,'writer','book \"Catch Me If You Can: The Amazing True Story of the Youngest and Most Daring Con Man in the History of Fun and Profit\"',NULL),(264464,662748,9,'producer','producer',NULL),(264508,840757,10,'cinematographer','director of photography',NULL),(264508,323859,1,'actor',NULL,'[\"Paul Marsh\"]'),(264508,704719,2,'actor',NULL,'[\"Ezequiel\"]'),(264508,581145,3,'actress',NULL,'[\"Bárbara\"]'),(264508,1296762,4,'actress',NULL,'[\"Uxía Cambarro\"]'),(264508,2340,5,'director',NULL,NULL),(264508,522454,6,'writer','short stories \"Dagon\" and \"The Shadow Over Innsmouth\"',NULL),(264508,660016,7,'writer','screenplay',NULL),(264508,951206,8,'producer','creative producer',NULL),(264508,143352,9,'composer',NULL,NULL),(264616,124832,10,'cinematographer','director of photography',NULL),(264616,200,1,'actor',NULL,'[\"Dad Meiks\"]'),(264616,190,2,'actor',NULL,'[\"Adam Meiks\"]'),(264616,959,3,'actor',NULL,'[\"FBI Agent Wesley Doyle\"]'),(264616,641610,4,'actor',NULL,'[\"Young Fenton\"]'),(264616,360062,5,'writer','written by',NULL),(264616,88780,6,'producer','producer',NULL),(264616,456946,7,'producer','producer',NULL),(264616,797190,8,'producer','producer',NULL),(264616,3911,9,'composer',NULL,NULL),(264689,5311,1,'actress',NULL,'[\"Alicia Browning\"]'),(264689,159776,2,'actress',NULL,'[\"Deanna Cartwright\"]'),(264689,1255,3,'actor',NULL,'[\"Det. Martin Van Zandt\"]'),(264689,768620,4,'actor',NULL,'[\"Det. Macready\"]'),(264689,752783,5,'director',NULL,NULL),(264689,650210,6,'producer','producer',NULL),(264689,788597,7,'composer',NULL,NULL),(264689,46294,8,'cinematographer',NULL,NULL),(264689,937186,9,'production_designer',NULL,NULL),(264734,325261,10,'writer','screenplay by',NULL),(264734,255,1,'actor',NULL,'[\"Joseph\"]'),(264734,434,2,'actor',NULL,'[\"Judah\"]'),(264734,378800,3,'actor',NULL,'[\"Jacob\"]'),(264734,569581,4,'actress',NULL,'[\"Rachel\"]'),(264734,708371,5,'director',NULL,NULL),(264734,480349,6,'director',NULL,NULL),(264734,98316,7,'writer','screenplay by',NULL),(264734,802027,8,'writer','screenplay by',NULL),(264734,830294,9,'writer','screenplay by',NULL),(264761,414504,10,'editor',NULL,NULL),(264761,922724,1,'actress',NULL,'[\"Jessica Stein\"]'),(264761,432013,2,'actress',NULL,'[\"Helen Cooper\"]'),(264761,271165,3,'actress',NULL,'[\"Judy Stein\"]'),(264761,1133509,4,'actress',NULL,'[\"Grandma Esther\"]'),(264761,379237,5,'director',NULL,NULL),(264761,943398,6,'producer','producer',NULL),(264761,957119,7,'producer','producer',NULL),(264761,953616,8,'composer',NULL,NULL),(264761,3394,9,'cinematographer','director of photography',NULL),(265086,5744,10,'cinematographer','director of photography',NULL),(265086,1326,1,'actor',NULL,'[\"Eversmann\"]'),(265086,191,2,'actor',NULL,'[\"Grimes\"]'),(265086,1744,3,'actor',NULL,'[\"McKnight\"]'),(265086,51509,4,'actor',NULL,'[\"Hoot\"]'),(265086,631,5,'director',NULL,NULL),(265086,100736,6,'writer','book',NULL),(265086,634307,7,'writer','screenplay',NULL),(265086,988,8,'producer','producer',NULL),(265086,1877,9,'composer',NULL,NULL),(265104,471097,10,'producer','producer',NULL),(265104,1600,1,'actor',NULL,'[\"Aaron Gray\"]'),(265104,940158,2,'actor',NULL,'[\"Steve Grant\"]'),(265104,499,3,'actress',NULL,'[\"Lucy Westenra\"]'),(265104,357200,4,'actor',NULL,'[\"Cross\"]'),(265104,643422,5,'director',NULL,NULL),(265104,300800,6,'writer','written by',NULL),(265104,282105,7,'writer','written by',NULL),(265104,121724,8,'producer','producer',NULL),(265104,465253,9,'producer','producer',NULL),(265116,512071,1,'actor',NULL,'[\"Paul\"]'),(265116,296594,2,'actress',NULL,'[\"Hélène\"]'),(265116,1021224,3,'actress',NULL,'[\"Noémie\",\"Malika\"]'),(265116,719232,4,'actress',NULL,'[\"Mamie\"]'),(265116,785684,5,'director',NULL,NULL),(265116,764963,6,'producer','producer',NULL),(265116,732199,7,'cinematographer',NULL,NULL),(265116,719265,8,'editor',NULL,NULL),(265116,8096,9,'production_designer',NULL,NULL),(265171,616859,10,'editor',NULL,NULL),(265171,5308,1,'actress',NULL,'[\"Elvira, Mistress of the Dark\",\"Lady Elura Hellsubus\"]'),(265171,639782,2,'actor',NULL,'[\"Lord Vladimere Hellsubus\"]'),(265171,770462,3,'actress',NULL,'[\"Lady Ema Hellsubus (The Adulteress)\"]'),(265171,40797,4,'actor',NULL,'[\"Dr. Bradley Bradley (The Charlatan)\"]'),(265171,6787,5,'director',NULL,NULL),(265171,660893,6,'writer','written by',NULL),(265171,682790,7,'producer','producer',NULL),(265171,19886,8,'composer',NULL,NULL),(265171,785150,9,'cinematographer',NULL,NULL),(265298,3446,10,'cinematographer',NULL,NULL),(265298,5260,1,'actor',NULL,'[\"Jason Shepherd\"]'),(265298,4789,2,'actress',NULL,'[\"Kaylee\"]'),(265298,316079,3,'actor',NULL,'[\"Marty Wolf\"]'),(265298,221902,4,'actress',NULL,'[\"Monty Kirkham\"]'),(265298,506613,5,'director',NULL,NULL),(265298,773759,6,'writer','story',NULL),(265298,5367,7,'writer','story',NULL),(265298,866132,8,'producer','producer',NULL),(265298,65100,9,'composer',NULL,NULL),(265343,424489,10,'editor',NULL,NULL),(265343,787462,1,'actor',NULL,'[\"Lalit Verma\"]'),(265343,239267,2,'actress',NULL,'[\"Pimmi Verma\"]'),(265343,156858,3,'actress',NULL,'[\"Ria Verma\"]'),(265343,704694,4,'actor',NULL,'[\"Parabatlal Kanhaiyalal \'P.K.\' Dubey\"]'),(265343,619762,5,'director',NULL,NULL),(265343,223526,6,'writer',NULL,NULL),(265343,56205,7,'producer','producer',NULL),(265343,2217,8,'composer',NULL,NULL),(265343,2336,9,'cinematographer',NULL,NULL),(265349,742347,10,'producer','producer',NULL),(265349,152,1,'actor',NULL,'[\"John Klein\"]'),(265349,1473,2,'actress',NULL,'[\"Connie Mills\"]'),(265349,251678,3,'actor',NULL,'[\"Ed Fleischman\"]'),(265349,870430,4,'actor',NULL,'[\"Cyrus Bills\"]'),(265349,671210,5,'director',NULL,NULL),(265349,368818,6,'writer','screenplay',NULL),(265349,444481,7,'writer','novel',NULL),(265349,326214,8,'producer','producer',NULL),(265349,524342,9,'producer','producer',NULL),(265459,459517,10,'composer',NULL,NULL),(265459,245,1,'actor',NULL,'[\"Seymour Parrish\"]'),(265459,1567,2,'actress',NULL,'[\"Nina Yorkin\"]'),(265459,890232,3,'actor',NULL,'[\"Will Yorkin\"]'),(265459,808057,4,'actor',NULL,'[\"Jakob Yorkin\"]'),(265459,738796,5,'director',NULL,NULL),(265459,463025,6,'producer','producer',NULL),(265459,882927,7,'producer','producer',NULL),(265459,937262,8,'producer','producer',NULL),(265459,374112,9,'composer',NULL,NULL),(265632,842858,10,'producer','producer',NULL),(265632,492620,1,'actor',NULL,'[\"Tj\"]'),(265632,172636,2,'actor',NULL,'[\"Vince\"]'),(265632,204771,3,'actor',NULL,'[\"Mikey\"]'),(265632,424534,4,'actress',NULL,'[\"Gretchen\"]'),(265632,790746,5,'director',NULL,NULL),(265632,314480,6,'writer','television series Recess',NULL),(265632,30651,7,'writer','television series Recess',NULL),(265632,338537,8,'writer','story',NULL),(265632,840699,9,'producer','producer',NULL),(265651,870369,10,'producer','producer',NULL),(265651,518,1,'actor',NULL,'[\"Tom Ripley\"]'),(265651,779084,2,'actor',NULL,'[\"Jonathan Trevanny\"]'),(265651,372176,3,'actress',NULL,'[\"Sarah Trevanny\"]'),(265651,935653,4,'actor',NULL,'[\"Reeves\"]'),(265651,146960,5,'director',NULL,NULL),(265651,571650,6,'writer','written by',NULL),(265651,383604,7,'writer','novel',NULL),(265651,97717,8,'producer','producer',NULL),(265651,537884,9,'producer','producer',NULL),(265666,5934,10,'cinematographer','director of photography',NULL),(265666,432,1,'actor',NULL,'[\"Royal Tenenbaum\"]'),(265666,569,2,'actress',NULL,'[\"Margot Tenenbaum\"]'),(265666,1378,3,'actress',NULL,'[\"Etheline Tenenbaum\"]'),(265666,1774,4,'actor',NULL,'[\"Chas Tenenbaum\"]'),(265666,27572,5,'director',NULL,NULL),(265666,5562,6,'writer','written by',NULL),(265666,578814,7,'producer','producer',NULL),(265666,748784,8,'producer','producer',NULL),(265666,6205,9,'composer',NULL,NULL),(266075,1030531,10,'cinematographer',NULL,NULL),(266075,453612,1,'actress',NULL,'[\"Min-ah\"]'),(266075,661975,2,'actress',NULL,'[\"Hyo-shin\"]'),(266075,498488,3,'actress',NULL,'[\"Shi-eun\"]'),(266075,656759,4,'actor',NULL,'[\"Mr. Goh\"]'),(266075,590855,5,'director',NULL,NULL),(266075,453707,6,'director',NULL,NULL),(266075,408328,7,'writer',NULL,NULL),(266075,497010,8,'producer','producer',NULL),(266075,158654,9,'composer',NULL,NULL),(266308,618579,10,'producer','producer',NULL),(266308,297885,1,'actor',NULL,'[\"Shuya Nanahara - Boy #15\"]'),(266308,535329,2,'actress',NULL,'[\"Noriko Nakagawa - Girl #15\"]'),(266308,945500,3,'actor',NULL,'[\"Shôgo Kawada - Boy #5\"]'),(266308,475752,4,'actress',NULL,'[\"Takako Chigusa - Girl #13\"]'),(266308,297935,5,'director',NULL,NULL),(266308,847295,6,'writer','novel',NULL),(266308,297934,7,'writer','screenplay',NULL),(266308,2078278,8,'producer','producer',NULL),(266308,2184529,9,'producer','producer',NULL),(266452,689343,10,'editor',NULL,NULL),(266452,245,1,'actor',NULL,'[\"Rainbow Randolph\"]'),(266452,1570,2,'actor',NULL,'[\"Sheldon Mopes\",\"Smoochy the Rhino\"]'),(266452,1416,3,'actress',NULL,'[\"Nora Wells\"]'),(266452,362,4,'actor',NULL,'[\"Burke Bennett\"]'),(266452,720304,5,'writer','written by',NULL),(266452,493662,6,'producer','producer',NULL),(266452,532368,7,'producer','producer',NULL),(266452,628056,8,'composer',NULL,NULL),(266452,3712,9,'cinematographer',NULL,NULL),(266543,2353,10,'composer',NULL,NULL),(266543,983,1,'actor',NULL,'[\"Marlin\"]'),(266543,1122,2,'actress',NULL,'[\"Dory\"]'),(266543,1071252,3,'actor',NULL,'[\"Nemo\"]'),(266543,353,4,'actor',NULL,'[\"Gill\"]'),(266543,4056,5,'director',NULL,NULL),(266543,881279,6,'director','co-director',NULL),(266543,677037,7,'writer','screenplay by',NULL),(266543,721675,8,'writer','screenplay by',NULL),(266543,910237,9,'producer','producer',NULL),(266697,849222,10,'production_designer',NULL,NULL),(266697,235,1,'actress',NULL,'[\"The Bride\"]'),(266697,1016,2,'actor',NULL,'[\"Bill\"]'),(266697,435,3,'actress',NULL,'[\"Elle Driver\"]'),(266697,514,4,'actor',NULL,'[\"Budd\"]'),(266697,233,5,'director',NULL,NULL),(266697,4744,6,'producer','producer',NULL),(266697,753526,7,'composer',NULL,NULL),(266697,724744,8,'cinematographer','director of photography',NULL),(266697,579673,9,'editor',NULL,NULL),(266915,765306,10,'producer','producer',NULL),(266915,329,1,'actor',NULL,'[\"Lee\"]'),(266915,676,2,'actor',NULL,'[\"Carter\"]'),(266915,518821,3,'actor',NULL,'[\"Ricky Tan\"]'),(266915,955471,4,'actress',NULL,'[\"Hu Li\"]'),(266915,711840,5,'director',NULL,NULL),(266915,482780,6,'writer','characters',NULL),(266915,622288,7,'writer','written by',NULL),(266915,83696,8,'producer','producer',NULL),(266915,322802,9,'producer','producer',NULL),(266987,4581,10,'composer',NULL,NULL),(266987,602,1,'actor',NULL,'[\"Nathan Muir\"]'),(266987,93,2,'actor',NULL,'[\"Tom Bishop\"]'),(266987,1517,3,'actress',NULL,'[\"Elizabeth Hadley\"]'),(266987,226820,4,'actor',NULL,'[\"Charles Harker\"]'),(266987,1716,5,'director',NULL,NULL),(266987,65847,6,'writer','story',NULL),(266987,33153,7,'writer','screenplay',NULL),(266987,8953,8,'producer','producer',NULL),(266987,926824,9,'producer','producer',NULL),(267626,924249,10,'producer','producer',NULL),(267626,148,1,'actor',NULL,'[\"Capt. Alexei Vostrikov\"]'),(267626,819874,2,'actor',NULL,'[\"Dmitri\"]'),(267626,824220,3,'actor',NULL,'[\"Kuryshev\"]'),(267626,131235,4,'actor',NULL,'[\"Pavel\"]'),(267626,941,5,'director',NULL,NULL),(267626,637491,6,'writer','story',NULL),(267626,477370,7,'writer','screenplay',NULL),(267626,271026,8,'producer','producer',NULL),(267626,797451,9,'producer','producer',NULL),(267804,572123,10,'cinematographer',NULL,NULL),(267804,1472,1,'actor',NULL,'[\"Gabe\",\"Yulaw\",\"Lawless\"]'),(267804,1303,2,'actress',NULL,'[\"T.K.\",\"Massie Walsh\"]'),(267804,5148,3,'actor',NULL,'[\"Roedecker\",\"Attendant\"]'),(267804,5458,4,'actor',NULL,'[\"Funsch\"]'),(267804,939128,5,'director',NULL,NULL),(267804,604688,6,'writer','written by',NULL),(267804,153893,7,'producer','producer',NULL),(267804,627917,8,'producer','producer',NULL),(267804,704909,9,'composer',NULL,NULL),(267913,746273,10,'producer','producer',NULL),(267913,498,1,'actor',NULL,'[\"Shaggy\"]'),(267913,5327,2,'actor',NULL,'[\"Fred\"]'),(267913,1264,3,'actress',NULL,'[\"Daphne\"]'),(267913,4802,4,'actress',NULL,'[\"Velma\"]'),(267913,331532,5,'director',NULL,NULL),(267913,348181,6,'writer','screenplay',NULL),(267913,864471,7,'writer','story',NULL),(267913,360253,8,'writer','characters',NULL),(267913,53484,9,'writer','characters',NULL),(268126,768324,10,'producer','producer',NULL),(268126,115,1,'actor',NULL,'[\"Charlie Kaufman\",\"Donald Kaufman\"]'),(268126,658,2,'actress',NULL,'[\"Susan Orlean\"]'),(268126,177933,3,'actor',NULL,'[\"John Laroche\"]'),(268126,842770,4,'actress',NULL,'[\"Valerie Thomas\"]'),(268126,5069,5,'director',NULL,NULL),(268126,650036,6,'writer','book \"The Orchid Thief\"',NULL),(268126,442109,7,'writer','screenplay',NULL),(268126,1129,8,'producer','producer',NULL),(268126,484504,9,'producer','producer',NULL),(268380,107760,10,'writer','additional story',NULL),(268380,1459,1,'actor',NULL,'[\"Diego\"]'),(268380,491,2,'actor',NULL,'[\"Sid\"]'),(268380,5380,3,'actor',NULL,'[\"Manfred\"]'),(268380,899681,4,'actor',NULL,'[\"Soto\"]'),(268380,917188,5,'director',NULL,NULL),(268380,757858,6,'director','co-director',NULL),(268380,5022110,7,'writer','story by',NULL),(268380,73850,8,'writer','screenplay by',NULL),(268380,10004,9,'writer','screenplay by',NULL),(268397,372935,10,'producer','producer',NULL),(268397,220635,1,'actress',NULL,'[\"James \'Jimmy\' Isaac Neutron\"]'),(268397,667326,2,'actor',NULL,'[\"Carl\",\"Carl\'s Mom and Dad\",\"Kid in Classroom\"]'),(268397,146903,3,'actress',NULL,'[\"Mom\",\"VOX\"]'),(268397,213648,4,'actor',NULL,'[\"Dad\",\"Pilot\",\"Arena Guard\"]'),(268397,204884,5,'director',NULL,NULL),(268397,918955,6,'writer','screenplay by',NULL),(268397,826425,7,'writer','screenplay by',NULL),(268397,644203,8,'writer','screenplay by',NULL),(268397,359456,9,'writer','story editor',NULL),(268695,883603,10,'producer','producer',NULL),(268695,1602,1,'actor',NULL,'[\"Alexander Hartdegen\"]'),(268695,34733,2,'actor',NULL,'[\"Toren\"]'),(268695,4692,3,'actor',NULL,'[\"David Philby\"]'),(268695,492373,4,'actress',NULL,'[\"Mrs. Watchit\"]'),(268695,920425,5,'director',NULL,NULL),(268695,920229,6,'writer','novel',NULL),(268695,241949,7,'writer','earlier screenplay',NULL),(268695,517589,8,'writer','screenplay',NULL),(268695,662748,9,'producer','producer',NULL),(268978,5683,10,'cinematographer','director of photography',NULL),(268978,128,1,'actor',NULL,'[\"John Nash\"]'),(268978,438,2,'actor',NULL,'[\"Parcher\"]'),(268978,124,3,'actress',NULL,'[\"Alicia Nash\"]'),(268978,1626,4,'actor',NULL,'[\"Dr. Rosen\"]'),(268978,165,5,'director',NULL,NULL),(268978,326040,6,'writer','written by',NULL),(268978,621586,7,'writer','book',NULL),(268978,4976,8,'producer','producer',NULL),(268978,35,9,'composer',NULL,NULL),(268995,578392,10,'production_designer',NULL,NULL),(268995,120,1,'actor',NULL,'[\"Peter Appleton\"]'),(268995,1445,2,'actor',NULL,'[\"Harry Trimble\"]'),(268995,837,3,'actor',NULL,'[\"Elvin Clyde\"]'),(268995,218810,4,'actor',NULL,'[\"Ernie Cole\"]'),(268995,1104,5,'director',NULL,NULL),(268995,7136,6,'writer','written by',NULL),(268995,6142,7,'composer',NULL,NULL),(268995,5897,8,'cinematographer',NULL,NULL),(268995,656199,9,'editor',NULL,NULL),(269856,880001,10,'editor',NULL,NULL),(269856,412517,1,'actor',NULL,'[\"Director\"]'),(269856,297858,2,'actress',NULL,'[\"She\"]'),(269856,613472,3,'actor',NULL,'[\"Bicycle man\"]'),(269856,652718,4,'actress',NULL,'[\"Her mother\"]'),(269856,30417,5,'director',NULL,NULL),(269856,620935,6,'producer','producer',NULL),(269856,847182,7,'producer','producer',NULL),(269856,435413,8,'composer',NULL,NULL),(269856,619221,9,'cinematographer',NULL,NULL),(270288,592537,10,'editor',NULL,NULL),(270288,5377,1,'actor',NULL,'[\"Chuck Barris\"]'),(270288,106,2,'actress',NULL,'[\"Penny\"]'),(270288,123,3,'actor',NULL,'[\"Jim Byrd\"]'),(270288,210,4,'actress',NULL,'[\"Patricia Watson\"]'),(270288,57567,5,'writer','book',NULL),(270288,442109,6,'writer','screenplay',NULL),(270288,493662,7,'producer','producer',NULL),(270288,943391,8,'composer',NULL,NULL),(270288,5875,9,'cinematographer',NULL,NULL),(270688,874774,10,'composer',NULL,NULL),(270688,842770,1,'actress',NULL,'[\"Rosetta\",\"Ruby\",\"Marinne\"]'),(270688,1111,2,'actor',NULL,'[\"Sandy\"]'),(270688,881672,3,'actor',NULL,'[\"Agent Hopper\"]'),(270688,641469,4,'actor',NULL,'[\"Professor Crick\"]'),(270688,380961,5,'director',NULL,NULL),(270688,345550,6,'producer','producer',NULL),(270688,454511,7,'producer','producer',NULL),(270688,883130,8,'producer','producer',NULL),(270688,46004,9,'composer',NULL,NULL),(270980,569845,10,'cinematographer','director of photography',NULL),(270980,5110,1,'actor',NULL,'[\"Tom Stansfield\"]'),(270980,5346,2,'actress',NULL,'[\"Lisa Taylor\"]'),(270980,725200,3,'actor',NULL,'[\"Red Taylor\"]'),(270980,788340,4,'actress',NULL,'[\"Audrey Bennett\"]'),(270980,1878,5,'director',NULL,NULL),(270980,233563,6,'writer','written by',NULL),(270980,1124997,7,'producer','producer',NULL),(270980,626696,8,'producer','producer',NULL),(270980,144841,9,'composer',NULL,NULL),(271027,35661,10,'composer',NULL,NULL),(271027,1472,1,'actor',NULL,'[\"Liu Jian\"]'),(271027,403,2,'actress',NULL,'[\"Jessica Kamen\"]'),(271027,1409,3,'actor',NULL,'[\"Insp. Richard\"]'),(271027,949521,4,'actor',NULL,'[\"Mister Big\"]'),(271027,619599,5,'director',NULL,NULL),(271027,108,6,'writer','screenplay',NULL),(271027,436543,7,'writer','screenplay',NULL),(271027,153893,8,'producer','producer',NULL),(271027,910241,9,'producer','producer',NULL),(271219,684791,10,'composer',NULL,NULL),(271219,244,1,'actress',NULL,'[\"Eve\",\"Oscar\'s stepmother\"]'),(271219,822155,2,'actor',NULL,'[\"Oscar\"]'),(271219,544718,3,'actress',NULL,'[\"Miranda Spear\"]'),(271219,407615,4,'actor',NULL,'[\"Charlie\"]'),(271219,935095,5,'director',NULL,NULL),(271219,569641,6,'writer','story',NULL),(271219,7158,7,'writer','story',NULL),(271219,18936,8,'producer','producer',NULL),(271219,355502,9,'producer','producer',NULL),(271271,551108,10,'composer',NULL,NULL),(271271,832653,1,'actress',NULL,'[\"Zenon Kar\"]'),(271271,799895,2,'actress',NULL,'[\"Nebula Wade\"]'),(271271,540767,3,'actress',NULL,'[\"Margie Hammond\"]'),(271271,103731,4,'actress',NULL,'[\"Astrid Kar\"]'),(271271,182873,5,'director',NULL,NULL),(271271,755551,6,'writer','book \"Zenon, Girl of the 21st Century\"',NULL),(271271,93098,7,'writer','book \"Zenon, Girl of the 21st Century\"',NULL),(271271,471217,8,'writer','teleplay',NULL),(271271,349720,9,'producer','producer',NULL),(271972,328076,10,'cinematographer',NULL,NULL),(271972,693243,1,'actor',NULL,'[\"Lev Valentine\"]'),(271972,717157,2,'actress',NULL,'[\"Loren Mercer\"]'),(271972,761103,3,'actor',NULL,'[\"Dr. Samuel Leon\"]'),(271972,38572,4,'actress',NULL,'[\"Susana\"]'),(271972,794791,5,'director',NULL,NULL),(271972,786411,6,'writer','screenplay',NULL),(271972,273327,7,'producer','executive producer',NULL),(271972,951206,8,'producer','creative producer',NULL),(271972,312742,9,'composer',NULL,NULL),(272127,320051,10,'production_designer',NULL,NULL),(272127,1309,1,'actor',NULL,'[\"Ted Robbins\"]'),(272127,498247,2,'actress',NULL,'[\"Eve Robbins\"]'),(272127,141450,3,'actor',NULL,'[\"Detective Cary Grant\"]'),(272127,222600,4,'actress',NULL,'[\"Adele\"]'),(272127,834338,5,'director',NULL,NULL),(272127,182724,6,'producer','producer',NULL),(272127,589172,7,'composer',NULL,NULL),(272127,293456,8,'cinematographer',NULL,NULL),(272127,317004,9,'editor',NULL,NULL),(272152,505656,10,'producer','producer',NULL),(272152,228,1,'actor',NULL,'[\"Prot\"]'),(272152,313,2,'actor',NULL,'[\"Dr. Mark Powell\"]'),(272152,5203,3,'actress',NULL,'[\"Rachel Powell\"]'),(272152,5569,4,'actress',NULL,'[\"Dr. Claudia Villars\"]'),(272152,812200,5,'director',NULL,NULL),(272152,108150,6,'writer','novel',NULL),(272152,495378,7,'writer','screenplay',NULL),(272152,171348,8,'producer','producer',NULL),(272152,330379,9,'producer','producer',NULL),(272338,428655,10,'editor',NULL,NULL),(272338,1191,1,'actor',NULL,'[\"Barry Egan\"]'),(272338,1833,2,'actress',NULL,'[\"Lena Leonard\"]'),(272338,450,3,'actor',NULL,'[\"Dean Trumbell\"]'),(272338,28690,4,'actor',NULL,'[\"Operator Carter\"]'),(272338,759,5,'director',NULL,NULL),(272338,526917,6,'producer','producer',NULL),(272338,783280,7,'producer','producer',NULL),(272338,109726,8,'composer',NULL,NULL),(272338,5696,9,'cinematographer','director of photography',NULL),(273300,514481,10,'editor',NULL,NULL),(273300,11758,1,'actor',NULL,'[\"George Abiola\"]'),(273300,320762,2,'actor',NULL,'[\"Gerard\"]'),(273300,1053118,3,'actor',NULL,'[\"Co-Worker\"]'),(273300,1052544,4,'actor',NULL,'[\"Teacher\"]'),(273300,394199,5,'director',NULL,NULL),(273300,975140,6,'writer','additional writer',NULL),(273300,882270,7,'producer','producer',NULL),(273300,453918,8,'composer',NULL,NULL),(273300,128337,9,'cinematographer',NULL,NULL),(273840,1387794,10,'production_designer',NULL,NULL),(273840,1030409,1,'actor',NULL,'[\"Petya\"]'),(273840,701677,2,'actress',NULL,'[\"Boci mama\"]'),(273840,1036301,3,'actress',NULL,'[\"Zsófi\"]'),(273840,1028806,4,'actor',NULL,'[\"Kigler\"]'),(273840,879559,5,'director',NULL,NULL),(273840,801446,6,'producer','producer',NULL),(273840,1033085,7,'composer',NULL,NULL),(273840,304840,8,'cinematographer',NULL,NULL),(273840,1075630,9,'editor',NULL,NULL),(274117,882997,10,'cinematographer',NULL,NULL),(274117,1993,1,'actor',NULL,'[\"Paul\"]'),(274117,222922,2,'actress',NULL,'[\"Carla\"]'),(274117,332709,3,'actor',NULL,'[\"Marchand\"]'),(274117,674702,4,'actor',NULL,'[\"Masson\"]'),(274117,2191,5,'director',NULL,NULL),(274117,70152,6,'writer',NULL,NULL),(274117,136260,7,'producer','producer',NULL),(274117,515201,8,'producer','producer',NULL),(274117,6035,9,'composer',NULL,NULL),(274155,920623,10,'cinematographer',NULL,NULL),(274155,44535,1,'actress',NULL,'[\"Edith Guetz\"]'),(274155,244707,2,'actor',NULL,'[\"Paul Guetz\"]'),(274155,74168,3,'actor',NULL,'[\"Tanguy Guetz\"]'),(274155,239680,4,'actress',NULL,'[\"Odile Guetz\"]'),(274155,154055,5,'director',NULL,NULL),(274155,159318,6,'writer',NULL,NULL),(274155,953706,7,'writer','idea',NULL),(274155,309369,8,'producer','producer',NULL),(274155,28197,9,'composer',NULL,NULL),(274166,100650,10,'producer','producer',NULL),(274166,100,1,'actor',NULL,'[\"Johnny English\"]'),(274166,518,2,'actor',NULL,'[\"Pascal Sauvage\"]'),(274166,1386,3,'actress',NULL,'[\"Lorna Campbell\"]'),(274166,212046,4,'actress',NULL,'[\"Exotic Woman\"]'),(274166,398185,5,'director',NULL,NULL),(274166,701031,6,'writer','written by',NULL),(274166,905498,7,'writer','written by',NULL),(274166,204030,8,'writer','written by',NULL),(274166,79677,9,'producer','producer',NULL),(274309,863217,10,'production_designer',NULL,NULL),(274309,176869,1,'actor',NULL,'[\"Tony Wilson\"]'),(274309,416694,2,'actor',NULL,'[\"Alan Erasmus\"]'),(274309,861027,3,'actor',NULL,'[\"Charles\"]'),(274309,686091,4,'actor',NULL,'[\"Actor at Granada\"]'),(274309,935863,5,'director',NULL,NULL),(274309,101639,6,'writer','screenplay by',NULL),(274309,247787,7,'producer','producer',NULL),(274309,5810,8,'cinematographer','director of photography',NULL),(274309,906634,9,'editor',NULL,NULL),(274497,549516,10,'editor',NULL,NULL),(274497,125540,1,'actress',NULL,'[\"Antonia\"]'),(274497,9629,2,'actor',NULL,'[\"Michele\"]'),(274497,948012,3,'actress',NULL,'[\"Serra\"]'),(274497,307490,4,'actor',NULL,'[\"Ernesto\"]'),(274497,654858,5,'director',NULL,NULL),(274497,739744,6,'writer','screenplay',NULL),(274497,181107,7,'producer','producer',NULL),(274497,345991,8,'composer',NULL,NULL),(274497,546938,9,'cinematographer',NULL,NULL),(274558,1275,10,'composer',NULL,NULL),(274558,658,1,'actress',NULL,'[\"Clarissa Vaughan\"]'),(274558,173,2,'actress',NULL,'[\"Virginia Woolf\"]'),(274558,194,3,'actress',NULL,'[\"Laura Brown\"]'),(274558,226820,4,'actor',NULL,'[\"Leonard Woolf\"]'),(274558,197636,5,'director',NULL,NULL),(274558,1259728,6,'writer','novel',NULL),(274558,2376,7,'writer','screenplay',NULL),(274558,289221,8,'producer','producer',NULL),(274558,748784,9,'producer','producer',NULL),(274812,823,10,'composer',NULL,NULL),(274812,652,1,'actor',NULL,'[\"Mr. Grey\"]'),(274812,350454,2,'actress',NULL,'[\"Lee Holloway\"]'),(274812,1111,3,'actor',NULL,'[\"Peter\"]'),(274812,690,4,'actress',NULL,'[\"Joan Holloway\"]'),(274812,787601,5,'director',NULL,NULL),(274812,933379,6,'writer','screenplay',NULL),(274812,1122344,7,'writer','short story',NULL),(274812,276404,8,'producer','producer',NULL),(274812,387646,9,'producer','producer',NULL),(275022,3151,10,'editor',NULL,NULL),(275022,5453,1,'actress',NULL,'[\"Lucy\"]'),(275022,609845,2,'actor',NULL,'[\"Ben\"]'),(275022,757855,3,'actress',NULL,'[\"Kit\"]'),(275022,543383,4,'actress',NULL,'[\"Mimi\"]'),(275022,205542,5,'director',NULL,NULL),(275022,722274,6,'writer','written by',NULL),(275022,4653,7,'producer','producer',NULL),(275022,2303,8,'composer',NULL,NULL),(275022,4090,9,'cinematographer',NULL,NULL),(275277,633730,10,'writer','screenplay',NULL),(275277,82507,1,'actor',NULL,'[\"Jet Black\"]'),(275277,153100,2,'actress',NULL,'[\"Edward Wong\"]'),(275277,346415,3,'actor',NULL,'[\"Rachid\"]'),(275277,945290,4,'actor',NULL,'[\"Spike Spiegel\"]'),(275277,913860,5,'director',NULL,NULL),(275277,569479,6,'director','adr director',NULL),(275277,645513,7,'director','director: Western segment',NULL),(275277,645657,8,'director',NULL,NULL),(275277,1988172,9,'director','co-director',NULL),(275847,153738,1,'actress',NULL,'[\"Lilo\"]'),(275847,761498,2,'actor',NULL,'[\"Stitch\"]'),(275847,119,3,'actress',NULL,'[\"Nani\"]'),(275847,1773,4,'actor',NULL,'[\"Jumba\"]'),(275847,213450,5,'director',NULL,NULL),(275847,1192875,6,'producer','producer',NULL),(275847,6293,7,'composer',NULL,NULL),(275847,391789,8,'editor',NULL,NULL),(275847,271338,9,'production_designer',NULL,NULL),(275913,376267,10,'cinematographer','director of photography',NULL),(275913,920,1,'actor',NULL,'[\"Crassius\"]'),(275913,748075,2,'actress',NULL,'[\"Ione\"]'),(275913,636280,3,'actor',NULL,'[\"Lucius\"]'),(275913,385346,4,'actress',NULL,'[\"Serena\"]'),(275913,91602,5,'director',NULL,NULL),(275913,474166,6,'producer','producer',NULL),(275913,578443,7,'producer','producer',NULL),(275913,918518,8,'producer','producer',NULL),(275913,429350,9,'composer',NULL,NULL),(276613,50421,10,'editor',NULL,NULL),(276613,569547,1,'actor',NULL,'[\"Vladimir\"]'),(276613,614403,2,'actor',NULL,'[\"Estragon\"]'),(276613,822157,3,'actor',NULL,'[\"Pozzo\"]'),(276613,107406,4,'actor',NULL,'[\"Lucky\"]'),(276613,512327,5,'director',NULL,NULL),(276613,65716,6,'writer','play',NULL),(276613,171435,7,'producer','producer',NULL),(276613,597215,8,'producer','producer',NULL),(276613,213239,9,'cinematographer',NULL,NULL),(276751,134,10,'producer','producer',NULL),(276751,424,1,'actor',NULL,'[\"Will Freeman\"]'),(276751,396558,2,'actor',NULL,'[\"Marcus Brewer\"]'),(276751,1057,3,'actress',NULL,'[\"Fiona Brewer\"]'),(276751,806527,4,'actress',NULL,'[\"Christine\"]'),(276751,919363,5,'director',NULL,NULL),(276751,919369,6,'director',NULL,NULL),(276751,394984,7,'writer','novel',NULL),(276751,373282,8,'writer','screenplay',NULL),(276751,79677,9,'producer','producer',NULL),(276816,6251,10,'composer',NULL,NULL),(276816,339304,1,'actor',NULL,'[\"Brice\"]'),(276816,1019734,2,'actor',NULL,'[\"Sonar #2\"]'),(276816,205127,3,'actor',NULL,'[\"Odell\"]'),(276816,564697,4,'actor',NULL,'[\"Loomis\"]'),(276816,878638,5,'director',NULL,NULL),(276816,839938,6,'writer','written by',NULL),(276816,4716,7,'writer','written by',NULL),(276816,46020,8,'producer','producer',NULL),(276816,914615,9,'producer','producer',NULL),(276919,173,1,'actress',NULL,'[\"Grace Margaret Mulligan\"]'),(276919,79273,2,'actor',NULL,'[\"Tom Edison\"]'),(276919,2,3,'actress',NULL,'[\"Ma Ginger\"]'),(276919,27683,4,'actress',NULL,'[\"Gloria\"]'),(276919,1885,5,'director',NULL,NULL),(276919,934668,6,'producer','producer',NULL),(276919,230045,7,'cinematographer',NULL,NULL),(276919,826663,8,'editor',NULL,NULL),(276919,335605,9,'production_designer',NULL,NULL),(277027,694173,10,'composer',NULL,NULL),(277027,576,1,'actor',NULL,'[\"Sam Dawson\"]'),(277027,201,2,'actress',NULL,'[\"Rita\"]'),(277027,266824,3,'actress',NULL,'[\"Lucy\"]'),(277027,1848,4,'actress',NULL,'[\"Annie\"]'),(277027,625458,5,'director',NULL,NULL),(277027,425581,6,'writer','written by',NULL),(277027,380980,7,'producer','producer',NULL),(277027,813414,8,'producer','producer',NULL),(277027,1880,9,'producer','producer',NULL),(277115,553414,1,'self',NULL,'[\"Self\"]'),(277115,5690,2,'director',NULL,NULL),(277122,413842,1,'actress',NULL,'[\"Maeve Sweeney\"]'),(277122,611854,2,'actor',NULL,'[\"Martin Sweeney\"]'),(277122,107261,3,'actress',NULL,'[\"Roisin\"]'),(277122,446932,4,'actress',NULL,'[\"Eileen\"]'),(277122,614584,5,'director',NULL,NULL),(277122,1384653,6,'producer','producer',NULL),(277122,809740,7,'producer','producer',NULL),(277122,102325,8,'composer',NULL,NULL),(277122,2150111,9,'composer',NULL,NULL),(277296,199733,10,'producer','producer',NULL),(277296,425005,1,'actor',NULL,'[\"Mathayus\"]'),(277296,104526,2,'actor',NULL,'[\"Memnon\"]'),(277296,3817,3,'actor',NULL,'[\"Balthazar\"]'),(277296,5026,4,'actress',NULL,'[\"The Sorceress\"]'),(277296,751080,5,'director',NULL,NULL),(277296,814085,6,'writer','story',NULL),(277296,355054,7,'writer','story',NULL),(277296,651758,8,'writer','screenplay',NULL),(277296,371684,9,'writer','screenplay',NULL),(277371,424688,10,'writer','written by',NULL),(277371,500200,1,'actress',NULL,'[\"Janey Briggs\"]'),(277371,5326,2,'actress',NULL,'[\"Priscilla\"]'),(277371,262635,3,'actor',NULL,'[\"Jake Wyler\"]'),(277371,647638,4,'actor',NULL,'[\"Austin\"]'),(277371,302778,5,'director',NULL,NULL),(277371,70500,6,'writer','written by',NULL),(277371,258418,7,'writer','written by',NULL),(277371,414795,8,'writer','written by',NULL),(277371,64556,9,'writer','written by',NULL),(277434,322684,10,'composer',NULL,NULL),(277434,154,1,'actor',NULL,'[\"Lt. Col. Hal Moore\"]'),(277434,656,2,'actress',NULL,'[\"Julie Moore\"]'),(277434,1427,3,'actor',NULL,'[\"Maj. Bruce Crandall\"]'),(277434,385,4,'actor',NULL,'[\"Sgt. Maj. Basil Plumley\"]'),(277434,908824,5,'director',NULL,NULL),(277434,1051840,6,'writer','book \"We Were Soldiers Once... and Young\"',NULL),(277434,1051826,7,'writer','book \"We Were Soldiers Once... and Young\"',NULL),(277434,202704,8,'producer','producer',NULL),(277434,568544,9,'producer','producer',NULL),(277596,511729,1,'actor',NULL,NULL),(277596,549406,2,'actress',NULL,NULL),(277596,597597,3,'director',NULL,NULL),(277865,511729,1,'actor',NULL,'[\"Max\"]'),(277865,1155732,2,'actress',NULL,'[\"Mademoiselle Lily\"]'),(277865,1977301,3,'actor',NULL,'[\"L\'âne\"]'),(277865,503415,4,'director','co-director',NULL),(277865,1302026,5,'writer',NULL,NULL),(277925,439312,1,'actress',NULL,'[\"Fereshteh\"]'),(277925,631642,2,'actor',NULL,'[\"Roozbeh Javid\"]'),(277925,675977,3,'actor',NULL,'[\"Husband\"]'),(277925,594970,4,'actor',NULL,'[\"Mr. Rastegar\"]'),(277925,586841,5,'director',NULL,NULL),(277925,596145,6,'composer',NULL,NULL),(277925,435534,7,'cinematographer',NULL,NULL),(277925,214960,8,'editor',NULL,NULL),(277925,708241,9,'production_designer',NULL,NULL),(277986,503600,10,'producer','producer',NULL),(277986,236130,1,'actress',NULL,'[\"Samantha\",\"Jennifer\"]'),(277986,1092751,2,'actress',NULL,'[\"Maureen\"]'),(277986,3082,3,'actor',NULL,'[\"Johnny Falls\"]'),(277986,954677,4,'actor',NULL,'[\"Ernst\"]'),(277986,847749,5,'director',NULL,NULL),(277986,26829,6,'writer','screenplay',NULL),(277986,203246,7,'writer','story',NULL),(277986,317368,8,'writer','screenplay',NULL),(277986,410237,9,'writer',NULL,NULL),(278435,831114,10,'cinematographer',NULL,NULL),(278435,182,1,'actress',NULL,'[\"Slim Hiller\"]'),(278435,1004,2,'actor',NULL,'[\"Mitch Hiller\"]'),(278435,21100,3,'actress',NULL,'[\"Gracie Hiller\"]'),(278435,496,4,'actress',NULL,'[\"Ginny\"]'),(278435,776,5,'director',NULL,NULL),(278435,443582,6,'writer','written by',NULL),(278435,184620,7,'producer','producer',NULL),(278435,5563,8,'producer','producer',NULL),(278435,3417,9,'composer',NULL,NULL),(278488,787834,10,'producer','producer',NULL),(278488,541218,1,'actor',NULL,'[\"Silas P. Silas\"]'),(278488,714983,2,'actor',NULL,'[\"Jamal King\"]'),(278488,44762,3,'actor',NULL,'[\"Dean Carl Cain\"]'),(278488,258402,4,'actor',NULL,'[\"Baby Powder\"]'),(278488,245888,5,'director',NULL,NULL),(278488,8935,6,'writer','written by',NULL),(278488,362,7,'producer','producer',NULL),(278488,254886,8,'producer','producer',NULL),(278488,307975,9,'producer','producer',NULL),(278500,72424,10,'editor',NULL,NULL),(278500,391,1,'actor',NULL,'[\"Algy\"]'),(278500,147,2,'actor',NULL,'[\"Jack\"]'),(278500,640323,3,'actress',NULL,'[\"Gwendolen\"]'),(278500,702,4,'actress',NULL,'[\"Cecily\"]'),(278500,662529,5,'director',NULL,NULL),(278500,928492,6,'writer','play \"The Importance of Being Earnest\"',NULL),(278500,859877,7,'producer','producer',NULL),(278500,596495,8,'composer',NULL,NULL),(278500,682503,9,'cinematographer','director of photography',NULL),(278504,432625,10,'producer','producer',NULL),(278504,199,1,'actor',NULL,'[\"Will Dormer\"]'),(278504,245,2,'actor',NULL,'[\"Walter Finch\"]'),(278504,5476,3,'actress',NULL,'[\"Ellie Burr\"]'),(278504,233027,4,'actor',NULL,'[\"Hap Eckhart\"]'),(278504,634240,5,'director',NULL,NULL),(278504,782711,6,'writer','screenplay',NULL),(278504,296154,7,'writer',NULL,NULL),(278504,804408,8,'writer',NULL,NULL),(278504,424663,9,'producer','producer',NULL),(278731,5893,10,'cinematographer','director of photography',NULL),(278731,146,1,'actor',NULL,'[\"Spider\"]'),(278731,1669,2,'actress',NULL,'[\"Yvonne\",\"Mrs. Cleg\"]'),(278731,321,3,'actor',NULL,'[\"Bill Cleg\"]'),(278731,1655,4,'actress',NULL,'[\"Mrs. Wilkinson\"]'),(278731,343,5,'director',NULL,NULL),(278731,569862,6,'writer','novel',NULL),(278731,1022690,7,'producer','producer',NULL),(278731,352820,8,'producer','producer',NULL),(278731,6290,9,'composer',NULL,NULL),(279113,912669,10,'composer',NULL,NULL),(279113,98,1,'actress',NULL,'[\"Justine Last\"]'),(279113,350453,2,'actor',NULL,'[\"Holden Worther\"]'),(279113,750658,3,'actress',NULL,'[\"Gwen Jackson\"]'),(279113,925234,4,'actor',NULL,'[\"Corny\"]'),(279113,37708,5,'director',NULL,NULL),(279113,339010,6,'producer','producer',NULL),(279113,561829,7,'composer',NULL,NULL),(279113,1117085,8,'composer',NULL,NULL),(279113,651366,9,'composer',NULL,NULL),(279204,837977,10,'editor',NULL,NULL),(279204,193846,1,'actress',NULL,'[\"Katlin\"]'),(279204,589334,2,'actress',NULL,'[\"Valerie\"]'),(279204,754608,3,'actor',NULL,'[\"Ron\"]'),(279204,255330,4,'actor',NULL,'[\"Blair\"]'),(279204,269502,5,'director',NULL,NULL),(279204,296131,6,'writer','story',NULL),(279204,543919,7,'writer','teleplay',NULL),(279204,793232,8,'composer',NULL,NULL),(279204,808292,9,'cinematographer',NULL,NULL),(279231,5698,10,'cinematographer','director of photography',NULL),(279231,396924,1,'actress',NULL,'[\"Minoes\"]'),(279231,531027,2,'actor',NULL,'[\"Tibbe\"]'),(279231,1060633,3,'actress',NULL,'[\"Bibi\"]'),(279231,92592,4,'actor',NULL,'[\"Ellemeet\"]'),(279231,49294,5,'director',NULL,NULL),(279231,772824,6,'writer','novel',NULL),(279231,97702,7,'writer','screenplay',NULL),(279231,97674,8,'writer','screenplay',NULL),(279231,894382,9,'composer',NULL,NULL),(279474,793689,10,'producer','producer',NULL),(279474,945349,1,'actress',NULL,'[\"Yumi Morita\"]'),(279474,473577,2,'actor',NULL,'[\"Fumihito Sato\"]'),(279474,256861,3,'actor',NULL,'[\"Dr. Tachibana\"]'),(279474,865546,4,'actress',NULL,'[\"Atsuko Kinoshita\"]'),(279474,594075,5,'director',NULL,NULL),(279474,411702,6,'writer','comic',NULL),(279474,1210910,7,'writer',NULL,NULL),(279474,44465,8,'producer','producer',NULL),(279474,2500139,9,'producer','producer',NULL),(279493,497083,10,'producer','producer',NULL),(279493,341176,1,'actor',NULL,'[\"Undercover Brother\",\"Anton Jackson\"]'),(279493,612,2,'actress',NULL,'[\"White She Devil\"]'),(279493,254712,3,'actress',NULL,'[\"Sistah Girl\"]'),(279493,441592,4,'actor',NULL,'[\"Mr. Feather\"]'),(279493,2700,5,'director',NULL,NULL),(279493,725983,6,'writer','internet series',NULL),(279493,567112,7,'writer','screenplay',NULL),(279493,4976,8,'producer','producer',NULL),(279493,421017,9,'producer','producer',NULL),(279778,122439,10,'composer',NULL,NULL),(279778,113,1,'actress',NULL,'[\"Sidda\"]'),(279778,995,2,'actress',NULL,'[\"Vivi\"]'),(279778,1217,3,'actress',NULL,'[\"Teensy\"]'),(279778,1258,4,'actor',NULL,'[\"Shep Walker\"]'),(279778,451884,5,'director',NULL,NULL),(279778,920385,6,'writer','novels \"Divine Secrets of the Ya-Ya Sisterhood\" and \"Little Altars Everywhere\"',NULL),(279778,29125,7,'writer','adaptation',NULL),(279778,115668,8,'producer','producer',NULL),(279778,523324,9,'producer','producer',NULL),(279914,212421,10,'actress',NULL,'[\"Duchess of Berwick\"]'),(279914,743099,1,'actor',NULL,'[\"Lord Windermere\"]'),(279914,922513,2,'actress',NULL,'[\"Lady Windermere\"]'),(279914,687022,3,'actor',NULL,'[\"Lord Augustus Lorton\"]'),(279914,740252,4,'actress',NULL,'[\"Mrs Erlynne\"]'),(279914,666835,5,'director',NULL,NULL),(279914,416297,6,'writer','scenario',NULL),(279914,928492,7,'writer','play \"Lady Windermere\'s Fan\"',NULL),(279914,1341523,8,'composer',NULL,NULL),(279914,939454,9,'actor',NULL,'[\"Lord Darlington\"]'),(279967,88833,10,'producer','producer',NULL),(279967,1840,1,'actress',NULL,'[\"Mulan\"]'),(279967,703,2,'actor',NULL,'[\"Shang\"]'),(279967,609137,3,'actor',NULL,'[\"Mushu\"]'),(279967,5154,4,'actress',NULL,'[\"Mei\"]'),(279967,740311,5,'director',NULL,NULL),(279967,816110,6,'director',NULL,NULL),(279967,524710,7,'writer','screenplay',NULL),(279967,662134,8,'writer','screenplay',NULL),(279967,776107,9,'writer','screenplay',NULL),(279977,253279,10,'cinematographer',NULL,NULL),(279977,1080214,1,'actor',NULL,'[\"John\"]'),(279977,186030,2,'actor',NULL,'[\"Mick\"]'),(279977,244911,3,'actor',NULL,'[\"Paul\"]'),(279977,401269,4,'actor',NULL,'[\"Jim\"]'),(279977,516360,5,'director',NULL,NULL),(279977,1085215,6,'writer',NULL,NULL),(279977,639780,7,'producer','producer',NULL),(279977,6070,8,'composer',NULL,NULL),(279977,10096,9,'cinematographer',NULL,NULL),(280460,1207335,10,'editor',NULL,NULL),(280460,215,1,'actress',NULL,'[\"Lavinia\"]'),(280460,443,2,'actress',NULL,'[\"Suzette\"]'),(280460,1691,3,'actor',NULL,'[\"Harry\"]'),(280460,159776,4,'actress',NULL,'[\"Hannah\"]'),(280460,231190,5,'director',NULL,NULL),(280460,134578,6,'producer','producer',NULL),(280460,425741,7,'producer','producer',NULL),(280460,704909,8,'composer',NULL,NULL),(280460,5776,9,'cinematographer',NULL,NULL),(280486,988,10,'producer','producer',NULL),(280486,164,1,'actor',NULL,'[\"Oakes\"]'),(280486,1674,2,'actor',NULL,'[\"Jake Hayes\",\"Kevin Pope\"]'),(280486,550624,3,'actor',NULL,'[\"Dragan Adjanic\"]'),(280486,532683,4,'actor',NULL,'[\"Seale\"]'),(280486,1708,5,'director',NULL,NULL),(280486,329074,6,'writer','story',NULL),(280486,385430,7,'writer','story',NULL),(280486,725034,8,'writer','screenplay',NULL),(280486,115192,9,'writer','screenplay',NULL),(280590,316406,10,'producer','producer',NULL),(280590,1191,1,'actor',NULL,'[\"Longfellow Deeds\"]'),(280590,213,2,'actress',NULL,'[\"Babe Bennett\"]'),(280590,1806,3,'actor',NULL,'[\"Emilio Lopez\"]'),(280590,184445,4,'actor',NULL,'[\"Marty\"]'),(280590,109359,5,'director',NULL,NULL),(280590,445502,6,'writer','short story \"Opera Hat\"',NULL),(280590,728307,7,'writer','film Mr. Deeds Goes to Town',NULL),(280590,379056,8,'writer','screenplay',NULL),(280590,304398,9,'producer','producer',NULL),(280609,567302,10,'cinematographer',NULL,NULL),(280609,675730,1,'actor',NULL,'[\"Wells\"]'),(280609,571727,2,'actor',NULL,'[\"Cooper\"]'),(280609,165881,3,'actress',NULL,'[\"Megan\"]'),(280609,192377,4,'actor',NULL,'[\"Ryan\"]'),(280609,551076,5,'director',NULL,NULL),(280609,20431,6,'producer','producer',NULL),(280609,276541,7,'producer','producer',NULL),(280609,716135,8,'producer','producer',NULL),(280609,859211,9,'composer',NULL,NULL),(280653,89333,10,'cinematographer',NULL,NULL),(280653,876300,1,'actor',NULL,'[\"Kurt Gerstein\"]'),(280653,440913,2,'actor',NULL,'[\"Riccardo Fontana\"]'),(280653,618057,3,'actor',NULL,'[\"Doctor\"]'),(280653,239816,4,'actor',NULL,'[\"Cardinal\"]'),(280653,2020,5,'director',NULL,NULL),(280653,344467,6,'writer',NULL,NULL),(280653,387827,7,'writer','play \"Der Stellvertreter\"',NULL),(280653,93854,8,'producer','producer',NULL),(280653,23940,9,'composer',NULL,NULL),(280665,659597,10,'editor',NULL,NULL),(280665,5381,1,'actress',NULL,'[\"Laure\",\"Lily\"]'),(280665,104,2,'actor',NULL,'[\"Nicolas Bardo\"]'),(280665,1075,3,'actor',NULL,'[\"Watts\"]'),(280665,248254,4,'actor',NULL,'[\"Black Tie\"]'),(280665,361,5,'director',NULL,NULL),(280665,69893,6,'producer','producer',NULL),(280665,311720,7,'producer','producer',NULL),(280665,757098,8,'composer',NULL,NULL),(280665,5636,9,'cinematographer','director of photography',NULL),(280707,242491,10,'cinematographer','director of photography',NULL),(280707,1749,1,'actress',NULL,'[\"Constance Trentham\"]'),(280707,202,2,'actor',NULL,'[\"Henry Denton\"]'),(280707,2091,3,'actor',NULL,'[\"William McCordle\"]'),(280707,218,4,'actress',NULL,'[\"Sylvia McCordle\"]'),(280707,265,5,'director',NULL,NULL),(280707,271501,6,'writer','written by',NULL),(280707,837,7,'writer','based upon an idea by',NULL),(280707,506379,8,'producer','producer',NULL),(280707,236462,9,'composer',NULL,NULL),(280760,27582,10,'editor',NULL,NULL),(280760,1085,1,'actor',NULL,'[\"Igby\"]'),(280760,215,2,'actress',NULL,'[\"Mimi\"]'),(280760,156,3,'actor',NULL,'[\"D.H.\"]'),(280760,132,4,'actress',NULL,'[\"Sookie\"]'),(280760,824882,5,'director',NULL,NULL),(280760,868178,6,'producer','producer',NULL),(280760,916675,7,'producer','producer',NULL),(280760,1069078,8,'composer',NULL,NULL),(280760,3371,9,'cinematographer','director of photography',NULL),(281358,912965,10,'composer',NULL,NULL),(281358,601553,1,'actress',NULL,'[\"Jamie Sullivan\"]'),(281358,922342,2,'actor',NULL,'[\"Landon Carter\"]'),(281358,1075,3,'actor',NULL,'[\"Reverend Sullivan\"]'),(281358,435,4,'actress',NULL,'[\"Cynthia Carter\"]'),(281358,788202,5,'director',NULL,NULL),(281358,817023,6,'writer','novel',NULL),(281358,418321,7,'writer','screenplay',NULL),(281358,224145,8,'producer','producer',NULL),(281358,523324,9,'producer','producer',NULL),(281373,357000,10,'writer','screenplay',NULL),(281373,421,1,'actor',NULL,'[\"Ted Brooks\"]'),(281373,336,2,'actor',NULL,'[\"Thunder Jack\"]'),(281373,5437,3,'actor',NULL,'[\"Dr. Rupert Brooks\"]'),(281373,629667,4,'actress',NULL,'[\"Amelia Brooks\"]'),(281373,505152,5,'director',NULL,NULL),(281373,467942,6,'writer','screenplay',NULL),(281373,842476,7,'writer','screenplay',NULL),(281373,325271,8,'writer','screenplay',NULL),(281373,317102,9,'writer','screenplay',NULL),(281634,84663,10,'editor',NULL,NULL),(281634,72533,1,'actress',NULL,'[\"Jenna\"]'),(281634,1016,2,'actor',NULL,'[\"Nava\"]'),(281634,327,3,'actress',NULL,'[\"Aleu\"]'),(281634,434,4,'actor',NULL,'[\"Niju\"]'),(281634,918465,5,'director',NULL,NULL),(281634,743361,6,'writer','screenplay by',NULL),(281634,748429,7,'writer','based on characters created by',NULL),(281634,504327,8,'writer','based on characters created by',NULL),(281634,77468,9,'composer',NULL,NULL),(282120,672554,10,'writer','based on characters created by',NULL),(282120,347,1,'actor',NULL,'[\"Nigel Thornberry\",\"Col. Radcliff Thornberry\"]'),(282120,391,2,'actor',NULL,'[\"Sloan Blackburn\"]'),(282120,281359,3,'actor',NULL,'[\"Donnie Thornberry\"]'),(282120,327,4,'actress',NULL,'[\"Eliza Thornberry\"]'),(282120,539782,5,'director',NULL,NULL),(282120,569814,6,'director',NULL,NULL),(282120,100326,7,'writer','written by',NULL),(282120,458312,8,'writer','based on characters created by',NULL),(282120,190780,9,'writer','based on characters created by',NULL),(282123,153552,10,'cinematographer','director of photography',NULL),(282123,59215,1,'actress',NULL,'[\"Vicky Austin\"]'),(282123,581365,2,'actor',NULL,'[\"Adam Eddington\"]'),(282123,655585,3,'actor',NULL,'[\"Zachery Gray\"]'),(282123,690125,4,'actress',NULL,'[\"Suzy Austin\"]'),(282123,66439,5,'director',NULL,NULL),(282123,478291,6,'writer','novel',NULL),(282123,320513,7,'writer','teleplay',NULL),(282123,333949,8,'writer','teleplay',NULL),(282123,551108,9,'composer',NULL,NULL),(282209,792061,10,'producer','producer',NULL),(282209,1015096,1,'actor',NULL,'[\"Kyle\"]'),(282209,146536,2,'actress',NULL,'[\"Caitlin\"]'),(282209,1112328,3,'actor',NULL,'[\"Matilda Dixon\"]'),(282209,1064987,4,'actor',NULL,'[\"Michael\"]'),(282209,509448,5,'director',NULL,NULL),(282209,4591,6,'writer','screenplay by',NULL),(282209,888743,7,'writer','screenplay by',NULL),(282209,364899,8,'writer','screenplay by',NULL),(282209,373723,9,'producer','producer',NULL),(282418,461774,10,'editor',NULL,NULL),(282418,749,1,'actress',NULL,'[\"Susan Costello\"]'),(282418,1759,2,'actor',NULL,'[\"Jack Carver\"]'),(282418,397599,3,'actor',NULL,'[\"Ty\"]'),(282418,153738,4,'actress',NULL,'[\"Amy Costello\"]'),(282418,480843,5,'director',NULL,NULL),(282418,213234,6,'writer','written by',NULL),(282418,736201,7,'producer','producer',NULL),(282418,6012,8,'composer',NULL,NULL),(282418,286030,9,'cinematographer',NULL,NULL),(282521,714070,10,'editor',NULL,NULL),(282521,517820,1,'actress',NULL,'[\"Lexy Gold\"]'),(282521,355379,2,'actor',NULL,'[\"Jack Downey\"]'),(282521,327020,3,'actor',NULL,'[\"Orlando Walker\"]'),(282521,814259,4,'actress',NULL,'[\"Jennifer\"]'),(282521,339245,5,'director',NULL,NULL),(282521,121402,6,'writer','written by',NULL),(282521,674904,7,'producer','producer',NULL),(282521,543779,8,'composer',NULL,NULL),(282521,605731,9,'cinematographer','director of photography',NULL),(282593,725166,10,'cinematographer','director of photography',NULL),(282593,5321,1,'actress',NULL,'[\"Lucy\"]'),(282593,81572,2,'actor',NULL,'[\"Peter\"]'),(282593,354693,3,'actress',NULL,'[\"Saleslady\"]'),(282593,629855,4,'actress',NULL,'[\"Jo\"]'),(282593,1073965,5,'director',NULL,NULL),(282593,690053,6,'writer','written by',NULL),(282593,513927,7,'producer','producer',NULL),(282593,673258,8,'producer','producer',NULL),(282593,6059,9,'composer',NULL,NULL),(282687,586969,10,'producer','producer',NULL),(282687,1401,1,'actress',NULL,'[\"Lanie Kerrigan\"]'),(282687,122653,2,'actor',NULL,'[\"Pete\"]'),(282687,1724,3,'actor',NULL,'[\"Prophet Jack\"]'),(282687,437283,4,'actor',NULL,'[\"Cal Cooper\"]'),(282687,378893,5,'director',NULL,NULL),(282687,791806,6,'writer','story',NULL),(282687,828342,7,'writer','screenplay',NULL),(282687,204862,8,'producer','producer',NULL),(282687,3993,9,'producer','producer',NULL),(282753,864775,10,'producer','producer',NULL),(282753,848371,1,'actress',NULL,'[\"Cookie\"]'),(282753,156457,2,'actress',NULL,'[\"Sissy\"]'),(282753,41239,3,'actress',NULL,'[\"Banana\"]'),(282753,160892,4,'actress',NULL,'[\"Leung Lai-Yee\"]'),(282753,13828,5,'director',NULL,NULL),(282753,41246,6,'writer',NULL,NULL),(282753,492305,7,'writer',NULL,NULL),(282753,874845,8,'writer','executive story editor',NULL),(282753,946042,9,'writer',NULL,NULL),(282771,403984,10,'composer',NULL,NULL),(282771,700875,1,'actor',NULL,'[\"Ramlogan\"]'),(282771,289038,2,'actor',NULL,'[\"Mr. Stewart\"]'),(282771,541902,3,'actor',NULL,'[\"Ganesh\"]'),(282771,1195270,4,'actor',NULL,'[\"Headmaster\"]'),(282771,580337,5,'director',NULL,NULL),(282771,619740,6,'writer','novel',NULL),(282771,680290,7,'writer','screenplay',NULL),(282771,353142,8,'producer','producer',NULL),(282771,7525535,9,'producer','producer',NULL),(282936,1081479,10,'actor',NULL,'[\"Zennosuke Tachibana\"]'),(282936,29330,1,'actress',NULL,'[\"Sakuya\"]'),(282936,793562,2,'actor',NULL,'[\"Syuzo\"]'),(282936,559698,3,'actress',NULL,'[\"Queen of ground spider\"]'),(282936,264303,4,'actress',NULL,'[\"Old woman\"]'),(282936,361765,5,'director',NULL,NULL),(282936,442766,6,'composer',NULL,NULL),(282936,247933,7,'cinematographer',NULL,NULL),(282936,1087819,8,'editor',NULL,NULL),(282936,297800,9,'actor',NULL,'[\"Sakuya\'s dad\"]'),(283003,837875,10,'producer','producer',NULL),(283003,5403,1,'actor',NULL,'[\"Ross\"]'),(283003,491,2,'actor',NULL,'[\"Spider Mike\"]'),(283003,297578,3,'actor',NULL,'[\"Frisbee\"]'),(283003,5261,4,'actress',NULL,'[\"Nikki\"]'),(283003,959774,5,'director',NULL,NULL),(283003,973753,6,'writer','screenplay',NULL),(283003,975325,7,'writer','screenplay',NULL),(283003,360065,8,'producer','producer',NULL),(283003,676301,9,'producer','producer',NULL),(283015,5638,10,'cinematographer','director of photography',NULL),(283015,1252,1,'actor',NULL,'[\"Luca Baglioni\"]'),(283015,210218,2,'actress',NULL,'[\"Jenny Johnson\"]'),(283015,21835,3,'actor',NULL,'[\"Fidel Rodrigo\"]'),(283015,1009774,4,'actress',NULL,'[\"Susana Sánchez\"]'),(283015,13637,5,'writer','screenplay',NULL),(283015,8565164,6,'producer','producer',NULL),(283015,535706,7,'producer','producer',NULL),(283015,630441,8,'producer','producer',NULL),(283015,622782,9,'composer',NULL,NULL),(283084,823661,10,'producer','producer',NULL),(283084,88127,1,'actress',NULL,'[\"Winnie Foster\"]'),(283084,5044,2,'actor',NULL,'[\"Jesse Tuck\"]'),(283084,651,3,'actress',NULL,'[\"Mae Tuck\"]'),(283084,458,4,'actor',NULL,'[\"Angus Tuck\"]'),(283084,751221,5,'director',NULL,NULL),(283084,44810,6,'writer','novel',NULL),(283084,509340,7,'writer','screenplay',NULL),(283084,366337,8,'writer','screenplay',NULL),(283084,8953,9,'producer','producer',NULL),(283139,2353,10,'composer',NULL,NULL),(283139,201,1,'actress',NULL,'[\"Ingrid Magnussen\"]'),(283139,250,2,'actress',NULL,'[\"Claire Richards\"]'),(283139,705,3,'actress',NULL,'[\"Starr\"]'),(283139,517844,4,'actress',NULL,'[\"Astrid Magnussen\"]'),(283139,467225,5,'director',NULL,NULL),(283139,1433521,6,'writer','novel',NULL),(283139,232858,7,'writer','screenplay',NULL),(283139,523324,8,'producer','producer',NULL),(283139,920274,9,'producer','producer',NULL),(283426,776107,10,'writer','additional written material',NULL),(283426,422,1,'actor',NULL,'[\"Baloo\"]'),(283426,5286,2,'actor',NULL,'[\"Mowgli\"]'),(283426,419645,3,'actor',NULL,'[\"Shere Khan\"]'),(283426,926165,4,'actress',NULL,'[\"Shanti\"]'),(283426,872045,5,'director',NULL,NULL),(283426,315324,6,'writer','screenplay by',NULL),(283426,188349,7,'writer','additional written material',NULL),(283426,818746,8,'writer','additional written material',NULL),(283426,721675,9,'writer','additional written material',NULL),(283503,3452,10,'cinematographer','director of photography',NULL),(283503,1923509,1,'actor',NULL,'[\"Young Michael\"]'),(283503,1307735,2,'actor',NULL,'[\"Young Bobby\"]'),(283503,1770233,3,'actor',NULL,'[\"Young Carmine\"]'),(283503,642104,4,'actor',NULL,'[\"Priest\"]'),(283503,180912,5,'director',NULL,NULL),(283503,1010540,6,'writer','written by',NULL),(283503,507669,7,'producer','producer',NULL),(283503,689909,8,'producer','producer',NULL),(283503,718666,9,'composer',NULL,NULL),(283632,644964,10,'cinematographer','director of photography',NULL),(283632,716438,1,'actress',NULL,'[\"Julia Lund\"]'),(283632,89456,2,'actor',NULL,'[\"Paul Loomis\"]'),(283632,256121,3,'actor',NULL,'[\"Sam Burnside\"]'),(283632,231436,4,'actress',NULL,'[\"Terry Alba\"]'),(283632,363553,5,'director',NULL,NULL),(283632,393445,6,'writer','written by',NULL),(283632,257259,7,'producer','producer',NULL),(283632,472256,8,'producer','producer',NULL),(283632,6012,9,'composer',NULL,NULL),(283832,506500,10,'composer',NULL,NULL),(283832,272,1,'actress',NULL,'[\"Pierrette\"]'),(283832,322,2,'actress',NULL,'[\"Louise\"]'),(283832,201638,3,'actress',NULL,'[\"Mamy\"]'),(283832,366,4,'actress',NULL,'[\"Gaby\"]'),(283832,654830,5,'director',NULL,NULL),(283832,888418,6,'writer','collaboration on screenplay',NULL),(283832,859436,7,'writer','play',NULL),(283832,216635,8,'producer','producer',NULL),(283832,592945,9,'producer','producer',NULL),(283877,2640,10,'composer',NULL,NULL),(283877,5109,1,'actress',NULL,'[\"Rachael Newman\"]'),(283877,638,2,'actor',NULL,'[\"Starkman\"]'),(283877,943870,3,'actor',NULL,'[\"Daniels\"]'),(283877,242903,4,'actor',NULL,'[\"Brian\"]'),(283877,293533,5,'director',NULL,NULL),(283877,801882,6,'writer','screenplay',NULL),(283877,974299,7,'writer','screenplay',NULL),(283877,254735,8,'writer','Characters created by',NULL),(283877,53228,9,'producer','producer',NULL),(284034,56086,10,'editor',NULL,NULL),(284034,1567,1,'actress',NULL,'[\"Diane de Monx\"]'),(284034,153,2,'actress',NULL,'[\"Elaine Si Gibril\"]'),(284034,1721,3,'actress',NULL,'[\"Elise Lipsky\"]'),(284034,75650,4,'actor',NULL,'[\"Hervé Le Millinec\"]'),(284034,801,5,'director',NULL,NULL),(284034,316306,6,'producer','producer',NULL),(284034,642553,7,'composer',NULL,NULL),(284034,1019247,8,'composer',NULL,NULL),(284034,3631,9,'cinematographer',NULL,NULL),(284363,115328,10,'editor',NULL,NULL),(284363,1091878,1,'actor',NULL,'[\"mladý Jan Díte\"]'),(284363,435200,2,'actor',NULL,'[\"staý rJan Díte\"]'),(284363,421799,3,'actress',NULL,'[\"Líza\"]'),(284363,479753,4,'actor',NULL,'[\"Walden\"]'),(284363,579954,5,'director',NULL,NULL),(284363,398518,6,'writer','novel',NULL),(284363,81597,7,'producer','producer',NULL),(284363,108353,8,'composer',NULL,NULL),(284363,812179,9,'cinematographer',NULL,NULL),(284478,440556,10,'editor',NULL,NULL),(284478,453492,1,'actress',NULL,'[\"Darcy\",\"Charlotte\"]'),(284478,1067699,2,'actress',NULL,'[\"Lori\"]'),(284478,406866,3,'actor',NULL,'[\"Michael\"]'),(284478,922876,4,'actor',NULL,'[\"Justin\"]'),(284478,125930,5,'director',NULL,NULL),(284478,1201136,6,'writer','story',NULL),(284478,24406,7,'producer','producer',NULL),(284478,111649,8,'composer',NULL,NULL),(284478,402024,9,'cinematographer',NULL,NULL),(284565,1423990,10,'actress',NULL,NULL),(284565,619093,1,'actress',NULL,'[\"Tomie Kawakami\"]'),(284565,386198,2,'actor',NULL,NULL),(284565,972598,3,'actress',NULL,NULL),(284565,969422,4,'actor',NULL,NULL),(284565,409258,5,'director',NULL,NULL),(284565,411702,6,'writer','comic',NULL),(284565,969371,7,'producer','producer',NULL),(284565,793689,8,'producer','producer',NULL),(284565,969836,9,'actress',NULL,NULL),(284655,261133,10,'producer','producer',NULL),(284655,227,1,'actress',NULL,'[\"Meg Kennedy\"]'),(284655,1014,2,'actress',NULL,'[\"Raychel\"]'),(284655,1828,3,'actress',NULL,'[\"Kate\"]'),(284655,621597,4,'actor',NULL,'[\"Mr. Santalino\"]'),(284655,770,5,'director',NULL,NULL),(284655,990399,6,'writer','written by',NULL),(284655,86491,7,'producer','producer',NULL),(284655,89622,8,'producer','producer',NULL),(284655,104274,9,'producer','producer',NULL),(284837,1109088,10,'composer',NULL,NULL),(284837,56187,1,'actor',NULL,'[\"Ali G\",\"Borat\"]'),(284837,729256,2,'actor',NULL,'[\"Rico\"]'),(284837,478834,3,'actress',NULL,'[\"Hoochie 1\"]'),(284837,1169988,4,'actress',NULL,'[\"Hoochie 2\"]'),(284837,617042,5,'director',NULL,NULL),(284837,563243,6,'writer','written by',NULL),(284837,79677,7,'producer','producer',NULL),(284837,271479,8,'producer','producer',NULL),(284837,1094495,9,'producer','producer',NULL),(284978,523324,10,'producer','producer',NULL),(284978,562,1,'actor',NULL,'[\"Morgan Sullivan\"]'),(284978,5154,2,'actress',NULL,'[\"Rita Foster\"]'),(284978,911,3,'actor',NULL,'[\"Finster\"]'),(284978,916448,4,'actor',NULL,'[\"Callaway\"]'),(284978,622112,5,'director',NULL,NULL),(284978,454521,6,'writer','written by',NULL),(284978,270096,7,'producer','producer',NULL),(284978,337284,8,'producer','producer',NULL),(284978,489453,9,'producer','producer',NULL),(285300,693550,10,'production_designer',NULL,NULL),(285300,392288,1,'actress',NULL,'[\"Bep Brul\"]'),(285300,905108,2,'actor',NULL,'[\"De Majoor\"]'),(285300,868131,3,'actor',NULL,'[\"Fats\"]'),(285300,100603,4,'actress',NULL,'[\"Mevrouw De Haas\"]'),(285300,250532,5,'director',NULL,NULL),(285300,623244,6,'producer','producer',NULL),(285300,835394,7,'producer','producer',NULL),(285300,824831,8,'cinematographer',NULL,NULL),(285300,3102,9,'editor',NULL,NULL),(285492,2828,10,'editor',NULL,NULL),(285492,558182,1,'actress',NULL,'[\"Kate Filmore\"]'),(285492,943870,2,'actor',NULL,'[\"Simon Grady\"]'),(285492,475129,3,'actress',NULL,'[\"Sasha\"]'),(285492,272536,4,'actor',NULL,'[\"Max Reisler\"]'),(285492,782900,5,'director',NULL,NULL),(285492,393517,6,'writer','story',NULL),(285492,53228,7,'writer','screenplay',NULL),(285492,572369,8,'writer','screenplay',NULL),(285492,2640,9,'composer',NULL,NULL),(285531,5868,10,'cinematographer','director of photography',NULL),(285531,151,1,'actor',NULL,'[\"Col. Abraham Curtis\"]'),(285531,5048,2,'actor',NULL,'[\"Henry\"]'),(285531,5134,3,'actor',NULL,'[\"Beaver\"]'),(285531,507073,4,'actor',NULL,'[\"Jonesy\"]'),(285531,1410,5,'director',NULL,NULL),(285531,175,6,'writer','novel \"Dreamcatcher\"',NULL),(285531,1279,7,'writer','screenplay',NULL),(285531,645795,8,'producer','producer',NULL),(285531,6133,9,'composer',NULL,NULL),(285627,1056420,10,'producer','producer',NULL),(285627,34309,1,'actor',NULL,'[\"Charles \'Upchuck\' Ruttheimer III\"]'),(285627,108782,2,'actor',NULL,'[\"Professor Bill Woods\"]'),(285627,581631,3,'actress',NULL,'[\"Andrea\",\"Sandi Griffin\",\"Brittany Taylor\"]'),(285627,1120640,4,'actress',NULL,NULL),(285627,228327,5,'director',NULL,NULL),(285627,251550,6,'writer','written by',NULL),(285627,630437,7,'writer','written by',NULL),(285627,111275,8,'producer','producer',NULL),(285627,469955,9,'producer','producer',NULL),(285663,948375,10,'production_designer',NULL,NULL),(285663,457223,1,'actor',NULL,'[\"Juzo\",\"director\"]'),(285663,849437,2,'actress',NULL,'[\"Ikuyo\",\"actress\"]'),(285663,785167,3,'actress',NULL,'[\"Meiko\",\"actress\"]'),(285663,849483,4,'actor',NULL,'[\"Hajime\"]'),(285663,436770,5,'director',NULL,NULL),(285663,1136144,6,'writer','novel',NULL),(285663,1166418,7,'producer','producer',NULL),(285663,1024488,8,'cinematographer',NULL,NULL),(285663,840547,9,'editor',NULL,NULL),(285742,769656,10,'cinematographer','director of photography',NULL),(285742,671,1,'actor',NULL,'[\"Hank Grotowski\"]'),(285742,932,2,'actress',NULL,'[\"Leticia Musgrove\"]'),(285742,801231,3,'actress',NULL,'[\"Lucille\"]'),(285742,1102991,4,'actress',NULL,'[\"Betty\"]'),(285742,286975,5,'director',NULL,NULL),(285742,995906,6,'writer','written by',NULL),(285742,737993,7,'writer','written by',NULL),(285742,200005,8,'producer','producer',NULL),(285742,1449207,9,'composer',NULL,NULL),(285823,104,1,'actor',NULL,'[\"El Mariachi\"]'),(285823,161,2,'actress',NULL,'[\"Carolina\"]'),(285823,136,3,'actor',NULL,'[\"Sands\"]'),(285823,353,4,'actor',NULL,'[\"Barillo\"]'),(285823,1675,5,'director',NULL,NULL),(285823,42882,6,'producer','producer',NULL),(285823,2230,7,'producer','producer',NULL),(285861,572649,10,'producer','producer',NULL),(285861,450,1,'actor',NULL,'[\"Dan Mahowny\"]'),(285861,378,2,'actress',NULL,'[\"Belinda\"]'),(285861,457,3,'actor',NULL,'[\"Victor Foss\"]'),(285861,1999,4,'actor',NULL,'[\"Frank Perlin\"]'),(285861,477193,5,'director',NULL,NULL),(285861,1150736,6,'writer','book \"No Limit\"',NULL),(285861,995925,7,'writer','screenplay',NULL),(285861,131947,8,'producer','producer',NULL),(285861,358877,9,'producer','producer',NULL),(286106,876392,10,'editor',NULL,NULL),(286106,154,1,'actor',NULL,'[\"Graham Hess\"]'),(286106,1618,2,'actor',NULL,'[\"Merrill Hess\"]'),(286106,191412,3,'actor',NULL,'[\"Morgan Hess\"]'),(286106,1113550,4,'actress',NULL,'[\"Bo Hess\"]'),(286106,796117,5,'director',NULL,NULL),(286106,550881,6,'producer','producer',NULL),(286106,580303,7,'producer','producer',NULL),(286106,6133,8,'composer',NULL,NULL),(286106,5714,9,'cinematographer',NULL,NULL),(286112,947799,10,'producer','producer',NULL),(286112,159507,1,'actor',NULL,'[\"Mighty Steel Leg Sing\"]'),(286112,955505,2,'actress',NULL,'[\"Mui\"]'),(286112,939431,3,'actor',NULL,'[\"Iron Head (First Brother)\"]'),(286112,628806,4,'actor',NULL,'[\"Golden Leg Fung\"]'),(286112,874683,5,'writer',NULL,NULL),(286112,298676,6,'writer',NULL,NULL),(286112,1385080,7,'writer',NULL,NULL),(286112,359584,8,'writer',NULL,NULL),(286112,4932610,9,'writer',NULL,NULL),(286137,992386,10,'actor',NULL,'[\"American Physicist\"]'),(286137,993000,1,'actress',NULL,'[\"Andrea\"]'),(286137,992804,2,'actor',NULL,'[\"Tim\"]'),(286137,993098,3,'actress',NULL,'[\"Robin\"]'),(286137,992438,4,'actor',NULL,'[\"Bud\"]'),(286137,992797,5,'actor',NULL,'[\"The Despondent One\"]'),(286137,992762,6,'actor',NULL,'[\"Randy\"]'),(286137,992702,7,'actor',NULL,'[\"Rob\"]'),(286137,992167,8,'actor',NULL,'[\"Tom\"]'),(286137,993075,9,'actress',NULL,'[\"Carol\"]'),(286244,171462,10,'editor',NULL,NULL),(286244,1379544,1,'actress',NULL,'[\"Triplet #3\"]'),(286244,232357,2,'actor',NULL,'[\"Le Géneral de Gaulle\",\"Les commentateurs Sportifs\",\"Le clochard\"]'),(286244,732220,3,'actor',NULL,'[\"\'Champion\' adulte\"]'),(286244,1356853,4,'actress',NULL,'[\"Madame Souza\"]'),(286244,158984,5,'director',NULL,NULL),(286244,116369,6,'producer','producer',NULL),(286244,1320355,7,'producer','producer',NULL),(286244,152844,8,'composer',NULL,NULL),(286244,994669,9,'editor',NULL,NULL),(286261,907970,10,'editor',NULL,NULL),(286261,1758,1,'actor',NULL,'[\"Phil\"]'),(286261,544334,2,'actress',NULL,'[\"Penny\"]'),(286261,790689,3,'actress',NULL,'[\"Maureen\"]'),(286261,307498,4,'actress',NULL,'[\"Rachel\"]'),(286261,5139,5,'director',NULL,NULL),(286261,151925,6,'producer','producer',NULL),(286261,764963,7,'producer','producer',NULL),(286261,225614,8,'composer',NULL,NULL),(286261,5836,9,'cinematographer',NULL,NULL),(286499,510908,10,'cinematographer','director of photography',NULL),(286499,619406,1,'actress',NULL,'[\"Jess\"]'),(286499,461136,2,'actress',NULL,'[\"Jules\"]'),(286499,1667,3,'actor',NULL,'[\"Joe\"]'),(286499,451600,4,'actor',NULL,'[\"Mr. Bhamra\"]'),(286499,149446,5,'director',NULL,NULL),(286499,996493,6,'writer','written by',NULL),(286499,74488,7,'writer','written by',NULL),(286499,623235,8,'producer','producer',NULL),(286499,699192,9,'composer',NULL,NULL),(286716,289833,10,'writer','screenplay',NULL),(286716,51509,1,'actor',NULL,'[\"Bruce Banner\"]'),(286716,124,2,'actress',NULL,'[\"Betty Ross\"]'),(286716,385,3,'actor',NULL,'[\"Ross\"]'),(286716,524197,4,'actor',NULL,'[\"Talbot\"]'),(286716,487,5,'director',NULL,NULL),(286716,498278,6,'writer','Marvel comic book character',NULL),(286716,456158,7,'writer','Marvel comic book character',NULL),(286716,770005,8,'writer','story',NULL),(286716,877273,9,'writer','screenplay',NULL),(286751,945420,10,'producer','producer',NULL),(286751,441964,1,'actor',NULL,'[\"Ryosuke Kawashima\"]'),(286751,39591,2,'actress',NULL,'[\"Michi Kudo\"]'),(286751,468746,3,'actress',NULL,'[\"Harue Karasawa\"]'),(286751,1209191,4,'actress',NULL,'[\"Junko Sasano\"]'),(286751,475905,5,'director',NULL,NULL),(286751,4037412,6,'producer','producer',NULL),(286751,1084385,7,'producer','producer',NULL),(286751,793689,8,'producer','producer',NULL),(286751,793710,9,'producer','producer',NULL),(286788,314088,10,'producer','producer',NULL),(286788,4789,1,'actress',NULL,'[\"Daphne Reynolds\"]'),(286788,147,2,'actor',NULL,'[\"Henry Dashwood\"]'),(286788,593,3,'actress',NULL,'[\"Libby Reynolds\"]'),(286788,1346859,4,'actress',NULL,'[\"Young Daphne\"]'),(286788,330140,5,'director',NULL,NULL),(286788,392942,6,'writer','play \"The Reluctant Debutante\"',NULL),(286788,81081,7,'writer','screenplay',NULL),(286788,151358,8,'writer','screenplay',NULL),(286788,224145,9,'producer','producer',NULL),(286975,1028797,1,'actress',NULL,'[\"Megan Lowry\"]'),(286975,89058,2,'actor',NULL,'[\"Devon White\"]'),(286975,1030458,3,'actor',NULL,'[\"Michael Gibbons\"]'),(286975,1036073,4,'actor',NULL,'[\"Rick Fisher\"]'),(286975,222365,5,'director',NULL,NULL),(286975,310295,6,'composer',NULL,NULL),(286975,609219,7,'cinematographer',NULL,NULL),(286975,372874,8,'production_designer',NULL,NULL),(287467,282936,1,'actress',NULL,'[\"Lydia González\"]'),(287467,194572,2,'actor',NULL,'[\"Benigno Martín\"]'),(287467,334882,3,'actor',NULL,'[\"Marco Zuluaga\"]'),(287467,914455,4,'actress',NULL,'[\"Alicia\"]'),(287467,264,5,'director',NULL,NULL),(287467,407076,6,'composer',NULL,NULL),(287467,13761,7,'cinematographer',NULL,NULL),(287467,757814,8,'editor',NULL,NULL),(287467,351016,9,'production_designer',NULL,NULL),(287471,674265,10,'editor',NULL,NULL),(287471,38988,1,'actor',NULL,'[\"Zaza\"]'),(287471,253813,2,'actress',NULL,'[\"Judith\"]'),(287471,608701,3,'actor',NULL,'[\"Yasha\"]'),(287471,1001218,4,'actress',NULL,'[\"Lili\"]'),(287471,467017,5,'director',NULL,NULL),(287471,747549,6,'producer','producer',NULL),(287471,854923,7,'producer','producer',NULL),(287471,54180,8,'composer',NULL,NULL),(287471,774140,9,'cinematographer',NULL,NULL),(287717,891786,1,'actress',NULL,'[\"Carmen Cortez\"]'),(287717,754512,2,'actor',NULL,'[\"Juni Cortez\"]'),(287717,104,3,'actor',NULL,'[\"Gregorio Cortez\"]'),(287717,1303,4,'actress',NULL,'[\"Ingrid Cortez\"]'),(287717,1675,5,'director',NULL,NULL),(287717,42882,6,'producer','producer',NULL),(287717,2201,7,'composer',NULL,NULL),(287978,179697,10,'cinematographer',NULL,NULL),(287978,255,1,'actor',NULL,'[\"Matt Murdock\",\"Daredevil\"]'),(287978,4950,2,'actress',NULL,'[\"Elektra Natchios\"]'),(287978,268199,3,'actor',NULL,'[\"Bullseye\"]'),(287978,3817,4,'actor',NULL,'[\"Wilson Fisk\",\"The Kingpin\"]'),(287978,425756,5,'director',NULL,NULL),(287978,32696,6,'producer','producer',NULL),(287978,287811,7,'producer','producer',NULL),(287978,586969,8,'producer','producer',NULL),(287978,6251,9,'composer',NULL,NULL),(287986,1040776,10,'composer',NULL,NULL),(287986,851582,1,'actress',NULL,'[\"Michèle\"]'),(287986,46347,2,'actor',NULL,'[\"François\"]'),(287986,220017,3,'actress',NULL,'[\"Valérie\"]'),(287986,414185,4,'actress',NULL,'[\"Evelyne\"]'),(287986,47645,5,'director',NULL,NULL),(287986,850942,6,'writer','screenplay',NULL),(287986,738925,7,'writer',NULL,NULL),(287986,70300,8,'producer','producer',NULL),(287986,764963,9,'producer','producer',NULL),(288439,459517,10,'composer',NULL,NULL),(288439,146915,1,'actor',NULL,'[\"Val Duncan\"]'),(288439,4936,2,'actor',NULL,'[\"Trevor Adams\"]'),(288439,365826,3,'actor',NULL,'[\"Sean\"]'),(288439,597223,4,'actress',NULL,'[\"Ellie Milford\"]'),(288439,272704,5,'director',NULL,NULL),(288439,557895,6,'writer','written by',NULL),(288439,300111,7,'producer','producer',NULL),(288439,375402,8,'producer','producer',NULL),(288439,374112,9,'composer',NULL,NULL),(288441,6318,10,'writer','based on The Nutcracker by',NULL),(288441,792198,1,'actress',NULL,'[\"Barbie\",\"Clara\"]'),(288441,607516,2,'actor',NULL,'[\"Nutcracker\",\"Prince Eric\"]'),(288441,347,3,'actor',NULL,'[\"Mouse King\"]'),(288441,445389,4,'actor',NULL,'[\"Pimm\"]'),(288441,403481,5,'director',NULL,NULL),(288441,257323,6,'writer','written by',NULL),(288441,1007225,7,'writer','written by',NULL),(288441,399746,8,'writer','written by',NULL),(288441,6782,9,'writer','based on the tale by',NULL),(288477,709,10,'producer','producer',NULL),(288477,523,1,'actress',NULL,'[\"Epps\"]'),(288477,321,2,'actor',NULL,'[\"Murphy\"]'),(288477,253035,3,'actor',NULL,'[\"Dodge\"]'),(288477,4993,4,'actor',NULL,'[\"Ferriman\"]'),(288477,65284,5,'director',NULL,NULL),(288477,360144,6,'writer','story',NULL),(288477,688282,7,'writer','screenplay',NULL),(288477,12155,8,'producer','producer',NULL),(288477,5428,9,'producer','producer',NULL),(289043,318639,10,'editor',NULL,NULL),(289043,614165,1,'actor',NULL,'[\"Jim\"]'),(289043,365140,2,'actress',NULL,'[\"Selena\"]'),(289043,1172,3,'actor',NULL,'[\"Major Henry West\"]'),(289043,658099,4,'actor',NULL,'[\"Activist\"]'),(289043,965,5,'director',NULL,NULL),(289043,307497,6,'writer','written by',NULL),(289043,531602,7,'producer','producer',NULL),(289043,614373,8,'composer',NULL,NULL),(289043,230045,9,'cinematographer','director of photography',NULL),(289408,736711,10,'writer','story',NULL),(289408,146681,1,'actress',NULL,'[\"Blossom\"]'),(289408,152839,2,'actress',NULL,'[\"Bubbles\"]'),(289408,197354,3,'actress',NULL,'[\"Buttercup\"]'),(289408,413996,4,'actor',NULL,'[\"Mojo Jojo\"]'),(289408,566833,5,'director',NULL,NULL),(289408,63769,6,'writer','written by',NULL),(289408,269260,7,'writer','written by',NULL),(289408,748796,8,'writer','written by',NULL),(289408,788130,9,'writer','written by',NULL),(289424,389966,10,'editor',NULL,NULL),(289424,793781,1,'actress',NULL,'[\"Sun-ju\"]'),(289424,1030825,2,'actor',NULL,NULL),(289424,1045685,3,'actor',NULL,'[\"Choi Yeol\"]'),(289424,453385,4,'actor',NULL,NULL),(289424,1013656,5,'director',NULL,NULL),(289424,840626,6,'writer','novel \"Ringu\"',NULL),(289424,1065700,7,'producer','producer',NULL),(289424,938854,8,'composer',NULL,NULL),(289424,1030179,9,'cinematographer',NULL,NULL),(289765,384,10,'composer',NULL,NULL),(289765,164,1,'actor',NULL,'[\"Hannibal Lecter\"]'),(289765,1570,2,'actor',NULL,'[\"Will Graham\"]'),(289765,146,3,'actor',NULL,'[\"Francis Dolarhyde\"]'),(289765,172,4,'actor',NULL,'[\"Jack Crawford\"]'),(289765,711840,5,'director',NULL,NULL),(289765,365383,6,'writer','based on the book by',NULL),(289765,848217,7,'writer','screenplay by',NULL),(289765,209569,8,'producer','producer',NULL),(289765,776646,9,'producer','producer',NULL),(289879,818940,10,'producer','producer',NULL),(289879,5110,1,'actor',NULL,'[\"Evan\"]'),(289879,5442,2,'actress',NULL,'[\"Kayleigh\"]'),(289879,1828,3,'actress',NULL,'[\"Andrea\"]'),(289879,711805,4,'actor',NULL,'[\"Lenny\"]'),(289879,107774,5,'director',NULL,NULL),(289879,344259,6,'director',NULL,NULL),(289879,70454,7,'producer','producer',NULL),(289879,228690,8,'producer','producer',NULL),(289879,722603,9,'producer','producer',NULL),(289944,1138028,10,'composer',NULL,NULL),(289944,1806,1,'actor',NULL,'[\"Harry\"]'),(289944,679,2,'actress',NULL,'[\"Kate\"]'),(289944,570819,3,'actor',NULL,'[\"Phil\"]'),(289944,950165,4,'actor',NULL,'[\"Agent Lawrence\"]'),(289944,716347,5,'director',NULL,NULL),(289944,782968,6,'writer','screenplay by',NULL),(289944,200546,7,'producer','producer',NULL),(289944,6061,8,'composer',NULL,NULL),(289944,3599794,9,'composer',NULL,NULL),(290002,357453,10,'writer','screenplay',NULL),(290002,1774,1,'actor',NULL,'[\"Greg Focker\"]'),(290002,134,2,'actor',NULL,'[\"Jack Byrnes\"]'),(290002,1100,3,'actress',NULL,'[\"Dina Byrnes\"]'),(290002,1632,4,'actress',NULL,'[\"Pam Byrnes\"]'),(290002,5366,5,'director',NULL,NULL),(290002,322839,6,'writer','characters',NULL),(290002,164898,7,'writer','characters',NULL),(290002,381272,8,'writer','story',NULL),(290002,405190,9,'writer','story',NULL),(290095,775443,10,'producer','producer',NULL),(290095,329,1,'actor',NULL,'[\"Jimmy Tong\"]'),(290095,1349,2,'actress',NULL,'[\"Del Blaine\"]'),(290095,5042,3,'actor',NULL,'[\"Clark Devlin\"]'),(290095,529,4,'actress',NULL,'[\"Steena\"]'),(290095,1019493,5,'director',NULL,NULL),(290095,6534,6,'writer','story',NULL),(290095,542062,7,'writer','story',NULL),(290095,5022110,8,'writer','story',NULL),(290095,498775,9,'writer','screenplay',NULL),(290334,795682,10,'producer','producer',NULL),(290334,1772,1,'actor',NULL,'[\"Professor Charles Xavier\"]'),(290334,413168,2,'actor',NULL,'[\"Logan\",\"Wolverine\"]'),(290334,932,3,'actress',NULL,'[\"Ororo Munroe\",\"Storm\"]'),(290334,5212,4,'actor',NULL,'[\"Eric Lehnsherr\",\"Magneto\"]'),(290334,1741,5,'director',NULL,NULL),(290334,672015,6,'writer','story',NULL),(290334,371684,7,'writer','story',NULL),(290334,1002424,8,'writer','screenplay',NULL),(290334,3529,9,'writer','screenplay',NULL),(290661,771131,10,'editor',NULL,NULL),(290661,389463,1,'actress',NULL,'[\"Die Autostopperin\"]'),(290661,423191,2,'actress',NULL,'[\"Die Lehrerin\"]'),(290661,1199385,3,'actor',NULL,'[\"Der Liebhaber\"]'),(290661,295429,4,'actor',NULL,'[\"Der Freund des Liebhabers\"]'),(290661,782430,5,'director',NULL,NULL),(290661,1072411,6,'writer','screenplay',NULL),(290661,90350,7,'producer','producer',NULL),(290661,335875,8,'producer','producer',NULL),(290661,856946,9,'cinematographer',NULL,NULL),(290664,90867,10,'editor',NULL,NULL),(290664,235,1,'actress',NULL,'[\"Debby Miller\"]'),(290664,496,2,'actress',NULL,'[\"Beth\"]'),(290664,1687,3,'actress',NULL,'[\"Virginia Miller\"]'),(290664,150362,4,'actor',NULL,'[\"Rick\"]'),(290664,619762,5,'director',NULL,NULL),(290664,128680,6,'writer','play',NULL),(290664,212990,7,'producer','producer',NULL),(290664,53427,8,'composer',NULL,NULL),(290664,2336,9,'cinematographer',NULL,NULL),(290673,899,1,'actress',NULL,'[\"Alex\"]'),(290673,1993,2,'actor',NULL,'[\"Marcus\"]'),(290673,243355,3,'actor',NULL,'[\"Pierre\"]'),(290673,619600,4,'actor',NULL,'[\"L\'homme\"]'),(290673,637615,5,'director',NULL,NULL),(290673,744384,6,'producer','producer',NULL),(290673,51939,7,'composer',NULL,NULL),(290673,213424,8,'cinematographer',NULL,NULL),(290673,1030357,9,'production_designer',NULL,NULL),(290879,234193,10,'cinematographer',NULL,NULL),(290879,1028146,1,'actress',NULL,'[\"Queen Suriyothai\"]'),(290879,1033693,2,'actor',NULL,'[\"King Mahachakrepat (Prince Thienraja)\"]'),(290879,969934,3,'actor',NULL,'[\"Lord Pirenthorathep\"]'),(290879,1035342,4,'actor',NULL,'[\"Lord Warawongsa\"]'),(290879,950841,5,'director',NULL,NULL),(290879,2037127,6,'writer','written by',NULL),(290879,1324696,7,'producer','producer',NULL),(290879,6124,8,'composer',NULL,NULL),(290879,117754,9,'cinematographer',NULL,NULL),(290916,56434,10,'production_designer',NULL,NULL),(290916,1648,1,'actress',NULL,'[\"Elizabeth Lannier\"]'),(290916,244850,2,'actor',NULL,'[\"Bertrand Lannier\"]'),(290916,962,3,'actress',NULL,'[\"Lulu\"]'),(290916,3508,4,'actor',NULL,'[\"Jean-Pierre\"]'),(290916,1028720,5,'writer','book \"Summer Things\"',NULL),(290916,549366,6,'producer','producer',NULL),(290916,751319,7,'composer',NULL,NULL),(290916,90312,8,'cinematographer',NULL,NULL),(290916,599958,9,'editor',NULL,NULL),(291213,651969,10,'cinematographer',NULL,NULL),(291213,1031534,1,'actress',NULL,'[\"Kati\"]'),(291213,378932,2,'actress',NULL,'[\"Steffi\"]'),(291213,1029101,3,'actress',NULL,'[\"Tessa\"]'),(291213,935705,4,'actor',NULL,'[\"Carlos\"]'),(291213,374842,5,'director',NULL,NULL),(291213,869236,6,'producer','producer',NULL),(291213,932731,7,'producer','producer',NULL),(291213,295900,8,'composer',NULL,NULL),(291213,1257849,9,'composer',NULL,NULL),(291350,1552248,10,'editor',NULL,NULL),(291350,796153,1,'actress',NULL,'[\"Chiyoko Fujiwara (70\'s)\"]'),(291350,959936,2,'actor',NULL,'[\"Genya Tachibana\"]'),(291350,468708,3,'actress',NULL,'[\"Chiyoko Fujiwara (20-40\'s)\"]'),(291350,1046347,4,'actress',NULL,'[\"Chiyoko Fujiwara (10-20\'s)\"]'),(291350,464804,5,'director',NULL,NULL),(291350,613444,6,'writer','screenplay',NULL),(291350,538592,7,'producer','producer',NULL),(291350,386279,8,'composer',NULL,NULL),(291350,794174,9,'cinematographer',NULL,NULL),(291476,4820632,1,'actor',NULL,'[\"Sherlock Holmes\"]'),(291476,555522,2,'director',NULL,NULL),(291476,236279,3,'writer','character',NULL),(291579,449255,10,'production_designer',NULL,NULL),(291579,851582,1,'actress',NULL,'[\"Angélique\"]'),(291579,494078,2,'actor',NULL,'[\"Loic\"]'),(291579,141140,3,'actress',NULL,'[\"Rachel\"]'),(291579,347069,4,'actress',NULL,'[\"Héloïse\"]'),(291579,172989,5,'director',NULL,NULL),(291579,858277,6,'writer','collaborator on screenplay and dialogue',NULL),(291579,183428,7,'composer',NULL,NULL),(291579,44545,8,'cinematographer',NULL,NULL),(291579,663221,9,'editor',NULL,NULL),(291988,652964,10,'actor',NULL,'[\"Carlos\"]'),(291988,1030946,1,'actor',NULL,'[\"Roberto\"]'),(291988,1035096,2,'actor',NULL,'[\"Don Justo Benedictis\"]'),(291988,1028330,3,'actress',NULL,'[\"María Flores\"]'),(291988,1325251,4,'actress',NULL,'[\"Rosa\"]'),(291988,815044,5,'director',NULL,NULL),(291988,1258535,6,'writer',NULL,NULL),(291988,1259300,7,'composer',NULL,NULL),(291988,170130,8,'cinematographer',NULL,NULL),(291988,1258258,9,'editor',NULL,NULL),(292506,53388,10,'producer','producer',NULL),(292506,199,1,'actor',NULL,'[\"Walter Burke\"]'),(292506,268199,2,'actor',NULL,'[\"James Douglas Clayton\"]'),(292506,5256,3,'actress',NULL,'[\"Layla Moore\"]'),(292506,532683,4,'actor',NULL,'[\"Zack\"]'),(292506,2044,5,'director',NULL,NULL),(292506,870013,6,'writer','written by',NULL),(292506,934483,7,'writer','written by',NULL),(292506,322248,8,'writer','written by',NULL),(292506,32314,9,'producer','producer',NULL),(292644,1115123,10,'editor',NULL,NULL),(292644,4735,1,'actor',NULL,'[\"Sean Bateman\"]'),(292644,813812,2,'actor',NULL,'[\"Paul Denton\"]'),(292644,815370,3,'actress',NULL,'[\"Lauren Hynde\"]'),(292644,4754,4,'actress',NULL,'[\"Lara\"]'),(292644,812,5,'director',NULL,NULL),(292644,254735,6,'writer','novel \"The Rules of Attraction\"',NULL),(292644,788513,7,'producer','producer',NULL),(292644,354453,8,'composer',NULL,NULL),(292644,109658,9,'cinematographer',NULL,NULL),(292963,2272995,10,'producer','producer',NULL),(292963,450,1,'actor',NULL,'[\"Andy\"]'),(292963,160,2,'actor',NULL,'[\"Hank\"]'),(292963,1215,3,'actor',NULL,'[\"Charles\"]'),(292963,673,4,'actress',NULL,'[\"Gina\"]'),(292963,1486,5,'director',NULL,NULL),(292963,1031176,6,'writer','written by',NULL),(292963,148535,7,'producer','producer',NULL),(292963,319501,8,'producer','producer',NULL),(292963,1280156,9,'producer','producer',NULL),(293113,206109,10,'editor',NULL,NULL),(293113,1041931,1,'actor',NULL,'[\"Dracula\"]'),(293113,1039461,2,'actress',NULL,'[\"Lucy Westernra\"]'),(293113,606074,3,'actor',NULL,'[\"Dr. Van Helsing\"]'),(293113,1041564,4,'actress',NULL,'[\"Mina\"]'),(293113,534665,5,'director',NULL,NULL),(293113,831290,6,'writer','novel \"Dracula\"',NULL),(293113,1136257,7,'writer','ballet Dracula',NULL),(293113,902419,8,'producer','producer',NULL),(293113,837181,9,'cinematographer','director of photography',NULL),(293429,864880,10,'writer','based on the videogame created by',NULL),(293429,1167985,1,'actor',NULL,'[\"Cole Young\"]'),(293429,2537621,2,'actress',NULL,'[\"Sonya Blade\"]'),(293429,493257,3,'actor',NULL,'[\"Kano\"]'),(293429,3029144,4,'actor',NULL,'[\"Bi-Han\",\"Sub-Zero\"]'),(293429,2585406,5,'director',NULL,NULL),(293429,3859643,6,'writer','screenplay by',NULL),(293429,1709264,7,'writer','screenplay by',NULL),(293429,3349927,8,'writer','story by',NULL),(293429,95460,9,'writer','based on the videogame created by',NULL),(293508,695421,10,'production_designer',NULL,NULL),(293508,124930,1,'actor',NULL,'[\"The Phantom\"]'),(293508,2536,2,'actress',NULL,'[\"Christine\"]'),(293508,933940,3,'actor',NULL,'[\"Raoul\"]'),(293508,1669,4,'actress',NULL,'[\"Madame Giry\"]'),(293508,1708,5,'director',NULL,NULL),(293508,503693,6,'writer','novel \"Le Fantôme de L\'Opéra\"',NULL),(293508,515908,7,'writer','book',NULL),(293508,558822,8,'cinematographer',NULL,NULL),(293508,712625,9,'editor',NULL,NULL),(293564,322802,10,'producer','producer',NULL),(293564,329,1,'actor',NULL,'[\"Lee\"]'),(293564,676,2,'actor',NULL,'[\"Carter\"]'),(293564,1884,3,'actor',NULL,'[\"Reynard\"]'),(293564,760796,4,'actor',NULL,'[\"Kenji\"]'),(293564,711840,5,'director',NULL,NULL),(293564,622288,6,'writer','written by',NULL),(293564,482780,7,'writer','characters',NULL),(293564,83696,8,'producer','producer',NULL),(293564,2397,9,'producer','producer',NULL),(293662,6010,10,'composer',NULL,NULL),(293662,5458,1,'actor',NULL,'[\"Frank Martin\"]'),(293662,795517,2,'actress',NULL,'[\"Lai\"]'),(293662,776580,3,'actor',NULL,'[\"Wall Street\"]'),(293662,75710,4,'actor',NULL,'[\"Inspector Tarconi\"]'),(293662,504642,5,'director',NULL,NULL),(293662,477035,6,'director',NULL,NULL),(293662,108,7,'writer','written by',NULL),(293662,436543,8,'writer','written by',NULL),(293662,153893,9,'producer','producer',NULL),(293815,385720,10,'editor',NULL,NULL),(293815,1084,1,'actor',NULL,'[\"Craig\"]'),(293815,258402,2,'actor',NULL,'[\"Day-Day\",\"Old Man with Shotgun\"]'),(293815,936762,3,'actor',NULL,'[\"Mr. Jones\"]'),(293815,193066,4,'actor',NULL,'[\"Uncle Elroy\"]'),(293815,1048560,5,'director',NULL,NULL),(293815,690770,6,'writer','characters',NULL),(293815,23297,7,'producer','producer',NULL),(293815,614373,8,'composer',NULL,NULL),(293815,534215,9,'cinematographer',NULL,NULL),(294425,125809,10,'cinematographer','director of photography',NULL),(294425,240381,1,'actress',NULL,'[\"Kelly\"]'),(294425,5579,2,'actress',NULL,'[\"Jennifer\"]'),(294425,170550,3,'actor',NULL,'[\"Sir\"]'),(294425,39162,4,'actor',NULL,'[\"Brad\"]'),(294425,789834,5,'director',NULL,NULL),(294425,661275,6,'writer','written by',NULL),(294425,1047701,7,'writer','written by',NULL),(294425,480804,8,'producer','producer',NULL),(294425,457598,9,'composer',NULL,NULL),(294870,705365,10,'producer','producer',NULL),(294870,4875,1,'actor',NULL,'[\"Benjamin Coffin III\"]'),(294870,378880,2,'actor',NULL,'[\"Angel Dumott Schunard\"]'),(294870,206257,3,'actress',NULL,'[\"Mimi Marquez\"]'),(294870,710829,4,'actor',NULL,'[\"Mark Cohen\"]'),(294870,1060,5,'director',NULL,NULL),(294870,1170227,6,'writer','book by',NULL),(294870,154716,7,'writer','screenplay by',NULL),(294870,55431,8,'producer','producer',NULL),(294870,134,9,'producer','producer',NULL),(295178,865189,10,'producer','producer',NULL),(295178,196,1,'actor',NULL,'[\"Austin Powers\",\"Dr. Evil\",\"Goldmember\"]'),(295178,461498,2,'actress',NULL,'[\"Foxxy Cleopatra\"]'),(295178,1293,3,'actor',NULL,'[\"Scott Evil\"]'),(295178,1868,4,'actor',NULL,'[\"Basil Exposition\"]'),(295178,5366,5,'director',NULL,NULL),(295178,567112,6,'writer','written by',NULL),(295178,529092,7,'producer','producer',NULL),(295178,572805,8,'producer','producer',NULL),(295178,193,9,'producer','producer',NULL),(295297,695536,10,'cinematographer','director of photography',NULL),(295297,705356,1,'actor',NULL,'[\"Harry Potter\"]'),(295297,342488,2,'actor',NULL,'[\"Ron Weasley\"]'),(295297,914612,3,'actress',NULL,'[\"Hermione Granger\"]'),(295297,1321,4,'actor',NULL,'[\"Albus Dumbledore\"]'),(295297,1060,5,'director',NULL,NULL),(295297,746830,6,'writer','novel',NULL),(295297,460141,7,'writer','screenplay',NULL),(295297,382268,8,'producer','producer',NULL),(295297,2354,9,'composer',NULL,NULL),(295427,803022,10,'producer','producer',NULL),(295427,1022,1,'actor',NULL,'[\"Pistachio Disguisey\"]'),(295427,261170,2,'actress',NULL,'[\"Jennifer Baker\"]'),(295427,332390,3,'actor',NULL,'[\"Grandfather Disguisey\"]'),(295427,981,4,'actor',NULL,'[\"Fabbrizio Disguisey\"]'),(295427,86690,5,'director',NULL,NULL),(295427,325214,6,'writer','written by',NULL),(295427,76444,7,'producer','producer',NULL),(295427,304398,8,'producer','producer',NULL),(295427,307776,9,'producer','producer',NULL),(295671,808958,10,'producer','producer',NULL),(295671,785842,1,'actor',NULL,'[\"Tony Pisapia\"]'),(295671,719956,2,'actor',NULL,'[\"Antonio Pisapia\"]'),(295671,116670,3,'actor',NULL,'[\"Genny\"]'),(295671,329427,4,'actress',NULL,'[\"Franca\"]'),(295671,815204,5,'director',NULL,NULL),(295671,162317,6,'producer','producer',NULL),(295671,193175,7,'producer','producer',NULL),(295671,321333,8,'producer','producer',NULL),(295671,603726,9,'producer','producer',NULL),(295700,935644,10,'producer','producer',NULL),(295700,244630,1,'actress',NULL,'[\"Jessie Burlingame\"]'),(295700,5438,2,'actor',NULL,'[\"Scott\"]'),(295700,4825,3,'actress',NULL,'[\"Carly\"]'),(295700,4993,4,'actor',NULL,'[\"Chris Flynn\"]'),(295700,3343,5,'director',NULL,NULL),(295700,568416,6,'writer','written by',NULL),(295700,270549,7,'producer','producer',NULL),(295700,989278,8,'producer','producer',NULL),(295700,474709,9,'producer','producer',NULL),(295701,495605,10,'editor',NULL,NULL),(295701,4874,1,'actor',NULL,'[\"Xander Cage\"]'),(295701,782,2,'actress',NULL,'[\"Yelena\"]'),(295701,190744,3,'actor',NULL,'[\"Yorgi\"]'),(295701,168,4,'actor',NULL,'[\"Agent Augustus Gibbons\"]'),(295701,3418,5,'director',NULL,NULL),(295701,929186,6,'writer','written by',NULL),(295701,605775,7,'producer','producer',NULL),(295701,6055,8,'composer',NULL,NULL),(295701,5871,9,'cinematographer','director of photography',NULL),(295725,700525,10,'production_designer',NULL,NULL),(295725,605514,1,'actor',NULL,'[\"Russell Carlisle\"]'),(295725,533891,2,'actor',NULL,'[\"Norris Anderson\"]'),(295725,511604,3,'actor',NULL,'[\"The Dean\"]'),(295725,642198,4,'actress',NULL,'[\"Michelle Bain\"]'),(295725,160126,5,'director',NULL,NULL),(295725,235948,6,'producer','producer',NULL),(295725,2535,7,'composer',NULL,NULL),(295725,403526,8,'cinematographer',NULL,NULL),(295725,391196,9,'editor',NULL,NULL),(296042,1069908,10,'composer',NULL,NULL),(296042,38355,1,'actor',NULL,'[\"Kakihara\"]'),(296042,1071413,2,'actor',NULL,'[\"Ichi\"]'),(296042,875354,3,'actor',NULL,'[\"Jijii\"]'),(296042,837282,4,'actress',NULL,'[\"Karen\"]'),(296042,586281,5,'director',NULL,NULL),(296042,766499,6,'writer','screenplay',NULL),(296042,1152460,7,'writer','manga',NULL),(296042,298592,8,'producer','producer',NULL),(296042,594499,9,'producer','producer',NULL),(296166,2681,10,'cinematographer',NULL,NULL),(296166,1065229,1,'actress',NULL,'[\"Ana Garcia\"]'),(296166,648913,2,'actress',NULL,'[\"Carmen Garcia\"]'),(296166,646488,3,'actress',NULL,'[\"Estela Garcia\"]'),(296166,520064,4,'actor',NULL,'[\"Mr. Guzman\"]'),(296166,136603,5,'director',NULL,NULL),(296166,1058851,6,'writer','play',NULL),(296166,492215,7,'writer','teleplay',NULL),(296166,113500,8,'producer','producer',NULL),(296166,673137,9,'composer',NULL,NULL),(296251,5426384,10,'cinematographer','director of photography',NULL),(296251,117070,1,'actress',NULL,'[\"Tru\"]'),(296251,479471,2,'actor',NULL,'[\"Eddie\"]'),(296251,1858,3,'actress',NULL,'[\"Ginny\"]'),(296251,570306,4,'actor',NULL,'[\"Bob\"]'),(296251,388505,5,'director',NULL,NULL),(296251,1070424,6,'writer','novel',NULL),(296251,471217,7,'writer','teleplay',NULL),(296251,562025,8,'producer','producer',NULL),(296251,6025,9,'composer',NULL,NULL),(296572,6251,10,'composer',NULL,NULL),(296572,4874,1,'actor',NULL,'[\"Riddick\"]'),(296572,1132,2,'actress',NULL,'[\"Aereon\"]'),(296572,272173,3,'actor',NULL,'[\"Lord Marshal\"]'),(296572,628601,4,'actress',NULL,'[\"Dame Vaako\"]'),(296572,878638,5,'director',NULL,NULL),(296572,923646,6,'writer','characters',NULL),(296572,3117,7,'writer','characters',NULL),(296572,962647,8,'producer','producer',NULL),(296572,472256,9,'producer','producer',NULL),(296658,158883,10,'cinematographer',NULL,NULL),(296658,46277,1,'actress',NULL,'[\"Tae-hie\"]'),(296658,1030827,2,'actress',NULL,'[\"Hye-ju\"]'),(296658,1062747,3,'actress',NULL,'[\"Ji-young\"]'),(296658,2419680,4,'actress',NULL,'[\"Bi-ryu\"]'),(296658,1062423,5,'director',NULL,NULL),(296658,1282158,6,'writer',NULL,NULL),(296658,1459238,7,'writer','adaptation',NULL),(296658,1233726,8,'producer','producer',NULL),(296658,3293938,9,'composer',NULL,NULL),(297037,2926,10,'cinematographer','director of photography',NULL),(297037,4875,1,'actor',NULL,'[\"Andre Romulus \'Dre\' Ellis\"]'),(297037,5125,2,'actress',NULL,'[\"Sidney \'Syd\' Shaw\"]'),(297037,80049,3,'actor',NULL,'[\"Chris \'Cav\' Anton Vichon\"]'),(297037,662519,4,'actress',NULL,'[\"Reese Marie Wiggam Ellis\"]'),(297037,266622,5,'director',NULL,NULL),(297037,254288,6,'writer','story',NULL),(297037,4458,7,'producer','producer',NULL),(297037,403648,8,'composer',NULL,NULL),(297037,1379025,9,'cinematographer',NULL,NULL),(297181,771065,10,'writer','screenplay',NULL),(297181,552,1,'actor',NULL,'[\"Kelly\"]'),(297181,5562,2,'actor',NULL,'[\"Alex\"]'),(297181,463,3,'actress',NULL,'[\"Rachel\"]'),(297181,532,4,'actor',NULL,'[\"Gundars\"]'),(297181,858525,5,'director',NULL,NULL),(297181,277643,6,'writer','characters',NULL),(297181,295053,7,'writer','characters',NULL),(297181,926729,8,'writer','story',NULL),(297181,926727,9,'writer','story',NULL),(297284,628352,10,'producer','producer',NULL),(297284,174,1,'actor',NULL,'[\"Jake Harris\"]'),(297284,5112,2,'actor',NULL,'[\"Gabe Jensen\"]'),(297284,225,3,'actor',NULL,'[\"J.D. Reston\"]'),(297284,47248,4,'actor',NULL,'[\"Bobby Whitman\"]'),(297284,1317,5,'director',NULL,NULL),(297284,469694,6,'writer','story',NULL),(297284,110778,7,'writer','screenplay',NULL),(297284,111225,8,'producer','producer',NULL),(297284,326040,9,'producer','producer',NULL),(297884,529071,10,'editor',NULL,NULL),(297884,194,1,'actress',NULL,'[\"Cathy Whitaker\"]'),(297884,598,2,'actor',NULL,'[\"Frank Whitaker\"]'),(297884,371660,3,'actor',NULL,'[\"Raymond Deagan\"]'),(297884,165101,4,'actress',NULL,'[\"Eleanor Fine\"]'),(297884,1331,5,'director',NULL,NULL),(297884,666580,6,'producer','producer',NULL),(297884,882927,7,'producer','producer',NULL),(297884,930,8,'composer',NULL,NULL),(297884,5767,9,'cinematographer','director of photography',NULL),(298130,662748,10,'producer','producer',NULL),(298130,915208,1,'actress',NULL,'[\"Rachel\"]'),(298130,376540,2,'actor',NULL,'[\"Noah\"]'),(298130,4051,3,'actor',NULL,'[\"Richard Morgan\"]'),(298130,233562,4,'actor',NULL,'[\"Aidan\"]'),(298130,893659,5,'director',NULL,NULL),(298130,472567,6,'writer','screenplay',NULL),(298130,840626,7,'writer','novel \"The Ring\"',NULL),(298130,847126,8,'writer',NULL,NULL),(298130,531827,9,'producer','producer',NULL),(298148,826425,10,'writer','screenplay by',NULL),(298148,196,1,'actor',NULL,'[\"Shrek\"]'),(298148,552,2,'actor',NULL,'[\"Donkey\"]'),(298148,139,3,'actress',NULL,'[\"Princess Fiona\"]'),(298148,267,4,'actress',NULL,'[\"Queen\"]'),(298148,11470,5,'director',NULL,NULL),(298148,38432,6,'director',NULL,NULL),(298148,970447,7,'director',NULL,NULL),(298148,825308,8,'writer','based upon the book by',NULL),(298148,830294,9,'writer','screenplay by',NULL),(298203,457738,10,'editor',NULL,NULL),(298203,4896,1,'actor',NULL,'[\"Jimmy\"]'),(298203,5261,2,'actress',NULL,'[\"Alex\"]'),(298203,107,3,'actress',NULL,'[\"Stephanie\"]'),(298203,1616,4,'actor',NULL,'[\"Future\"]'),(298203,436,5,'director',NULL,NULL),(298203,798788,6,'writer','written by',NULL),(298203,4976,7,'producer','producer',NULL),(298203,409666,8,'producer','producer',NULL),(298203,6509,9,'cinematographer',NULL,NULL),(298228,314713,10,'composer',NULL,NULL),(298228,1095720,1,'actress',NULL,'[\"Paikea\"]'),(298228,660984,2,'actor',NULL,'[\"Koro\"]'),(298228,369357,3,'actress',NULL,'[\"Nanny Flowers\"]'),(298228,193295,4,'actor',NULL,'[\"Porourangi\"]'),(298228,138927,5,'director',NULL,NULL),(298228,1065547,6,'writer','book \"The Whale Rider\"',NULL),(298228,55922,7,'producer','producer',NULL),(298228,399541,8,'producer','producer',NULL),(298228,761744,9,'producer','producer',NULL),(298482,3441,10,'editor',NULL,NULL),(298482,382110,1,'actor',NULL,'[\"Dave\"]'),(298482,587884,2,'actor',NULL,'[\"Andrew\"]'),(298482,684521,3,'actor',NULL,'[\"Man In Suit\"]'),(298482,189887,4,'actress',NULL,'[\"Sara\"]'),(298482,622112,5,'director',NULL,NULL),(298482,523198,6,'writer','written by',NULL),(298482,387541,7,'producer','co-executive producer',NULL),(298482,28787,8,'composer',NULL,NULL),(298482,736835,9,'cinematographer',NULL,NULL),(298814,2366,10,'composer',NULL,NULL),(298814,1173,1,'actor',NULL,'[\"Josh\"]'),(298814,5476,2,'actress',NULL,'[\"Beck\"]'),(298814,5148,3,'actor',NULL,'[\"Brazzelton\"]'),(298814,339304,4,'actor',NULL,'[\"Commander Richard Iverson\"]'),(298814,750,5,'director',NULL,NULL),(298814,493548,6,'writer','written by',NULL),(298814,736966,7,'writer','written by',NULL),(298814,47489,8,'producer','producer',NULL),(298814,287759,9,'producer','producer',NULL),(299172,501729,10,'writer','story by',NULL),(299172,1132,1,'actress',NULL,'[\"Mrs. Caloway\"]'),(299172,421,2,'actor',NULL,'[\"Buck\"]'),(299172,236,3,'actress',NULL,'[\"Grace\"]'),(299172,1642,4,'actor',NULL,'[\"Alameda Slim\"]'),(299172,278181,5,'director',NULL,NULL),(299172,998551,6,'director',NULL,NULL),(299172,1713427,7,'writer','story by',NULL),(299172,505946,8,'writer','story by',NULL),(299172,448208,9,'writer','story by',NULL),(299658,724237,10,'producer','producer',NULL),(299658,250,1,'actress',NULL,'[\"Roxie Hart\"]'),(299658,1876,2,'actress',NULL,'[\"Velma Kelly\"]'),(299658,152,3,'actor',NULL,'[\"Billy Flynn\"]'),(299658,4875,4,'actor',NULL,'[\"Bandleader\"]'),(299658,551128,5,'director',NULL,NULL),(299658,174374,6,'writer','screenplay',NULL),(299658,2080,7,'writer','book of musical play: Chicago',NULL),(299658,247939,8,'writer','book of musical play: Chicago',NULL),(299658,914362,9,'writer','play \"Chicago\"',NULL),(299930,916502,10,'editor',NULL,NULL),(299930,255,1,'actor',NULL,'[\"Larry Gigli\"]'),(299930,182,2,'actress',NULL,'[\"Ricki\"]'),(299930,58581,3,'actor',NULL,'[\"Brian\"]'),(299930,131811,4,'actor',NULL,'[\"Man in Dryer\"]'),(299930,976,5,'director',NULL,NULL),(299930,798661,6,'producer','producer',NULL),(299930,694173,7,'composer',NULL,NULL),(299930,5696,8,'cinematographer','director of photography',NULL),(299930,598520,9,'editor',NULL,NULL),(299937,881590,10,'composer',NULL,NULL),(299937,473577,1,'actor',NULL,'[\"Sugihara\"]'),(299937,793069,2,'actress',NULL,'[\"Sakurai Tsubaki\"]'),(299937,652718,3,'actress',NULL,'[\"Michiko (mother of Sugihara)\"]'),(299937,945734,4,'actor',NULL,'[\"Hideyoshi (father of Sugihara)\"]'),(299937,950834,5,'director',NULL,NULL),(299937,1097667,6,'writer','novel',NULL),(299937,1077107,7,'writer','screenplay',NULL),(299937,475907,8,'producer','producer',NULL),(299937,474734,9,'composer',NULL,NULL),(299977,241753,10,'composer',NULL,NULL),(299977,1472,1,'actor',NULL,'[\"Nameless\"]'),(299977,504897,2,'actor',NULL,'[\"Broken Sword\"]'),(299977,1041,3,'actress',NULL,'[\"Flying Snow\"]'),(299977,955471,4,'actress',NULL,'[\"Moon\"]'),(299977,955443,5,'director',NULL,NULL),(299977,1104077,6,'writer','screenplay',NULL),(299977,910841,7,'writer','screenplay',NULL),(299977,465067,8,'producer','producer',NULL),(299977,5734020,9,'producer','producer',NULL),(300015,788946,10,'editor',NULL,NULL),(300015,304801,1,'actress',NULL,'[\"Cassandra\"]'),(300015,126284,2,'actress',NULL,'[\"Rose\"]'),(300015,631490,3,'actor',NULL,'[\"Mortmain\"]'),(300015,1552136,4,'actress',NULL,'[\"Cassandra (aged 7)\"]'),(300015,299563,5,'director',NULL,NULL),(300015,807977,6,'writer','novel',NULL),(300015,858912,7,'writer','screenplay',NULL),(300015,547050,8,'composer',NULL,NULL),(300015,337313,9,'cinematographer','director of photography',NULL),(300051,255,1,'actor',NULL,'[\"Ollie Trinke\"]'),(300051,239,2,'actress',NULL,'[\"Maya\"]'),(300051,1211485,3,'actress',NULL,'[\"Gertie Trinke\"]'),(300051,8640,4,'actress',NULL,'[\"Teacher\"]'),(300051,3620,5,'director',NULL,NULL),(300051,608714,6,'producer','producer',NULL),(300051,892868,7,'composer',NULL,NULL),(300051,5936,8,'cinematographer','director of photography',NULL),(300051,392692,9,'production_designer',NULL,NULL),(300140,1221367,10,'editor',NULL,NULL),(300140,968541,1,'actress',NULL,'[\"Lilja\"]'),(300140,1076060,2,'actor',NULL,'[\"Volodya\"]'),(300140,690469,3,'actor',NULL,'[\"Andrei\"]'),(300140,1220156,4,'actress',NULL,'[\"Lilja\'s Mother\"]'),(300140,600546,5,'director',NULL,NULL),(300140,433646,6,'producer','producer',NULL),(300140,489059,7,'composer',NULL,NULL),(300140,105308,8,'cinematographer',NULL,NULL),(300140,504576,9,'editor',NULL,NULL),(300214,806255,10,'producer','producer',NULL),(300214,608090,1,'actress',NULL,'[\"Morvern Callar\"]'),(300214,1077357,2,'actress',NULL,'[\"Lanna\"]'),(300214,570245,3,'actress',NULL,'[\"Vanessa\"]'),(300214,691586,4,'actor',NULL,'[\"Cat in the Hat\"]'),(300214,708903,5,'director',NULL,NULL),(300214,230514,6,'writer','screenplay by',NULL),(300214,1179395,7,'writer','novel',NULL),(300214,264480,8,'producer','producer',NULL),(300214,666495,9,'producer','producer',NULL),(300270,723250,10,'editor',NULL,NULL),(300270,608187,1,'actress',NULL,'[\"Helena\"]'),(300270,69209,2,'actor',NULL,'[\"Dr. Jano\"]'),(300270,881802,3,'actor',NULL,'[\"Freddy\"]'),(300270,1600662,4,'actress',NULL,'[\"Amalia\"]'),(300270,551506,5,'director',NULL,NULL),(300270,1366813,6,'writer','contributing writer',NULL),(300270,822711,7,'producer','producer',NULL),(300270,1618558,8,'composer',NULL,NULL),(300270,599983,9,'cinematographer',NULL,NULL),(300471,322802,10,'producer','producer',NULL),(300471,329,1,'actor',NULL,'[\"Chon Wang\"]'),(300471,5562,2,'actor',NULL,'[\"Roy O\'Bannon\"]'),(300471,939056,3,'actress',NULL,'[\"Chon Lin\"]'),(300471,1093951,4,'actor',NULL,'[\"Charlie\"]'),(300471,229694,5,'director',NULL,NULL),(300471,332184,6,'writer','characters',NULL),(300471,587692,7,'writer','characters',NULL),(300471,53388,8,'producer','producer',NULL),(300471,83696,9,'producer','producer',NULL),(300532,368248,10,'composer',NULL,NULL),(300532,98378,1,'actress',NULL,'[\"Anne Marie Chadwick\"]'),(300532,735442,2,'actress',NULL,'[\"Eden\"]'),(300532,205127,3,'actor',NULL,'[\"Matt Tollman\"]'),(300532,1149633,4,'actress',NULL,'[\"Lena\"]'),(300532,7082,5,'director',NULL,NULL),(300532,650036,6,'writer','magazine article \"Surf Girls of Maui\"',NULL),(300532,1082685,7,'writer','story',NULL),(300532,4976,8,'producer','producer',NULL),(300532,444916,9,'producer','producer',NULL),(300556,888329,10,'producer','producer',NULL),(300556,908094,1,'actor',NULL,'[\"Chris Johnston\"]'),(300556,124930,2,'actor',NULL,'[\"Andre Marek\"]'),(300556,175262,3,'actor',NULL,'[\"Professor Johnston\"]'),(300556,640323,4,'actress',NULL,'[\"Kate Ericson\"]'),(300556,1149,5,'director',NULL,NULL),(300556,341,6,'writer','novel',NULL),(300556,536587,7,'writer','screenplay',NULL),(300556,1079776,8,'writer','screenplay',NULL),(300556,795682,9,'producer','producer',NULL),(300657,162117,10,'composer',NULL,NULL),(300657,954076,1,'actor',NULL,'[\"Geralt\"]'),(300657,244451,2,'actor',NULL,'[\"Stary wiedzmin\"]'),(300657,468684,3,'actor',NULL,'[\"Ojciec Geralta\"]'),(300657,1411893,4,'actor',NULL,'[\"Maly Geralt\"]'),(300657,111084,5,'director',NULL,NULL),(300657,1140292,6,'writer','story',NULL),(300657,843850,7,'writer',NULL,NULL),(300657,691556,8,'producer','producer',NULL),(300657,753499,9,'producer','producer',NULL),(300949,839683,10,'composer',NULL,NULL),(300949,863992,1,'actress',NULL,'[\"Nicky\"]'),(300949,2057,2,'actor',NULL,'[\"Harold\"]'),(300949,1035854,3,'actor',NULL,'[\"Uri\"]'),(300949,912118,4,'actor',NULL,'[\"Max\"]'),(300949,618930,5,'director',NULL,NULL),(300949,973222,6,'producer','producer',NULL),(300949,363226,7,'producer','producer',NULL),(300949,439767,8,'producer','producer',NULL),(300949,764963,9,'producer','producer',NULL),(301199,579580,10,'cinematographer',NULL,NULL),(301199,252230,1,'actor',NULL,'[\"Okwe\"]'),(301199,851582,2,'actress',NULL,'[\"Senay\"]'),(301199,645683,3,'actress',NULL,'[\"Juliette\"]'),(301199,234371,4,'actor',NULL,'[\"Asian Businessman\"]'),(301199,1241,5,'director',NULL,NULL),(301199,1140275,6,'writer','written by',NULL),(301199,429134,7,'producer','producer',NULL),(301199,780870,8,'producer','producer',NULL),(301199,489059,9,'composer',NULL,NULL),(301357,36155,10,'producer','producer',NULL),(301357,117709,1,'actor',NULL,'[\"Alex\"]'),(301357,765911,2,'actress',NULL,'[\"Mutter\"]'),(301357,451122,3,'actress',NULL,'[\"Lara\"]'),(301357,525518,4,'actor',NULL,'[\"Denis\"]'),(301357,65615,5,'director',NULL,NULL),(301357,1319382,6,'writer','written by',NULL),(301357,902022,7,'writer','collaborator on screenplay',NULL),(301357,359634,8,'writer','collaborator on screenplay',NULL),(301357,1557910,9,'writer','collaborator on screenplay',NULL),(301429,149223,10,'producer','producer',NULL),(301429,1030267,1,'actor',NULL,'[\"Kim, Kyeong-su\"]'),(301429,1086555,2,'actress',NULL,'[\"Yu, Chae-i\"]'),(301429,1069518,3,'actor',NULL,'[\"Jang, Ryang\"]'),(301429,1085861,4,'actor',NULL,'[\"Song Hak-Rim\"]'),(301429,1048540,5,'director',NULL,NULL),(301429,10156835,6,'writer',NULL,NULL),(301429,10156834,7,'writer',NULL,NULL),(301429,661837,8,'writer',NULL,NULL),(301429,1086537,9,'writer',NULL,NULL),(301470,417202,10,'production_designer',NULL,NULL),(301470,106534,1,'actor',NULL,'[\"The Creeper\"]'),(301470,936403,2,'actor',NULL,'[\"Taggart\"]'),(301470,43704,3,'actress',NULL,'[\"Minxie Hayes\"]'),(301470,616068,4,'actor',NULL,'[\"Deaundre \'Double D\' Davis\"]'),(301470,759207,5,'director',NULL,NULL),(301470,527167,6,'producer','producer',NULL),(301470,759403,7,'composer',NULL,NULL),(301470,5703,8,'cinematographer','director of photography',NULL),(301470,3759,9,'editor',NULL,NULL),(301526,84663,10,'editor',NULL,NULL),(301526,408834,1,'actor',NULL,'[\"Narrator\",\"Cera\'s Dad\"]'),(301526,193631,2,'actress',NULL,'[\"Ducky\"]'),(301526,667326,3,'actor',NULL,'[\"Spike\",\"Stegosaurus Leader\"]'),(301526,215281,4,'actor',NULL,'[\"Littlefoot\"]'),(301526,343799,5,'director',NULL,NULL),(301526,523431,6,'writer','screenplay',NULL),(301526,294440,7,'writer','based on characters created by',NULL),(301526,312076,8,'writer','based on characters created by',NULL),(301526,851699,9,'composer',NULL,NULL),(301777,827965,10,'editor',NULL,NULL),(301777,674,1,'actress',NULL,'[\"Marcia\"]'),(301777,756839,2,'actor',NULL,'[\"Roy\",\"Groper\"]'),(301777,1130969,3,'actor',NULL,'[\"Doug\"]'),(301777,1560588,4,'actress',NULL,'[\"Young Marcia\"]'),(301777,657062,5,'director',NULL,NULL),(301777,157313,6,'producer','producer',NULL),(301777,1312879,7,'producer','producer',NULL),(301777,1130128,8,'composer',NULL,NULL),(301777,647776,9,'cinematographer',NULL,NULL),(301978,1178113,1,'actress',NULL,'[\"Driver\"]'),(301978,1179606,2,'actor',NULL,'[\"Amin\"]'),(301978,1332962,3,'actor',NULL,NULL),(301978,2948264,4,'actress',NULL,'[\"Prostitute + Lover\"]'),(301978,452102,5,'director',NULL,NULL),(301978,439767,6,'producer','producer',NULL),(301978,86574,7,'composer',NULL,NULL),(301978,1178516,8,'editor',NULL,NULL),(301978,452103,9,'editor',NULL,NULL),(302640,697953,10,'editor',NULL,NULL),(302640,1705,1,'actor',NULL,'[\"Jessica\"]'),(302640,1046097,2,'actress',NULL,'[\"Jessica\"]'),(302640,267506,3,'actress',NULL,'[\"April\"]'),(302640,492932,4,'actor',NULL,'[\"Billy\"]'),(302640,103744,5,'director',NULL,NULL),(302640,195259,6,'producer','producer',NULL),(302640,963236,7,'producer','producer',NULL),(302640,2201,8,'composer',NULL,NULL),(302640,5891,9,'cinematographer',NULL,NULL),(302674,729,1,'actor',NULL,'[\"Gerry\"]'),(302674,354,2,'actor',NULL,'[\"Gerry\"]'),(302674,1814,3,'director',NULL,NULL),(302674,937714,4,'producer','producer',NULL),(302674,701736,5,'composer',NULL,NULL),(302674,767647,6,'cinematographer',NULL,NULL),(302886,788640,10,'composer',NULL,NULL),(302886,5561,1,'actor',NULL,'[\"Mitch\"]'),(302886,681,2,'actor',NULL,'[\"Beanie\"]'),(302886,2071,3,'actor',NULL,'[\"Frank\"]'),(302886,5315,4,'actor',NULL,'[\"Pritchard\"]'),(302886,680846,5,'director',NULL,NULL),(302886,1216189,6,'writer','story',NULL),(302886,35905,7,'writer','story',NULL),(302886,325175,8,'producer','producer',NULL),(302886,575817,9,'producer','producer',NULL),(303184,1393878,10,'production_designer',NULL,NULL),(303184,844027,1,'actor',NULL,'[\"Alex Brubeck\"]'),(303184,683950,2,'actor',NULL,'[\"Tamás\"]'),(303184,843632,3,'actor',NULL,'[\"Ákos\"]'),(303184,959964,4,'actress',NULL,'[\"Eszter\"]'),(303184,1089985,5,'director',NULL,NULL),(303184,617350,6,'writer',NULL,NULL),(303184,4245820,7,'composer',NULL,NULL),(303184,718705,8,'cinematographer',NULL,NULL),(303184,1547634,9,'editor',NULL,NULL),(303297,1099824,10,'cinematographer',NULL,NULL),(303297,104456,1,'self',NULL,'[\"Self\"]'),(303297,1097615,2,'self',NULL,'[\"Self\"]'),(303297,1098403,3,'self',NULL,'[\"Self\"]'),(303297,4847,4,'self',NULL,'[\"Self\"]'),(303297,1097276,5,'director',NULL,NULL),(303297,1038460,6,'producer','executive producer',NULL),(303297,1097571,7,'cinematographer',NULL,NULL),(303297,1098167,8,'cinematographer',NULL,NULL),(303297,755236,9,'cinematographer',NULL,NULL),(303361,325597,10,'editor',NULL,NULL),(303361,79374,1,'actress',NULL,'[\"May Dove Canady\"]'),(303361,5438,2,'actor',NULL,'[\"Adam Stubbs\"]'),(303361,267506,3,'actress',NULL,'[\"Polly\"]'),(303361,1166,4,'actor',NULL,'[\"Blank\"]'),(303361,1031246,5,'director',NULL,NULL),(303361,836317,6,'producer','producer',NULL),(303361,49592,7,'producer','producer',NULL),(303361,1104637,8,'composer',NULL,NULL),(303361,6911,9,'cinematographer','director of photography',NULL),(303678,367955,10,'producer','producer',NULL),(303678,951216,1,'actress',NULL,'[\"Naomi Armitage\"]'),(303678,1097137,2,'actor',NULL,'[\"Ross Sylibus\"]'),(303678,408042,3,'actress',NULL,'[\"Yoko\"]'),(303678,945377,4,'actor',NULL,'[\"Demitrio Mardini\"]'),(303678,15425,5,'director',NULL,NULL),(303678,138233,6,'director','adr director',NULL),(303678,556856,7,'writer','adr script writer',NULL),(303678,367943,8,'writer',NULL,NULL),(303678,435393,9,'writer',NULL,NULL),(303816,823,10,'composer',NULL,NULL),(303816,480465,1,'actress',NULL,'[\"Karen\"]'),(303816,835045,2,'actor',NULL,'[\"Paul\"]'),(303816,4867,3,'actor',NULL,'[\"Bert\"]'),(303816,898597,4,'actress',NULL,'[\"Marcy\"]'),(303816,744834,5,'director',NULL,NULL),(303816,669132,6,'writer','written by',NULL),(303816,40148,7,'producer','producer',NULL),(303816,296198,8,'producer','producer',NULL),(303816,595547,9,'producer','producer',NULL),(303830,273259,10,'production_designer',NULL,NULL),(303830,435,1,'actress',NULL,'[\"Skipper\"]'),(303830,350454,2,'actress',NULL,'[\"Jennifer\"]'),(303830,5460,3,'actress',NULL,'[\"Gayle\"]'),(303830,666,4,'actress',NULL,'[\"Leslie\"]'),(303830,626,5,'director',NULL,NULL),(303830,819702,6,'producer','producer',NULL),(303830,843543,7,'producer','producer',NULL),(303830,6025,8,'composer',NULL,NULL),(303830,748277,9,'cinematographer','director of photography',NULL),(303933,1140091,10,'producer','producer',NULL),(303933,134244,1,'actor',NULL,'[\"Devon Miles\"]'),(303933,757855,2,'actress',NULL,'[\"Laila\"]'),(303933,428963,3,'actor',NULL,'[\"Dr. Lee\"]'),(303933,731346,4,'actor',NULL,'[\"Sean Taylor\"]'),(303933,831690,5,'director',NULL,NULL),(303933,770974,6,'writer','story',NULL),(303933,1202276,7,'writer','screenplay',NULL),(303933,100098,8,'producer','producer',NULL),(303933,277704,9,'producer','producer',NULL),(304141,650038,10,'producer','producer',NULL),(304141,705356,1,'actor',NULL,'[\"Harry Potter\"]'),(304141,914612,2,'actress',NULL,'[\"Hermione Granger\"]'),(304141,342488,3,'actor',NULL,'[\"Ron Weasley\"]'),(304141,341743,4,'actor',NULL,'[\"Uncle Vernon\"]'),(304141,190859,5,'director',NULL,NULL),(304141,746830,6,'writer','novel',NULL),(304141,460141,7,'writer','screenplay',NULL),(304141,1060,8,'producer','producer',NULL),(304141,382268,9,'producer','producer',NULL),(304377,685297,10,'cinematographer',NULL,NULL),(304377,274162,1,'actress',NULL,'[\"Sassafras\"]'),(304377,938294,2,'actress',NULL,'[\"Lou\"]'),(304377,476,3,'actress',NULL,'[\"Emilia\"]'),(304377,610056,4,'actress',NULL,'[\"Leslie\"]'),(304377,1099660,5,'director',NULL,NULL),(304377,1104499,6,'writer',NULL,NULL),(304377,1098638,7,'producer','producer',NULL),(304377,641721,8,'producer','producer',NULL),(304377,1202622,9,'composer',NULL,NULL),(304415,771834,10,'producer','producer',NULL),(304415,210,1,'actress',NULL,'[\"Katherine Ann Watson\"]'),(304415,379,2,'actress',NULL,'[\"Betty Warren\"]'),(304415,5466,3,'actress',NULL,'[\"Joan Brandwyn\"]'),(304415,350454,4,'actress',NULL,'[\"Giselle Levy\"]'),(304415,1565,5,'director',NULL,NULL),(304415,465199,6,'writer','written by',NULL),(304415,742797,7,'writer','written by',NULL),(304415,326063,8,'producer','producer',NULL),(304415,771490,9,'producer','producer',NULL),(304669,833828,10,'writer','screenplay',NULL),(304669,741,1,'actor',NULL,'[\"Scott Calvin\",\"Santa\",\"Toy Santa\"]'),(304669,107748,2,'actor',NULL,'[\"Curtis\"]'),(304669,593310,3,'actress',NULL,'[\"Carol\"]'),(304669,5156,4,'actor',NULL,'[\"Charlie Calvin\"]'),(304669,501185,5,'director',NULL,NULL),(304669,722610,6,'writer','screenplay',NULL),(304669,666791,7,'writer','screenplay',NULL),(304669,202425,8,'writer','screenplay',NULL),(304669,214036,9,'writer','screenplay',NULL),(305224,5791,10,'cinematographer','director of photography',NULL),(305224,197,1,'actor',NULL,'[\"Dr. Buddy Rydell\"]'),(305224,1191,2,'actor',NULL,'[\"Dave Buznik\"]'),(305224,673,3,'actress',NULL,'[\"Linda\"]'),(305224,350079,4,'actor',NULL,'[\"Lou\"]'),(305224,781842,5,'director',NULL,NULL),(305224,233563,6,'writer','written by',NULL),(305224,76444,7,'producer','producer',NULL),(305224,316406,8,'producer','producer',NULL),(305224,144841,9,'composer',NULL,NULL),(305357,926729,10,'writer','screenplay',NULL),(305357,106,1,'actress',NULL,'[\"Dylan Sanders\"]'),(305357,5154,2,'actress',NULL,'[\"Alex Munday\"]'),(305357,139,3,'actress',NULL,'[\"Natalie Cook\"]'),(305357,5170,4,'actor',NULL,'[\"Jimmy Bosley\"]'),(305357,629334,5,'director',NULL,NULL),(305357,324578,6,'writer','television series',NULL),(305357,730850,7,'writer','television series',NULL),(305357,41864,8,'writer','story',NULL),(305357,926727,9,'writer','screenplay',NULL),(305589,781365,10,'editor',NULL,NULL),(305589,335801,1,'actress',NULL,'[\"Rachel\"]'),(305589,723865,2,'actress',NULL,'[\"Claire\"]'),(305589,1112145,3,'actress',NULL,'[\"Cécile\"]'),(305589,94552,4,'actor',NULL,'[\"David\"]'),(305589,537626,5,'director',NULL,NULL),(305589,159262,6,'writer',NULL,NULL),(305589,126878,7,'producer','producer',NULL),(305589,1195811,8,'composer',NULL,NULL),(305589,881103,9,'cinematographer',NULL,NULL),(306047,424688,10,'writer','characters',NULL),(306047,267506,1,'actress',NULL,'[\"Cindy\"]'),(306047,221,2,'actor',NULL,'[\"Tom\"]'),(306047,356021,3,'actress',NULL,'[\"Brenda Meeks\"]'),(306047,97,4,'actress',NULL,'[\"Becca\"]'),(306047,1878,5,'director',NULL,NULL),(306047,563301,6,'writer','written by',NULL),(306047,698493,7,'writer','written by',NULL),(306047,915465,8,'writer','characters',NULL),(306047,5541,9,'writer','characters',NULL),(306432,648366,10,'cinematographer',NULL,NULL),(306432,914455,1,'actress',NULL,'[\"Elvira\"]'),(306432,3030,2,'actress',NULL,'[\"Sofía\"]'),(306432,700229,3,'actress',NULL,'[\"Gimena\"]'),(306432,7711,4,'actress',NULL,'[\"Sol\"]'),(306432,270822,5,'director',NULL,NULL),(306432,664194,6,'director',NULL,NULL),(306432,173101,7,'producer','producer',NULL),(306432,209281,8,'producer','producer',NULL),(306432,54218,9,'composer',NULL,NULL),(306474,476678,1,'actress',NULL,'[\"Princess Arîte\"]'),(306474,1115899,2,'actor',NULL,'[\"Boax\"]'),(306474,847439,3,'actress',NULL,'[\"Ample\"]'),(306474,637895,4,'actor',NULL,'[\"Grovel\"]'),(306474,441090,5,'director',NULL,NULL),(306474,1256806,6,'writer','novel',NULL),(306474,1259616,7,'producer','planner',NULL),(306474,784358,8,'composer',NULL,NULL),(306474,786707,9,'editor',NULL,NULL),(306646,945389,10,'cinematographer',NULL,NULL),(306646,847054,1,'actor',NULL,'[\"Narrator\"]'),(306646,559650,2,'actress',NULL,'[\"Chirin\"]'),(306646,436776,3,'actor',NULL,'[\"Adult Chirin\"]'),(306646,620284,4,'actress',NULL,'[\"Mom\"]'),(306646,368674,5,'director',NULL,NULL),(306646,1138670,6,'writer','story',NULL),(306646,4252598,7,'producer','producer',NULL),(306646,5826250,8,'producer','producer',NULL),(306646,412827,9,'composer',NULL,NULL),(306685,2227,10,'composer',NULL,NULL),(306685,1472,1,'actor',NULL,'[\"Su\"]'),(306685,229422,2,'actor',NULL,'[\"Anthony Fait\"]'),(306685,1092,3,'actor',NULL,'[\"Ling\"]'),(306685,26364,4,'actor',NULL,'[\"Tommy\"]'),(306685,5647,5,'director',NULL,NULL),(306685,1016088,6,'writer','story',NULL),(306685,316888,7,'writer','screenplay',NULL),(306685,5428,8,'producer','producer',NULL),(306685,85732,9,'composer',NULL,NULL),(306734,6442,10,'composer',NULL,NULL),(306734,5028,1,'actress',NULL,'[\"Isabel Walker\"]'),(306734,915208,2,'actress',NULL,'[\"Roxeanne de Persand\"]'),(306734,330,3,'actress',NULL,'[\"Margeeve Walker\"]'),(306734,508301,4,'actor',NULL,'[\"Immigration Officer\"]'),(306734,412465,5,'director',NULL,NULL),(306734,424956,6,'writer','novel',NULL),(306734,695609,7,'writer','screenplay',NULL),(306734,580337,8,'producer','producer',NULL),(306734,771512,9,'producer','producer',NULL),(306841,737390,10,'producer','producer',NULL),(306841,240381,1,'actress',NULL,'[\"Lizzie\",\"Isabella\"]'),(306841,483047,2,'actor',NULL,'[\"Gordo\"]'),(306841,1032795,3,'actor',NULL,'[\"Ethan\"]'),(306841,604699,4,'actress',NULL,'[\"Jo\"]'),(306841,266302,5,'director',NULL,NULL),(306841,418070,6,'writer','written by',NULL),(306841,214036,7,'writer','written by',NULL),(306841,833828,8,'writer','written by',NULL),(306841,591673,9,'writer','characters',NULL),(307351,720314,10,'producer','producer',NULL),(307351,153,1,'actress',NULL,'[\"Jacki\"]'),(307351,1614,2,'actress',NULL,'[\"Faith\"]'),(307351,89456,3,'actor',NULL,'[\"Animal\"]'),(307351,5576,4,'actress',NULL,'[\"Tracy\"]'),(307351,829925,5,'director',NULL,NULL),(307351,1118858,6,'writer','writer',NULL),(307351,1120024,7,'writer','writer',NULL),(307351,2553,8,'producer','producer',NULL),(307351,543061,9,'producer','producer',NULL),(307453,73688,10,'writer','additional dialogue by',NULL),(307453,226,1,'actor',NULL,'[\"Oscar\"]'),(307453,134,2,'actor',NULL,'[\"Don Lino\"]'),(307453,250,3,'actress',NULL,'[\"Angie\"]'),(307453,1401,4,'actress',NULL,'[\"Lola\"]'),(307453,74426,5,'director',NULL,NULL),(307453,421776,6,'director',NULL,NULL),(307453,1224299,7,'director',NULL,NULL),(307453,5022110,8,'writer','screenplay by',NULL),(307453,42006,9,'writer','additional dialogue by',NULL),(307479,553498,10,'composer',NULL,NULL),(307479,123,1,'actor',NULL,'[\"Kelvin\"]'),(307479,1523,2,'actress',NULL,'[\"Rheya\"]'),(307479,876300,3,'actor',NULL,'[\"Gibarian\"]'),(307479,205626,4,'actress',NULL,'[\"Gordon\"]'),(307479,1752,5,'director',NULL,NULL),(307479,501015,6,'writer','novel',NULL),(307479,116,7,'producer','producer',NULL),(307479,484457,8,'producer','producer',NULL),(307479,761093,9,'producer','producer',NULL),(307901,5966,10,'composer',NULL,NULL),(307901,1570,1,'actor',NULL,'[\"Monty Brogan\"]'),(307901,1608,2,'actor',NULL,'[\"Frank Slaughtery\"]'),(307901,450,3,'actor',NULL,'[\"Jacob Elinsky\"]'),(307901,206257,4,'actress',NULL,'[\"Naturelle Riviera\"]'),(307901,490,5,'director',NULL,NULL),(307901,1125275,6,'writer','novel',NULL),(307901,153892,7,'producer','producer',NULL),(307901,453091,8,'producer','producer',NULL),(307901,1497,9,'producer','producer',NULL),(307987,918424,10,'producer','producer',NULL),(307987,671,1,'actor',NULL,'[\"Willie\"]'),(307987,5170,2,'actor',NULL,'[\"Gin\"]'),(307987,334179,3,'actress',NULL,'[\"Sue\"]'),(307987,615,4,'actor',NULL,'[\"Bob Chipeska\"]'),(307987,959062,5,'director',NULL,NULL),(307987,275629,6,'writer','written by',NULL),(307987,720135,7,'writer','written by',NULL),(307987,2583828,8,'producer','producer',NULL),(307987,131625,9,'producer','producer',NULL),(308379,1482825,10,'producer','producer',NULL),(308379,475878,1,'actress',NULL,'[\"Yoshimi Matsubara\"]'),(308379,1287602,2,'actress',NULL,'[\"Ikuko Matsubara (6 years old)\"]'),(308379,1290029,3,'actress',NULL,'[\"Mitsuko Kawai\"]'),(308379,594655,4,'actress',NULL,'[\"Ikuko Hamada (16 years old)\"]'),(308379,620378,5,'director',NULL,NULL),(308379,840626,6,'writer','novel',NULL),(308379,406772,7,'writer','screenplay',NULL),(308379,840613,8,'writer','screenplay',NULL),(308379,1327703,9,'writer','screenplay',NULL),(308644,434222,10,'composer',NULL,NULL),(308644,136,1,'actor',NULL,'[\"Sir James Matthew Barrie\"]'),(308644,701,2,'actress',NULL,'[\"Sylvia Llewelyn Davies\"]'),(308644,1046,3,'actress',NULL,'[\"Mrs. Emma du Maurier\"]'),(308644,593664,4,'actress',NULL,'[\"Mary Ansell Barrie\"]'),(308644,286975,5,'director',NULL,NULL),(308644,460632,6,'writer','play \"The Man Who Was Peter Pan\"',NULL),(308644,1341735,7,'writer','screenplay',NULL),(308644,68935,8,'producer','producer',NULL),(308644,321621,9,'producer','producer',NULL),(309396,1136388,1,'self',NULL,'[\"Self\"]'),(309396,1134590,2,'self',NULL,'[\"Self\"]'),(309396,9586537,3,'self',NULL,'[\"Self - the \'bucking broncho\'\"]'),(309396,5690,4,'director',NULL,NULL),(309396,374658,5,'director',NULL,NULL),(309402,1135679,1,'self',NULL,'[\"Self\"]'),(309402,1136468,2,'self',NULL,'[\"Self\"]'),(309402,1136495,3,'self',NULL,'[\"Self\"]'),(309402,5690,4,'director',NULL,NULL),(309404,651005,10,'cinematographer',NULL,NULL),(309404,1135500,1,'actor',NULL,'[\"Paul\"]'),(309404,834479,2,'actor',NULL,'[\"Max\"]'),(309404,245988,3,'actress',NULL,'[\"Lene\"]'),(309404,1009430,4,'actress',NULL,'[\"Kerstin\"]'),(309404,477823,5,'director',NULL,NULL),(309404,324516,6,'writer','screenplay',NULL),(309404,118249,7,'producer','producer',NULL),(309404,830833,8,'producer','producer',NULL),(309404,294503,9,'cinematographer',NULL,NULL),(309530,3299,10,'composer',NULL,NULL),(309530,191,1,'actor',NULL,'[\"Catcher Block\"]'),(309530,250,2,'actress',NULL,'[\"Barbara Novak\"]'),(309530,1383,3,'actor',NULL,'[\"Peter MacMannus\"]'),(309530,5299,4,'actress',NULL,'[\"Vikki Hiller\"]'),(309530,715636,5,'director',NULL,NULL),(309530,13996,6,'writer','written by',NULL),(309530,236881,7,'writer','written by',NULL),(309530,169260,8,'producer','producer',NULL),(309530,423134,9,'producer','producer',NULL),(309593,956015,10,'producer','producer',NULL),(309593,176882,1,'actress',NULL,'[\"Kimberly Corman\"]'),(309593,5123,2,'actress',NULL,'[\"Clear Rivers\"]'),(309593,865302,3,'actor',NULL,'[\"Mr. Bludworth\"]'),(309593,484678,4,'actor',NULL,'[\"Thomas Burke\"]'),(309593,254786,5,'director',NULL,NULL),(309593,344259,6,'writer','screenplay',NULL),(309593,107774,7,'writer','screenplay',NULL),(309593,714695,8,'writer','story',NULL),(309593,675013,9,'producer','producer',NULL),(309698,107463,10,'editor',NULL,NULL),(309698,131,1,'actor',NULL,'[\"Ed\"]'),(309698,501,2,'actor',NULL,'[\"Rhodes\"]'),(309698,1605,3,'actress',NULL,'[\"Paris\"]'),(309698,370035,4,'actor',NULL,'[\"Larry\"]'),(309698,3506,5,'director',NULL,NULL),(309698,177769,6,'writer','written by',NULL),(309698,465298,7,'producer','producer',NULL),(309698,6293,8,'composer',NULL,NULL),(309698,3659,9,'cinematographer',NULL,NULL),(309987,704740,10,'production_designer',NULL,NULL),(309987,685856,1,'actor',NULL,'[\"Matthew\"]'),(309987,308039,2,'actor',NULL,'[\"Theo\"]'),(309987,1200692,3,'actress',NULL,'[\"Isabelle\"]'),(309987,151250,4,'actress',NULL,'[\"Mother\"]'),(309987,934,5,'director',NULL,NULL),(309987,10434,6,'writer','screenplay',NULL),(309987,859016,7,'producer','producer',NULL),(309987,161796,8,'cinematographer','director of photography',NULL),(309987,702741,9,'editor',NULL,NULL),(310567,97619,10,'production_designer',NULL,NULL),(310567,258272,1,'actor',NULL,'[\"Count István Széchenyi\"]'),(310567,490014,2,'actress',NULL,'[\"Crescence\"]'),(310567,619453,3,'actor',NULL,'[\"Lajos Kossuth\"]'),(310567,865557,4,'actor',NULL,'[\"Lajos Batthyány\"]'),(310567,73488,5,'director',NULL,NULL),(310567,352232,6,'producer','producer',NULL),(310567,617362,7,'composer',NULL,NULL),(310567,439111,8,'cinematographer',NULL,NULL),(310567,521381,9,'editor',NULL,NULL),(310775,1137048,10,'producer','producer',NULL),(310775,814280,1,'actor',NULL,'[\"Dong-jin Park\"]'),(310775,793784,2,'actor',NULL,'[\"Ryu\"]'),(310775,46277,3,'actress',NULL,'[\"Yeong-mi Cha\"]'),(310775,510546,4,'actress',NULL,'[\"Ryu\'s Sister\"]'),(310775,661791,5,'director',NULL,NULL),(310775,5371819,6,'writer','comic',NULL),(310775,497929,7,'writer','screenplay',NULL),(310775,1136985,8,'writer','screenplay',NULL),(310775,1155681,9,'writer','screenplay',NULL),(310778,702466,10,'producer','producer',NULL),(310778,254,1,'actress',NULL,'[\"Viviane Denvers\"]'),(310778,367,2,'actor',NULL,'[\"Jean-Étienne Beaufort\"]'),(310778,1461,3,'actress',NULL,'[\"Camille\"]'),(310778,246362,4,'actor',NULL,'[\"Frédéric Auger\"]'),(310778,710919,5,'director',NULL,NULL),(310778,595272,6,'writer','scenario',NULL),(310778,867374,7,'writer','adaptation',NULL),(310778,545382,8,'writer','adaptation',NULL),(310778,1272853,9,'writer','adaptation',NULL),(311113,203762,10,'composer',NULL,NULL),(311113,128,1,'actor',NULL,'[\"Capt. Jack Aubrey\"]'),(311113,79273,2,'actor',NULL,'[\"Dr. Stephen Maturin, Surgeon\"]'),(311113,101710,3,'actor',NULL,'[\"Barrett Bonden, Coxswain\"]'),(311113,195439,4,'actor',NULL,'[\"1st Lt. Tom Pullings\"]'),(311113,1837,5,'director',NULL,NULL),(311113,1140640,6,'writer','novels',NULL),(311113,171722,7,'writer','screenplay',NULL),(311113,326412,8,'producer','producer',NULL),(311113,376416,9,'producer','producer',NULL),(311289,6193,10,'composer',NULL,NULL),(311289,479471,1,'actor',NULL,'[\"Stanley\"]'),(311289,244,2,'actress',NULL,'[\"The Warden\"]'),(311289,685,3,'actor',NULL,'[\"Mr. Sir\"]'),(311289,625789,4,'actor',NULL,'[\"Dr. Pendanski\"]'),(311289,1112,5,'director',NULL,NULL),(311289,1144337,6,'writer','novel',NULL),(311289,87513,7,'producer','producer',NULL),(311289,5219,8,'producer','producer',NULL),(311289,876051,9,'producer','producer',NULL),(311361,135843,1,'actor',NULL,'[\"Jesus Christ Vampire Hunter\"]'),(311361,1142966,2,'actress',NULL,'[\"Maxine Shreck\"]'),(311361,1142195,3,'actress',NULL,'[\"Mary Magnum\"]'),(311361,1143318,4,'actor',NULL,'[\"Father Eustace\"]'),(311361,218080,5,'director',NULL,NULL),(311361,238018,6,'writer','written by',NULL),(311361,1108811,7,'composer',NULL,NULL),(311429,6613,10,'producer','producer',NULL),(311429,125,1,'actor',NULL,'[\"Allan Quatermain\"]'),(311429,870204,2,'actor',NULL,'[\"Dorian Gray\"]'),(311429,933959,3,'actress',NULL,'[\"Mina Harker\"]'),(311429,2076,4,'actor',NULL,'[\"Dr. Henry Jekyll\",\"Edward Hyde\"]'),(311429,635759,5,'director',NULL,NULL),(311429,600872,6,'writer','comic books',NULL),(311429,1171463,7,'writer','comic books',NULL),(311429,732702,8,'writer','screenplay',NULL),(311429,16603,9,'producer','executive producer',NULL),(311648,717145,10,'cinematographer','director of photography',NULL),(311648,5017,1,'actress',NULL,'[\"April Burns\"]'),(311648,1624,2,'actor',NULL,'[\"Jim Burns\"]'),(311648,165101,3,'actress',NULL,'[\"Joy Burns\"]'),(311648,1035682,4,'actor',NULL,'[\"Bobby\"]'),(311648,373282,5,'director',NULL,NULL),(311648,18936,6,'producer','producer',NULL),(311648,529092,7,'producer','producer',NULL),(311648,935095,8,'producer','producer',NULL),(311648,581445,9,'composer',NULL,NULL),(311926,71380,10,'cinematographer',NULL,NULL),(311926,349052,1,'actor',NULL,'[\"Roland Järverup\",\"Micke\",\"Lasse Kongo\"]'),(311926,408498,2,'actor',NULL,'[\"Lennart Sundström\"]'),(311926,722209,3,'actor',NULL,'[\"Percy Nilegård\",\"Magnus\"]'),(311926,1008940,4,'actor',NULL,'[\"Slobodan\"]'),(311926,19247,5,'director',NULL,NULL),(311926,518101,6,'writer',NULL,NULL),(311926,527631,7,'writer',NULL,NULL),(311926,778013,8,'writer',NULL,NULL),(311926,1106551,9,'producer','producer',NULL),(312004,520485,10,'producer','producer',NULL),(312004,758608,1,'actor',NULL,'[\"Wallace\",\"Hutch\"]'),(312004,307,2,'actress',NULL,'[\"Lady Campanula Tottington\"]'),(312004,146,3,'actor',NULL,'[\"Victor Quartermaine\"]'),(312004,443153,4,'actor',NULL,'[\"PC Mackintosh\"]'),(312004,101508,5,'director',NULL,NULL),(312004,661910,6,'director',NULL,NULL),(312004,123666,7,'writer','screenplay by',NULL),(312004,48276,8,'writer','screenplay by',NULL),(312004,421127,9,'producer','producer',NULL),(312528,4976,10,'producer','producer',NULL),(312528,196,1,'actor',NULL,'[\"The Cat\"]'),(312528,107748,2,'actor',NULL,'[\"Conrad\"]'),(312528,266824,3,'actress',NULL,'[\"Sally\"]'),(312528,285,4,'actor',NULL,'[\"Quinn\"]'),(312528,919514,5,'director',NULL,NULL),(312528,317450,6,'writer','book',NULL),(312528,73688,7,'writer','screenplay',NULL),(312528,541635,8,'writer','screenplay',NULL),(312528,769840,9,'writer','screenplay',NULL),(312687,1180765,10,'production_designer',NULL,NULL),(312687,539787,1,'actress',NULL,'[\"Rallia\"]'),(312687,67521,2,'actress',NULL,'[\"Nedjma\"]'),(312687,590440,3,'actor',NULL,'[\"Djibril\"]'),(312687,69964,4,'actress',NULL,'[\"La femme répudiée\"]'),(312687,152831,5,'director',NULL,NULL),(312687,785782,6,'producer','producer',NULL),(312687,762095,7,'composer',NULL,NULL),(312687,505281,8,'cinematographer',NULL,NULL),(312687,671313,9,'editor',NULL,NULL),(312728,9389426,1,'actor',NULL,'[\"The Tramp & the Athlete\"]'),(312728,10151907,2,'actor',NULL,NULL),(312728,10151906,3,'actor',NULL,NULL),(312728,5690,4,'director',NULL,NULL),(312728,374658,5,'director',NULL,NULL),(312843,1531821,10,'composer',NULL,NULL),(312843,410903,1,'actor',NULL,'[\"Detective Toshiharu Kuroda\"]'),(312843,619185,2,'actor',NULL,'[\"Detective Shibusawa\"]'),(312843,389880,3,'actress',NULL,'[\"Nurse Atsuko Sawada\"]'),(312843,766502,4,'actress',NULL,'[\"Nurse Yôko Kawaguchi\"]'),(312843,814469,5,'director',NULL,NULL),(312843,1532067,6,'producer','producer',NULL),(312843,2354381,7,'producer','producer',NULL),(312843,1533242,8,'producer','producer',NULL),(312843,1536306,9,'producer','producer',NULL),(313254,2625426,10,'producer','producer',NULL),(313254,1022560,1,'actress',NULL,'[\"Barbie\"]'),(313254,3413854,2,'actress',NULL,NULL),(313254,486749,3,'actress',NULL,NULL),(313254,814552,4,'actress',NULL,NULL),(313254,223403,5,'director',NULL,NULL),(313254,1043325,6,'writer','characters',NULL),(313254,602922,7,'writer',NULL,NULL),(313254,506669,8,'producer','producer',NULL),(313254,518773,9,'producer','producer',NULL),(313255,571210,10,'writer','story consultant',NULL),(313255,792198,1,'actress',NULL,'[\"Barbie\",\"Rapunzel\"]'),(313255,1378,2,'actress',NULL,'[\"Gothel\"]'),(313255,838588,3,'actress',NULL,'[\"Penelope\"]'),(313255,3944,4,'actor',NULL,'[\"Hobie\",\"Palace Guard\"]'),(313255,403481,5,'director',NULL,NULL),(313255,748429,6,'writer','written by',NULL),(313255,504327,7,'writer','written by',NULL),(313255,1020568,8,'writer','story developed by',NULL),(313255,399746,9,'writer','story developed by',NULL),(313410,214137,10,'composer',NULL,NULL),(313410,931146,1,'actor',NULL,'[\"Tim Cornish\"]'),(313410,912938,2,'actor',NULL,'[\"Ivo Steadman\"]'),(313410,391820,3,'actress',NULL,'[\"Emily\"]'),(313410,419363,4,'actress',NULL,'[\"Margaret Cornish\"]'),(313410,788191,5,'director',NULL,NULL),(313410,255946,6,'writer','screenplay by',NULL),(313410,719334,7,'writer','based upon the novel by',NULL),(313410,413258,8,'producer','producer',NULL),(313410,507305,9,'producer','producer',NULL),(313542,152466,10,'writer','screenplay',NULL),(313542,131,1,'actor',NULL,'[\"Nicholas Easter\"]'),(313542,1838,2,'actress',NULL,'[\"Marlee\"]'),(313542,432,3,'actor',NULL,'[\"Rankin Fitch\"]'),(313542,163,4,'actor',NULL,'[\"Wendell Rohr\"]'),(313542,1219,5,'director',NULL,NULL),(313542,1300,6,'writer','novel \"The Runaway Jury\"',NULL),(313542,2718,7,'writer','screenplay',NULL),(313542,505522,8,'writer','screenplay',NULL),(313542,166498,9,'writer','screenplay',NULL),(313670,606682,10,'editor',NULL,NULL),(313670,1161994,1,'actor',NULL,'[\"Liam\"]'),(313670,1162051,2,'actress',NULL,'[\"Jean\"]'),(313670,1161997,3,'actress',NULL,'[\"Chantelle\"]'),(313670,1162048,4,'actor',NULL,'[\"Pinball\"]'),(313670,516360,5,'director',NULL,NULL),(313670,491956,6,'writer','screenplay',NULL),(313670,639780,7,'producer','producer',NULL),(313670,6070,8,'composer',NULL,NULL),(313670,10096,9,'cinematographer',NULL,NULL),(313737,113,1,'actress',NULL,'[\"Lucy Kelson\"]'),(313737,424,2,'actor',NULL,'[\"George Wade\"]'),(313737,1860,3,'actress',NULL,'[\"June Carver\"]'),(313737,412374,4,'actress',NULL,'[\"Ruth Kelson\"]'),(313737,492909,5,'director',NULL,NULL),(313737,694173,6,'composer',NULL,NULL),(313737,4088,7,'cinematographer','director of photography',NULL),(313737,607673,8,'editor',NULL,NULL),(313737,488318,9,'production_designer',NULL,NULL),(313773,489,1,'actor',NULL,'[\"Death\"]'),(313773,695332,2,'writer',NULL,NULL),(314063,312926,10,'cinematographer',NULL,NULL),(314063,1080320,1,'actress',NULL,'[\"Jill\"]'),(314063,470981,2,'actor',NULL,'[\"Nikopol\"]'),(314063,1648,3,'actress',NULL,'[\"Elma Turner\"]'),(314063,171811,4,'actor',NULL,'[\"Froebe\"]'),(314063,82094,5,'director',NULL,NULL),(314063,1177839,6,'writer',NULL,NULL),(314063,309369,7,'producer','producer',NULL),(314063,1460176,8,'composer',NULL,NULL),(314063,892170,9,'composer',NULL,NULL),(314331,183533,10,'cinematographer','director of photography',NULL),(314331,424,1,'actor',NULL,'[\"The Prime Minister\"]'),(314331,567356,2,'actress',NULL,'[\"Natalie\"]'),(314331,553,3,'actor',NULL,'[\"Daniel\"]'),(314331,1473,4,'actress',NULL,'[\"Sarah\"]'),(314331,193485,5,'director',NULL,NULL),(314331,79677,6,'producer','producer',NULL),(314331,271479,7,'producer','producer',NULL),(314331,448953,8,'producer','producer',NULL),(314331,35661,9,'composer',NULL,NULL),(314353,726476,10,'producer','producer',NULL),(314353,246,1,'actor',NULL,'[\"Lieutenant A.K. Waters\"]'),(314353,369513,2,'actor',NULL,'[\"James \'Red\' Atkins\"]'),(314353,899,3,'actress',NULL,'[\"Dr. Lena Fiore Kendricks\"]'),(314353,907708,4,'actor',NULL,'[\"Ellis \'Zee\' Pettigrew\"]'),(314353,298807,5,'director',NULL,NULL),(314353,489620,6,'writer','written by',NULL),(314353,162752,7,'writer','written by',NULL),(314353,117290,8,'producer','producer',NULL),(314353,516465,9,'producer','producer',NULL),(314412,488625,10,'cinematographer',NULL,NULL),(314412,1631,1,'actress',NULL,'[\"Ann\"]'),(314412,5454,2,'actor',NULL,'[\"Don\"]'),(314412,749263,3,'actor',NULL,'[\"Lee\"]'),(314412,914455,4,'actress',NULL,'[\"Ann, the Neighbor\"]'),(314412,170043,5,'director',NULL,NULL),(314412,1563090,6,'writer','book \"Pretending the Bed is a Raft\"',NULL),(314412,306088,7,'producer','producer',NULL),(314412,572755,8,'producer','producer',NULL),(314412,897350,9,'composer',NULL,NULL),(314498,322802,10,'producer','producer',NULL),(314498,424060,1,'actress',NULL,'[\"Francesca\"]'),(314498,159776,2,'actress',NULL,'[\"Anna\"]'),(314498,262635,3,'actor',NULL,'[\"Kyle\"]'),(314498,1211344,4,'actor',NULL,'[\"Roy\"]'),(314498,5367,5,'director',NULL,NULL),(314498,405190,6,'writer','story',NULL),(314498,951686,7,'writer','story',NULL),(314498,777043,8,'writer','screenplay',NULL),(314498,83696,9,'producer','producer',NULL),(314713,5739084,10,'composer',NULL,NULL),(314713,1158746,1,'actor',NULL,'[\"Major Kent Bendover\"]'),(314713,1160089,2,'actress',NULL,'[\"Barbie Que\"]'),(314713,1200424,3,'actor',NULL,'[\"General Herpes Simplex\",\"Reporter\"]'),(314713,5866140,4,'actor',NULL,'[\"Crisko\",\"Dr. Shiestkopf\"]'),(314713,1159956,5,'director',NULL,NULL),(314713,1207551,6,'writer','screenplay',NULL),(314713,5739085,7,'composer',NULL,NULL),(314713,5734854,8,'composer',NULL,NULL),(314713,2409382,9,'composer',NULL,NULL),(315327,115384,10,'producer','producer',NULL),(315327,120,1,'actor',NULL,'[\"Bruce Nolan\"]'),(315327,98,2,'actress',NULL,'[\"Grace Connelly\"]'),(315327,151,3,'actor',NULL,'[\"God\"]'),(315327,1311,4,'actor',NULL,'[\"Jack Baylor\"]'),(315327,1723,5,'director',NULL,NULL),(315327,466175,6,'writer','story',NULL),(315327,641479,7,'writer','story',NULL),(315327,644203,8,'writer','screenplay',NULL),(315327,98233,9,'producer','producer',NULL),(315733,592537,10,'editor',NULL,NULL),(315733,576,1,'actor',NULL,'[\"Paul Rivers\"]'),(315733,1125,2,'actor',NULL,'[\"Jack Jordan\"]'),(315733,915208,3,'actress',NULL,'[\"Cristina Peck\"]'),(315733,396812,4,'actor',NULL,'[\"Michael\"]'),(315733,327944,5,'director',NULL,NULL),(315733,37247,6,'writer','written by',NULL),(315733,7011,7,'producer','producer',NULL),(315733,763395,8,'composer',NULL,NULL),(315733,6509,9,'cinematographer',NULL,NULL),(315850,1233214,10,'composer',NULL,NULL),(315850,739810,1,'actor',NULL,'[\"Zapa\"]'),(315850,34147,2,'actress',NULL,'[\"Mabel\"]'),(315850,506377,3,'actor',NULL,'[\"Gallo\"]'),(315850,1161981,4,'actor',NULL,'[\"Polaco\"]'),(315850,871086,5,'director',NULL,NULL),(315850,1178554,6,'writer',NULL,NULL),(315850,1179072,7,'writer',NULL,NULL),(315850,1179218,8,'writer',NULL,NULL),(315850,884439,9,'writer',NULL,NULL),(315983,5683,10,'cinematographer','director of photography',NULL),(315983,124,1,'actress',NULL,'[\"Kathy\"]'),(315983,1426,2,'actor',NULL,'[\"Behrani\"]'),(315983,253035,3,'actor',NULL,'[\"Lester\"]'),(315983,4920,4,'actress',NULL,'[\"Connie Walsh\"]'),(315983,1166926,5,'director',NULL,NULL),(315983,1164318,6,'writer','novel',NULL),(315983,1171067,7,'writer','screenplay',NULL),(315983,518757,8,'producer','producer',NULL),(315983,35,9,'composer',NULL,NULL),(316396,926824,10,'producer','producer',NULL),(316396,838911,1,'actor',NULL,'[\"Peter Pan\"]'),(316396,5042,2,'actor',NULL,'[\"Mr. Darling\",\"Captain Hook\"]'),(316396,931404,3,'actress',NULL,'[\"Mrs. Darling\"]'),(316396,1655,4,'actress',NULL,'[\"Aunt Millicent\"]'),(316396,389591,5,'director',NULL,NULL),(316396,57381,6,'writer','play and books',NULL),(316396,325533,7,'writer','screenplay',NULL),(316396,279651,8,'producer','producer',NULL),(316396,566590,9,'producer','producer',NULL),(316654,149290,10,'writer','screen story',NULL),(316654,1497,1,'actor',NULL,'[\"Spider-Man\",\"Peter Parker\"]'),(316654,379,2,'actress',NULL,'[\"Mary Jane Watson\"]'),(316654,547,3,'actor',NULL,'[\"Doc Ock\",\"Dr. Otto Octavius\"]'),(316654,290556,4,'actor',NULL,'[\"Harry Osborn\"]'),(316654,600,5,'director',NULL,NULL),(316654,498278,6,'writer','comic book',NULL),(316654,228492,7,'writer','comic book',NULL),(316654,332184,8,'writer','screen story',NULL),(316654,587692,9,'writer','screen story',NULL),(316732,65100,10,'composer',NULL,NULL),(316732,1451,1,'actress',NULL,'[\"Isabelle \'Belle\' Williams\"]'),(316732,266422,2,'actor',NULL,'[\"Andrew \'Andy\' Washburn\"]'),(316732,1014528,3,'actress',NULL,'[\"Vanessa\"]'),(316732,5431,4,'actor',NULL,'[\"Jesse\"]'),(316732,1103162,5,'director',NULL,NULL),(316732,108,6,'writer','earlier screenplay',NULL),(316732,304830,7,'writer','screenplay',NULL),(316732,502073,8,'writer','screenplay',NULL),(316732,467942,9,'writer','screenplay',NULL),(317042,404698,10,'composer',NULL,NULL),(317042,715951,1,'actor',NULL,'[\"Hiep Pham\"]'),(317042,5438,2,'actor',NULL,'[\"Simon\"]'),(317042,1424,3,'actor',NULL,'[\"Derrick\"]'),(317042,679,4,'actress',NULL,'[\"Trish\"]'),(317042,1199954,5,'director',NULL,NULL),(317042,1200194,6,'director',NULL,NULL),(317042,1199287,7,'producer','producer',NULL),(317042,537305,8,'producer','producer',NULL),(317042,730222,9,'producer','producer',NULL),(317198,79677,10,'producer','producer',NULL),(317198,250,1,'actress',NULL,'[\"Bridget Jones\"]'),(317198,147,2,'actor',NULL,'[\"Mark Darcy\"]'),(317198,424,3,'actor',NULL,'[\"Daniel Cleaver\"]'),(317198,428121,4,'actress',NULL,'[\"Mum\"]'),(317198,452319,5,'director',NULL,NULL),(317198,276144,6,'writer','novel \"Bridget Jones: the Edge of Reason\"',NULL),(317198,203577,7,'writer','screenplay',NULL),(317198,193485,8,'writer','screenplay',NULL),(317198,111845,9,'writer','screenplay',NULL),(317219,1198436,10,'writer','screenplay by',NULL),(317219,5562,1,'actor',NULL,'[\"Lightning McQueen\"]'),(317219,1372,2,'actress',NULL,'[\"Sally Carrera\"]'),(317219,56,3,'actor',NULL,'[\"Doc Hudson\"]'),(317219,1249256,4,'actor',NULL,'[\"Mater\"]'),(317219,5124,5,'director',NULL,NULL),(317219,710020,6,'director','co-director',NULL),(317219,460146,7,'writer','original story by',NULL),(317219,1557594,8,'writer','screenplay by',NULL),(317219,1195697,9,'writer','screenplay by',NULL),(317248,708723,10,'producer','producer',NULL),(317248,1179105,1,'actor',NULL,'[\"Buscapé - Rocket\"]'),(317248,1129884,2,'actor',NULL,'[\"Zé Pequeno - Li\'l Zé\"]'),(317248,618690,3,'actor',NULL,'[\"Sandro Cenoura - Carrot\"]'),(317248,1249574,4,'actor',NULL,'[\"Bené - Benny\"]'),(317248,576987,5,'director',NULL,NULL),(317248,526199,6,'director','co-director',NULL),(317248,513130,7,'writer','novel',NULL),(317248,1130251,8,'writer','screenplay',NULL),(317248,53070,9,'producer','producer',NULL),(317303,628056,10,'composer',NULL,NULL),(317303,552,1,'actor',NULL,'[\"Charlie Hinton\"]'),(317303,307531,2,'actor',NULL,'[\"Phil\"]'),(317303,1378,3,'actress',NULL,'[\"Mrs. Gwyneth Harridan\"]'),(317303,1872,4,'actor',NULL,'[\"Marvin\"]'),(317303,139867,5,'director',NULL,NULL),(317303,734900,6,'writer','written by',NULL),(317303,73554,7,'producer','producer',NULL),(317303,204862,8,'producer','producer',NULL),(317303,324041,9,'producer','producer',NULL),(317640,102624,10,'cinematographer',NULL,NULL),(317640,4965,1,'actor',NULL,'[\"Mordechai Jefferson Carver\"]'),(317640,4873,2,'actor',NULL,'[\"Damian Claus\"]'),(317640,339460,3,'actress',NULL,'[\"Esther Bloomenbergensteinenthal\"]'),(317640,5522,4,'actor',NULL,'[\"Mohammed Ali Paula Abdul Rahim\"]'),(317640,1165576,5,'director',NULL,NULL),(317640,289591,6,'producer','producer',NULL),(317640,450275,7,'producer','producer',NULL),(317640,1001945,8,'producer','producer',NULL),(317640,1016080,9,'composer',NULL,NULL),(317676,932144,10,'producer','producer',NULL),(317676,974364,1,'actor',NULL,'[\"Rudy\"]'),(317676,500739,2,'actor',NULL,'[\"Simon\"]'),(317676,397212,3,'actor',NULL,'[\"Salish\"]'),(317676,336125,4,'actress',NULL,'[\"Alicia\"]'),(317676,93051,5,'director',NULL,NULL),(317676,22913,6,'writer','story',NULL),(317676,60889,7,'writer','story',NULL),(317676,662180,8,'writer','screenplay',NULL),(317676,380225,9,'producer','producer',NULL),(317705,524796,10,'cinematographer','director of photography',NULL),(317705,5266,1,'actor',NULL,'[\"Bob Parr\",\"Mr. Incredible\"]'),(317705,168,2,'actor',NULL,'[\"Lucius Best\",\"Frozone\"]'),(317705,456,3,'actress',NULL,'[\"Helen Parr\",\"Elastigirl\"]'),(317705,5134,4,'actor',NULL,'[\"Buddy Pine\",\"Syndrome\"]'),(317705,83348,5,'director',NULL,NULL),(317705,907869,6,'producer','producer',NULL),(317705,315974,7,'composer',NULL,NULL),(317705,1285750,8,'cinematographer','director of photography',NULL),(317705,510936,9,'cinematographer','director of photography',NULL),(317740,694173,10,'composer',NULL,NULL),(317740,661,1,'actor',NULL,'[\"John Bridger\"]'),(317740,242,2,'actor',NULL,'[\"Charlie Croker\"]'),(317740,1570,3,'actor',NULL,'[\"Steve\"]'),(317740,234,4,'actress',NULL,'[\"Stella Bridger\"]'),(317740,336620,5,'director',NULL,NULL),(317740,448392,6,'writer',NULL,NULL),(317740,694526,7,'writer','screenplay',NULL),(317740,694638,8,'writer','screenplay',NULL),(317740,209773,9,'producer','producer',NULL),(317919,315974,10,'composer',NULL,NULL),(317919,129,1,'actor',NULL,'[\"Ethan Hunt\"]'),(317919,1157358,2,'actress',NULL,'[\"Julia\"]'),(317919,609,3,'actor',NULL,'[\"Luther\"]'),(317919,450,4,'actor',NULL,'[\"Owen Davian\"]'),(317919,9190,5,'director',NULL,NULL),(317919,476064,6,'writer','written by',NULL),(317919,649460,7,'writer','written by',NULL),(317919,312367,8,'writer','television series',NULL),(317919,906048,9,'producer','producer',NULL),(318403,818746,10,'writer','additional screenplay material',NULL),(318403,1447,1,'actor',NULL,'[\"Timon\"]'),(318403,754676,2,'actor',NULL,'[\"Pumbaa\"]'),(318403,1413,3,'actress',NULL,'[\"Mom\"]'),(318403,5467,4,'actor',NULL,'[\"Uncle Max\"]'),(318403,713214,5,'director',NULL,NULL),(318403,737241,6,'writer','screenplay',NULL),(318403,21249,7,'writer','additional screenplay material',NULL),(318403,575293,8,'writer','additional screenplay material',NULL),(318403,826137,9,'writer','additional screenplay material',NULL),(318411,498758,10,'production_designer',NULL,NULL),(318411,909626,1,'actress',NULL,'[\"Crispina\"]'),(318411,240524,2,'actress',NULL,'[\"Rose\",\"Patricia\"]'),(318411,1172901,3,'actress',NULL,'[\"Bernadette\"]'),(318411,240359,4,'actress',NULL,'[\"Margaret\"]'),(318411,611932,5,'director',NULL,NULL),(318411,383669,6,'producer','producer',NULL),(318411,35661,7,'composer',NULL,NULL),(318411,932590,8,'cinematographer','director of photography',NULL),(318411,598114,9,'editor',NULL,NULL),(318462,854923,10,'producer','producer',NULL),(318462,305558,1,'actor',NULL,'[\"Ernesto Guevara de la Serna\"]'),(318462,209404,2,'actor',NULL,'[\"Alberto Granado\"]'),(318462,535502,3,'actress',NULL,'[\"Chichina Ferreyra\"]'),(318462,608187,4,'actress',NULL,'[\"Celia de la Serna (Argentina)\"]'),(318462,758574,5,'director',NULL,NULL),(318462,346466,6,'writer','book \"Notas de viaje\"',NULL),(318462,1424928,7,'writer','book \"Con el Che por America Latina\"',NULL),(318462,1433580,8,'writer','screenplay',NULL),(318462,637602,9,'producer','producer',NULL),(318627,736835,10,'cinematographer','director of photography',NULL),(318627,170,1,'actress',NULL,'[\"Alice\"]'),(318627,347149,2,'actress',NULL,'[\"Jill Valentine\"]'),(318627,531095,3,'archive_footage',NULL,'[\"Matt Addison\"]'),(318627,4912,4,'actor',NULL,'[\"Carlos Olivera\"]'),(318627,936838,5,'director',NULL,NULL),(318627,27271,6,'writer','written by',NULL),(318627,93337,7,'producer','producer',NULL),(318627,138502,8,'producer','producer',NULL),(318627,4582,9,'composer',NULL,NULL),(318725,240720,10,'production_designer',NULL,NULL),(318725,856500,1,'actress',NULL,'[\"Amélie\"]'),(318725,875307,2,'actress',NULL,'[\"Fubuki\"]'),(318725,840486,3,'actor',NULL,'[\"Monsieur Saito\"]'),(318725,1310349,4,'actor',NULL,'[\"Monsieur Omochi\"]'),(318725,6734,5,'director',NULL,NULL),(318725,636569,6,'writer','novel',NULL),(318725,764963,7,'producer','producer',NULL),(318725,2174,8,'cinematographer',NULL,NULL),(318725,220496,9,'editor',NULL,NULL),(318997,342,10,'actor',NULL,'[\"Roy\'s Doctor\"]'),(318997,199,1,'actor',NULL,'[\"Roy Cohn\"]'),(318997,658,2,'actress',NULL,'[\"Hannah Pitt\",\"Ethel Rosenberg\",\"The Rabbi\"]'),(318997,668,3,'actress',NULL,'[\"Nurse Emily\",\"Homeless Woman\",\"The Angel\"]'),(318997,571,4,'actress',NULL,'[\"Harper Pitt\"]'),(318997,5095,5,'actor',NULL,'[\"Prior Walter\",\"Leatherman in Park\"]'),(318997,942482,6,'actor',NULL,'[\"Mr. Lies\",\"Belize\"]'),(318997,791570,7,'actor',NULL,'[\"Louis Ironson\"]'),(318997,933940,8,'actor',NULL,'[\"Joe Pitt\"]'),(318997,548498,9,'actor',NULL,'[\"Martin Heller\"]'),(319061,5573,10,'producer','producer',NULL),(319061,191,1,'actor',NULL,'[\"Ed Bloom (young)\"]'),(319061,1215,2,'actor',NULL,'[\"Ed Bloom (senior)\"]'),(319061,1082,3,'actor',NULL,'[\"Will Bloom\"]'),(319061,1448,4,'actress',NULL,'[\"Sandra Bloom (senior)\"]'),(319061,318,5,'director',NULL,NULL),(319061,1180620,6,'writer','novel \"Big Fish: A Novel of Mythic Proportions\"',NULL),(319061,41864,7,'writer','screenplay',NULL),(319061,169260,8,'producer','producer',NULL),(319061,423134,9,'producer','producer',NULL),(319262,107463,10,'editor',NULL,NULL),(319262,598,1,'actor',NULL,'[\"Jack Hall\"]'),(319262,350453,2,'actor',NULL,'[\"Sam Hall\"]'),(319262,2536,3,'actress',NULL,'[\"Laura Chapman\"]'),(319262,5231,4,'actor',NULL,'[\"Jason Evans\"]'),(319262,386,5,'director',NULL,NULL),(319262,618680,6,'writer','screenplay',NULL),(319262,330428,7,'producer','producer',NULL),(319262,460057,8,'composer',NULL,NULL),(319262,825336,9,'cinematographer','director of photography',NULL),(319343,2201,10,'composer',NULL,NULL),(319343,2071,1,'actor',NULL,'[\"Buddy\"]'),(319343,1001,2,'actor',NULL,'[\"Walter\"]'),(319343,627878,3,'actor',NULL,'[\"Papa Elf\"]'),(319343,221046,4,'actress',NULL,'[\"Jovie\"]'),(319343,269463,5,'director',NULL,NULL),(319343,1183854,6,'writer','written by',NULL),(319343,1153895,7,'producer','producer',NULL),(319343,464548,8,'producer','producer',NULL),(319343,732024,9,'producer','producer',NULL),(319769,5790,10,'cinematographer',NULL,NULL),(319769,849,1,'actor',NULL,'[\"Santa\"]'),(319769,869088,2,'actor',NULL,'[\"Jose\"]'),(319769,251021,3,'actor',NULL,'[\"Lino\"]'),(319769,210221,4,'actress',NULL,'[\"Ana\"]'),(319769,508208,5,'director',NULL,NULL),(319769,602508,6,'writer','screenplay',NULL),(319769,703262,7,'producer','producer',NULL),(319769,1255565,8,'producer','producer',NULL),(319769,324184,9,'composer',NULL,NULL),(319970,6359,10,'editor',NULL,NULL),(319970,79374,1,'actress',NULL,'[\"Carietta \'Carrie\' White\"]'),(319970,165101,2,'actress',NULL,'[\"Margaret White\"]'),(319970,812133,3,'actress',NULL,'[\"Miss Desjarden\"]'),(319970,565973,4,'actress',NULL,'[\"Sue Snell\"]'),(319970,141222,5,'director',NULL,NULL),(319970,298188,6,'writer','teleplay',NULL),(319970,175,7,'writer','novel',NULL),(319970,440017,8,'composer',NULL,NULL),(319970,4478,9,'cinematographer','director of photography',NULL),(320661,561480,10,'production_designer',NULL,NULL),(320661,89217,1,'actor',NULL,'[\"Balian de Ibelin\"]'),(320661,1200692,2,'actress',NULL,'[\"Sibylla\"]'),(320661,553,3,'actor',NULL,'[\"Godfrey de Ibelin\"]'),(320661,359398,4,'actor',NULL,'[\"Gravedigger\"]'),(320661,631,5,'director',NULL,NULL),(320661,1184258,6,'writer','written by',NULL),(320661,4581,7,'composer',NULL,NULL),(320661,558822,8,'cinematographer','director of photography',NULL),(320661,233827,9,'editor',NULL,NULL),(320691,2999,10,'producer','producer',NULL),(320691,295,1,'actress',NULL,'[\"Selene\"]'),(320691,5454,2,'actor',NULL,'[\"Michael\"]'),(320691,111274,3,'actor',NULL,'[\"Kraven\"]'),(320691,790688,4,'actor',NULL,'[\"Lucian\"]'),(320691,936482,5,'director',NULL,NULL),(320691,340485,6,'writer','story',NULL),(320691,564286,7,'writer','story',NULL),(320691,524342,8,'producer','producer',NULL),(320691,742347,9,'producer','producer',NULL),(322259,3417,10,'composer',NULL,NULL),(322259,908094,1,'actor',NULL,'[\"Brian O\'Conner\"]'),(322259,879085,2,'actor',NULL,'[\"Roman Pearce\"]'),(322259,369513,3,'actor',NULL,'[\"Carter Verone\"]'),(322259,578949,4,'actress',NULL,'[\"Monica Fuentes\"]'),(322259,5436,5,'director',NULL,NULL),(322259,860155,6,'writer','characters',NULL),(322259,104973,7,'writer','story',NULL),(322259,351929,8,'writer','story',NULL),(322259,605775,9,'producer','producer',NULL),(322330,448843,10,'composer',NULL,NULL),(322330,130,1,'actress',NULL,'[\"Tess Coleman\"]'),(322330,517820,2,'actress',NULL,'[\"Anna Coleman\"]'),(322330,1319,3,'actor',NULL,'[\"Ryan\"]'),(322330,332390,4,'actor',NULL,'[\"Grandpa\"]'),(322330,914132,5,'director',NULL,NULL),(322330,734742,6,'writer','novel',NULL),(322330,352320,7,'writer','screenplay',NULL),(322330,228908,8,'writer','screenplay',NULL),(322330,348151,9,'producer','producer',NULL),(322802,569199,10,'writer','concepts by',NULL),(322802,424216,1,'self',NULL,'[\"Self\"]'),(322802,546640,2,'self',NULL,'[\"Self\"]'),(322802,690686,3,'self',NULL,'[\"Self\"]'),(322802,828177,4,'self',NULL,'[\"Self\"]'),(322802,871860,5,'director',NULL,NULL),(322802,5069,6,'writer','concepts by',NULL),(322802,1035634,7,'writer','concepts by',NULL),(322802,257424,8,'writer','concepts by',NULL),(322802,242756,9,'writer','concepts by',NULL),(323120,2830157,10,'composer',NULL,NULL),(323120,1480430,1,'actress',NULL,'[\"Annabelle Tillman\"]'),(323120,301157,2,'actress',NULL,'[\"Simone Bradley\"]'),(323120,106549,3,'actress',NULL,'[\"Colins\"]'),(323120,394889,4,'actress',NULL,'[\"Kristen\"]'),(323120,112085,5,'director',NULL,NULL),(323120,1220329,6,'writer','additional screenplay',NULL),(323120,460008,7,'writer','additional screenplay',NULL),(323120,140829,8,'producer','producer',NULL),(323120,949683,9,'producer','producer',NULL),(323298,309423,10,'editor',NULL,NULL),(323298,717176,1,'actress',NULL,'[\"May\"]'),(323298,185819,2,'actor',NULL,'[\"Darren\"]'),(323298,934318,3,'actress',NULL,'[\"Helen\"]'),(323298,891092,4,'actor',NULL,'[\"Toots\"]'),(323298,585011,5,'director',NULL,NULL),(323298,475659,6,'writer',NULL,NULL),(323298,2941,7,'producer','producer',NULL),(323298,760255,8,'composer',NULL,NULL),(323298,473696,9,'cinematographer','director of photography',NULL),(323810,780624,10,'cinematographer',NULL,NULL),(323810,5238,1,'actress',NULL,'[\"Erica Enders\"]'),(323810,488953,2,'actress',NULL,'[\"Courtney Enders\"]'),(323810,512455,3,'actor',NULL,'[\"Gregg Enders\"]'),(323810,751242,4,'actress',NULL,'[\"Janet Lee Enders\"]'),(323810,242271,5,'director',NULL,NULL),(323810,625931,6,'writer','written by',NULL),(323810,333949,7,'writer','written by',NULL),(323810,769913,8,'producer','producer',NULL),(323810,551108,9,'composer',NULL,NULL),(323944,580779,10,'producer','producer',NULL),(323944,159789,1,'actor',NULL,'[\"Stephen Glass\"]'),(323944,1721,2,'actress',NULL,'[\"Caitlin Avey\"]'),(323944,1872,3,'actor',NULL,'[\"Adam Penenberg\"]'),(323944,765597,4,'actor',NULL,'[\"Charles \'Chuck\' Lane\"]'),(323944,712753,5,'director',NULL,NULL),(323944,84334,6,'writer','article',NULL),(323944,62332,7,'producer','producer',NULL),(323944,159922,8,'producer','producer',NULL),(323944,1198319,9,'producer','producer',NULL),(324013,765477,10,'cinematographer','director of photography',NULL),(324013,4949,1,'actor',NULL,'[\"Barry Winchell\"]'),(324013,1195855,2,'actor',NULL,'[\"Calpernia Addams\"]'),(324013,105672,3,'actor',NULL,'[\"Sergeant Carlos Diaz\"]'),(324013,4999,4,'actor',NULL,'[\"Justin Fisher\"]'),(324013,682757,5,'director',NULL,NULL),(324013,638913,6,'writer','written by',NULL),(324013,45549,7,'producer','producer',NULL),(324013,331988,8,'producer','producer',NULL),(324013,434222,9,'composer',NULL,NULL),(324133,739151,10,'composer',NULL,NULL),(324133,1648,1,'actress',NULL,'[\"Sarah Morton\"]'),(324133,1097,2,'actor',NULL,'[\"John Bosload\"]'),(324133,756203,3,'actress',NULL,'[\"Julie\"]'),(324133,483788,4,'actor',NULL,'[\"Franck\"]'),(324133,654830,5,'director',NULL,NULL),(324133,76814,6,'writer','with the collaboration of',NULL),(324133,2019127,7,'writer','translation: English',NULL),(324133,216635,8,'producer','producer',NULL),(324133,592945,9,'producer','producer',NULL),(324158,1195490,10,'producer','producer',NULL),(324158,1196297,1,'actress',NULL,'[\"Marcia\",\"salesgirl\"]'),(324158,1197634,2,'actress',NULL,'[\"Mao\"]'),(324158,368355,3,'actress',NULL,'[\"Lenin\"]'),(324158,857753,4,'actress',NULL,'[\"Blanca\",\"Lenin\'s grandma\'s friend(landlady)\"]'),(324158,1195308,5,'director',NULL,NULL),(324158,1193600,6,'writer','novel \"La prueba\"',NULL),(324158,1198525,7,'writer',NULL,NULL),(324158,1253289,8,'writer','script',NULL),(324158,1198299,9,'producer','producer',NULL),(324197,929889,10,'editor',NULL,NULL),(324197,1376,1,'actress',NULL,'[\"Anne Laurent\"]'),(324197,1326732,2,'actress',NULL,'[\"Eva Laurent\"]'),(324197,1095,3,'actress',NULL,'[\"Lise Brandt\"]'),(324197,161717,4,'actor',NULL,'[\"Thomas Brandt\"]'),(324197,359734,5,'director',NULL,NULL),(324197,374002,6,'producer','producer',NULL),(324197,617705,7,'producer','producer',NULL),(324197,5751,8,'cinematographer',NULL,NULL),(324197,6933,9,'editor',NULL,NULL),(324264,830767,10,'actress',NULL,'[\"Dickie\"]'),(324264,830556,1,'actress',NULL,'[\"Nan Astley\"]'),(324264,369954,2,'actress',NULL,'[\"Kitty Butler\"]'),(324264,562003,3,'actress',NULL,'[\"Florence Banner\"]'),(324264,768488,4,'actor',NULL,'[\"Charles Frobisher\"]'),(324264,825231,5,'actress',NULL,'[\"Mrs. Denby\",\"Mrs. Dendy\"]'),(324264,100764,6,'actor',NULL,'[\"Walter Bliss\"]'),(324264,151250,7,'actress',NULL,'[\"Diana Lethaby\"]'),(324264,1020089,8,'actress',NULL,'[\"Zena Blake\"]'),(324264,376983,9,'actress',NULL,'[\"Mrs. Jex\"]'),(325007,455234,10,'cinematographer',NULL,NULL),(325007,162391,1,'actress',NULL,'[\"April\"]'),(325007,233180,2,'actress',NULL,'[\"Alex\"]'),(325007,342029,3,'actor',NULL,'[\"Rocco\"]'),(325007,911933,4,'actor',NULL,'[\"August\"]'),(325007,479666,5,'producer','producer',NULL),(325007,1221599,6,'producer','producer',NULL),(325007,1006356,7,'producer','producer',NULL),(325007,1132022,8,'composer',NULL,NULL),(325007,76877,9,'cinematographer',NULL,NULL),(325055,31697,10,'editor',NULL,NULL),(325055,569,1,'actress',NULL,'[\"Sylvia Plath\"]'),(325055,185819,2,'actor',NULL,'[\"Ted Hughes\"]'),(325055,1275283,3,'actress',NULL,'[\"Doreen\"]'),(325055,83605,4,'actor',NULL,'[\"Morecambe\"]'),(325055,420422,5,'director',NULL,NULL),(325055,3164,6,'writer','screenplay',NULL),(325055,654077,7,'producer','producer',NULL),(325055,1189,8,'composer',NULL,NULL),(325055,867549,9,'cinematographer',NULL,NULL),(325703,505656,10,'producer','producer',NULL),(325703,1401,1,'actress',NULL,'[\"Lara Croft\"]'),(325703,124930,2,'actor',NULL,'[\"Terry Sheridan\"]'),(325703,57368,3,'actor',NULL,'[\"Hillary\"]'),(325703,1354,4,'actor',NULL,'[\"Jonathan Reiss\"]'),(325703,957,5,'director',NULL,NULL),(325703,1212988,6,'writer','screenplay',NULL),(325703,211823,7,'writer','story',NULL),(325703,366337,8,'writer','story',NULL),(325703,330379,9,'producer','producer',NULL),(325710,906048,10,'producer','producer',NULL),(325710,129,1,'actor',NULL,'[\"Nathan Algren\"]'),(325710,913822,2,'actor',NULL,'[\"Katsumoto\"]'),(325710,175262,3,'actor',NULL,'[\"Zebulon Gant\"]'),(325710,40472,4,'actor',NULL,'[\"Winchester Rep\"]'),(325710,1880,5,'director',NULL,NULL),(325710,517589,6,'writer','story',NULL),(325710,380980,7,'writer','screenplay',NULL),(325710,257259,8,'producer','producer',NULL),(325710,472256,9,'producer','producer',NULL),(325980,988,10,'producer','producer',NULL),(325980,136,1,'actor',NULL,'[\"Jack Sparrow\"]'),(325980,1691,2,'actor',NULL,'[\"Barbossa\"]'),(325980,89217,3,'actor',NULL,'[\"Will Turner\"]'),(325980,461136,4,'actress',NULL,'[\"Elizabeth Swann\"]'),(325980,893659,5,'director',NULL,NULL),(325980,254645,6,'writer','screen story',NULL),(325980,744429,7,'writer','screen story',NULL),(325980,64181,8,'writer','screen story',NULL),(325980,938684,9,'writer','screen story',NULL),(326977,869431,10,'producer','producer',NULL),(326977,845209,1,'actress',NULL,'[\"Anna\"]'),(326977,8090,2,'actor',NULL,'[\"Pino\"]'),(326977,1309554,3,'actor',NULL,'[\"Felice\"]'),(326977,957024,4,'actor',NULL,'[\"Pietro\"]'),(326977,759368,5,'director',NULL,NULL),(326977,25052,6,'writer','novel',NULL),(326977,545690,7,'writer','screenplay',NULL),(326977,157692,8,'producer','producer',NULL),(326977,820908,9,'producer','producer',NULL),(327056,827869,10,'cinematographer','director of photography',NULL),(327056,576,1,'actor',NULL,'[\"Jimmy Markum\"]'),(327056,209,2,'actor',NULL,'[\"Dave Boyle\"]'),(327056,102,3,'actor',NULL,'[\"Sean Devine\"]'),(327056,2536,4,'actress',NULL,'[\"Katie Markum\"]'),(327056,142,5,'director',NULL,NULL),(327056,1338,6,'writer','screenplay',NULL),(327056,1212331,7,'writer','novel',NULL),(327056,398469,8,'producer','producer',NULL),(327056,520749,9,'producer','producer',NULL),(327084,1212328,10,'writer','comic strip characters',NULL),(327084,246,1,'actor',NULL,'[\"RJ\"]'),(327084,788009,2,'actor',NULL,'[\"Verne\"]'),(327084,136797,3,'actor',NULL,'[\"Hammy\"]'),(327084,843100,4,'actress',NULL,'[\"Stella\"]'),(327084,426333,5,'director',NULL,NULL),(327084,456732,6,'director',NULL,NULL),(327084,89676,7,'writer','screenplay',NULL),(327084,131661,8,'writer','screenplay',NULL),(327084,395924,9,'writer','screenplay',NULL),(327137,5726,10,'cinematographer','director of photography',NULL),(327137,5286,1,'actor',NULL,'[\"Walter\"]'),(327137,323,2,'actor',NULL,'[\"Garth\"]'),(327137,380,3,'actor',NULL,'[\"Hub\"]'),(327137,1718,4,'actress',NULL,'[\"Mae\"]'),(327137,564827,5,'director',NULL,NULL),(327137,456946,6,'producer','producer',NULL),(327137,743824,7,'producer','producer',NULL),(327137,797190,8,'producer','producer',NULL),(327137,236462,9,'composer',NULL,NULL),(327162,748784,10,'producer','producer',NULL),(327162,173,1,'actress',NULL,'[\"Joanna Eberhart\"]'),(327162,541,2,'actress',NULL,'[\"Bobbie Markowitz\"]'),(327162,111,3,'actor',NULL,'[\"Walter Kresby\"]'),(327162,335,4,'actress',NULL,'[\"Claire Wellington\"]'),(327162,568,5,'director',NULL,NULL),(327162,505615,6,'writer','book',NULL),(327162,397411,7,'writer','screenplay',NULL),(327162,209773,8,'producer','producer',NULL),(327162,344620,9,'producer','producer',NULL),(327247,759627,10,'producer','producer',NULL),(327247,246,1,'actor',NULL,'[\"Jimmy\"]'),(327247,1612,2,'actor',NULL,'[\"Oz\"]'),(327247,449,3,'actress',NULL,'[\"Cynthia\"]'),(327247,1605,4,'actress',NULL,'[\"Jill\"]'),(327247,222043,5,'director',NULL,NULL),(327247,438449,6,'writer','characters',NULL),(327247,303032,7,'writer','screenplay',NULL),(327247,442075,8,'producer','producer',NULL),(327247,726476,9,'producer','producer',NULL),(327437,45927,10,'producer','producer',NULL),(327437,329,1,'actor',NULL,'[\"Passepartout\",\"Lau Xing\"]'),(327437,176869,2,'actor',NULL,'[\"Phileas Fogg\"]'),(327437,980,3,'actor',NULL,'[\"Lord Kelvin\"]'),(327437,870,4,'actress',NULL,'[\"Queen Victoria\"]'),(327437,178997,5,'director',NULL,NULL),(327437,894523,6,'writer','novel \"Le Tour du monde en quatre-vingts jours\"',NULL),(327437,864435,7,'writer','screenplay',NULL),(327437,73026,8,'writer','screenplay',NULL),(327437,1309286,9,'writer','screenplay',NULL),(327554,736966,10,'writer','screenplay',NULL),(327554,932,1,'actress',NULL,'[\"Patience Phillips\",\"Catwoman\"]'),(327554,232,2,'actress',NULL,'[\"Laurel Hedare\"]'),(327554,973,3,'actor',NULL,'[\"Tom Lone\"]'),(327554,933727,4,'actor',NULL,'[\"George Hedare\"]'),(327554,685759,5,'director',NULL,NULL),(327554,4170,6,'writer','characters',NULL),(327554,714246,7,'writer','story',NULL),(327554,104335,8,'writer','story',NULL),(327554,274905,9,'writer','story',NULL),(327597,6020,10,'composer',NULL,NULL),(327597,266824,1,'actress',NULL,'[\"Coraline Jones\"]'),(327597,159,2,'actress',NULL,'[\"Mel Jones\",\"Other Mother\",\"Beldam\"]'),(327597,1894655,3,'actor',NULL,'[\"Charlie Jones\",\"Other Father\"]'),(327597,766837,4,'actress',NULL,'[\"Miss April Spink\",\"Other Spink\"]'),(327597,783139,5,'director',NULL,NULL),(327597,301274,6,'writer','book',NULL),(327597,421127,7,'producer','producer',NULL),(327597,575312,8,'producer','producer',NULL),(327597,761365,9,'producer','producer',NULL),(327679,938293,10,'writer','screenplay',NULL),(327679,4266,1,'actress',NULL,'[\"Ella\"]'),(327679,199215,2,'actor',NULL,'[\"Char\"]'),(327679,144,3,'actor',NULL,'[\"Edgar\"]'),(327679,525921,4,'actress',NULL,'[\"Dame Olga\"]'),(327679,641373,5,'director',NULL,NULL),(327679,185934,6,'writer','screenplay',NULL),(327679,527581,7,'writer','screenplay',NULL),(327679,809006,8,'writer','screenplay',NULL),(327679,372659,9,'writer','screenplay',NULL),(327753,1215271,10,'actor',NULL,'[\"Gary (engineer)\"]'),(327753,1181100,1,'actress',NULL,'[\"Marnie\"]'),(327753,1218632,2,'actor',NULL,'[\"Grady (tattoo artist)\"]'),(327753,1218815,3,'actor',NULL,'[\"Alex\"]'),(327753,1217844,4,'actress',NULL,'[\"Rachel\"]'),(327753,1216004,5,'director',NULL,NULL),(327753,901074,6,'producer','producer',NULL),(327753,3442,7,'cinematographer','director of photography',NULL),(327753,1218767,8,'actor',NULL,'[\"Dave\"]'),(327753,1218697,9,'actor',NULL,'[\"Wyatt\"]'),(328400,889678,10,'cinematographer','director of photography',NULL),(328400,1378218,1,'actor',NULL,'[\"Gene\"]'),(328400,601959,2,'actor',NULL,'[\"Finny\"]'),(328400,686009,3,'actor',NULL,'[\"Brinker\"]'),(328400,1138306,4,'actor',NULL,'[\"Leper\"]'),(328400,946811,5,'director',NULL,NULL),(328400,461533,6,'writer','novel',NULL),(328400,450277,7,'writer','teleplay',NULL),(328400,502406,8,'producer','producer',NULL),(328400,6025,9,'composer',NULL,NULL),(328538,204567,10,'cinematographer','director of photography',NULL),(328538,939697,1,'actress',NULL,'[\"Tracy Freeland\"]'),(328538,456,2,'actress',NULL,'[\"Melanie Freeland\"]'),(328538,1223023,3,'actress',NULL,'[\"Evie Zamora\"]'),(328538,1227814,4,'actress',NULL,'[\"Noel\"]'),(328538,362566,5,'director',NULL,NULL),(328538,506664,6,'producer','producer',NULL),(328538,518757,7,'producer','producer',NULL),(328538,6205,8,'composer',NULL,NULL),(328538,1617413,9,'composer',NULL,NULL),(328589,167986,10,'editor',NULL,NULL),(328589,178,1,'actress',NULL,'[\"Frances\"]'),(328589,100556,2,'actor',NULL,'[\"Marcello\"]'),(328589,644897,3,'actress',NULL,'[\"Patti\"]'),(328589,242026,4,'actress',NULL,'[\"Katherine\"]'),(328589,920108,5,'director',NULL,NULL),(328589,1217227,6,'writer','book \"Under the Tuscan Sun: At Home in Italy\"',NULL),(328589,827923,7,'producer','producer',NULL),(328589,65100,8,'composer',NULL,NULL),(328589,801005,9,'cinematographer','director of photography',NULL),(328880,70368,10,'writer','screenplay by',NULL),(328880,1618,1,'actor',NULL,'[\"Kenai\"]'),(328880,836836,2,'actor',NULL,'[\"Koda\"]'),(328880,1548,3,'actor',NULL,'[\"Rutt\"]'),(328880,707262,4,'actor',NULL,'[\"Denahi\"]'),(328880,86431,5,'director',NULL,NULL),(328880,1074107,6,'director',NULL,NULL),(328880,614742,7,'writer','screenplay by',NULL),(328880,131661,8,'writer','screenplay by',NULL),(328880,395924,9,'writer','screenplay by',NULL),(329101,192446,10,'producer','producer',NULL),(329101,387,1,'actor',NULL,'[\"Freddy Krueger\"]'),(329101,457090,2,'actor',NULL,'[\"Jason Voorhees\"]'),(329101,746714,3,'actress',NULL,'[\"Kia Waterson\"]'),(329101,444621,4,'actress',NULL,'[\"Lori Campbell\"]'),(329101,950553,5,'director',NULL,NULL),(329101,127,6,'writer','characters',NULL),(329101,566699,7,'writer','characters',NULL),(329101,1226735,8,'writer','written by',NULL),(329101,1226737,9,'writer','written by',NULL),(329355,53427,10,'composer',NULL,NULL),(329355,662504,1,'actress',NULL,'[\"Agnes\"]'),(329355,420953,2,'actress',NULL,'[\"Theresa\"]'),(329355,809998,3,'actress',NULL,'[\"Louise\"]'),(329355,573909,4,'actress',NULL,'[\"Rose\"]'),(329355,902092,5,'director',NULL,NULL),(329355,532914,6,'writer','written by',NULL),(329355,442786,7,'producer','producer',NULL),(329355,1228443,8,'producer','producer',NULL),(329355,785012,9,'producer','producer',NULL),(329679,661615,10,'production_designer',NULL,NULL),(329679,394012,1,'actress',NULL,'[\"Kate Mayer\"]'),(329679,187724,2,'actress',NULL,'[\"McNally \'Mac\' Hays\"]'),(329679,595631,3,'actor',NULL,'[\"Jack Mayer\"]'),(329679,683467,4,'actress',NULL,'[\"Samantha Mayer\"]'),(329679,3022,5,'director',NULL,NULL),(329679,6561,6,'composer',NULL,NULL),(329679,452654,7,'cinematographer','director of photography',NULL),(329679,925330,8,'editor',NULL,NULL),(329679,215851,9,'production_designer',NULL,NULL),(329717,786732,10,'editor',NULL,NULL),(329717,148,1,'actor',NULL,'[\"Sgt. Joe Gavilan\"]'),(329717,1326,2,'actor',NULL,'[\"Det. K.C. Calden\"]'),(329717,913460,3,'actor',NULL,'[\"Antoine Sartain\"]'),(329717,565,4,'actress',NULL,'[\"Ruby\"]'),(329717,5421,5,'director',NULL,NULL),(329717,1226736,6,'writer','written by',NULL),(329717,1018725,7,'producer','producer',NULL),(329717,943391,8,'composer',NULL,NULL),(329717,677021,9,'cinematographer','director of photography',NULL),(329767,864686,10,'editor',NULL,NULL),(329767,803397,1,'actor',NULL,'[\"Wilbur\"]'),(329767,712628,2,'actor',NULL,'[\"Harbour\"]'),(329767,376602,3,'actress',NULL,'[\"Alice\"]'),(329767,1229993,4,'actress',NULL,'[\"Mary\"]'),(329767,771054,5,'director',NULL,NULL),(329767,421314,6,'writer','written by',NULL),(329767,1011849,7,'producer','producer',NULL),(329767,389996,8,'composer',NULL,NULL),(329767,423979,9,'cinematographer',NULL,NULL),(330099,2172371,10,'actor',NULL,'[\"Featured Racer\"]'),(330099,1252,1,'actor',NULL,'[\"Bud Clay\"]'),(330099,1721,2,'actress',NULL,'[\"Daisy\"]'),(330099,862841,3,'actress',NULL,'[\"Lilly\"]'),(330099,1686350,4,'actress',NULL,'[\"Rose\"]'),(330099,1697044,5,'actress',NULL,'[\"Violet\"]'),(330099,1697036,6,'actress',NULL,'[\"Mrs. Lemon\"]'),(330099,2164670,7,'actor',NULL,'[\"Featured Racer\"]'),(330099,2166735,8,'actor',NULL,'[\"Featured Racer\"]'),(330099,2164896,9,'actor',NULL,'[\"Featured Racer\"]'),(330312,1233045,10,'writer','teleplay',NULL),(330312,1232798,1,'actor',NULL,'[\"Guide\",\"Storyteller\"]'),(330312,535329,2,'actress',NULL,'[\"Ayumi (story \'Shokki\')\"]'),(330312,1233611,3,'actor',NULL,'[\"Shôta Hayakawa (story \'Shokki\')\"]'),(330312,879749,4,'actress',NULL,'[\"(story \'Shokki\')\"]'),(330312,475905,5,'director',NULL,NULL),(330312,535351,6,'director',NULL,NULL),(330312,1234345,7,'director',NULL,NULL),(330312,1231346,8,'writer','Weekly Young Jump story \"Kodama\"',NULL),(330312,435435,9,'writer','animation sequence',NULL),(330373,236462,10,'composer',NULL,NULL),(330373,705356,1,'actor',NULL,'[\"Harry Potter\"]'),(330373,914612,2,'actress',NULL,'[\"Hermione Granger\"]'),(330373,342488,3,'actor',NULL,'[\"Ron Weasley\"]'),(330373,843059,4,'actor',NULL,'[\"Frank Bryce\"]'),(330373,1565,5,'director',NULL,NULL),(330373,460141,6,'writer','screenplay',NULL),(330373,746830,7,'writer','novel',NULL),(330373,382268,8,'producer','producer',NULL),(330373,650038,9,'producer','producer',NULL),(330500,1233027,10,'cinematographer',NULL,NULL),(330500,648764,1,'actor',NULL,'[\"Shunsuke Kobayashi (segment \\\"Toshio\\\")\"]'),(330500,1234975,2,'actress',NULL,'[\"Manami Kobayashi (segment \\\"Toshio\\\")\"]'),(330500,1233079,3,'actor',NULL,'[\"Toshio Saeki (segment \\\"Toshio\\\")\"]'),(330500,594275,4,'actress',NULL,'[\"Yuki (segment \\\"Yuki\\\")\"]'),(330500,1234345,5,'director',NULL,NULL),(330500,406772,6,'producer','producer',NULL),(330500,1232950,7,'producer','producer',NULL),(330500,1234543,8,'producer','producer',NULL),(330500,38976,9,'composer',NULL,NULL),(330501,1233027,10,'cinematographer',NULL,NULL),(330501,648764,1,'actor',NULL,'[\"Shunsuke Kobayashi (segment \\\"Kayako\\\")\"]'),(330501,1232416,2,'actress',NULL,'[\"Kayako Saeki (segment \\\"Kayako\\\")\"]'),(330501,559690,3,'actor',NULL,'[\"Takeo Saeki (segment \\\"Kayako\\\")\"]'),(330501,1233079,4,'actor',NULL,'[\"Toshio Saeki (segment \\\"Kayako\\\")\"]'),(330501,1234345,5,'director',NULL,NULL),(330501,406772,6,'producer','producer',NULL),(330501,1232950,7,'producer','producer',NULL),(330501,1234543,8,'producer','producer',NULL),(330501,38976,9,'composer',NULL,NULL),(330588,5881,10,'cinematographer',NULL,NULL),(330588,913,1,'actor',NULL,'[\"Edward\"]'),(330588,237740,2,'actor',NULL,'[\"Pete\"]'),(330588,942901,3,'actor',NULL,'[\"Jay\"]'),(330588,46590,4,'actor',NULL,'[\"Gilfred\"]'),(330588,898547,5,'director',NULL,NULL),(330588,898534,6,'writer','characters',NULL),(330588,1633164,7,'writer','screenplay',NULL),(330588,574516,8,'writer','screenplay',NULL),(330588,2335,9,'composer',NULL,NULL),(330793,355434,10,'cinematographer','director of photography',NULL),(330793,5048,1,'actor',NULL,'[\"Frank Castle\"]'),(330793,237,2,'actor',NULL,'[\"Howard Saint\"]'),(330793,526,3,'actress',NULL,'[\"Maria Castle\"]'),(330793,5009,4,'actress',NULL,'[\"Livia Saint\"]'),(330793,378144,5,'director',NULL,NULL),(330793,289833,6,'writer','written by',NULL),(330793,32696,7,'producer','producer',NULL),(330793,5036,8,'producer','producer',NULL),(330793,798002,9,'composer',NULL,NULL),(330859,303799,10,'producer','producer',NULL),(330859,149942,1,'actor',NULL,'[\"Harry the Werewolf\",\"Bug-a-Boo\"]'),(330859,1002620,2,'actor',NULL,'[\"Daryl\"]'),(330859,230315,3,'actor',NULL,'[\"Jimmy\"]'),(330859,410127,4,'actress',NULL,'[\"Katie\"]'),(330859,2923,5,'director',NULL,NULL),(330859,1230948,6,'writer','created by',NULL),(330859,1236620,7,'writer','written by',NULL),(330859,86250,8,'writer','story editor',NULL),(330859,593661,9,'writer','story editor',NULL),(330994,547119,10,'composer',NULL,NULL),(330994,1023104,1,'actress',NULL,'[\"Angelica\"]'),(330994,1002055,2,'actor',NULL,'[\"William\"]'),(330994,558637,3,'actress',NULL,'[\"Gertrude\"]'),(330994,1246644,4,'actress',NULL,'[\"Bernice\"]'),(330994,856524,5,'director',NULL,NULL),(330994,3210683,6,'writer','translation',NULL),(330994,536440,7,'writer','consulting writer',NULL),(330994,115800,8,'producer','producer',NULL),(330994,768688,9,'producer','producer',NULL),(331632,837112,10,'producer','producer',NULL),(331632,5327,1,'actor',NULL,'[\"Fred\"]'),(331632,1264,2,'actress',NULL,'[\"Daphne\"]'),(331632,498,3,'actor',NULL,'[\"Shaggy\"]'),(331632,4802,4,'actress',NULL,'[\"Velma\"]'),(331632,331532,5,'director',NULL,NULL),(331632,360253,6,'writer','characters',NULL),(331632,53484,7,'writer','characters',NULL),(331632,348181,8,'writer','written by',NULL),(331632,746273,9,'producer','producer',NULL),(331698,351498,10,'cinematographer',NULL,NULL),(331698,1244344,1,'actress',NULL,'[\"Lea Mattis\"]'),(331698,1246306,2,'actor',NULL,'[\"Konstantin Mattis\"]'),(331698,257102,3,'actress',NULL,'[\"Silvia Mattis\"]'),(331698,555620,4,'actor',NULL,'[\"Josef Mattis\"]'),(331698,387828,5,'director',NULL,NULL),(331698,374663,6,'writer','writer',NULL),(331698,343019,7,'producer','producer',NULL),(331698,824913,8,'producer','producer',NULL),(331698,1127398,9,'composer',NULL,NULL),(331933,307776,10,'producer','producer',NULL),(331933,169,1,'actor',NULL,'[\"Roland Sharp\"]'),(331933,587396,2,'actress',NULL,'[\"Anne\"]'),(331933,307726,3,'actress',NULL,'[\"Barb\"]'),(331933,147825,4,'actor',NULL,'[\"Percy Stevens\"]'),(331933,378893,5,'director',NULL,NULL),(331933,572352,6,'writer','story',NULL),(331933,1245146,7,'writer','story',NULL),(331933,709070,8,'writer','screenplay',NULL),(331933,832043,9,'writer','screenplay',NULL),(332280,425741,10,'producer','producer',NULL),(332280,1687,1,'actress',NULL,'[\"Allie Calhoun\"]'),(332280,1258,2,'actor',NULL,'[\"Duke\"]'),(332280,1046097,3,'actress',NULL,'[\"Allie\"]'),(332280,331516,4,'actor',NULL,'[\"Noah\"]'),(332280,1024,5,'director',NULL,NULL),(332280,505230,6,'writer','screenplay',NULL),(332280,764982,7,'writer','adaptation',NULL),(332280,817023,8,'writer','novel',NULL),(332280,365036,9,'producer','producer',NULL),(332285,445140,10,'editor',NULL,NULL),(332285,1246238,1,'actress',NULL,'[\"Young Bo\"]'),(332285,260,2,'actress',NULL,'[\"Arlene\"]'),(332285,385,3,'actor',NULL,'[\"Charley\"]'),(332285,312,4,'actress',NULL,'[\"Adult Bo\"]'),(332285,1714,5,'director',NULL,NULL),(332285,1158270,6,'writer','play',NULL),(332285,1082616,7,'producer','producer',NULL),(332285,218460,8,'composer',NULL,NULL),(332285,5851,9,'cinematographer',NULL,NULL),(332375,898549,10,'producer','producer',NULL),(332375,540441,1,'actress',NULL,'[\"Mary\"]'),(332375,601553,2,'actress',NULL,'[\"Hilary Faye\"]'),(332375,346,3,'actor',NULL,'[\"Roland\"]'),(332375,297578,4,'actor',NULL,'[\"Patrick\"]'),(332375,200380,5,'director',NULL,NULL),(332375,1247295,6,'writer','written by',NULL),(332375,645164,7,'producer','producer',NULL),(332375,827840,8,'producer','producer',NULL),(332375,5468,9,'producer','producer',NULL),(332379,176707,10,'production_designer',NULL,NULL),(332379,85312,1,'actor',NULL,'[\"Dewey Finn\"]'),(332379,925234,2,'actor',NULL,'[\"Ned Schneebly\"]'),(332379,349,3,'actress',NULL,'[\"Rosalie Mullins\"]'),(332379,664238,4,'actor',NULL,'[\"Theo\"]'),(332379,500,5,'director',NULL,NULL),(332379,748784,6,'producer','producer',NULL),(332379,917208,7,'composer',NULL,NULL),(332379,831114,8,'cinematographer',NULL,NULL),(332379,10471,9,'editor',NULL,NULL),(332452,35,10,'composer',NULL,NULL),(332452,93,1,'actor',NULL,'[\"Achilles\"]'),(332452,51509,2,'actor',NULL,'[\"Hector\"]'),(332452,89217,3,'actor',NULL,'[\"Paris\"]'),(332452,2103,4,'actor',NULL,'[\"Triopas\"]'),(332452,583,5,'director',NULL,NULL),(332452,392955,6,'writer','poem \"The Iliad\"',NULL),(332452,1125275,7,'writer','screenplay',NULL),(332452,1217703,8,'producer','producer',NULL),(332452,933213,9,'producer','producer',NULL),(333766,3394,10,'cinematographer','director of photography',NULL),(333766,103785,1,'actor',NULL,'[\"Andrew Largeman\"]'),(333766,765597,2,'actor',NULL,'[\"Mark\"]'),(333766,204,3,'actress',NULL,'[\"Sam\"]'),(333766,453,4,'actor',NULL,'[\"Gideon Largeman\"]'),(333766,8330,5,'producer','producer',NULL),(333766,1344784,6,'producer','producer',NULL),(333766,357074,7,'producer','producer',NULL),(333766,1305447,8,'producer','producer',NULL),(333766,279412,9,'composer',NULL,NULL),(333780,630090,10,'producer','producer',NULL),(333780,702,1,'actress',NULL,'[\"Elle Woods\"]'),(333780,398,2,'actress',NULL,'[\"Congresswoman Rudd\"]'),(333780,627878,3,'actor',NULL,'[\"Sid Post\"]'),(333780,5093,4,'actress',NULL,'[\"Grace Rossiter\"]'),(333780,379237,5,'director',NULL,NULL),(333780,113005,6,'writer','characters',NULL),(333780,13996,7,'writer','story',NULL),(333780,236881,8,'writer','story',NULL),(333780,1009988,9,'writer','story',NULL),(334541,272471,10,'composer',NULL,NULL),(334541,343447,1,'actor',NULL,'[\"Hiram Gummer\"]'),(334541,98597,2,'actress',NULL,'[\"Christine Lord\"]'),(334541,236711,3,'actor',NULL,'[\"Black Hand Kelly\"]'),(334541,730099,4,'actor',NULL,'[\"Juan Pedilla\"]'),(334541,934093,5,'director',NULL,NULL),(334541,534681,6,'writer','characters',NULL),(334541,881038,7,'writer','characters',NULL),(334541,731443,8,'writer','story',NULL),(334541,118420,9,'writer','teleplay',NULL),(334754,788743,10,'cinematographer',NULL,NULL),(334754,461324,1,'actor',NULL,'[\"Yossi\"]'),(334754,1106990,2,'actor',NULL,'[\"Lior Amichai \'Jagger\'\"]'),(334754,1093856,3,'actor',NULL,'[\"Ophir\"]'),(334754,1149650,4,'actress',NULL,'[\"Yaeli\"]'),(334754,297202,5,'director',NULL,NULL),(334754,1250701,6,'writer',NULL,NULL),(334754,362844,7,'producer','producer',NULL),(334754,879799,8,'producer','producer',NULL),(334754,1252200,9,'composer',NULL,NULL),(334965,88536,10,'producer','producer',NULL),(334965,1022440,1,'actress',NULL,'[\"Whittier\"]'),(334965,877430,2,'actress',NULL,'[\"Tina\"]'),(334965,4668,3,'actor',NULL,'[\"Dean Sebastian\"]'),(334965,150330,4,'actress',NULL,'[\"Monica\"]'),(334965,764319,5,'director',NULL,NULL),(334965,1257282,6,'writer','story',NULL),(334965,348160,7,'writer','screenplay',NULL),(334965,348208,8,'writer','screenplay',NULL),(334965,8953,9,'producer','producer',NULL),(335119,6035,10,'composer',NULL,NULL),(335119,424060,1,'actress',NULL,'[\"Griet\"]'),(335119,147,2,'actor',NULL,'[\"Vermeer\"]'),(335119,929489,3,'actor',NULL,'[\"Van Ruijven\"]'),(335119,661407,4,'actress',NULL,'[\"Maria Thins\"]'),(335119,916424,5,'director',NULL,NULL),(335119,1256768,6,'writer','novel',NULL),(335119,381757,7,'writer','screenplay',NULL),(335119,665466,8,'producer','producer',NULL),(335119,875793,9,'producer','producer',NULL),(335266,57187,10,'production_designer',NULL,NULL),(335266,195,1,'actor',NULL,'[\"Bob Harris\"]'),(335266,424060,2,'actress',NULL,'[\"Charlotte\"]'),(335266,610,3,'actor',NULL,'[\"John\"]'),(335266,267506,4,'actress',NULL,'[\"Kelly\"]'),(335266,1068,5,'director',NULL,NULL),(335266,441839,6,'producer','producer',NULL),(335266,1331774,7,'composer',NULL,NULL),(335266,10139,8,'cinematographer','director of photography',NULL),(335266,3483,9,'editor',NULL,NULL),(335345,221042,10,'cinematographer','director of photography',NULL),(335345,1029,1,'actor',NULL,'[\"Jesus\"]'),(335345,899,2,'actress',NULL,'[\"Magdalen\"]'),(335345,411581,3,'actress',NULL,'[\"Mary\"]'),(335345,998941,4,'actor',NULL,'[\"John\"]'),(335345,154,5,'director',NULL,NULL),(335345,280179,6,'writer','screenplay',NULL),(335345,202704,7,'producer','producer',NULL),(335345,568544,8,'producer','producer',NULL),(335345,2201,9,'composer',NULL,NULL),(336693,1265720,1,'actress',NULL,'[\"Narrator\"]'),(336693,326448,2,'actor',NULL,'[\"Narrator\"]'),(336693,3174319,3,'self',NULL,'[\"Self\"]'),(336693,1166400,4,'cinematographer',NULL,NULL),(337563,744828,10,'producer','producer',NULL),(337563,4950,1,'actress',NULL,'[\"Jenna Rink\"]'),(337563,749263,2,'actor',NULL,'[\"Matt Flamhaff\"]'),(337563,339460,3,'actress',NULL,'[\"Lucy Wyman\"]'),(337563,785227,4,'actor',NULL,'[\"Richard Kneeland\"]'),(337563,935095,5,'director',NULL,NULL),(337563,326092,6,'writer','written by',NULL),(337563,951135,7,'writer','written by',NULL),(337563,36641,8,'producer','producer',NULL),(337563,560033,9,'producer','producer',NULL),(337697,6367,10,'composer',NULL,NULL),(337697,5466,1,'actress',NULL,'[\"Paige Morgan\"]'),(337697,531101,2,'actor',NULL,'[\"Eddie\"]'),(337697,1669,3,'actress',NULL,'[\"Queen Rosalind\"]'),(337697,587950,4,'actor',NULL,'[\"Soren\"]'),(337697,4838,5,'director',NULL,NULL),(337697,24909,6,'writer','story',NULL),(337697,297545,7,'writer','story',NULL),(337697,24856,8,'writer','screenplay',NULL),(337697,66764,9,'writer','screenplay',NULL),(337711,716366,10,'writer','punch-up writer',NULL),(337711,137627,1,'actress',NULL,'[\"Marianne Thornberry\"]'),(337711,327,2,'actress',NULL,'[\"Eliza Thornberry\"]'),(337711,347,3,'actor',NULL,'[\"Nigel Thornberry\"]'),(337711,197354,4,'actress',NULL,'[\"Tommy Pickles\"]'),(337711,256983,5,'director',NULL,NULL),(337711,899329,6,'director',NULL,NULL),(337711,681264,7,'director','co-director',NULL),(337711,100326,8,'writer','written by',NULL),(337711,684919,9,'writer','punch-up writer',NULL),(337741,404509,10,'production_designer',NULL,NULL),(337741,197,1,'actor',NULL,'[\"Harry Sanborn\"]'),(337741,473,2,'actress',NULL,'[\"Erica Barry\"]'),(337741,206,3,'actor',NULL,'[\"Julian Mercer\"]'),(337741,1605,4,'actress',NULL,'[\"Marin\"]'),(337741,583600,5,'director',NULL,NULL),(337741,88692,6,'producer','producer',NULL),(337741,1877,7,'composer',NULL,NULL),(337741,841,8,'cinematographer','director of photography',NULL),(337741,404528,9,'editor',NULL,NULL),(337824,1836376,10,'editor',NULL,NULL),(337824,104,1,'actor',NULL,'[\"Pancho Villa\"]'),(337824,47248,2,'actor',NULL,'[\"Frank Thayer\"]'),(337824,273,3,'actor',NULL,'[\"Sam Drebben\"]'),(337824,980,4,'actor',NULL,'[\"Harry Aitken\"]'),(337824,915,5,'director',NULL,NULL),(337824,312205,6,'writer','written by',NULL),(337824,899958,7,'composer',NULL,NULL),(337824,416824,8,'cinematographer',NULL,NULL),(337824,912536,9,'editor',NULL,NULL),(337909,236462,10,'composer',NULL,NULL),(337909,545,1,'actress',NULL,'[\"Chris\"]'),(337909,910278,2,'actress',NULL,'[\"Annie\"]'),(337909,934362,3,'actress',NULL,'[\"Ruth\"]'),(337909,17596,4,'actor',NULL,'[\"John\"]'),(337909,170719,5,'director',NULL,NULL),(337909,1130708,6,'writer','written by',NULL),(337909,278759,7,'writer','written by',NULL),(337909,59218,8,'producer','producer',NULL),(337909,1280262,9,'producer','producer',NULL),(337921,653211,10,'composer',NULL,NULL),(337921,107,1,'actress',NULL,'[\"Jessica Martin\"]'),(337921,262635,2,'actor',NULL,'[\"Ryan\"]'),(337921,5458,3,'actor',NULL,'[\"Ethan\"]'),(337921,513,4,'actor',NULL,'[\"Sgt. Bob Mooney\"]'),(337921,254786,5,'director',NULL,NULL),(337921,169540,6,'writer','story',NULL),(337921,604555,7,'writer','screenplay',NULL),(337921,2041,8,'producer','producer',NULL),(337921,516056,9,'producer','producer',NULL),(337978,288202,10,'producer','producer',NULL),(337978,246,1,'actor',NULL,'[\"John McClane\"]'),(337978,519043,2,'actor',NULL,'[\"Matt Farrell\"]'),(337978,648249,3,'actor',NULL,'[\"Thomas Gabriel\"]'),(337978,702572,4,'actress',NULL,'[\"Mai\"]'),(337978,936482,5,'director',NULL,NULL),(337978,1985343,6,'writer','based upon the article \"A Farewell to Arms\" by',NULL),(337978,861636,7,'writer','certain original character by',NULL),(337978,93560,8,'writer','story by',NULL),(337978,545861,9,'writer','story by',NULL),(338013,109726,10,'composer',NULL,NULL),(338013,120,1,'actor',NULL,'[\"Joel Barish\"]'),(338013,701,2,'actress',NULL,'[\"Clementine Kruczynski\"]'),(338013,929489,3,'actor',NULL,'[\"Dr. Mierzwiak\"]'),(338013,4423,4,'actor',NULL,'[\"Train Conductor\"]'),(338013,327273,5,'director',NULL,NULL),(338013,442109,6,'writer','story',NULL),(338013,1410028,7,'writer','story',NULL),(338013,106835,8,'producer','producer',NULL),(338013,326512,9,'producer','producer',NULL),(338095,1131817,10,'cinematographer',NULL,NULL),(338095,208426,1,'actress',NULL,'[\"Marie\"]'),(338095,494069,2,'actress',NULL,'[\"Alex\"]'),(338095,619600,3,'actor',NULL,'[\"Le tueur\"]'),(338095,451076,4,'actor',NULL,'[\"Jimmy\"]'),(338095,14960,5,'director',NULL,NULL),(338095,505183,6,'writer','writer',NULL),(338095,2178,7,'producer','producer',NULL),(338095,71452,8,'producer','producer',NULL),(338095,1268359,9,'composer',NULL,NULL),(338096,4744,10,'producer','producer',NULL),(338096,526019,1,'actor',NULL,'[\"Javier Suarez\"]'),(338096,304801,2,'actress',NULL,'[\"Katey Miller\"]'),(338096,688,3,'actress',NULL,'[\"Jeannie Miller\"]'),(338096,805476,4,'actor',NULL,'[\"Bert Miller\"]'),(338096,272704,5,'director',NULL,NULL),(338096,1568308,6,'writer','story',NULL),(338096,755969,7,'writer','story',NULL),(338096,945026,8,'writer','screenplay',NULL),(338096,2982,9,'writer','screenplay',NULL),(338135,214105,10,'editor',NULL,NULL),(338135,320721,1,'actor',NULL,'[\"Rémy\"]'),(338135,77715,2,'actress',NULL,'[\"Louise\"]'),(338135,1234157,3,'actor',NULL,'[\"Sébastien\"]'),(338135,189887,4,'actress',NULL,'[\"Nathalie\"]'),(338135,780,5,'director',NULL,NULL),(338135,521858,6,'producer','producer',NULL),(338135,730629,7,'producer','producer',NULL),(338135,1383048,8,'composer',NULL,NULL),(338135,240338,9,'cinematographer',NULL,NULL),(338139,374112,10,'composer',NULL,NULL),(338139,5476,1,'actress',NULL,'[\"Alice Paul\"]'),(338139,553269,2,'actress',NULL,'[\"Harriot Blatch\"]'),(338139,1378,3,'actress',NULL,'[\"Carrie Chapman Catt\"]'),(338139,640323,4,'actress',NULL,'[\"Lucy Burns\"]'),(338139,902290,5,'director',NULL,NULL),(338139,1359555,6,'writer','story',NULL),(338139,548736,7,'writer','teleplay',NULL),(338139,98316,8,'writer','teleplay',NULL),(338139,802027,9,'writer','teleplay',NULL),(338188,35,10,'composer',NULL,NULL),(338188,169,1,'actor',NULL,'[\"Samuel Jones\"]'),(338188,949,2,'actress',NULL,'[\"Magdalena Gilkeson\"]'),(338188,939697,3,'actress',NULL,'[\"Lilly Gilkeson\"]'),(338188,101799,4,'actress',NULL,'[\"Dot Gilkeson\"]'),(338188,165,5,'director',NULL,NULL),(338188,1268336,6,'writer','novel \"The Last Ride\"',NULL),(338188,442190,7,'writer','screenplay',NULL),(338188,4976,8,'producer','producer',NULL),(338188,652491,9,'producer','producer',NULL),(338309,530505,10,'producer','producer',NULL),(338309,1270590,1,'actor',NULL,'[\"Erik Ponti\"]'),(338309,526616,2,'actor',NULL,'[\"Pierre Tanguy\"]'),(338309,803890,3,'actor',NULL,'[\"Otto Silverhielm\"]'),(338309,350451,4,'actress',NULL,'[\"Marja\"]'),(338309,405632,5,'director',NULL,NULL),(338309,347188,6,'writer','novel',NULL),(338309,1076710,7,'writer','screenplay',NULL),(338309,960161,8,'writer',NULL,NULL),(338309,500400,9,'producer','producer',NULL),(338337,352489,10,'producer','producer',NULL),(338337,255,1,'actor',NULL,'[\"Jennings\"]'),(338337,1173,2,'actor',NULL,'[\"Rethrick\"]'),(338337,235,3,'actress',NULL,'[\"Rachel\"]'),(338337,355910,4,'actor',NULL,'[\"Agent Klein\"]'),(338337,247,5,'director',NULL,NULL),(338337,1140,6,'writer','short story',NULL),(338337,1212988,7,'writer','screenplay',NULL),(338337,151835,8,'producer','producer',NULL),(338337,204862,9,'producer','producer',NULL),(338348,854074,10,'producer','producer',NULL),(338348,158,1,'actor',NULL,'[\"Hero Boy\",\"Father\",\"Conductor\"]'),(338348,178875,2,'actor',NULL,'[\"Toothless Boy\",\"Elf\"]'),(338348,5052,3,'actor',NULL,'[\"Smokey\",\"Steamer\"]'),(338348,366667,4,'actress',NULL,'[\"Sister Sarah\",\"Mother\"]'),(338348,709,5,'director',NULL,NULL),(338348,885575,6,'writer','book',NULL),(338348,115310,7,'writer','screenplay',NULL),(338348,324556,8,'producer','producer',NULL),(338348,823330,9,'producer','producer',NULL),(338427,303775,10,'editor',NULL,NULL),(338427,188,1,'actor',NULL,'[\"Ray Porter\"]'),(338427,132,2,'actress',NULL,'[\"Mirabelle\"]'),(338427,5403,3,'actor',NULL,'[\"Jeremy\"]'),(338427,933098,4,'actress',NULL,'[\"Lisa Cramer\"]'),(338427,875793,5,'director',NULL,NULL),(338427,2170,6,'producer','producer',NULL),(338427,419169,7,'producer','producer',NULL),(338427,6224,8,'composer',NULL,NULL),(338427,5893,9,'cinematographer','director of photography',NULL),(338459,754512,1,'actor',NULL,'[\"Juni Cortez\"]'),(338459,891786,2,'actress',NULL,'[\"Carmen Cortez\"]'),(338459,104,3,'actor',NULL,'[\"Gregorio Cortez\"]'),(338459,1303,4,'actress',NULL,'[\"Ingrid Cortez\"]'),(338459,1675,5,'director',NULL,NULL),(338459,42882,6,'producer','producer',NULL),(338467,42516,10,'production_designer',NULL,NULL),(338467,76988,1,'actor',NULL,'[\"Al Bernstein\"]'),(338467,1334045,2,'actor',NULL,'[\"Andrew N.S. Glazer\"]'),(338467,408284,3,'actor',NULL,'[\"Stu Ungar\"]'),(338467,1336538,4,'actor',NULL,'[\"John Strzemp\"]'),(338467,1270504,5,'director',NULL,NULL),(338467,588328,6,'producer','producer',NULL),(338467,265416,7,'composer',NULL,NULL),(338467,663250,8,'composer',NULL,NULL),(338467,95827,9,'cinematographer',NULL,NULL),(338479,369770,10,'writer','additional dialogue',NULL),(338479,442207,1,'actor',NULL,'[\"The Crap Keeper\",\"Dad\",\"Tromantis voice\"]'),(338479,1781,2,'actress',NULL,'[\"Ivanna Dance\",\"Demanda\"]'),(338479,348181,3,'actor',NULL,'[\"James Gunn\"]'),(338479,1928554,4,'actress',NULL,'[\"James\' Assistant\"]'),(338479,295216,5,'director',NULL,NULL),(338479,274842,6,'director',NULL,NULL),(338479,656765,7,'director',NULL,NULL),(338479,1331326,8,'director',NULL,NULL),(338479,6421974,9,'writer',NULL,NULL),(338526,561997,10,'editor','film editor',NULL),(338526,413168,1,'actor',NULL,'[\"Van Helsing\"]'),(338526,295,2,'actress',NULL,'[\"Anna Valerious\"]'),(338526,746896,3,'actor',NULL,'[\"Count Vladislaus Dracula\"]'),(338526,378175,4,'actor',NULL,'[\"Frankenstein\'s Monster\"]'),(338526,814085,5,'director',NULL,NULL),(338526,3032,6,'producer','producer',NULL),(338526,6293,7,'composer',NULL,NULL),(338526,5679,8,'cinematographer','director of photography',NULL),(338526,559525,9,'editor','film editor',NULL),(338564,481738,10,'cinematographer','director of photography',NULL),(338564,490489,1,'actor',NULL,'[\"Inspector Lau Kin Ming\"]'),(338564,504897,2,'actor',NULL,'[\"Chan Wing Yan\"]'),(338564,938893,3,'actor',NULL,'[\"SP Wong Chi Shing\"]'),(338564,874676,4,'actor',NULL,'[\"Hon Sam\"]'),(338564,490487,5,'director',NULL,NULL),(338564,538320,6,'director',NULL,NULL),(338564,159039,7,'writer','written by',NULL),(338564,150989,8,'composer',NULL,NULL),(338564,628804,9,'composer','composer',NULL),(338751,520,10,'producer','producer',NULL),(338751,138,1,'actor',NULL,'[\"Howard Hughes\"]'),(338751,949,2,'actress',NULL,'[\"Katharine Hepburn\"]'),(338751,295,3,'actress',NULL,'[\"Ava Gardner\"]'),(338751,604,4,'actor',NULL,'[\"Noah Dietrich\"]'),(338751,217,5,'director',NULL,NULL),(338751,517589,6,'writer','written by',NULL),(338751,166787,7,'producer','producer',NULL),(338751,262509,8,'producer','producer',NULL),(338751,454752,9,'producer','producer',NULL),(338806,869375,10,'editor',NULL,NULL),(338806,5094,1,'actress',NULL,'[\"Boudica\"]'),(338806,905357,2,'actor',NULL,'[\"King Prasutagus\"]'),(338806,1289434,3,'actress',NULL,'[\"Isolda\"]'),(338806,746560,4,'actress',NULL,'[\"Siora\"]'),(338806,6624,5,'director',NULL,NULL),(338806,203577,6,'writer','writer',NULL),(338806,83408,7,'producer','producer',NULL),(338806,402016,8,'composer',NULL,NULL),(338806,524026,9,'cinematographer',NULL,NULL),(338828,89033,10,'cinematographer',NULL,NULL),(338828,580101,1,'actor',NULL,'[\"Richard Bullit\"]'),(338828,57842,2,'actor',NULL,'[\"Douglas Riper\"]'),(338828,201462,3,'actor',NULL,'[\"Phil Canon\"]'),(338828,746162,4,'actor',NULL,'[\"Le shérif Steve Marley\"]'),(338828,489309,5,'director',NULL,NULL),(338828,1272853,6,'writer','writer',NULL),(338828,1045062,7,'producer','producer',NULL),(338828,1045239,8,'producer','producer',NULL),(338828,994114,9,'composer',NULL,NULL),(339071,174749,10,'editor',NULL,NULL),(339071,687443,1,'actor',NULL,'[\"Evie\"]'),(339071,505029,2,'actor',NULL,'[\"Coco\"]'),(339071,581066,3,'actor',NULL,'[\"Varla\",\"Marla\"]'),(339071,1273781,4,'actor',NULL,'[\"Stevie\"]'),(339071,206556,5,'director',NULL,NULL),(339071,14297,6,'producer','producer',NULL),(339071,913258,7,'producer','producer',NULL),(339071,250373,8,'composer',NULL,NULL),(339071,404181,9,'cinematographer',NULL,NULL),(339072,1318457,10,'composer',NULL,NULL),(339072,371342,1,'actor',NULL,'[\"General Rhinus\"]'),(339072,895812,2,'actor',NULL,'[\"Caesar\"]'),(339072,208735,3,'actor',NULL,'[\"Jean Marcosivellauniviromandiboule\",\"Young Gaul\"]'),(339072,533489,4,'actress',NULL,'[\"Dwyfuc\"]'),(339072,335283,5,'director',NULL,NULL),(339072,924347,6,'writer','written by',NULL),(339072,110357,7,'producer','producer',NULL),(339072,202704,8,'producer','producer',NULL),(339072,427827,9,'producer','producer',NULL),(339135,860315,10,'producer','producer',NULL),(339135,241,1,'actor',NULL,'[\"Kyle LeBlanc\"]'),(339135,852753,2,'actor',NULL,'[\"451\"]'),(339135,61437,3,'actor',NULL,'[\"General Hruschov\"]'),(339135,326988,4,'actor',NULL,'[\"Tolik\"]'),(339135,482681,5,'director',NULL,NULL),(339135,899328,6,'writer','written by',NULL),(339135,991253,7,'writer','written by',NULL),(339135,23260,8,'writer',NULL,NULL),(339135,503600,9,'producer','producer',NULL),(339291,888329,10,'producer','producer',NULL),(339291,120,1,'actor',NULL,'[\"Count Olaf\"]'),(339291,179,2,'actor',NULL,'[\"Lemony Snicket\"]'),(339291,658,3,'actress',NULL,'[\"Aunt Josephine\"]'),(339291,14582,4,'actor',NULL,'[\"Klaus\"]'),(339291,797869,5,'director',NULL,NULL),(339291,330565,6,'writer','screenplay',NULL),(339291,1274516,7,'writer','books \"The Bad Beginning\", \"The Reptile Room\" and \"The Wide Window\"',NULL),(339291,531827,8,'producer','producer',NULL),(339291,662748,9,'producer','producer',NULL),(339840,1290417,1,'actress',NULL,'[\"René Chaplin\"]'),(339840,1213507,2,'actor',NULL,'[\"Marion\"]'),(339840,1296121,3,'actor',NULL,'[\"Wayne\"]'),(339840,2999531,4,'actress',NULL,'[\"Sallyanne\"]'),(339840,1294961,5,'director',NULL,NULL),(339840,1294962,6,'director',NULL,NULL),(339840,1290490,7,'composer',NULL,NULL),(339840,1046893,8,'cinematographer',NULL,NULL),(339840,1190757,9,'production_designer',NULL,NULL),(339882,715809,10,'editor',NULL,NULL),(339882,15913,1,'actor',NULL,'[\"Will Clemons\"]'),(339882,364977,2,'actress',NULL,'[\"Ann Clemons\"]'),(339882,221046,3,'actress',NULL,'[\"Gas Station Girl\"]'),(339882,502813,4,'actor',NULL,'[\"Ben Clemons\"]'),(339882,1306443,5,'director',NULL,NULL),(339882,698238,6,'producer','producer',NULL),(339882,553143,7,'producer','producer',NULL),(339882,404896,8,'composer',NULL,NULL),(339882,759917,9,'cinematographer',NULL,NULL),(340012,5759,10,'cinematographer',NULL,NULL),(340012,906,1,'actress',NULL,'[\"Julia Lambert\"]'),(340012,2091,2,'actor',NULL,'[\"Jimmie Langton\"]'),(340012,1999,3,'actor',NULL,'[\"Walter Gibbs\"]'),(340012,460,4,'actor',NULL,'[\"Michael Gosselyn\"]'),(340012,843640,5,'director',NULL,NULL),(340012,560857,6,'writer','novella \"Theatre\"',NULL),(340012,367838,7,'writer','screenplay',NULL),(340012,487190,8,'producer','producer',NULL),(340012,2217,9,'composer',NULL,NULL),(340377,92575,10,'cinematographer','director of photography',NULL),(340377,227759,1,'actor',NULL,'[\"Finbar McBride\"]'),(340377,165101,2,'actress',NULL,'[\"Olivia Harris\"]'),(340377,134072,3,'actor',NULL,'[\"Joe Oramas\"]'),(340377,71345,4,'actor',NULL,'[\"Henry Styles\"]'),(340377,565336,5,'director',NULL,NULL),(340377,1254338,6,'producer','producer',NULL),(340377,803826,7,'producer','producer',NULL),(340377,1036939,8,'producer','producer',NULL),(340377,871136,9,'composer',NULL,NULL),(340855,117741,10,'composer',NULL,NULL),(340855,234,1,'actress',NULL,'[\"Aileen\"]'),(340855,207,2,'actress',NULL,'[\"Selby\"]'),(340855,1136,3,'actor',NULL,'[\"Thomas\"]'),(340855,855564,4,'actor',NULL,'[\"Vincent Corey\"]'),(340855,420941,5,'director',NULL,NULL),(340855,198941,6,'producer','producer',NULL),(340855,476291,7,'producer','producer',NULL),(340855,677075,8,'producer','producer',NULL),(340855,943829,9,'producer','producer',NULL); +INSERT INTO `MoviesPeople` VALUES (341384,1030527,10,'editor',NULL,NULL),(341384,417520,1,'actor',NULL,'[\"Kang Sang-byeong\"]'),(341384,1120335,2,'actor',NULL,'[\"Kim Sang-byeong\"]'),(341384,1280733,3,'actress',NULL,'[\"Mi-yeong\"]'),(341384,1041999,4,'actor',NULL,'[\"Cheol-gu\"]'),(341384,1104118,5,'director',NULL,NULL),(341384,498231,6,'producer','producer',NULL),(341384,1276066,7,'composer',NULL,NULL),(341384,1385954,8,'composer',NULL,NULL),(341384,1193723,9,'cinematographer',NULL,NULL),(342167,792049,10,'producer','producer',NULL),(342167,1290184,1,'actor',NULL,'[\"Bert\"]'),(342167,1307515,2,'actor',NULL,'[\"Vlad\"]'),(342167,1291597,3,'actress',NULL,'[\"Ellen\"]'),(342167,1296587,4,'actor',NULL,'[\"Michael\"]'),(342167,333804,5,'director',NULL,NULL),(342167,362,6,'producer','producer',NULL),(342167,463025,7,'producer','producer',NULL),(342167,745746,8,'producer','producer',NULL),(342167,787834,9,'producer','producer',NULL),(342258,603628,10,'cinematographer',NULL,NULL),(342258,1472,1,'actor',NULL,'[\"Danny\"]'),(342258,1364,2,'actor',NULL,'[\"Bart\"]'),(342258,151,3,'actor',NULL,'[\"Sam\"]'),(342258,174403,4,'actress',NULL,'[\"Victoria\"]'),(342258,504642,5,'director',NULL,NULL),(342258,108,6,'writer','written by',NULL),(342258,153893,7,'producer','producer',NULL),(342258,203118,8,'composer',NULL,NULL),(342258,1039315,9,'composer',NULL,NULL),(342272,1182055,10,'editor',NULL,NULL),(342272,68260,1,'actor',NULL,'[\"Dick Dandelion\"]'),(342272,683467,2,'actress',NULL,'[\"Susan\"]'),(342272,654104,3,'actor',NULL,'[\"Huey\"]'),(342272,597,4,'actor',NULL,'[\"Krugsby\"]'),(342272,899121,5,'director',NULL,NULL),(342272,1885,6,'writer','written by',NULL),(342272,1011849,7,'producer','producer',NULL),(342272,1818744,8,'composer',NULL,NULL),(342272,230045,9,'cinematographer',NULL,NULL),(342492,897681,10,'editor',NULL,NULL),(342492,509263,1,'actor',NULL,'[\"Bjarne\",\"Eigil\"]'),(342492,586568,2,'actor',NULL,'[\"Svend\"]'),(342492,472855,3,'actress',NULL,'[\"Astrid\"]'),(342492,857663,4,'actor',NULL,'[\"Holger\"]'),(342492,421314,5,'director',NULL,NULL),(342492,536385,6,'producer','producer',NULL),(342492,536410,7,'producer','producer',NULL),(342492,433967,8,'composer',NULL,NULL),(342492,1028202,9,'cinematographer',NULL,NULL),(343112,1284117,1,'director',NULL,NULL),(343660,144841,10,'composer',NULL,NULL),(343660,1191,1,'actor',NULL,'[\"Henry Roth\"]'),(343660,106,2,'actress',NULL,'[\"Lucy Whitmore\"]'),(343660,1705,3,'actor',NULL,'[\"Ula\"]'),(343660,276,4,'actor',NULL,'[\"Doug Whitmore\"]'),(343660,781842,5,'director',NULL,NULL),(343660,1286500,6,'writer','written by',NULL),(343660,316406,7,'producer','producer',NULL),(343660,326512,8,'producer','producer',NULL),(343660,433339,9,'producer','producer',NULL),(343737,724744,10,'cinematographer','director of photography',NULL),(343737,354,1,'actor',NULL,'[\"Edward Wilson\"]'),(343737,1401,2,'actress',NULL,'[\"Margaret \'Clover\' Russell\"]'),(343737,134,3,'actor',NULL,'[\"Bill Sullivan\"]'),(343737,285,4,'actor',NULL,'[\"Sam Murach\"]'),(343737,744839,5,'writer','written by',NULL),(343737,732708,6,'producer','producer',NULL),(343737,742772,7,'producer','producer',NULL),(343737,288670,8,'composer',NULL,NULL),(343737,953616,9,'composer',NULL,NULL),(343818,204862,10,'producer','producer',NULL),(343818,226,1,'actor',NULL,'[\"Del Spooner\"]'),(343818,5256,2,'actress',NULL,'[\"Susan Calvin\"]'),(343818,339304,3,'actor',NULL,'[\"Lawrence Robertson\"]'),(343818,876138,4,'actor',NULL,'[\"Sonny\"]'),(343818,1639,5,'director',NULL,NULL),(343818,899113,6,'writer','screenplay',NULL),(343818,326040,7,'writer','screenplay',NULL),(343818,1920,8,'writer','suggested by book',NULL),(343818,56283,9,'producer','producer',NULL),(344510,773685,10,'editor',NULL,NULL),(344510,851582,1,'actress',NULL,'[\"Mathilde\"]'),(344510,880484,2,'actor',NULL,'[\"Manech\"]'),(344510,149,3,'actress',NULL,'[\"Elodie Gordes\"]'),(344510,684500,4,'actor',NULL,'[\"Sylvain\"]'),(344510,466,5,'director',NULL,NULL),(344510,418469,6,'writer','novel',NULL),(344510,491011,7,'writer','story and adaptation',NULL),(344510,823,8,'composer',NULL,NULL),(344510,216632,9,'cinematographer',NULL,NULL),(344604,552909,10,'producer','producer',NULL),(344604,809,1,'actor',NULL,'[\"Antoine Letoux\"]'),(344604,305296,2,'actor',NULL,'[\"Louis\"]'),(344604,452161,3,'actress',NULL,'[\"Blanche Grimaldi\"]'),(344604,134618,4,'actress',NULL,'[\"Christine\"]'),(344604,759270,5,'director',NULL,NULL),(344604,239586,6,'writer','idea',NULL),(344604,333818,7,'writer','scenario',NULL),(344604,529642,8,'writer','collaboration',NULL),(344604,843483,9,'writer','collaboration',NULL),(344854,2962942,10,'writer','creator: characters and settings',NULL),(344854,383603,1,'actor',NULL,'[\"Arthur\"]'),(344854,1201,2,'actress',NULL,'[\"Granny\"]'),(344854,187,3,'actress',NULL,'[\"Princess Selenia\"]'),(344854,186949,4,'actor',NULL,'[\"Archibald\"]'),(344854,108,5,'director',NULL,NULL),(344854,1297771,6,'writer','written by',NULL),(344854,305372,7,'writer','creator: characters and settings',NULL),(344854,1922214,8,'writer','creator: characters and settings',NULL),(344854,2461314,9,'writer','creator: characters and settings',NULL),(345074,6055,10,'composer',NULL,NULL),(345074,889522,1,'actress',NULL,'[\"Connie\"]'),(345074,1057,2,'actress',NULL,'[\"Carla\"]'),(345074,141,3,'actor',NULL,'[\"Jeff\"]'),(345074,818880,4,'actor',NULL,'[\"Robert\",\"Peaches\"]'),(345074,501185,5,'director',NULL,NULL),(345074,53388,6,'producer','producer',NULL),(345074,83696,7,'producer','producer',NULL),(345074,322802,8,'producer','producer',NULL),(345074,158,9,'producer','producer',NULL),(345950,819711,10,'writer','written by',NULL),(345950,444786,1,'actor',NULL,'[\"SpongeBob\",\"Narrator\",\"Gary\"]'),(345950,1787,2,'actor',NULL,'[\"King Neptune\"]'),(345950,120309,3,'actor',NULL,'[\"Squidward\",\"Fish #4\"]'),(345950,492657,4,'actress',NULL,'[\"Sandy\"]'),(345950,384864,5,'director',NULL,NULL),(345950,651706,6,'director',NULL,NULL),(345950,238757,7,'writer','written by',NULL),(345950,384722,8,'writer','written by',NULL),(345950,651692,9,'writer','written by',NULL),(346156,12055,10,'cinematographer',NULL,NULL),(346156,569,1,'actress',NULL,'[\"Polly Perkins\"]'),(346156,179,2,'actor',NULL,'[\"Sky Captain\"]'),(346156,1401,3,'actress',NULL,'[\"Franky\"]'),(346156,610,4,'actor',NULL,'[\"Dex\"]'),(346156,175775,5,'director',NULL,NULL),(346156,816,6,'producer','producer',NULL),(346156,1244,7,'producer','producer',NULL),(346156,644749,8,'producer','producer',NULL),(346156,790481,9,'composer',NULL,NULL),(346336,287501,10,'cinematographer',NULL,NULL),(346336,516222,1,'actor',NULL,'[\"Nicola Carati\"]'),(346336,94526,2,'actor',NULL,'[\"Matteo Carati\"]'),(346336,872910,3,'actress',NULL,'[\"Giorgia Esposti\"]'),(346336,39967,4,'actress',NULL,'[\"Adriana Carati\"]'),(346336,320285,5,'director',NULL,NULL),(346336,677758,6,'writer','writer',NULL),(346336,750048,7,'writer','writer',NULL),(346336,53184,8,'producer','producer',NULL),(346336,98661,9,'producer','producer',NULL),(346491,778285,10,'producer','producer',NULL),(346491,268199,1,'actor',NULL,'[\"Alexander\"]'),(346491,164,2,'actor',NULL,'[\"Old Ptolemy\"]'),(346491,206257,3,'actress',NULL,'[\"Roxane\"]'),(346491,1401,4,'actress',NULL,'[\"Olympias\"]'),(346491,231,5,'director',NULL,NULL),(346491,477370,6,'writer','written by',NULL),(346491,436164,7,'writer','written by',NULL),(346491,97001,8,'producer','producer',NULL),(346491,453091,9,'producer','producer',NULL),(347048,458430,10,'cinematographer',NULL,NULL),(347048,960379,1,'actor',NULL,'[\"Cahit\"]'),(347048,1402546,2,'actress',NULL,'[\"Sibel\"]'),(347048,456077,3,'actor',NULL,'[\"Seref\"]'),(347048,1597241,4,'actress',NULL,'[\"Barfrau in der Fabrik\"]'),(347048,15359,5,'director',NULL,NULL),(347048,775831,6,'producer','producer',NULL),(347048,777978,7,'producer','producer',NULL),(347048,352391,8,'composer',NULL,NULL),(347048,662469,9,'composer',NULL,NULL),(347149,386749,10,'composer',NULL,NULL),(347149,47962,1,'actress',NULL,'[\"Sofî\"]'),(347149,454120,2,'actor',NULL,'[\"Hauru\"]'),(347149,309107,3,'actor',NULL,'[\"Karushifâ\"]'),(347149,594271,4,'actor',NULL,'[\"Arechi no Majo\"]'),(347149,594503,5,'director',NULL,NULL),(347149,1168510,6,'writer','novel \"Howl\'s Moving Castle\"',NULL),(347149,218760,7,'producer','producer',NULL),(347149,1566098,8,'producer','producer',NULL),(347149,840699,9,'producer','producer',NULL),(347618,1566098,10,'producer','producer',NULL),(347618,407514,1,'actress',NULL,'[\"Haru\"]'),(347618,354560,2,'actor',NULL,'[\"Baron\"]'),(347618,535329,3,'actress',NULL,'[\"Yuki\"]'),(347618,1303233,4,'actor',NULL,'[\"Lune\"]'),(347618,1293863,5,'director',NULL,NULL),(347618,383707,6,'writer','comic \"Neko no Danshaku, Baron\"',NULL),(347618,1027089,7,'writer','screenplay',NULL),(347618,1248357,8,'writer','screenplay: English version',NULL),(347618,1248358,9,'writer','screenplay: English version',NULL),(348062,1598061,10,'production_designer',NULL,NULL),(348062,1301960,1,'actress',NULL,'[\"Miranda\"]'),(348062,1299268,2,'actress',NULL,'[\"Cat\"]'),(348062,1300417,3,'actor',NULL,'[\"Dave Partridge\"]'),(348062,1315766,4,'actor',NULL,'[\"Brian\"]'),(348062,515303,5,'director',NULL,NULL),(348062,135114,6,'writer',NULL,NULL),(348062,583234,7,'producer','producer',NULL),(348062,997276,8,'composer',NULL,NULL),(348062,361143,9,'cinematographer',NULL,NULL),(348150,12155,10,'producer','producer',NULL),(348150,746125,1,'actor',NULL,'[\"Clark Kent\",\"Superman\"]'),(348150,228,2,'actor',NULL,'[\"Lex Luthor\"]'),(348150,98378,3,'actress',NULL,'[\"Lois Lane\"]'),(348150,5188,4,'actor',NULL,'[\"Richard White\"]'),(348150,1741,5,'director',NULL,NULL),(348150,1002424,6,'writer','screenplay',NULL),(348150,3529,7,'writer','screenplay',NULL),(348150,796950,8,'writer','characters',NULL),(348150,795975,9,'writer','characters',NULL),(348225,648726,10,'producer','producer',NULL),(348225,757012,1,'actress',NULL,'[\"Tomie Kawakami\"]'),(348225,1070494,2,'actor',NULL,'[\"Takumi Aoyama\"]'),(348225,256918,3,'actress',NULL,'[\"Hitomi Kitamura\"]'),(348225,1216915,4,'actor',NULL,'[\"Shun\'ichi Hosoda\"]'),(348225,1234345,5,'director',NULL,NULL),(348225,1299421,6,'writer','screenplay',NULL),(348225,411702,7,'writer','Tomie comics',NULL),(348225,1300051,8,'producer','producer',NULL),(348225,645421,9,'producer','producer',NULL),(348226,594366,10,'editor',NULL,NULL),(348226,29330,1,'actress',NULL,'[\"Tomie\",\"Tomie\'s friend\"]'),(348226,594497,2,'actress',NULL,'[\"Tomie\",\"Kazuhiko\'s daughter\"]'),(348226,475165,3,'actor',NULL,'[\"Kazuhiko\",\"Tomie\'s father\"]'),(348226,297783,4,'actress',NULL,'[\"Kyoko\"]'),(348226,620001,5,'director',NULL,NULL),(348226,1299421,6,'writer','screenplay',NULL),(348226,411702,7,'writer','comic',NULL),(348226,44465,8,'producer','producer',NULL),(348226,1302367,9,'producer','producer',NULL),(348333,742580,10,'producer','producer',NULL),(348333,5351,1,'actor',NULL,'[\"Monty\"]'),(348333,267506,2,'actress',NULL,'[\"Serena\"]'),(348333,197855,3,'actor',NULL,'[\"Mitch\"]'),(348333,519043,4,'actor',NULL,'[\"Dean\"]'),(348333,1301035,5,'director',NULL,NULL),(348333,50276,6,'producer','producer',NULL),(348333,1299657,7,'producer','producer',NULL),(348333,580890,8,'producer','producer',NULL),(348333,726483,9,'producer','producer',NULL),(348593,953616,10,'composer',NULL,NULL),(348593,313,1,'actor',NULL,'[\"Ted Cole\"]'),(348593,107,2,'actress',NULL,'[\"Marion Cole\"]'),(348593,287898,3,'actor',NULL,'[\"Eddie O\'Hare\"]'),(348593,1102577,4,'actress',NULL,'[\"Ruth Cole\"]'),(348593,931095,5,'director',NULL,NULL),(348593,410288,6,'writer','novel \"A Widow for One Year\"',NULL),(348593,136904,7,'producer','producer',NULL),(348593,180912,8,'producer','producer',NULL),(348593,394046,9,'producer','producer',NULL),(348836,709,10,'producer','producer',NULL),(348836,932,1,'actress',NULL,'[\"Miranda Grey\"]'),(348836,4851,2,'actress',NULL,'[\"Chloe Sava\"]'),(348836,375,3,'actor',NULL,'[\"Pete Graham\"]'),(348836,1165,4,'actor',NULL,'[\"Dr. Douglas Grey\"]'),(348836,440913,5,'director',NULL,NULL),(348836,349406,6,'writer','written by',NULL),(348836,1206265,7,'producer','producer',NULL),(348836,1175949,8,'producer','producer',NULL),(348836,5428,9,'producer','producer',NULL),(348853,6219,10,'composer',NULL,NULL),(348853,272,1,'actress',NULL,'[\"Catherine\"]'),(348853,322,2,'actress',NULL,'[\"Nathalie\",\"Marlène\"]'),(348853,367,3,'actor',NULL,'[\"Bernard\"]'),(348853,948636,4,'actor',NULL,'[\"François\"]'),(348853,284774,5,'director',NULL,NULL),(348853,87646,6,'writer','original idea',NULL),(348853,276466,7,'writer','writer',NULL),(348853,745930,8,'writer','writer',NULL),(348853,764963,9,'producer','producer',NULL),(348913,1461161,10,'actress',NULL,'[\"Crystal\",\"Crystal Smith\",\"Crystal\'s Boyfriend\"]'),(348913,616091,1,'actress',NULL,'[\"Georgia \'George\' Lass\"]'),(348913,89485,2,'actor',NULL,'[\"Mason\"]'),(348913,4982,3,'actress',NULL,'[\"Roxy Harvey\"]'),(348913,1597,4,'actor',NULL,'[\"Rube Sofer\"]'),(348913,298188,5,'writer','created by',NULL),(348913,828906,6,'actress',NULL,'[\"Joy Lass\"]'),(348913,571741,7,'actress',NULL,'[\"Reggie Lass\"]'),(348913,929794,8,'actress',NULL,'[\"Delores Herbig\"]'),(348913,364977,9,'actress',NULL,'[\"Daisy Adair\"]'),(349205,169505,10,'writer','screenplay',NULL),(349205,188,1,'actor',NULL,'[\"Tom Baker\"]'),(349205,1372,2,'actress',NULL,'[\"Kate Baker\"]'),(349205,240381,3,'actress',NULL,'[\"Lorraine Baker\"]'),(349205,5305,4,'actress',NULL,'[\"Nora Baker\"]'),(349205,506613,5,'director',NULL,NULL),(349205,318326,6,'writer','novel \"Cheaper by the Dozen\"',NULL),(349205,136950,7,'writer','novel \"Cheaper by the Dozen\"',NULL),(349205,864471,8,'writer','screen story',NULL),(349205,363958,9,'writer','screenplay',NULL),(349260,376274,10,'producer','producer',NULL),(349260,300,1,'actress',NULL,'[\"Anna Malan\"]'),(349260,168,2,'actor',NULL,'[\"Langston Whitfield\"]'),(349260,322407,3,'actor',NULL,'[\"Col. de Jager\"]'),(349260,1081983,4,'actor',NULL,'[\"Dumi Mkhalipi\"]'),(349260,958,5,'director',NULL,NULL),(349260,1310451,6,'writer','book \"Country of My Skull\"',NULL),(349260,668754,7,'writer','screenplay',NULL),(349260,153590,8,'producer','producer',NULL),(349260,180985,9,'producer','producer',NULL),(349345,1632187,10,'actor',NULL,'[\"Shadowman in Church\"]'),(349345,714838,1,'actor',NULL,'[\"Gordon Hauge\"]'),(349345,1308867,2,'actor',NULL,'[\"Carl Nimbus\"]'),(349345,792167,3,'actress',NULL,'[\"Maggie Hauge\"]'),(349345,1530560,4,'actor',NULL,'[\"Fumie Tomasawa\"]'),(349345,177234,5,'director',NULL,NULL),(349345,1312270,6,'actor',NULL,'[\"Jake Tulley\"]'),(349345,1309423,7,'actress',NULL,'[\"Charlie Roadtrap\"]'),(349345,1309696,8,'actor',NULL,'[\"Norman\"]'),(349345,1308899,9,'actor',NULL,'[\"Last Shadowman\",\"Jeff the Jumper\"]'),(349349,1493617,10,'composer',NULL,NULL),(349349,314949,1,'actor',NULL,'[\"Red\",\"CoconutHeadFaceMan\",\"Mother Nefarious\"]'),(349349,1071396,2,'actor',NULL,'[\"Baron Nefarious\"]'),(349349,957968,3,'actress',NULL,'[\"Violet\"]'),(349349,3501,4,'actor',NULL,'[\"Stavros\"]'),(349349,256189,5,'director',NULL,NULL),(349349,1309750,6,'writer',NULL,NULL),(349349,1828271,7,'composer',NULL,NULL),(349349,1269167,8,'composer',NULL,NULL),(349349,2217213,9,'composer',NULL,NULL),(349416,3392,10,'composer',NULL,NULL),(349416,5380,1,'actor',NULL,'[\"Skip Collins\"]'),(349416,103038,2,'actor',NULL,'[\"Ryan Carmichael\"]'),(349416,279,3,'actor',NULL,'[\"Daniel Collins\"]'),(349416,1800,4,'actor',NULL,'[\"Grandpa Collins\"]'),(349416,163375,5,'director',NULL,NULL),(349416,195136,6,'producer','producer',NULL),(349416,287946,7,'producer','producer',NULL),(349416,353187,8,'producer','producer',NULL),(349416,507669,9,'producer','producer',NULL),(349825,831578,10,'cinematographer',NULL,NULL),(349825,621,1,'actor',NULL,'[\"Herb Brooks\"]'),(349825,165101,2,'actress',NULL,'[\"Patti Brooks\"]'),(349825,922263,3,'actor',NULL,'[\"Rob McClanahan\"]'),(349825,1187,4,'actor',NULL,'[\"Craig Patrick\"]'),(349825,640334,5,'director',NULL,NULL),(349825,1325865,6,'writer','written by',NULL),(349825,161891,7,'producer','producer',NULL),(349825,336668,8,'producer','producer',NULL),(349825,6142,9,'composer',NULL,NULL),(349903,391794,10,'composer',NULL,NULL),(349903,123,1,'actor',NULL,'[\"Danny Ocean\"]'),(349903,93,2,'actor',NULL,'[\"Rusty Ryan\"]'),(349903,210,3,'actress',NULL,'[\"Tess Ocean\"]'),(349903,1876,4,'actress',NULL,'[\"Isabel Lahiri\"]'),(349903,1752,5,'director',NULL,NULL),(349903,1079776,6,'writer','written by',NULL),(349903,425138,7,'writer','characters',NULL),(349903,751207,8,'writer','characters',NULL),(349903,5545,9,'producer','producer',NULL),(350028,2170,10,'producer','producer',NULL),(350028,5028,1,'actress',NULL,'[\"Helen Harris\"]'),(350028,179173,2,'actor',NULL,'[\"Pastor Dan Parker\"]'),(350028,349,3,'actress',NULL,'[\"Jenny Portman\"]'),(350028,659363,4,'actress',NULL,'[\"Audrey Davis\"]'),(350028,5190,5,'director',NULL,NULL),(350028,166767,6,'writer','story',NULL),(350028,1621084,7,'writer','story',NULL),(350028,24856,8,'writer','screenplay',NULL),(350028,66764,9,'writer','screenplay',NULL),(350258,35661,10,'composer',NULL,NULL),(350258,4937,1,'actor',NULL,'[\"Ray Charles\"]'),(350258,5093,2,'actress',NULL,'[\"Margie Hendricks\"]'),(350258,913488,3,'actress',NULL,'[\"Della Bea Robinson\"]'),(350258,694066,4,'actor',NULL,'[\"Jeff Brown\"]'),(350258,431,5,'director',NULL,NULL),(350258,1343803,6,'writer','story',NULL),(350258,49920,7,'producer','producer',NULL),(350258,49945,8,'producer','producer',NULL),(350258,71363,9,'producer','producer',NULL),(351238,323950,10,'cinematographer',NULL,NULL),(351238,1591990,1,'actor',NULL,'[\"LKW Fahrer\"]'),(351238,417924,2,'actress',NULL,'[\"Anna\"]'),(351238,1328664,3,'actor',NULL,'[\"Dimitri\"]'),(351238,1579614,4,'actor',NULL,'[\"Petja\"]'),(351238,772691,5,'director',NULL,NULL),(351238,349654,6,'writer','writer',NULL),(351238,165361,7,'producer','producer',NULL),(351238,944230,8,'producer','producer',NULL),(351238,1574308,9,'composer',NULL,NULL),(351283,1877,10,'composer',NULL,NULL),(351283,1674,1,'actor',NULL,'[\"Marty\"]'),(351283,1774,2,'actor',NULL,'[\"Alex\"]'),(351283,1710,3,'actor',NULL,'[\"Melman\"]'),(351283,586,4,'actress',NULL,'[\"Gloria\"]'),(351283,201509,5,'director',NULL,NULL),(351283,569891,6,'director',NULL,NULL),(351283,123666,7,'writer','written by',NULL),(351283,1129905,8,'writer','written by',NULL),(351283,814969,9,'producer','producer',NULL),(351817,945425,10,'producer','producer',NULL),(351817,760796,1,'actor',NULL,'[\"Seibei Iguchi\"]'),(351817,594533,2,'actress',NULL,'[\"Tomoe Iinuma\"]'),(351817,462042,3,'actor',NULL,'[\"Choubei Kusaka\"]'),(351817,652592,4,'actor',NULL,'[\"Toyotaro Koda\"]'),(351817,945282,5,'director',NULL,NULL),(351817,1330441,6,'writer','novels \"Tasogare Seibei\", \"Chikkou Shiatsu\" and \"Iwaibito Sukehachi\"',NULL),(351817,38335,7,'writer','screenplay',NULL),(351817,9640815,8,'producer','producer',NULL),(351817,619974,9,'producer','producer',NULL),(351977,2718,10,'writer','screenplay',NULL),(351977,425005,1,'actor',NULL,'[\"Chris Vaughn\"]'),(351977,1008709,2,'actress',NULL,'[\"Deni\"]'),(351977,424216,3,'actor',NULL,'[\"Ray Templeton\"]'),(351977,100889,4,'actor',NULL,'[\"Sheriff Stan Watkins\"]'),(351977,106230,5,'director',NULL,NULL),(351977,109858,6,'writer','earlier screenplay',NULL),(351977,458318,7,'writer','screenplay',NULL),(351977,316888,8,'writer','screenplay',NULL),(351977,505522,9,'writer','screenplay',NULL),(352248,2353,10,'composer',NULL,NULL),(352248,128,1,'actor',NULL,'[\"Jim Braddock\"]'),(352248,250,2,'actress',NULL,'[\"Mae Braddock\"]'),(352248,81572,3,'actor',NULL,'[\"Max Baer\"]'),(352248,316079,4,'actor',NULL,'[\"Joe Gould\"]'),(352248,165,5,'director',NULL,NULL),(352248,391132,6,'writer','screenplay',NULL),(352248,326040,7,'writer','screenplay',NULL),(352248,4976,8,'producer','producer',NULL),(352248,1508,9,'producer','producer',NULL),(353489,387541,10,'producer','producer',NULL),(353489,673932,1,'actress',NULL,'[\"Brigitte\"]'),(353489,281956,2,'actor',NULL,'[\"Jeremy\"]'),(353489,410622,3,'actress',NULL,'[\"Ginger\"]'),(353489,1137209,4,'actress',NULL,'[\"Ghost\"]'),(353489,837977,5,'director',NULL,NULL),(353489,910550,6,'writer','characters',NULL),(353489,1325872,7,'writer','written by',NULL),(353489,222890,8,'producer','producer',NULL),(353489,367538,9,'producer','producer',NULL),(353969,1396406,10,'producer','producer',NULL),(353969,814280,1,'actor',NULL,'[\"Detective Park Doo-man\"]'),(353969,1235292,2,'actor',NULL,'[\"Detective Seo Tae-yoon\"]'),(353969,1323287,3,'actor',NULL,'[\"Detective Cho Yong-koo\"]'),(353969,1138201,4,'actor',NULL,'[\"Sergeant Shin Dong-chul\"]'),(353969,94435,5,'director',NULL,NULL),(353969,1323286,6,'writer','play',NULL),(353969,1646563,7,'writer','writer',NULL),(353969,149223,8,'producer','producer',NULL),(353969,453617,9,'producer','producer',NULL),(354575,391667,10,'cinematographer','director of photography',NULL),(354575,632890,1,'archive_footage',NULL,'[\"The Perfect Man - from \'Det perfekte menneske\' 1967\"]'),(354575,630919,2,'archive_footage',NULL,'[\"The Perfect Woman, from \'Det perfekte menneske\' 1967)\"]'),(354575,1339080,3,'actor',NULL,'[\"The Perfect Man (segment \\\"Obstruction #1 - The Perfect Human: Cuba\\\")\"]'),(354575,34267,4,'actress',NULL,'[\"The Perfect Woman (segment \\\"Obstruction #1 - The Perfect Human: Cuba\\\")\"]'),(354575,504654,5,'director',NULL,NULL),(354575,1885,6,'director',NULL,NULL),(354575,1452387,7,'writer','poem \"La Femme\"',NULL),(354575,1300606,8,'writer','script',NULL),(354575,392294,9,'producer','producer',NULL),(354772,646542,10,'self',NULL,'[\"Self\"]'),(354772,922496,1,'self',NULL,'[\"Self - Hostess\"]'),(354772,522550,2,'self',NULL,'[\"Self\"]'),(354772,547226,3,'self',NULL,'[\"Self\"]'),(354772,138319,4,'self',NULL,'[\"Self\"]'),(354772,1327221,5,'director',NULL,NULL),(354772,1328163,6,'director',NULL,NULL),(354772,1328320,7,'director',NULL,NULL),(354772,1929051,8,'producer','producer',NULL),(354772,136601,9,'self',NULL,'[\"Self\"]'),(354899,919761,10,'editor',NULL,NULL),(354899,305558,1,'actor',NULL,'[\"Stéphane Miroux\"]'),(354899,1250,2,'actress',NULL,'[\"Stéphanie\"]'),(354899,591877,3,'actress',NULL,'[\"Christine Miroux\"]'),(354899,149260,4,'actor',NULL,'[\"Guy\"]'),(354899,327273,5,'director',NULL,NULL),(354899,1028107,6,'producer','producer',NULL),(354899,2198489,7,'producer','producer',NULL),(354899,76259,8,'composer',NULL,NULL),(354899,93610,9,'cinematographer',NULL,NULL),(355702,724706,10,'editor',NULL,NULL),(355702,5132,1,'actor',NULL,'[\"Skip\"]'),(355702,386472,2,'actor',NULL,'[\"Jay\"]'),(355702,711559,3,'actor',NULL,'[\"Tony\"]'),(355702,424216,4,'actor',NULL,'[\"Topper Burks\"]'),(355702,362566,5,'director',NULL,NULL),(355702,672769,6,'writer','written by',NULL),(355702,513170,7,'producer','producer',NULL),(355702,6205,8,'composer',NULL,NULL),(355702,204567,9,'cinematographer','director of photography',NULL),(356150,892868,10,'composer',NULL,NULL),(356150,1310709,1,'actor',NULL,'[\"Scott Thomas\"]'),(356150,686009,2,'actor',NULL,'[\"Cooper Harris\"]'),(356150,5502,3,'actress',NULL,'[\"Jenny\"]'),(356150,922563,4,'actor',NULL,'[\"Jamie\"]'),(356150,769840,5,'director',NULL,NULL),(356150,73688,6,'director','co-director',NULL),(356150,541635,7,'director','co-director',NULL),(356150,325175,8,'producer','producer',NULL),(356150,1532344,9,'producer','producer',NULL),(356470,921222,10,'producer','producer',NULL),(356470,240381,1,'actress',NULL,'[\"Sam\"]'),(356470,614877,2,'actor',NULL,'[\"Austin\"]'),(356470,177639,3,'actress',NULL,'[\"Fiona\"]'),(356470,126004,4,'actor',NULL,'[\"Carter\"]'),(356470,743093,5,'director',NULL,NULL),(356470,1354901,6,'writer','written by',NULL),(356470,1058415,7,'producer','producer',NULL),(356470,523324,8,'producer','producer',NULL),(356470,783346,9,'producer','producer',NULL),(356634,65100,10,'composer',NULL,NULL),(356634,5227,1,'actor',NULL,'[\"Jon\"]'),(356634,1349,2,'actress',NULL,'[\"Liz\"]'),(356634,864997,3,'actor',NULL,'[\"Happy Chapman\"]'),(356634,195,4,'actor',NULL,'[\"Garfield\"]'),(356634,382072,5,'director',NULL,NULL),(356634,204825,6,'writer','comic strip \"Garfield\"',NULL),(356634,169505,7,'writer','written by',NULL),(356634,812513,8,'writer','written by',NULL),(356634,204862,9,'producer','producer',NULL),(356680,829480,10,'production_designer',NULL,NULL),(356680,551,1,'actor',NULL,'[\"Everett Stone\"]'),(356680,572,2,'actress',NULL,'[\"Meredith Morton\"]'),(356680,132,3,'actress',NULL,'[\"Julie Morton\"]'),(356680,473,4,'actress',NULL,'[\"Sybil Stone\"]'),(356680,80120,5,'director',NULL,NULL),(356680,518757,6,'producer','producer',NULL),(356680,315974,7,'composer',NULL,NULL),(356680,3446,8,'cinematographer','director of photography',NULL),(356680,285701,9,'editor',NULL,NULL),(356721,5687,10,'cinematographer','director of photography',NULL),(356721,5403,1,'actor',NULL,'[\"Albert Markovski\"]'),(356721,179,2,'actor',NULL,'[\"Brad Stand\"]'),(356721,915208,3,'actress',NULL,'[\"Dawn Campbell\"]'),(356721,242,4,'actor',NULL,'[\"Tommy Corn\"]'),(356721,751102,5,'director',NULL,NULL),(356721,1337885,6,'writer','written by',NULL),(356721,329084,7,'producer','producer',NULL),(356721,748784,8,'producer','producer',NULL),(356721,109726,9,'composer',NULL,NULL),(356910,586969,10,'producer','producer',NULL),(356910,93,1,'actor',NULL,'[\"John Smith\"]'),(356910,1401,2,'actress',NULL,'[\"Jane Smith\"]'),(356910,111013,3,'actor',NULL,'[\"Benjamin Danz\"]'),(356910,681,4,'actor',NULL,'[\"Eddie\"]'),(356910,510731,5,'director',NULL,NULL),(356910,1334526,6,'writer','written by',NULL),(356910,287946,7,'producer','producer',NULL),(356910,326040,8,'producer','producer',NULL),(356910,572805,9,'producer','producer',NULL),(357110,725475,10,'production_designer',NULL,NULL),(357110,358,1,'actor',NULL,'[\"Jack Slavin\"]'),(357110,1416,2,'actress',NULL,'[\"Kathleen\"]'),(357110,4741,3,'actress',NULL,'[\"Rose Slavin\"]'),(357110,1222820,4,'actor',NULL,'[\"Rodney\"]'),(357110,589182,5,'director',NULL,NULL),(357110,843543,6,'producer','producer',NULL),(357110,737459,7,'composer',NULL,NULL),(357110,475578,8,'cinematographer',NULL,NULL),(357110,389259,9,'editor',NULL,NULL),(357277,1360299,10,'writer','written by',NULL),(357277,4950,1,'actress',NULL,'[\"Elektra\"]'),(357277,899681,2,'actor',NULL,'[\"Mark Miller\"]'),(357277,498449,3,'actor',NULL,'[\"Kirigi\"]'),(357277,698977,4,'actress',NULL,'[\"Abby Miller\"]'),(357277,101385,5,'director',NULL,NULL),(357277,425756,6,'writer','motion picture characters',NULL),(357277,588340,7,'writer','comic book characters',NULL),(357277,672015,8,'writer','written by',NULL),(357277,955974,9,'writer','written by',NULL),(357413,366812,10,'production_designer',NULL,NULL),(357413,2071,1,'actor',NULL,'[\"Ron Burgundy\"]'),(357413,775,2,'actress',NULL,'[\"Veronica Corningstone\"]'),(357413,136797,3,'actor',NULL,'[\"Brick Tamland\"]'),(357413,748620,4,'actor',NULL,'[\"Brian Fantana\"]'),(357413,570912,5,'director',NULL,NULL),(357413,31976,6,'producer','producer',NULL),(357413,943391,7,'composer',NULL,NULL),(357413,5630,8,'cinematographer','director of photography',NULL),(357413,924544,9,'editor',NULL,NULL),(357507,849964,10,'producer','producer',NULL),(357507,5538,1,'actor',NULL,'[\"Tim\"]'),(357507,221043,2,'actress',NULL,'[\"Kate Houghton\"]'),(357507,5128,3,'actress',NULL,'[\"Tim\'s Mother\"]'),(357507,566084,4,'actress',NULL,'[\"Franny\"]'),(357507,443181,5,'director',NULL,NULL),(357507,471392,6,'writer','story',NULL),(357507,1340000,7,'writer','screenplay',NULL),(357507,925482,8,'writer','screenplay',NULL),(357507,600,9,'producer','producer',NULL),(358082,593856,10,'writer','story',NULL),(358082,191,1,'actor',NULL,'[\"Rodney Copperbottom\"]'),(358082,932,2,'actress',NULL,'[\"Cappy\"]'),(358082,316,3,'actor',NULL,'[\"Bigweld\"]'),(358082,245,4,'actor',NULL,'[\"Fender\"]'),(358082,917188,5,'director',NULL,NULL),(358082,757858,6,'director','co-director',NULL),(358082,1865755,7,'writer','screenplay',NULL),(358082,304665,8,'writer','screenplay',NULL),(358082,541632,9,'writer','screenplay',NULL),(358273,465298,10,'producer','producer',NULL),(358273,1618,1,'actor',NULL,'[\"John R. Cash\"]'),(358273,702,2,'actress',NULL,'[\"June Carter\"]'),(358273,329481,3,'actress',NULL,'[\"Vivian Cash\"]'),(358273,1598,4,'actor',NULL,'[\"Ray Cash\"]'),(358273,3506,5,'director',NULL,NULL),(358273,143599,6,'writer','book \"Man in Black\"',NULL),(358273,219456,7,'writer','written by',NULL),(358273,1789517,8,'writer','book \"Cash: The Autobiography\"',NULL),(358273,5077,9,'producer','producer',NULL),(359013,1014697,10,'composer',NULL,NULL),(359013,648,1,'actor',NULL,'[\"Blade\"]'),(359013,1434,2,'actor',NULL,'[\"Whistler\"]'),(359013,205,3,'actress',NULL,'[\"Danica Talos\"]'),(359013,5351,4,'actor',NULL,'[\"Hannibal King\"]'),(359013,275286,5,'director',NULL,NULL),(359013,938379,6,'writer','character',NULL),(359013,170160,7,'writer','character',NULL),(359013,291293,8,'producer','producer',NULL),(359013,365036,9,'producer','producer',NULL),(359423,745746,10,'producer','producer',NULL),(359423,268199,1,'actor',NULL,'[\"Bobby Morrow (1982)\"]'),(359423,1316767,2,'actor',NULL,'[\"Jonathan Glover (1982)\"]'),(359423,705,3,'actress',NULL,'[\"Clare\"]'),(359423,651,4,'actress',NULL,'[\"Alice Glover\"]'),(359423,1555287,5,'director',NULL,NULL),(359423,1259728,6,'writer','novel',NULL),(359423,366363,7,'producer','producer',NULL),(359423,1371,8,'producer','producer',NULL),(359423,463025,9,'producer','producer',NULL),(359610,205179,10,'actor',NULL,'[\"Mr. Erlanson\"]'),(359610,550476,1,'actress',NULL,'[\"Mrs. Sergstrom\"]'),(359610,48881,2,'actor',NULL,'[\"Mr. Lindquist\"]'),(359610,2416169,3,'actress',NULL,'[\"Mrs. Nordstrom\"]'),(359610,2415936,4,'actress',NULL,'[\"Mrs. Anderssen\"]'),(359610,115185,5,'director',NULL,NULL),(359610,923839,6,'writer','book by',NULL),(359610,5,7,'writer','by: was suggested by a film',NULL),(359610,323610,8,'producer','producer',NULL),(359610,1418128,9,'production_designer',NULL,NULL),(359950,788640,10,'composer',NULL,NULL),(359950,1774,1,'actor',NULL,'[\"Walter Mitty\"]'),(359950,1325419,2,'actress',NULL,'[\"Cheryl Melhoff\"]'),(359950,1789985,3,'actor',NULL,'[\"Tim Naughton\"]'),(359950,1063517,4,'actress',NULL,'[\"Odessa Mitty\"]'),(359950,175726,5,'writer','screenplay by',NULL),(359950,862122,6,'writer','based on the short story by',NULL),(359950,180366,7,'producer','producer',NULL),(359950,326412,8,'producer','producer',NULL),(359950,326415,9,'producer','producer',NULL),(360201,153877,10,'producer','producer',NULL),(360201,379,1,'actress',NULL,'[\"Lizzie Bradbury\"]'),(360201,79273,2,'actor',NULL,'[\"Peter Colt\"]'),(360201,269463,3,'actor',NULL,'[\"Ron Roth\"]'),(360201,554,4,'actor',NULL,'[\"Dennis Bradbury\"]'),(360201,518644,5,'director',NULL,NULL),(360201,111845,6,'writer','written by',NULL),(360201,280814,7,'writer','written by',NULL),(360201,505662,8,'writer','written by',NULL),(360201,79677,9,'producer','producer',NULL),(360486,225146,10,'producer','producer',NULL),(360486,206,1,'actor',NULL,'[\"John Constantine\"]'),(360486,1838,2,'actress',NULL,'[\"Angela Dodson\",\"Isabel Dodson\"]'),(360486,5023,3,'actor',NULL,'[\"Midnite\"]'),(360486,479471,4,'actor',NULL,'[\"Chas\"]'),(360486,1349376,5,'director',NULL,NULL),(360486,1393443,6,'writer','comic book \"Hellblazer\"',NULL),(360486,1212017,7,'writer','comic book \"Hellblazer\"',NULL),(360486,110778,8,'writer','story',NULL),(360486,135141,9,'writer','screenplay',NULL),(360717,88245,10,'producer','producer',NULL),(360717,915208,1,'actress',NULL,'[\"Ann Darrow\"]'),(360717,85312,2,'actor',NULL,'[\"Carl Denham\"]'),(360717,4778,3,'actor',NULL,'[\"Jack Driscoll\"]'),(360717,470981,4,'actor',NULL,'[\"Captain Englehorn\"]'),(360717,1392,5,'director',NULL,NULL),(360717,909638,6,'writer','screenplay',NULL),(360717,101991,7,'writer','screenplay',NULL),(360717,178260,8,'writer','based on a story by',NULL),(360717,908624,9,'writer','based on a story by',NULL),(360779,250958,1,'actress',NULL,'[\"Sophie\"]'),(360779,1477692,2,'actress',NULL,'[\"Zelda\"]'),(360779,520870,3,'actor',NULL,'[\"Pierre\"]'),(360779,1800357,4,'actress',NULL,'[\"Pierres Freundin\"]'),(360779,770018,5,'director',NULL,NULL),(360779,462926,6,'producer','producer',NULL),(360779,13911912,7,'producer','producer',NULL),(360779,903554,8,'cinematographer',NULL,NULL),(360779,127009,9,'editor',NULL,NULL),(360845,12239,1,'actress',NULL,'[\"Judith Lerner\"]'),(360845,226383,2,'actress',NULL,'[\"Olga Brodsky\"]'),(360845,469656,3,'actor',NULL,'[\"Ramos Garcia\"]'),(360845,251812,4,'actor',NULL,'[\"Ambassador\"]'),(360845,419,5,'director',NULL,NULL),(360845,764963,6,'producer','producer',NULL),(360845,906935,7,'producer','producer',NULL),(360845,386501,8,'cinematographer',NULL,NULL),(361089,930964,10,'producer','producer',NULL),(361089,191,1,'actor',NULL,'[\"Valiant\"]'),(361089,315041,2,'actor',NULL,'[\"Bugsy\"]'),(361089,347,3,'actor',NULL,'[\"Von Talon\"]'),(361089,980,4,'actor',NULL,'[\"Sergeant\"]'),(361089,1369705,5,'director',NULL,NULL),(361089,1498344,6,'writer','story',NULL),(361089,441750,7,'writer','screenplay',NULL),(361089,1276664,8,'writer','screenplay',NULL),(361089,76791,9,'writer',NULL,NULL),(361411,6182,10,'composer',NULL,NULL),(361411,376540,1,'actor',NULL,'[\"William Darcy\"]'),(361411,706787,2,'actress',NULL,'[\"Lalita Bakshi\"]'),(361411,1318321,3,'actress',NULL,'[\"Manorama Bakshi\"]'),(361411,451600,4,'actor',NULL,'[\"Chaman Bakshi\"]'),(361411,149446,5,'director',NULL,NULL),(361411,807,6,'writer','novel \"Pride and Prejudice\"',NULL),(361411,74488,7,'writer',NULL,NULL),(361411,623235,8,'producer','producer',NULL),(361411,2934210,9,'composer',NULL,NULL),(361467,6205,10,'composer',NULL,NULL),(361467,517820,1,'actress',NULL,'[\"Lola\"]'),(361467,1083271,2,'actress',NULL,'[\"Carla\"]'),(361467,305081,3,'actor',NULL,'[\"Stu\"]'),(361467,444,4,'actress',NULL,'[\"Karen\"]'),(361467,837406,5,'director',NULL,NULL),(361467,1358381,6,'writer','book',NULL),(361467,661275,7,'writer','screenplay',NULL),(361467,500107,8,'producer','producer',NULL),(361467,5414,9,'producer','producer',NULL),(361693,792555,10,'production_designer',NULL,NULL),(361693,1435,1,'actress',NULL,'[\"Mamie\"]'),(361693,176869,2,'actor',NULL,'[\"Charley\"]'),(361693,350454,3,'actress',NULL,'[\"Jude\"]'),(361693,103038,4,'actor',NULL,'[\"Nicky\"]'),(361693,740400,5,'director',NULL,NULL),(361693,664513,6,'producer','producer',NULL),(361693,927561,7,'producer','producer',NULL),(361693,558917,8,'cinematographer','director of photography',NULL),(361693,168549,9,'editor',NULL,NULL),(361696,722603,10,'producer','producer',NULL),(361696,240381,1,'actress',NULL,'[\"Teresa \'Terri\' Fletcher\"]'),(361696,179173,2,'actor',NULL,'[\"Mr. Torvald\"]'),(361696,360,3,'actress',NULL,'[\"Aunt Nina\"]'),(361696,1268888,4,'actor',NULL,'[\"Jay Corgan\"]'),(361696,573732,5,'director',NULL,NULL),(361696,1112597,6,'writer','story',NULL),(361696,1368026,7,'writer','screenplay',NULL),(361696,112335,8,'producer','producer',NULL),(361696,228690,9,'producer','producer',NULL),(361748,93,1,'actor',NULL,'[\"Lt. Aldo Raine\"]'),(361748,1208167,2,'actress',NULL,'[\"Bridget von Hammersmark\"]'),(361748,744834,3,'actor',NULL,'[\"Sgt. Donny Donowitz\"]'),(361748,491259,4,'actress',NULL,'[\"Shosanna\"]'),(361748,233,5,'director',NULL,NULL),(361748,4744,6,'producer','producer',NULL),(361748,724744,7,'cinematographer','director of photography',NULL),(361748,579673,8,'editor',NULL,NULL),(361748,913300,9,'production_designer',NULL,NULL),(361862,209303,10,'editor',NULL,NULL),(361862,288,1,'actor',NULL,'[\"Trevor Reznik\"]'),(361862,492,2,'actress',NULL,'[\"Stevie\"]'),(361862,845209,3,'actress',NULL,'[\"Marie\"]'),(361862,788767,4,'actor',NULL,'[\"Ivan\"]'),(361862,26442,5,'director',NULL,NULL),(361862,466925,6,'writer','written by',NULL),(361862,273327,7,'producer','producer',NULL),(361862,63414,8,'composer',NULL,NULL),(361862,319885,9,'cinematographer','director of photography',NULL),(361921,1362928,1,'actor',NULL,NULL),(361921,5690,2,'director',NULL,NULL),(361921,374658,3,'director',NULL,NULL),(362004,1549338,10,'editor',NULL,NULL),(362004,492,1,'actress',NULL,'[\"\'Mark\' Aviva\"]'),(362004,289,2,'actress',NULL,'[\"Joyce Victor\"]'),(362004,12289,3,'actor',NULL,'[\"Joe\",\"Earl\",\"Bob\"]'),(362004,264506,4,'actor',NULL,'[\"Mark Wiener\"]'),(362004,1754,5,'director',NULL,NULL),(362004,752749,6,'producer','producer',NULL),(362004,874913,7,'producer','producer',NULL),(362004,489059,8,'composer',NULL,NULL),(362004,725166,9,'cinematographer',NULL,NULL),(362120,5541,10,'writer','characters',NULL),(362120,267506,1,'actress',NULL,'[\"Cindy\"]'),(362120,356021,2,'actress',NULL,'[\"Brenda\"]'),(362120,81572,3,'actor',NULL,'[\"Tom\"]'),(362120,597,4,'actor',NULL,'[\"Henry Hale\"]'),(362120,1878,5,'director',NULL,NULL),(362120,563301,6,'writer','screenplay',NULL),(362120,720,7,'writer','screenplay',NULL),(362120,698493,8,'writer','screenplay',NULL),(362120,915465,9,'writer','characters',NULL),(362165,306755,10,'cinematographer','director of photography',NULL),(362165,5085,1,'actor',NULL,'[\"Tim Avery\"]'),(362165,5025,2,'actress',NULL,'[\"Tonya Avery\"]'),(362165,1086,3,'actor',NULL,'[\"Loki\"]'),(362165,1591757,4,'actor',NULL,'[\"Alvey\"]'),(362165,349183,5,'director',NULL,NULL),(362165,1141749,6,'writer','written by',NULL),(362165,400385,7,'producer','producer',NULL),(362165,472256,8,'producer','producer',NULL),(362165,6055,9,'composer',NULL,NULL),(362227,662748,10,'producer','producer',NULL),(362227,158,1,'actor',NULL,'[\"Viktor Navorski\"]'),(362227,1876,2,'actress',NULL,'[\"Amelia Warren\"]'),(362227,564277,3,'actor',NULL,'[\"Mulroy\"]'),(362227,1804,4,'actor',NULL,'[\"Frank Dixon\"]'),(362227,229,5,'director',NULL,NULL),(362227,629272,6,'writer','story',NULL),(362227,315065,7,'writer','story',NULL),(362227,622288,8,'writer','screenplay',NULL),(362227,531827,9,'producer','producer',NULL),(362269,792555,10,'production_designer',NULL,NULL),(362269,553,1,'actor',NULL,'[\"Alfred Kinsey\"]'),(362269,1473,2,'actress',NULL,'[\"Clara McMillen\"]'),(362269,563,3,'actor',NULL,'[\"Wardell Pomeroy\"]'),(362269,765597,4,'actor',NULL,'[\"Clyde Martin\"]'),(362269,174374,5,'director',NULL,NULL),(362269,616153,6,'producer','producer',NULL),(362269,1980,7,'composer',NULL,NULL),(362269,5695,8,'cinematographer','director of photography',NULL),(362269,441717,9,'editor',NULL,NULL),(362270,5934,10,'cinematographer','director of photography',NULL),(362270,195,1,'actor',NULL,'[\"Steve Zissou\"]'),(362270,5562,2,'actor',NULL,'[\"Ned Plimpton\"]'),(362270,1378,3,'actress',NULL,'[\"Eleanor Zissou\"]'),(362270,949,4,'actress',NULL,'[\"Jane Winslett-Richardson\"]'),(362270,27572,5,'director',NULL,NULL),(362270,876,6,'writer','written by',NULL),(362270,578814,7,'producer','producer',NULL),(362270,748784,8,'producer','producer',NULL),(362270,6205,9,'composer',NULL,NULL),(362387,1105901,10,'composer',NULL,NULL),(362387,634617,1,'actress',NULL,'[\"Rana Tachibana\"]'),(362387,1065734,2,'actress',NULL,'[\"Nozomi Matsumoto\"]'),(362387,14656827,3,'actress',NULL,'[\"Young Mother\"]'),(362387,14656828,4,'actress',NULL,'[\"Nozomi as a girl\"]'),(362387,1066739,5,'director',NULL,NULL),(362387,1503355,6,'writer','written by',NULL),(362387,1097451,7,'producer','producer',NULL),(362387,1360206,8,'producer','producer',NULL),(362387,1360372,9,'producer','producer',NULL),(362478,1374751,10,'composer',NULL,NULL),(362478,139,1,'actress',NULL,'[\"Norma Lewis\"]'),(362478,5188,2,'actor',NULL,'[\"Arthur Lewis\"]'),(362478,1449,3,'actor',NULL,'[\"Arlington Steward\"]'),(362478,714310,4,'actor',NULL,'[\"Norm Cahill\"]'),(362478,446819,5,'director',NULL,NULL),(362478,558577,6,'writer','short story \"Button, Button\"',NULL),(362478,1469853,7,'producer','producer',NULL),(362478,572014,8,'producer','producer',NULL),(362478,2562869,9,'composer',NULL,NULL),(363163,951598,10,'composer',NULL,NULL),(363163,4486,1,'actor',NULL,'[\"Adolf Hitler\"]'),(363163,487884,2,'actress',NULL,'[\"Traudl Junge\"]'),(363163,559890,3,'actor',NULL,'[\"Joseph Goebbels\"]'),(363163,477810,4,'actress',NULL,'[\"Eva Braun\"]'),(363163,386570,5,'director',NULL,NULL),(363163,251536,6,'writer','written by',NULL),(363163,275264,7,'writer','based on the book \"Der Untergang: Hitler und das Ende des Dritten Reiches\" by',NULL),(363163,432622,8,'writer','based on the book \"Bis zur letzten Stunde\" by',NULL),(363163,612199,9,'writer','based on the book \"Bis zur letzten Stunde\" by',NULL),(363226,411388,10,'production_designer',NULL,NULL),(363226,1429,1,'actor',NULL,'[\"Zatôichi\",\"Ichi\"]'),(363226,38355,2,'actor',NULL,'[\"Hattori Genosuke\"]'),(363226,622407,3,'actress',NULL,'[\"O-Shino, Hattori\'s Wife\"]'),(363226,644856,4,'actress',NULL,'[\"Aunt Oume\"]'),(363226,793753,5,'writer','novels',NULL),(363226,535320,6,'producer','producer',NULL),(363226,840608,7,'composer',NULL,NULL),(363226,945851,8,'cinematographer',NULL,NULL),(363226,649025,9,'editor',NULL,NULL),(363282,962428,10,'producer','producer',NULL),(363282,1581,1,'actress',NULL,'[\"Roxy Ryan\"]'),(363282,1580,2,'actress',NULL,'[\"Jane Ryan\"]'),(363282,506405,3,'actor',NULL,'[\"Max Lomax\"]'),(363282,725200,4,'actor',NULL,'[\"Bennie Bang\"]'),(363282,330140,5,'director',NULL,NULL),(363282,1428524,6,'writer','story',NULL),(363282,177836,7,'writer','screenplay',NULL),(363282,171651,8,'writer','screenplay',NULL),(363282,224145,9,'producer','producer',NULL),(363547,748283,10,'producer','producer',NULL),(363547,1631,1,'actress',NULL,'[\"Ana\"]'),(363547,609,2,'actor',NULL,'[\"Kenneth\"]'),(363547,1616,3,'actor',NULL,'[\"Andre\"]'),(363547,916617,4,'actor',NULL,'[\"Michael\"]'),(363547,811583,5,'director',NULL,NULL),(363547,1681,6,'writer',NULL,NULL),(363547,348181,7,'writer','screenplay',NULL),(363547,8953,8,'producer','producer',NULL),(363547,628080,9,'producer','producer',NULL),(363589,1378626,10,'actress',NULL,'[\"Nicole\"]'),(363589,1371432,1,'actor',NULL,'[\"Elias\"]'),(363589,1372713,2,'actor',NULL,'[\"Alex\"]'),(363589,1370494,3,'actor',NULL,'[\"Eric\"]'),(363589,1440281,4,'actor',NULL,'[\"John McFarland\"]'),(363589,1814,5,'director',NULL,NULL),(363589,937714,6,'producer','producer',NULL),(363589,767647,7,'cinematographer','director of photography',NULL),(363589,1378573,8,'actress',NULL,'[\"Jordan\"]'),(363589,1377431,9,'actress',NULL,'[\"Carrie\"]'),(363771,425741,10,'producer','producer',NULL),(363771,842770,1,'actress',NULL,'[\"White Witch\"]'),(363771,1670137,2,'actress',NULL,'[\"Lucy Pevensie\"]'),(363771,608440,3,'actor',NULL,'[\"Peter Pevensie\"]'),(363771,1342727,4,'actor',NULL,'[\"Edmund Pevensie\"]'),(363771,11470,5,'director',NULL,NULL),(363771,668754,6,'writer','screenplay',NULL),(363771,1321655,7,'writer','screenplay',NULL),(363771,1321656,8,'writer','screenplay',NULL),(363771,507000,9,'writer','book',NULL),(363988,2320,10,'cinematographer',NULL,NULL),(363988,136,1,'actor',NULL,'[\"Mort Rainey\"]'),(363988,4742,2,'actress',NULL,'[\"Amy Rainey\"]'),(363988,1806,3,'actor',NULL,'[\"John Shooter\"]'),(363988,459,4,'actor',NULL,'[\"Ted Milner\"]'),(363988,462895,5,'director',NULL,NULL),(363988,175,6,'writer','novella \"Four Past Midnight: Secret Window, Secret Garden\"',NULL),(363988,689780,7,'producer','producer',NULL),(363988,1275,8,'composer',NULL,NULL),(363988,952944,9,'composer',NULL,NULL),(364045,1275,10,'composer',NULL,NULL),(364045,1401,1,'actress',NULL,'[\"Illeana\"]'),(364045,160,2,'actor',NULL,'[\"Costa\"]'),(364045,662,3,'actor',NULL,'[\"Hart\"]'),(364045,1687,4,'actress',NULL,'[\"Mrs. Asher\"]'),(364045,142286,5,'director',NULL,NULL),(364045,1373865,6,'writer','novel',NULL),(364045,92578,7,'writer','screen story',NULL),(364045,4799,8,'producer','producer',NULL),(364045,325927,9,'producer','producer',NULL),(364343,104129,10,'editor',NULL,NULL),(364343,245,1,'actor',NULL,'[\"Alan Hakman\"]'),(364343,1029,2,'actor',NULL,'[\"Fletcher\"]'),(364343,227,3,'actress',NULL,'[\"Delila\"]'),(364343,476906,4,'actress',NULL,'[\"Thelma\"]'),(364343,619715,5,'director',NULL,NULL),(364343,917059,6,'producer','producer',NULL),(364343,3911,7,'composer',NULL,NULL),(364343,5714,8,'cinematographer','director of photography',NULL),(364343,20441,9,'editor',NULL,NULL),(364385,1367957,10,'composer',NULL,NULL),(364385,645648,1,'actress',NULL,'[\"Rika Nishina\"]'),(364385,411725,2,'actress',NULL,'[\"Hitomi Tokunaga\"]'),(364385,1503952,3,'actress',NULL,'[\"Izumi Tôyama\"]'),(364385,1368557,4,'actress',NULL,'[\"Chiharu\"]'),(364385,1234345,5,'director',NULL,NULL),(364385,406772,6,'producer','producer',NULL),(364385,2275305,7,'producer','producer',NULL),(364385,3466039,8,'producer','producer',NULL),(364385,2533662,9,'producer','producer',NULL),(364517,781365,10,'editor',NULL,NULL),(364517,133899,1,'actor',NULL,'[\"Julien Janvier\"]'),(364517,182839,2,'actress',NULL,'[\"Sophie Kowalsky\"]'),(364517,1392135,3,'actor',NULL,'[\"Julien à 8 ans\"]'),(364517,495470,4,'actress',NULL,'[\"Sophie à 8 ans\"]'),(364517,1077168,5,'director',NULL,NULL),(364517,744384,6,'producer','producer',NULL),(364517,739151,7,'composer',NULL,NULL),(364517,733728,8,'cinematographer',NULL,NULL),(364517,1294541,9,'editor',NULL,NULL),(364569,997224,10,'producer','producer',NULL),(364569,158856,1,'actor',NULL,'[\"Dae-su Oh\"]'),(364569,949167,2,'actor',NULL,'[\"Woo-jin Lee\"]'),(364569,1367246,3,'actress',NULL,'[\"Mi-do\"]'),(364569,1366028,4,'actor',NULL,'[\"Mr. Han\"]'),(364569,661791,5,'director',NULL,NULL),(364569,1628380,6,'writer','manga',NULL),(364569,2057405,7,'writer','manga',NULL),(364569,1367409,8,'writer','screenplay',NULL),(364569,1369364,9,'writer','screenplay',NULL),(364725,14101,10,'production_designer',NULL,NULL),(364725,1774,1,'actor',NULL,'[\"White Goodman\"]'),(364725,852132,2,'actress',NULL,'[\"Kate Veatch\"]'),(364725,681,3,'actor',NULL,'[\"Peter La Fleur\"]'),(364725,1800,4,'actor',NULL,'[\"Patches O\'Houlihan\"]'),(364725,1098493,5,'director',NULL,NULL),(364725,180366,6,'producer','producer',NULL),(364725,788640,7,'composer',NULL,NULL),(364725,956195,8,'cinematographer','director of photography',NULL),(364725,62328,9,'editor','film editor',NULL),(364751,745861,10,'writer','screenplay',NULL),(364751,498,1,'actor',NULL,'[\"Jerry Conlaine\"]'),(364751,1293,2,'actor',NULL,'[\"Dan Mott\"]'),(364751,1009277,3,'actor',NULL,'[\"Tom Marshall\"]'),(364751,1677499,4,'actor',NULL,'[\"Young Tom\"]'),(364751,109359,5,'director',NULL,NULL),(364751,937748,6,'writer','story',NULL),(364751,325214,7,'writer','story',NULL),(364751,638218,8,'writer','story',NULL),(364751,499343,9,'writer','screenplay',NULL),(364955,26853,10,'cinematographer','director of photography',NULL),(364955,1540404,1,'actor',NULL,'[\"Jerome\"]'),(364955,617009,2,'actress',NULL,'[\"Audrey\"]'),(364955,518,3,'actor',NULL,'[\"Professor Sandiford\"]'),(364955,980,4,'actor',NULL,'[\"Jimmy\"]'),(364955,959062,5,'director',NULL,NULL),(364955,167280,6,'writer','screenplay',NULL),(364955,355147,7,'producer','producer',NULL),(364955,809833,8,'producer','producer',NULL),(364955,457598,9,'composer',NULL,NULL),(364961,523881,10,'cinematographer','director of photography',NULL),(364961,576,1,'actor',NULL,'[\"Samuel J. Bicke\"]'),(364961,915208,2,'actress',NULL,'[\"Marie Andersen Bicke\"]'),(364961,332,3,'actor',NULL,'[\"Bonny Simmons\"]'),(364961,860233,4,'actor',NULL,'[\"Jack Jones\"]'),(364961,7158,5,'director',NULL,NULL),(364961,1353930,6,'writer','written by',NULL),(364961,190859,7,'producer','producer',NULL),(364961,998264,8,'producer','producer',NULL),(364961,4401,9,'composer',NULL,NULL),(364986,1371524,1,'actor',NULL,'[\"Arthur Sailes\"]'),(364986,1370718,2,'actor',NULL,'[\"Ben Sheets\"]'),(364986,352302,3,'actor',NULL,'[\"Victor Sailes\"]'),(364986,1239466,4,'actor',NULL,'[\"Father Rabin\"]'),(364986,1373347,5,'composer',NULL,NULL),(364986,1371523,6,'composer',NULL,NULL),(364986,1371521,7,'editor',NULL,NULL),(365125,937800,10,'editor',NULL,NULL),(365125,1808,1,'actress',NULL,'[\"Sylvia\"]'),(365125,1389,2,'actor',NULL,'[\"Vaughn\"]'),(365125,4757,3,'actress',NULL,'[\"Caprice\"]'),(365125,424216,4,'actor',NULL,'[\"Ray Ray\"]'),(365125,691,5,'director',NULL,NULL),(365125,394046,6,'producer','producer',NULL),(365125,882927,7,'producer','producer',NULL),(365125,3392,8,'composer',NULL,NULL),(365125,3205,9,'cinematographer','director of photography',NULL),(365135,258346,1,'self',NULL,'[\"Self\"]'),(365135,1057928,2,'self',NULL,'[\"Self\"]'),(365135,4812,3,'self',NULL,'[\"Self\"]'),(365135,5128,4,'self',NULL,'[\"Self\"]'),(365135,584974,5,'director',NULL,NULL),(365135,719491,6,'producer','producer',NULL),(365135,1152139,7,'producer','producer',NULL),(365135,195098,8,'composer',NULL,NULL),(365135,1458162,9,'editor',NULL,NULL),(365376,461905,10,'editor',NULL,NULL),(365376,1280145,1,'actress',NULL,'[\"Soo-mi Bae (Janghwa)\"]'),(365376,947514,2,'actress',NULL,'[\"Eun-joo Heo (Stepmother)\"]'),(365376,453448,3,'actor',NULL,'[\"Moo-hyeon Bae (Father)\"]'),(365376,1371529,4,'actress',NULL,'[\"Soo-yeon Bae (Hongryeon)\"]'),(365376,453518,5,'director',NULL,NULL),(365376,644884,6,'producer','producer',NULL),(365376,1233726,7,'producer','producer',NULL),(365376,496933,8,'composer',NULL,NULL),(365376,1371243,9,'cinematographer',NULL,NULL),(365545,1545176,10,'producer','producer',NULL),(365545,5125,1,'actress',NULL,'[\"Violet\"]'),(365545,1340638,2,'actor',NULL,'[\"Clint\"]'),(365545,72713,3,'actor',NULL,'[\"Will\"]'),(365545,5551,4,'actress',NULL,'[\"Pauletta\"]'),(365545,2223783,5,'director',NULL,NULL),(365545,111845,6,'writer','written by',NULL),(365545,697656,7,'writer','written by',NULL),(365545,1946260,8,'writer','based on the novel Nappily Ever After by',NULL),(365545,82894,9,'producer','producer',NULL),(365748,225323,10,'editor',NULL,NULL),(365748,670408,1,'actor',NULL,'[\"Shaun\"]'),(365748,296545,2,'actor',NULL,'[\"Ed\"]'),(365748,38918,3,'actress',NULL,'[\"Liz\"]'),(365748,205063,4,'actress',NULL,'[\"Dianne\"]'),(365748,942367,5,'director',NULL,NULL),(365748,661912,6,'producer','producer',NULL),(365748,610935,7,'composer',NULL,NULL),(365748,1577314,8,'composer',NULL,NULL),(365748,242381,9,'cinematographer','director of photography',NULL),(365830,719679,10,'editor',NULL,NULL),(365830,85312,1,'actor',NULL,'[\"JB\"]'),(365830,309307,2,'actor',NULL,'[\"KG\"]'),(365830,715469,3,'actor',NULL,'[\"Lee\"]'),(365830,227875,4,'actor',NULL,'[\"Dio\"]'),(365830,528381,5,'director',NULL,NULL),(365830,180366,6,'producer','producer',NULL),(365830,343320,7,'composer',NULL,NULL),(365830,454887,8,'composer',NULL,NULL),(365830,109658,9,'cinematographer',NULL,NULL),(365907,787834,10,'producer','producer',NULL),(365907,553,1,'actor',NULL,'[\"Matt Scudder\"]'),(365907,1405398,2,'actor',NULL,'[\"Kenny Kristo\"]'),(365907,1092086,3,'actor',NULL,'[\"Ray\"]'),(365907,2933542,4,'actor',NULL,'[\"Peter Kristo\"]'),(365907,291082,5,'director',NULL,NULL),(365907,88747,6,'writer','based on the novel by',NULL),(365907,1180690,7,'producer','producer',NULL),(365907,362,8,'producer','producer',NULL),(365907,1003922,9,'producer','producer',NULL),(365929,1421638,10,'writer','graphic novel',NULL),(365929,295,1,'actress',NULL,'[\"Carrie Stetko\"]'),(365929,532683,2,'actor',NULL,'[\"Robert Pryce\"]'),(365929,643,3,'actor',NULL,'[\"Dr. John Fury\"]'),(365929,1551922,4,'actor',NULL,'[\"Delfy\"]'),(365929,784061,5,'director',NULL,NULL),(365929,388377,6,'writer','screenplay',NULL),(365929,388375,7,'writer','screenplay',NULL),(365929,370937,8,'writer','screenplay',NULL),(365929,370928,9,'writer','screenplay',NULL),(365957,377454,10,'cinematographer',NULL,NULL),(365957,1217506,1,'actor',NULL,'[\"David\"]'),(365957,1216791,2,'actor',NULL,'[\"Rico\"]'),(365957,1215800,3,'actor',NULL,'[\"Vick\"]'),(365957,1212896,4,'actor',NULL,'[\"Rashann\"]'),(365957,831321,5,'director',NULL,NULL),(365957,608043,6,'producer','producer',NULL),(365957,1079559,7,'producer','producer',NULL),(365957,915780,8,'producer','producer',NULL),(365957,61045,9,'composer',NULL,NULL),(366548,593294,10,'producer','producer',NULL),(366548,704,1,'actor',NULL,'[\"Mumble\"]'),(366548,5261,2,'actress',NULL,'[\"Gloria\"]'),(366548,413168,3,'actor',NULL,'[\"Memphis\"]'),(366548,245,4,'actor',NULL,'[\"Ramon\",\"Lovelace\"]'),(366548,4306,5,'director',NULL,NULL),(366548,171253,6,'director','co-director',NULL),(366548,606688,7,'director','co-director',NULL),(366548,171722,8,'writer','written by',NULL),(366548,587964,9,'producer','producer',NULL),(366551,457598,10,'composer',NULL,NULL),(366551,158626,1,'actor',NULL,'[\"Harold Lee\"]'),(366551,671980,2,'actor',NULL,'[\"Kumar Patel\"]'),(366551,256121,3,'actor',NULL,'[\"Billy Carver\"]'),(366551,863999,4,'actor',NULL,'[\"J.D.\"]'),(366551,500444,5,'director',NULL,NULL),(366551,1375358,6,'writer','written by',NULL),(366551,1376383,7,'writer','written by',NULL),(366551,1144042,8,'producer','producer',NULL),(366551,788513,9,'producer','producer',NULL),(366627,345542,10,'producer','producer',NULL),(366627,4778,1,'actor',NULL,'[\"Jack Starks\"]'),(366627,461136,2,'actress',NULL,'[\"Jackie Price\"]'),(366627,185819,3,'actor',NULL,'[\"Rudy Mackenzie\"]'),(366627,1434,4,'actor',NULL,'[\"Dr. Thomas Becker\"]'),(366627,562266,5,'director',NULL,NULL),(366627,1789514,6,'writer','story',NULL),(366627,733692,7,'writer','story',NULL),(366627,1127653,8,'writer','screenplay',NULL),(366627,123,9,'producer','producer',NULL),(366780,309423,10,'editor',NULL,NULL),(366780,503060,1,'actress',NULL,'[\"Helena\",\"Anti-Helena\"]'),(366780,58029,2,'actor',NULL,'[\"Valentine\"]'),(366780,117339,3,'actor',NULL,'[\"Morris Campbell\",\"Prime Minister\"]'),(366780,571160,4,'actress',NULL,'[\"Joanne Campbell\",\"Queen of Light\",\"Queen of Shadows\"]'),(366780,571098,5,'director',NULL,NULL),(366780,301274,6,'writer','story',NULL),(366780,602098,7,'producer','producer',NULL),(366780,1163210,8,'composer',NULL,NULL),(366780,790485,9,'cinematographer',NULL,NULL),(366920,1298566,10,'composer',NULL,NULL),(366920,4349,1,'actress',NULL,'[\"Elizabeth Bennet\"]'),(366920,780539,2,'actor',NULL,'[\"Will Darcy\"]'),(366920,1376482,3,'actress',NULL,'[\"Jane Vasquez\"]'),(366920,1377076,4,'actor',NULL,'[\"Charles Bingley\"]'),(366920,10509441,5,'director',NULL,NULL),(366920,807,6,'writer','novel',NULL),(366920,1237224,7,'writer','writer',NULL),(366920,1376566,8,'writer',NULL,NULL),(366920,1131306,9,'writer','writer',NULL),(367000,744485,10,'cinematographer',NULL,NULL),(367000,1461,1,'actress',NULL,'[\"Anna Jurin\"]'),(367000,230697,2,'actress',NULL,'[\"Judith\"]'),(367000,531529,3,'actress',NULL,'[\"Francard\"]'),(367000,493668,4,'actress',NULL,'[\"Ilinca\"]'),(367000,1052791,5,'director',NULL,NULL),(367000,304521,6,'producer','producer',NULL),(367000,334926,7,'producer','producer',NULL),(367000,667447,8,'producer','producer',NULL),(367000,6173,9,'composer',NULL,NULL),(367027,2529,10,'editor',NULL,NULL),(367027,498271,1,'actress',NULL,'[\"Sofia\"]'),(367027,1594672,2,'actor',NULL,'[\"Caleb, the Stalker\"]'),(367027,2088623,3,'actor',NULL,'[\"Jamie\"]'),(367027,206225,4,'actor',NULL,'[\"James\"]'),(367027,593463,5,'director',NULL,NULL),(367027,314971,6,'producer','producer',NULL),(367027,673258,7,'producer','producer',NULL),(367027,1306785,8,'composer',NULL,NULL),(367027,1054979,9,'cinematographer','director of photography',NULL),(367085,782930,10,'cinematographer','director of photography',NULL),(367085,2391,1,'actor',NULL,'[\"Jerome\"]'),(367085,4879,2,'actor',NULL,'[\"Captain Mack\"]'),(367085,792,3,'actor',NULL,'[\"Mr. Hunkee\"]'),(367085,366389,4,'actor',NULL,'[\"Nashawn\"]'),(367085,855843,5,'director',NULL,NULL),(367085,954848,6,'writer','written by',NULL),(367085,933191,7,'writer','written by',NULL),(367085,748037,8,'producer','producer',NULL),(367085,753526,9,'composer',NULL,NULL),(367089,680272,10,'composer',NULL,NULL),(367089,997240,1,'actor',NULL,'[\"Frank Berkman\"]'),(367089,1099,2,'actor',NULL,'[\"Bernard Berkman\"]'),(367089,1473,3,'actress',NULL,'[\"Joan Berkman\"]'),(367089,251986,4,'actor',NULL,'[\"Walt Berkman\"]'),(367089,876,5,'director',NULL,NULL),(367089,27572,6,'producer','producer',NULL),(367089,1231965,7,'producer','producer',NULL),(367089,1680555,8,'producer','producer',NULL),(367089,628226,9,'producer','producer',NULL),(367110,3392919,10,'writer','screenplay',NULL),(367110,451321,1,'actor',NULL,'[\"Mohan Bhargava\"]'),(367110,1539666,2,'actress',NULL,'[\"Gita\"]'),(367110,1584145,3,'actress',NULL,'[\"Kaveri amma\"]'),(367110,1587122,4,'actor',NULL,'[\"Nandan \'Chiku\'\"]'),(367110,332950,5,'director',NULL,NULL),(367110,1351784,6,'writer','story',NULL),(367110,1343477,7,'writer','screenplay',NULL),(367110,1342923,8,'writer','screenplay',NULL),(367110,1004422,9,'writer','screenplay',NULL),(367174,1429767,10,'writer','written by',NULL),(367174,437580,1,'actor',NULL,'[\"John Liu\"]'),(367174,504942,2,'actress',NULL,'[\"Eve Choi\"]'),(367174,155212,3,'actor',NULL,'[\"Dr. Hu\"]'),(367174,1575868,4,'actress',NULL,'[\"June\"]'),(367174,864775,5,'director',NULL,NULL),(367174,906413,6,'director',NULL,NULL),(367174,1445779,7,'writer','illustrated book',NULL),(367174,946883,8,'writer','written by',NULL),(367174,1104594,9,'writer','written by',NULL),(367177,85865,1,'actor',NULL,'[\"Happy Hooligan\"]'),(367177,692105,2,'director',NULL,NULL),(367177,1112850,3,'writer','comic strip',NULL),(367462,839904,10,'cinematographer',NULL,NULL),(367462,1420452,1,'actress',NULL,'[\"Hannah Everland\"]'),(367462,1422365,2,'actor',NULL,'[\"Henry Tidwell\"]'),(367462,39949,3,'actress',NULL,'[\"Catherine\"]'),(367462,1518752,4,'actress',NULL,'[\"Dierdre\"]'),(367462,354918,5,'director',NULL,NULL),(367462,1419259,6,'writer',NULL,NULL),(367462,77630,7,'producer','producer',NULL),(367462,251593,8,'producer','producer',NULL),(367462,1519201,9,'composer',NULL,NULL),(367479,1246087,10,'producer','producer',NULL),(367479,112,1,'actor',NULL,'[\"Max Burdett\"]'),(367479,161,2,'actress',NULL,'[\"Lola Cirillo\"]'),(367479,437,3,'actor',NULL,'[\"Stan Lloyd\"]'),(367479,332,4,'actor',NULL,'[\"Henri Mooré\"]'),(367479,711840,5,'director',NULL,NULL),(367479,1033788,6,'writer','story',NULL),(367479,742194,7,'writer','screenplay',NULL),(367479,4927,8,'producer','producer',NULL),(367479,827731,9,'producer','producer',NULL),(367594,5573,10,'producer','producer',NULL),(367594,136,1,'actor',NULL,'[\"Willy Wonka\"]'),(367594,383603,2,'actor',NULL,'[\"Charlie Bucket\"]'),(367594,446303,3,'actor',NULL,'[\"Grandpa Joe\"]'),(367594,307,4,'actress',NULL,'[\"Mrs. Bucket\"]'),(367594,318,5,'director',NULL,NULL),(367594,1094,6,'writer','book',NULL),(367594,41864,7,'writer','screenplay',NULL),(367594,340522,8,'producer','producer',NULL),(367594,650038,9,'producer','producer',NULL),(367631,588094,10,'production_designer',NULL,NULL),(367631,1246371,1,'actress',NULL,'[\"Amy\"]'),(367631,108287,2,'actress',NULL,'[\"Lucy Diamond\"]'),(367631,1226817,3,'actress',NULL,'[\"Dominique\"]'),(367631,728579,4,'actress',NULL,'[\"Janet\"]'),(367631,1286340,5,'director',NULL,NULL),(367631,467257,6,'producer','producer',NULL),(367631,818304,7,'producer','producer',NULL),(367631,4401,8,'composer',NULL,NULL),(367631,2470,9,'cinematographer','director of photography',NULL),(367859,5890504,10,'actor',NULL,'[\"Guigo Bolhinha\"]'),(367859,708698,1,'actor',NULL,'[\"André\"]'),(367859,495075,2,'actress',NULL,'[\"Sílvia\"]'),(367859,684840,3,'actress',NULL,'[\"Marinês\"]'),(367859,136690,4,'actor',NULL,'[\"Cardoso\"]'),(367859,299134,5,'director',NULL,NULL),(367859,785284,6,'cinematographer',NULL,NULL),(367859,39856,7,'editor',NULL,NULL),(367859,192128,8,'actor',NULL,'[\"Antunes\"]'),(367859,28067,9,'actor',NULL,'[\"Feitosa\"]'),(367882,550881,10,'producer','producer',NULL),(367882,148,1,'actor',NULL,'[\"Indiana Jones\"]'),(367882,949,2,'actress',NULL,'[\"Irina Spalko\"]'),(367882,479471,3,'actor',NULL,'[\"Mutt Williams\"]'),(367882,261,4,'actress',NULL,'[\"Marion Ravenwood\"]'),(367882,229,5,'director',NULL,NULL),(367882,462895,6,'writer','screenplay',NULL),(367882,184,7,'writer','story',NULL),(367882,622288,8,'writer','story',NULL),(367882,442241,9,'writer','characters',NULL),(367913,2694531,10,'producer','producer',NULL),(367913,757015,1,'actress',NULL,'[\"Kyoko Harase\"]'),(367913,639122,2,'actress',NULL,'[\"Tomoka Miura\"]'),(367913,394676,3,'actor',NULL,'[\"Noritaka Yamashita\"]'),(367913,1368557,4,'actress',NULL,'[\"Chiharu\"]'),(367913,1234345,5,'director',NULL,NULL),(367913,250755,6,'producer','producer',NULL),(367913,406772,7,'producer','producer',NULL),(367913,2275305,8,'producer','producer',NULL),(367913,3466039,9,'producer','producer',NULL),(367959,1011065,10,'composer',NULL,NULL),(367959,880484,1,'actor',NULL,'[\"Hannibal\"]'),(367959,406975,2,'actor',NULL,'[\"Grutas\"]'),(367959,84,3,'actress',NULL,'[\"Lady Murasaki\"]'),(367959,2049833,4,'actor',NULL,'[\"Hannibal 8yrs\"]'),(367959,916424,5,'director',NULL,NULL),(367959,365383,6,'writer','screenplay by',NULL),(367959,69893,7,'producer','producer',NULL),(367959,209569,8,'producer','producer',NULL),(367959,776646,9,'producer','producer',NULL),(368222,1254,1,'actor',NULL,'[\"Nick Murder\"]'),(368222,215,2,'actress',NULL,'[\"Kitty Kane\"]'),(368222,701,3,'actress',NULL,'[\"Tula\"]'),(368222,114,4,'actor',NULL,'[\"Angelo\"]'),(368222,1806,5,'director',NULL,NULL),(368222,6597,6,'producer','producer',NULL),(368222,827869,7,'cinematographer','director of photography',NULL),(368222,399523,8,'editor',NULL,NULL),(368222,952346,9,'production_designer',NULL,NULL),(368226,1382072,1,'actor',NULL,'[\"Johnny\"]'),(368226,1382799,2,'actress',NULL,'[\"Lisa\"]'),(368226,802995,3,'actor',NULL,'[\"Mark\"]'),(368226,1223979,4,'actor',NULL,'[\"Denny\"]'),(368226,587437,5,'composer',NULL,NULL),(368226,57729,6,'cinematographer','director of photography',NULL),(368226,153754,7,'editor',NULL,NULL),(368226,1002232,8,'production_designer',NULL,NULL),(368310,1434333,1,'self',NULL,'[\"Self\"]'),(368310,1439085,2,'self',NULL,'[\"Self\"]'),(368310,299990,3,'director',NULL,NULL),(368310,1165959,4,'producer','producer',NULL),(368310,943398,5,'producer','producer',NULL),(368310,3526,6,'composer',NULL,NULL),(368310,353248,7,'cinematographer',NULL,NULL),(368310,369368,8,'editor',NULL,NULL),(368310,863755,9,'editor',NULL,NULL),(368447,854403,10,'editor',NULL,NULL),(368447,244,1,'actress',NULL,'[\"Alice Hunt\"]'),(368447,458,2,'actor',NULL,'[\"Edward Walker\"]'),(368447,1618,3,'actor',NULL,'[\"Lucius Hunt\"]'),(368447,397171,4,'actress',NULL,'[\"Ivy Walker\"]'),(368447,796117,5,'director',NULL,NULL),(368447,580303,6,'producer','producer',NULL),(368447,748784,7,'producer','producer',NULL),(368447,6133,8,'composer',NULL,NULL),(368447,5683,9,'cinematographer','director of photography',NULL),(368563,1030706,10,'writer','adaptation',NULL),(368563,1264,1,'actress',NULL,'[\"Jess\"]'),(368563,1195855,2,'actor',NULL,'[\"Roman\"]'),(368563,484678,3,'actor',NULL,'[\"Ryan\"]'),(368563,637259,4,'actress',NULL,'[\"Casey\"]'),(368563,75150,5,'director',NULL,NULL),(368563,762217,6,'director',NULL,NULL),(368563,678104,7,'writer','screenplay',NULL),(368563,126500,8,'writer','screenplay Jungdok',NULL),(368563,1236649,9,'writer','screenplay Jungdok',NULL),(368658,6070,10,'composer',NULL,NULL),(368658,1082,1,'actor',NULL,'[\"Ned Kynaston\"]'),(368658,132,2,'actress',NULL,'[\"Maria Hughes\"]'),(368658,391,3,'actor',NULL,'[\"King Charles II\"]'),(368658,404332,4,'actor',NULL,'[\"Stage Manager\"]'),(368658,264236,5,'director',NULL,NULL),(368658,368774,6,'writer','play \"Compleat Female Stage Beauty\"',NULL),(368658,134,7,'producer','producer',NULL),(368658,1155511,8,'producer','producer',NULL),(368658,742772,9,'producer','producer',NULL),(368667,793687,10,'producer','producer',NULL),(368667,1586885,1,'actor',NULL,'[\"Octave\"]'),(368667,51939,2,'actor',NULL,'[\"Shep\"]'),(368667,632788,3,'director',NULL,NULL),(368667,3252786,4,'director',NULL,NULL),(368667,559535,5,'director','supervising director',NULL),(368667,1387613,6,'director','series director',NULL),(368667,1385432,7,'writer','written by',NULL),(368667,208878,8,'writer','written by',NULL),(368667,4198675,9,'producer','producer',NULL),(368709,605758,10,'editor',NULL,NULL),(368709,89217,1,'actor',NULL,'[\"Drew Baylor\"]'),(368709,379,2,'actress',NULL,'[\"Claire Colburn\"]'),(368709,215,3,'actress',NULL,'[\"Hollie Baylor\"]'),(368709,285,4,'actor',NULL,'[\"Phil Devoss\"]'),(368709,1081,5,'director',NULL,NULL),(368709,129,6,'producer','producer',NULL),(368709,906048,7,'producer','producer',NULL),(368709,933896,8,'composer',NULL,NULL),(368709,1799,9,'cinematographer','director of photography',NULL),(368794,882927,10,'producer','producer',NULL),(368794,288,1,'actor',NULL,'[\"Jack\",\"Pastor John\"]'),(368794,949,2,'actress',NULL,'[\"Jude\"]'),(368794,5132,3,'actor',NULL,'[\"Robbie\"]'),(368794,924210,4,'actor',NULL,'[\"Arthur\"]'),(368794,1331,5,'director',NULL,NULL),(368794,610219,6,'writer','screenplay',NULL),(368794,326415,7,'producer','producer',NULL),(368794,806189,8,'producer','producer',NULL),(368794,827726,9,'producer','producer',NULL),(368891,1469874,10,'writer','story',NULL),(368891,115,1,'actor',NULL,'[\"Benjamin Franklin Gates\"]'),(368891,1208167,2,'actress',NULL,'[\"Abigail Chase\"]'),(368891,58581,3,'actor',NULL,'[\"Riley Poole\"]'),(368891,293,4,'actor',NULL,'[\"Ian Howe\"]'),(368891,5509,5,'director',NULL,NULL),(368891,467942,6,'writer','screenplay',NULL),(368891,926727,7,'writer','screenplay',NULL),(368891,926729,8,'writer','screenplay',NULL),(368891,43233,9,'writer','story',NULL),(368909,1098137,10,'composer','composer',NULL),(368909,1388074,1,'actor',NULL,'[\"Ting\"]'),(368909,1002207,2,'actor',NULL,'[\"Humlae\",\"George\"]'),(368909,1438146,3,'actress',NULL,'[\"Muay Lek\"]'),(368909,690422,4,'actor',NULL,'[\"Komtuan\"]'),(368909,1272773,5,'director',NULL,NULL),(368909,1437277,6,'writer','story',NULL),(368909,1847965,7,'writer','screenplay',NULL),(368909,3094145,8,'producer','producer',NULL),(368909,1438009,9,'producer','producer',NULL),(368933,1365,10,'producer','producer',NULL),(368933,4266,1,'actress',NULL,'[\"Mia Thermopolis\"]'),(368933,89485,2,'actor',NULL,'[\"Andrew Jacoby\"]'),(368933,267,3,'actress',NULL,'[\"Queen Clarisse Renaldi\"]'),(368933,1185,4,'actor',NULL,'[\"Joe\"]'),(368933,5190,5,'director',NULL,NULL),(368933,127690,6,'writer','characters',NULL),(368933,920859,7,'writer','story',NULL),(368933,722274,8,'writer','story',NULL),(368933,153744,9,'producer','producer',NULL),(368975,141677,10,'cinematographer','director of photography',NULL),(368975,891786,1,'actress',NULL,'[\"Julie\"]'),(368975,95561,2,'actress',NULL,'[\"Hannah\"]'),(368975,174021,3,'actress',NULL,'[\"Farrah\"]'),(368975,528331,4,'actress',NULL,'[\"Gabby\"]'),(368975,638271,5,'director',NULL,NULL),(368975,68183,6,'writer','written by',NULL),(368975,178341,7,'producer','producer',NULL),(368975,918482,8,'producer','producer',NULL),(368975,527091,9,'composer',NULL,NULL),(369053,682503,10,'cinematographer','director of photography',NULL),(369053,929489,1,'actor',NULL,'[\"James Manning\"]'),(369053,1833,2,'actress',NULL,'[\"Anne Manning\"]'),(369053,635820,3,'actress',NULL,'[\"Priscilla\"]'),(369053,912353,4,'actor',NULL,'[\"Simon\"]'),(369053,271501,5,'director',NULL,NULL),(369053,49587,6,'writer','based on the novel by \"A Way Through the Wood\"',NULL),(369053,164626,7,'producer','producer',NULL),(369053,1384503,8,'producer','producer',NULL),(369053,822315,9,'composer',NULL,NULL),(369339,131700,10,'cinematographer','director of photography',NULL),(369339,129,1,'actor',NULL,'[\"Vincent\"]'),(369339,4937,2,'actor',NULL,'[\"Max\"]'),(369339,586,3,'actress',NULL,'[\"Annie\"]'),(369339,749263,4,'actor',NULL,'[\"Fanning\"]'),(369339,520,5,'director',NULL,NULL),(369339,64181,6,'writer','written by',NULL),(369339,724641,7,'producer','producer',NULL),(369339,6133,8,'composer',NULL,NULL),(369339,66244,9,'cinematographer','director of photography',NULL),(369436,53388,10,'producer','producer',NULL),(369436,702,1,'actress',NULL,'[\"Kate\"]'),(369436,681,2,'actor',NULL,'[\"Brad\"]'),(369436,5460,3,'actress',NULL,'[\"Marilyn\"]'),(369436,380,4,'actor',NULL,'[\"Howard\"]'),(369436,1164861,5,'director',NULL,NULL),(369436,20820,6,'writer','screenplay',NULL),(369436,933128,7,'writer','screenplay',NULL),(369436,524190,8,'writer','screenplay',NULL),(369436,601859,9,'writer','screenplay',NULL),(369441,69547,10,'writer',NULL,NULL),(369441,120,1,'actor',NULL,'[\"Dick Harper\"]'),(369441,495,2,'actress',NULL,'[\"Jane Harper\"]'),(369441,285,3,'actor',NULL,'[\"Jack McCallister\"]'),(369441,420955,4,'actor',NULL,'[\"Frank Bascombe\"]'),(369441,661751,5,'director',NULL,NULL),(369441,31976,6,'writer','screenplay',NULL),(369441,831557,7,'writer','screenplay',NULL),(369441,301416,8,'writer','story',NULL),(369441,318429,9,'writer',NULL,NULL),(369610,189777,10,'producer','producer',NULL),(369610,695435,1,'actor',NULL,'[\"Owen Grady\"]'),(369610,397171,2,'actress',NULL,'[\"Claire Dearing\"]'),(369610,1339223,3,'actor',NULL,'[\"Gray\"]'),(369610,339460,4,'actress',NULL,'[\"Karen\"]'),(369610,1119880,5,'director',NULL,NULL),(369610,415425,6,'writer','screenplay by',NULL),(369610,798646,7,'writer','screenplay by',NULL),(369610,2081046,8,'writer','screenplay by',NULL),(369610,341,9,'writer','based on the characters created by',NULL),(369672,489059,10,'composer',NULL,NULL),(369672,424060,1,'actress',NULL,'[\"Pursy Will\"]'),(369672,237,2,'actor',NULL,'[\"Bobby Long\"]'),(369672,532683,3,'actor',NULL,'[\"Lawson Pines\"]'),(369672,679,4,'actress',NULL,'[\"Georgianna\"]'),(369672,300015,5,'director',NULL,NULL),(369672,1754512,6,'writer','novel \"Off Magazine Street\"',NULL),(369672,484123,7,'producer','producer',NULL),(369672,589158,8,'producer','producer',NULL),(369672,946441,9,'producer','producer',NULL),(369702,849,1,'actor',NULL,'[\"Ramón Sampedro\"]'),(369702,749104,2,'actress',NULL,'[\"Julia\"]'),(369702,240318,3,'actress',NULL,'[\"Rosa\"]'),(369702,729345,4,'actress',NULL,'[\"Manuela\"]'),(369702,24622,5,'director',NULL,NULL),(369702,317834,6,'writer','screenplay',NULL),(369702,100559,7,'producer','producer',NULL),(369702,13761,8,'cinematographer','director of photography',NULL),(369702,273414,9,'production_designer',NULL,NULL),(369735,628056,10,'composer',NULL,NULL),(369735,182,1,'actress',NULL,'[\"Charlie\"]'),(369735,890232,2,'actor',NULL,'[\"Dr. Kevin Fields\"]'),(369735,404,3,'actress',NULL,'[\"Viola Fields\"]'),(369735,843100,4,'actress',NULL,'[\"Ruby\"]'),(369735,525659,5,'director',NULL,NULL),(369735,462525,6,'writer','written by',NULL),(369735,70454,7,'producer','producer',NULL),(369735,818940,8,'producer','producer',NULL),(369735,918463,9,'producer','producer',NULL),(369994,92575,10,'cinematographer',NULL,NULL),(369994,781238,1,'actress',NULL,'[\"Jerri Blank\"]'),(369994,170306,2,'actor',NULL,'[\"Chuck Noblet\"]'),(369994,227576,3,'actor',NULL,'[\"Geoffrey Jellineck\"]'),(369994,2638313,4,'actor',NULL,'[\"Bus Driver\"]'),(369994,745861,5,'writer','series Strangers with Candy',NULL),(369994,202982,6,'producer','producer',NULL),(369994,731396,7,'producer','producer',NULL),(369994,2325476,8,'producer','producer',NULL),(369994,953616,9,'composer',NULL,NULL),(370032,947317,10,'editor',NULL,NULL),(370032,170,1,'actress',NULL,'[\"Violet Song Jat Shariff\"]'),(370032,1080974,2,'actor',NULL,'[\"Six\"]'),(370032,157915,3,'actor',NULL,'[\"Ferdinand Daxus\"]'),(370032,1669663,4,'actor',NULL,'[\"Nerva\"]'),(370032,934483,5,'director',NULL,NULL),(370032,49689,6,'producer','producer',NULL),(370032,1298625,7,'producer','producer',NULL),(370032,46004,8,'composer',NULL,NULL),(370032,938939,9,'cinematographer','director of photography',NULL),(370263,140826,10,'producer','producer',NULL),(370263,5125,1,'actress',NULL,'[\"Alexa Woods\"]'),(370263,448,2,'actor',NULL,'[\"Charles Bishop Weyland\"]'),(370263,100556,3,'actor',NULL,'[\"Sebastian de Rosa\"]'),(370263,1971,4,'actor',NULL,'[\"Graeme Miller\"]'),(370263,27271,5,'director',NULL,NULL),(370263,639321,6,'writer','Alien characters',NULL),(370263,795953,7,'writer','Alien characters',NULL),(370263,859029,8,'writer','Predator characters',NULL),(370263,859049,9,'writer','Predator characters',NULL),(370754,1400299,1,'actress',NULL,'[\"Mikako Nagamine\"]'),(370754,1396121,2,'actor',NULL,'[\"Noboru Terao (original version)\"]'),(370754,616142,3,'actress',NULL,'[\"Mikako Nagamine (\'seiyuu\' version)\"]'),(370754,840555,4,'actor',NULL,'[\"Noboru Terao (\'seiyuu\' version)\"]'),(370754,1672344,5,'producer','producer',NULL),(370754,1399356,6,'composer',NULL,NULL),(370919,1393878,10,'production_designer',NULL,NULL),(370919,315195,1,'actor',NULL,'[\"Álmos\"]'),(370919,350551,2,'actor',NULL,'[\"Elõd\"]'),(370919,1375204,3,'actor',NULL,'[\"Ond\"]'),(370919,785031,4,'actor',NULL,'[\"Kond\"]'),(370919,1089985,5,'director',NULL,NULL),(370919,1393806,6,'writer',NULL,NULL),(370919,1105392,7,'composer',NULL,NULL),(370919,688400,8,'cinematographer',NULL,NULL),(370919,1547634,9,'editor',NULL,NULL),(370986,1310112,10,'composer',NULL,NULL),(370986,1227232,1,'actor',NULL,'[\"Brian\"]'),(370986,330687,2,'actor',NULL,'[\"Neil\"]'),(370986,223,3,'actress',NULL,'[\"Mrs. McCormick\"]'),(370986,255175,4,'actor',NULL,'[\"Neil (age 8)\"]'),(370986,777,5,'director',NULL,NULL),(370986,1721077,6,'writer','novel',NULL),(370986,506664,7,'producer','producer',NULL),(370986,803826,8,'producer','producer',NULL),(370986,118912,9,'composer',NULL,NULL),(371246,548943,10,'editor',NULL,NULL),(371246,1191,1,'actor',NULL,'[\"John Clasky\"]'),(371246,495,2,'actress',NULL,'[\"Deborah Clasky\"]'),(371246,891895,3,'actress',NULL,'[\"Flor\"]'),(371246,1458,4,'actress',NULL,'[\"Evelyn\"]'),(371246,985,5,'director',NULL,NULL),(371246,30572,6,'producer','producer',NULL),(371246,757017,7,'producer','producer',NULL),(371246,1877,8,'composer',NULL,NULL),(371246,5868,9,'cinematographer',NULL,NULL),(371257,1449207,10,'composer',NULL,NULL),(371257,191,1,'actor',NULL,'[\"Sam Foster\"]'),(371257,915208,2,'actress',NULL,'[\"Lila Culpepper\"]'),(371257,331516,3,'actor',NULL,'[\"Henry Letham\"]'),(371257,123632,4,'actress',NULL,'[\"Mrs. Letham\"]'),(371257,286975,5,'director',NULL,NULL),(371257,1125275,6,'writer','written by',NULL),(371257,465740,7,'producer','producer',NULL),(371257,1396395,8,'producer','producer',NULL),(371257,586969,9,'producer','producer',NULL),(371606,298427,10,'producer','producer',NULL),(371606,103785,1,'actor',NULL,'[\"Chicken Little\"]'),(371606,349,2,'actress',NULL,'[\"Abby Mallard\"]'),(371606,5190,3,'actor',NULL,'[\"Buck Cluck\"]'),(371606,461455,4,'actor',NULL,'[\"Mayor Turkey Lurkey\"]'),(371606,227540,5,'director',NULL,NULL),(371606,448208,6,'writer','story by',NULL),(371606,70368,7,'writer','screenplay by',NULL),(371606,1943855,8,'writer','screenplay by',NULL),(371606,1201710,9,'writer','screenplay by',NULL),(371724,322802,10,'producer','producer',NULL),(371724,293509,1,'actor',NULL,'[\"Arthur Dent\"]'),(371724,80049,2,'actor',NULL,'[\"Ford Prefect\"]'),(371724,5377,3,'actor',NULL,'[\"Zaphod Beeblebrox\"]'),(371724,221046,4,'actress',NULL,'[\"Trillian\"]'),(371724,1134029,5,'director',NULL,NULL),(371724,10930,6,'writer','book',NULL),(371724,456732,7,'writer','screenplay',NULL),(371724,53388,8,'producer','producer',NULL),(371724,83696,9,'producer','producer',NULL),(371746,498278,10,'writer','characters',NULL),(371746,375,1,'actor',NULL,'[\"Tony Stark\"]'),(371746,569,2,'actress',NULL,'[\"Pepper Potts\"]'),(371746,5024,3,'actor',NULL,'[\"Rhodey\"]'),(371746,313,4,'actor',NULL,'[\"Obadiah Stane\"]'),(371746,269463,5,'director',NULL,NULL),(371746,1318843,6,'writer','screenplay',NULL),(371746,1319757,7,'writer','screenplay',NULL),(371746,1436466,8,'writer','screenplay',NULL),(371746,391344,9,'writer','screenplay',NULL),(371823,1982688,10,'producer','producer',NULL),(371823,21656,1,'actor',NULL,'[\"Mickey Mouse\"]'),(371823,30615,2,'actor',NULL,'[\"Donald Duck\"]'),(371823,267724,3,'actor',NULL,'[\"Goofy\",\"Pluto\",\"Additional Voices\"]'),(371823,853122,4,'actress',NULL,'[\"Minnie\"]'),(371823,177015,5,'director',NULL,NULL),(371823,818746,6,'writer','screenplay',NULL),(371823,262693,7,'writer','screenplay',NULL),(371823,241416,8,'writer','novel \"The Three Musketeers\"',NULL),(371823,455497,9,'writer','written by',NULL),(371835,674520,10,'cinematographer',NULL,NULL),(371835,648920,1,'actor',NULL,'[\"Wes Merritt\"]'),(371835,680983,2,'actor',NULL,'[\"Natalie Merritt\"]'),(371835,356590,3,'actress',NULL,'[\"Brenda\"]'),(371835,4309,4,'actress',NULL,'[\"Mrs. Ashboro\"]'),(371835,564260,5,'director',NULL,NULL),(371835,450543,6,'writer','story',NULL),(371835,174673,7,'writer','teleplay',NULL),(371835,582978,8,'producer','producer',NULL),(371835,137459,9,'composer',NULL,NULL),(372122,396734,10,'editor',NULL,NULL),(372122,156314,1,'actor',NULL,'[\"Adam Bernstein\"]'),(372122,315236,2,'actor',NULL,'[\"Steve Hicks\"]'),(372122,205,3,'actress',NULL,'[\"Rhonda\"]'),(372122,441592,4,'actor',NULL,'[\"Michael\"]'),(372122,1618324,5,'producer','producer',NULL),(372122,862538,6,'producer','producer',NULL),(372122,1028291,7,'composer',NULL,NULL),(372122,58458,8,'cinematographer','director of photography',NULL),(372122,699456,9,'cinematographer',NULL,NULL),(372183,761296,10,'producer','producer',NULL),(372183,354,1,'actor',NULL,'[\"Jason Bourne\"]'),(372183,4376,2,'actress',NULL,'[\"Marie\"]'),(372183,260,3,'actress',NULL,'[\"Pamela Landy\"]'),(372183,4051,4,'actor',NULL,'[\"Ward Abbott\"]'),(372183,339030,5,'director',NULL,NULL),(372183,524924,6,'writer','novel',NULL),(372183,6904,7,'writer','screenplay',NULL),(372183,189777,8,'producer','producer',NULL),(372183,550881,9,'producer','producer',NULL),(372334,255440,10,'editor',NULL,NULL),(372334,141,1,'actor',NULL,'[\"Tom Warshaw\"]'),(372334,495,2,'actress',NULL,'[\"Katherine Warshaw\"]'),(372334,245,3,'actor',NULL,'[\"Pappass\"]'),(372334,947338,4,'actor',NULL,'[\"Tommy Warshaw\"]'),(372334,507669,5,'producer','producer',NULL),(372334,742772,6,'producer','producer',NULL),(372334,946441,7,'producer','producer',NULL),(372334,952944,8,'composer',NULL,NULL),(372334,152469,9,'cinematographer','director of photography',NULL),(372532,1401827,10,'producer','producer',NULL),(372532,551,1,'actor',NULL,'[\"Nick Mercer\"]'),(372532,5226,2,'actress',NULL,'[\"Kat Ellis\"]'),(372532,202603,3,'actor',NULL,'[\"Edward Fletcher-Wooten\"]'),(372532,10736,4,'actress',NULL,'[\"Amy\"]'),(372532,453270,5,'director',NULL,NULL),(372532,1814871,6,'writer','book \"Asking for Trouble\"',NULL),(372532,1401416,7,'writer','screenplay',NULL),(372532,70566,8,'producer','producer',NULL),(372532,112189,9,'producer','producer',NULL),(372588,241374,10,'production_designer',NULL,NULL),(372588,5295,1,'actor',NULL,'[\"Gary Johnston\",\"Joe\",\"Kim Jong Il\"]'),(372588,1778,2,'actor',NULL,'[\"Chris\",\"George Clooney\",\"Danny Glover\"]'),(372588,1224826,3,'actress',NULL,'[\"Various\"]'),(372588,588766,4,'actress',NULL,'[\"Lisa\"]'),(372588,103702,5,'writer','written by',NULL),(372588,748784,6,'producer','producer',NULL),(372588,4581,7,'composer',NULL,NULL),(372588,691084,8,'cinematographer','director of photography',NULL),(372588,901113,9,'editor',NULL,NULL),(372784,746273,10,'producer','producer',NULL),(372784,288,1,'actor',NULL,'[\"Bruce Wayne\",\"Batman\"]'),(372784,323,2,'actor',NULL,'[\"Alfred\"]'),(372784,913822,3,'actor',NULL,'[\"Ra\'s Al Ghul\"]'),(372784,553,4,'actor',NULL,'[\"Ducard\"]'),(372784,634240,5,'director',NULL,NULL),(372784,4170,6,'writer','characters',NULL),(372784,275286,7,'writer','story',NULL),(372784,290581,8,'producer','producer',NULL),(372784,650038,9,'producer','producer',NULL),(372832,924607,10,'composer',NULL,NULL),(372832,213339,1,'actress',NULL,'[\"Sgt. Cordero\"]'),(372832,262026,2,'actor',NULL,'[\"Lt. York\"]'),(372832,2606029,3,'actor',NULL,'[\"Power House Supervisor\"]'),(372832,583951,4,'actor',NULL,'[\"Blind Indian\"]'),(372832,552565,5,'director',NULL,NULL),(372832,47264,6,'writer','written by',NULL),(372832,37721,7,'producer','line producer',NULL),(372832,650361,8,'producer','producer',NULL),(372832,759363,9,'producer','producer',NULL),(373051,4927,10,'producer','producer',NULL),(373051,409,1,'actor',NULL,'[\"Trevor Anderson\"]'),(373051,1242688,2,'actor',NULL,'[\"Sean Anderson\"]'),(373051,1715194,3,'actress',NULL,'[\"Hannah Ásgeirsson\"]'),(373051,1024878,4,'actor',NULL,'[\"Professor Alan Kitzens\"]'),(373051,108094,5,'director',NULL,NULL),(373051,919115,6,'writer','screenplay',NULL),(373051,280814,7,'writer','screenplay',NULL),(373051,505662,8,'writer','screenplay',NULL),(373051,894523,9,'writer','novel \"Journey to the Center of the Earth\"',NULL),(373074,939296,10,'composer',NULL,NULL),(373074,159507,1,'actor',NULL,'[\"Sing\"]'),(373074,950757,2,'actor',NULL,'[\"Landlord\"]'),(373074,1228408,3,'actress',NULL,'[\"Landlady\"]'),(373074,398760,4,'actor',NULL,'[\"The Beast\"]'),(373074,874683,5,'writer','written by',NULL),(373074,403230,6,'writer','written by',NULL),(373074,151013,7,'writer','written by',NULL),(373074,161045,8,'producer','producer',NULL),(373074,311508,9,'producer','producer',NULL),(373450,794156,10,'editor',NULL,NULL),(373450,102,1,'actor',NULL,'[\"Lanny\"]'),(373450,147,2,'actor',NULL,'[\"Vince\"]'),(373450,517844,3,'actress',NULL,'[\"Karen\"]'),(373450,371342,4,'actor',NULL,'[\"Reuben\"]'),(373450,382,5,'director',NULL,NULL),(373450,392035,6,'writer','novel',NULL),(373450,487190,7,'producer','producer',NULL),(373450,2217,8,'composer',NULL,NULL),(373450,765477,9,'cinematographer','director of photography',NULL),(373469,656199,10,'editor',NULL,NULL),(373469,375,1,'actor',NULL,'[\"Harry Lockhart\"]'),(373469,174,2,'actor',NULL,'[\"Gay Perry\"]'),(373469,1157358,3,'actress',NULL,'[\"Harmony Faith Lane\"]'),(373469,929,4,'actor',NULL,'[\"Harlan Dexter\"]'),(373469,948,5,'director',NULL,NULL),(373469,356539,6,'writer','novel \"Bodies Are Where You Find Them\"',NULL),(373469,5428,7,'producer','producer',NULL),(373469,653211,8,'composer',NULL,NULL),(373469,4344,9,'cinematographer','director of photography',NULL),(373883,61045,10,'composer',NULL,NULL),(373883,174021,1,'actress',NULL,'[\"Laurie Strode\"]'),(373883,532,2,'actor',NULL,'[\"Dr. Samuel Loomis\"]'),(373883,541932,3,'actor',NULL,'[\"Michael Myers\"]'),(373883,374,4,'actor',NULL,'[\"Sheriff Lee Brackett\"]'),(373883,957772,5,'director',NULL,NULL),(373883,118,6,'writer',NULL,NULL),(373883,384185,7,'writer',NULL,NULL),(373883,15443,8,'producer','producer',NULL),(373883,332308,9,'producer','producer',NULL),(373889,650038,10,'producer','producer',NULL),(373889,705356,1,'actor',NULL,'[\"Harry Potter\"]'),(373889,914612,2,'actress',NULL,'[\"Hermione Granger\"]'),(373889,342488,3,'actor',NULL,'[\"Ron Weasley\"]'),(373889,322407,4,'actor',NULL,'[\"Alastor \'Mad-Eye\' Moody\"]'),(373889,946734,5,'director',NULL,NULL),(373889,325533,6,'writer','screenplay',NULL),(373889,746830,7,'writer','novel',NULL),(373889,57655,8,'producer','producer',NULL),(373889,382268,9,'producer','producer',NULL),(373981,1547634,10,'editor',NULL,NULL),(373981,190800,1,'actor',NULL,'[\"Bulcsú\"]'),(373981,1036301,2,'actress',NULL,'[\"Szofi\"]'),(373981,610904,3,'actor',NULL,'[\"Professor\"]'),(373981,683950,4,'actor',NULL,'[\"Muki\"]'),(373981,30735,5,'director',NULL,NULL),(373981,12182,6,'writer','writer',NULL),(373981,404505,7,'producer','producer',NULL),(373981,1550957,8,'composer',NULL,NULL),(373981,655822,9,'cinematographer',NULL,NULL),(374102,752436,1,'actress',NULL,'[\"Susan Watkins\"]'),(374102,1047403,2,'actor',NULL,'[\"Daniel Kintner\"]'),(374102,825627,3,'actor',NULL,'[\"Seth\"]'),(374102,1677525,4,'actor',NULL,'[\"Davis\"]'),(374102,448900,5,'director',NULL,NULL),(374102,490582,6,'producer','producer',NULL),(374102,6251,7,'composer',NULL,NULL),(374180,1091125,10,'composer',NULL,NULL),(374180,1696,1,'actor',NULL,'[\"Manuel Romasanta\"]'),(374180,665235,2,'actress',NULL,'[\"Bárbara\"]'),(374180,788767,3,'actor',NULL,'[\"Antonio\"]'),(374180,685038,4,'actor',NULL,'[\"District Attorney Luciano de la Bastida\"]'),(374180,687042,5,'director',NULL,NULL),(374180,1623470,6,'writer','story',NULL),(374180,1177703,7,'writer','screenplay',NULL),(374180,1157609,8,'writer','screenplay',NULL),(374180,273327,9,'producer','executive producer',NULL),(374536,926824,10,'producer','producer',NULL),(374536,173,1,'actress',NULL,'[\"Isabel Bigelow\",\"Samantha\"]'),(374536,2071,2,'actor',NULL,'[\"Jack Wyatt\",\"Darrin\"]'),(374536,511,3,'actress',NULL,'[\"Iris Smythson\",\"Endora\"]'),(374536,323,4,'actor',NULL,'[\"Nigel Bigelow\"]'),(374536,1188,5,'director',NULL,NULL),(374536,258286,6,'writer','written by',NULL),(374536,757268,7,'writer','television series',NULL),(374536,279651,8,'producer','producer',NULL),(374536,1508,9,'producer','producer',NULL),(374546,1104118,1,'actor',NULL,'[\"Adult Monk\"]'),(374546,1230598,2,'actor',NULL,'[\"Old Monk\"]'),(374546,1414385,3,'actor',NULL,'[\"Child Monk\"]'),(374546,1018275,4,'actor',NULL,'[\"Young Adult Monk\"]'),(374546,498231,5,'producer','producer',NULL),(374546,1564702,6,'composer',NULL,NULL),(374546,1193723,7,'cinematographer',NULL,NULL),(374546,644898,8,'production_designer',NULL,NULL),(374900,1067825,10,'composer',NULL,NULL),(374900,1417647,1,'actor',NULL,'[\"Napoleon Dynamite\"]'),(374900,708293,2,'actor',NULL,'[\"Pedro\"]'),(374900,340973,3,'actor',NULL,'[\"Uncle Rico\"]'),(374900,1088052,4,'actor',NULL,'[\"Kip\"]'),(374900,381478,5,'director',NULL,NULL),(374900,1415801,6,'writer','written by',NULL),(374900,1418538,7,'producer','executive producer',NULL),(374900,1365515,8,'producer','producer',NULL),(374900,1414749,9,'producer','producer',NULL),(375063,3659,10,'cinematographer','director of photography',NULL),(375063,316079,1,'actor',NULL,'[\"Miles\"]'),(375063,2006,2,'actor',NULL,'[\"Jack\"]'),(375063,515,3,'actress',NULL,'[\"Maya\"]'),(375063,644897,4,'actress',NULL,'[\"Stephanie\"]'),(375063,668247,5,'director',NULL,NULL),(375063,681914,6,'writer','novel',NULL),(375063,852591,7,'writer','screenplay',NULL),(375063,518757,8,'producer','producer',NULL),(375063,448843,9,'composer',NULL,NULL),(375210,3372,10,'cinematographer','director of photography',NULL),(375210,474,1,'actor',NULL,'[\"Jonathan Rivers\"]'),(375210,679,2,'actress',NULL,'[\"Sarah Tate\"]'),(375210,573862,3,'actor',NULL,'[\"Raymond Price\"]'),(375210,921979,4,'actress',NULL,'[\"Anna Rivers\"]'),(375210,768249,5,'director',NULL,NULL),(375210,425894,6,'writer','written by',NULL),(375210,112189,7,'producer','producer',NULL),(375210,932144,8,'producer','producer',NULL),(375210,284001,9,'composer',NULL,NULL),(375233,1189315,10,'editor',NULL,NULL),(375233,1708637,1,'actress',NULL,'[\"Iris\"]'),(375233,1708683,2,'actress',NULL,'[\"Alice\"]'),(375233,1708832,3,'actress',NULL,'[\"Bianca\"]'),(375233,182839,4,'actress',NULL,'[\"Mademoiselle Eva\"]'),(375233,352968,5,'director',NULL,NULL),(375233,917149,6,'writer','novella \"Mine-Haha\"',NULL),(375233,811773,7,'producer','producer',NULL),(375233,1707408,8,'composer',NULL,NULL),(375233,213424,9,'cinematographer',NULL,NULL),(375568,653211,10,'composer',NULL,NULL),(375568,383603,1,'actor',NULL,'[\"Astro\",\"Toby\"]'),(375568,115,2,'actor',NULL,'[\"Dr. Tenma\"]'),(375568,68338,3,'actress',NULL,'[\"Cora\"]'),(375568,234,4,'actress',NULL,'[\"\'Our Friends\' Narrator\"]'),(375568,101047,5,'director',NULL,NULL),(375568,856804,6,'writer','manga',NULL),(375568,365390,7,'writer','written by',NULL),(375568,103595,8,'writer','additional story material',NULL),(375568,1257214,9,'producer','producer',NULL),(375679,6142,10,'composer',NULL,NULL),(375679,332,1,'actor',NULL,'[\"Graham\"]'),(375679,113,2,'actress',NULL,'[\"Jean\"]'),(375679,628601,3,'actress',NULL,'[\"Christine\"]'),(375679,37410,4,'actress',NULL,'[\"Elizabeth\"]'),(375679,353673,5,'director',NULL,NULL),(375679,604263,6,'writer','screenplay',NULL),(375679,365070,7,'producer','producer',NULL),(375679,776072,8,'producer','producer',NULL),(375679,946441,9,'producer','producer',NULL),(375785,58933,10,'cinematographer',NULL,NULL),(375785,1287,1,'actress',NULL,'[\"Gray Baldwin\"]'),(375785,146915,2,'actor',NULL,'[\"Sam Baldwin\"]'),(375785,5256,3,'actress',NULL,'[\"Charlie Kelsey\"]'),(375785,788340,4,'actress',NULL,'[\"Carrie\"]'),(375785,1419060,5,'director',NULL,NULL),(375785,4132,6,'producer','producer',NULL),(375785,379339,7,'producer','producer',NULL),(375785,946441,8,'producer','producer',NULL),(375785,390867,9,'composer',NULL,NULL),(375912,314713,10,'composer',NULL,NULL),(375912,185819,1,'actor',NULL,'[\"XXXX\"]'),(375912,1092227,2,'actress',NULL,'[\"Tammy\"]'),(375912,2091,3,'actor',NULL,'[\"Eddie Temple\"]'),(375912,362766,4,'actor',NULL,'[\"Clarkie\"]'),(375912,891216,5,'director',NULL,NULL),(375912,1129753,6,'writer','screenplay',NULL),(375912,92061,7,'producer','producer',NULL),(375912,717230,8,'producer','producer',NULL),(375912,1011065,9,'composer',NULL,NULL),(376078,2876365,1,'actress',NULL,NULL),(376078,1249,2,'actress',NULL,NULL),(376078,2876294,3,'actress',NULL,NULL),(376078,3238906,4,'actress',NULL,'[\"Amazon woman\"]'),(376078,900752,5,'director',NULL,NULL),(376078,70216,6,'composer',NULL,NULL),(376078,586379,7,'composer',NULL,NULL),(376078,2412679,8,'editor',NULL,NULL),(376136,470420,10,'producer','producer',NULL),(376136,136,1,'actor',NULL,'[\"Kemp\"]'),(376136,610,2,'actor',NULL,'[\"Moberg\"]'),(376136,1173,3,'actor',NULL,'[\"Sanderson\"]'),(376136,728346,4,'actor',NULL,'[\"Sala\"]'),(376136,732430,5,'director',NULL,NULL),(376136,860219,6,'writer','novel',NULL),(376136,218259,7,'producer','producer',NULL),(376136,2593874,8,'producer','producer',NULL),(376136,454752,9,'producer','producer',NULL),(376263,192608,10,'producer','producer',NULL),(376263,5342,1,'actor',NULL,'[\"Archie\"]'),(376263,820660,2,'actor',NULL,'[\"Charlie\"]'),(376263,624508,3,'actor',NULL,'[\"Rafael\"]'),(376263,6379380,4,'actor',NULL,'[\"Bally Talker\"]'),(376263,1427844,5,'director',NULL,NULL),(376263,454242,6,'writer','written by',NULL),(376263,1419558,7,'writer','written by',NULL),(376263,74851,8,'producer','producer',NULL),(376263,626002,9,'producer','producer',NULL),(376541,89182,10,'editor',NULL,NULL),(376541,204,1,'actress',NULL,'[\"Alice\"]'),(376541,179,2,'actor',NULL,'[\"Dan\"]'),(376541,654110,3,'actor',NULL,'[\"Larry\"]'),(376541,210,4,'actress',NULL,'[\"Anna\"]'),(376541,1566,5,'director',NULL,NULL),(376541,544999,6,'writer','play',NULL),(376541,111225,7,'producer','producer',NULL),(376541,130492,8,'producer','producer',NULL),(376541,3552,9,'cinematographer',NULL,NULL),(376994,3515,10,'producer','producer',NULL),(376994,1772,1,'actor',NULL,'[\"Charles Xavier\",\"Professor X\"]'),(376994,413168,2,'actor',NULL,'[\"Logan\",\"Wolverine\"]'),(376994,932,3,'actress',NULL,'[\"Ororo Munroe\",\"Storm\"]'),(376994,463,4,'actress',NULL,'[\"Jean Grey\",\"Phoenix\"]'),(376994,711840,5,'director',NULL,NULL),(376994,1334526,6,'writer','written by',NULL),(376994,672015,7,'writer','written by',NULL),(376994,32696,8,'producer','producer',NULL),(376994,795682,9,'producer','producer',NULL),(377062,89614,10,'producer','producer',NULL),(377062,598,1,'actor',NULL,'[\"Frank Towns\"]'),(377062,1584,2,'actress',NULL,'[\"Kelly\"]'),(377062,610,3,'actor',NULL,'[\"Elliott\"]'),(377062,879085,4,'actor',NULL,'[\"AJ\"]'),(377062,601382,5,'director',NULL,NULL),(377062,375355,6,'writer',NULL,NULL),(377062,291082,7,'writer','screenplay',NULL),(377062,122653,8,'writer','screenplay',NULL),(377062,17703,9,'producer','producer',NULL),(377084,381511,10,'composer',NULL,NULL),(377084,1132,1,'actress',NULL,'[\"Ursula\"]'),(377084,1749,2,'actress',NULL,'[\"Janet\"]'),(377084,117709,3,'actor',NULL,'[\"Andrea\"]'),(377084,428086,4,'actor',NULL,'[\"Jan Pendered\"]'),(377084,1097,5,'director',NULL,NULL),(377084,516810,6,'writer','short story',NULL),(377084,1353945,7,'producer','producer',NULL),(377084,439563,8,'producer','producer',NULL),(377084,694252,9,'producer','producer',NULL),(377092,108629,10,'editor',NULL,NULL),(377092,517820,1,'actress',NULL,'[\"Cady Heron\"]'),(377092,1057932,2,'actor',NULL,'[\"Aaron Samuels\"]'),(377092,1046097,3,'actress',NULL,'[\"Regina George\"]'),(377092,275486,4,'actress',NULL,'[\"Ms. Norbury\"]'),(377092,914132,5,'director',NULL,NULL),(377092,1577281,6,'writer','book \"Queen Bees and Wannabes\"',NULL),(377092,584427,7,'producer','producer',NULL),(377092,448843,8,'composer',NULL,NULL),(377092,645401,9,'cinematographer',NULL,NULL),(377094,1429823,1,'actor',NULL,'[\"Mamadi\"]'),(377094,707466,2,'actor',NULL,'[\"Franck\"]'),(377094,745993,3,'actress',NULL,'[\"Prostituee Parking\"]'),(377094,1429311,4,'actor',NULL,'[\"Dealer 1\"]'),(377094,754162,5,'director',NULL,NULL),(377094,501022,6,'composer',NULL,NULL),(377094,368499,7,'cinematographer',NULL,NULL),(377094,1391139,8,'editor',NULL,NULL),(377094,469073,9,'production_designer',NULL,NULL),(377107,654077,10,'producer','producer',NULL),(377107,569,1,'actress',NULL,'[\"Catherine\"]'),(377107,164,2,'actor',NULL,'[\"Robert\"]'),(377107,204706,3,'actress',NULL,'[\"Claire\"]'),(377107,350453,4,'actor',NULL,'[\"Harold Dobbs - Hal\"]'),(377107,6960,5,'director',NULL,NULL),(377107,1430632,6,'writer','play',NULL),(377107,589182,7,'writer','screenplay',NULL),(377107,366363,8,'producer','producer',NULL),(377107,450267,9,'producer','producer',NULL),(377109,662748,10,'producer','producer',NULL),(377109,915208,1,'actress',NULL,'[\"Rachel\"]'),(377109,233562,2,'actor',NULL,'[\"Aidan\"]'),(377109,651,3,'actress',NULL,'[\"Evelyn\"]'),(377109,48932,4,'actor',NULL,'[\"Max Rourke\"]'),(377109,620378,5,'director',NULL,NULL),(377109,472567,6,'writer','written by',NULL),(377109,840626,7,'writer','novel \"The Ring\"',NULL),(377109,847126,8,'writer',NULL,NULL),(377109,531827,9,'producer','producer',NULL),(377191,584400,10,'actor',NULL,'[\"GIG\"]'),(377191,542559,1,'actor',NULL,'[\"Brian Kadeem\"]'),(377191,73088,2,'actor',NULL,'[\"Banjee Castillo\"]'),(377191,391738,3,'actor',NULL,'[\"Tork Maddox\"]'),(377191,290075,4,'actor',NULL,'[\"Vert Wheeler\"]'),(377191,443286,5,'actor',NULL,'[\"Deezel \'Porkchop\' Riggs\",\"Deezel \\\"Porkchop\\\" Riggs\"]'),(377191,56532,6,'actress',NULL,'[\"Gelorum\"]'),(377191,238546,7,'actor',NULL,'[\"Kurt Wylde\"]'),(377191,67754,8,'actress',NULL,'[\"Karma Eiss\"]'),(377191,68150,9,'actor',NULL,'[\"Nolo Pasaro\"]'),(377309,1396424,10,'producer','producer',NULL),(377309,708,1,'actor',NULL,'[\"Jack\"]'),(377309,111639,2,'actress',NULL,'[\"Jennifer\"]'),(377309,1591620,3,'actor',NULL,'[\"Manuel\"]'),(377309,172714,4,'actor',NULL,'[\"Bill\"]'),(377309,706296,5,'director',NULL,NULL),(377309,207559,6,'producer','producer',NULL),(377309,1570493,7,'producer','producer',NULL),(377309,553430,8,'producer','producer',NULL),(377309,862324,9,'producer','producer',NULL),(377556,155363,10,'editor',NULL,NULL),(377556,497642,1,'actor',NULL,'[\"Hsiao-Kang\"]'),(377556,155365,2,'actress',NULL,'[\"Ticket Woman\"]'),(377556,1442156,3,'actor',NULL,'[\"Japanese tourist\"]'),(377556,583964,4,'self',NULL,'[\"Self\"]'),(377556,158857,5,'director',NULL,NULL),(377556,5050094,6,'writer','additional narrative',NULL),(377556,1441986,7,'producer','producer',NULL),(377556,1440651,8,'producer','producer',NULL),(377556,508684,9,'cinematographer',NULL,NULL),(377683,269442,1,'self',NULL,'[\"Self\"]'),(377683,392125,2,'self',NULL,'[\"Self\"]'),(377683,3620656,3,'actress',NULL,'[\"Connie Gomper\"]'),(377683,463473,4,'director',NULL,NULL),(377683,373158,5,'composer',NULL,NULL),(377713,480134,10,'editor',NULL,NULL),(377713,72124,1,'actor',NULL,'[\"Eric Wynn\"]'),(377713,601890,2,'actress',NULL,'[\"Cassandra Rains\"]'),(377713,730045,3,'actor',NULL,'[\"Robert P. Haskell\"]'),(377713,727120,4,'actor',NULL,'[\"Jax\"]'),(377713,53228,5,'director',NULL,NULL),(377713,3681,6,'producer','producer',NULL),(377713,332545,7,'producer','producer',NULL),(377713,2640,8,'composer',NULL,NULL),(377713,4062,9,'cinematographer','director of photography',NULL),(377752,449571,10,'production_designer',NULL,NULL),(377752,607865,1,'actress',NULL,'[\"Lizzie\"]'),(377752,1380882,2,'actor',NULL,'[\"Frankie\"]'),(377752,124930,3,'actor',NULL,'[\"The Stranger\"]'),(377752,726635,4,'actress',NULL,'[\"Nell\"]'),(377752,994254,5,'director',NULL,NULL),(377752,316447,6,'writer','screenplay',NULL),(377752,939598,7,'producer','producer',NULL),(377752,373588,8,'composer',NULL,NULL),(377752,653205,9,'editor',NULL,NULL),(377981,2050680,10,'writer','story',NULL),(377981,564215,1,'actor',NULL,'[\"Gnomeo\"]'),(377981,1289434,2,'actress',NULL,'[\"Juliet\"]'),(377981,1749,3,'actress',NULL,'[\"Lady Bluebury\"]'),(377981,421332,4,'actress',NULL,'[\"Nanette\"]'),(377981,38432,5,'director',NULL,NULL),(377981,819522,6,'writer','story',NULL),(377981,975322,7,'writer','story',NULL),(377981,726978,8,'writer','story',NULL),(377981,147700,9,'writer','story',NULL),(377995,63051,1,'actress',NULL,'[\"Grandma\"]'),(377995,808310,2,'director',NULL,NULL),(378194,134871,10,'production_designer',NULL,NULL),(378194,235,1,'actress',NULL,'[\"Beatrix Kiddo aka The Bride aka Black Mamba aka Mommy\"]'),(378194,1016,2,'actor',NULL,'[\"Bill aka Snake Charmer\"]'),(378194,514,3,'actor',NULL,'[\"Budd aka Sidewinder\"]'),(378194,435,4,'actress',NULL,'[\"Elle Driver aka California Mountain Snake\"]'),(378194,233,5,'director',NULL,NULL),(378194,4744,6,'producer','producer',NULL),(378194,1675,7,'composer',NULL,NULL),(378194,724744,8,'cinematographer','director of photography',NULL),(378194,579673,9,'editor',NULL,NULL),(378661,923915,10,'composer',NULL,NULL),(378661,656768,1,'actress',NULL,'[\"Rachel\"]'),(378661,951520,2,'actor',NULL,'[\"Mathieu\"]'),(378661,682692,3,'actor',NULL,'[\"Gardet\"]'),(378661,308502,4,'actor',NULL,'[\"Le maire\"]'),(378661,133028,5,'director',NULL,NULL),(378661,863121,6,'writer',NULL,NULL),(378661,71379,7,'producer','producer',NULL),(378661,779970,8,'producer','producer',NULL),(378661,690772,9,'composer',NULL,NULL),(378793,508845,10,'composer',NULL,NULL),(378793,829576,1,'actress',NULL,'[\"Melinda Sordino\"]'),(378793,1610,2,'actress',NULL,'[\"Joyce Sordino\"]'),(378793,353527,3,'actor',NULL,'[\"School Bus Driver\"]'),(378793,797732,4,'actress',NULL,'[\"Heather\"]'),(378793,789366,5,'director',NULL,NULL),(378793,1547881,6,'writer','novel \"Speak\"',NULL),(378793,1022687,7,'writer','screenplay',NULL),(378793,76681,8,'producer','producer',NULL),(378793,616804,9,'producer','producer',NULL),(379071,655822,10,'cinematographer',NULL,NULL),(379071,961121,1,'actress',NULL,'[\"Kéki Kata\"]'),(379071,190800,2,'actor',NULL,'[\"Dávid\"]'),(379071,959964,3,'actress',NULL,'[\"Lujzi\"]'),(379071,529452,4,'actor',NULL,'[\"Tamás\"]'),(379071,1439333,5,'director',NULL,NULL),(379071,1099684,6,'writer','screenplay',NULL),(379071,1437347,7,'writer','novel',NULL),(379071,1672284,8,'producer','producer',NULL),(379071,1759257,9,'composer',NULL,NULL),(379217,823900,10,'producer','producer',NULL),(379217,195,1,'actor',NULL,'[\"Bill Murray (segment \\\"Delirium\\\")\"]'),(379217,1823,2,'actor',NULL,'[\"Tom (segment \\\"Somewhere in California\\\")\"]'),(379217,905,3,'actor',NULL,'[\"Roberto (segment \\\"Strange to Meet You\\\")\"]'),(379217,753526,4,'actor',NULL,'[\"RZA (segment \\\"Delirium\\\")\"]'),(379217,464,5,'director',NULL,NULL),(379217,459852,6,'producer','producer',NULL),(379217,531384,7,'producer','associate producer',NULL),(379217,799886,8,'producer','producer',NULL),(379217,823196,9,'producer','producer',NULL),(379306,796796,10,'producer','producer',NULL),(379306,166,1,'actress',NULL,'[\"Mrs. Erlynne\"]'),(379306,424060,2,'actress',NULL,'[\"Meg Windermere\"]'),(379306,929489,3,'actor',NULL,'[\"Tuppy\"]'),(379306,904371,4,'actress',NULL,'[\"Contessa Lucchino\"]'),(379306,54954,5,'director',NULL,NULL),(379306,928492,6,'writer','play \"Lady Windermere\'s Fan\"',NULL),(379306,385392,7,'writer','screenplay',NULL),(379306,257646,8,'producer','producer',NULL),(379306,339171,9,'producer','producer',NULL),(379363,655619,10,'production_designer',NULL,NULL),(379363,706747,1,'actress',NULL,'[\"Michelle\"]'),(379363,1319709,2,'actress',NULL,'[\"Brianne\"]'),(379363,1671461,3,'actress',NULL,'[\"Gloria\"]'),(379363,1625914,4,'actress',NULL,'[\"Denise\"]'),(379363,507425,5,'director',NULL,NULL),(379363,372190,6,'producer','producer',NULL),(379363,516083,7,'composer',NULL,NULL),(379363,135524,8,'cinematographer',NULL,NULL),(379363,515336,9,'editor',NULL,NULL),(379725,898549,10,'producer','producer',NULL),(379725,450,1,'actor',NULL,'[\"Truman Capote\"]'),(379725,4286,2,'actor',NULL,'[\"Perry Smith\"]'),(379725,1416,3,'actress',NULL,'[\"Nelle Harper Lee\"]'),(379725,1738584,4,'actress',NULL,'[\"Laura Kinney\"]'),(379725,587955,5,'director',NULL,NULL),(379725,1246,6,'writer','screenplay',NULL),(379725,1707307,7,'writer','book',NULL),(379725,56205,8,'producer','producer',NULL),(379725,645164,9,'producer','producer',NULL),(379786,161530,10,'production_designer',NULL,NULL),(379786,277213,1,'actor',NULL,'[\"Mal\"]'),(379786,868659,2,'actress',NULL,'[\"Zoë\"]'),(379786,252230,3,'actor',NULL,'[\"The Operative\"]'),(379786,876138,4,'actor',NULL,'[\"Wash\"]'),(379786,923736,5,'director',NULL,NULL),(379786,578814,6,'producer','producer',NULL),(379786,628056,7,'composer',NULL,NULL),(379786,5726,8,'cinematographer','director of photography',NULL),(379786,489809,9,'editor',NULL,NULL),(380066,502954,10,'cinematographer','director of photography',NULL),(380066,83564,1,'actress',NULL,'[\"Marcy Turner\"]'),(380066,115671,2,'actress',NULL,'[\"Heather Fasulo\"]'),(380066,318354,3,'actress',NULL,'[\"Ms. Cross\"]'),(380066,132441,4,'actress',NULL,'[\"Alice Fasulo\"]'),(380066,1031246,5,'director',NULL,NULL),(380066,1565107,6,'writer','written by',NULL),(380066,1227576,7,'producer','producer',NULL),(380066,299120,8,'producer','producer',NULL),(380066,2227,9,'composer',NULL,NULL),(380366,606682,10,'editor',NULL,NULL),(380366,1460618,1,'actor',NULL,'[\"Casim Khan\"]'),(380366,83795,2,'actress',NULL,'[\"Roisin Hanlon\"]'),(380366,1566212,3,'actor',NULL,'[\"Tariq Khan\"]'),(380366,1566336,4,'actress',NULL,'[\"Sadia Khan\"]'),(380366,516360,5,'director',NULL,NULL),(380366,491956,6,'writer','screenplay',NULL),(380366,639780,7,'producer','producer',NULL),(380366,6070,8,'composer',NULL,NULL),(380366,10096,9,'cinematographer',NULL,NULL),(380510,678992,10,'producer','producer',NULL),(380510,1838,1,'actress',NULL,'[\"Abigail Salmon\"]'),(380510,242,2,'actor',NULL,'[\"Jack Salmon\"]'),(380510,1519680,3,'actress',NULL,'[\"Susie Salmon\"]'),(380510,215,4,'actress',NULL,'[\"Grandma Lynn\"]'),(380510,1392,5,'director',NULL,NULL),(380510,909638,6,'writer','screenplay',NULL),(380510,101991,7,'writer','screenplay',NULL),(380510,1451254,8,'writer','novel',NULL),(380510,192253,9,'producer','producer',NULL),(380599,6235,10,'composer',NULL,NULL),(380599,1263280,1,'actor',NULL,'[\"Oliver Twist\"]'),(380599,1426,2,'actor',NULL,'[\"Fagin\"]'),(380599,842596,3,'actor',NULL,'[\"Mr. Bumble\"]'),(380599,573862,4,'actor',NULL,'[\"Mr. Limbkins\"]'),(380599,591,5,'director',NULL,NULL),(380599,2042,6,'writer','novel',NULL),(380599,367838,7,'writer','screenplay',NULL),(380599,71452,8,'producer','producer',NULL),(380599,764963,9,'producer','producer',NULL),(380623,1333759,10,'producer','producer',NULL),(380623,240381,1,'actress',NULL,'[\"Holly Hamilton\"]'),(380623,181,2,'actress',NULL,'[\"Jean Hamilton\"]'),(380623,1502522,3,'actress',NULL,'[\"Zoe Hamilton\"]'),(380623,636562,4,'actor',NULL,'[\"Ben Cooper\"]'),(380623,743093,5,'director',NULL,NULL),(380623,1444139,6,'writer','story',NULL),(380623,1449113,7,'writer','story',NULL),(380623,868282,8,'writer','story',NULL),(380623,920859,9,'writer','screenplay',NULL),(380726,351329,10,'cinematographer',NULL,NULL),(380726,954076,1,'actor',NULL,'[\"Ziemek\"]'),(380726,17914,2,'actress',NULL,'[\"Dziwa\"]'),(380726,286085,3,'actress',NULL,'[\"Ksiezna\"]'),(380726,646037,4,'actor',NULL,'[\"Piastun\"]'),(380726,388956,5,'director',NULL,NULL),(380726,376215,6,'writer','writer',NULL),(380726,470002,7,'writer','novel \"Stara Basn\"',NULL),(380726,584686,8,'producer','producer',NULL),(380726,213579,9,'composer',NULL,NULL),(380761,357269,10,'cinematographer',NULL,NULL),(380761,297686,1,'actor',NULL,'[\"Tsuyoshi Shindo\"]'),(380761,47963,2,'actress',NULL,'[\"Shima Akai\"]'),(380761,361757,3,'actor',NULL,'[\"Jiro Takahata\"]'),(380761,370652,4,'actor',NULL,'[\"Ryuichi Sakaguchi\"]'),(380761,756406,5,'director',NULL,NULL),(380761,1199519,6,'writer','novel',NULL),(380761,555479,7,'writer',NULL,NULL),(380761,475907,8,'producer','producer',NULL),(380761,880839,9,'composer',NULL,NULL),(381061,110483,10,'producer','producer',NULL),(381061,185819,1,'actor',NULL,'[\"James Bond\"]'),(381061,1200692,2,'actress',NULL,'[\"Vesper Lynd\"]'),(381061,1132,3,'actress',NULL,'[\"M\"]'),(381061,942482,4,'actor',NULL,'[\"Felix Leiter\"]'),(381061,132709,5,'director',NULL,NULL),(381061,701031,6,'writer','screenplay',NULL),(381061,905498,7,'writer','screenplay',NULL),(381061,353673,8,'writer','screenplay',NULL),(381061,1220,9,'writer','novel',NULL),(381348,949069,1,'actor',NULL,'[\"Hiroki Fujisawa\"]'),(381348,353717,2,'actor',NULL,'[\"Takuya Shirakawa\"]'),(381348,620936,3,'actress',NULL,'[\"Sayuri Sawatari\"]'),(381348,411167,4,'actor',NULL,'[\"Okabe\"]'),(381348,1396121,5,'director',NULL,NULL),(381348,1491554,6,'director','co-director',NULL),(381348,1016096,7,'writer','adaptation',NULL),(381348,1399356,8,'composer',NULL,NULL),(381668,153974,10,'editor',NULL,NULL),(381668,1616898,1,'actor',NULL,'[\"Keng\"]'),(381668,1616807,2,'actor',NULL,'[\"Tong\"]'),(381668,1707863,3,'actor',NULL,NULL),(381668,1708049,4,'actor',NULL,NULL),(381668,917405,5,'director',NULL,NULL),(381668,575263,6,'producer','producer',NULL),(381668,1618519,7,'cinematographer',NULL,NULL),(381668,1618531,8,'cinematographer',NULL,NULL),(381668,895613,9,'cinematographer',NULL,NULL),(381681,322204,10,'production_designer',NULL,NULL),(381681,160,1,'actor',NULL,'[\"Jesse\"]'),(381681,365,2,'actress',NULL,'[\"Celine\"]'),(381681,229943,3,'actor',NULL,'[\"Bookstore Manager\"]'),(381681,1195302,4,'actress',NULL,'[\"Journalist #1\"]'),(381681,500,5,'director',NULL,NULL),(381681,471811,6,'writer','story',NULL),(381681,908323,7,'producer','producer',NULL),(381681,199679,8,'cinematographer','director of photography',NULL),(381681,10471,9,'editor',NULL,NULL),(381707,562598,10,'producer','producer',NULL),(381707,5541,1,'actor',NULL,'[\"Marcus Copeland\"]'),(381707,915465,2,'actor',NULL,'[\"Kevin Copeland\"]'),(381707,5311,3,'actress',NULL,'[\"Karen\"]'),(381707,5533,4,'actress',NULL,'[\"Brittany Wilson\"]'),(381707,5540,5,'director',NULL,NULL),(381707,568377,6,'writer','screenplay by',NULL),(381707,811360,7,'writer','screenplay by',NULL),(381707,177348,8,'writer','screenplay by',NULL),(381707,23315,9,'producer','producer',NULL),(381849,465298,10,'producer','producer',NULL),(381849,128,1,'actor',NULL,'[\"Ben Wade\"]'),(381849,288,2,'actor',NULL,'[\"Dan Evans\"]'),(381849,4936,3,'actor',NULL,'[\"Charlie Prince\"]'),(381849,503567,4,'actor',NULL,'[\"William Evans\"]'),(381849,3506,5,'director',NULL,NULL),(381849,919925,6,'writer','screenplay',NULL),(381849,104973,7,'writer','screenplay',NULL),(381849,351929,8,'writer','screenplay',NULL),(381849,1465,9,'writer','short story',NULL),(381940,960417,10,'writer','screenplay',NULL),(381940,2965563,1,'actress',NULL,'[\"Laura Portmann\"]'),(381940,710770,2,'actor',NULL,'[\"Samuel Decker\"]'),(381940,336161,3,'actress',NULL,'[\"Anna Lindbergh\"]'),(381940,1062017,4,'actress',NULL,'[\"Miyuki Yoshida\"]'),(381940,1393530,5,'director',NULL,NULL),(381940,2100246,6,'director',NULL,NULL),(381940,1308259,7,'writer','story',NULL),(381940,2037493,8,'writer','screenplay',NULL),(381940,973731,9,'writer','screenplay',NULL),(381966,262935,10,'editor',NULL,NULL),(381966,4376,1,'actress',NULL,'[\"Kate\"]'),(381966,365317,2,'actor',NULL,'[\"Craig\"]'),(381966,85997,3,'actor',NULL,'[\"George\"]'),(381966,132631,4,'actor',NULL,'[\"Arthur\"]'),(381966,1247462,5,'director',NULL,NULL),(381966,47787,6,'producer','producer',NULL),(381966,1129502,7,'producer','producer',NULL),(381966,409368,8,'composer',NULL,NULL),(381966,169299,9,'cinematographer',NULL,NULL),(382077,285701,10,'editor',NULL,NULL),(382077,134,1,'actor',NULL,'[\"David Callaway\"]'),(382077,266824,2,'actress',NULL,'[\"Emily Callaway\"]'),(382077,463,3,'actress',NULL,'[\"Katherine\"]'),(382077,223,4,'actress',NULL,'[\"Elizabeth\"]'),(382077,689852,5,'director',NULL,NULL),(382077,1324179,6,'writer','written by',NULL),(382077,430742,7,'producer','producer',NULL),(382077,653211,8,'composer',NULL,NULL),(382077,3011,9,'cinematographer',NULL,NULL),(382189,2072094,10,'composer',NULL,NULL),(382189,1461267,1,'actress',NULL,'[\"Mona\"]'),(382189,1289434,2,'actress',NULL,'[\"Tamsin\"]'),(382189,175916,3,'actor',NULL,'[\"Phil\"]'),(382189,1080214,4,'actor',NULL,'[\"Ricky\"]'),(382189,667734,5,'director',NULL,NULL),(382189,1713410,6,'writer','novel',NULL),(382189,1721806,7,'writer','collaborating writer',NULL),(382189,172215,8,'producer','producer',NULL),(382189,782036,9,'producer','producer',NULL),(382625,1877,10,'composer',NULL,NULL),(382625,158,1,'actor',NULL,'[\"Robert Langdon\"]'),(382625,851582,2,'actress',NULL,'[\"Sophie Neveu\"]'),(382625,606,3,'actor',NULL,'[\"Captain Bezu Fache\"]'),(382625,5212,4,'actor',NULL,'[\"Sir Leigh Teabing\"]'),(382625,165,5,'director',NULL,NULL),(382625,326040,6,'writer','screenplay',NULL),(382625,1467010,7,'writer','novel',NULL),(382625,130492,8,'producer','producer',NULL),(382625,4976,9,'producer','producer',NULL),(382628,205713,10,'producer','producer',NULL),(382628,124,1,'actress',NULL,'[\"Dahlia\"]'),(382628,1262166,2,'actress',NULL,'[\"Ceci\"]'),(382628,604,3,'actor',NULL,'[\"Mr. Murray\"]'),(382628,619,4,'actor',NULL,'[\"Jeff Platzer\"]'),(382628,758574,5,'director',NULL,NULL),(382628,840626,6,'writer','novel \"Honogurai Mizu No Soko Kara\"',NULL),(382628,620378,7,'writer','film Honogurai mizu no soko kara',NULL),(382628,406772,8,'writer','film Honogurai mizu no soko kara',NULL),(382628,947913,9,'writer','screenplay',NULL),(382761,746421,10,'cinematographer','director of photography',NULL),(382761,1159,1,'actress',NULL,'[\"Mary Ellen Cassi\"]'),(382761,5312,2,'actress',NULL,'[\"Jennifer Cassi\",\"Johanna\"]'),(382761,555823,3,'actor',NULL,'[\"Darío Baredevil\"]'),(382761,667287,4,'actor',NULL,'[\"Roberto\"]'),(382761,209435,5,'director',NULL,NULL),(382761,655043,6,'director',NULL,NULL),(382761,678646,7,'writer','story',NULL),(382761,1909130,8,'producer','producer',NULL),(382761,508814,9,'composer',NULL,NULL),(382810,489059,10,'composer',NULL,NULL),(382810,949,1,'actress',NULL,'[\"Tracy\"]'),(382810,554,2,'actor',NULL,'[\"The Jockey\"]'),(382810,915989,3,'actor',NULL,'[\"Lionel\"]'),(382810,376540,4,'actor',NULL,'[\"Ray\"]'),(382810,940774,5,'director',NULL,NULL),(382810,675476,6,'writer','written by',NULL),(382810,444294,7,'producer','producer',NULL),(382810,790636,8,'producer','producer',NULL),(382810,915192,9,'producer','producer',NULL),(382932,677037,10,'writer','additional story material',NULL),(382932,4951,1,'actor',NULL,'[\"Gusteau\"]'),(382932,738918,2,'actor',NULL,'[\"Linguini\"]'),(382932,652663,3,'actor',NULL,'[\"Remy\"]'),(382932,453,4,'actor',NULL,'[\"Skinner\"]'),(382932,83348,5,'director',NULL,NULL),(382932,684342,6,'director','co-director',NULL),(382932,135296,7,'writer','original story by',NULL),(382932,1486235,8,'writer','additional story material',NULL),(382932,1271884,9,'writer','additional story material',NULL),(382992,117741,10,'composer',NULL,NULL),(382992,524197,1,'actor',NULL,'[\"Lt. Ben Gannon\"]'),(382992,4754,2,'actress',NULL,'[\"Lt. Kara Wade\"]'),(382992,4937,3,'actor',NULL,'[\"Lt. Henry Purcell\"]'),(382992,1731,4,'actor',NULL,'[\"Capt. George Cummings\"]'),(382992,3418,5,'director',NULL,NULL),(382992,725379,6,'writer','written by',NULL),(382992,5219,7,'producer','producer',NULL),(382992,605775,8,'producer','producer',NULL),(382992,957205,9,'producer','producer',NULL),(383028,5695,10,'cinematographer','director of photography',NULL),(383028,450,1,'actor',NULL,'[\"Caden Cotard\"]'),(383028,608090,2,'actress',NULL,'[\"Hazel\"]'),(383028,931329,3,'actress',NULL,'[\"Claire Keen\"]'),(383028,1416,4,'actress',NULL,'[\"Adele Lack\"]'),(383028,442109,5,'director',NULL,NULL),(383028,106835,6,'producer','producer',NULL),(383028,5069,7,'producer','producer',NULL),(383028,454004,8,'producer','producer',NULL),(383028,109726,9,'composer',NULL,NULL),(383060,865189,10,'producer','producer',NULL),(383060,741,1,'actor',NULL,'[\"Jack Shepard\",\"Captain Zoom\"]'),(383060,1073,2,'actress',NULL,'[\"Marsha Holloway\"]'),(383060,331,3,'actor',NULL,'[\"Dr. Grant\"]'),(383060,107748,4,'actor',NULL,'[\"Tucker Willams\",\"Mega-Boy\"]'),(383060,382072,5,'director',NULL,NULL),(383060,726472,6,'writer','screenplay',NULL),(383060,1183854,7,'writer','screenplay',NULL),(383060,504670,8,'writer','novel \"Zoom\'s Academy\"',NULL),(383060,307776,9,'producer','producer',NULL),(383206,243969,10,'producer','producer',NULL),(383206,792198,1,'actress',NULL,'[\"Barbie\",\"Odette\"]'),(383206,383926,2,'actor',NULL,'[\"Prince Daniel\"]'),(383206,1288,3,'actor',NULL,'[\"Rothbart\"]'),(383206,923909,4,'actress',NULL,'[\"Odile\"]'),(383206,403481,5,'director',NULL,NULL),(383206,748429,6,'writer','written by',NULL),(383206,504327,7,'writer','written by',NULL),(383206,6318,8,'writer','based on \'Swan Lake\' by',NULL),(383206,1043325,9,'writer','based on the Barbie characters created by',NULL),(383216,800465,10,'producer','producer',NULL),(383216,188,1,'actor',NULL,'[\"Clouseau\"]'),(383216,177,2,'actor',NULL,'[\"Dreyfus\"]'),(383216,606,3,'actor',NULL,'[\"Ponton\"]'),(383216,607865,4,'actress',NULL,'[\"Nicole\"]'),(383216,506613,5,'director',NULL,NULL),(383216,89676,6,'writer','screenplay',NULL),(383216,759167,7,'writer','story',NULL),(383216,725009,8,'writer','characters',NULL),(383216,1175,9,'writer','characters',NULL),(383222,627100,10,'cinematographer','director of photography',NULL),(383222,518085,1,'actress',NULL,'[\"Rayne\"]'),(383222,1426,2,'actor',NULL,'[\"Kagan\"]'),(383222,735442,3,'actress',NULL,'[\"Katarin\"]'),(383222,514,4,'actor',NULL,'[\"Vladimir\"]'),(383222,93051,5,'director',NULL,NULL),(383222,877587,6,'writer','written by',NULL),(383222,164721,7,'producer','producer',NULL),(383222,932144,8,'producer','producer',NULL),(383222,4321,9,'composer',NULL,NULL),(383574,988,10,'producer','producer',NULL),(383574,136,1,'actor',NULL,'[\"Jack Sparrow\"]'),(383574,89217,2,'actor',NULL,'[\"Will Turner\"]'),(383574,461136,3,'actress',NULL,'[\"Elizabeth Swann\"]'),(383574,202603,4,'actor',NULL,'[\"Norrington\"]'),(383574,893659,5,'director',NULL,NULL),(383574,254645,6,'writer','written by',NULL),(383574,744429,7,'writer','written by',NULL),(383574,64181,8,'writer','characters',NULL),(383574,938684,9,'writer','characters',NULL),(383694,164083,10,'editor',NULL,NULL),(383694,1767,1,'actress',NULL,'[\"Vera\"]'),(383694,980,2,'actor',NULL,'[\"Judge\"]'),(383694,186452,3,'actress',NULL,'[\"Joyce\"]'),(383694,334262,4,'actor',NULL,'[\"George\"]'),(383694,5139,5,'director',NULL,NULL),(383694,151925,6,'producer','producer',NULL),(383694,764963,7,'producer','producer',NULL),(383694,225614,8,'composer',NULL,NULL),(383694,5836,9,'cinematographer','director of photography',NULL),(384116,1738801,10,'cinematographer',NULL,NULL),(384116,948000,1,'actor',NULL,'[\"Arif Isik\",\"Komutan Logar\",\"Ersan Kuneri\"]'),(384116,1735332,2,'actress',NULL,'[\"Princess Ceku\"]'),(384116,349777,3,'actor',NULL,'[\"216-Robot\"]'),(384116,786919,4,'actor',NULL,'[\"Kuna\"]'),(384116,814716,5,'director',NULL,NULL),(384116,15528,6,'producer','producer',NULL),(384116,8847729,7,'producer','producer',NULL),(384116,947999,8,'producer','producer',NULL),(384116,1738823,9,'composer',NULL,NULL),(384286,118658,10,'production_designer',NULL,NULL),(384286,606690,1,'actor',NULL,'[\"Owen\"]'),(384286,95751,2,'actress',NULL,'[\"Dodger\"]'),(384286,655585,3,'actor',NULL,'[\"Tom\"]'),(384286,2048313,4,'actress',NULL,'[\"Becky\"]'),(384286,905592,5,'director',NULL,NULL),(384286,62149,6,'writer','written by',NULL),(384286,910800,7,'composer',NULL,NULL),(384286,864268,8,'cinematographer','director of photography',NULL),(384286,1164861,9,'editor',NULL,NULL),(384369,823,10,'composer',NULL,NULL),(384369,726262,1,'actor',NULL,'[\"Friedrich Weimer\"]'),(384369,771713,2,'actor',NULL,'[\"Albrecht Stein\"]'),(384369,834479,3,'actor',NULL,'[\"Vogler\"]'),(384369,1079813,4,'actor',NULL,'[\"Christoph Schneider\"]'),(384369,304541,5,'director',NULL,NULL),(384369,673297,6,'writer','screenplay',NULL),(384369,433474,7,'producer','producer',NULL),(384369,478105,8,'producer','producer',NULL),(384369,902282,9,'producer','producer',NULL),(384504,98020,10,'cinematographer',NULL,NULL),(384504,1040,1,'actress',NULL,'[\"Hwei-Lan Gao - Ma\"]'),(384504,472891,2,'actress',NULL,'[\"Wilhelmina \'Wil\' Pang\"]'),(384504,1187181,3,'actress',NULL,'[\"Vivian Shing\"]'),(384504,962447,4,'actor',NULL,'[\"Wai Gung - Grandpa\"]'),(384504,1226108,5,'director',NULL,NULL),(384504,489876,6,'producer','producer',NULL),(384504,226,7,'producer','producer',NULL),(384504,1151819,8,'producer','producer',NULL),(384504,762863,9,'composer',NULL,NULL),(384533,508732,10,'cinematographer',NULL,NULL),(384533,1107001,1,'actor',NULL,'[\"John Henry \'Jack\' Armstrong\"]'),(384533,913488,2,'actress',NULL,'[\"Fatima Goodrich\"]'),(384533,289,3,'actress',NULL,'[\"Margo Chadwick\"]'),(384533,899,4,'actress',NULL,'[\"Simona Bonasera\"]'),(384533,490,5,'director',NULL,NULL),(384533,312796,6,'writer','story',NULL),(384533,392008,7,'producer','producer',NULL),(384533,837875,8,'producer','producer',NULL),(384533,5966,9,'composer',NULL,NULL),(384537,1168522,10,'composer',NULL,NULL),(384537,593664,1,'actress',NULL,'[\"Rose Da Silva\"]'),(384537,390229,2,'actress',NULL,'[\"Cybil Bennett\"]'),(384537,293,3,'actor',NULL,'[\"Christopher Da Silva\"]'),(384537,679,4,'actress',NULL,'[\"Dahlia Gillespie\"]'),(384537,304521,5,'director',NULL,NULL),(384537,812,6,'writer','written by',NULL),(384537,138502,7,'producer','producer',NULL),(384537,352820,8,'producer','producer',NULL),(384537,4582,9,'composer',NULL,NULL),(384573,2283,10,'cinematographer',NULL,NULL),(384573,1472845,1,'actress',NULL,'[\"Emma Tyler\"]'),(384573,5299,2,'actress',NULL,'[\"Merrill\"]'),(384573,461446,3,'actor',NULL,'[\"Will Tyler\"]'),(384573,427728,4,'actress',NULL,'[\"Julia Tyler\"]'),(384573,755531,5,'director',NULL,NULL),(384573,45643,6,'producer','producer',NULL),(384573,80995,7,'producer','producer',NULL),(384573,500717,8,'producer','producer',NULL),(384573,1219639,9,'producer','producer',NULL),(384793,1723,10,'producer','producer',NULL),(384793,519043,1,'actor',NULL,'[\"Bartleby Gaines\"]'),(384793,1706767,2,'actor',NULL,'[\"Sherman Schrader\"]'),(384793,515116,3,'actress',NULL,'[\"Monica Moreland\"]'),(384793,2012635,4,'actor',NULL,'[\"Glen\"]'),(384793,684336,5,'director',NULL,NULL),(384793,177836,6,'writer','screenplay',NULL),(384793,171651,7,'writer','screenplay',NULL),(384793,991423,8,'writer','screenplay',NULL),(384793,98233,9,'producer','producer',NULL),(384806,527582,10,'writer','material',NULL),(384806,5351,1,'actor',NULL,'[\"George Lutz\"]'),(384806,313534,2,'actress',NULL,'[\"Kathy Lutz\"]'),(384806,1497548,3,'actor',NULL,'[\"Michael Lutz\"]'),(384806,416596,4,'actor',NULL,'[\"Billy Lutz\"]'),(384806,1497918,5,'director',NULL,NULL),(384806,466925,6,'writer','screenplay',NULL),(384806,30663,7,'writer','novel',NULL),(384806,827839,8,'writer','earlier screenplay',NULL),(384806,527567,9,'writer','material',NULL),(384819,2556657,10,'producer','producer',NULL),(384819,1475754,1,'actress',NULL,'[\"Azumi\"]'),(384819,463188,2,'actor',NULL,'[\"Hyûga\"]'),(384819,1224532,3,'actor',NULL,'[\"Ukiha\"]'),(384819,1069467,4,'actor',NULL,'[\"Amagi\"]'),(384819,457565,5,'director',NULL,NULL),(384819,1473712,6,'writer','manga',NULL),(384819,945451,7,'writer','screenplay',NULL),(384819,1245013,8,'writer','screenplay',NULL),(384819,1257504,9,'producer','producer',NULL),(385002,958415,10,'producer','producer',NULL),(385002,704,1,'actor',NULL,'[\"Matt Buckner\"]'),(385002,402271,2,'actor',NULL,'[\"Pete Dunham\"]'),(385002,1231,3,'actress',NULL,'[\"Shannon Dunham\"]'),(385002,912938,4,'actor',NULL,'[\"Steve Dunham\"]'),(385002,591994,5,'director',NULL,NULL),(385002,1471990,6,'writer','story',NULL),(385002,791285,7,'writer','screenplay',NULL),(385002,215769,8,'producer','producer',NULL),(385002,698133,9,'producer','producer',NULL),(385267,36670,10,'production_designer',NULL,NULL),(385267,598,1,'actor',NULL,'[\"Dan\"]'),(385267,333410,2,'actor',NULL,'[\"Carter\"]'),(385267,424060,3,'actress',NULL,'[\"Alex\"]'),(385267,1339,4,'actress',NULL,'[\"Ann\"]'),(385267,919369,5,'director',NULL,NULL),(385267,919363,6,'producer','producer',NULL),(385267,871136,7,'composer',NULL,NULL),(385267,1899,8,'cinematographer','director of photography',NULL),(385267,450005,9,'editor',NULL,NULL),(385307,579977,10,'cinematographer','director of photography',NULL),(385307,113,1,'actress',NULL,'[\"Gracie Hart\"]'),(385307,5093,2,'actress',NULL,'[\"Sam Fuller\"]'),(385307,638,3,'actor',NULL,'[\"Stan Fields\"]'),(385307,6663,4,'actor',NULL,'[\"Jeff Foreman\"]'),(385307,664756,5,'director',NULL,NULL),(385307,492909,6,'writer','characters',NULL),(385307,974301,7,'writer','characters',NULL),(385307,524095,8,'writer','characters',NULL),(385307,888113,9,'composer',NULL,NULL),(385700,756983,10,'writer','video game',NULL),(385700,757327,1,'actor',NULL,'[\"Cloud Strife\"]'),(385700,411683,2,'actress',NULL,'[\"Tifa Lockhart\"]'),(385700,605453,3,'actor',NULL,'[\"Kadaj\"]'),(385700,757087,4,'actress',NULL,'[\"Aerith Gainsborough\"]'),(385700,634602,5,'director',NULL,NULL),(385700,1481959,6,'director','co-director',NULL),(385700,1081992,7,'writer','written by',NULL),(385700,1638748,8,'writer','English screenplay',NULL),(385700,457592,9,'writer','video game',NULL),(385726,453808,10,'cinematographer','director of photography',NULL),(385726,524197,1,'actor',NULL,'[\"Don Haskins\"]'),(385726,1035682,2,'actor',NULL,'[\"Bobby Joe Hill\"]'),(385726,629538,3,'actor',NULL,'[\"Jerry Armstrong\"]'),(385726,685,4,'actor',NULL,'[\"Adolph Rupp\"]'),(385726,1595280,5,'director',NULL,NULL),(385726,1480450,6,'writer','written by',NULL),(385726,319619,7,'writer','written by',NULL),(385726,988,8,'producer','producer',NULL),(385726,704909,9,'composer',NULL,NULL),(385752,103956,10,'cinematographer','director of photography',NULL),(385752,173,1,'actress',NULL,'[\"Mrs. Coulter\"]'),(385752,185819,2,'actor',NULL,'[\"Lord Asriel\"]'),(385752,2301950,3,'actress',NULL,'[\"Lyra\"]'),(385752,2036501,4,'actor',NULL,'[\"Roger\"]'),(385752,919363,5,'director',NULL,NULL),(385752,1099514,6,'writer','novel \"Northern Lights\"',NULL),(385752,140011,7,'producer','producer',NULL),(385752,287149,8,'producer','producer',NULL),(385752,6035,9,'composer',NULL,NULL),(385880,823330,10,'producer','producer',NULL),(385880,1102053,1,'actor',NULL,'[\"DJ\"]'),(385880,1348102,2,'actor',NULL,'[\"Chowder\"]'),(385880,1682400,3,'actress',NULL,'[\"Jenny\"]'),(385880,1707018,4,'actress',NULL,'[\"Little Girl\"]'),(385880,1481493,5,'director',NULL,NULL),(385880,1363595,6,'writer','screenplay',NULL),(385880,1041479,7,'writer','screenplay',NULL),(385880,972040,8,'writer','screenplay',NULL),(385880,710759,9,'producer','producer',NULL),(385887,1207404,10,'composer',NULL,NULL),(385887,1570,1,'actor',NULL,'[\"Lionel Essrog\"]'),(385887,1813221,2,'actress',NULL,'[\"Laura Rose\"]'),(385887,285,3,'actor',NULL,'[\"Moses Randolph\"]'),(385887,353,4,'actor',NULL,'[\"Paul Randolph\"]'),(385887,504672,5,'writer','from the novel by',NULL),(385887,66016,6,'producer','producer',NULL),(385887,585958,7,'producer','producer',NULL),(385887,698133,8,'producer','producer',NULL),(385887,1247594,9,'producer','producer',NULL),(386117,158,10,'producer','producer',NULL),(386117,2504006,1,'actor',NULL,'[\"Max\"]'),(386117,1573,2,'actress',NULL,'[\"Judith\"]'),(386117,1845,3,'actor',NULL,'[\"Ira\"]'),(386117,2589551,4,'actress',NULL,'[\"Claire\"]'),(386117,5069,5,'director',NULL,NULL),(386117,1101630,6,'writer','screenplay',NULL),(386117,784124,7,'writer','book',NULL),(386117,137811,8,'producer','producer',NULL),(386117,324556,9,'producer','producer',NULL),(386140,191547,10,'writer','character',NULL),(386140,104,1,'actor',NULL,'[\"Don Alejandro de la Vega\",\"Zorro\"]'),(386140,1876,2,'actress',NULL,'[\"Elena de la Vega\"]'),(386140,1722,3,'actor',NULL,'[\"Armand\"]'),(386140,1642653,4,'actor',NULL,'[\"Brother Ignacio\"]'),(386140,132709,5,'director',NULL,NULL),(386140,649460,6,'writer','screenplay',NULL),(386140,476064,7,'writer','screenplay',NULL),(386140,254645,8,'writer','story',NULL),(386140,744429,9,'writer','story',NULL),(386588,242491,10,'cinematographer','director of photography',NULL),(386588,226,1,'actor',NULL,'[\"Hitch\"]'),(386588,578949,2,'actress',NULL,'[\"Sara\"]'),(386588,416673,3,'actor',NULL,'[\"Albert\"]'),(386588,5520,4,'actress',NULL,'[\"Allegra\"]'),(386588,855035,5,'director',NULL,NULL),(386588,1358355,6,'writer','written by',NULL),(386588,489876,7,'producer','producer',NULL),(386588,1151819,8,'producer','producer',NULL),(386588,6070,9,'composer',NULL,NULL),(386820,1549553,10,'producer','producer',NULL),(386820,1272499,1,'actor',NULL,'[\"Terkel\",\"Arne\",\"Jason\"]'),(386820,2418852,2,'actress',NULL,'[\"Terkel\'s Mum\",\"Johanna\"]'),(386820,47155,3,'actor',NULL,'[\"The Narrator\"]'),(386820,1047305,4,'actor',NULL,'[\"Jason\",\"Saki\",\"Stan\"]'),(386820,1601862,5,'director',NULL,NULL),(386820,1580685,6,'director',NULL,NULL),(386820,280745,7,'director',NULL,NULL),(386820,1232670,8,'writer','screenplay',NULL),(386820,478172,9,'writer','story development',NULL),(386862,1709689,10,'editor',NULL,NULL),(386862,1031014,1,'actress',NULL,'[\"Melanie Pröschle\"]'),(386862,1526525,2,'actress',NULL,'[\"Tina Schaffner\"]'),(386862,627068,3,'actor',NULL,'[\"Thorsten Rehm\"]'),(386862,776469,4,'actress',NULL,'[\"Frau Sussmann\"]'),(386862,11752,5,'director',NULL,NULL),(386862,1464012,6,'producer','producer',NULL),(386862,238830,7,'composer',NULL,NULL),(386862,796847,8,'composer',NULL,NULL),(386862,1517261,9,'cinematographer',NULL,NULL),(387131,153263,10,'cinematographer','director of photography',NULL),(387131,146,1,'actor',NULL,'[\"Justin Quayle\"]'),(387131,1838,2,'actress',NULL,'[\"Tessa Quayle\"]'),(387131,396812,3,'actor',NULL,'[\"Sandy Woodrow\"]'),(387131,468003,4,'actor',NULL,'[\"Dr. Arnold Bluhm\"]'),(387131,576987,5,'director',NULL,NULL),(387131,128997,6,'writer','screenplay',NULL),(387131,494170,7,'writer','based on the novel by',NULL),(387131,151925,8,'producer','producer',NULL),(387131,407076,9,'composer',NULL,NULL),(387564,2252,10,'cinematographer','director of photography',NULL),(387564,144,1,'actor',NULL,'[\"Dr. Lawrence Gordon\"]'),(387564,1191481,2,'actor',NULL,'[\"Adam\"]'),(387564,418,3,'actor',NULL,'[\"Detective David Tapp\"]'),(387564,504962,4,'actor',NULL,'[\"Detective Steven Sing\"]'),(387564,1490123,5,'director',NULL,NULL),(387564,121117,6,'producer','producer',NULL),(387564,388898,7,'producer','producer',NULL),(387564,467977,8,'producer','producer',NULL),(387564,167197,9,'composer',NULL,NULL),(387658,700133,10,'writer','screenplay',NULL),(387658,311081,1,'actor',NULL,'[\"Turaga Vakama - Narrator\"]'),(387658,229923,2,'actor',NULL,'[\"Lhikan\",\"Krekka\"]'),(387658,229928,3,'actor',NULL,'[\"Nidhiki\",\"Whenua\"]'),(387658,319308,4,'actress',NULL,'[\"Nokama\"]'),(387658,596675,5,'director',NULL,NULL),(387658,787653,6,'director',NULL,NULL),(387658,319667,7,'writer','story',NULL),(387658,1434205,8,'writer','story',NULL),(387658,458764,9,'writer','screenplay',NULL),(387808,719679,10,'editor',NULL,NULL),(387808,5561,1,'actor',NULL,'[\"Joe Bauers\"]'),(387808,748973,2,'actress',NULL,'[\"Rita\"]'),(387808,1009277,3,'actor',NULL,'[\"Frito\"]'),(387808,187719,4,'actor',NULL,'[\"President Camacho\"]'),(387808,431918,5,'director',NULL,NULL),(387808,1000113,6,'writer','screenplay',NULL),(387808,465813,7,'producer','producer',NULL),(387808,788640,8,'composer',NULL,NULL),(387808,5891,9,'cinematographer','director of photography',NULL),(387877,503592,10,'producer','producer',NULL),(387877,1326,1,'actor',NULL,'[\"Dwight \'Bucky\' Bleichert\"]'),(387877,1173,2,'actor',NULL,'[\"Lee Blanchard\"]'),(387877,424060,3,'actress',NULL,'[\"Kay Lake\"]'),(387877,5476,4,'actress',NULL,'[\"Madeleine Linscott\"]'),(387877,361,5,'director',NULL,NULL),(387877,295264,6,'writer','screenplay',NULL),(387877,255278,7,'writer','novel',NULL),(387877,169733,8,'producer','producer',NULL),(387877,224537,9,'producer','producer',NULL),(388125,631,10,'producer','producer',NULL),(388125,1057,1,'actress',NULL,'[\"Rose\"]'),(388125,139,2,'actress',NULL,'[\"Maggie\"]'),(388125,511,3,'actress',NULL,'[\"Ella Hirsh\"]'),(388125,609845,4,'actor',NULL,'[\"Todd\"]'),(388125,436,5,'director',NULL,NULL),(388125,1497265,6,'writer','based on the novel by',NULL),(388125,335666,7,'writer','screenplay',NULL),(388125,255353,8,'producer','producer',NULL),(388125,271770,9,'producer','producer',NULL),(388182,730321,10,'composer',NULL,NULL),(388182,140,1,'actor',NULL,'[\"Charlie\"]'),(388182,939697,2,'actress',NULL,'[\"Miranda\"]'),(388182,122058,3,'actor',NULL,'[\"Pepper\"]'),(388182,1118528,4,'actress',NULL,'[\"Rita\"]'),(388182,128687,5,'director',NULL,NULL),(388182,256542,6,'producer','producer',NULL),(388182,503592,7,'producer','producer',NULL),(388182,518757,8,'producer','producer',NULL),(388182,668247,9,'producer','producer',NULL),(388311,848658,10,'producer','producer',NULL),(388311,412404,1,'actress',NULL,'[\"Or\"]'),(388311,253813,2,'actress',NULL,'[\"Ruthie\"]'),(388311,1616501,3,'actor',NULL,'[\"Ido\"]'),(388311,956911,4,'actress',NULL,'[\"Rachel\"]'),(388311,947121,5,'director',NULL,NULL),(388311,1415513,6,'writer',NULL,NULL),(388311,1326263,7,'producer','producer',NULL),(388311,88214,8,'producer','producer',NULL),(388311,747549,9,'producer','producer',NULL),(388419,2201,10,'composer',NULL,NULL),(388419,741,1,'actor',NULL,'[\"Luther Krank\"]'),(388419,130,2,'actress',NULL,'[\"Nora Krank\"]'),(388419,101,3,'actor',NULL,'[\"Vic Frohmeyer\"]'),(388419,1826,4,'actor',NULL,'[\"Walt Scheel\"]'),(388419,5387,5,'director',NULL,NULL),(388419,1300,6,'writer','novel \"Skipping Christmas\"',NULL),(388419,1060,7,'writer','screenplay',NULL),(388419,55431,8,'producer','producer',NULL),(388419,705365,9,'producer','producer',NULL),(388473,555470,10,'producer','producer',NULL),(388473,256609,1,'actor',NULL,'[\"Gin\"]'),(388473,880851,2,'actor',NULL,'[\"Hana\"]'),(388473,645464,3,'actress',NULL,'[\"Miyuki\"]'),(388473,959936,4,'actor',NULL,'[\"Ôta\"]'),(388473,464804,5,'director',NULL,NULL),(388473,633730,6,'writer','screenplay',NULL),(388473,4384370,7,'producer','producer',NULL),(388473,1087798,8,'producer','producer',NULL),(388473,538592,9,'producer','producer',NULL),(388482,25465,10,'cinematographer','director of photography',NULL),(388482,5458,1,'actor',NULL,'[\"Frank Martin\"]'),(388482,5520,2,'actress',NULL,'[\"Audrey Billings\"]'),(388482,1690331,3,'actress',NULL,'[\"Lola\"]'),(388482,309348,4,'actor',NULL,'[\"Gianni Chellini\"]'),(388482,504642,5,'director',NULL,NULL),(388482,108,6,'writer','characters',NULL),(388482,436543,7,'writer','characters',NULL),(388482,153893,8,'producer','producer',NULL),(388482,720072,9,'composer',NULL,NULL),(388500,387674,10,'producer','producer',NULL),(388500,1451,1,'actress',NULL,'[\"Gina Norris\"]'),(388500,224,2,'actress',NULL,'[\"Lynn\"]'),(388500,5023,3,'actor',NULL,'[\"Joe\"]'),(388500,510,4,'actress',NULL,'[\"Terri\"]'),(388500,937306,5,'director',NULL,NULL),(388500,402804,6,'writer','story',NULL),(388500,486824,7,'writer','screenplay',NULL),(388500,888491,8,'writer','screenplay',NULL),(388500,1406277,9,'producer','producer',NULL),(388789,2100653,1,'actress',NULL,NULL),(388789,2099087,2,'actor',NULL,NULL),(388789,2092248,3,'actress',NULL,NULL),(388789,2095158,4,'actor',NULL,NULL),(388789,1498640,5,'director',NULL,NULL),(388789,1502104,6,'director',NULL,NULL),(388789,2089521,7,'composer',NULL,NULL),(388789,48790,8,'editor',NULL,NULL),(388795,763395,10,'composer',NULL,NULL),(388795,350453,1,'actor',NULL,'[\"Jack Twist\"]'),(388795,5132,2,'actor',NULL,'[\"Ennis Del Mar\"]'),(388795,931329,3,'actress',NULL,'[\"Alma\"]'),(388795,1642,4,'actor',NULL,'[\"Joe Aguirre\"]'),(388795,487,5,'director',NULL,NULL),(388795,698925,6,'writer','short story',NULL),(388795,573505,7,'writer','screenplay',NULL),(388795,652223,8,'writer','screenplay',NULL),(388795,770005,9,'producer','producer',NULL),(389557,582797,10,'producer','producer',NULL),(389557,396924,1,'actress',NULL,'[\"Rachel Stein\",\"Ellis de Vries\"]'),(389557,462407,2,'actor',NULL,'[\"Ludwig Müntze\"]'),(389557,389109,3,'actor',NULL,'[\"Hans Akkermans\"]'),(389557,717603,4,'actress',NULL,'[\"Ronnie\"]'),(389557,682,5,'director',NULL,NULL),(389557,812121,6,'writer','written by',NULL),(389557,67408,7,'producer','producer',NULL),(389557,1024487,8,'producer','producer',NULL),(389557,540791,9,'producer','producer',NULL),(389722,600,10,'producer','producer',NULL),(389722,1326,1,'actor',NULL,'[\"Eben Oleson\"]'),(389722,313534,2,'actress',NULL,'[\"Stella Oleson\"]'),(389722,396812,3,'actor',NULL,'[\"Marlow\"]'),(389722,4936,4,'actor',NULL,'[\"The Stranger\"]'),(389722,1720541,5,'director',NULL,NULL),(389722,632051,6,'writer','screenplay',NULL),(389722,64181,7,'writer','screenplay',NULL),(389722,625198,8,'writer','screenplay',NULL),(389722,2615528,9,'writer','comic',NULL),(389790,552092,10,'writer','additional screenplay material',NULL),(389790,632,1,'actor',NULL,'[\"Barry B. Benson\"]'),(389790,250,2,'actress',NULL,'[\"Vanessa Bloome\"]'),(389790,111,3,'actor',NULL,'[\"Adam Flayman\"]'),(389790,911320,4,'actor',NULL,'[\"Ken\"]'),(389790,971239,5,'director',NULL,NULL),(389790,9054338,6,'director',NULL,NULL),(389790,272324,7,'writer','written by',NULL),(389790,546267,8,'writer','written by',NULL),(389790,732165,9,'writer','written by',NULL),(389860,340003,10,'composer',NULL,NULL),(389860,1191,1,'actor',NULL,'[\"Michael Newman\"]'),(389860,295,2,'actress',NULL,'[\"Donna Newman\"]'),(389860,686,3,'actor',NULL,'[\"Morty\"]'),(389860,1327,4,'actor',NULL,'[\"Ammer\"]'),(389860,178997,5,'director',NULL,NULL),(389860,466175,6,'writer','written by',NULL),(389860,641479,7,'writer','written by',NULL),(389860,316406,8,'producer','producer',NULL),(389860,605775,9,'producer','producer',NULL),(390205,1085861,1,'actor',NULL,'[\"Hyeon-su\"]'),(390205,1050125,2,'actor',NULL,'[\"Woo-shik\"]'),(390205,1508692,3,'actress',NULL,'[\"Eun-ju\"]'),(390205,1508186,4,'actor',NULL,'[\"Hamburger\"]'),(390205,1168564,5,'director',NULL,NULL),(390205,1396406,6,'producer','producer',NULL),(390205,1170223,7,'composer',NULL,NULL),(390205,1509196,8,'cinematographer',NULL,NULL),(390205,453574,9,'production_designer',NULL,NULL),(390221,564415,10,'editor',NULL,NULL),(390221,1503432,1,'actress',NULL,'[\"María Álvarez\"]'),(390221,1503429,2,'actress',NULL,'[\"Lucy Díaz\"]'),(390221,1503466,3,'actor',NULL,'[\"Don Fernando\"]'),(390221,1671035,4,'actress',NULL,'[\"Juana\"]'),(390221,551358,5,'director',NULL,NULL),(390221,583796,6,'producer','producer',NULL),(390221,995768,7,'composer',NULL,NULL),(390221,509390,8,'composer',NULL,NULL),(390221,2681,9,'cinematographer',NULL,NULL),(390384,1503403,1,'actor',NULL,'[\"Aaron\"]'),(390384,1503383,2,'actor',NULL,'[\"Abe\"]'),(390384,1503463,3,'actor',NULL,'[\"Robert\"]'),(390384,881420,4,'actor',NULL,'[\"Phillip\"]'),(390450,818201,10,'producer','producer',NULL),(390450,1287,1,'actress',NULL,'[\"Samantha Howard\"]'),(390450,700856,2,'actor',NULL,'[\"Craig Howard\"]'),(390450,1217,3,'actress',NULL,'[\"J. Lloyd Samuel\"]'),(390450,571326,4,'actor',NULL,'[\"Detective Connors\"]'),(390450,1415540,5,'director',NULL,NULL),(390450,1520912,6,'writer','story',NULL),(390450,745343,7,'writer',NULL,NULL),(390450,476291,8,'producer','producer',NULL),(390450,773176,9,'producer','producer',NULL),(391198,2366,10,'composer',NULL,NULL),(391198,1264,1,'actress',NULL,'[\"Karen\"]'),(391198,4736,2,'actor',NULL,'[\"Doug\"]'),(391198,245112,3,'actress',NULL,'[\"Jennifer\"]'),(391198,544611,4,'actor',NULL,'[\"Matthew\"]'),(391198,1234345,5,'director',NULL,NULL),(391198,839812,6,'writer','screenplay',NULL),(391198,406772,7,'producer','producer',NULL),(391198,600,8,'producer','producer',NULL),(391198,849964,9,'producer','producer',NULL),(392728,1799952,1,'self',NULL,'[\"Self\"]'),(392728,1796515,2,'self',NULL,'[\"Self\"]'),(392728,1798654,3,'self',NULL,'[\"Self\"]'),(392728,1792947,4,'self',NULL,'[\"Self\"]'),(392728,1284117,5,'director',NULL,NULL),(393109,863293,10,'production_designer',NULL,NULL),(393109,330687,1,'actor',NULL,'[\"Brendan\"]'),(393109,1305,2,'actor',NULL,'[\"The Pin\"]'),(393109,211087,3,'actress',NULL,'[\"Emily\"]'),(393109,328709,4,'actress',NULL,'[\"Kara\"]'),(393109,426059,5,'director',NULL,NULL),(393109,74851,6,'producer','producer',NULL),(393109,558933,7,'producer','producer',NULL),(393109,1791103,8,'composer',NULL,NULL),(393109,6911,9,'cinematographer','director of photography',NULL),(393162,866132,10,'producer','producer',NULL),(393162,168,1,'actor',NULL,'[\"Coach Ken Carter\"]'),(393162,327779,2,'actor',NULL,'[\"Timo Cruz\"]'),(393162,722647,3,'actor',NULL,'[\"Damien Carter\"]'),(393162,114532,4,'actor',NULL,'[\"Kenyon Stone\"]'),(393162,141961,5,'director',NULL,NULL),(393162,777043,6,'writer','written by',NULL),(393162,309691,7,'writer','written by',NULL),(393162,301835,8,'producer','producer',NULL),(393162,5367,9,'producer','producer',NULL),(393685,4321,10,'composer',NULL,NULL),(393685,4966,1,'actor',NULL,'[\"Santa\"]'),(393685,808022,2,'actor',NULL,'[\"Nicolas Yuleson\"]'),(393685,211087,3,'actress',NULL,'[\"Mary \'Mac\' Mackenzie\"]'),(393685,191685,4,'actor',NULL,'[\"Grandpa\"]'),(393685,825360,5,'director',NULL,NULL),(393685,1243877,6,'producer','producer',NULL),(393685,502941,7,'producer','producer',NULL),(393685,711840,8,'producer','producer',NULL),(393685,824361,9,'producer','producer',NULL),(393735,66764,10,'writer','screenplay',NULL),(393735,741,1,'actor',NULL,'[\"Dave Douglas\"]'),(393735,4862,2,'actress',NULL,'[\"Rebecca Douglas\"]'),(393735,452929,3,'actor',NULL,'[\"Baxter\"]'),(393735,340720,4,'actress',NULL,'[\"Carly Douglas\"]'),(393735,5367,5,'director',NULL,NULL),(393735,926727,6,'writer','screenplay',NULL),(393735,926729,7,'writer','screenplay',NULL),(393735,734900,8,'writer','screenplay',NULL),(393735,24856,9,'writer','screenplay',NULL),(393956,82366,1,'actress',NULL,'[\"Barbi\",\"Viva-Rick\'s wife\"]'),(393956,1525854,2,'actor',NULL,'[\"Rick\",\"Barbi\'s husband\"]'),(393956,110324,3,'actress',NULL,'[\"Sheila\",\"Candy-Mark\'s wife\"]'),(393956,1239627,4,'actor',NULL,'[\"Mark\",\"Sheila\'s husband\"]'),(393956,506999,5,'cinematographer',NULL,NULL),(395169,345991,10,'composer',NULL,NULL),(395169,332,1,'actor',NULL,'[\"Paul Rusesabagina\"]'),(395169,645683,2,'actress',NULL,'[\"Tatiana Rusesabagina\"]'),(395169,1618,3,'actor',NULL,'[\"Jack Daglish\"]'),(395169,1796730,4,'actor',NULL,'[\"Policeman\"]'),(395169,313623,5,'director',NULL,NULL),(395169,669311,6,'writer','written by',NULL),(395169,457715,7,'producer','producer',NULL),(395169,2148374,8,'composer',NULL,NULL),(395169,340003,9,'composer',NULL,NULL),(395251,7037,10,'cinematographer','director of photography',NULL),(395251,1447,1,'actor',NULL,'[\"Max Bialystock\"]'),(395251,111,2,'actor',NULL,'[\"Leo Bloom\"]'),(395251,235,3,'actress',NULL,'[\"Ulla\"]'),(395251,2071,4,'actor',NULL,'[\"Franz Liebkind\"]'),(395251,834893,5,'director',NULL,NULL),(395251,316,6,'writer','screenplay',NULL),(395251,576070,7,'writer','screenplay',NULL),(395251,762674,8,'producer','producer',NULL),(395251,446409,9,'composer',NULL,NULL),(395584,61045,10,'composer',NULL,NULL),(395584,354085,1,'actor',NULL,'[\"Captain Spaulding\"]'),(395584,600667,2,'actress',NULL,'[\"Baby\"]'),(395584,608405,3,'actor',NULL,'[\"Otis\"]'),(395584,1235,4,'actor',NULL,'[\"Sheriff Wydell\"]'),(395584,957772,5,'director',NULL,NULL),(395584,254291,6,'producer','producer',NULL),(395584,332308,7,'producer','producer',NULL),(395584,576438,8,'producer','producer',NULL),(395584,645164,9,'producer','producer',NULL),(395699,322802,10,'producer','producer',NULL),(395699,4874,1,'actor',NULL,'[\"Shane Wolfe\"]'),(395699,811242,2,'actress',NULL,'[\"Zoe Plummer\"]'),(395699,1302735,3,'actor',NULL,'[\"Seth Plummer\"]'),(395699,4951,4,'actor',NULL,'[\"Dwayne Murney\"]'),(395699,788202,5,'director',NULL,NULL),(395699,502073,6,'writer','written by',NULL),(395699,304830,7,'writer','written by',NULL),(395699,53388,8,'producer','producer',NULL),(395699,83696,9,'producer','producer',NULL),(395972,763395,10,'composer',NULL,NULL),(395972,234,1,'actress',NULL,'[\"Josey Aimes\"]'),(395972,719637,2,'actor',NULL,'[\"Bobby Sharp\"]'),(395972,531,3,'actress',NULL,'[\"Glory\"]'),(395972,193524,4,'actor',NULL,'[\"Sammy Aimes\"]'),(395972,138927,5,'director',NULL,NULL),(395972,782739,6,'writer','screenplay',NULL),(395972,1538319,7,'writer','book \"Class Action: The Story of Lois Jensen and the Landmark Case That Changed Sexual Harassment Law\"',NULL),(395972,1546016,8,'writer','book \"Class Action: The Story of Lois Jensen and the Landmark Case That Changed Sexual Harassment Law\"',NULL),(395972,917059,9,'producer','producer',NULL),(396171,459517,10,'composer',NULL,NULL),(396171,924210,1,'actor',NULL,'[\"Jean-Baptiste Grenouille\"]'),(396171,163,2,'actor',NULL,'[\"Giuseppe Baldini\"]'),(396171,614,3,'actor',NULL,'[\"Richis\"]'),(396171,16852,4,'actor',NULL,'[\"Court Official\"]'),(396171,878756,5,'director',NULL,NULL),(396171,1949,6,'writer','screenplay',NULL),(396171,251536,7,'writer','screenplay',NULL),(396171,845752,8,'writer','novel \"Das Parfum\"',NULL),(396171,374112,9,'composer',NULL,NULL),(396184,960321,10,'editor',NULL,NULL),(396184,586568,1,'actor',NULL,'[\"Tonny\"]'),(396184,843237,2,'actor',NULL,'[\"Smeden\"]'),(396184,1830443,3,'actress',NULL,'[\"Charlotte\"]'),(396184,1795793,4,'actor',NULL,'[\"Ø\"]'),(396184,716347,5,'director',NULL,NULL),(396184,200546,6,'producer','producer',NULL),(396184,676238,7,'composer',NULL,NULL),(396184,845612,8,'cinematographer',NULL,NULL),(396184,418011,9,'editor',NULL,NULL),(396269,659123,10,'producer','producer',NULL),(396269,5562,1,'actor',NULL,'[\"John Beckwith\"]'),(396269,681,2,'actor',NULL,'[\"Jeremy Grey\"]'),(396269,1046097,3,'actress',NULL,'[\"Claire Cleary\"]'),(396269,686,4,'actor',NULL,'[\"Secretary Cleary\"]'),(396269,229694,5,'director',NULL,NULL),(396269,264520,6,'writer','written by',NULL),(396269,1462097,7,'writer','written by',NULL),(396269,9222,8,'producer','producer',NULL),(396269,506597,9,'producer','producer',NULL),(396555,1950901,10,'writer','screenplay by',NULL),(396555,360743,1,'actor',NULL,'[\"Lewis\"]'),(396555,1130617,2,'actor',NULL,'[\"Wilbur\"]'),(396555,291,3,'actress',NULL,'[\"Mildred\"]'),(396555,1627748,4,'actor',NULL,'[\"Lewis\"]'),(396555,27459,5,'director',NULL,NULL),(396555,7075,6,'writer','screenplay by',NULL),(396555,90614,7,'writer','screenplay by',NULL),(396555,2320658,8,'writer','screenplay by',NULL),(396555,1977355,9,'writer','screenplay by',NULL),(396652,377454,10,'cinematographer','director of photography',NULL),(396652,5502,1,'actress',NULL,'[\"Casey Carlyle\"]'),(396652,326,2,'actress',NULL,'[\"Tina Harwood\"]'),(396652,89720,3,'actor',NULL,'[\"Teddy Harwood\"]'),(396652,349,4,'actress',NULL,'[\"Joan Carlyle\"]'),(396652,299563,5,'director',NULL,NULL),(396652,127690,6,'writer','story',NULL),(396652,204678,7,'writer','story',NULL),(396652,424660,8,'producer','producer',NULL),(396652,65100,9,'composer',NULL,NULL),(396707,994875,10,'producer','producer',NULL),(396707,344435,1,'actor',NULL,'[\"Sir Benjamin Merryweather\",\"Sir Wrolf Merryweather\"]'),(396707,2301950,2,'actress',NULL,'[\"Maria Merryweather\"]'),(396707,347,3,'actor',NULL,'[\"Coeur De Noir\"]'),(396707,828980,4,'actress',NULL,'[\"Miss Heliotrope\"]'),(396707,190780,5,'director',NULL,NULL),(396707,1413455,6,'writer','screenplay by',NULL),(396707,16895,7,'writer','screenplay by',NULL),(396707,332146,8,'writer','adapted from the book \"The Little White Horse\" by',NULL),(396707,184605,9,'producer','producer',NULL),(397065,5428,10,'producer','producer',NULL),(397065,614877,1,'actor',NULL,'[\"Nick\"]'),(397065,385296,2,'actress',NULL,'[\"Paige\"]'),(397065,193846,3,'actress',NULL,'[\"Carly Jones\"]'),(397065,887144,4,'actor',NULL,'[\"Bo\"]'),(397065,1429471,5,'director',NULL,NULL),(397065,67676,6,'writer','story',NULL),(397065,370937,7,'writer','screenplay',NULL),(397065,370928,8,'writer','screenplay',NULL),(397065,1206265,9,'producer','producer',NULL),(397101,790481,10,'composer',NULL,NULL),(397101,5028,1,'actress',NULL,'[\"Caroline Ellis\"]'),(397101,765597,2,'actor',NULL,'[\"Luke Marshall\"]'),(397101,117146,3,'actress',NULL,'[\"Jill\"]'),(397101,1687,4,'actress',NULL,'[\"Violet Devereaux\"]'),(397101,812200,5,'director',NULL,NULL),(397101,472567,6,'writer','written by',NULL),(397101,90394,7,'producer','producer',NULL),(397101,787834,8,'producer','producer',NULL),(397101,792049,9,'producer','producer',NULL),(397313,756944,10,'writer','film Nankyoku Monogatari',NULL),(397313,908094,1,'actor',NULL,'[\"Jerry Shepard\"]'),(397313,4755,2,'actor',NULL,'[\"Charlie Cooper\"]'),(397313,339304,3,'actor',NULL,'[\"Davis McClaren\"]'),(397313,1291227,4,'actress',NULL,'[\"Katie\"]'),(397313,550881,5,'director',NULL,NULL),(397313,226547,6,'writer','screenplay',NULL),(397313,410945,7,'writer','film Nankyoku Monogatari',NULL),(397313,475542,8,'writer','film Nankyoku Monogatari',NULL),(397313,633986,9,'writer','film Nankyoku Monogatari',NULL),(397535,926824,10,'producer','producer',NULL),(397535,955471,1,'actress',NULL,'[\"Sayuri\"]'),(397535,913822,2,'actor',NULL,'[\"Chairman\"]'),(397535,706,3,'actress',NULL,'[\"Mameha\"]'),(397535,1797214,4,'actress',NULL,'[\"Chiyo\"]'),(397535,551128,5,'director',NULL,NULL),(397535,842523,6,'writer','screenplay',NULL),(397535,1006264,7,'writer','book',NULL),(397535,279651,8,'producer','producer',NULL),(397535,229,9,'producer','producer',NULL),(397892,64179,10,'cinematographer',NULL,NULL),(397892,237,1,'actor',NULL,'[\"Bolt\"]'),(397892,1415323,2,'actress',NULL,'[\"Penny\"]'),(397892,261435,3,'actress',NULL,'[\"Mittens\"]'),(397892,910559,4,'actor',NULL,'[\"Rhino\"]'),(397892,397174,5,'director',NULL,NULL),(397892,930261,6,'director',NULL,NULL),(397892,1557594,7,'writer','screenplay by',NULL),(397892,1192875,8,'producer','producer',NULL),(397892,694173,9,'composer',NULL,NULL),(398165,144841,10,'composer',NULL,NULL),(398165,1191,1,'actor',NULL,'[\"Paul Crewe\"]'),(398165,608,2,'actor',NULL,'[\"Coach Nate Scarborough\"]'),(398165,1674,3,'actor',NULL,'[\"Caretaker\"]'),(398165,625099,4,'actor',NULL,'[\"Megget\"]'),(398165,781842,5,'director',NULL,NULL),(398165,748665,6,'writer','story',NULL),(398165,944003,7,'writer',NULL,NULL),(398165,1417242,8,'writer','screenplay',NULL),(398165,316406,9,'producer','producer',NULL),(398286,174807,10,'producer','producer',NULL),(398286,601553,1,'actress',NULL,'[\"Rapunzel\"]'),(398286,1157048,2,'actor',NULL,'[\"Flynn Rider\"]'),(398286,614220,3,'actress',NULL,'[\"Mother Gothel\"]'),(398286,579,4,'actor',NULL,'[\"Stabbington Brother\"]'),(398286,1977355,5,'director',NULL,NULL),(398286,397174,6,'director',NULL,NULL),(398286,1557594,7,'writer','screenplay by',NULL),(398286,342278,8,'writer','based upon the fairy tale \"Rapunzel\" by',NULL),(398286,342303,9,'writer','based upon the fairy tale \"Rapunzel\" by',NULL),(398375,5687,10,'cinematographer','director of photography',NULL),(398375,98,1,'actress',NULL,'[\"Sarah Huttinger\"]'),(398375,749263,2,'actor',NULL,'[\"Jeff Daly\"]'),(398375,511,3,'actress',NULL,'[\"Katharine Richelieu\"]'),(398375,126,4,'actor',NULL,'[\"Beau Burroughs\"]'),(398375,1661,5,'director',NULL,NULL),(398375,341372,6,'writer','written by',NULL),(398375,963211,7,'producer','producer',NULL),(398375,918463,8,'producer','producer',NULL),(398375,3299,9,'composer',NULL,NULL),(398712,818373,10,'producer','producer',NULL),(398712,160,1,'actor',NULL,'[\"Sgt. Jake Roenick\"]'),(398712,401,2,'actor',NULL,'[\"Marion Bishop\"]'),(398712,321,3,'actor',NULL,'[\"Capt. Marcus Duvall\"]'),(398712,4742,4,'actress',NULL,'[\"Dr. Alex Sabian\"]'),(398712,724938,5,'director',NULL,NULL),(398712,118,6,'writer','earlier film',NULL),(398712,218621,7,'writer','screenplay',NULL),(398712,146434,8,'producer','producer',NULL),(398712,798711,9,'producer','producer',NULL),(398808,509386,10,'producer','producer',NULL),(398808,1242688,1,'actor',NULL,'[\"Jess Aarons\"]'),(398808,1455681,2,'actress',NULL,'[\"Leslie Burke\"]'),(398808,221046,3,'actress',NULL,'[\"Ms. Edmunds\"]'),(398808,1598,4,'actor',NULL,'[\"Jack Aarons\"]'),(398808,190780,5,'director',NULL,NULL),(398808,830969,6,'writer','screenplay',NULL),(398808,1547579,7,'writer','screenplay',NULL),(398808,665505,8,'writer','book',NULL),(398808,1222477,9,'producer','producer',NULL),(398913,27271,10,'producer','producer',NULL),(398913,5326,1,'actress',NULL,'[\"Tina Armstrong\"]'),(398913,1226817,2,'actress',NULL,'[\"Kasumi\"]'),(398913,141931,3,'actress',NULL,'[\"Helena Douglas\"]'),(398913,883480,4,'actress',NULL,'[\"Christie Allen\"]'),(398913,477035,5,'director',NULL,NULL),(398913,493369,6,'writer','screenplay',NULL),(398913,1604669,7,'writer','screenplay',NULL),(398913,1603708,8,'writer','screenplay',NULL),(398913,22913,9,'producer','producer',NULL),(399146,818940,10,'producer','producer',NULL),(399146,1557,1,'actor',NULL,'[\"Tom Stall\"]'),(399146,4742,2,'actress',NULL,'[\"Edie Stall\"]'),(399146,438,3,'actor',NULL,'[\"Carl Fogarty\"]'),(399146,458,4,'actor',NULL,'[\"Richie Cusack\"]'),(399146,343,5,'director',NULL,NULL),(399146,905957,6,'writer','graphic novel',NULL),(399146,1583671,7,'writer','graphic novel',NULL),(399146,647939,8,'writer','screenplay',NULL),(399146,70454,9,'producer','producer',NULL),(399201,662748,10,'producer','producer',NULL),(399201,424060,1,'actress',NULL,'[\"Jordan Two Delta\",\"Sarah Jordan\"]'),(399201,191,2,'actor',NULL,'[\"Lincoln Six Echo\",\"Tom Lincoln\"]'),(399201,5023,3,'actor',NULL,'[\"Albert Laurent\"]'),(399201,114,4,'actor',NULL,'[\"James McCord\"]'),(399201,881,5,'director',NULL,NULL),(399201,1047021,6,'writer','story by',NULL),(399201,476064,7,'writer','screenplay by',NULL),(399201,649460,8,'writer','screenplay by',NULL),(399201,117290,9,'producer','producer',NULL),(399295,684620,10,'composer',NULL,NULL),(399295,115,1,'actor',NULL,'[\"Yuri Orlov\"]'),(399295,160,2,'actor',NULL,'[\"Jack Valentine\"]'),(399295,1467,3,'actor',NULL,'[\"Vitaly Orlov\"]'),(399295,5256,4,'actress',NULL,'[\"Ava Fontaine\"]'),(399295,629272,5,'director',NULL,NULL),(399295,326496,6,'producer','producer',NULL),(399295,343266,7,'producer','producer',NULL),(399295,730932,8,'producer','producer',NULL),(399295,746041,9,'producer','producer',NULL),(399412,684620,10,'composer',NULL,NULL),(399412,833488,1,'actress',NULL,'[\"Nina\"]'),(399412,612906,2,'actress',NULL,'[\"Eulália\"]'),(399412,1164678,3,'actress',NULL,'[\"Ana\"]'),(399412,1213036,4,'actress',NULL,'[\"Sofia\"]'),(399412,1104944,5,'director',NULL,NULL),(399412,32645,6,'writer',NULL,NULL),(399412,234502,7,'writer','novel \"Crime and Punishment\"',NULL),(399412,1426619,8,'producer','producer',NULL),(399412,347776,9,'producer','executive producer',NULL),(400497,991423,10,'writer','story',NULL),(400497,517820,1,'actress',NULL,'[\"Maggie Peyton\"]'),(400497,474,2,'actor',NULL,'[\"Ray Peyton Sr.\"]'),(400497,385644,3,'actress',NULL,'[\"Sally\"]'),(400497,5227,4,'actor',NULL,'[\"Ray Peyton Jr.\"]'),(400497,1286340,5,'director',NULL,NULL),(400497,502073,6,'writer','screenplay',NULL),(400497,304830,7,'writer','screenplay',NULL),(400497,332184,8,'writer','screenplay',NULL),(400497,587692,9,'writer','screenplay',NULL),(400717,560894,10,'writer','screenplay by',NULL),(400717,5110,1,'actor',NULL,'[\"Elliot\"]'),(400717,1454,2,'actor',NULL,'[\"Boog\"]'),(400717,5226,3,'actress',NULL,'[\"Beth\"]'),(400717,641,4,'actor',NULL,'[\"Shaw\"]'),(400717,21249,5,'director',NULL,NULL),(400717,191717,6,'director',NULL,NULL),(400717,820934,7,'director','co-director',NULL),(400717,70368,8,'writer','screenplay by',NULL),(400717,1943855,9,'writer','screenplay by',NULL),(401085,894411,10,'production_designer',NULL,NULL),(401085,194788,1,'actor',NULL,'[\"Gervais Beaulieu\"]'),(401085,343082,2,'actor',NULL,'[\"Zachary Beaulieu 15 à 21 ans\"]'),(401085,698921,3,'actress',NULL,'[\"Laurianne Beaulieu\"]'),(401085,1588828,4,'actor',NULL,'[\"Zachary Beaulieu 6 à 8 ans\"]'),(401085,885249,5,'director',NULL,NULL),(401085,1583617,6,'writer','in collaboration with',NULL),(401085,1570770,7,'producer','producer',NULL),(401085,5798,8,'cinematographer','director of photography',NULL),(401085,433274,9,'editor',NULL,NULL),(401233,437573,10,'producer','producer',NULL),(401233,461981,1,'actress',NULL,'[\"Deyunan\"]'),(401233,467558,2,'actor',NULL,'[\"Buriareosu\"]'),(401233,1124112,3,'actress',NULL,'[\"Hitomi\"]'),(401233,468708,4,'actress',NULL,'[\"Atena\"]'),(401233,32925,5,'director',NULL,NULL),(401233,794385,6,'writer','comic',NULL),(401233,1602468,7,'writer','screenplay',NULL),(401233,1591006,8,'writer','screenplay',NULL),(401233,1092332,9,'producer','producer',NULL),(401383,134508,10,'composer',NULL,NULL),(401383,23832,1,'actor',NULL,'[\"Jean-Do\"]'),(401383,782561,2,'actress',NULL,'[\"Céline\"]'),(401383,189887,3,'actress',NULL,'[\"Henriette Roi\"]'),(401383,175931,4,'actress',NULL,'[\"Claude\"]'),(401383,773603,5,'director',NULL,NULL),(401383,367838,6,'writer','screenplay',NULL),(401383,1568285,7,'writer','book \"Le scaphandre et le papillon\"',NULL),(401383,5086,8,'producer','producer',NULL),(401383,453091,9,'producer','producer',NULL),(401385,656739,1,'actor',NULL,'[\"Paul Johnson\"]'),(401385,1562,2,'actress',NULL,'[\"Maggie Butler\"]'),(401385,163659,3,'actor',NULL,'[\"Russell Trotter\"]'),(401385,1491,4,'actress',NULL,'[\"Susan\"]'),(401385,1221599,5,'producer','producer',NULL),(401385,842713,6,'composer',NULL,NULL),(401385,538610,7,'cinematographer',NULL,NULL),(401385,553195,8,'editor',NULL,NULL),(401385,1562865,9,'production_designer',NULL,NULL),(401398,737241,10,'writer','story by',NULL),(401398,911320,1,'actor',NULL,'[\"Kronk\"]'),(401398,1808,2,'actress',NULL,'[\"Ms. Birdwell\"]'),(401398,457755,3,'actress',NULL,'[\"Yzma\"]'),(401398,5450,4,'actor',NULL,'[\"Kuzco\"]'),(401398,1291225,5,'director',NULL,NULL),(401398,1074748,6,'director',NULL,NULL),(401398,824655,7,'director','co-director',NULL),(401398,1902232,8,'writer','story by',NULL),(401398,1713427,9,'writer','story by',NULL),(401711,1054,10,'director',NULL,NULL),(401711,300,1,'actress',NULL,'[\"Suzanne (segment \\\"Place des Victoires\\\")\"]'),(401711,914455,2,'actress',NULL,'[\"La maîtresse (segment \\\"Bastille\\\")\"]'),(401711,756203,3,'actress',NULL,'[\"Claire (segment \\\"Parc Monceau\\\")\"]'),(401711,272,4,'actress',NULL,'[\"Fanny (segment \\\"Pigalle\\\")\"]'),(401711,801,5,'director',NULL,NULL),(401711,41474,6,'director',NULL,NULL),(401711,149446,7,'director',NULL,NULL),(401711,158984,8,'director',NULL,NULL),(401711,1053,9,'director',NULL,NULL),(401729,606640,10,'producer','producer',NULL),(401729,2018237,1,'actor',NULL,'[\"John Carter\"]'),(401729,1211488,2,'actress',NULL,'[\"Dejah Thoris\"]'),(401729,353,3,'actor',NULL,'[\"Tars Tarkas\"]'),(401729,608090,4,'actress',NULL,'[\"Sola\"]'),(401729,4056,5,'director',NULL,NULL),(401729,28764,6,'writer','screenplay by',NULL),(401729,149290,7,'writer','screenplay by',NULL),(401729,123194,8,'writer','based on the story \"A Princess of Mars\" by',NULL),(401729,172491,9,'producer','producer',NULL),(401792,6251,10,'composer',NULL,NULL),(401792,620,1,'actor',NULL,'[\"Marv\"]'),(401792,654110,2,'actor',NULL,'[\"Dwight\"]'),(401792,246,3,'actor',NULL,'[\"Hartigan\"]'),(401792,4695,4,'actress',NULL,'[\"Nancy\"]'),(401792,588340,5,'director',NULL,NULL),(401792,233,6,'director','special guest director',NULL),(401792,1675,7,'director',NULL,NULL),(401792,42882,8,'producer','producer',NULL),(401792,2201,9,'composer',NULL,NULL),(401997,833873,10,'producer','producer',NULL),(401997,177933,1,'actor',NULL,'[\"Robert Hanssen\"]'),(401997,202,2,'actor',NULL,'[\"Eric O\'Neill\"]'),(401997,371660,3,'actor',NULL,'[\"Dean Plesac\"]'),(401997,1473,4,'actress',NULL,'[\"Kate Burroughs\"]'),(401997,712753,5,'director',NULL,NULL),(401997,563240,6,'writer','screenplay',NULL),(401997,745360,7,'writer','screenplay',NULL),(401997,472256,8,'producer','producer',NULL),(401997,628352,9,'producer','producer',NULL),(402022,329084,10,'producer','producer',NULL),(402022,234,1,'actress',NULL,'[\"Aeon Flux\"]'),(402022,531,2,'actress',NULL,'[\"Handler\"]'),(402022,645683,3,'actress',NULL,'[\"Sithandra\"]'),(402022,190744,4,'actor',NULL,'[\"Trevor Goodchild\"]'),(402022,476201,5,'director',NULL,NULL),(402022,6534,6,'writer','written by',NULL),(402022,542062,7,'writer','written by',NULL),(402022,161285,8,'writer','characters',NULL),(402022,301835,9,'producer','producer',NULL),(402115,347882,10,'cinematographer',NULL,NULL),(402115,770726,1,'actress',NULL,'[\"Dóra\"]'),(402115,229957,2,'actress',NULL,'[\"Zsófi\"]'),(402115,190800,3,'actor',NULL,'[\"Tamás\"]'),(402115,315195,4,'actor',NULL,'[\"Paskó\"]'),(402115,323558,5,'director',NULL,NULL),(402115,1472530,6,'writer',NULL,NULL),(402115,375322,7,'writer',NULL,NULL),(402115,477585,8,'producer','producer',NULL),(402115,1759257,9,'composer',NULL,NULL),(402158,2236676,10,'writer','with the collaboration of',NULL),(402158,606,1,'actor',NULL,'[\"Jean-Louis Schiffer\"]'),(402158,431332,2,'actress',NULL,'[\"Anna Heymes\"]'),(402158,704474,3,'actor',NULL,'[\"Paul Nerteaux\"]'),(402158,603090,4,'actress',NULL,'[\"Mathilde Urano\"]'),(402158,619599,5,'director',NULL,NULL),(402158,335096,6,'writer','based on the novel by: \"L\'empire des loups\"',NULL),(402158,2010,7,'writer','scenario, adaptation and dialogue',NULL),(402158,647374,8,'writer','scenario, adaptation and dialogue',NULL),(402158,584770,9,'writer','with the collaboration of',NULL),(402399,181650,10,'editor',NULL,NULL),(402399,268199,1,'actor',NULL,'[\"Captain Smith\"]'),(402399,452963,2,'actress',NULL,'[\"Pocahontas\"]'),(402399,1626,3,'actor',NULL,'[\"Captain Newport\"]'),(402399,288,4,'actor',NULL,'[\"John Rolfe\"]'),(402399,517,5,'director',NULL,NULL),(402399,338320,6,'producer','producer',NULL),(402399,35,7,'composer',NULL,NULL),(402399,523881,8,'cinematographer','director of photography',NULL),(402399,156816,9,'editor',NULL,NULL),(402894,330428,10,'producer','producer',NULL),(402894,5132,1,'actor',NULL,'[\"Casanova\"]'),(402894,1092227,2,'actress',NULL,'[\"Francesca\"]'),(402894,460,3,'actor',NULL,'[\"Pucci\"]'),(402894,1624,4,'actor',NULL,'[\"Paprizzio\"]'),(402894,2120,5,'director',NULL,NULL),(402894,368774,6,'writer','screenplay',NULL),(402894,1575914,7,'writer','screenplay',NULL),(402894,188165,8,'writer','story',NULL),(402894,66530,9,'producer','producer',NULL),(403358,5734020,10,'producer','producer',NULL),(403358,450975,1,'actor',NULL,'[\"Anton\"]'),(403358,579828,2,'actor',NULL,'[\"Geser\"]'),(403358,1115009,3,'actress',NULL,'[\"Svetlana\"]'),(403358,957749,4,'actor',NULL,'[\"Otets Kosti\"]'),(403358,67457,5,'director',NULL,NULL),(403358,436164,6,'writer','screenplay',NULL),(403358,1573262,7,'writer','novel',NULL),(403358,259712,8,'producer','producer',NULL),(403358,538763,9,'producer','producer',NULL),(403508,224145,10,'producer','producer',NULL),(403508,848554,1,'actress',NULL,'[\"Tibby\"]'),(403508,88127,2,'actress',NULL,'[\"Lena\"]'),(403508,1065229,3,'actress',NULL,'[\"Carmen\"]'),(403508,515116,4,'actress',NULL,'[\"Bridget\"]'),(403508,477129,5,'director',NULL,NULL),(403508,1569351,6,'writer','novel',NULL),(403508,258286,7,'writer','screenplay',NULL),(403508,151358,8,'writer','screenplay',NULL),(403508,153744,9,'producer','producer',NULL),(403702,161636,10,'cinematographer','director of photography',NULL),(403702,148418,1,'actor',NULL,'[\"Nick Twisp\",\"Francois\"]'),(403702,234668,2,'actress',NULL,'[\"Sheeni Saunders\"]'),(403702,5443,3,'actress',NULL,'[\"Estelle Twisp\"]'),(403702,302108,4,'actor',NULL,'[\"Jerry\"]'),(403702,37708,5,'director',NULL,NULL),(403702,1122978,6,'writer','screenplay',NULL),(403702,668276,7,'writer','novel \"Youth in Revolt: the Adventures of Nick Twisp\"',NULL),(403702,674303,8,'producer','producer',NULL),(403702,1067825,9,'composer',NULL,NULL),(403703,1280767,10,'writer','screenplay',NULL),(403703,337751,1,'actor',NULL,'[\"Yugi Moto\",\"Yami Yugi\"]'),(403703,835688,2,'actor',NULL,'[\"Seto Kaiba\"]'),(403703,83671,3,'actress',NULL,'[\"Tea Garnder\"]'),(403703,969153,4,'actor',NULL,'[\"Tristan Taylor\"]'),(403703,1022334,5,'director',NULL,NULL),(403703,1227393,6,'writer','screenplay',NULL),(403703,1227651,7,'writer','screenplay',NULL),(403703,343570,8,'writer','screenplay',NULL),(403703,8733387,9,'writer','original story',NULL),(404032,1246087,10,'producer','producer',NULL),(404032,1473,1,'actress',NULL,'[\"Erin Bruner\"]'),(404032,929489,2,'actor',NULL,'[\"Father Moore\"]'),(404032,13037,3,'actress',NULL,'[\"Dr. Adani\"]'),(404032,1714,4,'actor',NULL,'[\"Ethan Thomas\"]'),(404032,220600,5,'director',NULL,NULL),(404032,90199,6,'writer','written by',NULL),(404032,4927,7,'producer','producer',NULL),(404032,524342,8,'producer','producer',NULL),(404032,742347,9,'producer','producer',NULL),(404203,130760,10,'cinematographer','director of photography',NULL),(404203,701,1,'actress',NULL,'[\"Sarah Pierce\"]'),(404203,124,2,'actress',NULL,'[\"Kathy Adamson\"]'),(404203,933940,3,'actor',NULL,'[\"Brad Adamson\"]'),(404203,355097,4,'actor',NULL,'[\"Ronnie J. McGorvey\"]'),(404203,276062,5,'director',NULL,NULL),(404203,674909,6,'writer','screenplay',NULL),(404203,74100,7,'producer','producer',NULL),(404203,947695,8,'producer','producer',NULL),(404203,2353,9,'composer',NULL,NULL),(404978,2788035,10,'producer','producer',NULL),(404978,147,1,'actor',NULL,'[\"Harry Deane\"]'),(404978,139,2,'actress',NULL,'[\"PJ Puznowski\"]'),(404978,614,3,'actor',NULL,'[\"Lionel Shabandar\"]'),(404978,1804,4,'actor',NULL,'[\"Zaidenweber\"]'),(404978,1355,5,'director',NULL,NULL),(404978,1054,6,'writer','screenplay',NULL),(404978,1053,7,'writer','screenplay',NULL),(404978,140987,8,'writer','short story',NULL),(404978,516465,9,'producer','producer',NULL),(405094,91686,10,'cinematographer',NULL,NULL),(405094,618057,1,'actor',NULL,'[\"Hauptmann Gerd Wiesler\"]'),(405094,311476,2,'actress',NULL,'[\"Christa-Maria Sieland\"]'),(405094,462407,3,'actor',NULL,'[\"Georg Dreyman\"]'),(405094,876300,4,'actor',NULL,'[\"Oberstleutnant Anton Grubitz\"]'),(405094,3697,5,'director',NULL,NULL),(405094,73875,6,'producer','producer',NULL),(405094,927270,7,'producer','producer',NULL),(405094,1098869,8,'composer',NULL,NULL),(405094,1189,9,'composer',NULL,NULL),(405159,185088,10,'editor',NULL,NULL),(405159,5476,1,'actress',NULL,'[\"Maggie Fitzgerald\"]'),(405159,142,2,'actor',NULL,'[\"Frankie Dunn\"]'),(405159,151,3,'actor',NULL,'[\"Eddie Scrap-Iron Dupris\"]'),(405159,59431,4,'actor',NULL,'[\"Danger Barch\"]'),(405159,353673,5,'writer','screenplay',NULL),(405159,101801,6,'writer','stories from Rope Burns',NULL),(405159,742347,7,'producer','producer',NULL),(405159,748665,8,'producer','producer',NULL),(405159,827869,9,'cinematographer','director of photography',NULL),(405296,908323,10,'producer','producer',NULL),(405296,206,1,'actor',NULL,'[\"Bob Arctor\"]'),(405296,213,2,'actress',NULL,'[\"Donna Hawthorne\"]'),(405296,375,3,'actor',NULL,'[\"James Barris\"]'),(405296,168262,4,'actor',NULL,'[\"Charles Freck\"]'),(405296,500,5,'director',NULL,NULL),(405296,1140,6,'writer','novel \"A Scanner Darkly\"',NULL),(405296,657921,7,'producer','producer',NULL),(405296,808819,8,'producer','producer',NULL),(405296,831098,9,'producer','producer',NULL),(405325,315974,10,'composer',NULL,NULL),(405325,621,1,'actor',NULL,'[\"Steve\",\"The Commander\"]'),(405325,593,2,'actress',NULL,'[\"Josie\",\"Jetstream\"]'),(405325,29400,3,'actor',NULL,'[\"Will Stronghold\"]'),(405325,1263939,4,'actress',NULL,'[\"Layla\"]'),(405325,593610,5,'director',NULL,NULL),(405325,1467549,6,'writer','written by',NULL),(405325,774792,7,'writer','written by',NULL),(405325,566407,8,'writer','written by',NULL),(405325,348151,9,'producer','producer',NULL),(405336,5240,10,'composer',NULL,NULL),(405336,425005,1,'actor',NULL,'[\"Boxer Santaros\",\"Jericho Cane\"]'),(405336,1264,2,'actress',NULL,'[\"Krysta Kapowski\",\"Krysta Now\"]'),(405336,5405,3,'actor',NULL,'[\"Roland Taverner\",\"Ronald Taverner\"]'),(405336,24782,4,'self',NULL,'[\"Self\"]'),(405336,446819,5,'director',NULL,NULL),(405336,1330621,6,'producer','producer',NULL),(405336,572014,7,'producer','producer',NULL),(405336,604811,8,'producer','producer',NULL),(405336,722489,9,'producer','producer',NULL),(405422,924544,10,'editor',NULL,NULL),(405422,136797,1,'actor',NULL,'[\"Andy\"]'),(405422,1416,2,'actress',NULL,'[\"Trish\"]'),(405422,748620,3,'actor',NULL,'[\"David\"]'),(405422,539082,4,'actor',NULL,'[\"Jay\"]'),(405422,31976,5,'director',NULL,NULL),(405422,732024,6,'producer','producer',NULL),(405422,870106,7,'producer','producer',NULL),(405422,1015867,8,'composer',NULL,NULL),(405422,5726,9,'cinematographer','director of photography',NULL),(405508,6246,10,'composer',NULL,NULL),(405508,451148,1,'actor',NULL,'[\"Daljeet \'DJ\'\",\"Chandrashekhar Azad\"]'),(405508,1675786,2,'actress',NULL,'[\"Sonia\",\"Durgavati Devi\"]'),(405508,1413459,3,'actor',NULL,'[\"Karan R. Singhania\",\"Bhagat Singh\"]'),(405508,430817,4,'actor',NULL,'[\"Sukhi\",\"Rajguru\"]'),(405508,1018493,5,'director',NULL,NULL),(405508,1028832,6,'writer','screenplay',NULL),(405508,1149334,7,'writer','dialogue',NULL),(405508,659238,8,'writer','story',NULL),(405508,780098,9,'producer','producer',NULL),(405676,35,10,'composer',NULL,NULL),(405676,576,1,'actor',NULL,'[\"Willie Stark\"]'),(405676,179,2,'actor',NULL,'[\"Jack Burden\"]'),(405676,701,3,'actress',NULL,'[\"Anne Stanton\"]'),(405676,164,4,'actor',NULL,'[\"Judge Irwin\"]'),(405676,1873,5,'director',NULL,NULL),(405676,913014,6,'writer','novel',NULL),(405676,1590776,7,'producer','producer',NULL),(405676,5219,8,'producer','producer',NULL),(405676,1103781,9,'producer','producer',NULL),(406158,2227,10,'composer',NULL,NULL),(406158,194,1,'actress',NULL,'[\"Evelyn Ryan\"]'),(406158,437,2,'actor',NULL,'[\"Kelly Ryan\"]'),(406158,368,3,'actress',NULL,'[\"Dortha Schaefer\"]'),(406158,605080,4,'actor',NULL,'[\"Bruce Ryan at 16 yrs\"]'),(406158,26862,5,'director',NULL,NULL),(406158,1678495,6,'writer','book \"The Prize Winner of Defiance, Ohio: How My Mother Raised 10 Kids on 25 Words or Less\"',NULL),(406158,710759,7,'producer','producer',NULL),(406158,823330,8,'producer','producer',NULL),(406158,709,9,'producer','producer',NULL),(406375,472256,10,'producer','producer',NULL),(406375,1242688,1,'actor',NULL,'[\"Walter\"]'),(406375,1501050,2,'actor',NULL,'[\"Danny\"]'),(406375,1009277,3,'actor',NULL,'[\"Astronaut\"]'),(406375,209,4,'actor',NULL,'[\"Dad\"]'),(406375,269463,5,'director',NULL,NULL),(406375,885575,6,'writer','book',NULL),(406375,462895,7,'writer','screenplay',NULL),(406375,436960,8,'writer','screenplay',NULL),(406375,6894,9,'producer','producer',NULL),(406649,636070,10,'producer','producer',NULL),(406649,1288,1,'actor',NULL,'[\"Ebenezer Scrooge\"]'),(406649,552509,2,'actor',NULL,'[\"Ghost of Christmas Present\",\"Ticket Seller\"]'),(406649,5105,3,'actress',NULL,'[\"Ghost of Christmas Past\",\"Streetlamp Lighter\"]'),(406649,1349,4,'actress',NULL,'[\"Emily\"]'),(406649,782381,5,'director',NULL,NULL),(406649,2042,6,'writer','novel',NULL),(406649,643826,7,'writer','musical',NULL),(406649,14326,8,'writer','musical',NULL),(406649,254872,9,'producer','producer',NULL),(406709,1594572,10,'actor',NULL,'[\"Perceval, chevalier du pays de Galles\"]'),(406709,1593548,1,'actor',NULL,'[\"Hervé de Rinel, chevalier\"]'),(406709,40005,2,'actor',NULL,'[\"Léodagan, roi de Carmélide\"]'),(406709,1148284,3,'actor',NULL,'[\"Lancelot\"]'),(406709,1191842,4,'actor',NULL,'[\"Galessin, duc d\'Orcanie\"]'),(406709,1594248,5,'director',NULL,NULL),(406709,845403,6,'cinematographer',NULL,NULL),(406709,1593909,7,'editor',NULL,NULL),(406709,1593896,8,'production_designer',NULL,NULL),(406709,300067,9,'actor',NULL,'[\"Bohort, chevalier\"]'),(406759,659380,10,'writer',NULL,NULL),(406759,4695,1,'actress',NULL,'[\"Sydney Wells\"]'),(406759,5273,2,'actor',NULL,'[\"Dr. Paul Faulkner\"]'),(406759,205,3,'actress',NULL,'[\"Helen Wells\"]'),(406759,784884,4,'actor',NULL,'[\"Simon McCullough\"]'),(406759,1219963,5,'director',NULL,NULL),(406759,658837,6,'director',NULL,NULL),(406759,349406,7,'writer','screenplay',NULL),(406759,1040327,8,'writer',NULL,NULL),(406759,161152,9,'writer',NULL,NULL),(406816,820687,10,'cinematographer','director of photography',NULL),(406816,126,1,'actor',NULL,'[\"Ben Randall\"]'),(406816,5110,2,'actor',NULL,'[\"Jake Fischer\"]'),(406816,688,3,'actress',NULL,'[\"Helen Randall\"]'),(406816,756089,4,'actress',NULL,'[\"Emily Thomas\"]'),(406816,1112,5,'director',NULL,NULL),(406816,109587,6,'writer','written by',NULL),(406816,4927,7,'producer','producer',NULL),(406816,1246087,8,'producer','producer',NULL),(406816,704909,9,'composer',NULL,NULL),(407246,1933655,10,'composer',NULL,NULL),(407246,1593407,1,'actor',NULL,'[\"Moko\"]'),(407246,1794084,2,'actor',NULL,'[\"Flama\"]'),(407246,1593379,3,'actor',NULL,'[\"Ulises\"]'),(407246,1593711,4,'actress',NULL,'[\"Rita\"]'),(407246,251774,5,'director',NULL,NULL),(407246,546008,6,'writer',NULL,NULL),(407246,1831203,7,'producer','producer',NULL),(407246,868872,8,'producer','producer',NULL),(407246,1156628,9,'producer','producer',NULL),(407265,443706,10,'cinematographer','director of photography',NULL),(407265,5031,1,'actress',NULL,'[\"Bree\"]'),(407265,954225,2,'actor',NULL,'[\"Toby\"]'),(407265,1217,3,'actress',NULL,'[\"Elizabeth\"]'),(407265,2092175,4,'actress',NULL,'[\"Voice Coach\"]'),(407265,1053371,5,'director',NULL,NULL),(407265,60459,6,'producer','producer',NULL),(407265,242253,7,'producer','producer',NULL),(407265,2385,8,'producer','producer',NULL),(407265,543779,9,'composer',NULL,NULL),(407304,933213,10,'producer','producer',NULL),(407304,129,1,'actor',NULL,'[\"Ray Ferrier\"]'),(407304,266824,2,'actress',NULL,'[\"Rachel Ferrier\"]'),(407304,209,3,'actor',NULL,'[\"Harlan Ogilvy\"]'),(407304,1584,4,'actress',NULL,'[\"Mary Ann\"]'),(407304,229,5,'director',NULL,NULL),(407304,295264,6,'writer','screenplay',NULL),(407304,462895,7,'writer','screenplay',NULL),(407304,920229,8,'writer','novel',NULL),(407304,5086,9,'producer','producer',NULL),(407851,840551,1,'actress',NULL,'[\"Hana Arai\"]'),(407851,1066974,2,'actress',NULL,'[\"Tetsuko \'Alice\' Arisugawa\"]'),(407851,1002746,3,'actor',NULL,'[\"Masashi Miyamoto\"]'),(407851,386217,4,'actor',NULL,'[\"Kenji Kuroyanagi (Alice\'s Father)\"]'),(407851,412517,5,'director',NULL,NULL),(407851,793984,6,'cinematographer',NULL,NULL),(407851,849222,7,'production_designer',NULL,NULL),(407887,454752,10,'producer','producer',NULL),(407887,138,1,'actor',NULL,'[\"Billy\"]'),(407887,354,2,'actor',NULL,'[\"Colin\"]'),(407887,197,3,'actor',NULL,'[\"Costello\"]'),(407887,242,4,'actor',NULL,'[\"Dignam\"]'),(407887,217,5,'director',NULL,NULL),(407887,1184258,6,'writer','screenplay',NULL),(407887,538320,7,'writer',NULL,NULL),(407887,159039,8,'writer',NULL,NULL),(407887,340522,9,'producer','producer',NULL),(408060,3148117,10,'composer',NULL,NULL),(408060,610904,1,'actor',NULL,'[\"Phil Pitch\"]'),(408060,802463,2,'actor',NULL,'[\"Swan Tamel\"]'),(408060,617225,3,'actor',NULL,'[\"Al F. Eveson\"]'),(408060,2200755,4,'actress',NULL,'[\"Maya Satin\"]'),(408060,1637859,5,'director',NULL,NULL),(408060,2223351,6,'writer','screenplay',NULL),(408060,1481268,7,'writer','additional material',NULL),(408060,501015,8,'writer','novel',NULL),(408060,436878,9,'producer','producer',NULL),(408236,662748,10,'producer','producer',NULL),(408236,136,1,'actor',NULL,'[\"Sweeney Todd\"]'),(408236,307,2,'actress',NULL,'[\"Mrs. Lovett\"]'),(408236,614,3,'actor',NULL,'[\"Judge Turpin\"]'),(408236,1758,4,'actor',NULL,'[\"Beadle\"]'),(408236,318,5,'director',NULL,NULL),(408236,517589,6,'writer','screenplay',NULL),(408236,923839,7,'writer','musical',NULL),(408236,93904,8,'writer','musical adaptation',NULL),(408236,531827,9,'producer','producer',NULL),(408306,578814,10,'producer','producer',NULL),(408306,51509,1,'actor',NULL,'[\"Avner\"]'),(408306,185819,2,'actor',NULL,'[\"Steve\"]'),(408306,189887,3,'actress',NULL,'[\"Jeanette the Dutch Assassin\"]'),(408306,1354,4,'actor',NULL,'[\"Carl\"]'),(408306,229,5,'director',NULL,NULL),(408306,1065785,6,'writer','screenplay',NULL),(408306,744839,7,'writer','screenplay',NULL),(408306,427305,8,'writer','book \"Vengeance: The True Story of an Israeli Counter-Terrorist Team\"',NULL),(408306,5086,9,'producer','producer',NULL),(408777,989902,10,'cinematographer',NULL,NULL),(408777,117709,1,'actor',NULL,'[\"Jan\"]'),(408777,421799,2,'actress',NULL,'[\"Jule\"]'),(408777,1449783,3,'actor',NULL,'[\"Peter\"]'),(408777,458460,4,'actor',NULL,'[\"Hardenberg\"]'),(408777,918326,5,'director',NULL,NULL),(408777,1602472,6,'writer',NULL,NULL),(408777,841326,7,'producer','producer',NULL),(408777,1303162,8,'composer',NULL,NULL),(408777,1165655,9,'cinematographer',NULL,NULL),(408790,50832,10,'cinematographer',NULL,NULL),(408790,149,1,'actress',NULL,'[\"Kyle Pratt\"]'),(408790,765597,2,'actor',NULL,'[\"Carson\"]'),(408790,293,3,'actor',NULL,'[\"Captain Rich\"]'),(408790,63571,4,'actress',NULL,'[\"Stephanie\"]'),(408790,777881,5,'director',NULL,NULL),(408790,1618225,6,'writer','written by',NULL),(408790,712753,7,'writer','written by',NULL),(408790,4976,8,'producer','producer',NULL),(408790,35,9,'composer',NULL,NULL),(408839,295171,10,'writer','short story \"A Change of Plan\"',NULL),(408839,1774,1,'actor',NULL,'[\"Eddie\"]'),(408839,1157358,2,'actress',NULL,'[\"Miranda\"]'),(408839,15196,3,'actress',NULL,'[\"Lila\"]'),(408839,5467,4,'actor',NULL,'[\"Doc\"]'),(408839,125803,5,'director',NULL,NULL),(408839,268380,6,'director',NULL,NULL),(408839,35905,7,'writer','screenplay',NULL),(408839,228908,8,'writer','screenplay',NULL),(408839,55937,9,'writer','screenplay',NULL),(408961,713945,10,'production_designer',NULL,NULL),(408961,808376,1,'actor',NULL,'[\"Holden Donovan\"]'),(408961,100866,2,'actress',NULL,'[\"Principal Weller\"]'),(408961,948272,3,'actor',NULL,'[\"Will Drucker\"]'),(408961,1443822,4,'actress',NULL,'[\"Charlotte Pratt\"]'),(408961,831457,5,'director',NULL,NULL),(408961,787578,6,'writer','written by',NULL),(408961,807413,7,'composer',NULL,NULL),(408961,515355,8,'cinematographer',NULL,NULL),(408961,193534,9,'editor',NULL,NULL),(408985,710759,10,'producer','producer',NULL),(408985,1451,1,'actress',NULL,'[\"Georgia Byrd\"]'),(408985,5112,2,'actor',NULL,'[\"Sean Williams\"]'),(408985,459,3,'actor',NULL,'[\"Matthew Kragen\"]'),(408985,2064,4,'actor',NULL,'[\"Senator Dillings\"]'),(408985,911061,5,'director',NULL,NULL),(408985,696949,6,'writer','screenplay',NULL),(408985,780620,7,'writer','screenplay',NULL),(408985,697362,8,'writer',NULL,NULL),(408985,548257,9,'producer','producer',NULL),(409182,376416,10,'producer','producer',NULL),(409182,377,1,'actor',NULL,'[\"Richard Nelson\"]'),(409182,621,2,'actor',NULL,'[\"Robert Ramsey\"]'),(409182,2536,3,'actress',NULL,'[\"Jennifer Ramsey\"]'),(409182,524197,4,'actor',NULL,'[\"Dylan Johns\"]'),(409182,583,5,'director',NULL,NULL),(409182,698873,6,'writer','screenplay',NULL),(409182,302904,7,'writer','novel \"The Poseidon Adventure\"',NULL),(409182,1153907,8,'producer','producer',NULL),(409182,326040,9,'producer','producer',NULL),(409459,505656,10,'producer','producer',NULL),(409459,355097,1,'actor',NULL,'[\"Rorschach\"]'),(409459,933940,2,'actor',NULL,'[\"Dan Dreiberg\",\"Nite Owl\"]'),(409459,1303,3,'actress',NULL,'[\"Sally Jupiter\",\"Silk Spectre\"]'),(409459,15196,4,'actress',NULL,'[\"Laurie Jupiter\",\"Silk Spectre II\"]'),(409459,811583,5,'director',NULL,NULL),(409459,1733301,6,'writer','based on the graphic novel co-created by',NULL),(409459,371684,7,'writer','screenplay by',NULL),(409459,874844,8,'writer','screenplay by',NULL),(409459,330379,9,'producer','producer',NULL),(409842,3046,10,'cinematographer',NULL,NULL),(409842,1194,1,'actor',NULL,'[\"Captain Winston\"]'),(409842,791898,2,'actress',NULL,'[\"Rhonda Winston\"]'),(409842,1663840,3,'actor',NULL,'[\"Jerry Gordon\"]'),(409842,232319,4,'actor',NULL,'[\"Fred Withers\"]'),(409842,437490,5,'director',NULL,NULL),(409842,372190,6,'producer','producer',NULL),(409842,948773,7,'producer','producer',NULL),(409842,1492413,8,'composer',NULL,NULL),(409842,483005,9,'cinematographer','director of photography',NULL),(409847,1319757,10,'writer','screenplay',NULL),(409847,185819,1,'actor',NULL,'[\"Jake Lonergan\"]'),(409847,148,2,'actor',NULL,'[\"Woodrow Dolarhyde\"]'),(409847,1312575,3,'actress',NULL,'[\"Ella Swenson\"]'),(409847,817844,4,'actress',NULL,'[\"Alice\"]'),(409847,269463,5,'director',NULL,NULL),(409847,649460,6,'writer','screenplay',NULL),(409847,476064,7,'writer','screenplay',NULL),(409847,511541,8,'writer','screenplay',NULL),(409847,1318843,9,'writer','screenplay',NULL),(410097,288886,10,'editor',NULL,NULL),(410097,5024,1,'actor',NULL,'[\"Djay\"]'),(410097,524839,2,'actor',NULL,'[\"Skinny Black\"]'),(410097,26364,3,'actor',NULL,'[\"Key\"]'),(410097,543383,4,'actress',NULL,'[\"Nola\"]'),(410097,108132,5,'director',NULL,NULL),(410097,19858,6,'producer','producer',NULL),(410097,5436,7,'producer','producer',NULL),(410097,93540,8,'composer',NULL,NULL),(410097,898575,9,'cinematographer',NULL,NULL),(410297,498175,10,'producer','producer',NULL),(410297,206,1,'actor',NULL,'[\"Alex Wyler\"]'),(410297,113,2,'actress',NULL,'[\"Kate Forster\"]'),(410297,1626,3,'actor',NULL,'[\"Simon Wyler\"]'),(410297,609114,4,'actor',NULL,'[\"Henry Wyler\"]'),(410297,2159,5,'director',NULL,NULL),(410297,1430632,6,'writer','screenplay',NULL),(410297,453442,7,'writer','motion picture \"Siworae\"',NULL),(410297,1022446,8,'writer','motion picture \"Siworae\"',NULL),(410297,205713,9,'producer','producer',NULL),(410377,236462,10,'composer',NULL,NULL),(410377,149,1,'actress',NULL,'[\"Alexandra Rover\"]'),(410377,124930,2,'actor',NULL,'[\"Jack Rusoe\",\"Alex Rover\"]'),(410377,1113550,3,'actress',NULL,'[\"Nim Rusoe\"]'),(410377,138327,4,'actor',NULL,'[\"Captain\"]'),(410377,280814,5,'director',NULL,NULL),(410377,505662,6,'director',NULL,NULL),(410377,477279,7,'writer','screenplay',NULL),(410377,563394,8,'writer','screenplay',NULL),(410377,1646537,9,'writer','novel \"Nim\'s Island\"',NULL),(410696,279225,10,'producer','producer',NULL),(410696,1263939,1,'actress',NULL,'[\"Brittany Aarons\"]'),(410696,814259,2,'actress',NULL,'[\"Natasha Kwon-Schwartz\"]'),(410696,1653610,3,'actress',NULL,'[\"Kaylee Holland\"]'),(410696,1655778,4,'actress',NULL,'[\"Ashley Simon\"]'),(410696,390822,5,'director',NULL,NULL),(410696,257177,6,'writer','story',NULL),(410696,257171,7,'writer','story',NULL),(410696,73504,8,'writer','teleplay',NULL),(410696,37197,9,'producer','producer',NULL),(410764,4582,10,'composer',NULL,NULL),(410764,313,1,'actor',NULL,'[\"Noah\"]'),(410764,236,2,'actress',NULL,'[\"Queen Gunhilda\"]'),(410764,272706,3,'actress',NULL,'[\"Jeliza-Rose\",\"Voices of Sateen Lips, Glitter Gal, Mustique and Baby Blonde\"]'),(410764,5216,4,'actress',NULL,'[\"Dell\"]'),(410764,416,5,'director',NULL,NULL),(410764,342617,6,'writer','screenplay',NULL),(410764,1616194,7,'writer','novel',NULL),(410764,553355,8,'producer','producer',NULL),(410764,859016,9,'producer','producer',NULL),(411061,74318,10,'editor',NULL,NULL),(411061,199,1,'actor',NULL,'[\"Jack Gramm\"]'),(411061,1860,2,'actress',NULL,'[\"Kim Cummings\"]'),(411061,1360270,3,'actor',NULL,'[\"Mike Stempt\"]'),(411061,5447,4,'actress',NULL,'[\"Lauren Douglas\"]'),(411061,816,5,'director',NULL,NULL),(411061,860155,6,'writer','written by',NULL),(411061,256542,7,'producer','producer',NULL),(411061,790481,8,'composer',NULL,NULL),(411061,3631,9,'cinematographer','director of photography',NULL),(411098,631,10,'director',NULL,NULL),(411098,2304645,1,'actor',NULL,'[\"Tanza (segment \\\"Tanza\\\")\"]'),(411098,2307392,2,'actress',NULL,'[\"Kali (segment \\\"Tanza\\\")\"]'),(411098,2312057,3,'actor',NULL,'[\"Chief (segment \\\"Tanza\\\")\"]'),(411098,2310452,4,'actor',NULL,'[\"Uros (segment \\\"Blue Gypsy\\\")\"]'),(411098,152831,5,'director',NULL,NULL),(411098,1437,6,'director',NULL,NULL),(411098,490,7,'director',NULL,NULL),(411098,526199,8,'director',NULL,NULL),(411098,779386,9,'director',NULL,NULL),(411195,2336,10,'cinematographer','director of photography',NULL),(411195,614165,1,'actor',NULL,'[\"Patrick \'Kitten\' Braden\"]'),(411195,428897,2,'actor',NULL,'[\"Building Site Worker\"]'),(411195,83795,3,'actress',NULL,'[\"Eily Bergin\"]'),(411195,553,4,'actor',NULL,'[\"Father Liam\"]'),(411195,1403,5,'director',NULL,NULL),(411195,564496,6,'writer','written by',NULL),(411195,597215,7,'producer','producer',NULL),(411195,941262,8,'producer','producer',NULL),(411195,2134798,9,'composer',NULL,NULL),(411477,384,10,'composer',NULL,NULL),(411477,579,1,'actor',NULL,'[\"Hellboy\"]'),(411477,4757,2,'actress',NULL,'[\"Liz Sherman\"]'),(411477,427964,3,'actor',NULL,'[\"Abe Sapien\",\"Chamberlain\",\"Angel of Death\"]'),(411477,18515,4,'actor',NULL,'[\"Johann Krauss\",\"Bethmoora Goblin\"]'),(411477,868219,5,'director',NULL,NULL),(411477,586005,6,'writer','story',NULL),(411477,330379,7,'producer','producer',NULL),(411477,505656,8,'producer','producer',NULL),(411477,724700,9,'producer','producer',NULL),(411705,639659,1,'actor',NULL,'[\"Matt\"]'),(411705,1626256,2,'actress',NULL,'[\"Lisa\"]'),(411705,1945371,3,'self',NULL,'[\"Self - Black Rebel Motorcycle Club\"]'),(411705,1384130,4,'self',NULL,'[\"Themselves\"]'),(411705,935863,5,'director',NULL,NULL),(411705,247787,6,'producer','executive producer',NULL),(411705,959128,7,'cinematographer',NULL,NULL),(411705,1475971,8,'editor',NULL,NULL),(411951,721614,10,'cinematographer',NULL,NULL),(411951,1463426,1,'actor',NULL,'[\"Jin Kazama\"]'),(411951,653952,2,'actress',NULL,'[\"Christie Monteiro\"]'),(411951,846480,3,'actor',NULL,'[\"Heihachi Mishima\"]'),(411951,1406333,4,'actor',NULL,'[\"Kazuya Mishima\"]'),(411951,514546,5,'director',NULL,NULL),(411951,568416,6,'writer','screenplay',NULL),(411951,2091329,7,'producer','producer',NULL),(411951,666999,8,'producer','producer',NULL),(411951,1726242,9,'composer',NULL,NULL),(412019,1939072,10,'composer',NULL,NULL),(412019,195,1,'actor',NULL,'[\"Don Johnston\"]'),(412019,1448,2,'actress',NULL,'[\"Carmen\"]'),(412019,232,3,'actress',NULL,'[\"Laura\"]'),(412019,365,4,'actress',NULL,'[\"Sherry\"]'),(412019,464,5,'director',NULL,NULL),(412019,2260851,6,'writer','inspired by an idea from',NULL),(412019,238138,7,'writer','inspired by an idea from',NULL),(412019,453091,8,'producer','producer',NULL),(412019,809995,9,'producer','producer',NULL),(412536,2941,10,'producer','producer',NULL),(412536,328828,1,'actor',NULL,'[\"Charles Ryder\"]'),(412536,538869,2,'actor',NULL,'[\"Mr Ryder\"]'),(412536,2017943,3,'actress',NULL,'[\"Julia Flyte\"]'),(412536,1741345,4,'actor',NULL,'[\"Hooper\"]'),(412536,418982,5,'director',NULL,NULL),(412536,203577,6,'writer','written by',NULL),(412536,110591,7,'writer','written by',NULL),(412536,915284,8,'writer','novel',NULL),(412536,77127,9,'producer','producer',NULL),(412798,1646381,10,'producer','producer',NULL),(412798,193,1,'actress',NULL,'[\"Rachel Carlson\"]'),(412798,193738,2,'actor',NULL,'[\"Brian\"]'),(412798,322366,3,'actor',NULL,'[\"Dr. Robert Freedman\"]'),(412798,181920,4,'actor',NULL,'[\"Finlay Murray\"]'),(412798,742194,5,'director',NULL,NULL),(412798,236592,6,'producer','producer',NULL),(412798,343266,7,'producer','producer',NULL),(412798,584382,8,'producer','producer',NULL),(412798,663796,9,'producer','producer',NULL),(412915,1106656,10,'producer','producer',NULL),(412915,1864,1,'actor',NULL,'[\"Flynn Carsen\"]'),(412915,907427,2,'actress',NULL,'[\"Nicole Noone\"]'),(412915,627878,3,'actor',NULL,'[\"Judson\"]'),(412915,1492,4,'actor',NULL,'[\"Edward Wilde\"]'),(412915,936044,5,'director',NULL,NULL),(412915,864435,6,'writer','written by',NULL),(412915,325589,7,'producer','producer',NULL),(412915,357861,8,'producer','producer',NULL),(412915,1771270,9,'producer','producer',NULL),(412922,68008,10,'editor',NULL,NULL),(412922,1242688,1,'actor',NULL,'[\"Gabe\"]'),(412922,1659579,2,'actress',NULL,'[\"Rosemary\"]'),(412922,925966,3,'actor',NULL,'[\"Adam\"]'),(412922,633223,4,'actress',NULL,'[\"Leslie\"]'),(412922,505662,5,'director',NULL,NULL),(412922,280814,6,'writer','written by',NULL),(412922,689780,7,'producer','producer',NULL),(412922,279412,8,'composer',NULL,NULL),(412922,650615,9,'cinematographer',NULL,NULL),(413219,721526,1,'director',NULL,NULL),(413267,780620,10,'writer','screenplay by',NULL),(413267,196,1,'actor',NULL,'[\"Shrek\"]'),(413267,139,2,'actress',NULL,'[\"Princess Fiona\"]'),(413267,552,3,'actor',NULL,'[\"Donkey\"]'),(413267,104,4,'actor',NULL,'[\"Puss in Boots\"]'),(413267,1844237,5,'director',NULL,NULL),(413267,401203,6,'director','co-director',NULL),(413267,825308,7,'writer','based upon the book by',NULL),(413267,11470,8,'writer','story by',NULL),(413267,696949,9,'writer','screenplay by',NULL),(413268,1444622,1,'actor',NULL,'[\"Devon Tyler\"]'),(413268,1693080,2,'actor',NULL,'[\"Brian\"]'),(413268,842500,3,'actor',NULL,'[\"Dr. Kirk Tyler\"]'),(413268,1661421,4,'actress',NULL,'[\"Jenna\"]'),(413268,1432654,5,'director',NULL,NULL),(413268,2126758,6,'composer',NULL,NULL),(413300,32696,10,'producer','producer',NULL),(413300,1497,1,'actor',NULL,'[\"Spider-Man\",\"Peter Parker\"]'),(413300,379,2,'actress',NULL,'[\"Mary Jane Watson\"]'),(413300,333410,3,'actor',NULL,'[\"Venom\",\"Eddie Brock\"]'),(413300,2006,4,'actor',NULL,'[\"Sandman\",\"Flint Marko\"]'),(413300,600,5,'director',NULL,NULL),(413300,706898,6,'writer','screenplay',NULL),(413300,765091,7,'writer','screenplay',NULL),(413300,498278,8,'writer','Marvel comic book',NULL),(413300,228492,9,'writer','Marvel comic book',NULL),(413573,2569832,10,'actress',NULL,'[\"Dr. Jo Wilson\",\"Dr. Jo Karev\"]'),(413573,933156,1,'actress',NULL,'[\"Dr. Miranda Bailey\"]'),(413573,681782,2,'actor',NULL,'[\"Dr. Richard Webber\"]'),(413573,690186,3,'actress',NULL,'[\"Dr. Meredith Grey\"]'),(413573,150362,4,'actor',NULL,'[\"Dr. Alex Karev\"]'),(413573,722274,5,'writer','created by',NULL),(413573,571727,6,'actor',NULL,'[\"Dr. Owen Hunt\"]'),(413573,930898,7,'actor',NULL,'[\"Dr. Jackson Avery\"]'),(413573,9617279,8,'actress',NULL,'[\"Nurse Bokhee\"]'),(413573,1131,9,'actor',NULL,'[\"Dr. Derek Shepherd\"]'),(414055,271479,10,'producer','producer',NULL),(414055,949,1,'actress',NULL,'[\"Queen Elizabeth I\"]'),(414055,654110,2,'actor',NULL,'[\"Sir Walter Raleigh\"]'),(414055,1691,3,'actor',NULL,'[\"Sir Francis Walsingham\"]'),(414055,3244,4,'actor',NULL,'[\"King Philip ll of Spain\"]'),(414055,1408,5,'director',NULL,NULL),(414055,629933,6,'writer','written by',NULL),(414055,386694,7,'writer','written by',NULL),(414055,79677,8,'producer','producer',NULL),(414055,147080,9,'producer','producer',NULL),(414387,271479,10,'producer','producer',NULL),(414387,461136,1,'actress',NULL,'[\"Elizabeth Bennet\"]'),(414387,532193,2,'actor',NULL,'[\"Mr. Darcy\"]'),(414387,950,3,'actress',NULL,'[\"Mrs. Bennet\"]'),(414387,661,4,'actor',NULL,'[\"Mr. Bennet\"]'),(414387,942504,5,'director',NULL,NULL),(414387,595738,6,'writer','screenplay by',NULL),(414387,807,7,'writer','based on the novel by',NULL),(414387,668,8,'writer','additional dialogue',NULL),(414387,79677,9,'producer','producer',NULL),(414852,310177,10,'editor',NULL,NULL),(414852,706220,1,'actor',NULL,'[\"Capt. Damien Tomaso\"]'),(414852,1042642,2,'actor',NULL,'[\"Leïto\"]'),(414852,195049,3,'actor',NULL,'[\"K2\"]'),(414852,1098947,4,'actor',NULL,'[\"Taha Bemamud\"]'),(414852,603628,5,'director',NULL,NULL),(414852,108,6,'writer',NULL,NULL),(414852,2015555,7,'composer',NULL,NULL),(414852,1754777,8,'composer',NULL,NULL),(414852,856209,9,'cinematographer',NULL,NULL),(414853,916502,10,'editor',NULL,NULL),(414853,416673,1,'actor',NULL,'[\"Otis the Cow\"]'),(414853,1073,2,'actress',NULL,'[\"Daisy the Cow\"]'),(414853,418,3,'actor',NULL,'[\"Miles the Mule\"]'),(414853,385,4,'actor',NULL,'[\"Ben the Cow\"]'),(414853,644203,5,'director',NULL,NULL),(414853,550455,6,'producer','producer',NULL),(414853,550708,7,'producer','producer',NULL),(414853,2201,8,'composer',NULL,NULL),(414853,129484,9,'editor',NULL,NULL),(414923,751421,10,'editor',NULL,NULL),(414923,192505,1,'actress',NULL,'[\"Brooke\"]'),(414923,156940,2,'actor',NULL,'[\"George\"]'),(414923,1083271,3,'actress',NULL,'[\"Candace\"]'),(414923,446746,4,'actor',NULL,'[\"Jack Lawton\"]'),(414923,318795,5,'director',NULL,NULL),(414923,1642591,6,'writer','written by',NULL),(414923,480804,7,'producer','producer',NULL),(414923,910800,8,'composer',NULL,NULL),(414923,349204,9,'cinematographer',NULL,NULL),(414951,818304,10,'producer','producer',NULL),(414951,4741,1,'actress',NULL,'[\"Dot\"]'),(414951,193846,2,'actress',NULL,'[\"Nina Deer\"]'),(414951,4908,3,'actress',NULL,'[\"Olivia Deer\"]'),(414951,233027,4,'actor',NULL,'[\"Paul Deer\"]'),(414951,44803,5,'director',NULL,NULL),(414951,1459623,6,'writer','written by',NULL),(414951,1460116,7,'writer','written by',NULL),(414951,584575,8,'producer','producer',NULL),(414951,679405,9,'producer','producer',NULL),(414982,2980,10,'composer',NULL,NULL),(414982,935541,1,'actress',NULL,'[\"Wendy Christensen\"]'),(414982,581365,2,'actor',NULL,'[\"Kevin Fischer\"]'),(414982,501210,3,'actor',NULL,'[\"Ian McKinley\"]'),(414982,424481,4,'actress',NULL,'[\"Erin\"]'),(414982,939128,5,'director',NULL,NULL),(414982,604688,6,'writer','written by',NULL),(414982,714695,7,'writer','characters',NULL),(414982,675013,8,'producer','producer',NULL),(414982,956015,9,'producer','producer',NULL),(414993,543739,10,'composer',NULL,NULL),(414993,413168,1,'actor',NULL,'[\"Tomas\",\"Tommy\",\"Tom Creo\"]'),(414993,1838,2,'actress',NULL,'[\"Isabel\",\"Izzi Creo\"]'),(414993,859503,3,'actor',NULL,'[\"Antonio\"]'),(414993,995,4,'actress',NULL,'[\"Dr. Lillian Guzetti\"]'),(414993,4716,5,'director',NULL,NULL),(414993,359504,6,'writer','story by',NULL),(414993,586969,7,'producer','producer',NULL),(414993,808498,8,'producer','producer',NULL),(414993,914615,9,'producer','producer',NULL),(415127,353991,10,'producer','producer',NULL),(415127,1716909,1,'actor',NULL,'[\"Maloin, az éjszakai váltóõr\"]'),(415127,842770,2,'actress',NULL,'[\"Maloin felesége\"]'),(415127,126969,3,'actress',NULL,'[\"Henriette\"]'),(415127,220729,4,'actor',NULL,'[\"Brown\"]'),(415127,850601,5,'director',NULL,NULL),(415127,398555,6,'director','co-director',NULL),(415127,799442,7,'writer','novel',NULL),(415127,470004,8,'writer','screenplay',NULL),(415127,51116,9,'producer','producer',NULL),(415167,1444872,10,'producer','producer',NULL),(415167,126004,1,'actor',NULL,'[\"Jonathan\"]'),(415167,344,2,'actress',NULL,'[\"Leslie\"]'),(415167,666626,3,'actress',NULL,'[\"Jamie\"]'),(415167,4301,4,'actress',NULL,'[\"Liz\"]'),(415167,1361,5,'director',NULL,NULL),(415167,26829,6,'writer','written by',NULL),(415167,317368,7,'writer','written by',NULL),(415167,225818,8,'producer','producer',NULL),(415167,1414810,9,'producer','producer',NULL),(415306,924544,10,'editor',NULL,NULL),(415306,2071,1,'actor',NULL,'[\"Ricky Bobby\"]'),(415306,604,2,'actor',NULL,'[\"Cal Naughton Jr.\"]'),(415306,56187,3,'actor',NULL,'[\"Jean Girard\"]'),(415306,170550,4,'actor',NULL,'[\"Reese Bobby\"]'),(415306,570912,5,'director',NULL,NULL),(415306,31976,6,'producer','producer',NULL),(415306,588612,7,'producer','producer',NULL),(415306,943391,8,'composer',NULL,NULL),(415306,5929,9,'cinematographer','director of photography',NULL),(415679,719673,10,'composer',NULL,NULL),(415679,612571,1,'actress',NULL,'[\"Jessica\"]'),(415679,1952567,2,'actor',NULL,'[\"Nathan\"]'),(415679,1752532,3,'actor',NULL,'[\"Diggs\"]'),(415679,455663,4,'actor',NULL,'[\"Henry\"]'),(415679,103404,5,'director',NULL,NULL),(415679,1360071,6,'writer',NULL,NULL),(415679,347384,7,'producer','producer',NULL),(415679,1103466,8,'producer','producer',NULL),(415679,2070021,9,'composer',NULL,NULL),(415819,1640833,10,'composer',NULL,NULL),(415819,1046846,1,'actor',NULL,'[\"Ji Eun-seong\"]'),(415819,1641239,2,'actress',NULL,'[\"Han Ye-won\"]'),(415819,1305598,3,'actor',NULL,'[\"Kim Han-seong\"]'),(415819,1641174,4,'actress',NULL,'[\"Lee Kyeong-won\"]'),(415819,1085908,5,'director',NULL,NULL),(415819,1641334,6,'writer',NULL,NULL),(415819,1826454,7,'writer',NULL,NULL),(415819,3858594,8,'writer',NULL,NULL),(415819,1065829,9,'producer','producer',NULL),(415833,318240,10,'production_designer',NULL,NULL),(415833,677397,1,'actor',NULL,'[\"Robbie Levinson\"]'),(415833,1117,2,'actor',NULL,'[\"Pastor Boyd\"]'),(415833,232414,3,'actor',NULL,'[\"Chris Boyd\"]'),(415833,681882,4,'actress',NULL,'[\"Barbara McCoy\"]'),(415833,1642229,5,'director',NULL,NULL),(415833,383285,6,'producer','producer',NULL),(415833,1743777,7,'producer','producer',NULL),(415833,6544,8,'cinematographer','director of photography',NULL),(415833,622857,9,'editor',NULL,NULL),(415855,720395,10,'editor',NULL,NULL),(415855,1070602,1,'actress',NULL,'[\"Irene\"]'),(415855,591352,2,'actress',NULL,'[\"Petra\"]'),(415855,1273133,3,'actress',NULL,'[\"Frau Maschek\"]'),(415855,833909,4,'actor',NULL,'[\"Herr Kos\"]'),(415855,369618,5,'director',NULL,NULL),(415855,90350,6,'producer','producer',NULL),(415855,345116,7,'producer','producer',NULL),(415855,547038,8,'producer','producer',NULL),(415855,841326,9,'producer','producer',NULL),(415978,1818773,10,'production_designer',NULL,NULL),(415978,370035,1,'actor',NULL,'[\"Richard Swersey\"]'),(415978,432380,2,'actress',NULL,'[\"Christine Jesperson\"]'),(415978,999419,3,'actor',NULL,'[\"Peter Swersey\"]'),(415978,1508231,4,'actor',NULL,'[\"Robby Swersey\"]'),(415978,477253,5,'producer','producer',NULL),(415978,28787,6,'composer',NULL,NULL),(415978,161636,7,'cinematographer','director of photography',NULL),(415978,225565,8,'editor',NULL,NULL),(415978,409851,9,'editor',NULL,NULL),(416046,1362928,1,'actor',NULL,NULL),(416046,5690,2,'director',NULL,NULL),(416046,374658,3,'director',NULL,NULL),(416047,1362928,1,'actor',NULL,NULL),(416047,5690,2,'director',NULL,NULL),(416047,374658,3,'director',NULL,NULL),(416212,226,10,'producer','producer',NULL),(416212,266824,1,'actress',NULL,'[\"Lily Owens\"]'),(416212,1617685,2,'actress',NULL,'[\"Rosaleen Daise\"]'),(416212,1451,3,'actress',NULL,'[\"August Boatwright\"]'),(416212,1006024,4,'actress',NULL,'[\"June Boatwright\"]'),(416212,697656,5,'director',NULL,NULL),(416212,1650330,6,'writer','novel',NULL),(416212,489876,7,'producer','producer',NULL),(416212,1857273,8,'producer','producer',NULL),(416212,795682,9,'producer','producer',NULL),(416220,437819,10,'composer',NULL,NULL),(416220,297906,1,'actress',NULL,'[\"Momoko Ryugasaki\"]'),(416220,1665871,2,'actress',NULL,'[\"Ichigo Shirayuri\"]'),(416220,1185734,3,'actor',NULL,'[\"Momoko\'s Father\"]'),(416220,8369,4,'actor',NULL,'[\"Ryuji \'the Unicorn\'\",\"Doctor\"]'),(416220,620363,5,'director',NULL,NULL),(416220,1958253,6,'writer','novel',NULL),(416220,1065486,7,'producer','producer',NULL),(416220,1097451,8,'producer','producer',NULL),(416220,644840,9,'producer','producer',NULL),(416236,1649488,10,'writer','books',NULL),(416236,383603,1,'actor',NULL,'[\"Jared Grace\",\"Simon Grace\"]'),(416236,92961,2,'actress',NULL,'[\"Mallory Grace\"]'),(416236,657,3,'actor',NULL,'[\"Arthur Spiderwick\"]'),(416236,571,4,'actress',NULL,'[\"Helen Grace\"]'),(416236,914132,5,'director',NULL,NULL),(416236,456732,6,'writer','screenplay',NULL),(416236,1183854,7,'writer','screenplay',NULL),(416236,626,8,'writer','screenplay',NULL),(416236,1650403,9,'writer','books',NULL),(416315,1158211,10,'production_designer',NULL,NULL),(416315,680667,1,'actor',NULL,'[\"Ben Mitchell\"]'),(416315,536476,2,'actress',NULL,'[\"Liz Hunter\"]'),(416315,1040961,3,'actress',NULL,'[\"Kristy Earl\"]'),(416315,418877,4,'actor',NULL,'[\"Mick Taylor\"]'),(416315,572562,5,'director',NULL,NULL),(416315,509977,6,'producer','line producer',NULL),(416315,1451475,7,'composer','original score composer',NULL),(416315,317216,8,'cinematographer','director of photography',NULL),(416315,50541,9,'editor',NULL,NULL),(416320,503429,10,'editor',NULL,NULL),(416320,424060,1,'actress',NULL,'[\"Nola Rice\"]'),(416320,1667,2,'actor',NULL,'[\"Chris Wilton\"]'),(416320,607865,3,'actress',NULL,'[\"Chloe Hewett Wilton\"]'),(416320,328828,4,'actor',NULL,'[\"Tom Hewett\"]'),(416320,95,5,'director',NULL,NULL),(416320,36981,6,'producer','producer',NULL),(416320,201819,7,'producer','producer',NULL),(416320,928836,8,'producer','producer',NULL),(416320,1899,9,'cinematographer','director of photography',NULL),(416449,4799,10,'producer','producer',NULL),(416449,124930,1,'actor',NULL,'[\"King Leonidas\"]'),(416449,372176,2,'actress',NULL,'[\"Queen Gorgo\"]'),(416449,920992,3,'actor',NULL,'[\"Dilios\"]'),(416449,922035,4,'actor',NULL,'[\"Theron\"]'),(416449,811583,5,'director',NULL,NULL),(416449,426500,6,'writer','screenplay',NULL),(416449,1290582,7,'writer','screenplay',NULL),(416449,588340,8,'writer','graphic novel',NULL),(416449,2241067,9,'writer','graphic novel',NULL),(416496,785385,10,'composer',NULL,NULL),(416496,4851,1,'actress',NULL,'[\"Maria Alvarez\"]'),(416496,161,2,'actress',NULL,'[\"Sara Sandoval\"]'),(416496,1872,3,'actor',NULL,'[\"Quentin\"]'),(416496,948267,4,'actor',NULL,'[\"Tyler Jackson\"]'),(416496,1461392,5,'director',NULL,NULL),(416496,1650283,6,'director',NULL,NULL),(416496,108,7,'writer','written by',NULL),(416496,436543,8,'writer','written by',NULL),(416496,954437,9,'producer','producer',NULL),(416508,110357,10,'producer','producer',NULL),(416508,4266,1,'actress',NULL,'[\"Jane Austen\"]'),(416508,564215,2,'actor',NULL,'[\"Tom Lefroy\"]'),(416508,910278,3,'actress',NULL,'[\"Mrs. Austen\"]'),(416508,342,4,'actor',NULL,'[\"Reverend Austen\"]'),(416508,418982,5,'director',NULL,NULL),(416508,807,6,'writer','letters',NULL),(416508,393495,7,'writer','written by',NULL),(416508,931650,8,'writer','written by',NULL),(416508,77127,9,'producer','producer',NULL),(417001,7037,10,'cinematographer','director of photography',NULL),(417001,178,1,'actress',NULL,'[\"Sarah\"]'),(417001,131,2,'actor',NULL,'[\"Jake\"]'),(417001,1610,3,'actress',NULL,'[\"Carol\"]'),(417001,1626,4,'actor',NULL,'[\"Bill\"]'),(417001,325204,5,'director',NULL,NULL),(417001,1654465,6,'writer','novel',NULL),(417001,865189,7,'producer','producer',NULL),(417001,865297,8,'producer','producer',NULL),(417001,35661,9,'composer',NULL,NULL),(417056,1587501,10,'producer','producer',NULL),(417056,385296,1,'actress',NULL,'[\"Victoria English\"]'),(417056,5350,2,'actor',NULL,'[\"Derek\"]'),(417056,305519,3,'actress',NULL,'[\"Gloria Torrez\"]'),(417056,141931,4,'actress',NULL,'[\"Kristen Haas\"]'),(417056,1659908,5,'director',NULL,NULL),(417056,358175,6,'director',NULL,NULL),(417056,1672154,7,'writer','written by',NULL),(417056,1672215,8,'writer','written by',NULL),(417056,1471121,9,'producer','associate producer',NULL),(417148,1447370,10,'producer','producer',NULL),(417148,168,1,'actor',NULL,'[\"Neville Flynn\"]'),(417148,523,2,'actress',NULL,'[\"Claire Miller\"]'),(417148,680667,3,'actor',NULL,'[\"Sean Jones\"]'),(417148,4761,4,'actress',NULL,'[\"Mercedes\"]'),(417148,254786,5,'director',NULL,NULL),(417148,1733422,6,'writer','screenplay',NULL),(417148,349406,7,'writer','screenplay',NULL),(417148,2154048,8,'writer','story',NULL),(417148,73551,9,'producer','producer',NULL),(417225,258424,10,'editor',NULL,NULL),(417225,71275,1,'actor',NULL,'[\"Percival Jenkins\"]'),(417225,92216,2,'actor',NULL,'[\"Rooster\"]'),(417225,5024,3,'actor',NULL,'[\"Trumpy\"]'),(417225,1745736,4,'actress',NULL,'[\"Angel Davenport\"]'),(417225,1309359,5,'director',NULL,NULL),(417225,329760,6,'producer','producer',NULL),(417225,746273,7,'producer','producer',NULL),(417225,2201,8,'composer',NULL,NULL),(417225,704754,9,'cinematographer','director of photography',NULL),(417349,1269412,10,'actress',NULL,'[\"Bessy Higgins\"]'),(417349,218923,1,'actress',NULL,'[\"Margaret Hale\"]'),(417349,35514,2,'actor',NULL,'[\"John Thornton\"]'),(417349,683116,3,'actor',NULL,'[\"Richard Hale\"]'),(417349,193661,4,'actress',NULL,'[\"Hannah Thornton\"]'),(417349,185354,5,'actor',NULL,'[\"Nicholas Higgins\"]'),(417349,704351,6,'actress',NULL,'[\"Dixon\"]'),(417349,1126318,7,'actress',NULL,'[\"Fanny Thornton\"]'),(417349,1888062,8,'actress',NULL,'[\"Mary Higgins\"]'),(417349,544334,9,'actress',NULL,'[\"Maria Hale\"]'),(417385,284078,10,'composer',NULL,NULL),(417385,1331627,1,'actor',NULL,'[\"Jacob\",\"Rudy Carges\"]'),(417385,1028466,2,'actor',NULL,'[\"Leonard Fisher\"]'),(417385,1494624,3,'actress',NULL,'[\"Malee Chuang\"]'),(417385,1711,4,'actress',NULL,'[\"Carla Chuang\"]'),(417385,191147,5,'director',NULL,NULL),(417385,1072713,6,'writer','written by',NULL),(417385,68081,7,'producer','producer',NULL),(417385,777820,8,'producer','producer',NULL),(417385,881811,9,'producer','producer',NULL),(417614,547579,10,'composer',NULL,NULL),(417614,115671,1,'actress',NULL,'[\"Audrey\"]'),(417614,307726,2,'actress',NULL,'[\"Calista\"]'),(417614,519043,3,'actor',NULL,'[\"Mookie\"]'),(417614,179173,4,'actor',NULL,'[\"Henry\"]'),(417614,1664088,5,'director',NULL,NULL),(417614,1661902,6,'writer',NULL,NULL),(417614,4458,7,'producer','producer',NULL),(417614,542551,8,'producer','producer',NULL),(417614,1051748,9,'producer','producer',NULL),(417658,312836,10,'editor',NULL,NULL),(417658,369,1,'actor',NULL,'[\"Hank Chinaski\"]'),(417658,666,2,'actress',NULL,'[\"Jan\"]'),(417658,673,3,'actress',NULL,'[\"Laura\"]'),(417658,280955,4,'actor',NULL,'[\"Pierre\"]'),(417658,357584,5,'director',NULL,NULL),(417658,1977,6,'writer','novel',NULL),(417658,823196,7,'writer','written by',NULL),(417658,2097131,8,'composer',NULL,NULL),(417658,742645,9,'cinematographer','director of photography',NULL),(417741,393781,10,'composer',NULL,NULL),(417741,705356,1,'actor',NULL,'[\"Harry Potter\"]'),(417741,914612,2,'actress',NULL,'[\"Hermione Granger\"]'),(417741,342488,3,'actor',NULL,'[\"Ron Weasley\"]'),(417741,2091,4,'actor',NULL,'[\"Professor Albus Dumbledore\"]'),(417741,946734,5,'director',NULL,NULL),(417741,460141,6,'writer','screenplay',NULL),(417741,746830,7,'writer','novel',NULL),(417741,57655,8,'producer','producer',NULL),(417741,382268,9,'producer','producer',NULL),(418239,439307,10,'producer','producer',NULL),(418239,217466,1,'actor',NULL,'[\"Professor\"]'),(418239,116254,2,'actress',NULL,'[\"PR Lady\"]'),(418239,211477,3,'actress',NULL,'[\"Italian Lady\"]'),(418239,1675549,4,'actor',NULL,'[\"Filippo\"]'),(418239,452102,5,'director',NULL,NULL),(418239,516360,6,'director',NULL,NULL),(418239,647438,7,'director',NULL,NULL),(418239,491956,8,'writer','screenplay',NULL),(418239,187618,9,'producer','producer',NULL),(418279,220892,10,'producer','producer',NULL),(418279,479471,1,'actor',NULL,'[\"Sam Witwicky\"]'),(418279,1083271,2,'actress',NULL,'[\"Mikaela Banes\"]'),(418279,241049,3,'actor',NULL,'[\"Captain Lennox\"]'),(418279,879085,4,'actor',NULL,'[\"USAF Tech Sergeant Epps\"]'),(418279,881,5,'director',NULL,NULL),(418279,649460,6,'writer','screenplay',NULL),(418279,476064,7,'writer','screenplay',NULL),(418279,736966,8,'writer','story',NULL),(418279,117290,9,'producer','producer',NULL),(418455,897681,10,'editor',NULL,NULL),(418455,860947,1,'actor',NULL,'[\"Adam Pedersen\"]'),(418455,586568,2,'actor',NULL,'[\"Ivan\"]'),(418455,110334,3,'actor',NULL,'[\"Gunnar\"]'),(418455,824785,4,'actress',NULL,'[\"Sarah Svendsen\"]'),(418455,421314,5,'director',NULL,NULL),(418455,1212399,6,'producer','producer',NULL),(418455,536410,7,'producer','producer',NULL),(418455,433967,8,'composer',NULL,NULL),(418455,1028202,9,'cinematographer',NULL,NULL),(418689,520749,10,'producer','producer',NULL),(418689,202,1,'actor',NULL,'[\"John \\\"Doc\\\" Bradley\"]'),(418689,1608,2,'actor',NULL,'[\"Mike Strank\"]'),(418689,189200,3,'actor',NULL,'[\"Franklin Sousley\"]'),(418689,103038,4,'actor',NULL,'[\"Rene Gagnon\"]'),(418689,142,5,'director',NULL,NULL),(418689,115310,6,'writer','screenplay',NULL),(418689,353673,7,'writer','screenplay',NULL),(418689,1669383,8,'writer','book',NULL),(418689,694612,9,'writer','book',NULL),(418763,2353,10,'composer',NULL,NULL),(418763,350453,1,'actor',NULL,'[\"Anthony Swofford\"]'),(418763,4937,2,'actor',NULL,'[\"Staff Sgt. Sykes\"]'),(418763,85407,3,'actor',NULL,'[\"Chris Kruger\"]'),(418763,531924,4,'actor',NULL,'[\"D.I. Fitch\"]'),(418763,5222,5,'director',NULL,NULL),(418763,115310,6,'writer','screenplay',NULL),(418763,1666018,7,'writer','book',NULL),(418763,279651,8,'producer','producer',NULL),(418763,926824,9,'producer','producer',NULL),(418773,1162538,10,'cinematographer',NULL,NULL),(418773,1110,1,'actress',NULL,'[\"Madeleine\"]'),(418773,5273,2,'actor',NULL,'[\"George\"]'),(418773,9165472,3,'actor',NULL,'[\"Auctioneer\"]'),(418773,885900,4,'actress',NULL,'[\"Bernadette\"]'),(418773,607275,5,'director',NULL,NULL),(418773,533666,6,'writer','written by',NULL),(418773,1666061,7,'producer','producer',NULL),(418773,752749,8,'producer','producer',NULL),(418773,1306785,9,'composer',NULL,NULL),(419294,579580,10,'cinematographer','director of photography',NULL),(419294,169,1,'actor',NULL,'[\"Pete Perkins\"]'),(419294,1608,2,'actor',NULL,'[\"Mike Norton\"]'),(419294,948267,3,'actor',NULL,'[\"Belmont\"]'),(419294,5064,4,'actress',NULL,'[\"Lou Ann Norton\"]'),(419294,37247,5,'writer','written by',NULL),(419294,108,6,'producer','producer',NULL),(419294,280333,7,'producer','producer',NULL),(419294,1118769,8,'producer','producer',NULL),(419294,1937,9,'composer',NULL,NULL),(419677,354327,10,'editor',NULL,NULL),(419677,175916,1,'actor',NULL,'[\"Richard\"]'),(419677,834282,2,'actor',NULL,'[\"Sonny\"]'),(419677,1527905,3,'actor',NULL,'[\"Anthony\"]'),(419677,938176,4,'actor',NULL,'[\"Herbie\"]'),(419677,276349,5,'director',NULL,NULL),(419677,292211,6,'writer','additional material',NULL),(419677,378591,7,'producer','producer',NULL),(419677,416869,8,'composer',NULL,NULL),(419677,169299,9,'cinematographer','director of photography',NULL),(419706,543739,10,'composer',NULL,NULL),(419706,881631,1,'actor',NULL,'[\"John Grimm\"]'),(419706,683253,2,'actress',NULL,'[\"Samantha Grimm\"]'),(419706,425005,3,'actor',NULL,'[\"Sarge\"]'),(419706,649046,4,'actor',NULL,'[\"Destroyer\"]'),(419706,5647,5,'director',NULL,NULL),(419706,1709264,6,'writer','screenplay by',NULL),(419706,834338,7,'writer','screenplay by',NULL),(419706,225146,8,'producer','producer',NULL),(419706,920274,9,'producer','producer',NULL),(419773,929571,10,'composer',NULL,NULL),(419773,401872,1,'actress',NULL,'[\"Nina\"]'),(419773,863787,2,'actress',NULL,'[\"Toni\"]'),(419773,59974,3,'actress',NULL,'[\"Francoise\"]'),(419773,714534,4,'actor',NULL,'[\"Pierre\"]'),(419773,678857,5,'director',NULL,NULL),(419773,267943,6,'writer',NULL,NULL),(419773,462926,7,'producer','producer',NULL),(419773,13911912,8,'producer','producer',NULL),(419773,1875512,9,'composer',NULL,NULL),(419887,3342,10,'producer','producer',NULL),(419887,2043234,1,'actor',NULL,'[\"Amir\"]'),(419887,2520301,2,'actor',NULL,'[\"Young Hassan\"]'),(419887,503033,3,'actress',NULL,'[\"Soraya\"]'),(419887,869467,4,'actor',NULL,'[\"Rahim Khan\"]'),(419887,286975,5,'director',NULL,NULL),(419887,1125275,6,'writer','screenplay',NULL),(419887,1672161,7,'writer','novel',NULL),(419887,394564,8,'producer','producer',NULL),(419887,662748,9,'producer','producer',NULL),(419946,934912,10,'producer','producer',NULL),(419946,1078479,1,'actor',NULL,'[\"John Triton\"]'),(419946,1023018,2,'actress',NULL,'[\"Kate Triton\"]'),(419946,1598,3,'actor',NULL,'[\"Rome\"]'),(419946,662562,4,'actor',NULL,'[\"Morgan\"]'),(419946,1669022,5,'director',NULL,NULL),(419946,1511698,6,'writer','story',NULL),(419946,568416,7,'writer','screenplay',NULL),(419946,800210,8,'producer','producer',NULL),(419946,4072885,9,'producer','producer',NULL),(420015,413389,10,'production_designer',NULL,NULL),(420015,834,1,'actress',NULL,'[\"Camille\"]'),(420015,312,2,'actress',NULL,'[\"Lorna\"]'),(420015,335,3,'actress',NULL,'[\"Maggie\"]'),(420015,4986,4,'actress',NULL,'[\"Holly\"]'),(420015,6554,5,'director',NULL,NULL),(420015,528724,6,'producer','producer',NULL),(420015,790481,7,'composer',NULL,NULL),(420015,4267,8,'cinematographer',NULL,NULL),(420015,284382,9,'editor',NULL,NULL),(420076,683609,10,'producer','producer',NULL),(420076,559551,1,'actress',NULL,'[\"Satoshi\"]'),(420076,853301,2,'actress',NULL,'[\"Ash Ketchum\",\"May\"]'),(420076,835688,3,'actor',NULL,'[\"Brock\",\"James\",\"Absol\"]'),(420076,649026,4,'actress',NULL,'[\"Pikachu\"]'),(420076,951197,5,'director',NULL,NULL),(420076,814473,6,'writer',NULL,NULL),(420076,343570,7,'producer','executive producer',NULL),(420076,559645,8,'producer','producer',NULL),(420076,605303,9,'producer','producer',NULL),(420087,431929,10,'producer','producer',NULL),(420087,5499,1,'actress',NULL,'[\"Rhonda Johnson\"]'),(420087,658,2,'actress',NULL,'[\"Yolanda Johnson\"]'),(420087,437,3,'actor',NULL,'[\"Dusty\"]'),(420087,604,4,'actor',NULL,'[\"Lefty\"]'),(420087,265,5,'director',NULL,NULL),(420087,445087,6,'writer','screenplay',NULL),(420087,493855,7,'writer','story',NULL),(420087,37853,8,'producer','producer',NULL),(420087,40120,9,'producer','producer',NULL),(420223,769656,10,'cinematographer','director of photography',NULL),(420223,2071,1,'actor',NULL,'[\"Harold Crick\"]'),(420223,668,2,'actress',NULL,'[\"Karen Eiffel\"]'),(420223,163,3,'actor',NULL,'[\"Professor Jules Hilbert\"]'),(420223,1451,4,'actress',NULL,'[\"Penny Escher\"]'),(420223,286975,5,'director',NULL,NULL),(420223,1590998,6,'writer','written by',NULL),(420223,233386,7,'producer','producer',NULL),(420223,1591584,8,'composer',NULL,NULL),(420223,718687,9,'composer',NULL,NULL),(420238,899531,10,'writer','screen story by',NULL),(420238,111,1,'actor',NULL,'[\"Despereaux\"]'),(420238,914612,2,'actress',NULL,'[\"Princess Pea\"]'),(420238,163,3,'actor',NULL,'[\"Roscuro\"]'),(420238,1808,4,'actress',NULL,'[\"Miggery Sow\"]'),(420238,271402,5,'director',NULL,NULL),(420238,828207,6,'director',NULL,NULL),(420238,1164216,7,'writer','based on the book: \"The Tale of Despereaux\" by',NULL),(420238,2657,8,'writer','screenplay by',NULL),(420238,574509,9,'writer','screen story by',NULL),(420251,1945788,10,'writer','story',NULL),(420251,499,1,'actress',NULL,'[\"Mei (segment \\\"Dumplings\\\")\"]'),(420251,496932,2,'actor',NULL,'[\"Director (segment \\\"Cut\\\")\"]'),(420251,1398053,3,'actress',NULL,'[\"Kyoko (segment \\\"Box\\\")\"]'),(420251,490597,4,'actress',NULL,'[\"Li\'s Maid (segment \\\"Dumplings\\\")\"]'),(420251,150897,5,'director',NULL,NULL),(420251,661791,6,'director',NULL,NULL),(420251,586281,7,'director',NULL,NULL),(420251,1779958,8,'writer',NULL,NULL),(420251,497762,9,'writer',NULL,NULL),(420293,295288,10,'producer','producer',NULL),(420293,3009232,1,'actor',NULL,'[\"Daniel Culp\",\"8612\"]'),(420293,4446467,2,'actor',NULL,'[\"Peter Mitchell\",\"819\"]'),(420293,1082,3,'actor',NULL,'[\"Dr. Philip Zimbardo\"]'),(420293,1880888,4,'actress',NULL,'[\"Dr. Christina Maslach\"]'),(420293,1547859,5,'director',NULL,NULL),(420293,848003,6,'writer','written by',NULL),(420293,1674354,7,'writer','based on the book \"The Lucifer Effect\"',NULL),(420293,2886189,8,'producer','producer',NULL),(420293,256283,9,'producer','producer',NULL),(420332,1191112,10,'editor',NULL,NULL),(420332,451321,1,'actor',NULL,'[\"Veer Pratap Singh\"]'),(420332,6689,2,'actress',NULL,'[\"Zaara Hayaat Khan\"]'),(420332,611552,3,'actress',NULL,'[\"Saamiya Siddiqui\"]'),(420332,451601,4,'actress',NULL,'[\"Mariam Hayaat Khan\"]'),(420332,7181,5,'director',NULL,NULL),(420332,159147,6,'writer','dialogue',NULL),(420332,1722045,7,'composer',NULL,NULL),(420332,463317,8,'composer',NULL,NULL),(420332,576540,9,'cinematographer',NULL,NULL),(420509,380547,10,'producer','producer',NULL),(420509,201857,1,'actor',NULL,'[\"Taxidermista, Esteban Espinosa\"]'),(420509,734415,2,'actor',NULL,'[\"Carlos Dietrich\"]'),(420509,285135,3,'actress',NULL,'[\"Diana Dietrich\"]'),(420509,1342905,4,'actress',NULL,'[\"Mujer taxidermista\"]'),(420509,81433,5,'director',NULL,NULL),(420509,3381175,6,'writer','collaborating writer',NULL),(420509,79065,7,'producer','producer',NULL),(420509,98153,8,'producer','producer',NULL),(420509,352820,9,'producer','producer',NULL),(421051,1360047,1,'actor',NULL,'[\"D.K.\"]'),(421051,518579,2,'actor',NULL,'[\"Johnny\"]'),(421051,107055,3,'actor',NULL,'[\"Balthasar\"]'),(421051,750530,4,'actress',NULL,'[\"Oma Küblböck\"]'),(421051,769996,5,'producer','producer',NULL),(421051,5444845,6,'composer',NULL,NULL),(421051,1691238,7,'cinematographer',NULL,NULL),(421051,825846,8,'editor',NULL,NULL),(421054,591053,10,'cinematographer','director of photography',NULL),(421054,461136,1,'actress',NULL,'[\"Domino Harvey\"]'),(421054,620,2,'actor',NULL,'[\"Ed Moseby\"]'),(421054,1183149,3,'actor',NULL,'[\"Choco\"]'),(421054,7825,4,'actor',NULL,'[\"Alf\"]'),(421054,1716,5,'director',NULL,NULL),(421054,446819,6,'writer','screenplay',NULL),(421054,52964,7,'writer','story',NULL),(421054,352820,8,'producer','producer',NULL),(421054,4581,9,'composer',NULL,NULL),(421082,627563,10,'composer',NULL,NULL),(421082,727165,1,'actor',NULL,'[\"Ian Curtis\"]'),(421082,608090,2,'actress',NULL,'[\"Debbie Curtis\"]'),(421082,971135,3,'actor',NULL,'[\"Tony Wilson\"]'),(421082,487884,4,'actress',NULL,'[\"Annik Honore\"]'),(421082,179221,5,'director',NULL,NULL),(421082,1722281,6,'writer','based on the book \"Touching from a Distance\" by',NULL),(421082,339043,7,'writer','screenplay',NULL),(421082,1813984,8,'producer','producer',NULL),(421082,931410,9,'producer','producer',NULL),(421229,173207,10,'producer','producer',NULL),(421229,687506,1,'actress',NULL,'[\"Mrs Palfrey\"]'),(421229,1670029,2,'actor',NULL,'[\"Ludo\",\"The Writer\"]'),(421229,1483730,3,'actress',NULL,'[\"Gwendolyn\"]'),(421229,485894,4,'actor',NULL,'[\"Mr Osborne\"]'),(421229,6959,5,'director',NULL,NULL),(421229,233026,6,'writer','additional dialogue',NULL),(421229,1699869,7,'writer',NULL,NULL),(421229,852331,8,'writer','novel',NULL),(421229,135268,9,'producer','producer',NULL),(421238,898365,10,'producer','producer',NULL),(421238,935653,1,'actor',NULL,'[\"Captain Stanley\"]'),(421238,1602,2,'actor',NULL,'[\"Charlie Burns\"]'),(421238,1833,3,'actress',NULL,'[\"Martha Stanley\"]'),(421238,934019,4,'actor',NULL,'[\"Mike Burns\"]'),(421238,384825,5,'director',NULL,NULL),(421238,147022,6,'writer','screenplay',NULL),(421238,113244,7,'producer','producer',NULL),(421238,578681,8,'producer','producer',NULL),(421238,642756,9,'producer','producer',NULL),(421239,1937,10,'composer',NULL,NULL),(421239,1046097,1,'actress',NULL,'[\"Lisa Reisert\"]'),(421239,614165,2,'actor',NULL,'[\"Jackson Rippner\"]'),(421239,4051,3,'actor',NULL,'[\"Joe Reisert\"]'),(421239,425610,4,'actress',NULL,'[\"Blonde Woman\"]'),(421239,127,5,'director',NULL,NULL),(421239,255296,6,'writer','screenplay',NULL),(421239,1929257,7,'writer','story',NULL),(421239,70454,8,'producer','producer',NULL),(421239,534543,9,'producer','producer',NULL),(421528,284765,10,'editor',NULL,NULL),(421528,1014577,1,'actress',NULL,'[\"Marieta\"]'),(421528,1248935,2,'actor',NULL,'[\"El reponedor\"]'),(421528,1923774,3,'actor',NULL,'[\"Tomás\"]'),(421528,1967013,4,'actress',NULL,'[\"Berta\"]'),(421528,757749,5,'director',NULL,NULL),(421528,130415,6,'producer','producer',NULL),(421528,1573942,7,'producer','producer',NULL),(421528,632385,8,'composer',NULL,NULL),(421528,208637,9,'cinematographer',NULL,NULL),(421715,5086,10,'producer','producer',NULL),(421715,93,1,'actor',NULL,'[\"Benjamin Button\"]'),(421715,949,2,'actress',NULL,'[\"Daisy\"]'),(421715,842770,3,'actress',NULL,'[\"Elizabeth Abbott\"]'),(421715,566,4,'actress',NULL,'[\"Caroline\"]'),(421715,399,5,'director',NULL,NULL),(421715,744839,6,'writer','screenplay',NULL),(421715,842523,7,'writer','story',NULL),(421715,280234,8,'writer','short story',NULL),(421715,149556,9,'producer','producer',NULL),(421994,1023204,10,'cinematographer','director of photography',NULL),(421994,5305,1,'actress',NULL,'[\"Rachel\"]'),(421994,372176,2,'actress',NULL,'[\"Luce\"]'),(421994,328828,3,'actor',NULL,'[\"Heck\"]'),(421994,408309,4,'actress',NULL,'[\"Tessa\"]'),(421994,662530,5,'director',NULL,NULL),(421994,50183,6,'producer','producer',NULL),(421994,1100344,7,'producer','producer',NULL),(421994,859877,8,'producer','producer',NULL),(421994,373588,9,'composer',NULL,NULL),(422015,89333,10,'cinematographer',NULL,NULL),(422015,305296,1,'actor',NULL,'[\"Bruno Davert\"]'),(422015,895759,2,'actress',NULL,'[\"Marlène Davert\"]'),(422015,597967,3,'actor',NULL,'[\"Maxime Davert\"]'),(422015,876300,4,'actor',NULL,'[\"Gérard Hutchinson\"]'),(422015,2020,5,'director',NULL,NULL),(422015,922799,6,'writer','novel \"The Ax\"',NULL),(422015,344467,7,'writer','screenplay',NULL),(422015,713042,8,'producer','producer',NULL),(422015,23940,9,'composer',NULL,NULL),(422093,562671,10,'production_designer',NULL,NULL),(422093,253708,1,'actress',NULL,'[\"Helen\"]'),(422093,4996,2,'actor',NULL,'[\"Charles\"]'),(422093,1347153,3,'actor',NULL,'[\"Madea\",\"Brian\",\"Joe\"]'),(422093,1807,4,'actress',NULL,'[\"Myrtle\"]'),(422093,335337,5,'director',NULL,NULL),(422093,134253,6,'producer','producer',NULL),(422093,1347316,7,'composer',NULL,NULL),(422093,163136,8,'cinematographer','director of photography',NULL),(422093,795443,9,'editor',NULL,NULL),(422272,319885,10,'cinematographer',NULL,NULL),(422272,1222,1,'actress',NULL,'[\"Amy\"]'),(422272,746896,2,'actor',NULL,'[\"Robert\"]'),(422272,25745,3,'actress',NULL,'[\"Helen\"]'),(422272,428121,4,'actress',NULL,'[\"Mrs. Folder\"]'),(422272,49371,5,'director',NULL,NULL),(422272,301788,6,'writer',NULL,NULL),(422272,273327,7,'producer','executive producer',NULL),(422272,1089831,8,'producer','producer',NULL),(422272,63414,9,'composer',NULL,NULL),(422720,57187,10,'production_designer',NULL,NULL),(422720,379,1,'actress',NULL,'[\"Marie Antoinette\"]'),(422720,5403,2,'actor',NULL,'[\"Louis XVI\"]'),(422720,1800,3,'actor',NULL,'[\"Louis XV\"]'),(422720,176869,4,'actor',NULL,'[\"Ambassador Mercy\"]'),(422720,1068,5,'director',NULL,NULL),(422720,441839,6,'producer','producer',NULL),(422720,641169,7,'composer',NULL,NULL),(422720,10139,8,'cinematographer','director of photography',NULL),(422720,3483,9,'editor',NULL,NULL),(422778,875,10,'writer','novel \"The Wizard of Oz\"',NULL),(422778,38680,1,'actress',NULL,'[\"Dorothy Gale\"]'),(422778,1787,2,'actor',NULL,'[\"Wizard\"]'),(422778,233,3,'actor',NULL,'[\"Quentin Tarantino - Kermit\'s Director\"]'),(422778,4979,4,'actor',NULL,'[\"Uncle Henry\"]'),(422778,857130,5,'director',NULL,NULL),(422778,290900,6,'writer','teleplay',NULL),(422778,371235,7,'writer','teleplay',NULL),(422778,553146,8,'writer','teleplay',NULL),(422778,1104057,9,'writer','teleplay',NULL),(423169,165679,10,'editor',NULL,NULL),(423169,350454,1,'actress',NULL,'[\"Sherry Swanson\"]'),(423169,1364532,2,'actress',NULL,'[\"Alexis Parks\"]'),(423169,98734,3,'actor',NULL,'[\"Bob Swanson Sr.\"]'),(423169,403630,4,'actress',NULL,'[\"Dorothy Washington\"]'),(423169,172877,5,'director',NULL,NULL),(423169,843543,6,'producer','producer',NULL),(423169,1196755,7,'producer','producer',NULL),(423169,515187,8,'composer',NULL,NULL),(423169,277655,9,'cinematographer','director of photography',NULL),(423294,2558161,10,'writer','story editor',NULL),(423294,479471,1,'actor',NULL,'[\"Cody Maverick\"]'),(423294,221046,2,'actress',NULL,'[\"Lani Aliikai\"]'),(423294,1417647,3,'actor',NULL,'[\"Chicken Joe\"]'),(423294,313,4,'actor',NULL,'[\"Zeke \'Big Z\' Topanga\",\"\'Geek\'\"]'),(423294,105169,5,'director',NULL,NULL),(423294,118333,6,'director',NULL,NULL),(423294,722610,7,'writer','screenplay by',NULL),(423294,1074134,8,'writer','screenplay by',NULL),(423294,996099,9,'writer','story by',NULL),(423382,1163167,10,'cinematographer',NULL,NULL),(423382,1703410,1,'actress',NULL,'[\"Abra\"]'),(423382,1705798,2,'actress',NULL,'[\"Millan\"]'),(423382,489240,3,'actress',NULL,'[\"Isa\"]'),(423382,1705785,4,'actress',NULL,'[\"Gloria\"]'),(423382,540297,5,'director',NULL,NULL),(423382,293009,6,'writer','screenplay',NULL),(423382,1703726,7,'writer','novel \"Lucia i svart\"',NULL),(423382,1597884,8,'producer','producer',NULL),(423382,1081677,9,'composer',NULL,NULL),(423409,959128,10,'cinematographer',NULL,NULL),(423409,176869,1,'actor',NULL,'[\"Tristram Shandy\",\"Walter Shandy\",\"Steve Coogan\"]'),(423409,562,2,'actor',NULL,'[\"Mark\"]'),(423409,117339,3,'actor',NULL,'[\"Capt. Toby Shandy\",\"Rob Brydon\"]'),(423409,369954,4,'actress',NULL,'[\"Elizabeth\",\"Keeley Hawes\"]'),(423409,935863,5,'director',NULL,NULL),(423409,1038177,6,'writer','novel \"The Life and Opinions of Tristram Shandy\"',NULL),(423409,101639,7,'writer','screenplay',NULL),(423409,247787,8,'producer','producer',NULL),(423409,2206801,9,'composer',NULL,NULL),(423455,4555,10,'editor',NULL,NULL),(423455,173,1,'actress',NULL,'[\"Martha Gellhorn\"]'),(423455,654110,2,'actor',NULL,'[\"Ernest Hemingway\"]'),(423455,657,3,'actor',NULL,'[\"John Dos Passos\"]'),(423455,763928,4,'actor',NULL,'[\"Paco Zarra\"]'),(423455,442241,5,'director',NULL,NULL),(423455,821466,6,'writer','written by',NULL),(423455,193009,7,'writer','written by',NULL),(423455,622782,8,'composer',NULL,NULL),(423455,831114,9,'cinematographer','director of photography',NULL),(423651,997824,10,'actress',NULL,'[\"Dainty\"]'),(423651,144187,1,'actress',NULL,'[\"Maud Lilly\"]'),(423651,1020089,2,'actress',NULL,'[\"Sue Trinder\"]'),(423651,1767,3,'actress',NULL,'[\"Mrs. Sucksby\"]'),(423651,1140344,4,'actor',NULL,'[\"Richard \'Gentleman\' Rivers\"]'),(423651,916037,5,'actor',NULL,'[\"John Vroom\"]'),(423651,873739,6,'actor',NULL,'[\"Mr. Ibbs\"]'),(423651,1643154,7,'actor',NULL,'[\"Charles\"]'),(423651,243983,8,'actor',NULL,'[\"Mr. Hawtrey\"]'),(423651,376025,9,'actress',NULL,'[\"Mrs. Stiles\"]'),(423849,276,1,'actor',NULL,'[\"Kodi\"]'),(423849,72533,2,'actress',NULL,'[\"Jenna\"]'),(423849,1018,3,'actor',NULL,'[\"Duke\"]'),(423849,265067,4,'actor',NULL,'[\"Ralph\",\"Mr. Conner\"]'),(423849,918465,5,'director',NULL,NULL),(423849,748429,6,'writer','screenplay by',NULL),(423849,504327,7,'writer','screenplay by',NULL),(423849,77468,8,'composer',NULL,NULL),(423849,813367,9,'editor',NULL,NULL),(423866,1165901,1,'actress',NULL,'[\"Sun-hwa\"]'),(423866,1030819,2,'actor',NULL,'[\"Tae-suk\"]'),(423866,1891528,3,'actor',NULL,'[\"Min-gyu (husband)\"]'),(423866,2810190,4,'actor',NULL,'[\"Detective Jo\"]'),(423866,1104118,5,'director',NULL,NULL),(423866,1720466,6,'composer',NULL,NULL),(423866,1715691,7,'cinematographer',NULL,NULL),(423866,1715745,8,'production_designer',NULL,NULL),(423977,5366,10,'producer','producer',NULL),(423977,947338,1,'actor',NULL,'[\"Charlie Bartlett\"]'),(423977,375,2,'actor',NULL,'[\"Nathan Gardner\"]'),(423977,204706,3,'actress',NULL,'[\"Marilyn Bartlett\"]'),(423977,993507,4,'actress',NULL,'[\"Susan Gardner\"]'),(423977,689343,5,'director',NULL,NULL),(423977,1122978,6,'writer','written by',NULL),(423977,1385761,7,'producer','producer',NULL),(423977,454004,8,'producer','producer',NULL),(423977,674303,9,'producer','producer',NULL),(424095,444653,10,'writer','screenplay by',NULL),(424095,413168,1,'actor',NULL,'[\"Roddy\"]'),(424095,701,2,'actress',NULL,'[\"Rita\"]'),(424095,5212,3,'actor',NULL,'[\"The Toad\"]'),(424095,606,4,'actor',NULL,'[\"Le Frog\"]'),(424095,101047,5,'director',NULL,NULL),(424095,271402,6,'director',NULL,NULL),(424095,166074,7,'writer','screenplay by',NULL),(424095,478588,8,'writer','screenplay by',NULL),(424095,515941,9,'writer','screenplay by',NULL),(424136,1879532,10,'composer',NULL,NULL),(424136,933940,1,'actor',NULL,'[\"Jeff Kohlver\"]'),(424136,680983,2,'actor',NULL,'[\"Hayley Stark\"]'),(424136,644897,3,'actress',NULL,'[\"Judy Tokuda\"]'),(424136,1230874,4,'actress',NULL,'[\"Janelle Rogers\"]'),(424136,1720541,5,'director',NULL,NULL),(424136,625198,6,'writer','written by',NULL),(424136,129765,7,'producer','producer',NULL),(424136,383370,8,'producer','producer',NULL),(424136,1715648,9,'producer','producer',NULL),(424205,781365,10,'editor',NULL,NULL),(424205,1208167,1,'actress',NULL,'[\"Anna Sörensen\"]'),(424205,299811,2,'actor',NULL,'[\"Nikolaus Sprink\"]'),(424205,133899,3,'actor',NULL,'[\"Le lieutenant Audebert\"]'),(424205,221745,4,'actress',NULL,'[\"Anna Sörensen\"]'),(424205,137228,5,'director',NULL,NULL),(424205,744384,6,'producer','producer',NULL),(424205,739151,7,'composer',NULL,NULL),(424205,5698,8,'cinematographer','director of photography',NULL),(424205,1294541,9,'editor',NULL,NULL),(424287,1358626,10,'composer',NULL,NULL),(424287,1307515,1,'actor',NULL,'[\"Ethan Green\"]'),(424287,785517,2,'actor',NULL,'[\"Kyle Underhill\"]'),(424287,880,3,'actress',NULL,'[\"Harper Green\"]'),(424287,1342513,4,'actress',NULL,'[\"Charlotte\"]'),(424287,51396,5,'director',NULL,NULL),(424287,650320,6,'writer','book and comic strips',NULL),(424287,1814050,7,'writer',NULL,NULL),(424287,112319,8,'producer','producer',NULL),(424287,613611,9,'producer','producer',NULL),(424345,641168,1,'actor',NULL,'[\"Dante\"]'),(424345,26879,2,'actor',NULL,'[\"Randal\"]'),(424345,206257,3,'actress',NULL,'[\"Becky\"]'),(424345,582939,4,'actor',NULL,'[\"Jay\"]'),(424345,3620,5,'director',NULL,NULL),(424345,608714,6,'producer','producer',NULL),(424345,892868,7,'composer',NULL,NULL),(424345,3140,8,'cinematographer','director of photography',NULL),(424345,392692,9,'production_designer',NULL,NULL),(424774,6251,10,'composer',NULL,NULL),(424774,1064823,1,'actor',NULL,'[\"Max\"]'),(424774,520064,2,'actor',NULL,'[\"Mr. Electric\",\"Tobor\",\"Ice Guardian\"]'),(424774,4862,3,'actress',NULL,'[\"Max\'s Mom\"]'),(424774,274,4,'actor',NULL,'[\"Max\'s Dad\"]'),(424774,1675,5,'director',NULL,NULL),(424774,735420,6,'writer','written by',NULL),(424774,1897406,7,'writer','story',NULL),(424774,42882,8,'producer','producer',NULL),(424774,2201,9,'composer',NULL,NULL),(424880,680407,10,'cinematographer',NULL,NULL),(424880,5132,1,'actor',NULL,'[\"Dan\"]'),(424880,180411,2,'actress',NULL,'[\"Candy\"]'),(424880,1691,3,'actor',NULL,'[\"Casper\"]'),(424880,118983,4,'actor',NULL,'[\"Schumann\"]'),(424880,35462,5,'director',NULL,NULL),(424880,1729294,6,'writer','novel \"Candy: A Novel of Love and Addiction\"',NULL),(424880,277838,7,'producer','producer',NULL),(424880,792431,8,'producer','producer',NULL),(424880,1057666,9,'composer',NULL,NULL),(425061,263989,10,'producer','producer',NULL),(425061,136797,1,'actor',NULL,'[\"Maxwell Smart\"]'),(425061,4266,2,'actress',NULL,'[\"Agent 99\"]'),(425061,273,3,'actor',NULL,'[\"The Chief\"]'),(425061,425005,4,'actor',NULL,'[\"Agent 23\"]'),(425061,781842,5,'director',NULL,NULL),(425061,40022,6,'writer','written by',NULL),(425061,256079,7,'writer','written by',NULL),(425061,316,8,'writer','characters',NULL),(425061,377750,9,'writer','characters',NULL),(425112,355722,10,'cinematographer','director of photography',NULL),(425112,670408,1,'actor',NULL,'[\"Nicholas Angel\"]'),(425112,296545,2,'actor',NULL,'[\"PC Danny Butterman\"]'),(425112,293509,3,'actor',NULL,'[\"Met Sergeant\"]'),(425112,631490,4,'actor',NULL,'[\"Met Chief Inspector\"]'),(425112,942367,5,'director',NULL,NULL),(425112,79677,6,'producer','producer',NULL),(425112,271479,7,'producer','producer',NULL),(425112,661912,8,'producer','producer',NULL),(425112,3417,9,'composer',NULL,NULL),(425123,662748,10,'producer','producer',NULL),(425123,702,1,'actress',NULL,'[\"Elizabeth\"]'),(425123,749263,2,'actor',NULL,'[\"David\"]'),(425123,6610,3,'actor',NULL,'[\"Jack\"]'),(425123,5457,4,'actress',NULL,'[\"Abby\"]'),(425123,914132,5,'director',NULL,NULL),(425123,865847,6,'writer','screenplay',NULL),(425123,228908,7,'writer','screenplay',NULL),(425123,1344075,8,'writer','novel \"If Only It Were True\"',NULL),(425123,531827,9,'producer','producer',NULL),(425210,470420,10,'producer','producer',NULL),(425210,1326,1,'actor',NULL,'[\"Slevin\"]'),(425210,1426,2,'actor',NULL,'[\"The Rabbi\"]'),(425210,151,3,'actor',NULL,'[\"The Boss\"]'),(425210,5154,4,'actress',NULL,'[\"Lindsey\"]'),(425210,6476,5,'director',NULL,NULL),(425210,1429512,6,'writer','written by',NULL),(425210,248178,7,'producer','producer',NULL),(425210,343266,8,'producer','producer',NULL),(425210,416164,9,'producer','producer',NULL),(425326,2644,10,'editor',NULL,NULL),(425326,357979,1,'actor',NULL,'[\"Todd Anderson\"]'),(425326,223499,2,'actress',NULL,'[\"Asha\"]'),(425326,1794460,3,'actor',NULL,'[\"Purohit N. Virajnarianan\"]'),(425326,809285,4,'actor',NULL,'[\"Dave\"]'),(425326,420112,5,'director',NULL,NULL),(425326,1286500,6,'writer','written by',NULL),(425326,329753,7,'producer','producer',NULL),(425326,807413,8,'composer',NULL,NULL),(425326,542364,9,'cinematographer','director of photography',NULL),(425357,229248,10,'cinematographer',NULL,NULL),(425357,708,1,'actor',NULL,'[\"Marvin\"]'),(425357,226784,2,'actress',NULL,'[\"Alexis Plummer\"]'),(425357,5171,3,'actor',NULL,'[\"Bill Plummer\"]'),(425357,71825,4,'actress',NULL,'[\"Marcy\"]'),(425357,782900,5,'director',NULL,NULL),(425357,1733305,6,'writer',NULL,NULL),(425357,146950,7,'producer','producer',NULL),(425357,1579315,8,'producer','producer',NULL),(425357,349207,9,'composer',NULL,NULL),(425413,337313,10,'cinematographer','director of photography',NULL),(425413,670408,1,'actor',NULL,'[\"Dennis\"]'),(425413,628601,2,'actress',NULL,'[\"Libby\"]'),(425413,279,3,'actor',NULL,'[\"Whit\"]'),(425413,602836,4,'actor',NULL,'[\"Gordon\"]'),(425413,1710,5,'director',NULL,NULL),(425413,85438,6,'writer','screenplay',NULL),(425413,193501,7,'producer','producer',NULL),(425413,429134,8,'producer','producer',NULL),(425413,943391,9,'composer',NULL,NULL),(425430,792061,10,'producer','producer',NULL),(425430,1518,1,'actor',NULL,'[\"Roy\"]'),(425430,542,2,'actress',NULL,'[\"Denise\"]'),(425430,829576,3,'actress',NULL,'[\"Jess\"]'),(425430,179173,4,'actor',NULL,'[\"Burwell\"]'),(425430,659380,5,'director',NULL,NULL),(425430,161152,6,'director',NULL,NULL),(425430,1187126,7,'writer','screenplay',NULL),(425430,267805,8,'writer','story',NULL),(425430,600,9,'producer','producer',NULL),(425637,151835,10,'producer','producer',NULL),(425637,504897,1,'actor',NULL,'[\"Zhou Yu\"]'),(425637,437580,2,'actor',NULL,'[\"Zhuge Liang\"]'),(425637,955342,3,'actor',NULL,'[\"Cao Cao\"]'),(425637,151654,4,'actor',NULL,'[\"Sun Quan\"]'),(425637,247,5,'director',NULL,NULL),(425637,1502082,6,'writer','screenplay',NULL),(425637,1171056,7,'writer','screenplay',NULL),(425637,2370726,8,'writer','screenplay',NULL),(425637,526824,9,'writer','novel \"Romance of the Three Kingdoms\"',NULL),(426089,1447054,1,'actress',NULL,'[\"Annie\"]'),(426089,1729013,2,'actress',NULL,'[\"Maggie\"]'),(426089,461592,3,'actor',NULL,'[\"Bill\"]'),(426089,1726179,4,'actress',NULL,'[\"Jenny\"]'),(426089,1733026,5,'director',NULL,NULL),(426089,1729481,6,'producer','producer',NULL),(426089,1732122,7,'composer',NULL,NULL),(426089,82104,8,'cinematographer',NULL,NULL),(426578,298600,10,'editor',NULL,NULL),(426578,421799,1,'actress',NULL,'[\"Sophie Scholl\"]'),(426578,1443396,2,'actor',NULL,'[\"Hans Scholl\"]'),(426578,374901,3,'actor',NULL,'[\"Robert Mohr\"]'),(426578,309404,4,'actress',NULL,'[\"Else Gebel\"]'),(426578,745131,5,'director',NULL,NULL),(426578,106937,6,'writer',NULL,NULL),(426578,374112,7,'composer',NULL,NULL),(426578,459517,8,'composer',NULL,NULL),(426578,486311,9,'cinematographer',NULL,NULL),(426592,251948,10,'editor',NULL,NULL),(426592,68166,1,'actor',NULL,'[\"Rick Riker\"]'),(426592,558,2,'actor',NULL,'[\"Uncle Albert\"]'),(426592,668139,3,'actress',NULL,'[\"Jill Johnson\"]'),(426592,1520,4,'actor',NULL,'[\"Lou Landers\"]'),(426592,563301,5,'director',NULL,NULL),(426592,919154,6,'producer','producer',NULL),(426592,1878,7,'producer','producer',NULL),(426592,892868,8,'composer',NULL,NULL),(426592,5630,9,'cinematographer','director of photography',NULL),(426931,6183,10,'composer',NULL,NULL),(426931,383603,1,'actor',NULL,'[\"August Rush\"]'),(426931,5392,2,'actress',NULL,'[\"Lyla Novacek\"]'),(426931,1667,3,'actor',NULL,'[\"Louis Connelly\"]'),(426931,5024,4,'actor',NULL,'[\"Richard Jeffries\"]'),(426931,792202,5,'director',NULL,NULL),(426931,145309,6,'writer','screenplay',NULL),(426931,366337,7,'writer','screenplay',NULL),(426931,1554513,8,'writer','story',NULL),(426931,507669,9,'producer','producer',NULL),(426955,243969,10,'producer','producer',NULL),(426955,792198,1,'actress',NULL,'[\"Princess Anneliese\",\"Erika\"]'),(426955,1738571,2,'actress',NULL,'[\"Princess Anneliese\"]'),(426955,828521,3,'actress',NULL,'[\"Erika\"]'),(426955,383926,4,'actor',NULL,'[\"King Dominick\"]'),(426955,490640,5,'director',NULL,NULL),(426955,748429,6,'writer','written by',NULL),(426955,504327,7,'writer','written by',NULL),(426955,878494,8,'writer','novel \"The Prince and the Pauper\"',NULL),(426955,1043325,9,'writer','based on: the Barbie characters created by',NULL),(427152,662748,10,'producer','producer',NULL),(427152,136797,1,'actor',NULL,'[\"Barry\"]'),(427152,748620,2,'actor',NULL,'[\"Tim\"]'),(427152,1210895,3,'actress',NULL,'[\"Julie\"]'),(427152,302108,4,'actor',NULL,'[\"Therman\"]'),(427152,5366,5,'director',NULL,NULL),(427152,1115862,6,'writer','screenplay',NULL),(427152,1911349,7,'writer','screenplay',NULL),(427152,891554,8,'writer','film \"Le Diner de Cons\"',NULL),(427152,531827,9,'producer','producer',NULL),(427229,448843,10,'composer',NULL,NULL),(427229,190,1,'actor',NULL,'[\"Tripp\"]'),(427229,572,2,'actress',NULL,'[\"Paula\"]'),(427229,870,3,'actress',NULL,'[\"Sue\"]'),(427229,103537,4,'actor',NULL,'[\"Al\"]'),(427229,223359,5,'director',NULL,NULL),(427229,40022,6,'writer','written by',NULL),(427229,256079,7,'writer','written by',NULL),(427229,42992,8,'producer','producer',NULL),(427229,748784,9,'producer','producer',NULL),(427327,581117,10,'producer','producer',NULL),(427327,237,1,'actor',NULL,'[\"Edna Turnblad\"]'),(427327,1451,2,'actress',NULL,'[\"Motormouth Maybelle\"]'),(427327,2284889,3,'actress',NULL,'[\"Tracy Turnblad\"]'),(427327,201,4,'actress',NULL,'[\"Velma Von Tussle\"]'),(427327,788202,5,'director',NULL,NULL),(427327,228908,6,'writer','screenplay',NULL),(427327,691,7,'writer',NULL,NULL),(427327,1764916,8,'writer','musical play',NULL),(427327,576070,9,'writer','musical play',NULL),(427470,6133,10,'composer',NULL,NULL),(427470,330687,1,'actor',NULL,'[\"Chris Pratt\"]'),(427470,1099,2,'actor',NULL,'[\"Lewis\"]'),(427470,328828,3,'actor',NULL,'[\"Gary Spargo\"]'),(427470,279545,4,'actress',NULL,'[\"Luvlee\"]'),(427470,291082,5,'director',NULL,NULL),(427470,53388,6,'producer','producer',NULL),(427470,83696,7,'producer','producer',NULL),(427470,548257,8,'producer','producer',NULL),(427470,662748,9,'producer','producer',NULL),(427944,322159,10,'editor',NULL,NULL),(427944,1173,1,'actor',NULL,'[\"Nick Naylor\"]'),(427944,1080974,2,'actor',NULL,'[\"Joey Naylor\"]'),(427944,4742,3,'actress',NULL,'[\"Polly Bailey\"]'),(427944,526406,4,'actress',NULL,'[\"Joan Lunden\"]'),(427944,718646,5,'director',NULL,NULL),(427944,1740772,6,'writer','novel',NULL),(427944,1616294,7,'producer','producer',NULL),(427944,448843,8,'composer',NULL,NULL),(427944,924275,9,'cinematographer','director of photography',NULL),(427969,73490,10,'editor',NULL,NULL),(427969,4778,1,'actor',NULL,'[\"Louis Simo\"]'),(427969,255,2,'actor',NULL,'[\"George Reeves\"]'),(427969,178,3,'actress',NULL,'[\"Toni Mannix\"]'),(427969,1364,4,'actor',NULL,'[\"Eddie Mannix\"]'),(427969,2339,5,'director',NULL,NULL),(427969,76602,6,'writer','written by',NULL),(427969,932037,7,'producer','producer',NULL),(427969,953616,8,'composer',NULL,NULL),(427969,293456,9,'cinematographer',NULL,NULL),(428038,876511,10,'cinematographer',NULL,NULL),(428038,714147,1,'actress',NULL,'[\"Young Inge\"]'),(428038,809135,2,'actress',NULL,'[\"Old Inge\"]'),(428038,1738176,3,'actor',NULL,'[\"Young Lars\"]'),(428038,1767401,4,'actor',NULL,'[\"Old Lars\"]'),(428038,783180,5,'director',NULL,NULL),(428038,915978,6,'writer','short story \"A Gravestone Made of Wheat\"',NULL),(428038,81875,7,'producer','producer',NULL),(428038,1086,8,'producer','producer',NULL),(428038,651366,9,'composer',NULL,NULL),(428579,673137,10,'composer',NULL,NULL),(428579,1264,1,'actress',NULL,'[\"Brett Eisenberg\"]'),(428579,285,2,'actor',NULL,'[\"Archie Knox\"]'),(428579,1192254,3,'actress',NULL,'[\"Chloe\"]'),(428579,622553,4,'actor',NULL,'[\"Robert Eisenberg\"]'),(428579,458884,5,'director',NULL,NULL),(428579,1746304,6,'writer','short stories \"My Old Man\" and \"The Worst Thing a Suburban Girl Could Imagine\" from the book \"The Girls\' Guide to Hunting and Fishing\"',NULL),(428579,215769,7,'producer','producer',NULL),(428579,698133,8,'producer','producer',NULL),(428579,846947,9,'producer','producer',NULL),(428856,182922,10,'editor',NULL,NULL),(428856,512071,1,'actor',NULL,'[\"Marc Thiriez\"]'),(428856,222922,2,'actress',NULL,'[\"Agnès Thiriez\"]'),(428856,23832,3,'actor',NULL,'[\"Serge Schaeffer\"]'),(428856,320762,4,'actor',NULL,'[\"Bruno\"]'),(428856,141127,5,'director',NULL,NULL),(428856,64503,6,'writer',NULL,NULL),(428856,7014,7,'producer','producer',NULL),(428856,1275,8,'composer',NULL,NULL),(428856,89333,9,'cinematographer',NULL,NULL),(429493,198467,10,'producer','producer',NULL),(429493,553,1,'actor',NULL,'[\"Hannibal\"]'),(429493,177896,2,'actor',NULL,'[\"Face\"]'),(429493,1663205,3,'actor',NULL,'[\"Murdock\"]'),(429493,4754,4,'actress',NULL,'[\"Charissa Sosa\"]'),(429493,138620,5,'director',NULL,NULL),(429493,89141,6,'writer','written by',NULL),(429493,940790,7,'writer','written by',NULL),(429493,526967,8,'writer','television series \"The A-Team\"',NULL),(429493,4798,9,'writer','television series \"The A-Team\"',NULL),(429589,593838,10,'cinematographer','director of photography',NULL),(429589,316079,1,'actor',NULL,'[\"Stan Beals\"]'),(429589,115,2,'actor',NULL,'[\"Zoc\"]'),(429589,210,3,'actress',NULL,'[\"Hova\"]'),(429589,658,4,'actress',NULL,'[\"Queen\"]'),(429589,204884,5,'director',NULL,NULL),(429589,1752042,6,'writer','book',NULL),(429589,324556,7,'producer','producer',NULL),(429589,158,8,'producer','producer',NULL),(429589,2201,9,'composer',NULL,NULL),(429591,386595,10,'composer',NULL,NULL),(429591,731075,1,'actress',NULL,'[\"Claire\"]'),(429591,1685658,2,'actress',NULL,'[\"Hailey Rogers\"]'),(429591,668139,3,'actress',NULL,'[\"Aquamarine\"]'),(429591,1416330,4,'actor',NULL,'[\"Raymond\"]'),(429591,20491,5,'director',NULL,NULL),(429591,1735367,6,'writer','screenplay',NULL),(429591,70566,7,'writer','screenplay',NULL),(429591,388805,8,'writer','novel',NULL),(429591,142134,9,'producer','producer',NULL),(429727,6228,10,'composer',NULL,NULL),(429727,650024,1,'actor',NULL,'[\"Bruno Bonomo\"]'),(429727,125540,2,'actress',NULL,'[\"Paola Bonomo\",\"Aidra\"]'),(429727,872910,3,'actress',NULL,'[\"Teresa\"]'),(429727,686375,4,'actor',NULL,'[\"Marco Pulici\",\"Silvio Berlusconi\"]'),(429727,604335,5,'director',NULL,NULL),(429727,772144,6,'writer','story',NULL),(429727,1154102,7,'writer',NULL,NULL),(429727,1703635,8,'writer',NULL,NULL),(429727,53184,9,'producer','producer',NULL),(430105,579977,10,'cinematographer','director of photography',NULL),(430105,242,1,'actor',NULL,'[\"Bobby Mercer\"]'),(430105,879085,2,'actor',NULL,'[\"Angel Mercer\"]'),(430105,71275,3,'actor',NULL,'[\"Jeremiah Mercer\"]'),(430105,1330560,4,'actor',NULL,'[\"Jack Mercer\"]'),(430105,5436,5,'director',NULL,NULL),(430105,254213,6,'writer','written by',NULL),(430105,1749087,7,'writer','written by',NULL),(430105,225146,8,'producer','producer',NULL),(430105,3417,9,'composer',NULL,NULL),(430164,1712318,10,'cinematographer',NULL,NULL),(430164,349522,1,'actor',NULL,'[\"Juan\"]'),(430164,914455,2,'actress',NULL,'[\"Sonia\"]'),(430164,333466,3,'actor',NULL,'[\"Domingo\"]'),(430164,39707,4,'actress',NULL,'[\"María\"]'),(430164,407067,5,'director',NULL,NULL),(430164,346277,6,'writer','screenplay',NULL),(430164,1973308,7,'producer','producer',NULL),(430164,273327,8,'producer','producer',NULL),(430164,63414,9,'composer',NULL,NULL),(430357,66244,10,'cinematographer','director of photography',NULL),(430357,268199,1,'actor',NULL,'[\"Sonny Crockett\"]'),(430357,4937,2,'actor',NULL,'[\"Ricardo Tubbs\"]'),(430357,84,3,'actress',NULL,'[\"Isabella\"]'),(430357,365140,4,'actress',NULL,'[\"Trudy Joplin\"]'),(430357,520,5,'director',NULL,NULL),(430357,947608,6,'writer','TV series',NULL),(430357,115764,7,'producer','producer',NULL),(430357,7694623,8,'producer','producer',NULL),(430357,614373,9,'composer',NULL,NULL),(430634,193274,10,'production_designer',NULL,NULL),(430634,1335291,1,'actress',NULL,'[\"Haley Graham\"]'),(430634,313,2,'actor',NULL,'[\"Burt Vickerman\"]'),(430634,501837,3,'actress',NULL,'[\"Joanne Charis\"]'),(430634,1840748,4,'actress',NULL,'[\"Wei Wei Yong\"]'),(430634,70566,5,'director',NULL,NULL),(430634,528930,6,'producer','producer',NULL),(430634,801117,7,'composer',NULL,NULL),(430634,645401,8,'cinematographer',NULL,NULL),(430634,847258,9,'editor',NULL,NULL),(430770,426440,10,'producer','producer',NULL),(430770,212,1,'actress',NULL,'[\"Mary Haines\"]'),(430770,578949,2,'actress',NULL,'[\"Crystal Allen\"]'),(430770,906,3,'actress',NULL,'[\"Sylvie Fowler\"]'),(430770,5226,4,'actress',NULL,'[\"Edie Cohen\"]'),(430770,257606,5,'director',NULL,NULL),(430770,524403,6,'writer','play',NULL),(430770,2616,7,'writer',NULL,NULL),(430770,613848,8,'writer',NULL,NULL),(430770,1396,9,'producer','producer',NULL),(430922,661289,10,'producer','producer',NULL),(430922,748620,1,'actor',NULL,'[\"Danny\"]'),(430922,5405,2,'actor',NULL,'[\"Wheeler\"]'),(430922,6969,3,'actress',NULL,'[\"Beth\"]'),(430922,2395586,4,'actor',NULL,'[\"Augie\"]'),(430922,906476,5,'director',NULL,NULL),(430922,251,6,'writer','story',NULL),(430922,380819,7,'writer','story',NULL),(430922,547800,8,'writer','screenplay',NULL),(430922,339004,9,'producer','producer',NULL),(431021,849964,10,'producer','producer',NULL),(431021,2828435,1,'actress',NULL,'[\"Em\"]'),(431021,604742,2,'actor',NULL,'[\"Clyde\"]'),(431021,1718,3,'actress',NULL,'[\"Stephanie\"]'),(431021,1956478,4,'actress',NULL,'[\"Hannah\"]'),(431021,97079,5,'director',NULL,NULL),(431021,1340000,6,'writer','written by',NULL),(431021,925482,7,'writer','written by',NULL),(431021,1757236,8,'writer','article \"Jinx in a Box\"',NULL),(431021,600,9,'producer','producer',NULL),(431308,467255,10,'producer','producer',NULL),(431308,5476,1,'actress',NULL,'[\"Holly\"]'),(431308,124930,2,'actor',NULL,'[\"Gerry\"]'),(431308,1065,3,'actor',NULL,'[\"Daniel\"]'),(431308,1435,4,'actress',NULL,'[\"Denise\"]'),(431308,481418,5,'director',NULL,NULL),(431308,737216,6,'writer','screenplay',NULL),(431308,1754499,7,'writer','novel',NULL),(431308,277704,8,'producer','producer',NULL),(431308,424663,9,'producer','producer',NULL),(431340,355790,10,'writer','characters',NULL),(431340,397,1,'actor',NULL,'[\"Robert Toulon\"]'),(431340,29502,2,'actress',NULL,'[\"Erica Sharpe\"]'),(431340,918210,3,'actress',NULL,'[\"Alex Toulon\"]'),(431340,840445,4,'actress',NULL,'[\"Sgt. Jessica Russell\"]'),(431340,138609,5,'director',NULL,NULL),(431340,3676,6,'writer','written by',NULL),(431340,23929,7,'writer','characters',NULL),(431340,227187,8,'writer','characters',NULL),(431340,275286,9,'writer','characters',NULL),(431641,757109,10,'cinematographer',NULL,NULL),(431641,1475754,1,'actress',NULL,'[\"Azumi\"]'),(431641,410951,2,'actor',NULL,'[\"Nagara\"]'),(431641,475752,3,'actress',NULL,'[\"Kozue\"]'),(431641,1040419,4,'actor',NULL,'[\"Ginkaku\",\"Nachi\"]'),(431641,437526,5,'director',NULL,NULL),(431641,1473712,6,'writer','manga',NULL),(431641,945451,7,'writer','screenplay',NULL),(431641,159109,8,'writer','screenplay',NULL),(431641,620457,9,'producer','producer',NULL),(432021,474709,10,'producer','producer',NULL),(432021,170,1,'actress',NULL,'[\"Alice\"]'),(432021,5123,2,'actress',NULL,'[\"Claire\"]'),(432021,4912,3,'actor',NULL,'[\"Carlos Olivera\"]'),(432021,322513,4,'actor',NULL,'[\"Dr. Isaacs\"]'),(432021,611683,5,'director',NULL,NULL),(432021,27271,6,'writer','written by',NULL),(432021,93337,7,'producer','producer',NULL),(432021,251536,8,'producer','producer',NULL),(432021,352820,9,'producer','producer',NULL),(432283,748784,10,'producer','producer',NULL),(432283,123,1,'actor',NULL,'[\"Mr. Fox\"]'),(432283,658,2,'actress',NULL,'[\"Mrs. Fox\"]'),(432283,195,3,'actor',NULL,'[\"Badger\"]'),(432283,5403,4,'actor',NULL,'[\"Ash\"]'),(432283,27572,5,'director',NULL,NULL),(432283,1094,6,'writer','based on the book by',NULL),(432283,876,7,'writer','written for the screen by',NULL),(432283,7831,8,'producer','producer',NULL),(432283,206154,9,'producer','producer',NULL),(432291,319666,10,'producer','producer',NULL),(432291,919991,1,'actor',NULL,'[\"Nick Castle\"]'),(432291,1192254,2,'actress',NULL,'[\"Elizabeth Williams\"]'),(432291,4757,3,'actress',NULL,'[\"Stevie Wayne\"]'),(432291,1154986,4,'actor',NULL,'[\"Spooner\"]'),(432291,906548,5,'director',NULL,NULL),(432291,493548,6,'writer','screenplay',NULL),(432291,118,7,'writer',NULL,NULL),(432291,384185,8,'writer',NULL,NULL),(432291,287759,9,'producer','producer',NULL),(432314,2770172,10,'producer','producer',NULL),(432314,227,1,'actress',NULL,'[\"Kate Davis\"]'),(432314,90,2,'actor',NULL,'[\"Fon Leeb\"]'),(432314,840430,3,'actress',NULL,'[\"Nina Tsvetkova\"]'),(432314,321,4,'actor',NULL,'[\"Parker\"]'),(432314,120729,5,'director',NULL,NULL),(432314,813068,6,'writer',NULL,NULL),(432314,192770,7,'producer','producer',NULL),(432314,236474,8,'producer','producer',NULL),(432314,1209761,9,'producer','producer',NULL),(432325,3227375,10,'composer',NULL,NULL),(432325,1759691,1,'actor',NULL,'[\"Father\"]'),(432325,1760015,2,'actress',NULL,'[\"Mother\"]'),(432325,1759904,3,'actress',NULL,'[\"Oldest daughter\"]'),(432325,1759905,4,'actress',NULL,'[\"Youngest daughter\"]'),(432325,1389025,5,'director',NULL,NULL),(432325,5011403,6,'writer','english adaptation: original version with subtitles',NULL),(432325,337493,7,'writer','adaptation',NULL),(432325,5011215,8,'writer','tale: The Cave of the Yellow Dog',NULL),(432325,1032539,9,'producer','producer',NULL),(432348,167197,10,'composer',NULL,NULL),(432348,5531,1,'actor',NULL,'[\"Eric Matthews\"]'),(432348,5238,2,'actress',NULL,'[\"Laura\"]'),(432348,1065281,3,'actor',NULL,'[\"Xavier\"]'),(432348,891275,4,'actress',NULL,'[\"Addison\"]'),(432348,1135423,5,'director',NULL,NULL),(432348,1191481,6,'writer','written by',NULL),(432348,121117,7,'producer','producer',NULL),(432348,388898,8,'producer','producer',NULL),(432348,467977,9,'producer','producer',NULL),(433035,1848205,10,'producer','producer',NULL),(433035,413168,1,'actor',NULL,'[\"Charlie Kenton\"]'),(433035,1431940,2,'actress',NULL,'[\"Bailey Tallet\"]'),(433035,2023672,3,'actor',NULL,'[\"Max Kenton\"]'),(433035,1107001,4,'actor',NULL,'[\"Finn\"]'),(433035,506613,5,'director',NULL,NULL),(433035,309691,6,'writer','screenplay',NULL),(433035,319659,7,'writer','story',NULL),(433035,505230,8,'writer','story',NULL),(433035,558577,9,'writer','short story \"Steel\"',NULL),(433362,330090,10,'composer',NULL,NULL),(433362,160,1,'actor',NULL,'[\"Edward Dalton\"]'),(433362,353,2,'actor',NULL,'[\"Lionel \'Elvis\' Cormac\"]'),(433362,554,3,'actor',NULL,'[\"Charles Bromley\"]'),(433362,3735190,4,'actress',NULL,'[\"Lisa Barrett\"]'),(433362,1294961,5,'director',NULL,NULL),(433362,1294962,6,'director',NULL,NULL),(433362,113244,7,'producer','producer',NULL),(433362,1227576,8,'producer','producer',NULL),(433362,299120,9,'producer','producer',NULL),(433383,657,1,'actor',NULL,'[\"Edward R. Murrow\"]'),(433383,123,2,'actor',NULL,'[\"Fred Friendly\"]'),(433383,165101,3,'actress',NULL,'[\"Shirley Wershba\"]'),(433383,1099,4,'actor',NULL,'[\"Sig Mickelson\"]'),(433383,381416,5,'writer','written by',NULL),(433383,660518,6,'composer',NULL,NULL),(433383,5696,7,'cinematographer','director of photography',NULL),(433383,592537,8,'editor',NULL,NULL),(433383,84304,9,'production_designer',NULL,NULL),(433386,2366,10,'composer',NULL,NULL),(433386,848554,1,'actress',NULL,'[\"Aubrey\"]'),(433386,155211,2,'actor',NULL,'[\"Eason\"]'),(433386,444223,3,'actress',NULL,'[\"Allison\"]'),(433386,1264,4,'actress',NULL,'[\"Karen\"]'),(433386,1234345,5,'director',NULL,NULL),(433386,839812,6,'writer','written by',NULL),(433386,406772,7,'producer','producer',NULL),(433386,600,8,'producer','producer',NULL),(433386,849964,9,'producer','producer',NULL),(433412,1333759,10,'producer','producer',NULL),(433412,240381,1,'actress',NULL,'[\"Tanzie Marchetta\"]'),(433412,240380,2,'actress',NULL,'[\"Ava Marchetta\"]'),(433412,1378,3,'actress',NULL,'[\"Fabiella\"]'),(433412,744,4,'actress',NULL,'[\"Inez\"]'),(433412,4838,5,'director',NULL,NULL),(433412,1735367,6,'writer','written by',NULL),(433412,1890301,7,'writer','written by',NULL),(433412,1898779,8,'writer','written by',NULL),(433412,13977613,9,'producer','producer',NULL),(434124,1280262,10,'producer','producer',NULL),(434124,252230,1,'actor',NULL,'[\"Lola\"]'),(434124,249291,2,'actor',NULL,'[\"Charlie\"]'),(434124,5322,3,'actress',NULL,'[\"Lauren\"]'),(434124,740383,4,'actress',NULL,'[\"Nicola\"]'),(434124,418982,5,'director',NULL,NULL),(434124,213017,6,'writer','written by',NULL),(434124,278759,7,'writer','written by',NULL),(434124,59218,8,'producer','producer',NULL),(434124,262167,9,'producer','producer',NULL),(434409,650038,10,'producer','producer',NULL),(434409,915989,1,'actor',NULL,'[\"V\",\"William Rookwood\"]'),(434409,204,2,'actress',NULL,'[\"Evey\"]'),(434409,1291,3,'actor',NULL,'[\"Dominic\"]'),(434409,1653,4,'actor',NULL,'[\"Finch\"]'),(434409,574625,5,'director',NULL,NULL),(434409,905152,6,'writer','screenplay',NULL),(434409,905154,7,'writer','screenplay',NULL),(434409,2331222,8,'writer','graphic novel art',NULL),(434409,384294,9,'producer','producer',NULL),(435224,698271,10,'producer','producer',NULL),(435224,1778258,1,'actor',NULL,'[\"Alessandro Stellin\"]'),(435224,629263,2,'actor',NULL,'[\"Ferdi Castronovo\"]'),(435224,1778413,3,'actor',NULL,'[\"Toni\"]'),(435224,1782978,4,'actress',NULL,'[\"Adele Stellin\"]'),(435224,300880,5,'director',NULL,NULL),(435224,22085,6,'writer',NULL,NULL),(435224,1778061,7,'writer','novel',NULL),(435224,1520934,8,'writer',NULL,NULL),(435224,33870,9,'producer','line producer',NULL),(435286,559645,10,'producer','producer',NULL),(435286,853301,1,'actress',NULL,'[\"Ash Ketchum\",\"May\"]'),(435286,835688,2,'actor',NULL,'[\"Brock\",\"James\"]'),(435286,83671,3,'actress',NULL,'[\"Max\"]'),(435286,6851,4,'actress',NULL,'[\"Meowth\"]'),(435286,951197,5,'director',NULL,NULL),(435286,1229511,6,'director',NULL,NULL),(435286,146097,7,'writer',NULL,NULL),(435286,683609,8,'writer',NULL,NULL),(435286,814473,9,'writer',NULL,NULL),(435434,585367,10,'composer',NULL,NULL),(435434,1392075,1,'actress',NULL,'[\"Tomoko Suzuki (Tenor Sax)\"]'),(435434,1778466,2,'actor',NULL,'[\"Takuo Nakamura (Piano)\"]'),(435434,1232925,3,'actress',NULL,'[\"Yoshie Saito (Trumpet)\"]'),(435434,1779520,4,'actress',NULL,'[\"Kaori Sekiguchi (Trombone)\"]'),(435434,944937,5,'director',NULL,NULL),(435434,1780061,6,'writer','contributing writer',NULL),(435434,1780149,7,'producer','producer',NULL),(435434,782848,8,'producer','producer',NULL),(435434,2030863,9,'composer',NULL,NULL),(435528,6258,10,'composer',NULL,NULL),(435528,1817817,1,'actress',NULL,'[\"Nanny\"]'),(435528,1352881,2,'actor',NULL,'[\"David\"]'),(435528,740264,3,'actor',NULL,'[\"Sidney\"]'),(435528,391326,4,'actor',NULL,'[\"Max\"]'),(435528,376664,5,'director',NULL,NULL),(435528,96319,6,'writer','written by',NULL),(435528,112189,7,'producer','producer',NULL),(435528,1023578,8,'producer','producer',NULL),(435528,497083,9,'producer','producer',NULL),(435623,265416,10,'composer',NULL,NULL),(435623,307,1,'actress',NULL,'[\"Woman\"]'),(435623,1173,2,'actor',NULL,'[\"Man\"]'),(435623,1541751,3,'actor',NULL,'[\"Bartender at Wedding\"]'),(435623,1310016,4,'actor',NULL,'[\"Groom\"]'),(435623,134396,5,'director',NULL,NULL),(435623,955251,6,'writer','written by',NULL),(435623,54234,7,'producer','producer',NULL),(435623,74851,8,'producer','producer',NULL),(435623,567337,9,'producer','producer',NULL),(435625,2493,10,'production_designer',NULL,NULL),(435625,531933,1,'actress',NULL,'[\"Sarah\"]'),(435625,413238,2,'actress',NULL,'[\"Juno\"]'),(435625,717157,3,'actress',NULL,'[\"Beth\"]'),(435625,611731,4,'actress',NULL,'[\"Rebecca\"]'),(435625,551076,5,'director',NULL,NULL),(435625,1384503,6,'producer','producer',NULL),(435625,432382,7,'composer',NULL,NULL),(435625,567302,8,'cinematographer','director of photography',NULL),(435625,1154184,9,'editor',NULL,NULL),(435651,1012185,10,'producer','producer',NULL),(435651,4154798,1,'actor',NULL,'[\"Jonas\"]'),(435651,313,2,'actor',NULL,'[\"The Giver\"]'),(435651,658,3,'actress',NULL,'[\"Chief Elder\"]'),(435651,2357847,4,'actress',NULL,'[\"Rosemary\"]'),(435651,637518,5,'director',NULL,NULL),(435651,2276729,6,'writer','screenplay',NULL),(435651,4332,7,'writer','screenplay',NULL),(435651,523342,8,'writer','book',NULL),(435651,462867,9,'producer','producer',NULL),(435665,469145,10,'composer',NULL,NULL),(435665,891275,1,'actress',NULL,'[\"Alex\"]'),(435665,703831,2,'actor',NULL,'[\"Ellis\"]'),(435665,277727,3,'actor',NULL,'[\"Dalton\"]'),(435665,598569,4,'actor',NULL,'[\"O\'Connor\"]'),(435665,403629,5,'director',NULL,NULL),(435665,1396574,6,'writer','story',NULL),(435665,1178069,7,'writer','story',NULL),(435665,22913,8,'writer','screenplay',NULL),(435665,332087,9,'producer','producer',NULL),(435679,840446,10,'cinematographer','director of photography',NULL),(435679,363699,1,'actress',NULL,'[\"Natalie\"]'),(435679,565366,2,'actor',NULL,'[\"Keith\"]'),(435679,366106,3,'actress',NULL,'[\"Brooke\"]'),(435679,1579445,4,'actor',NULL,'[\"Raff\"]'),(435679,1383079,5,'director',NULL,NULL),(435679,951390,6,'writer','screenplay',NULL),(435679,1966008,7,'writer','story',NULL),(435679,1778008,8,'producer','producer',NULL),(435679,386640,9,'composer',NULL,NULL),(435680,101970,10,'editor',NULL,NULL),(435680,1543989,1,'actor',NULL,'[\"Trife\"]'),(435680,1836882,2,'actress',NULL,'[\"Alisa\"]'),(435680,164929,3,'actor',NULL,'[\"Sam\"]'),(435680,212563,4,'actor',NULL,'[\"Jay\"]'),(435680,399630,5,'director',NULL,NULL),(435680,1572115,6,'producer','producer',NULL),(435680,427827,7,'producer','producer',NULL),(435680,29500,8,'composer',NULL,NULL),(435680,5909,9,'cinematographer','director of photography',NULL),(435705,307776,10,'producer','producer',NULL),(435705,115,1,'actor',NULL,'[\"Cris Johnson\"]'),(435705,194,2,'actress',NULL,'[\"Callie Ferris\"]'),(435705,4754,3,'actress',NULL,'[\"Liz Cooper\"]'),(435705,470981,4,'actor',NULL,'[\"Mr. Smith\"]'),(435705,848414,5,'director',NULL,NULL),(435705,325778,6,'writer','screenplay',NULL),(435705,378144,7,'writer','screenplay',NULL),(435705,76602,8,'writer','screenplay',NULL),(435705,1140,9,'writer','novel story \"The Golden Man\"',NULL),(435706,1171917,10,'cinematographer',NULL,NULL),(435706,292182,1,'actress',NULL,'[\"Lisa MacKinlay\"]'),(435706,174909,2,'actress',NULL,'[\"Nina Shah\"]'),(435706,539562,3,'actor',NULL,'[\"Raj Khanna\"]'),(435706,422588,4,'actor',NULL,'[\"Bobbi\"]'),(435706,663101,5,'director',NULL,NULL),(435706,316447,6,'writer','screenplay by',NULL),(435706,40564,7,'producer','producer',NULL),(435706,683653,8,'producer','producer',NULL),(435706,1230138,9,'composer',NULL,NULL),(435711,2125729,10,'composer',NULL,NULL),(435711,4883,1,'actor',NULL,'[\"Harry\"]'),(435711,664238,2,'actor',NULL,'[\"Theo\"]'),(435711,1642290,3,'actress',NULL,'[\"Madeline Goodhart\"]'),(435711,566084,4,'actress',NULL,'[\"Daisy Goodhart\"]'),(435711,1779919,5,'director',NULL,NULL),(435711,276101,6,'writer','writer',NULL),(435711,189791,7,'producer','producer',NULL),(435711,250680,8,'producer','producer',NULL),(435711,2426970,9,'producer','producer',NULL),(435761,5271,10,'composer',NULL,NULL),(435761,158,1,'actor',NULL,'[\"Woody\"]'),(435761,741,2,'actor',NULL,'[\"Buzz Lightyear\"]'),(435761,349,3,'actress',NULL,'[\"Jessie\"]'),(435761,885,4,'actor',NULL,'[\"Lotso\"]'),(435761,881279,5,'director',NULL,NULL),(435761,5124,6,'writer','story by',NULL),(435761,4056,7,'writer','story by',NULL),(435761,1578335,8,'writer','screenplay by',NULL),(435761,26565,9,'producer','producer',NULL),(436071,1785664,1,'self',NULL,'[\"Self\"]'),(436071,1786147,2,'editor',NULL,NULL),(436331,292482,10,'editor',NULL,NULL),(436331,98,1,'actress',NULL,'[\"Olivia\"]'),(436331,531,2,'actress',NULL,'[\"Jane\"]'),(436331,1416,3,'actress',NULL,'[\"Christine\"]'),(436331,349,4,'actress',NULL,'[\"Franny\"]'),(436331,392237,5,'director',NULL,NULL),(436331,106835,6,'producer','producer',NULL),(436331,429122,7,'composer',NULL,NULL),(436331,724950,8,'composer',NULL,NULL),(436331,820987,9,'cinematographer','director of photography',NULL),(436339,704909,10,'composer',NULL,NULL),(436339,4715,1,'actor',NULL,'[\"Kip Killian\"]'),(436339,4851,2,'actress',NULL,'[\"Juarez\"]'),(436339,302108,3,'actor',NULL,'[\"Ben\"]'),(436339,631490,4,'actor',NULL,'[\"Saber\"]'),(436339,947087,5,'director',NULL,NULL),(436339,926727,6,'writer','screenplay',NULL),(436339,926729,7,'writer','screenplay',NULL),(436339,416408,8,'writer','story',NULL),(436339,988,9,'producer','producer',NULL),(436697,6035,10,'composer',NULL,NULL),(436697,545,1,'actress',NULL,'[\"The Queen\"]'),(436697,790688,2,'actor',NULL,'[\"Tony Blair\"]'),(436697,342,3,'actor',NULL,'[\"Prince Philip\"]'),(436697,421105,4,'actor',NULL,'[\"Prince Charles\"]'),(436697,1241,5,'director',NULL,NULL),(436697,604948,6,'writer','written by',NULL),(436697,364170,7,'producer','producer',NULL),(436697,485972,8,'producer','producer',NULL),(436697,780870,9,'producer','producer',NULL),(437086,432725,10,'composer',NULL,NULL),(437086,4023073,1,'actress',NULL,'[\"Alita\"]'),(437086,910607,2,'actor',NULL,'[\"Dr. Dyson Ido\"]'),(437086,124,3,'actress',NULL,'[\"Chiren\"]'),(437086,991810,4,'actor',NULL,'[\"Vector\"]'),(437086,1675,5,'director',NULL,NULL),(437086,116,6,'writer','screenplay by',NULL),(437086,436164,7,'writer','screenplay by',NULL),(437086,1738737,8,'writer','based on the graphic novel series \"Gunnm\" by',NULL),(437086,484457,9,'producer','producer',NULL),(437800,956374,10,'composer',NULL,NULL),(437800,291,1,'actress',NULL,'[\"Tanya\"]'),(437800,401,2,'actor',NULL,'[\"Dr. Larabee\"]'),(437800,1551130,3,'actress',NULL,'[\"Akeelah\"]'),(437800,35664,4,'actor',NULL,'[\"Mr. Welch\"]'),(437800,40328,5,'director',NULL,NULL),(437800,304398,6,'producer','producer',NULL),(437800,401584,7,'producer','producer',NULL),(437800,515766,8,'producer','producer',NULL),(437800,1803515,9,'producer','producer',NULL),(437857,953511,10,'production_designer',NULL,NULL),(437857,1519453,1,'actor',NULL,'[\"Leslie Vernon\"]'),(437857,324462,2,'actress',NULL,'[\"Taylor Gentry\"]'),(437857,748289,3,'actress',NULL,'[\"Mrs. Collinwood\"]'),(437857,387,4,'actor',NULL,'[\"Doc Halloran\"]'),(437857,1795664,5,'director',NULL,NULL),(437857,1818268,6,'writer',NULL,NULL),(437857,1571576,7,'composer',NULL,NULL),(437857,696070,8,'cinematographer',NULL,NULL),(437857,696071,9,'editor',NULL,NULL),(438097,1000858,10,'producer','producer',NULL),(438097,5380,1,'actor',NULL,'[\"Manny\"]'),(438097,491,2,'actor',NULL,'[\"Sid\"]'),(438097,1459,3,'actor',NULL,'[\"Diego\"]'),(438097,5405,4,'actor',NULL,'[\"Crash\"]'),(438097,757858,5,'director',NULL,NULL),(438097,310087,6,'writer','screenplay',NULL),(438097,841532,7,'writer','screenplay',NULL),(438097,2186362,8,'writer','screenplay',NULL),(438097,5022110,9,'writer','based on the characters created by',NULL),(438488,2127497,10,'producer','producer',NULL),(438488,288,1,'actor',NULL,'[\"John Connor\"]'),(438488,941777,2,'actor',NULL,'[\"Marcus Wright\"]'),(438488,947338,3,'actor',NULL,'[\"Kyle Reese\"]'),(438488,1291227,4,'actress',NULL,'[\"Blair Williams\"]'),(438488,629334,5,'director',NULL,NULL),(438488,104335,6,'writer','written by',NULL),(438488,274905,7,'writer','written by',NULL),(438488,2203770,8,'producer','producer',NULL),(438488,97001,9,'producer','producer',NULL),(438575,883125,10,'producer','producer',NULL),(438575,1797112,1,'actor',NULL,'[\"David\"]'),(438575,1715275,2,'actress',NULL,'[\"Fatima\"]'),(438575,849578,3,'actor',NULL,'[\"Ariel\"]'),(438575,618577,4,'actor',NULL,'[\"Ahmed\"]'),(438575,1847738,5,'director',NULL,NULL),(438575,1640828,6,'writer','written by',NULL),(438575,1248442,7,'producer','producer',NULL),(438575,453360,8,'producer','producer',NULL),(438575,1449025,9,'producer','producer',NULL),(439289,505828,10,'composer',NULL,NULL),(439289,189200,1,'actor',NULL,'[\"Augusten Burroughs\"]'),(439289,906,2,'actress',NULL,'[\"Deirdre Burroughs\"]'),(439289,4051,3,'actor',NULL,'[\"Dr. Finch\"]'),(439289,569,4,'actress',NULL,'[\"Hope Finch\"]'),(439289,614682,5,'director',NULL,NULL),(439289,1802493,6,'writer','book \"Running with Scissors: A Memoir\"',NULL),(439289,306890,7,'producer','producer',NULL),(439289,340522,8,'producer','producer',NULL),(439289,93,9,'producer','producer',NULL),(439478,953616,10,'composer',NULL,NULL),(439478,1007,1,'actress',NULL,'[\"Lois\"]'),(439478,4767,2,'actor',NULL,'[\"Harry\"]'),(439478,882853,3,'actress',NULL,'[\"Marilyn\"]'),(439478,137230,4,'actor',NULL,'[\"Jack\"]'),(439478,782384,5,'director',NULL,NULL),(439478,1803551,6,'writer','story',NULL),(439478,186141,7,'writer','story',NULL),(439478,1549309,8,'writer',NULL,NULL),(439478,107954,9,'writer',NULL,NULL),(439491,136574,10,'cinematographer',NULL,NULL),(439491,675751,1,'actor',NULL,'[\"Vicente Vallejo\"]'),(439491,260449,2,'actress',NULL,'[\"Abigail\"]'),(439491,953197,3,'actress',NULL,'[\"Irene\"]'),(439491,1878571,4,'actor',NULL,'[\"Jackson\"]'),(439491,1802793,5,'director',NULL,NULL),(439491,1802625,6,'writer','adaptation',NULL),(439491,412803,7,'writer',NULL,NULL),(439491,1872457,8,'writer','story',NULL),(439491,1511272,9,'composer',NULL,NULL),(439533,363066,10,'actor',NULL,'[\"777\"]'),(439533,945322,1,'actor',NULL,'[\"Retro\"]'),(439533,393109,2,'actress',NULL,'[\"Pandy\"]'),(439533,594730,3,'actress',NULL,'[\"Galactica\"]'),(439533,412628,4,'actor',NULL,'[\"666\"]'),(439533,408043,5,'director',NULL,NULL),(439533,1825196,6,'writer','screenplay',NULL),(439533,2800042,7,'writer','creator',NULL),(439533,1888984,8,'producer','producer',NULL),(439533,297692,9,'composer',NULL,NULL),(439572,1764901,10,'writer','The Flash created by',NULL),(439572,3009232,1,'actor',NULL,'[\"Barry Allen\",\"The Flash\"]'),(439572,474,2,'actor',NULL,'[\"Bruce Wayne\",\"Batman\"]'),(439572,8567338,3,'actress',NULL,'[\"Kara Zor-El\",\"Supergirl\"]'),(439572,788335,4,'actor',NULL,'[\"General Zod\"]'),(439572,615592,5,'director',NULL,NULL),(439572,5429637,6,'writer','screenplay by',NULL),(439572,197855,7,'writer','screen story by',NULL),(439572,326246,8,'writer','screen story by',NULL),(439572,1703612,9,'writer','screen story by',NULL),(439623,516083,10,'composer',NULL,NULL),(439623,240381,1,'actress',NULL,'[\"Princess Crystal\"]'),(439623,240380,2,'actress',NULL,'[\"Princess Lucinda\"]'),(439623,56532,3,'actress',NULL,'[\"Agonysia\",\"Mrs. Claus\",\"Queen Penelope\"]'),(439623,573926,4,'actor',NULL,'[\"Mortmottimes\",\"Bubkus Bill\",\"Timebomb Tom\"]'),(439623,468549,5,'director',NULL,NULL),(439623,38518,6,'writer','written by',NULL),(439623,865064,7,'writer','contributing writer',NULL),(439623,782787,8,'producer','producer',NULL),(439623,1363611,9,'composer',NULL,NULL),(439815,6777,10,'editor',NULL,NULL),(439815,277213,1,'actor',NULL,'[\"Bill Pardy\"]'),(439815,6969,2,'actress',NULL,'[\"Starla Grant\"]'),(439815,740264,3,'actor',NULL,'[\"Grant Grant\"]'),(439815,860065,4,'actor',NULL,'[\"Wally\"]'),(439815,348181,5,'director',NULL,NULL),(439815,112189,6,'producer','producer',NULL),(439815,628080,7,'producer','producer',NULL),(439815,61045,8,'composer',NULL,NULL),(439815,4545,9,'cinematographer','director of photography',NULL),(439817,797461,10,'producer','producer',NULL),(439817,644521,1,'actor',NULL,'[\"Emperor Shouwa-Tennou Hirohito\"]'),(439817,206247,2,'actor',NULL,'[\"General Douglas MacArthur\"]'),(439817,597390,3,'actress',NULL,'[\"Empress Kojun\"]'),(439817,762965,4,'actor',NULL,'[\"The chamberlain\"]'),(439817,812546,5,'director',NULL,NULL),(439817,32685,6,'writer',NULL,NULL),(439817,2542262,7,'writer',NULL,NULL),(439817,436316,8,'producer','producer',NULL),(439817,612191,9,'producer','producer',NULL),(440803,1803881,10,'cinematographer','director of photography',NULL),(440803,263594,1,'actor',NULL,'[\"Tun\"]'),(440803,1801651,2,'actress',NULL,'[\"Jane\"]'),(440803,1801453,3,'actress',NULL,'[\"Natre\"]'),(440803,1862866,4,'actor',NULL,'[\"Tonn\"]'),(440803,1802294,5,'director',NULL,NULL),(440803,1059740,6,'director',NULL,NULL),(440803,1637163,7,'writer','screenplay',NULL),(440803,1818478,8,'producer','producer',NULL),(440803,1041228,9,'composer',NULL,NULL),(440963,189777,10,'producer','producer',NULL),(440963,354,1,'actor',NULL,'[\"Jason Bourne\"]'),(440963,1183149,2,'actor',NULL,'[\"Paz\"]'),(440963,260,3,'actress',NULL,'[\"Pam Landy\"]'),(440963,5466,4,'actress',NULL,'[\"Nicky Parsons\"]'),(440963,339030,5,'director',NULL,NULL),(440963,6904,6,'writer','screenplay',NULL),(440963,1994243,7,'writer','screenplay',NULL),(440963,1079776,8,'writer','screenplay',NULL),(440963,524924,9,'writer','novel',NULL),(441007,6142,10,'composer',NULL,NULL),(441007,775455,1,'actress',NULL,'[\"Grace Bowen\"]'),(441007,795576,2,'actor',NULL,'[\"Coach Owen Clark\"]'),(441007,223,3,'actress',NULL,'[\"Lindsay Bowen\"]'),(441007,497522,4,'actor',NULL,'[\"Johnny Bowen\"]'),(441007,346550,5,'director',NULL,NULL),(441007,676892,6,'writer','screenplay',NULL),(441007,418321,7,'writer','screenplay',NULL),(441007,2659100,8,'writer','story',NULL),(441007,843543,9,'producer','producer',NULL),(441041,774392,10,'cinematographer',NULL,NULL),(441041,1728326,1,'actress',NULL,'[\"Molly\"]'),(441041,1824967,2,'actress',NULL,'[\"Aneh-Tet\"]'),(441041,310,3,'actor',NULL,'[\"Sheriff Jones\"]'),(441041,2090,4,'actor',NULL,'[\"Dr. Swatek\"]'),(441041,50097,5,'director',NULL,NULL),(441041,490375,6,'producer','producer',NULL),(441041,727235,7,'producer','producer',NULL),(441041,833173,8,'producer','producer',NULL),(441041,507542,9,'composer',NULL,NULL),(441761,214088,10,'editor',NULL,NULL),(441761,204,1,'actress',NULL,'[\"Rebecca\"]'),(441761,489713,2,'actress',NULL,'[\"Hanna Ben Moshe\"]'),(441761,7814,3,'actress',NULL,'[\"Leila\"]'),(441761,560962,4,'actress',NULL,'[\"Mrs. Breitberg\"]'),(441761,321159,5,'director',NULL,NULL),(441761,763035,6,'writer',NULL,NULL),(441761,850120,7,'producer','co-producer: Hamon Hafakot',NULL),(441761,874011,8,'producer','co-producer: Agav Films',NULL),(441761,116193,9,'cinematographer',NULL,NULL),(441773,903456,10,'writer','story',NULL),(441773,85312,1,'actor',NULL,'[\"Po\"]'),(441773,574534,2,'actor',NULL,'[\"Tai Lung\"]'),(441773,1401,3,'actress',NULL,'[\"Tigress\"]'),(441773,163,4,'actor',NULL,'[\"Shifu\"]'),(441773,651706,5,'director',NULL,NULL),(441773,828970,6,'director',NULL,NULL),(441773,8743,7,'writer','screenplay',NULL),(441773,74184,8,'writer','screenplay',NULL),(441773,717550,9,'writer','story',NULL),(441774,385442,10,'editor',NULL,NULL),(441774,237,1,'actor',NULL,'[\"Elmer Robinson\"]'),(441774,161,2,'actress',NULL,'[\"Martha Beck\"]'),(441774,1467,3,'actor',NULL,'[\"Ray Fernandez\"]'),(441774,1254,4,'actor',NULL,'[\"Det. Charles Hilderbrandt\"]'),(441774,733149,5,'director',NULL,NULL),(441774,203246,6,'producer','producer',NULL),(441774,927561,7,'producer','producer',NULL),(441774,2217,8,'composer',NULL,NULL),(441774,2614,9,'cinematographer',NULL,NULL),(441909,757814,10,'editor',NULL,NULL),(441909,4851,1,'actress',NULL,'[\"Raimunda\"]'),(441909,560962,2,'actress',NULL,'[\"Irene\"]'),(441909,240318,3,'actress',NULL,'[\"Sole\"]'),(441909,692391,4,'actress',NULL,'[\"Agustina\"]'),(441909,264,5,'director',NULL,NULL),(441909,306088,6,'producer','producer',NULL),(441909,407076,7,'composer',NULL,NULL),(441909,3900,8,'cinematographer','director of photography',NULL),(441909,14187110,9,'editor',NULL,NULL),(442933,823330,10,'producer','producer',NULL),(442933,935653,1,'actor',NULL,'[\"Beowulf\",\"Golden Man\",\"Dragon\"]'),(442933,417,2,'actor',NULL,'[\"Grendel\"]'),(442933,1401,3,'actress',NULL,'[\"Grendel\'s Mother\"]'),(442933,705,4,'actress',NULL,'[\"Wealthow\"]'),(442933,709,5,'director',NULL,NULL),(442933,301274,6,'writer','screenplay',NULL),(442933,812,7,'writer','screenplay',NULL),(442933,1511619,8,'writer','epic poem \"Beowulf\"',NULL),(442933,710759,9,'producer','producer',NULL),(443231,648514,10,'editor',NULL,NULL),(443231,620397,1,'actress',NULL,'[\"Reiko Haruna\"]'),(443231,870317,2,'actor',NULL,'[\"Makoto Yoshioka\"]'),(443231,632689,3,'actor',NULL,'[\"Koichi Kijima\"]'),(443231,10402,4,'actress',NULL,'[\"Aya\"]'),(443231,475905,5,'director',NULL,NULL),(443231,8129612,6,'producer','producer',NULL),(443231,793710,7,'producer','producer',NULL),(443231,38976,8,'composer',NULL,NULL),(443231,38978,9,'cinematographer',NULL,NULL),(443272,1405,10,'cinematographer','director of photography',NULL),(443272,358,1,'actor',NULL,'[\"Abraham Lincoln\"]'),(443272,398,2,'actress',NULL,'[\"Mary Todd Lincoln\"]'),(443272,657,3,'actor',NULL,'[\"William Seward\"]'),(443272,330687,4,'actor',NULL,'[\"Robert Lincoln\"]'),(443272,229,5,'director',NULL,NULL),(443272,1065785,6,'writer','screenplay by',NULL),(443272,329447,7,'writer','based in part on the book \"Team of Rivals: The Political Genius of Abraham Lincoln\" by',NULL),(443272,5086,8,'producer','producer',NULL),(443272,2354,9,'composer',NULL,NULL),(443274,2993496,10,'editor',NULL,NULL),(443274,598,1,'actor',NULL,'[\"Thomas Barnes\"]'),(443274,1845,2,'actor',NULL,'[\"Howard Lewis\"]'),(443274,289142,3,'actor',NULL,'[\"Kent Taylor\"]'),(443274,569226,4,'actor',NULL,'[\"Phil McCullough\"]'),(443274,871428,5,'director',NULL,NULL),(443274,1633356,6,'writer','written by',NULL),(443274,605775,7,'producer','producer',NULL),(443274,651414,8,'composer',NULL,NULL),(443274,596360,9,'cinematographer','director of photography',NULL),(443295,205070,10,'writer',NULL,NULL),(443295,598,1,'actor',NULL,'[\"Frank Beardsley\"]'),(443295,623,2,'actress',NULL,'[\"Helen North\"]'),(443295,5278,3,'actor',NULL,'[\"Max\"]'),(443295,267511,4,'actor',NULL,'[\"William Beardsley\"]'),(443295,331532,5,'director',NULL,NULL),(443295,120816,6,'writer','screenplay',NULL),(443295,452235,7,'writer','screenplay',NULL),(443295,789520,8,'writer',NULL,NULL),(443295,480048,9,'writer',NULL,NULL),(443431,58458,10,'cinematographer','director of photography',NULL),(443431,1298546,1,'actor',NULL,'[\"Andy\"]'),(443431,1170394,2,'actor',NULL,'[\"Jarod\"]'),(443431,88098,3,'actor',NULL,'[\"Nico\"]'),(443431,1632070,4,'actor',NULL,'[\"Griff\"]'),(443431,827171,5,'director',NULL,NULL),(443431,436228,6,'writer','story by',NULL),(443431,1776792,7,'producer','producer',NULL),(443431,418809,8,'producer','producer',NULL),(443431,68877,9,'composer',NULL,NULL),(443453,5366,10,'producer','producer',NULL),(443453,56187,1,'actor',NULL,'[\"Borat\"]'),(443453,205772,2,'actor',NULL,'[\"Azamat\"]'),(443453,132685,3,'actress',NULL,'[\"Luenell\"]'),(443453,3929074,4,'actor',NULL,'[\"Bear\"]'),(443453,153078,5,'director',NULL,NULL),(443453,385630,6,'writer','screenplay',NULL),(443453,63165,7,'writer','screenplay',NULL),(443453,563243,8,'writer','screenplay',NULL),(443453,680846,9,'writer','story',NULL),(443455,1732926,10,'composer',NULL,NULL),(443455,471137,1,'actress',NULL,'[\"Mother\"]'),(443455,1828901,2,'actor',NULL,'[\"Guy Maddin\",\"Young\"]'),(443455,1851893,3,'actress',NULL,'[\"Sis\"]'),(443455,1847334,4,'actor',NULL,'[\"Chance Hale\",\"Wendy Hale\"]'),(443455,534665,5,'director',NULL,NULL),(443455,624369,6,'writer','narration',NULL),(443455,866014,7,'writer',NULL,NULL),(443455,2200542,8,'producer','producer',NULL),(443455,480068,9,'producer','producer',NULL),(443465,49945,10,'producer','producer',NULL),(443465,262635,1,'actor',NULL,'[\"Nick\"]'),(443465,1404408,2,'actress',NULL,'[\"Brooke\"]'),(443465,3500747,3,'actress',NULL,'[\"Hannah\"]'),(443465,191633,4,'actor',NULL,'[\"Harry\"]'),(443465,60103,5,'writer','screenplay',NULL),(443465,2267102,6,'writer','screenplay',NULL),(443465,1281191,7,'writer','screenplay',NULL),(443465,1343759,8,'writer','screenplay',NULL),(443465,49920,9,'producer','producer',NULL),(443473,256343,10,'cinematographer',NULL,NULL),(443473,42524,1,'actor',NULL,'[\"Conrad\"]'),(443473,5068,2,'actor',NULL,'[\"McStarley\"]'),(443473,428923,3,'actor',NULL,'[\"Petr\"]'),(443473,541120,4,'actor',NULL,'[\"Breckel\"]'),(443473,7045,5,'director',NULL,NULL),(443473,373154,6,'writer','screenplay',NULL),(443473,373151,7,'writer','story',NULL),(443473,800210,8,'producer','producer',NULL),(443473,6251,9,'composer',NULL,NULL),(443489,441717,10,'editor',NULL,NULL),(443489,461498,1,'actress',NULL,'[\"Deena Jones\"]'),(443489,4937,2,'actor',NULL,'[\"Curtis Taylor Jr.\"]'),(443489,552,3,'actor',NULL,'[\"James \'Thunder\' Early\"]'),(443489,418,4,'actor',NULL,'[\"Marty Madison\"]'),(443489,174374,5,'director',NULL,NULL),(443489,264132,6,'writer','based on the original broadway production book by',NULL),(443489,548257,7,'producer','producer',NULL),(443489,1561090,8,'composer',NULL,NULL),(443489,5859,9,'cinematographer','director of photography',NULL),(443536,1938852,10,'writer','additional screenplay material',NULL),(443536,4266,1,'actress',NULL,'[\"Red\"]'),(443536,335,2,'actress',NULL,'[\"Granny\"]'),(443536,911320,3,'actor',NULL,'[\"The Wolf\"]'),(443536,902,4,'actor',NULL,'[\"The Woodsman\"]'),(443536,249897,5,'director',NULL,NULL),(443536,250410,6,'director','co-director',NULL),(443536,498555,7,'director','co-director',NULL),(443536,456732,8,'writer','additional screenplay material',NULL),(443536,640976,9,'writer','additional screenplay material',NULL),(443543,776072,10,'producer','producer',NULL),(443543,1570,1,'actor',NULL,'[\"Eisenheim\"]'),(443543,4754,2,'actress',NULL,'[\"Sophie\"]'),(443543,316079,3,'actor',NULL,'[\"Inspector Uhl\"]'),(443543,1722,4,'actor',NULL,'[\"Crown Prince Leopold\"]'),(443543,1139726,5,'director',NULL,NULL),(443543,1841035,6,'writer','short story \"Eisenheim the Illusionist\"',NULL),(443543,2718,7,'producer','producer',NULL),(443543,505522,8,'producer','producer',NULL),(443543,518757,9,'producer','producer',NULL),(443559,46004,10,'composer',NULL,NULL),(443559,5048,1,'actor',NULL,'[\"Wayne Colson\"]'),(443559,178,2,'actress',NULL,'[\"Carmen\"]'),(443559,620,3,'actor',NULL,'[\"Blackbird\"]'),(443559,1682412,4,'actor',NULL,'[\"Blackbird\'s Kid Brother\"]'),(443559,6960,5,'director',NULL,NULL),(443559,24925,6,'writer','screenplay',NULL),(443559,1465,7,'writer','novel',NULL),(443559,4744,8,'producer','producer',NULL),(443559,321621,9,'producer','producer',NULL),(443649,825336,10,'cinematographer','director of photography',NULL),(443649,4741,1,'actress',NULL,'[\"Evolet\"]'),(443649,1711829,2,'actor',NULL,'[\"D\'Leh\"]'),(443649,434879,3,'actor',NULL,'[\"One-Eye\"]'),(443649,193295,4,'actor',NULL,'[\"Tic\'Tic\"]'),(443649,386,5,'director',NULL,NULL),(443649,460057,6,'writer','written by',NULL),(443649,330428,7,'producer','producer',NULL),(443649,1057590,8,'producer','producer',NULL),(443649,911173,9,'composer',NULL,NULL),(443680,883603,10,'producer','producer',NULL),(443680,93,1,'actor',NULL,'[\"Jesse James\"]'),(443680,729,2,'actor',NULL,'[\"Robert Ford\"]'),(443680,1731,3,'actor',NULL,'[\"Frank James\"]'),(443680,571,4,'actress',NULL,'[\"Zee James\"]'),(443680,231596,5,'director',NULL,NULL),(443680,361069,6,'writer','novel',NULL),(443680,198467,7,'producer','producer',NULL),(443680,306890,8,'producer','producer',NULL),(443680,631,9,'producer','producer',NULL),(443701,293081,10,'production_designer',NULL,NULL),(443701,141,1,'actor',NULL,'[\"Fox Mulder\"]'),(443701,96,2,'actress',NULL,'[\"Dana Scully\"]'),(443701,175262,3,'actor',NULL,'[\"Father Joseph Crissman\"]'),(443701,1605,4,'actress',NULL,'[\"ASAC Dakota Whitney\"]'),(443701,4810,5,'director',NULL,NULL),(443701,819487,6,'writer','written by',NULL),(443701,6296,7,'composer',NULL,NULL),(443701,736200,8,'cinematographer','director of photography',NULL),(443701,365239,9,'editor',NULL,NULL),(443706,5219,10,'producer','producer',NULL),(443706,350453,1,'actor',NULL,'[\"Robert Graysmith\"]'),(443706,375,2,'actor',NULL,'[\"Paul Avery\"]'),(443706,749263,3,'actor',NULL,'[\"Inspector David Toschi\"]'),(443706,381,4,'actor',NULL,'[\"Inspector William Armstrong\"]'),(443706,399,5,'director',NULL,NULL),(443706,888743,6,'writer','screenplay',NULL),(443706,1172196,7,'writer','book',NULL),(443706,149556,8,'producer','producer',NULL),(443706,1329482,9,'producer','producer',NULL),(444112,484981,10,'editor',NULL,NULL),(444112,208426,1,'actress',NULL,'[\"Jessica\"]'),(444112,501256,2,'actress',NULL,'[\"Catherine Versen\"]'),(444112,243355,3,'actor',NULL,'[\"Jean-François Lefort\"]'),(444112,105475,4,'actor',NULL,'[\"Jacques Grumberg\"]'),(444112,860019,5,'director',NULL,NULL),(444112,859985,6,'writer','screenplay',NULL),(444112,333123,7,'producer','producer',NULL),(444112,3607,8,'composer',NULL,NULL),(444112,264679,9,'cinematographer',NULL,NULL),(444628,4529,10,'cinematographer','director of photography',NULL),(444628,205,1,'actress',NULL,'[\"Fay Grim\"]'),(444628,156,2,'actor',NULL,'[\"Agent Fulbright\"]'),(444628,14582,3,'actor',NULL,'[\"Ned Grim\"]'),(444628,578815,4,'actor',NULL,'[\"Father Lang\"]'),(444628,1325,5,'director',NULL,NULL),(444628,353351,6,'producer','producer',NULL),(444628,459852,7,'producer','producer',NULL),(444628,752749,8,'producer','producer',NULL),(444628,895903,9,'producer','producer',NULL),(444653,278275,10,'cinematographer','director of photography',NULL),(444653,100,1,'actor',NULL,'[\"Walter Goodfellow\"]'),(444653,218,2,'actress',NULL,'[\"Gloria Goodfellow\"]'),(444653,1749,3,'actress',NULL,'[\"Grace Hawkins\"]'),(444653,664,4,'actor',NULL,'[\"Lance\"]'),(444653,425894,5,'director',NULL,NULL),(444653,751720,6,'writer','screenplay',NULL),(444653,657411,7,'producer','producer',NULL),(444653,668398,8,'producer','producer',NULL),(444653,385467,9,'composer',NULL,NULL),(444682,301382,10,'producer','producer',NULL),(444682,5476,1,'actress',NULL,'[\"Katherine\"]'),(444682,607375,2,'actor',NULL,'[\"Doug\"]'),(444682,1455681,3,'actress',NULL,'[\"Loren McConnell\"]'),(444682,252961,4,'actor',NULL,'[\"Ben\"]'),(444682,394280,5,'director',NULL,NULL),(444682,370928,6,'writer','screenplay',NULL),(444682,370937,7,'writer','screenplay',NULL),(444682,2024187,8,'writer','story',NULL),(444682,1206265,9,'producer','producer',NULL),(445620,659069,10,'producer','producer',NULL),(445620,1845700,1,'actor',NULL,'[\"Said\"]'),(445620,1846124,2,'actor',NULL,'[\"Khaled\"]'),(445620,44073,3,'actress',NULL,'[\"Suha\"]'),(445620,2351360,4,'actor',NULL,'[\"Checkpoint Soldier\"]'),(445620,9463,5,'director',NULL,NULL),(445620,1178208,6,'writer',NULL,NULL),(445620,388293,7,'writer',NULL,NULL),(445620,362844,8,'producer','producer',NULL),(445620,577145,9,'producer','producer',NULL),(445922,865297,10,'producer','producer',NULL),(445922,939697,1,'actress',NULL,'[\"Lucy\"]'),(445922,836343,2,'actor',NULL,'[\"Jude\"]'),(445922,1725848,3,'actor',NULL,'[\"Max Carrigan\"]'),(445922,2085629,4,'actress',NULL,'[\"Sadie\"]'),(445922,853380,5,'director',NULL,NULL),(445922,166074,6,'writer','screenplay',NULL),(445922,478588,7,'writer','screenplay',NULL),(445922,343446,8,'producer','producer',NULL),(445922,865189,9,'producer','producer',NULL),(445934,1014365,10,'writer','screenplay by',NULL),(445934,2071,1,'actor',NULL,'[\"Chazz Michael Michaels\"]'),(445934,1417647,2,'actor',NULL,'[\"Jimmy MacElroy\"]'),(445934,688132,3,'actress',NULL,'[\"Fairchild Van Waldenberg\"]'),(445934,4715,4,'actor',NULL,'[\"Stranz Van Waldenberg\"]'),(445934,330347,5,'director',NULL,NULL),(445934,817447,6,'director',NULL,NULL),(445934,1837763,7,'writer','story by',NULL),(445934,1829796,8,'writer','story by',NULL),(445934,5311,9,'writer','story by',NULL),(445935,571828,10,'editor',NULL,NULL),(445935,182,1,'actress',NULL,'[\"Lauren Adrian\"]'),(445935,104,2,'actor',NULL,'[\"Alfonso Diaz\"]'),(445935,953197,3,'actress',NULL,'[\"Eva Jimenez\"]'),(445935,1766846,4,'actor',NULL,'[\"Domingo Esparza\"]'),(445935,622695,5,'director',NULL,NULL),(445935,1520491,6,'producer','producer',NULL),(445935,276353,7,'producer','producer',NULL),(445935,6251,8,'composer',NULL,NULL),(445935,897794,9,'cinematographer','director of photography',NULL),(446029,686887,10,'producer','producer',NULL),(446029,148418,1,'actor',NULL,'[\"Scott Pilgrim\"]'),(446029,935541,2,'actress',NULL,'[\"Ramona Flowers\"]'),(446029,1085,3,'actor',NULL,'[\"Wallace Wells\"]'),(446029,447695,4,'actress',NULL,'[\"Stacey Pilgrim\"]'),(446029,942367,5,'director',NULL,NULL),(446029,45209,6,'writer','screenplay',NULL),(446029,1854069,7,'writer','Oni Press graphic novels',NULL),(446029,321218,8,'producer','producer',NULL),(446029,661912,9,'producer','producer',NULL),(446043,392644,10,'production_designer',NULL,NULL),(446043,1190833,1,'actor',NULL,'[\"Opie\"]'),(446043,1696876,2,'actress',NULL,'[\"Thai\"]'),(446043,1754408,3,'actress',NULL,'[\"Dakota\"]'),(446043,1029032,4,'actress',NULL,'[\"Rain\"]'),(446043,6918,5,'producer','producer',NULL),(446043,1856133,6,'producer','producer',NULL),(446043,1335296,7,'cinematographer',NULL,NULL),(446043,331443,8,'editor',NULL,NULL),(446043,2020931,9,'editor',NULL,NULL),(446046,212832,10,'composer',NULL,NULL),(446046,104,1,'actor',NULL,'[\"Pierre Dulaine\"]'),(446046,114532,2,'actor',NULL,'[\"Rock\"]'),(446046,1861624,3,'actress',NULL,'[\"LaRhette\"]'),(446046,5569,4,'actress',NULL,'[\"Augustine James\"]'),(446046,295107,5,'director',NULL,NULL),(446046,396817,6,'writer','written by',NULL),(446046,324216,7,'producer','producer',NULL),(446046,333376,8,'producer','producer',NULL),(446046,618558,9,'producer','producer',NULL),(446442,243238,10,'production_designer',NULL,NULL),(446442,300,1,'actress',NULL,'[\"Irène Montano\"]'),(446442,1806,2,'actor',NULL,'[\"William Pound\"]'),(446442,1271759,3,'actress',NULL,'[\"Orlando\"]'),(446442,2068559,4,'actor',NULL,'[\"David\"]'),(446442,24887,5,'director',NULL,NULL),(446442,104418,6,'producer','producer',NULL),(446442,552663,7,'composer',NULL,NULL),(446442,64290,8,'cinematographer',NULL,NULL),(446442,877994,9,'editor',NULL,NULL),(446463,2272572,10,'producer','associate producer',NULL),(446463,141,1,'actor',NULL,'[\"Dr. Benjamin Marris\"]'),(446463,666,2,'actress',NULL,'[\"Hannah Marris\"]'),(446463,1880888,3,'actress',NULL,'[\"Samantha Marris\"]'),(446463,786639,4,'actor',NULL,'[\"Ethan\"]'),(446463,1641,5,'director',NULL,NULL),(446463,1834283,6,'writer','screenplay',NULL),(446463,1158253,7,'writer',NULL,NULL),(446463,383258,8,'writer','novel',NULL),(446463,108,9,'producer','executive producer',NULL),(446719,752811,10,'cinematographer',NULL,NULL),(446719,1487,1,'actor',NULL,'[\"Dan\"]'),(446719,204583,2,'actress',NULL,'[\"Orla\"]'),(446719,365317,3,'actor',NULL,'[\"Jamie\"]'),(446719,411903,4,'actor',NULL,'[\"John\"]'),(446719,639376,5,'director',NULL,NULL),(446719,265724,6,'producer','producer',NULL),(446719,347384,7,'producer','producer',NULL),(446719,447807,8,'producer','producer',NULL),(446719,426514,9,'composer',NULL,NULL),(446755,946441,10,'producer','producer',NULL),(446755,915208,1,'actress',NULL,'[\"Kitty Fane\"]'),(446755,1570,2,'actor',NULL,'[\"Walter Fane\"]'),(446755,630,3,'actor',NULL,'[\"Charlie Townsend\"]'),(446755,2474010,4,'actress',NULL,'[\"Hostess\"]'),(446755,192845,5,'director',NULL,NULL),(446755,638913,6,'writer','screenplay',NULL),(446755,560857,7,'writer','novel',NULL),(446755,171780,8,'producer','producer',NULL),(446755,284623,9,'producer','producer',NULL),(447166,1728121,10,'composer',NULL,NULL),(447166,1391322,1,'actor',NULL,'[\"Sir Osric\",\"Lodge\"]'),(447166,1834028,2,'actress',NULL,'[\"Daphne\",\"Joanna\"]'),(447166,1831420,3,'actor',NULL,'[\"Brother Silence\",\"Cass\",\"Rennard\"]'),(447166,2723853,4,'actor',NULL,'[\"Flynn\",\"Leo\",\"Turk\"]'),(447166,1392106,5,'director',NULL,NULL),(447166,1727189,6,'producer','producer',NULL),(447166,1834470,7,'producer','producer',NULL),(447166,1834474,8,'producer','producer',NULL),(447166,1833601,9,'composer',NULL,NULL),(447854,776107,10,'writer','additional screenplay material',NULL),(447854,1772,1,'actor',NULL,'[\"The Great Prince\"]'),(447854,1071252,2,'actor',NULL,'[\"Bambi\"]'),(447854,1584992,3,'actor',NULL,'[\"Friend Owl\"]'),(447854,1372575,4,'actor',NULL,'[\"Thumper\"]'),(447854,683724,5,'director',NULL,NULL),(447854,742236,6,'writer','story by',NULL),(447854,2111309,7,'writer','screenplay by',NULL),(447854,759041,8,'writer','book \"Bambi, A Life in the Woods\"',NULL),(447854,857904,9,'writer','additional screenplay material',NULL),(448011,89820,10,'producer','producer',NULL),(448011,115,1,'actor',NULL,'[\"John Koestler\"]'),(448011,2425105,2,'actor',NULL,'[\"Caleb Koestler\"]'),(448011,126284,3,'actress',NULL,'[\"Diana\"]'),(448011,3041648,4,'actress',NULL,'[\"Abby\",\"Lucinda\"]'),(448011,1639,5,'director',NULL,NULL),(448011,669379,6,'writer','screenplay',NULL),(448011,1340000,7,'writer','screenplay',NULL),(448011,925482,8,'writer','screenplay',NULL),(448011,85542,9,'producer','producer',NULL),(448115,755911,10,'producer','producer',NULL),(448115,1157048,1,'actor',NULL,'[\"Shazam\"]'),(448115,835016,2,'actor',NULL,'[\"Dr. Sivana\"]'),(448115,4755508,3,'actor',NULL,'[\"Billy Batson\"]'),(448115,6244013,4,'actor',NULL,'[\"Freddy Freeman\"]'),(448115,2497546,5,'director',NULL,NULL),(448115,2849655,6,'writer','screenplay by',NULL),(448115,501359,7,'writer','story by',NULL),(448115,1791910,8,'writer','Shazam created by',NULL),(448115,1304148,9,'writer','Shazam created by',NULL),(448120,4401,10,'composer',NULL,NULL),(448120,588766,1,'actress',NULL,'[\"Holly Parker\"]'),(448120,486068,2,'actress',NULL,'[\"Tess Kositch\"]'),(448120,44859,3,'actor',NULL,'[\"David Kray\"]'),(448120,4786,4,'actress',NULL,'[\"Jan Lambert\"]'),(448120,760131,5,'director',NULL,NULL),(448120,2116286,6,'writer','written by',NULL),(448120,403577,7,'writer','written by',NULL),(448120,1062366,8,'writer','written by',NULL),(448120,81514,9,'producer','producer',NULL),(448124,247787,10,'producer','producer',NULL),(448124,614,1,'actor',NULL,'[\"Alex Hughes\"]'),(448124,244,2,'actress',NULL,'[\"Linda Freeman\"]'),(448124,5251,3,'actress',NULL,'[\"Maggie\"]'),(448124,358922,4,'actress',NULL,'[\"Vivienne Freeman\"]'),(448124,263009,5,'director',NULL,NULL),(448124,1856975,6,'writer','written by',NULL),(448124,99545,7,'writer','story editor',NULL),(448124,141637,8,'producer','producer',NULL),(448124,199664,9,'producer','producer',NULL),(448134,318639,10,'editor',NULL,NULL),(448134,614165,1,'actor',NULL,'[\"Robert Capa\"]'),(448134,126284,2,'actress',NULL,'[\"Cassie\"]'),(448134,262635,3,'actor',NULL,'[\"Mace\"]'),(448134,193295,4,'actor',NULL,'[\"Searle\"]'),(448134,965,5,'director',NULL,NULL),(448134,307497,6,'writer','written by',NULL),(448134,531602,7,'producer','producer',NULL),(448134,614373,8,'composer',NULL,NULL),(448134,473696,9,'cinematographer','director of photography',NULL),(448157,520,10,'producer','producer',NULL),(448157,226,1,'actor',NULL,'[\"John Hancock\"]'),(448157,234,2,'actress',NULL,'[\"Mary\"]'),(448157,867,3,'actor',NULL,'[\"Ray\"]'),(448157,2052567,4,'actor',NULL,'[\"Aaron\"]'),(448157,916,5,'director',NULL,NULL),(448157,1378206,6,'writer','written by',NULL),(448157,319213,7,'writer','written by',NULL),(448157,326040,8,'producer','producer',NULL),(448157,489876,9,'producer','producer',NULL),(448179,4401,10,'composer',NULL,NULL),(448179,1036641,1,'actress',NULL,'[\"Marie Clifton\"]'),(448179,424635,2,'actor',NULL,'[\"Jay Clifton\"]'),(448179,544067,3,'actor',NULL,'[\"Theo Bloom\"]'),(448179,1139541,4,'actress',NULL,'[\"Elena Sandoval\"]'),(448179,523239,5,'director',NULL,NULL),(448179,403577,6,'writer','written by',NULL),(448179,1062366,7,'writer','written by',NULL),(448179,2983,8,'writer','characters',NULL),(448179,81514,9,'producer','producer',NULL),(448182,1089247,1,'actress',NULL,'[\"Hoyle\"]'),(448182,135895,2,'actress',NULL,'[\"Singer\"]'),(448182,628542,3,'actor',NULL,'[\"Dudas\"]'),(448182,780102,4,'actor',NULL,'[\"Trench Coat Man\"]'),(448182,450123,5,'director',NULL,NULL),(448182,141766,6,'composer',NULL,NULL),(448182,1028686,7,'cinematographer',NULL,NULL),(448182,450125,8,'production_designer',NULL,NULL),(448694,674518,10,'writer','story \"Puss in Boots\"',NULL),(448694,104,1,'actor',NULL,'[\"Puss in Boots\"]'),(448694,161,2,'actress',NULL,'[\"Kitty Softpaws\"]'),(448694,302108,3,'actor',NULL,'[\"Humpty Alexander Dumpty\"]'),(448694,671,4,'actor',NULL,'[\"Jack\"]'),(448694,1844237,5,'director',NULL,NULL),(448694,1117226,6,'writer','screenplay by',NULL),(448694,528244,7,'writer','story by',NULL),(448694,204030,8,'writer','story by',NULL),(448694,11470,9,'writer','based on the character created by',NULL),(449010,236462,10,'composer',NULL,NULL),(449010,1968873,1,'actor',NULL,'[\"Eragon\"]'),(449010,347149,2,'actress',NULL,'[\"Arya\"]'),(449010,460,3,'actor',NULL,'[\"Brom\"]'),(449010,518,4,'actor',NULL,'[\"Galbatorix\"]'),(449010,266777,5,'director',NULL,NULL),(449010,118224,6,'writer','screenplay',NULL),(449010,1845777,7,'writer','novel',NULL),(449010,204862,8,'producer','producer',NULL),(449010,324041,9,'producer','producer',NULL),(449059,764771,10,'producer','producer',NULL),(449059,136797,1,'actor',NULL,'[\"Frank\"]'),(449059,1057,2,'actress',NULL,'[\"Sheryl\"]'),(449059,1427,3,'actor',NULL,'[\"Richard Hoover\"]'),(449059,1113550,4,'actress',NULL,'[\"Olive\"]'),(449059,206760,5,'director',NULL,NULL),(449059,267512,6,'director',NULL,NULL),(449059,1578335,7,'writer','written by',NULL),(449059,74100,8,'producer','producer',NULL),(449059,295560,9,'producer','producer',NULL),(449088,988,10,'producer','producer',NULL),(449088,136,1,'actor',NULL,'[\"Jack Sparrow\"]'),(449088,89217,2,'actor',NULL,'[\"Will Turner\"]'),(449088,461136,3,'actress',NULL,'[\"Elizabeth Swann\"]'),(449088,1691,4,'actor',NULL,'[\"Captain Hector Barbossa\"]'),(449088,893659,5,'director',NULL,NULL),(449088,254645,6,'writer','written by',NULL),(449088,744429,7,'writer','written by',NULL),(449088,64181,8,'writer','characters',NULL),(449088,938684,9,'writer','characters',NULL),(449089,2320,10,'cinematographer',NULL,NULL),(449089,245,1,'actor',NULL,'[\"Bob Munro\"]'),(449089,385644,2,'actress',NULL,'[\"Jamie Munro\"]'),(449089,155693,3,'actress',NULL,'[\"Mary Jo Gornicke\"]'),(449089,1685658,4,'actress',NULL,'[\"Cassie Munro\"]'),(449089,1756,5,'director',NULL,NULL),(449089,734900,6,'writer','written by',NULL),(449089,279651,7,'producer','producer',NULL),(449089,926824,8,'producer','producer',NULL),(449089,6133,9,'composer',NULL,NULL),(449092,3700814,10,'editor',NULL,NULL),(449092,581365,1,'actor',NULL,'[\"Jake\"]'),(449092,885840,2,'actress',NULL,'[\"Emily\"]'),(449092,1261587,3,'actress',NULL,'[\"Samara\"]'),(449092,1020036,4,'actress',NULL,'[\"Vanessa\"]'),(449092,509448,5,'director',NULL,NULL),(449092,472567,6,'writer','written by',NULL),(449092,6875,7,'producer','producer',NULL),(449092,901822,8,'producer','producer',NULL),(449092,262210,9,'cinematographer','director of photography',NULL),(449144,3900,10,'cinematographer',NULL,NULL),(449144,210221,1,'actress',NULL,'[\"Ana\"]'),(449144,609207,2,'actress',NULL,'[\"Gloria\"]'),(449144,1929639,3,'actress',NULL,'[\"Vicky\"]'),(449144,179534,4,'actress',NULL,'[\"Teresa\"]'),(449144,406654,5,'director',NULL,NULL),(449144,613939,6,'writer','story',NULL),(449144,1973308,7,'producer','producer',NULL),(449144,273327,8,'producer','producer',NULL),(449144,721432,9,'composer',NULL,NULL),(449172,159015,1,'director',NULL,NULL),(449467,6509,10,'cinematographer','director of photography',NULL),(449467,93,1,'actor',NULL,'[\"Richard\"]'),(449467,949,2,'actress',NULL,'[\"Susan\"]'),(449467,305558,3,'actor',NULL,'[\"Santiago\"]'),(449467,2415554,4,'actor',NULL,'[\"Anwar\"]'),(449467,327944,5,'director',NULL,NULL),(449467,37247,6,'writer','written by',NULL),(449467,326512,7,'producer','producer',NULL),(449467,453091,8,'producer','producer',NULL),(449467,763395,9,'composer',NULL,NULL),(449487,783146,10,'producer','producer',NULL),(449487,4266,1,'actress',NULL,'[\"Claire\"]'),(449487,933940,2,'actor',NULL,'[\"Eric\"]'),(449487,1556,3,'actor',NULL,'[\"Arkin\"]'),(449487,105672,4,'actor',NULL,'[\"Perry\"]'),(449487,6554,5,'director',NULL,NULL),(449487,159892,6,'writer','written by',NULL),(449487,528724,7,'producer','producer',NULL),(449487,1450928,8,'producer','producer',NULL),(449487,722489,9,'producer','producer',NULL),(449869,707425,1,'actor',NULL,'[\"Dr.Saravanan\",\"Vettaiyan Raja\"]'),(449869,694893,2,'actor',NULL,'[\"Senthilnathan\"]'),(449869,433392,3,'actress',NULL,'[\"Ganga\"]'),(449869,1521381,4,'actress',NULL,'[\"Durga\"]'),(449869,890864,5,'director',NULL,NULL),(449869,4579,6,'composer',NULL,NULL),(449869,782814,7,'cinematographer',NULL,NULL),(449869,882119,8,'editor',NULL,NULL),(450121,705842,10,'cinematographer',NULL,NULL),(450121,2696392,1,'actor',NULL,'[\"Davide\"]'),(450121,1845027,2,'actor',NULL,'[\"Mirco\"]'),(450121,168064,3,'actor',NULL,'[\"Ettore\"]'),(450121,1419824,4,'actor',NULL,'[\"Padre\"]'),(450121,97580,5,'director',NULL,NULL),(450121,765924,6,'writer',NULL,NULL),(450121,953222,7,'writer',NULL,NULL),(450121,563593,8,'producer','producer',NULL),(450121,98174,9,'composer',NULL,NULL),(450188,1214886,10,'editor',NULL,NULL),(450188,182839,1,'actress',NULL,'[\"Edith Piaf\"]'),(450188,856500,2,'actress',NULL,'[\"Mômone\"]'),(450188,339621,3,'actor',NULL,'[\"Louis Barrier\"]'),(450188,782561,4,'actress',NULL,'[\"Titine\"]'),(450188,196860,5,'director',NULL,NULL),(450188,2517835,6,'writer','written by',NULL),(450188,4347,7,'producer','producer',NULL),(450188,6116,8,'composer',NULL,NULL),(450188,619216,9,'cinematographer',NULL,NULL),(450259,454752,10,'producer','producer',NULL),(450259,138,1,'actor',NULL,'[\"Danny Archer\"]'),(450259,5023,2,'actor',NULL,'[\"Solomon Vandy\"]'),(450259,124,3,'actress',NULL,'[\"Maddy Bowen\"]'),(450259,2218894,4,'actor',NULL,'[\"Dia Vandy\"]'),(450259,1880,5,'director',NULL,NULL),(450259,495378,6,'writer','screenplay',NULL),(450259,2057149,7,'writer','story',NULL),(450259,330864,8,'producer','producer',NULL),(450259,380980,9,'producer','producer',NULL),(450278,284390,10,'editor',NULL,NULL),(450278,379596,1,'actor',NULL,'[\"Paxton\"]'),(450278,1277177,2,'actor',NULL,'[\"Josh\"]'),(450278,1898448,3,'actor',NULL,'[\"Oli\"]'),(450278,1319676,4,'actress',NULL,'[\"Natalya\"]'),(450278,744834,5,'director',NULL,NULL),(450278,109010,6,'producer','producer',NULL),(450278,1153907,7,'producer','producer',NULL),(450278,56550,8,'composer',NULL,NULL),(450278,149453,9,'cinematographer','director of photography',NULL),(450345,503592,10,'producer','producer',NULL),(450345,115,1,'actor',NULL,'[\"Edward Malus\"]'),(450345,995,2,'actress',NULL,'[\"Sister SummersIsle\"]'),(450345,5447,3,'actress',NULL,'[\"Sister Honey\"]'),(450345,63571,4,'actress',NULL,'[\"Sister Willow Woodward\"]'),(450345,1438,5,'director',NULL,NULL),(450345,787289,6,'writer',NULL,NULL),(450345,203246,7,'producer','producer',NULL),(450345,256542,8,'producer','producer',NULL),(450345,326496,9,'producer','producer',NULL),(450385,225146,10,'producer','producer',NULL),(450385,131,1,'actor',NULL,'[\"Mike Enslin\"]'),(450385,168,2,'actor',NULL,'[\"Gerald Olin\"]'),(450385,5203,3,'actress',NULL,'[\"Lily\"]'),(450385,1724,4,'actor',NULL,'[\"Sam Farrell\"]'),(450385,405632,5,'director',NULL,NULL),(450385,338557,6,'writer','screenplay',NULL),(450385,18735,7,'writer','screenplay',NULL),(450385,438989,8,'writer','screenplay',NULL),(450385,175,9,'writer','short story',NULL),(450506,263237,10,'editor',NULL,NULL),(450506,1120593,1,'actress',NULL,'[\"Katrina\"]'),(450506,60561,2,'actor',NULL,'[\"Detective Andretti\"]'),(450506,108068,3,'actor',NULL,'[\"Danny\"]'),(450506,1168915,4,'actor',NULL,'[\"Rusty\"]'),(450506,325877,5,'director',NULL,NULL),(450506,1912767,6,'writer','original screenplay',NULL),(450506,1853983,7,'producer','producer',NULL),(450506,367647,8,'composer',NULL,NULL),(450506,1338122,9,'cinematographer','director of photography',NULL),(450982,1844318,10,'producer','producer',NULL),(450982,792198,1,'actress',NULL,'[\"Elina\",\"Mermaid #2\"]'),(450982,865064,2,'actor',NULL,'[\"Bibble\",\"Fungus\",\"Happy Trolls\"]'),(450982,319308,3,'actress',NULL,'[\"Dandelion\",\"Topaz\",\"Mermaid #1\"]'),(450982,56532,4,'actress',NULL,'[\"Laverna\",\"Pixie #2\",\"Pixie #4\"]'),(450982,554228,5,'director',NULL,NULL),(450982,490640,6,'director','co-director',NULL),(450982,20489,7,'writer','written by',NULL),(450982,239032,8,'writer','written by',NULL),(450982,1043325,9,'writer','based upon: Barbie characters created by',NULL),(451079,1512524,10,'producer','producer',NULL),(451079,120,1,'actor',NULL,'[\"Horton\"]'),(451079,136797,2,'actor',NULL,'[\"Mayor\"]'),(451079,993,3,'actress',NULL,'[\"Kangaroo\"]'),(451079,4715,4,'actor',NULL,'[\"Vlad\"]'),(451079,371755,5,'director',NULL,NULL),(451079,553942,6,'director',NULL,NULL),(451079,666791,7,'writer','screenplay by',NULL),(451079,202425,8,'writer','screenplay by',NULL),(451079,317450,9,'writer','based upon the book by',NULL),(451094,1602184,10,'producer','producer',NULL),(451094,12236841,1,'actress',NULL,'[\"Choir Member 1\"]'),(451094,3093662,2,'actor',NULL,'[\"Choir Member 2\"]'),(451094,12236842,3,'actress',NULL,'[\"Choir Member 3\"]'),(451094,12236843,4,'actress',NULL,'[\"Choir Member 4\"]'),(451094,661791,5,'director',NULL,NULL),(451094,5371819,6,'writer','comic',NULL),(451094,1941029,7,'writer','written by',NULL),(451094,1021592,8,'producer','producer',NULL),(451094,1461537,9,'producer','producer',NULL),(451176,6254,10,'composer',NULL,NULL),(451176,1986960,1,'actress',NULL,'[\"Magdalena\"]'),(451176,1883803,2,'actor',NULL,'[\"Carlos\"]'),(451176,328098,3,'actor',NULL,'[\"Tio Tomas Alvarez\"]'),(451176,143636,4,'actor',NULL,'[\"Ernesto\"]'),(451176,322144,5,'director',NULL,NULL),(451176,922903,6,'director',NULL,NULL),(451176,166194,7,'producer','producer',NULL),(451176,2043954,8,'composer',NULL,NULL),(451176,2347976,9,'composer',NULL,NULL),(451279,4243936,10,'writer','Wonder Woman created by',NULL),(451279,2933757,1,'actress',NULL,'[\"Diana\"]'),(451279,1517976,2,'actor',NULL,'[\"Steve Trevor\"]'),(451279,705,3,'actress',NULL,'[\"Antiope\"]'),(451279,205063,4,'actress',NULL,'[\"Etta\"]'),(451279,420941,5,'director',NULL,NULL),(451279,374302,6,'writer','screenplay by',NULL),(451279,811583,7,'writer','story by',NULL),(451279,297229,8,'writer','story by',NULL),(451279,551376,9,'writer','Wonder Woman created by',NULL),(451829,560580,10,'cinematographer',NULL,NULL),(451829,1948757,1,'actor',NULL,NULL),(451829,30417,2,'actor',NULL,'[\"Hasuda\"]'),(451829,1779107,3,'actress',NULL,NULL),(451829,38355,4,'actor',NULL,'[\"Masaru Tanaka\"]'),(451829,411002,5,'director',NULL,NULL),(451829,1946305,6,'director',NULL,NULL),(451829,1948346,7,'director',NULL,NULL),(451829,2552481,8,'producer','producer',NULL),(451829,532611,9,'cinematographer',NULL,NULL),(451957,1152402,10,'producer','producer',NULL),(451957,544718,1,'actress',NULL,'[\"Samantha Owens\"]'),(451957,900053,2,'actor',NULL,'[\"David Owens\"]'),(451957,509824,3,'actress',NULL,'[\"Grace Taylor\"]'),(451957,547544,4,'actor',NULL,'[\"Bill Owens\"]'),(451957,5116,5,'director',NULL,NULL),(451957,1002424,6,'writer','written by',NULL),(451957,3529,7,'writer','written by',NULL),(451957,581148,8,'producer','producer',NULL),(451957,1890401,9,'producer','producer',NULL),(451966,1461427,10,'cinematographer',NULL,NULL),(451966,2274768,1,'actor',NULL,'[\"Don Plutarco\"]'),(451966,850162,2,'actor',NULL,'[\"Genaro\"]'),(451966,303607,3,'actor',NULL,'[\"Capitán\"]'),(451966,2073502,4,'actor',NULL,'[\"Lucio\"]'),(451966,889829,5,'director',NULL,NULL),(451966,1061513,6,'producer','producer',NULL),(451966,735872,7,'producer','producer',NULL),(451966,2369390,8,'composer',NULL,NULL),(451966,1151310,9,'composer',NULL,NULL),(452594,4090,10,'cinematographer','director of photography',NULL),(452594,98,1,'actress',NULL,'[\"Brooke Meyers\"]'),(452594,681,2,'actor',NULL,'[\"Gary Grobowski\"]'),(452594,269463,3,'actor',NULL,'[\"Johnny O\"]'),(452594,725,4,'actress',NULL,'[\"Addie\"]'),(452594,715636,5,'director',NULL,NULL),(452594,1275670,6,'writer','screenplay',NULL),(452594,1191891,7,'writer','screenplay',NULL),(452594,835959,8,'producer','producer',NULL),(452594,109726,9,'composer',NULL,NULL),(452598,506613,10,'producer','producer',NULL),(452598,188,1,'actor',NULL,'[\"Tom Baker\"]'),(452598,1372,2,'actress',NULL,'[\"Kate Baker\"]'),(452598,240381,3,'actress',NULL,'[\"Lorraine Baker\"]'),(452598,506405,4,'actor',NULL,'[\"Jimmy Murtaugh\"]'),(452598,788202,5,'director',NULL,NULL),(452598,363958,6,'writer','written by',NULL),(452598,864471,7,'writer','characters',NULL),(452598,318326,8,'writer','novel \"Cheaper by the Dozen\"',NULL),(452598,136950,9,'writer','novel \"Cheaper by the Dozen\"',NULL),(452608,906048,10,'producer','producer',NULL),(452608,5458,1,'actor',NULL,'[\"Jensen Ames\"]'),(452608,260,2,'actress',NULL,'[\"Hennessey\"]'),(452608,879085,3,'actor',NULL,'[\"Machine Gun Joe\"]'),(452608,574534,4,'actor',NULL,'[\"Coach\"]'),(452608,27271,5,'director',NULL,NULL),(452608,858379,6,'writer',NULL,NULL),(452608,341458,7,'writer',NULL,NULL),(452608,577477,8,'writer',NULL,NULL),(452608,93337,9,'producer','producer',NULL),(452623,728391,10,'producer','producer',NULL),(452623,151,1,'actor',NULL,'[\"Jack Doyle\"]'),(452623,438,2,'actor',NULL,'[\"Remy Bressant\"]'),(452623,729,3,'actor',NULL,'[\"Patrick Kenzie\"]'),(452623,1157358,4,'actress',NULL,'[\"Angie Gennaro\"]'),(452623,255,5,'director',NULL,NULL),(452623,830760,6,'writer','screenplay',NULL),(452623,1212331,7,'writer','novel',NULL),(452623,47489,8,'producer','producer',NULL),(452623,480440,9,'producer','producer',NULL),(452624,2353,10,'composer',NULL,NULL),(452624,123,1,'actor',NULL,'[\"Jake Geismer\"]'),(452624,949,2,'actress',NULL,'[\"Lena Brandt\"]'),(452624,1497,3,'actor',NULL,'[\"Tully\"]'),(452624,977,4,'actor',NULL,'[\"Colonel Muller\"]'),(452624,1752,5,'director',NULL,NULL),(452624,1921,6,'writer','screenplay',NULL),(452624,1874260,7,'writer','novel',NULL),(452624,963211,8,'producer','producer',NULL),(452624,414423,9,'producer','producer',NULL),(452637,157575,10,'production_designer',NULL,NULL),(452637,316079,1,'actor',NULL,'[\"Cleveland Heep\"]'),(452637,397171,2,'actress',NULL,'[\"Story\"]'),(452637,942482,3,'actor',NULL,'[\"Mr. Dury\"]'),(452637,837,4,'actor',NULL,'[\"Harry Farber\"]'),(452637,796117,5,'director',NULL,NULL),(452637,580303,6,'producer','producer',NULL),(452637,6133,7,'composer',NULL,NULL),(452637,236313,8,'cinematographer',NULL,NULL),(452637,876392,9,'editor',NULL,NULL),(452694,2217,10,'composer',NULL,NULL),(452694,51509,1,'actor',NULL,'[\"Henry\"]'),(452694,1046097,2,'actress',NULL,'[\"Clare\"]'),(452694,515296,3,'actor',NULL,'[\"Gomez\"]'),(452694,634409,4,'actress',NULL,'[\"Annette DeTamble\"]'),(452694,777881,5,'director',NULL,NULL),(452694,748022,6,'writer','screenplay',NULL),(452694,1875979,7,'writer','novel',NULL),(452694,306890,8,'producer','producer',NULL),(452694,917059,9,'producer','producer',NULL),(452702,590970,10,'editor',NULL,NULL),(452702,295,1,'actress',NULL,'[\"Amy Fox\"]'),(452702,5561,2,'actor',NULL,'[\"David Fox\"]'),(452702,1844,3,'actor',NULL,'[\"Mason\"]'),(452702,256121,4,'actor',NULL,'[\"Mechanic\"]'),(452702,30735,5,'director',NULL,NULL),(452702,1872664,6,'writer','written by',NULL),(452702,509386,7,'producer','producer',NULL),(452702,368248,8,'composer',NULL,NULL),(452702,782900,9,'cinematographer',NULL,NULL),(453451,71564,10,'producer','producer',NULL),(453451,100,1,'actor',NULL,'[\"Mr. Bean\"]'),(453451,353,2,'actor',NULL,'[\"Carson Clay\"]'),(453451,671487,3,'actor',NULL,'[\"Vicar\"]'),(453451,1372570,4,'actress',NULL,'[\"Lily at the Stereo\"]'),(453451,70436,5,'director',NULL,NULL),(453451,193485,6,'writer','character',NULL),(453451,564402,7,'writer','story',NULL),(453451,566100,8,'writer','screenplay',NULL),(453451,3741,9,'writer','screenplay',NULL),(453467,4581,10,'composer',NULL,NULL),(453467,243,1,'actor',NULL,'[\"Doug Carlin\"]'),(453467,1745736,2,'actress',NULL,'[\"Claire Kuchever\"]'),(453467,1029,3,'actor',NULL,'[\"Carroll Oerstadt\"]'),(453467,174,4,'actor',NULL,'[\"Agent Pryzwarra\"]'),(453467,1716,5,'director',NULL,NULL),(453467,1319490,6,'writer','written by',NULL),(453467,744429,7,'writer','written by',NULL),(453467,988,8,'producer','producer',NULL),(453467,7335459,9,'composer','composer',NULL),(453556,911002,10,'producer','producer',NULL),(453556,1772,1,'actor',NULL,'[\"Winters\"]'),(453556,538683,2,'actor',NULL,'[\"Splinter\"]'),(453556,262635,3,'actor',NULL,'[\"Casey\"]'),(453556,1264,4,'actress',NULL,'[\"April O\'Neil\"]'),(453556,1083489,5,'director',NULL,NULL),(453556,481990,6,'writer','based on characters created by',NULL),(453556,247653,7,'writer','based on characters created by',NULL),(453556,336978,8,'producer','producer',NULL),(453556,907742,9,'producer','producer',NULL),(453562,830615,10,'editor',NULL,NULL),(453562,1569276,1,'actor',NULL,'[\"Jackie Robinson\"]'),(453562,1165660,2,'actor',NULL,'[\"Harold Parrott\"]'),(453562,148,3,'actor',NULL,'[\"Branch Rickey\"]'),(453562,2718512,4,'actress',NULL,'[\"Rachel Robinson\"]'),(453562,1338,5,'director',NULL,NULL),(453562,2100078,6,'producer','producer',NULL),(453562,6142,7,'composer',NULL,NULL),(453562,121281,8,'cinematographer','director of photography',NULL),(453562,574097,9,'editor',NULL,NULL),(454082,813214,10,'producer','producer',NULL),(454082,5502,1,'actress',NULL,'[\"Melissa\"]'),(454082,935541,2,'actress',NULL,'[\"Heather Fitzgerald\"]'),(454082,327,3,'actress',NULL,'[\"Dana\"]'),(454082,1556320,4,'actress',NULL,'[\"Kelli Presley\"]'),(454082,604688,5,'director',NULL,NULL),(454082,600860,6,'writer',NULL,NULL),(454082,1369977,7,'producer','producer',NULL),(454082,387541,8,'producer','producer',NULL),(454082,663280,9,'producer','producer',NULL),(454776,696299,10,'producer','producer',NULL),(454776,344435,1,'actor',NULL,'[\"William Wilberforce\"]'),(454776,1215,2,'actor',NULL,'[\"John Newton\"]'),(454776,2091,3,'actor',NULL,'[\"Lord Charles Fox\"]'),(454776,304801,4,'actress',NULL,'[\"Barbara Spooner\"]'),(454776,776,5,'director',NULL,NULL),(454776,1140275,6,'writer','written by',NULL),(454776,5004,7,'producer','producer',NULL),(454776,402408,8,'producer','producer',NULL),(454776,517,9,'producer','producer',NULL),(454841,354453,10,'composer',NULL,NULL),(454841,505971,1,'actor',NULL,'[\"Big Bob\"]'),(454841,599,2,'actress',NULL,'[\"Ethel\"]'),(454841,126004,3,'actor',NULL,'[\"Bobby\"]'),(454841,211087,4,'actress',NULL,'[\"Brenda\"]'),(454841,14960,5,'director',NULL,NULL),(454841,127,6,'writer','based upon his film',NULL),(454841,505183,7,'writer','screenplay',NULL),(454841,516779,8,'producer','producer',NULL),(454841,534543,9,'producer','producer',NULL),(454848,113084,10,'editor',NULL,NULL),(454848,243,1,'actor',NULL,'[\"Detective Keith Frazier\"]'),(454848,654110,2,'actor',NULL,'[\"Dalton Russell\"]'),(454848,149,3,'actress',NULL,'[\"Madeleine White\"]'),(454848,1626,4,'actor',NULL,'[\"Arthur Case\"]'),(454848,490,5,'director',NULL,NULL),(454848,1897957,6,'writer','written by',NULL),(454848,4976,7,'producer','producer',NULL),(454848,5966,8,'composer',NULL,NULL),(454848,508732,9,'cinematographer','director of photography',NULL),(454876,2217,10,'composer',NULL,NULL),(454876,4139037,1,'actor',NULL,'[\"Pi Patel\"]'),(454876,451234,2,'actor',NULL,'[\"Adult Pi Patel\"]'),(454876,1300009,3,'actor',NULL,'[\"Santosh Patel\"]'),(454876,7102,4,'actress',NULL,'[\"Gita Patel\"]'),(454876,487,5,'director',NULL,NULL),(454876,1674631,6,'writer','novel',NULL),(454876,1341735,7,'writer','screenplay',NULL),(454876,626696,8,'producer','producer',NULL),(454876,3720,9,'producer','producer',NULL),(454921,5494,10,'producer','producer',NULL),(454921,226,1,'actor',NULL,'[\"Chris Gardner\"]'),(454921,628601,2,'actress',NULL,'[\"Linda\"]'),(454921,1535523,3,'actor',NULL,'[\"Christopher\"]'),(454921,397788,4,'actor',NULL,'[\"Jay Twistle\"]'),(454921,610831,5,'director',NULL,NULL),(454921,175726,6,'writer','written by',NULL),(454921,85542,7,'producer','producer',NULL),(454921,89820,8,'producer','producer',NULL),(454921,489876,9,'producer','producer',NULL),(454931,1024392,10,'production_designer',NULL,NULL),(454931,1197689,1,'actress',NULL,'[\"Michaela Klingler\"]'),(454931,458460,2,'actor',NULL,'[\"Karl Klingler\"]'),(454931,463130,3,'actress',NULL,'[\"Marianne Klingler\"]'),(454931,1298285,4,'actress',NULL,'[\"Hanna Imhof\"]'),(454931,772691,5,'director',NULL,NULL),(454931,1016679,6,'writer',NULL,NULL),(454931,323950,7,'cinematographer',NULL,NULL),(454931,772150,8,'editor',NULL,NULL),(454931,919443,9,'editor',NULL,NULL),(454945,910996,10,'composer',NULL,NULL),(454945,4789,1,'actress',NULL,'[\"Viola\"]'),(454945,1377561,2,'actress',NULL,'[\"Olivia Lennox\"]'),(454945,1475594,3,'actor',NULL,'[\"Duke\"]'),(454945,5068,4,'actor',NULL,'[\"Dinklage\"]'),(454945,275698,5,'director',NULL,NULL),(454945,1894168,6,'writer','screenplay',NULL),(454945,527581,7,'writer','screenplay',NULL),(454945,809006,8,'writer','screenplay',NULL),(454945,795682,9,'producer','producer',NULL),(455323,2336,10,'cinematographer','director of photography',NULL),(455323,200452,1,'actor',NULL,'[\"Nick Flynn\"]'),(455323,134,2,'actor',NULL,'[\"Jonathan Flynn\"]'),(455323,194,3,'actress',NULL,'[\"Jody Flynn\"]'),(455323,1880888,4,'actress',NULL,'[\"Denise\"]'),(455323,919369,5,'director',NULL,NULL),(455323,1793387,6,'writer','book \"Another Bullshit Night in Suck City\"',NULL),(455323,1545611,7,'producer','producer',NULL),(455323,583948,8,'producer','producer',NULL),(455323,1035448,9,'composer',NULL,NULL),(455407,184620,10,'producer','producer',NULL),(455407,593664,1,'actress',NULL,'[\"Judy\"]'),(455407,648249,2,'actor',NULL,'[\"David\"]'),(455407,1263939,3,'actress',NULL,'[\"Becca\"]'),(455407,1725848,4,'actor',NULL,'[\"Russell\"]'),(455407,252135,5,'director',NULL,NULL),(455407,466925,6,'writer','screenplay',NULL),(455407,1242522,7,'writer','screenplay',NULL),(455407,1681,8,'writer',NULL,NULL),(455407,13583,9,'producer','producer',NULL),(455577,406592,10,'actor',NULL,'[\"Nakanishi\"]'),(455577,1392075,1,'actress',NULL,'[\"Suzume Katakura\"]'),(455577,1066974,2,'actress',NULL,'[\"Kujaku Ogitani\"]'),(455577,412537,3,'actor',NULL,'[\"Shizuo Kugitani\"]'),(455577,299329,4,'actress',NULL,'[\"Etsuko Kugitani\"]'),(455577,1892800,5,'director',NULL,NULL),(455577,1862036,6,'cinematographer',NULL,NULL),(455577,847180,7,'editor',NULL,NULL),(455577,1437832,8,'production_designer',NULL,NULL),(455577,1330681,9,'actor',NULL,'[\"Kato\"]'),(455590,117354,10,'producer','producer',NULL),(455590,564215,1,'actor',NULL,'[\"Dr. Nicholas Garrigan\"]'),(455590,1845,2,'actor',NULL,'[\"Idi Amin\"]'),(455590,96,3,'actress',NULL,'[\"Sarah Merrit\"]'),(455590,913488,4,'actress',NULL,'[\"Kay Amin\"]'),(455590,531817,5,'director',NULL,NULL),(455590,604948,6,'writer','screenplay',NULL),(455590,110591,7,'writer','screenplay',NULL),(455590,1894768,8,'writer','novel',NULL),(455590,9114061,9,'writer','dialogue',NULL),(455596,516162,10,'cinematographer',NULL,NULL),(455596,1864,1,'actor',NULL,'[\"Flynn Carsen\"]'),(455596,270,2,'actress',NULL,'[\"Emily Davenport\"]'),(455596,627878,3,'actor',NULL,'[\"Judson\"]'),(455596,4852,4,'actress',NULL,'[\"Charlene\"]'),(455596,408,5,'director',NULL,NULL),(455596,773605,6,'writer','written by',NULL),(455596,864435,7,'writer','characters',NULL),(455596,3864,8,'producer','producer',NULL),(455596,6173,9,'composer',NULL,NULL),(455612,1347153,1,'actor',NULL,'[\"Madea\",\"Brian\",\"Joe\"]'),(455612,5516,2,'actor',NULL,'[\"Carlos Armstrong\"]'),(455612,5551,3,'actress',NULL,'[\"Victoria\"]'),(455612,462673,4,'actor',NULL,'[\"Frankie Henderson\"]'),(455612,134253,5,'producer','producer',NULL),(455612,1347316,6,'composer',NULL,NULL),(455612,475746,7,'cinematographer',NULL,NULL),(455612,141713,8,'editor',NULL,NULL),(455612,562671,9,'production_designer',NULL,NULL),(455760,167197,10,'composer',NULL,NULL),(455760,477127,1,'actor',NULL,'[\"Jamie Ashen\"]'),(455760,5520,2,'actress',NULL,'[\"Ella Ashen\"]'),(455760,5531,3,'actor',NULL,'[\"Det. Lipton\"]'),(455760,265637,4,'actor',NULL,'[\"Henry Walker\"]'),(455760,1490123,5,'director',NULL,NULL),(455760,1191481,6,'writer','screenplay',NULL),(455760,121117,7,'producer','producer',NULL),(455760,388898,8,'producer','producer',NULL),(455760,467977,9,'producer','producer',NULL),(455805,851679,10,'producer','producer',NULL),(455805,166,1,'actress',NULL,'[\"April Epner\"]'),(455805,147,2,'actor',NULL,'[\"Frank\"]'),(455805,541,3,'actress',NULL,'[\"Bernice Graves\"]'),(455805,111,4,'actor',NULL,'[\"Ben\"]'),(455805,1949491,5,'writer','novel',NULL),(455805,35146,6,'writer','screenplay',NULL),(455805,505741,7,'writer','screenplay',NULL),(455805,463025,8,'producer','producer',NULL),(455805,745746,9,'producer','producer',NULL),(455824,460451,10,'producer','producer',NULL),(455824,173,1,'actress',NULL,'[\"Lady Sarah Ashley\"]'),(455824,413168,2,'actor',NULL,'[\"Drover\"]'),(455824,11354,3,'actor',NULL,'[\"Carney Boy #3\"]'),(455824,1812267,4,'actor',NULL,'[\"Bull\"]'),(455824,525303,5,'director',NULL,NULL),(455824,64181,6,'writer','screenplay',NULL),(455824,367838,7,'writer','screenplay',NULL),(455824,281088,8,'writer','screenplay',NULL),(455824,113583,9,'producer','producer',NULL),(455857,324041,10,'producer','producer',NULL),(455857,4741,1,'actress',NULL,'[\"Jill Johnson\"]'),(455857,281107,2,'actor',NULL,'[\"Stranger\"]'),(455857,1556320,3,'actress',NULL,'[\"Tiffany\"]'),(455857,1935086,4,'actress',NULL,'[\"Scarlet\"]'),(455857,922346,5,'director',NULL,NULL),(455857,908411,6,'writer','screenplay',NULL),(455857,270841,7,'writer',NULL,NULL),(455857,910510,8,'writer',NULL,NULL),(455857,204862,9,'producer','producer',NULL),(455944,89820,10,'producer','producer',NULL),(455944,243,1,'actor',NULL,'[\"Robert McCall\"]'),(455944,190744,2,'actor',NULL,'[\"Teddy\"]'),(455944,1631269,3,'actress',NULL,'[\"Teri\"]'),(455944,1092086,4,'actor',NULL,'[\"Masters\"]'),(455944,298807,5,'director',NULL,NULL),(455944,921013,6,'writer','written by',NULL),(455944,805994,7,'writer','based on the television series created by',NULL),(455944,2030456,8,'writer','based on the television series created by',NULL),(455944,85542,9,'producer','producer',NULL),(455967,725072,10,'cinematographer','director of photography',NULL),(455967,582462,1,'actor',NULL,'[\"John Tucker\"]'),(455967,38680,2,'actress',NULL,'[\"Heather\"]'),(455967,444223,3,'actress',NULL,'[\"Carrie\"]'),(455967,124208,4,'actress',NULL,'[\"Beth\"]'),(455967,858525,5,'director',NULL,NULL),(455967,523094,6,'writer','written by',NULL),(455967,83688,7,'producer','producer',NULL),(455967,178341,8,'producer','producer',NULL),(455967,6099,9,'composer',NULL,NULL),(456111,595295,10,'production_designer',NULL,NULL),(456111,351029,1,'actor',NULL,'[\"Esteban\"]'),(456111,1890988,2,'actress',NULL,'[\"Gabi\"]'),(456111,119438,3,'actor',NULL,'[\"Amadeo\"]'),(456111,608210,4,'actor',NULL,'[\"Vendedor\"]'),(456111,845207,5,'director',NULL,NULL),(456111,327957,6,'producer','producer',NULL),(456111,506500,7,'composer',NULL,NULL),(456111,407284,8,'cinematographer',NULL,NULL),(456111,722922,9,'editor',NULL,NULL),(456554,182363,10,'editor','film editor',NULL),(456554,184445,1,'actor',NULL,'[\"Alex\"]'),(456554,4802,2,'actress',NULL,'[\"Samantha\"]'),(456554,429250,3,'actress',NULL,'[\"Grace\"]'),(456554,200601,4,'actor',NULL,'[\"Dante\"]'),(456554,329650,5,'director',NULL,NULL),(456554,921516,6,'writer','written by',NULL),(456554,841910,7,'writer','written by',NULL),(456554,905186,8,'composer',NULL,NULL),(456554,410419,9,'cinematographer','director of photography',NULL),(456630,847180,10,'editor',NULL,NULL),(456630,950778,1,'actress',NULL,'[\"Nagisa Sugiura\"]'),(456630,1686456,2,'actress',NULL,'[\"Yayoi Kinoshita\"]'),(456630,793404,3,'actor',NULL,'[\"Ikuo Matsumura\"]'),(456630,837501,4,'actor',NULL,'[\"Tadashi Murakawa\"]'),(456630,1234345,5,'director',NULL,NULL),(456630,1329999,6,'writer',NULL,NULL),(456630,406772,7,'producer','producer',NULL),(456630,442766,8,'composer',NULL,NULL),(456630,793066,9,'cinematographer',NULL,NULL),(456912,1276066,10,'composer',NULL,NULL),(456912,496932,1,'actor',NULL,'[\"Sun-woo\"]'),(456912,1086555,2,'actress',NULL,'[\"Hee-soo\"]'),(456912,1116906,3,'actor',NULL,'[\"Mr. Kang\"]'),(456912,1058565,4,'actor',NULL,'[\"President Baek\"]'),(456912,453518,5,'director',NULL,NULL),(456912,9461976,6,'writer','character created by: A Bittersweet Life',NULL),(456912,498478,7,'producer','producer',NULL),(456912,644884,8,'producer','producer',NULL),(456912,657343,9,'composer',NULL,NULL),(457275,1924677,10,'composer',NULL,NULL),(457275,442066,1,'actor',NULL,'[\"Wyatt\"]'),(457275,1317046,2,'actress',NULL,'[\"Hope\"]'),(457275,377034,3,'actor',NULL,'[\"Duke\"]'),(457275,931321,4,'actor',NULL,'[\"Otis\"]'),(457275,844896,5,'director',NULL,NULL),(457275,1912178,6,'writer','screenplay',NULL),(457275,184770,7,'producer','producer',NULL),(457275,354918,8,'producer','producer',NULL),(457275,178992,9,'composer',NULL,NULL),(457400,588612,10,'producer','producer',NULL),(457400,2071,1,'actor',NULL,'[\"Dr. Rick Marshall\"]'),(457400,1144419,2,'actor',NULL,'[\"Will Stanton\"]'),(457400,295484,3,'actress',NULL,'[\"Holly Cantrell\"]'),(457400,1672246,4,'actor',NULL,'[\"Chaka\"]'),(457400,797869,5,'director',NULL,NULL),(457400,376260,6,'writer','written by',NULL),(457400,574005,7,'writer','written by',NULL),(457400,471898,8,'writer','television series',NULL),(457400,471897,9,'writer','television series',NULL),(457419,651969,10,'cinematographer','director of photography',NULL),(457419,204,1,'actress',NULL,'[\"Molly Mahoney, The Composer\"]'),(457419,163,2,'actor',NULL,'[\"Mr. Edward Magorium, Avid Shoe-Wearer\"]'),(457419,867,3,'actor',NULL,'[\"Henry Weston, the Mutant\"]'),(457419,525076,4,'actor',NULL,'[\"Bellini, the Bookbuilder\"]'),(457419,1590998,5,'director',NULL,NULL),(457419,1907858,6,'producer','producer',NULL),(457419,321621,7,'producer','producer',NULL),(457419,6035,8,'composer',NULL,NULL),(457419,956374,9,'composer',NULL,NULL),(457430,622782,10,'composer',NULL,NULL),(457430,1419440,1,'actress',NULL,'[\"Ofelia\"]'),(457430,317725,2,'actress',NULL,'[\"Carmen\"]'),(457430,530365,3,'actor',NULL,'[\"Vidal\"]'),(457430,893941,4,'actress',NULL,'[\"Mercedes\"]'),(457430,868219,5,'director',NULL,NULL),(457430,1973308,6,'producer','producer',NULL),(457430,190859,7,'producer','producer',NULL),(457430,622838,8,'producer','producer',NULL),(457430,868872,9,'producer','producer',NULL),(457433,3712,10,'cinematographer','director of photography',NULL),(457433,932,1,'actress',NULL,'[\"Rowena Price\"]'),(457433,246,2,'actor',NULL,'[\"Harrison Hill\"]'),(457433,610,3,'actor',NULL,'[\"Miles Haley\"]'),(457433,692466,4,'actor',NULL,'[\"Narron\"]'),(457433,1226,5,'director',NULL,NULL),(457433,464548,6,'writer','screenplay',NULL),(457433,92578,7,'writer','story',NULL),(457433,326063,8,'producer','producer',NULL),(457433,684620,9,'composer',NULL,NULL),(457489,1896358,1,'actress',NULL,'[\"Taryn Anwar\"]'),(457489,1896560,2,'actress',NULL,'[\"Zhanna \'The Emperor\'s Hand\'\"]'),(457489,1899262,3,'actress',NULL,'[\"Raux Anwar\"]'),(457489,1903235,4,'actor',NULL,'[\"Declan\"]'),(457489,1894039,5,'director',NULL,NULL),(457489,1897892,6,'writer','written by',NULL),(457489,1894015,7,'writer','written by',NULL),(457489,1789635,8,'composer',NULL,NULL),(457489,1893339,9,'cinematographer','director of photography',NULL),(457510,384,10,'composer',NULL,NULL),(457510,85312,1,'actor',NULL,'[\"Nacho\"]'),(457510,478886,2,'actress',NULL,'[\"Sister Encarnación\"]'),(457510,422948,3,'actor',NULL,'[\"Esqueleto\"]'),(457510,1377265,4,'actor',NULL,'[\"Chancho\"]'),(457510,381478,5,'director',NULL,NULL),(457510,1415801,6,'writer','written by',NULL),(457510,925234,7,'writer','written by',NULL),(457510,458482,8,'producer','producer',NULL),(457510,685597,9,'producer','producer',NULL),(457572,531688,10,'composer',NULL,NULL),(457572,1579372,1,'actor',NULL,'[\"Timmy Robinson\"]'),(457572,175262,2,'actor',NULL,'[\"Fido\"]'),(457572,5251,3,'actress',NULL,'[\"Helen Robinson\"]'),(457572,443286,4,'actor',NULL,'[\"Narrator\"]'),(457572,192933,5,'director',NULL,NULL),(457572,158989,6,'writer','written by',NULL),(457572,372773,7,'writer','written by',NULL),(457572,179126,8,'producer','producer',NULL),(457572,913963,9,'producer','producer',NULL),(457655,64940,10,'editor',NULL,NULL),(457655,586568,1,'actor',NULL,'[\"Jacob\"]'),(457655,461746,2,'actress',NULL,'[\"Helene\"]'),(457655,489858,3,'actor',NULL,'[\"Jørgen\"]'),(457655,2196217,4,'actor',NULL,'[\"Pramod\"]'),(457655,81540,5,'director',NULL,NULL),(457655,421314,6,'writer','story',NULL),(457655,1011849,7,'producer','producer',NULL),(457655,845542,8,'composer',NULL,NULL),(457655,845612,9,'cinematographer',NULL,NULL),(457939,404509,10,'production_designer',NULL,NULL),(457939,701,1,'actress',NULL,'[\"Iris\"]'),(457939,139,2,'actress',NULL,'[\"Amanda\"]'),(457939,179,3,'actor',NULL,'[\"Graham\"]'),(457939,85312,4,'actor',NULL,'[\"Miles\"]'),(457939,583600,5,'director',NULL,NULL),(457939,88692,6,'producer','producer',NULL),(457939,1877,7,'composer',NULL,NULL),(457939,5678,8,'cinematographer','director of photography',NULL),(457939,404528,9,'editor',NULL,NULL),(458339,270559,10,'producer','producer',NULL),(458339,262635,1,'actor',NULL,'[\"Captain America\",\"Steve Rogers\"]'),(458339,915989,2,'actor',NULL,'[\"Johann Schmidt\",\"Red Skull\"]'),(458339,168,3,'actor',NULL,'[\"Nick Fury\"]'),(458339,2017943,4,'actress',NULL,'[\"Peggy Carter\"]'),(458339,2653,5,'director',NULL,NULL),(458339,1321655,6,'writer','screenplay',NULL),(458339,1321656,7,'writer','screenplay',NULL),(458339,800209,8,'writer','comic books',NULL),(458339,456158,9,'writer','comic books',NULL),(458352,50832,10,'cinematographer','director of photography',NULL),(458352,4266,1,'actress',NULL,'[\"Andy Sachs\"]'),(458352,658,2,'actress',NULL,'[\"Miranda Priestly\"]'),(458352,4978,3,'actor',NULL,'[\"Nate\"]'),(458352,1289434,4,'actress',NULL,'[\"Emily\"]'),(458352,291205,5,'director',NULL,NULL),(458352,112459,6,'writer','screenplay',NULL),(458352,1916979,7,'writer','novel',NULL),(458352,277704,8,'producer','producer',NULL),(458352,788640,9,'composer',NULL,NULL),(458413,547050,10,'composer',NULL,NULL),(458413,112,1,'actor',NULL,'[\"Martin\"]'),(458413,1057,2,'actress',NULL,'[\"Maureen\"]'),(458413,1782299,3,'actress',NULL,'[\"Jess\"]'),(458413,666739,4,'actor',NULL,'[\"JJ\"]'),(458413,154312,5,'director',NULL,NULL),(458413,394984,6,'writer','based on the novel by',NULL),(458413,2113666,7,'writer','screenplay by',NULL),(458413,245493,8,'producer','producer',NULL),(458413,692656,9,'producer','producer',NULL),(458455,609265,10,'producer','producer',NULL),(458455,937557,1,'actress',NULL,'[\"Johanna von Ingelheim\"]'),(458455,920992,2,'actor',NULL,'[\"Gerold\"]'),(458455,422,3,'actor',NULL,'[\"Pope Sergius\"]'),(458455,322513,4,'actor',NULL,'[\"Village Priest\"]'),(458455,941811,5,'director',NULL,NULL),(458455,2405239,6,'writer','novel',NULL),(458455,352703,7,'writer','screenplay',NULL),(458455,2131929,8,'writer',NULL,NULL),(458455,73316,9,'producer','producer',NULL),(458471,471097,10,'producer','producer',NULL),(458471,241,1,'actor',NULL,'[\"Cmdr. Sam Keenan\"]'),(458471,185107,2,'actress',NULL,'[\"Michelle Whitman\"]'),(458471,571326,3,'actor',NULL,'[\"Cpt. John Baldwin\"]'),(458471,12398,4,'actor',NULL,'[\"Sgt. Earl \'Gunny\' Darnell\"]'),(458471,1415540,5,'director',NULL,NULL),(458471,2230737,6,'writer','screenplay',NULL),(458471,179968,7,'writer','screenplay',NULL),(458471,745343,8,'writer','screenplay',NULL),(458471,1462424,9,'writer','story',NULL),(458481,4808284,10,'producer','producer',NULL),(458481,620,1,'actor',NULL,'[\"Marv\"]'),(458481,4695,2,'actress',NULL,'[\"Nancy\"]'),(458481,982,3,'actor',NULL,'[\"Dwight\"]'),(458481,330687,4,'actor',NULL,'[\"Johnny\"]'),(458481,588340,5,'director',NULL,NULL),(458481,1675,6,'director',NULL,NULL),(458481,3703488,7,'producer','producer',NULL),(458481,2721926,8,'producer','producer',NULL),(458481,1655017,9,'producer','producer',NULL),(458525,3515,10,'producer','producer',NULL),(458525,413168,1,'actor',NULL,'[\"Logan\",\"Wolverine\"]'),(458525,630,2,'actor',NULL,'[\"Victor Creed\"]'),(458525,5351,3,'actor',NULL,'[\"Wade Wilson\"]'),(458525,396812,4,'actor',NULL,'[\"Stryker\"]'),(458525,4303,5,'director',NULL,NULL),(458525,1125275,6,'writer','screenplay',NULL),(458525,940790,7,'writer','screenplay',NULL),(458525,657561,8,'producer','producer',NULL),(458525,795682,9,'producer','producer',NULL),(459102,856946,10,'cinematographer',NULL,NULL),(459102,2759893,1,'actress',NULL,'[\"Olga\"]'),(459102,3672484,2,'actress',NULL,'[\"Olgas Mutter\"]'),(459102,5486622,3,'actress',NULL,'[\"Olgas Baby\"]'),(459102,5486594,4,'actor',NULL,'[\"Olgas Bruder\"]'),(459102,782430,5,'director',NULL,NULL),(459102,1072411,6,'writer',NULL,NULL),(459102,830503,7,'producer','producer',NULL),(459102,5307529,8,'composer',NULL,NULL),(459102,5767,9,'cinematographer',NULL,NULL),(459175,100595,1,'actress',NULL,'[\"Evelyn\"]'),(459175,2694157,2,'actor',NULL,'[\"Trucker\"]'),(459175,1788075,3,'actor',NULL,'[\"Joseph\"]'),(459175,576141,4,'actress',NULL,'[\"Virginia\"]'),(459175,1908524,5,'director',NULL,NULL),(459175,1900264,6,'producer','producer',NULL),(459175,1015312,7,'cinematographer',NULL,NULL),(459175,1323580,8,'production_designer',NULL,NULL),(459449,1027293,10,'actress',NULL,'[\"Eeshwar\'s Wife\"]'),(459449,1865947,1,'actor',NULL,'[\"Kumaran\"]'),(459449,1821791,2,'actress',NULL,'[\"Malabar\"]'),(459449,1122924,3,'actress',NULL,'[\"Mahalakshmi\"]'),(459449,695177,4,'actor',NULL,'[\"Eeshwar\"]'),(459449,1001345,5,'director',NULL,NULL),(459449,3586739,6,'writer','writer',NULL),(459449,595899,7,'producer','producer',NULL),(459449,1921858,8,'composer',NULL,NULL),(459449,900266,9,'actor',NULL,'[\"Ganesan\"]'),(459959,1005039,10,'writer','dialogue',NULL),(459959,3059438,1,'actress',NULL,'[\"Akhesa\"]'),(459959,2712463,2,'actor',NULL,'[\"Thout\"]'),(459959,2132924,3,'actor',NULL,'[\"Akhenaton\"]'),(459959,3060489,4,'actress',NULL,'[\"Nefertiti\"]'),(459959,1353170,5,'director',NULL,NULL),(459959,12496,6,'writer',NULL,NULL),(459959,123480,7,'writer','dialogue',NULL),(459959,1925332,8,'writer','novel',NULL),(459959,1100261,9,'writer',NULL,NULL),(460721,2603,10,'editor',NULL,NULL),(460721,108295,1,'actress',NULL,'[\"Amy Pierson\"]'),(460721,105226,2,'actor',NULL,'[\"Noah Owens\"]'),(460721,1422176,3,'actress',NULL,'[\"Jordan Gallagher\"]'),(460721,880504,4,'actor',NULL,'[\"Hunter McCarthy\"]'),(460721,1335694,5,'director',NULL,NULL),(460721,1633080,6,'writer',NULL,NULL),(460721,1103800,7,'producer','producer',NULL),(460721,1445673,8,'composer',NULL,NULL),(460721,1387362,9,'cinematographer',NULL,NULL),(460732,385720,10,'editor',NULL,NULL),(460732,859720,1,'actress',NULL,'[\"Rachel\"]'),(460732,2546,2,'actress',NULL,'[\"Vanessa\"]'),(460732,89485,3,'actor',NULL,'[\"Charlie\"]'),(460732,671032,4,'actor',NULL,'[\"Tom\"]'),(460732,181836,5,'director',NULL,NULL),(460732,1918877,6,'writer',NULL,NULL),(460732,505452,7,'producer','producer',NULL),(460732,457598,8,'composer',NULL,NULL),(460732,561053,9,'cinematographer',NULL,NULL),(460740,859500,10,'editor',NULL,NULL),(460740,81801,1,'actor',NULL,'[\"Ben Willis\"]'),(460740,288976,2,'actress',NULL,'[\"Sharon Pintey\"]'),(460740,752740,3,'actress',NULL,'[\"Suzy\"]'),(460740,2931729,4,'actress',NULL,'[\"Canteen Lady\"]'),(460740,1193346,5,'director',NULL,NULL),(460740,1184392,6,'producer','producer',NULL),(460740,267645,7,'composer',NULL,NULL),(460740,399772,8,'cinematographer','director of photography',NULL),(460740,1350209,9,'editor',NULL,NULL),(460791,914433,10,'cinematographer',NULL,NULL),(460791,1195855,1,'actor',NULL,'[\"Roy Walker\",\"Masked Bandit\"]'),(460791,1942458,2,'actress',NULL,'[\"Alexandria\"]'),(460791,905311,3,'actress',NULL,'[\"Nurse Evelyn\",\"Sister Evelyn\"]'),(460791,2440242,4,'actor',NULL,'[\"Doctor\",\"Alexander the Great\"]'),(460791,802248,5,'director',NULL,NULL),(460791,319659,6,'writer','screenplay',NULL),(460791,815864,7,'writer','screenplay',NULL),(460791,678199,8,'writer',NULL,NULL),(460791,506500,9,'composer',NULL,NULL),(460792,199679,10,'cinematographer','director of photography',NULL),(460792,1427,1,'actor',NULL,'[\"Don Anderson\"]'),(460792,246,2,'actor',NULL,'[\"Harry Rydell\"]'),(460792,1503432,3,'actress',NULL,'[\"Sylvia\"]'),(460792,5519,4,'actor',NULL,'[\"Raul\"]'),(460792,500,5,'director',NULL,NULL),(460792,1906802,6,'writer','written by',NULL),(460792,572229,7,'producer','producer',NULL),(460792,859016,8,'producer','producer',NULL),(460792,1954899,9,'composer',NULL,NULL),(460829,517512,10,'actress',NULL,'[\"Linda\"]'),(460829,344734,1,'actress',NULL,'[\"Lost Girl\"]'),(460829,538048,2,'actor',NULL,'[\"Phantom\"]'),(460829,951471,3,'actress',NULL,'[\"Visitor #1\"]'),(460829,368,4,'actress',NULL,'[\"Nikki Grace\",\"Susan Blue\"]'),(460829,186,5,'director',NULL,NULL),(460829,842156,6,'producer','producer',NULL),(460829,376265,7,'actor',NULL,'[\"Janek\"]'),(460829,718,8,'actor',NULL,'[\"Henry the Butler\"]'),(460829,47887,9,'actress',NULL,'[\"Servant\"]'),(460890,238698,10,'cinematographer','director of photography',NULL),(460890,4360085,1,'actor',NULL,'[\"Thomas Webb\"]'),(460890,295,2,'actress',NULL,'[\"Johanna\"]'),(460890,112,3,'actor',NULL,'[\"Ethan Webb\"]'),(460890,633223,4,'actress',NULL,'[\"Judith Webb\"]'),(460890,1989536,5,'director',NULL,NULL),(460890,1615610,6,'writer','written by',NULL),(460890,74100,7,'producer','producer',NULL),(460890,947695,8,'producer','producer',NULL),(460890,1387379,9,'composer',NULL,NULL),(460897,408453,10,'cinematographer','director of photography',NULL),(460897,50749,1,'actor',NULL,'[\"Tomás joven\"]'),(460897,590293,2,'actress',NULL,'[\"Moira\"]'),(460897,202262,3,'actor',NULL,'[\"Tomás\"]'),(460897,1269541,4,'actress',NULL,'[\"Carmen\"]'),(460897,317834,5,'director',NULL,NULL),(460897,1672020,6,'writer','screenplay',NULL),(460897,1973308,7,'producer','producer',NULL),(460897,273327,8,'producer','producer',NULL),(460897,1032289,9,'composer',NULL,NULL),(460989,606682,10,'editor',NULL,NULL),(460989,614165,1,'actor',NULL,'[\"Damien\"]'),(460989,2073546,2,'actor',NULL,'[\"Teddy\"]'),(460989,192377,3,'actor',NULL,'[\"Dan\"]'),(460989,1695893,4,'actress',NULL,'[\"Sinead\"]'),(460989,516360,5,'director',NULL,NULL),(460989,491956,6,'writer','screenplay',NULL),(460989,639780,7,'producer','producer',NULL),(460989,6070,8,'composer',NULL,NULL),(460989,10096,9,'cinematographer',NULL,NULL),(461612,4262341,10,'composer',NULL,NULL),(461612,1392075,1,'actress',NULL,'[\"Fumio Shijô\"]'),(461612,1934349,2,'actress',NULL,'[\"Kazune Saiki\"]'),(461612,1926617,3,'actress',NULL,'[\"Yuzuko Sarashina\"]'),(461612,410832,4,'actor',NULL,'[\"Kazuomi Shijô\"]'),(461612,643867,5,'director',NULL,NULL),(461612,1932163,6,'writer','manga Warau Mikaeru',NULL),(461612,949025,7,'writer',NULL,NULL),(461612,594499,8,'producer','producer',NULL),(461612,1672061,9,'producer','producer',NULL),(461770,121281,10,'cinematographer','director of photography',NULL),(461770,10736,1,'actress',NULL,'[\"Giselle\"]'),(461770,215,2,'actress',NULL,'[\"Queen Narissa\"]'),(461770,5188,3,'actor',NULL,'[\"Prince Edward\"]'),(461770,1131,4,'actor',NULL,'[\"Robert Philip\"]'),(461770,510674,5,'director',NULL,NULL),(461770,446210,6,'writer','written by',NULL),(461770,430742,7,'producer','producer',NULL),(461770,1756,8,'producer','producer',NULL),(461770,579678,9,'composer',NULL,NULL),(461826,71250,10,'composer',NULL,NULL),(461826,865949,1,'actress',NULL,'[\"Angela\"]'),(461826,1930008,2,'actress',NULL,'[\"Estrella\"]'),(461826,693493,3,'actor',NULL,'[\"Hombre gordo\"]'),(461826,563327,4,'actor',NULL,'[\"Bubba\"]'),(461826,735420,5,'director',NULL,NULL),(461826,881762,6,'director',NULL,NULL),(461826,2144714,7,'writer',NULL,NULL),(461826,273327,8,'producer','producer',NULL),(461826,2139216,9,'producer','producer',NULL),(462309,1941662,1,'actor',NULL,'[\"Sacha\"]'),(462309,1937600,2,'actor',NULL,'[\"Trevor\"]'),(462309,948772,3,'actress',NULL,'[\"Tessa Harrington\"]'),(462309,557281,4,'actress',NULL,'[\"Edwina\"]'),(462309,102714,5,'director',NULL,NULL),(462309,1941417,6,'producer','producer',NULL),(462309,1836065,7,'editor',NULL,NULL),(462309,780256,8,'production_designer',NULL,NULL),(462329,5801,10,'cinematographer','director of photography',NULL),(462329,241,1,'actor',NULL,'[\"Philippe Sauvage\"]'),(462329,12398,2,'actor',NULL,'[\"Wayne Barclay\"]'),(462329,407,3,'actress',NULL,'[\"Tamara Barclay\"]'),(462329,117206,4,'actor',NULL,'[\"Mullins\"]'),(462329,504802,5,'director',NULL,NULL),(462329,6438,6,'writer','written by',NULL),(462329,471097,7,'producer','producer',NULL),(462329,818201,8,'producer','producer',NULL),(462329,1007661,9,'composer',NULL,NULL),(462335,1124802,10,'cinematographer','director of photography',NULL),(462335,1089991,1,'actor',NULL,'[\"Laing\"]'),(462335,460,2,'actor',NULL,'[\"Royal\"]'),(462335,1092227,3,'actress',NULL,'[\"Charlotte\"]'),(462335,1812656,4,'actor',NULL,'[\"Wilder\"]'),(462335,1296554,5,'director',NULL,NULL),(462335,4207229,6,'writer','written by',NULL),(462335,50618,7,'writer','novel \"High Rise\"',NULL),(462335,859016,8,'producer','producer',NULL),(462335,543739,9,'composer',NULL,NULL),(462485,283655,10,'cinematographer',NULL,NULL),(462485,1966818,1,'actor',NULL,'[\"Arbie\"]'),(462485,1985800,2,'actress',NULL,'[\"Wendy\"]'),(462485,1968388,3,'actress',NULL,'[\"Micki\"]'),(462485,2066036,4,'actor',NULL,'[\"General Lee Roy\"]'),(462485,442207,5,'director',NULL,NULL),(462485,295216,6,'writer','original screenplay',NULL),(462485,100551,7,'writer','original screenplay',NULL),(462485,214311,8,'producer','producer',NULL),(462485,1982645,9,'producer','producer',NULL),(462499,3911,10,'composer',NULL,NULL),(462499,230,1,'actor',NULL,'[\"John Rambo\"]'),(462499,4748,2,'actress',NULL,'[\"Sarah\"]'),(462499,550452,3,'actor',NULL,'[\"School Boy\"]'),(462499,574615,4,'actor',NULL,'[\"Lewis\"]'),(462499,599393,5,'writer','written by',NULL),(462499,606251,6,'writer','character',NULL),(462499,503592,7,'producer','producer',NULL),(462499,854772,8,'producer','producer',NULL),(462499,860315,9,'producer','producer',NULL),(462538,583127,10,'writer','screenplay',NULL),(462538,144657,1,'actor',NULL,'[\"Homer Simpson\",\"Itchy\",\"Barney\"]'),(462538,1413,2,'actress',NULL,'[\"Marge Simpson\",\"Selma Bouvier\",\"Patty Bouvier\"]'),(462538,4813,3,'actress',NULL,'[\"Bart Simpson\",\"Maggie Simpson\",\"Ralph Wiggum\"]'),(462538,810379,4,'actress',NULL,'[\"Lisa Simpson\"]'),(462538,798899,5,'director',NULL,NULL),(462538,985,6,'writer','screenplay',NULL),(462538,4981,7,'writer','screenplay',NULL),(462538,419830,8,'writer','screenplay',NULL),(462538,561631,9,'writer','screenplay',NULL),(462590,788202,10,'producer','producer',NULL),(462590,1475594,1,'actor',NULL,'[\"Tyler Gage\"]'),(462590,1564087,2,'actress',NULL,'[\"Nora Clark\"]'),(462590,1690482,3,'actor',NULL,'[\"Mac Carter\"]'),(462590,2026113,4,'actor',NULL,'[\"Skinny Carter\"]'),(462590,281945,5,'director',NULL,NULL),(462590,12137,6,'writer','screenplay',NULL),(462590,742279,7,'writer','screenplay',NULL),(462590,270549,8,'producer','producer',NULL),(462590,316774,9,'producer','producer',NULL),(463034,788640,10,'composer',NULL,NULL),(463034,5028,1,'actress',NULL,'[\"Molly\"]'),(463034,5562,2,'actor',NULL,'[\"Dupree\"]'),(463034,369,3,'actor',NULL,'[\"Carl\"]'),(463034,140,4,'actor',NULL,'[\"Mr. Thompson\"]'),(463034,751577,5,'director',NULL,NULL),(463034,751648,6,'director',NULL,NULL),(463034,1942829,7,'writer','written by',NULL),(463034,661289,8,'producer','producer',NULL),(463034,835959,9,'producer','producer',NULL),(463854,716924,10,'producer','producer',NULL),(463854,719637,1,'actor',NULL,'[\"Doyle\"]'),(463854,126284,2,'actress',NULL,'[\"Scarlet\"]'),(463854,1015,3,'actor',NULL,'[\"Don\"]'),(463854,674782,4,'actor',NULL,'[\"Flynn\"]'),(463854,294379,5,'director',NULL,NULL),(463854,423626,6,'writer','screenplay',NULL),(463854,492038,7,'writer','screenplay',NULL),(463854,647449,8,'writer','screenplay',NULL),(463854,531602,9,'producer','producer',NULL),(463985,559525,10,'editor',NULL,NULL),(463985,85407,1,'actor',NULL,'[\"Sean Boswell\"]'),(463985,117022,2,'actor',NULL,'[\"Clay\"]'),(463985,510168,3,'actor',NULL,'[\"Twinkie\"]'),(463985,2179185,4,'actor',NULL,'[\"High School Security Guard\"]'),(463985,510912,5,'director',NULL,NULL),(463985,604555,6,'writer','written by',NULL),(463985,605775,7,'producer','producer',NULL),(463985,3911,8,'composer',NULL,NULL),(463985,934752,9,'cinematographer','director of photography',NULL),(463998,792049,10,'producer','producer',NULL),(463998,5476,1,'actress',NULL,'[\"Erin Gruwell\"]'),(463998,1767,2,'actress',NULL,'[\"Margaret Campbell\"]'),(463998,1131,3,'actor',NULL,'[\"Scott Casey\"]'),(463998,1277,4,'actor',NULL,'[\"Steve Gruwell\"]'),(463998,481418,5,'director',NULL,NULL),(463998,2090206,6,'writer','book \"The Freedom Writers Diary: How a Teacher and 150 Teens Used Writing to Change Themselves and the World Around Them\"',NULL),(463998,1952250,7,'writer','book \"The Freedom Writers Diary: How a Teacher and 150 Teens Used Writing to Change Themselves and the World Around Them\"',NULL),(463998,362,8,'producer','producer',NULL),(463998,787834,9,'producer','producer',NULL),(464029,537427,10,'cinematographer',NULL,NULL),(464029,438905,1,'actress',NULL,'[\"Esma\"]'),(464029,1955385,2,'actress',NULL,'[\"Sara\"]'),(464029,524494,3,'actor',NULL,'[\"Pelda\"]'),(464029,2189036,4,'actor',NULL,'[\"Samir\"]'),(464029,1120092,5,'director',NULL,NULL),(464029,16475,6,'producer','producer',NULL),(464029,1891430,7,'producer','producer',NULL),(464029,905820,8,'producer','producer',NULL),(464029,1637092,9,'composer',NULL,NULL),(464049,242491,10,'cinematographer','director of photography',NULL),(464049,341743,1,'actor',NULL,'[\"Hector\"]'),(464049,209428,2,'actress',NULL,'[\"Mrs. Lintott\"]'),(464049,581378,3,'actor',NULL,'[\"The Headmaster\"]'),(464049,1556238,4,'actor',NULL,'[\"Crowther\"]'),(464049,405336,5,'director',NULL,NULL),(464049,3141,6,'writer','screenplay',NULL),(464049,427827,7,'producer','producer',NULL),(464049,2941,8,'producer','producer',NULL),(464049,6070,9,'composer',NULL,NULL),(464061,1028291,10,'composer',NULL,NULL),(464061,59431,1,'actor',NULL,'[\"Reed Fish\"]'),(464061,88127,2,'actress',NULL,'[\"Kate\"]'),(464061,711559,3,'actor',NULL,'[\"Frank Cortez\"]'),(464061,4922,4,'actress',NULL,'[\"Jill\"]'),(464061,1027685,5,'director',NULL,NULL),(464061,1951180,6,'writer','story',NULL),(464061,23615,7,'writer','story',NULL),(464061,1387981,8,'writer','story',NULL),(464061,2917478,9,'producer','producer',NULL),(464141,1302939,10,'composer',NULL,NULL),(464141,749104,1,'actress',NULL,'[\"Laura\"]'),(464141,147308,2,'actor',NULL,'[\"Carlos\"]'),(464141,2265834,3,'actor',NULL,'[\"Simón\"]'),(464141,729345,4,'actress',NULL,'[\"Pilar\"]'),(464141,1291105,5,'director',NULL,NULL),(464141,1037221,6,'writer','screenplay',NULL),(464141,1973308,7,'producer','producer',NULL),(464141,963233,8,'producer','producer',NULL),(464141,850173,9,'producer','producer',NULL),(465234,744429,10,'writer','story',NULL),(465234,115,1,'actor',NULL,'[\"Ben Gates\"]'),(465234,1208167,2,'actress',NULL,'[\"Abigail Chase\"]'),(465234,58581,3,'actor',NULL,'[\"Riley Poole\"]'),(465234,685,4,'actor',NULL,'[\"Patrick Gates\"]'),(465234,5509,5,'director',NULL,NULL),(465234,926729,6,'writer','screenplay',NULL),(465234,926727,7,'writer','screenplay',NULL),(465234,201304,8,'writer','story',NULL),(465234,254645,9,'writer','story',NULL),(465375,385720,10,'editor',NULL,NULL),(465375,89456,1,'actor',NULL,'[\"Christopher\"]'),(465375,1504678,2,'actor',NULL,'[\"Marco\"]'),(465375,4825,3,'actress',NULL,'[\"Jordy\"]'),(465375,4867,4,'actor',NULL,'[\"Bob\"]'),(465375,1956898,5,'director',NULL,NULL),(465375,1950898,6,'producer','producer',NULL),(465375,968789,7,'producer','producer',NULL),(465375,1648973,8,'composer',NULL,NULL),(465375,382674,9,'cinematographer','director of photography',NULL),(465494,952944,10,'composer',NULL,NULL),(465494,648249,1,'actor',NULL,'[\"Agent 47\"]'),(465494,779084,2,'actor',NULL,'[\"Mike Whittier\"]'),(465494,1385871,3,'actress',NULL,'[\"Nika Boronina\"]'),(465494,460694,4,'actor',NULL,'[\"Yuri Marklov\"]'),(465494,1164755,5,'director',NULL,NULL),(465494,940790,6,'writer','written by',NULL),(465494,1457858,7,'producer','producer',NULL),(465494,330077,8,'producer','producer',NULL),(465494,1118769,9,'producer','producer',NULL),(465502,397492,10,'producer','producer',NULL),(465502,131,1,'actor',NULL,'[\"Igor\"]'),(465502,788340,2,'actress',NULL,'[\"Eva\"]'),(465502,114,3,'actor',NULL,'[\"Scamper\"]'),(465502,458325,4,'actress',NULL,'[\"Dr. Holzwurm\"]'),(465502,1902232,5,'director',NULL,NULL),(465502,571344,6,'writer','written by',NULL),(465502,388971,7,'writer','additional screenplay material',NULL),(465502,2355206,8,'writer','additional screenplay material',NULL),(465502,1240210,9,'producer','producer',NULL),(465538,6133,10,'composer',NULL,NULL),(465538,123,1,'actor',NULL,'[\"Michael Clayton\"]'),(465538,842770,2,'actress',NULL,'[\"Karen Crowder\"]'),(465538,929489,3,'actor',NULL,'[\"Arthur Edens\"]'),(465538,1574,4,'actor',NULL,'[\"Barry Grissom\"]'),(465538,6904,5,'director',NULL,NULL),(465538,289048,6,'producer','producer',NULL),(465538,649715,7,'producer','producer',NULL),(465538,1628,8,'producer','producer',NULL),(465538,1646381,9,'producer','producer',NULL),(465551,1275,10,'composer',NULL,NULL),(465551,949,1,'actress',NULL,'[\"Sheba Hart\"]'),(465551,1132,2,'actress',NULL,'[\"Barbara Covett\"]'),(465551,1587166,3,'actor',NULL,'[\"Steven Connolly\"]'),(465551,313702,4,'actor',NULL,'[\"Ted Mawson\"]'),(465551,264236,5,'director',NULL,NULL),(465551,544999,6,'writer','screenplay',NULL),(465551,375398,7,'writer','novel \"What Was She Thinking: Notes on a Scandal\"',NULL),(465551,289221,8,'producer','producer',NULL),(465551,748784,9,'producer','producer',NULL),(465580,203118,10,'composer',NULL,NULL),(465580,4741,1,'actress',NULL,'[\"Kira Hudson\"]'),(465580,266824,2,'actress',NULL,'[\"Cassie Holmes\"]'),(465580,262635,3,'actor',NULL,'[\"Nick Gant\"]'),(465580,1225406,4,'actor',NULL,'[\"Young Nick\"]'),(465580,6476,5,'director',NULL,NULL),(465580,100027,6,'writer','written by',NULL),(465580,202704,7,'producer','producer',NULL),(465580,898549,8,'producer','producer',NULL),(465580,932037,9,'producer','producer',NULL),(465602,666702,10,'cinematographer',NULL,NULL),(465602,654110,1,'actor',NULL,'[\"Smith\"]'),(465602,899,2,'actress',NULL,'[\"Donna Quintano\"]'),(465602,316079,3,'actor',NULL,'[\"Hertz\"]'),(465602,565569,4,'actor',NULL,'[\"Hammerson\"]'),(465602,205157,5,'director',NULL,NULL),(465602,70238,6,'producer','producer',NULL),(465602,1848205,7,'producer','producer',NULL),(465602,6613,8,'producer','producer',NULL),(465602,368248,9,'composer',NULL,NULL),(465624,121281,10,'cinematographer','director of photography',NULL),(465624,235,1,'actress',NULL,'[\"Jenny Johnson\",\"G-Girl\"]'),(465624,5561,2,'actor',NULL,'[\"Matt Saunders\"]'),(465624,267506,3,'actress',NULL,'[\"Hannah Lewis\"]'),(465624,933988,4,'actor',NULL,'[\"Vaughn Haige\"]'),(465624,718645,5,'director',NULL,NULL),(465624,668309,6,'writer','written by',NULL),(465624,586969,7,'producer','producer',NULL),(465624,689780,8,'producer','producer',NULL),(465624,144841,9,'composer',NULL,NULL),(465925,1214866,10,'composer',NULL,NULL),(465925,1131,1,'actor',NULL,'[\"Kenai\"]'),(465925,601553,2,'actress',NULL,'[\"Nita\"]'),(465925,836836,3,'actor',NULL,'[\"Koda\"]'),(465925,1548,4,'actor',NULL,'[\"Rutt\"]'),(465925,994310,5,'director',NULL,NULL),(465925,1757227,6,'writer','screenplay',NULL),(465925,971743,7,'producer','producer',NULL),(465925,60871,8,'producer','producer',NULL),(465925,1720431,9,'composer',NULL,NULL),(466405,1037430,10,'producer','producer',NULL),(466405,1360441,1,'actress',NULL,'[\"Yûko Ichihara\"]'),(466405,1101677,2,'actor',NULL,'[\"Watanuki Kimihiro\"]'),(466405,620017,3,'actor',NULL,'[\"Shizuka Doumeki\"]'),(466405,1778495,4,'actress',NULL,'[\"Himawari Kunogi\"]'),(466405,1598205,5,'director',NULL,NULL),(466405,1220477,6,'writer','comic',NULL),(466405,1371924,7,'writer',NULL,NULL),(466405,1825288,8,'writer',NULL,NULL),(466405,2937719,9,'writer','script: english version',NULL),(466665,895903,10,'producer','producer',NULL),(466665,1439,1,'actor',NULL,'[\"Leo Waters\"]'),(466665,205626,2,'actress',NULL,'[\"Tonya Neely\"]'),(466665,618,3,'actress',NULL,'[\"Julia Waters\"]'),(466665,659363,4,'actress',NULL,'[\"Christina Waters\"]'),(466665,851437,5,'director',NULL,NULL),(466665,340052,6,'writer','based on the play by',NULL),(466665,49888,7,'producer','producer',NULL),(466665,459852,8,'producer','producer',NULL),(466665,500444,9,'producer','producer',NULL),(466839,5909,10,'cinematographer','director of photography',NULL),(466839,201,1,'actress',NULL,'[\"Rosie\"]'),(466839,748620,2,'actor',NULL,'[\"Adam\"]'),(466839,1519680,3,'actress',NULL,'[\"Izzie\"]'),(466839,1808,4,'actress',NULL,'[\"Mother Nature\"]'),(466839,2132,5,'director',NULL,NULL),(466839,1251613,6,'producer','producer',NULL),(466839,490063,7,'producer','producer',NULL),(466839,553662,8,'producer','producer',NULL),(466839,1713322,9,'composer',NULL,NULL),(466876,1961777,1,'director',NULL,NULL),(466893,501755,10,'cinematographer','director of photography',NULL),(466893,1593,1,'actress',NULL,'[\"Lisa Cohen\"]'),(466893,354,2,'actor',NULL,'[\"Mr. Aaron\"]'),(466893,749263,3,'actor',NULL,'[\"Maretti\"]'),(466893,810397,4,'actress',NULL,'[\"Joan\"]'),(466893,518836,5,'director',NULL,NULL),(466893,1344784,6,'producer','producer',NULL),(466893,1628,7,'producer','producer',NULL),(466893,748784,8,'producer','producer',NULL),(466893,1848589,9,'composer',NULL,NULL),(467110,53388,10,'producer','producer',NULL),(467110,227759,1,'actor',NULL,'[\"Dr. Simon Barsinister\"]'),(467110,5134,2,'actor',NULL,'[\"Underdog\"]'),(467110,10736,3,'actress',NULL,'[\"Polly\"]'),(467110,902,4,'actor',NULL,'[\"Dan Unger\"]'),(467110,238865,5,'director',NULL,NULL),(467110,726472,6,'writer','screenplay',NULL),(467110,1764920,7,'writer','screenplay',NULL),(467110,1958979,8,'writer','screenplay',NULL),(467110,81794,9,'writer','television series',NULL),(467197,1937,10,'composer',NULL,NULL),(467197,242,1,'actor',NULL,'[\"Max Payne\"]'),(467197,5109,2,'actress',NULL,'[\"Mona Sax\"]'),(467197,977,3,'actor',NULL,'[\"BB Hensley\"]'),(467197,524839,4,'actor',NULL,'[\"Jim Bravura\"]'),(467197,601382,5,'director',NULL,NULL),(467197,2830774,6,'writer','screenplay',NULL),(467197,1053843,7,'writer','video game by Remedy Entertainment and 3-D Realms Entertainment',NULL),(467197,269683,8,'producer','producer',NULL),(467197,798930,9,'producer','producer',NULL),(467200,570100,10,'cinematographer','director of photography',NULL),(467200,204,1,'actress',NULL,'[\"Anne Boleyn\"]'),(467200,424060,2,'actress',NULL,'[\"Mary Boleyn\"]'),(467200,51509,3,'actor',NULL,'[\"Henry Tudor\"]'),(467200,836343,4,'actor',NULL,'[\"George Boleyn\"]'),(467200,149491,5,'director',NULL,NULL),(467200,604948,6,'writer','screenplay',NULL),(467200,339925,7,'writer','novel',NULL),(467200,654077,8,'producer','producer',NULL),(467200,134508,9,'composer',NULL,NULL),(467406,809833,10,'producer','producer',NULL),(467406,680983,1,'actor',NULL,'[\"Juno MacGuff\"]'),(467406,148418,2,'actor',NULL,'[\"Paulie Bleeker\"]'),(467406,4950,3,'actress',NULL,'[\"Vanessa Loring\"]'),(467406,867,4,'actor',NULL,'[\"Mark Loring\"]'),(467406,718646,5,'director',NULL,NULL),(467406,1959505,6,'writer','written by',NULL),(467406,355147,7,'producer','producer',NULL),(467406,518,8,'producer','producer',NULL),(467406,1259504,9,'producer','producer',NULL),(467421,480804,10,'producer','producer',NULL),(467421,610298,1,'actress',NULL,'[\"Alex Fielding\",\"Artemis\"]'),(467421,5255,2,'actress',NULL,'[\"Camryn Barnes\",\"Apolla\"]'),(467421,933723,3,'actress',NULL,'[\"Miranda\"]'),(467421,264579,4,'actor',NULL,'[\"Thantos\"]'),(467421,318795,5,'director',NULL,NULL),(467421,332447,6,'writer','teleplay',NULL),(467421,73504,7,'writer','teleplay',NULL),(467421,2120630,8,'writer','book',NULL),(467421,2116601,9,'writer','book',NULL),(468489,1364232,10,'producer','producer',NULL),(468489,331516,1,'actor',NULL,'[\"Dan Dunne\"]'),(468489,1107001,2,'actor',NULL,'[\"Frank\"]'),(468489,1560274,3,'actress',NULL,'[\"Drey\"]'),(468489,2575873,4,'actor',NULL,'[\"Roodly\"]'),(468489,281396,5,'director',NULL,NULL),(468489,1349818,6,'writer','written by',NULL),(468489,1987578,7,'producer','producer',NULL),(468489,466181,8,'producer','producer',NULL),(468489,650164,9,'producer','producer',NULL),(468492,496933,10,'composer',NULL,NULL),(468492,814280,1,'actor',NULL,'[\"Park Gang-Doo\"]'),(468492,1322404,2,'actor',NULL,'[\"Park Hie-bong\"]'),(468492,1310960,3,'actor',NULL,'[\"Park Nam-il\"]'),(468492,46277,4,'actress',NULL,'[\"Park Nam-Joo\"]'),(468492,94435,5,'director',NULL,NULL),(468492,1506112,6,'writer','screenplay',NULL),(468492,2277597,7,'writer','screenplay',NULL),(468492,158885,8,'producer','producer',NULL),(468492,2522889,9,'producer','producer',NULL),(468569,746273,10,'producer','producer',NULL),(468569,288,1,'actor',NULL,'[\"Bruce Wayne\",\"Batman\"]'),(468569,5132,2,'actor',NULL,'[\"Joker\"]'),(468569,1173,3,'actor',NULL,'[\"Harvey Dent\"]'),(468569,323,4,'actor',NULL,'[\"Alfred\"]'),(468569,634240,5,'director',NULL,NULL),(468569,634300,6,'writer','screenplay',NULL),(468569,275286,7,'writer','story',NULL),(468569,4170,8,'writer','characters',NULL),(468569,650038,9,'producer','producer',NULL),(468795,407286,10,'composer',NULL,NULL),(468795,46277,1,'actress',NULL,'[\"Son - vocalist\"]'),(468795,535329,2,'actress',NULL,'[\"Kyoko Yamada (drummer)\"]'),(468795,1539737,3,'actress',NULL,'[\"Kei Tachibana - Guitarist\"]'),(468795,1974204,4,'actress',NULL,'[\"Nozomi Shiroko (bassist)\"]'),(468795,633729,5,'director',NULL,NULL),(468795,467569,6,'writer',NULL,NULL),(468795,1978000,7,'writer',NULL,NULL),(468795,624375,8,'producer','producer',NULL),(468795,755406,9,'producer','producer',NULL),(469021,544999,10,'writer','characters',NULL),(469021,176869,1,'actor',NULL,'[\"Alan Partridge\",\"Jason Statham\",\"Jason Bourne\"]'),(469021,538,2,'actor',NULL,'[\"Pat Farrell\"]'),(469021,2764713,3,'actor',NULL,'[\"Side Kick Simon\"]'),(469021,1717331,4,'actor',NULL,'[\"Greg Frampton\"]'),(469021,523276,5,'director',NULL,NULL),(469021,1668151,6,'writer','screenplay',NULL),(469021,1668152,7,'writer','screenplay',NULL),(469021,406334,8,'writer','screenplay',NULL),(469021,63165,9,'writer','screenplay',NULL),(469494,5696,10,'cinematographer','director of photography',NULL),(469494,358,1,'actor',NULL,'[\"Daniel Plainview\"]'),(469494,200452,2,'actor',NULL,'[\"Paul Sunday\",\"Eli Sunday\"]'),(469494,1354,3,'actor',NULL,'[\"Fletcher\"]'),(469494,2872491,4,'actor',NULL,'[\"Silver Assay Worker\"]'),(469494,759,5,'director',NULL,NULL),(469494,801737,6,'writer','novel \"Oil!\"',NULL),(469494,526917,7,'producer','producer',NULL),(469494,783280,8,'producer','producer',NULL),(469494,339351,9,'composer',NULL,NULL),(469641,2226834,10,'writer','true story',NULL),(469641,115,1,'actor',NULL,'[\"John McLoughlin\"]'),(469641,671567,2,'actor',NULL,'[\"Will Jimeno\"]'),(469641,4742,3,'actress',NULL,'[\"Donna McLoughlin\"]'),(469641,350454,4,'actress',NULL,'[\"Allison Jimeno\"]'),(469641,231,5,'director',NULL,NULL),(469641,75696,6,'writer','written by',NULL),(469641,2225418,7,'writer','true story',NULL),(469641,2228493,8,'writer','true story',NULL),(469641,2223804,9,'writer','true story',NULL),(470055,530917,10,'producer','producer',NULL),(470055,6721,1,'actress',NULL,'[\"Amy\"]'),(470055,817620,2,'actor',NULL,'[\"James\"]'),(470055,486174,3,'actor',NULL,'[\"Zach\"]'),(470055,385029,4,'actress',NULL,'[\"Lauren\"]'),(470055,394841,5,'director',NULL,NULL),(470055,471044,6,'writer',NULL,NULL),(470055,2095095,7,'writer','additional dialogue',NULL),(470055,1180614,8,'writer',NULL,NULL),(470055,840626,9,'writer','based in part on a story by',NULL),(470705,996135,10,'producer','producer',NULL),(470705,171,1,'actress',NULL,'[\"Agnes White\"]'),(470705,788335,2,'actor',NULL,'[\"Peter Evans\"]'),(470705,1065,3,'actor',NULL,'[\"Jerry Goss\"]'),(470705,1211488,4,'actress',NULL,'[\"R.C.\"]'),(470705,1243,5,'director',NULL,NULL),(470705,504832,6,'writer','screenplay',NULL),(470705,27032,7,'producer','producer',NULL),(470705,122800,8,'producer','producer',NULL),(470705,399589,9,'producer','producer',NULL),(470752,1134771,10,'cinematographer',NULL,NULL),(470752,2539953,1,'actress',NULL,'[\"Ava\"]'),(470752,1727304,2,'actor',NULL,'[\"Caleb\"]'),(470752,1209966,3,'actor',NULL,'[\"Nathan\"]'),(470752,4420495,4,'actress',NULL,'[\"Kyoko\"]'),(470752,307497,5,'director',NULL,NULL),(470752,531602,6,'producer','producer',NULL),(470752,716924,7,'producer','producer',NULL),(470752,57856,8,'composer',NULL,NULL),(470752,1367927,9,'composer',NULL,NULL),(470765,308488,10,'production_designer',NULL,NULL),(470765,1573,1,'actress',NULL,'[\"Marilyn Hack\"]'),(470765,733427,2,'actor',NULL,'[\"Victor Allan Miller\"]'),(470765,205,3,'actress',NULL,'[\"Callie Webb\"]'),(470765,1302,4,'actor',NULL,'[\"Jay Berman\"]'),(470765,506405,5,'writer','written by',NULL),(470765,614420,6,'producer','producer',NULL),(470765,889350,7,'composer',NULL,NULL),(470765,769656,8,'cinematographer','director of photography',NULL),(470765,500371,9,'editor',NULL,NULL),(471030,752811,10,'cinematographer','director of photography',NULL),(471030,225483,1,'actress',NULL,'[\"Jackie\"]'),(471030,192889,2,'actor',NULL,'[\"Clyde\"]'),(471030,1161994,3,'actor',NULL,'[\"Stevie\"]'),(471030,1461267,4,'actress',NULL,'[\"April\"]'),(471030,36349,5,'director',NULL,NULL),(471030,771054,6,'writer','characters',NULL),(471030,421314,7,'writer','characters',NULL),(471030,1163921,8,'producer','producer',NULL),(471030,1105261,9,'composer',NULL,NULL),(471041,68328,10,'producer','producer',NULL),(471041,609,1,'actor',NULL,'[\"Joshua Harlow\"]'),(471041,1015,2,'actor',NULL,'[\"Father MacAvoy\"]'),(471041,5026,3,'actress',NULL,'[\"Lai Lai Zhen\"]'),(471041,813812,4,'actor',NULL,'[\"Miles Slade\"]'),(471041,1470993,5,'director',NULL,NULL),(471041,949558,6,'writer','written by',NULL),(471041,1491927,7,'writer','written by',NULL),(471041,1475013,8,'writer','written by',NULL),(471041,1349707,9,'producer','producer',NULL),(471042,499054,10,'writer','screenplay',NULL),(471042,552,1,'actor',NULL,'[\"Slide\"]'),(471042,1774,2,'actor',NULL,'[\"Josh Kovaks\"]'),(471042,729,3,'actor',NULL,'[\"Charlie\"]'),(471042,257,4,'actor',NULL,'[\"Arthur Shaw\"]'),(471042,711840,5,'director',NULL,NULL),(471042,177836,6,'writer','story',NULL),(471042,171651,7,'writer','story',NULL),(471042,341372,8,'writer','story',NULL),(471042,622288,9,'writer','screenplay',NULL),(471287,9569682,10,'actor',NULL,'[\"Will\"]'),(471287,1987854,1,'actor',NULL,NULL),(471287,1989680,2,'actor',NULL,NULL),(471287,13700352,3,'actor',NULL,NULL),(471287,1808927,4,'actress',NULL,NULL),(471287,1992818,5,'director',NULL,NULL),(471287,1995960,6,'actor',NULL,NULL),(471287,463279,7,'actor',NULL,NULL),(471287,565783,8,'actress',NULL,NULL),(471287,2418066,9,'actor',NULL,'[\"Mark Woodbury\"]'),(471711,839467,10,'producer','producer',NULL),(471711,921942,1,'actor',NULL,'[\"Philip J. Fry\",\"Dr. John Zoidberg\",\"Prof. Hubert Farnsworth\"]'),(471711,5408,2,'actress',NULL,'[\"Turanga Leela\"]'),(471711,224007,3,'actor',NULL,'[\"Bender Rodriguez\",\"Barbados Slim\",\"Robot Santa\"]'),(471711,534134,4,'actress',NULL,'[\"Linda\",\"Dr. Cahill\",\"Dr. Shlavinowitz\"]'),(471711,1401752,5,'director',NULL,NULL),(471711,4981,6,'writer','created by',NULL),(471711,169326,7,'writer','developed by',NULL),(471711,444517,8,'writer','teleplay by',NULL),(471711,441656,9,'producer','producer',NULL),(471834,1277753,10,'composer',NULL,NULL),(471834,1972675,1,'actress',NULL,'[\"Nana Ôsaki\"]'),(471834,594497,2,'actress',NULL,'[\"Nana Komatsu\"]'),(471834,1224532,3,'actor',NULL,'[\"Nobuo Terashima\"]'),(471834,1778466,4,'actor',NULL,'[\"Shôji Endô\"]'),(471834,960025,5,'director',NULL,NULL),(471834,1303246,6,'writer','comic',NULL),(471834,2307035,7,'writer','screenplay',NULL),(471834,1132619,8,'producer','producer',NULL),(471834,620457,9,'producer','producer',NULL),(472033,1967575,10,'producer','producer',NULL),(472033,704,1,'actor',NULL,'[\"#9\"]'),(472033,124,2,'actress',NULL,'[\"#7\"]'),(472033,417,3,'actor',NULL,'[\"#6\"]'),(472033,1626,4,'actor',NULL,'[\"#1\"]'),(472033,9942,5,'director',NULL,NULL),(472033,972040,6,'writer','screenplay by',NULL),(472033,994310,7,'writer','head of story',NULL),(472033,67457,8,'producer','producer',NULL),(472033,318,9,'producer','producer',NULL),(472043,942510,10,'editor',NULL,NULL),(472043,850162,1,'actor',NULL,'[\"Middle Eye\"]'),(472043,874232,2,'actor',NULL,'[\"Zero Wolf\"]'),(472043,2199664,3,'actress',NULL,'[\"Seven\"]'),(472043,2199632,4,'actor',NULL,'[\"Jaguar Paw\"]'),(472043,154,5,'director',NULL,NULL),(472043,1731154,6,'writer','written by',NULL),(472043,202704,7,'producer','producer',NULL),(472043,35,8,'composer',NULL,NULL),(472043,5871,9,'cinematographer','director of photography',NULL),(472062,3552,10,'cinematographer','director of photography',NULL),(472062,158,1,'actor',NULL,'[\"Charlie Wilson\"]'),(472062,210,2,'actress',NULL,'[\"Joanne Herring\"]'),(472062,450,3,'actor',NULL,'[\"Gust Avrakotos\"]'),(472062,10736,4,'actress',NULL,'[\"Bonnie Bach\"]'),(472062,1566,5,'director',NULL,NULL),(472062,815070,6,'writer','screenplay',NULL),(472062,1985741,7,'writer','book',NULL),(472062,324556,8,'producer','producer',NULL),(472062,6133,9,'composer',NULL,NULL),(472071,804918,10,'composer',NULL,NULL),(472071,1876,1,'actress',NULL,'[\"Mary McGarvie\"]'),(472071,1602,2,'actor',NULL,'[\"Harry Houdini\"]'),(472071,1758,3,'actor',NULL,'[\"Sugarman\"]'),(472071,1519680,4,'actress',NULL,'[\"Benji McGarvie\"]'),(472071,788,5,'director',NULL,NULL),(472071,342617,6,'writer','written by',NULL),(472071,911422,7,'writer','written by',NULL),(472071,192770,8,'producer','producer',NULL),(472071,532286,9,'producer','producer',NULL),(472160,847926,10,'composer',NULL,NULL),(472160,207,1,'actress',NULL,'[\"Penelope Wilhern\"]'),(472160,564215,2,'actor',NULL,'[\"Johnny\",\"Max\"]'),(472160,702,3,'actress',NULL,'[\"Annie\"]'),(472160,1290,4,'actor',NULL,'[\"Franklin Wilhern\"]'),(472160,657372,5,'director',NULL,NULL),(472160,147092,6,'writer','written by',NULL),(472160,1928375,7,'producer','executive producer',NULL),(472160,995329,8,'producer','producer',NULL),(472160,825877,9,'producer','producer',NULL),(472181,678963,10,'writer','based on characters created by',NULL),(472181,279,1,'actor',NULL,'[\"Gargamel\"]'),(472181,2953537,2,'actress',NULL,'[\"Smurfette\"]'),(472181,5565,3,'actor',NULL,'[\"Papa\"]'),(472181,439,4,'actor',NULL,'[\"Patrick Winslow\"]'),(472181,331532,5,'director',NULL,NULL),(472181,826425,6,'writer','screenplay by',NULL),(472181,918955,7,'writer','screenplay by',NULL),(472181,771065,8,'writer','screenplay by',NULL),(472181,740115,9,'writer','screenplay by',NULL),(472205,487320,10,'cinematographer','director of photography',NULL),(472205,614165,1,'actor',NULL,'[\"Neil\"]'),(472205,5154,2,'actress',NULL,'[\"Violet\"]'),(472205,837177,3,'actor',NULL,'[\"Jonathan\"]'),(472205,659353,4,'actor',NULL,'[\"Lucien\"]'),(472205,815418,5,'director',NULL,NULL),(472205,630633,6,'producer','producer',NULL),(472205,1488027,7,'producer','producer',NULL),(472205,815610,8,'producer','producer',NULL),(472205,56550,9,'composer',NULL,NULL),(472399,935210,10,'producer','producer',NULL),(472399,5458,1,'actor',NULL,'[\"Arthur Bishop\"]'),(472399,4936,2,'actor',NULL,'[\"Steve McKenna\"]'),(472399,661,3,'actor',NULL,'[\"Harry McKenna\"]'),(472399,1282,4,'actor',NULL,'[\"Dean\"]'),(472399,922346,5,'director',NULL,NULL),(472399,921013,6,'writer','screenplay',NULL),(472399,137573,7,'writer','screenplay',NULL),(472399,78868,8,'producer','producer',NULL),(472399,153587,9,'producer','producer',NULL),(473074,1170121,1,'actress',NULL,'[\"Jane\"]'),(473074,950969,2,'actress',NULL,'[\"Serena\"]'),(473074,1902271,3,'actor',NULL,'[\"David\"]'),(473074,533492,4,'actress',NULL,'[\"Denise\"]'),(473074,268051,5,'director',NULL,NULL),(473074,139252,6,'producer','producer',NULL),(473074,724950,7,'composer',NULL,NULL),(473074,267301,8,'cinematographer','director of photography',NULL),(473074,1804957,9,'production_designer',NULL,NULL),(473075,988,10,'producer','producer',NULL),(473075,350453,1,'actor',NULL,'[\"Dastan\"]'),(473075,2605345,2,'actress',NULL,'[\"Tamina\"]'),(473075,1426,3,'actor',NULL,'[\"Nizam\"]'),(473075,547,4,'actor',NULL,'[\"Sheik Amar\"]'),(473075,1565,5,'director',NULL,NULL),(473075,945026,6,'writer','screenplay',NULL),(473075,1215164,7,'writer','screenplay',NULL),(473075,76166,8,'writer','screenplay',NULL),(473075,575338,9,'writer','screen story',NULL),(473105,549966,10,'cinematographer','director of photography',NULL),(473105,5128,1,'actress',NULL,'[\"Maddy Rierdon\"]'),(473105,623604,2,'actor',NULL,'[\"Dan Dryer\"]'),(473105,906617,3,'actor',NULL,'[\"Game Warden Jay Schuster\"]'),(473105,961,4,'actor',NULL,'[\"Hank Poelker\"]'),(473105,112498,5,'director',NULL,NULL),(473105,1856985,6,'writer','written by',NULL),(473105,604558,7,'producer','producer',NULL),(473105,840239,8,'producer','producer',NULL),(473105,192514,9,'composer',NULL,NULL),(473308,972803,10,'production_designer',NULL,NULL),(473308,5392,1,'actress',NULL,'[\"Jenna\"]'),(473308,277213,2,'actor',NULL,'[\"Dr. Pomatter\"]'),(473308,5438,3,'actor',NULL,'[\"Earl\"]'),(473308,385644,4,'actress',NULL,'[\"Becky\"]'),(473308,791248,5,'director',NULL,NULL),(473308,1988698,6,'producer','producer',NULL),(473308,390867,7,'composer',NULL,NULL),(473308,4089,8,'cinematographer',NULL,NULL),(473308,202697,9,'editor',NULL,NULL),(473364,941065,10,'production_designer',NULL,NULL),(473364,834282,1,'actor',NULL,'[\"Mitchell \'Boots\' Mason\"]'),(473364,5068,2,'actor',NULL,'[\"Dunn\"]'),(473364,1653,3,'actor',NULL,'[\"Anawalt\"]'),(473364,815370,4,'actress',NULL,'[\"Claire\"]'),(473364,1668000,5,'director',NULL,NULL),(473364,1313445,6,'producer','producer',NULL),(473364,642949,7,'composer',NULL,NULL),(473364,606899,8,'cinematographer',NULL,NULL),(473364,372124,9,'editor',NULL,NULL),(473444,955411,10,'producer','producer',NULL),(473444,334,1,'actor',NULL,'[\"Emperor Ping\"]'),(473444,84,2,'actress',NULL,'[\"Empress Phoenix\"]'),(473444,1727100,3,'actor',NULL,'[\"Prince Jai\"]'),(473444,1091782,4,'actor',NULL,'[\"Crown Prince Wan\"]'),(473444,955443,5,'director',NULL,NULL),(473444,7224267,6,'writer','written by',NULL),(473444,134884,7,'writer','play \"Lei yu\"',NULL),(473444,5605482,8,'writer',NULL,NULL),(473444,465067,9,'producer','producer',NULL),(473488,253486,10,'composer',NULL,NULL),(473488,375,1,'actor',NULL,'[\"Dito\"]'),(473488,206257,2,'actress',NULL,'[\"Laurie\"]'),(473488,479471,3,'actor',NULL,'[\"Young Dito\"]'),(473488,1848,4,'actress',NULL,'[\"Flori\"]'),(473488,1996918,5,'director',NULL,NULL),(473488,1231965,6,'producer','producer',NULL),(473488,1680555,7,'producer','producer',NULL),(473488,836548,8,'producer','producer',NULL),(473488,842899,9,'producer','producer',NULL),(473514,1155885,10,'production_designer',NULL,NULL),(473514,198804,1,'actor',NULL,'[\"Clutch\"]'),(473514,2002063,2,'actress',NULL,'[\"Casey\"]'),(473514,108525,3,'actor',NULL,'[\"Coco\"]'),(473514,180735,4,'actress',NULL,'[\"Kay\"]'),(473514,585344,5,'director',NULL,NULL),(473514,2000770,6,'producer','producer',NULL),(473514,2385,7,'producer','producer',NULL),(473514,2070325,8,'composer',NULL,NULL),(473514,760589,9,'cinematographer',NULL,NULL),(473705,79677,10,'producer','producer',NULL),(473705,128,1,'actor',NULL,'[\"Cal McAffrey\"]'),(473705,1046097,2,'actress',NULL,'[\"Della Frye\"]'),(473705,255,3,'actor',NULL,'[\"Stephen Collins\"]'),(473705,545,4,'actress',NULL,'[\"Cameron Lynne\"]'),(473705,531817,5,'director',NULL,NULL),(473705,1996352,6,'writer','screenplay',NULL),(473705,6904,7,'writer','screenplay',NULL),(473705,712753,8,'writer','screenplay',NULL),(473705,8036,9,'writer','television series',NULL),(473753,119419,10,'production_designer',NULL,NULL),(473753,1051346,1,'actress',NULL,'[\"Angel-A\"]'),(473753,213354,2,'actor',NULL,'[\"André Moussah\"]'),(473753,577841,3,'actor',NULL,'[\"Franck\"]'),(473753,722657,4,'actor',NULL,'[\"Pedro\"]'),(473753,108,5,'director',NULL,NULL),(473753,2035394,6,'composer',NULL,NULL),(473753,5636,7,'cinematographer',NULL,NULL),(473753,1233646,8,'editor','co-editor',NULL),(473753,1754850,9,'editor',NULL,NULL),(474361,2015907,1,'self',NULL,'[\"Self\"]'),(474361,2012112,2,'self',NULL,'[\"Self\"]'),(474361,2021068,3,'director',NULL,NULL),(474361,519354,4,'director',NULL,NULL),(474361,2016669,5,'composer',NULL,NULL),(474361,399677,6,'editor',NULL,NULL),(475169,2047567,10,'editor',NULL,NULL),(475169,2073007,1,'actor',NULL,'[\"Sébastien\"]'),(475169,714534,2,'actor',NULL,'[\"Jacky\"]'),(475169,94445,3,'actor',NULL,'[\"Le maître de cérémonie\"]'),(475169,880774,4,'actor',NULL,'[\"Alain\"]'),(475169,1201875,5,'director',NULL,NULL),(475169,2049431,6,'producer','producer',NULL),(475169,2045498,7,'producer','producer',NULL),(475169,1516642,8,'composer',NULL,NULL),(475169,577718,9,'cinematographer',NULL,NULL),(475243,255030,10,'production_designer',NULL,NULL),(475243,189144,1,'actor',NULL,'[\"Space Station Man\"]'),(475243,2011935,2,'actress',NULL,'[\"Space Station Woman\"]'),(475243,1714,3,'actor',NULL,'[\"Richard McMurray\"]'),(475243,5094,4,'actress',NULL,'[\"Diane Freed\"]'),(475243,908352,5,'director',NULL,NULL),(475243,798640,6,'writer','story',NULL),(475243,873560,7,'composer',NULL,NULL),(475243,1030152,8,'cinematographer',NULL,NULL),(475243,888564,9,'editor',NULL,NULL),(475290,5683,10,'cinematographer','director of photography',NULL),(475290,982,1,'actor',NULL,'[\"Eddie Mannix\"]'),(475290,123,2,'actor',NULL,'[\"Baird Whitlock\"]'),(475290,2403277,3,'actor',NULL,'[\"Hobie Doyle\"]'),(475290,146,4,'actor',NULL,'[\"Laurence Laurentz\"]'),(475290,1053,5,'director',NULL,NULL),(475290,1054,6,'director',NULL,NULL),(475290,79677,7,'producer','producer',NULL),(475290,271479,8,'producer','producer',NULL),(475290,1980,9,'composer',NULL,NULL),(475293,281311,10,'editor',NULL,NULL),(475293,1374980,1,'actor',NULL,'[\"Troy Bolton\"]'),(475293,1227814,2,'actress',NULL,'[\"Gabriella Montez\"]'),(475293,864308,3,'actress',NULL,'[\"Sharpay Evans\"]'),(475293,1727317,4,'actor',NULL,'[\"Ryan Evans\"]'),(475293,650905,5,'director',NULL,NULL),(475293,58302,6,'writer','written by',NULL),(475293,769913,7,'producer','producer',NULL),(475293,492714,8,'composer',NULL,NULL),(475293,519558,9,'cinematographer','director of photography',NULL),(475394,292482,10,'editor',NULL,NULL),(475394,5315,1,'actor',NULL,'[\"Buddy Israel\"]'),(475394,5351,2,'actor',NULL,'[\"Richard Messner\"]'),(475394,501,3,'actor',NULL,'[\"Donald Carruthers\"]'),(475394,750826,4,'actor',NULL,'[\"Primo Sparazza\"]'),(475394,138620,5,'director',NULL,NULL),(475394,79677,6,'producer','producer',NULL),(475394,271479,7,'producer','producer',NULL),(475394,543739,8,'composer',NULL,NULL),(475394,278475,9,'cinematographer','director of photography',NULL),(475944,5602,10,'cinematographer','director of photography',NULL),(475944,1711829,1,'actor',NULL,'[\"Caleb Danvers\"]'),(475944,1659221,2,'actor',NULL,'[\"Chase Collins\"]'),(475944,1738172,3,'actor',NULL,'[\"Reid Garwin\"]'),(475944,2018237,4,'actor',NULL,'[\"Pogue Parry\"]'),(475944,1317,5,'director',NULL,NULL),(475944,136592,6,'writer','written by',NULL),(475944,524342,7,'producer','producer',NULL),(475944,742347,8,'producer','producer',NULL),(475944,354453,9,'composer',NULL,NULL),(476013,6367,10,'composer',NULL,NULL),(476013,327,1,'actress',NULL,'[\"Olivia\"]'),(476013,1767820,2,'actress',NULL,'[\"Celia\"]'),(476013,5176,3,'actress',NULL,'[\"Barbara\"]'),(476013,708981,4,'actor',NULL,'[\"Dennis\"]'),(476013,733415,5,'director',NULL,NULL),(476013,1633129,6,'writer','teleplay',NULL),(476013,780051,7,'writer','teleplay',NULL),(476013,2118903,8,'writer','novel',NULL),(476013,257923,9,'producer','producer',NULL),(476298,87715,10,'editor',NULL,NULL),(476298,2008680,1,'actress',NULL,'[\"Madeinusa\"]'),(476298,2089285,2,'actor',NULL,'[\"Salvador\"]'),(476298,1883057,3,'actress',NULL,'[\"Chale\"]'),(476298,2018907,4,'actor',NULL,'[\"Cayo\"]'),(476298,2013191,5,'director',NULL,NULL),(476298,154464,6,'producer','producer',NULL),(476298,602660,7,'producer','producer',NULL),(476298,2639868,8,'composer',NULL,NULL),(476298,702038,9,'cinematographer',NULL,NULL),(476680,1919164,10,'actress',NULL,'[\"Yukie Fujikaze\"]'),(476680,847594,1,'actress',NULL,'[\"Naruto Uzumaki\"]'),(476680,1468944,2,'actress',NULL,'[\"Sakura Haruno\"]'),(476680,1617276,3,'actor',NULL,'[\"Sasuke Uchiha\"]'),(476680,409287,4,'actor',NULL,'[\"Kakashi Hatake\"]'),(476680,645513,5,'director',NULL,NULL),(476680,1618263,6,'writer','manga series',NULL),(476680,838572,7,'writer','screenplay',NULL),(476680,3309461,8,'producer','producer',NULL),(476680,557928,9,'composer',NULL,NULL),(476964,5428,10,'producer','producer',NULL),(476964,149,1,'actress',NULL,'[\"Erica Bain\"]'),(476964,5024,2,'actor',NULL,'[\"Detective Mercer\"]'),(476964,4710,3,'actor',NULL,'[\"David Kirmani\"]'),(476964,441588,4,'actor',NULL,'[\"Detective Vitale\"]'),(476964,1403,5,'director',NULL,NULL),(476964,266023,6,'writer','screenplay',NULL),(476964,852073,7,'writer','screenplay',NULL),(476964,607725,8,'writer','screenplay',NULL),(476964,1206265,9,'producer','producer',NULL),(476991,1451199,10,'composer',NULL,NULL),(476991,2409783,1,'actor',NULL,'[\"Timothy\"]'),(476991,732133,2,'actress',NULL,'[\"Ms. Tebbit\"]'),(476991,2676018,3,'actress',NULL,'[\"Donna\"]'),(476991,931958,4,'actress',NULL,'[\"Frankie\"]'),(476991,1076716,5,'director',NULL,NULL),(476991,1450397,6,'writer','written by',NULL),(476991,636,7,'writer','inspired by the play \"A Midsummer Night\'s Dream\"',NULL),(476991,1128479,8,'producer','producer',NULL),(476991,1452657,9,'composer',NULL,NULL),(477051,628056,10,'composer',NULL,NULL),(477051,552,1,'actor',NULL,'[\"Norbit\",\"Rasputia\",\"Mr. Wong\"]'),(477051,628601,2,'actress',NULL,'[\"Kate Thomas\"]'),(477051,187719,3,'actor',NULL,'[\"Big Jack Latimore\"]'),(477051,694066,4,'actor',NULL,'[\"Earl Latimore\"]'),(477051,5367,5,'director',NULL,NULL),(477051,614151,6,'writer','screenplay',NULL),(477051,771065,7,'writer','screenplay',NULL),(477051,740115,8,'writer','screenplay',NULL),(477051,204862,9,'producer','producer',NULL),(477071,673858,10,'producer','producer',NULL),(477071,113,1,'actress',NULL,'[\"Linda Hanson\"]'),(477071,573037,2,'actor',NULL,'[\"Jim Hanson\"]'),(477071,5520,3,'actress',NULL,'[\"Claire\"]'),(477071,2182034,4,'actress',NULL,'[\"Megan Hanson\"]'),(477071,946327,5,'director',NULL,NULL),(477071,446210,6,'writer','written by',NULL),(477071,2170,7,'producer','producer',NULL),(477071,316774,8,'producer','producer',NULL),(477071,419169,9,'producer','producer',NULL),(477072,774908,10,'producer','producer',NULL),(477072,531101,1,'actor',NULL,'[\"Prince Edvard\"]'),(477072,4349,2,'actress',NULL,'[\"Paige Morgan\"]'),(477072,1881,3,'actress',NULL,'[\"Queen Rosalind\"]'),(477072,123779,4,'actress',NULL,'[\"Princess Kirsten\"]'),(477072,194274,5,'director',NULL,NULL),(477072,732362,6,'writer','written by',NULL),(477072,24909,7,'writer','characters',NULL),(477072,297545,8,'writer','characters',NULL),(477072,254291,9,'producer','producer',NULL),(477080,1747215,10,'producer','producer',NULL),(477080,243,1,'actor',NULL,'[\"Frank\"]'),(477080,1517976,2,'actor',NULL,'[\"Will\"]'),(477080,206257,3,'actress',NULL,'[\"Connie\"]'),(477080,839486,4,'actor',NULL,'[\"Dewey\"]'),(477080,1716,5,'director',NULL,NULL),(477080,93560,6,'writer','written by',NULL),(477080,572805,7,'producer','producer',NULL),(477080,211,8,'producer','producer',NULL),(477080,798930,9,'producer','producer',NULL),(477095,624201,10,'composer',NULL,NULL),(477095,564215,1,'actor',NULL,'[\"Brian Jackson\"]'),(477095,1404408,2,'actress',NULL,'[\"Alice Harbinson\"]'),(477095,356017,3,'actress',NULL,'[\"Rebecca Epstein\"]'),(477095,1382417,4,'actor',NULL,'[\"Young Brian\"]'),(477095,891114,5,'director',NULL,NULL),(477095,390141,6,'writer','novel',NULL),(477095,324556,7,'producer','producer',NULL),(477095,158,8,'producer','producer',NULL),(477095,365208,9,'producer','producer',NULL),(477139,1353543,10,'producer','producer',NULL),(477139,297578,1,'actor',NULL,'[\"Zia\"]'),(477139,924154,2,'actor',NULL,'[\"Eugene\"]'),(477139,1823,3,'actor',NULL,'[\"Kneller\"]'),(477139,4715,4,'actor',NULL,'[\"Messiah\"]'),(477139,1058247,5,'director',NULL,NULL),(477139,449316,6,'writer','novella: \"Kneller\'s Happy Campers\"',NULL),(477139,168753,7,'producer','producer',NULL),(477139,2015238,8,'producer','producer',NULL),(477139,1058798,9,'producer','producer',NULL),(477266,2075054,1,'self',NULL,'[\"Self - Boxer\"]'),(477266,3056571,2,'self',NULL,'[\"Self - Boxer\"]'),(477266,5690,3,'director',NULL,NULL),(477266,374658,4,'producer','producer',NULL),(477302,579580,10,'cinematographer','director of photography',NULL),(477302,4223385,1,'actor',NULL,'[\"Oskar Schell\"]'),(477302,158,2,'actor',NULL,'[\"Thomas Schell\"]'),(477302,113,3,'actress',NULL,'[\"Linda Schell\"]'),(477302,1884,4,'actor',NULL,'[\"The Renter\"]'),(477302,197636,5,'director',NULL,NULL),(477302,744839,6,'writer','screenplay',NULL),(477302,1583636,7,'writer','novel',NULL),(477302,748784,8,'producer','producer',NULL),(477302,6035,9,'composer',NULL,NULL),(477311,555968,10,'composer',NULL,NULL),(477311,1296762,1,'actress',NULL,'[\"Clara\"]'),(477311,328400,2,'actress',NULL,'[\"Portera\"]'),(477311,171630,3,'actor',NULL,'[\"Mario\"]'),(477311,1699333,4,'actress',NULL,'[\"Chica\"]'),(477311,49371,5,'director',NULL,NULL),(477311,1157609,6,'writer','screenplay',NULL),(477311,1973308,7,'producer','producer',NULL),(477311,273327,8,'producer','producer',NULL),(477311,63414,9,'composer',NULL,NULL),(477347,1060,10,'producer','producer',NULL),(477347,1774,1,'actor',NULL,'[\"Larry Daley\"]'),(477347,1303,2,'actress',NULL,'[\"Rebecca\"]'),(477347,315041,3,'actor',NULL,'[\"Dr. McPhee\"]'),(477347,1813,4,'actor',NULL,'[\"Cecil\"]'),(477347,506613,5,'director',NULL,NULL),(477347,304830,6,'writer','screenplay',NULL),(477347,502073,7,'writer','screenplay',NULL),(477347,2025683,8,'writer','book',NULL),(477347,55431,9,'producer','producer',NULL),(477348,5683,10,'cinematographer','director of photography',NULL),(477348,169,1,'actor',NULL,'[\"Ed Tom Bell\"]'),(477348,849,2,'actor',NULL,'[\"Anton Chigurh\"]'),(477348,982,3,'actor',NULL,'[\"Llewelyn Moss\"]'),(477348,437,4,'actor',NULL,'[\"Carson Wells\"]'),(477348,1053,5,'director',NULL,NULL),(477348,1054,6,'director',NULL,NULL),(477348,565092,7,'writer','novel',NULL),(477348,748784,8,'producer','producer',NULL),(477348,1980,9,'composer',NULL,NULL),(478087,6894,10,'producer','producer',NULL),(478087,836343,1,'actor',NULL,'[\"Ben\"]'),(478087,98378,2,'actress',NULL,'[\"Jill\"]'),(478087,228,3,'actor',NULL,'[\"Micky Rosa\"]'),(478087,1683094,4,'actor',NULL,'[\"Choi\"]'),(478087,525659,5,'director',NULL,NULL),(478087,13204541,6,'writer','screenplay',NULL),(478087,1615610,7,'writer','screenplay',NULL),(478087,583826,8,'writer','book \"Bringing Down the House: The Inside Story of Six M.I.T. Students Who Took Vegas for Millions\"',NULL),(478087,116232,9,'producer','producer',NULL),(478160,344973,1,'director',NULL,NULL),(478160,346761,2,'producer','producer',NULL),(478160,679586,3,'producer','producer',NULL),(478160,916688,4,'producer','producer',NULL),(478160,124000,5,'composer',NULL,NULL),(478304,6035,10,'composer',NULL,NULL),(478304,93,1,'actor',NULL,'[\"Mr. O\'Brien\"]'),(478304,576,2,'actor',NULL,'[\"Jack\"]'),(478304,1567113,3,'actress',NULL,'[\"Mrs. O\'Brien\"]'),(478304,4447472,4,'actor',NULL,'[\"Young Jack\"]'),(478304,517,5,'director',NULL,NULL),(478304,306890,6,'producer','producer',NULL),(478304,338320,7,'producer','producer',NULL),(478304,384294,8,'producer','producer',NULL),(478304,688361,9,'producer','producer',NULL),(478311,4090,10,'cinematographer','director of photography',NULL),(478311,736622,1,'actor',NULL,'[\"Ben Stone\"]'),(478311,1337,2,'actress',NULL,'[\"Alison Scott\"]'),(478311,748620,3,'actor',NULL,'[\"Pete\"]'),(478311,5182,4,'actress',NULL,'[\"Debbie\"]'),(478311,31976,5,'director',NULL,NULL),(478311,732024,6,'producer','producer',NULL),(478311,870106,7,'producer','producer',NULL),(478311,377877,8,'composer',NULL,NULL),(478311,906525,9,'composer',NULL,NULL),(478724,1428166,10,'producer','producer',NULL),(478724,149260,1,'actor',NULL,'[\"Luis Costa\"]'),(478724,1250,2,'actress',NULL,'[\"Emma\"]'),(478724,480942,3,'actress',NULL,'[\"Geneviève Costa\"]'),(478724,948636,4,'actor',NULL,'[\"Francis Bertoff\"]'),(478724,489309,5,'director',NULL,NULL),(478724,2382268,6,'writer',NULL,NULL),(478724,1016687,7,'writer',NULL,NULL),(478724,897065,8,'writer',NULL,NULL),(478724,1552771,9,'writer',NULL,NULL),(478970,1293367,10,'writer','based on the Marvel comics by',NULL),(478970,748620,1,'actor',NULL,'[\"Scott Lang\",\"Ant-Man\"]'),(478970,140,2,'actor',NULL,'[\"Dr. Hank Pym\"]'),(478970,1015684,3,'actor',NULL,'[\"Darren Cross\",\"Yellowjacket\"]'),(478970,1431940,4,'actress',NULL,'[\"Hope Van Dyne\"]'),(478970,715636,5,'director',NULL,NULL),(478970,942367,6,'writer','screenplay by',NULL),(478970,180428,7,'writer','screenplay by',NULL),(478970,570912,8,'writer','screenplay by',NULL),(478970,498278,9,'writer','based on the Marvel comics by',NULL),(478976,21436,10,'cinematographer','director of photography',NULL),(478976,1314592,1,'actress',NULL,'[\"Michelle\"]'),(478976,1693095,2,'actor',NULL,'[\"Aaron\"]'),(478976,2023922,3,'actress',NULL,'[\"Wendy\"]'),(478976,3539944,4,'actress',NULL,'[\"Heather\"]'),(478976,2025001,5,'director',NULL,NULL),(478976,2181314,6,'producer','producer',NULL),(478976,1343270,7,'producer','producer',NULL),(478976,2299103,8,'composer',NULL,NULL),(478976,2308894,9,'composer',NULL,NULL),(478988,1723381,10,'composer',NULL,NULL),(478988,289429,1,'actor',NULL,'[\"The Man\"]'),(478988,92868,2,'actor',NULL,'[\"The Listener\"]'),(478988,524261,3,'actor',NULL,'[\"Professor Angell\"]'),(478988,1338869,4,'actor',NULL,'[\"Henry Wilcox\"]'),(478988,1411980,5,'director',NULL,NULL),(478988,522454,6,'writer','short story',NULL),(478988,2028585,7,'writer','adapted for the screen by',NULL),(478988,2031684,8,'composer',NULL,NULL),(478988,2033716,9,'composer',NULL,NULL),(479143,558917,10,'cinematographer','director of photography',NULL),(479143,230,1,'actor',NULL,'[\"Rocky Balboa\"]'),(479143,1620989,2,'actor',NULL,'[\"Mason \'The Line\' Dixon\"]'),(479143,893257,3,'actor',NULL,'[\"Robert Balboa Jr.\"]'),(479143,949350,4,'actor',NULL,'[\"Paulie\"]'),(479143,153587,5,'producer','producer',NULL),(479143,854772,6,'producer','producer',NULL),(479143,935203,7,'producer','producer',NULL),(479143,935210,8,'producer','producer',NULL),(479143,6015,9,'composer',NULL,NULL),(479500,344738,10,'cinematographer','director of photography',NULL),(479500,731075,1,'actress',NULL,'[\"Nancy Drew\"]'),(479500,4883,2,'actor',NULL,'[\"Carson Drew\"]'),(479500,1302735,3,'actor',NULL,'[\"Ned Nickerson\"]'),(479500,1069180,4,'actor',NULL,'[\"Thug\"]'),(479500,281598,5,'director',NULL,NULL),(479500,667330,6,'writer','screenplay',NULL),(479500,444696,7,'writer','characters',NULL),(479500,5545,8,'producer','producer',NULL),(479500,758518,9,'composer',NULL,NULL),(479647,181032,10,'composer',NULL,NULL),(479647,64455,1,'actor',NULL,'[\"Journaliste\"]'),(479647,1815390,2,'actor',NULL,'[\"Tattoo Killer\"]'),(479647,99203,3,'actor',NULL,'[\"Falardeau le castor\"]'),(479647,102175,4,'actress',NULL,'[\"Iris Ward\"]'),(479647,134811,5,'director',NULL,NULL),(479647,59721,6,'writer',NULL,NULL),(479647,258420,7,'writer',NULL,NULL),(479647,399088,8,'writer','scenario',NULL),(479647,862935,9,'writer','script',NULL),(479884,1270585,10,'producer','producer',NULL),(479884,5458,1,'actor',NULL,'[\"Chev Chelios\"]'),(479884,5442,2,'actress',NULL,'[\"Eve\"]'),(479884,764430,3,'actor',NULL,'[\"Carlito\"]'),(479884,1504678,4,'actor',NULL,'[\"Verona\"]'),(479884,4410,5,'director',NULL,NULL),(479884,962729,6,'director',NULL,NULL),(479884,1968788,7,'producer','producer',NULL),(479884,524342,8,'producer','producer',NULL),(479884,742347,9,'producer','producer',NULL),(479917,649485,10,'producer','producer',NULL),(479917,4963,1,'actress',NULL,'[\"Sara\"]'),(479917,1632,2,'actress',NULL,'[\"Yvonne\"]'),(479917,544691,3,'actress',NULL,'[\"Annie\"]'),(479917,701561,4,'actor',NULL,'[\"Richard\"]'),(479917,56492,5,'director',NULL,NULL),(479917,690830,6,'writer','teleplay',NULL),(479917,2155717,7,'writer','book \"Silence Broken\"',NULL),(479917,510768,8,'writer','book \"Silence Broken\"',NULL),(479917,185271,9,'producer','producer',NULL),(479952,814969,10,'producer','producer',NULL),(479952,1774,1,'actor',NULL,'[\"Alex\"]'),(479952,1674,2,'actor',NULL,'[\"Marty\",\"Additional Zebras\"]'),(479952,1710,3,'actor',NULL,'[\"Melman\"]'),(479952,586,4,'actress',NULL,'[\"Gloria\"]'),(479952,201509,5,'director',NULL,NULL),(479952,569891,6,'director',NULL,NULL),(479952,1000113,7,'writer','written by',NULL),(479952,123666,8,'writer','based on the characters created by',NULL),(479952,1129905,9,'writer','based on the characters created by',NULL),(480025,498758,10,'production_designer',NULL,NULL),(480025,2129938,1,'actor',NULL,'[\"Shaun\"]'),(480025,334318,2,'actor',NULL,'[\"Combo\"]'),(480025,366846,3,'actress',NULL,'[\"Cynth\"]'),(480025,793532,4,'actor',NULL,'[\"Milky\"]'),(480025,276349,5,'director',NULL,NULL),(480025,378591,6,'producer','producer',NULL),(480025,251801,7,'composer',NULL,NULL),(480025,169299,8,'cinematographer','director of photography',NULL),(480025,943527,9,'editor',NULL,NULL),(480239,6012,10,'composer',NULL,NULL),(480239,2279940,1,'actress',NULL,'[\"Dagny Taggart\"]'),(480239,101198,2,'actor',NULL,'[\"Henry \'Hank\' Rearden\"]'),(480239,550452,3,'actor',NULL,'[\"James Taggart\"]'),(480239,1346230,4,'actor',NULL,'[\"Eddie Willers\"]'),(480239,424035,5,'director',NULL,NULL),(480239,642837,6,'writer','screenplay by',NULL),(480239,2244438,7,'writer','screenplay by',NULL),(480239,709446,8,'writer','novel',NULL),(480239,440673,9,'producer','producer',NULL),(480242,3394,10,'cinematographer','director of photography',NULL),(480242,136797,1,'actor',NULL,'[\"Dan\"]'),(480242,300,2,'actress',NULL,'[\"Marie\"]'),(480242,176981,3,'actor',NULL,'[\"Mitch\"]'),(480242,683467,4,'actress',NULL,'[\"Jane\"]'),(480242,373282,5,'director',NULL,NULL),(480242,307070,6,'writer','written by',NULL),(480242,258431,7,'producer','producer',NULL),(480242,792871,8,'producer','producer',NULL),(480242,2079784,9,'composer',NULL,NULL),(480249,181020,10,'writer',NULL,NULL),(480249,226,1,'actor',NULL,'[\"Robert Neville\"]'),(480249,103797,2,'actress',NULL,'[\"Anna\"]'),(480249,2253071,3,'actor',NULL,'[\"Ethan\"]'),(480249,724757,4,'actress',NULL,'[\"Zoe Neville\"]'),(480249,1349376,5,'director',NULL,NULL),(480249,698873,6,'writer','screenplay',NULL),(480249,326040,7,'writer','screenplay',NULL),(480249,558577,8,'writer','novel \"I Am Legend\"',NULL),(480249,181019,9,'writer',NULL,NULL),(480255,1860728,10,'producer','producer',NULL),(480255,252961,1,'actor',NULL,'[\"Roque\"]'),(480255,757855,2,'actress',NULL,'[\"Aisha\"]'),(480255,604742,3,'actor',NULL,'[\"Clay\"]'),(480255,262635,4,'actor',NULL,'[\"Jensen\"]'),(480255,1234893,5,'director',NULL,NULL),(480255,916,6,'writer','screenplay',NULL),(480255,888743,7,'writer','screenplay',NULL),(480255,2038618,8,'writer','comic book series',NULL),(480255,3853840,9,'writer','comic book series',NULL),(480345,243969,10,'producer','producer',NULL),(480345,792198,1,'actress',NULL,'[\"Princess Annika\",\"Troll\",\"Wife #3\"]'),(480345,56532,2,'actress',NULL,'[\"Shiver\",\"Queen\",\"Rayla The Cloud Queen\"]'),(480345,511429,3,'actress',NULL,'[\"Brietta\",\"Troll\",\"Wife #2\"]'),(480345,613748,4,'actor',NULL,'[\"Wenlock\"]'),(480345,1256147,5,'director',NULL,NULL),(480345,1043325,6,'writer','based upon: Barbie characters created by',NULL),(480345,504327,7,'writer',NULL,NULL),(480345,748429,8,'writer',NULL,NULL),(480345,1747075,9,'producer','producer',NULL),(480669,2418479,10,'editor',NULL,NULL),(480669,253216,1,'actor',NULL,'[\"Héctor\"]'),(480669,1508630,2,'actress',NULL,'[\"Clara\"]'),(480669,324409,3,'actress',NULL,'[\"La Chica en el Bosque\"]'),(480669,1443023,4,'actor',NULL,'[\"El Joven\"]'),(480669,138721,5,'producer','executive producer',NULL),(480669,406451,6,'producer','executive producer',NULL),(480669,406452,7,'producer','executive producer',NULL),(480669,1079001,8,'composer',NULL,NULL),(480669,554871,9,'cinematographer','director of photography',NULL),(480687,858554,10,'producer','producer',NULL),(480687,5562,1,'actor',NULL,'[\"Rick\"]'),(480687,837177,2,'actor',NULL,'[\"Fred\"]'),(480687,775,3,'actress',NULL,'[\"Grace\"]'),(480687,278979,4,'actress',NULL,'[\"Maggie\"]'),(480687,125803,5,'director',NULL,NULL),(480687,268380,6,'director',NULL,NULL),(480687,971919,7,'writer','screenplay',NULL),(480687,55937,8,'writer','screenplay',NULL),(480687,153444,9,'producer','producer',NULL),(481141,1275,10,'composer',NULL,NULL),(481141,1876,1,'actress',NULL,'[\"Kate\"]'),(481141,1173,2,'actor',NULL,'[\"Nick\"]'),(481141,1113550,3,'actress',NULL,'[\"Zoe\"]'),(481141,165101,4,'actress',NULL,'[\"Paula\"]'),(481141,382956,5,'director',NULL,NULL),(481141,297182,6,'writer','screenplay',NULL),(481141,626686,7,'writer','screenplay \"Mostly Martha\"',NULL),(481141,13396,8,'producer','producer',NULL),(481141,382362,9,'producer','producer',NULL),(481369,508732,10,'cinematographer','director of photography',NULL),(481369,120,1,'actor',NULL,'[\"Walter Sparrow\",\"Fingerling\"]'),(481369,515,2,'actress',NULL,'[\"Agatha Sparrow\",\"Fabrizia\"]'),(481369,503567,3,'actor',NULL,'[\"Robin Sparrow\"]'),(481369,396812,4,'actor',NULL,'[\"Isaac French\",\"Dr. Miles Phoenix\"]'),(481369,1708,5,'director',NULL,NULL),(481369,2043734,6,'writer','written by',NULL),(481369,4927,7,'producer','producer',NULL),(481369,1246087,8,'producer','producer',NULL),(481369,4581,9,'composer',NULL,NULL),(481499,6293,10,'composer',NULL,NULL),(481499,115,1,'actor',NULL,'[\"Grug\"]'),(481499,5351,2,'actor',NULL,'[\"Guy\"]'),(481499,1297015,3,'actress',NULL,'[\"Eep\"]'),(481499,1416,4,'actress',NULL,'[\"Ugga\"]'),(481499,210320,5,'director',NULL,NULL),(481499,761498,6,'director',NULL,NULL),(481499,92,7,'writer','story by',NULL),(481499,69549,8,'producer','producer',NULL),(481499,367286,9,'producer','producer',NULL),(482374,108832,10,'composer',NULL,NULL),(482374,1140345,1,'actor',NULL,'[\"Alex\"]'),(482374,1310709,2,'actor',NULL,'[\"Taylor\"]'),(482374,2088803,3,'actress',NULL,'[\"Sondra\"]'),(482374,1443841,4,'actress',NULL,'[\"Lena\"]'),(482374,2053677,5,'director',NULL,NULL),(482374,1220140,6,'writer','written by',NULL),(482374,881490,7,'writer','written by',NULL),(482374,1021135,8,'producer','producer',NULL),(482374,661912,9,'producer','producer',NULL),(482459,2937056,10,'producer','producer',NULL),(482459,2064011,1,'actor',NULL,'[\"Natsu Takasugi\"]'),(482459,2463438,2,'actress',NULL,'[\"Asako Suzuki\"]'),(482459,2246282,3,'actor',NULL,'[\"Yukiya\"]'),(482459,411683,4,'actress',NULL,'[\"Nobuko Yukari\"]'),(482459,462064,5,'director',NULL,NULL),(482459,2077046,6,'writer','original story',NULL),(482459,412517,7,'writer','screenplay',NULL),(482459,3675414,8,'producer','producer',NULL),(482459,1084385,9,'producer','producer',NULL),(482546,797190,10,'producer','producer',NULL),(482546,250,1,'actress',NULL,'[\"Beatrix Potter\"]'),(482546,191,2,'actor',NULL,'[\"Norman Warne\"]'),(482546,1833,3,'actress',NULL,'[\"Millie Warne\"]'),(482546,283409,4,'actress',NULL,'[\"Helen Potter\"]'),(482546,3088,5,'director',NULL,NULL),(482546,540759,6,'writer','written by',NULL),(482546,456946,7,'producer','producer',NULL),(482546,5219,8,'producer','producer',NULL),(482546,1103781,9,'producer','producer',NULL),(482571,432382,10,'composer',NULL,NULL),(482571,288,1,'actor',NULL,'[\"Alfred Borden\"]'),(482571,413168,2,'actor',NULL,'[\"Robert Angier\"]'),(482571,424060,3,'actress',NULL,'[\"Olivia Wenscombe\"]'),(482571,323,4,'actor',NULL,'[\"Cutter\"]'),(482571,634240,5,'director',NULL,NULL),(482571,634300,6,'writer','screenplay',NULL),(482571,1793993,7,'writer','novel',NULL),(482571,753083,8,'producer','producer',NULL),(482571,858799,9,'producer','producer',NULL),(482606,816292,10,'cinematographer','director of photography',NULL),(482606,5454,1,'actor',NULL,'[\"James Hoyt\"]'),(482606,239,2,'actress',NULL,'[\"Kristen McKay\"]'),(482606,1801841,3,'actress',NULL,'[\"Dollface\"]'),(482606,2899650,4,'actor',NULL,'[\"Mormon Boy #1\"]'),(482606,1052162,5,'director',NULL,NULL),(482606,205713,6,'producer','producer',NULL),(482606,1144042,7,'producer','producer',NULL),(482606,498175,8,'producer','producer',NULL),(482606,354453,9,'composer',NULL,NULL),(483022,2261711,10,'producer','producer',NULL),(483022,462050,1,'actress',NULL,'[\"Sachie\"]'),(483022,441098,2,'actress',NULL,'[\"Midori\"]'),(483022,609306,3,'actress',NULL,'[\"Masako\"]'),(483022,1375978,4,'actor',NULL,'[\"Tommi Hiltunen\"]'),(483022,644688,5,'director',NULL,NULL),(483022,2262601,6,'writer','novel',NULL),(483022,23917,7,'producer','producer',NULL),(483022,2057601,8,'producer','producer',NULL),(483022,1803302,9,'producer','producer',NULL),(483607,534343,10,'editor',NULL,NULL),(483607,593961,1,'actress',NULL,'[\"Eden Sinclair\"]'),(483607,1364,2,'actor',NULL,'[\"Bill Nelson\"]'),(483607,796502,3,'actor',NULL,'[\"John Hatcher\"]'),(483607,2944939,4,'actress',NULL,'[\"Vagrant Girl\"]'),(483607,551076,5,'director',NULL,NULL),(483607,2091329,6,'producer','producer',NULL),(483607,666999,7,'producer','producer',NULL),(483607,61045,8,'composer',NULL,NULL),(483607,567302,9,'cinematographer','director of photography',NULL),(483726,197350,10,'editor',NULL,NULL),(483726,245,1,'actor',NULL,'[\"Tom Dobbs\"]'),(483726,1473,2,'actress',NULL,'[\"Eleanor Green\"]'),(483726,85400,3,'actor',NULL,'[\"Eddie Langston\"]'),(483726,686,4,'actor',NULL,'[\"Jack Menken\"]'),(483726,1469,5,'director',NULL,NULL),(483726,1084360,6,'producer','producer',NULL),(483726,732708,7,'producer','producer',NULL),(483726,6251,8,'composer',NULL,NULL),(483726,5836,9,'cinematographer','director of photography',NULL),(485601,3322957,1,'actor',NULL,'[\"Brendan\"]'),(485601,322407,2,'actor',NULL,'[\"Abbot Cellach\"]'),(485601,482473,3,'actor',NULL,'[\"Aidan\"]'),(485601,3322982,4,'actress',NULL,'[\"Aisling\"]'),(485601,1119079,5,'director',NULL,NULL),(485601,1316072,6,'director','co-director',NULL),(485601,957105,7,'writer','screenplay',NULL),(485601,6020,8,'composer',NULL,NULL),(485601,23341,9,'editor',NULL,NULL),(485851,953616,10,'composer',NULL,NULL),(485851,409,1,'actor',NULL,'[\"Pleasure\"]'),(485851,1264,2,'actress',NULL,'[\"Sorrow\"]'),(485851,412,3,'actor',NULL,'[\"Fingers\"]'),(485851,102,4,'actor',NULL,'[\"Love\"]'),(485851,497528,5,'director',NULL,NULL),(485851,220521,6,'writer','written by',NULL),(485851,1950898,7,'producer','producer',NULL),(485851,968789,8,'producer','producer',NULL),(485851,771490,9,'producer','producer',NULL),(485947,893999,10,'editor',NULL,NULL),(485947,1467,1,'actor',NULL,'[\"Nemo Adult\",\"Old Nemo\"]'),(485947,1631,2,'actress',NULL,'[\"Adult Elise\"]'),(485947,1208167,3,'actress',NULL,'[\"Anna Adult\"]'),(485947,199006,4,'actress',NULL,'[\"Adult Jean\"]'),(485947,233757,5,'director',NULL,NULL),(485947,323886,6,'producer','producer',NULL),(485947,233758,7,'composer',NULL,NULL),(485947,64290,8,'cinematographer','director of photography',NULL),(485947,794156,9,'editor',NULL,NULL),(485985,564768,10,'producer','producer',NULL),(485985,421,1,'actor',NULL,'[\"Major Emanuelle Stance\"]'),(485985,574468,2,'actor',NULL,'[\"Lieutenant General Luntz\"]'),(485985,654648,3,'actor',NULL,'[\"Joe \'Lightning\' Little\"]'),(485985,747420,4,'actor',NULL,'[\"Antwan \'Coffee\' Coleman\"]'),(485985,376006,5,'director',NULL,NULL),(485985,725983,6,'writer','story',NULL),(485985,1412298,7,'writer','screenplay',NULL),(485985,4858733,8,'writer','book \"Red Tails, Black Wings: The Men of America\'s Black Air Force\"',NULL),(485985,424759,9,'producer','producer',NULL),(486321,887263,10,'producer','producer',NULL),(486321,1481133,1,'actor',NULL,'[\"Nat\"]'),(486321,92774,2,'actor',NULL,'[\"I.Q.\"]'),(486321,2191612,3,'actor',NULL,'[\"Scooter\"]'),(486321,502,4,'actor',NULL,'[\"Amos\"]'),(486321,823721,5,'director',NULL,NULL),(486321,562775,6,'director','voice director',NULL),(486321,661549,7,'writer','writer',NULL),(486321,303034,8,'producer','producer',NULL),(486321,165507,9,'producer','producer',NULL),(486551,370448,10,'editor',NULL,NULL),(486551,151540,1,'actor',NULL,'[\"Barry\",\"Blind Sikh\"]'),(486551,373571,2,'actor',NULL,'[\"Landfill\",\"Gil\",\"Sausage Lady\"]'),(486551,501399,3,'actor',NULL,'[\"Fink\",\"Emcee\"]'),(486551,815418,4,'actor',NULL,'[\"Jan Wolfhouse\"]'),(486551,831479,5,'writer','written by',NULL),(486551,314088,6,'producer','producer',NULL),(486551,673270,7,'producer','producer',NULL),(486551,56550,8,'composer',NULL,NULL),(486551,1054979,9,'cinematographer','director of photography',NULL),(486576,456158,10,'writer','characters',NULL),(486576,344435,1,'actor',NULL,'[\"Mr. Fantastic\",\"Reed Richards\"]'),(486576,4695,2,'actress',NULL,'[\"Invisible Woman\",\"Susan Storm\"]'),(486576,262635,3,'actor',NULL,'[\"Human Torch\",\"Johnny Storm\"]'),(486576,4821,4,'actor',NULL,'[\"The Thing\",\"Ben Grimm\"]'),(486576,1103162,5,'director',NULL,NULL),(486576,668309,6,'writer','screenplay',NULL),(486576,4111,7,'writer','screenplay',NULL),(486576,877273,8,'writer','story',NULL),(486576,498278,9,'writer','characters',NULL),(486583,1899,10,'cinematographer','director of photography',NULL),(486583,681,1,'actor',NULL,'[\"Fred Claus\"]'),(486583,316079,2,'actor',NULL,'[\"Nick \'Santa\' Claus\"]'),(486583,6969,3,'actress',NULL,'[\"Charlene\"]'),(486583,383422,4,'actor',NULL,'[\"Willie\"]'),(486583,229694,5,'director',NULL,NULL),(486583,1557594,6,'writer','screenplay',NULL),(486583,625458,7,'writer','story',NULL),(486583,5428,8,'producer','producer',NULL),(486583,65100,9,'composer',NULL,NULL),(486651,757572,10,'cinematographer',NULL,NULL),(486651,5529,1,'actress',NULL,'[\"Deborah Martin\"]'),(486651,158306,2,'actor',NULL,'[\"Jim Martin\"]'),(486651,2075282,3,'actor',NULL,'[\"Ian Martin\"]'),(486651,648913,4,'actress',NULL,'[\"Grace\"]'),(486651,2078430,5,'director',NULL,NULL),(486651,1462112,6,'writer',NULL,NULL),(486651,1360538,7,'producer','producer',NULL),(486651,1507024,8,'composer',NULL,NULL),(486651,2399763,9,'composer',NULL,NULL),(486655,1011065,10,'composer',NULL,NULL),(486655,1214435,1,'actor',NULL,'[\"Tristan Thorn\"]'),(486655,132,2,'actress',NULL,'[\"Yvaine\"]'),(486655,1092227,3,'actress',NULL,'[\"Victoria\"]'),(486655,5212,4,'actor',NULL,'[\"Narrator\"]'),(486655,891216,5,'director',NULL,NULL),(486655,963359,6,'writer','screenplay',NULL),(486655,301274,7,'writer','novel',NULL),(486655,225146,8,'producer','producer',NULL),(486655,237819,9,'producer','producer',NULL),(486731,1550195,10,'editor',NULL,NULL),(486731,15961,1,'actor',NULL,'[\"Baba\"]'),(486731,93088,2,'actor',NULL,'[\"Monseigneur\"]'),(486731,286245,3,'actress',NULL,'[\"Mimi\"]'),(486731,302916,4,'actor',NULL,'[\"Lazare\"]'),(486731,253727,5,'director',NULL,NULL),(486731,1335784,6,'writer',NULL,NULL),(486731,1165365,7,'producer','producer',NULL),(486731,1335650,8,'producer','producer',NULL),(486731,1335619,9,'composer',NULL,NULL),(486822,3342,10,'producer','producer',NULL),(486822,479471,1,'actor',NULL,'[\"Kale\"]'),(486822,1556,2,'actor',NULL,'[\"Mr. Turner\"]'),(486822,5251,3,'actress',NULL,'[\"Julie\"]'),(486822,2105255,4,'actress',NULL,'[\"Ashley\"]'),(486822,142286,5,'director',NULL,NULL),(486822,484907,6,'writer','screenplay',NULL),(486822,255296,7,'writer','screenplay',NULL),(486822,1532344,8,'producer','producer',NULL),(486822,575817,9,'producer','producer',NULL),(486946,144841,10,'composer',NULL,NULL),(486946,741,1,'actor',NULL,'[\"Doug Madsen\"]'),(486946,1454,2,'actor',NULL,'[\"Bobby Davis\"]'),(486946,237,3,'actor',NULL,'[\"Woody Stevens\"]'),(486946,513,4,'actor',NULL,'[\"Dudley Frank\"]'),(486946,65608,5,'director',NULL,NULL),(486946,178589,6,'writer','written by',NULL),(486946,509414,7,'producer','producer',NULL),(486946,5367,8,'producer','producer',NULL),(486946,866132,9,'producer','producer',NULL),(486978,97918,1,'director',NULL,NULL),(486978,169871,2,'director',NULL,NULL),(487195,453808,10,'cinematographer','director of photography',NULL),(487195,1448,1,'actress',NULL,'[\"Arvilla Holden\"]'),(487195,870,2,'actress',NULL,'[\"Margene Cunningham\"]'),(487195,260,3,'actress',NULL,'[\"Carol Brimm\"]'),(487195,174322,4,'actor',NULL,'[\"Taxi Driver\"]'),(487195,1067759,5,'director',NULL,NULL),(487195,2080217,6,'writer','screenplay',NULL),(487195,995783,7,'producer','producer',NULL),(487195,1254338,8,'producer','producer',NULL),(487195,1132022,9,'composer',NULL,NULL),(487503,350726,10,'editor',NULL,NULL),(487503,296594,1,'actress',NULL,'[\"Ariane\"]'),(487503,1918862,2,'actress',NULL,'[\"Mélanie\"]'),(487503,339621,3,'actor',NULL,'[\"M. Fouchécourt\"]'),(487503,597042,4,'actress',NULL,'[\"Virginie\"]'),(487503,220274,5,'director',NULL,NULL),(487503,2285006,6,'writer','collaboration',NULL),(487503,756709,7,'producer','producer',NULL),(487503,501531,8,'composer',NULL,NULL),(487503,678980,9,'cinematographer','director of photography',NULL),(487928,2752925,10,'composer',NULL,NULL),(487928,933727,1,'actor',NULL,'[\"Saint-Georges\"]'),(487928,199006,2,'actress',NULL,'[\"Elisa\"]'),(487928,684500,3,'actor',NULL,'[\"César\"]'),(487928,537370,4,'actress',NULL,'[\"Perséphone\"]'),(487928,1988,5,'director',NULL,NULL),(487928,2043057,6,'writer','screenplay',NULL),(487928,2381407,7,'writer','additional dialogue',NULL),(487928,334926,8,'producer','producer',NULL),(487928,2425176,9,'composer',NULL,NULL),(488023,892957,10,'cinematographer',NULL,NULL),(488023,1367450,1,'actress',NULL,'[\"Jeannie\"]'),(488023,268286,2,'actor',NULL,'[\"Father of the Bride\"]'),(488023,1817,3,'actor',NULL,'[\"Dexter\"]'),(488023,772116,4,'actor',NULL,'[\"Jonathan\"]'),(488023,295105,5,'director',NULL,NULL),(488023,325288,6,'writer',NULL,NULL),(488023,324574,7,'producer','producer',NULL),(488023,445496,8,'producer','producer',NULL),(488023,440017,9,'composer',NULL,NULL),(488120,2217,10,'composer',NULL,NULL),(488120,164,1,'actor',NULL,'[\"Ted Crawford\"]'),(488120,331516,2,'actor',NULL,'[\"Willy Beachum\"]'),(488120,657,3,'actor',NULL,'[\"DA Joe Lobruto\"]'),(488120,683253,4,'actress',NULL,'[\"Nikki Gardner\"]'),(488120,387706,5,'director',NULL,NULL),(488120,2417,6,'writer','screenplay',NULL),(488120,1020896,7,'writer','screenplay',NULL),(488120,918482,8,'producer','producer',NULL),(488120,4582,9,'composer',NULL,NULL),(489007,922857,10,'cinematographer','director of photography',NULL),(489007,1425528,1,'actress',NULL,'[\"Taylor Callum\"]'),(489007,1404488,2,'actress',NULL,'[\"Courtney Callum\"]'),(489007,171059,3,'actor',NULL,'[\"Reed Callum\"]'),(489007,565319,4,'actress',NULL,'[\"Fran Walker\"]'),(489007,568230,5,'director',NULL,NULL),(489007,471217,6,'writer','teleplay by',NULL),(489007,213127,7,'writer','teleplay by',NULL),(489007,480804,8,'producer','producer',NULL),(489007,121430,9,'composer',NULL,NULL),(489010,41991,10,'editor',NULL,NULL),(489010,172,1,'actor',NULL,'[\"Roger Culkin\"]'),(489010,322,2,'actress',NULL,'[\"Alice Parker\"]'),(489010,5342,3,'actor',NULL,'[\"Vincent Harris\"]'),(489010,341055,4,'actor',NULL,'[\"Bill\"]'),(489010,694946,5,'director',NULL,NULL),(489010,70152,6,'writer','scenario',NULL),(489010,702466,7,'producer','producer',NULL),(489010,702467,8,'producer','producer',NULL),(489010,2187,9,'cinematographer',NULL,NULL),(489018,256542,10,'producer','producer',NULL),(489018,2546,1,'actress',NULL,'[\"Sarah Bowman\"]'),(489018,134244,2,'actor',NULL,'[\"Salazar\"]'),(489018,919616,3,'actor',NULL,'[\"Trevor Bowman\"]'),(489018,1715118,4,'actress',NULL,'[\"Nina\"]'),(489018,591171,5,'director',NULL,NULL),(489018,714695,6,'writer','screenplay',NULL),(489018,1681,7,'writer','motion picture \"Day of the Dead\"',NULL),(489018,203246,8,'producer','producer',NULL),(489018,240054,9,'producer','producer',NULL),(489049,116232,10,'producer','producer',NULL),(489049,283945,1,'actor',NULL,'[\"Hutch\"]'),(489049,59431,2,'actor',NULL,'[\"Windows\"]'),(489049,68338,3,'actress',NULL,'[\"Zoe\"]'),(489049,403134,4,'actor',NULL,'[\"Eric\"]'),(489049,1381100,5,'director',NULL,NULL),(489049,2094392,6,'writer','screenplay',NULL),(489049,1104057,7,'writer','screenplay',NULL),(489049,2144288,8,'writer','story',NULL),(489049,40148,9,'producer','producer',NULL),(489099,287946,10,'producer','producer',NULL),(489099,159789,1,'actor',NULL,'[\"David Rice\"]'),(489099,168,2,'actor',NULL,'[\"Roland\"]'),(489099,68260,3,'actor',NULL,'[\"Griffin\"]'),(489099,1377375,4,'actress',NULL,'[\"Millie\"]'),(489099,510731,5,'director',NULL,NULL),(489099,275286,6,'writer','screenplay',NULL),(489099,880243,7,'writer','screenplay',NULL),(489099,1334526,8,'writer','screenplay',NULL),(489099,2092479,9,'writer','novel',NULL),(489134,555470,10,'producer','producer',NULL),(489134,840720,1,'actor',NULL,'[\"Zack\"]'),(489134,605451,2,'actor',NULL,'[\"Sephiroth\"]'),(489134,757327,3,'actor',NULL,'[\"Cloud Strife\"]'),(489134,411683,4,'actress',NULL,'[\"Tifa Lockhart\"]'),(489134,38319,5,'director',NULL,NULL),(489134,634602,6,'director',NULL,NULL),(489134,1081992,7,'writer','story',NULL),(489134,2099846,8,'writer',NULL,NULL),(489134,1015241,9,'producer','producer',NULL),(489237,937714,10,'producer','producer',NULL),(489237,424060,1,'actress',NULL,'[\"Annie Braddock\"]'),(489237,1473,2,'actress',NULL,'[\"Mrs. X\"]'),(489237,316079,3,'actor',NULL,'[\"Mr. X\"]'),(489237,614220,4,'actress',NULL,'[\"Judy Braddock\"]'),(489237,75849,5,'director',NULL,NULL),(489237,700301,6,'director',NULL,NULL),(489237,2096064,7,'writer','novel',NULL),(489237,2096624,8,'writer','novel',NULL),(489237,321621,9,'producer','producer',NULL),(489244,3046,10,'cinematographer',NULL,NULL),(489244,113158,1,'actress',NULL,'[\"Barb\"]'),(489244,1947581,2,'actor',NULL,'[\"Ben\"]'),(489244,354085,3,'actor',NULL,'[\"Gerald Tovar, Jr.\"]'),(489244,871393,4,'actor',NULL,'[\"Henry Cooper\"]'),(489244,110420,5,'director',NULL,NULL),(489244,2100833,6,'writer','screenplay',NULL),(489244,1681,7,'writer',NULL,NULL),(489244,751652,8,'writer',NULL,NULL),(489244,1202084,9,'composer',NULL,NULL),(489270,467977,10,'producer','producer',NULL),(489270,68551,1,'actor',NULL,'[\"Jigsaw\",\"John\"]'),(489270,809938,2,'actress',NULL,'[\"Amanda\"]'),(489270,5171,3,'actor',NULL,'[\"Jeff\"]'),(489270,1587232,4,'actress',NULL,'[\"Lynn\"]'),(489270,1135423,5,'director',NULL,NULL),(489270,1191481,6,'writer','story by',NULL),(489270,1490123,7,'writer','story by',NULL),(489270,121117,8,'producer','producer',NULL),(489270,388898,9,'producer','producer',NULL),(489282,86690,10,'production_designer',NULL,NULL),(489282,1872,1,'actor',NULL,'[\"Peter\"]'),(489282,184445,2,'actor',NULL,'[\"Fred\"]'),(489282,519043,3,'actor',NULL,'[\"Junior\"]'),(489282,1706767,4,'actor',NULL,'[\"Cooker\"]'),(489282,937748,5,'director',NULL,NULL),(489282,310087,6,'writer','written by',NULL),(489282,905186,7,'composer',NULL,NULL),(489282,377454,8,'cinematographer','director of photography',NULL),(489282,182363,9,'editor',NULL,NULL),(489682,771149,10,'editor',NULL,NULL),(489682,1089,1,'actor',NULL,'[\"Neale Donald Walsch\"]'),(489682,1676626,2,'actress',NULL,'[\"Daisy\"]'),(489682,6978705,3,'actor',NULL,'[\"Man in Audience\"]'),(489682,6978706,4,'actor',NULL,'[\"Angry Man\"]'),(489682,222104,5,'director',NULL,NULL),(489682,216059,6,'writer','written by',NULL),(489682,1443058,7,'writer','books',NULL),(489682,441985,8,'composer',NULL,NULL),(489682,272857,9,'cinematographer',NULL,NULL),(490084,457598,10,'composer',NULL,NULL),(490084,473,1,'actress',NULL,'[\"Daphne Wilder\"]'),(490084,601553,2,'actress',NULL,'[\"Milly Wilder\"]'),(490084,532683,3,'actor',NULL,'[\"Johnny\"]'),(490084,779866,4,'actor',NULL,'[\"Jason\"]'),(490084,499724,5,'director',NULL,NULL),(490084,394212,6,'writer','written by',NULL),(490084,625458,7,'writer','written by',NULL),(490084,112189,8,'producer','producer',NULL),(490084,1996789,9,'producer','producer',NULL),(490166,2131733,10,'cinematographer','director of photography',NULL),(490166,1041607,1,'actress',NULL,'[\"Kelly\"]'),(490166,2102872,2,'actress',NULL,'[\"Joanne\"]'),(490166,364890,3,'actor',NULL,'[\"Derek\"]'),(490166,175985,4,'actor',NULL,'[\"Chum\"]'),(490166,1440314,5,'director',NULL,NULL),(490166,1685836,6,'producer','producer',NULL),(490166,1969339,7,'producer','producer',NULL),(490166,1423552,8,'producer','line producer',NULL),(490166,744231,9,'composer',NULL,NULL),(490181,695247,10,'producer','producer',NULL),(490181,5048,1,'actor',NULL,'[\"Maj. \'Mitch\' Hunter\"]'),(490181,579,2,'actor',NULL,'[\"Brother Samuel\"]'),(490181,1226817,3,'actress',NULL,'[\"Cpl. Valerie Duval\"]'),(490181,675730,4,'actor',NULL,'[\"Capt. Nathan Rooker\"]'),(490181,403038,5,'director',NULL,NULL),(490181,252155,6,'writer','written by',NULL),(490181,1366451,7,'producer','producer',NULL),(490181,219613,8,'producer','producer',NULL),(490181,479070,9,'producer','producer',NULL),(490215,256542,10,'producer','producer',NULL),(490215,1940449,1,'actor',NULL,'[\"Rodrigues\"]'),(490215,3485845,2,'actor',NULL,'[\"Garupe\"]'),(490215,553,3,'actor',NULL,'[\"Ferreira\"]'),(490215,38355,4,'actor',NULL,'[\"Interpreter\"]'),(490215,217,5,'director',NULL,NULL),(490215,168379,6,'writer','screenplay by',NULL),(490215,256870,7,'writer','based on the novel by',NULL),(490215,147603,8,'producer','producer',NULL),(490215,208381,9,'producer','producer',NULL),(490822,5755,10,'cinematographer',NULL,NULL),(490822,659363,1,'actress',NULL,'[\"Britney\"]'),(490822,1416330,2,'actor',NULL,'[\"Brad Warner\"]'),(490822,1392352,3,'self',NULL,'[\"Self\"]'),(490822,1963068,4,'actress',NULL,'[\"Winnie\"]'),(490822,711114,5,'director',NULL,NULL),(490822,1010379,6,'writer','written by',NULL),(490822,736462,7,'producer','producer',NULL),(490822,1887724,8,'composer',NULL,NULL),(490822,1650558,9,'composer',NULL,NULL),(491044,155624,10,'cinematographer','director of photography',NULL),(491044,945189,1,'actor',NULL,'[\"Kei\"]'),(491044,510914,2,'actress',NULL,'[\"Chung Chun Lei\"]'),(491044,482628,3,'actor',NULL,'[\"Bo\"]'),(491044,1319395,4,'actor',NULL,'[\"Mr. Fu Kim-tong\"]'),(491044,864775,5,'director',NULL,NULL),(491044,150977,6,'writer','written by',NULL),(491044,1385080,7,'writer','written by',NULL),(491044,2919157,8,'composer',NULL,NULL),(491044,416203,9,'composer',NULL,NULL),(491203,384,10,'composer',NULL,NULL),(491203,2539953,1,'actress',NULL,'[\"Sophia Sandvoort\"]'),(491203,2851530,2,'actor',NULL,'[\"Jan van Loos\"]'),(491203,1925239,3,'actor',NULL,'[\"Willem Brok\"]'),(491203,334441,4,'actress',NULL,'[\"Maria\"]'),(491203,149491,5,'director',NULL,NULL),(491203,595738,6,'writer','screenplay by',NULL),(491203,1779,7,'writer','screenplay by',NULL),(491203,654077,8,'producer','producer',NULL),(491203,5544,9,'producer','producer',NULL),(491603,1442745,10,'actor',NULL,'[\"Wilfred\"]'),(491603,2100998,1,'actress',NULL,'[\"Rikki Chadwick\"]'),(491603,2100081,2,'actress',NULL,'[\"Cleo Sertori\"]'),(491603,1146783,3,'actor',NULL,'[\"Lewis McCartney\"]'),(491603,2097685,4,'actor',NULL,'[\"Zane\"]'),(491603,793291,5,'writer','creator',NULL),(491603,2322853,6,'actress',NULL,'[\"Emma Gilbert\"]'),(491603,496771,7,'actor',NULL,'[\"Don Sertori\",\"Don\"]'),(491603,2314614,8,'actress',NULL,'[\"Kim Sertori\"]'),(491603,2317782,9,'actor',NULL,'[\"Nate\"]'),(491738,298281,10,'actor',NULL,'[\"Coroner Woody Strode\",\"Chief Olsen Watt\",\"Self\"]'),(491738,734442,1,'actor',NULL,'[\"Shawn Spencer\",\"Rodney Caruso\",\"Self\"]'),(491738,384211,2,'actor',NULL,'[\"Burton Guster\",\"Miles Velour\",\"Self\"]'),(491738,648486,3,'actor',NULL,'[\"Carlton Lassiter\",\"Archie Baxter\",\"Self\"]'),(491738,929,4,'actor',NULL,'[\"Henry Spencer\",\"Coroner Dick Miller\",\"Self\"]'),(491738,291692,5,'writer','created by',NULL),(491738,493279,6,'actress',NULL,'[\"Juliet O\'Hara\",\"Scarlett Jones\",\"Self\"]'),(491738,625529,7,'actress',NULL,'[\"Karen Vick\",\"Self\"]'),(491738,416699,8,'actor',NULL,'[\"Young Shawn\"]'),(491738,1242613,9,'actor',NULL,'[\"Buzz McNab\",\"McNab\",\"Officer McNab\"]'),(491747,1365883,10,'composer',NULL,NULL),(491747,1046,1,'actress',NULL,'[\"Fiona Anderson\"]'),(491747,614526,2,'actor',NULL,'[\"Aubrey\"]'),(491747,684521,3,'actor',NULL,'[\"Grant Anderson\"]'),(491747,2657069,4,'actress',NULL,'[\"Young Fiona\"]'),(491747,1631,5,'director',NULL,NULL),(491747,613084,6,'writer','short story \"The Bear Came Over the Mountain\"',NULL),(491747,410065,7,'producer','producer',NULL),(491747,881823,8,'producer','producer',NULL),(491747,919035,9,'producer','producer',NULL),(492481,748277,10,'cinematographer',NULL,NULL),(492481,1757373,1,'actor',NULL,'[\"Catering Boss\"]'),(492481,629855,2,'actress',NULL,'[\"Samantha\"]'),(492481,1101904,3,'actor',NULL,'[\"Jeff\"]'),(492481,714147,4,'actress',NULL,'[\"Allegra\"]'),(492481,535940,5,'director',NULL,NULL),(492481,1084615,6,'producer','producer',NULL),(492481,935095,7,'producer','producer',NULL),(492481,943398,8,'producer','producer',NULL),(492481,198696,9,'composer',NULL,NULL),(492486,781833,10,'cinematographer','director of photography',NULL),(492486,369424,1,'actress',NULL,'[\"Tara\"]'),(492486,1658935,2,'actor',NULL,'[\"Jake\"]'),(492486,1045739,3,'actor',NULL,'[\"Troy\"]'),(492486,1728497,4,'actress',NULL,'[\"Lisa\"]'),(492486,106456,5,'director',NULL,NULL),(492486,1263390,6,'writer','written by',NULL),(492486,1646322,7,'producer','producer',NULL),(492486,909490,8,'producer','producer',NULL),(492486,547050,9,'composer',NULL,NULL),(492506,1927879,1,'self',NULL,'[\"Self\"]'),(492506,122741,2,'self',NULL,'[\"Self\"]'),(492506,829537,3,'self',NULL,'[\"Self\"]'),(492506,2213688,4,'self',NULL,'[\"Self\"]'),(492506,187091,5,'director',NULL,NULL),(492506,641710,6,'writer',NULL,NULL),(492506,3526,7,'composer',NULL,NULL),(492506,89926,8,'editor',NULL,NULL),(492571,5176,10,'actress',NULL,'[\"Burdine Maxwell\"]'),(492571,4941,1,'actress',NULL,'[\"Jade\"]'),(492571,610298,2,'actress',NULL,'[\"Sasha\"]'),(492571,702833,3,'actress',NULL,'[\"Yasmin\"]'),(492571,352374,4,'actress',NULL,'[\"Cloe\"]'),(492571,140443,5,'director',NULL,NULL),(492571,4352839,6,'producer','producer',NULL),(492571,364217,7,'composer',NULL,NULL),(492571,192505,8,'actress',NULL,'[\"Kirstee\"]'),(492571,327,9,'actress',NULL,'[\"Kaycee\"]'),(493093,2030779,10,'actor',NULL,'[\"Rico\",\"Rico Suave\",\"Rico and Angus(Alejandro Nunes Gonzales Umberto Sifuentes )\"]'),(493093,1415323,1,'actress',NULL,'[\"Miley Stewart\",\"Hannah Montana\",\"Luann Stewart\"]'),(493093,652089,2,'actress',NULL,'[\"Lilly Truscott\",\"Lola Luftnagle\",\"Hannah Montana\"]'),(493093,1489118,3,'actor',NULL,'[\"Jackson Stewart\"]'),(493093,4854,4,'actor',NULL,'[\"Robby Ray Stewart\",\"Robby Ray Stewart and Bobby Ray Stewart\"]'),(493093,180902,5,'writer','creator',NULL),(493093,639434,6,'writer','creator',NULL),(493093,689954,7,'writer','creator',NULL),(493093,1102053,8,'actor',NULL,'[\"Oliver Oken\",\"Mike Stanley\",\"Mike Standley\"]'),(493093,7524232,9,'actress',NULL,'[\"Lesley\",\"Self\",\"Monica Pinto\"]'),(493430,569199,10,'writer','concepts by',NULL),(493430,424216,1,'self',NULL,'[\"Self\",\"Irving Zisman\"]'),(493430,828177,2,'self',NULL,'[\"Self\"]'),(493430,690686,3,'self',NULL,'[\"Self\"]'),(493430,546640,4,'self',NULL,'[\"Self\"]'),(493430,871860,5,'director',NULL,NULL),(493430,242756,6,'writer','concepts by',NULL),(493430,10338,7,'writer','concepts by',NULL),(493430,1035634,8,'writer','concepts by',NULL),(493430,257424,9,'writer','concepts by',NULL),(493451,733763,10,'cinematographer',NULL,NULL),(493451,4857,1,'actor',NULL,'[\"Bryan Becket\"]'),(493451,792,2,'actor',NULL,'[\"Sully\"]'),(493451,757855,3,'actress',NULL,'[\"Cassie\"]'),(493451,1346,4,'actor',NULL,'[\"Dr. Shepard\"]'),(493451,1548043,5,'director',NULL,NULL),(493451,730358,6,'producer','producer',NULL),(493451,774779,7,'producer','producer',NULL),(493451,1548042,8,'producer','producer',NULL),(493451,742182,9,'composer',NULL,NULL),(493459,8152917,10,'editor',NULL,NULL),(493459,225269,1,'self',NULL,'[\"Self - Filmmaker and Interviewer\"]'),(493459,5303,2,'self',NULL,'[\"Self - Director of \'Boys Don\'t Cry\'\"]'),(493459,4716,3,'self',NULL,'[\"Self - Director of \'Requiem for a Dream\'\"]'),(493459,382,4,'self',NULL,'[\"Self - Director of \'Where the Truth lies\'\"]'),(493459,772907,5,'writer',NULL,NULL),(493459,1121472,6,'writer',NULL,NULL),(493459,353248,7,'cinematographer','director of photography',NULL),(493459,990310,8,'cinematographer','director of photography',NULL),(493459,898575,9,'cinematographer','director of photography',NULL),(493464,1631852,10,'writer','comic book series',NULL),(493464,1401,1,'actress',NULL,'[\"Fox\"]'),(493464,564215,2,'actor',NULL,'[\"Wesley\"]'),(493464,151,3,'actor',NULL,'[\"Sloan\"]'),(493464,654,4,'actor',NULL,'[\"Pekwarsky\"]'),(493464,67457,5,'director',NULL,NULL),(493464,104973,6,'writer','screenplay',NULL),(493464,351929,7,'writer','screenplay',NULL),(493464,604555,8,'writer','screenplay',NULL),(493464,2092839,9,'writer','comic book series',NULL),(493949,1327019,10,'producer','producer',NULL),(493949,1428821,1,'actress',NULL,'[\"Ramona Quimby\"]'),(493949,1411125,2,'actress',NULL,'[\"Beezus Quimby\"]'),(493949,5256,3,'actress',NULL,'[\"Dorothy Quimby\"]'),(493949,179173,4,'actor',NULL,'[\"Robert Quimby\"]'),(493949,20491,5,'director',NULL,NULL),(493949,185934,6,'writer','screenplay',NULL),(493949,701143,7,'writer','screenplay',NULL),(493949,165823,8,'writer','novels',NULL),(493949,224145,9,'producer','producer',NULL),(494199,898293,10,'editor',NULL,NULL),(494199,579,1,'actor',NULL,'[\"Father Drake\"]'),(494199,1772184,2,'actress',NULL,'[\"Alex\"]'),(494199,535046,3,'actress',NULL,'[\"Mara\"]'),(494199,468659,4,'actress',NULL,'[\"Cecilia\"]'),(494199,1284464,5,'director',NULL,NULL),(494199,623709,6,'producer','producer',NULL),(494199,916189,7,'producer','producer',NULL),(494199,1487493,8,'composer',NULL,NULL),(494199,593262,9,'cinematographer','director of photography',NULL),(494222,940270,10,'editor',NULL,NULL),(494222,1045593,1,'actress',NULL,'[\"Lily\"]'),(494222,1318596,2,'actor',NULL,'[\"Jarrod\"]'),(494222,355440,3,'actor',NULL,'[\"Doug\"]'),(494222,864835,4,'actor',NULL,'[\"Damon\"]'),(494222,169806,5,'director',NULL,NULL),(494222,193295,6,'producer','producer',NULL),(494222,1189390,7,'producer','producer',NULL),(494222,2974098,8,'composer',NULL,NULL),(494222,163616,9,'cinematographer','director of photography',NULL),(494238,695536,10,'cinematographer','director of photography',NULL),(494238,409,1,'actor',NULL,'[\"Mo\"]'),(494238,785227,2,'actor',NULL,'[\"Capricorn\"]'),(494238,1146916,3,'actress',NULL,'[\"Meggie\"]'),(494238,347149,4,'actress',NULL,'[\"Resa\"]'),(494238,812200,5,'director',NULL,NULL),(494238,1865755,6,'writer','screenplay',NULL),(494238,1751315,7,'writer','novel',NULL),(494238,688694,8,'producer','producer',NULL),(494238,622782,9,'composer',NULL,NULL),(494271,955010,10,'production_designer',NULL,NULL),(494271,710938,1,'actress',NULL,'[\"Irena\"]'),(494271,686375,2,'actor',NULL,'[\"Muffa\"]'),(494271,314358,3,'actress',NULL,'[\"Valeria Adacher\"]'),(494271,214766,4,'actress',NULL,'[\"Gina\"]'),(494271,868153,5,'director',NULL,NULL),(494271,211160,6,'writer','screenplay collaborator',NULL),(494271,1553,7,'composer',NULL,NULL),(494271,952525,8,'cinematographer',NULL,NULL),(494271,702760,9,'editor',NULL,NULL),(494652,306755,10,'cinematographer',NULL,NULL),(494652,1454,1,'actor',NULL,'[\"R.J.\"]'),(494652,127373,2,'actor',NULL,'[\"Marty\"]'),(494652,469,3,'actor',NULL,'[\"Papa Jenkins\"]'),(494652,1923,4,'actress',NULL,'[\"Mama Jenkins\"]'),(494652,2700,5,'director',NULL,NULL),(494652,2146007,6,'producer','producer',NULL),(494652,661289,7,'producer','producer',NULL),(494652,835959,8,'producer','producer',NULL),(494652,628056,9,'composer',NULL,NULL),(495596,690695,10,'producer','producer',NULL),(495596,1096,1,'actor',NULL,'[\"Sparrowhawk\"]'),(495596,353,2,'actor',NULL,'[\"Cob\"]'),(495596,2127,3,'actress',NULL,'[\"Tenar\"]'),(495596,645411,4,'actor',NULL,'[\"Arren\"]'),(495596,2066439,5,'director',NULL,NULL),(495596,494372,6,'writer','based on the \"Earthsea\" book sereies by',NULL),(495596,2146668,7,'writer','screenplay',NULL),(495596,594503,8,'writer','concept',NULL),(495596,1297907,9,'producer','producer',NULL),(496328,2739721,10,'composer',NULL,NULL),(496328,246686,1,'actress',NULL,'[\"Anna\"]'),(496328,580217,2,'actress',NULL,'[\"Kate\"]'),(496328,3163702,3,'actress',NULL,'[\"Seamstress\"]'),(496328,708338,4,'actress',NULL,'[\"Ellen\"]'),(496328,44803,5,'director',NULL,NULL),(496328,2064480,6,'writer',NULL,NULL),(496328,1394908,7,'writer',NULL,NULL),(496328,818304,8,'writer','story',NULL),(496328,1511212,9,'producer','producer',NULL),(496436,253899,10,'editor',NULL,NULL),(496436,277213,1,'actor',NULL,'[\"Abe Dale\"]'),(496436,755267,2,'actress',NULL,'[\"Sherry Clarke\"]'),(496436,265492,3,'actor',NULL,'[\"Henry Caine\"]'),(496436,391738,4,'actor',NULL,'[\"Marty Bloom\"]'),(496436,527261,5,'director',NULL,NULL),(496436,1107639,6,'writer','written by',NULL),(496436,932144,7,'producer','producer',NULL),(496436,2934,8,'composer',NULL,NULL),(496436,3388,9,'cinematographer','director of photography',NULL),(496806,5545,10,'producer','producer',NULL),(496806,123,1,'actor',NULL,'[\"Danny Ocean\"]'),(496806,93,2,'actor',NULL,'[\"Rusty Ryan\"]'),(496806,354,3,'actor',NULL,'[\"Linus Caldwell\",\"\'Lenny Pepperidge\'\"]'),(496806,544067,4,'actor',NULL,'[\"Dr. Stan\"]'),(496806,1752,5,'director',NULL,NULL),(496806,2718,6,'writer','written by',NULL),(496806,505522,7,'writer','written by',NULL),(496806,425138,8,'writer','characters',NULL),(496806,751207,9,'writer','characters',NULL),(497137,1197989,10,'editor',NULL,NULL),(497137,1280145,1,'actress',NULL,'[\"Cha Young-goon\"]'),(497137,1713653,2,'actor',NULL,'[\"Park Il-sun\"]'),(497137,1366028,3,'actor',NULL,'[\"Judge\"]'),(497137,3739336,4,'actor',NULL,'[\"Hwang Kyu-Seok\"]'),(497137,661791,5,'director',NULL,NULL),(497137,1941029,6,'writer',NULL,NULL),(497137,1602184,7,'producer','producer',NULL),(497137,423280,8,'composer',NULL,NULL),(497137,161200,9,'cinematographer',NULL,NULL),(497465,503429,10,'editor',NULL,NULL),(497465,356017,1,'actress',NULL,'[\"Vicky\"]'),(497465,424060,2,'actress',NULL,'[\"Cristina\"]'),(497465,849,3,'actor',NULL,'[\"Juan Antonio\"]'),(497465,919525,4,'actor',NULL,'[\"Narrator\"]'),(497465,95,5,'director',NULL,NULL),(497465,36981,6,'producer','producer',NULL),(497465,1008264,7,'producer','producer',NULL),(497465,928836,8,'producer','producer',NULL),(497465,13761,9,'cinematographer','director of photography',NULL),(498353,284390,10,'editor',NULL,NULL),(498353,314514,1,'actress',NULL,'[\"Beth\"]'),(498353,525,2,'actress',NULL,'[\"Lorna\"]'),(498353,5313,3,'actress',NULL,'[\"Whitney\"]'),(498353,58372,4,'actor',NULL,'[\"Stuart\"]'),(498353,744834,5,'director',NULL,NULL),(498353,109010,6,'producer','producer',NULL),(498353,1153907,7,'producer','producer',NULL),(498353,56550,8,'composer',NULL,NULL),(498353,149453,9,'cinematographer','director of photography',NULL),(498380,520749,10,'producer','producer',NULL),(498380,913822,1,'actor',NULL,'[\"General Kuribayashi\"]'),(498380,632497,2,'actor',NULL,'[\"Saigo\"]'),(498380,407296,3,'actor',NULL,'[\"Baron Nishi\"]'),(498380,1076976,4,'actor',NULL,'[\"Shimizu\"]'),(498380,142,5,'director',NULL,NULL),(498380,2111875,6,'writer','screenplay',NULL),(498380,353673,7,'writer','story',NULL),(498380,2362326,8,'writer','book \"Picture Letters from Commander in Chief\"',NULL),(498380,2359677,9,'writer','book editor \"Picture Letters from Commander in Chief\"',NULL),(498381,531827,10,'producer','producer',NULL),(498381,4436761,1,'actress',NULL,'[\"Julia\"]'),(498381,1025139,2,'actor',NULL,'[\"Holt\"]'),(498381,301959,3,'actor',NULL,'[\"Gabriel\"]'),(498381,352,4,'actor',NULL,'[\"Burke\"]'),(498381,1279573,5,'director',NULL,NULL),(498381,521649,6,'writer','screenplay by',NULL),(498381,1096524,7,'writer','screenplay by',NULL),(498381,326040,8,'writer','screenplay by',NULL),(498381,840626,9,'writer','based on the novel \"The Ring\" by',NULL),(498399,6777,10,'editor',NULL,NULL),(498399,1618,1,'actor',NULL,'[\"Bobby Green\"]'),(498399,242,2,'actor',NULL,'[\"Joseph Grusinsky\"]'),(498399,578949,3,'actress',NULL,'[\"Amada Juarez\"]'),(498399,387773,4,'actor',NULL,'[\"Jumbo Falsetti\"]'),(498399,336695,5,'director',NULL,NULL),(498399,124652,6,'producer','producer',NULL),(498399,917059,7,'producer','producer',NULL),(498399,4384,8,'composer',NULL,NULL),(498399,45202,9,'cinematographer','director of photography',NULL),(499097,326040,10,'producer','producer',NULL),(499097,430107,1,'actor',NULL,'[\"John Kelly\"]'),(499097,3853652,2,'actress',NULL,'[\"Karen Greer\"]'),(499097,68260,3,'actor',NULL,'[\"Robert Ritter\"]'),(499097,1602,4,'actor',NULL,'[\"Secretary Clay\"]'),(499097,1356588,5,'director',NULL,NULL),(499097,792263,6,'writer','screenplay by',NULL),(499097,1475436,7,'writer','screenplay by',NULL),(499097,2007,8,'writer','based on the novel by',NULL),(499097,32227,9,'producer','producer',NULL),(499448,828130,10,'producer','producer',NULL),(499448,1602660,1,'actor',NULL,'[\"Prince Caspian\"]'),(499448,1342727,2,'actor',NULL,'[\"Edmund Pevensie\"]'),(499448,1670137,3,'actress',NULL,'[\"Lucy Pevensie\"]'),(499448,608440,4,'actor',NULL,'[\"Peter Pevensie\"]'),(499448,11470,5,'director',NULL,NULL),(499448,1321655,6,'writer','screenplay',NULL),(499448,1321656,7,'writer','screenplay',NULL),(499448,507000,8,'writer','novel',NULL),(499448,425741,9,'producer','producer',NULL),(499455,569160,10,'production_designer',NULL,NULL),(499455,2111904,1,'actress',NULL,'[\"She\"]'),(499455,918448,2,'actor',NULL,'[\"Commander\"]'),(499455,1146212,3,'actor',NULL,'[\"Organizer\"]'),(499455,2148665,4,'actor',NULL,'[\"Organizer\"]'),(499455,518123,5,'director',NULL,NULL),(499455,431861,6,'producer','producer',NULL),(499455,505625,7,'producer','producer',NULL),(499455,213424,8,'cinematographer','director of photography',NULL),(499455,852893,9,'editor',NULL,NULL),(499537,435534,10,'cinematographer',NULL,NULL),(499537,2155402,1,'actress',NULL,'[\"First girl\"]'),(499537,2151395,2,'actress',NULL,'[\"Smoking girl\"]'),(499537,2152379,3,'actress',NULL,'[\"Soccer girl\"]'),(499537,11054570,4,'actor',NULL,'[\"Shxyxn\"]'),(499537,70159,5,'director',NULL,NULL),(499537,2158640,6,'writer',NULL,NULL),(499537,1409881,7,'composer',NULL,NULL),(499537,2373326,8,'composer',NULL,NULL),(499537,12834,9,'cinematographer',NULL,NULL),(499549,729701,10,'editor',NULL,NULL),(499549,941777,1,'actor',NULL,'[\"Jake Sully\"]'),(499549,757855,2,'actress',NULL,'[\"Neytiri\"]'),(499549,244,3,'actress',NULL,'[\"Dr. Grace Augustine\"]'),(499549,735442,4,'actress',NULL,'[\"Trudy Chacón\"]'),(499549,116,5,'director',NULL,NULL),(499549,484457,6,'producer','producer',NULL),(499549,35,7,'composer',NULL,NULL),(499549,278475,8,'cinematographer','director of photography',NULL),(499549,716350,9,'editor',NULL,NULL),(598828,908346,10,'editor',NULL,NULL),(598828,631467,1,'actress',NULL,'[\"Ruth Gibbs\"]'),(598828,1477532,2,'actress',NULL,'[\"Karen Gibbs\"]'),(598828,63739,3,'actor',NULL,'[\"Rev Thomas Gibbs\"]'),(598828,800749,4,'actor',NULL,'[\"PC Alf Ventress\"]'),(598828,449969,5,'director',NULL,NULL),(598828,126210,6,'writer','devised by',NULL),(598828,571032,7,'writer','writer',NULL),(598828,722195,8,'writer','Constable novels',NULL),(598828,587583,9,'producer','producer',NULL),(643106,6229,10,'composer',NULL,NULL),(643106,45584,1,'actor',NULL,'[\"John Ralston\"]'),(643106,560940,2,'actress',NULL,'[\"Miz Carnation\"]'),(643106,687679,3,'actor',NULL,'[\"Dr. Hauser\"]'),(643106,147689,4,'actor',NULL,'[\"Ernst Haeckel\"]'),(643106,573796,5,'director',NULL,NULL),(643106,308376,6,'writer','creator',NULL),(643106,850,7,'writer','short story',NULL),(643106,724678,8,'producer','producer',NULL),(643106,746614,9,'producer','producer',NULL),(643110,6001,10,'composer',NULL,NULL),(643110,103,1,'actress',NULL,'[\"Stacia\"]'),(643110,605363,2,'actor',NULL,'[\"Jim Wheeler\"]'),(643110,1504650,3,'actor',NULL,'[\"Walker\"]'),(643110,484929,4,'actress',NULL,'[\"Birdy\"]'),(643110,169540,5,'director',NULL,NULL),(643110,308376,6,'writer','creator',NULL),(643110,775017,7,'writer','teleplay',NULL),(643110,724678,8,'producer','producer',NULL),(643110,746614,9,'producer','producer',NULL),(756522,3807687,10,'actress',NULL,'[\"Annie\"]'),(756522,2244793,1,'actor',NULL,'[\"Quincy\"]'),(756522,1575654,2,'actor',NULL,'[\"Leo\"]'),(756522,2246840,3,'actress',NULL,'[\"Annie\",\"Anne\"]'),(756522,2237380,4,'actress',NULL,'[\"June\"]'),(756522,1332821,5,'writer','creator',NULL),(756522,939669,6,'writer','developed for television by',NULL),(756522,419248,7,'actor',NULL,'[\"Additional Voices\"]'),(756522,1655719,8,'actress',NULL,'[\"June\"]'),(756522,2802945,9,'actor',NULL,'[\"Leo\"]'),(756683,341040,10,'editor',NULL,NULL),(756683,807900,1,'actor',NULL,'[\"John\"]'),(756683,865302,2,'actor',NULL,'[\"Dan\"]'),(756683,82517,3,'actor',NULL,'[\"Harry\"]'),(756683,186761,4,'actress',NULL,'[\"Edith\"]'),(756683,770942,5,'director',NULL,NULL),(756683,3198,6,'writer','written by',NULL),(756683,2169088,7,'producer','producer',NULL),(756683,829640,8,'composer',NULL,NULL),(756683,787551,9,'cinematographer','director of photography',NULL),(756729,233827,10,'editor',NULL,NULL),(756729,788340,1,'actress',NULL,'[\"Peggy\"]'),(756729,604,2,'actor',NULL,'[\"Al\"]'),(756729,765597,3,'actor',NULL,'[\"Newt\"]'),(756729,368,4,'actress',NULL,'[\"Bret\"]'),(756729,925234,5,'director',NULL,NULL),(756729,306890,6,'producer','producer',NULL),(756729,1444110,7,'producer','producer',NULL),(756729,65100,8,'composer',NULL,NULL),(756729,650615,9,'cinematographer','director of photography',NULL),(757061,506681,10,'producer','producer',NULL),(757061,236711,1,'actor',NULL,'[\"Christopher\"]'),(757061,2169661,2,'actor',NULL,'[\"Laborer #1\"]'),(757061,2160109,3,'actress',NULL,'[\"Komomo\"]'),(757061,1210208,4,'actor',NULL,'[\"Laborer #2\"]'),(757061,586281,5,'director',NULL,NULL),(757061,308376,6,'writer','creator',NULL),(757061,854976,7,'writer','teleplay',NULL),(757061,2059536,8,'writer','novel \"Bokkê, kyôtê\"',NULL),(757061,409274,9,'producer','producer',NULL),(757361,173,1,'actress',NULL,'[\"Margot\"]'),(757361,492,2,'actress',NULL,'[\"Pauline\"]'),(757361,1552919,3,'actress',NULL,'[\"Ingrid\"]'),(757361,2236928,4,'actor',NULL,'[\"Claude\"]'),(757361,876,5,'director',NULL,NULL),(757361,748784,6,'producer','producer',NULL),(757361,767647,7,'cinematographer',NULL,NULL),(757361,514746,8,'editor',NULL,NULL),(757361,743214,9,'production_designer',NULL,NULL),(758730,859029,10,'writer','Predator characters',NULL),(758730,43855,1,'actress',NULL,'[\"Kelly\"]'),(758730,1018679,2,'actor',NULL,'[\"Dallas\"]'),(758730,1560274,3,'actress',NULL,'[\"Kendra\"]'),(758730,651159,4,'actor',NULL,'[\"Morales\"]'),(758730,833779,5,'director',NULL,NULL),(758730,833780,6,'director',NULL,NULL),(758730,4307,7,'writer','written by',NULL),(758730,639321,8,'writer','Alien characters',NULL),(758730,795953,9,'writer','Alien characters',NULL),(758732,2796,10,'cinematographer','director of photography',NULL),(758732,9530,1,'actor',NULL,'[\"Brigadier-General Kimchi, division commander\"]'),(758732,3844001,2,'actor',NULL,NULL),(758732,3844616,3,'self',NULL,'[\"Self\"]'),(758732,3843055,4,'actor',NULL,NULL),(758732,147737,5,'director',NULL,NULL),(758732,2129572,6,'writer','novel \"Im Yesh Gan Eden\"',NULL),(758732,541812,7,'producer','producer',NULL),(758732,797834,8,'producer','executive producer',NULL),(758732,2157978,9,'composer',NULL,NULL),(758746,881,10,'producer','producer',NULL),(758746,655585,1,'actor',NULL,'[\"Clay Miller\"]'),(758746,1119462,2,'actress',NULL,'[\"Whitney Miller\"]'),(758746,575216,3,'actor',NULL,'[\"Jason Voorhees\"]'),(758746,1263939,4,'actress',NULL,'[\"Jenna\"]'),(758746,1197971,5,'director',NULL,NULL),(758746,566699,6,'writer','based on characters created by',NULL),(758746,1226735,7,'writer','story by',NULL),(758746,1226737,8,'writer','story by',NULL),(758746,1187126,9,'writer','story by',NULL),(758751,374189,10,'editor',NULL,NULL),(758751,106,1,'actress',NULL,'[\"Little Edie\"]'),(758751,1448,2,'actress',NULL,'[\"Big Edie\"]'),(758751,675,3,'actress',NULL,'[\"Jackie O.\"]'),(758751,397432,4,'actor',NULL,'[\"Phelan Beale\"]'),(758751,1302591,5,'director',NULL,NULL),(758751,5390,6,'writer','teleplay',NULL),(758751,167708,7,'producer','producer',NULL),(758751,6235,8,'composer',NULL,NULL),(758751,253279,9,'cinematographer','director of photography',NULL),(758752,835959,10,'producer','producer',NULL),(758752,350453,1,'actor',NULL,'[\"Jamie Randall\"]'),(758752,4266,2,'actress',NULL,'[\"Maggie Murdock\"]'),(758752,339460,3,'actress',NULL,'[\"Cindy\"]'),(758752,1624,4,'actor',NULL,'[\"Bruce Winston\"]'),(758752,1880,5,'director',NULL,NULL),(758752,1017488,6,'writer','screenplay',NULL),(758752,380980,7,'writer','screenplay',NULL),(758752,2168221,8,'writer','book \"Hard Sell: The Evolution of a Viagra Salesman\"',NULL),(758752,115764,9,'producer','producer',NULL),(758753,404510,10,'production_designer',NULL,NULL),(758753,715076,1,'actor',NULL,'[\"Michael Reed\"]'),(758753,155,2,'actress',NULL,'[\"Mom\"]'),(758753,202966,3,'actor',NULL,'[\"Dad\"]'),(758753,933281,4,'actress',NULL,'[\"Teresa Reed\"]'),(758753,2166962,5,'director',NULL,NULL),(758753,818304,6,'producer','producer',NULL),(758753,168430,7,'composer',NULL,NULL),(758753,450670,8,'cinematographer',NULL,NULL),(758753,133611,9,'editor',NULL,NULL),(758758,1813015,10,'composer',NULL,NULL),(758758,386472,1,'actor',NULL,'[\"Chris McCandless\"]'),(758758,681,2,'actor',NULL,'[\"Wayne Westerberg\"]'),(758758,1416,3,'actress',NULL,'[\"Jan Burres\"]'),(758758,1315,4,'actress',NULL,'[\"Billie McCandless\"]'),(758758,576,5,'director',NULL,NULL),(758758,1040556,6,'writer','book',NULL),(758758,513165,7,'producer','producer',NULL),(758758,688361,8,'producer','producer',NULL),(758758,111649,9,'composer',NULL,NULL),(758766,4267,10,'cinematographer','director of photography',NULL),(758766,424,1,'actor',NULL,'[\"Alex Fletcher\"]'),(758766,106,2,'actress',NULL,'[\"Sophie Fisher\"]'),(758766,2187603,3,'actor',NULL,'[\"Colin Thompson\"]'),(758766,45813,4,'actor',NULL,'[\"Pop Bass Player\"]'),(758766,492909,5,'director',NULL,NULL),(758766,323065,6,'producer','producer',NULL),(758766,787265,7,'producer','producer',NULL),(758766,8306442,8,'producer','producer',NULL),(758766,772245,9,'composer',NULL,NULL),(758771,1164744,10,'editor',NULL,NULL),(758771,293,1,'actor',NULL,'[\"Danny Bryant\"]'),(758771,245705,2,'actor',NULL,'[\"Gene Dekker\"]'),(758771,1670029,3,'actor',NULL,'[\"Sandy Mardell\"]'),(758771,365317,4,'actor',NULL,'[\"Simon Hillier\"]'),(758771,522393,5,'director',NULL,NULL),(758771,629242,6,'producer','producer',NULL),(758771,724597,7,'producer','producer',NULL),(758771,432382,8,'composer',NULL,NULL),(758771,567302,9,'cinematographer','director of photography',NULL),(758774,936838,10,'cinematographer','director of photography',NULL),(758774,138,1,'actor',NULL,'[\"Roger Ferris\"]'),(758774,128,2,'actor',NULL,'[\"Ed Hoffman\"]'),(758774,835016,3,'actor',NULL,'[\"Hani\"]'),(758774,267042,4,'actress',NULL,'[\"Aisha\"]'),(758774,631,5,'director',NULL,NULL),(758774,1184258,6,'writer','screenplay',NULL),(758774,2015758,7,'writer','novel \"Body of Lies\"',NULL),(758774,209773,8,'producer','producer',NULL),(758774,834199,9,'composer',NULL,NULL),(758794,403397,10,'cinematographer','director of photography',NULL),(758794,190,1,'actor',NULL,'[\"Jack Lengyel\"]'),(758794,289142,2,'actor',NULL,'[\"Red Dawson\"]'),(758794,1107001,3,'actor',NULL,'[\"Nate Ruffin\"]'),(758794,657,4,'actor',NULL,'[\"President Dedmon\"]'),(758794,629334,5,'director',NULL,NULL),(758794,1956691,6,'writer','screenplay',NULL),(758794,2124061,7,'writer','story',NULL),(758794,412588,8,'producer','producer',NULL),(758794,65100,9,'composer',NULL,NULL),(760329,651614,10,'producer','producer',NULL),(760329,1833,1,'actress',NULL,'[\"Anne MacMorrow\"]'),(760329,607375,2,'actor',NULL,'[\"Capt. Hamilton\"]'),(760329,1375020,3,'actor',NULL,'[\"Angus MacMorrow\"]'),(760329,21600,4,'actor',NULL,'[\"Jock McGowan\"]'),(760329,751221,5,'director',NULL,NULL),(760329,414608,6,'writer','screenplay',NULL),(760329,455404,7,'writer','book \"The Water Horse\"',NULL),(760329,77127,8,'producer','producer',NULL),(760329,1854001,9,'producer','producer',NULL),(762073,161200,10,'cinematographer',NULL,NULL),(762073,814280,1,'actor',NULL,'[\"Sang-hyun\"]'),(762073,1982607,2,'actress',NULL,'[\"Tae-ju\"]'),(762073,2565312,3,'actress',NULL,'[\"Nurse Sa\"]'),(762073,3641121,4,'actor',NULL,'[\"Hyo-sung\"]'),(762073,661791,5,'director',NULL,NULL),(762073,957652,6,'writer','inspired by \"Thérèse Raquin\"',NULL),(762073,1941029,7,'writer','screenplay by',NULL),(762073,1948121,8,'producer','producer',NULL),(762073,423280,9,'composer',NULL,NULL),(762110,7236,10,'producer','producer',NULL),(762110,265717,1,'actress',NULL,'[\"Maggie\"]'),(762110,543547,2,'actor',NULL,'[\"Miki\"]'),(762110,84107,3,'actor',NULL,'[\"Tom\"]'),(762110,1305192,4,'actress',NULL,'[\"Sarah\"]'),(762110,304921,5,'director',NULL,NULL),(762110,87646,6,'writer','original script',NULL),(762110,1411398,7,'writer','screenplay',NULL),(762110,217524,8,'producer','producer',NULL),(762110,2593414,9,'producer','producer',NULL),(762125,172335,10,'producer','producer',NULL),(762125,425005,1,'actor',NULL,'[\"Captain Charles T. Baker\"]'),(762125,5405,2,'actor',NULL,'[\"Skiff\"]'),(762125,4754,3,'actress',NULL,'[\"Neera\"]'),(762125,519043,4,'actor',NULL,'[\"Lem\"]'),(762125,3360961,5,'director',NULL,NULL),(762125,3371961,6,'director','co-director',NULL),(762125,3483756,7,'director','co-director',NULL),(762125,830294,8,'writer','script by',NULL),(762125,2171590,9,'writer','original idea by',NULL),(762148,2834193,10,'editor',NULL,NULL),(762148,5143,1,'actor',NULL,'[\"The Narrator\"]'),(762148,799,2,'actor',NULL,'[\"Krad\"]'),(762148,870,3,'actress',NULL,'[\"Miss Dowdy\"]'),(762148,1956478,4,'actress',NULL,'[\"Sophianna\"]'),(762148,2526,5,'director',NULL,NULL),(762148,885864,6,'director','supervising director',NULL),(762148,953294,7,'writer','story',NULL),(762148,695643,8,'producer','producer',NULL),(762148,888113,9,'composer',NULL,NULL),(763831,326496,10,'producer','producer',NULL),(763831,552,1,'actor',NULL,'[\"Jack McCall\"]'),(763831,193295,2,'actor',NULL,'[\"Dr. Sinja\"]'),(763831,913488,3,'actress',NULL,'[\"Caroline McCall\"]'),(763831,241173,4,'actor',NULL,'[\"Aaron Wiseberger\"]'),(763831,5367,5,'director',NULL,NULL),(763831,466175,6,'writer','written by',NULL),(763831,115,7,'producer','producer',NULL),(763831,149260,8,'producer','producer',NULL),(763831,199114,9,'producer','producer',NULL),(765010,1448916,10,'producer','producer',NULL),(765010,350453,1,'actor',NULL,'[\"Tommy Cahill\"]'),(765010,204,2,'actress',NULL,'[\"Grace Cahill\"]'),(765010,1497,3,'actor',NULL,'[\"Capt. Sam Cahill\"]'),(765010,1731,4,'actor',NULL,'[\"Hank Cahill\"]'),(765010,6487,5,'director',NULL,NULL),(765010,1125275,6,'writer','screenplay',NULL),(765010,81540,7,'writer','motion picture \"Brødre\"',NULL),(765010,421314,8,'writer','motion picture \"Brødre\"',NULL),(765010,6894,9,'producer','producer',NULL),(765120,477095,10,'cinematographer',NULL,NULL),(765120,1289528,1,'actress',NULL,'[\"Elizabeth\"]'),(765120,179,2,'actor',NULL,'[\"Jeremy\"]'),(765120,204,3,'actress',NULL,'[\"Leslie\"]'),(765120,1378816,4,'actor',NULL,'[\"Boyfriend\"]'),(765120,939182,5,'director',NULL,NULL),(765120,88747,6,'writer','screenplay',NULL),(765120,659388,7,'producer','producer',NULL),(765120,176839,8,'composer',NULL,NULL),(765120,451787,9,'cinematographer','director of photography',NULL),(765429,834199,10,'composer',NULL,NULL),(765429,243,1,'actor',NULL,'[\"Frank Lucas\"]'),(765429,128,2,'actor',NULL,'[\"Richie Roberts\"]'),(765429,252230,3,'actor',NULL,'[\"Huey Lucas\"]'),(765429,982,4,'actor',NULL,'[\"Detective Trupo\"]'),(765429,631,5,'director',NULL,NULL),(765429,1873,6,'writer','written by',NULL),(765429,414893,7,'writer','article \"The Return of Superfly\"',NULL),(765429,4976,8,'producer','producer',NULL),(765429,341152,9,'producer','producer',NULL),(765430,1259475,10,'editor',NULL,NULL),(765430,1648016,1,'actor',NULL,'[\"Ivan\"]'),(765430,933560,2,'actress',NULL,'[\"Lisa\"]'),(765430,15673,3,'actor',NULL,'[\"Joel\"]'),(765430,620232,4,'actress',NULL,'[\"Judy\"]'),(765430,497333,5,'director',NULL,NULL),(765430,814412,6,'writer',NULL,NULL),(765430,1461691,7,'producer','producer',NULL),(765430,657079,8,'composer',NULL,NULL),(765430,3442,9,'cinematographer','director of photography',NULL),(765432,458430,10,'cinematographer','director of photography',NULL),(765432,311476,1,'actress',NULL,'[\"Ulrike Meinhof\"]'),(765432,1953,2,'actor',NULL,'[\"Andreas Baader\"]'),(765432,937557,3,'actress',NULL,'[\"Gudrun Ensslin\"]'),(765432,4486,4,'actor',NULL,'[\"Horst Herold\"]'),(765432,248942,5,'director',NULL,NULL),(765432,251536,6,'writer','screenplay',NULL),(765432,42266,7,'writer','book',NULL),(765432,1065484,8,'composer',NULL,NULL),(765432,1295161,9,'composer',NULL,NULL),(765443,5893,10,'cinematographer','director of photography',NULL),(765443,915208,1,'actress',NULL,'[\"Anna\"]'),(765443,1557,2,'actor',NULL,'[\"Nikolai\"]'),(765443,90,3,'actor',NULL,'[\"Semyon\"]'),(765443,1086981,4,'actor',NULL,'[\"Ekrem\"]'),(765443,343,5,'director',NULL,NULL),(765443,1140275,6,'writer','screenplay',NULL),(765443,487190,7,'producer','producer',NULL),(765443,916986,8,'producer','producer',NULL),(765443,6290,9,'composer',NULL,NULL),(765446,498555,10,'writer','based on a story by',NULL),(765446,409,1,'actor',NULL,'[\"Scorch Supernova\"]'),(765446,572,2,'actress',NULL,'[\"Kira Supernova\"]'),(765446,4695,3,'actress',NULL,'[\"Lena Thackleman\"]'),(765446,1117791,4,'actor',NULL,'[\"Gary Supernova\"]'),(765446,2117510,5,'director',NULL,NULL),(765446,1779809,6,'writer','written by',NULL),(765446,410,7,'writer','additional writing by',NULL),(765446,419486,8,'writer','additional writing by',NULL),(765446,563243,9,'writer','additional writing by',NULL),(765447,655822,10,'cinematographer','director of photography',NULL),(765447,603,1,'actress',NULL,'[\"Ann Lord\"]'),(765447,1057,2,'actress',NULL,'[\"Nina Mars\"]'),(765447,132,3,'actress',NULL,'[\"Ann Grant\"]'),(765447,933940,4,'actor',NULL,'[\"Harris Arden\"]'),(765447,5759,5,'director',NULL,NULL),(765447,591612,6,'writer','screenplay',NULL),(765447,1259728,7,'writer','screenplay',NULL),(765447,1104170,8,'producer','producer',NULL),(765447,434222,9,'composer',NULL,NULL),(765458,278275,10,'cinematographer',NULL,NULL),(765458,419248,1,'actor',NULL,'[\"Albert\"]'),(765458,912938,2,'actor',NULL,'[\"Teatime\"]'),(765458,1890784,3,'actress',NULL,'[\"Susan\",\"Death of Rats\"]'),(765458,1831,4,'actor',NULL,'[\"Lord Downey\"]'),(765458,419884,5,'director',NULL,NULL),(765458,695332,6,'writer','novel',NULL),(765458,1144690,7,'producer','producer',NULL),(765458,789292,8,'producer','producer',NULL),(765458,400542,9,'composer',NULL,NULL),(765476,464548,10,'producer','producer',NULL),(765476,552,1,'actor',NULL,'[\"Dave\",\"Captain\"]'),(765476,6969,2,'actress',NULL,'[\"Gina Morrison\"]'),(765476,5517,3,'actress',NULL,'[\"No. 3 - Cultural Officer\"]'),(765476,4790,4,'actor',NULL,'[\"Dooley\"]'),(765476,5367,5,'director',NULL,NULL),(765476,338576,6,'writer','written by',NULL),(765476,179132,7,'writer','written by',NULL),(765476,1153895,8,'producer','producer',NULL),(765476,295560,9,'producer','producer',NULL),(768116,408039,10,'editor',NULL,NULL),(768116,559696,1,'actress',NULL,'[\"Madoka Hirayama\"]'),(768116,870317,2,'actor',NULL,'[\"Yojiro Tanikawa\"]'),(768116,1066974,3,'actress',NULL,'[\"Kimiko Tanikawa\"]'),(768116,2182727,4,'actress',NULL,'[\"Sayuri Kumano\"]'),(768116,498212,5,'director',NULL,NULL),(768116,1847857,6,'writer','written by',NULL),(768116,2349238,7,'producer','producer',NULL),(768116,2168955,8,'composer',NULL,NULL),(768116,945418,9,'cinematographer',NULL,NULL),(768132,946205,1,'actress',NULL,'[\"Mon Mon\",\"Miss Pond Skater\",\"Water flea\"]'),(768132,594503,2,'director',NULL,NULL),(768132,840699,3,'producer','producer',NULL),(768132,2168307,4,'composer',NULL,NULL),(768132,645777,5,'cinematographer',NULL,NULL),(768132,2054111,6,'editor',NULL,NULL),(768132,786707,7,'editor',NULL,NULL),(768212,476565,10,'writer','short story \"Mimsy Were the Borogoves\"',NULL),(768212,613,1,'actress',NULL,'[\"Jo Wilder\"]'),(768212,933988,2,'actor',NULL,'[\"Larry White\"]'),(768212,459,3,'actor',NULL,'[\"David Wilder\"]'),(768212,2198494,4,'actor',NULL,'[\"Noah Wilder\"]'),(768212,790144,5,'director',NULL,NULL),(768212,748022,6,'writer','screenplay',NULL),(768212,256497,7,'writer','screenplay',NULL),(768212,366337,8,'writer','screen story',NULL),(768212,2452967,9,'writer','screen story',NULL),(768239,1024392,10,'production_designer',NULL,NULL),(768239,289098,1,'actress',NULL,'[\"Hannah Maynard\"]'),(768239,1671512,2,'actress',NULL,'[\"Mira Arendt\"]'),(768239,226820,3,'actor',NULL,'[\"Keith Haywood\"]'),(768239,489858,4,'actor',NULL,'[\"Jonas Dahlberg\"]'),(768239,772691,5,'director',NULL,NULL),(768239,1016679,6,'writer',NULL,NULL),(768239,1574308,7,'composer',NULL,NULL),(768239,323950,8,'cinematographer',NULL,NULL),(768239,919443,9,'editor',NULL,NULL),(769508,2371460,10,'production_designer',NULL,NULL),(769508,244151,1,'actor',NULL,'[\"Paul\"]'),(769508,308039,2,'actor',NULL,'[\"Jonathan\"]'),(769508,2372335,3,'actress',NULL,'[\"Alice\"]'),(769508,545383,4,'actor',NULL,'[\"Mirko\"]'),(769508,393394,5,'director',NULL,NULL),(769508,104418,6,'producer','producer',NULL),(769508,1180763,7,'composer',NULL,NULL),(769508,895613,8,'cinematographer',NULL,NULL),(769508,405211,9,'editor',NULL,NULL),(770703,1246087,10,'producer','producer',NULL),(770703,267506,1,'actress',NULL,'[\"Ally Darling\"]'),(770703,262635,2,'actor',NULL,'[\"Colin Shea\"]'),(770703,310966,3,'actress',NULL,'[\"Daisy Darling\"]'),(770703,1100,4,'actress',NULL,'[\"Ava Darling\"]'),(770703,617042,5,'director',NULL,NULL),(770703,1271341,6,'writer','novel \"20 Times a Lady\"',NULL),(770703,1000302,7,'writer','screenplay',NULL),(770703,188243,8,'writer','screenplay',NULL),(770703,4927,9,'producer','producer',NULL),(770739,469145,10,'composer',NULL,NULL),(770739,82517,1,'actor',NULL,'[\"Langdon\"]'),(770739,1002,2,'actor',NULL,'[\"Lt. Bobby Quinn\"]'),(770739,131974,3,'actress',NULL,'[\"Mrs. Wisteria\"]'),(770739,172333,4,'actor',NULL,'[\"Captain Niles\"]'),(770739,227695,5,'director',NULL,NULL),(770739,22913,6,'writer',NULL,NULL),(770739,471386,7,'writer',NULL,NULL),(770739,332087,8,'producer','producer',NULL),(770739,1496795,9,'producer','producer',NULL),(770802,8166302,10,'cinematographer',NULL,NULL),(770802,5530711,1,'actress',NULL,'[\"Dancers: Indonesia\"]'),(770802,5530700,2,'actress',NULL,'[\"Dancer: Valinese Tari Legong Dancers, Indonesia\"]'),(770802,5530772,3,'actress',NULL,'[\"Dancer: Valinese Tari Legong Dancers, Indonesia\"]'),(770802,5530691,4,'actress',NULL,'[\"Dancer: Valinese Tari Legong Dancers, Indonesia\"]'),(770802,294825,5,'director',NULL,NULL),(770802,536056,6,'writer','concept and treatment written by',NULL),(770802,1232058,7,'composer',NULL,NULL),(770802,314713,8,'composer',NULL,NULL),(770802,824195,9,'composer',NULL,NULL),(770828,746273,10,'producer','producer',NULL),(770828,147147,1,'actor',NULL,'[\"Clark Kent\",\"Kal-El\"]'),(770828,10736,2,'actress',NULL,'[\"Lois Lane\"]'),(770828,788335,3,'actor',NULL,'[\"General Zod\"]'),(770828,178,4,'actress',NULL,'[\"Martha Kent\"]'),(770828,811583,5,'director',NULL,NULL),(770828,275286,6,'writer','screenplay',NULL),(770828,634240,7,'writer','story',NULL),(770828,796950,8,'writer','Superman created by',NULL),(770828,795975,9,'writer','Superman created by',NULL),(772154,1355028,10,'cinematographer',NULL,NULL),(772154,1157353,1,'actress',NULL,'[\"Ulla\"]'),(772154,2182155,2,'actress',NULL,'[\"Susan\"]'),(772154,2184389,3,'actor',NULL,'[\"Leo\"]'),(772154,2176027,4,'actor',NULL,'[\"Kyle\"]'),(772154,787606,5,'director',NULL,NULL),(772154,2184657,6,'director',NULL,NULL),(772154,2179308,7,'composer',NULL,NULL),(772154,2184093,8,'composer',NULL,NULL),(772154,2180472,9,'composer',NULL,NULL),(775489,232357,1,'actor',NULL,'[\"The Illusionist\",\"French Cinema Manager\"]'),(775489,3946526,2,'actress',NULL,'[\"Alice\"]'),(775489,4048274,3,'actor',NULL,'[\"Additional Voices\"]'),(775489,1579244,4,'actor',NULL,'[\"Additional Voices\"]'),(775489,158984,5,'director',NULL,NULL),(775489,4244,6,'writer','original screenplay',NULL),(775489,1584540,7,'producer','producer',NULL),(775489,489901,8,'producer','producer',NULL),(775529,403258,10,'cinematographer','director of photography',NULL),(775529,1473,1,'actress',NULL,'[\"Wendy Savage\"]'),(775529,450,2,'actor',NULL,'[\"Jon Savage\"]'),(775529,97842,3,'actor',NULL,'[\"Lenny Savage\"]'),(775529,295334,4,'actor',NULL,'[\"Larry\"]'),(775529,420982,5,'director',NULL,NULL),(775529,136904,6,'producer','producer',NULL),(775529,394046,7,'producer','producer',NULL),(775529,922757,8,'producer','producer',NULL),(775529,871136,9,'composer',NULL,NULL),(775543,876511,10,'cinematographer',NULL,NULL),(775543,1107001,1,'actor',NULL,'[\"Marcus Washington\"]'),(775543,913488,2,'actress',NULL,'[\"Patricia Wilson\"]'),(775543,3541011,3,'actress',NULL,'[\"Iris Wilson\"]'),(775543,3528804,4,'actor',NULL,'[\"Colin Dixon\"]'),(775543,358184,5,'director',NULL,NULL),(775543,999627,6,'producer','producer',NULL),(775543,649346,7,'producer','producer',NULL),(775543,1839399,8,'producer','producer',NULL),(775543,1437310,9,'composer',NULL,NULL),(775552,121281,10,'cinematographer','director of photography',NULL),(775552,864308,1,'actress',NULL,'[\"Bethany Pearson\"]'),(775552,1382207,2,'actor',NULL,'[\"Ricky Dillman\"]'),(775552,1334396,3,'actor',NULL,'[\"Tom Pearson\"]'),(775552,2581521,4,'actor',NULL,'[\"Jake Pearson\"]'),(775552,776271,5,'director',NULL,NULL),(775552,123666,6,'writer','screenplay',NULL),(775552,1104057,7,'writer','screenplay',NULL),(775552,430742,8,'producer','producer',NULL),(775552,2201,9,'composer',NULL,NULL),(778631,782848,10,'producer','producer',NULL),(778631,559381,1,'actress',NULL,'[\"Wataru Mitsuya\"]'),(778631,1985175,2,'actor',NULL,'[\"Mitsuru\"]'),(778631,1028496,3,'actor',NULL,'[\"Toron\"]'),(778631,253528,4,'actress',NULL,'[\"Goddess of Fortune\",\"Princess Zofie\"]'),(778631,157363,5,'director',NULL,NULL),(778631,594323,6,'writer','novel',NULL),(778631,1287521,7,'writer','screenplay',NULL),(778631,1907937,8,'producer','producer',NULL),(778631,463582,9,'producer','producer',NULL),(779496,746614,10,'producer','producer',NULL),(779496,1533,1,'actor',NULL,'[\"Jake Feldman\"]'),(779496,1022732,2,'actor',NULL,'[\"Lou Chinaski\"]'),(779496,1228814,3,'actor',NULL,'[\"Sergio\"]'),(779496,506694,4,'actress',NULL,'[\"Sue Chin Yao\"]'),(779496,783,5,'director',NULL,NULL),(779496,308376,6,'writer','creator',NULL),(779496,1107639,7,'writer','teleplay',NULL),(779496,933393,8,'writer','short story',NULL),(779496,724678,9,'producer','producer',NULL),(779982,801662,10,'production_designer',NULL,NULL),(779982,238135,1,'actor',NULL,'[\"Grant\"]'),(779982,2201960,2,'actor',NULL,'[\"Henry Oldfield\"]'),(779982,205541,3,'actor',NULL,'[\"Tucker\"]'),(779982,150193,4,'actor',NULL,'[\"Oliver Oldfield\"]'),(779982,2204480,5,'director',NULL,NULL),(779982,132788,6,'producer','producer',NULL),(779982,446935,7,'composer',NULL,NULL),(779982,89459,8,'cinematographer','director of photography',NULL),(779982,687617,9,'editor',NULL,NULL),(780504,686887,10,'producer','producer',NULL),(780504,331516,1,'actor',NULL,'[\"Driver\"]'),(780504,1659547,2,'actress',NULL,'[\"Irene\"]'),(780504,186505,3,'actor',NULL,'[\"Shannon\"]'),(780504,983,4,'actor',NULL,'[\"Bernie Rose\"]'),(780504,716347,5,'director',NULL,NULL),(780504,24925,6,'writer','screenplay',NULL),(780504,2201245,7,'writer','book',NULL),(780504,1490949,8,'producer','producer',NULL),(780504,657561,9,'producer','producer',NULL),(780511,276059,10,'producer','producer',NULL),(780511,134,1,'actor',NULL,'[\"Frank Goode\"]'),(780511,295,2,'actress',NULL,'[\"Amy\"]'),(780511,5377,3,'actor',NULL,'[\"Robert\"]'),(780511,106,4,'actress',NULL,'[\"Rosie\"]'),(780511,428600,5,'director',NULL,NULL),(780511,868153,6,'writer','original screenplay',NULL),(780511,346096,7,'writer','original screenplay',NULL),(780511,211160,8,'writer','original screenplay',NULL),(780511,147603,9,'producer','producer',NULL),(780521,3756395,10,'writer','story inspired in part by \"The Frog Princess\" by',NULL),(780521,741242,1,'actress',NULL,'[\"Tiana\"]'),(780521,202966,2,'actor',NULL,'[\"Dr. Facilier\"]'),(780521,1856,3,'actress',NULL,'[\"Eudora\"]'),(780521,4797,4,'actor',NULL,'[\"Prince Naveen\"]'),(780521,166256,5,'director',NULL,NULL),(780521,615780,6,'director',NULL,NULL),(780521,258627,7,'writer','story by',NULL),(780521,649663,8,'writer','story by',NULL),(780521,972395,9,'writer','screenplay by',NULL),(780536,339856,10,'editor',NULL,NULL),(780536,268199,1,'actor',NULL,'[\"Ray\"]'),(780536,322407,2,'actor',NULL,'[\"Ken\"]'),(780536,1354,3,'actor',NULL,'[\"Priest\"]'),(780536,77397,4,'actress',NULL,'[\"Natalie\"]'),(780536,1732981,5,'director',NULL,NULL),(780536,110357,6,'producer','producer',NULL),(780536,194446,7,'producer','producer',NULL),(780536,1980,8,'composer',NULL,NULL),(780536,117381,9,'cinematographer','director of photography',NULL),(780565,209364,10,'cinematographer','director of photography',NULL),(780565,632385,1,'actress',NULL,'[\"Eva\"]'),(780565,880554,2,'actor',NULL,'[\"Iñaki\"]'),(780565,904808,3,'actress',NULL,'[\"Inés\"]'),(780565,554614,4,'actor',NULL,'[\"Manuel\"]'),(780565,93081,5,'director',NULL,NULL),(780565,2459306,6,'writer','screenplay',NULL),(780565,2396645,7,'producer','producer',NULL),(780565,305623,8,'producer','executive producer',NULL),(780565,324184,9,'composer',NULL,NULL),(780583,1329898,10,'cinematographer',NULL,NULL),(780583,158306,1,'actor',NULL,'[\"Truman Burrows\"]'),(780583,1331851,2,'actress',NULL,'[\"Megan\"]'),(780583,640413,3,'actor',NULL,'[\"Frank\"]'),(780583,879186,4,'actor',NULL,'[\"Paul Judd\"]'),(780583,859499,5,'director',NULL,NULL),(780583,2458358,6,'writer',NULL,NULL),(780583,1310911,7,'writer',NULL,NULL),(780583,1014041,8,'producer','producer',NULL),(780583,910996,9,'composer',NULL,NULL),(780607,1730211,10,'production_designer',NULL,NULL),(780607,1768017,1,'actress',NULL,'[\"Mya Denton\"]'),(780607,919482,2,'actor',NULL,'[\"Ben Capstone\"]'),(780607,1407651,3,'actor',NULL,'[\"Clark\"]'),(780607,628897,4,'actor',NULL,'[\"Rod\"]'),(780607,1410159,5,'director',NULL,NULL),(780607,124112,6,'director',NULL,NULL),(780607,1402180,7,'director',NULL,NULL),(780607,1402995,8,'producer','producer',NULL),(780607,1705911,9,'composer',NULL,NULL),(780608,1368309,10,'producer','producer',NULL),(780608,267506,1,'actress',NULL,'[\"Jane F.\"]'),(780608,1024677,2,'actor',NULL,'[\"Brevin\"]'),(780608,111013,3,'actor',NULL,'[\"Steve the Dealer\"]'),(780608,1975,4,'self',NULL,'[\"Self\"]'),(780608,777,5,'director',NULL,NULL),(780608,353630,6,'writer','written by',NULL),(780608,326512,7,'producer','producer',NULL),(780608,534893,8,'producer','producer',NULL),(780608,1834530,9,'producer','producer',NULL),(780622,43069,10,'production_designer',NULL,NULL),(780622,1422176,1,'actress',NULL,'[\"Dawn\"]'),(780622,378161,2,'actor',NULL,'[\"Brad\"]'),(780622,656929,3,'actor',NULL,'[\"Dr. Godfrey\"]'),(780622,2082776,4,'actor',NULL,'[\"Tobey\"]'),(780622,509033,5,'director',NULL,NULL),(780622,682600,6,'producer','producer',NULL),(780622,589217,7,'composer',NULL,NULL),(780622,374935,8,'cinematographer','director of photography',NULL),(780622,484498,9,'editor',NULL,NULL),(780653,835959,10,'producer','producer',NULL),(780653,1125,1,'actor',NULL,'[\"Lawrence Talbot\"]'),(780653,164,2,'actor',NULL,'[\"Sir John Talbot\"]'),(780653,1289434,3,'actress',NULL,'[\"Gwen Conliffe\"]'),(780653,581163,4,'actor',NULL,'[\"Ben Talbot\"]'),(780653,2653,5,'director',NULL,NULL),(780653,1825,6,'writer','screenplay',NULL),(780653,783100,7,'writer','screenplay',NULL),(780653,802561,8,'writer',NULL,NULL),(780653,199733,9,'producer','producer',NULL),(782399,3367,10,'composer',NULL,NULL),(782399,1841,1,'actor',NULL,'[\"Harold Thompson\"]'),(782399,5243,2,'actress',NULL,'[\"Celia Fuller\"]'),(782399,444832,3,'actor',NULL,'[\"David Fuller\"]'),(782399,2173573,4,'actress',NULL,'[\"Sarah\"]'),(782399,484,5,'director',NULL,NULL),(782399,308376,6,'writer','creator',NULL),(782399,360062,7,'writer','written by',NULL),(782399,724678,8,'producer','producer',NULL),(782399,746614,9,'producer','producer',NULL),(782867,2925,10,'editor',NULL,NULL),(782867,272,1,'actress',NULL,'[\"Anouk\"]'),(782867,119804,2,'actress',NULL,'[\"Noemi\"]'),(782867,2228509,3,'actress',NULL,'[\"Michel\"]'),(782867,1139133,4,'actor',NULL,'[\"Yanki\"]'),(782867,383605,5,'director',NULL,NULL),(782867,2236481,6,'writer',NULL,NULL),(782867,797834,7,'producer','producer',NULL),(782867,2468490,8,'composer',NULL,NULL),(782867,9142,9,'cinematographer','director of photography',NULL),(783233,916986,10,'producer','producer',NULL),(783233,461136,1,'actress',NULL,'[\"Cecilia Tallis\"]'),(783233,564215,2,'actor',NULL,'[\"Robbie Turner\"]'),(783233,950,3,'actress',NULL,'[\"Grace Turner\"]'),(783233,1519680,4,'actress',NULL,'[\"Briony Tallis, aged 13\"]'),(783233,942504,5,'director',NULL,NULL),(783233,568605,6,'writer','novel',NULL),(783233,358960,7,'writer','screenplay',NULL),(783233,79677,8,'producer','producer',NULL),(783233,271479,9,'producer','producer',NULL),(783238,1368309,10,'producer','producer',NULL),(783238,1057,1,'actress',NULL,'[\"Arden\"]'),(783238,5261,2,'actress',NULL,'[\"Krista\"]'),(783238,1315,3,'actress',NULL,'[\"Melora\"]'),(783238,1453,4,'actress',NULL,'[\"Arden\'s Mother\"]'),(783238,597673,5,'director',NULL,NULL),(783238,1093515,6,'producer','producer',NULL),(783238,524342,7,'producer','producer',NULL),(783238,742347,8,'producer','producer',NULL),(783238,1834530,9,'producer','producer',NULL),(783640,2983515,10,'producer','producer',NULL),(783640,1659221,1,'actor',NULL,'[\"Scott Huffman\"]'),(783640,837223,2,'actress',NULL,'[\"Tara Huffman\"]'),(783640,8313926,3,'actor',NULL,'[\"Luke Huffman\"]'),(783640,4986,4,'actress',NULL,'[\"Celia O\'Neal\"]'),(783640,733149,5,'director',NULL,NULL),(783640,11104,6,'producer','producer',NULL),(783640,2471372,7,'producer','producer',NULL),(783640,91579,8,'producer','producer',NULL),(783640,7105194,9,'producer','producer',NULL),(784972,905603,10,'editor',NULL,NULL),(784972,4715,1,'actor',NULL,'[\"John Solomon\"]'),(784972,287182,2,'actor',NULL,'[\"Dean Solomon\"]'),(784972,278979,3,'actress',NULL,'[\"Michelle\"]'),(784972,564277,4,'actor',NULL,'[\"James\"]'),(784972,644022,5,'director',NULL,NULL),(784972,73554,6,'producer','producer',NULL),(784972,921492,7,'producer','producer',NULL),(784972,1067825,8,'composer',NULL,NULL),(784972,5891,9,'cinematographer',NULL,NULL),(785002,769855,10,'editor',NULL,NULL),(785002,75087,1,'actress',NULL,'[\"Elisabeth Staf\"]'),(785002,526581,2,'actress',NULL,'[\"Gudrun Nyman, car-park attendant\"]'),(785002,617515,3,'actor',NULL,'[\"Åke Nyman\"]'),(785002,704708,4,'actor',NULL,'[\"Henrik Ek\"]'),(785002,638324,5,'director',NULL,NULL),(785002,533826,6,'producer','producer',NULL),(785002,635954,7,'producer','producer',NULL),(785002,28275,8,'composer',NULL,NULL),(785002,425916,9,'cinematographer',NULL,NULL),(785007,295302,10,'editor',NULL,NULL),(785007,519456,1,'actress',NULL,'[\"Kate\"]'),(785007,748620,2,'actor',NULL,'[\"Henry\"]'),(785007,1128572,3,'actress',NULL,'[\"Ashley\"]'),(785007,4755,4,'actor',NULL,'[\"Dan\"]'),(785007,523094,5,'director',NULL,NULL),(785007,112189,6,'producer','producer',NULL),(785007,755911,7,'producer','producer',NULL),(785007,457598,8,'composer',NULL,NULL),(785007,7037,9,'cinematographer','director of photography',NULL),(785532,746614,10,'producer','producer',NULL),(785532,905157,1,'actress',NULL,'[\"Angelique Burcell\"]'),(785532,891275,2,'actress',NULL,'[\"Kim\"]'),(785532,275417,3,'actor',NULL,'[\"Alex O\'Shea\"]'),(785532,346607,4,'actor',NULL,'[\"Kiernan\"]'),(785532,118,5,'director',NULL,NULL),(785532,308376,6,'writer','creator',NULL),(785532,1055848,7,'writer','written by',NULL),(785532,1056756,8,'writer','written by',NULL),(785532,724678,9,'producer','producer',NULL),(785533,746614,10,'producer','producer',NULL),(785533,1137028,1,'actress',NULL,'[\"Virginia Poe\"]'),(785533,1062,2,'actor',NULL,'[\"Edgar Allan Poe\"]'),(785533,846488,3,'actor',NULL,'[\"George Graham\"]'),(785533,302466,4,'actor',NULL,'[\"Barman\"]'),(785533,2340,5,'director',NULL,NULL),(785533,308376,6,'writer','creator',NULL),(785533,660016,7,'writer','teleplay',NULL),(785533,590,8,'writer','short story \"The Black Cat\"',NULL),(785533,724678,9,'producer','producer',NULL),(787474,197767,10,'writer','story adapted by',NULL),(787474,1426,1,'actor',NULL,'[\"Snatcher\"]'),(787474,364813,2,'actor',NULL,'[\"Lord Portley-Rind\"]'),(787474,296545,3,'actor',NULL,'[\"Mr. Trout\"]'),(787474,1547964,4,'actor',NULL,'[\"Mr. Pickles\"]'),(787474,30253,5,'director',NULL,NULL),(787474,820934,6,'director',NULL,NULL),(787474,109267,7,'writer','screenplay',NULL),(787474,1106082,8,'writer','screenplay',NULL),(787474,2223296,9,'writer','novel \"Here Be Monsters!\"',NULL),(787475,242491,10,'cinematographer','director of photography',NULL),(787475,1676221,1,'actor',NULL,'[\"Rod Kimble\"]'),(787475,279545,2,'actress',NULL,'[\"Denise\"]'),(787475,574534,3,'actor',NULL,'[\"Frank Powell\"]'),(787475,1672246,4,'actor',NULL,'[\"Kevin Powell\"]'),(787475,1676223,5,'director',NULL,NULL),(787475,103702,6,'writer','written by',NULL),(787475,326415,7,'producer','producer',NULL),(787475,584427,8,'producer','producer',NULL),(787475,704909,9,'composer',NULL,NULL),(787523,445140,10,'editor',NULL,NULL),(787523,1974397,1,'actress',NULL,'[\"Jasira Maroun\"]'),(787523,1173,2,'actor',NULL,'[\"Travis Vuoso\"]'),(787523,531589,3,'actor',NULL,'[\"Rifat Maroun\"]'),(787523,582149,4,'actor',NULL,'[\"Barry\"]'),(787523,50332,5,'director',NULL,NULL),(787523,1396563,6,'writer','novel \"Towelhead\"',NULL),(787523,394046,7,'producer','producer',NULL),(787523,2353,8,'composer',NULL,NULL),(787523,5875,9,'cinematographer','director of photography',NULL),(787524,3289797,10,'producer','producer',NULL),(787524,2353862,1,'actor',NULL,'[\"S. Ramanujan\"]'),(787524,460,2,'actor',NULL,'[\"G.H. Hardy\"]'),(787524,801674,3,'actor',NULL,'[\"Professor Cartwright\"]'),(787524,3832790,4,'actor',NULL,'[\"Narasimha\"]'),(787524,114226,5,'director',NULL,NULL),(787524,2216692,6,'writer','based on the book by',NULL),(787524,1853997,7,'producer','producer',NULL),(787524,696299,8,'producer','producer',NULL),(787524,1001945,9,'producer','producer',NULL),(790627,13808986,10,'composer',NULL,NULL),(790627,629855,1,'actress',NULL,'[\"Sara Quinn\"]'),(790627,791570,2,'actor',NULL,'[\"Subject #14\"]'),(790627,459,3,'actor',NULL,'[\"Professor Adams\",\"Subject #30\"]'),(790627,148964,4,'actor',NULL,'[\"Subject #15\"]'),(790627,1024677,5,'director',NULL,NULL),(790627,2234724,6,'writer','based on the book by',NULL),(790627,464286,7,'producer','producer',NULL),(790627,577336,8,'producer','producer',NULL),(790627,2229743,9,'producer','producer',NULL),(790628,70454,10,'producer','producer',NULL),(790628,136797,1,'actor',NULL,'[\"Burt Wonderstone\"]'),(790628,3769935,2,'actor',NULL,'[\"Young Anton\"]'),(790628,114,3,'actor',NULL,'[\"Anton Marvelton\"]'),(790628,3303074,4,'actor',NULL,'[\"Young Burt\"]'),(790628,769135,5,'director',NULL,NULL),(790628,326246,6,'writer','screenplay',NULL),(790628,197855,7,'writer','screenplay',NULL),(790628,2226753,8,'writer','story',NULL),(790628,1624685,9,'writer','story',NULL),(790636,126825,10,'cinematographer','director of photography',NULL),(790636,190,1,'actor',NULL,'[\"Ron Woodroof\"]'),(790636,4950,2,'actress',NULL,'[\"Eve\"]'),(790636,1467,3,'actor',NULL,'[\"Rayon\"]'),(790636,1872,4,'actor',NULL,'[\"Tucker\"]'),(790636,885249,5,'director',NULL,NULL),(790636,1258965,6,'writer','written by',NULL),(790636,2214893,7,'writer','written by',NULL),(790636,107509,8,'producer','producer',NULL),(790636,292647,9,'producer','producer',NULL),(790686,622782,10,'composer',NULL,NULL),(790686,662,1,'actor',NULL,'[\"Ben Carson\"]'),(790686,1745736,2,'actress',NULL,'[\"Amy Carson\"]'),(790686,5442,3,'actress',NULL,'[\"Angela Carson\"]'),(790686,2624602,4,'actor',NULL,'[\"Michael Carson\"]'),(790686,14960,5,'director',NULL,NULL),(790686,505183,6,'writer','screenplay',NULL),(790686,1193005,7,'writer','Korean motion picture \"Into the Mirror\"',NULL),(790686,586968,8,'producer','producer',NULL),(790686,827913,9,'producer','producer',NULL),(790712,489059,10,'composer',NULL,NULL),(790712,4936,1,'actor',NULL,'[\"Staff Sergeant Will Montgomery\"]'),(790712,608090,2,'actress',NULL,'[\"Olivia Pitterson\"]'),(790712,437,3,'actor',NULL,'[\"Captain Tony Stone\"]'),(790712,540441,4,'actress',NULL,'[\"Kelly\"]'),(790712,610219,5,'director',NULL,NULL),(790712,131947,6,'writer','written by',NULL),(790712,330428,7,'producer','producer',NULL),(790712,1224078,8,'producer','producer',NULL),(790712,1896110,9,'producer','producer',NULL),(790724,469145,10,'composer',NULL,NULL),(790724,129,1,'actor',NULL,'[\"Reacher\"]'),(790724,683253,2,'actress',NULL,'[\"Helen\"]'),(790724,420955,3,'actor',NULL,'[\"Rodin\"]'),(790724,1348,4,'actor',NULL,'[\"The Zec\"]'),(790724,3160,5,'director',NULL,NULL),(790724,1676193,6,'writer','based on the book \"One Shot\" by',NULL),(790724,1447370,7,'producer','producer',NULL),(790724,506013,8,'producer','producer',NULL),(790724,906048,9,'producer','producer',NULL),(790736,9592688,10,'writer','comic book',NULL),(790736,5351,1,'actor',NULL,'[\"Nick\"]'),(790736,313,2,'actor',NULL,'[\"Roy\"]'),(790736,571,3,'actress',NULL,'[\"Proctor\"]'),(790736,102,4,'actor',NULL,'[\"Hayes\"]'),(790736,777881,5,'director',NULL,NULL),(790736,6534,6,'writer','screenplay by',NULL),(790736,542062,7,'writer','screenplay by',NULL),(790736,229694,8,'writer','story by',NULL),(790736,6997,9,'writer','comic book created by',NULL),(790770,692080,10,'producer','producer',NULL),(790770,332,1,'actor',NULL,'[\"Miles Davis\"]'),(790770,1538675,2,'actress',NULL,'[\"Frances Taylor\"]'),(790770,191,3,'actor',NULL,'[\"Dave Braden\"]'),(790770,836121,4,'actor',NULL,'[\"Harper\"]'),(790770,47076,5,'writer','screenplay',NULL),(790770,729151,6,'writer','story',NULL),(790770,929349,7,'writer','story',NULL),(790770,2216463,8,'producer','producer',NULL),(790770,1202917,9,'producer','producer',NULL),(790781,225328,10,'producer','producer',NULL),(790781,814259,1,'actress',NULL,'[\"Wendy Wu\"]'),(790781,1259103,2,'actor',NULL,'[\"Shen\"]'),(790781,160930,3,'actress',NULL,'[\"Nina\"]'),(790781,2014390,4,'actor',NULL,'[\"Peter\"]'),(790781,481910,5,'director',NULL,NULL),(790781,156588,6,'writer','written by',NULL),(790781,598996,7,'writer','written by',NULL),(790781,780420,8,'writer','written by',NULL),(790781,519642,9,'writer','written by',NULL),(792965,653051,10,'production_designer',NULL,NULL),(792965,851582,1,'actress',NULL,'[\"Camille\"]'),(792965,133899,2,'actor',NULL,'[\"Franck\"]'),(792965,830802,3,'actor',NULL,'[\"Philibert\"]'),(792965,78097,4,'actress',NULL,'[\"Paulette\"]'),(792965,1945,5,'director',NULL,NULL),(792965,1674495,6,'writer','novel',NULL),(792965,998831,7,'composer',NULL,NULL),(792965,323707,8,'cinematographer',NULL,NULL),(792965,350726,9,'editor',NULL,NULL),(795338,2585049,10,'composer',NULL,NULL),(795338,792198,1,'actress',NULL,'[\"Barbie\"]'),(795338,249550,2,'actress',NULL,'[\"Courtney\"]'),(795338,856197,3,'actress',NULL,'[\"Tia\",\"Passing Girl #2\"]'),(795338,953065,4,'actress',NULL,'[\"Raquelle\"]'),(795338,283888,5,'director',NULL,NULL),(795338,20489,6,'writer','written by',NULL),(795338,1043325,7,'writer','based on the character created by',NULL),(795338,1050211,8,'writer','written by',NULL),(795338,434616,9,'producer','producer',NULL),(795351,91686,10,'cinematographer','director of photography',NULL),(795351,250,1,'actress',NULL,'[\"Emily Jenkins\"]'),(795351,574534,2,'actor',NULL,'[\"Detective Barron\"]'),(795351,272706,3,'actress',NULL,'[\"Lilith Sullivan\"]'),(795351,177896,4,'actor',NULL,'[\"Doug\"]'),(795351,23355,5,'director',NULL,NULL),(795351,1242522,6,'writer','written by',NULL),(795351,326512,7,'producer','producer',NULL),(795351,592746,8,'producer','producer',NULL),(795351,110042,9,'composer',NULL,NULL),(795368,680355,10,'producer','producer',NULL),(795368,532193,1,'actor',NULL,'[\"Daniel\"]'),(795368,227759,2,'actor',NULL,'[\"Peter\"]'),(795368,1971,3,'actor',NULL,'[\"Justin\"]'),(795368,369954,4,'actress',NULL,'[\"Jane\"]'),(795368,568,5,'director',NULL,NULL),(795368,1918877,6,'writer','written by',NULL),(795368,343266,7,'producer','producer',NULL),(795368,454004,8,'producer','producer',NULL),(795368,539803,9,'producer','producer',NULL),(795421,880744,10,'composer',NULL,NULL),(795421,658,1,'actress',NULL,'[\"Donna\"]'),(795421,112,2,'actor',NULL,'[\"Sam\"]'),(795421,1086543,3,'actress',NULL,'[\"Sophie\"]'),(795421,1745,4,'actor',NULL,'[\"Bill\"]'),(795421,1630273,5,'director',NULL,NULL),(795421,424735,6,'writer','screenplay',NULL),(795421,187050,7,'producer','producer',NULL),(795421,324556,8,'producer','producer',NULL),(795421,27630,9,'composer',NULL,NULL),(795439,773156,10,'production_designer',NULL,NULL),(795439,1612,1,'actor',NULL,'[\"Hudson Milbank\"]'),(795439,1211488,2,'actress',NULL,'[\"Sara Harrison\"]'),(795439,1629,3,'actor',NULL,'[\"Tom\"]'),(795439,348409,4,'actor',NULL,'[\"Dr. Townshend\"]'),(795439,325214,5,'director',NULL,NULL),(795439,1191033,6,'producer','producer',NULL),(795439,3972,7,'composer',NULL,NULL),(795439,824470,8,'cinematographer','director of photography',NULL),(795439,936535,9,'editor',NULL,NULL),(796302,1975750,10,'producer','producer',NULL),(796302,83564,1,'actress',NULL,'[\"Melissa Rowan\"]'),(796302,96637,2,'actor',NULL,'[\"Cook\"]'),(796302,2398362,3,'actress',NULL,'[\"Health Teacher\"]'),(796302,3100210,4,'actor',NULL,'[\"Adam Beltran\"]'),(796302,1565107,5,'director',NULL,NULL),(796302,218100,6,'producer','producer',NULL),(796302,2244662,7,'producer','producer',NULL),(796302,239299,8,'producer','producer',NULL),(796302,491,9,'producer','producer',NULL),(796307,274668,10,'editor',NULL,NULL),(796307,220240,1,'actor',NULL,'[\"Enrique\"]'),(796307,215487,2,'actress',NULL,'[\"Rosario\"]'),(796307,1739844,3,'actor',NULL,'[\"Carlos Reyes \'Carlitos\'\"]'),(796307,953197,4,'actress',NULL,'[\"Alicia\"]'),(796307,726638,5,'director',NULL,NULL),(796307,897788,6,'writer','written by',NULL),(796307,56885,7,'producer','producer',NULL),(796307,798002,8,'composer',NULL,NULL),(796307,889678,9,'cinematographer',NULL,NULL),(796366,315974,10,'composer',NULL,NULL),(796366,1517976,1,'actor',NULL,'[\"Kirk\"]'),(796366,704270,2,'actor',NULL,'[\"Spock\"]'),(796366,670408,3,'actor',NULL,'[\"Scotty\"]'),(796366,559,4,'actor',NULL,'[\"Spock Prime\"]'),(796366,9190,5,'director',NULL,NULL),(796366,649460,6,'writer','written by',NULL),(796366,476064,7,'writer','written by',NULL),(796366,734472,8,'writer','television series \"Star Trek\"',NULL),(796366,511541,9,'producer','producer',NULL),(799934,475578,10,'cinematographer',NULL,NULL),(799934,85312,1,'actor',NULL,'[\"Jerry\"]'),(799934,80049,2,'actor',NULL,'[\"Mike\"]'),(799934,418,3,'actor',NULL,'[\"Mr. Fletcher\"]'),(799934,1201,4,'actress',NULL,'[\"Miss Falewicz\"]'),(799934,327273,5,'director',NULL,NULL),(799934,1028107,6,'producer','producer',NULL),(799934,284577,7,'producer','producer',NULL),(799934,76259,8,'composer',NULL,NULL),(799934,1738178,9,'composer',NULL,NULL),(799949,697953,10,'editor',NULL,NULL),(799949,671980,1,'actor',NULL,'[\"Edward\"]'),(799949,177639,2,'actress',NULL,'[\"White Bitch\"]'),(799949,929609,3,'actor',NULL,'[\"Aslo\"]'),(799949,968405,4,'actor',NULL,'[\"Peter Pervertsky\"]'),(799949,294997,5,'director',NULL,NULL),(799949,783536,6,'director',NULL,NULL),(799949,771490,7,'producer','producer',NULL),(799949,790481,8,'composer',NULL,NULL),(799949,561053,9,'cinematographer','director of photography',NULL),(800039,449820,10,'editor',NULL,NULL),(800039,68338,1,'actress',NULL,'[\"Sarah Marshall\"]'),(800039,781981,2,'actor',NULL,'[\"Peter Bretter\"]'),(800039,748620,3,'actor',NULL,'[\"Chuck\"]'),(800039,5109,4,'actress',NULL,'[\"Rachel Jansen\"]'),(800039,831557,5,'director',NULL,NULL),(800039,31976,6,'producer','producer',NULL),(800039,732024,7,'producer','producer',NULL),(800039,1015867,8,'composer',NULL,NULL),(800039,22540,9,'cinematographer','director of photography',NULL),(800080,270559,10,'producer','producer',NULL),(800080,1570,1,'actor',NULL,'[\"Bruce Banner\"]'),(800080,239,2,'actress',NULL,'[\"Betty Ross\"]'),(800080,619,3,'actor',NULL,'[\"Emil Blonsky\"]'),(800080,458,4,'actor',NULL,'[\"General \'Thunderbolt\' Ross\"]'),(800080,504642,5,'director',NULL,NULL),(800080,672015,6,'writer','screenplay',NULL),(800080,498278,7,'writer','Marvel comic book',NULL),(800080,456158,8,'writer','Marvel comic book',NULL),(800080,32696,9,'producer','producer',NULL),(800240,657561,10,'producer','producer',NULL),(800240,413168,1,'actor',NULL,'[\"Wyatt Bose\"]'),(800240,191,2,'actor',NULL,'[\"Jonathan McQuarry\"]'),(800240,931329,3,'actress',NULL,'[\"S\"]'),(800240,22883,4,'actor',NULL,'[\"Lawyer #1\"]'),(800240,2251947,5,'director',NULL,NULL),(800240,93560,6,'writer','written by',NULL),(800240,107509,7,'producer','producer',NULL),(800240,124239,8,'producer','producer',NULL),(800240,248178,9,'producer','producer',NULL),(800241,1252389,10,'editor',NULL,NULL),(800241,437,1,'actor',NULL,'[\"Roy\"]'),(800241,607865,2,'actress',NULL,'[\"Jessie\"]'),(800241,1426,3,'actor',NULL,'[\"Grinko\"]'),(800241,544718,4,'actress',NULL,'[\"Abby\"]'),(800241,26442,5,'director',NULL,NULL),(800241,175877,6,'writer','written by',NULL),(800241,273327,7,'producer','executive producer',NULL),(800241,897350,8,'composer',NULL,NULL),(800241,319885,9,'cinematographer','director of photography',NULL),(800308,385442,10,'editor',NULL,NULL),(800308,438,1,'actor',NULL,'[\"Virgil Cole\"]'),(800308,1557,2,'actor',NULL,'[\"Everett Hitch\"]'),(800308,250,3,'actress',NULL,'[\"Allison French\"]'),(800308,460,4,'actor',NULL,'[\"Randall Bragg\"]'),(800308,461446,5,'writer','screenplay',NULL),(800308,662582,6,'writer','novel',NULL),(800308,805678,7,'producer','producer',NULL),(800308,63618,8,'composer',NULL,NULL),(800308,5871,9,'cinematographer','director of photography',NULL),(800318,313457,10,'producer','producer',NULL),(800318,712368,1,'actress',NULL,'[\"Galleria\"]'),(800318,1169619,2,'actress',NULL,'[\"Chanel\"]'),(800318,117009,3,'actress',NULL,'[\"Dorinda\"]'),(800318,1170124,4,'actress',NULL,'[\"Aquanetta\"]'),(800318,650905,5,'director',NULL,NULL),(800318,2362680,6,'writer','written by',NULL),(800318,851945,7,'writer','written by',NULL),(800318,1339000,8,'writer','series of books',NULL),(800318,260402,9,'producer','producer',NULL),(800320,209326,10,'producer','producer',NULL),(800320,941777,1,'actor',NULL,'[\"Perseus\"]'),(800320,553,2,'actor',NULL,'[\"Zeus\"]'),(800320,146,3,'actor',NULL,'[\"Hades\"]'),(800320,2076,4,'actor',NULL,'[\"Calibos\",\"Acrisius\"]'),(800320,504642,5,'director',NULL,NULL),(800320,2012438,6,'writer','screenplay',NULL),(800320,6534,7,'writer','screenplay',NULL),(800320,542062,8,'writer','screenplay',NULL),(800320,189117,9,'writer',NULL,NULL),(800369,698873,10,'writer','story',NULL),(800369,1165110,1,'actor',NULL,'[\"Thor\"]'),(800369,164,2,'actor',NULL,'[\"Odin\"]'),(800369,204,3,'actress',NULL,'[\"Jane Foster\"]'),(800369,1089991,4,'actor',NULL,'[\"Loki\"]'),(800369,110,5,'director',NULL,NULL),(800369,1005420,6,'writer','screenplay',NULL),(800369,826714,7,'writer','screenplay',NULL),(800369,668309,8,'writer','screenplay',NULL),(800369,833089,9,'writer','story',NULL),(801526,1409133,10,'editor',NULL,NULL),(801526,680983,1,'actor',NULL,'[\"Tracey Berkowitz\"]'),(801526,2299669,2,'actor',NULL,'[\"Sonny Berkowitz\"]'),(801526,199495,3,'actor',NULL,'[\"Lance\"]'),(801526,169218,4,'actor',NULL,'[\"Mr. Berkowitz\"]'),(801526,567680,5,'director',NULL,NULL),(801526,2267721,6,'writer','written by',NULL),(801526,1281453,7,'producer','producer',NULL),(801526,1589571,8,'composer',NULL,NULL),(801526,181767,9,'cinematographer','director of photography',NULL),(803096,746273,10,'producer','producer',NULL),(803096,1379938,1,'actor',NULL,'[\"Anduin Lothar\"]'),(803096,1745736,2,'actress',NULL,'[\"Garona\"]'),(803096,4936,3,'actor',NULL,'[\"Medivh\"]'),(803096,1002641,4,'actor',NULL,'[\"Llane Wrynn\"]'),(803096,1512910,5,'director',NULL,NULL),(803096,495378,6,'writer','written by',NULL),(803096,1568035,7,'producer','producer',NULL),(803096,308672,8,'producer','producer',NULL),(803096,419169,9,'producer','producer',NULL),(804452,2014123,10,'producer','producer',NULL),(804452,795981,1,'actress',NULL,'[\"Cloe\"]'),(804452,663546,2,'actress',NULL,'[\"Jade\"]'),(804452,2503064,3,'actress',NULL,'[\"Sasha\"]'),(804452,2062561,4,'actress',NULL,'[\"Yasmin\"]'),(804452,573732,5,'director',NULL,NULL),(804452,418070,6,'writer','screenplay',NULL),(804452,1089476,7,'writer','story',NULL),(804452,251736,8,'writer','story',NULL),(804452,32696,9,'producer','producer',NULL),(804497,1589571,10,'composer',NULL,NULL),(804497,1507857,1,'actor',NULL,'[\"Craig\"]'),(804497,302108,2,'actor',NULL,'[\"Bobby\"]'),(804497,731075,3,'actress',NULL,'[\"Noelle\"]'),(804497,2911881,4,'actress',NULL,'[\"Alyssa\"]'),(804497,1349818,5,'director',NULL,NULL),(804497,281396,6,'director',NULL,NULL),(804497,2272408,7,'writer','novel',NULL),(804497,1878845,8,'producer','producer',NULL),(804497,592746,9,'producer','producer',NULL),(804513,1996020,10,'cinematographer',NULL,NULL),(804513,1130046,1,'actor',NULL,'[\"Tomoya Kishida\"]'),(804513,1392075,2,'actress',NULL,'[\"Aoi Sato\"]'),(804513,1066974,3,'actress',NULL,'[\"Kana Sato\"]'),(804513,1239866,4,'actress',NULL,'[\"Kyoko Asakura\"]'),(804513,474948,5,'director',NULL,NULL),(804513,1860692,6,'writer','story',NULL),(804513,2641763,7,'writer','screenplay',NULL),(804513,412517,8,'writer','screenplay',NULL),(804513,2641682,9,'composer',NULL,NULL),(804516,354453,10,'composer',NULL,NULL),(804516,629697,1,'actress',NULL,'[\"Angela\"]'),(804516,4747,2,'actor',NULL,'[\"Thomas\"]'),(804516,721951,3,'actor',NULL,'[\"Mr. Harper\"]'),(804516,15370,4,'actor',NULL,'[\"Karl\"]'),(804516,451076,5,'director',NULL,NULL),(804516,14960,6,'writer','story by',NULL),(804516,505183,7,'writer','story by',NULL),(804516,270549,8,'producer','producer',NULL),(804516,905163,9,'producer','producer',NULL),(804529,139764,10,'editor',NULL,NULL),(804529,671526,1,'actor',NULL,'[\"Memo Cruz\"]'),(804529,7237,2,'actress',NULL,'[\"Luz Martínez\"]'),(804529,889846,3,'actor',NULL,'[\"Rudy Ramirez\"]'),(804529,1014340,4,'actress',NULL,'[\"Dolores Cruz\"]'),(804529,1642796,5,'director',NULL,NULL),(804529,726935,6,'writer','screenplay',NULL),(804529,106835,7,'producer','producer',NULL),(804529,354453,8,'composer',NULL,NULL),(804529,727789,9,'cinematographer','director of photography',NULL),(804539,1722044,10,'composer',NULL,NULL),(804539,708,1,'actor',NULL,'[\"Seb\"]'),(804539,413238,2,'actress',NULL,'[\"Chill\"]'),(804539,1268047,3,'actress',NULL,'[\"Phoebe\"]'),(804539,55682,4,'actress',NULL,'[\"Rachel\"]'),(804539,1089472,5,'director',NULL,NULL),(804539,1132222,6,'producer','producer',NULL),(804539,463325,7,'producer','producer',NULL),(804539,700660,8,'producer','producer',NULL),(804539,3176824,9,'composer',NULL,NULL),(805420,423632,10,'cinematographer','director of photography',NULL),(805420,500739,1,'actor',NULL,'[\"Rob Hanisey\"]'),(805420,513522,2,'actress',NULL,'[\"Nancy Bloom\"]'),(805420,915093,3,'actor',NULL,'[\"Bruce Sweetland\"]'),(805420,502,4,'actor',NULL,'[\"Everett Neely\"]'),(805420,308376,5,'director',NULL,NULL),(805420,850,6,'writer','based on a story by',NULL),(805420,724678,7,'producer','producer',NULL),(805420,746614,8,'producer','producer',NULL),(805420,51659,9,'composer',NULL,NULL),(805564,868128,10,'composer',NULL,NULL),(805564,331516,1,'actor',NULL,'[\"Lars Lindstrom\"]'),(805564,607865,2,'actress',NULL,'[\"Karin\"]'),(805564,773973,3,'actor',NULL,'[\"Gus\"]'),(805564,717395,4,'actor',NULL,'[\"Reverend Bock\"]'),(805564,318916,5,'director',NULL,NULL),(805564,1280672,6,'writer','written by',NULL),(805564,2583828,7,'producer','producer',NULL),(805564,131625,8,'producer','producer',NULL),(805564,454004,9,'producer','producer',NULL),(805647,2267950,10,'producer','producer',NULL),(805647,4266,1,'actress',NULL,'[\"Grand High Witch\"]'),(805647,818055,2,'actress',NULL,'[\"Grandma\"]'),(805647,1804,3,'actor',NULL,'[\"Mr Stringer\"]'),(805647,1674,4,'actor',NULL,'[\"Older Hero Mouse\"]'),(805647,709,5,'director',NULL,NULL),(805647,1244069,6,'writer','screenplay by',NULL),(805647,868219,7,'writer','screenplay by',NULL),(805647,1094,8,'writer','based on the book by',NULL),(805647,190859,9,'producer','producer',NULL),(806027,1293939,10,'producer','producer',NULL),(806027,432428,1,'actress',NULL,'[\"Saya\"]'),(806027,1935292,2,'actress',NULL,'[\"Alice McKee\"]'),(806027,192377,3,'actor',NULL,'[\"Michael Harrison\"]'),(806027,270625,4,'actor',NULL,'[\"Luke\"]'),(806027,619599,5,'director',NULL,NULL),(806027,159443,6,'writer','screenplay',NULL),(806027,436784,7,'writer','character',NULL),(806027,1056267,8,'writer','character',NULL),(806027,465067,9,'producer','producer',NULL),(806203,213424,10,'cinematographer','director of photography',NULL),(806203,1517976,1,'actor',NULL,'[\"Brian\"]'),(806203,5305,2,'actress',NULL,'[\"Bobby\"]'),(806203,1086384,3,'actor',NULL,'[\"Danny\"]'),(806203,885840,4,'actress',NULL,'[\"Kate\"]'),(806203,665041,5,'director',NULL,NULL),(806203,1883612,6,'director',NULL,NULL),(806203,29562,7,'producer','producer',NULL),(806203,106835,8,'producer','producer',NULL),(806203,621829,9,'composer',NULL,NULL),(806940,1180915,10,'cinematographer',NULL,NULL),(806940,1172285,1,'actress',NULL,'[\"Adela León\"]'),(806940,345999,2,'actress',NULL,'[\"Macarena \'Maca\' Ribera\"]'),(806940,1743166,3,'actress',NULL,'[\"Pía\"]'),(806940,765251,4,'actress',NULL,'[\"Valentina\"]'),(806940,765250,5,'director',NULL,NULL),(806940,2266323,6,'writer','story',NULL),(806940,1435075,7,'writer','story',NULL),(806940,411517,8,'writer','story and screenplay',NULL),(806940,729202,9,'writer','screenwriter',NULL),(807054,606682,10,'editor',NULL,NULL),(807054,1663573,1,'actress',NULL,'[\"Angie\"]'),(807054,254927,2,'actress',NULL,'[\"Rose\"]'),(807054,2022053,3,'actor',NULL,'[\"Karol\"]'),(807054,2739469,4,'actor',NULL,'[\"Jamie\"]'),(807054,516360,5,'director',NULL,NULL),(807054,491956,6,'writer',NULL,NULL),(807054,639780,7,'producer','producer',NULL),(807054,6070,8,'composer',NULL,NULL),(807054,932590,9,'cinematographer',NULL,NULL),(807721,1233028,10,'producer','producer',NULL),(807721,12239,1,'actress',NULL,'[\"Batia\"]'),(807721,2275628,2,'actress',NULL,'[\"Girl\"]'),(807721,1495361,3,'actor',NULL,'[\"Michael\"]'),(807721,2274539,4,'actress',NULL,'[\"Keren\"]'),(807721,311700,5,'director',NULL,NULL),(807721,449316,6,'director',NULL,NULL),(807721,283936,7,'producer','producer',NULL),(807721,327729,8,'producer','producer',NULL),(807721,362844,9,'producer','producer',NULL),(807840,417970,1,'actor',NULL,'[\"Emo\"]'),(807840,314611,2,'actor',NULL,'[\"Proog\"]'),(807840,2274606,3,'director',NULL,NULL),(807840,2274196,4,'writer','screenplay',NULL),(807840,2273734,5,'writer','original concept',NULL),(807840,2278225,6,'writer','original concept',NULL),(807840,2276613,7,'composer',NULL,NULL),(807965,796449,1,'actor',NULL,'[\"Bernard Dufresne\"]'),(807965,1682928,2,'actor',NULL,'[\"Thomas Dufresne\"]'),(807965,2272242,3,'actress',NULL,'[\"Audrey Marion\"]'),(807965,317650,4,'actress',NULL,'[\"Solange Dufresne\"]'),(807965,487692,5,'director',NULL,NULL),(807965,292024,6,'producer','producer',NULL),(807965,888605,7,'producer','producer',NULL),(807965,92265,8,'composer',NULL,NULL),(807965,3518,9,'editor',NULL,NULL),(808151,4976,10,'producer','producer',NULL),(808151,158,1,'actor',NULL,'[\"Robert Langdon\"]'),(808151,191,2,'actor',NULL,'[\"Camerlengo Patrick McKenna\"]'),(808151,957909,3,'actress',NULL,'[\"Vittoria Vetra\"]'),(808151,1745,4,'actor',NULL,'[\"Commander Richter\"]'),(808151,165,5,'director',NULL,NULL),(808151,462895,6,'writer','screenplay',NULL),(808151,326040,7,'writer','screenplay',NULL),(808151,1467010,8,'writer','novel',NULL),(808151,130492,9,'producer','producer',NULL),(808230,197340,10,'cinematographer','director of photography',NULL),(808230,688143,1,'actor',NULL,'[\"Rémy Bassano\"]'),(808230,511943,2,'actress',NULL,'[\"Lucile\"]'),(808230,239816,3,'actor',NULL,'[\"Mutr van Kimé\"]'),(808230,169300,4,'actor',NULL,'[\"Rimé Kiel\"]'),(808230,191392,5,'writer','screenplay',NULL),(808230,4094947,6,'writer','dialogue adaptation for dubbing',NULL),(808230,419383,7,'producer','producer',NULL),(808230,440913,8,'producer','producer',NULL),(808230,6124,9,'composer',NULL,NULL),(808244,859877,10,'producer','producer',NULL),(808244,4754,1,'actress',NULL,'[\"Larita Whittaker\"]'),(808244,1602660,2,'actor',NULL,'[\"John Whittaker\"]'),(808244,218,3,'actress',NULL,'[\"Veronica Whittaker\"]'),(808244,147,4,'actor',NULL,'[\"Mr. Whittaker\"]'),(808244,254632,5,'director',NULL,NULL),(808244,423364,6,'writer','written by',NULL),(808244,2021,7,'writer','play',NULL),(808244,2274053,8,'producer','producer',NULL),(808244,827726,9,'producer','producer',NULL),(808357,6035,10,'composer',NULL,NULL),(808357,504897,1,'actor',NULL,'[\"Mr. Yee\"]'),(808357,2325018,2,'actress',NULL,'[\"Wong Chia Chi\",\"Mrs. Mak\"]'),(808357,1040,3,'actress',NULL,'[\"Mrs. Yee\"]'),(808357,910966,4,'actor',NULL,'[\"Kuang Yu Min\"]'),(808357,487,5,'director',NULL,NULL),(808357,151690,6,'writer','story',NULL),(808357,770005,7,'writer','screenplay',NULL),(808357,910924,8,'writer','screenplay',NULL),(808357,465067,9,'producer','producer',NULL),(808417,2717663,10,'editor',NULL,NULL),(808417,557859,1,'actress',NULL,'[\"Marjane Adolescente et Adulte\"]'),(808417,366,2,'actress',NULL,'[\"La Mère\"]'),(808417,1687,3,'actress',NULL,'[\"Grandmother\"]'),(808417,201638,4,'actress',NULL,'[\"La Grand-Mère\"]'),(808417,1749112,5,'director',NULL,NULL),(808417,2277869,6,'director',NULL,NULL),(808417,2275877,7,'producer','producer',NULL),(808417,2274042,8,'producer','producer',NULL),(808417,1937991,9,'composer',NULL,NULL),(808506,2345290,10,'composer',NULL,NULL),(808506,2337578,1,'actress',NULL,'[\"Makoto Konno\"]'),(808506,1897007,2,'actor',NULL,'[\"Chiaki Mamiya\"]'),(808506,2337967,3,'actor',NULL,'[\"Kosuke Tsuda\"]'),(808506,2058563,4,'actress',NULL,'[\"Yuri Hayakawa\"]'),(808506,396074,5,'director',NULL,NULL),(808506,875489,6,'writer','novel',NULL),(808506,645766,7,'writer','screenplay',NULL),(808506,2097733,8,'producer','producer',NULL),(808506,1015241,9,'producer','producer',NULL),(808526,75645,10,'production_designer',NULL,NULL),(808526,376602,1,'actress',NULL,'[\"Joy\"]'),(808526,5049,2,'actress',NULL,'[\"Trish\"]'),(808526,639,3,'actress',NULL,'[\"Helen\"]'),(808526,931324,4,'actor',NULL,'[\"Allen\"]'),(808526,1754,5,'director',NULL,NULL),(808526,874913,6,'producer','producer',NULL),(808526,907622,7,'producer','producer',NULL),(808526,5767,8,'cinematographer','director of photography',NULL),(808526,1556195,9,'editor',NULL,NULL),(809407,28303,1,'actor',NULL,'[\"Emanoil Piscoci\"]'),(809407,2276340,2,'actor',NULL,'[\"Virgil Jderescu\"]'),(809407,1717222,3,'actor',NULL,'[\"Tiberiu Manescu\"]'),(809407,1893752,4,'actress',NULL,'[\"Doamna Manescu\"]'),(809407,1717949,5,'director',NULL,NULL),(809407,2274191,6,'composer',NULL,NULL),(809407,1857454,7,'cinematographer',NULL,NULL),(809407,1718343,8,'editor',NULL,NULL),(809407,705905,9,'production_designer',NULL,NULL),(809533,3900,10,'cinematographer',NULL,NULL),(809533,529813,1,'actress',NULL,'[\"Blanca\"]'),(809533,845189,2,'actress',NULL,'[\"Julia\"]'),(809533,676070,3,'actress',NULL,'[\"Adelina\"]'),(809533,1011070,4,'actress',NULL,'[\"Virtudes\"]'),(809533,554880,5,'director',NULL,NULL),(809533,182275,6,'writer','story',NULL),(809533,554838,7,'writer',NULL,NULL),(809533,148554,8,'producer','producer',NULL),(809533,63414,9,'composer',NULL,NULL),(810784,292132,10,'cinematographer','director of photography',NULL),(810784,180411,1,'actress',NULL,'[\"Fanny Brawne\"]'),(810784,924210,2,'actor',NULL,'[\"John Keats\"]'),(810784,773973,3,'actor',NULL,'[\"Mr. Brown\"]'),(810784,289098,4,'actress',NULL,'[\"Mrs. Brawne\"]'),(810784,1005,5,'director',NULL,NULL),(810784,1652346,6,'writer','biography \"Keats\"',NULL),(810784,152396,7,'producer','producer',NULL),(810784,382012,8,'producer','producer',NULL),(810784,2286806,9,'composer',NULL,NULL),(810819,365478,10,'producer','producer',NULL),(810819,1519666,1,'actor',NULL,'[\"Lili\"]'),(810819,2539953,2,'actress',NULL,'[\"Gerda\"]'),(810819,1720028,3,'actress',NULL,'[\"Ulla\"]'),(810819,924210,4,'actor',NULL,'[\"Henrik\"]'),(810819,393799,5,'director',NULL,NULL),(810819,185309,6,'writer','screenplay',NULL),(810819,2286442,7,'writer','book',NULL),(810819,79677,8,'producer','producer',NULL),(810819,271479,9,'producer','producer',NULL),(810868,841326,10,'producer','producer',NULL),(810868,1953,1,'actor',NULL,'[\"Rainer\"]'),(810868,776409,2,'actress',NULL,'[\"Pegah\"]'),(810868,675919,3,'actor',NULL,'[\"Phillip\"]'),(810868,88798,4,'actor',NULL,'[\"Maiwald\"]'),(810868,918326,5,'director',NULL,NULL),(810868,1602472,6,'writer',NULL,NULL),(810868,16475,7,'producer','producer',NULL),(810868,345116,8,'producer','producer',NULL),(810868,369618,9,'producer','producer',NULL),(810900,33096,10,'cinematographer',NULL,NULL),(810900,1374980,1,'actor',NULL,'[\"Troy Bolton\"]'),(810900,1227814,2,'actress',NULL,'[\"Gabriella Montez\"]'),(810900,864308,3,'actress',NULL,'[\"Sharpay Evans\"]'),(810900,1727317,4,'actor',NULL,'[\"Ryan Evans\"]'),(810900,650905,5,'director',NULL,NULL),(810900,58302,6,'writer','based on characters created by',NULL),(810900,96115,7,'producer','producer',NULL),(810900,769913,8,'producer','producer',NULL),(810900,492714,9,'composer',NULL,NULL),(810913,307776,10,'producer','producer',NULL),(810913,1191,1,'actor',NULL,'[\"Jack\",\"Jill\"]'),(810913,5017,2,'actress',NULL,'[\"Erin\"]'),(810913,199,3,'actor',NULL,'[\"Al Pacino\"]'),(810913,4713266,4,'actress',NULL,'[\"Sofia\"]'),(810913,240797,5,'director',NULL,NULL),(810913,957840,6,'writer','story',NULL),(810913,466175,7,'writer','screenplay',NULL),(810913,184445,8,'writer','second rewrite',NULL),(810913,806912,9,'writer','first rewrite',NULL),(811080,315974,10,'composer',NULL,NULL),(811080,386472,1,'actor',NULL,'[\"Speed\"]'),(811080,289142,2,'actor',NULL,'[\"Racer X\"]'),(811080,207,3,'actress',NULL,'[\"Trixie\"]'),(811080,1675002,4,'actor',NULL,'[\"Young Speed Racer\"]'),(811080,905154,5,'director',NULL,NULL),(811080,905152,6,'director',NULL,NULL),(811080,1033745,7,'writer','animated series \"Speed Racer\"',NULL),(811080,384294,8,'producer','producer',NULL),(811080,5428,9,'producer','producer',NULL),(811138,370448,10,'editor',NULL,NULL),(811138,196,1,'actor',NULL,'[\"Guru Pitka\",\"Young Pitka\",\"Teenage Pitka\"]'),(811138,4695,2,'actress',NULL,'[\"Jane Bullard\"]'),(811138,539082,3,'actor',NULL,'[\"Darren Roanoke\"]'),(811138,5433,4,'actress',NULL,'[\"Jessica Simpson\"]'),(811138,773605,5,'director',NULL,NULL),(811138,330704,6,'writer','written by',NULL),(811138,6894,7,'producer','producer',NULL),(811138,3392,8,'composer',NULL,NULL),(811138,5687,9,'cinematographer','director of photography',NULL),(812243,2282280,10,'composer',NULL,NULL),(812243,1679447,1,'actor',NULL,'[\"Dries\"]'),(812243,46408,2,'actor',NULL,'[\"Koen de Geyter\"]'),(812243,2131701,3,'actor',NULL,'[\"Jan Verbeek\"]'),(812243,522205,4,'actor',NULL,'[\"Ivan Van Dorpe\"]'),(812243,607831,5,'director',NULL,NULL),(812243,116743,6,'writer','novel',NULL),(812243,2284422,7,'producer','producer',NULL),(812243,3073,8,'composer',NULL,NULL),(812243,2282263,9,'composer',NULL,NULL),(814106,640,1,'actor',NULL,'[\"Arthur Square\"]'),(814106,68338,2,'actress',NULL,'[\"Hex\"]'),(814106,1868,3,'actor',NULL,'[\"Spherius\"]'),(814106,261724,4,'actor',NULL,'[\"Abbott Square\"]'),(814106,2234254,5,'director',NULL,NULL),(814106,1372280,6,'director',NULL,NULL),(814106,2366947,7,'writer','book',NULL),(814106,1093570,8,'writer',NULL,NULL),(814106,102278,9,'composer',NULL,NULL),(814255,1651942,10,'producer','producer',NULL),(814255,503567,1,'actor',NULL,'[\"Percy Jackson\"]'),(814255,571727,2,'actor',NULL,'[\"Poseidon\"]'),(814255,176869,3,'actor',NULL,'[\"Hades\"]'),(814255,1040365,4,'actor',NULL,'[\"Grover\"]'),(814255,1060,5,'director',NULL,NULL),(814255,864471,6,'writer','screenplay',NULL),(814255,2292894,7,'writer','novel',NULL),(814255,55431,8,'producer','producer',NULL),(814255,705365,9,'producer','producer',NULL),(814314,5494,10,'producer','producer',NULL),(814314,226,1,'actor',NULL,'[\"Ben\"]'),(814314,206257,2,'actress',NULL,'[\"Emily\"]'),(814314,437,3,'actor',NULL,'[\"Ezra\"]'),(814314,1013003,4,'actor',NULL,'[\"Ben\'s Brother\"]'),(814314,610831,5,'director',NULL,NULL),(814314,1455356,6,'writer','written by',NULL),(814314,85542,7,'producer','producer',NULL),(814314,89820,8,'producer','producer',NULL),(814314,489876,9,'producer','producer',NULL),(814331,168549,10,'editor',NULL,NULL),(814331,688132,1,'actress',NULL,'[\"Gayle O\'Brien\"]'),(814331,205,2,'actress',NULL,'[\"Becky St. Germaine\"]'),(814331,237222,3,'actress',NULL,'[\"Judi Joskow\"]'),(814331,848554,4,'actress',NULL,'[\"Ashley Hartmann\"]'),(814331,1451294,5,'director',NULL,NULL),(814331,2229899,6,'producer','producer',NULL),(814331,447838,7,'producer','producer',NULL),(814331,527091,8,'composer',NULL,NULL),(814331,1054979,9,'cinematographer','director of photography',NULL),(814795,585403,10,'composer',NULL,NULL),(814795,1327219,1,'actor',NULL,'[\"Jakub\"]'),(814795,171499,2,'actor',NULL,'[\"Roman\"]'),(814795,1228072,3,'actor',NULL,'[\"Vladimir\"]'),(814795,2760983,4,'actor',NULL,'[\"Elias\"]'),(814795,1160648,5,'director',NULL,NULL),(814795,111393,6,'producer','producer',NULL),(814795,1028365,7,'producer','producer',NULL),(814795,433580,8,'composer',NULL,NULL),(814795,580231,9,'composer',NULL,NULL),(815178,35,10,'composer',NULL,NULL),(815178,235,1,'actress',NULL,'[\"Diana (Adult)\"]'),(815178,939697,2,'actress',NULL,'[\"Diana (Teen)\"]'),(815178,25483,3,'actress',NULL,'[\"Maureen\"]'),(815178,2091536,4,'actress',NULL,'[\"Emma\"]'),(815178,1166926,5,'director',NULL,NULL),(815178,440641,6,'writer','novel',NULL),(815178,2145339,7,'writer','screenplay',NULL),(815178,441097,8,'producer','producer',NULL),(815178,678992,9,'producer','producer',NULL),(815244,527091,10,'composer',NULL,NULL),(815244,4789,1,'actress',NULL,'[\"Sydney White\"]'),(815244,668139,2,'actress',NULL,'[\"Rachel\"]'),(815244,1668265,3,'actor',NULL,'[\"Tyler\"]'),(815244,2358430,4,'actor',NULL,'[\"Lenny\"]'),(815244,638271,5,'director',NULL,NULL),(815244,1548657,6,'writer','written by',NULL),(815244,1084360,7,'producer','producer',NULL),(815244,732708,8,'producer','producer',NULL),(815244,921222,9,'producer','producer',NULL),(815245,453518,10,'writer','motion picture \"Changhwa, Hongryon\"',NULL),(815245,115161,1,'actress',NULL,'[\"Anna\"]'),(815245,444223,2,'actress',NULL,'[\"Alex\"]'),(815245,6969,3,'actress',NULL,'[\"Rachel\"]'),(815245,657,4,'actor',NULL,'[\"Steven\"]'),(815245,345294,5,'director',NULL,NULL),(815245,345307,6,'director',NULL,NULL),(815245,742194,7,'writer','screenplay',NULL),(815245,1215164,8,'writer','screenplay',NULL),(815245,76166,9,'writer','screenplay',NULL),(816436,1409857,10,'editor',NULL,NULL),(816436,322591,1,'actress',NULL,'[\"Grace\"]'),(816436,220450,2,'actress',NULL,'[\"Lee\"]'),(816436,1500343,3,'actor',NULL,'[\"Adam\"]'),(816436,654549,4,'actor',NULL,'[\"Jim\"]'),(816436,2299471,5,'director',NULL,NULL),(816436,871188,6,'director',NULL,NULL),(816436,731961,7,'producer','producer',NULL),(816436,562100,8,'composer',NULL,NULL),(816436,1006275,9,'cinematographer',NULL,NULL),(816442,2354,10,'composer',NULL,NULL),(816442,4563869,1,'actress',NULL,'[\"Liesel Meminger\"]'),(816442,1691,2,'actor',NULL,'[\"Hans Hubermann\"]'),(816442,1833,3,'actress',NULL,'[\"Rosa Hubermann\"]'),(816442,3115493,4,'actor',NULL,'[\"Max Vandenburg\"]'),(816442,1093053,5,'director',NULL,NULL),(816442,2295691,6,'writer','based on the novel by',NULL),(816442,678104,7,'writer','screenplay by',NULL),(816442,86998,8,'producer','producer',NULL),(816442,1651942,9,'producer','producer',NULL),(816462,49689,10,'producer','producer',NULL),(816462,597388,1,'actor',NULL,'[\"Conan\"]'),(816462,579,2,'actor',NULL,'[\"Corin\"]'),(816462,535,3,'actress',NULL,'[\"Marique\"]'),(816462,2332,4,'actor',NULL,'[\"Khalar Zym\"]'),(816462,1197971,5,'director',NULL,NULL),(816462,232776,6,'writer','written by',NULL),(816462,649191,7,'writer','written by',NULL),(816462,393517,8,'writer','written by',NULL),(816462,397574,9,'writer','character of Conan',NULL),(816520,76602,10,'writer','characters',NULL),(816520,668139,1,'actress',NULL,'[\"Marnie Piper\",\"Splendora Agatha Cromwell\"]'),(816520,387432,2,'actress',NULL,'[\"Gwen Cromwell Piper\"]'),(816520,1727317,3,'actor',NULL,'[\"Ethan Dalloway\"]'),(816520,956726,4,'actor',NULL,'[\"Dylan Piper\"]'),(816520,2413,5,'director',NULL,NULL),(816520,258098,6,'writer','teleplay',NULL),(816520,223395,7,'writer','teleplay',NULL),(816520,14785,8,'writer','teleplay',NULL),(816520,317634,9,'writer','teleplay',NULL),(816530,138371,1,'actress',NULL,'[\"Shayla Stonefeather\"]'),(816530,2313209,2,'actress',NULL,'[\"Rebecca Stonefeather\"]'),(816530,817375,3,'actor',NULL,'[\"Tom Greyhorse\"]'),(816530,116737,4,'actor',NULL,'[\"Jonathan Freeman\"]'),(816530,513005,5,'director',NULL,NULL),(816530,202616,6,'writer','written by',NULL),(816530,264220,7,'producer','producer',NULL),(816530,512975,8,'producer','executive producer',NULL),(816530,512999,9,'editor',NULL,NULL),(816556,614107,10,'editor',NULL,NULL),(816556,1647620,1,'actress',NULL,'[\"June Palmer\"]'),(816556,687109,2,'actor',NULL,'[\"Russell Palmer\"]'),(816556,2089454,3,'actor',NULL,'[\"Mathew Palmer\"]'),(816556,1457088,4,'actress',NULL,'[\"Alice Palmer\"]'),(816556,1757667,5,'director',NULL,NULL),(816556,1072273,6,'producer','producer',NULL),(816556,710951,7,'producer','producer',NULL),(816556,990239,8,'composer',NULL,NULL),(816556,1095487,9,'cinematographer','director of photography',NULL),(816692,887227,10,'cinematographer','director of photography',NULL),(816692,190,1,'actor',NULL,'[\"Cooper\"]'),(816692,4266,2,'actress',NULL,'[\"Brand\"]'),(816692,1567113,3,'actress',NULL,'[\"Murph\"]'),(816692,3237775,4,'actress',NULL,'[\"Murph (10 Yrs.)\"]'),(816692,634240,5,'director',NULL,NULL),(816692,634300,6,'writer','written by',NULL),(816692,643553,7,'producer','producer',NULL),(816692,858799,8,'producer','producer',NULL),(816692,1877,9,'composer',NULL,NULL),(816711,112150,10,'writer','based on the novel by',NULL),(816711,93,1,'actor',NULL,'[\"Gerry Lane\"]'),(816711,257969,2,'actress',NULL,'[\"Karin Lane\"]'),(816711,2020146,3,'actress',NULL,'[\"Segen\"]'),(816711,197647,4,'actor',NULL,'[\"Captain Speke\"]'),(816711,286975,5,'director',NULL,NULL),(816711,1996352,6,'writer','screenplay',NULL),(816711,1206844,7,'writer','screenplay',NULL),(816711,511541,8,'writer','screenplay',NULL),(816711,833089,9,'writer','screen story',NULL),(817177,215878,10,'cinematographer','director of photography',NULL),(817177,1630992,1,'actress',NULL,'[\"Juli Baker\"]'),(817177,2786608,2,'actor',NULL,'[\"Bryce Loski\"]'),(817177,360,3,'actress',NULL,'[\"Patsy Loski\"]'),(817177,381,4,'actor',NULL,'[\"Steven Loski\"]'),(817177,1661,5,'director',NULL,NULL),(817177,770650,6,'writer','screenplay',NULL),(817177,2300000,7,'writer','novel',NULL),(817177,340112,8,'producer','producer',NULL),(817177,3299,9,'composer',NULL,NULL),(817230,723573,10,'producer','producer',NULL),(817230,210,1,'actress',NULL,'[\"Captain Kate Hazeltine\"]'),(817230,4937,2,'actor',NULL,'[\"Kelvin Moore\"]'),(817230,4266,3,'actress',NULL,'[\"Liz\"]'),(817230,4695,4,'actress',NULL,'[\"Morley Clarkson\"]'),(817230,5190,5,'director',NULL,NULL),(817230,297545,6,'writer','screenplay',NULL),(817230,463359,7,'writer','story',NULL),(817230,799050,8,'writer','story',NULL),(817230,440344,9,'producer','producer',NULL),(817400,762863,10,'composer',NULL,NULL),(817400,61777,1,'actor',NULL,'[\"Larry Pearce\"]'),(817400,1363452,2,'actor',NULL,'[\"Tech\"]'),(817400,1363967,3,'actress',NULL,'[\"Brenda\"]'),(817400,2454850,4,'actor',NULL,'[\"Tech 3\"]'),(817400,26442,5,'director',NULL,NULL),(817400,308376,6,'writer','creator',NULL),(817400,2457923,7,'writer','short story',NULL),(817400,724678,8,'producer','producer',NULL),(817400,746614,9,'producer','producer',NULL),(817401,423632,10,'cinematographer','director of photography',NULL),(817401,807351,1,'actor',NULL,'[\"Kerry\"]'),(817401,1050287,2,'actor',NULL,'[\"Justin\"]'),(817401,272706,3,'actress',NULL,'[\"Lisa\"]'),(817401,461,4,'actor',NULL,'[\"Mr. Chaney\"]'),(817401,225416,5,'director',NULL,NULL),(817401,308376,6,'writer','creator',NULL),(817401,724678,7,'producer','producer',NULL),(817401,746614,8,'producer','producer',NULL),(817401,3329819,9,'composer',NULL,NULL),(817402,746614,10,'producer','producer',NULL),(817402,791926,1,'actor',NULL,'[\"Kent\"]'),(817402,2523722,2,'actor',NULL,'[\"Kenny\"]'),(817402,378016,3,'actor',NULL,'[\"Papa Joe\"]'),(817402,855564,4,'actor',NULL,'[\"Layne\"]'),(817402,276169,5,'director',NULL,NULL),(817402,308376,6,'writer','creator',NULL),(817402,775017,7,'writer','teleplay',NULL),(817402,268468,8,'writer','short story \"I Scream. You Scream. We All Scream for Ice Cream\"',NULL),(817402,724678,9,'producer','producer',NULL),(818165,220865,10,'cinematographer','director of photography',NULL),(818165,244630,1,'actress',NULL,'[\"Megan Paige\"]'),(818165,144,2,'actor',NULL,'[\"Kenneth Shine\"]'),(818165,459,3,'actor',NULL,'[\"Richard Ledge\"]'),(818165,540176,4,'actor',NULL,'[\"Officer Steven Harper\"]'),(818165,3343,5,'director',NULL,NULL),(818165,730358,6,'producer','producer',NULL),(818165,774779,7,'producer','producer',NULL),(818165,1200185,8,'producer','producer',NULL),(818165,1512881,9,'composer',NULL,NULL),(818940,2311925,1,'actress',NULL,'[\"Emily Segreto\"]'),(818940,2306260,2,'actress',NULL,'[\"Kaye Canon\"]'),(818940,2306119,3,'actor',NULL,'[\"David\"]'),(818940,376498,4,'actress',NULL,'[\"Susan\"]'),(818940,2313011,5,'director',NULL,NULL),(818940,2310242,6,'writer','written by',NULL),(818940,428031,7,'producer','producer',NULL),(819714,293456,10,'cinematographer',NULL,NULL),(819714,461136,1,'actress',NULL,'[\"Vera Phillips\"]'),(819714,1092227,2,'actress',NULL,'[\"Caitlin Thomas\"]'),(819714,722629,3,'actor',NULL,'[\"Dylan Thomas\"]'),(819714,1409802,4,'actor',NULL,'[\"Wilfred Hosgood\"]'),(819714,562266,5,'director',NULL,NULL),(819714,531930,6,'writer','written by',NULL),(819714,1729542,7,'writer','idea by',NULL),(819714,705381,8,'producer','producer',NULL),(819714,823,9,'composer',NULL,NULL),(821642,547050,10,'composer',NULL,NULL),(821642,4937,1,'actor',NULL,'[\"Nathaniel Ayers\"]'),(821642,375,2,'actor',NULL,'[\"Steve Lopez\"]'),(821642,1416,3,'actress',NULL,'[\"Mary Weston\"]'),(821642,390903,4,'actor',NULL,'[\"Graham Claydon\"]'),(821642,942504,5,'director',NULL,NULL),(821642,335666,6,'writer','screenplay',NULL),(821642,2311134,7,'writer','book \"The Soloist: A Lost Dream, an Unlikely Friendship, and the Redemptive Power of Music\"',NULL),(821642,287811,8,'producer','producer',NULL),(821642,469929,9,'producer','producer',NULL),(822832,1651942,10,'producer','producer',NULL),(822832,5562,1,'actor',NULL,'[\"John\"]'),(822832,98,2,'actress',NULL,'[\"Jenny\"]'),(822832,199312,3,'actor',NULL,'[\"Sebastian\"]'),(822832,678,4,'actress',NULL,'[\"Ms. Kornblut\"]'),(822832,291205,5,'director',NULL,NULL),(822832,291082,6,'writer','screenplay',NULL),(822832,740400,7,'writer','screenplay',NULL),(822832,2313946,8,'writer','book',NULL),(822832,626696,9,'producer','producer',NULL),(822847,669692,10,'producer','producer',NULL),(822847,79273,1,'actor',NULL,'[\"Priest\"]'),(822847,1544217,2,'actor',NULL,'[\"Hicks\"]'),(822847,702572,3,'actress',NULL,'[\"Priestess\"]'),(822847,881631,4,'actor',NULL,'[\"Black Hat\"]'),(822847,829820,5,'director',NULL,NULL),(822847,2309430,6,'writer','written by',NULL),(822847,2312828,7,'writer','graphic novel series \"Priest\"',NULL),(822847,6894,8,'producer','producer',NULL),(822847,232433,9,'producer','producer',NULL),(822854,6183,10,'composer',NULL,NULL),(822854,242,1,'actor',NULL,'[\"Bob Lee Swagger\"]'),(822854,671567,2,'actor',NULL,'[\"Nick Memphis\"]'),(822854,593961,3,'actress',NULL,'[\"Alourdes Galindo\"]'),(822854,418,4,'actor',NULL,'[\"Colonel Isaac Johnson\"]'),(822854,298807,5,'director',NULL,NULL),(822854,2394211,6,'writer','based upon the novel \"Point of Impact\" by',NULL),(822854,501380,7,'writer','screenplay by',NULL),(822854,225146,8,'producer','producer',NULL),(822854,452305,9,'producer','producer',NULL),(823158,329390,10,'editor',NULL,NULL),(823158,1764,1,'actor',NULL,'[\"Shel Grandy\"]'),(823158,199312,2,'actor',NULL,'[\"Ben Grandy\"]'),(823158,813887,3,'actress',NULL,'[\"Maggie Welling\"]'),(823158,536883,4,'actor',NULL,'[\"Ted Moore\"]'),(823158,266302,5,'director',NULL,NULL),(823158,563397,6,'writer','written by',NULL),(823158,537164,7,'producer','producer',NULL),(823158,912965,8,'composer',NULL,NULL),(823158,822637,9,'cinematographer','director of photography',NULL),(823671,5366865,10,'editor',NULL,NULL),(823671,926165,1,'actress',NULL,'[\"Tinker Bell\"]'),(823671,155693,2,'actress',NULL,'[\"Rosetta\"]'),(823671,712368,3,'actress',NULL,'[\"Iridessa\"]'),(823671,5154,4,'actress',NULL,'[\"Silvermist\"]'),(823671,713214,5,'director',NULL,NULL),(823671,397377,6,'writer','screenplay',NULL),(823671,57381,7,'writer','characters',NULL),(823671,746013,8,'producer','producer',NULL),(823671,6193,9,'composer',NULL,NULL),(824316,244903,10,'editor',NULL,NULL),(824316,1779702,1,'actress',NULL,'[\"Meera\"]'),(824316,1662277,2,'actor',NULL,'[\"Behroopiya\"]'),(824316,1493836,3,'actress',NULL,'[\"Zeenat Fatima\"]'),(824316,439784,4,'actor',NULL,'[\"Randhir Singh\"]'),(824316,474398,5,'director',NULL,NULL),(824316,3646369,6,'writer','story',NULL),(824316,1012016,7,'writer',NULL,NULL),(824316,1224445,8,'composer',NULL,NULL),(824316,1250935,9,'cinematographer',NULL,NULL),(824747,827869,10,'cinematographer','director of photography',NULL),(824747,1401,1,'actress',NULL,'[\"Christine Collins\"]'),(824747,272173,2,'actor',NULL,'[\"Chief James E. Davis\"]'),(824747,752407,3,'actress',NULL,'[\"Carol Dexter\"]'),(824747,1072959,4,'actor',NULL,'[\"Walter Collins\"]'),(824747,142,5,'director',NULL,NULL),(824747,833089,6,'writer','written by',NULL),(824747,4976,7,'producer','producer',NULL),(824747,165,8,'producer','producer',NULL),(824747,520749,9,'producer','producer',NULL),(824758,1173561,10,'composer',NULL,NULL),(824758,545,1,'actress',NULL,'[\"Sofya\"]'),(824758,564215,2,'actor',NULL,'[\"Valentin\"]'),(824758,1626,3,'actor',NULL,'[\"Leo Tolstoy\"]'),(824758,316079,4,'actor',NULL,'[\"Chertkov\"]'),(824758,1355,5,'director',NULL,NULL),(824758,661514,6,'writer','based on the novel by',NULL),(824758,36366,7,'producer','producer',NULL),(824758,192770,8,'producer','producer',NULL),(824758,582797,9,'producer','producer',NULL),(825232,3299,10,'composer',NULL,NULL),(825232,197,1,'actor',NULL,'[\"Edward\"]'),(825232,151,2,'actor',NULL,'[\"Carter\"]'),(825232,5003,3,'actor',NULL,'[\"Thomas\"]'),(825232,865119,4,'actress',NULL,'[\"Virginia\"]'),(825232,1661,5,'director',NULL,NULL),(825232,951698,6,'writer','written by',NULL),(825232,340112,7,'producer','producer',NULL),(825232,581117,8,'producer','producer',NULL),(825232,951722,9,'producer','producer',NULL),(825236,1136185,10,'editor',NULL,NULL),(825236,1701024,1,'actress',NULL,'[\"Layal\"]'),(825236,2320614,2,'actress',NULL,'[\"Rima\"]'),(825236,2318355,3,'actress',NULL,'[\"Jamale\"]'),(825236,2316907,4,'actress',NULL,'[\"Nisrine\"]'),(825236,2764802,5,'writer','idea',NULL),(825236,2125368,6,'writer','screenplay',NULL),(825236,7014,7,'producer','producer',NULL),(825236,1848588,8,'composer',NULL,NULL),(825236,1196373,9,'cinematographer',NULL,NULL),(825244,1069264,10,'composer',NULL,NULL),(825244,809,1,'actor',NULL,'[\"Le peintre dit Dupinceau\"]'),(825244,201669,2,'actor',NULL,'[\"Le jardinier Léo dit Dujardin\"]'),(825244,182946,3,'actress',NULL,'[\"Hélène\"]'),(825244,1715145,4,'actress',NULL,'[\"Magda\"]'),(825244,65449,5,'director',NULL,NULL),(825244,181924,6,'writer','screenplay and dialogue',NULL),(825244,2244089,7,'writer','novel',NULL),(825244,598336,8,'writer',NULL,NULL),(825244,65510,9,'producer','producer',NULL),(827517,1257420,10,'cinematographer',NULL,NULL),(827517,509264,1,'actor',NULL,'[\"Phillip\"]'),(827517,1454907,2,'actor',NULL,'[\"Erik\"]'),(827517,2275824,3,'actress',NULL,'[\"Kari\"]'),(827517,2322351,4,'actor',NULL,'[\"Morten\"]'),(827517,1258686,5,'director',NULL,NULL),(827517,1258777,6,'writer',NULL,NULL),(827517,432375,7,'producer','producer',NULL),(827517,1492711,8,'composer',NULL,NULL),(827517,1379893,9,'composer',NULL,NULL),(829150,1014697,10,'composer',NULL,NULL),(829150,1812656,1,'actor',NULL,'[\"Vlad\"]'),(829150,1002641,2,'actor',NULL,'[\"Mehmed\"]'),(829150,300589,3,'actress',NULL,'[\"Mirena\"]'),(829150,3280686,4,'actor',NULL,'[\"Ingeras\"]'),(829150,2411495,5,'director',NULL,NULL),(829150,1948885,6,'writer','screenplay',NULL),(829150,2332952,7,'writer','screenplay',NULL),(829150,831290,8,'writer','characters',NULL),(829150,6894,9,'producer','producer',NULL),(829297,894166,10,'cinematographer',NULL,NULL),(829297,363699,1,'actress',NULL,'[\"Piper\"]'),(829297,245112,2,'actress',NULL,'[\"Jen\"]'),(829297,1218,3,'actor',NULL,'[\"Noah\"]'),(829297,10075,4,'actor',NULL,'[\"Priestly\"]'),(829297,533145,5,'director',NULL,NULL),(829297,2326155,6,'writer','written by',NULL),(829297,200166,7,'producer','producer',NULL),(829297,936837,8,'producer','producer',NULL),(829297,204485,9,'composer',NULL,NULL),(829482,1015867,10,'composer',NULL,NULL),(829482,148418,1,'actor',NULL,'[\"Evan\"]'),(829482,1706767,2,'actor',NULL,'[\"Seth\"]'),(829482,2395586,3,'actor',NULL,'[\"Fogell\"]'),(829482,352778,4,'actor',NULL,'[\"Officer Slater\"]'),(829482,609549,5,'director',NULL,NULL),(829482,736622,6,'writer','written by',NULL),(829482,1698571,7,'writer','written by',NULL),(829482,31976,8,'producer','producer',NULL),(829482,732024,9,'producer','producer',NULL),(830515,933865,10,'producer','producer',NULL),(830515,185819,1,'actor',NULL,'[\"James Bond\"]'),(830515,1385871,2,'actress',NULL,'[\"Camille\"]'),(830515,23832,3,'actor',NULL,'[\"Dominic Greene\"]'),(830515,1132,4,'actress',NULL,'[\"M\"]'),(830515,286975,5,'director',NULL,NULL),(830515,353673,6,'writer','written by',NULL),(830515,701031,7,'writer','written by',NULL),(830515,905498,8,'writer','written by',NULL),(830515,110483,9,'producer','producer',NULL),(830535,2336891,1,'actress',NULL,'[\"Lydia\"]'),(830535,1697780,2,'actress',NULL,'[\"Darcy\"]'),(830535,72638,3,'actor',NULL,'[\"Bob\"]'),(830535,760172,4,'actress',NULL,'[\"Carol\"]'),(830535,1020896,5,'director',NULL,NULL),(830535,2537118,6,'composer',NULL,NULL),(830535,2330117,7,'cinematographer',NULL,NULL),(830535,687427,8,'editor',NULL,NULL),(830535,1657727,9,'production_designer',NULL,NULL),(830570,552150,10,'editor',NULL,NULL),(830570,712908,1,'actress',NULL,'[\"Tala\"]'),(830570,792888,2,'actress',NULL,'[\"Leyla\"]'),(830570,1974409,3,'actress',NULL,'[\"Reema\"]'),(830570,846681,4,'actor',NULL,'[\"Omar\"]'),(830570,2328765,5,'director',NULL,NULL),(830570,2326419,6,'writer','screenplay',NULL),(830570,2331643,7,'producer','executive producer',NULL),(830570,2156521,8,'composer',NULL,NULL),(830570,47999,9,'cinematographer','director of photography',NULL),(830896,126948,10,'cinematographer',NULL,NULL),(830896,350619,1,'actor',NULL,'[\"Zeyk\",\"Husband\"]'),(830896,1092414,2,'actor',NULL,'[\"Zsolt\",\"Gay lover\"]'),(830896,449276,3,'actress',NULL,'[\"Edit\",\"Wife\"]'),(830896,904933,4,'actor',NULL,'[\"Tamás\"]'),(830896,261977,5,'director',NULL,NULL),(830896,1346203,6,'producer','producer',NULL),(830896,9297649,7,'composer',NULL,NULL),(830896,9297648,8,'composer',NULL,NULL),(830896,3026060,9,'composer',NULL,NULL),(831387,1440919,10,'writer','screenplay by',NULL),(831387,1093951,1,'actor',NULL,'[\"Ford Brody\"]'),(831387,647634,2,'actress',NULL,'[\"Elle Brody\"]'),(831387,186505,3,'actor',NULL,'[\"Joe Brody\"]'),(831387,913822,4,'actor',NULL,'[\"Dr. Ishiro Serizawa\"]'),(831387,2284484,5,'director',NULL,NULL),(831387,393094,6,'writer','based on the character: Godzilla, owned and created by',NULL),(831387,613609,7,'writer','based on the character: Godzilla, owned and created by',NULL),(831387,443227,8,'writer','based on the character: Godzilla, owned and created by',NULL),(831387,1709264,9,'writer','story by',NULL),(831887,628056,10,'composer',NULL,NULL),(831887,532683,1,'actor',NULL,'[\"Spirit\"]'),(831887,168,2,'actor',NULL,'[\"Octopus\"]'),(831887,424060,3,'actress',NULL,'[\"Silken Floss\"]'),(831887,454809,4,'actress',NULL,'[\"Lorelei\"]'),(831887,588340,5,'director',NULL,NULL),(831887,252162,6,'writer','comic book series',NULL),(831887,215769,7,'producer','producer',NULL),(831887,698133,8,'producer','producer',NULL),(831887,882388,9,'producer','producer',NULL),(831888,2420299,10,'producer','producer',NULL),(831888,632497,1,'actor',NULL,'[\"Kuro\",\"Itachi\"]'),(831888,1066974,2,'actress',NULL,'[\"Shiro\"]'),(831888,410832,3,'actor',NULL,'[\"Kimura\"]'),(831888,1077107,4,'actor',NULL,'[\"Sawada\"]'),(831888,34712,5,'director',NULL,NULL),(831888,1782101,6,'writer','screenplay',NULL),(831888,1137219,7,'writer','manga \'Tekkon kinkurîto\'',NULL),(831888,2416660,8,'producer','producer',NULL),(831888,1259616,9,'producer','executive producer',NULL),(832266,856249,10,'editor',NULL,NULL),(832266,5351,1,'actor',NULL,'[\"Will Hayes\"]'),(832266,1838,2,'actress',NULL,'[\"Summer Hartley\"]'),(832266,1113550,3,'actress',NULL,'[\"Maya Hayes\"]'),(832266,2480549,4,'actress',NULL,'[\"Ad Exec\"]'),(832266,111845,5,'director',NULL,NULL),(832266,79677,6,'producer','producer',NULL),(832266,271479,7,'producer','producer',NULL),(832266,543739,8,'composer',NULL,NULL),(832266,50832,9,'cinematographer','director of photography',NULL),(832958,1958450,10,'actress',NULL,'[\"La policière\"]'),(832958,524217,1,'actor',NULL,'[\"Jean-Marc Thomas\"]'),(832958,109366,2,'actor',NULL,'[\"Michel\"]'),(832958,86396,3,'actress',NULL,'[\"Mélanie\"]'),(832958,82636,4,'actor',NULL,'[\"McCoy\"]'),(832958,1195622,5,'director',NULL,NULL),(832958,1003211,6,'cinematographer',NULL,NULL),(832958,663605,7,'editor',NULL,NULL),(832958,19876,8,'actor',NULL,'[\"Howard\"]'),(832958,1856360,9,'actress',NULL,'[\"La femme morte\"]'),(833098,746614,10,'producer','producer',NULL),(833098,594,1,'actor',NULL,'[\"Alan\"]'),(833098,636244,2,'actress',NULL,'[\"Anne\"]'),(833098,201437,3,'actress',NULL,'[\"Bella\"]'),(833098,1378650,4,'actress',NULL,'[\"Amy\"]'),(833098,1102,5,'director',NULL,NULL),(833098,308376,6,'writer','creator',NULL),(833098,358334,7,'writer','teleplay',NULL),(833098,1053351,8,'writer','short story',NULL),(833098,724678,9,'producer','producer',NULL),(834001,650601,10,'writer','story',NULL),(834001,593961,1,'actress',NULL,'[\"Sonja\"]'),(834001,790688,2,'actor',NULL,'[\"Lucian\"]'),(834001,631490,3,'actor',NULL,'[\"Viktor\"]'),(834001,533599,4,'actor',NULL,'[\"Tannis\"]'),(834001,851281,5,'director',NULL,NULL),(834001,564286,6,'writer','screenplay',NULL),(834001,85736,7,'writer','screenplay',NULL),(834001,564586,8,'writer','screenplay',NULL),(834001,936482,9,'writer','story',NULL),(837562,1156984,10,'writer','story by',NULL),(837562,1191,1,'actor',NULL,'[\"Dracula\"]'),(837562,416673,2,'actor',NULL,'[\"Frankenstein\"]'),(837562,1676221,3,'actor',NULL,'[\"Jonathan\"]'),(837562,1411125,4,'actress',NULL,'[\"Mavis\"]'),(837562,850733,5,'director',NULL,NULL),(837562,63165,6,'writer','screenplay by',NULL),(837562,806912,7,'writer','screenplay by',NULL),(837562,244110,8,'writer','story by',NULL),(837562,1087952,9,'writer','story by',NULL),(837563,225146,10,'producer','producer',NULL),(837563,164809,1,'actor',NULL,'[\"Louis\"]'),(837563,1541272,2,'actress',NULL,'[\"Rachel\"]'),(837563,1475,3,'actor',NULL,'[\"Jud\"]'),(837563,5503448,4,'actress',NULL,'[\"Ellie\"]'),(837563,1556116,5,'director',NULL,NULL),(837563,1552637,6,'director',NULL,NULL),(837563,175,7,'writer','based on the novel by',NULL),(837563,338557,8,'writer','screen story by',NULL),(837563,1161528,9,'writer','screenplay by',NULL),(838192,1374347,10,'cinematographer',NULL,NULL),(838192,783124,1,'actor',NULL,'[\"Wolfgang Zenker\"]'),(838192,1921479,2,'actor',NULL,'[\"Karsten Zenker\"]'),(838192,461210,3,'actor',NULL,'[\"Steven Brookmüller\"]'),(838192,909515,4,'actress',NULL,'[\"Erika Zenker\"]'),(838192,1190799,5,'director',NULL,NULL),(838192,1201075,6,'writer',NULL,NULL),(838192,2106556,7,'producer','producer',NULL),(838192,1641406,8,'producer','producer',NULL),(838192,1561059,9,'composer',NULL,NULL),(838221,918733,10,'editor',NULL,NULL),(838221,5562,1,'actor',NULL,'[\"Francis\"]'),(838221,4778,2,'actor',NULL,'[\"Peter\"]'),(838221,5403,3,'actor',NULL,'[\"Jack\"]'),(838221,2496312,4,'actress',NULL,'[\"Rita\"]'),(838221,27572,5,'director',NULL,NULL),(838221,178910,6,'writer','written by',NULL),(838221,212990,7,'producer','producer',NULL),(838221,748784,8,'producer','producer',NULL),(838221,5934,9,'cinematographer','director of photography',NULL),(838247,1488027,10,'producer','producer',NULL),(838247,207,1,'actress',NULL,'[\"Anna Taylor\"]'),(838247,553,2,'actor',NULL,'[\"Eliot Deacon\"]'),(838247,519043,3,'actor',NULL,'[\"Paul Coleman\"]'),(838247,2425105,4,'actor',NULL,'[\"Jack\"]'),(838247,1033683,5,'director',NULL,NULL),(838247,1037586,6,'writer','written by',NULL),(838247,3216543,7,'writer','written by',NULL),(838247,317978,8,'producer','producer',NULL),(838247,2645116,9,'producer','producer',NULL),(838283,924544,10,'editor',NULL,NULL),(838283,2071,1,'actor',NULL,'[\"Brennan Huff\"]'),(838283,604,2,'actor',NULL,'[\"Dale Doback\"]'),(838283,5460,3,'actress',NULL,'[\"Nancy Huff\"]'),(838283,420955,4,'actor',NULL,'[\"Dr. Robert Doback\"]'),(838283,570912,5,'director',NULL,NULL),(838283,31976,6,'producer','producer',NULL),(838283,588612,7,'producer','producer',NULL),(838283,109726,8,'composer',NULL,NULL),(838283,5929,9,'cinematographer','director of photography',NULL),(840361,1384267,10,'composer',NULL,NULL),(840361,255,1,'actor',NULL,'[\"Doug MacRay\"]'),(840361,356017,2,'actress',NULL,'[\"Claire Keesey\"]'),(840361,358316,3,'actor',NULL,'[\"FBI S.A. Adam Frawley\"]'),(840361,719637,4,'actor',NULL,'[\"James Coughlin\"]'),(840361,185976,5,'writer','screenplay',NULL),(840361,830760,6,'writer','screenplay',NULL),(840361,2353561,7,'writer','novel \"Prince of Thieves\"',NULL),(840361,412588,8,'producer','producer',NULL),(840361,454752,9,'producer','producer',NULL),(840363,2050320,10,'production_designer',NULL,NULL),(840363,502425,1,'actress',NULL,'[\"Sadie\",\"Anna\"]'),(840363,236187,2,'actor',NULL,'[\"Edmund\",\"Billy Palmer\"]'),(840363,238956,3,'actress',NULL,'[\"Grandma\",\"Oneida\"]'),(840363,657,4,'actor',NULL,'[\"Henry\",\"Harry\"]'),(840363,1970088,5,'director',NULL,NULL),(840363,1418066,6,'producer','producer',NULL),(840363,1086346,7,'composer',NULL,NULL),(840363,2356402,8,'cinematographer',NULL,NULL),(840363,2841,9,'editor',NULL,NULL),(841044,365,1,'actress',NULL,'[\"Marion\"]'),(841044,4965,2,'actor',NULL,'[\"Jack\"]'),(841044,117709,3,'actor',NULL,'[\"Lukas\"]'),(841044,683531,4,'actress',NULL,'[\"Anna - Marion\'s Mother\"]'),(841044,1222479,5,'producer','producer',NULL),(841044,1540863,6,'producer','producer',NULL),(841044,4739087,7,'composer','composer',NULL),(841044,1188553,8,'cinematographer','director of photography',NULL),(842926,1488027,10,'producer','producer',NULL),(842926,906,1,'actress',NULL,'[\"Nic\"]'),(842926,194,2,'actress',NULL,'[\"Jules\"]'),(842926,749263,3,'actor',NULL,'[\"Paul\"]'),(842926,1985859,4,'actress',NULL,'[\"Joni\"]'),(842926,158966,5,'director',NULL,NULL),(842926,89742,6,'writer','written by',NULL),(842926,1344784,7,'producer','producer',NULL),(842926,3527897,8,'producer','producer',NULL),(842926,506664,9,'producer','producer',NULL),(844286,943046,10,'editor',NULL,NULL),(844286,1838,1,'actress',NULL,'[\"Penelope\"]'),(844286,4778,2,'actor',NULL,'[\"Bloom\"]'),(844286,749263,3,'actor',NULL,'[\"Stephen\"]'),(844286,452860,4,'actress',NULL,'[\"Bang Bang\"]'),(844286,426059,5,'director',NULL,NULL),(844286,74851,6,'producer','producer',NULL),(844286,827726,7,'producer','producer',NULL),(844286,1791103,8,'composer',NULL,NULL),(844286,6911,9,'cinematographer','director of photography',NULL),(844471,550455,10,'producer','producer',NULL),(844471,267506,1,'actress',NULL,'[\"Sam Sparks\"]'),(844471,352778,2,'actor',NULL,'[\"Flint Lockwood\"]'),(844471,132257,3,'actor',NULL,'[\"Mayor Shelbourne\"]'),(844471,1001,4,'actor',NULL,'[\"Tim Lockwood\"]'),(844471,520488,5,'director',NULL,NULL),(844471,588087,6,'director',NULL,NULL),(844471,2360213,7,'writer','based upon the book written by',NULL),(844471,2360861,8,'writer','based upon the book illustrated by',NULL),(844471,338576,9,'writer','additional screenplay material',NULL),(844708,534543,10,'producer','producer',NULL),(844708,226813,1,'actor',NULL,'[\"Krug\"]'),(844708,5321,2,'actress',NULL,'[\"Emma\"]'),(844708,1282,3,'actor',NULL,'[\"John\"]'),(844708,100889,4,'actor',NULL,'[\"Morton\"]'),(844708,1531934,5,'director',NULL,NULL),(844708,2085654,6,'writer','screenplay',NULL),(844708,255296,7,'writer','screenplay',NULL),(844708,127,8,'writer','earlier film',NULL),(844708,192446,9,'producer','producer',NULL),(844760,1062923,10,'cinematographer',NULL,NULL),(844760,680,1,'actor',NULL,'[\"Colonel Johnny Rico\"]'),(844760,86883,2,'actress',NULL,'[\"Captain Lola Beck\"]'),(844760,389621,3,'actor',NULL,'[\"Sky Marshal Omar Anoke\"]'),(844760,462673,4,'actor',NULL,'[\"Gen. Dix Hauser\"]'),(844760,627159,5,'director',NULL,NULL),(844760,484123,6,'producer','producer',NULL),(844760,11787885,7,'producer','producer',NULL),(844760,46004,8,'composer',NULL,NULL),(844760,613981,9,'cinematographer',NULL,NULL),(844794,849413,10,'cinematographer','director of photography',NULL),(844794,416524,1,'actress',NULL,'[\"The Voice of Jane Austen\"]'),(844794,2595677,2,'actor',NULL,'[\"Pastor\"]'),(844794,213140,3,'actress',NULL,'[\"Mrs Morland\"]'),(844794,639569,4,'actor',NULL,'[\"Mr Morland\"]'),(844794,428448,5,'director',NULL,NULL),(844794,203577,6,'writer','screenplay',NULL),(844794,807,7,'writer','novel',NULL),(844794,1286450,8,'producer','producer',NULL),(844794,596495,9,'composer',NULL,NULL),(844993,1444121,10,'writer','punch-up/sketches',NULL),(844993,659363,1,'actress',NULL,'[\"Red Riding Hood\"]'),(844993,335,2,'actress',NULL,'[\"Granny\"]'),(844993,911320,3,'actor',NULL,'[\"The Big Bad Wolf\"]'),(844993,349,4,'actress',NULL,'[\"Verushka the Witch\"]'),(844993,1918538,5,'director',NULL,NULL),(844993,11875524,6,'director',NULL,NULL),(844993,249897,7,'writer','story',NULL),(844993,250410,8,'writer','story',NULL),(844993,498555,9,'writer','story',NULL),(845046,1231186,10,'production_designer',NULL,NULL),(845046,2389463,1,'actor',NULL,'[\"Will Proudfoot\"]'),(845046,2401020,2,'actor',NULL,'[\"Lee Carter\"]'),(845046,828961,3,'actress',NULL,'[\"Mary Proudfoot\"]'),(845046,934923,4,'actress',NULL,'[\"Grandma\"]'),(845046,1134029,5,'director',NULL,NULL),(845046,1400764,6,'producer','producer',NULL),(845046,847926,7,'composer',NULL,NULL),(845046,355722,8,'cinematographer','director of photography',NULL),(845046,1601640,9,'editor',NULL,NULL),(848228,285701,10,'editor',NULL,NULL),(848228,375,1,'actor',NULL,'[\"Tony Stark\",\"Iron Man\"]'),(848228,262635,2,'actor',NULL,'[\"Steve Rogers\",\"Captain America\"]'),(848228,424060,3,'actress',NULL,'[\"Natasha Romanoff\",\"Black Widow\"]'),(848228,719637,4,'actor',NULL,'[\"Clint Barton\",\"Hawkeye\"]'),(848228,923736,5,'director',NULL,NULL),(848228,672015,6,'writer','story',NULL),(848228,270559,7,'producer','producer',NULL),(848228,6293,8,'composer',NULL,NULL),(848228,568974,9,'cinematographer','director of photography',NULL),(848537,256079,10,'writer','screenplay',NULL),(848537,1086543,1,'actress',NULL,'[\"Mary Katherine (M.K.)\"]'),(848537,1242688,2,'actor',NULL,'[\"Nod\"]'),(848537,461498,3,'actress',NULL,'[\"Queen Tara\"]'),(848537,268199,4,'actor',NULL,'[\"Ronin\"]'),(848537,917188,5,'director',NULL,NULL),(848537,366337,6,'writer','screenplay',NULL),(848537,431622,7,'writer','screenplay',NULL),(848537,792092,8,'writer','screenplay',NULL),(848537,40022,9,'writer','screenplay',NULL),(848542,380884,10,'cinematographer',NULL,NULL),(848542,1830380,1,'actress',NULL,'[\"Rochel Meshenberg\"]'),(848542,2273984,2,'actress',NULL,'[\"Nasira Khaldi\"]'),(848542,509347,3,'actress',NULL,'[\"Sheli Meshenberg\"]'),(848542,745232,4,'actor',NULL,'[\"Matan Meshenberg\"]'),(848542,2360225,5,'director',NULL,NULL),(848542,1516290,6,'director',NULL,NULL),(848542,2367320,7,'writer','story',NULL),(848542,2383615,8,'composer',NULL,NULL),(848542,359026,9,'composer',NULL,NULL),(848557,2640,10,'composer',NULL,NULL),(848557,1382242,1,'actress',NULL,'[\"Debra\"]'),(848557,1208725,2,'actor',NULL,'[\"Jason Creed\"]'),(848557,731575,3,'actor',NULL,'[\"Tony\"]'),(848557,775539,4,'actor',NULL,'[\"Brody\"]'),(848557,1681,5,'director',NULL,NULL),(848557,1583132,6,'producer','producer',NULL),(848557,344657,7,'producer','producer',NULL),(848557,1433420,8,'producer','producer',NULL),(848557,1742493,9,'producer','producer',NULL),(850677,592663,10,'cinematographer','director of photography',NULL),(850677,2142336,1,'actress',NULL,'[\"Jack\"]'),(850677,1017334,2,'actress',NULL,'[\"Diane\",\"Karen\"]'),(850677,1541,3,'actress',NULL,'[\"Tara\"]'),(850677,1554944,4,'actor',NULL,'[\"Bus Driver\"]'),(850677,336486,5,'director',NULL,NULL),(850677,157313,6,'producer','producer',NULL),(850677,309684,7,'producer','producer',NULL),(850677,811611,8,'producer','producer',NULL),(850677,1838058,9,'composer',NULL,NULL),(851578,786707,10,'editor',NULL,NULL),(851578,370677,1,'actress',NULL,'[\"Paprika\",\"Chiba Atsuko\"]'),(851578,256609,2,'actor',NULL,'[\"Inui Sei-jiroh\"]'),(851578,394653,3,'actor',NULL,'[\"Shima Tora-taroh\"]'),(851578,299228,4,'actor',NULL,'[\"Tokita Kohsaku\"]'),(851578,464804,5,'director',NULL,NULL),(851578,875489,6,'writer','novel',NULL),(851578,2008007,7,'writer','screenplay',NULL),(851578,386279,8,'composer',NULL,NULL),(851578,2419410,9,'cinematographer',NULL,NULL),(852713,1009782,10,'producer','producer',NULL),(852713,267506,1,'actress',NULL,'[\"Shelley Darlingson\"]'),(852713,4988,2,'actor',NULL,'[\"Oliver\"]'),(852713,1297015,3,'actress',NULL,'[\"Natalie\"]'),(852713,993507,4,'actress',NULL,'[\"Mona\"]'),(852713,937748,5,'director',NULL,NULL),(852713,527581,6,'writer','written by',NULL),(852713,809006,7,'writer','written by',NULL),(852713,184445,8,'producer','producer',NULL),(852713,316406,9,'producer','producer',NULL),(854548,746614,10,'producer','producer',NULL),(854548,2386522,1,'actress',NULL,'[\"Hitch Hiker\"]'),(854548,1335999,2,'actress',NULL,'[\"Amy Franks\"]'),(854548,856197,3,'actress',NULL,'[\"Pam Franks\"]'),(854548,628,4,'actor',NULL,'[\"Mike Franks\"]'),(854548,575389,5,'director',NULL,NULL),(854548,308376,6,'writer','creator',NULL),(854548,1342065,7,'writer','teleplay',NULL),(854548,2502582,8,'writer','short story',NULL),(854548,724678,9,'producer','producer',NULL),(855729,3897515,1,'actor',NULL,'[\"Omer\"]'),(855729,2376002,2,'actor',NULL,'[\"Yakup\"]'),(855729,2379003,3,'actress',NULL,'[\"Yildiz\"]'),(855729,946352,4,'actor',NULL,'[\"Imam\"]'),(855729,258732,5,'director',NULL,NULL),(855729,40313,6,'producer','producer',NULL),(855729,701736,7,'composer',NULL,NULL),(855729,380827,8,'cinematographer',NULL,NULL),(855805,2379528,1,'actor',NULL,'[\"John\"]'),(855805,2374777,2,'actor',NULL,'[\"Holger\"]'),(855805,2375531,3,'actor',NULL,'[\"David\"]'),(855805,2376562,4,'actor',NULL,'[\"Jesper\"]'),(855805,1234876,5,'writer',NULL,NULL),(855805,30823,6,'producer','producer',NULL),(855805,2377390,7,'composer',NULL,NULL),(855805,504576,8,'editor',NULL,NULL),(856288,59570,10,'cinematographer',NULL,NULL),(856288,1574565,1,'actress',NULL,'[\"Sarah\"]'),(856288,2602462,2,'actor',NULL,'[\"Matthieu\"]'),(856288,1324984,3,'actor',NULL,'[\"Le médecin\"]'),(856288,296596,4,'actress',NULL,'[\"L\'infirmière\"]'),(856288,2376614,5,'director',NULL,NULL),(856288,2377660,6,'director',NULL,NULL),(856288,2206548,7,'producer','producer',NULL),(856288,1703817,8,'producer','producer',NULL),(856288,1268359,9,'composer',NULL,NULL),(857191,92575,10,'cinematographer','director of photography',NULL),(857191,420955,1,'actor',NULL,'[\"Walter\"]'),(857191,1896736,2,'actor',NULL,'[\"Tarek\"]'),(857191,1775091,3,'actress',NULL,'[\"Zainab\"]'),(857191,7814,4,'actress',NULL,'[\"Mouna\"]'),(857191,565336,5,'director',NULL,NULL),(857191,518757,6,'producer','producer',NULL),(857191,803826,7,'producer','producer',NULL),(857191,2852460,8,'producer','producer',NULL),(857191,434222,9,'composer',NULL,NULL),(859163,199733,10,'producer','producer',NULL),(859163,409,1,'actor',NULL,'[\"Rick O\'Connell\"]'),(859163,1472,2,'actor',NULL,'[\"Emperor\"]'),(859163,4742,3,'actress',NULL,'[\"Evelyn O\'Connell\"]'),(859163,706,4,'actress',NULL,'[\"Zi Yuan\"]'),(859163,3418,5,'director',NULL,NULL),(859163,332184,6,'writer','written by',NULL),(859163,587692,7,'writer','written by',NULL),(859163,49721,8,'writer',NULL,NULL),(859163,814085,9,'writer',NULL,NULL),(859594,878586,10,'producer','producer',NULL),(859594,792198,1,'actress',NULL,'[\"Genevieve\"]'),(859594,1573,2,'actress',NULL,'[\"Rowena\"]'),(859594,646955,3,'actress',NULL,'[\"Ashlyn\",\"Twyla\"]'),(859594,178838,4,'actress',NULL,'[\"Blair\"]'),(859594,1256147,5,'director',NULL,NULL),(859594,1043325,6,'writer','based upon: Barbie characters created by',NULL),(859594,504327,7,'writer',NULL,NULL),(859594,748429,8,'writer',NULL,NULL),(859594,243969,9,'producer','producer',NULL),(859765,944645,10,'producer','producer',NULL),(859765,955504,1,'actress',NULL,'[\"Shen Hong\"]'),(859765,3086374,2,'actor',NULL,'[\"Huang Mao\"]'),(859765,2385917,3,'actor',NULL,'[\"Sanming\"]'),(859765,3087060,4,'actress',NULL,'[\"Missy Ma\"]'),(859765,422605,5,'director',NULL,NULL),(859765,2650444,6,'writer',NULL,NULL),(859765,2652246,7,'writer',NULL,NULL),(859765,159470,8,'producer','executive producer',NULL),(859765,1284744,9,'producer','producer',NULL),(860528,2240039,1,'actress',NULL,'[\"Michaela\"]'),(860528,2385616,2,'actor',NULL,'[\"Malchezidek\"]'),(860528,2230729,3,'actor',NULL,'[\"Sheriff Dade\"]'),(860528,2005274,4,'actor',NULL,'[\"Biker 1\"]'),(860528,3888,5,'director',NULL,NULL),(860528,705669,6,'composer',NULL,NULL),(860528,1574847,7,'cinematographer',NULL,NULL),(860528,1370830,8,'editor',NULL,NULL),(860528,2383797,9,'production_designer',NULL,NULL),(860866,651969,10,'cinematographer','director of photography',NULL),(860866,706,1,'actress',NULL,'[\"Saiva\"]'),(860866,472891,2,'actress',NULL,'[\"Anja\"]'),(860866,293,3,'actor',NULL,'[\"Loki\"]'),(860866,997747,4,'actor',NULL,'[\"Ivar\"]'),(860866,438090,5,'director',NULL,NULL),(860866,2383461,6,'writer','story \"True North\"',NULL),(860866,2143007,7,'writer','screenplay',NULL),(860866,265724,8,'producer','producer',NULL),(860866,547050,9,'composer',NULL,NULL),(860906,1037557,10,'producer','producer',NULL),(860906,594074,1,'actress',NULL,'[\"Misato Katsuragi\"]'),(860906,644527,2,'actress',NULL,'[\"Shinji Ikari\"]'),(860906,370677,3,'actress',NULL,'[\"Rei Ayanami\",\"Pen Pen\",\"Yui Ikari\"]'),(860906,594436,4,'actress',NULL,'[\"Asuka Langley Shikinami\"]'),(860906,556094,5,'director',NULL,NULL),(860906,875453,6,'director',NULL,NULL),(860906,30417,7,'director','supervising director',NULL),(860906,1002694,8,'director','voice director',NULL),(860906,1037430,9,'producer','producer',NULL),(860907,257939,10,'writer','screenplay assistance',NULL),(860907,644527,1,'actress',NULL,'[\"Shinji Ikari\"]'),(860907,370677,2,'actress',NULL,'[\"Rei Ayanami (kashou)\",\"Pen Pen\",\"Yui Ikari\"]'),(860907,594436,3,'actress',NULL,'[\"Asuka Langley Shikinami\"]'),(860907,757087,4,'actress',NULL,'[\"Mari Illustrious Makinami\"]'),(860907,535340,5,'director',NULL,NULL),(860907,556094,6,'director',NULL,NULL),(860907,875453,7,'director',NULL,NULL),(860907,30417,8,'director','supervising director',NULL),(860907,1002694,9,'director','voice director',NULL),(861689,757026,10,'producer','producer',NULL),(861689,194,1,'actress',NULL,'[\"Doctor\'s Wife\"]'),(861689,749263,2,'actor',NULL,'[\"Doctor\"]'),(861689,305558,3,'actor',NULL,'[\"Bartender\",\"King of Ward Three\"]'),(861689,410832,4,'actor',NULL,'[\"First Blind Man\"]'),(861689,576987,5,'director',NULL,NULL),(861689,764832,6,'writer','novel \"Ensaio Sobre a Cegueira\"',NULL),(861689,1528,7,'writer','screenplay',NULL),(861689,53070,8,'producer','producer',NULL),(861689,275651,9,'producer','producer',NULL),(861739,695038,10,'producer','producer',NULL),(861739,609944,1,'actor',NULL,'[\"Capitão Nascimento\"]'),(861739,2386123,2,'actor',NULL,'[\"André Matias\"]'),(861739,432753,3,'actor',NULL,'[\"Neto\"]'),(861739,1141101,4,'actor',NULL,'[\"Capitão Fábio\"]'),(861739,655683,5,'director',NULL,NULL),(861739,1284081,6,'writer','original screenplay',NULL),(861739,1130251,7,'writer','original screenplay',NULL),(861739,1284450,8,'writer','book \"Elite da Tropa\"',NULL),(861739,2845583,9,'writer','book \"Elite da Tropa\"',NULL),(862467,251305,10,'producer','producer',NULL),(862467,586568,1,'actor',NULL,'[\"One Eye\"]'),(862467,3063003,2,'actor',NULL,'[\"The Boy - Pagan\"]'),(862467,607916,3,'actor',NULL,'[\"Barde - Pagan\"]'),(862467,692301,4,'actor',NULL,'[\"Kenneth - Pagan\"]'),(862467,716347,5,'director',NULL,NULL),(862467,1952176,6,'writer','written by',NULL),(862467,713852,7,'writer','additional writing',NULL),(862467,1322121,8,'producer','producer',NULL),(862467,200546,9,'producer','producer',NULL),(862846,932037,10,'producer','producer',NULL),(862846,10736,1,'actress',NULL,'[\"Rose\"]'),(862846,1289434,2,'actress',NULL,'[\"Norah\"]'),(862846,273,3,'actor',NULL,'[\"Joe\"]'),(862846,1555151,4,'actor',NULL,'[\"Oscar\"]'),(862846,420422,5,'director',NULL,NULL),(862846,1202932,6,'writer','written by',NULL),(862846,1330162,7,'producer','producer',NULL),(862846,764771,8,'producer','producer',NULL),(862846,1196755,9,'producer','producer',NULL),(862856,293081,10,'production_designer',NULL,NULL),(862856,1593,1,'actress',NULL,'[\"Laurie\"]'),(862856,4051,2,'actor',NULL,'[\"Mr. Kreeg\"]'),(862856,48414,3,'actor',NULL,'[\"Steven\"]'),(862856,1468674,4,'actress',NULL,'[\"Maria\"]'),(862856,1002424,5,'director',NULL,NULL),(862856,1741,6,'producer','producer',NULL),(862856,1884354,7,'composer',NULL,NULL),(862856,534215,8,'cinematographer','director of photography',NULL),(862856,1337238,9,'editor',NULL,NULL),(863091,2390011,1,'actor',NULL,'[\"Mukhsin\"]'),(863091,2392493,2,'actress',NULL,'[\"Orked\"]'),(863091,3098525,3,'actor',NULL,'[\"Husin\"]'),(863091,1379108,4,'self',NULL,'[\"Self\"]'),(863091,2520354,5,'producer','producer',NULL),(863091,1339985,6,'composer',NULL,NULL),(863091,1723349,7,'cinematographer',NULL,NULL),(863091,1768675,8,'editor',NULL,NULL),(864761,848932,10,'producer','producer',NULL),(864761,461136,1,'actress',NULL,'[\"Georgiana\"]'),(864761,146,2,'actor',NULL,'[\"The Duke\"]'),(864761,1002641,3,'actor',NULL,'[\"Charles Grey\"]'),(864761,1648,4,'actress',NULL,'[\"Lady Spencer\"]'),(864761,1314116,5,'director',NULL,NULL),(864761,368774,6,'writer','screenplay',NULL),(864761,421314,7,'writer','screenplay',NULL),(864761,2393619,8,'writer','book \"Georgiana, Duchess of Devonshire\"',NULL),(864761,474138,9,'producer','producer',NULL),(864835,450774,10,'writer','based upon the characters and format created by: \"Sherman and Peabody\"',NULL),(864835,123092,1,'actor',NULL,'[\"Mr. Peabody\"]'),(864835,1934618,2,'actor',NULL,'[\"Sherman\"]'),(864835,170306,3,'actor',NULL,'[\"Paul Peterson\"]'),(864835,5182,4,'actress',NULL,'[\"Patty Peterson\"]'),(864835,591450,5,'director',NULL,NULL),(864835,911599,6,'writer','based on the series produced by',NULL),(864835,1362905,7,'writer','screenplay',NULL),(864835,304830,8,'writer','additional dialogue',NULL),(864835,502073,9,'writer','additional dialogue',NULL),(865556,3703,10,'editor',NULL,NULL),(865556,329,1,'actor',NULL,'[\"Lu Yan\",\"Old Hop\"]'),(865556,1472,2,'actor',NULL,'[\"The Monkey King\",\"The Silent Monk\"]'),(865556,29400,3,'actor',NULL,'[\"Jason Tripitikas\"]'),(865556,2973494,4,'actress',NULL,'[\"Southie Girl\"]'),(865556,591450,5,'director',NULL,NULL),(865556,299301,6,'writer','written by',NULL),(865556,798661,7,'producer','producer',NULL),(865556,1384267,8,'composer',NULL,NULL),(865556,666702,9,'cinematographer','director of photography',NULL),(866437,956374,10,'composer',NULL,NULL),(866437,834,1,'actress',NULL,'[\"Bernadette\"]'),(866437,199215,2,'actor',NULL,'[\"Grigg\"]'),(866437,312,3,'actress',NULL,'[\"Sylvia\"]'),(866437,4742,4,'actress',NULL,'[\"Jocelyn\"]'),(866437,842523,5,'director',NULL,NULL),(866437,1983962,6,'writer','book',NULL),(866437,130492,7,'producer','producer',NULL),(866437,528724,8,'producer','producer',NULL),(866437,2443582,9,'producer','producer',NULL),(866439,340003,10,'composer',NULL,NULL),(866439,1131,1,'actor',NULL,'[\"Tom\"]'),(866439,1157358,2,'actress',NULL,'[\"Hannah\"]'),(866439,571727,3,'actor',NULL,'[\"Colin\"]'),(866439,362429,4,'actor',NULL,'[\"Felix\"]'),(866439,917992,5,'director',NULL,NULL),(866439,1186373,6,'writer','screenplay',NULL),(866439,438226,7,'writer','screenplay',NULL),(866439,253323,8,'writer','screenplay',NULL),(866439,605775,9,'producer','producer',NULL),(868394,326411,10,'producer','producer',NULL),(868394,319171,1,'actor',NULL,'[\"Jack Miller\"]'),(868394,2532109,2,'actor',NULL,'[\"Young Jack\"]'),(868394,2428050,3,'actor',NULL,'[\"Sean Miller\"]'),(868394,538566,4,'actress',NULL,'[\"Receptionist 1\"]'),(868394,875468,5,'director',NULL,NULL),(868394,308376,6,'writer','creator',NULL),(868394,840626,7,'writer','short story',NULL),(868394,1078073,8,'writer','teleplay',NULL),(868394,1878845,9,'producer','producer',NULL),(869977,1780517,10,'editor',NULL,NULL),(869977,2621785,1,'actress',NULL,'[\"Marie\"]'),(869977,2404515,2,'actress',NULL,'[\"Anne\"]'),(869977,1194748,3,'actress',NULL,'[\"Floriane\"]'),(869977,1237973,4,'actor',NULL,'[\"François\"]'),(869977,1780037,5,'director',NULL,NULL),(869977,1309676,6,'producer','producer',NULL),(869977,233295,7,'producer','producer',NULL),(869977,1768243,8,'composer',NULL,NULL),(869977,994004,9,'cinematographer',NULL,NULL),(870089,2437976,10,'production_designer',NULL,NULL),(870089,1124861,1,'actor',NULL,'[\"Jeff\"]'),(870089,2413403,2,'actor',NULL,'[\"Andrea\"]'),(870089,2441210,3,'actor',NULL,'[\"Mark\"]'),(870089,1323496,4,'actress',NULL,'[\"Lauren\"]'),(870089,1315989,5,'director',NULL,NULL),(870089,1108134,6,'producer','producer',NULL),(870089,2374779,7,'composer',NULL,NULL),(870089,1099781,8,'cinematographer','director of photography',NULL),(870089,1108007,9,'editor',NULL,NULL),(870090,1247772,10,'producer','producer',NULL),(870090,1179683,1,'actor',NULL,'[\"Acerola\"]'),(870090,1130610,2,'actor',NULL,'[\"Laranjinha\"]'),(870090,1178560,3,'actor',NULL,'[\"Madrugadão\"]'),(870090,1775058,4,'actor',NULL,'[\"Heraldo\"]'),(870090,603758,5,'director',NULL,NULL),(870090,811709,6,'writer','screenplay',NULL),(870090,603543,7,'writer','screenplay collaboration',NULL),(870090,1130251,8,'writer','inspired by the characters created by',NULL),(870090,53070,9,'producer','producer',NULL),(870111,1877,10,'composer',NULL,NULL),(870111,1449,1,'actor',NULL,'[\"Richard Nixon\"]'),(870111,790688,2,'actor',NULL,'[\"David Frost\"]'),(870111,102,3,'actor',NULL,'[\"Jack Brennan\"]'),(870111,5377,4,'actor',NULL,'[\"James Reston, Jr.\"]'),(870111,165,5,'director',NULL,NULL),(870111,604948,6,'writer','based on the stage play by',NULL),(870111,79677,7,'producer','producer',NULL),(870111,271479,8,'producer','producer',NULL),(870111,4976,9,'producer','producer',NULL),(870154,326247,10,'writer','screen story by',NULL),(870154,425005,1,'actor',NULL,'[\"Frank Wolff\"]'),(870154,1289434,2,'actress',NULL,'[\"Lily Houghton\"]'),(870154,1183149,3,'actor',NULL,'[\"Aguirre\"]'),(870154,3099754,4,'actor',NULL,'[\"MacGregor Houghton\"]'),(870154,1429471,5,'director',NULL,NULL),(870154,338169,6,'writer','screenplay by',NULL),(870154,275629,7,'writer','screenplay by',NULL),(870154,720135,8,'writer','screenplay by',NULL),(870154,636358,9,'writer','screen story by',NULL),(870984,432331,10,'production_designer',NULL,NULL),(870984,353,1,'actor',NULL,'[\"He\"]'),(870984,1250,2,'actress',NULL,'[\"She\"]'),(870984,3527143,3,'actor',NULL,'[\"Nic\"]'),(870984,1885,4,'director',NULL,NULL),(870984,284070,5,'producer','producer',NULL),(870984,253120,6,'composer',NULL,NULL),(870984,230045,7,'cinematographer','director of photography',NULL),(870984,609129,8,'editor','co-editor',NULL),(870984,716343,9,'editor',NULL,NULL),(871197,4360,10,'cinematographer','director of photography',NULL),(871197,1365460,1,'actress',NULL,'[\"Abbey Addison\"]'),(871197,233027,2,'actor',NULL,'[\"Cliff Addison\"]'),(871197,303442,3,'actress',NULL,'[\"Dr. Loring\"]'),(871197,929,4,'actor',NULL,'[\"Ira\"]'),(871197,3343,5,'director',NULL,NULL),(871197,261176,6,'writer','written by',NULL),(871197,724678,7,'producer','producer',NULL),(871197,746614,8,'producer','producer',NULL),(871197,1128842,9,'composer',NULL,NULL),(871426,337669,10,'editor',NULL,NULL),(871426,275486,1,'actress',NULL,'[\"Kate\"]'),(871426,688132,2,'actress',NULL,'[\"Angie\"]'),(871426,244,3,'actress',NULL,'[\"Chaffee Bicknell\"]'),(871426,1427,4,'actor',NULL,'[\"Rob\"]'),(871426,567112,5,'director',NULL,NULL),(871426,326415,6,'producer','producer',NULL),(871426,584427,7,'producer','producer',NULL),(871426,962378,8,'composer',NULL,NULL),(871426,645401,9,'cinematographer','director of photography',NULL),(871510,11689404,10,'composer',NULL,NULL),(871510,451321,1,'actor',NULL,'[\"Kabir Khan\"]'),(871510,1540244,2,'actress',NULL,'[\"Vidya Sharma\"]'),(871510,2469366,3,'actress',NULL,'[\"Preety Sabharwal\"]'),(871510,1427076,4,'actress',NULL,'[\"Bindia Naik\"]'),(871510,24912,5,'director',NULL,NULL),(871510,1156290,6,'writer','dialogue',NULL),(871510,159147,7,'producer','producer',NULL),(871510,7181,8,'producer','producer',NULL),(871510,1224445,9,'composer',NULL,NULL),(872230,574097,10,'editor',NULL,NULL),(872230,1302735,1,'actor',NULL,'[\"Bug\"]'),(872230,1910274,2,'actor',NULL,'[\"Alex\"]'),(872230,1091701,3,'actor',NULL,'[\"Jerome\"]'),(872230,340720,4,'actress',NULL,'[\"Penelope\"]'),(872230,127,5,'director',NULL,NULL),(872230,441097,6,'producer','line producer',NULL),(872230,479757,7,'producer','producer',NULL),(872230,1937,8,'composer',NULL,NULL),(872230,1134158,9,'cinematographer','director of photography',NULL),(873886,662981,1,'actor',NULL,'[\"Abin Cooper\"]'),(873886,502425,2,'actress',NULL,'[\"Sara\"]'),(873886,422,3,'actor',NULL,'[\"Joseph Keenan\"]'),(873886,29400,4,'actor',NULL,'[\"Travis\"]'),(873886,3620,5,'director',NULL,NULL),(873886,330335,6,'producer','producer',NULL),(873886,3140,7,'cinematographer','director of photography',NULL),(873886,573416,8,'production_designer',NULL,NULL),(874271,3079574,10,'composer',NULL,NULL),(874271,447695,1,'actress',NULL,'[\"Sarah\"]'),(874271,340973,2,'actor',NULL,'[\"Mr. Tod\"]'),(874271,713389,3,'actress',NULL,'[\"Jillian\"]'),(874271,913587,4,'actor',NULL,'[\"Billy\"]'),(874271,394032,5,'director',NULL,NULL),(874271,5195431,6,'writer','writer',NULL),(874271,2406753,7,'producer','producer',NULL),(874271,658753,8,'producer','producer',NULL),(874271,1536187,9,'producer','producer',NULL),(874425,198507,10,'production_designer',NULL,NULL),(874425,701512,1,'actress',NULL,'[\"Lucy\"]'),(874425,565250,2,'actress',NULL,'[\"Becky\"]'),(874425,837942,3,'actor',NULL,'[\"Austin\"]'),(874425,507629,4,'actor',NULL,'[\"Raye\"]'),(874425,853238,5,'director',NULL,NULL),(874425,337676,6,'producer','producer',NULL),(874425,1704813,7,'composer',NULL,NULL),(874425,513403,8,'cinematographer',NULL,NULL),(874425,338032,9,'editor',NULL,NULL),(875034,3688913,10,'writer','Broadway musical \"Nine\" Italian original',NULL),(875034,358,1,'actor',NULL,'[\"Guido Contini\"]'),(875034,182839,2,'actress',NULL,'[\"Luisa Contini\"]'),(875034,4851,3,'actress',NULL,'[\"Carla\"]'),(875034,233604,4,'actor',NULL,'[\"Studio Superintendent\"]'),(875034,551128,5,'director',NULL,NULL),(875034,866062,6,'writer','screenplay',NULL),(875034,5237,7,'writer','screenplay',NULL),(875034,465792,8,'writer','Broadway musical \"Nine\"',NULL),(875034,1169564,9,'writer','Broadway musical \"Nine\"',NULL),(875113,381090,10,'composer',NULL,NULL),(875113,241121,1,'actor',NULL,'[\"Octave Parango\"]'),(875113,704474,2,'actor',NULL,'[\"Charles \'Charlie\' Dagout\"]'),(875113,587791,3,'actor',NULL,'[\"Jean-François \'Jeff\' Marolles\"]'),(875113,320209,4,'actress',NULL,'[\"Sophie\"]'),(875113,468007,5,'director',NULL,NULL),(875113,3299329,6,'writer','screenplay and dialogue',NULL),(875113,3298144,7,'writer','screenplay and dialogue',NULL),(875113,67166,8,'writer','novel',NULL),(875113,4347,9,'producer','producer',NULL),(876154,459268,10,'composer',NULL,NULL),(876154,868,1,'actress',NULL,'[\"Meg Davidson\"]'),(876154,817819,2,'actor',NULL,'[\"Tom Davidson\"]'),(876154,531966,3,'actor',NULL,'[\"Det. Wilson\"]'),(876154,2057726,4,'actress',NULL,'[\"Lisa Carver\"]'),(876154,409036,5,'director',NULL,NULL),(876154,492553,6,'writer','written by',NULL),(876154,2399346,7,'writer','written by',NULL),(876154,1191033,8,'producer','executive producer',NULL),(876154,2419804,9,'composer',NULL,NULL),(876294,14714,1,'actor',NULL,'[\"Sgt. Jim McCulloch\"]'),(876294,2428131,2,'actor',NULL,'[\"Cpl. Jez Nicholson\"]'),(876294,2408572,3,'actress',NULL,'[\"Leeann\"]'),(876294,286170,4,'actress',NULL,'[\"Sharon Buckley\"]'),(876294,2408930,5,'director',NULL,NULL),(876294,2405606,6,'director',NULL,NULL),(876294,1841360,7,'composer',NULL,NULL),(876294,2405325,8,'cinematographer',NULL,NULL),(876563,645777,10,'cinematographer','director of photography',NULL),(876563,949,1,'actress',NULL,'[\"Gran Mamare\"]'),(876563,354,2,'actor',NULL,'[\"Kôichi\"]'),(876563,553,3,'actor',NULL,'[\"Fujimoto\"]'),(876563,945359,4,'actress',NULL,'[\"Risa\"]'),(876563,594503,5,'director',NULL,NULL),(876563,558953,6,'writer','screenplay',NULL),(876563,1297907,7,'producer','producer',NULL),(876563,840699,8,'producer','producer',NULL),(876563,386749,9,'composer',NULL,NULL),(877368,603673,10,'editor',NULL,NULL),(877368,2409723,1,'actress',NULL,'[\"Abby\"]'),(877368,2410699,2,'actress',NULL,'[\"Kayako\"]'),(877368,2411782,3,'actress',NULL,'[\"Woman on Bench\"]'),(877368,2412997,4,'actor',NULL,'[\"Josh\"]'),(877368,929317,5,'director',NULL,NULL),(877368,2406892,6,'writer','written by',NULL),(877368,152401,7,'producer','producer',NULL),(877368,2366,8,'composer',NULL,NULL),(877368,235143,9,'cinematographer',NULL,NULL),(878804,1980,10,'composer',NULL,NULL),(878804,2466842,1,'actor',NULL,'[\"Michael Oher\"]'),(878804,113,2,'actress',NULL,'[\"Leigh Anne Tuohy\"]'),(878804,5210,3,'actor',NULL,'[\"Sean Tuohy\"]'),(878804,2052567,4,'actor',NULL,'[\"S.J. Tuohy\"]'),(878804,359387,5,'director',NULL,NULL),(878804,1034122,6,'writer','book \"The Blind Side: Evolution of a Game\"',NULL),(878804,424663,7,'producer','producer',NULL),(878804,467255,8,'producer','producer',NULL),(878804,626696,9,'producer','producer',NULL),(878835,292482,10,'editor',NULL,NULL),(878835,1416,1,'actress',NULL,'[\"Kate\"]'),(878835,1624,2,'actor',NULL,'[\"Alex\"]'),(878835,356017,3,'actress',NULL,'[\"Rebecca\"]'),(878835,444752,4,'actress',NULL,'[\"Cathy\"]'),(878835,392237,5,'director',NULL,NULL),(878835,106835,6,'producer','producer',NULL),(878835,2125260,7,'composer',NULL,NULL),(878835,953616,8,'composer',NULL,NULL),(878835,1078971,9,'cinematographer','director of photography',NULL),(879870,724744,10,'cinematographer','director of photography',NULL),(879870,210,1,'actress',NULL,'[\"Liz Gilbert\"]'),(879870,849,2,'actor',NULL,'[\"Felipe\"]'),(879870,420955,3,'actor',NULL,'[\"Richard from Texas\"]'),(879870,205626,4,'actress',NULL,'[\"Delia Shiraz\"]'),(879870,614682,5,'director',NULL,NULL),(879870,759022,6,'writer','screenplay',NULL),(879870,2418691,7,'writer','book',NULL),(879870,306890,8,'producer','producer',NULL),(879870,547050,9,'composer',NULL,NULL),(880502,458430,10,'cinematographer',NULL,NULL),(880502,205811,1,'actor',NULL,'[\"Nejat Aksu\"]'),(880502,3622499,2,'actor',NULL,'[\"Sohn des Tankstelleninhabers\"]'),(880502,5291133,3,'actor',NULL,'[\"Tankstelleninhaber\"]'),(880502,193579,4,'actor',NULL,'[\"Ali Aksu\"]'),(880502,15359,5,'director',NULL,NULL),(880502,535323,6,'producer','producer',NULL),(880502,857875,7,'producer','producer',NULL),(880502,944279,8,'producer','producer',NULL),(880502,2751202,9,'composer',NULL,NULL),(881891,212933,10,'editor',NULL,NULL),(881891,113,1,'actress',NULL,'[\"Mary Horowitz\"]'),(881891,177896,2,'actor',NULL,'[\"Steve\"]'),(881891,2006,3,'actor',NULL,'[\"Hartman\"]'),(881891,421822,4,'actor',NULL,'[\"Angus\"]'),(881891,1288766,5,'director',NULL,NULL),(881891,2184890,6,'writer','written by',NULL),(881891,572131,7,'producer','producer',NULL),(881891,65100,8,'composer',NULL,NULL),(881891,5891,9,'cinematographer','director of photography',NULL),(882978,1236491,10,'producer','producer',NULL),(882978,490489,1,'actor',NULL,'[\"Zhao Zilong\"]'),(882978,5033,2,'actor',NULL,'[\"Luo Ping-An\"]'),(882978,702572,3,'actress',NULL,'[\"Cao Ying\"]'),(882978,699699,4,'actor',NULL,'[\"Zhuge Liang\"]'),(882978,496752,5,'director',NULL,NULL),(882978,1210118,6,'writer','writer',NULL),(882978,526824,7,'writer','novel \"Romance of the Three Kingdoms\"',NULL),(882978,1045686,8,'producer','producer',NULL),(882978,1682154,9,'producer','executive producer',NULL),(884328,1121207,10,'editor',NULL,NULL),(884328,5048,1,'actor',NULL,'[\"David Drayton\"]'),(884328,1315,2,'actress',NULL,'[\"Mrs. Carmody\"]'),(884328,390229,3,'actress',NULL,'[\"Amanda Dunfrey\"]'),(884328,105672,4,'actor',NULL,'[\"Brent Norton\"]'),(884328,1104,5,'director',NULL,NULL),(884328,175,6,'writer','novella',NULL),(884328,323065,7,'producer','producer',NULL),(884328,6142,8,'composer',NULL,NULL),(884328,773180,9,'cinematographer','director of photography',NULL),(884726,140971,10,'producer','producer',NULL),(884726,584951,1,'actress',NULL,'[\"Dorothy\"]'),(884726,1288,2,'actor',NULL,'[\"Tin Man\"]'),(884726,101,3,'actor',NULL,'[\"Scarecrow\"]'),(884726,902,4,'actor',NULL,'[\"Lion\"]'),(884726,278181,5,'director',NULL,NULL),(884726,820800,6,'director',NULL,NULL),(884726,62126,7,'writer','novel: Dorothy of Oz',NULL),(884726,1147756,8,'writer','screenplay',NULL),(884726,1163211,9,'writer','screenplay',NULL),(884732,513799,10,'cinematographer','director of photography',NULL),(884732,366389,1,'actor',NULL,'[\"Jimmy Callahan\",\"Bic\"]'),(884732,1265802,2,'actor',NULL,'[\"Doug Harris\"]'),(884732,192505,3,'actress',NULL,'[\"Gretchen Palmer\"]'),(884732,1649714,4,'actor',NULL,'[\"Reggie\",\"Drysdale\"]'),(884732,1275670,5,'director',NULL,NULL),(884732,1191891,6,'writer','written by',NULL),(884732,276178,7,'producer','producer',NULL),(884732,655510,8,'producer','producer',NULL),(884732,501999,9,'composer',NULL,NULL),(884819,3066296,10,'editor',NULL,NULL),(884819,457219,1,'actress',NULL,'[\"Ume\"]'),(884819,949097,2,'actress',NULL,'[\"Kame\"]'),(884819,1626086,3,'actress',NULL,'[\"Aminaoshi\"]'),(884819,5365491,4,'actress',NULL,NULL),(884819,1543907,5,'director',NULL,NULL),(884819,3065683,6,'producer','producer',NULL),(884819,3065891,7,'producer','producer',NULL),(884819,3066216,8,'composer',NULL,NULL),(884819,2424406,9,'cinematographer',NULL,NULL),(887732,893206,10,'composer',NULL,NULL),(887732,125540,1,'actress',NULL,'[\"Elsa\"]'),(887732,16263,2,'actor',NULL,'[\"Michele\"]'),(887732,61484,3,'actor',NULL,'[\"Vito\"]'),(887732,2130040,4,'actress',NULL,'[\"Alice\"]'),(887732,812862,5,'director',NULL,NULL),(887732,502859,6,'writer','story',NULL),(887732,1154102,7,'writer','story',NULL),(887732,1703635,8,'writer','screenplay',NULL),(887732,148783,9,'producer','producer',NULL),(887745,924024,10,'cinematographer',NULL,NULL),(887745,722,1,'actor',NULL,'[\"Donald Vanston\"]'),(887745,2017943,2,'actress',NULL,'[\"Ellie Harris\"]'),(887745,103699,3,'actress',NULL,'[\"Kate Harris\"]'),(887745,282560,4,'actor',NULL,'[\"William\"]'),(887745,1396104,5,'director',NULL,NULL),(887745,82759,6,'writer','short story',NULL),(887745,664647,7,'writer','screenplay',NULL),(887745,669348,8,'producer','producer',NULL),(887745,4070,9,'composer',NULL,NULL),(887883,93,1,'actor',NULL,'[\"Chad Feldheimer\"]'),(887883,531,2,'actress',NULL,'[\"Linda Litzke\"]'),(887883,123,3,'actor',NULL,'[\"Harry Pfarrer\"]'),(887883,518,4,'actor',NULL,'[\"Osborne Cox\"]'),(887883,1053,5,'director',NULL,NULL),(887883,1054,6,'director',NULL,NULL),(887883,1980,7,'composer',NULL,NULL),(887883,523881,8,'cinematographer','director of photography',NULL),(887883,327211,9,'production_designer',NULL,NULL),(887912,761486,10,'composer',NULL,NULL),(887912,719637,1,'actor',NULL,'[\"Staff Sergeant William James\"]'),(887912,1107001,2,'actor',NULL,'[\"Sergeant JT Sanborn\"]'),(887912,1310016,3,'actor',NULL,'[\"Specialist Owen Eldridge\"]'),(887912,1602,4,'actor',NULL,'[\"Sergeant Matt Thompson\"]'),(887912,941,5,'director',NULL,NULL),(887912,1676793,6,'writer','written by',NULL),(887912,1291566,7,'producer','producer',NULL),(887912,788513,8,'producer','producer',NULL),(887912,1937,9,'composer',NULL,NULL),(887971,1191033,10,'producer','producer',NULL),(887971,107,1,'actress',NULL,'[\"Della\"]'),(887971,1305,2,'actor',NULL,'[\"Chuckie\"]'),(887971,1729,3,'actor',NULL,'[\"Kenneth\"]'),(887971,1399266,4,'actor',NULL,'[\"Huey\"]'),(887971,1848205,5,'director',NULL,NULL),(887971,117092,6,'writer','short story',NULL),(887971,4703396,7,'producer','producer',NULL),(887971,22053,8,'producer','producer',NULL),(887971,6613,9,'producer','producer',NULL),(888019,2457324,10,'composer',NULL,NULL),(888019,2432316,1,'actress',NULL,'[\"Isabella\"]'),(888019,2428788,2,'actress',NULL,'[\"Jamie\"]'),(888019,2436061,3,'actress',NULL,'[\"Melanie\"]'),(888019,2430826,4,'actress',NULL,'[\"Caroline\"]'),(888019,2431359,5,'director',NULL,NULL),(888019,2428830,6,'director',NULL,NULL),(888019,382913,7,'writer','story',NULL),(888019,2431307,8,'producer','producer',NULL),(888019,2435373,9,'composer',NULL,NULL),(889573,947695,10,'producer','producer',NULL),(889573,98,1,'actress',NULL,'[\"Kassie Larson\"]'),(889573,867,2,'actor',NULL,'[\"Wally Mars\"]'),(889573,933940,3,'actor',NULL,'[\"Roland\"]'),(889573,156,4,'actor',NULL,'[\"Leonard\"]'),(889573,330347,5,'director',NULL,NULL),(889573,817447,6,'director',NULL,NULL),(889573,262325,7,'writer','based on the short story \"Baster\" by',NULL),(889573,1615610,8,'writer','screenplay by',NULL),(889573,74100,9,'producer','producer',NULL),(889583,506075,10,'producer','producer',NULL),(889583,56187,1,'actor',NULL,'[\"Brüno\"]'),(889583,358390,2,'actor',NULL,'[\"Lutz\"]'),(889583,3042403,3,'actor',NULL,'[\"Diesel\"]'),(889583,3495911,4,'actor',NULL,'[\"O.J.\"]'),(889583,153078,5,'director',NULL,NULL),(889583,385630,6,'writer','screenplay',NULL),(889583,563243,7,'writer','screenplay',NULL),(889583,769840,8,'writer','screenplay',NULL),(889583,63165,9,'writer','story',NULL),(889600,3413,10,'cinematographer',NULL,NULL),(889600,192505,1,'actress',NULL,'[\"Alyson\"]'),(889600,2452347,2,'actress',NULL,'[\"Ramona\"]'),(889600,309605,3,'actor',NULL,'[\"Jim\"]'),(889600,2109108,4,'actress',NULL,'[\"Jamie\"]'),(889600,56492,5,'director',NULL,NULL),(889600,522757,6,'writer',NULL,NULL),(889600,713172,7,'producer','producer',NULL),(889600,995591,8,'producer','producer',NULL),(889600,65687,9,'composer',NULL,NULL),(889665,1564718,10,'composer',NULL,NULL),(889665,431956,1,'actor',NULL,'[\"Blaise\",\"Chuck\"]'),(889665,66080,2,'actor',NULL,'[\"Georges\"]'),(889665,483200,3,'actor',NULL,'[\"Serge\"]'),(889665,1627697,4,'actor',NULL,'[\"Dan\"]'),(889665,1189197,5,'director',NULL,NULL),(889665,183016,6,'producer','producer',NULL),(889665,486627,7,'producer','producer',NULL),(889665,745689,8,'producer','producer',NULL),(889665,2695678,9,'composer',NULL,NULL),(890870,388898,10,'producer','producer',NULL),(890870,68551,1,'actor',NULL,'[\"Jigsaw\",\"John\"]'),(890870,666398,2,'actor',NULL,'[\"Agent Strahm\"]'),(890870,274371,3,'actor',NULL,'[\"Art\"]'),(890870,541908,4,'actor',NULL,'[\"Hoffman\"]'),(890870,1135423,5,'director',NULL,NULL),(890870,1733317,6,'writer','screenplay by',NULL),(890870,1729303,7,'writer','screenplay by',NULL),(890870,272090,8,'writer','story by',NULL),(890870,121117,9,'producer','producer',NULL),(891527,404528,10,'editor',NULL,NULL),(891527,129,1,'actor',NULL,'[\"Senator Jasper Irving\"]'),(891527,658,2,'actress',NULL,'[\"Janine Roth\"]'),(891527,602,3,'actor',NULL,'[\"Professor Stephen Malley\"]'),(891527,671567,4,'actor',NULL,'[\"Ernest Rodriguez\"]'),(891527,1996352,5,'writer','written by',NULL),(891527,265944,6,'producer','producer',NULL),(891527,369448,7,'producer','producer',NULL),(891527,6142,8,'composer',NULL,NULL),(891527,3542,9,'cinematographer','director of photography',NULL),(892100,2852306,10,'composer',NULL,NULL),(892100,2039,1,'actress',NULL,'[\"Doris\"]'),(892100,639,2,'actress',NULL,'[\"Laurie\"]'),(892100,2318089,3,'actress',NULL,'[\"Elizabeth\"]'),(892100,2024927,4,'actor',NULL,'[\"Roy\"]'),(892100,771362,5,'director',NULL,NULL),(892100,2439247,6,'producer','producer',NULL),(892100,2198739,7,'producer','producer',NULL),(892100,2331154,8,'producer','producer',NULL),(892100,970989,9,'composer',NULL,NULL),(892255,958661,10,'editor',NULL,NULL),(892255,566,1,'actress',NULL,'[\"Lisa Howard\"]'),(892255,1125,2,'actor',NULL,'[\"Ernesto Che Guevara\"]'),(892255,1209966,3,'actor',NULL,'[\"Interpreter\"]'),(892255,1206875,4,'actor',NULL,'[\"Dinner Guest #1\"]'),(892255,1752,5,'director',NULL,NULL),(892255,118224,6,'writer','screenplay',NULL),(892255,346466,7,'writer','memoir \"Reminiscences of the Cuban Revolutionary War\"',NULL),(892255,81046,8,'producer','producer',NULL),(892255,407076,9,'composer',NULL,NULL),(892318,438210,10,'producer','producer',NULL),(892318,1086543,1,'actress',NULL,'[\"Sophie\"]'),(892318,305558,2,'actor',NULL,'[\"Victor\"]'),(892318,603,3,'actress',NULL,'[\"Claire\"]'),(892318,213482,4,'actress',NULL,'[\"Lorraine\"]'),(892318,935095,5,'director',NULL,NULL),(892318,1433580,6,'writer','written by',NULL),(892318,3201,7,'writer','written by',NULL),(892318,289,8,'producer','producer',NULL),(892318,4799,9,'producer','producer',NULL),(892769,1104057,10,'writer','additional screenplay material',NULL),(892769,59431,1,'actor',NULL,'[\"Hiccup\"]'),(892769,124930,2,'actor',NULL,'[\"Stoick\"]'),(892769,2395586,3,'actor',NULL,'[\"Fishlegs\"]'),(892769,272401,4,'actor',NULL,'[\"Gobber\"]'),(892769,213450,5,'director',NULL,NULL),(892769,761498,6,'director',NULL,NULL),(892769,204030,7,'writer','screenplay by',NULL),(892769,2441763,8,'writer','based on the book by',NULL),(892769,405190,9,'writer','collaborating writer',NULL),(892782,74184,10,'writer','screenplay by',NULL),(892782,702,1,'actress',NULL,'[\"Susan Murphy\",\"Ginormica\"]'),(892782,933988,2,'actor',NULL,'[\"Gallaxhar\"]'),(892782,170306,3,'actor',NULL,'[\"President Hathaway\"]'),(892782,736622,4,'actor',NULL,'[\"B.O.B.\"]'),(892782,1224299,5,'director',NULL,NULL),(892782,970447,6,'director',NULL,NULL),(892782,285379,7,'writer','screenplay by',NULL),(892782,938645,8,'writer','screenplay by',NULL),(892782,8743,9,'writer','screenplay by',NULL),(892791,254645,10,'writer','based on the characters created by',NULL),(892791,196,1,'actor',NULL,'[\"Shrek\"]'),(892791,139,2,'actress',NULL,'[\"Princess Fiona\"]'),(892791,552,3,'actor',NULL,'[\"Donkey\"]'),(892791,104,4,'actor',NULL,'[\"Puss in Boots\"]'),(892791,593610,5,'director',NULL,NULL),(892791,458441,6,'writer','written by',NULL),(892791,501359,7,'writer','written by',NULL),(892791,825308,8,'writer','based upon the book by',NULL),(892791,11470,9,'writer','based on the characters created by',NULL),(892899,835371,10,'cinematographer',NULL,NULL),(892899,829032,1,'actor',NULL,'[\"DC\"]'),(892899,905554,2,'actor',NULL,'[\"Hunt\"]'),(892899,104114,3,'actor',NULL,'[\"Prior\"]'),(892899,86324,4,'actor',NULL,'[\"Jordan\"]'),(892899,1530422,5,'director',NULL,NULL),(892899,2361978,6,'writer','screenplay',NULL),(892899,662404,7,'writer','story',NULL),(892899,656091,8,'producer','producer',NULL),(892899,1318457,9,'composer',NULL,NULL),(893402,233774,10,'production_designer',NULL,NULL),(893402,1200692,1,'actress',NULL,'[\"Emilia\",\"Sally\"]'),(893402,202,2,'actor',NULL,'[\"Preest\",\"David Esser\"]'),(893402,727165,3,'actor',NULL,'[\"Milo\"]'),(893402,384060,4,'actor',NULL,'[\"Peter Esser\"]'),(893402,573389,5,'director',NULL,NULL),(893402,859016,6,'producer','producer',NULL),(893402,847926,7,'composer',NULL,NULL),(893402,1023204,8,'cinematographer','director of photography',NULL),(893402,159698,9,'editor',NULL,NULL),(893412,33187,10,'producer','producer',NULL),(893412,4741,1,'actress',NULL,'[\"Nora Dominguez\"]'),(893412,891786,2,'actress',NULL,'[\"Mary Dominguez\"]'),(893412,65493,3,'actor',NULL,'[\"Rodrigo Fuentes\"]'),(893412,294224,4,'actress',NULL,'[\"Old Librarian\"]'),(893412,333471,5,'director',NULL,NULL),(893412,868643,6,'writer','screenplay',NULL),(893412,19079,7,'writer','screenplay',NULL),(893412,272948,8,'writer','screenplay',NULL),(893412,807,9,'writer','novel \"Sense and Sensibility\"',NULL),(896031,607673,10,'editor',NULL,NULL),(896031,397171,1,'actress',NULL,'[\"Fisher\"]'),(896031,262635,2,'actor',NULL,'[\"Jimmy\"]'),(896031,1599,3,'actor',NULL,'[\"Mr. Dobyne\"]'),(896031,268,4,'actress',NULL,'[\"Cornelia\"]'),(896031,548346,5,'director',NULL,NULL),(896031,931783,6,'writer','screenplay',NULL),(896031,317978,7,'producer','producer',NULL),(896031,651366,8,'composer',NULL,NULL),(896031,638365,9,'cinematographer','director of photography',NULL),(896529,360442,10,'editor',NULL,NULL),(896529,165101,1,'actress',NULL,'[\"Juliette Grant\"]'),(896529,796502,2,'actor',NULL,'[\"Tareq Khalifa\"]'),(896529,25745,3,'actress',NULL,'[\"Kathryn\"]'),(896529,30251,4,'actress',NULL,'[\"Yasmeen\"]'),(896529,618779,5,'director',NULL,NULL),(896529,172256,6,'producer','producer',NULL),(896529,410065,7,'producer','producer',NULL),(896529,4070,8,'composer',NULL,NULL),(896529,600261,9,'cinematographer','director of photography',NULL),(896534,1255590,10,'editor',NULL,NULL),(896534,2057036,1,'actor',NULL,'[\"Rickie\"]'),(896534,781913,2,'actor',NULL,'[\"JT\"]'),(896534,2127038,3,'actress',NULL,'[\"Joann\"]'),(896534,2164512,4,'actor',NULL,'[\"Wheeler\"]'),(896534,1306443,5,'director',NULL,NULL),(896534,362847,6,'director','co-director',NULL),(896534,351772,7,'writer','writer',NULL),(896534,61865,8,'composer',NULL,NULL),(896534,1104850,9,'cinematographer',NULL,NULL),(896798,503592,10,'producer','producer',NULL),(896798,168,1,'actor',NULL,'[\"Tom Cutler\"]'),(896798,438,2,'actor',NULL,'[\"Eddie Lorenzo\"]'),(896798,578949,3,'actress',NULL,'[\"Ann Norcut\"]'),(896798,350079,4,'actor',NULL,'[\"Det. Jim Vargas\"]'),(896798,1317,5,'director',NULL,NULL),(896798,17690,6,'writer','written by',NULL),(896798,266813,7,'producer','producer',NULL),(896798,326512,8,'producer','producer',NULL),(896798,342788,9,'producer','producer',NULL),(896872,570100,10,'cinematographer','director of photography',NULL),(896872,1838,1,'actress',NULL,'[\"Kathryn Bolkovac\"]'),(896872,899,2,'actress',NULL,'[\"Laura Leviani\"]'),(896872,603,3,'actress',NULL,'[\"Madeleine Rees\"]'),(896872,657,4,'actor',NULL,'[\"Peter Ward\"]'),(896872,2326979,5,'director',NULL,NULL),(896872,1672009,6,'writer','written by',NULL),(896872,1114974,7,'producer','producer',NULL),(896872,1488027,8,'producer','producer',NULL),(896872,2217,9,'composer',NULL,NULL),(896923,237779,10,'composer',NULL,NULL),(896923,1272540,1,'actor',NULL,'[\"Omar Razaghi\"]'),(896923,164,2,'actor',NULL,'[\"Adam\"]'),(896923,1250,3,'actress',NULL,'[\"Arden Langdon\"]'),(896923,4114024,4,'actor',NULL,'[\"Young Adam\"]'),(896923,412465,5,'director',NULL,NULL),(896923,695609,6,'writer','screenplay',NULL),(896923,131702,7,'writer','novel',NULL),(896923,103364,8,'producer','producer',NULL),(896923,1252883,9,'producer','producer',NULL),(896986,379855,10,'editor',NULL,NULL),(896986,194572,1,'actor',NULL,'[\"Cundo\"]'),(896986,207891,2,'actor',NULL,'[\"Fernando\"]'),(896986,879895,3,'actor',NULL,'[\"Mote\"]'),(896986,17237,4,'actor',NULL,'[\"Pablo\"]'),(896986,2238722,5,'director',NULL,NULL),(896986,1255565,6,'producer','producer',NULL),(896986,2599579,7,'composer',NULL,NULL),(896986,14193127,8,'composer',NULL,NULL),(896986,840757,9,'cinematographer','director of photography',NULL),(897361,266377,10,'editor',NULL,NULL),(897361,517820,1,'actress',NULL,'[\"Aubrey Fleming\",\"Dakota Moss\"]'),(897361,566,2,'actress',NULL,'[\"Susan Fleming\"]'),(897361,568180,3,'actor',NULL,'[\"Daniel Fleming\"]'),(897361,7491,4,'actress',NULL,'[\"Fat Teena\"]'),(897361,1032754,5,'director',NULL,NULL),(897361,2449810,6,'writer','written by',NULL),(897361,541548,7,'producer','producer',NULL),(897361,6193,8,'composer',NULL,NULL),(897361,502954,9,'cinematographer',NULL,NULL),(898367,917059,10,'producer','producer',NULL),(898367,1557,1,'actor',NULL,'[\"Man\"]'),(898367,234,2,'actress',NULL,'[\"Woman\"]'),(898367,2240346,3,'actor',NULL,'[\"Boy\"]'),(898367,380,4,'actor',NULL,'[\"Old Man\"]'),(898367,384825,5,'director',NULL,NULL),(898367,671856,6,'writer','screenplay by',NULL),(898367,565092,7,'writer','based on the book by',NULL),(898367,2445382,8,'producer','producer',NULL),(898367,777455,9,'producer','producer',NULL),(899106,4090,10,'cinematographer','director of photography',NULL),(899106,98,1,'actress',NULL,'[\"Eloise\"]'),(899106,1173,2,'actor',NULL,'[\"Burke\"]'),(899106,283945,3,'actor',NULL,'[\"Lane\"]'),(899106,2253,4,'actor',NULL,'[\"Walter\"]'),(899106,131969,5,'director',NULL,NULL),(899106,860513,6,'writer','written by',NULL),(899106,835959,7,'producer','producer',NULL),(899106,2261190,8,'composer','co-composer',NULL),(899106,2366,9,'composer',NULL,NULL),(900387,474138,10,'producer','producer',NULL),(900387,931329,1,'actress',NULL,'[\"Lucile Angellier\"]'),(900387,218,2,'actress',NULL,'[\"Madame Angellier\"]'),(900387,3053338,3,'actress',NULL,'[\"Celine Joseph\"]'),(900387,1101713,4,'actor',NULL,'[\"Monsieur Joseph\"]'),(900387,1314116,5,'director',NULL,NULL),(900387,4131020,6,'writer','screenplay',NULL),(900387,625965,7,'writer','based on the novel by',NULL),(900387,117599,8,'producer','producer',NULL),(900387,1095938,9,'producer','producer',NULL),(901476,798930,10,'producer','producer',NULL),(901476,5028,1,'actress',NULL,'[\"Liv\"]'),(901476,4266,2,'actress',NULL,'[\"Emma\"]'),(901476,298,3,'actress',NULL,'[\"Marion\"]'),(901476,1034965,4,'actor',NULL,'[\"Nate\"]'),(901476,935095,5,'director',NULL,NULL),(901476,220045,6,'writer','screenplay',NULL),(901476,1988111,7,'writer','screenplay',NULL),(901476,2053085,8,'writer','screenplay',NULL),(901476,724843,9,'producer','producer',NULL),(902290,1504478,10,'production_designer',NULL,NULL),(902290,597480,1,'actor',NULL,'[\"Arthur Blake\"]'),(902290,579,2,'actor',NULL,'[\"Father Duffy\"]'),(902290,275244,3,'actor',NULL,'[\"Willy Grimes\"]'),(902290,780133,4,'actor',NULL,'[\"Dr. Quint\"]'),(902290,1137264,5,'director',NULL,NULL),(902290,7718357,6,'writer',NULL,NULL),(902290,1490961,7,'producer','producer',NULL),(902290,1404741,8,'composer',NULL,NULL),(902290,1117076,9,'cinematographer',NULL,NULL),(903624,192253,10,'producer','producer',NULL),(903624,293509,1,'actor',NULL,'[\"Bilbo\"]'),(903624,5212,2,'actor',NULL,'[\"Gandalf\"]'),(903624,35514,3,'actor',NULL,'[\"Thorin\"]'),(903624,785227,4,'actor',NULL,'[\"Gollum\"]'),(903624,1392,5,'director',NULL,NULL),(903624,909638,6,'writer','screenplay',NULL),(903624,101991,7,'writer','screenplay',NULL),(903624,868219,8,'writer','screenplay',NULL),(903624,866058,9,'writer','novel \"The Hobbit\"',NULL),(903657,920274,10,'producer','producer',NULL),(903657,131,1,'actor',NULL,'[\"Brian - Future\"]'),(903657,200452,2,'actor',NULL,'[\"Brian - Past\"]'),(903657,6969,3,'actress',NULL,'[\"Melinda Ledbetter\"]'),(903657,316079,4,'actor',NULL,'[\"Dr. Eugene Landy\"]'),(903657,688361,5,'director',NULL,NULL),(903657,610219,6,'writer','written by',NULL),(903657,503629,7,'writer','written by',NULL),(903657,933092,8,'writer','based on the life of',NULL),(903657,689856,9,'producer','producer',NULL),(904049,645421,10,'producer','producer',NULL),(904049,475752,1,'actress',NULL,'[\"Yûko Mizushima\"]'),(904049,1935082,2,'actress',NULL,'[\"Yuki Morita\"]'),(904049,875261,3,'actress',NULL,'[\"Kiyomi Mizushima\"]'),(904049,2456657,4,'actress',NULL,'[\"Sachi Kôda\"]'),(904049,814469,5,'director',NULL,NULL),(904049,1329999,6,'writer','screenplay',NULL),(904049,2776563,7,'writer','screenplay',NULL),(904049,507793,8,'writer','english adaptation',NULL),(904049,369081,9,'producer','producer',NULL),(905372,1937,10,'composer',NULL,NULL),(905372,935541,1,'actress',NULL,'[\"Kate Lloyd\"]'),(905372,249291,2,'actor',NULL,'[\"Carter\"]'),(905372,860947,3,'actor',NULL,'[\"Dr. Sander Halvorson\"]'),(905372,647638,4,'actor',NULL,'[\"Adam Finch\"]'),(905372,374048,5,'director',NULL,NULL),(905372,2104063,6,'writer','written by',NULL),(905372,132168,7,'writer','short story \"Who Goes There?\"',NULL),(905372,8953,8,'producer','producer',NULL),(905372,628080,9,'producer','producer',NULL),(906778,903405,10,'producer','producer',NULL),(906778,396924,1,'actress',NULL,'[\"Ingrid Jonker\"]'),(906778,192377,2,'actor',NULL,'[\"Jack Cope\"]'),(906778,442,3,'actor',NULL,'[\"Abraham Jonker\"]'),(906778,163984,4,'actor',NULL,'[\"Uys Krige\"]'),(906778,644309,5,'director',NULL,NULL),(906778,490417,6,'writer',NULL,NULL),(906778,2934638,7,'producer','producer',NULL),(906778,165290,8,'producer','producer',NULL),(906778,315180,9,'producer','producer',NULL),(907657,360598,1,'actor',NULL,'[\"Guy\"]'),(907657,2461627,2,'actress',NULL,'[\"Girl\"]'),(907657,2008013,3,'actor',NULL,'[\"Timmy Drummer\"]'),(907657,2478608,4,'actor',NULL,'[\"Lead Guitarist\"]'),(907657,138809,5,'director',NULL,NULL),(907657,632017,6,'producer','producer',NULL),(907657,281800,7,'cinematographer','director of photography',NULL),(907657,1640928,8,'editor',NULL,NULL),(907657,1000613,9,'production_designer',NULL,NULL),(909010,751319,10,'composer',NULL,NULL),(909010,851113,1,'actress',NULL,'[\"Karen Cooper\"]'),(909010,717176,2,'actress',NULL,'[\"Nancy Hesketh\"]'),(909010,334441,3,'actress',NULL,'[\"Charlie Cooper\"]'),(909010,791874,4,'actor',NULL,'[\"Steve Cooper\"]'),(909010,792012,5,'director',NULL,NULL),(909010,2560138,6,'writer','novel',NULL),(909010,642513,7,'writer','screenplay',NULL),(909010,653583,8,'producer','producer',NULL),(909010,774019,9,'producer','producer',NULL),(910554,661162,10,'cinematographer','director of photography',NULL),(910554,1483369,1,'actor',NULL,'[\"Ray\"]'),(910554,1742630,2,'actor',NULL,'[\"Toby\"]'),(910554,446319,3,'actor',NULL,'[\"Pete\"]'),(910554,267506,4,'actress',NULL,'[\"Cassie\"]'),(910554,140617,5,'director',NULL,NULL),(910554,2471028,6,'writer','written by',NULL),(910554,672547,7,'producer','producer',NULL),(910554,1604703,8,'producer','producer',NULL),(910554,892868,9,'composer',NULL,NULL),(910847,137459,10,'composer',NULL,NULL),(910847,146915,1,'actor',NULL,'[\"Eric McNally\"]'),(910847,791570,2,'actor',NULL,'[\"Sam\"]'),(910847,1480090,3,'actor',NULL,'[\"Scot\"]'),(910847,31162,4,'actor',NULL,'[\"Greg Graham\"]'),(910847,528508,5,'director',NULL,NULL),(910847,2761769,6,'writer','based upon the novel by',NULL),(910847,1488064,7,'writer','written by',NULL),(910847,114401,8,'producer','producer',NULL),(910847,742651,9,'producer','executive producer',NULL),(910905,280333,10,'producer','producer',NULL),(910905,169,1,'actor',NULL,'[\"Dave Robicheaux\"]'),(910905,422,2,'actor',NULL,'[\"Julie \'Baby Feet\' Balboni\"]'),(910905,765597,3,'actor',NULL,'[\"Elrod T. Sykes\"]'),(910905,5460,4,'actress',NULL,'[\"Bootsie Robicheaux\"]'),(910905,851724,5,'director',NULL,NULL),(910905,472100,6,'writer','screenplay',NULL),(910905,1400959,7,'writer','screenplay',NULL),(910905,121715,8,'writer','novel \"In the Electric Mist with Confederate Dead\"',NULL),(910905,99748,9,'producer','producer',NULL),(910936,650615,10,'cinematographer','director of photography',NULL),(910936,736622,1,'actor',NULL,'[\"Dale Denton\"]'),(910936,290556,2,'actor',NULL,'[\"Saul Silver\"]'),(910936,170550,3,'actor',NULL,'[\"Ted Jones\"]'),(910936,1144419,4,'actor',NULL,'[\"Red\"]'),(910936,337773,5,'director',NULL,NULL),(910936,1698571,6,'writer','screenplay',NULL),(910936,31976,7,'writer','story',NULL),(910936,732024,8,'producer','producer',NULL),(910936,6251,9,'composer',NULL,NULL),(910970,742276,10,'cinematographer','director of photography: live action',NULL),(910970,123785,1,'actor',NULL,'[\"WALL·E\",\"M-O\"]'),(910970,2264184,2,'actress',NULL,'[\"EVE\"]'),(910970,307531,3,'actor',NULL,'[\"Captain\"]'),(910970,929609,4,'actor',NULL,'[\"Shelby Forthright - BNL CEO\"]'),(910970,4056,5,'director',NULL,NULL),(910970,230032,6,'writer','original story by',NULL),(910970,714114,7,'writer','screenplay by',NULL),(910970,606640,8,'producer','producer',NULL),(910970,2353,9,'composer',NULL,NULL),(913354,782900,10,'cinematographer',NULL,NULL),(913354,1551922,1,'actor',NULL,'[\"Ty Hackett\"]'),(913354,369,2,'actor',NULL,'[\"Mike Cochrane\"]'),(913354,401,3,'actor',NULL,'[\"Baines\"]'),(913354,606,4,'actor',NULL,'[\"Quinn\"]'),(913354,30735,5,'director',NULL,NULL),(913354,2476665,6,'writer','written by',NULL),(913354,232433,7,'producer','producer',NULL),(913354,2252124,8,'producer','producer',NULL),(913354,614373,9,'composer',NULL,NULL),(913425,757814,10,'editor',NULL,NULL),(913425,4851,1,'actress',NULL,'[\"Lena\"]'),(913425,392913,2,'actor',NULL,'[\"Mateo Blanco\",\"Harry Caine\"]'),(913425,692391,3,'actress',NULL,'[\"Judit García\"]'),(913425,351133,4,'actor',NULL,'[\"Ernesto Martel\"]'),(913425,264,5,'director',NULL,NULL),(913425,21948,6,'producer','producer',NULL),(913425,306088,7,'producer','producer',NULL),(913425,407076,8,'composer',NULL,NULL),(913425,6509,9,'cinematographer',NULL,NULL),(913445,51559,10,'editor',NULL,NULL),(913445,1378320,1,'actor',NULL,'[\"Matt\"]'),(913445,5318,2,'actress',NULL,'[\"Kris\"]'),(913445,95746,3,'actress',NULL,'[\"Abby\"]'),(913445,1423866,4,'actor',NULL,'[\"Andrew\"]'),(913445,1236625,5,'director',NULL,NULL),(913445,99613,6,'producer','producer',NULL),(913445,387541,7,'producer','producer',NULL),(913445,2515735,8,'composer',NULL,NULL),(913445,177861,9,'cinematographer','director of photography',NULL),(914797,2644221,10,'producer','producer',NULL),(914797,1517976,1,'actor',NULL,'[\"Bo Barrett\"]'),(914797,614,2,'actor',NULL,'[\"Steven Spurrier\"]'),(914797,597,3,'actor',NULL,'[\"Jim Barrett\"]'),(914797,1708092,4,'actor',NULL,'[\"Shenky\"]'),(914797,589168,5,'director',NULL,NULL),(914797,767713,6,'writer','screenplay',NULL),(914797,777421,7,'writer','screenplay',NULL),(914797,2658258,8,'writer','story',NULL),(914797,364787,9,'producer','producer',NULL),(914798,3920,10,'editor',NULL,NULL),(914798,2633535,1,'actor',NULL,'[\"Bruno\"]'),(914798,667,2,'actor',NULL,'[\"Father\"]'),(914798,1670029,3,'actor',NULL,'[\"Lieutenant Kotler\"]'),(914798,2726789,4,'actor',NULL,'[\"Leon\"]'),(914798,379179,5,'director',NULL,NULL),(914798,2477197,6,'writer','novel',NULL),(914798,382268,7,'producer','producer',NULL),(914798,35,8,'composer',NULL,NULL),(914798,217120,9,'cinematographer','director of photography',NULL),(914837,823,10,'composer',NULL,NULL),(914837,935653,1,'actor',NULL,'[\"Colin Diamond\"]'),(914837,574534,2,'actor',NULL,'[\"Meredith\"]'),(914837,457,3,'actor',NULL,'[\"Old Man Peanut\"]'),(914837,929489,4,'actor',NULL,'[\"Archie\"]'),(914837,893473,5,'director',NULL,NULL),(914837,578011,6,'writer','written by',NULL),(914837,778476,7,'writer','written by',NULL),(914837,1231159,8,'producer','producer',NULL),(914837,326512,9,'producer','producer',NULL),(915460,1972903,10,'cinematographer',NULL,NULL),(915460,607703,1,'actor',NULL,'[\"Ranger Bob\"]'),(915460,26285,2,'actor',NULL,'[\"Ty\"]'),(915460,86806,3,'actress',NULL,'[\"Unhappy Camper\"]'),(915460,2474348,4,'actor',NULL,'[\"Grizzly Bear\"]'),(915460,2481971,5,'director',NULL,NULL),(915460,43007,6,'producer','producer',NULL),(915460,821031,7,'producer','producer',NULL),(915460,547579,8,'composer',NULL,NULL),(915460,134720,9,'cinematographer',NULL,NULL),(918927,862664,10,'editor',NULL,NULL),(918927,658,1,'actress',NULL,'[\"Sister Aloysius Beauvier\"]'),(918927,450,2,'actor',NULL,'[\"Father Brendan Flynn\"]'),(918927,10736,3,'actress',NULL,'[\"Sister James\"]'),(918927,205626,4,'actress',NULL,'[\"Mrs. Miller\"]'),(918927,788234,5,'director',NULL,NULL),(918927,747287,6,'producer','producer',NULL),(918927,748784,7,'producer','producer',NULL),(918927,6290,8,'composer',NULL,NULL),(918927,5683,9,'cinematographer','director of photography',NULL),(918940,525059,10,'producer','producer',NULL),(918940,2907,1,'actor',NULL,'[\"John Clayton\",\"Tarzan\"]'),(918940,4920741,2,'actor',NULL,'[\"Young Tarzan (18 Years)\"]'),(918940,7222287,3,'actor',NULL,'[\"Young Tarzan (5 Years)\"]'),(918940,910607,4,'actor',NULL,'[\"Leon Rom\"]'),(918940,946734,5,'director',NULL,NULL),(918940,3092414,6,'writer','screenplay by',NULL),(918940,108132,7,'writer','screenplay by',NULL),(918940,123194,8,'writer','based on the \"Tarzan\" stories created by',NULL),(918940,57655,9,'producer','producer',NULL),(923752,2528248,1,'self',NULL,'[\"Self - Donkey Kong Challenger\"]'),(923752,1034777,2,'self',NULL,'[\"Self\"]'),(923752,2791257,3,'self',NULL,'[\"Self\"]'),(923752,2794419,4,'self',NULL,'[\"Self\"]'),(923752,1164861,5,'director',NULL,NULL),(923752,2060819,6,'producer','producer',NULL),(923752,724950,7,'composer',NULL,NULL),(923811,756145,10,'composer',NULL,NULL),(923811,644527,1,'actress',NULL,'[\"Shinji Ikari\"]'),(923811,370677,2,'actress',NULL,'[\"Rei Ayanami\",\"Yui Ikari\",\"Pen Pen\"]'),(923811,594074,3,'actress',NULL,'[\"Misato Katsuragi\"]'),(923811,945372,4,'actress',NULL,'[\"Ritsuko Akagi\"]'),(923811,556094,5,'director',NULL,NULL),(923811,875453,6,'director',NULL,NULL),(923811,30417,7,'director','chief director',NULL),(923811,1371924,8,'writer','screenplay cooperation',NULL),(923811,653004,9,'producer','executive producer',NULL),(923985,1977543,1,'actor',NULL,'[\"The Wooo Monster\"]'),(923985,2446835,2,'actor',NULL,'[\"Rain\"]'),(923985,1909398,3,'actor',NULL,'[\"Ori\",\"The Pastor\"]'),(923985,2804095,4,'actress',NULL,'[\"Blue\",\"Prologue Narrator\"]'),(923985,2488902,5,'director',NULL,NULL),(924129,179203,10,'production_designer',NULL,NULL),(924129,148,1,'actor',NULL,'[\"Max Brogan\"]'),(924129,171,2,'actress',NULL,'[\"Denise Frankel\"]'),(924129,501,3,'actor',NULL,'[\"Cole Frankel\"]'),(924129,836343,4,'actor',NULL,'[\"Gavin Kossef\"]'),(924129,469694,5,'director',NULL,NULL),(924129,550881,6,'producer','producer',NULL),(924129,6142,7,'composer',NULL,NULL),(924129,924275,8,'cinematographer','director of photography',NULL),(924129,167986,9,'editor',NULL,NULL),(925230,93582,10,'editor',NULL,NULL),(925230,2785550,1,'self',NULL,'[\"Self\"]'),(925230,2783441,2,'self',NULL,'[\"Self\"]'),(925230,2787790,3,'self',NULL,'[\"Self\"]'),(925230,4154308,4,'self',NULL,'[\"Self\"]'),(925230,1622258,5,'director',NULL,NULL),(925230,813439,6,'producer','producer',NULL),(925230,995768,7,'composer',NULL,NULL),(925230,509390,8,'composer',NULL,NULL),(925230,2506740,9,'cinematographer',NULL,NULL),(926063,1599107,10,'production_designer',NULL,NULL),(926063,2057557,1,'actor',NULL,'[\"Jimmy Dunn\"]'),(926063,2337393,2,'actress',NULL,'[\"Lindsey\"]'),(926063,2576384,3,'actor',NULL,'[\"Steven\"]'),(926063,2401385,4,'actress',NULL,'[\"Gwen\"]'),(926063,84059,5,'director',NULL,NULL),(926063,1298090,6,'writer','written by',NULL),(926063,88173,7,'producer','producer',NULL),(926063,141766,8,'composer',NULL,NULL),(926063,1013783,9,'cinematographer',NULL,NULL),(926084,6035,10,'composer',NULL,NULL),(926084,705356,1,'actor',NULL,'[\"Harry Potter\"]'),(926084,914612,2,'actress',NULL,'[\"Hermione Granger\"]'),(926084,342488,3,'actor',NULL,'[\"Ron Weasley\"]'),(926084,631490,4,'actor',NULL,'[\"Minister Rufus Scrimgeour\"]'),(926084,946734,5,'director',NULL,NULL),(926084,460141,6,'writer','screenplay',NULL),(926084,746830,7,'writer','novel \"Harry Potter and the Deathly Hallows\"',NULL),(926084,57655,8,'producer','producer',NULL),(926084,382268,9,'producer','producer',NULL),(926129,889678,10,'cinematographer',NULL,NULL),(926129,811242,1,'actress',NULL,'[\"Donna Keppel\"]'),(926129,2187603,2,'actor',NULL,'[\"Bobby\"]'),(926129,1888211,3,'actress',NULL,'[\"Claire\"]'),(926129,1048128,4,'actress',NULL,'[\"Lisa Hines\"]'),(926129,1879589,5,'director',NULL,NULL),(926129,136592,6,'writer','written by',NULL),(926129,3993,7,'producer','producer',NULL),(926129,605775,8,'producer','producer',NULL),(926129,368248,9,'composer',NULL,NULL),(929425,309979,10,'writer','screenplay',NULL),(929425,408238,1,'actor',NULL,'[\"Don Ciro\"]'),(929425,2992307,2,'actor',NULL,'[\"Totò\"]'),(929425,785842,3,'actor',NULL,'[\"Franco\"]'),(929425,3013376,4,'actor',NULL,'[\"Simone\"]'),(929425,308520,5,'director',NULL,NULL),(929425,2500207,6,'writer','book',NULL),(929425,2828827,7,'writer','screenplay',NULL),(929425,158323,8,'writer','screenplay',NULL),(929425,223924,9,'writer','screenplay',NULL),(929629,501904,10,'producer','producer',NULL),(929629,112871,1,'actor',NULL,'[\"Lt. Col. Cameron Mitchell\",\"Captain of the Achilles\"]'),(929629,850102,2,'actress',NULL,'[\"Lt. Col. Samantha Carter\"]'),(929629,431895,3,'actor',NULL,'[\"Teal\'c\"]'),(929629,788218,4,'actor',NULL,'[\"Daniel Jackson\"]'),(929629,939869,5,'director',NULL,NULL),(929629,942249,6,'writer','written by',NULL),(929629,2041,7,'writer','based on a concept by',NULL),(929629,322106,8,'writer','originally developed for television by',NULL),(929629,178338,9,'producer','producer',NULL),(929632,339704,10,'composer',NULL,NULL),(929632,2829737,1,'actress',NULL,'[\"Precious\"]'),(929632,594898,2,'actress',NULL,'[\"Mary\"]'),(929632,1745736,3,'actress',NULL,'[\"Ms. Rain\"]'),(929632,1014,4,'actress',NULL,'[\"Ms. Weiss\"]'),(929632,200005,5,'director',NULL,NULL),(929632,2819316,6,'writer','screenplay',NULL),(929632,2497119,7,'writer','novel \"Push\"',NULL),(929632,2798739,8,'producer','producer',NULL),(929632,2318133,9,'producer','producer',NULL),(932669,834714,10,'production_designer',NULL,NULL),(932669,63440,1,'actor',NULL,'[\"Johnny Goodfeather\"]'),(932669,1987,2,'actress',NULL,'[\"Auntie Apple\"]'),(932669,177896,3,'actor',NULL,'[\"Luke Patterson\"]'),(932669,510022,4,'actress',NULL,'[\"Rain O\'Rourke\"]'),(932669,907622,5,'writer','written by',NULL),(932669,3392,6,'composer',NULL,NULL),(932669,446867,7,'cinematographer',NULL,NULL),(932669,1462920,8,'editor',NULL,NULL),(932669,588998,9,'editor',NULL,NULL),(934427,510964,10,'composer',NULL,NULL),(934427,2108643,1,'actor',NULL,'[\"Van Dine\"]'),(934427,2432722,2,'actor',NULL,'[\"Vance Vance\"]'),(934427,2500064,3,'actress',NULL,'[\"Fion Fion\"]'),(934427,2609300,4,'actress',NULL,'[\"Vivian\"]'),(934427,2120452,5,'director',NULL,NULL),(934427,3561843,6,'writer','written by',NULL),(934427,1278865,7,'producer','producer',NULL),(934427,399037,8,'producer','executive producer',NULL),(934427,1697585,9,'composer',NULL,NULL),(935075,2924187,10,'producer','producer',NULL),(935075,173,1,'actress',NULL,'[\"Becca\"]'),(935075,1173,2,'actor',NULL,'[\"Howie\"]'),(935075,1848,3,'actress',NULL,'[\"Nat\"]'),(935075,1886602,4,'actor',NULL,'[\"Jason\"]'),(935075,593463,5,'director',NULL,NULL),(935075,1865755,6,'writer','screenplay',NULL),(935075,698133,7,'producer','producer',NULL),(935075,754344,8,'producer','producer',NULL),(935075,881811,9,'producer','producer',NULL),(936501,1754850,10,'editor',NULL,NULL),(936501,553,1,'actor',NULL,'[\"Bryan Mills\"]'),(936501,1192254,2,'actress',NULL,'[\"Kim\"]'),(936501,463,3,'actress',NULL,'[\"Lenore\"]'),(936501,650702,4,'actor',NULL,'[\"Sam\"]'),(936501,603628,5,'director',NULL,NULL),(936501,108,6,'writer','written by',NULL),(936501,436543,7,'writer','written by',NULL),(936501,1166319,8,'composer',NULL,NULL),(936501,9142,9,'cinematographer','director of photography',NULL),(937375,811436,10,'production_designer',NULL,NULL),(937375,5093,1,'actress',NULL,'[\"Lisa Moore\"]'),(937375,1551922,2,'actor',NULL,'[\"Claude Whitfield\"]'),(937375,5148,3,'actor',NULL,'[\"Joseph Black\"]'),(937375,252961,4,'actor',NULL,'[\"Quentin Whitfield\"]'),(937375,926211,5,'director',NULL,NULL),(937375,655510,6,'producer','producer',NULL),(937375,588883,7,'composer',NULL,NULL),(937375,344738,8,'cinematographer','director of photography',NULL),(937375,786732,9,'editor',NULL,NULL),(938283,119322,10,'editor',NULL,NULL),(938283,3226241,1,'actor',NULL,'[\"Aang\"]'),(938283,2443758,2,'actress',NULL,'[\"Katara\"]'),(938283,1717152,3,'actor',NULL,'[\"Sokka\"]'),(938283,2353862,4,'actor',NULL,'[\"Prince Zuko\"]'),(938283,796117,5,'director',NULL,NULL),(938283,550881,6,'producer','producer',NULL),(938283,580303,7,'producer','producer',NULL),(938283,6133,8,'composer',NULL,NULL),(938283,504226,9,'cinematographer','director of photography',NULL),(938330,352820,10,'producer','producer',NULL),(938330,2564938,1,'actress',NULL,'[\"Heather\",\"Alessa\"]'),(938330,3229685,2,'actor',NULL,'[\"Vincent\"]'),(938330,293,3,'actor',NULL,'[\"Harry\"]'),(938330,5251,4,'actress',NULL,'[\"Claudia Wolf\"]'),(938330,1068186,5,'director',NULL,NULL),(938330,3919354,6,'writer','adapted by',NULL),(938330,1166804,7,'writer','story \"Silent Hill 3\"',NULL),(938330,1596678,8,'writer','video games',NULL),(938330,138502,9,'producer','producer',NULL),(938341,3021251,10,'composer',NULL,NULL),(938341,434596,1,'actor',NULL,'[\"Ryûhei Sasaki\"]'),(938341,463592,2,'actress',NULL,'[\"Megumi Sasaki\"]'),(938341,2431331,3,'actor',NULL,'[\"Takashi Sasaki\"]'),(938341,3011132,4,'actor',NULL,'[\"Kenji Sasaki\"]'),(938341,475905,5,'director',NULL,NULL),(938341,2550483,6,'writer','writer',NULL),(938341,2650522,7,'writer','screenplay',NULL),(938341,54439,8,'producer','producer',NULL),(938341,2183344,9,'producer','producer',NULL),(940709,161045,10,'producer','producer',NULL),(940709,159507,1,'actor',NULL,'[\"Ti\"]'),(940709,2514879,2,'actress',NULL,'[\"Miss Yuen\"]'),(940709,2922341,3,'actress',NULL,'[\"Dicky\"]'),(940709,8544588,4,'actress',NULL,'[\"Johnny\"]'),(940709,463674,5,'writer','written by',NULL),(940709,874683,6,'writer','written by',NULL),(940709,789966,7,'writer','written by',NULL),(940709,1385080,8,'writer','written by',NULL),(940709,3020927,9,'writer','written by',NULL),(942384,1600160,10,'cinematographer','director of photography',NULL),(942384,942901,1,'actor',NULL,'[\"Zach\"]'),(942384,5388,2,'actor',NULL,'[\"Shaun\"]'),(942384,392073,3,'actress',NULL,'[\"Jeanne\"]'),(942384,1495452,4,'actor',NULL,'[\"Cody\"]'),(942384,995691,5,'director',NULL,NULL),(942384,171473,6,'producer','producer',NULL),(942384,228264,7,'producer','producer',NULL),(942384,418590,8,'producer','producer',NULL),(942384,6254,9,'composer',NULL,NULL),(942385,1799,10,'cinematographer','director of photography',NULL),(942385,1774,1,'actor',NULL,'[\"Tugg Speedman - Hot LZ\"]'),(942385,85312,2,'actor',NULL,'[\"Jeff Portnoy - Hot LZ\"]'),(942385,375,3,'actor',NULL,'[\"Kirk Lazarus - Hot LZ\"]'),(942385,434854,4,'actor',NULL,'[\"Snooty Waiter - Fatties Trailer\"]'),(942385,857620,5,'writer','screenplay',NULL),(942385,1000113,6,'writer','screenplay',NULL),(942385,180366,7,'producer','producer',NULL),(942385,572805,8,'producer','producer',NULL),(942385,788640,9,'composer',NULL,NULL),(942903,6107,10,'composer',NULL,NULL),(942903,112871,1,'actor',NULL,'[\"Lt. Col. Cameron Mitchell\"]'),(942903,850102,2,'actress',NULL,'[\"Lt. Col. Samantha Carter\"]'),(942903,431895,3,'actor',NULL,'[\"Teal\'c\"]'),(942903,788218,4,'actor',NULL,'[\"Dr. Daniel Jackson\"]'),(942903,178338,5,'director',NULL,NULL),(942903,2041,6,'writer','based on a concept by',NULL),(942903,322106,7,'writer','originally developed for television by',NULL),(942903,942249,8,'writer','originally developed for television by',NULL),(942903,501904,9,'producer','producer',NULL),(943232,1374934,10,'composer',NULL,NULL),(943232,2178496,1,'actress',NULL,'[\"Emma\"]'),(943232,856918,2,'actress',NULL,'[\"Dolly\"]'),(943232,1745451,3,'actor',NULL,'[\"Leo - Emmas Freund\"]'),(943232,2519984,4,'actor',NULL,'[\"Max\"]'),(943232,118345,5,'director',NULL,NULL),(943232,1751315,6,'writer','novel',NULL),(943232,673297,7,'writer','screenplay',NULL),(943232,2512193,8,'writer','screenplay',NULL),(943232,92497,9,'producer','producer',NULL),(944835,5696,10,'cinematographer','director of photography',NULL),(944835,1401,1,'actress',NULL,'[\"Evelyn Salt\"]'),(944835,630,2,'actor',NULL,'[\"Ted Winter\"]'),(944835,252230,3,'actor',NULL,'[\"Peabody\"]'),(944835,646037,4,'actor',NULL,'[\"Orlov\"]'),(944835,637518,5,'director',NULL,NULL),(944835,934483,6,'writer','written by',NULL),(944835,225146,7,'producer','producer',NULL),(944835,673858,8,'producer','producer',NULL),(944835,6133,9,'composer',NULL,NULL),(945513,2092016,10,'composer',NULL,NULL),(945513,350453,1,'actor',NULL,'[\"Colter Stevens\"]'),(945513,1157358,2,'actress',NULL,'[\"Christina Warren\"]'),(945513,267812,3,'actress',NULL,'[\"Colleen Goodwin\"]'),(945513,942482,4,'actor',NULL,'[\"Dr. Rutledge\"]'),(945513,1512910,5,'director',NULL,NULL),(945513,1618286,6,'writer','written by',NULL),(945513,330428,7,'producer','producer',NULL),(945513,746041,8,'producer','producer',NULL),(945513,2250256,9,'producer','producer',NULL),(947798,5219,10,'producer','producer',NULL),(947798,204,1,'actress',NULL,'[\"Nina Sayers\",\"The Swan Queen\"]'),(947798,5109,2,'actress',NULL,'[\"Lily\",\"The Black Swan\"]'),(947798,1993,3,'actor',NULL,'[\"Thomas Leroy\",\"The Gentleman\"]'),(947798,213,4,'actress',NULL,'[\"Beth Macintyre\",\"The Dying Swan\"]'),(947798,4716,5,'director',NULL,NULL),(947798,2114730,6,'writer','screenplay',NULL),(947798,374560,7,'writer','screenplay',NULL),(947798,572352,8,'writer','screenplay',NULL),(947798,291542,9,'producer','producer',NULL),(947802,226,10,'producer','producer',NULL),(947802,168,1,'actor',NULL,'[\"Abel Turner\"]'),(947802,933940,2,'actor',NULL,'[\"Chris Mattson\"]'),(947802,913488,3,'actress',NULL,'[\"Lisa Mattson\"]'),(947802,322002,4,'actor',NULL,'[\"Harold Perreau\"]'),(947802,1438,5,'director',NULL,NULL),(947802,521739,6,'writer','screenplay',NULL),(947802,466122,7,'writer','screenplay',NULL),(947802,489876,8,'producer','producer',NULL),(947802,12695419,9,'producer','producer',NULL),(947810,505656,10,'producer','producer',NULL),(947810,354,1,'actor',NULL,'[\"Miller\"]'),(947810,5042,2,'actor',NULL,'[\"Briggs\"]'),(947810,1427,3,'actor',NULL,'[\"Clark Poundstone\"]'),(947810,620981,4,'actor',NULL,'[\"Al Rawi\"]'),(947810,339030,5,'director',NULL,NULL),(947810,1338,6,'writer','written by',NULL),(947810,2418487,7,'writer','book \"Imperial Life in the Emerald City: Inside Iraq\'s Green Zone\"',NULL),(947810,79677,8,'producer','producer',NULL),(947810,271479,9,'producer','producer',NULL),(948470,228492,10,'writer','based on the Marvel comic book by',NULL),(948470,1940449,1,'actor',NULL,'[\"Spider-Man\",\"Peter Parker\"]'),(948470,1297015,2,'actress',NULL,'[\"Gwen Stacy\"]'),(948470,406975,3,'actor',NULL,'[\"The Lizard\",\"Dr. Curt Connors\"]'),(948470,451234,4,'actor',NULL,'[\"Rajit Ratha\"]'),(948470,1989536,5,'director',NULL,NULL),(948470,888743,6,'writer','screenplay',NULL),(948470,765091,7,'writer','screenplay',NULL),(948470,460141,8,'writer','screenplay',NULL),(948470,498278,9,'writer','based on the Marvel comic book by',NULL),(948530,220918,10,'editor',NULL,NULL),(948530,764774,1,'actress',NULL,'[\"Matty\"]'),(948530,1687396,2,'actor',NULL,'[\"Johnny\"]'),(948530,374949,3,'actor',NULL,'[\"Werner\"]'),(948530,2727318,4,'actress',NULL,'[\"Vera\"]'),(948530,739755,5,'director',NULL,NULL),(948530,726892,6,'writer','writer',NULL),(948530,1161163,7,'writer','writer',NULL),(948530,2766914,8,'composer',NULL,NULL),(948530,408249,9,'cinematographer',NULL,NULL),(948535,3636628,10,'writer','original idea',NULL),(948535,432040,1,'actor',NULL,'[\"Pigoil\"]'),(948535,180404,2,'actor',NULL,'[\"Milou\"]'),(948535,580101,3,'actor',NULL,'[\"Jacky\"]'),(948535,2482391,4,'actress',NULL,'[\"Douce\"]'),(948535,56725,5,'director',NULL,NULL),(948535,1272853,6,'writer','adaptation',NULL),(948535,680018,7,'writer','dialogue',NULL),(948535,1413788,8,'writer','original idea',NULL),(948535,906067,9,'writer','original idea',NULL),(950740,788231,10,'cinematographer','director of photography',NULL),(950740,308,1,'actor',NULL,'[\"Bert O\'Riley\"]'),(950740,1340,2,'actress',NULL,'[\"Roxie Famosa\"]'),(950740,1490275,3,'actress',NULL,'[\"Becca O\'Riley\"]'),(950740,508844,4,'actor',NULL,'[\"Karl Sugarman\"]'),(950740,296501,5,'director',NULL,NULL),(950740,18358,6,'writer','written by',NULL),(950740,330048,7,'producer','producer',NULL),(950740,647903,8,'producer','producer',NULL),(950740,492714,9,'composer',NULL,NULL),(951216,9806,10,'producer','producer',NULL),(951216,473,1,'actress',NULL,'[\"Bridget Cardigan\"]'),(951216,1451,2,'actress',NULL,'[\"Nina Brewster\"]'),(951216,5017,3,'actress',NULL,'[\"Jackie Truman\"]'),(951216,1101,4,'actor',NULL,'[\"Don Cardigan\"]'),(951216,451884,5,'director',NULL,NULL),(951216,1020896,6,'writer','screenplay',NULL),(951216,592961,7,'writer','earlier screenplay',NULL),(951216,571032,8,'writer','screenplay \"Hot Money\"',NULL),(951216,935528,9,'writer','screenplay \"Hot Money\"',NULL),(951257,3059183,10,'cinematographer',NULL,NULL),(951257,2625558,1,'self',NULL,'[\"Self\"]'),(951257,2539265,2,'self',NULL,'[\"Self - Interviewee\"]'),(951257,2771523,3,'actress',NULL,'[\"Interviewee\"]'),(951257,2766953,4,'actor',NULL,'[\"Interviewee\"]'),(951257,2528647,5,'director',NULL,NULL),(951257,2528451,6,'director',NULL,NULL),(951257,2029577,7,'producer','producer',NULL),(951257,2139439,8,'composer',NULL,NULL),(951257,72602,9,'cinematographer',NULL,NULL),(951297,3620827,10,'actress',NULL,'[\"Senora del Bus\"]'),(951297,2528438,1,'actress',NULL,'[\"Esperanza\"]'),(951297,2527168,2,'actress',NULL,'[\"Tristeza\"]'),(951297,2525792,3,'actor',NULL,'[\"Jesus\"]'),(951297,2529415,4,'actor',NULL,'[\"Andrés\"]'),(951297,379409,5,'director',NULL,NULL),(951297,2526525,6,'composer',NULL,NULL),(951297,2199413,7,'cinematographer',NULL,NULL),(951297,1633712,8,'editor',NULL,NULL),(951297,1913848,9,'actor',NULL,'[\"Camarografo\"]'),(952682,1309148,10,'cinematographer',NULL,NULL),(952682,788335,1,'actor',NULL,'[\"Son Hayes\"]'),(952682,1519045,2,'actor',NULL,'[\"Boy Hayes\"]'),(952682,2049889,3,'actor',NULL,'[\"Kid Hayes\"]'),(952682,2534638,4,'actor',NULL,'[\"Cleaman Hayes\"]'),(952682,2158772,5,'director',NULL,NULL),(952682,337773,6,'producer','producer',NULL),(952682,615770,7,'producer','producer',NULL),(952682,1838818,8,'composer',NULL,NULL),(952682,2837567,9,'composer',NULL,NULL),(954947,772174,10,'producer','producer',NULL),(954947,729,1,'actor',NULL,'[\"Lou Ford\"]'),(954947,5028,2,'actress',NULL,'[\"Amy Stanton\"]'),(954947,4695,3,'actress',NULL,'[\"Joyce Lakeland\"]'),(954947,885,4,'actor',NULL,'[\"Chester Conway\"]'),(954947,935863,5,'director',NULL,NULL),(954947,192845,6,'writer','writer',NULL),(954947,860292,7,'writer','novel',NULL),(954947,247787,8,'producer','producer',NULL),(954947,360065,9,'producer','producer',NULL),(955308,834199,10,'composer',NULL,NULL),(955308,128,1,'actor',NULL,'[\"Robin Longstride\"]'),(955308,949,2,'actress',NULL,'[\"Marion Loxley\"]'),(955308,532193,3,'actor',NULL,'[\"Sheriff of Nottingham\"]'),(955308,1884,4,'actor',NULL,'[\"Sir Walter Loxley\"]'),(955308,631,5,'director',NULL,NULL),(955308,1338,6,'writer','screenplay',NULL),(955308,717550,7,'writer','story',NULL),(955308,903456,8,'writer','story',NULL),(955308,4976,9,'producer','producer',NULL),(959337,748784,10,'producer','producer',NULL),(959337,138,1,'actor',NULL,'[\"Frank Wheeler\"]'),(959337,701,2,'actress',NULL,'[\"April Wheeler\"]'),(959337,280199,3,'actor',NULL,'[\"Party Guest\"]'),(959337,745751,4,'actor',NULL,'[\"Party Guest\"]'),(959337,5222,5,'director',NULL,NULL),(959337,1244808,6,'writer','screenplay',NULL),(959337,946817,7,'writer','novel',NULL),(959337,169256,8,'producer','producer',NULL),(959337,366363,9,'producer','producer',NULL),(959342,425916,10,'cinematographer',NULL,NULL),(959342,944192,1,'actress',NULL,'[\"Elin\"]'),(959342,2331273,2,'actress',NULL,'[\"Yasmin\"]'),(959342,7773,3,'actor',NULL,'[\"Sinan\"]'),(959342,2549779,4,'actress',NULL,'[\"Ayse\"]'),(959342,75087,5,'director',NULL,NULL),(959342,438700,6,'writer','screenplay',NULL),(959342,74073,7,'producer','producer',NULL),(959342,638324,8,'producer','producer',NULL),(959342,28275,9,'composer',NULL,NULL),(960144,4344,10,'cinematographer','director of photography',NULL),(960144,1191,1,'actor',NULL,'[\"Zohan\"]'),(960144,1806,2,'actor',NULL,'[\"Phantom\"]'),(960144,4825,3,'actress',NULL,'[\"Dalia\"]'),(960144,841910,4,'actor',NULL,'[\"Michael\"]'),(960144,240797,5,'director',NULL,NULL),(960144,806912,6,'writer','written by',NULL),(960144,31976,7,'writer','written by',NULL),(960144,316406,8,'producer','producer',NULL),(960144,340003,9,'composer',NULL,NULL),(960731,340003,10,'composer',NULL,NULL),(960731,1191,1,'actor',NULL,'[\"Skeeter Bronson\"]'),(960731,5392,2,'actress',NULL,'[\"Jill\"]'),(960731,1073,3,'actress',NULL,'[\"Wendy\"]'),(960731,1602,4,'actor',NULL,'[\"Kendall\"]'),(960731,788202,5,'director',NULL,NULL),(960731,2188941,6,'writer','screenplay',NULL),(960731,379056,7,'writer','screenplay',NULL),(960731,316406,8,'producer','producer',NULL),(960731,348151,9,'producer','producer',NULL),(960835,1874700,10,'production_designer',NULL,NULL),(960835,937869,1,'actor',NULL,'[\"Warren Mitchell\"]'),(960835,916471,2,'actress',NULL,'[\"Karina Nadir\"]'),(960835,2509115,3,'actress',NULL,'[\"Xandria Lux\"]'),(960835,1918942,4,'actress',NULL,'[\"General Van Ryberg\"]'),(960835,805635,5,'director',NULL,NULL),(960835,490375,6,'producer','producer',NULL),(960835,725808,7,'composer',NULL,NULL),(960835,662635,8,'cinematographer',NULL,NULL),(960835,2332343,9,'editor',NULL,NULL),(960890,473997,10,'production_designer',NULL,NULL),(960890,1398,1,'actress',NULL,'[\"Kat\"]'),(960890,387,2,'actor',NULL,'[\"Ian\"]'),(960890,2641532,3,'actress',NULL,'[\"Lilith\"]'),(960890,1715297,4,'actress',NULL,'[\"Sox\"]'),(960890,999415,5,'director',NULL,NULL),(960890,326632,6,'producer','producer',NULL),(960890,1171090,7,'producer','producer',NULL),(960890,788556,8,'producer','producer',NULL),(960890,924385,9,'composer',NULL,NULL),(961066,632129,10,'producer','producer',NULL),(961066,374685,1,'actress',NULL,'[\"Maria Larsson\"]'),(961066,675409,2,'actor',NULL,'[\"Sigfrid Larsson\"]'),(961066,159802,3,'actor',NULL,'[\"Sebastian Pedersen\"]'),(961066,2765721,4,'actress',NULL,'[\"Maja Larsson (age 15-22)\"]'),(961066,873296,5,'director',NULL,NULL),(961066,753637,6,'writer','screenplay',NULL),(961066,1717857,7,'writer','story',NULL),(961066,3754335,8,'writer','memoirs',NULL),(961066,442381,9,'producer','producer',NULL),(962726,33096,10,'cinematographer','director of photography',NULL),(962726,1374980,1,'actor',NULL,'[\"Troy Bolton\"]'),(962726,1227814,2,'actress',NULL,'[\"Gabriella Montez\"]'),(962726,864308,3,'actress',NULL,'[\"Sharpay Evans\"]'),(962726,1727317,4,'actor',NULL,'[\"Ryan Evans\"]'),(962726,650905,5,'director',NULL,NULL),(962726,58302,6,'writer','written by',NULL),(962726,96115,7,'producer','producer',NULL),(962726,742492,8,'producer','producer',NULL),(962726,492714,9,'composer',NULL,NULL),(962736,217,10,'producer','producer',NULL),(962736,1289434,1,'actress',NULL,'[\"Queen Victoria\"]'),(962736,1670029,2,'actor',NULL,'[\"Prince Albert\"]'),(962736,79273,3,'actor',NULL,'[\"Lord Melbourne\"]'),(962736,1669,4,'actress',NULL,'[\"Duchess of Kent\"]'),(962736,885249,5,'director',NULL,NULL),(962736,271501,6,'writer','written by',NULL),(962736,272601,7,'producer','producer',NULL),(962736,2593874,8,'producer','producer',NULL),(962736,454752,9,'producer','producer',NULL),(963194,467977,10,'producer','producer',NULL),(963194,649,1,'actor',NULL,'[\"Rotti Largo\"]'),(963194,372117,2,'actor',NULL,'[\"Nathan\",\"Repo Man\"]'),(963194,891786,3,'actress',NULL,'[\"Shilo Wallace\"]'),(963194,109208,4,'actress',NULL,'[\"Blind Mag\"]'),(963194,1135423,5,'director',NULL,NULL),(963194,2534912,6,'writer','screenplay',NULL),(963194,954023,7,'writer','screenplay',NULL),(963194,121117,8,'producer','producer',NULL),(963194,4527,9,'producer','producer',NULL),(963743,643553,10,'producer','producer',NULL),(963743,2102872,1,'actress',NULL,'[\"Georgia Nicolson\"]'),(963743,1093951,2,'actor',NULL,'[\"Robbie\"]'),(963743,1131627,3,'actress',NULL,'[\"Connie Nicolson\"]'),(963743,203563,4,'actor',NULL,'[\"Bob Nicolson\"]'),(963743,149446,5,'director',NULL,NULL),(963743,74488,6,'writer','screenplay',NULL),(963743,574509,7,'writer','screenplay',NULL),(963743,899531,8,'writer','screenplay',NULL),(963743,2549216,9,'writer','books \"Angus, Thongs and Full-Frontal Snogging\" and \"It\'s Okay, I\'m Wearing Really Big Knickers\"',NULL),(963794,6251,10,'composer',NULL,NULL),(963794,39162,1,'actor',NULL,'[\"Eric\"]'),(963794,540441,2,'actress',NULL,'[\"Amy\"]'),(963794,6958,3,'actor',NULL,'[\"Jeff\"]'),(963794,1377561,4,'actress',NULL,'[\"Stacy\"]'),(963794,2127650,5,'director',NULL,NULL),(963794,809895,6,'writer','screenplay',NULL),(963794,70454,7,'producer','producer',NULL),(963794,180366,8,'producer','producer',NULL),(963794,469553,9,'producer','producer',NULL),(963966,76166,10,'writer','screenplay',NULL),(963966,115,1,'actor',NULL,'[\"Balthazar\"]'),(963966,59431,2,'actor',NULL,'[\"Dave\"]'),(963966,547,3,'actor',NULL,'[\"Horvath\"]'),(963966,1954240,4,'actress',NULL,'[\"Becky\"]'),(963966,5509,5,'director',NULL,NULL),(963966,465199,6,'writer','screen story',NULL),(963966,742797,7,'writer','screen story',NULL),(963966,2188941,8,'writer','screen story',NULL),(963966,1215164,9,'writer','screenplay',NULL),(964516,3154301,10,'writer','lyrics',NULL),(964516,1231899,1,'actress',NULL,'[\"Meghna Mathur\"]'),(964516,2144007,2,'actress',NULL,'[\"Shonali Gujral\"]'),(964516,2585918,3,'actress',NULL,'[\"Janet Sequeira\"]'),(964516,451170,4,'actor',NULL,'[\"Abhijeet Sarin\"]'),(964516,1055105,5,'director',NULL,NULL),(964516,2208876,6,'writer','story and screenplay',NULL),(964516,1145539,7,'writer','dialogue',NULL),(964516,1173370,8,'writer','story and screenplay',NULL),(964516,1430447,9,'writer','lyrics',NULL),(964517,41765,10,'producer','producer',NULL),(964517,242,1,'actor',NULL,'[\"Micky Ward\"]'),(964517,288,2,'actor',NULL,'[\"Dicky Eklund\"]'),(964517,10736,3,'actress',NULL,'[\"Charlene Fleming\"]'),(964517,502425,4,'actress',NULL,'[\"Alice Ward\"]'),(964517,751102,5,'director',NULL,NULL),(964517,798788,6,'writer','screenplay',NULL),(964517,848496,7,'writer','screenplay',NULL),(964517,2053216,8,'writer','screenplay',NULL),(964517,2565612,9,'writer','story',NULL),(964586,558563,10,'producer','producer',NULL),(964586,645683,1,'actress',NULL,'[\"Sandra Laing\"]'),(964586,554,2,'actor',NULL,'[\"Abraham Laing\"]'),(964586,481,3,'actress',NULL,'[\"Sannie Laing\"]'),(964586,450961,4,'actor',NULL,'[\"Petrus Zwane\"]'),(964586,3745,5,'director',NULL,NULL),(964586,187010,6,'writer','screenplay',NULL),(964586,3119431,7,'writer','screenplay',NULL),(964586,471247,8,'writer','screenplay',NULL),(964586,389414,9,'producer','producer',NULL),(964587,780714,10,'writer','cartoons',NULL),(964587,1506908,1,'actress',NULL,'[\"Annabelle Fritton\"]'),(964587,391,2,'actor',NULL,'[\"Carnaby Fritton\",\"Camilla Fritton\"]'),(964587,2605345,3,'actress',NULL,'[\"Kelly\"]'),(964587,2092886,4,'actress',NULL,'[\"Beverly\"]'),(964587,662529,5,'director',NULL,NULL),(964587,859877,6,'director',NULL,NULL),(964587,39328,7,'writer','screenplay',NULL),(964587,1718864,8,'writer','additional material',NULL),(964587,1319618,9,'writer','screenplay',NULL),(965440,1193959,10,'composer',NULL,NULL),(965440,2562387,1,'actress',NULL,'[\"Rain\"]'),(965440,584777,2,'actress',NULL,'[\"Glory\"]'),(965440,1634,3,'actress',NULL,'[\"Ms. Adams\"]'),(965440,2556743,4,'actress',NULL,'[\"Ms. Wells\"]'),(965440,2790184,5,'director',NULL,NULL),(965440,463405,6,'producer','producer',NULL),(965440,2110380,7,'producer','producer',NULL),(965440,1629286,8,'producer','producer',NULL),(965440,562617,9,'producer','producer',NULL),(968264,788513,10,'producer','producer',NULL),(968264,705,1,'actress',NULL,'[\"Mary Surratt\"]'),(968264,564215,2,'actor',NULL,'[\"Frederick Aiken\"]'),(968264,929489,3,'actor',NULL,'[\"Reverdy Johnson\"]'),(968264,177,4,'actor',NULL,'[\"Edwin Stanton\"]'),(968264,602,5,'director',NULL,NULL),(968264,3833,6,'writer','written by',NULL),(968264,77052,7,'writer','story',NULL),(968264,1803137,8,'producer','producer',NULL),(968264,2250139,9,'producer','producer',NULL),(969647,26153,10,'writer','fairy tale',NULL),(969647,72533,1,'actress',NULL,'[\"Ariel\"]'),(969647,942787,2,'actor',NULL,'[\"Sebastian\"]'),(969647,191906,3,'actor',NULL,'[\"King Triton\",\"Shelbow\"]'),(969647,398,4,'actress',NULL,'[\"Marina Del Ray\"]'),(969647,391996,5,'director',NULL,NULL),(969647,715257,6,'writer','screenplay',NULL),(969647,818746,7,'writer','screenplay',NULL),(969647,782964,8,'writer','story',NULL),(969647,935053,9,'writer','story',NULL),(970179,454752,10,'producer','producer',NULL),(970179,2633535,1,'actor',NULL,'[\"Hugo Cabret\"]'),(970179,1631269,2,'actress',NULL,'[\"Isabelle\"]'),(970179,489,3,'actor',NULL,'[\"Monsieur Labisse\"]'),(970179,1426,4,'actor',NULL,'[\"Georges Méliès\"]'),(970179,217,5,'director',NULL,NULL),(970179,517589,6,'writer','screenplay by',NULL),(970179,2561765,7,'writer','based on the book entitled \"The Invention of Hugo Cabret\" by',NULL),(970179,136,8,'producer','producer',NULL),(970179,2593874,9,'producer','producer',NULL),(970411,788737,10,'producer','producer',NULL),(970411,1519680,1,'actress',NULL,'[\"Lina Mayfleet\"]'),(970411,429363,2,'actor',NULL,'[\"Barton Snode\"]'),(970411,195,3,'actor',NULL,'[\"Mayor Cole\"]'),(970411,752379,4,'actor',NULL,'[\"Chief Builder\"]'),(970411,1481493,5,'director',NULL,NULL),(970411,3031,6,'writer','screenplay',NULL),(970411,2558309,7,'writer','book \"The City of Ember\"',NULL),(970411,324556,8,'producer','producer',NULL),(970411,158,9,'producer','producer',NULL),(970416,831098,10,'producer','producer',NULL),(970416,206,1,'actor',NULL,'[\"Klaatu\"]'),(970416,124,2,'actress',NULL,'[\"Helen Benson\"]'),(970416,870,3,'actress',NULL,'[\"Regina Jackson\"]'),(970416,1535523,4,'actor',NULL,'[\"Jacob Benson\"]'),(970416,220600,5,'director',NULL,NULL),(970416,769227,6,'writer','screenplay',NULL),(970416,636002,7,'writer',NULL,NULL),(970416,90199,8,'producer','producer',NULL),(970416,329084,9,'producer','producer',NULL),(970452,491565,10,'cinematographer','director of photography',NULL),(970452,700856,1,'actor',NULL,'[\"Solomon Kane\"]'),(970452,1884,2,'actor',NULL,'[\"Josiah Kane\"]'),(970452,1248393,3,'actress',NULL,'[\"Meredith Crowthorn\"]'),(970452,592,4,'actor',NULL,'[\"William Crowthorn\"]'),(970452,1068186,5,'director',NULL,NULL),(970452,397574,6,'writer','based on the character created by',NULL),(970452,77446,7,'producer','producer',NULL),(970452,352820,8,'producer','producer',NULL),(970452,46004,9,'composer',NULL,NULL),(970468,308211,10,'producer','producer',NULL),(970468,531,1,'actress',NULL,'[\"Miss Pettigrew\"]'),(970468,10736,2,'actress',NULL,'[\"Delysia\"]'),(970468,1354,3,'actor',NULL,'[\"Joe\"]'),(970468,18357,4,'actor',NULL,'[\"Chestnut Seller\"]'),(970468,620576,5,'director',NULL,NULL),(970468,1341735,6,'writer','screenplay',NULL),(970468,64479,7,'writer','screenplay',NULL),(970468,2803760,8,'writer','novel',NULL),(970468,68935,9,'producer','producer',NULL),(970472,642949,10,'composer',NULL,NULL),(970472,1800338,1,'actress',NULL,'[\"Vexille\"]'),(970472,849477,2,'actor',NULL,'[\"Leon\"]'),(970472,559696,3,'actress',NULL,'[\"Maria\"]'),(970472,960033,4,'actor',NULL,'[\"Saito\"]'),(970472,1216495,5,'director',NULL,NULL),(970472,1602468,6,'writer','screenplay',NULL),(970472,620457,7,'producer','producer',NULL),(970472,2712241,8,'producer','producer',NULL),(970472,2708148,9,'producer','producer',NULL),(971205,2557473,10,'production_designer',NULL,NULL),(971205,2556469,1,'actor',NULL,'[\"Olle\"]'),(971205,2224077,2,'actor',NULL,'[\"Kevin\"]'),(971205,2561872,3,'actress',NULL,'[\"Barbro\"]'),(971205,294739,4,'actor',NULL,'[\"Kjelle\"]'),(971205,2318723,5,'director',NULL,NULL),(971205,1055631,6,'producer','producer',NULL),(971205,2143291,7,'composer',NULL,NULL),(971205,1934143,8,'cinematographer',NULL,NULL),(971205,1371172,9,'editor',NULL,NULL),(971209,253902,10,'composer',NULL,NULL),(971209,170,1,'actress',NULL,'[\"Cydney\"]'),(971209,1872,2,'actor',NULL,'[\"Cliff\"]'),(971209,648249,3,'actor',NULL,'[\"Nick\"]'),(971209,760989,4,'actress',NULL,'[\"Gina\"]'),(971209,878638,5,'director',NULL,NULL),(971209,107509,6,'producer','producer',NULL),(971209,4799,7,'producer','producer',NULL),(971209,1448916,8,'producer','producer',NULL),(971209,867504,9,'producer','producer',NULL),(972785,1650558,10,'composer',NULL,NULL),(972785,1667364,1,'actress',NULL,'[\"Carson\"]'),(972785,2628561,2,'actress',NULL,'[\"Brooke\"]'),(972785,2724368,3,'actor',NULL,'[\"Ruben\"]'),(972785,1056279,4,'actress',NULL,'[\"Chelsea\"]'),(972785,711114,5,'director',NULL,NULL),(972785,1010379,6,'writer','written by',NULL),(972785,2608327,7,'writer','written by',NULL),(972785,4762565,8,'writer','songwriter',NULL),(972785,607000,9,'producer','producer',NULL),(974015,1189346,10,'writer','Justice League of America created by',NULL),(974015,255,1,'actor',NULL,'[\"Batman\",\"Bruce Wayne\"]'),(974015,2933757,2,'actress',NULL,'[\"Wonder Woman\",\"Diana Prince\"]'),(974015,597388,3,'actor',NULL,'[\"Aquaman\",\"Arthur Curry\"]'),(974015,3009232,4,'actor',NULL,'[\"The Flash\",\"Barry Allen\"]'),(974015,811583,5,'director',NULL,NULL),(974015,796950,6,'writer','Superman created by',NULL),(974015,795975,7,'writer','Superman created by',NULL),(974015,6516,8,'writer','story by',NULL),(974015,923736,9,'writer','screenplay by',NULL),(974661,5891,10,'cinematographer','director of photography',NULL),(974661,1374980,1,'actor',NULL,'[\"Mike O\'Donnell\"]'),(974661,1612,2,'actor',NULL,'[\"Mike O\'Donnell (Adult)\"]'),(974661,5182,3,'actress',NULL,'[\"Scarlet\"]'),(974661,502073,4,'actor',NULL,'[\"Ned Gold\"]'),(974661,824882,5,'director',NULL,NULL),(974661,276821,6,'writer','written by',NULL),(974661,316774,7,'producer','producer',NULL),(974661,788202,8,'producer','producer',NULL),(974661,448843,9,'composer',NULL,NULL),(974959,655483,10,'cinematographer','director of photography',NULL),(974959,924986,1,'actor',NULL,'[\"Erik Stifler\"]'),(974959,1520,2,'actor',NULL,'[\"Mr. Stifler\"]'),(974959,2315378,3,'actor',NULL,'[\"Mike \'Cooze\' Coozeman\"]'),(974959,2721618,4,'actress',NULL,'[\"Hot Girl #1\"]'),(974959,909022,5,'director',NULL,NULL),(974959,512215,6,'writer','written by',NULL),(974959,381221,7,'writer','characters',NULL),(974959,96176,8,'producer','producer',NULL),(974959,1132022,9,'composer',NULL,NULL),(975645,689696,10,'producer','producer',NULL),(975645,164,1,'actor',NULL,'[\"Alfred Hitchcock\"]'),(975645,545,2,'actress',NULL,'[\"Alma Reville\"]'),(975645,424060,3,'actress',NULL,'[\"Janet Leigh\"]'),(975645,396812,4,'actor',NULL,'[\"Whitfield Cook\"]'),(975645,315065,5,'director',NULL,NULL),(975645,572352,6,'writer','screenplay',NULL),(975645,1067289,7,'writer','book \"Alfred Hitchcock and the Making of Psycho\"',NULL),(975645,56002,8,'producer','producer',NULL),(975645,575817,9,'producer','producer',NULL),(976051,606877,10,'producer','producer',NULL),(976051,701,1,'actress',NULL,'[\"Hanna Schmitz\"]'),(976051,146,2,'actor',NULL,'[\"Michael Berg\"]'),(976051,4486,3,'actor',NULL,'[\"Professor Rohl\"]'),(976051,354198,4,'actress',NULL,'[\"Brigitte\"]'),(976051,197636,5,'director',NULL,NULL),(976051,2376,6,'writer','screenplay',NULL),(976051,772384,7,'writer','book \"Der Vorleser\"',NULL),(976051,317642,8,'producer','producer',NULL),(976051,5237,9,'producer','producer',NULL),(976238,659123,10,'producer','producer',NULL),(976238,245,1,'actor',NULL,'[\"Dan\"]'),(976238,237,2,'actor',NULL,'[\"Charlie\"]'),(976238,1293,3,'actor',NULL,'[\"Craig\"]'),(976238,593,4,'actress',NULL,'[\"Vicki\"]'),(976238,65608,5,'director',NULL,NULL),(976238,224606,6,'writer','written by',NULL),(976238,919289,7,'writer','written by',NULL),(976238,9222,8,'producer','producer',NULL),(976238,506597,9,'producer','producer',NULL),(977855,326040,10,'producer','producer',NULL),(977855,915208,1,'actress',NULL,'[\"Valerie Plame\"]'),(977855,576,2,'actor',NULL,'[\"Joe Wilson\"]'),(977855,4156443,3,'actress',NULL,'[\"Chanel Suit\"]'),(977855,2878323,4,'actress',NULL,'[\"Tabir Secretary #1\"]'),(977855,510731,5,'director',NULL,NULL),(977855,125336,6,'writer','screenplay',NULL),(977855,3890871,7,'writer','screenplay',NULL),(977855,1468642,8,'writer','book \"The Politics of Truth: Inside the Lies that Led to War and Betrayed My Wife\'s CIA Identity: A Diplomat\'s Memoir\"',NULL),(977855,1976209,9,'writer','book \"Fair Game: My Life as a Spy, My Betrayal by the White House\"',NULL),(978759,1543747,10,'cinematographer','director of photography',NULL),(978759,502425,1,'actress',NULL,'[\"Ray Eddy\"]'),(978759,1130728,2,'actress',NULL,'[\"Lila Littlewolf\"]'),(978759,1668208,3,'actor',NULL,'[\"T.J.\"]'),(978759,1574,4,'actor',NULL,'[\"Trooper Finnerty\"]'),(978759,2581581,5,'director',NULL,NULL),(978759,1165220,6,'producer','line producer',NULL),(978759,706010,7,'producer','producer',NULL),(978759,3526,8,'composer',NULL,NULL),(978759,2647379,9,'composer',NULL,NULL),(978762,1057,1,'actress',NULL,'[\"Mary Daisy Dinkle\"]'),(978762,450,2,'actor',NULL,'[\"Max Jerry Horovitz\"]'),(978762,51509,3,'actor',NULL,'[\"Damien Popodopolous\"]'),(978762,402032,4,'actor',NULL,'[\"Narrator\"]'),(978762,254178,5,'director',NULL,NULL),(978762,177707,6,'producer','producer',NULL),(978762,1244349,7,'composer',NULL,NULL),(978762,2756662,8,'cinematographer',NULL,NULL),(978762,614107,9,'editor',NULL,NULL),(978764,284583,10,'cinematographer','director of photography',NULL),(978764,115161,1,'actress',NULL,'[\"Babydoll\"]'),(978764,1227814,2,'actress',NULL,'[\"Blondie\"]'),(978764,180411,3,'actress',NULL,'[\"Sweet Pea\"]'),(978764,540441,4,'actress',NULL,'[\"Rocket\"]'),(978764,811583,5,'director',NULL,NULL),(978764,793122,6,'writer','screenplay',NULL),(978764,2003463,7,'producer','producer',NULL),(978764,61045,8,'composer',NULL,NULL),(978764,3946,9,'composer',NULL,NULL),(980970,11470,10,'producer','producer',NULL),(980970,1602660,1,'actor',NULL,'[\"Caspian\"]'),(980970,1342727,2,'actor',NULL,'[\"Edmund Pevensie\"]'),(980970,1670137,3,'actress',NULL,'[\"Lucy Pevensie\"]'),(980970,2401020,4,'actor',NULL,'[\"Eustace Scrubb\"]'),(980970,776,5,'director',NULL,NULL),(980970,1321655,6,'writer','screenplay',NULL),(980970,1321656,7,'writer','screenplay',NULL),(980970,678104,8,'writer','screenplay',NULL),(980970,507000,9,'writer','novel',NULL),(981072,448843,10,'composer',NULL,NULL),(981072,1046097,1,'actress',NULL,'[\"Colee\"]'),(981072,209,2,'actor',NULL,'[\"Cheaver\"]'),(981072,671567,3,'actor',NULL,'[\"TK\"]'),(981072,353243,4,'actress',NULL,'[\"Pat Cheaver\"]'),(981072,1139726,5,'director',NULL,NULL),(981072,936999,6,'writer','written by',NULL),(981072,2718,7,'producer','producer',NULL),(981072,505522,8,'producer','producer',NULL),(981072,777408,9,'producer','producer',NULL),(981227,583948,10,'producer','producer',NULL),(981227,148418,1,'actor',NULL,'[\"Nick\"]'),(981227,993507,2,'actress',NULL,'[\"Norah\"]'),(981227,1683094,3,'actor',NULL,'[\"Thom\"]'),(981227,1969169,4,'actor',NULL,'[\"Dev\"]'),(981227,813164,5,'director',NULL,NULL),(981227,1032521,6,'writer','screenplay',NULL),(981227,2578825,7,'writer','novel',NULL),(981227,2832819,8,'writer','novel',NULL),(981227,1097895,9,'producer','producer',NULL),(983193,1392,10,'producer','producer',NULL),(983193,68260,1,'actor',NULL,'[\"Tintin\"]'),(983193,785227,2,'actor',NULL,'[\"Captain Haddock\",\"Sir Francis Haddock\"]'),(983193,185819,3,'actor',NULL,'[\"Sakharine\",\"Red Rackham\"]'),(983193,670408,4,'actor',NULL,'[\"Thompson\"]'),(983193,229,5,'director',NULL,NULL),(983193,378960,6,'writer','based on \"The Adventures of Tintin\" by',NULL),(983193,595590,7,'writer','screenplay by',NULL),(983193,942367,8,'writer','screenplay by',NULL),(983193,180428,9,'writer','screenplay by',NULL),(983213,594647,1,'actor',NULL,'[\"Takaki Tohno\"]'),(983213,2710673,2,'actress',NULL,'[\"Akari Shinohara (segment \\\"Oukashou\\\")\"]'),(983213,1178570,3,'actress',NULL,'[\"Kanae Sumida (segment \\\"Cosmonaut\\\")\"]'),(983213,2794388,4,'actress',NULL,'[\"Akari Shinohara (segment \\\"Byousoku 5 Centimeter\\\")\"]'),(983213,1396121,5,'director',NULL,NULL),(983213,1399356,6,'composer',NULL,NULL),(983946,864844,10,'producer','producer',NULL),(983946,671567,1,'actor',NULL,'[\"Mr. Roarke\"]'),(983946,702572,2,'actress',NULL,'[\"Gwen Olsen\"]'),(983946,1423955,3,'actress',NULL,'[\"Melanie Cole\"]'),(983946,3271473,4,'actor',NULL,'[\"Patrick Sullivan\"]'),(983946,905592,5,'director',NULL,NULL),(983946,1496753,6,'writer','written by',NULL),(983946,3273842,7,'writer','written by',NULL),(983946,506215,8,'writer','based upon the television series created by',NULL),(983946,89658,9,'producer','producer',NULL),(984130,477095,10,'cinematographer',NULL,NULL),(984130,2429015,1,'actress',NULL,'[\"Miao Miao\"]'),(984130,2432662,2,'actress',NULL,'[\"Hsiao-Ai\"]'),(984130,1254855,3,'actor',NULL,'[\"Chen Fei\"]'),(984130,4308851,4,'actor',NULL,'[\"Chia-Sin, Bei\"]'),(984130,3171048,5,'director',NULL,NULL),(984130,3171409,6,'writer','screenplay',NULL),(984130,477102,7,'producer','executive producer',NULL),(984130,659388,8,'producer','executive producer',NULL),(984130,508552,9,'composer',NULL,NULL),(985694,4478374,10,'composer',NULL,NULL),(985694,1803,1,'actor',NULL,'[\"Machete\"]'),(985694,735442,2,'actress',NULL,'[\"Luz\"]'),(985694,134,3,'actor',NULL,'[\"Senator McLaughlin\"]'),(985694,4695,4,'actress',NULL,'[\"Sartana\"]'),(985694,542450,5,'director',NULL,NULL),(985694,1675,6,'director',NULL,NULL),(985694,736155,7,'writer','written by',NULL),(985694,42882,8,'producer','producer',NULL),(985694,777408,9,'producer','producer',NULL),(985699,5875,10,'cinematographer','director of photography',NULL),(985699,129,1,'actor',NULL,'[\"Colonel Claus von Stauffenberg\"]'),(985699,631490,2,'actor',NULL,'[\"General Friedrich Olbricht\"]'),(985699,396924,3,'actress',NULL,'[\"Nina von Stauffenberg\"]'),(985699,110,4,'actor',NULL,'[\"Major-General Henning von Tresckow\"]'),(985699,1741,5,'director',NULL,NULL),(985699,3160,6,'writer','written by',NULL),(985699,1267492,7,'writer','written by',NULL),(985699,12155,8,'producer','producer',NULL),(985699,653211,9,'composer',NULL,NULL),(986230,1050117,10,'producer','producer',NULL),(986230,4355300,1,'actor',NULL,'[\"Cafe customer\"]'),(986230,1782394,2,'actor',NULL,'[\"Bowler\"]'),(986230,1309397,3,'actor',NULL,'[\"Young Parisian Man\"]'),(986230,95017,4,'actor',NULL,'[\"Jed\"]'),(986230,653437,5,'director',NULL,NULL),(986230,2016510,6,'writer','writer',NULL),(986230,2276048,7,'producer','producer',NULL),(986230,183580,8,'producer','producer',NULL),(986230,2366922,9,'producer','producer',NULL),(986233,391794,10,'composer',NULL,NULL),(986233,334324,1,'actor',NULL,'[\"Raymond Lohan\"]'),(986233,2565,2,'actress',NULL,'[\"Raymond\'s Wife\"]'),(986233,589665,3,'actor',NULL,'[\"Davey Gillen\"]'),(986233,573054,4,'actor',NULL,'[\"Gerry Campbell\"]'),(986233,2588606,5,'director',NULL,NULL),(986233,909629,6,'writer','written by',NULL),(986233,349168,7,'producer','producer',NULL),(986233,1232664,8,'producer','producer',NULL),(986233,2876218,9,'composer',NULL,NULL),(986263,2583641,10,'producer','producer',NULL),(986263,246,1,'actor',NULL,'[\"Greer\"]'),(986263,593664,2,'actress',NULL,'[\"Peters\"]'),(986263,609,3,'actor',NULL,'[\"The Prophet\"]'),(986263,683253,4,'actress',NULL,'[\"Maggie\"]'),(986263,609236,5,'director',NULL,NULL),(986263,274905,6,'writer','screenplay',NULL),(986263,104335,7,'writer','screenplay',NULL),(986263,2590523,8,'writer','graphic novel',NULL),(986263,2591513,9,'writer','graphic novel',NULL),(988045,236279,10,'writer','characters: Sherlock Holmes, Dr. Watson',NULL),(988045,375,1,'actor',NULL,'[\"Sherlock Holmes\"]'),(988045,179,2,'actor',NULL,'[\"Dr. John Watson\"]'),(988045,1046097,3,'actress',NULL,'[\"Irene Adler\"]'),(988045,835016,4,'actor',NULL,'[\"Lord Henry Blackwood\"]'),(988045,5363,5,'director',NULL,NULL),(988045,3467335,6,'writer','screenplay',NULL),(988045,669756,7,'writer','screenplay',NULL),(988045,1334526,8,'writer','screenplay',NULL),(988045,927880,9,'writer','screen story',NULL),(988595,6055,10,'composer',NULL,NULL),(988595,1337,1,'actress',NULL,'[\"Jane\"]'),(988595,5188,2,'actor',NULL,'[\"Kevin\"]'),(988595,15196,3,'actress',NULL,'[\"Tess\"]'),(988595,450116,4,'actor',NULL,'[\"Hal\"]'),(988595,281945,5,'director',NULL,NULL),(988595,112459,6,'writer','written by',NULL),(988595,53388,7,'producer','producer',NULL),(988595,83696,8,'producer','producer',NULL),(988595,322802,9,'producer','producer',NULL),(989757,1448916,10,'producer','producer',NULL),(989757,1475594,1,'actor',NULL,'[\"John Tyree\"]'),(989757,1086543,2,'actress',NULL,'[\"Savannah Curtis\"]'),(989757,420955,3,'actor',NULL,'[\"Mr. Tyree\"]'),(989757,1794,4,'actor',NULL,'[\"Tim\"]'),(989757,2120,5,'director',NULL,NULL),(989757,1956691,6,'writer','screenplay',NULL),(989757,817023,7,'writer','novel',NULL),(989757,2125212,8,'producer','producer',NULL),(989757,324041,9,'producer','producer',NULL),(990407,6133,10,'composer',NULL,NULL),(990407,736622,1,'actor',NULL,'[\"Britt Reid\",\"The Green Hornet\"]'),(990407,1727100,2,'actor',NULL,'[\"Kato\"]'),(990407,910607,3,'actor',NULL,'[\"Chudnofsky\"]'),(990407,139,4,'actress',NULL,'[\"Lenore Case\"]'),(990407,327273,5,'director',NULL,NULL),(990407,1698571,6,'writer','written by',NULL),(990407,872077,7,'writer','radio series \"The Green Hornet\"',NULL),(990407,679326,8,'writer','early draft',NULL),(990407,605775,9,'producer','producer',NULL),(993840,432725,10,'composer',NULL,NULL),(993840,1176985,1,'actor',NULL,'[\"Scott Ward\"]'),(993840,3480246,2,'actress',NULL,'[\"Kate Ward\"]'),(993840,478886,3,'actress',NULL,'[\"Maria Cruz\"]'),(993840,1165044,4,'actor',NULL,'[\"Vanderohe\"]'),(993840,811583,5,'director',NULL,NULL),(993840,8748334,6,'writer','screenplay by',NULL),(993840,1703612,7,'writer','screenplay by',NULL),(993840,1418292,8,'producer','producer',NULL),(993840,2003463,9,'producer','producer',NULL),(993842,625899,10,'producer','producer',NULL),(993842,1519680,1,'actress',NULL,'[\"Hanna\"]'),(993842,949,2,'actress',NULL,'[\"Marissa Wiegler\"]'),(993842,51509,3,'actor',NULL,'[\"Erik Heller\"]'),(993842,3043279,4,'actress',NULL,'[\"Johanna Zadek\"]'),(993842,942504,5,'director',NULL,NULL),(993842,2605946,6,'writer','screenplay',NULL),(993842,1016333,7,'writer','screenplay',NULL),(993842,1369977,8,'producer','producer',NULL),(993842,390970,9,'producer','producer',NULL),(993846,863374,10,'producer','producer',NULL),(993846,138,1,'actor',NULL,'[\"Jordan Belfort\"]'),(993846,1706767,2,'actor',NULL,'[\"Donnie Azoff\"]'),(993846,3053338,3,'actress',NULL,'[\"Naomi Lapaglia\"]'),(993846,190,4,'actor',NULL,'[\"Mark Hanna\"]'),(993846,217,5,'director',NULL,NULL),(993846,1010540,6,'writer','screenplay',NULL),(993846,67789,7,'writer','book',NULL),(993846,4265383,8,'producer','producer',NULL),(993846,2110175,9,'producer','producer',NULL),(995031,1024685,10,'producer','producer',NULL),(995031,474774,1,'actor',NULL,'[\"Dr. Aditya Shrivastav\"]'),(995031,1799038,2,'actress',NULL,'[\"Avni Chaturvedi\"]'),(995031,1832004,3,'actor',NULL,'[\"Siddharth Chaturvedi\"]'),(995031,665349,4,'actress',NULL,'[\"Radha\"]'),(995031,698184,5,'director',NULL,NULL),(995031,903423,6,'writer','screenplay',NULL),(995031,2170955,7,'writer','dialogue',NULL),(995031,1432116,8,'writer','original story',NULL),(995031,1948506,9,'writer','additional material',NULL),(995039,782535,10,'editor',NULL,NULL),(995039,315041,1,'actor',NULL,'[\"Pincus\"]'),(995039,1427,2,'actor',NULL,'[\"Frank\"]'),(995039,495,3,'actress',NULL,'[\"Gwen\"]'),(995039,1994167,4,'actor',NULL,'[\"Young Husband\"]'),(995039,462895,5,'director',NULL,NULL),(995039,436960,6,'writer','written by',NULL),(995039,689780,7,'producer','producer',NULL),(995039,952944,8,'composer',NULL,NULL),(995039,2320,9,'cinematographer',NULL,NULL),(995829,850617,10,'composer','co-composer',NULL),(995829,201857,1,'actor',NULL,'[\"Kraken\"]'),(995829,78452,2,'actress',NULL,'[\"Suli\"]'),(995829,657241,3,'actor',NULL,'[\"Ramiro\"]'),(995829,671072,4,'actress',NULL,'[\"Erika\"]'),(995829,699932,5,'director',NULL,NULL),(995829,84244,6,'writer','short story \"Cinismo\"',NULL),(995829,602660,7,'producer','producer',NULL),(995829,699933,8,'producer','producer',NULL),(995829,326166,9,'composer','co-composer',NULL),(995850,226322,10,'editor',NULL,NULL),(995850,837784,1,'actress',NULL,'[\"Hildegard von Bingen\"]'),(995850,272224,2,'actor',NULL,'[\"Mönch Volmar\"]'),(995850,381342,3,'actress',NULL,'[\"Richardis von Stade\"]'),(995850,831660,4,'actress',NULL,'[\"Jutta\"]'),(995850,903137,5,'director',NULL,NULL),(995850,956637,6,'producer','producer',NULL),(995850,382317,7,'composer',NULL,NULL),(995850,1388183,8,'composer',NULL,NULL),(995850,88676,9,'cinematographer',NULL,NULL),(996605,2371460,10,'production_designer',NULL,NULL),(996605,756203,1,'actress',NULL,'[\"Julie Pommeraye\"]'),(996605,308039,2,'actor',NULL,'[\"Ismaël Bénoliel\"]'),(996605,1202905,3,'actress',NULL,'[\"Alice\"]'),(996605,557859,4,'actress',NULL,'[\"Jeanne\"]'),(996605,393394,5,'director',NULL,NULL),(996605,104418,6,'producer','producer',NULL),(996605,1180763,7,'composer',NULL,NULL),(996605,156767,8,'cinematographer',NULL,NULL),(996605,405211,9,'editor',NULL,NULL),(997047,348151,10,'producer','producer',NULL),(997047,712368,1,'actress',NULL,'[\"Melanie\"]'),(997047,1454,2,'actor',NULL,'[\"James\"]'),(997047,5552,3,'actress',NULL,'[\"Michelle\"]'),(997047,480775,4,'actor',NULL,'[\"Judge\"]'),(997047,474955,5,'director',NULL,NULL),(997047,595088,6,'writer','written by',NULL),(997047,933144,7,'writer','written by',NULL),(997047,666791,8,'writer','written by',NULL),(997047,202425,9,'writer','written by',NULL),(997152,1369977,10,'producer','producer',NULL),(997152,4778,1,'actor',NULL,'[\"Travis\"]'),(997152,1544217,2,'actor',NULL,'[\"Chase\"]'),(997152,1845,3,'actor',NULL,'[\"Barris\"]'),(997152,1192254,4,'actress',NULL,'[\"Bay\"]'),(997152,771228,5,'director',NULL,NULL),(997152,320342,6,'writer','novel \"Black Box\"',NULL),(997152,201543,7,'writer','film \"Das Experiment\"',NULL),(997152,92063,8,'writer','film \"Das Experiment\"',NULL),(997152,386570,9,'writer','film \"Das Experiment\"',NULL),(997174,2061432,10,'production_designer',NULL,NULL),(997174,879762,1,'actress',NULL,'[\"Asuka Sakura\"]'),(997174,1077107,2,'actor',NULL,'[\"Tetsuo Yakihata\"]'),(997174,1066974,3,'actress',NULL,'[\"Miki\"]'),(997174,753416,4,'actress',NULL,'[\"Eguchi\"]'),(997174,559618,5,'director',NULL,NULL),(997174,4574469,6,'composer',NULL,NULL),(997174,3431763,7,'composer',NULL,NULL),(997174,2605827,8,'cinematographer',NULL,NULL),(997174,880001,9,'editor',NULL,NULL),(997260,7514105,10,'composer',NULL,NULL),(997260,2117864,1,'actress',NULL,'[\"Rosa Nilsson\"]'),(997260,2121085,2,'actor',NULL,'[\"Ville\"]'),(997260,2422238,3,'actor',NULL,'[\"Amir\"]'),(997260,2090809,4,'actress',NULL,'[\"Jessica\"]'),(997260,512570,5,'director',NULL,NULL),(997260,301126,6,'writer','books',NULL),(997260,881067,7,'writer','books',NULL),(997260,74073,8,'producer','producer',NULL),(997260,3151817,9,'composer',NULL,NULL),(999913,343935,10,'composer',NULL,NULL),(999913,5188,1,'actor',NULL,'[\"David Sumner\"]'),(999913,98378,2,'actress',NULL,'[\"Amy Sumner\"]'),(999913,2907,3,'actor',NULL,'[\"Charlie\"]'),(999913,249,4,'actor',NULL,'[\"Tom Heddon\"]'),(999913,527109,5,'director',NULL,NULL),(999913,329051,6,'writer','earlier screenplay',NULL),(999913,1603,7,'writer','earlier screenplay',NULL),(999913,930684,8,'writer','novel \"The Siege of Trencher\'s Farm\"',NULL),(999913,296827,9,'producer','producer',NULL),(10003008,4212466,10,'producer','producer',NULL),(10003008,1405398,1,'actor',NULL,'[\"Charlie\"]'),(10003008,1555340,2,'actress',NULL,'[\"Michelle\"]'),(10003008,2611074,3,'actress',NULL,'[\"Mina\"]'),(10003008,2087739,4,'actor',NULL,'[\"Josh\"]'),(10003008,2002649,5,'director',NULL,NULL),(10003008,1846132,6,'writer','screenplay by',NULL),(10003008,2835934,7,'writer','story by',NULL),(10003008,9294669,8,'producer','producer',NULL),(10003008,3267061,9,'producer','producer',NULL),(1000774,859047,10,'cinematographer','director of photography',NULL),(1000774,572,1,'actress',NULL,'[\"Carrie Bradshaw\"]'),(1000774,326,2,'actress',NULL,'[\"Samantha Jones\"]'),(1000774,633223,3,'actress',NULL,'[\"Miranda Hobbes\"]'),(1000774,4862,4,'actress',NULL,'[\"Charlotte York\"]'),(1000774,455078,5,'director',NULL,NULL),(1000774,124299,6,'writer','book',NULL),(1000774,823015,7,'writer','television series creator',NULL),(1000774,577644,8,'producer','producer',NULL),(1000774,956374,9,'composer',NULL,NULL),(10011336,1018467,10,'cinematographer',NULL,NULL),(10011336,157796,1,'actress',NULL,'[\"Grandma\"]'),(10011336,8936188,2,'actor',NULL,'[\"Big Pong\"]'),(10011336,3166276,3,'actor',NULL,'[\"Little Handsome\"]'),(10011336,4758507,4,'actor',NULL,'[\"Pock-Mark\"]'),(10011336,2118553,5,'director',NULL,NULL),(10011336,1723342,6,'writer',NULL,NULL),(10011336,2863097,7,'producer','producer',NULL),(10011336,1003517,8,'producer','producer',NULL),(10011336,5346357,9,'composer',NULL,NULL),(1001508,433339,10,'producer','producer',NULL),(1001508,329481,1,'actress',NULL,'[\"Gigi\"]'),(1001508,98,2,'actress',NULL,'[\"Beth\"]'),(1001508,124,3,'actress',NULL,'[\"Janine\"]'),(1001508,2079681,4,'actress',NULL,'[\"5 Year Old Girl\"]'),(1001508,477129,5,'director',NULL,NULL),(1001508,463359,6,'writer','written by',NULL),(1001508,799050,7,'writer','written by',NULL),(1001508,1021163,8,'writer','book \"He\'s Just Not That Into You: The No-Excuses Truth to Understanding Guys\"',NULL),(1001508,875710,9,'writer','book \"He\'s Just Not That Into You: The No-Excuses Truth to Understanding Guys\"',NULL),(1001526,1154632,10,'composer',NULL,NULL),(1001526,2071,1,'actor',NULL,'[\"Megamind\"]'),(1001526,1706767,2,'actor',NULL,'[\"Tighten\"]'),(1001526,93,3,'actor',NULL,'[\"Metro Man\"]'),(1001526,275486,4,'actress',NULL,'[\"Roxanne Ritchi\"]'),(1001526,569891,5,'director',NULL,NULL),(1001526,774786,6,'writer','written by',NULL),(1001526,2523794,7,'writer','written by',NULL),(1001526,2604429,8,'producer','producer',NULL),(1001526,1660846,9,'producer','producer',NULL),(10016180,179749,10,'production_designer',NULL,NULL),(10016180,243,1,'actor',NULL,'[\"Joe \'Deke\' Deacon\"]'),(10016180,1785339,2,'actor',NULL,'[\"Jim Baxter\"]'),(10016180,1467,3,'actor',NULL,'[\"Albert Sparma\"]'),(10016180,61777,4,'actor',NULL,'[\"Detective Sal Rizoli\"]'),(10016180,359387,5,'director',NULL,NULL),(10016180,425741,6,'producer','producer',NULL),(10016180,2353,7,'composer',NULL,NULL),(10016180,6701,8,'cinematographer','director of photography',NULL),(10016180,292482,9,'editor',NULL,NULL),(1003034,391794,10,'composer',NULL,NULL),(1003034,321,1,'actor',NULL,'[\"Voice of The Reaper\"]'),(1003034,614165,2,'actor',NULL,'[\"Michael\"]'),(1003034,568385,3,'actor',NULL,'[\"Ivan\"]'),(1003034,943614,4,'actor',NULL,'[\"Orlando\"]'),(1003034,280416,5,'director',NULL,NULL),(1003034,1248824,6,'writer','writer',NULL),(1003034,439563,7,'producer','producer',NULL),(1003034,597215,8,'producer','producer',NULL),(1003034,941262,9,'producer','producer',NULL),(10059518,1384267,10,'composer',NULL,NULL),(10059518,128,1,'actor',NULL,'[\"Man\"]'),(10059518,3308569,2,'actress',NULL,'[\"Rachel\"]'),(10059518,5145655,3,'actor',NULL,'[\"Kyle\"]'),(10059518,801051,4,'actor',NULL,'[\"Andy\"]'),(10059518,97517,5,'director',NULL,NULL),(10059518,255296,6,'writer','written by',NULL),(10059518,255353,7,'producer','producer',NULL),(10059518,1247584,8,'producer','producer',NULL),(10059518,348151,9,'producer','producer',NULL),(10060094,563387,10,'editor',NULL,NULL),(10060094,1227814,1,'actress',NULL,'[\"Brooke\"]'),(10060094,3262317,2,'actor',NULL,'[\"Sir Cole\"]'),(10060094,4825,3,'actress',NULL,'[\"Madison\"]'),(10060094,447785,4,'actress',NULL,'[\"Old Crone\"]'),(10060094,593618,5,'director',NULL,NULL),(10060094,4426398,6,'writer','written by',NULL),(10060094,471097,7,'producer','producer',NULL),(10060094,69197,8,'composer',NULL,NULL),(10060094,306755,9,'cinematographer','director of photography',NULL),(10065694,5192794,10,'producer','producer',NULL),(10065694,1847117,1,'actress',NULL,'[\"Veronica\",\"Eden\"]'),(10065694,1441925,2,'actor',NULL,'[\"Him\",\"Senator Denton\"]'),(10065694,540441,3,'actress',NULL,'[\"Elizabeth\"]'),(10065694,1658935,4,'actor',NULL,'[\"Captain Jasper\"]'),(10065694,4680113,5,'director',NULL,NULL),(10065694,7896794,6,'director',NULL,NULL),(10065694,2303301,7,'producer','producer',NULL),(10065694,1506448,8,'producer','producer',NULL),(10065694,572014,9,'producer','producer',NULL),(1007029,942549,10,'editor',NULL,NULL),(1007029,658,1,'actress',NULL,'[\"Margaret Thatcher\"]'),(1007029,980,2,'actor',NULL,'[\"Denis Thatcher\"]'),(1007029,1290,3,'actor',NULL,'[\"Michael Heseltine\"]'),(1007029,114742,4,'actress',NULL,'[\"June - Housekeeper\"]'),(1007029,1630273,5,'director',NULL,NULL),(1007029,604448,6,'writer','screenplay',NULL),(1007029,427827,7,'producer','producer',NULL),(1007029,2353,8,'composer',NULL,NULL),(1007029,204567,9,'cinematographer','director of photography',NULL),(1007920,86414,10,'editor',NULL,NULL),(1007920,792198,1,'actress',NULL,'[\"Elina\"]'),(1007920,865064,2,'actor',NULL,'[\"Bibble\",\"Fungus #1 & #2\"]'),(1007920,56532,3,'actress',NULL,'[\"Laverna\"]'),(1007920,311081,4,'actor',NULL,'[\"Fungus Maximus\"]'),(1007920,490640,5,'director',NULL,NULL),(1007920,20489,6,'writer','written by',NULL),(1007920,1043325,7,'writer','based upon: Barbie characters created by',NULL),(1007920,1747075,8,'producer','producer',NULL),(1007920,173433,9,'composer',NULL,NULL),(10083340,6741315,10,'writer','additional dialogue',NULL),(10083340,1017633,1,'actress',NULL,'[\"Gangubai Kathiawadi\"]'),(10083340,8374266,2,'actor',NULL,'[\"Afsaan\"]'),(10083340,704694,3,'actor',NULL,'[\"Raziabai\"]'),(10083340,4987678,4,'actress',NULL,'[\"Kamli\"]'),(10083340,80220,5,'director',NULL,NULL),(10083340,7580249,6,'writer','additional screenplay',NULL),(10083340,9936180,7,'writer','additional dialogue',NULL),(10083340,1165501,8,'writer','dialogue',NULL),(10083340,3128535,9,'writer','additional screenplay',NULL),(1010048,6246,10,'composer',NULL,NULL),(1010048,2353862,1,'actor',NULL,'[\"Older Jamal\"]'),(1010048,2951768,2,'actress',NULL,'[\"Older Latika\"]'),(1010048,795661,3,'actor',NULL,'[\"Sergeant Srinivas\"]'),(1010048,438463,4,'actor',NULL,'[\"Prem\"]'),(1010048,965,5,'director',NULL,NULL),(1010048,849164,6,'director','co-director: India',NULL),(1010048,64479,7,'writer','screenplay',NULL),(1010048,3139511,8,'writer','novel \"Q & A\"',NULL),(1010048,1384503,9,'producer','producer',NULL),(10101702,9261564,10,'writer','based on characters by',NULL),(10101702,1227814,1,'actress',NULL,'[\"Sunny Starscout\"]'),(10101702,4733752,2,'actress',NULL,'[\"Izzy Moonbow\"]'),(10101702,5188,3,'actor',NULL,'[\"Hitch Trailblazer\"]'),(10101702,6259860,4,'actress',NULL,'[\"Pipp Petals\"]'),(10101702,2366527,5,'director',NULL,NULL),(10101702,2440538,6,'director',NULL,NULL),(10101702,1072856,7,'director','co-director',NULL),(10101702,3201,8,'writer','screenplay by',NULL),(10101702,3186756,9,'writer','screenplay by',NULL),(10121392,3330,10,'editor',NULL,NULL),(10121392,565250,1,'actress',NULL,'[\"Lydia Berman\"]'),(10121392,818055,2,'actress',NULL,'[\"Emily Stanton\"]'),(10121392,867,3,'actor',NULL,'[\"The Crab\"]'),(10121392,134072,4,'actor',NULL,'[\"The King\"]'),(10121392,1229520,5,'director',NULL,NULL),(10121392,686887,6,'producer','producer',NULL),(10121392,2132113,7,'producer','producer',NULL),(10121392,1135983,8,'composer',NULL,NULL),(10121392,677021,9,'cinematographer','director of photography',NULL),(10126434,3242676,10,'cinematographer',NULL,NULL),(10126434,2063694,1,'actor',NULL,'[\"Fred\"]'),(10126434,2251731,2,'actress',NULL,'[\"Fanny\"]'),(10126434,5412083,3,'actor',NULL,'[\"Carlo\"]'),(10126434,1089569,4,'actress',NULL,'[\"Bettina\"]'),(10126434,3856673,5,'producer','producer',NULL),(10126434,1545689,6,'producer','producer',NULL),(10126434,2088640,7,'composer',NULL,NULL),(10126434,1344477,8,'composer',NULL,NULL),(10126434,5512076,9,'composer',NULL,NULL),(1012729,78139,10,'cinematographer',NULL,NULL),(1012729,171,1,'actress',NULL,'[\"Helen Leonard\"]'),(1012729,899681,2,'actor',NULL,'[\"David Leonard\"]'),(1012729,809049,3,'actress',NULL,'[\"Mathilda\"]'),(1012729,2145177,4,'actress',NULL,'[\"Julie\"]'),(1012729,626686,5,'director',NULL,NULL),(1012729,352980,6,'producer','producer',NULL),(1012729,869236,7,'producer','producer',NULL),(1012729,1886083,8,'composer','supervising composer',NULL),(1012729,1885585,9,'composer',NULL,NULL),(1013743,694173,10,'composer',NULL,NULL),(1013743,129,1,'actor',NULL,'[\"Roy Miller\"]'),(1013743,139,2,'actress',NULL,'[\"June Havens\"]'),(1013743,765597,3,'actor',NULL,'[\"Fitzgerald\"]'),(1013743,3244,4,'actor',NULL,'[\"Antonio\"]'),(1013743,3506,5,'director',NULL,NULL),(1013743,642277,6,'writer','written by',NULL),(1013743,307776,7,'producer','producer',NULL),(1013743,465298,8,'producer','producer',NULL),(1013743,684336,9,'producer','producer',NULL),(1013752,3911,10,'composer',NULL,NULL),(1013752,4874,1,'actor',NULL,'[\"Dominic Toretto\"]'),(1013752,908094,2,'actor',NULL,'[\"Brian O\'Conner\"]'),(1013752,735442,3,'actress',NULL,'[\"Letty\"]'),(1013752,108287,4,'actress',NULL,'[\"Mia\"]'),(1013752,510912,5,'director',NULL,NULL),(1013752,604555,6,'writer','written by',NULL),(1013752,860155,7,'writer','characters',NULL),(1013752,288202,8,'producer','producer',NULL),(1013752,605775,9,'producer','producer',NULL),(1013753,767647,10,'cinematographer','director of photography',NULL),(1013753,576,1,'actor',NULL,'[\"Harvey Milk\"]'),(1013753,982,2,'actor',NULL,'[\"Dan White\"]'),(1013753,386472,3,'actor',NULL,'[\"Cleve Jones\"]'),(1013753,526019,4,'actor',NULL,'[\"Jack Lira\"]'),(1013753,1814,5,'director',NULL,NULL),(1013753,85257,6,'writer','written by',NULL),(1013753,169260,7,'producer','producer',NULL),(1013753,423134,8,'producer','producer',NULL),(1013753,384,9,'composer',NULL,NULL),(1013860,2170,10,'producer','executive producer',NULL),(1013860,746125,1,'actor',NULL,'[\"Dylan\"]'),(1013860,1715194,2,'actress',NULL,'[\"Elizabeth\"]'),(1013860,403134,3,'actor',NULL,'[\"Marcus\"]'),(1013860,4875,4,'actor',NULL,'[\"Vargas\"]'),(1013860,1083489,5,'director',NULL,NULL),(1013860,232776,6,'writer','written by',NULL),(1013860,649191,7,'writer','written by',NULL),(1013860,778554,8,'writer','comic book series \"Dylan Dog\"',NULL),(1013860,12155,9,'producer','producer',NULL),(1014759,865297,10,'producer','producer',NULL),(1014759,1985859,1,'actress',NULL,'[\"Alice Kingsleigh\"]'),(1014759,136,2,'actor',NULL,'[\"Mad Hatter\"]'),(1014759,307,3,'actress',NULL,'[\"Red Queen\"]'),(1014759,4266,4,'actress',NULL,'[\"White Queen\"]'),(1014759,318,5,'director',NULL,NULL),(1014759,941314,6,'writer','screenplay',NULL),(1014759,140902,7,'writer','books \"Alice\'s Adventures in Wonderland\" and \"Through the Looking Glass\"',NULL),(1014759,5387,8,'producer','producer',NULL),(1014759,865189,9,'producer','producer',NULL),(1014763,788513,10,'producer','producer',NULL),(1014763,362766,1,'actor',NULL,'[\"Leo Demidov\"]'),(1014763,198,2,'actor',NULL,'[\"General Mikhail Nesterov\"]'),(1014763,636426,3,'actress',NULL,'[\"Raisa Demidov\"]'),(1014763,1172478,4,'actor',NULL,'[\"Vasili\"]'),(1014763,1174251,5,'director',NULL,NULL),(1014763,697115,6,'writer','screenplay',NULL),(1014763,1602547,7,'writer','novel',NULL),(1014763,769644,8,'producer','producer',NULL),(1014763,631,9,'producer','producer',NULL),(1014775,509414,10,'producer','producer',NULL),(1014775,106,1,'actress',NULL,'[\"Chloe\"]'),(1014775,520064,2,'actor',NULL,'[\"Papi\"]'),(1014775,5305,3,'actress',NULL,'[\"Rachel\"]'),(1014775,136572,4,'actor',NULL,'[\"Sam Cortez\"]'),(1014775,331532,5,'director',NULL,NULL),(1014775,1583667,6,'writer','screenplay',NULL),(1014775,124244,7,'writer','screenplay',NULL),(1014775,387674,8,'producer','producer',NULL),(1014775,1124997,9,'producer','producer',NULL),(10155932,2217,10,'composer',NULL,NULL),(10155932,5305981,1,'actress',NULL,'[\"Cinderella\"]'),(10155932,692039,2,'actor',NULL,'[\"Fabulous Godmother\"]'),(10155932,5954280,3,'actor',NULL,'[\"Prince Robert\"]'),(10155932,579953,4,'actress',NULL,'[\"Vivian\"]'),(10155932,134224,5,'director',NULL,NULL),(10155932,179479,6,'producer','producer',NULL),(10155932,2142367,7,'producer','producer',NULL),(10155932,570690,8,'producer','producer',NULL),(10155932,2543134,9,'producer','producer',NULL),(1016150,344612,10,'producer','producer',NULL),(1016150,436835,1,'actor',NULL,'[\"Paul Bäumer\"]'),(1016150,3477129,2,'actor',NULL,'[\"Stanislaus Katczinsky\"]'),(1016150,6037256,3,'actor',NULL,'[\"Albert Kropp\"]'),(1016150,2714111,4,'actor',NULL,'[\"Franz Müller\"]'),(1016150,74163,5,'director',NULL,NULL),(1016150,665510,6,'writer','screenplay by',NULL),(1016150,1748106,7,'writer','screenplay by',NULL),(1016150,718871,8,'writer','based on the novel by',NULL),(1016150,1897448,9,'producer','producer',NULL),(10161886,2946490,10,'producer','producer',NULL),(10161886,658,1,'actress',NULL,'[\"Dee Dee Allen\"]'),(10161886,179479,2,'actor',NULL,'[\"Barry Glickman\"]'),(10161886,173,3,'actress',NULL,'[\"Angie Dickinson\"]'),(10161886,913488,4,'actress',NULL,'[\"Mrs. Greene\"]'),(10161886,614682,5,'director',NULL,NULL),(10161886,551991,6,'writer','screenplay by',NULL),(10161886,66818,7,'writer','screenplay by',NULL),(10161886,804455,8,'writer','based on the Broadway musical by',NULL),(10161886,896828,9,'writer','based on an original concept by',NULL),(1016268,1221373,10,'producer','producer',NULL),(1016268,1933035,1,'self',NULL,'[\"Self - Former Enron Accountant\"]'),(1016268,4036323,2,'archive_footage',NULL,'[\"Self\"]'),(1016268,101526,3,'archive_footage',NULL,'[\"Self\"]'),(1016268,124133,4,'archive_footage',NULL,'[\"Self\"]'),(1016268,316795,5,'director',NULL,NULL),(1016268,1628322,6,'writer','book \"The Smartest Guys in the Room - The Amazing Rise and Scandalous Fall of Enron\"',NULL),(1016268,1646482,7,'writer','book \"The Smartest Guys in the Room - The Amazing Rise and Scandalous Fall of Enron\"',NULL),(1016268,255334,8,'producer','producer',NULL),(1016268,459852,9,'producer','producer',NULL),(1016301,989434,10,'composer',NULL,NULL),(1016301,767027,1,'actor',NULL,'[\"Galois\"]'),(1016301,50787,2,'actress',NULL,'[\"Oliva\"]'),(1016301,392913,3,'actor',NULL,'[\"Hilbert\"]'),(1016301,590298,4,'actor',NULL,'[\"Pascal\"]'),(1016301,1618276,5,'director',NULL,NULL),(1016301,1924019,6,'director',NULL,NULL),(1016301,73172,7,'producer','producer',NULL),(1016301,2247815,8,'producer','producer',NULL),(1016301,1411546,9,'producer','executive producer',NULL),(10168670,1150125,10,'producer','producer',NULL),(10168670,3154303,1,'actor',NULL,'[\"Lee\"]'),(10168670,5347988,2,'actress',NULL,'[\"Maren\"]'),(10168670,753314,3,'actor',NULL,'[\"Sully\"]'),(10168670,12912851,4,'actress',NULL,'[\"Sherry\"]'),(10168670,345174,5,'director',NULL,NULL),(10168670,1738734,6,'writer','screenplay by',NULL),(10168670,12444098,7,'writer','based on the novel by',NULL),(10168670,2361520,8,'producer','producer',NULL),(10168670,585747,9,'producer','producer',NULL),(1017451,2421004,10,'composer',NULL,NULL),(1017451,829576,1,'actress',NULL,'[\"Joan Jett\"]'),(1017451,266824,2,'actress',NULL,'[\"Cherie Currie\"]'),(1017451,788335,3,'actor',NULL,'[\"Kim Fowley\"]'),(1017451,1886524,4,'actress',NULL,'[\"Sandy West\"]'),(1017451,797455,5,'director',NULL,NULL),(1017451,192947,6,'writer','book \"Neon Angel: The Cherie Currie Story\"',NULL),(1017451,513165,7,'producer','producer',NULL),(1017451,513170,8,'producer','producer',NULL),(1017451,688361,9,'producer','producer',NULL),(1017460,619216,10,'cinematographer','director of photography',NULL),(1017460,4778,1,'actor',NULL,'[\"Clive Nicoli\"]'),(1017460,1631,2,'actress',NULL,'[\"Elsa Kast\"]'),(1017460,152035,3,'actress',NULL,'[\"Dren\"]'),(1017460,1682412,4,'actor',NULL,'[\"Gavin Nicoli\"]'),(1017460,622112,5,'director',NULL,NULL),(1017460,2629199,6,'writer','screenplay',NULL),(1017460,852298,7,'writer','screenplay',NULL),(1017460,387541,8,'producer','producer',NULL),(1017460,2020141,9,'composer',NULL,NULL),(1018785,224145,10,'producer','producer',NULL),(1018785,1065229,1,'actress',NULL,'[\"Carmen Lowell\"]'),(1018785,88127,2,'actress',NULL,'[\"Lena Kaligaris\"]'),(1018785,848554,3,'actress',NULL,'[\"Tibby Tomko-Rollins\"]'),(1018785,515116,4,'actress',NULL,'[\"Bridget Vreeland\"]'),(1018785,1065402,5,'director',NULL,NULL),(1018785,151358,6,'writer','screenplay',NULL),(1018785,1569351,7,'writer','novel \"Forever in Blue: The Fourth Summer of the Sisterhood\"',NULL),(1018785,153744,8,'producer','producer',NULL),(1018785,204987,9,'producer','producer',NULL),(10189300,1164929,10,'editor',NULL,NULL),(10189300,10622687,1,'actor',NULL,'[\"Ugyen Dorji\"]'),(10189300,10622683,2,'actor',NULL,'[\"Michen\"]'),(10189300,10622692,3,'actor',NULL,'[\"Saldon\"]'),(10189300,10622690,4,'actress',NULL,'[\"Pem Zam\"]'),(10189300,8293167,5,'director',NULL,NULL),(10189300,10638041,6,'producer','producer',NULL),(10189300,266966,7,'producer','producer',NULL),(10189300,9641149,8,'producer','producer',NULL),(10189300,3327225,9,'cinematographer',NULL,NULL),(1019452,836121,1,'actor',NULL,'[\"Larry Gopnik\"]'),(1019452,454236,2,'actor',NULL,'[\"Uncle Arthur\"]'),(1019452,3102689,3,'actress',NULL,'[\"Judith Gopnik\"]'),(1019452,577329,4,'actor',NULL,'[\"Sy Ableman\"]'),(1019452,1053,5,'director',NULL,NULL),(1019452,1054,6,'director',NULL,NULL),(1019452,1980,7,'composer',NULL,NULL),(1019452,5683,8,'cinematographer','director of photography',NULL),(1019452,327211,9,'production_designer',NULL,NULL),(10199590,2043592,10,'cinematographer','director of photography',NULL),(10199590,4044784,1,'actor',NULL,'[\"Stéphane\"]'),(10199590,6281424,2,'actor',NULL,'[\"Chris\"]'),(10199590,8815470,3,'actor',NULL,'[\"Gwada\"]'),(10199590,10708849,4,'actor',NULL,'[\"Issa\"]'),(10199590,1868177,5,'director',NULL,NULL),(10199590,311488,6,'writer','screenplay',NULL),(10199590,1902436,7,'producer','producer',NULL),(10199590,2820211,8,'producer','producer',NULL),(10199590,12258268,9,'composer',NULL,NULL),(1020072,1390780,10,'composer',NULL,NULL),(1020072,654648,1,'actor',NULL,'[\"Dr. Martin Luther King, Jr.\"]'),(1020072,252238,2,'actress',NULL,'[\"Coretta Scott King\"]'),(1020072,1856,3,'actress',NULL,'[\"Annie Lee Cooper\"]'),(1020072,929489,4,'actor',NULL,'[\"President Lyndon B. Johnson\"]'),(1020072,1148550,5,'director',NULL,NULL),(1020072,2298096,6,'writer','written by',NULL),(1020072,1384503,7,'producer','producer',NULL),(1020072,306890,8,'producer','producer',NULL),(1020072,1250070,9,'producer','producer',NULL),(1020543,349207,10,'composer',NULL,NULL),(1020543,549815,1,'actor',NULL,'[\"Cooper\"]'),(1020543,627492,2,'actress',NULL,'[\"Sara\"]'),(1020543,1662572,3,'actress',NULL,'[\"Cindy\"]'),(1020543,2325213,4,'actor',NULL,'[\"Hugo\"]'),(1020543,710272,5,'director',NULL,NULL),(1020543,50276,6,'producer','producer',NULL),(1020543,202704,7,'producer','producer',NULL),(1020543,705476,8,'producer','producer',NULL),(1020543,757135,9,'producer','producer',NULL),(1020558,318639,10,'editor',NULL,NULL),(1020558,1055413,1,'actor',NULL,'[\"Centurion Quintus Dias\"]'),(1020558,922035,2,'actor',NULL,'[\"General Titus Virilus\"]'),(1020558,1385871,3,'actress',NULL,'[\"Etain\"]'),(1020558,936591,4,'actor',NULL,'[\"Commander Gratus\"]'),(1020558,551076,5,'director',NULL,NULL),(1020558,1384503,6,'producer','producer',NULL),(1020558,429134,7,'producer','producer',NULL),(1020558,1011065,8,'composer',NULL,NULL),(1020558,567302,9,'cinematographer','director of photography',NULL),(1020773,439768,10,'producer','producer',NULL),(1020773,300,1,'actress',NULL,'[\"Elle\"]'),(1020773,1468516,2,'actor',NULL,'[\"James Miller\"]'),(1020773,140643,3,'actor',NULL,'[\"L\'homme de la place\"]'),(1020773,622145,4,'actress',NULL,'[\"La femme de la place\"]'),(1020773,452102,5,'director',NULL,NULL),(1020773,253428,6,'writer','collaborating writer',NULL),(1020773,53184,7,'producer','producer',NULL),(1020773,318570,8,'producer','producer',NULL),(1020773,439767,9,'producer','executive producer',NULL),(1020885,2089328,10,'cinematographer','director of photography',NULL),(1020885,1524,1,'actor',NULL,'[\"Vicar\"]'),(1020885,179479,2,'actor',NULL,'[\"Fletch\"]'),(1020885,1769728,3,'actress',NULL,'[\"Lotte\"]'),(1020885,1278926,4,'actress',NULL,'[\"Carmilla\"]'),(1020885,165616,5,'director',NULL,NULL),(1020885,1546056,6,'writer','screenplay',NULL),(1020885,2013358,7,'writer','screenplay',NULL),(1020885,164626,8,'producer','producer',NULL),(1020885,6341,9,'composer',NULL,NULL),(10213380,3459455,10,'editor',NULL,NULL),(10213380,10633315,1,'actress',NULL,'[\"Madeleine\"]'),(10213380,5854804,2,'actor',NULL,'[\"Edouard\"]'),(10213380,5402587,3,'actor',NULL,'[\"Nikolai\"]'),(10213380,5705004,4,'actress',NULL,'[\"Ingrida\"]'),(10213380,1090998,5,'director',NULL,NULL),(10213380,12772188,6,'writer','book',NULL),(10213380,2118162,7,'producer','producer',NULL),(10213380,5430544,8,'cinematographer',NULL,NULL),(10213380,3203635,9,'editor',NULL,NULL),(1022603,914132,10,'producer','producer',NULL),(1022603,221046,1,'actress',NULL,'[\"Summer\"]'),(1022603,330687,2,'actor',NULL,'[\"Tom\"]'),(1022603,34309,3,'actor',NULL,'[\"McKenzie\"]'),(1022603,1631269,4,'actress',NULL,'[\"Rachel\"]'),(1022603,1989536,5,'director',NULL,NULL),(1022603,2354099,6,'writer','written by',NULL),(1022603,2352210,7,'writer','written by',NULL),(1022603,1259504,8,'producer','producer',NULL),(1022603,875736,9,'producer','producer',NULL),(1022606,631286,10,'cinematographer',NULL,NULL),(1022606,1089900,1,'actress',NULL,'[\"Julia\"]'),(1022606,2080950,2,'actress',NULL,'[\"Amiga 1\"]'),(1022606,4100263,3,'actor',NULL,'[\"Doble de Ramiro herido\"]'),(1022606,3431392,4,'actor',NULL,'[\"Abogado de Oficio\"]'),(1022606,871086,5,'director',NULL,NULL),(1022606,1375024,6,'writer','writer',NULL),(1022606,1375777,7,'writer','writer',NULL),(1022606,1377207,8,'writer','writer',NULL),(1022606,2446178,9,'producer','producer',NULL),(10228134,1295321,10,'producer','producer',NULL),(10228134,295,1,'actress',NULL,'[\"Lindy\"]'),(10228134,2541974,2,'actor',NULL,'[\"Justin\"]'),(10228134,1804,3,'actor',NULL,'[\"Dr. Munchin\"]'),(10228134,134072,4,'actor',NULL,'[\"Detective Vicars\"]'),(10228134,923330,5,'director',NULL,NULL),(10228134,10640839,6,'writer','written by',NULL),(10228134,2050171,7,'producer','producer',NULL),(10228134,1602119,8,'producer','producer',NULL),(10228134,5004893,9,'producer','producer',NULL),(1022885,752811,10,'cinematographer',NULL,NULL),(1022885,2129938,1,'actor',NULL,'[\"David\"]'),(1022885,334441,2,'actress',NULL,'[\"Emily\"]'),(1022885,6650029,3,'actress',NULL,'[\"Mrs. Fry\"]'),(1022885,1133714,4,'actor',NULL,'[\"Charlie\"]'),(1022885,2197777,5,'director',NULL,NULL),(1022885,2113666,6,'writer','writer',NULL),(1022885,1384503,7,'producer','producer',NULL),(1022885,1803361,8,'producer','producer',NULL),(1022885,1877758,9,'composer',NULL,NULL),(1023111,262210,10,'cinematographer','director of photography',NULL),(1023111,267511,1,'actor',NULL,'[\"Jake Tyler\"]'),(1023111,5023,2,'actor',NULL,'[\"Jean Roqua\"]'),(1023111,1720028,3,'actress',NULL,'[\"Baja Miller\"]'),(1023111,1544217,4,'actor',NULL,'[\"Ryan McCarthy\"]'),(1023111,905592,5,'director',NULL,NULL),(1023111,369675,6,'writer','written by',NULL),(1023111,62332,7,'producer','producer',NULL),(1023111,954679,8,'producer','producer',NULL),(1023111,910800,9,'composer',NULL,NULL),(1023114,801691,10,'producer','producer',NULL),(1023114,836343,1,'actor',NULL,'[\"Janusz\"]'),(1023114,438,2,'actor',NULL,'[\"Mr. Smith\"]'),(1023114,268199,3,'actor',NULL,'[\"Valka\"]'),(1023114,1058007,4,'actor',NULL,'[\"Zoran\"]'),(1023114,1837,5,'director',NULL,NULL),(1023114,164851,6,'writer','screenplay',NULL),(1023114,3524563,7,'writer','novel \"The Long Walk\"',NULL),(1023114,376416,8,'producer','producer',NULL),(1023114,505639,9,'producer','producer',NULL),(1023441,1189,10,'composer',NULL,NULL),(1023441,609662,1,'actress',NULL,'[\"Coco Chanel\"]'),(1023441,586568,2,'actor',NULL,'[\"Igor Stravinsky\"]'),(1023441,341948,3,'actress',NULL,'[\"Katarina Stravinskaya\"]'),(1023441,511943,4,'actress',NULL,'[\"Misia Sert\"]'),(1023441,468007,5,'director',NULL,NULL),(1023441,2645289,6,'writer','screenplay and dialogue',NULL),(1023441,207551,7,'writer','adaptation',NULL),(1023441,93499,8,'producer','producer',NULL),(1023441,652226,9,'producer','producer',NULL),(1023481,316774,10,'producer','producer',NULL),(1023481,1382207,1,'actor',NULL,'[\"Chase\"]'),(1023481,263759,2,'actress',NULL,'[\"Andie\"]'),(1023481,144260,3,'actress',NULL,'[\"Sophie\"]'),(1023481,1782560,4,'actor',NULL,'[\"Moose\"]'),(1023481,160840,5,'director',NULL,NULL),(1023481,426355,6,'writer','written by',NULL),(1023481,1661137,7,'writer','written by',NULL),(1023481,12137,8,'writer','characters',NULL),(1023481,270549,9,'producer','producer',NULL),(1024255,697048,10,'composer',NULL,NULL),(1024255,731075,1,'actress',NULL,'[\"Poppy\"]'),(1024255,1644,2,'actor',NULL,'[\"Gerry Moore\"]'),(1024255,1670,3,'actress',NULL,'[\"Mrs. Kingsley\"]'),(1024255,1943692,4,'actress',NULL,'[\"Molly\"]'),(1024255,601680,5,'director',NULL,NULL),(1024255,1779941,6,'writer','written by',NULL),(1024255,79677,7,'producer','producer',NULL),(1024255,271479,8,'producer','producer',NULL),(1024255,680355,9,'producer','producer',NULL),(10243992,905603,10,'editor',NULL,NULL),(10243992,3014031,1,'actress',NULL,'[\"Jean\"]'),(10243992,1750371,2,'actress',NULL,'[\"Teri\"]'),(10243992,3429884,3,'actor',NULL,'[\"Cal\"]'),(10243992,11986662,4,'actor',NULL,'[\"Harry\"]'),(10243992,1257352,5,'director',NULL,NULL),(10243992,3527897,6,'writer','written by',NULL),(10243992,3780848,7,'composer',NULL,NULL),(10243992,2133093,8,'cinematographer','director of photography',NULL),(10243992,5000675,9,'editor',NULL,NULL),(10244726,10677046,10,'editor',NULL,NULL),(10244726,527735,1,'actor',NULL,'[\"Toninho\"]'),(10244726,759992,2,'actor',NULL,'[\"Homem do Bussaco\"]'),(10244726,626649,3,'actor',NULL,'[\"Mau\"]'),(10244726,905351,4,'actor',NULL,'[\"Busto\"]'),(10244726,4566375,5,'director',NULL,NULL),(10244726,4566343,6,'director',NULL,NULL),(10244726,13611,7,'producer','producer',NULL),(10244726,2245654,8,'producer','producer',NULL),(10244726,7258155,9,'cinematographer',NULL,NULL),(10244760,11045207,10,'composer',NULL,NULL),(10244760,2161889,1,'actress',NULL,'[\"Khadija\"]'),(10244760,11084456,2,'actor',NULL,'[\"Colleague\"]'),(10244760,5250972,3,'actor',NULL,'[\"Colleague\"]'),(10244760,7063538,4,'actress',NULL,'[\"Colleague\"]'),(10244760,2483574,5,'director',NULL,NULL),(10244760,1616394,6,'producer','producer',NULL),(10244760,3774536,7,'producer','producer',NULL),(10244760,3277695,8,'producer','producer',NULL),(10244760,2113336,9,'producer','producer',NULL),(1024648,6035,10,'composer',NULL,NULL),(1024648,255,1,'actor',NULL,'[\"Tony Mendez\"]'),(1024648,186505,2,'actor',NULL,'[\"Jack O\'Donnell\"]'),(1024648,422,3,'actor',NULL,'[\"John Chambers\"]'),(1024648,273,4,'actor',NULL,'[\"Lester Siegel\"]'),(1024648,6516,5,'writer','screenplay by',NULL),(1024648,5410196,6,'writer','based on a selection from \"The Master of Disguise\" by',NULL),(1024648,2646452,7,'writer','based on the Wired Magazine article \"The Great Escape\" by',NULL),(1024648,123,8,'producer','producer',NULL),(1024648,381416,9,'producer','producer',NULL),(1024744,5851,10,'cinematographer',NULL,NULL),(1024744,1326,1,'actor',NULL,'[\"Kline\"]'),(1024744,951295,2,'actress',NULL,'[\"Lili\"]'),(1024744,496932,3,'actor',NULL,'[\"Su Dongpo\"]'),(1024744,454120,4,'actor',NULL,'[\"Shitao\"]'),(1024744,870841,5,'director',NULL,NULL),(1024744,147397,6,'producer','producer',NULL),(1024744,549478,7,'producer','producer',NULL),(1024744,837875,8,'producer','producer',NULL),(1024744,763395,9,'composer',NULL,NULL),(1024856,1010524,10,'producer','producer',NULL),(1024856,1832125,1,'actor',NULL,NULL),(1024856,3691157,2,'actor',NULL,NULL),(1024856,1130046,3,'actor',NULL,NULL),(1024856,1441714,4,'actor',NULL,NULL),(1024856,2642593,5,'director',NULL,NULL),(1024856,2379144,6,'writer','novel',NULL),(1024856,1178713,7,'writer','screenplay',NULL),(1024856,3062909,8,'producer','producer',NULL),(1024856,1867599,9,'producer','producer',NULL),(1025100,1911103,10,'producer','producer',NULL),(1025100,226,1,'actor',NULL,'[\"Henry Brogan\",\"Junior\"]'),(1025100,935541,2,'actress',NULL,'[\"Danny Zakarewski\"]'),(1025100,654110,3,'actor',NULL,'[\"Clay Verris\"]'),(1025100,938950,4,'actor',NULL,'[\"Baron\"]'),(1025100,487,5,'director',NULL,NULL),(1025100,1125275,6,'writer','screenplay by',NULL),(1025100,712753,7,'writer','screenplay by',NULL),(1025100,501359,8,'writer','screenplay by',NULL),(1025100,988,9,'producer','producer',NULL),(10276470,1184901,10,'composer',NULL,NULL),(10276470,2920533,1,'actor',NULL,'[\"Julliard Pembroke\"]'),(10276470,7862639,2,'actress',NULL,'[\"Jasmine Hale\"]'),(10276470,2859154,3,'actress',NULL,'[\"Trinity\"]'),(10276470,11198161,4,'actress',NULL,'[\"Brit Turner\"]'),(10276470,2884474,5,'director',NULL,NULL),(10276470,10645228,6,'writer','written by',NULL),(10276470,1006024,7,'producer','producer',NULL),(10276470,465813,8,'producer','producer',NULL),(10276470,1573975,9,'producer','producer',NULL),(1027718,696299,10,'producer','producer',NULL),(1027718,479471,1,'actor',NULL,'[\"Jake Moore\"]'),(1027718,140,2,'actor',NULL,'[\"Gordon Gekko\"]'),(1027718,1659547,3,'actress',NULL,'[\"Winnie Gekko\"]'),(1027718,982,4,'actor',NULL,'[\"Bretton James\"]'),(1027718,231,5,'director',NULL,NULL),(1027718,1615610,6,'writer','written by',NULL),(1027718,771496,7,'writer','written by',NULL),(1027718,7140,8,'writer','characters',NULL),(1027718,465740,9,'producer','producer',NULL),(10278918,9012797,10,'actress',NULL,'[\"The Dag\"]'),(10278918,9342097,1,'actress',NULL,'[\"Kit Tanthalos\"]'),(10278918,5166444,2,'actress',NULL,'[\"Elora Danan\",\"Dove\"]'),(10278918,1727825,3,'actor',NULL,'[\"Graydon Hastur\"]'),(10278918,7210986,4,'actress',NULL,'[\"Jade Claymore\"]'),(10278918,440459,5,'writer','developed by',NULL),(10278918,149447,6,'actor',NULL,'[\"Thraxus Boorman\"]'),(10278918,1116,7,'actor',NULL,'[\"Willow Ufgood\"]'),(10278918,8065502,8,'actor',NULL,'[\"Airk Tanthalos\"]'),(10278918,6934058,9,'actor',NULL,'[\"The Scourge\"]'),(10279362,1545093,10,'producer','producer',NULL),(10279362,201,1,'actress',NULL,'[\"Frances Price\"]'),(10279362,2348627,2,'actor',NULL,'[\"Malcolm Price\"]'),(10279362,504832,3,'actor',NULL,'[\"Franklin Price\"]'),(10279362,536723,4,'actress',NULL,'[\"Mme Reynard\"]'),(10279362,414337,5,'director',NULL,NULL),(10279362,3981109,6,'writer','written by',NULL),(10279362,1121230,7,'producer','producer',NULL),(10279362,321554,8,'producer','producer',NULL),(10279362,352980,9,'producer','executive in charge of production',NULL),(1028528,431665,10,'production_designer',NULL,NULL),(1028528,621,1,'actor',NULL,'[\"Stuntman Mike\"]'),(1028528,1057928,2,'actress',NULL,'[\"Zoë Bell\"]'),(1028528,206257,3,'actress',NULL,'[\"Abernathy\"]'),(1028528,1089685,4,'actress',NULL,'[\"Arlene\"]'),(1028528,233,5,'director',NULL,NULL),(1028528,42882,6,'producer','producer',NULL),(1028528,1675,7,'producer','producer',NULL),(1028528,1460251,8,'producer','producer',NULL),(1028528,579673,9,'editor',NULL,NULL),(1028532,434222,10,'composer',NULL,NULL),(1028532,152,1,'actor',NULL,'[\"Parker Wilson\"]'),(1028532,260,2,'actress',NULL,'[\"Cate Wilson\"]'),(1028532,846480,3,'actor',NULL,'[\"Ken\"]'),(1028532,2105255,4,'actress',NULL,'[\"Andy\"]'),(1028532,2120,5,'director',NULL,NULL),(1028532,2124742,6,'writer','screenplay',NULL),(1028532,793881,7,'writer','motion picture \"Hachiko monogatari\"',NULL),(1028532,426440,8,'producer','producer',NULL),(1028532,2663731,9,'producer','producer',NULL),(1028576,322684,10,'composer',NULL,NULL),(1028576,178,1,'actress',NULL,'[\"Penny Chenery\"]'),(1028576,518,2,'actor',NULL,'[\"Lucien Laurin\"]'),(1028576,553269,3,'actress',NULL,'[\"Miss Ham\"]'),(1028576,1734700,4,'actor',NULL,'[\"Eddie Sweat\"]'),(1028576,908824,5,'director',NULL,NULL),(1028576,723692,6,'writer','written by',NULL),(1028576,618720,7,'writer','book \"Secretariat: The Making of a Champion\"',NULL),(1028576,161891,8,'producer','producer',NULL),(1028576,336668,9,'producer','producer',NULL),(10288566,418011,10,'editor',NULL,NULL),(10288566,586568,1,'actor',NULL,'[\"Martin\"]'),(10288566,488917,2,'actor',NULL,'[\"Tommy\"]'),(10288566,2099237,3,'actor',NULL,'[\"Nikolaj\"]'),(10288566,1046521,4,'actor',NULL,'[\"Peter\"]'),(10288566,899121,5,'director',NULL,NULL),(10288566,2105585,6,'writer','screenplay',NULL),(10288566,4880627,7,'producer','producer',NULL),(10288566,1011849,8,'producer','producer',NULL),(10288566,3163889,9,'cinematographer',NULL,NULL),(1029134,815610,10,'producer','producer',NULL),(1029134,1612,1,'actor',NULL,'[\"Morrie\"]'),(1029134,4936,2,'actor',NULL,'[\"Jay\"]'),(1029134,329481,3,'actress',NULL,'[\"Ida\"]'),(1029134,334179,4,'actress',NULL,'[\"Betty Tanager\"]'),(1029134,524108,5,'director',NULL,NULL),(1029134,1057737,6,'writer','written by',NULL),(1029134,248944,7,'producer','producer',NULL),(1029134,630633,8,'producer','producer',NULL),(1029134,1488027,9,'producer','producer',NULL),(1029234,596588,10,'cinematographer',NULL,NULL),(1029234,1662011,1,'actress',NULL,'[\"Anna\"]'),(1029234,1227864,2,'actress',NULL,'[\"Lucie\"]'),(1029234,126743,3,'actress',NULL,'[\"Mademoiselle\"]'),(1029234,869590,4,'actor',NULL,'[\"Le père\"]'),(1029234,1052791,5,'director',NULL,NULL),(1029234,334926,6,'producer','producer',NULL),(1029234,2744555,7,'composer',NULL,NULL),(1029234,2744613,8,'composer',NULL,NULL),(1029234,553097,9,'cinematographer',NULL,NULL),(10293406,792431,10,'producer','producer',NULL),(10293406,1212722,1,'actor',NULL,'[\"Phil Burbank\"]'),(10293406,379,2,'actress',NULL,'[\"Rose Gordon\"]'),(10293406,687146,3,'actor',NULL,'[\"George Burbank\"]'),(10293406,2240346,4,'actor',NULL,'[\"Peter Gordon\"]'),(10293406,1005,5,'director',NULL,NULL),(10293406,11320316,6,'writer','based on the novel by',NULL),(10293406,2096617,7,'producer','producer',NULL),(10293406,292024,8,'producer','producer',NULL),(10293406,782036,9,'producer','producer',NULL),(10298810,4454013,10,'writer','additional screenplay material by',NULL),(10298810,262635,1,'actor',NULL,'[\"Buzz Lightyear\"]'),(10298810,1551130,2,'actress',NULL,'[\"Izzy Hawthorne\"]'),(10298810,812307,3,'actor',NULL,'[\"SOX\",\"Old SOX\"]'),(10298810,169806,4,'actor',NULL,'[\"Mo Morrison\"]'),(10298810,533691,5,'director',NULL,NULL),(10298810,17690,6,'writer','story by',NULL),(10298810,3268751,7,'writer','story by',NULL),(10298810,10264498,8,'writer','story coordiantor',NULL),(10298810,4056,9,'writer','additional screenplay material by',NULL),(10298840,14269861,10,'production_designer','associate production designer',NULL),(10298840,350453,1,'actor',NULL,'[\"Searcher Clade\"]'),(10298840,7187850,2,'actor',NULL,'[\"Ethan Clade\"]'),(10298840,5517,3,'actress',NULL,'[\"Meridian Clade\"]'),(10298840,598,4,'actor',NULL,'[\"Jaeger Clade\"]'),(10298840,2320658,5,'director',NULL,NULL),(10298840,5945690,6,'director','co-director',NULL),(10298840,174807,7,'producer','producer',NULL),(10298840,2273444,8,'composer',NULL,NULL),(10298840,2204583,9,'editor',NULL,NULL),(10307724,430629,1,'actress',NULL,'[\"Fernande Grudet dite Madame Claude\"]'),(10307724,4469165,2,'actress',NULL,'[\"Sidonie\"]'),(10307724,954704,3,'actor',NULL,'[\"Jo Attia\"]'),(10307724,1731624,4,'actor',NULL,'[\"Serge\"]'),(10307724,894173,5,'director',NULL,NULL),(10307724,5117075,6,'producer','producer',NULL),(10307724,385936,7,'cinematographer',NULL,NULL),(10307724,1314100,8,'editor',NULL,NULL),(10307724,1132378,9,'production_designer',NULL,NULL),(10308528,4284066,1,'actress',NULL,NULL),(10308528,141418,2,'actress',NULL,'[\"Dona Graça\"]'),(10308528,1300620,3,'actor',NULL,'[\"Fiscal\"]'),(10308528,10996817,4,'actress',NULL,'[\"Helen\"]'),(10308528,10682431,5,'director',NULL,NULL),(10308528,10682430,6,'producer','executive producer',NULL),(10308528,3140226,7,'composer',NULL,NULL),(10308528,1884003,8,'cinematographer',NULL,NULL),(10308528,224927,9,'editor',NULL,NULL),(1032207,2675034,10,'composer',NULL,NULL),(1032207,1154541,1,'self',NULL,'[\"Self\"]'),(1032207,22741,2,'self',NULL,'[\"Self\"]'),(1032207,186,3,'self',NULL,'[\"Self\"]'),(1032207,538048,4,'actor',NULL,'[\"Phantom\"]'),(1032207,1130574,5,'director',NULL,NULL),(1032207,2657474,6,'producer','producer',NULL),(1032207,574283,7,'producer','producer',NULL),(1032207,2657919,8,'producer','producer',NULL),(1032207,2388529,9,'composer',NULL,NULL),(10324144,3284959,10,'cinematographer',NULL,NULL),(10324144,4731677,1,'actor',NULL,'[\"Ayan Ranjan\"]'),(10324144,621937,2,'actor',NULL,'[\"CBI Officer Panikar\"]'),(10324144,656644,3,'actor',NULL,'[\"Bhramadatt Singh\"]'),(10324144,1122912,4,'actor',NULL,'[\"Kisan Jatav\"]'),(10324144,1025280,5,'director',NULL,NULL),(10324144,3985391,6,'writer',NULL,NULL),(10324144,3203509,7,'composer',NULL,NULL),(10324144,5285131,8,'composer','music director',NULL),(10324144,10806370,9,'composer','music director',NULL),(1032755,2089328,10,'cinematographer','director of photography',NULL),(1032755,124930,1,'actor',NULL,'[\"One Two\"]'),(1032755,929489,2,'actor',NULL,'[\"Lenny Cole\"]'),(1032755,252961,3,'actor',NULL,'[\"Mumbles\"]'),(1032755,628601,4,'actress',NULL,'[\"Stella\"]'),(1032755,5363,5,'director',NULL,NULL),(1032755,164626,6,'producer','producer',NULL),(1032755,1206265,7,'producer','producer',NULL),(1032755,5428,8,'producer','producer',NULL),(1032755,1230138,9,'composer',NULL,NULL),(1032846,1671512,1,'actress',NULL,'[\"Otilia Mihartescu\"]'),(1032846,1693019,2,'actress',NULL,'[\"Gabita Dragut\"]'),(1032846,412096,3,'actor',NULL,'[\"Viorel Bebe\"]'),(1032846,2308578,4,'actor',NULL,'[\"Adi Radu\"]'),(1032846,612816,5,'director',NULL,NULL),(1032846,1412545,6,'producer','producer',NULL),(1032846,1274442,7,'editor',NULL,NULL),(1032846,2688233,8,'production_designer',NULL,NULL),(1032856,1979335,10,'producer','producer',NULL),(1032856,299924,1,'actor',NULL,'[\"Lieutenant-colonel Tawfiq Zacharya\"]'),(1032856,253813,2,'actress',NULL,'[\"Dina\"]'),(1032856,2759746,3,'actor',NULL,'[\"Haled\"]'),(1032856,622384,4,'actor',NULL,'[\"Simon\"]'),(1032856,464115,5,'director',NULL,NULL),(1032856,88173,6,'producer','producer',NULL),(1032856,1848104,7,'producer','producer',NULL),(1032856,2764493,8,'producer','producer',NULL),(1032856,711940,9,'producer','producer',NULL),(10332588,623979,10,'editor',NULL,NULL),(10332588,8451917,1,'actress',NULL,'[\"Pili\"]'),(10332588,6269125,2,'actor',NULL,'[\"Ioane\"]'),(10332588,7341118,3,'actress',NULL,'[\"Hana\"]'),(10332588,6236783,4,'actor',NULL,'[\"Casper\"]'),(10332588,920950,5,'director',NULL,NULL),(10332588,6565274,6,'writer','written by',NULL),(10332588,117290,7,'producer','producer',NULL),(10332588,2468967,8,'composer',NULL,NULL),(10332588,275475,9,'cinematographer',NULL,NULL),(10334456,2861127,10,'composer',NULL,NULL),(10334456,1408415,1,'archive_footage',NULL,'[\"Themselves\"]'),(10334456,5371,2,'self',NULL,'[\"Self\"]'),(10334456,819803,3,'self',NULL,'[\"Self\"]'),(10334456,200313,4,'archive_footage',NULL,'[\"Self - Bass and Vocals, The Band\"]'),(10334456,4173215,5,'director',NULL,NULL),(10334456,4636824,6,'producer','producer',NULL),(10334456,612802,7,'producer','co-executive producer',NULL),(10334456,659488,8,'producer','co-executive producer',NULL),(10334456,4475742,9,'producer','co-executive producer',NULL),(1033575,852591,10,'producer','producer',NULL),(1033575,123,1,'actor',NULL,'[\"Matt King\"]'),(1033575,940362,2,'actress',NULL,'[\"Alexandra King\"]'),(1033575,3837786,3,'actress',NULL,'[\"Scottie King\"]'),(1033575,1975228,4,'actor',NULL,'[\"Sid\"]'),(1033575,668247,5,'director',NULL,NULL),(1033575,269542,6,'writer','screenplay',NULL),(1033575,711110,7,'writer','screenplay',NULL),(1033575,2655611,8,'writer','novel',NULL),(1033575,121724,9,'producer','producer',NULL),(1033643,65100,10,'composer',NULL,NULL),(1033643,139,1,'actress',NULL,'[\"Joy McNally\"]'),(1033643,5110,2,'actor',NULL,'[\"Jack Fuller\"]'),(1033643,1117791,3,'actor',NULL,'[\"Hater\"]'),(1033643,1128572,4,'actress',NULL,'[\"Tipper\"]'),(1033643,891114,5,'director',NULL,NULL),(1033643,1401416,6,'writer','written by',NULL),(1033643,13583,7,'producer','producer',NULL),(1033643,506613,8,'producer','producer',NULL),(1033643,588612,9,'producer','producer',NULL),(1034032,2999,10,'producer','producer',NULL),(1034032,124930,1,'actor',NULL,'[\"Kable\"]'),(1034032,355910,2,'actor',NULL,'[\"Ken Castle\"]'),(1034032,524839,3,'actor',NULL,'[\"Humanz Brother\"]'),(1034032,5520,4,'actress',NULL,'[\"Angie\"]'),(1034032,4410,5,'director',NULL,NULL),(1034032,962729,6,'director',NULL,NULL),(1034032,524342,7,'producer','producer',NULL),(1034032,742347,8,'producer','producer',NULL),(1034032,1270585,9,'producer','producer',NULL),(10341034,1963733,10,'producer','producer',NULL),(10341034,2582755,1,'actor',NULL,'[\"Mathieu Vasseur\"]'),(10341034,3650704,2,'actress',NULL,'[\"Noémie Vasseur\"]'),(10341034,244707,3,'actor',NULL,'[\"Philippe Rénier\"]'),(10341034,3540169,4,'actor',NULL,'[\"Xavier Renaud\"]'),(10341034,1571412,5,'director',NULL,NULL),(10341034,1447395,6,'writer','screenplay',NULL),(10341034,5747900,7,'writer','collaboration',NULL),(10341034,3709364,8,'writer','screenplay',NULL),(10341034,1911767,9,'producer','producer',NULL),(10342730,167197,10,'composer',NULL,NULL),(10342730,1674,1,'actor',NULL,'[\"Detective Zeke Banks\"]'),(10342730,168,2,'actor',NULL,'[\"Marcus Banks\"]'),(10342730,1540404,3,'actor',NULL,'[\"Detective William Schenk\"]'),(10342730,629653,4,'actress',NULL,'[\"Captain Angie Garza\"]'),(10342730,1135423,5,'director',NULL,NULL),(10342730,831457,6,'writer','written by',NULL),(10342730,1539257,7,'writer','written by',NULL),(10342730,121117,8,'producer','producer',NULL),(10342730,467977,9,'producer','producer',NULL),(1034302,785012,10,'producer','producer',NULL),(1034302,175916,1,'actor',NULL,'[\"Robert Forrester\"]'),(1034302,5466,2,'actress',NULL,'[\"Jenny Thierolf\"]'),(1034302,699262,3,'actor',NULL,'[\"Mr. Jaffe\"]'),(1034302,533384,4,'actor',NULL,'[\"Lavigne Client\"]'),(1034302,861899,5,'director',NULL,NULL),(1034302,383604,6,'writer','novel',NULL),(1034302,166436,7,'producer','producer',NULL),(1034302,344612,8,'producer','producer',NULL),(1034302,442786,9,'producer','producer',NULL),(1034303,785381,10,'cinematographer','director of photography',NULL),(1034303,185819,1,'actor',NULL,'[\"Tuvia Bielski\"]'),(1034303,630,2,'actor',NULL,'[\"Zus Bielski\"]'),(1034303,68260,3,'actor',NULL,'[\"Asael Bielski\"]'),(1034303,1111968,4,'actress',NULL,'[\"Lilka Ticktin\"]'),(1034303,1880,5,'director',NULL,NULL),(1034303,296243,6,'writer','screenplay',NULL),(1034303,2739958,7,'writer','book \"Defiance: the Bielski Partisans\"',NULL),(1034303,115764,8,'producer','producer',NULL),(1034303,6133,9,'composer',NULL,NULL),(1034314,442381,10,'producer','producer',NULL),(1034314,1087430,1,'actress',NULL,'[\"Renate Richter\"]'),(1034314,456130,2,'actor',NULL,'[\"James Washington\"]'),(1034314,653248,3,'actor',NULL,'[\"Klaus Adler\"]'),(1034314,1424,4,'actor',NULL,'[\"Wolfgang Kortzfleisch\"]'),(1034314,1993322,5,'director',NULL,NULL),(1034314,1990490,6,'writer','original concept',NULL),(1034314,1242274,7,'writer','based on a story by',NULL),(1034314,435701,8,'writer','screenplay by',NULL),(1034314,198757,9,'producer','producer',NULL),(1034325,389072,10,'editor',NULL,NULL),(1034325,1102577,1,'actress',NULL,'[\"Phoebe Lichten\"]'),(1034325,165101,2,'actress',NULL,'[\"Miss Dodger\"]'),(1034325,5031,3,'actress',NULL,'[\"Hillary Lichten\"]'),(1034325,597,4,'actor',NULL,'[\"Peter Lichten\"]'),(1034325,1400426,5,'director',NULL,NULL),(1034325,2657554,6,'producer','producer',NULL),(1034325,1987578,7,'producer','producer',NULL),(1034325,65100,8,'composer',NULL,NULL),(1034325,119785,9,'cinematographer',NULL,NULL),(1034385,640646,10,'producer','producer',NULL),(1034385,829032,1,'actor',NULL,'[\"Gruner\"]'),(1034385,2845631,2,'actor',NULL,'[\"Friend\"]'),(1034385,3467663,3,'actress',NULL,'[\"Aneris\"]'),(1034385,6455852,4,'actor',NULL,'[\"Senegalese\"]'),(1034385,1164755,5,'director',NULL,NULL),(1034385,647449,6,'writer','screenplay',NULL),(1034385,1142688,7,'writer','screenplay',NULL),(1034385,1985063,8,'writer','novel',NULL),(1034385,16370,9,'producer','producer',NULL),(1034389,230045,10,'cinematographer',NULL,NULL),(1034389,1475594,1,'actor',NULL,'[\"Marcus\"]'),(1034389,68260,2,'actor',NULL,'[\"Esca\"]'),(1034389,661,3,'actor',NULL,'[\"Uncle Aquila\"]'),(1034389,351495,4,'actor',NULL,'[\"Cohort Centurion\"]'),(1034389,531817,5,'director',NULL,NULL),(1034389,110591,6,'writer','screenplay',NULL),(1034389,839996,7,'writer','novel \"The Eagle of the Ninth\"',NULL),(1034389,448953,8,'producer','producer',NULL),(1034389,651414,9,'composer',NULL,NULL),(1034415,2361520,10,'producer','producer',NULL),(1034415,1631269,1,'actress',NULL,'[\"Patricia\"]'),(1034415,842770,2,'actress',NULL,'[\"Dr. Klemperer\",\"Madame Blanc\",\"Helena Markos\"]'),(1034415,382566,3,'actress',NULL,'[\"Frau Sesame\"]'),(1034415,1728249,4,'actress',NULL,'[\"Susie\'s Mother\",\"Death\"]'),(1034415,345174,5,'director',NULL,NULL),(1034415,783,6,'writer','characters',NULL),(1034415,630453,7,'writer','characters',NULL),(1034415,1738734,8,'writer','screenplay',NULL),(1034415,1329482,9,'producer','producer',NULL),(10344522,816,10,'producer','producer',NULL),(10344522,5109,1,'actress',NULL,'[\"Molly\"]'),(10344522,303013,2,'actress',NULL,'[\"Ashley\"]'),(10344522,335,3,'actress',NULL,'[\"Deb\"]'),(10344522,740535,4,'actor',NULL,'[\"Chris\"]'),(10344522,6554,5,'director',NULL,NULL),(10344522,10133817,6,'writer','screenplay by',NULL),(10344522,12592912,7,'writer','inspired by',NULL),(10344522,12592913,8,'writer','inspired by',NULL),(10344522,43258,9,'producer','producer',NULL),(10355058,940146,10,'cinematographer',NULL,NULL),(10355058,6236879,1,'actor',NULL,'[\"Bernie\"]'),(10355058,424035,2,'actor',NULL,'[\"Agent 001\",\"2\"]'),(10355058,1591666,3,'actor',NULL,'[\"Wing Nut\"]'),(10355058,4348660,4,'actress',NULL,'[\"Lens Cap\"]'),(10355058,225621,5,'director',NULL,NULL),(10355058,2140444,6,'writer','written by',NULL),(10355058,2069778,7,'producer','producer',NULL),(10355058,1580772,8,'producer','producer',NULL),(10355058,1720459,9,'composer',NULL,NULL),(1035736,136260,10,'producer','producer',NULL),(1035736,851582,1,'actress',NULL,'[\"Gabrielle Chanel\"]'),(1035736,688143,2,'actor',NULL,'[\"Étienne Balsan\"]'),(1035736,5273,3,'actor',NULL,'[\"Boy Capel\"]'),(1035736,2100,4,'actress',NULL,'[\"Adrienne Chanel\"]'),(1035736,284774,5,'director',NULL,NULL),(1035736,1212643,6,'writer','book',NULL),(1035736,1597664,7,'writer','writer',NULL),(1035736,35993,8,'producer','producer',NULL),(1035736,71379,9,'producer','producer',NULL),(10365998,2488761,10,'producer','producer',NULL),(10365998,2907,1,'actor',NULL,'[\"James Foster\"]'),(10365998,5301405,2,'actress',NULL,'[\"Gabi Bauer\"]'),(10365998,1671147,3,'actress',NULL,'[\"Em Foster\"]'),(10365998,91841,4,'actress',NULL,'[\"Anna the Cleaning Woman\"]'),(10365998,188722,5,'director',NULL,NULL),(10365998,3284074,6,'producer','producer',NULL),(10365998,1080440,7,'producer','producer',NULL),(10365998,8720982,8,'producer','producer',NULL),(10365998,3086207,9,'producer','producer',NULL),(10366460,1818350,10,'producer','producer',NULL),(10366460,4454223,1,'actress',NULL,'[\"Ruby Rossi\"]'),(10366460,559144,2,'actress',NULL,'[\"Jackie Rossi\"]'),(10366460,1319274,3,'actor',NULL,'[\"Frank Rossi\"]'),(10366460,3310289,4,'actor',NULL,'[\"Leo Rossi\"]'),(10366460,1571761,5,'director',NULL,NULL),(10366460,2605079,6,'writer','motion picture \"La Famille Belier\"',NULL),(10366460,141133,7,'writer','motion picture \"La Famille Belier\"',NULL),(10366460,489309,8,'writer','motion picture \"La Famille Belier\"',NULL),(10366460,81179,9,'writer','motion picture \"La Famille Belier\"',NULL),(10370710,26187,10,'cinematographer',NULL,NULL),(10370710,4561559,1,'actress',NULL,'[\"Julie\"]'),(10370710,509264,2,'actor',NULL,'[\"Aksel\"]'),(10370710,5122260,3,'actor',NULL,'[\"Eivind\"]'),(10370710,1282571,4,'actor',NULL,'[\"Ole Magnus\"]'),(10370710,1258686,5,'director',NULL,NULL),(10370710,1258777,6,'writer','written by',NULL),(10370710,5269292,7,'producer','producer',NULL),(10370710,733435,8,'producer','producer',NULL),(10370710,1492711,9,'composer',NULL,NULL),(1037146,158872,10,'cinematographer','director of photography',NULL),(1037146,955782,1,'actress',NULL,'[\"Ou Fanfan\"]'),(1037146,1251565,2,'actress',NULL,'[\"Tie Ling\"]'),(1037146,2514879,3,'actress',NULL,'[\"Tang Lu\"]'),(1037146,298691,4,'actor',NULL,'[\"Xiaogang\"]'),(1037146,7139,5,'director',NULL,NULL),(1037146,1030706,6,'writer','screenplay',NULL),(1037146,399003,7,'producer','producer',NULL),(1037146,2654663,8,'producer','producer',NULL),(1037146,793016,9,'producer','producer',NULL),(10373934,6585697,10,'production_designer',NULL,NULL),(10373934,219208,1,'actor',NULL,'[\"Billy Hadden\"]'),(10373934,817353,2,'actor',NULL,'[\"Nick Youngblood\"]'),(10373934,698913,3,'actor',NULL,'[\"Sam Whitefeather\"]'),(10373934,1559338,4,'actor',NULL,'[\"Ty Ellsworth\"]'),(10373934,10712924,5,'director',NULL,NULL),(10373934,1457500,6,'producer','producer',NULL),(10373934,9352309,7,'composer',NULL,NULL),(10373934,1519984,8,'cinematographer',NULL,NULL),(10373934,3359507,9,'editor',NULL,NULL),(1037705,5428,10,'producer','producer',NULL),(1037705,243,1,'actor',NULL,'[\"Eli\"]'),(1037705,5109,2,'actress',NULL,'[\"Solara\"]'),(1037705,829032,3,'actor',NULL,'[\"Redridge\"]'),(1037705,198,4,'actor',NULL,'[\"Carnegie\"]'),(1037705,400436,5,'director',NULL,NULL),(1037705,400441,6,'director',NULL,NULL),(1037705,1729428,7,'writer','written by',NULL),(1037705,424663,8,'producer','producer',NULL),(1037705,467255,9,'producer','producer',NULL),(1038686,511979,10,'cinematographer','director of photography',NULL),(1038686,79273,1,'actor',NULL,'[\"Michael\"]'),(1038686,598,2,'actor',NULL,'[\"Bob Hanson\"]'),(1038686,1165,3,'actor',NULL,'[\"Percy Walker\"]'),(1038686,85407,4,'actor',NULL,'[\"Jeep Hanson\"]'),(1038686,829820,5,'director',NULL,NULL),(1038686,76412,6,'writer','written by',NULL),(1038686,484123,7,'producer','producer',NULL),(1038686,1490949,8,'producer','producer',NULL),(1038686,2227,9,'composer',NULL,NULL),(1038988,1400397,10,'production_designer',NULL,NULL),(1038988,892299,1,'actress',NULL,'[\"Ángela\"]'),(1038988,970337,2,'actor',NULL,'[\"Manu\"]'),(1038988,1970851,3,'actor',NULL,'[\"Policía joven\"]'),(1038988,744485,4,'actor',NULL,'[\"Pablo\"]'),(1038988,49371,5,'director',NULL,NULL),(1038988,687042,6,'director',NULL,NULL),(1038988,1084937,7,'writer','screenplay',NULL),(1038988,273327,8,'producer','executive producer',NULL),(1038988,1051468,9,'editor',NULL,NULL),(1039960,893206,10,'composer',NULL,NULL),(1039960,1896873,1,'actor',NULL,'[\"Raimundo Nonato\",\"Rosmarino\"]'),(1039960,2341206,2,'actress',NULL,'[\"Íria\"]'),(1039960,1229757,3,'actor',NULL,'[\"Bujiú\"]'),(1039960,108455,4,'actor',NULL,'[\"Giovanni\"]'),(1039960,2293201,5,'director',NULL,NULL),(1039960,233112,6,'writer','screenplay collaborator',NULL),(1039960,2673018,7,'writer','screenplay',NULL),(1039960,2290090,8,'writer','screenplay collaborator',NULL),(1039960,1829742,9,'producer','producer',NULL),(10403420,8367841,1,'actress',NULL,'[\"Sienna\"]'),(10403420,7476686,2,'actor',NULL,'[\"Art the Clown\"]'),(10403420,9869437,3,'actor',NULL,'[\"Jonathan\"]'),(10403420,6172240,4,'actress',NULL,'[\"Barbara\"]'),(10403420,2093171,5,'director',NULL,NULL),(10403420,5910626,6,'producer','producer',NULL),(10403420,4626454,7,'composer',NULL,NULL),(10403420,4058030,8,'cinematographer',NULL,NULL),(1041829,822975,10,'cinematographer','director of photography',NULL),(1041829,113,1,'actress',NULL,'[\"Margaret Tate\"]'),(1041829,5351,2,'actor',NULL,'[\"Andrew Paxton\"]'),(1041829,5460,3,'actress',NULL,'[\"Grace Paxton\"]'),(1041829,5266,4,'actor',NULL,'[\"Joe Paxton\"]'),(1041829,281945,5,'director',NULL,NULL),(1041829,1095804,6,'writer','written by',NULL),(1041829,387674,7,'producer','producer',NULL),(1041829,509414,8,'producer','producer',NULL),(1041829,956374,9,'composer',NULL,NULL),(10426916,4840194,1,'actor',NULL,'[\"Jean-Pascal Zadi\"]'),(10426916,2984738,2,'actress',NULL,'[\"Camille\"]'),(10426916,5294269,3,'actor',NULL,'[\"Fary\"]'),(10426916,11741344,4,'actor',NULL,'[\"Tonton Marcel\"]'),(10426916,2986419,5,'director',NULL,NULL),(10426916,7519912,6,'writer',NULL,NULL),(10426916,241489,7,'producer','producer',NULL),(10426916,117600,8,'cinematographer',NULL,NULL),(10426916,200788,9,'editor',NULL,NULL),(1043726,503600,10,'producer','producer',NULL),(1043726,1553725,1,'actor',NULL,'[\"Hercules\"]'),(1043726,4719349,2,'actress',NULL,'[\"Hebe\"]'),(1043726,12078,3,'actor',NULL,'[\"King Amphitryon\"]'),(1043726,1861467,4,'actress',NULL,'[\"Queen Alcmene\"]'),(1043726,1317,5,'director',NULL,NULL),(1043726,393517,6,'writer','written by',NULL),(1043726,316417,7,'writer','written by',NULL),(1043726,1048866,8,'writer',NULL,NULL),(1043726,203246,9,'producer','producer',NULL),(1043842,2674901,10,'producer','producer',NULL),(1043842,461981,1,'actress',NULL,'[\"Deunan Knute\"]'),(1043842,945290,2,'actor',NULL,'[\"Brialeos Hecatombcales\"]'),(1043842,457213,3,'actor',NULL,'[\"Tereus\"]'),(1043842,476679,4,'actor',NULL,'[\"Aeacus\"]'),(1043842,32925,5,'director',NULL,NULL),(1043842,794385,6,'writer','characters',NULL),(1043842,1887932,7,'writer','screenplay',NULL),(1043842,1219582,8,'writer',NULL,NULL),(1043842,151835,9,'producer','producer',NULL),(10441958,1055564,10,'composer',NULL,NULL),(10441958,300,1,'actress',NULL,'[\"Paulette Van der Beck\"]'),(10441958,603446,2,'actress',NULL,'[\"Gilberte Van der Beck\"]'),(10441958,527852,3,'actress',NULL,'[\"Marie-Thérèse\"]'),(10441958,46347,4,'actor',NULL,'[\"André Grunvald\"]'),(10441958,699095,5,'director',NULL,NULL),(10441958,1760648,6,'writer',NULL,NULL),(10441958,370690,7,'producer','producer',NULL),(10441958,470118,8,'producer','producer',NULL),(10441958,684004,9,'producer','producer',NULL),(1045658,384,10,'composer',NULL,NULL),(1045658,177896,1,'actor',NULL,'[\"Pat\"]'),(1045658,2225369,2,'actress',NULL,'[\"Tiffany\"]'),(1045658,134,3,'actor',NULL,'[\"Pat Sr.\"]'),(1045658,915865,4,'actress',NULL,'[\"Dolores Solitano\"]'),(1045658,751102,5,'director',NULL,NULL),(1045658,2683048,6,'writer','novel \"The Silver Linings Playbook\"',NULL),(1045658,169260,7,'producer','producer',NULL),(1045658,317642,8,'producer','producer',NULL),(1045658,330335,9,'producer','producer',NULL),(1045670,863217,10,'production_designer',NULL,NULL),(1045670,1020089,1,'actress',NULL,'[\"Poppy\"]'),(1045670,2686747,2,'actress',NULL,'[\"Zoe\"]'),(1045670,1717183,3,'actor',NULL,'[\"Tim\"]'),(1045670,1259002,4,'actor',NULL,'[\"Bookshop Assistant\"]'),(1045670,5139,5,'director',NULL,NULL),(1045670,151925,6,'producer','producer',NULL),(1045670,947665,7,'composer',NULL,NULL),(1045670,5836,8,'cinematographer',NULL,NULL),(1045670,164083,9,'editor',NULL,NULL),(10457128,1158288,10,'cinematographer',NULL,NULL),(10457128,9156565,1,'actor',NULL,'[\"Alexis Robin\"]'),(10457128,8308968,2,'actor',NULL,'[\"David Gorman\"]'),(10457128,10810831,3,'actress',NULL,'[\"Kate\"]'),(10457128,116254,4,'actress',NULL,'[\"Madame Gorman\"]'),(10457128,654830,5,'director',NULL,NULL),(10457128,1525791,6,'writer','loosely adapted from \"Dance on My Grave\" by',NULL),(10457128,22969,7,'producer','producer',NULL),(10457128,22971,8,'producer','producer',NULL),(10457128,242155,9,'composer',NULL,NULL),(1045772,2943572,10,'composer',NULL,NULL),(1045772,120,1,'actor',NULL,'[\"Steven Russell\"]'),(1045772,191,2,'actor',NULL,'[\"Phillip Morris\"]'),(1045772,5182,3,'actress',NULL,'[\"Debbie\"]'),(1045772,763928,4,'actor',NULL,'[\"Jimmy\"]'),(1045772,275629,5,'director',NULL,NULL),(1045772,720135,6,'director',NULL,NULL),(1045772,2679516,7,'writer','book \"I Love You Phillip Morris: A True Story of Life, Love, and Prison Breaks\"',NULL),(1045772,493662,8,'producer','producer',NULL),(1045772,788768,9,'producer','producer',NULL),(1045778,788640,10,'composer',NULL,NULL),(1045778,85312,1,'actor',NULL,'[\"Zed\"]'),(1045778,148418,2,'actor',NULL,'[\"Oh\"]'),(1045778,1312575,3,'actress',NULL,'[\"Princess Inanna\"]'),(1045778,1624,4,'actor',NULL,'[\"High Priest\"]'),(1045778,601,5,'director',NULL,NULL),(1045778,1969144,6,'writer','screenplay',NULL),(1045778,1072409,7,'writer','screenplay',NULL),(1045778,31976,8,'producer','producer',NULL),(1045778,870106,9,'producer','producer',NULL),(1046173,225146,10,'producer','producer',NULL),(1046173,598,1,'actor',NULL,'[\"General Hawk\"]'),(1046173,1475594,2,'actor',NULL,'[\"Duke\"]'),(1046173,5541,3,'actor',NULL,'[\"Ripcord\"]'),(1046173,15382,4,'actor',NULL,'[\"Heavy Duty\"]'),(1046173,814085,5,'director',NULL,NULL),(1046173,64181,6,'writer','screenplay',NULL),(1046173,254213,7,'writer','screenplay',NULL),(1046173,1749087,8,'writer','screenplay',NULL),(1046173,1290582,9,'writer','story',NULL),(1046947,758128,10,'editor',NULL,NULL),(1046947,163,1,'actor',NULL,'[\"Harvey Shine\"]'),(1046947,668,2,'actress',NULL,'[\"Kate Walker\"]'),(1046947,834,3,'actress',NULL,'[\"Jean\"]'),(1046947,40586,4,'actress',NULL,'[\"Maggie\"]'),(1046947,394199,5,'director',NULL,NULL),(1046947,673258,6,'producer','producer',NULL),(1046947,882270,7,'producer','producer',NULL),(1046947,385467,8,'composer',NULL,NULL),(1046947,207532,9,'cinematographer','director of photography',NULL),(1046997,508732,10,'cinematographer','director of photography',NULL),(1046997,1035682,1,'actor',NULL,'[\"2nd Staff Sergeant Aubrey Stamps\"]'),(1046997,1013003,2,'actor',NULL,'[\"Sergeant Bishop Cummings\"]'),(1046997,22306,3,'actor',NULL,'[\"Corporal Hector Negron\"]'),(1046997,589077,4,'actor',NULL,'[\"Private First Class Sam Train\"]'),(1046997,490,5,'director',NULL,NULL),(1046997,2678286,6,'writer','screenplay',NULL),(1046997,162085,7,'producer','producer',NULL),(1046997,615762,8,'producer','producer',NULL),(1046997,5966,9,'composer',NULL,NULL),(1047540,3299,10,'composer',NULL,NULL),(1047540,345,1,'actor',NULL,'[\"Artie Decker\"]'),(1047540,541,2,'actress',NULL,'[\"Diane Decker\"]'),(1047540,673,3,'actress',NULL,'[\"Alice Simmons\"]'),(1047540,779866,4,'actor',NULL,'[\"Phil Simmons\"]'),(1047540,275698,5,'director',NULL,NULL),(1047540,11639,6,'writer','written by',NULL),(1047540,843467,7,'writer','written by',NULL),(1047540,1858656,8,'producer','producer',NULL),(1047540,1249995,9,'producer','producer',NULL),(1048171,116193,10,'cinematographer',NULL,NULL),(1048171,603446,1,'actress',NULL,'[\"Séraphine Louis, dite Séraphine de Senlis\"]'),(1048171,876300,2,'actor',NULL,'[\"Wilhelm Uhde\"]'),(1048171,71501,3,'actress',NULL,'[\"Anne-Marie Uhde\"]'),(1048171,594885,4,'actress',NULL,'[\"Mme Duphot\"]'),(1048171,699095,5,'director',NULL,NULL),(1048171,1290786,6,'writer','written by',NULL),(1048171,694709,7,'producer','producer',NULL),(1048171,755387,8,'producer','producer',NULL),(1048171,301704,9,'composer',NULL,NULL),(1048174,2348067,10,'production_designer',NULL,NULL),(1048174,712908,1,'actress',NULL,'[\"Miriam\"]'),(1048174,792888,2,'actress',NULL,'[\"Amina Harjan\"]'),(1048174,196375,3,'actor',NULL,'[\"Omar\"]'),(1048174,222138,4,'actress',NULL,'[\"Rehmat\"]'),(1048174,2328765,5,'director',NULL,NULL),(1048174,2331643,6,'producer','producer',NULL),(1048174,85685,7,'composer',NULL,NULL),(1048174,236065,8,'cinematographer',NULL,NULL),(1048174,552150,9,'editor',NULL,NULL),(10483044,3111864,10,'composer',NULL,NULL),(10483044,1344302,1,'actress',NULL,'[\"Missy\"]'),(10483044,2642787,2,'actress',NULL,'[\"Adult Jean\"]'),(10483044,8051777,3,'actress',NULL,'[\"Adult Makareta\"]'),(10483044,1959207,4,'actor',NULL,'[\"Adult Bobby\"]'),(10483044,1189390,5,'director',NULL,NULL),(10483044,1065342,6,'director',NULL,NULL),(10483044,12385644,7,'writer','based on the novel by',NULL),(10483044,1673169,8,'producer','producer',NULL),(10483044,2699931,9,'producer','producer',NULL),(1049402,1980,10,'composer',NULL,NULL),(1049402,290556,1,'actor',NULL,'[\"Allen Ginsberg\"]'),(1049402,745403,2,'actor',NULL,'[\"Jack Kerouac\"]'),(1049402,2062720,3,'actor',NULL,'[\"Neal Cassady\"]'),(1049402,3117836,4,'actor',NULL,'[\"Peter Orlovsky\"]'),(1049402,258531,5,'director',NULL,NULL),(1049402,295243,6,'director',NULL,NULL),(1049402,320091,7,'writer','poem',NULL),(1049402,3119353,8,'producer','producer',NULL),(1049402,907622,9,'producer','producer',NULL),(1049413,634530,10,'editor','film editor',NULL),(1049413,799,1,'actor',NULL,'[\"Carl Fredricksen\"]'),(1049413,2973712,2,'actor',NULL,'[\"Russell\"]'),(1049413,1652,3,'actor',NULL,'[\"Construction Foreman Tom\"]'),(1049413,1626,4,'actor',NULL,'[\"Charles Muntz\"]'),(1049413,230032,5,'director',NULL,NULL),(1049413,677037,6,'director','co-director',NULL),(1049413,565336,7,'writer','story by',NULL),(1049413,729304,8,'producer','producer',NULL),(1049413,315974,9,'composer',NULL,NULL),(1049948,306204,10,'editor',NULL,NULL),(1049948,209801,1,'actress',NULL,'[\"Eva Gallardo\"]'),(1049948,102751,2,'actor',NULL,'[\"Alejandro Mateos\"]'),(1049948,953197,3,'actress',NULL,'[\"Francisca\"]'),(1049948,493521,4,'actress',NULL,'[\"Ximena\"]'),(1049948,411517,5,'director',NULL,NULL),(1049948,1435075,6,'writer','story',NULL),(1049948,737829,7,'producer','producer',NULL),(1049948,1877,8,'composer',NULL,NULL),(1049948,1198832,9,'cinematographer',NULL,NULL),(1050001,1232902,10,'cinematographer',NULL,NULL),(1050001,839730,1,'actress',NULL,'[\"Stacey\"]'),(1050001,410171,2,'actor',NULL,'[\"Levi\"]'),(1050001,1832674,3,'actor',NULL,'[\"Caleb\"]'),(1050001,924261,4,'actor',NULL,'[\"Jeremiah\"]'),(1050001,26924,5,'director',NULL,NULL),(1050001,1002807,6,'writer','writer',NULL),(1050001,2095603,7,'producer','producer',NULL),(1050001,1636493,8,'producer','line producer',NULL),(1050001,1339835,9,'composer',NULL,NULL),(1050002,2067071,10,'composer',NULL,NULL),(1050002,1981245,1,'actor',NULL,'[\"Duncan\"]'),(1050002,365140,2,'actress',NULL,'[\"Gemma\"]'),(1050002,1433549,3,'actress',NULL,'[\"Wendy\"]'),(1050002,144039,4,'actress',NULL,'[\"Rhona\"]'),(1050002,447312,5,'director',NULL,NULL),(1050002,1066940,6,'writer','novel',NULL),(1050002,445471,7,'producer','producer',NULL),(1050002,683653,8,'producer','producer',NULL),(1050002,932213,9,'producer','producer',NULL),(1050160,1786009,10,'cinematographer','director of photography',NULL),(1050160,2780824,1,'actress',NULL,'[\"Ami Hyuga\"]'),(1050160,1995372,2,'actress',NULL,'[\"Miki\"]'),(1050160,2924029,3,'actor',NULL,'[\"Sho Kimura\"]'),(1050160,2416221,4,'actor',NULL,'[\"Ryuji Kimura\"]'),(1050160,1175724,5,'director',NULL,NULL),(1050160,157142,6,'producer','producer',NULL),(1050160,1987409,7,'producer','producer',NULL),(1050160,2931364,8,'producer','producer',NULL),(1050160,2406901,9,'composer',NULL,NULL),(10514222,937714,10,'producer','producer',NULL),(10514222,205626,1,'actress',NULL,'[\"Ma Rainey\"]'),(10514222,1569276,2,'actor',NULL,'[\"Levee\"]'),(10514222,877270,3,'actor',NULL,'[\"Toledo\"]'),(10514222,231458,4,'actor',NULL,'[\"Cutler\"]'),(10514222,938045,5,'director',NULL,NULL),(10514222,763650,6,'writer','screenplay by',NULL),(10514222,933025,7,'writer','based on the play written by',NULL),(10514222,85542,8,'producer','producer',NULL),(10514222,243,9,'producer','producer',NULL),(10515852,122411,10,'writer','story',NULL),(10515852,2642131,1,'actor',NULL,'[\"Steven Universe\"]'),(10515852,2007163,2,'actress',NULL,'[\"Amethyst\"]'),(10515852,1678063,3,'actress',NULL,'[\"Garnet\"]'),(10515852,536281,4,'actress',NULL,'[\"Pearl\"]'),(10515852,3566987,5,'director',NULL,NULL),(10515852,5124810,6,'director','co-director',NULL),(10515852,3161792,7,'director','co-director',NULL),(10515852,1866268,8,'writer','story by',NULL),(10515852,6666670,9,'writer','written by',NULL),(1051904,287149,10,'producer','producer',NULL),(1051904,85312,1,'actor',NULL,'[\"Stine\",\"voice of Slappy\"]'),(1051904,1910255,2,'actor',NULL,'[\"Zach\"]'),(1051904,3843467,3,'actress',NULL,'[\"Hannah\"]'),(1051904,2619114,4,'actor',NULL,'[\"Champ\"]'),(1051904,1224299,5,'director',NULL,NULL),(1051904,501359,6,'writer','screenplay by',NULL),(1051904,18735,7,'writer','story by',NULL),(1051904,438989,8,'writer','story by',NULL),(1051904,830419,9,'writer','based on the \"Goosebumps\" books written by',NULL),(1051906,2642924,10,'cinematographer','director of photography',NULL),(1051906,5253,1,'actress',NULL,'[\"Cecilia Kass\"]'),(1051906,2719825,2,'actor',NULL,'[\"Adrian Griffin\"]'),(1051906,2976830,3,'actress',NULL,'[\"Emily Kass\"]'),(1051906,388038,4,'actor',NULL,'[\"James Lanier\"]'),(1051906,1191481,5,'director',NULL,NULL),(1051906,920229,6,'writer','novel',NULL),(1051906,89658,7,'producer','producer',NULL),(1051906,238879,8,'producer','producer',NULL),(1051906,1818744,9,'composer',NULL,NULL),(1052040,817070,10,'composer',NULL,NULL),(1052040,5442,1,'actress',NULL,'[\"Melissa\"]'),(1052040,150862,2,'actor',NULL,'[\"Ping\"]'),(1052040,1977583,3,'actor',NULL,'[\"Yul\"]'),(1052040,844896,4,'director',NULL,NULL),(1052040,1912178,5,'writer','story',NULL),(1052040,174060,6,'producer','producer',NULL),(1052040,184770,7,'producer','producer',NULL),(1052040,354918,8,'producer','producer',NULL),(1052040,178992,9,'composer',NULL,NULL),(10521814,10844161,10,'composer',NULL,NULL),(10521814,6791934,1,'actress',NULL,'[\"Crybaby\"]'),(10521814,2901000,2,'actress',NULL,'[\"Angelita\"]'),(10521814,8805270,3,'actress',NULL,'[\"Celeste\"]'),(10521814,8914782,4,'actress',NULL,'[\"Kelly\"]'),(10521814,5634068,5,'director','co-director',NULL),(10521814,2022986,6,'producer','producer',NULL),(10521814,8596780,7,'producer','executive producer',NULL),(10521814,4322339,8,'producer','producer',NULL),(10521814,3373284,9,'producer','producer',NULL),(1052352,462732,10,'editor',NULL,NULL),(1052352,954253,1,'actress',NULL,'[\"Princess Ithaca\"]'),(1052352,661164,2,'actor',NULL,'[\"William Humphrey\"]'),(1052352,2348808,3,'actress',NULL,'[\"Jitterbug\",\"Calliope\"]'),(1052352,344010,4,'actress',NULL,'[\"Nana\"]'),(1052352,743093,5,'director',NULL,NULL),(1052352,274559,6,'writer','written by',NULL),(1052352,130814,7,'producer','producer',NULL),(1052352,555552,8,'composer',NULL,NULL),(1052352,538610,9,'cinematographer',NULL,NULL),(10525672,1499955,10,'producer','producer',NULL),(10525672,10785192,1,'actor',NULL,'[\"Matvey\"]'),(10525672,10404430,2,'actress',NULL,'[\"Alice\"]'),(10525672,5426973,3,'actor',NULL,'[\"Alex\"]'),(10525672,8070724,4,'actor',NULL,'[\"Arkadiy\"]'),(10525672,3996001,5,'director',NULL,NULL),(10525672,973061,6,'writer','novel',NULL),(10525672,2984444,7,'writer',NULL,NULL),(10525672,1802971,8,'producer','producer',NULL),(10525672,586482,9,'producer','producer',NULL),(10530176,3403833,10,'actor',NULL,'[\"Junk collector\"]'),(10530176,2339975,1,'actress',NULL,'[\"Seo-yeon\"]'),(10530176,9311474,2,'actress',NULL,'[\"Young-sook\"]'),(10530176,1118621,3,'actress',NULL,'[\"Seo-yeon\'s mother\"]'),(10530176,5077687,4,'actress',NULL,'[\"Young-sook\'s mother\"]'),(10530176,8066994,5,'director',NULL,NULL),(10530176,1230585,6,'writer','based on an original screenplay by',NULL),(10530176,10787193,7,'producer','producer',NULL),(10530176,4117985,8,'composer',NULL,NULL),(10530176,1041146,9,'actor',NULL,'[\"Seo-yeon\'s father\"]'),(1053424,2926,10,'cinematographer',NULL,NULL),(1053424,179,1,'actor',NULL,'[\"Remy\"]'),(1053424,1845,2,'actor',NULL,'[\"Jake\"]'),(1053424,103797,3,'actress',NULL,'[\"Beth\"]'),(1053424,630,4,'actor',NULL,'[\"Frank\"]'),(1053424,764601,5,'director',NULL,NULL),(1053424,1201715,6,'writer','screenplay',NULL),(1053424,1068424,7,'writer','screenplay',NULL),(1053424,835959,8,'producer','producer',NULL),(1053424,1937,9,'composer',NULL,NULL),(1053810,1651942,10,'producer','producer',NULL),(1053810,5562,1,'actor',NULL,'[\"Kenny Bostick\"]'),(1053810,85312,2,'actor',NULL,'[\"Brad Harris\"]'),(1053810,188,3,'actor',NULL,'[\"Stu Preissler\"]'),(1053810,92,4,'actor',NULL,'[\"Narrator\"]'),(1053810,291205,5,'director',NULL,NULL),(1053810,291442,6,'writer','screenplay',NULL),(1053810,2696996,7,'writer','book \"The Big Year: A Tale of Man, Nature, and Fowl Obsession\"',NULL),(1053810,180366,8,'producer','producer',NULL),(1053810,436,9,'producer','producer',NULL),(10539608,2811539,10,'producer','producer',NULL),(10539608,123,1,'actor',NULL,'[\"Augustine\"]'),(10539608,428065,2,'actress',NULL,'[\"Sully\"]'),(10539608,654648,3,'actor',NULL,'[\"Adewole\"]'),(10539608,11032545,4,'actress',NULL,'[\"Iris\"]'),(10539608,10791512,5,'writer','based on the book \'Good Morning, Midnight\' by',NULL),(10539608,1872664,6,'writer','screenplay by',NULL),(10539608,2251559,7,'producer','producer',NULL),(10539608,381416,8,'producer','producer',NULL),(10539608,2166024,9,'producer','producer',NULL),(10541410,722922,10,'editor',NULL,NULL),(10541410,4207749,1,'actress',NULL,'[\"Vera\"]'),(10541410,2459898,2,'actor',NULL,'[\"Diogo\"]'),(10541410,21823,3,'actress',NULL,'[\"Sílvia\"]'),(10541410,106895,4,'actress',NULL,'[\"Joana\"]'),(10541410,537339,5,'director',NULL,NULL),(10541410,10792691,6,'writer','writer',NULL),(10541410,623025,7,'producer','producer',NULL),(10541410,10861082,8,'composer',NULL,NULL),(10541410,34378,9,'cinematographer',NULL,NULL),(1054485,839467,10,'producer','producer',NULL),(1054485,921942,1,'actor',NULL,'[\"Philip J. Fry\",\"Prof. Hubert J. Farnsworth\",\"Dr. Zoidberg\"]'),(1054485,5408,2,'actress',NULL,'[\"Turanga Leela\"]'),(1054485,224007,3,'actor',NULL,'[\"Bender\",\"Randy Munchnick\",\"URL\"]'),(1054485,534134,4,'actress',NULL,'[\"Crazed Fan\",\"Bender\'s First Born Son\",\"Hattie McDoogal\"]'),(1054485,42796,5,'director',NULL,NULL),(1054485,4981,6,'writer','created by',NULL),(1054485,169326,7,'writer','developed by',NULL),(1054485,438235,8,'writer','teleplay by',NULL),(1054485,441656,9,'producer','producer',NULL),(1054486,438235,10,'writer','teleplay by',NULL),(1054486,921942,1,'actor',NULL,'[\"Philip J. Fry\",\"Frydo\",\"Professor Hubert Farnsworth\"]'),(1054486,5408,2,'actress',NULL,'[\"Turanga Leela\",\"Leegola\"]'),(1054486,224007,3,'actor',NULL,'[\"Bender\",\"Titanius Anglesmith\",\"Igner\"]'),(1054486,534134,4,'actress',NULL,'[\"Mom\",\"Momon\",\"Turanga Munda\"]'),(1054486,1401752,5,'director',NULL,NULL),(1054486,4981,6,'writer','created by',NULL),(1054486,169326,7,'writer','developed by',NULL),(1054486,395489,8,'writer','teleplay by',NULL),(1054486,746573,9,'writer','teleplay by',NULL),(1054487,839467,10,'producer','producer',NULL),(1054487,921942,1,'actor',NULL,'[\"Philip J. Fry\",\"Professor Hubert Farnsworth\",\"Dr. Zoidberg\"]'),(1054487,5408,2,'actress',NULL,'[\"Turanga Leela\"]'),(1054487,224007,3,'actor',NULL,'[\"Bender\",\"Sandworm\",\"Joey Mousepad\"]'),(1054487,534134,4,'actress',NULL,'[\"Fanny\",\"Michael\'s Wife\",\"Boobs Vanderbilt\"]'),(1054487,42796,5,'director',NULL,NULL),(1054487,4981,6,'writer','created by',NULL),(1054487,169326,7,'writer','developed by',NULL),(1054487,444517,8,'writer','teleplay by',NULL),(1054487,441656,9,'producer','producer',NULL),(1054580,865427,10,'composer',NULL,NULL),(1054580,3094966,1,'actress',NULL,'[\"Young Waris\"]'),(1054580,5101259,2,'actor',NULL,'[\"Old Man\"]'),(1054580,5101419,3,'actress',NULL,'[\"Amina\"]'),(1054580,5100267,4,'actress',NULL,'[\"Waris\' Mother\"]'),(1054580,394776,5,'director',NULL,NULL),(1054580,909909,6,'writer','novel',NULL),(1054580,6659953,7,'writer','novel',NULL),(1054580,4870017,8,'writer','dubbing dialogue',NULL),(1054580,380764,9,'producer','producer',NULL),(1054588,509346,10,'producer','producer',NULL),(1054588,1427,1,'actor',NULL,'[\"Bob Kearns\"]'),(1054588,334179,2,'actress',NULL,'[\"Phyllis Kearns\"]'),(1054588,257,3,'actor',NULL,'[\"Gregory Lawson\"]'),(1054588,1537811,4,'actor',NULL,'[\"Maryland Cop #1\"]'),(1054588,8953,5,'director',NULL,NULL),(1054588,706882,6,'writer','written by',NULL),(1054588,780415,7,'writer','article \"The Flash of Genius\"',NULL),(1054588,53388,8,'producer','producer',NULL),(1054588,83696,9,'producer','producer',NULL),(1054606,4582,10,'composer',NULL,NULL),(1054606,1626,1,'actor',NULL,'[\"Doctor Parnassus\"]'),(1054606,2178959,2,'actress',NULL,'[\"Valentina\"]'),(1054606,5132,3,'actor',NULL,'[\"Tony\"]'),(1054606,1940449,4,'actor',NULL,'[\"Anton\"]'),(1054606,416,5,'director',NULL,NULL),(1054606,571650,6,'writer','written by',NULL),(1054606,319094,7,'producer','producer',NULL),(1054606,352820,8,'producer','producer',NULL),(1054606,898549,9,'producer','producer',NULL),(1055292,624201,10,'composer',NULL,NULL),(1055292,1337,1,'actress',NULL,'[\"Holly Berenson\"]'),(1055292,241049,2,'actor',NULL,'[\"Eric Messer\"]'),(1055292,524197,3,'actor',NULL,'[\"Sam\"]'),(1055292,3693309,4,'actress',NULL,'[\"Sophie\"]'),(1055292,75528,5,'director',NULL,NULL),(1055292,215130,6,'writer','written by',NULL),(1055292,750809,7,'writer','written by',NULL),(1055292,112189,8,'producer','producer',NULL),(1055292,430742,9,'producer','producer',NULL),(1055366,480804,10,'producer','producer',NULL),(1055366,1416215,1,'actress',NULL,'[\"Mitchie Torres\"]'),(1055366,2679438,2,'actor',NULL,'[\"Shane Gray\"]'),(1055366,2449480,3,'actress',NULL,'[\"Tess\"]'),(1055366,133566,4,'actress',NULL,'[\"Connie Torres\"]'),(1055366,224683,5,'director',NULL,NULL),(1055366,1665969,6,'writer','written by',NULL),(1055366,382943,7,'writer','written by',NULL),(1055366,113935,8,'writer','written by',NULL),(1055366,114399,9,'writer','written by',NULL),(1055369,220892,10,'producer','producer',NULL),(1055369,479471,1,'actor',NULL,'[\"Sam Witwicky\"]'),(1055369,1083271,2,'actress',NULL,'[\"Mikaela Banes\"]'),(1055369,241049,3,'actor',NULL,'[\"Major Lennox\"]'),(1055369,879085,4,'actor',NULL,'[\"USAF Chief Master Sergeant Epps\"]'),(1055369,881,5,'director',NULL,NULL),(1055369,472567,6,'writer','written by',NULL),(1055369,649460,7,'writer','written by',NULL),(1055369,476064,8,'writer','written by',NULL),(1055369,117290,9,'producer','producer',NULL),(10556022,75528,10,'producer','producer',NULL),(10556022,4726634,1,'actress',NULL,'[\"Veronica Clarke\"]'),(10556022,9209960,2,'actress',NULL,'[\"Bailey Butler\"]'),(10556022,2064,3,'actor',NULL,'[\"Bob\"]'),(10556022,5879880,4,'actor',NULL,'[\"Kevin\"]'),(10556022,2079484,5,'director',NULL,NULL),(10556022,2657729,6,'writer','screenplay by',NULL),(10556022,6588801,7,'writer','screenplay by',NULL),(10556022,3066492,8,'writer','screenplay by',NULL),(10556022,2536503,9,'writer','screenplay by',NULL),(1056437,1057429,10,'cinematographer',NULL,NULL),(1056437,452860,1,'actress',NULL,'[\"Suito Kusanagi\"]'),(1056437,1076976,2,'actor',NULL,'[\"Yuichi Kannami\"]'),(1056437,849477,3,'actor',NULL,'[\"Naofumi Tokino\"]'),(1056437,4212310,4,'actress',NULL,'[\"Mizuki Kusanagi\"]'),(1056437,651900,5,'director',NULL,NULL),(1056437,2696147,6,'writer','story and characters',NULL),(1056437,1920461,7,'writer','adaptation',NULL),(1056437,2055761,8,'producer','producer',NULL),(1056437,442766,9,'composer',NULL,NULL),(1056444,1800729,1,'actress',NULL,'[\"Florentina\",\"Abuela\"]'),(1056444,1006949,2,'actor',NULL,'[\"Dr. Natalio\"]'),(1056444,636991,3,'actor',NULL,'[\"Fonsiño\"]'),(1056444,3017833,4,'actor',NULL,'[\"Abuelo\"]'),(1056444,1802054,5,'director',NULL,NULL),(1056444,1783331,6,'writer','screenplay co-writer',NULL),(1056444,1797166,7,'producer','producer',NULL),(1056444,2895303,8,'cinematographer',NULL,NULL),(1057500,626883,10,'producer','producer',NULL),(1057500,151,1,'actor',NULL,'[\"Nelson Mandela\"]'),(1057500,354,2,'actor',NULL,'[\"Francois Pienaar\"]'),(1057500,450961,3,'actor',NULL,'[\"Jason Tshabalala\"]'),(1057500,595680,4,'actor',NULL,'[\"Linga Moonsamy\"]'),(1057500,142,5,'director',NULL,NULL),(1057500,669756,6,'writer','screenplay',NULL),(1057500,1985343,7,'writer','book \"Playing the Enemy: Nelson Mandela and the Game that Made a Nation\"',NULL),(1057500,520749,8,'producer','producer',NULL),(1057500,566975,9,'producer','producer',NULL),(1058017,5891,10,'cinematographer','director of photography',NULL),(1058017,315041,1,'actor',NULL,'[\"Mark Bellison\"]'),(1058017,4950,2,'actress',NULL,'[\"Anna McDoogles\"]'),(1058017,1706767,3,'actor',NULL,'[\"Frank\"]'),(1058017,127373,4,'actor',NULL,'[\"Greg\"]'),(1058017,2816668,5,'director',NULL,NULL),(1058017,1469853,6,'producer','producer',NULL),(1058017,643553,7,'producer','producer',NULL),(1058017,643555,8,'producer','producer',NULL),(1058017,40217,9,'composer',NULL,NULL),(1059786,189777,10,'producer','producer',NULL),(1059786,479471,1,'actor',NULL,'[\"Jerry Shaw\"]'),(1059786,1157358,2,'actress',NULL,'[\"Rachel Holloman\"]'),(1059786,206257,3,'actress',NULL,'[\"Zoe Perez\"]'),(1059786,4821,4,'actor',NULL,'[\"Defense Secretary Callister\"]'),(1059786,142286,5,'director',NULL,NULL),(1059786,1726457,6,'writer','screenplay',NULL),(1059786,1726876,7,'writer','screenplay',NULL),(1059786,782711,8,'writer','screenplay',NULL),(1059786,1908145,9,'writer','screenplay',NULL),(1059925,635207,10,'composer',NULL,NULL),(1059925,240381,1,'actress',NULL,'[\"Greta\"]'),(1059925,1963091,2,'actor',NULL,'[\"Julie\"]'),(1059925,614526,3,'actor',NULL,'[\"Joseph\"]'),(1059925,995,4,'actress',NULL,'[\"Katherine\"]'),(1059925,1636655,5,'director',NULL,NULL),(1059925,2010233,6,'writer','written by',NULL),(1059925,742819,7,'producer','producer',NULL),(1059925,2298502,8,'producer','producer',NULL),(1059925,1959992,9,'producer','producer',NULL),(10600398,8533749,1,'actress',NULL,'[\"Missy Moreno\"]'),(10600398,50959,2,'actor',NULL,'[\"Marcus Moreno\"]'),(10600398,1231899,3,'actress',NULL,'[\"Ms. Granada\"]'),(10600398,7548958,4,'actor',NULL,'[\"Noodles\"]'),(10600398,1675,5,'director',NULL,NULL),(10600398,1897406,6,'producer','producer',NULL),(10600398,1943565,7,'composer',NULL,NULL),(1060277,95272,10,'cinematographer','director of photography',NULL),(1060277,1036181,1,'actor',NULL,'[\"Jason Hawkins\"]'),(1060277,1140300,2,'actress',NULL,'[\"Lily\"]'),(1060277,135221,3,'actress',NULL,'[\"Marlena\"]'),(1060277,2554352,4,'actor',NULL,'[\"Hud\"]'),(1060277,716257,5,'director',NULL,NULL),(1060277,1206844,6,'writer','written by',NULL),(1060277,9190,7,'producer','producer',NULL),(1060277,1333357,8,'producer','producer',NULL),(1060277,315974,9,'composer',NULL,NULL),(10612922,5966,10,'composer',NULL,NULL),(10612922,4667984,1,'actor',NULL,'[\"Malcolm X\"]'),(10612922,2345856,2,'actor',NULL,'[\"Cassius Clay\"]'),(10612922,388038,3,'actor',NULL,'[\"Jim Brown\"]'),(10612922,1502434,4,'actor',NULL,'[\"Sam Cooke\"]'),(10612922,5093,5,'director',NULL,NULL),(10612922,5358492,6,'writer','screenplay by',NULL),(10612922,2384784,7,'producer','producer',NULL),(10612922,2096462,8,'producer','producer',NULL),(10612922,458825,9,'producer','producer',NULL),(10618286,722153,10,'composer',NULL,NULL),(10618286,198,1,'actor',NULL,'[\"Herman Mankiewicz\"]'),(10618286,1086543,2,'actress',NULL,'[\"Marion Davies\"]'),(10618286,2934314,3,'actress',NULL,'[\"Rita Alexander\"]'),(10618286,1670601,4,'actor',NULL,'[\"Joe Mankiewicz\"]'),(10618286,399,5,'director',NULL,NULL),(10618286,10827638,6,'writer','screen play by',NULL),(10618286,149556,7,'producer','producer',NULL),(10618286,744839,8,'producer','producer',NULL),(10618286,881703,9,'producer','producer',NULL),(10623646,6010875,10,'actress',NULL,'[\"Juniper Plimpton\"]'),(10623646,8414653,1,'actress',NULL,'[\"Tiffany Quilkin\"]'),(10623646,6952874,2,'actress',NULL,'[\"Erin Tieng\"]'),(10623646,5025909,3,'actress',NULL,'[\"Mac Coyle\"]'),(10623646,5218112,4,'actress',NULL,'[\"KJ Brandman\"]'),(10623646,5403126,5,'writer','created for television by',NULL),(10623646,692013,6,'actress',NULL,'[\"Prioress\"]'),(10623646,1682319,7,'actor',NULL,'[\"Larry Radakowski\"]'),(10623646,4399227,8,'actress',NULL,'[\"Adult Erin\",\"Woman\"]'),(10623646,11607400,9,'actress',NULL,'[\"Adult Tiffany\",\"Adult Tiffany Quilkin\"]'),(10633456,1681893,10,'cinematographer','director of photography',NULL),(10633456,3081796,1,'actor',NULL,'[\"Jacob\"]'),(10633456,3680658,2,'actress',NULL,'[\"Monica\"]'),(10633456,10910136,3,'actor',NULL,'[\"David\"]'),(10633456,10942337,4,'actress',NULL,'[\"Anne\"]'),(10633456,1818032,5,'director',NULL,NULL),(10633456,306890,6,'producer','producer',NULL),(10633456,1250070,7,'producer','producer',NULL),(10633456,3567152,8,'producer','producer',NULL),(10633456,7888676,9,'composer',NULL,NULL),(1063669,65376,10,'producer','producer',NULL),(1063669,900915,1,'actor',NULL,'[\"Rainer Wenger\"]'),(1063669,1035643,2,'actor',NULL,'[\"Tim Stoltefuss\"]'),(1063669,726262,3,'actor',NULL,'[\"Marco\"]'),(1063669,1457472,4,'actress',NULL,'[\"Karo\"]'),(1063669,304541,5,'director',NULL,NULL),(1063669,429168,6,'writer','short story and original protocols',NULL),(1063669,205972,7,'writer','screenplay \"The Wave\"',NULL),(1063669,1545967,8,'writer','screenplay \"The Wave\"',NULL),(1063669,861826,9,'writer','writer',NULL),(10638522,1209992,10,'producer','producer',NULL),(10638522,8490058,1,'actor',NULL,'[\"Cole\"]'),(10638522,6006955,2,'actor',NULL,'[\"Tyson\"]'),(10638522,13567262,3,'actor',NULL,'[\"Peck\"]'),(10638522,2563544,4,'actress',NULL,'[\"Fiona\"]'),(10638522,4053334,5,'director',NULL,NULL),(10638522,6100536,6,'director',NULL,NULL),(10638522,5921025,7,'writer','written by',NULL),(10638522,2587184,8,'writer','based on a concept by',NULL),(10638522,373829,9,'producer','producer',NULL),(10640346,761874,10,'cinematographer','director of photography',NULL),(10640346,93,1,'actor',NULL,'[\"Jack Conrad\"]'),(10640346,3053338,2,'actress',NULL,'[\"Nellie LaRoy\"]'),(10640346,5443,3,'actress',NULL,'[\"Elinor St. John\"]'),(10640346,1312575,4,'actress',NULL,'[\"Ina Conrad\"]'),(10640346,3227090,5,'director',NULL,NULL),(10640346,6283951,6,'producer','producer',NULL),(10640346,686887,7,'producer','producer',NULL),(10640346,2272537,8,'producer','producer',NULL),(10640346,3225654,9,'composer',NULL,NULL),(10648342,4160687,10,'writer','Drax created by',NULL),(10648342,1165110,1,'actor',NULL,'[\"Thor\"]'),(10648342,204,2,'actress',NULL,'[\"Jane Foster\",\"The Mighty Thor\"]'),(10648342,288,3,'actor',NULL,'[\"Gorr\"]'),(10648342,1935086,4,'actress',NULL,'[\"King Valkyrie\"]'),(10648342,169806,5,'director',NULL,NULL),(10648342,3066492,6,'writer','written by',NULL),(10648342,498278,7,'writer','Thor created by',NULL),(10648342,1293367,8,'writer','Thor created by',NULL),(10648342,456158,9,'writer','Thor created by',NULL),(1064932,44545,10,'cinematographer',NULL,NULL),(1064932,580101,1,'actor',NULL,'[\"Philippe Abrams\"]'),(1064932,200702,2,'actor',NULL,'[\"Antoine Bailleul\"]'),(1064932,299663,3,'actress',NULL,'[\"Julie Abrams\"]'),(1064932,2594961,4,'actor',NULL,'[\"Raphaël Abrams\"]'),(1064932,153265,5,'writer','dialogue',NULL),(1064932,536251,6,'writer','dialogue',NULL),(1064932,1945,7,'producer','producer',NULL),(1064932,1482301,8,'producer','producer',NULL),(1064932,739151,9,'composer',NULL,NULL),(1065073,446867,10,'cinematographer','director of photography',NULL),(1065073,1294664,1,'actor',NULL,'[\"Mason\"]'),(1065073,99,2,'actress',NULL,'[\"Olivia\"]'),(1065073,160,3,'actor',NULL,'[\"Dad\"]'),(1065073,6567391,4,'actor',NULL,'[\"Tommy\"]'),(1065073,500,5,'director',NULL,NULL),(1065073,782270,6,'producer','producer',NULL),(1065073,806189,7,'producer','producer',NULL),(1065073,840060,8,'producer','producer',NULL),(1065073,199679,9,'cinematographer','director of photography',NULL),(10665338,15443,10,'producer','producer',NULL),(10665338,130,1,'actress',NULL,'[\"Laurie Strode\"]'),(10665338,339460,2,'actress',NULL,'[\"Karen\"]'),(10665338,5506858,3,'actress',NULL,'[\"Allyson\"]'),(10665338,183921,4,'actor',NULL,'[\"The Shape\"]'),(10665338,337773,5,'director',NULL,NULL),(10665338,118,6,'writer','based on characters created by',NULL),(10665338,384185,7,'writer','based on characters created by',NULL),(10665338,1802374,8,'writer','written by',NULL),(10665338,1144419,9,'writer','written by',NULL),(10665342,1144419,10,'writer','written by',NULL),(10665342,130,1,'actress',NULL,'[\"Laurie\"]'),(10665342,5506858,2,'actress',NULL,'[\"Allyson\"]'),(10665342,183921,3,'actor',NULL,'[\"The Shape\"]'),(10665342,3340982,4,'actor',NULL,'[\"Corey\"]'),(10665342,337773,5,'director',NULL,NULL),(10665342,118,6,'writer','based on characters created by',NULL),(10665342,384185,7,'writer','based on characters created by',NULL),(10665342,5147161,8,'writer','written by',NULL),(10665342,1721369,9,'writer','written by',NULL),(1067583,990025,10,'producer','producer',NULL),(1067583,1500155,1,'actor',NULL,'[\"Jacob\"]'),(1067583,702,2,'actress',NULL,'[\"Marlena\"]'),(1067583,910607,3,'actor',NULL,'[\"August\"]'),(1067583,773973,4,'actor',NULL,'[\"Charlie\"]'),(1067583,1349376,5,'director',NULL,NULL),(1067583,481418,6,'writer','screenplay',NULL),(1067583,2717485,7,'writer','novel',NULL),(1067583,626696,8,'producer','producer',NULL),(1067583,831098,9,'producer','producer',NULL),(10676012,2331720,10,'composer',NULL,NULL),(10676012,7093076,1,'actress',NULL,'[\"Lara Jean\"]'),(10676012,3170207,2,'actor',NULL,'[\"Peter\"]'),(10676012,663546,3,'actress',NULL,'[\"Margot\"]'),(10676012,8264172,4,'actress',NULL,'[\"Kitty\"]'),(10676012,277342,5,'director',NULL,NULL),(10676012,2692519,6,'writer','screenplay by',NULL),(10676012,6614229,7,'writer','based on the novel by',NULL),(10676012,4915003,8,'writer','collaborating writer',NULL),(10676012,1396390,9,'producer','producer',NULL),(1067733,1195233,10,'editor',NULL,NULL),(1067733,803890,1,'actor',NULL,'[\"Göran Skoogh\"]'),(1067733,677471,2,'actor',NULL,'[\"Sven Skoogh\"]'),(1067733,1468283,3,'actor',NULL,'[\"Patrik Eriksson\"]'),(1067733,1564081,4,'actress',NULL,'[\"Isabell\"]'),(1067733,501281,5,'director',NULL,NULL),(1067733,238510,6,'writer','play',NULL),(1067733,584574,7,'producer','producer',NULL),(1067733,1122260,8,'composer',NULL,NULL),(1067733,927633,9,'cinematographer',NULL,NULL),(1067765,2229726,10,'producer','producer',NULL),(1067765,731075,1,'actress',NULL,'[\"Amy\"]'),(1067765,1404239,2,'actor',NULL,'[\"Alex\"]'),(1067765,131,3,'actor',NULL,'[\"Rat Billings\"]'),(1067765,1458,4,'actress',NULL,'[\"Mary Ann\"]'),(1067765,168892,5,'director',NULL,NULL),(1067765,2687438,6,'writer','written by',NULL),(1067765,1209773,7,'producer','producer',NULL),(1067765,2231779,8,'producer','producer',NULL),(1067765,4312021,9,'producer','producer',NULL),(1067774,224145,10,'producer','producer',NULL),(1067774,1411125,1,'actress',NULL,'[\"Grace\",\"Cordelia Winthrop Scott\"]'),(1067774,1015262,2,'actress',NULL,'[\"Meg\"]'),(1067774,1556320,3,'actress',NULL,'[\"Emma\"]'),(1067774,1719342,4,'actor',NULL,'[\"Owen\"]'),(1067774,80120,5,'director',NULL,NULL),(1067774,86194,6,'writer','screenplay',NULL),(1067774,535940,7,'writer','screenplay',NULL),(1067774,2797005,8,'writer','screen story',NULL),(1067774,60072,9,'writer','novel \"Headhunters\"',NULL),(1068242,951722,10,'producer','producer',NULL),(1068242,1552693,1,'actor',NULL,'[\"Ren\"]'),(1068242,2584600,2,'actress',NULL,'[\"Ariel\"]'),(1068242,598,3,'actor',NULL,'[\"Rev. Shaw Moore\"]'),(1068242,510,4,'actress',NULL,'[\"Vi Moore\"]'),(1068242,108132,5,'director',NULL,NULL),(1068242,685673,6,'writer','screenplay',NULL),(1068242,581117,7,'producer','producer',NULL),(1068242,783346,8,'producer','producer',NULL),(1068242,922919,9,'producer','producer',NULL),(1068641,5696,10,'cinematographer','director of photography',NULL),(1068641,234,1,'actress',NULL,'[\"Sylvia\"]'),(1068641,179173,2,'actor',NULL,'[\"John\"]'),(1068641,946962,3,'actor',NULL,'[\"Carlos\"]'),(1068641,677,4,'actress',NULL,'[\"Laura\"]'),(1068641,37247,5,'director',NULL,NULL),(1068641,531827,6,'producer','producer',NULL),(1068641,662748,7,'producer','producer',NULL),(1068641,2495959,8,'composer',NULL,NULL),(1068641,1877,9,'composer',NULL,NULL),(1068649,2371460,10,'production_designer',NULL,NULL),(1068649,218,1,'actress',NULL,'[\"Juliette\"]'),(1068649,959113,2,'actress',NULL,'[\"Léa\"]'),(1068649,371891,3,'actor',NULL,'[\"Luc\"]'),(1068649,344932,4,'actor',NULL,'[\"Michel\"]'),(1068649,1061623,5,'director',NULL,NULL),(1068649,549366,6,'producer','producer',NULL),(1068649,41300,7,'composer',NULL,NULL),(1068649,1039246,8,'cinematographer',NULL,NULL),(1068649,1055166,9,'editor',NULL,NULL),(1068678,1885661,10,'producer','producer',NULL),(1068678,1264,1,'actress',NULL,'[\"Veronika Deklava\"]'),(1068678,6958,2,'actor',NULL,'[\"Edward\"]'),(1068678,159776,3,'actress',NULL,'[\"Claire\"]'),(1068678,523568,4,'actress',NULL,'[\"Dr. Thompson\"]'),(1068678,1369721,5,'director',NULL,NULL),(1068678,168723,6,'writer','book',NULL),(1068678,343419,7,'writer','writer',NULL),(1068678,360106,8,'writer','screenplay',NULL),(1068678,112501,9,'producer','producer',NULL),(1068680,382268,10,'producer','producer',NULL),(1068680,120,1,'actor',NULL,'[\"Carl\"]'),(1068680,221046,2,'actress',NULL,'[\"Allison\"]'),(1068680,177896,3,'actor',NULL,'[\"Peter\"]'),(1068680,383422,4,'actor',NULL,'[\"Nick\"]'),(1068680,715636,5,'director',NULL,NULL),(1068680,831557,6,'writer','screenplay',NULL),(1068680,666871,7,'writer','screenplay',NULL),(1068680,2361949,8,'writer','screenplay',NULL),(1068680,991245,9,'writer','book',NULL),(1069238,386749,10,'composer',NULL,NULL),(1069238,609403,1,'actor',NULL,'[\"Daigo Kobayashi\"]'),(1069238,386414,2,'actress',NULL,'[\"Mika Kobayashi\"]'),(1069238,945734,3,'actor',NULL,'[\"Ikuei Sasaki\"]'),(1069238,949097,4,'actress',NULL,'[\"Tsuyako Yamashita\"]'),(1069238,847690,5,'director',NULL,NULL),(1069238,2725830,6,'writer','screenplay',NULL),(1069238,620457,7,'producer','producer',NULL),(1069238,3341611,8,'producer','producer',NULL),(1069238,913784,9,'producer','producer',NULL),(10692788,2054692,10,'production_designer',NULL,NULL),(10692788,768936,1,'actress',NULL,'[\"Mary\"]'),(10692788,723865,2,'actress',NULL,'[\"Geneviève\"]'),(10692788,4216460,3,'actor',NULL,'[\"Solomon\"]'),(10692788,578596,4,'actor',NULL,'[\"Ahmed\"]'),(10692788,2746993,5,'director',NULL,NULL),(10692788,1552811,6,'producer','producer',NULL),(10692788,2242151,7,'composer',NULL,NULL),(10692788,6558582,8,'cinematographer',NULL,NULL),(10692788,768786,9,'editor',NULL,NULL),(10696784,1893246,10,'cinematographer','director of photography',NULL),(10696784,3718007,1,'actor',NULL,'[\"Nat Love\"]'),(10696784,5939164,2,'actress',NULL,'[\"Mary Fields\"]'),(10696784,5518972,3,'actor',NULL,'[\"Jim Beckwourth\"]'),(10696784,1346230,4,'actor',NULL,'[\"Bill Pickett\"]'),(10696784,5029795,5,'director',NULL,NULL),(10696784,945026,6,'writer','screenplay by',NULL),(10696784,4744,7,'producer','producer',NULL),(10696784,419650,8,'producer','producer',NULL),(10696784,489876,9,'producer','producer',NULL),(1070874,1207404,10,'composer',NULL,NULL),(1070874,1519666,1,'actor',NULL,'[\"Tom Hayden\"]'),(1070874,5189784,2,'actor',NULL,'[\"Rennie Davis\"]'),(1070874,56187,3,'actor',NULL,'[\"Abbie Hoffman\"]'),(1070874,834989,4,'actor',NULL,'[\"Jerry Rubin\"]'),(1070874,815070,5,'director',NULL,NULL),(1070874,78804,6,'producer','producer',NULL),(1070874,5009883,7,'producer','producer',NULL),(1070874,686887,8,'producer','producer',NULL),(1070874,3120821,9,'producer','producer',NULL),(1071804,2025993,1,'actor',NULL,'[\"John\",\"Ink\"]'),(1071804,2727304,2,'actress',NULL,'[\"Emma\"]'),(1071804,1871320,3,'actress',NULL,'[\"Liev\"]'),(1071804,2320334,4,'actress',NULL,'[\"Allel\"]'),(1071804,1985821,5,'director',NULL,NULL),(1071804,2026881,6,'producer','executive producer',NULL),(1071804,1991994,7,'cinematographer',NULL,NULL),(1071875,2170,10,'producer','producer',NULL),(1071875,115,1,'actor',NULL,'[\"Johnny Blaze\",\"Ghost Rider\"]'),(1071875,1354,2,'actor',NULL,'[\"Roarke\"]'),(1071875,252961,3,'actor',NULL,'[\"Moreau\"]'),(1071875,686376,4,'actress',NULL,'[\"Nadya\"]'),(1071875,4410,5,'director',NULL,NULL),(1071875,962729,6,'director',NULL,NULL),(1071875,991355,7,'writer','screenplay',NULL),(1071875,2397756,8,'writer','screenplay',NULL),(1071875,275286,9,'writer','screenplay',NULL),(1072438,79567,10,'editor',NULL,NULL),(1072438,4993,1,'actor',NULL,'[\"Sam Nelson\"]'),(1072438,5370,2,'actress',NULL,'[\"Amy Smith\"]'),(1072438,437283,3,'actor',NULL,'[\"Ryan Roberts\"]'),(1072438,9016,4,'actor',NULL,'[\"Howard Stieglitz\"]'),(1072438,3975,5,'director',NULL,NULL),(1072438,1165704,6,'writer','writer',NULL),(1072438,2677744,7,'writer','writer',NULL),(1072438,103593,8,'composer',NULL,NULL),(1072438,315010,9,'cinematographer',NULL,NULL),(1073105,1384503,10,'producer','producer',NULL),(1073105,721866,1,'actor',NULL,'[\"Ed Oswald\"]'),(1073105,531933,2,'actress',NULL,'[\"Sarah Carter\"]'),(1073105,3013970,3,'actress',NULL,'[\"Susanne Small\"]'),(1073105,388061,4,'actor',NULL,'[\"Dan\"]'),(1073105,1154184,5,'director',NULL,NULL),(1073105,3068876,6,'writer','screenplay',NULL),(1073105,2128335,7,'writer','screenplay',NULL),(1073105,1220140,8,'writer','screenplay',NULL),(1073105,551076,9,'writer','characters',NULL),(10731256,694173,10,'composer',NULL,NULL),(10731256,6073955,1,'actress',NULL,'[\"Alice\"]'),(10731256,4089170,2,'actor',NULL,'[\"Jack\"]'),(10731256,1517976,3,'actor',NULL,'[\"Frank\"]'),(10731256,1312575,4,'actress',NULL,'[\"Bunny\"]'),(10731256,4199289,5,'writer','screenplay by',NULL),(10731256,1139317,6,'writer','story by',NULL),(10731256,886749,7,'writer','story by',NULL),(10731256,498175,8,'producer','producer',NULL),(10731256,1186661,9,'producer','producer',NULL),(10731768,1888527,10,'composer',NULL,NULL),(10731768,597388,1,'actor',NULL,'[\"Ray Cooper\"]'),(10731768,5097044,2,'actress',NULL,'[\"Rachel Cooper\"]'),(10731768,2636310,3,'actor',NULL,'[\"Amos Santos\"]'),(10731768,5245722,4,'actress',NULL,'[\"Amanda Cooper\"]'),(10731768,1892926,5,'director',NULL,NULL),(10731768,3884127,6,'writer','written by',NULL),(10731768,252155,7,'writer','written by',NULL),(10731768,270760,8,'producer','producer',NULL),(10731768,679031,9,'producer','producer',NULL),(1073241,101908,10,'editor',NULL,NULL),(1073241,295,1,'actress',NULL,'[\"Rachel Armstrong\"]'),(1073241,369,2,'actor',NULL,'[\"Patton Dubois\"]'),(1073241,267812,3,'actress',NULL,'[\"Erica Van Doren\"]'),(1073241,291,4,'actress',NULL,'[\"Bonnie Benjamin\"]'),(1073241,527109,5,'director',NULL,NULL),(1073241,296827,6,'producer','producer',NULL),(1073241,946441,7,'producer','producer',NULL),(1073241,343935,8,'composer',NULL,NULL),(1073241,2399,9,'cinematographer','director of photography',NULL),(10734928,10879836,10,'producer','producer',NULL),(10734928,5679689,1,'actress',NULL,'[\"Luo Xiaohei\"]'),(10734928,14464648,2,'actor',NULL,'[\"Xuhuai\"]'),(10734928,6004732,3,'actor',NULL,'[\"Xuhuai (Void)\"]'),(10734928,11101448,4,'actor',NULL,'[\"Luo Xiaohei (English version)\"]'),(10734928,10879834,5,'director',NULL,NULL),(10734928,10956648,6,'writer',NULL,NULL),(10734928,13726862,7,'writer',NULL,NULL),(10734928,8263018,8,'writer',NULL,NULL),(10734928,10879835,9,'producer','producer',NULL),(1073498,697953,10,'editor',NULL,NULL),(1073498,536630,1,'actor',NULL,'[\"Leonidas\"]'),(1073498,1757,2,'actor',NULL,'[\"Captain\"]'),(1073498,1182,3,'actress',NULL,'[\"Queen Margo\"]'),(1073498,205772,4,'actor',NULL,'[\"Xerxes\"]'),(1073498,294997,5,'director',NULL,NULL),(1073498,783536,6,'director',NULL,NULL),(1073498,755911,7,'producer','producer',NULL),(1073498,501999,8,'composer',NULL,NULL),(1073498,561053,9,'cinematographer','director of photography',NULL),(1074638,110483,10,'producer','producer',NULL),(1074638,185819,1,'actor',NULL,'[\"James Bond\"]'),(1074638,849,2,'actor',NULL,'[\"Silva\"]'),(1074638,365140,3,'actress',NULL,'[\"Eve\"]'),(1074638,1132,4,'actress',NULL,'[\"M\"]'),(1074638,5222,5,'director',NULL,NULL),(1074638,701031,6,'writer','written by',NULL),(1074638,905498,7,'writer','written by',NULL),(1074638,517589,8,'writer','written by',NULL),(1074638,1220,9,'writer','characters',NULL),(10752004,651366,10,'composer',NULL,NULL),(10752004,2400045,1,'actress',NULL,'[\"Natalie Bauer\"]'),(10752004,4497202,2,'actor',NULL,'[\"Josh Lin\"]'),(10752004,6651162,3,'actor',NULL,'[\"Tag\"]'),(10752004,756839,4,'actor',NULL,'[\"Bob Lin\"]'),(10752004,2076099,5,'director',NULL,NULL),(10752004,2202271,6,'writer','written by',NULL),(10752004,10887693,7,'writer','written by',NULL),(10752004,629334,8,'producer','producer',NULL),(10752004,899193,9,'producer','producer',NULL),(10752062,10943269,10,'actress',NULL,'[\"Grandmother\"]'),(10752062,8689323,1,'actor',NULL,'[\"Adam\"]'),(10752062,8689321,2,'actress',NULL,'[\"Jane\"]'),(10752062,8689322,3,'actor',NULL,'[\"Andrew\"]'),(10752062,8689324,4,'actor',NULL,'[\"Victor\"]'),(10752062,13369146,5,'composer',NULL,NULL),(10752062,10882009,6,'actress',NULL,'[\"Diana\"]'),(10752062,8689326,7,'actor',NULL,'[\"Andrew\"]'),(10752062,10948764,8,'actress',NULL,'[\"Alexandra\"]'),(10752062,11271463,9,'actress',NULL,'[\"Regina\"]'),(1075749,783203,10,'producer','producer',NULL),(1075749,2273799,1,'actress',NULL,'[\"Annette\"]'),(1075749,951182,2,'actress',NULL,'[\"Endo\"]'),(1075749,1546182,3,'actor',NULL,'[\"Leon\"]'),(1075749,3110756,4,'actress',NULL,'[\"Marie-Anne\"]'),(1075749,447314,5,'director',NULL,NULL),(1075749,797604,6,'writer','writer',NULL),(1075749,236026,7,'producer','producer',NULL),(1075749,3430106,8,'producer','producer',NULL),(1075749,375235,9,'producer','producer',NULL),(1076252,184284,10,'cinematographer',NULL,NULL),(1076252,864308,1,'actress',NULL,'[\"Mandy Gilbert\"]'),(1076252,1629,2,'actor',NULL,'[\"Tom Gilbert\"]'),(1076252,172472,3,'actress',NULL,'[\"Alexa\"]'),(1076252,1501624,4,'actress',NULL,'[\"Cayenne\"]'),(1076252,378893,5,'director',NULL,NULL),(1076252,558721,6,'writer','written by',NULL),(1076252,1449018,7,'producer','producer',NULL),(1076252,717648,8,'producer','producer',NULL),(1076252,555552,9,'composer',NULL,NULL),(10763820,6299693,10,'composer',NULL,NULL),(10763820,7449863,1,'actor',NULL,'[\"Benny\"]'),(10763820,2913275,2,'actress',NULL,'[\"Blaire\"]'),(10763820,4867258,3,'actress',NULL,'[\"Zoe\"]'),(10763820,1950004,4,'actor',NULL,'[\"Jay\"]'),(10763820,1726691,5,'director',NULL,NULL),(10763820,10893544,6,'writer','written by',NULL),(10763820,3339735,7,'producer','producer',NULL),(10763820,5011725,8,'producer','producer',NULL),(10763820,1532744,9,'producer','producer',NULL),(10767426,122167,10,'composer',NULL,NULL),(10767426,5003252,1,'actor',NULL,'[\"Ilya Goryunov\"]'),(10767426,3891226,2,'actress',NULL,'[\"Nina\"]'),(10767426,946159,3,'actor',NULL,'[\"Pyotr Khazin\"]'),(10767426,3253977,4,'actress',NULL,'[\"Vera\"]'),(10767426,2568708,5,'director',NULL,NULL),(10767426,3963513,6,'writer','novel',NULL),(10767426,10895278,7,'producer','producer',NULL),(10767426,801836,8,'producer','producer',NULL),(10767426,5684048,9,'producer','producer',NULL),(1077084,554571,10,'producer','executive producer',NULL),(1077084,1679614,1,'actress',NULL,'[\"Madre Ana\"]'),(1077084,1537814,2,'actor',NULL,'[\"Director revista\"]'),(1077084,309510,3,'actress',NULL,'[\"Syra\"]'),(1077084,1581273,4,'actor',NULL,'[\"Comandante\"]'),(1077084,165419,5,'director',NULL,NULL),(1077084,6103223,6,'writer','writer',NULL),(1077084,616393,7,'writer','writer',NULL),(1077084,187546,8,'producer','executive producer',NULL),(1077084,1089831,9,'producer','executive producer',NULL),(1077094,1777437,10,'cinematographer',NULL,NULL),(1077094,1066974,1,'actress',NULL,'[\"Suzuko Satô\"]'),(1077094,1719673,2,'actor',NULL,'[\"Ryôhei Nakajima\"]'),(1077094,847651,3,'actor',NULL,'[\"Haruo Fujii\"]'),(1077094,2102221,4,'actor',NULL,'[\"Yuuki\"]'),(1077094,2135242,5,'director',NULL,NULL),(1077094,1803302,6,'producer','producer',NULL),(1077094,535338,7,'producer','producer',NULL),(1077094,3577477,8,'composer',NULL,NULL),(1077094,3577170,9,'composer',NULL,NULL),(1077258,535,1,'actress',NULL,'[\"Cherry Darling\"]'),(1077258,135585,2,'actor',NULL,'[\"Wray\"]'),(1077258,982,3,'actor',NULL,'[\"Dr. William Block\"]'),(1077258,5420,4,'actress',NULL,'[\"Dr. Dakota Block\"]'),(1077258,1675,5,'director',NULL,NULL),(1077258,42882,6,'producer','producer',NULL),(1077258,233,7,'producer','producer',NULL),(1077258,542450,8,'editor',NULL,NULL),(1077258,431665,9,'production_designer',NULL,NULL),(1077262,2012534,10,'cinematographer',NULL,NULL),(1077262,3360446,1,'actor',NULL,'[\"Nasri\"]'),(1077262,3358440,2,'actress',NULL,'[\"Ilham\"]'),(1077262,3351889,3,'actor',NULL,'[\"Shata\"]'),(1077262,3358418,4,'actor',NULL,'[\"Abu-Lias\"]'),(1077262,2738713,5,'director',NULL,NULL),(1077262,1760871,6,'director',NULL,NULL),(1077262,200474,7,'producer','producer',NULL),(1077262,439003,8,'producer','producer',NULL),(1077262,2732734,9,'producer','producer',NULL),(1077274,1162030,1,'actress',NULL,'[\"Yobi\"]'),(1077274,2011387,2,'actor',NULL,'[\"Hwang Geum-ee\"]'),(1077274,1090408,3,'director',NULL,NULL),(1077274,12262257,4,'producer','producer',NULL),(1077274,3013105,5,'producer','producer',NULL),(1077274,3589774,6,'producer','producer',NULL),(1077274,8020079,7,'producer','producer',NULL),(1077274,2150123,8,'composer',NULL,NULL),(1077368,1791785,10,'producer','producer',NULL),(1077368,136,1,'actor',NULL,'[\"Barnabas Collins\"]'),(1077368,201,2,'actress',NULL,'[\"Elizabeth Collins Stoddard\"]'),(1077368,1200692,3,'actress',NULL,'[\"Angelique Bouchard\"]'),(1077368,307,4,'actress',NULL,'[\"Dr. Julia Hoffman\"]'),(1077368,318,5,'director',NULL,NULL),(1077368,334381,6,'writer','screenplay',NULL),(1077368,41864,7,'writer','story',NULL),(1077368,193303,8,'writer','television series',NULL),(1077368,218259,9,'producer','producer',NULL),(10782876,2312424,10,'cinematographer',NULL,NULL),(10782876,2572554,1,'actress',NULL,'[\"Claire Carpenter\"]'),(10782876,7110007,2,'actress',NULL,'[\"Mikayla Michaels\"]'),(10782876,5911628,3,'actor',NULL,'[\"Liam Henderson\"]'),(10782876,3845743,4,'actress',NULL,'[\"Jill Millions\"]'),(10782876,3044084,5,'director',NULL,NULL),(10782876,2998667,6,'writer',NULL,NULL),(10782876,1863720,7,'producer','producer',NULL),(10782876,572243,8,'producer','producer',NULL),(10782876,3210749,9,'composer',NULL,NULL),(1078588,1014034,10,'producer','producer',NULL),(1078588,139,1,'actress',NULL,'[\"Sara Fitzgerald\"]'),(1078588,1113550,2,'actress',NULL,'[\"Anna Fitzgerald\"]'),(1078588,285,3,'actor',NULL,'[\"Campbell Alexander\"]'),(1078588,1063878,4,'actor',NULL,'[\"Pawn Shop Proprietor\"]'),(1078588,1024,5,'director',NULL,NULL),(1078588,505230,6,'writer','screenplay',NULL),(1078588,682030,7,'writer','novel',NULL),(1078588,325903,8,'producer','producer',NULL),(1078588,425741,9,'producer','producer',NULL),(1078600,757814,10,'editor',NULL,NULL),(1078600,526019,1,'actor',NULL,'[\"Gabriel\"]'),(1078600,721,2,'actress',NULL,'[\"Gloria Duque\"]'),(1078600,317725,3,'actress',NULL,'[\"Aurora\"]'),(1078600,529813,4,'actress',NULL,'[\"Paloma Molina\"]'),(1078600,246503,5,'director',NULL,NULL),(1078600,133357,6,'producer','producer',NULL),(1078600,520831,7,'producer','producer',NULL),(1078600,1764787,8,'composer',NULL,NULL),(1078600,271694,9,'cinematographer',NULL,NULL),(1078912,6293,10,'composer',NULL,NULL),(1078912,1774,1,'actor',NULL,'[\"Larry Daley\"]'),(1078912,5562,2,'actor',NULL,'[\"Jedediah\"]'),(1078912,10736,3,'actress',NULL,'[\"Amelia Earhart\"]'),(1078912,279,4,'actor',NULL,'[\"Kahmunrah\",\"The Thinker\",\"Abe Lincoln\"]'),(1078912,506613,5,'director',NULL,NULL),(1078912,304830,6,'writer','written by',NULL),(1078912,502073,7,'writer','written by',NULL),(1078912,55431,8,'producer','producer',NULL),(1078912,1060,9,'producer','producer',NULL),(1079444,896107,10,'writer','excerpts written by',NULL),(1079444,616091,1,'actress',NULL,'[\"George Lass\"]'),(1079444,89485,2,'actor',NULL,'[\"Mason\"]'),(1079444,944077,3,'actress',NULL,'[\"Daisy\"]'),(1079444,4982,4,'actress',NULL,'[\"Roxy Harvey\"]'),(1079444,378893,5,'director',NULL,NULL),(1079444,298188,6,'writer','characters',NULL),(1079444,556435,7,'writer','written by',NULL),(1079444,323752,8,'writer','written by',NULL),(1079444,275234,9,'writer','excerpts written by',NULL),(1079968,61982,10,'cinematographer','director of photography',NULL),(1079968,1225406,1,'actor',NULL,'[\"Jack\"]'),(1079968,1631269,2,'actress',NULL,'[\"Damsel in Distress\",\"Jillian\"]'),(1079968,502,3,'actor',NULL,'[\"Headmaster\"]'),(1079968,1442940,4,'actress',NULL,'[\"Rapunzel\"]'),(1079968,876683,5,'director',NULL,NULL),(1079968,462164,6,'writer','screenplay',NULL),(1079968,546083,7,'writer','screenplay',NULL),(1079968,214483,8,'producer','producer',NULL),(1079968,589172,9,'composer',NULL,NULL),(1080016,3229505,10,'writer','screenplay by',NULL),(1080016,5380,1,'actor',NULL,'[\"Manny\"]'),(1080016,491,2,'actor',NULL,'[\"Sid\"]'),(1080016,1459,3,'actor',NULL,'[\"Diego\"]'),(1080016,1148186,4,'actress',NULL,'[\"Madison (Diatryma Girl)\"]'),(1080016,757858,5,'director',NULL,NULL),(1080016,862211,6,'director','co-director',NULL),(1080016,73850,7,'writer','screenplay by',NULL),(1080016,10004,8,'writer','screenplay by',NULL),(1080016,718514,9,'writer','screenplay by',NULL),(10816484,2850179,10,'composer',NULL,NULL),(10816484,699756,1,'actress',NULL,'[\"Elisa\"]'),(10816484,8111444,2,'actress',NULL,'[\"Anna\"]'),(10816484,502412,3,'actor',NULL,'[\"Alessio\"]'),(10816484,3322537,4,'actress',NULL,'[\"Carla\"]'),(10816484,1267569,5,'director',NULL,NULL),(10816484,309979,6,'writer',NULL,NULL),(10816484,3291357,7,'writer',NULL,NULL),(10816484,10918971,8,'writer',NULL,NULL),(10816484,643647,9,'producer','producer',NULL),(1082009,63266,10,'editor',NULL,NULL),(1082009,94789,1,'actress',NULL,'[\"Hélène\"]'),(1082009,177,2,'actor',NULL,'[\"Kröger\"]'),(1082009,719220,3,'actor',NULL,'[\"Ange\"]'),(1082009,884,4,'actress',NULL,'[\"L\'Américaine\"]'),(1082009,98639,5,'director',NULL,NULL),(1082009,377534,6,'writer','novel',NULL),(1082009,78712,7,'producer','producer',NULL),(1082009,271446,8,'producer','producer',NULL),(1082009,488625,9,'cinematographer',NULL,NULL),(1082601,194356,10,'cinematographer','director of photography',NULL),(1082601,1475594,1,'actor',NULL,'[\"Shawn MacArthur\"]'),(1082601,5024,2,'actor',NULL,'[\"Harvey Boarden\"]'),(1082601,350079,3,'actor',NULL,'[\"Martinez\"]'),(1082601,1748489,4,'actress',NULL,'[\"Zulay Velez\"]'),(1082601,1996918,5,'director',NULL,NULL),(1082601,612855,6,'writer','written by',NULL),(1082601,592746,7,'producer','producer',NULL),(1082601,253486,8,'composer',NULL,NULL),(1082601,3166649,9,'composer',NULL,NULL),(1082807,939167,10,'editor',NULL,NULL),(1082807,302330,1,'actor',NULL,'[\"Mike Milch\"]'),(1082807,1282,2,'actor',NULL,'[\"Barry Norris\"]'),(1082807,5245722,3,'actress',NULL,'[\"Leandra Florez\"]'),(1082807,1525,4,'actor',NULL,'[\"Wendell Dukes\"]'),(1082807,572562,5,'director',NULL,NULL),(1082807,348181,6,'writer','written by',NULL),(1082807,755911,7,'producer','producer',NULL),(1082807,61045,8,'composer','composer',NULL),(1082807,763030,9,'cinematographer','director of photography',NULL),(1082853,1387379,10,'composer',NULL,NULL),(1082853,98,1,'actress',NULL,'[\"Sue\"]'),(1082853,1872,2,'actor',NULL,'[\"Mike\"]'),(1082853,437,3,'actor',NULL,'[\"Jango\"]'),(1082853,553269,4,'actress',NULL,'[\"Trish\"]'),(1082853,67619,5,'director',NULL,NULL),(1082853,2125212,6,'producer','producer',NULL),(1082853,324041,7,'producer','producer',NULL),(1082853,454004,8,'producer','producer',NULL),(1082853,2217,9,'composer',NULL,NULL),(1082868,13396,10,'producer','producer',NULL),(1082868,1358539,1,'actress',NULL,'[\"Angela Vidal\"]'),(1082868,4996,2,'actor',NULL,'[\"Scott Percival\"]'),(1082868,1551922,3,'actor',NULL,'[\"Danny Wilensky\"]'),(1082868,379596,4,'actor',NULL,'[\"Jake\"]'),(1082868,235719,5,'director',NULL,NULL),(1082868,1803105,6,'writer','screenplay by',NULL),(1082868,49371,7,'writer','based on the motion picture \"Rec\" written by',NULL),(1082868,1084937,8,'writer','based on the motion picture \"Rec\" written by',NULL),(1082868,687042,9,'writer','based on the motion picture \"Rec\" written by',NULL),(1082876,2191251,10,'production_designer',NULL,NULL),(1082876,1560464,1,'actress',NULL,'[\"Guide\",\"Mom\",\"Mob Daughter\"]'),(1082876,312475,2,'actor',NULL,'[\"Sydney\"]'),(1082876,1728766,3,'actress',NULL,'[\"Sister MacDonald\"]'),(1082876,1736769,4,'actress',NULL,'[\"Little Girl\"]'),(1082876,1290115,5,'director',NULL,NULL),(1082876,595668,6,'producer','producer',NULL),(1082876,1786083,7,'composer',NULL,NULL),(1082876,1752338,8,'cinematographer',NULL,NULL),(1082876,2977380,9,'editor',NULL,NULL),(1083452,717230,10,'producer','producer',NULL),(1083452,5473782,1,'actor',NULL,'[\"Eddie Edwards\"]'),(1083452,413168,2,'actor',NULL,'[\"Bronson Peary\"]'),(1083452,8030441,3,'actor',NULL,'[\"Eddie (10 years old)\"]'),(1083452,366846,4,'actress',NULL,'[\"Janette\"]'),(1083452,2077,5,'director',NULL,NULL),(1083452,2035069,6,'writer','story',NULL),(1083452,2306331,7,'writer','screenplay',NULL),(1083452,92061,8,'producer','producer',NULL),(1083452,534173,9,'producer','producer',NULL),(1083456,5630,10,'cinematographer',NULL,NULL),(1083456,647638,1,'actor',NULL,'[\"Nick Brady\"]'),(1083456,194900,2,'actor',NULL,'[\"Shawn Colfax\"]'),(1083456,2105255,3,'actress',NULL,'[\"Carly\"]'),(1083456,801356,4,'actress',NULL,'[\"Diora\"]'),(1083456,323239,5,'director',NULL,NULL),(1083456,343446,6,'producer','producer',NULL),(1083456,419779,7,'producer','producer',NULL),(1083456,918482,8,'producer','producer',NULL),(1083456,6099,9,'composer',NULL,NULL),(10838180,574625,10,'producer','producer',NULL),(10838180,206,1,'actor',NULL,'[\"Neo\",\"Thomas Anderson\"]'),(10838180,5251,2,'actress',NULL,'[\"Trinity\",\"Tiffany\"]'),(10838180,5584344,3,'actor',NULL,'[\"Morpheus\",\"Agent Smith\"]'),(10838180,2676147,4,'actor',NULL,'[\"Smith\"]'),(10838180,905154,5,'director',NULL,NULL),(10838180,3290967,6,'writer','written by',NULL),(10838180,3097752,7,'writer','written by',NULL),(10838180,905152,8,'writer','based on characters created by',NULL),(10838180,384294,9,'producer','producer',NULL),(1083845,714461,10,'editor',NULL,NULL),(1083845,914612,1,'actress',NULL,'[\"Pauline Fossil\"]'),(1083845,1306081,2,'actress',NULL,'[\"Petrova Fossil\"]'),(1083845,2377903,3,'actress',NULL,'[\"Posy Fossil\"]'),(1083845,288976,4,'actress',NULL,'[\"Sylvia Brown\"]'),(1083845,325128,5,'director',NULL,NULL),(1083845,834004,6,'writer','novel',NULL),(1083845,858912,7,'writer','screenplay',NULL),(1083845,999482,8,'composer',NULL,NULL),(1083845,339046,9,'cinematographer',NULL,NULL),(1084950,1958233,10,'composer',NULL,NULL),(1084950,4266,1,'actress',NULL,'[\"Kym\"]'),(1084950,1679669,2,'actress',NULL,'[\"Rachel\"]'),(1084950,700,3,'actress',NULL,'[\"Abby\"]'),(1084950,1659221,4,'actor',NULL,'[\"Walter\",\"Bowtie Party Guest\"]'),(1084950,1129,5,'director',NULL,NULL),(1084950,525886,6,'writer','written by',NULL),(1084950,35465,7,'producer','producer',NULL),(1084950,686887,8,'producer','producer',NULL),(1084950,2890862,9,'composer',NULL,NULL),(10855768,4477558,10,'composer','composer',NULL),(10855768,341377,1,'actor',NULL,'[\"James\"]'),(10855768,13877751,2,'actress',NULL,'[\"Young June\"]'),(10855768,505,3,'actress',NULL,'[\"Grace\"]'),(10855768,7901417,4,'actress',NULL,'[\"Field Reporter\"]'),(10855768,4946908,5,'director',NULL,NULL),(10855768,4148345,6,'director',NULL,NULL),(10855768,3539578,7,'writer','story by',NULL),(10855768,3792134,8,'writer','story by',NULL),(10855768,5256327,9,'producer','producer',NULL),(1085779,815432,10,'producer','producer',NULL),(1085779,1491631,1,'actor',NULL,'[\"Dane\"]'),(1085779,2247245,2,'actress',NULL,'[\"Julie\"]'),(1085779,1997480,3,'actor',NULL,'[\"Lucas\"]'),(1085779,1632,4,'actress',NULL,'[\"Susan\"]'),(1085779,1102,5,'director',NULL,NULL),(1085779,1872664,6,'writer','written by',NULL),(1085779,299603,7,'producer','producer',NULL),(1085779,484123,8,'producer','producer',NULL),(1085779,1490949,9,'producer','producer',NULL),(1086064,3078006,10,'producer','producer',NULL),(1086064,206,1,'actor',NULL,'[\"Ted\"]'),(1086064,935664,2,'actor',NULL,'[\"Bill\"]'),(1086064,1102891,3,'actress',NULL,'[\"Kelly\"]'),(1086064,3034977,4,'actress',NULL,'[\"Thea\"]'),(1086064,661751,5,'director',NULL,NULL),(1086064,558533,6,'writer','written by',NULL),(1086064,4412,7,'writer','written by',NULL),(1086064,9273762,8,'producer','producer',NULL),(1086064,472256,9,'producer','producer',NULL),(1086216,212139,10,'production_designer',NULL,NULL),(1086216,330687,1,'actor',NULL,'[\"Bobby Thompson\"]'),(1086216,1211488,2,'actress',NULL,'[\"Kate Montero\"]'),(1086216,785264,3,'actress',NULL,'[\"Sylvia Montero\"]'),(1086216,1880888,4,'actress',NULL,'[\"Sophie Montero\"]'),(1086216,569166,5,'director',NULL,NULL),(1086216,796915,6,'director',NULL,NULL),(1086216,621829,7,'composer',NULL,NULL),(1086216,1102709,8,'cinematographer','director of photography',NULL),(1086216,958393,9,'editor',NULL,NULL),(1086772,340003,10,'composer',NULL,NULL),(1086772,1191,1,'actor',NULL,'[\"Jim\"]'),(1086772,106,2,'actress',NULL,'[\"Lauren\"]'),(1086772,1018488,3,'actress',NULL,'[\"Jen\"]'),(1086772,5265,4,'actor',NULL,'[\"Eddy\"]'),(1086772,178997,5,'director',NULL,NULL),(1086772,578771,6,'writer','written by',NULL),(1086772,784771,7,'writer','written by',NULL),(1086772,316406,8,'producer','producer',NULL),(1086772,440344,9,'producer','producer',NULL),(10867768,6926577,10,'cinematographer',NULL,NULL),(10867768,9992659,1,'actor',NULL,'[\"Bekzat\"]'),(10867768,6904546,2,'actress',NULL,'[\"Ariana\"]'),(10867768,9789764,3,'actor',NULL,'[\"Pukuar\"]'),(10867768,4643507,4,'director',NULL,NULL),(10867768,3519336,5,'writer',NULL,NULL),(10867768,4757224,6,'producer','producer',NULL),(10867768,1168672,7,'producer','producer',NULL),(10867768,2636294,8,'producer','producer',NULL),(10867768,10939092,9,'composer','composer',NULL),(10868922,3107294,1,'actress',NULL,'[\"Abbie Rose\"]'),(10868922,6779847,2,'actress',NULL,'[\"Three\"]'),(10868922,3701591,3,'actress',NULL,'[\"Two\"]'),(10868922,8248123,4,'actress',NULL,'[\"Four\"]'),(10868922,6797975,5,'director',NULL,NULL),(10868922,6423045,6,'composer',NULL,NULL),(10868922,4813554,7,'cinematographer',NULL,NULL),(10868922,404527,8,'editor',NULL,NULL),(10872600,270559,10,'producer','producer',NULL),(10872600,4043618,1,'actor',NULL,'[\"Peter Parker\",\"Spider-Man\"]'),(10872600,3918035,2,'actress',NULL,'[\"MJ\"]'),(10872600,1212722,3,'actor',NULL,'[\"Doctor Strange\"]'),(10872600,8188622,4,'actor',NULL,'[\"Ned Leeds\"]'),(10872600,1218281,5,'director',NULL,NULL),(10872600,571344,6,'writer','written by',NULL),(10872600,1273099,7,'writer','written by',NULL),(10872600,498278,8,'writer','based on the Marvel comic book by',NULL),(10872600,228492,9,'writer','based on the Marvel comic book by',NULL),(10885406,2966078,10,'actor',NULL,'[\"Mark\"]'),(10885406,2885728,1,'actress',NULL,'[\"Main\"]'),(10885406,370582,2,'actor',NULL,'[\"Head Priest\",\"Ferdinand\",\"Narrator\"]'),(10885406,3150446,3,'actress',NULL,'[\"Lutz\"]'),(10885406,2976693,4,'actress',NULL,'[\"Tuuli\"]'),(10885406,468729,5,'actor',NULL,'[\"Benno\"]'),(10885406,1046347,6,'actress',NULL,'[\"Eva\"]'),(10885406,1115899,7,'actor',NULL,'[\"Gunther\"]'),(10885406,5213242,8,'actress',NULL,'[\"Delia\"]'),(10885406,5097979,9,'actor',NULL,'[\"Ferdinand\"]'),(10888594,1150796,10,'composer','music composer',NULL),(10888594,6795,1,'actor',NULL,'[\"Radhe\"]'),(10888594,7796669,2,'actress',NULL,'[\"Diya\"]'),(10888594,393535,3,'actor',NULL,'[\"Rana\"]'),(10888594,6763,4,'actor',NULL,'[\"Avinash\"]'),(10888594,222150,5,'director',NULL,NULL),(10888594,1238337,6,'writer','screenplay',NULL),(10888594,6859370,7,'writer','screenplay',NULL),(10888594,12214710,8,'producer','producer',NULL),(10888594,451326,9,'producer','producer',NULL),(1091191,326040,10,'producer','producer',NULL),(1091191,242,1,'actor',NULL,'[\"Marcus Luttrell\"]'),(1091191,2018237,2,'actor',NULL,'[\"Michael Murphy\"]'),(1091191,386472,3,'actor',NULL,'[\"Danny Dietz\"]'),(1091191,4936,4,'actor',NULL,'[\"Matt \'Axe\' Axelson\"]'),(1091191,916,5,'director',NULL,NULL),(1091191,2877226,6,'writer','book',NULL),(1091191,732961,7,'writer','book',NULL),(1091191,2583828,8,'producer','producer',NULL),(1091191,256542,9,'producer','producer',NULL),(1091722,820987,10,'cinematographer','director of photography',NULL),(1091722,251986,1,'actor',NULL,'[\"James Brennan\"]'),(1091722,829576,2,'actress',NULL,'[\"Em Lewin\"]'),(1091722,5351,3,'actor',NULL,'[\"Mike Connell\"]'),(1091722,771414,4,'actor',NULL,'[\"Joel\"]'),(1091722,609549,5,'director',NULL,NULL),(1091722,136904,6,'producer','producer',NULL),(1091722,394046,7,'producer','producer',NULL),(1091722,454004,8,'producer','producer',NULL),(1091722,1306785,9,'composer',NULL,NULL),(10919362,4673239,10,'editor',NULL,NULL),(10919362,7954550,1,'actress',NULL,'[\"AJ\"]'),(10919362,366846,2,'actress',NULL,'[\"Tina\"]'),(10919362,5947964,3,'actress',NULL,'[\"Isla\"]'),(10919362,1620545,4,'actress',NULL,'[\"Lucy\"]'),(10919362,5485169,5,'director',NULL,NULL),(10919362,6672096,6,'producer','producer',NULL),(10919362,5938033,7,'composer',NULL,NULL),(10919362,56498,8,'cinematographer',NULL,NULL),(10919362,3550086,9,'cinematographer',NULL,NULL),(10919380,3015807,10,'editor',NULL,NULL),(10919380,681,1,'actor',NULL,'[\"The Butcher\"]'),(10919380,1105980,2,'actress',NULL,'[\"Millie\"]'),(10919380,9305936,3,'actress',NULL,'[\"Nyla Chones\"]'),(10919380,8048167,4,'actor',NULL,'[\"Josh Detmer\"]'),(10919380,484907,5,'director',NULL,NULL),(10919380,3208182,6,'writer','written by',NULL),(10919380,89658,7,'producer','producer',NULL),(10919380,566970,8,'composer',NULL,NULL),(10919380,1124802,9,'cinematographer','director of photography',NULL),(1092019,3599794,10,'composer',NULL,NULL),(1092019,531027,1,'actor',NULL,'[\"Johan\"]'),(1092019,1879386,2,'actress',NULL,'[\"Tessa\"]'),(1092019,777680,3,'actor',NULL,'[\"Joska\"]'),(1092019,548942,4,'actress',NULL,'[\"Therapeute 1\"]'),(1092019,474233,5,'director',NULL,NULL),(1092019,1007747,6,'writer','scenario',NULL),(1092019,1803619,7,'producer','producer',NULL),(1092019,887508,8,'producer','producer',NULL),(1092019,91281,9,'composer',NULL,NULL),(1092026,3394,10,'cinematographer','director of photography',NULL),(1092026,670408,1,'actor',NULL,'[\"Graeme Willy\"]'),(1092026,296545,2,'actor',NULL,'[\"Clive Gollings\"]'),(1092026,736622,3,'actor',NULL,'[\"Paul\"]'),(1092026,1904886,4,'actress',NULL,'[\"Young Tara\"]'),(1092026,609549,5,'director',NULL,NULL),(1092026,79677,6,'producer','producer',NULL),(1092026,271479,7,'producer','producer',NULL),(1092026,661912,8,'producer','producer',NULL),(1092026,3417,9,'composer',NULL,NULL),(1092053,878586,10,'producer','producer',NULL),(1092053,792198,1,'actress',NULL,'[\"Ro\",\"Rosella\"]'),(1092053,1738571,2,'actress',NULL,'[\"Rosella\"]'),(1092053,432228,3,'actor',NULL,'[\"Prince Antonio\"]'),(1092053,311081,4,'actor',NULL,'[\"Sagi\"]'),(1092053,1256147,5,'director',NULL,NULL),(1092053,748429,6,'writer','written by',NULL),(1092053,504327,7,'writer','written by',NULL),(1092053,1043325,8,'writer','based upon: Barbie characters created by',NULL),(1092053,243969,9,'producer','producer',NULL),(10931784,3743097,10,'cinematographer',NULL,NULL),(10931784,2993012,1,'actress',NULL,'[\"Aisha\"]'),(10931784,1157358,2,'actress',NULL,'[\"Amy\"]'),(10931784,2344310,3,'actor',NULL,'[\"Malik\"]'),(10931784,1767528,4,'actor',NULL,'[\"Adam\"]'),(10931784,2762302,5,'director',NULL,NULL),(10931784,3795048,6,'producer','producer',NULL),(10931784,815610,7,'producer','producer',NULL),(10931784,322879,8,'composer',NULL,NULL),(10931784,7464978,9,'composer',NULL,NULL),(1093357,414930,10,'producer','producer',NULL),(1093357,386472,1,'actor',NULL,'[\"Sean\"]'),(1093357,1880888,2,'actress',NULL,'[\"Natalie\"]'),(1093357,1540404,3,'actor',NULL,'[\"Ben\"]'),(1093357,1592225,4,'actress',NULL,'[\"Anne\"]'),(1093357,329755,5,'director',NULL,NULL),(1093357,3123612,6,'writer','screenplay',NULL),(1093357,92018,7,'writer','story',NULL),(1093357,2761113,8,'writer','story',NULL),(1093357,67457,9,'producer','producer',NULL),(10935560,346790,10,'producer','producer',NULL),(10935560,6620696,1,'actress',NULL,'[\"Diana\"]'),(10935560,782,2,'actress',NULL,'[\"Rita\"]'),(10935560,2081756,3,'actor',NULL,'[\"Matteo\"]'),(10935560,4041738,4,'actor',NULL,'[\"Chief Inspector Aleardi\"]'),(10935560,783,5,'director',NULL,NULL),(10935560,274853,6,'writer','screenplay by',NULL),(10935560,14808,7,'producer','producer',NULL),(10935560,1330234,8,'producer','producer',NULL),(10935560,5897824,9,'producer','producer',NULL),(1093908,988,10,'producer','producer',NULL),(1093908,279545,1,'actress',NULL,'[\"Rebecca Bloomwood\"]'),(1093908,199215,2,'actor',NULL,'[\"Luke Brandon\"]'),(1093908,1269983,3,'actress',NULL,'[\"Suze\"]'),(1093908,349,4,'actress',NULL,'[\"Jane Bloomwood\"]'),(1093908,389591,5,'director',NULL,NULL),(1093908,414117,6,'writer','screenplay',NULL),(1093908,278759,7,'writer','screenplay',NULL),(1093908,1547852,8,'writer','screenplay',NULL),(1093908,1536494,9,'writer','books \"Confessions of a Shopaholic\" and \"Shopaholic Takes Manhattan\"',NULL),(1094278,2761542,1,'actor',NULL,'[\"Stefek\"]'),(1094278,2761555,2,'actress',NULL,'[\"Elka\"]'),(1094278,764671,3,'actor',NULL,'[\"Father of Stefek and Elka\"]'),(1094278,1435653,4,'actor',NULL,'[\"Jerzy\"]'),(1094278,1435889,5,'director',NULL,NULL),(1094278,1435498,6,'composer',NULL,NULL),(1094278,1434453,7,'cinematographer',NULL,NULL),(1094278,344847,8,'editor',NULL,NULL),(1094278,1454773,9,'production_designer',NULL,NULL),(10944760,1789850,10,'producer','producer',NULL),(10944760,512071,1,'actor',NULL,'[\"Vincent\"]'),(10944760,5777565,2,'actress',NULL,'[\"Alexia\",\"Adrien\"]'),(10944760,4469165,3,'actress',NULL,'[\"Justine\"]'),(10944760,9593750,4,'actor',NULL,'[\"Rayane\"]'),(10944760,4469445,5,'director',NULL,NULL),(10944760,15149,6,'writer','writing consultant',NULL),(10944760,5320419,7,'writer','writing consultant',NULL),(10944760,1770774,8,'writer','writing consultant',NULL),(10944760,3856500,9,'producer','producer',NULL),(1094661,1002018,10,'writer',NULL,NULL),(1094661,90469,1,'actress',NULL,'[\"Young Coco Chanel\"]'),(1094661,511,2,'actress',NULL,'[\"Old Coco Chanel\"]'),(1094661,803263,3,'actor',NULL,'[\"Boy Capel\"]'),(1094661,1779438,4,'actress',NULL,'[\"Adrienne\"]'),(1094661,240995,5,'director',NULL,NULL),(1094661,140572,6,'writer','screenplay',NULL),(1094661,142849,7,'writer',NULL,NULL),(1094661,368774,8,'writer','writer',NULL),(1094661,575804,9,'writer',NULL,NULL),(1095217,2611223,10,'producer','producer',NULL),(1095217,115,1,'actor',NULL,'[\"Terence McDonagh\"]'),(1095217,578949,2,'actress',NULL,'[\"Frankie Donnenfield\"]'),(1095217,2963760,3,'actor',NULL,'[\"A \'John\'\"]'),(1095217,174,4,'actor',NULL,'[\"Stevie Pruit\"]'),(1095217,1348,5,'director',NULL,NULL),(1095217,277925,6,'writer','screenplay',NULL),(1095217,1366451,7,'producer','producer',NULL),(1095217,2640881,8,'producer','producer',NULL),(1095217,256542,9,'producer','producer',NULL),(1095442,1074857,10,'production_designer',NULL,NULL),(1095442,2766807,1,'actor',NULL,'[\"Solo\"]'),(1095442,922307,2,'actor',NULL,'[\"William\"]'),(1095442,3060213,3,'actress',NULL,'[\"Alex\"]'),(1095442,3059564,4,'actor',NULL,'[\"Roc\"]'),(1095442,1023919,5,'director',NULL,NULL),(1095442,2478512,6,'writer','written by',NULL),(1095442,649346,7,'producer','producer',NULL),(1095442,2915307,8,'composer',NULL,NULL),(1095442,1320131,9,'cinematographer','director of photography',NULL),(10954600,7281223,10,'writer','Wasp created by',NULL),(10954600,748620,1,'actor',NULL,'[\"Scott Lang\",\"Ant-Man\"]'),(10954600,1431940,2,'actress',NULL,'[\"Hope Van Dyne\",\"The Wasp\"]'),(10954600,140,3,'actor',NULL,'[\"Dr. Hank Pym\"]'),(10954600,201,4,'actress',NULL,'[\"Janet Van Dyne\"]'),(10954600,715636,5,'director',NULL,NULL),(10954600,3278218,6,'writer','written by',NULL),(10954600,498278,7,'writer','Ant-Man created by',NULL),(10954600,1293367,8,'writer','Ant-Man created by',NULL),(10954600,456158,9,'writer','Ant-Man created by',NULL),(10954652,2642389,10,'composer',NULL,NULL),(10954652,305558,1,'actor',NULL,'[\"Guy\"]'),(10954652,3043279,2,'actress',NULL,'[\"Prisca\"]'),(10954652,1722,3,'actor',NULL,'[\"Charles\"]'),(10954652,1842974,4,'actor',NULL,'[\"Trent Aged 15\"]'),(10954652,796117,5,'director',NULL,NULL),(10954652,506584,6,'writer','based on the graphic novel \"Sandcastle\" by',NULL),(10954652,3382063,7,'writer','based on the graphic novel \"Sandcastle\" by',NULL),(10954652,81514,8,'producer','producer',NULL),(10954652,2248864,9,'producer','producer',NULL),(1095496,2758536,1,'self',NULL,'[\"Self\"]'),(1095496,370383,2,'self',NULL,'[\"Self\"]'),(1095496,2768764,3,'self',NULL,'[\"Self\"]'),(1095496,2758609,4,'self',NULL,'[\"Self\"]'),(1095496,2770634,5,'composer',NULL,NULL),(1095496,2758573,6,'self',NULL,'[\"Self\"]'),(1095496,2772376,7,'self',NULL,'[\"Self\"]'),(1095496,2767128,8,'actor',NULL,NULL),(10954984,1968338,10,'production_designer',NULL,NULL),(10954984,2257207,1,'actor',NULL,'[\"OJ Haywood\"]'),(10954984,1551130,2,'actress',NULL,'[\"Emerald Haywood\"]'),(10954984,5155952,3,'actor',NULL,'[\"Angel Torres\"]'),(10954984,699,4,'actor',NULL,'[\"Antlers Holst\"]'),(10954984,1443502,5,'director',NULL,NULL),(10954984,9827373,6,'producer','producer',NULL),(10954984,8752173,7,'composer',NULL,NULL),(10954984,887227,8,'cinematographer','director of photography',NULL),(10954984,2538611,9,'editor',NULL,NULL),(1095573,392744,10,'producer','producer',NULL),(1095573,1501050,1,'actor',NULL,'[\"Austin\"]'),(1095573,2200866,2,'actor',NULL,'[\"Tyrone\"]'),(1095573,1824236,3,'actor',NULL,'[\"Pablo\"]'),(1095573,2326353,4,'actor',NULL,'[\"Pablo\"]'),(1095573,793269,5,'director',NULL,NULL),(1095573,1333355,6,'writer','created by',NULL),(1095573,1006404,7,'writer','written by',NULL),(1095573,996011,8,'writer','head writer',NULL),(1095573,230257,9,'producer','producer',NULL),(1097636,153845,10,'composer',NULL,NULL),(1097636,919798,1,'actor',NULL,'[\"Scooby-Doo\",\"Fred Jones\"]'),(1097636,440487,2,'actor',NULL,'[\"Shaggy Rogers\"]'),(1097636,169934,3,'actress',NULL,'[\"Velma Dinkley\"]'),(1097636,217221,4,'actress',NULL,'[\"Daphne Blake\"]'),(1097636,1245812,5,'director',NULL,NULL),(1097636,770649,6,'writer','written by',NULL),(1097636,1443120,7,'writer','additional material',NULL),(1097636,2067371,8,'writer','additional material',NULL),(1097636,212868,9,'producer','producer',NULL),(1097643,932144,10,'producer','producer',NULL),(1097643,1426,1,'actor',NULL,'[\"Fergus\"]'),(1097643,836343,2,'actor',NULL,'[\"Martin\"]'),(1097643,954225,3,'actor',NULL,'[\"Sean\"]'),(1097643,1461267,4,'actress',NULL,'[\"Lara\"]'),(1097643,804556,5,'director',NULL,NULL),(1097643,2855608,6,'writer','inspired by the book \"Fifty Dead Man Walking\"',NULL),(1097643,3120627,7,'writer','inspired by the book \"Fifty Dead Man Walking\"',NULL),(1097643,373812,8,'producer','producer',NULL),(1097643,479070,9,'producer','producer',NULL),(1099212,604878,10,'producer','producer',NULL),(1099212,829576,1,'actress',NULL,'[\"Bella Swan\"]'),(1099212,1500155,2,'actor',NULL,'[\"Edward Cullen\"]'),(1099212,121605,3,'actor',NULL,'[\"Charlie Swan\"]'),(1099212,1020124,4,'actress',NULL,'[\"Renée\"]'),(1099212,362566,5,'director',NULL,NULL),(1099212,742279,6,'writer','screenplay by',NULL),(1099212,2769412,7,'writer','based on the novel \"Twilight\" by',NULL),(1099212,324041,8,'producer','producer',NULL),(1099212,600838,9,'producer','producer',NULL),(10999120,3825122,10,'composer',NULL,NULL),(10999120,2071,1,'actor',NULL,'[\"Present\"]'),(10999120,5351,2,'actor',NULL,'[\"Clint Briggs\"]'),(10999120,818055,3,'actress',NULL,'[\"Kimberly\"]'),(10999120,656300,4,'actor',NULL,'[\"Marley\"]'),(10999120,1890845,5,'director',NULL,NULL),(10999120,1898234,6,'writer','written by',NULL),(10999120,9844093,7,'producer','producer',NULL),(10999120,1819990,8,'producer','producer',NULL),(10999120,465800,9,'producer','producer',NULL),(1100048,323707,10,'cinematographer',NULL,NULL),(1100048,220976,1,'actor',NULL,'[\"Lionel\"]'),(1100048,2841936,2,'actress',NULL,'[\"Joséphine\"]'),(1100048,230521,3,'actress',NULL,'[\"Gabrielle\"]'),(1100048,171499,4,'actor',NULL,'[\"Noé\"]'),(1100048,219136,5,'director',NULL,NULL),(1100048,267288,6,'writer','scenario',NULL),(1100048,62362,7,'producer','producer',NULL),(1100048,702455,8,'producer','producer',NULL),(1100048,863893,9,'composer',NULL,NULL),(1100089,453091,10,'producer','producer',NULL),(1100089,136797,1,'actor',NULL,'[\"John du Pont\"]'),(1100089,1475594,2,'actor',NULL,'[\"Mark Schultz\"]'),(1100089,749263,3,'actor',NULL,'[\"David Schultz\"]'),(1100089,603,4,'actress',NULL,'[\"Jean du Pont\"]'),(1100089,587955,5,'director',NULL,NULL),(1100089,296861,6,'writer','written by',NULL),(1100089,1246,7,'writer','written by',NULL),(1100089,106835,8,'producer','producer',NULL),(1100089,2691892,9,'producer','producer',NULL),(11003218,3957926,10,'producer','producer',NULL),(11003218,115,1,'actor',NULL,'[\"Rob\"]'),(11003218,1842974,2,'actor',NULL,'[\"Amir\"]'),(11003218,35060,3,'actor',NULL,'[\"Darius\"]'),(11003218,10208010,4,'actor',NULL,'[\"Lori\"]'),(11003218,3968825,5,'director',NULL,NULL),(11003218,10324382,6,'writer','story by',NULL),(11003218,1964434,7,'producer','producer',NULL),(11003218,9137077,8,'producer','producer',NULL),(11003218,4918460,9,'producer','producer',NULL),(11007444,125762,10,'composer','composer',NULL),(11007444,1728830,1,'actress',NULL,'[\"Tove Jansson\"]'),(11007444,1279980,2,'actress',NULL,'[\"Vivica Bandler\"]'),(11007444,740075,3,'actor',NULL,'[\"Atos Wirtanen\"]'),(11007444,2478138,4,'actress',NULL,'[\"Tuulikki Pietilä\"]'),(11007444,1039438,5,'director',NULL,NULL),(11007444,2469871,6,'writer','screenplay by',NULL),(11007444,2862817,7,'writer','story by',NULL),(11007444,54358,8,'producer','producer',NULL),(11007444,10648611,9,'producer','producer',NULL),(1103193,1345884,10,'composer',NULL,NULL),(1103193,679150,1,'actress',NULL,'[\"Mar\"]'),(1103193,1531585,2,'actress',NULL,'[\"Isa\"]'),(1103193,905676,3,'actress',NULL,'[\"Dolores\"]'),(1103193,1773440,4,'actress',NULL,'[\"Rosa\"]'),(1103193,534442,5,'director',NULL,NULL),(1103193,2197371,6,'writer','writer',NULL),(1103193,1177317,7,'writer',NULL,NULL),(1103193,73134,8,'producer','producer',NULL),(1103193,306088,9,'producer','producer',NULL),(11032374,5992157,10,'producer','producer',NULL),(11032374,5137121,1,'actor',NULL,'[\"Kamado Tanjirô\"]'),(11032374,6981978,2,'actress',NULL,'[\"Kamado Nezuko\"]'),(11032374,4303311,3,'actor',NULL,'[\"Hashibira Inosuke\"]'),(11032374,1683003,4,'actor',NULL,'[\"Agatsuma Zenitsu\"]'),(11032374,1417038,5,'director',NULL,NULL),(11032374,10281577,6,'writer','manga: \"Kimetsu no yaiba\"',NULL),(11032374,11019861,7,'writer','screenplay',NULL),(11032374,12138847,8,'producer','producer',NULL),(11032374,4992675,9,'producer','producer',NULL),(1103982,1275738,10,'composer',NULL,NULL),(1103982,2340248,1,'actress',NULL,'[\"Chelsea\",\"Christine\"]'),(1103982,764020,2,'actor',NULL,'[\"Chris\"]'),(1103982,3554675,3,'actor',NULL,'[\"Phillip\"]'),(1103982,1600109,4,'actor',NULL,'[\"Waiter\"]'),(1103982,1752,5,'director',NULL,NULL),(1103982,505522,6,'writer','written by',NULL),(1103982,2718,7,'writer','written by',NULL),(1103982,414423,8,'producer','producer',NULL),(1103982,906136,9,'producer','producer',NULL),(1104001,513974,10,'writer','characters',NULL),(1104001,313,1,'actor',NULL,'[\"Kevin Flynn\",\"Clu\"]'),(1104001,1330560,2,'actor',NULL,'[\"Sam Flynn\"]'),(1104001,1312575,3,'actress',NULL,'[\"Quorra\"]'),(1104001,310,4,'actor',NULL,'[\"Alan Bradley\",\"Tron\"]'),(1104001,2676052,5,'director',NULL,NULL),(1104001,457736,6,'writer','screenplay',NULL),(1104001,395271,7,'writer','screenplay',NULL),(1104001,460206,8,'writer','story',NULL),(1104001,1600872,9,'writer','story',NULL),(1104733,758518,10,'composer',NULL,NULL),(1104733,176869,1,'actor',NULL,'[\"Dana Marschz\"]'),(1104733,223,2,'actress',NULL,'[\"Elisabeth Shue\"]'),(1104733,1416,3,'actress',NULL,'[\"Brie Marschz\"]'),(1104733,1928515,4,'actor',NULL,'[\"Octavio\"]'),(1104733,281598,5,'director',NULL,NULL),(1104733,103702,6,'writer','written by',NULL),(1104733,1659903,7,'producer','producer',NULL),(1104733,2811837,8,'producer','producer',NULL),(1104733,753083,9,'producer','producer',NULL),(1105263,756145,10,'composer',NULL,NULL),(1105263,1040968,1,'actor',NULL,'[\"Ichigo Kurosaki\"]'),(1105263,1046347,2,'actress',NULL,'[\"Rukia Kuchiki\"]'),(1105263,1948682,3,'actor',NULL,'[\"Sado \'Chad\' Yasutora\"]'),(1105263,1617276,4,'actor',NULL,'[\"Uryuu Ishida\"]'),(1105263,8352,5,'director',NULL,NULL),(1105263,812228,6,'writer','script',NULL),(1105263,1818197,7,'writer','manga',NULL),(1105263,8146780,8,'producer','producer',NULL),(1105263,353702,9,'producer','producer',NULL),(11052808,1534553,10,'composer',NULL,NULL),(11052808,1869756,1,'actress',NULL,'[\"Kim Ji-Yeong\"]'),(11052808,1508003,2,'actor',NULL,'[\"Jung Dae-Hyun\"]'),(11052808,453605,3,'actress',NULL,'[\"Mi-Sook\"]'),(11052808,9411915,4,'actor',NULL,'[\"Ji-Suk\"]'),(11052808,5999730,5,'director',NULL,NULL),(11052808,12011967,6,'writer','novel',NULL),(11052808,6105319,7,'writer','written by',NULL),(11052808,12011966,8,'producer','producer',NULL),(11052808,9679561,9,'producer','producer',NULL),(11054164,1031648,10,'cinematographer',NULL,NULL),(11054164,1739764,1,'actress',NULL,'[\"Alison\"]'),(11054164,3315962,2,'actor',NULL,'[\"Michael\"]'),(11054164,1399980,3,'actor',NULL,'[\"Daniel\"]'),(11054164,166559,4,'actress',NULL,'[\"Janja\"]'),(11054164,198912,5,'director',NULL,NULL),(11054164,5696074,6,'writer',NULL,NULL),(11054164,3745432,7,'producer','producer',NULL),(11054164,1955419,8,'producer','producer',NULL),(11054164,1013627,9,'composer',NULL,NULL),(1106860,140017,10,'cinematographer',NULL,NULL),(1106860,293,1,'actor',NULL,'[\"Pyke Kubic\",\"Reese Kubic\"]'),(1106860,1165110,2,'actor',NULL,'[\"Sam Phelan\"]'),(1106860,1437125,3,'actress',NULL,'[\"Leslie Phelan\"]'),(1106860,823563,4,'actor',NULL,'[\"Melvin Goldberg\"]'),(1106860,27465,5,'director',NULL,NULL),(1106860,1401803,6,'producer','producer',NULL),(1106860,1403667,7,'producer','producer',NULL),(1106860,1186564,8,'composer',NULL,NULL),(1106860,502954,9,'cinematographer',NULL,NULL),(1107809,2049966,10,'editor',NULL,NULL),(1107809,515,1,'actress',NULL,'[\"Robin\"]'),(1107809,266824,2,'actress',NULL,'[\"Lacy\"]'),(1107809,829576,3,'actress',NULL,'[\"Young Robin\"]'),(1107809,621,4,'actor',NULL,'[\"Dad\"]'),(1107809,5028,5,'director',NULL,NULL),(1107809,157966,6,'producer','producer',NULL),(1107809,799139,7,'producer','producer',NULL),(1107809,2066525,8,'composer',NULL,NULL),(1107809,591053,9,'cinematographer','director of photography',NULL),(1107860,340003,10,'composer',NULL,NULL),(1107860,686,1,'actor',NULL,'[\"Roger Barlow\"]'),(1107860,571375,2,'actor',NULL,'[\"Lead Villain\"]'),(1107860,1570774,3,'actress',NULL,'[\"Docent\"]'),(1107860,3676105,4,'actress',NULL,'[\"Rude Museum Patron\"]'),(1107860,382072,5,'director',NULL,NULL),(1107860,1942829,6,'writer','written by',NULL),(1107860,566975,7,'producer','producer',NULL),(1107860,2788035,8,'producer','producer',NULL),(1107860,946441,9,'producer','producer',NULL),(11079148,795975,10,'writer','created by: Superman',NULL),(11079148,3078,1,'actor',NULL,'[\"John Stewart\",\"Swamp Thing\"]'),(11079148,206257,2,'actress',NULL,'[\"Wonder Woman\"]'),(11079148,330913,3,'actor',NULL,'[\"The Flash\"]'),(11079148,2569832,4,'actress',NULL,'[\"Zatanna\"]'),(11079148,1602528,5,'director',NULL,NULL),(11079148,4958428,6,'director',NULL,NULL),(11079148,3309878,7,'writer','story by',NULL),(11079148,22688,8,'writer','teleplay by',NULL),(11079148,796950,9,'writer','created by: Superman',NULL),(1109624,933377,10,'cinematographer',NULL,NULL),(1109624,95017,1,'actor',NULL,'[\"Henry Brown\"]'),(1109624,1020089,2,'actress',NULL,'[\"Mary Brown\"]'),(1109624,910278,3,'actress',NULL,'[\"Mrs. Bird\"]'),(1109624,980,4,'actor',NULL,'[\"Mr Gruber\"]'),(1109624,1653753,5,'director',NULL,NULL),(1109624,566100,6,'writer','screen story by',NULL),(1109624,1286491,7,'writer','Paddington Bear created by',NULL),(1109624,382268,8,'producer','producer',NULL),(1109624,2943572,9,'composer',NULL,NULL),(11106266,6734178,10,'editor',NULL,NULL),(11106266,2255617,1,'actor',NULL,'[\"Butcher\"]'),(11106266,11050600,2,'actor',NULL,'[\"Man With Tv\"]'),(11106266,91322,3,'actress',NULL,'[\"Client Electroshop\"]'),(11106266,11050602,4,'actress',NULL,'[\"Mother of Young Boy\"]'),(11106266,1217939,5,'director',NULL,NULL),(11106266,2033952,6,'writer',NULL,NULL),(11106266,2805665,7,'producer','producer',NULL),(11106266,11050604,8,'composer',NULL,NULL),(11106266,3856248,9,'cinematographer',NULL,NULL),(11107074,5321876,10,'producer','producer',NULL),(11107074,5693918,1,'actor',NULL,'[\"Izuku Midoriya\"]'),(11107074,2462004,2,'actor',NULL,'[\"Katsuki Bakugo\"]'),(11107074,2719774,3,'actress',NULL,'[\"Katsuma\"]'),(11107074,3961240,4,'actress',NULL,'[\"Mahoro\"]'),(11107074,2568279,5,'director',NULL,NULL),(11107074,9484837,6,'writer','creator',NULL),(11107074,475853,7,'writer','screenplay',NULL),(11107074,3619235,8,'writer','screenplay assistance',NULL),(11107074,2890357,9,'producer','producer',NULL),(1111422,5494,10,'producer','producer',NULL),(1111422,243,1,'actor',NULL,'[\"Walter Garber\"]'),(1111422,237,2,'actor',NULL,'[\"Ryder\"]'),(1111422,350079,3,'actor',NULL,'[\"Phil Ramos\"]'),(1111422,2963873,4,'actor',NULL,'[\"Bashkin\"]'),(1111422,1716,5,'director',NULL,NULL),(1111422,1338,6,'writer','screenplay',NULL),(1111422,323945,7,'writer','novel',NULL),(1111422,85542,8,'producer','producer',NULL),(1111422,89820,9,'producer','producer',NULL),(1111890,2712593,10,'producer','producer',NULL),(1111890,1564103,1,'actress',NULL,'[\"Valérie\"]'),(1111890,768614,2,'actor',NULL,'[\"Jaime\"]'),(1111890,1414974,3,'actress',NULL,'[\"Sonia\"]'),(1111890,1036,4,'actress',NULL,'[\"Abuela de Valérie\"]'),(1111890,596668,5,'director',NULL,NULL),(1111890,133561,6,'writer','adaptation',NULL),(1111890,1871555,7,'writer','novel',NULL),(1111890,897930,8,'producer','executive producer',NULL),(1111890,273327,9,'producer','executive producer',NULL),(11127680,8252801,10,'composer',NULL,NULL),(11127680,334318,1,'actor',NULL,'[\"Andy Jones\"]'),(11127680,733172,2,'actress',NULL,'[\"Carly\"]'),(11127680,8420166,3,'actress',NULL,'[\"Beth\"]'),(11127680,1110435,4,'actor',NULL,'[\"Freeman\"]'),(11127680,53028,5,'director',NULL,NULL),(11127680,8983821,6,'writer',NULL,NULL),(11127680,1936275,7,'producer','producer',NULL),(11127680,1057010,8,'producer','producer',NULL),(11127680,7541028,9,'composer',NULL,NULL),(1112782,2659,10,'producer','producer',NULL),(1112782,678419,1,'actor',NULL,'[\"Émigré #1\"]'),(1112782,2151626,2,'actor',NULL,'[\"Émigré #2\"]'),(1112782,352855,3,'actor',NULL,'[\"Émigré #3\"]'),(1112782,784884,4,'actor',NULL,'[\"Nicky\",\"Victor\"]'),(1112782,1460,5,'director',NULL,NULL),(1112782,401960,6,'writer','written by',NULL),(1112782,256542,7,'producer','producer',NULL),(1112782,503600,8,'producer','executive producer',NULL),(1112782,566975,9,'producer','producer',NULL),(11128440,392692,10,'production_designer',NULL,NULL),(11128440,641168,1,'actor',NULL,'[\"Dante\"]'),(11128440,26879,2,'actor',NULL,'[\"Randal\"]'),(11128440,673229,3,'actor',NULL,'[\"Hot Goalie\"]'),(11128440,4892326,4,'actor',NULL,'[\"Hockey Player\"]'),(11128440,3620,5,'director',NULL,NULL),(11128440,1989592,6,'producer','producer',NULL),(11128440,3655313,7,'producer','producer',NULL),(11128440,892868,8,'composer',NULL,NULL),(11128440,4666,9,'cinematographer',NULL,NULL),(11136630,1425504,10,'editor',NULL,NULL),(11136630,353243,1,'actress',NULL,'[\"Kiwi\"]'),(11136630,2834250,2,'actress',NULL,'[\"Missy\"]'),(11136630,397445,3,'actor',NULL,'[\"Ted\"]'),(11136630,1682420,4,'actor',NULL,'[\"Gavin\"]'),(11136630,1885212,5,'director',NULL,NULL),(11136630,815418,6,'writer','written by',NULL),(11136630,11850,7,'producer','producer',NULL),(11136630,1808873,8,'composer',NULL,NULL),(11136630,460770,9,'cinematographer',NULL,NULL),(11138512,586969,10,'producer','producer',NULL),(11138512,2907,1,'actor',NULL,'[\"Amleth\"]'),(11138512,173,2,'actress',NULL,'[\"Queen Gudrún\"]'),(11138512,51903,3,'actor',NULL,'[\"Fjölnir the Brotherless\"]'),(11138512,160,4,'actor',NULL,'[\"King Aurvandil War-Raven\"]'),(11138512,3211470,5,'director',NULL,NULL),(11138512,797604,6,'writer','written by',NULL),(11138512,1309708,7,'producer','producer',NULL),(11138512,400240,8,'producer','producer',NULL),(11138512,1185381,9,'producer','producer',NULL),(11145118,322802,10,'producer','producer',NULL),(11145118,430107,1,'actor',NULL,'[\"Adonis Creed\"]'),(11145118,1935086,2,'actress',NULL,'[\"Bianca Creed\"]'),(11145118,3718007,3,'actor',NULL,'[\"Damian Anderson\"]'),(11145118,365445,4,'actor',NULL,'[\"Tony \'Little Duke\' Burton\"]'),(11145118,5462940,5,'writer','screenplay by',NULL),(11145118,1598140,6,'writer','screenplay by',NULL),(11145118,3363032,7,'writer','story by',NULL),(11145118,230,8,'writer','based on characters created by',NULL),(11145118,153587,9,'producer','producer',NULL),(1114677,332184,10,'producer','producer',NULL),(1114677,1415323,1,'actress',NULL,'[\"Hannah\",\"Miley\"]'),(1114677,652089,2,'actress',NULL,'[\"Lilly Truscott\"]'),(1114677,4854,3,'actor',NULL,'[\"Robby Ray\"]'),(1114677,1489118,4,'actor',NULL,'[\"Jackson\"]'),(1114677,155093,5,'director',NULL,NULL),(1114677,73504,6,'writer','written by',NULL),(1114677,689954,7,'writer','characters',NULL),(1114677,180902,8,'writer','characters',NULL),(1114677,639434,9,'writer','characters',NULL),(1114723,281266,10,'editor',NULL,NULL),(1114723,2273775,1,'actor',NULL,'[\"Jarle Klepp\"]'),(1114723,2791225,2,'actor',NULL,'[\"Helge Ombo\"]'),(1114723,2639419,3,'actress',NULL,'[\"Cathrine Halsnes\"]'),(1114723,2792736,4,'actor',NULL,'[\"Yngve Lima\"]'),(1114723,471622,5,'director',NULL,NULL),(1114723,1123929,6,'writer','novel',NULL),(1114723,845306,7,'producer','producer',NULL),(1114723,1145570,8,'composer',NULL,NULL),(1114723,406053,9,'cinematographer',NULL,NULL),(1114740,1191,10,'producer','producer',NULL),(1114740,416673,1,'actor',NULL,'[\"Paul Blart\"]'),(1114740,1218757,2,'actor',NULL,'[\"Veck Simms\"]'),(1114740,1724323,3,'actress',NULL,'[\"Amy\"]'),(1114740,2263115,4,'actress',NULL,'[\"Maya\"]'),(1114740,139867,5,'director',NULL,NULL),(1114740,48169,6,'writer','written by',NULL),(1114740,76444,7,'producer','producer',NULL),(1114740,307776,8,'producer','producer',NULL),(1114740,316406,9,'producer','producer',NULL),(11160650,696937,10,'producer','producer',NULL),(11160650,4273797,1,'actor',NULL,'[\"Val\"]'),(11160650,3571592,2,'actor',NULL,'[\"Kevin\"]'),(11160650,1840504,3,'actress',NULL,'[\"Natasha\"]'),(11160650,1089417,4,'actor',NULL,'[\"Donny\"]'),(11160650,6144403,5,'writer','screenplay by',NULL),(11160650,9429903,6,'writer','screenplay by',NULL),(11160650,9137077,7,'producer','producer',NULL),(11160650,3283022,8,'producer','producer',NULL),(11160650,3957926,9,'producer','producer',NULL),(11161474,6290,10,'composer',NULL,NULL),(11161474,3948952,1,'actress',NULL,'[\"Martha\"]'),(11161474,479471,2,'actor',NULL,'[\"Sean\"]'),(11161474,995,3,'actress',NULL,'[\"Elizabeth\"]'),(11161474,2955597,4,'actress',NULL,'[\"Anita\"]'),(11161474,610960,5,'director',NULL,NULL),(11161474,970537,6,'writer','written by',NULL),(11161474,6892534,7,'producer','producer',NULL),(11161474,753083,8,'producer','producer',NULL),(11161474,1834530,9,'producer','producer',NULL),(1116186,330901,10,'composer',NULL,NULL),(1116186,4805,1,'actor',NULL,'[\"Ken Halsband\"]'),(1116186,383422,2,'actor',NULL,'[\"Dennis\"]'),(1116186,70810,3,'actor',NULL,'[\"Calvin\"]'),(1116186,992538,4,'actor',NULL,'[\"Agnew\"]'),(1116186,50276,5,'director',NULL,NULL),(1116186,1301035,6,'writer','written by',NULL),(1116186,41835,7,'producer','producer',NULL),(1116186,705476,8,'producer','producer',NULL),(1116186,742580,9,'producer','producer',NULL),(1116560,593383,10,'actress',NULL,'[\"Sarah Balfour\"]'),(1116560,1829,1,'actress',NULL,'[\"Kate McDonald\"]'),(1116560,1443841,2,'actress',NULL,'[\"Jill Blake\"]'),(1116560,685221,3,'actor',NULL,'[\"James Campbell\"]'),(1116560,1134619,4,'actor',NULL,'[\"Tom Huppatz\"]'),(1116560,1649438,5,'writer','written by',NULL),(1116560,606179,6,'writer','written by',NULL),(1116560,936771,7,'actor',NULL,'[\"Harry Greene\"]'),(1116560,388122,8,'actor',NULL,'[\"Steve Willis\"]'),(1116560,461694,9,'actor',NULL,'[\"Lachlan Balfour\"]'),(1117379,791898,1,'actress',NULL,'[\"Bonnie\"]'),(1117379,351772,2,'actor',NULL,'[\"Clyde\"]'),(1117379,2802211,3,'actor',NULL,'[\"Dr. Loveless\",\"Chick\"]'),(1117379,2510208,4,'actress',NULL,'[\"Annabel\"]'),(1117379,2510764,5,'director',NULL,NULL),(1117379,2505951,6,'producer','producer',NULL),(1117379,635910,7,'cinematographer',NULL,NULL),(11177804,14504062,10,'editor',NULL,NULL),(11177804,4589246,1,'actress',NULL,'[\"Jiuwei\",\"Demon Queen\"]'),(11177804,8282195,2,'actor',NULL,'[\"Wenshu Guangfa Tianzun\"]'),(11177804,10387818,3,'actor',NULL,'[\"Emperor Zhou\"]'),(11177804,13076461,4,'actress',NULL,'[\"Si Bu Xiang\"]'),(11177804,6538002,5,'director',NULL,NULL),(11177804,11082788,6,'director',NULL,NULL),(11177804,14502495,7,'writer',NULL,NULL),(11177804,12280851,8,'producer','producer',NULL),(11177804,939296,9,'composer',NULL,NULL),(1119123,303108,10,'editor',NULL,NULL),(1119123,133,1,'actress',NULL,'[\"Gloria Conway\"]'),(1119123,1549295,2,'actor',NULL,'[\"Billy Conway\"]'),(1119123,3101039,3,'actor',NULL,'[\"Larry Conway\"]'),(1119123,864835,4,'actor',NULL,'[\"Ray Conway\"]'),(1119123,484108,5,'director',NULL,NULL),(1119123,136093,6,'writer','writer',NULL),(1119123,1337936,7,'producer','producer',NULL),(1119123,664020,8,'composer',NULL,NULL),(1119123,636603,9,'cinematographer','director of photography',NULL),(11196036,2035201,10,'composer',NULL,NULL),(11196036,1209966,1,'actor',NULL,'[\"William Tell\"]'),(11196036,1840504,2,'actress',NULL,'[\"La Linda\"]'),(11196036,4446467,3,'actor',NULL,'[\"Cirk\"]'),(11196036,353,4,'actor',NULL,'[\"Gordo\"]'),(11196036,1707,5,'director',NULL,NULL),(11196036,2473652,6,'producer','producer',NULL),(11196036,691088,7,'producer','producer',NULL),(11196036,2576658,8,'producer','producer',NULL),(11196036,1945371,9,'composer',NULL,NULL),(1119646,3394,10,'cinematographer','director of photography',NULL),(1119646,302108,1,'actor',NULL,'[\"Alan\"]'),(1119646,177896,2,'actor',NULL,'[\"Phil\"]'),(1119646,58581,3,'actor',NULL,'[\"Doug\"]'),(1119646,1159180,4,'actor',NULL,'[\"Stu\"]'),(1119646,680846,5,'director',NULL,NULL),(1119646,524190,6,'writer','written by',NULL),(1119646,601859,7,'writer','written by',NULL),(1119646,325175,8,'producer','producer',NULL),(1119646,65100,9,'composer',NULL,NULL),(1120985,1364232,10,'producer','producer',NULL),(1120985,331516,1,'actor',NULL,'[\"Dean\"]'),(1120985,931329,2,'actress',NULL,'[\"Cindy\"]'),(1120985,231283,3,'actor',NULL,'[\"Jerry\"]'),(1120985,3504430,4,'actress',NULL,'[\"Frankie\"]'),(1120985,161834,5,'director',NULL,NULL),(1120985,193387,6,'writer','written by',NULL),(1120985,2337556,7,'writer','written by',NULL),(1120985,1987578,8,'producer','producer',NULL),(1120985,650164,9,'producer','producer',NULL),(11210390,4500566,10,'producer','producer',NULL),(11210390,133899,1,'actor',NULL,'[\"Astérix\"]'),(11210390,500976,2,'actor',NULL,'[\"Obélix\"]'),(11210390,1993,3,'actor',NULL,'[\"César\"]'),(11210390,3214170,4,'actor',NULL,'[\"Graindemaïs\"]'),(11210390,331453,5,'writer','characters',NULL),(11210390,879853,6,'writer','characters',NULL),(11210390,1132447,7,'writer','adaptation',NULL),(11210390,2382268,8,'writer','adaptation',NULL),(11210390,40927,9,'producer','producer',NULL),(1121096,412588,10,'producer','producer',NULL),(1121096,1602660,1,'actor',NULL,'[\"Tom Ward\"]'),(1121096,194,2,'actress',NULL,'[\"Mother Malkin\"]'),(1121096,313,3,'actor',NULL,'[\"Master Gregory\"]'),(1121096,2539953,4,'actress',NULL,'[\"Alice\"]'),(1121096,91076,5,'director',NULL,NULL),(1121096,495378,6,'writer','screenplay by',NULL),(1121096,1140275,7,'writer','screenplay by',NULL),(1121096,338557,8,'writer','screen story by',NULL),(1121096,2796716,9,'writer','based on the book titled \"The Spook\'s Apprentice\" by',NULL),(11212276,4941635,10,'actor',NULL,'[\"Eric\"]'),(11212276,6955492,1,'actress',NULL,'[\"Kimberly Finkle\"]'),(11212276,6659224,2,'actress',NULL,'[\"Bela Malhotra\"]'),(11212276,10727174,3,'actress',NULL,'[\"Leighton Murray\"]'),(11212276,10738589,4,'actress',NULL,'[\"Whitney Chase\"]'),(11212276,1411676,5,'writer','created by',NULL),(11212276,5314287,6,'writer','created by',NULL),(11212276,7745324,7,'actress',NULL,'[\"Willow\"]'),(11212276,3487329,8,'actor',NULL,'[\"Canaan\",\"Canaan Greene\"]'),(11212276,6165060,9,'actress',NULL,'[\"Lila\",\"Lila Flores\"]'),(11214590,400240,10,'producer','producer',NULL),(11214590,3078932,1,'actress',NULL,'[\"Patrizia Reggiani\"]'),(11214590,3485845,2,'actor',NULL,'[\"Maurizio Gucci\"]'),(11214590,199,3,'actor',NULL,'[\"Aldo Gucci\"]'),(11214590,460,4,'actor',NULL,'[\"Rodolfo Gucci\"]'),(11214590,631,5,'director',NULL,NULL),(11214590,426539,6,'writer','screenplay by',NULL),(11214590,1894782,7,'writer','screenplay by',NULL),(11214590,11099905,8,'writer','based on the book \"The House of Gucci\" by',NULL),(11214590,264857,9,'producer','producer',NULL),(1121794,411167,10,'actor',NULL,'[\"Lord Akaike\"]'),(1121794,619187,1,'actor',NULL,'[\"Nanashi (No Name)\"]'),(1121794,1867502,2,'actor',NULL,'[\"Kotaro\"]'),(1121794,945290,3,'actor',NULL,'[\"Rarou\"]'),(1121794,960033,4,'actor',NULL,'[\"Shogen Itadori\"]'),(1121794,1622836,5,'director',NULL,NULL),(1121794,847432,6,'writer',NULL,NULL),(1121794,590915,7,'producer','producer',NULL),(1121794,2013149,8,'composer',NULL,NULL),(1121794,2184082,9,'cinematographer',NULL,NULL),(1121977,918728,10,'editor',NULL,NULL),(1121977,915208,1,'actress',NULL,'[\"Elizabeth\"]'),(1121977,906,2,'actress',NULL,'[\"Karen\"]'),(1121977,913488,3,'actress',NULL,'[\"Lucy\"]'),(1121977,1631380,4,'actress',NULL,'[\"Karen (age 14)\"]'),(1121977,6554,5,'director',NULL,NULL),(1121977,11396650,6,'producer','producer',NULL),(1121977,528724,7,'producer','producer',NULL),(1121977,790481,8,'composer',NULL,NULL),(1121977,4267,9,'cinematographer','director of photography',NULL),(1123373,793016,10,'producer','producer',NULL),(1123373,504899,1,'actor',NULL,'[\"Shatuo Zhong\"]'),(1123373,2874732,2,'actor',NULL,'[\"Pei Donglai\"]'),(1123373,490500,3,'actress',NULL,'[\"Empress Wu Zetian\"]'),(1123373,508356,4,'actress',NULL,'[\"Shangguan Jing\'er\"]'),(1123373,7139,5,'director',NULL,NULL),(1123373,2310115,6,'writer','screenplay',NULL),(1123373,155295,7,'writer',NULL,NULL),(1123373,4488556,8,'writer','original story',NULL),(1123373,498008,9,'producer','producer',NULL),(1123894,1404553,1,'actress',NULL,'[\"Lola\"]'),(1123894,71825,2,'actress',NULL,'[\"Casey\"]'),(1123894,213583,3,'actress',NULL,'[\"Danielle\"]'),(1123894,1977611,4,'actress',NULL,'[\"Jen\"]'),(1123894,2804620,5,'director',NULL,NULL),(1123894,797962,6,'director',NULL,NULL),(1123894,1484589,7,'cinematographer',NULL,NULL),(1123894,1294091,8,'editor',NULL,NULL),(1123894,2643587,9,'production_designer',NULL,NULL),(1124035,592537,10,'editor',NULL,NULL),(1124035,316079,1,'actor',NULL,'[\"Tom Duffy\"]'),(1124035,123,2,'actor',NULL,'[\"Governor Mike Morris\"]'),(1124035,450,3,'actor',NULL,'[\"Paul Zara\"]'),(1124035,331516,4,'actor',NULL,'[\"Stephen Meyers\"]'),(1124035,381416,5,'writer','screenplay by',NULL),(1124035,2802722,6,'writer','screenplay by',NULL),(1124035,1003922,7,'producer','producer',NULL),(1124035,6035,8,'composer',NULL,NULL),(1124035,3659,9,'cinematographer','director of photography',NULL),(1124037,217120,10,'cinematographer','director of photography',NULL),(1124037,190,1,'actor',NULL,'[\"Newton Knight\"]'),(1124037,1813221,2,'actress',NULL,'[\"Rachel\"]'),(1124037,991810,3,'actor',NULL,'[\"Moses\"]'),(1124037,5392,4,'actress',NULL,'[\"Serena\"]'),(1124037,2657,5,'director',NULL,NULL),(1124037,366989,6,'writer','story by',NULL),(1124037,453091,7,'producer','producer',NULL),(1124037,835959,8,'producer','producer',NULL),(1124037,1615109,9,'composer',NULL,NULL),(1124039,788972,10,'producer','producer',NULL),(1124039,922342,1,'actor',NULL,'[\"Max Peterson\"]'),(1124039,122653,2,'actor',NULL,'[\"John Reed\"]'),(1124039,609,3,'actor',NULL,'[\"Agent Dave Grant\"]'),(1124039,596,4,'actor',NULL,'[\"Mueller\"]'),(1124039,1009775,5,'director',NULL,NULL),(1124039,2805380,6,'writer','screenplay',NULL),(1124039,253106,7,'writer','screenplay',NULL),(1124039,2806453,8,'producer','producer',NULL),(1124039,724345,9,'producer','producer',NULL),(1124394,1354449,10,'cinematographer',NULL,NULL),(1124394,899476,1,'actor',NULL,'[\"Eerik\"]'),(1124394,259762,2,'actor',NULL,'[\"Knut\"]'),(1124394,459529,3,'actor',NULL,'[\"Semenski\"]'),(1124394,2196693,4,'actor',NULL,'[\"Rogosin\"]'),(1124394,1457822,5,'director',NULL,NULL),(1124394,478241,6,'writer','written by',NULL),(1124394,296807,7,'producer','producer',NULL),(1124394,442381,8,'producer','producer',NULL),(1124394,1803932,9,'composer',NULL,NULL),(11245972,2248084,10,'producer','producer',NULL),(11245972,117,1,'actress',NULL,'[\"Sidney Prescott\"]'),(11245972,1073,2,'actress',NULL,'[\"Gale Weathers\"]'),(11245972,274,3,'actor',NULL,'[\"Dewey Riley\"]'),(11245972,4574440,4,'actress',NULL,'[\"Sam Carpenter\"]'),(11245972,2366012,5,'director',NULL,NULL),(11245972,2419470,6,'director',NULL,NULL),(11245972,888743,7,'writer','written by',NULL),(11245972,2361509,8,'writer','written by',NULL),(11245972,932078,9,'writer','based on the characters created by',NULL),(1125254,8221332,10,'producer','producer',NULL),(1125254,637586,1,'actress',NULL,'[\"Son Gokû\",\"Son Gohan\",\"Bardock\"]'),(1125254,299192,2,'actor',NULL,'[\"Piccolo\"]'),(1125254,849028,3,'actress',NULL,'[\"Kuririn\",\"Yajirobe\"]'),(1125254,851311,4,'actor',NULL,'[\"Oolong\",\"Haiya Dragon\"]'),(1125254,973260,5,'director',NULL,NULL),(1125254,868066,6,'writer','manga \"Dragon Ball\"',NULL),(1125254,468715,7,'writer','screenplay',NULL),(1125254,8313008,8,'writer','scriptwriter',NULL),(1125254,1465617,9,'writer','scriptwriter',NULL),(1125849,918733,10,'editor',NULL,NULL),(1125849,620,1,'actor',NULL,'[\"Randy \'The Ram\' Robinson\"]'),(1125849,673,2,'actress',NULL,'[\"Cassidy\"]'),(1125849,939697,3,'actress',NULL,'[\"Stephanie\"]'),(1125849,546797,4,'actor',NULL,'[\"Lenny\"]'),(1125849,4716,5,'director',NULL,NULL),(1125849,1557909,6,'writer','written by',NULL),(1125849,291542,7,'producer','producer',NULL),(1125849,543739,8,'composer',NULL,NULL),(1125849,16662,9,'cinematographer',NULL,NULL),(1126590,216632,10,'cinematographer',NULL,NULL),(1126590,10736,1,'actress',NULL,'[\"Margaret Keane\"]'),(1126590,910607,2,'actor',NULL,'[\"Walter Keane\"]'),(1126590,396812,3,'actor',NULL,'[\"Dick Nolan\"]'),(1126590,1269983,4,'actress',NULL,'[\"Dee-Ann\"]'),(1126590,318,5,'director',NULL,NULL),(1126590,18735,6,'writer','written by',NULL),(1126590,438989,7,'writer','written by',NULL),(1126590,1987578,8,'producer','producer',NULL),(1126590,384,9,'composer',NULL,NULL),(1126591,824600,10,'production_designer',NULL,NULL),(1126591,333,1,'actress',NULL,'[\"Tess\"]'),(1126591,4694,2,'actress',NULL,'[\"Ali\"]'),(1126591,1086,3,'actor',NULL,'[\"Alexis\"]'),(1126591,199312,4,'actor',NULL,'[\"Marcus\"]'),(1126591,31078,5,'director',NULL,NULL),(1126591,209773,6,'producer','producer',NULL),(1126591,65100,7,'composer',NULL,NULL),(1126591,5648,8,'cinematographer','director of photography',NULL),(1126591,441717,9,'editor',NULL,NULL),(1126596,1207238,10,'production_designer',NULL,NULL),(1126596,164929,1,'actor',NULL,'[\"Sam\"]'),(1126596,1307940,2,'actress',NULL,'[\"Lexi\"]'),(1126596,212563,3,'actor',NULL,'[\"Jay\"]'),(1126596,2760664,4,'actor',NULL,'[\"Omen\"]'),(1126596,1572115,5,'producer','producer',NULL),(1126596,427827,6,'producer','producer',NULL),(1126596,2427683,7,'composer',NULL,NULL),(1126596,5909,8,'cinematographer',NULL,NULL),(1126596,1435739,9,'editor',NULL,NULL),(1126618,473696,10,'cinematographer',NULL,NULL),(1126618,1046097,1,'actress',NULL,'[\"Becky\"]'),(1126618,148,2,'actor',NULL,'[\"Mike Pomeroy\"]'),(1126618,473,3,'actress',NULL,'[\"Colleen Peck\"]'),(1126618,63800,4,'actor',NULL,'[\"First Date\"]'),(1126618,585011,5,'director',NULL,NULL),(1126618,112459,6,'writer','written by',NULL),(1126618,9190,7,'producer','producer',NULL),(1126618,1333357,8,'producer','producer',NULL),(1126618,3417,9,'composer',NULL,NULL),(11271038,1425140,10,'editor',NULL,NULL),(11271038,6076229,1,'actress',NULL,'[\"Alana\"]'),(11271038,11866274,2,'actor',NULL,'[\"Gary\"]'),(11271038,576,3,'actor',NULL,'[\"Jack Holden\"]'),(11271038,1823,4,'actor',NULL,'[\"Rex Blau\"]'),(11271038,759,5,'director',NULL,NULL),(11271038,2072976,6,'producer','producer',NULL),(11271038,814114,7,'producer','producer',NULL),(11271038,339351,8,'composer',NULL,NULL),(11271038,62177,9,'cinematographer','director of photography',NULL),(1127180,5687,10,'cinematographer',NULL,NULL),(1127180,517844,1,'actress',NULL,'[\"Christine Brown\"]'),(1127180,519043,2,'actor',NULL,'[\"Clay Dalton\"]'),(1127180,515207,3,'actress',NULL,'[\"Farm Worker\'s Wife\"]'),(1127180,712404,4,'actress',NULL,'[\"Mrs. Ganush\"]'),(1127180,600,5,'director',NULL,NULL),(1127180,706898,6,'writer','written by',NULL),(1127180,193344,7,'producer','producer',NULL),(1127180,849964,8,'producer','producer',NULL),(1127180,2366,9,'composer',NULL,NULL),(1127877,907844,10,'producer','producer',NULL),(1127877,316079,1,'actor',NULL,'[\"Paul Giamatti\"]'),(1127877,1833,2,'actress',NULL,'[\"Claire\"]'),(1127877,466861,3,'actress',NULL,'[\"Nina\"]'),(1127877,776193,4,'actor',NULL,'[\"Astrov\"]'),(1127877,1754436,5,'director',NULL,NULL),(1127877,1578528,6,'producer','producer',NULL),(1127877,2714790,7,'producer','producer',NULL),(1127877,583796,8,'producer','producer',NULL),(1127877,661238,9,'producer','producer',NULL),(1127896,384,10,'composer',NULL,NULL),(1127896,1336595,1,'actor',NULL,'[\"Elliot Teichberg\"]'),(1127896,329094,2,'actor',NULL,'[\"Jake Teichberg\"]'),(1127896,382503,3,'actor',NULL,'[\"British Gentleman\"]'),(1127896,1767,4,'actress',NULL,'[\"Sonia Teichberg\"]'),(1127896,487,5,'director',NULL,NULL),(1127896,770005,6,'writer','screenplay',NULL),(1127896,862580,7,'writer','book',NULL),(1127896,2988802,8,'writer','book',NULL),(1127896,182472,9,'producer','producer',NULL),(1128075,2538096,10,'production_designer',NULL,NULL),(1128075,2597963,1,'actor',NULL,'[\"Yû\"]'),(1128075,2098603,2,'actress',NULL,'[\"Yôko\"]'),(1128075,2747232,3,'actress',NULL,'[\"Koike\"]'),(1128075,2676743,4,'actor',NULL,'[\"Yûji\"]'),(1128075,814469,5,'director',NULL,NULL),(1128075,880854,6,'producer','producer',NULL),(1128075,2422977,7,'composer',NULL,NULL),(1128075,1976411,8,'cinematographer',NULL,NULL),(1128075,2181392,9,'editor',NULL,NULL),(11284280,5527923,10,'editor',NULL,NULL),(11284280,364028,1,'actor',NULL,'[\"Mathias\"]'),(11284280,3114945,2,'actress',NULL,'[\"Kathrine\"]'),(11284280,1926861,3,'actress',NULL,'[\"Leonora\"]'),(11284280,4440340,4,'actor',NULL,'[\"Jacob\"]'),(11284280,5528353,5,'director',NULL,NULL),(11284280,2276650,6,'producer','producer',NULL),(11284280,1666770,7,'producer','producer',NULL),(11284280,6167573,8,'composer',NULL,NULL),(11284280,264489,9,'cinematographer',NULL,NULL),(11286314,181650,10,'editor',NULL,NULL),(11286314,138,1,'actor',NULL,'[\"Dr. Randall Mindy\"]'),(11286314,2225369,2,'actress',NULL,'[\"Kate Dibiasky\"]'),(11286314,658,3,'actress',NULL,'[\"President Orlean\"]'),(11286314,949,4,'actress',NULL,'[\"Brie Evantee\"]'),(11286314,570912,5,'director',NULL,NULL),(11286314,1998503,6,'writer','story by',NULL),(11286314,582111,7,'producer','producer',NULL),(11286314,1615109,8,'composer',NULL,NULL),(11286314,761874,9,'cinematographer','director of photography',NULL),(11291274,6142,10,'composer',NULL,NULL),(11291274,115,1,'actor',NULL,'[\"Nick Cage\",\"Nicky\"]'),(11291274,50959,2,'actor',NULL,'[\"Javi Gutierrez\"]'),(11291274,1840504,3,'actress',NULL,'[\"Vivian\"]'),(11291274,1279721,4,'actress',NULL,'[\"Olivia\"]'),(11291274,3230448,5,'director',NULL,NULL),(11291274,1072410,6,'writer','written by',NULL),(11291274,123013,7,'producer','producer',NULL),(11291274,638748,8,'producer','producer',NULL),(11291274,1834530,9,'producer','producer',NULL),(1129423,2838269,10,'editor',NULL,NULL),(1129423,131647,1,'actor',NULL,'[\"Caleb Holt\"]'),(1129423,2814621,2,'actress',NULL,'[\"Catherine Holt\"]'),(1129423,2848533,3,'actor',NULL,'[\"Michael Simmons\"]'),(1129423,2848787,4,'actor',NULL,'[\"Wayne Floyd\"]'),(1129423,1731937,5,'director',NULL,NULL),(1129423,1726854,6,'writer','story and screenplay',NULL),(1129423,1117098,7,'producer','producer',NULL),(1129423,1726667,8,'composer',NULL,NULL),(1129423,778894,9,'cinematographer','director of photography',NULL),(1129435,1297406,10,'cinematographer',NULL,NULL),(1129435,889513,1,'self',NULL,'[\"Self\"]'),(1129435,3262029,2,'self',NULL,'[\"Self\"]'),(1129435,3240092,3,'self',NULL,'[\"Self\"]'),(1129435,3259550,4,'self',NULL,'[\"Self\"]'),(1129435,745632,5,'writer',NULL,NULL),(1129435,116861,6,'composer',NULL,NULL),(1129435,897399,7,'composer',NULL,NULL),(1129435,3309711,8,'cinematographer',NULL,NULL),(1129435,522173,9,'cinematographer',NULL,NULL),(1129442,278440,10,'cinematographer',NULL,NULL),(1129442,5458,1,'actor',NULL,'[\"Frank Martin\"]'),(1129442,460694,2,'actor',NULL,'[\"Johnson\"]'),(1129442,3130063,3,'actress',NULL,'[\"Valentina\"]'),(1129442,75710,4,'actor',NULL,'[\"Tarconi\"]'),(1129442,576298,5,'director',NULL,NULL),(1129442,108,6,'writer','written by',NULL),(1129442,436543,7,'writer','written by',NULL),(1129442,153893,8,'producer','producer',NULL),(1129442,720072,9,'composer',NULL,NULL),(1129445,212990,10,'producer','producer',NULL),(1129445,5476,1,'actress',NULL,'[\"Amelia Earhart\"]'),(1129445,152,2,'actor',NULL,'[\"George Putnam\"]'),(1129445,191,3,'actor',NULL,'[\"Gene Vidal\"]'),(1129445,1172,4,'actor',NULL,'[\"Fred Noonan\"]'),(1129445,619762,5,'director',NULL,NULL),(1129445,60103,6,'writer','written by',NULL),(1129445,357703,7,'writer','written by',NULL),(1129445,2336073,8,'writer','book \"East To The Dawn: The Life of Amelia Earhart\"',NULL),(1129445,3629435,9,'writer','book \"The Sound of Wings: The Life of Amelia Earhart\"',NULL),(1130080,414423,10,'producer','producer',NULL),(1130080,354,1,'actor',NULL,'[\"Mark Whitacre\"]'),(1130080,355024,2,'actor',NULL,'[\"James Epstein\"]'),(1130080,652663,3,'actor',NULL,'[\"Ed Herbst\"]'),(1130080,3488879,4,'actor',NULL,'[\"Alexander Whitacre\"]'),(1130080,1752,5,'director',NULL,NULL),(1130080,1994243,6,'writer','screenplay',NULL),(1130080,1141272,7,'writer','book',NULL),(1130080,105946,8,'producer','producer',NULL),(1130080,289048,9,'producer','producer',NULL),(11306932,7287484,10,'producer','producer',NULL),(11306932,251158,1,'actress',NULL,'[\"Julia\"]'),(11306932,1840708,2,'actress',NULL,'[\"Abril Escobedo\"]'),(11306932,5924413,3,'actor',NULL,'[\"Asistente Fiscal\"]'),(11306932,9910224,4,'actress',NULL,'[\"Adriana\"]'),(11306932,1135329,5,'director',NULL,NULL),(11306932,5142203,6,'writer',NULL,NULL),(11306932,8977430,7,'writer','writer',NULL),(11306932,6644089,8,'producer','producer',NULL),(11306932,4860899,9,'producer','producer',NULL),(1130884,1103781,10,'producer','producer',NULL),(1130884,138,1,'actor',NULL,'[\"Teddy Daniels\"]'),(1130884,607865,2,'actress',NULL,'[\"Rachel 1\"]'),(1130884,749263,3,'actor',NULL,'[\"Chuck Aule\"]'),(1130884,1426,4,'actor',NULL,'[\"Dr. Cawley\"]'),(1130884,217,5,'director',NULL,NULL),(1130884,436164,6,'writer','screenplay',NULL),(1130884,1212331,7,'writer','novel',NULL),(1130884,1329482,8,'producer','producer',NULL),(1130884,5219,9,'producer','producer',NULL),(1131729,382781,10,'editor','film editor',NULL),(1131729,450,1,'actor',NULL,'[\"The Count\"]'),(1131729,631490,2,'actor',NULL,'[\"Quentin\"]'),(1131729,296545,3,'actor',NULL,'[\"Dave\"]'),(1131729,352905,4,'actor',NULL,'[\"Mr. Roberts\"]'),(1131729,193485,5,'director',NULL,NULL),(1131729,79638,6,'producer','producer',NULL),(1131729,79677,7,'producer','producer',NULL),(1131729,271479,8,'producer','producer',NULL),(1131729,169299,9,'cinematographer','director of photography',NULL),(1131734,1564659,10,'composer',NULL,NULL),(1131734,1083271,1,'actress',NULL,'[\"Jennifer\"]'),(1131734,1086543,2,'actress',NULL,'[\"Needy\"]'),(1131734,111013,3,'actor',NULL,'[\"Nikolai Wolf\"]'),(1131734,2215447,4,'actor',NULL,'[\"Chip Dove\"]'),(1131734,476201,5,'director',NULL,NULL),(1131734,1959505,6,'writer','written by',NULL),(1131734,239277,7,'producer','producer',NULL),(1131734,1259504,8,'producer','producer',NULL),(1131734,718646,9,'producer','producer',NULL),(11320192,2885297,10,'cinematographer',NULL,NULL),(11320192,4121043,1,'actress',NULL,'[\"Shirin\"]'),(11320192,12976663,2,'actor',NULL,'[\"Lukas\"]'),(11320192,906320,3,'actor',NULL,'[\"Fredrik\"]'),(11320192,8911148,4,'actor',NULL,'[\"\'Gubben\'\",\"Monster\"]'),(11320192,4697969,5,'director',NULL,NULL),(11320192,4698127,6,'director',NULL,NULL),(11320192,74996,7,'producer','producer',NULL),(11320192,5287403,8,'composer',NULL,NULL),(11320192,5548150,9,'cinematographer',NULL,NULL),(1132193,194125,10,'cinematographer',NULL,NULL),(1132193,4965,1,'actor',NULL,'[\"Adrian Jacobs\"]'),(1132193,5420,2,'actress',NULL,'[\"Madeleine Gray\"]'),(1132193,47248,3,'actor',NULL,'[\"Josh Jacobs\"]'),(1132193,700577,4,'actress',NULL,'[\"The Clarinet\"]'),(1132193,662383,5,'director',NULL,NULL),(1132193,227517,6,'writer','writer',NULL),(1132193,1825319,7,'producer','producer',NULL),(1132193,1001590,8,'producer','producer',NULL),(1132193,1012893,9,'composer',NULL,NULL),(1132285,6142,10,'composer',NULL,NULL),(1132285,131,1,'actor',NULL,'[\"Mike\"]'),(1132285,1316767,2,'actor',NULL,'[\"Carl\"]'),(1132285,2949993,3,'actor',NULL,'[\"Jed\"]'),(1132285,1358539,4,'actress',NULL,'[\"Kelsey\"]'),(1132285,642041,5,'director',NULL,NULL),(1132285,508025,6,'writer','written by',NULL),(1132285,1206265,7,'producer','producer',NULL),(1132285,1312724,8,'producer','producer',NULL),(1132285,5428,9,'producer','producer',NULL),(1132620,343844,10,'composer',NULL,NULL),(1132620,638824,1,'actor',NULL,'[\"Mikael Blomkvist\"]'),(1132620,636426,2,'actress',NULL,'[\"Lisbeth Salander\"]'),(1132620,297083,3,'actress',NULL,'[\"Harriet Vanger\"]'),(1132620,256890,4,'actress',NULL,'[\"Erika Berger\"]'),(1132620,649117,5,'director',NULL,NULL),(1132620,1064048,6,'writer','screenplay',NULL),(1132620,1065452,7,'writer','screenplay',NULL),(1132620,2297183,8,'writer','novel',NULL),(1132620,836673,9,'producer','producer',NULL),(1132626,467977,10,'producer','producer',NULL),(1132626,666398,1,'actor',NULL,'[\"Agent Strahm\"]'),(1132626,541908,2,'actor',NULL,'[\"Mark Hoffman\"]'),(1132626,68551,3,'actor',NULL,'[\"Jigsaw\",\"John\"]'),(1132626,751018,4,'actress',NULL,'[\"Jill\"]'),(1132626,352524,5,'director',NULL,NULL),(1132626,1733317,6,'writer','screenplay by',NULL),(1132626,1729303,7,'writer','screenplay by',NULL),(1132626,121117,8,'producer','producer',NULL),(1132626,388898,9,'producer','producer',NULL),(11334312,1918942,10,'composer',NULL,NULL),(11334312,8016666,1,'actress',NULL,'[\"Chrissy\"]'),(11334312,8738105,2,'actress',NULL,'[\"Sarah\"]'),(11334312,5178583,3,'actress',NULL,'[\"Rae\"]'),(11334312,9579910,4,'actor',NULL,'[\"Jake\"]'),(11334312,1111796,5,'director',NULL,NULL),(11334312,2662079,6,'writer','story by',NULL),(11334312,490375,7,'producer','producer',NULL),(11334312,1700105,8,'composer',NULL,NULL),(11334312,725808,9,'composer',NULL,NULL),(1133985,209773,10,'producer','producer',NULL),(1133985,5351,1,'actor',NULL,'[\"Hal Jordan\",\"Green Lantern\"]'),(1133985,515116,2,'actress',NULL,'[\"Carol Ferris\"]'),(1133985,765597,3,'actor',NULL,'[\"Hector Hammond\"]'),(1133985,835016,4,'actor',NULL,'[\"Sinestro\"]'),(1133985,132709,5,'director',NULL,NULL),(1133985,75528,6,'writer','screenplay',NULL),(1133985,338169,7,'writer','screenplay',NULL),(1133985,973233,8,'writer','screenplay',NULL),(1133985,325533,9,'writer','screenplay',NULL),(1133991,943391,10,'composer',NULL,NULL),(1133991,160,1,'actor',NULL,'[\"Paulie McDougan\"]'),(1133991,749263,2,'actor',NULL,'[\"Brian Reilly\"]'),(1133991,329023,3,'actor',NULL,'[\"Pat Kelly\"]'),(1133991,1605,4,'actress',NULL,'[\"Stacy Reilly\"]'),(1133991,615209,5,'writer','writer',NULL),(1133991,5531,6,'writer','writer',NULL),(1133991,296827,7,'producer','producer',NULL),(1133991,527109,8,'producer','producer',NULL),(1133991,946441,9,'producer','producer',NULL),(1133993,775262,10,'cinematographer','director of photography',NULL),(1133993,212,1,'actress',NULL,'[\"Louise\"]'),(1133993,459,2,'actor',NULL,'[\"Ian\"]'),(1133993,68338,3,'actress',NULL,'[\"Sara\"]'),(1133993,519043,4,'actor',NULL,'[\"Todd\"]'),(1133993,385644,5,'director',NULL,NULL),(1133993,791248,6,'writer','written by',NULL),(1133993,2196058,7,'producer','producer',NULL),(1133993,1988698,8,'producer','producer',NULL),(1133993,390867,9,'composer',NULL,NULL),(1134629,389259,10,'editor',NULL,NULL),(1134629,705,1,'actress',NULL,'[\"Pippa Lee\"]'),(1134629,273,2,'actor',NULL,'[\"Herb Lee\"]'),(1134629,82802,3,'actor',NULL,'[\"Sam Shapiro\"]'),(1134629,213,4,'actress',NULL,'[\"Sandra Dulles\"]'),(1134629,589182,5,'director',NULL,NULL),(1134629,306890,6,'producer','producer',NULL),(1134629,843543,7,'producer','producer',NULL),(1134629,737459,8,'composer',NULL,NULL),(1134629,2336,9,'cinematographer','director of photography',NULL),(1134854,340490,10,'production_designer',NULL,NULL),(1134854,888022,1,'actor',NULL,'[\"Sarge\"]'),(1134854,920564,2,'actor',NULL,'[\"O\'Flynn\"]'),(1134854,1182008,3,'actress',NULL,'[\"Janet\",\"Jane\"]'),(1134854,668702,4,'actor',NULL,'[\"D.J.\"]'),(1134854,1681,5,'director',NULL,NULL),(1134854,222890,6,'producer','producer',NULL),(1134854,137459,7,'composer',NULL,NULL),(1134854,842514,8,'cinematographer',NULL,NULL),(1134854,2711,9,'editor',NULL,NULL),(1135084,655510,10,'producer','producer',NULL),(1135084,2093097,1,'actor',NULL,'[\"Jesse Attica\"]'),(1135084,159789,2,'actor',NULL,'[\"A.J.\"]'),(1135084,369,3,'actor',NULL,'[\"Jack Welles\"]'),(1135084,1013003,4,'actor',NULL,'[\"Jake Attica\"]'),(1135084,525141,5,'director',NULL,NULL),(1135084,20901,6,'writer','written by',NULL),(1135084,144133,7,'writer','written by',NULL),(1135084,3033474,8,'writer','written by',NULL),(1135084,2327951,9,'producer','producer',NULL),(1135092,127429,10,'production_designer',NULL,NULL),(1135092,207218,1,'actor',NULL,'[\"Lone Man\"]'),(1135092,220976,2,'actor',NULL,'[\"Creole\"]'),(1135092,836681,3,'actor',NULL,'[\"French\"]'),(1135092,1049982,4,'actor',NULL,'[\"Waiter\"]'),(1135092,464,5,'director',NULL,NULL),(1135092,569640,6,'producer','producer',NULL),(1135092,809995,7,'producer','producer',NULL),(1135092,236313,8,'cinematographer','director of photography',NULL),(1135092,704950,9,'editor',NULL,NULL),(1135487,5696,10,'cinematographer','director of photography',NULL),(1135487,210,1,'actress',NULL,'[\"Claire Stenwick\"]'),(1135487,654110,2,'actor',NULL,'[\"Ray Koval\"]'),(1135487,929489,3,'actor',NULL,'[\"Howard Tully\"]'),(1135487,316079,4,'actor',NULL,'[\"Richard Garsik\"]'),(1135487,6904,5,'director',NULL,NULL),(1135487,81046,6,'producer','producer',NULL),(1135487,289048,7,'producer','producer',NULL),(1135487,649715,8,'producer','producer',NULL),(1135487,6133,9,'composer',NULL,NULL),(1135503,732364,10,'producer','producer',NULL),(1135503,10736,1,'actress',NULL,'[\"Julie Powell\"]'),(1135503,658,2,'actress',NULL,'[\"Julia Child\"]'),(1135503,582149,3,'actor',NULL,'[\"Eric Powell\"]'),(1135503,1804,4,'actor',NULL,'[\"Paul Child\"]'),(1135503,1188,5,'director',NULL,NULL),(1135503,2823045,6,'writer','book \"Julie & Julia\"',NULL),(1135503,157463,7,'writer','book \"My Life in France\"',NULL),(1135503,2954422,8,'writer','book \"My Life in France\"',NULL),(1135503,548257,9,'producer','producer',NULL),(1135525,56550,10,'composer',NULL,NULL),(1135525,3817,1,'actor',NULL,'[\"Cleon Salmon\"]'),(1135525,151540,2,'actor',NULL,'[\"Nuts\"]'),(1135525,373571,3,'actor',NULL,'[\"Rich\"]'),(1135525,153779,4,'actor',NULL,'[\"Anthony\"]'),(1135525,501399,5,'writer','written by',NULL),(1135525,815418,6,'writer','written by',NULL),(1135525,831479,7,'writer','written by',NULL),(1135525,501873,8,'producer','producer',NULL),(1135525,673270,9,'producer','producer',NULL),(11358390,1227576,10,'producer','producer',NULL),(11358390,396558,1,'actor',NULL,'[\"Renfield\"]'),(11358390,115,2,'actor',NULL,'[\"Dracula\"]'),(11358390,5377144,3,'actress',NULL,'[\"Rebecca\"]'),(11358390,2355635,4,'actor',NULL,'[\"Tedward Lobo\"]'),(11358390,3021,5,'director',NULL,NULL),(11358390,2466457,6,'writer','screenplay by',NULL),(11358390,3079117,7,'writer','screen story by',NULL),(11358390,4686368,8,'writer','additional material',NULL),(11358390,2221121,9,'producer','producer',NULL),(1135952,134992,10,'cinematographer',NULL,NULL),(1135952,1376,1,'actress',NULL,'[\"Maria Vial\"]'),(1135952,483,2,'actor',NULL,'[\"André Vial\"]'),(1135952,207218,3,'actor',NULL,'[\"Le Boxeur\"]'),(1135952,245164,4,'actor',NULL,'[\"Manuel Vial\"]'),(1135952,219136,5,'director',NULL,NULL),(1135952,2823430,6,'writer','scenario',NULL),(1135952,1656178,7,'writer','collaboration',NULL),(1135952,146434,8,'producer','producer',NULL),(1135952,822928,9,'composer',NULL,NULL),(1136608,1022001,10,'cinematographer','director of photography',NULL),(1136608,1663205,1,'actor',NULL,'[\"Wikus Van De Merwe\"]'),(1136608,3107870,2,'actor',NULL,'[\"Koobus Venter\"]'),(1136608,2271261,3,'actor',NULL,'[\"Grey Bradnam - UKNR Chief Correspondent\",\"Christopher Johnson\"]'),(1136608,1410076,4,'actress',NULL,'[\"Sarah Livingstone - Sociologist\"]'),(1136608,88955,5,'director',NULL,NULL),(1136608,2833612,6,'writer','written by',NULL),(1136608,192253,7,'producer','producer',NULL),(1136608,1392,8,'producer','producer',NULL),(1136608,795141,9,'composer',NULL,NULL),(1137436,849670,10,'production_designer',NULL,NULL),(1137436,1373910,1,'actor',NULL,'[\"Carty\"]'),(1137436,2107665,2,'actor',NULL,'[\"Elvis\"]'),(1137436,334318,3,'actor',NULL,'[\"Godden\"]'),(1137436,497966,4,'actor',NULL,'[\"Baby\"]'),(1137436,1425041,5,'director',NULL,NULL),(1137436,1093541,6,'writer','writer',NULL),(1137436,400542,7,'producer','producer',NULL),(1137436,593786,8,'cinematographer',NULL,NULL),(1137436,1349387,9,'editor',NULL,NULL),(11379572,7848566,10,'cinematographer',NULL,NULL),(11379572,4714676,1,'actress',NULL,'[\"Lena\"]'),(11379572,10931593,2,'actor',NULL,'[\"Qe\"]'),(11379572,9117702,3,'actress',NULL,'[\"Li\"]'),(11379572,6998370,4,'actor',NULL,'[\"Zem\"]'),(11379572,7939934,5,'producer','producer',NULL),(11379572,6994,6,'producer','producer',NULL),(11379572,6502171,7,'producer','producer',NULL),(11379572,11857184,8,'producer','line producer',NULL),(11379572,1127479,9,'composer',NULL,NULL),(11388406,1386280,10,'cinematographer',NULL,NULL),(11388406,1555340,1,'actress',NULL,'[\"Sarah\"]'),(11388406,788340,2,'actress',NULL,'[\"Joan\"]'),(11388406,11337981,3,'actress',NULL,'[\"Willow\"]'),(11388406,6699059,4,'actress',NULL,'[\"Shannon\"]'),(11388406,1337885,5,'director',NULL,NULL),(11388406,6742493,6,'producer','producer',NULL),(11388406,2400555,7,'producer','producer',NULL),(11388406,2594844,8,'composer',NULL,NULL),(11388406,1414276,9,'composer',NULL,NULL),(11389748,1030253,10,'cinematographer',NULL,NULL),(11389748,5042,1,'actor',NULL,'[\"Jay\"]'),(11389748,588,2,'actress',NULL,'[\"Gail\"]'),(11389748,235652,3,'actress',NULL,'[\"Linda\"]'),(11389748,83714,4,'actor',NULL,'[\"Richard\"]'),(11389748,469823,5,'director',NULL,NULL),(11389748,1837175,6,'producer','producer',NULL),(11389748,3371813,7,'producer','producer',NULL),(11389748,1965594,8,'producer','producer',NULL),(11389748,2289851,9,'composer',NULL,NULL),(11392272,4485648,10,'editor',NULL,NULL),(11392272,1690432,1,'actress',NULL,'[\"Renee\"]'),(11392272,1623675,2,'actress',NULL,'[\"Valerie\"]'),(11392272,1160472,3,'actor',NULL,'[\"Gavin\"]'),(11392272,39148,4,'actor',NULL,'[\"James\"]'),(11392272,1319591,5,'director',NULL,NULL),(11392272,723949,6,'writer','written by',NULL),(11392272,1701120,7,'producer','producer',NULL),(11392272,5811897,8,'composer',NULL,NULL),(11392272,3718242,9,'cinematographer',NULL,NULL),(1139328,248997,10,'cinematographer','director of photography',NULL),(1139328,191,1,'actor',NULL,'[\"The Ghost\"]'),(1139328,112,2,'actor',NULL,'[\"Adam Lang\"]'),(1139328,931404,3,'actress',NULL,'[\"Ruth Lang\"]'),(1139328,1256532,4,'actor',NULL,'[\"Rick Ricardelli\"]'),(1139328,591,5,'director',NULL,NULL),(1139328,365249,6,'writer','screenplay',NULL),(1139328,71452,7,'producer','producer',NULL),(1139328,764963,8,'producer','producer',NULL),(1139328,6035,9,'composer',NULL,NULL),(11394158,1161683,10,'producer','producer',NULL),(11394158,2718512,1,'actress',NULL,'[\"Turquoise\"]'),(11394158,586386,2,'actress',NULL,'[\"Betty Ray\"]'),(11394158,560893,3,'actor',NULL,'[\"Wayman\"]'),(11394158,3069604,4,'actor',NULL,'[\"Ronnie\"]'),(11394158,1474677,5,'director',NULL,NULL),(11394158,2021909,6,'producer','producer',NULL),(11394158,2593874,7,'producer','producer',NULL),(11394158,9346140,8,'producer','producer',NULL),(11394158,1435934,9,'producer','producer',NULL),(11394332,5983319,10,'composer',NULL,NULL),(11394332,6564737,1,'actor',NULL,'[\"Kurt Kunkle\"]'),(11394332,3550886,2,'actress',NULL,'[\"Jessie Adams\"]'),(11394332,274,3,'actor',NULL,'[\"Kris Kunkle\"]'),(11394332,3324982,4,'actor',NULL,'[\"Miles Manderville\"]'),(11394332,2671096,5,'director',NULL,NULL),(11394332,3888568,6,'writer','written by',NULL),(11394332,3040960,7,'producer','producer',NULL),(11394332,6209017,8,'producer','producer',NULL),(11394332,3096179,9,'producer','producer',NULL),(1139668,370258,10,'cinematographer','director of photography',NULL),(1139668,951148,1,'actress',NULL,'[\"Casey Beldon\"]'),(1139668,198,2,'actor',NULL,'[\"Rabbi Sendak\"]'),(1139668,1544217,3,'actor',NULL,'[\"Mark\"]'),(1139668,328709,4,'actress',NULL,'[\"Romy\"]'),(1139668,275286,5,'director',NULL,NULL),(1139668,881,6,'producer','producer',NULL),(1139668,286320,7,'producer','producer',NULL),(1139668,298181,8,'producer','producer',NULL),(1139668,1014697,9,'composer',NULL,NULL),(1139797,887227,10,'cinematographer',NULL,NULL),(1139797,2968765,1,'actor',NULL,'[\"Oskar\"]'),(1139797,2968351,2,'actress',NULL,'[\"Eli\"]'),(1139797,706537,3,'actor',NULL,'[\"Håkan\"]'),(1139797,196928,4,'actor',NULL,'[\"Erik\"]'),(1139797,19247,5,'director',NULL,NULL),(1139797,512137,6,'writer','screenplay',NULL),(1139797,2587167,7,'producer','producer',NULL),(1139797,635409,8,'producer','producer',NULL),(1139797,845542,9,'composer',NULL,NULL),(1142798,562671,10,'production_designer',NULL,NULL),(1142798,870,1,'actress',NULL,'[\"Charlotte Cartwright\"]'),(1142798,5569,2,'actress',NULL,'[\"Alice Pratt\"]'),(1142798,5125,3,'actress',NULL,'[\"Andrea\"]'),(1142798,241870,4,'actor',NULL,'[\"Chris\"]'),(1142798,1347153,5,'director',NULL,NULL),(1142798,134253,6,'producer','producer',NULL),(1142798,956374,7,'composer',NULL,NULL),(1142798,475746,8,'cinematographer',NULL,NULL),(1142798,398335,9,'editor',NULL,NULL),(1142800,1347153,1,'actor',NULL,'[\"Madea\",\"Joe\",\"Brian\"]'),(1142800,700443,2,'actress',NULL,'[\"Candace Washington\"]'),(1142800,1035682,3,'actor',NULL,'[\"Joshua Hardaway\"]'),(1142800,2052942,4,'actor',NULL,'[\"Brown\"]'),(1142800,134253,5,'producer','producer',NULL),(1142800,956374,6,'composer',NULL,NULL),(1142800,344738,7,'cinematographer','director of photography',NULL),(1142800,398335,8,'editor',NULL,NULL),(1142800,562671,9,'production_designer',NULL,NULL),(1142977,2440000,10,'cinematographer','director of photography',NULL),(1142977,213,1,'actress',NULL,'[\"Elsa Van Helsing\"]'),(1142977,1573,2,'actress',NULL,'[\"Mrs. Frankenstein\",\"Weird Girl\",\"Gym Teacher\"]'),(1142977,1737,3,'actor',NULL,'[\"Mr. Frankenstein\",\"Mr. Burgemeister\",\"Nassor\"]'),(1142977,1445,4,'actor',NULL,'[\"Mr. Rzykruski\"]'),(1142977,318,5,'director',NULL,NULL),(1142977,728125,6,'writer',NULL,NULL),(1142977,41864,7,'writer','screenplay',NULL),(1142977,7831,8,'producer','producer',NULL),(1142977,384,9,'composer',NULL,NULL),(1142988,524342,10,'producer','producer',NULL),(1142988,1337,1,'actress',NULL,'[\"Abby\"]'),(1142988,124930,2,'actor',NULL,'[\"Mike Chadway\"]'),(1142988,877430,3,'actress',NULL,'[\"Joy\"]'),(1142988,935721,4,'actor',NULL,'[\"Colin\"]'),(1142988,525659,5,'director',NULL,NULL),(1142988,2946831,6,'writer','screenplay',NULL),(1142988,527581,7,'writer','screenplay',NULL),(1142988,809006,8,'writer','screenplay',NULL),(1142988,2907292,9,'producer','producer',NULL),(1143155,2377373,10,'composer',NULL,NULL),(1143155,3586112,1,'actor',NULL,'[\"Pedestrian in City\"]'),(1143155,3587024,2,'actress',NULL,'[\"Minoo\'s Mom\"]'),(1143155,3586343,3,'actor',NULL,'[\"Bus Driver\"]'),(1143155,3585702,4,'actress',NULL,'[\"Hyun\'s Mom\"]'),(1143155,811611,5,'director',NULL,NULL),(1143155,336486,6,'producer','producer',NULL),(1143155,1344470,7,'producer','producer',NULL),(1143155,1185381,8,'producer','producer',NULL),(1143155,1082606,9,'producer','producer',NULL),(1144825,1888734,10,'producer','producer',NULL),(1144825,430,1,'actor',NULL,'[\"Jacob Jones\"]'),(1144825,1091140,2,'actress',NULL,'[\"Emilie Jones\"]'),(1144825,1087290,3,'actor',NULL,'[\"Mike Garner\"]'),(1144825,2844368,4,'actor',NULL,'[\"Toby Jones\"]'),(1144825,544279,5,'director',NULL,NULL),(1144825,1972023,6,'writer','writer',NULL),(1144825,1970900,7,'writer','writer',NULL),(1144825,186717,8,'producer','producer',NULL),(1144825,2062941,9,'producer','producer',NULL),(1144884,3911,10,'composer',NULL,NULL),(1144884,1214657,1,'actor',NULL,'[\"Hunt\"]'),(1144884,20739,2,'actress',NULL,'[\"MILF\",\"Samantha\"]'),(1144884,278767,3,'actor',NULL,'[\"Mechanic\"]'),(1144884,2092545,4,'actor',NULL,'[\"Nick\"]'),(1144884,254786,5,'director',NULL,NULL),(1144884,107774,6,'writer','written by',NULL),(1144884,714695,7,'writer','characters',NULL),(1144884,675013,8,'producer','producer',NULL),(1144884,956015,9,'producer','producer',NULL),(11456054,5002039,10,'editor',NULL,NULL),(11456054,8908475,1,'actress',NULL,'[\"Zoe Hull\"]'),(11456054,593664,2,'actress',NULL,'[\"Jennifer Hull\"]'),(11456054,5048,3,'actor',NULL,'[\"Todd Hull\"]'),(11456054,9668853,4,'actor',NULL,'[\"Tristan Voy\"]'),(11456054,710272,5,'director',NULL,NULL),(11456054,5472785,6,'producer','producer',NULL),(11456054,2447772,7,'producer','producer',NULL),(11456054,7915626,8,'composer',NULL,NULL),(11456054,602824,9,'cinematographer',NULL,NULL),(1146320,1562889,10,'composer',NULL,NULL),(1146320,288271,1,'actress',NULL,'[\"Sonia\"]'),(1146320,719220,2,'actor',NULL,'[\"Marco\"]'),(1146320,1570386,3,'actor',NULL,'[\"Virgile\"]'),(1146320,174302,4,'actress',NULL,'[\"Perez\"]'),(1146320,1847711,5,'director',NULL,NULL),(1146320,2288376,6,'writer','writer',NULL),(1146320,1498956,7,'writer','story editor',NULL),(1146320,1064746,8,'producer','producer',NULL),(1146320,1700020,9,'producer','producer',NULL),(1148165,3533233,10,'writer','stage musical',NULL),(1148165,3176901,1,'actor',NULL,'[\"Willie\"]'),(1148165,2371735,2,'actress',NULL,'[\"Rosie\"]'),(1148165,227669,3,'actor',NULL,'[\"Uncle Tadpole\"]'),(1148165,1833818,4,'actress',NULL,'[\"Annie\"]'),(1148165,674034,5,'director',NULL,NULL),(1148165,2853220,6,'writer','stage musical',NULL),(1148165,3532291,7,'writer','stage musical',NULL),(1148165,3532896,8,'writer','stage musical',NULL),(1148165,3514379,9,'writer','stage musical',NULL),(1148204,1206265,10,'producer','producer',NULL),(1148204,267812,1,'actress',NULL,'[\"Kate\"]'),(1148204,765597,2,'actor',NULL,'[\"John\"]'),(1148204,2265157,3,'actress',NULL,'[\"Esther\"]'),(1148204,1634,4,'actress',NULL,'[\"Sister Abigail\"]'),(1148204,1429471,5,'director',NULL,NULL),(1148204,424901,6,'writer','screenplay',NULL),(1148204,2858852,7,'writer','story',NULL),(1148204,2248832,8,'producer','producer',NULL),(1148204,138,9,'producer','producer',NULL),(1148261,8146780,10,'producer','producer',NULL),(1148261,1040968,1,'actor',NULL,'[\"Ichigo Kurosaki\"]'),(1148261,1046347,2,'actress',NULL,'[\"Rukia Kuchiki\"]'),(1148261,1948682,3,'actor',NULL,'[\"Yasutora \'Chad\' Sado\"]'),(1148261,1124112,4,'actress',NULL,'[\"Orihime Inoue\"]'),(1148261,8352,5,'director',NULL,NULL),(1148261,5159316,6,'writer','screenplay',NULL),(1148261,948412,7,'writer','screenplay',NULL),(1148261,1818197,8,'writer','manga',NULL),(1148261,4115082,9,'producer','producer',NULL),(11488024,8469859,10,'producer','producer',NULL),(11488024,519933,1,'actor',NULL,'[\"João\"]'),(11488024,2386605,2,'actress',NULL,'[\"Rosa\"]'),(11488024,6810599,3,'actress',NULL,'[\"Laura\"]'),(11488024,119438,4,'actor',NULL,'[\"António\"]'),(11488024,3299019,5,'director',NULL,NULL),(11488024,1715521,6,'writer','screenplay',NULL),(11488024,7915627,7,'writer','screenplay',NULL),(11488024,14967796,8,'producer','producer',NULL),(11488024,433355,9,'producer','producer',NULL),(1149361,619216,10,'cinematographer',NULL,NULL),(1149361,200702,1,'actor',NULL,'[\"Bazil\"]'),(1149361,244707,2,'actor',NULL,'[\"Nicolas Thibault de Fenouillet\"]'),(1149361,548169,3,'actor',NULL,'[\"François Marconi\"]'),(1149361,603446,4,'actress',NULL,'[\"Tambouille\"]'),(1149361,466,5,'director',NULL,NULL),(1149361,491011,6,'writer','scenario',NULL),(1149361,109393,7,'producer','producer',NULL),(1149361,499448,8,'producer','producer',NULL),(1149361,3449976,9,'composer',NULL,NULL),(1152397,724706,10,'editor',NULL,NULL),(1152397,2718512,1,'actress',NULL,'[\"Dee Roberts\"]'),(1152397,1599,2,'actor',NULL,'[\"Sam Conroy\"]'),(1152397,5569,3,'actress',NULL,'[\"Alma Roberts\"]'),(1152397,625789,4,'actor',NULL,'[\"David Cohen\"]'),(1152397,228400,5,'director',NULL,NULL),(1152397,1683671,6,'writer','written by',NULL),(1152397,144841,7,'composer',NULL,NULL),(1152397,6911,8,'cinematographer','director of photography',NULL),(1152397,165679,9,'editor',NULL,NULL),(1152398,634964,10,'editor',NULL,NULL),(1152398,1641117,1,'actor',NULL,'[\"Kyle\"]'),(1152398,1227814,2,'actress',NULL,'[\"Lindy\"]'),(1152398,1581,3,'actress',NULL,'[\"Kendra\"]'),(1152398,103299,4,'actor',NULL,'[\"Student\"]'),(1152398,1400426,5,'director',NULL,NULL),(1152398,2860544,6,'writer','novel',NULL),(1152398,142134,7,'producer','producer',NULL),(1152398,953616,8,'composer',NULL,NULL),(1152398,907999,9,'cinematographer','director of photography',NULL),(11525644,332,1,'actor',NULL,'[\"Curt Goynes\"]'),(11525644,1125,2,'actor',NULL,'[\"Ronald Russo\"]'),(11525644,1092086,3,'actor',NULL,'[\"Matt Wertz\"]'),(11525644,358316,4,'actor',NULL,'[\"Joe Finney\"]'),(11525644,1752,5,'director',NULL,NULL),(11525644,4412,6,'writer','written by',NULL),(11525644,798661,7,'producer','producer',NULL),(11525644,391794,8,'composer',NULL,NULL),(11525644,1667545,9,'production_designer',NULL,NULL),(1152836,6106,10,'composer',NULL,NULL),(1152836,288,1,'actor',NULL,'[\"Melvin Purvis\"]'),(1152836,136,2,'actor',NULL,'[\"John Dillinger\"]'),(1152836,831601,3,'actor',NULL,'[\"Charles Makley\"]'),(1152836,164809,4,'actor',NULL,'[\"\'Red\' Hamilton\"]'),(1152836,520,5,'director',NULL,NULL),(1152836,72032,6,'writer','screenplay',NULL),(1152836,81189,7,'writer','screenplay',NULL),(1152836,123174,8,'writer','book \"Public Enemies: America\'s Greatest Crime Wave and the Birth of the FBI, 1933-34\"',NULL),(1152836,592746,9,'producer','producer',NULL),(1152850,1240085,10,'cinematographer','director of photography',NULL),(1152850,931329,1,'actress',NULL,'[\"Wendy\"]'),(1152850,3086405,2,'actress',NULL,'[\"Lucy the Dog\"]'),(1152850,2993565,3,'actor',NULL,'[\"Kid by Fire\"]'),(1152850,2993136,4,'actor',NULL,'[\"Kid by Fire\"]'),(1152850,716980,5,'director',NULL,NULL),(1152850,1299680,6,'writer','screenplay by',NULL),(1152850,275244,7,'producer','producer',NULL),(1152850,1965828,8,'producer','producer',NULL),(1152850,1507013,9,'producer','producer',NULL),(1153103,869506,10,'cinematographer',NULL,NULL),(1153103,18271,1,'actress',NULL,'[\"Alyssa Harris\"]'),(1153103,1456426,2,'actor',NULL,'[\"Cody Masterson\"]'),(1153103,103299,3,'actor',NULL,'[\"Gabe Masterson\"]'),(1153103,2650072,4,'actor',NULL,'[\"Jason Harris\"]'),(1153103,413465,5,'director',NULL,NULL),(1153103,175768,6,'writer','screenplay',NULL),(1153103,106842,7,'producer','producer',NULL),(1153103,937304,8,'producer','producer',NULL),(1153103,101096,9,'composer',NULL,NULL),(1155056,449820,10,'editor',NULL,NULL),(1155056,748620,1,'actor',NULL,'[\"Peter Klaven\"]'),(1155056,781981,2,'actor',NULL,'[\"Sydney Fife\"]'),(1155056,429069,3,'actress',NULL,'[\"Zooey Rice\"]'),(1155056,1901220,4,'actress',NULL,'[\"Hailey\"]'),(1155056,357453,5,'director',NULL,NULL),(1155056,505648,6,'writer','screenplay',NULL),(1155056,209773,7,'producer','producer',NULL),(1155056,788640,8,'composer',NULL,NULL),(1155056,3394,9,'cinematographer','director of photography',NULL),(1155076,226,10,'producer','producer',NULL),(1155076,329,1,'actor',NULL,'[\"Mr. Han\"]'),(1155076,1535523,2,'actor',NULL,'[\"Dre Parker\"]'),(1155076,378245,3,'actress',NULL,'[\"Sherry Parker\"]'),(1155076,3924219,4,'actress',NULL,'[\"Meiying\"]'),(1155076,958969,5,'director',NULL,NULL),(1155076,614050,6,'writer','screenplay',NULL),(1155076,436543,7,'writer','story',NULL),(1155076,489876,8,'producer','producer',NULL),(1155076,586,9,'producer','producer',NULL),(11555492,491271,10,'editor',NULL,NULL),(11555492,11249900,1,'actress',NULL,'[\"Farha\"]'),(11555492,1678557,2,'actor',NULL,'[\"Farha\'s Father\"]'),(11555492,1846124,3,'actor',NULL,'[\"Abu Walid\"]'),(11555492,11249901,4,'actress',NULL,'[\"Farida\"]'),(11555492,4627221,5,'director',NULL,NULL),(11555492,8685376,6,'producer','producer',NULL),(11555492,7297814,7,'producer','producer',NULL),(11555492,4081300,8,'composer',NULL,NULL),(11555492,3340333,9,'cinematographer',NULL,NULL),(1156398,95272,10,'cinematographer','director of photography',NULL),(1156398,251986,1,'actor',NULL,'[\"Columbus\"]'),(1156398,1297015,2,'actress',NULL,'[\"Wichita\"]'),(1156398,437,3,'actor',NULL,'[\"Tallahassee\"]'),(1156398,1113550,4,'actress',NULL,'[\"Little Rock\"]'),(1156398,281508,5,'director',NULL,NULL),(1156398,1014201,6,'writer','written by',NULL),(1156398,1116660,7,'writer','written by',NULL),(1156398,689780,8,'producer','producer',NULL),(1156398,2867565,9,'composer',NULL,NULL),(11564570,374511,10,'production_designer',NULL,NULL),(11564570,185819,1,'actor',NULL,'[\"Benoit Blanc\"]'),(11564570,1570,2,'actor',NULL,'[\"Miles Bron\"]'),(11564570,5028,3,'actress',NULL,'[\"Birdie Jay\"]'),(11564570,1176985,4,'actor',NULL,'[\"Duke Cody\"]'),(11564570,426059,5,'director',NULL,NULL),(11564570,74851,6,'producer','producer',NULL),(11564570,1791103,7,'composer',NULL,NULL),(11564570,6911,8,'cinematographer','director of photography',NULL),(11564570,3032,9,'editor','film editor',NULL),(1160419,135847,10,'producer','producer',NULL),(1160419,3154303,1,'actor',NULL,'[\"Paul Atreides\"]'),(1160419,272581,2,'actress',NULL,'[\"Lady Jessica Atreides\"]'),(1160419,3918035,3,'actress',NULL,'[\"Chani\"]'),(1160419,1209966,4,'actor',NULL,'[\"Duke Leto Atreides\"]'),(1160419,898288,5,'director',NULL,NULL),(1160419,3123612,6,'writer','screenplay by',NULL),(1160419,744839,7,'writer','screenplay by',NULL),(1160419,378541,8,'writer','based on the novel Dune written by',NULL),(1160419,1212547,9,'producer','producer',NULL),(1160996,1013747,10,'producer','producer',NULL),(1160996,954225,1,'actor',NULL,'[\"Sam\"]'),(1160996,401,2,'actor',NULL,'[\"Briggs\"]'),(1160996,200,3,'actor',NULL,'[\"Mason\"]'),(1160996,838000,4,'actress',NULL,'[\"Kai\"]'),(1160996,1199954,5,'director',NULL,NULL),(1160996,3118508,6,'writer','screenplay',NULL),(1160996,850610,7,'writer','screenplay',NULL),(1160996,2100946,8,'writer','screenplay',NULL),(1160996,55050,9,'producer','producer',NULL),(11612120,3343883,10,'actress',NULL,'[\"Cha Jin-Ok\"]'),(11612120,8853855,1,'actor',NULL,'[\"Cha Hyun-Su\"]'),(11612120,2353702,2,'actor',NULL,'[\"Pyeon Sang-Wook\"]'),(11612120,3315713,3,'actress',NULL,'[\"Seo Yi-Kyung\"]'),(11612120,9946376,4,'actor',NULL,'[\"Lee Eun-Hyeok\"]'),(11612120,9180058,5,'actress',NULL,'[\"Yoon Ji-Su\"]'),(11612120,10893291,6,'actress',NULL,'[\"Son Hye-In\"]'),(11612120,2494402,7,'actor',NULL,'[\"Kang Seung-Wan\"]'),(11612120,12168735,8,'actor',NULL,'[\"No Byeong-Il\"]'),(11612120,12168737,9,'actor',NULL,'[\"Ryu Jae-Hwan\"]'),(1161411,4388629,10,'composer',NULL,NULL),(1161411,1273697,1,'actor',NULL,'[\"Pablo\"]'),(1161411,148382,2,'actress',NULL,'[\"Claudia\"]'),(1161411,10207,3,'actress',NULL,'[\"Mónica\"]'),(1161411,87249,4,'actor',NULL,'[\"Eduardo\"]'),(1161411,785515,5,'director',NULL,NULL),(1161411,3963209,6,'writer','written by',NULL),(1161411,162320,7,'producer','producer',NULL),(1161411,1336359,8,'composer',NULL,NULL),(1161411,4388657,9,'composer',NULL,NULL),(1161864,373588,10,'composer',NULL,NULL),(1161864,1524440,1,'actor',NULL,'[\"Michael Kovak\"]'),(1161864,164,2,'actor',NULL,'[\"Father Lucas Trevant\"]'),(1161864,1354,3,'actor',NULL,'[\"Father Xavier\"]'),(1161864,103797,4,'actress',NULL,'[\"Angeline\"]'),(1161864,405632,5,'director',NULL,NULL),(1161864,678104,6,'writer','written by',NULL),(1161864,2883153,7,'writer','book',NULL),(1161864,4927,8,'producer','producer',NULL),(1161864,1246087,9,'producer','producer',NULL),(11621206,6703006,10,'editor',NULL,NULL),(11621206,11278933,1,'actress',NULL,NULL),(11621206,10957422,2,'actress',NULL,NULL),(11621206,10957423,3,'actress',NULL,NULL),(11621206,11278934,4,'actress',NULL,NULL),(11621206,5584891,5,'director',NULL,NULL),(11621206,11278935,6,'writer',NULL,NULL),(11621206,10522570,7,'writer',NULL,NULL),(11621206,2692804,8,'cinematographer',NULL,NULL),(11621206,5474751,9,'editor',NULL,NULL),(11621960,722922,10,'editor',NULL,NULL),(11621960,6766997,1,'actress',NULL,'[\"Fátima Padinha\"]'),(11621960,3619382,2,'actress',NULL,'[\"Teresa Miguel\"]'),(11621960,9040089,3,'actress',NULL,'[\"Lena Coelho\"]'),(11621960,2088141,4,'actress',NULL,'[\"Laura Diogo\"]'),(11621960,784742,5,'director',NULL,NULL),(11621960,142404,6,'writer','writer',NULL),(11621960,9215926,7,'writer','writer',NULL),(11621960,2886744,8,'writer','consultant',NULL),(11621960,12541744,9,'cinematographer',NULL,NULL),(11644096,11287181,1,'actor',NULL,'[\"Jack Cruz\"]'),(11644096,186,2,'actor',NULL,'[\"Detective\"]'),(11644096,11287182,3,'actress',NULL,'[\"Toototabon\"]'),(11644096,1281343,4,'actress',NULL,'[\"Waitress\"]'),(11644096,622301,5,'producer','producer',NULL),(11644096,720397,6,'cinematographer','director of photography',NULL),(1164999,763395,10,'composer',NULL,NULL),(1164999,849,1,'actor',NULL,'[\"Uxbal\"]'),(1164999,3159825,2,'actress',NULL,'[\"Marambra\"]'),(1164999,3904817,3,'actress',NULL,'[\"Ana\"]'),(1164999,3127008,4,'actor',NULL,'[\"Mateo\"]'),(1164999,327944,5,'director',NULL,NULL),(1164999,3174584,6,'writer','written by',NULL),(1164999,1481172,7,'writer','written by',NULL),(1164999,100559,8,'producer','producer',NULL),(1164999,453091,9,'producer','producer',NULL),(1166805,1834845,10,'production_designer',NULL,NULL),(1166805,2878278,1,'actor',NULL,'[\"Danilo\"]'),(1166805,2881816,2,'actor',NULL,'[\"Marcos\"]'),(1166805,2889593,3,'actor',NULL,'[\"Lucas\"]'),(1166805,2900067,4,'actor',NULL,'[\"Porteiro da Escola\"]'),(1166805,2406154,5,'director',NULL,NULL),(1166805,2401579,6,'producer','line producer',NULL),(1166805,2881176,7,'composer',NULL,NULL),(1166805,2716026,8,'cinematographer',NULL,NULL),(1166805,2296986,9,'editor',NULL,NULL),(11671006,5494,10,'producer','producer',NULL),(11671006,366389,1,'actor',NULL,'[\"Teddy\"]'),(11671006,437,2,'actor',NULL,'[\"The Man from Toronto\"]'),(11671006,8567129,3,'actress',NULL,'[\"Lori\"]'),(11671006,192505,4,'actress',NULL,'[\"Anne\"]'),(11671006,400850,5,'director',NULL,NULL),(11671006,289219,6,'writer','screenplay by',NULL),(11671006,6200158,7,'writer','screenplay by',NULL),(11671006,89820,8,'writer','story by',NULL),(11671006,85542,9,'producer','producer',NULL),(1167638,1118769,10,'producer','producer',NULL),(1167638,606,1,'actor',NULL,'[\"Charly Matteï\"]'),(1167638,580101,2,'actor',NULL,'[\"Tony Zacchia\"]'),(1167638,201669,3,'actor',NULL,'[\"Martin Beaudinard\"]'),(1167638,283997,4,'actress',NULL,'[\"Marie Goldman\"]'),(1167638,6939,5,'director',NULL,NULL),(1167638,1118181,6,'writer','novel',NULL),(1167638,1141181,7,'writer','scenario and adaptation',NULL),(1167638,478799,8,'writer','scenario and adaptation',NULL),(1167638,39903,9,'writer','dialogue',NULL),(1167660,2212109,10,'producer','producer',NULL),(1167660,241121,1,'actor',NULL,'[\"OSS 117\"]'),(1167660,972531,2,'actress',NULL,'[\"Dolorès Koulechov\"]'),(1167660,901057,3,'actor',NULL,'[\"Von Zimmel\"]'),(1167660,3367478,4,'actor',NULL,'[\"Heinrich\"]'),(1167660,371890,5,'director',NULL,NULL),(1167660,115504,6,'writer','character',NULL),(1167660,355213,7,'writer','screenplay',NULL),(1167660,22969,8,'producer','producer',NULL),(1167660,22971,9,'producer','producer',NULL),(11681250,635742,10,'cinematographer',NULL,NULL),(11681250,820053,1,'actress',NULL,'[\"Agnes\"]'),(11681250,3255459,2,'actress',NULL,'[\"Eleanor\"]'),(11681250,544448,3,'actress',NULL,'[\"Opal\"]'),(11681250,121620,4,'actress',NULL,'[\"Greta\"]'),(11681250,536632,5,'director',NULL,NULL),(11681250,2876788,6,'writer','screenplay by',NULL),(11681250,2602433,7,'writer','screenplay by',NULL),(11681250,3808455,8,'producer','producer',NULL),(11681250,6235,9,'composer',NULL,NULL),(11697690,14568116,10,'actress',NULL,'[\"An interview woman\"]'),(11697690,1195119,1,'actress',NULL,'[\"Gam-hee\"]'),(11697690,2530783,2,'actress',NULL,'[\"Young-ji\"]'),(11697690,1022228,3,'actress',NULL,'[\"Su-young\"]'),(11697690,1040587,4,'actor',NULL,'[\"Mr. Jung\"]'),(11697690,393254,5,'director',NULL,NULL),(11697690,11317917,6,'actor',NULL,'[\"Young Poet\"]'),(11697690,1296981,7,'actress',NULL,'[\"Young-soon\"]'),(11697690,4770367,8,'actress',NULL,'[\"Woo-jin\"]'),(11697690,11317916,9,'actor',NULL,'[\"Cat Man\"]'),(11700260,3251466,10,'editor',NULL,NULL),(11700260,4851,1,'actress',NULL,'[\"Lola Cuevas\"]'),(11700260,104,2,'actor',NULL,'[\"Félix Rivero\"]'),(11700260,553650,3,'actor',NULL,'[\"Iván Torres\"]'),(11700260,351133,4,'actor',NULL,'[\"Humberto Suárez\"]'),(11700260,1286935,5,'director',NULL,NULL),(11700260,1287124,6,'director',NULL,NULL),(11700260,3321995,7,'writer','screenwriter',NULL),(11700260,1255565,8,'producer','producer',NULL),(11700260,1338640,9,'cinematographer',NULL,NULL),(11703050,3132183,10,'writer','story',NULL),(11703050,5301405,1,'actress',NULL,'[\"Mabel (segment \\\"I\\\")\"]'),(11703050,328828,2,'actor',NULL,'[\"Raymond (segment \\\"I\\\")\"]'),(11703050,86865,3,'actress',NULL,'[\"Penelope (segment \\\"I\\\")\"]'),(11703050,13448307,4,'actress',NULL,'[\"Isobel (segment \\\"I\\\")\"]'),(11703050,46469,5,'director',NULL,NULL),(11703050,2809195,6,'director',NULL,NULL),(11703050,3548166,7,'director',NULL,NULL),(11703050,2808505,8,'director',NULL,NULL),(11703050,909629,9,'writer','written by',NULL),(1170358,192253,10,'producer','producer',NULL),(1170358,5212,1,'actor',NULL,'[\"Gandalf\"]'),(1170358,293509,2,'actor',NULL,'[\"Bilbo\"]'),(1170358,35514,3,'actor',NULL,'[\"Thorin\"]'),(1170358,832792,4,'actor',NULL,'[\"Balin\"]'),(1170358,1392,5,'director',NULL,NULL),(1170358,909638,6,'writer','screenplay',NULL),(1170358,101991,7,'writer','screenplay',NULL),(1170358,868219,8,'writer','screenplay',NULL),(1170358,866058,9,'writer','novel \"The Hobbit\"',NULL),(1171222,2969,10,'production_designer',NULL,NULL),(1171222,1745736,1,'actress',NULL,'[\"Montana Moore\"]'),(1171222,4875,2,'actor',NULL,'[\"Langston\"]'),(1171222,779325,3,'actress',NULL,'[\"Gail\"]'),(1171222,5023,4,'actor',NULL,'[\"Quinton\"]'),(1171222,847859,5,'director',NULL,NULL),(1171222,938145,6,'producer','producer',NULL),(1171222,956374,7,'composer',NULL,NULL),(1171222,3712,8,'cinematographer',NULL,NULL),(1171222,847258,9,'editor',NULL,NULL),(1172049,1053785,10,'producer','producer',NULL),(1172049,350453,1,'actor',NULL,'[\"Davis\"]'),(1172049,915208,2,'actress',NULL,'[\"Karen\"]'),(1172049,177933,3,'actor',NULL,'[\"Phil\"]'),(1172049,6237346,4,'actor',NULL,'[\"Chris\"]'),(1172049,885249,5,'director',NULL,NULL),(1172049,1032743,6,'writer','written by',NULL),(1172049,355147,7,'producer','producer',NULL),(1172049,454004,8,'producer','producer',NULL),(1172049,2590720,9,'producer','producer',NULL),(1172203,3498099,1,'archive_sound',NULL,'[\"Sita (singing)\"]'),(1172203,2965970,2,'actor',NULL,'[\"Narrator - Shadow Puppet 1\"]'),(1172203,2966762,3,'actress',NULL,'[\"Narrator - Shadow Puppet 2\"]'),(1172203,1054473,4,'actor',NULL,'[\"Narrator - Shadow Puppet 3\"]'),(1172203,1315434,5,'director',NULL,NULL),(1172203,1033349,6,'writer','book \"The Ramayana\"',NULL),(1172203,2655618,7,'composer',NULL,NULL),(1172206,1161987,10,'cinematographer','director of photography',NULL),(1172206,2931011,1,'actor',NULL,'[\"Marek\"]'),(1172206,1522852,2,'actor',NULL,'[\"Mariusz\"]'),(1172206,72610,3,'actor',NULL,'[\"Graham\"]'),(1172206,2129938,4,'actor',NULL,'[\"Tomo\"]'),(1172206,276349,5,'director',NULL,NULL),(1172206,292211,6,'writer','original screenplay',NULL),(1172206,4360886,7,'writer','original idea',NULL),(1172206,1446338,8,'producer','producer',NULL),(1172206,1622605,9,'composer',NULL,NULL),(1172233,442606,10,'production_designer',NULL,NULL),(1172233,680983,1,'actor',NULL,'[\"Bliss Cavendar\"]'),(1172233,106,2,'actress',NULL,'[\"Smashley Simpson\"]'),(1172233,1325419,3,'actress',NULL,'[\"Maggie Mayhem\"]'),(1172233,3080981,4,'actress',NULL,'[\"Corbi\"]'),(1172233,189272,5,'writer','screenplay',NULL),(1172233,578814,6,'producer','producer',NULL),(1172233,3370006,7,'composer',NULL,NULL),(1172233,5934,8,'cinematographer','director of photography',NULL),(1172233,862664,9,'editor',NULL,NULL),(1172570,809040,10,'cinematographer','director of photography',NULL),(1172570,362766,1,'actor',NULL,'[\"Charles Bronson\",\"Michael Peterson\"]'),(1172570,1433549,2,'actress',NULL,'[\"Irene\"]'),(1172570,1568589,3,'actor',NULL,'[\"Hysterical Screw\"]'),(1172570,3032715,4,'actress',NULL,'[\"Julie\"]'),(1172570,716347,5,'director',NULL,NULL),(1172570,635431,6,'writer','screenplay',NULL),(1172570,2929774,7,'producer','producer',NULL),(1172570,696486,8,'producer','producer',NULL),(1172570,5710807,9,'composer',NULL,NULL),(11727866,1980,10,'composer',NULL,NULL),(11727866,8165602,1,'actress',NULL,'[\"Birdy\"]'),(11727866,684877,2,'actress',NULL,'[\"Lady Aislinn\"]'),(11727866,778831,3,'actor',NULL,'[\"Lord Rollo\"]'),(11727866,789093,4,'actress',NULL,'[\"Morwenna\"]'),(11727866,2501633,5,'director',NULL,NULL),(11727866,193720,6,'writer','based on the book by',NULL),(11727866,79677,7,'producer','producer',NULL),(11727866,271479,8,'producer','producer',NULL),(11727866,1698359,9,'producer','producer',NULL),(1172963,548486,10,'production_designer',NULL,NULL),(1172963,7814,1,'actress',NULL,'[\"Salma Zidane\"]'),(1172963,2991024,2,'actress',NULL,'[\"Mira Navon\"]'),(1172963,1846124,3,'actor',NULL,'[\"Ziad Daud\"]'),(1172963,851785,4,'actor',NULL,'[\"Defense Minister Israel Navon\"]'),(1172963,726954,5,'director',NULL,NULL),(1172963,1699780,6,'writer','written by',NULL),(1172963,2175961,7,'composer',NULL,NULL),(1172963,458430,8,'cinematographer','director of photography',NULL),(1172963,38901,9,'editor',NULL,NULL),(1172994,1404741,10,'composer',NULL,NULL),(1172994,2439994,1,'actress',NULL,'[\"Samantha\"]'),(1172994,6888,2,'actor',NULL,'[\"Mr. Ulman\"]'),(1172994,1862,3,'actress',NULL,'[\"Mrs. Ulman\"]'),(1172994,1950086,4,'actress',NULL,'[\"Megan\"]'),(1172994,1488800,5,'director',NULL,NULL),(1172994,105794,6,'producer','producer',NULL),(1172994,275244,7,'producer','producer',NULL),(1172994,440797,8,'producer','producer',NULL),(1172994,1490961,9,'producer','producer',NULL),(11734264,747019,10,'composer',NULL,NULL),(11734264,1385871,1,'actress',NULL,'[\"Klara\"]'),(11734264,6725563,2,'actress',NULL,'[\"Tania\"]'),(11734264,3465625,3,'actor',NULL,'[\"Leonod Kadnikov\"]'),(11734264,2953208,4,'actor',NULL,'[\"Lieutenant Eric Jaubert\"]'),(11734264,2182866,5,'director',NULL,NULL),(11734264,1896882,6,'writer','scenario & dialogue',NULL),(11734264,4217757,7,'producer','producer',NULL),(11734264,381090,8,'composer',NULL,NULL),(11734264,1997479,9,'composer',NULL,NULL),(1173745,720395,10,'editor',NULL,NULL),(1173745,471406,1,'actor',NULL,'[\"Alex\"]'),(1173745,2245192,2,'actress',NULL,'[\"Tamara\"]'),(1173745,527278,3,'actor',NULL,'[\"Robert\"]'),(1173745,1306697,4,'actress',NULL,'[\"Susanne\"]'),(1173745,818608,5,'director',NULL,NULL),(1173745,92042,6,'producer','producer',NULL),(1173745,2585093,7,'producer','producer',NULL),(1173745,836464,8,'producer','producer',NULL),(1173745,345116,9,'cinematographer',NULL,NULL),(11742798,4572151,10,'composer','composer',NULL),(11742798,1842439,1,'actress',NULL,'[\"Cassie\"]'),(11742798,6377764,2,'actress',NULL,'[\"Lisa\"]'),(11742798,8334734,3,'actress',NULL,'[\"Val\"]'),(11742798,305081,4,'actor',NULL,'[\"Howie\"]'),(11742798,378893,5,'director',NULL,NULL),(11742798,9576433,6,'writer','written by',NULL),(11742798,262702,7,'producer','producer',NULL),(11742798,474176,8,'producer','producer',NULL),(11742798,2237557,9,'producer','producer',NULL),(1174693,3550415,1,'actor',NULL,'[\"Greg\"]'),(1174693,2903202,2,'actor',NULL,'[\"Trip\"]'),(1174693,2764828,3,'actress',NULL,'[\"Molly\"]'),(1174693,2903680,4,'actress',NULL,'[\"Bridget\"]'),(1174693,153774,5,'director',NULL,NULL),(1174693,2242817,6,'producer','producer',NULL),(1174693,1548635,7,'composer',NULL,NULL),(1174693,2320615,8,'cinematographer','director of photography',NULL),(1174693,1546169,9,'production_designer',NULL,NULL),(1174732,1232266,10,'composer',NULL,NULL),(1174732,1659547,1,'actress',NULL,'[\"Jenny\"]'),(1174732,765597,2,'actor',NULL,'[\"David\"]'),(1174732,547,3,'actor',NULL,'[\"Jack\"]'),(1174732,931404,4,'actress',NULL,'[\"Miss Stubbs\"]'),(1174732,771054,5,'director',NULL,NULL),(1174732,2902972,6,'writer','memoir',NULL),(1174732,394984,7,'writer','screenplay',NULL),(1174732,245493,8,'producer','producer',NULL),(1174732,692656,9,'producer','producer',NULL),(11748354,1181835,10,'editor',NULL,NULL),(11748354,222922,1,'actress',NULL,'[\"Anne Walberg\"]'),(11748354,2771436,2,'actor',NULL,'[\"Guillaume Favre\"]'),(11748354,8107538,3,'actress',NULL,'[\"Léa Favre\"]'),(11748354,530365,4,'actor',NULL,'[\"Le professeur Patrick Ballester\"]'),(11748354,5046293,5,'director',NULL,NULL),(11748354,1461686,6,'producer','producer',NULL),(11748354,970073,7,'composer',NULL,NULL),(11748354,4039577,8,'cinematographer',NULL,NULL),(11748354,379418,9,'editor',NULL,NULL),(1174954,2475348,10,'writer','video game',NULL),(1174954,580444,1,'actor',NULL,'[\"Leon S. Kennedy\"]'),(1174954,183750,2,'actress',NULL,'[\"Claire Redfield\"]'),(1174954,1154161,3,'actress',NULL,'[\"Angela Miller\"]'),(1174954,1886746,4,'actor',NULL,'[\"Curtis Miller\"]'),(1174954,436780,5,'director',NULL,NULL),(1174954,1591046,6,'writer','screenplay',NULL),(1174954,586353,7,'writer','video game',NULL),(1174954,1299423,8,'writer','video game',NULL),(1174954,1214880,9,'writer','video game',NULL),(11755740,1361,10,'writer','based on characters created by',NULL),(11755740,4712111,1,'actress',NULL,'[\"Melody\"]'),(11755740,3220568,2,'actress',NULL,'[\"Lila\"]'),(11755740,122511,3,'actor',NULL,'[\"Leatherface\"]'),(11755740,3632976,4,'actor',NULL,'[\"Dante Spivey\"]'),(11755740,2596725,5,'director',NULL,NULL),(11755740,4047694,6,'writer','screenplay by',NULL),(11755740,1793079,7,'writer','story by',NULL),(11755740,2140186,8,'writer','story by',NULL),(11755740,377066,9,'writer','based on characters created by',NULL),(1176740,1196755,10,'producer','producer',NULL),(1176740,1024677,1,'actor',NULL,'[\"Burt\"]'),(1176740,748973,2,'actress',NULL,'[\"Verona\"]'),(1176740,5049,3,'actress',NULL,'[\"Lily\"]'),(1176740,252238,4,'actress',NULL,'[\"Grace\"]'),(1176740,5222,5,'director',NULL,NULL),(1176740,1101630,6,'writer','written by',NULL),(1176740,2905972,7,'writer','written by',NULL),(1176740,764771,8,'producer','producer',NULL),(1176740,768324,9,'producer','producer',NULL),(11769162,10488271,10,'cinematographer',NULL,NULL),(11769162,6641358,1,'actor',NULL,'[\"Dias Santana\"]'),(11769162,1555067,2,'actor',NULL,'[\"Matias Santana\"]'),(11769162,434444,3,'actor',NULL,'[\"Obi Chukwu\"]'),(11769162,3743707,4,'actress',NULL,'[\"Celia\"]'),(11769162,6518269,5,'director',NULL,NULL),(11769162,738022,6,'director',NULL,NULL),(11769162,3427624,7,'producer','producer',NULL),(11769162,7290853,8,'composer',NULL,NULL),(11769162,2195131,9,'cinematographer','director of photography',NULL),(11771622,11344538,1,'actress',NULL,'[\"Hana\"]'),(11771622,11347952,2,'actor',NULL,'[\"Oscar\"]'),(11771622,11347951,3,'actor',NULL,'[\"Malcolm\"]'),(11771622,11344537,4,'actor',NULL,'[\"Will\"]'),(11771622,11344535,5,'director',NULL,NULL),(11771622,11344539,6,'composer',NULL,NULL),(11771622,11351658,7,'actress',NULL,'[\"Will\'s Mum\"]'),(11771622,11344536,8,'actor',NULL,'[\"Marcus\"]'),(1178197,387764,10,'producer','producer',NULL),(1178197,543547,1,'actor',NULL,'[\"Bai Dan\"]'),(1178197,1030925,2,'actor',NULL,'[\"Alexander \'Sashko\' Georgiev\"]'),(1178197,1086175,3,'actor',NULL,'[\"Vasil \'Vasko\' Georgiev\"]'),(1178197,1004808,4,'actress',NULL,'[\"Yana Georgieva\"]'),(1178197,464526,5,'director',NULL,NULL),(1178197,196496,6,'writer','screenplay',NULL),(1178197,1195601,7,'writer','screenplay',NULL),(1178197,2216628,8,'writer','novel',NULL),(1178197,62362,9,'producer','producer',NULL),(1178663,520288,10,'production_designer',NULL,NULL),(1178663,939697,1,'actress',NULL,'[\"Melody Celestine\"]'),(1178663,202970,2,'actor',NULL,'[\"Boris\"]'),(1178663,147147,3,'actor',NULL,'[\"Randy\"]'),(1178663,111845,4,'actor',NULL,'[\"Boris\' Friend\"]'),(1178663,95,5,'director',NULL,NULL),(1178663,36981,6,'producer','producer',NULL),(1178663,1008264,7,'producer','producer',NULL),(1178663,767647,8,'cinematographer',NULL,NULL),(1178663,503429,9,'editor',NULL,NULL),(1178665,489059,10,'composer',NULL,NULL),(1178665,602,1,'actor',NULL,'[\"Bill Bryson\"]'),(1178665,560,2,'actor',NULL,'[\"Stephen Katz\"]'),(1178665,668,3,'actress',NULL,'[\"Catherine Bryson\"]'),(1178665,5460,4,'actress',NULL,'[\"Jeannie\"]'),(1178665,477129,5,'director',NULL,NULL),(1178665,1578335,6,'writer','screenplay',NULL),(1178665,2250139,7,'writer','screenplay',NULL),(1178665,117445,8,'writer','book',NULL),(1178665,226505,9,'producer','producer',NULL),(1179025,9545038,10,'editor',NULL,NULL),(1179025,2864046,1,'actress',NULL,'[\"Adèle Blanc-Sec\"]'),(1179025,23832,2,'actor',NULL,'[\"Dieuleveult\"]'),(1179025,500976,3,'actor',NULL,'[\"Inspecteur Albert Caponi\"]'),(1179025,746162,4,'actor',NULL,'[\"Justin de Saint-Hubert\"]'),(1179025,108,5,'director',NULL,NULL),(1179025,850361,6,'writer','comic books',NULL),(1179025,798065,7,'producer','producer',NULL),(1179025,785385,8,'composer',NULL,NULL),(1179025,5636,9,'cinematographer',NULL,NULL),(1179056,286320,10,'producer','producer',NULL),(1179056,355097,1,'actor',NULL,'[\"Freddy Krueger\"]'),(1179056,1913734,2,'actress',NULL,'[\"Nancy Holbrook\"]'),(1179056,973177,3,'actor',NULL,'[\"Quentin Smith\"]'),(1179056,1556320,4,'actress',NULL,'[\"Kris Fowles\"]'),(1179056,1207904,5,'director',NULL,NULL),(1179056,834338,6,'writer','screenplay',NULL),(1179056,2104063,7,'writer','screenplay',NULL),(1179056,127,8,'writer','characters',NULL),(1179056,881,9,'producer','producer',NULL),(1179069,968789,10,'producer','producer',NULL),(1179069,194,1,'actress',NULL,'[\"Cara Harding\"]'),(1179069,1667,2,'actor',NULL,'[\"David\",\"Adam\",\"Wesley\"]'),(1179069,218810,3,'actor',NULL,'[\"Dr. Harding\"]'),(1179069,175814,4,'actress',NULL,'[\"Mrs. Bernburg\"]'),(1179069,617523,5,'director',NULL,NULL),(1179069,825407,6,'director',NULL,NULL),(1179069,177769,7,'writer','written by',NULL),(1179069,1950898,8,'producer','producer',NULL),(1179069,249050,9,'producer','producer',NULL),(1179080,4017036,10,'self',NULL,'[\"Self\"]'),(1179080,4017283,1,'self',NULL,'[\"Self\"]'),(1179080,4017321,2,'self',NULL,'[\"Self\"]'),(1179080,4017456,3,'self',NULL,'[\"Self\"]'),(1179080,4017018,4,'self',NULL,'[\"Self\"]'),(1179080,519354,5,'director',NULL,NULL),(1179080,1746166,6,'producer','producer',NULL),(1179080,1424128,7,'producer','producer',NULL),(1179080,399677,8,'editor',NULL,NULL),(1179080,4017044,9,'self',NULL,'[\"Self\"]'),(11791228,11352727,1,'self',NULL,'[\"Self\"]'),(11791228,11352728,2,'self',NULL,'[\"Self\"]'),(11791228,11352730,3,'self',NULL,'[\"Self\"]'),(11791228,11352729,4,'self',NULL,'[\"Self\"]'),(11791228,11352726,5,'director',NULL,NULL),(11791228,3710430,6,'producer','producer',NULL),(11791228,4695025,7,'composer',NULL,NULL),(11791228,10961397,8,'cinematographer',NULL,NULL),(11791228,6665663,9,'editor','senior editor',NULL),(1179794,1637928,10,'editor',NULL,NULL),(1179794,146536,1,'actress',NULL,'[\"Oona O\'Leary\"]'),(1179794,973652,2,'actor',NULL,'[\"Brian\"]'),(1179794,733812,3,'actress',NULL,'[\"Matchmaker Patty\"]'),(1179794,1516976,4,'actress',NULL,'[\"Local News Anchor\"]'),(1179794,2356614,5,'director',NULL,NULL),(1179794,1469831,6,'producer','producer',NULL),(1179794,1960436,7,'producer','producer',NULL),(1179794,1732890,8,'composer',NULL,NULL),(1179794,1104850,9,'cinematographer','director of photography',NULL),(1179891,615012,10,'producer','producer',NULL),(1179891,10075,1,'actor',NULL,'[\"Tom Hanniger\"]'),(1179891,454809,2,'actress',NULL,'[\"Sarah Palmer\"]'),(1179891,5445,3,'actor',NULL,'[\"Axel Palmer\"]'),(1179891,2175732,4,'actress',NULL,'[\"Irene\"]'),(1179891,527261,5,'director',NULL,NULL),(1179891,267805,6,'writer','screenplay',NULL),(1179891,2909914,7,'writer','screenplay',NULL),(1179891,63583,8,'writer',NULL,NULL),(1179891,589357,9,'writer',NULL,NULL),(1179904,2209370,1,'actress',NULL,'[\"Katie\"]'),(1179904,2913790,2,'actor',NULL,'[\"Micah\"]'),(1179904,2104166,3,'actor',NULL,'[\"Psychic\"]'),(1179904,2910808,4,'actress',NULL,'[\"Amber\"]'),(1179904,2305431,5,'director',NULL,NULL),(1179904,89658,6,'producer','producer',NULL),(1179933,6618222,10,'producer','producer',NULL),(1179933,422,1,'actor',NULL,'[\"Howard\"]'),(1179933,935541,2,'actress',NULL,'[\"Michelle\"]'),(1179933,302330,3,'actor',NULL,'[\"Emmett\"]'),(1179933,341174,4,'actor',NULL,'[\"Driver\"]'),(1179933,870469,5,'director',NULL,NULL),(1179933,1061091,6,'writer','screenplay by',NULL),(1179933,1173295,7,'writer','screenplay by',NULL),(1179933,3227090,8,'writer','screenplay by',NULL),(1179933,9190,9,'producer','producer',NULL),(1180329,529543,1,'actor',NULL,'[\"Antoine Doinel\"]'),(1180329,685494,2,'actress',NULL,'[\"Colette\"]'),(1180329,41756,3,'actor',NULL,'[\"René\"]'),(1180329,10544,4,'actor',NULL,'[\"Albert Tazzi\"]'),(1180329,76,5,'director',NULL,NULL),(1180329,200950,6,'actor',NULL,'[\"Colette\'s Stepfather\"]'),(1180329,1285601,7,'self',NULL,'[\"Self\"]'),(1180329,890248,8,'actress',NULL,'[\"Colette\'s Mother\"]'),(11804152,5004893,10,'producer','producer',NULL),(11804152,1083271,1,'actress',NULL,'[\"Emma\"]'),(11804152,2151126,2,'actor',NULL,'[\"Mark\"]'),(11804152,612534,3,'actor',NULL,'[\"Bobby Ray\"]'),(11804152,2516193,4,'actor',NULL,'[\"Jimmy\"]'),(11804152,5642951,5,'director',NULL,NULL),(11804152,1712383,6,'writer','written by',NULL),(11804152,4695797,7,'producer','producer',NULL),(11804152,424901,8,'producer','producer',NULL),(11804152,438780,9,'producer','producer',NULL),(11813216,1182055,10,'editor',NULL,NULL),(11813216,268199,1,'actor',NULL,'[\"Pádraic Súilleabháin\"]'),(11813216,322407,2,'actor',NULL,'[\"Colm Doherty\"]'),(11813216,174403,3,'actress',NULL,'[\"Siobhán Súilleabháin\"]'),(11813216,795169,4,'actor',NULL,'[\"Jonjo Devine\"]'),(11813216,1732981,5,'director',NULL,NULL),(11813216,110357,6,'producer','producer',NULL),(11813216,194446,7,'producer','producer',NULL),(11813216,1980,8,'composer',NULL,NULL),(11813216,1023204,9,'cinematographer','director of photography',NULL),(1181614,706002,10,'producer','producer',NULL),(1181614,2546012,1,'actress',NULL,'[\"Older Cathy\"]'),(1181614,4184816,2,'actor',NULL,'[\"Older Heathcliff\"]'),(1181614,4609643,3,'actor',NULL,'[\"Young Heathcliff\"]'),(1181614,4609589,4,'actress',NULL,'[\"Young Cathy\"]'),(1181614,36349,5,'director',NULL,NULL),(1181614,381757,6,'writer','screenplay',NULL),(1181614,111577,7,'writer','novel \"Wuthering Heights\"',NULL),(1181614,77127,8,'producer','producer',NULL),(1181614,2941,9,'producer','producer',NULL),(1181840,540962,1,'actor',NULL,'[\"Jack\"]'),(1181840,1121600,2,'actress',NULL,'[\"Miss Acacia\"]'),(1181840,2120560,3,'actor',NULL,'[\"Joe\"]'),(1181840,734000,4,'actor',NULL,'[\"Méliès\"]'),(1181840,1071849,5,'director',NULL,NULL),(1181840,798065,6,'producer','producer',NULL),(1181840,2193662,7,'composer',NULL,NULL),(1181840,1265919,8,'editor',NULL,NULL),(1181840,2349434,9,'production_designer',NULL,NULL),(11820950,2307111,10,'composer',NULL,NULL),(11820950,910607,1,'actor',NULL,'[\"Humphrey Wells\",\"John Wells Snr\"]'),(11820950,2617600,2,'actor',NULL,'[\"Paul Carpenter\"]'),(11820950,380632,3,'actor',NULL,'[\"Monty\"]'),(11820950,12145223,4,'actress',NULL,'[\"Sophie Pettingel\"]'),(11820950,907835,5,'director',NULL,NULL),(11820950,8893140,6,'writer','based on the book by',NULL),(11820950,1026031,7,'writer','written by',NULL),(11820950,271474,8,'producer','producer',NULL),(11820950,4473938,9,'producer','producer',NULL),(1182345,2134910,10,'cinematographer','director of photography',NULL),(1182345,5377,1,'actor',NULL,'[\"Sam Bell\"]'),(1182345,228,2,'actor',NULL,'[\"GERTY\"]'),(1182345,1069800,3,'actress',NULL,'[\"Tess Bell\"]'),(1182345,3675884,4,'actress',NULL,'[\"Little Eve\"]'),(1182345,1512910,5,'director',NULL,NULL),(1182345,2914162,6,'writer','written by',NULL),(1182345,1568035,7,'producer','producer',NULL),(1182345,836548,8,'producer','producer',NULL),(1182345,543739,9,'composer',NULL,NULL),(1182350,503429,10,'editor',NULL,NULL),(1182350,164,1,'actor',NULL,'[\"Alfie\"]'),(1182350,915208,2,'actress',NULL,'[\"Sally\"]'),(1182350,982,3,'actor',NULL,'[\"Roy\"]'),(1182350,428121,4,'actress',NULL,'[\"Helena\"]'),(1182350,95,5,'director',NULL,NULL),(1182350,36981,6,'producer','producer',NULL),(1182350,1255565,7,'producer','producer',NULL),(1182350,1008264,8,'producer','producer',NULL),(1182350,5936,9,'cinematographer',NULL,NULL),(1183276,2963250,10,'producer','producer',NULL),(1183276,674816,1,'actress',NULL,'[\"Aurore\"]'),(1183276,1285144,2,'actor',NULL,'[\"Ouessem\"]'),(1183276,248254,3,'actor',NULL,'[\"Adewale\"]'),(1183276,714534,4,'actor',NULL,'[\"Jimenez\"]'),(1183276,2278184,5,'director',NULL,NULL),(1183276,1119478,6,'director',NULL,NULL),(1183276,2071861,7,'writer','scenario',NULL),(1183276,2959356,8,'writer','scenario',NULL),(1183276,2425150,9,'writer','scenario consultant',NULL),(1183374,2173066,10,'cinematographer','director of photography',NULL),(1183374,597480,1,'actor',NULL,'[\"Seth\"]'),(1183374,989959,2,'actress',NULL,'[\"Holly\"]'),(1183374,1390614,3,'actress',NULL,'[\"Claire\"]'),(1183374,1229681,4,'actor',NULL,'[\"Nate\"]'),(1183374,2165066,5,'director',NULL,NULL),(1183374,2916300,6,'writer','written by',NULL),(1183374,1094560,7,'producer','producer',NULL),(1183374,2530,8,'producer','producer',NULL),(1183374,1032289,9,'composer',NULL,NULL),(1183665,1103466,10,'producer','producer',NULL),(1183665,1200692,1,'actress',NULL,'[\"Miss G\"]'),(1183665,1017334,2,'actress',NULL,'[\"Di\"]'),(1183665,1482999,3,'actress',NULL,'[\"Fiamma\"]'),(1183665,1782299,4,'actress',NULL,'[\"Poppy\"]'),(1183665,779386,5,'director',NULL,NULL),(1183665,181185,6,'writer','screenplay',NULL),(1183665,409675,7,'writer','screenplay',NULL),(1183665,3598044,8,'writer','novel',NULL),(1183665,225679,9,'producer','producer',NULL),(1183672,386501,10,'cinematographer',NULL,NULL),(1183672,220183,1,'actress',NULL,'[\"Jeanne\"]'),(1183672,366,2,'actress',NULL,'[\"Louise\"]'),(1183672,3508,3,'actor',NULL,'[\"Samuel Bleistein\"]'),(1183672,218843,4,'actor',NULL,'[\"Alex\"]'),(1183672,29242,5,'director',NULL,NULL),(1183672,58286,6,'writer','scenario, adaptation and dialogue',NULL),(1183672,78811,7,'writer','scenario, adaptation and dialogue',NULL),(1183672,69963,8,'producer','producer',NULL),(1183672,6271,9,'composer',NULL,NULL),(1183923,834199,10,'composer',NULL,NULL),(1183923,1254,1,'actor',NULL,'[\"Doug Riley\"]'),(1183923,829576,2,'actress',NULL,'[\"Mallory\"]'),(1183923,502425,3,'actress',NULL,'[\"Lois Riley\"]'),(1183923,3861,4,'actor',NULL,'[\"Ed\"]'),(1183923,779265,5,'director',NULL,NULL),(1183923,387025,6,'writer','written by',NULL),(1183923,1278301,7,'producer','producer',NULL),(1183923,89231,8,'producer','producer',NULL),(1183923,1545611,9,'producer','producer',NULL),(11847410,2728708,10,'producer','producer',NULL),(11847410,4911194,1,'actress',NULL,'[\"Vada Cavell\"]'),(11847410,4675650,2,'actress',NULL,'[\"Mia Reed\"]'),(11847410,2964567,3,'actor',NULL,'[\"Quinton Hasland\"]'),(11847410,5706089,4,'actor',NULL,'[\"Nick Feinstein\"]'),(11847410,1177914,5,'director',NULL,NULL),(11847410,9414067,6,'producer','producer',NULL),(11847410,2151956,7,'producer','producer',NULL),(11847410,4496604,8,'producer','producer',NULL),(11847410,4526163,9,'producer','producer',NULL),(1185242,338242,10,'cinematographer','director of photography',NULL),(1185242,5447,1,'actress',NULL,'[\"Jody Balaban\"]'),(1185242,205127,2,'actor',NULL,'[\"Jeff Drake\"]'),(1185242,5085,3,'actor',NULL,'[\"Dick Harder\"]'),(1185242,612,4,'actress',NULL,'[\"Bliss\",\"Laura\"]'),(1185242,6874,5,'director',NULL,NULL),(1185242,650361,6,'producer','producer',NULL),(1185242,723450,7,'producer','producer',NULL),(1185242,866075,8,'producer','producer',NULL),(1185242,1067825,9,'composer',NULL,NULL),(1185376,452860,1,'actress',NULL,'[\"Ryu\"]'),(1185376,530365,2,'actor',NULL,'[\"David\"]'),(1185376,849032,3,'actor',NULL,'[\"Narrador\"]'),(1185376,620002,4,'actor',NULL,'[\"Nagara\"]'),(1185376,170043,5,'director',NULL,NULL),(1185376,2953883,6,'composer',NULL,NULL),(1185376,488625,7,'cinematographer',NULL,NULL),(1185376,6971,8,'editor',NULL,NULL),(1185376,2024072,9,'production_designer',NULL,NULL),(1185416,2092418,10,'composer',NULL,NULL),(1185416,68338,1,'actress',NULL,'[\"Beth\"]'),(1185416,241049,2,'actor',NULL,'[\"Nick\"]'),(1185416,1378,3,'actress',NULL,'[\"Celeste\"]'),(1185416,362,4,'actor',NULL,'[\"Al\"]'),(1185416,425756,5,'director',NULL,NULL),(1185416,224606,6,'writer','written by',NULL),(1185416,919289,7,'writer','written by',NULL),(1185416,287811,8,'producer','producer',NULL),(1185416,659123,9,'producer','producer',NULL),(1185616,284369,1,'self',NULL,'[\"Self\"]'),(1185616,2924645,2,'self',NULL,'[\"Self - Interviewee\"]'),(1185616,2923235,3,'self',NULL,'[\"Self - Interviewee\"]'),(1185616,803348,4,'self',NULL,'[\"Self - Interviewee\"]'),(1185616,2924413,5,'producer','producer',NULL),(1185616,2068037,6,'composer',NULL,NULL),(1185616,725325,7,'editor',NULL,NULL),(1185834,934671,10,'producer','producer',NULL),(1185834,1782667,1,'actor',NULL,'[\"Anakin Skywalker\"]'),(1185834,296546,2,'actress',NULL,'[\"Asajj Ventress\",\"Tee-C-Seventy\"]'),(1185834,437454,3,'actor',NULL,'[\"Yoda\",\"Narrator\",\"Admiral Yularen\"]'),(1185834,237065,4,'actress',NULL,'[\"Ahsoka Tano\"]'),(1185834,1396048,5,'director',NULL,NULL),(1185834,319667,6,'writer','written by',NULL),(1185834,17447,7,'writer','written by',NULL),(1185834,614693,8,'writer','written by',NULL),(1185834,184,9,'writer','characters and universe',NULL),(1185836,862946,10,'cinematographer','director of photography',NULL),(1185836,199215,1,'actor',NULL,'[\"Adam Raki\"]'),(1185836,126284,2,'actress',NULL,'[\"Beth Buchwald\"]'),(1185836,1251,3,'actor',NULL,'[\"Marty Buchwald\"]'),(1185836,1388,4,'actress',NULL,'[\"Rebecca Buchwald\"]'),(1185836,562470,5,'director',NULL,NULL),(1185836,210941,6,'producer','producer',NULL),(1185836,881811,7,'producer','producer',NULL),(1185836,2924187,8,'producer','producer',NULL),(1185836,501999,9,'composer',NULL,NULL),(1186367,905154,10,'producer','producer',NULL),(1186367,1713653,1,'actor',NULL,'[\"Raizo\"]'),(1186367,950935,2,'actor',NULL,'[\"Takeshi\"]'),(1186367,365140,3,'actress',NULL,'[\"Mika\"]'),(1186367,3241804,4,'actor',NULL,'[\"Teenage Raizo\"]'),(1186367,574625,5,'director',NULL,NULL),(1186367,2373271,6,'writer','screenplay',NULL),(1186367,833089,7,'writer','screenplay',NULL),(1186367,384294,8,'producer','producer',NULL),(1186367,5428,9,'producer','producer',NULL),(1186369,300229,10,'production_designer',NULL,NULL),(1186369,1671184,1,'actress',NULL,'[\"Lorna\"]'),(1186369,753737,2,'actor',NULL,'[\"Claudy Moreau\"]'),(1186369,740090,3,'actor',NULL,'[\"Fabio\"]'),(1186369,1456114,4,'actor',NULL,'[\"Sokol\"]'),(1186369,201094,5,'director',NULL,NULL),(1186369,201095,6,'director',NULL,NULL),(1186369,294654,7,'producer','producer',NULL),(1186369,545822,8,'cinematographer',NULL,NULL),(1186369,236549,9,'editor',NULL,NULL),(1186373,4243936,10,'writer','character created by: ',NULL),(1186373,5392,1,'actress',NULL,'[\"Wonder Woman\"]'),(1186373,277213,2,'actor',NULL,'[\"Steve Trevor\"]'),(1186373,547,3,'actor',NULL,'[\"Ares\"]'),(1186373,206257,4,'actress',NULL,'[\"Artemis\"]'),(1186373,2304017,5,'director',NULL,NULL),(1186373,551376,6,'writer','characters',NULL),(1186373,2294487,7,'writer','story',NULL),(1186373,2398585,8,'writer','story',NULL),(1186373,1303925,9,'writer','comic book: \"Gods and Mortals\"',NULL),(11866324,263988,10,'producer','producer',NULL),(11866324,1690270,1,'actress',NULL,'[\"Naru\"]'),(11866324,13396806,2,'actor',NULL,'[\"Taabe\"]'),(11866324,10867068,3,'actor',NULL,'[\"Predator\"]'),(11866324,11901532,4,'actor',NULL,'[\"Wasape\"]'),(11866324,870469,5,'director',NULL,NULL),(11866324,1725034,6,'writer','screenplay by',NULL),(11866324,859029,7,'writer','based on characters by',NULL),(11866324,859049,8,'writer','based on characters by',NULL),(11866324,204862,9,'producer','producer',NULL),(1186830,319885,10,'cinematographer','director of photography',NULL),(1186830,1838,1,'actress',NULL,'[\"Hypatia\"]'),(1186830,1540404,2,'actor',NULL,'[\"Davus\"]'),(1186830,1209966,3,'actor',NULL,'[\"Orestes\"]'),(1186830,1678557,4,'actor',NULL,'[\"Ammonius\"]'),(1186830,24622,5,'director',NULL,NULL),(1186830,317834,6,'writer','written by',NULL),(1186830,1973308,7,'producer','producer',NULL),(1186830,100559,8,'producer','producer',NULL),(1186830,547050,9,'composer',NULL,NULL),(1187043,3760517,10,'composer',NULL,NULL),(1187043,451148,1,'actor',NULL,'[\"Rancho\"]'),(1187043,534856,2,'actor',NULL,'[\"Farhan\"]'),(1187043,1587175,3,'actress',NULL,'[\"Mona\"]'),(1187043,430817,4,'actor',NULL,'[\"Raju\"]'),(1187043,386246,5,'director',NULL,NULL),(1187043,430785,6,'writer','story',NULL),(1187043,6765,7,'writer','screenplay associate',NULL),(1187043,2746459,8,'writer','based on the novel \'Five Point Someone\' by',NULL),(1187043,596240,9,'composer',NULL,NULL),(1187044,754416,1,'actress',NULL,'[\"Raquel\"]'),(1187044,147974,2,'actress',NULL,'[\"Pilar\"]'),(1187044,523486,3,'actress',NULL,'[\"Lucy\"]'),(1187044,1454488,4,'actress',NULL,'[\"Camila\"]'),(1187044,2928364,5,'director',NULL,NULL),(1187044,1425747,6,'writer','writer',NULL),(1187044,328190,7,'producer','executive producer',NULL),(1187044,1471654,8,'cinematographer',NULL,NULL),(1187044,277217,9,'editor',NULL,NULL),(1187064,1338122,10,'cinematographer','director of photography',NULL),(1187064,313534,1,'actress',NULL,'[\"Jess\"]'),(1187064,3620280,2,'actor',NULL,'[\"Tommy\"]'),(1187064,3815288,3,'actor',NULL,'[\"Jack\"]'),(1187064,1168915,4,'actor',NULL,'[\"Greg\"]'),(1187064,1247462,5,'director',NULL,NULL),(1187064,47787,6,'producer','producer',NULL),(1187064,113244,7,'producer','producer',NULL),(1187064,1129502,8,'producer','producer',NULL),(1187064,378194,9,'composer',NULL,NULL),(1188113,579673,10,'editor',NULL,NULL),(1188113,614165,1,'actor',NULL,'[\"John\",\"Emma Skillpa\"]'),(1188113,680983,2,'actor',NULL,'[\"Maggie\"]'),(1188113,215,3,'actress',NULL,'[\"Fanny Crill\"]'),(1188113,524197,4,'actor',NULL,'[\"Officer Tom McGonigle\"]'),(1188113,1740888,5,'director',NULL,NULL),(1188113,2193367,6,'writer','written by',NULL),(1188113,578814,7,'producer','producer',NULL),(1188113,718687,8,'composer',NULL,NULL),(1188113,3542,9,'cinematographer','director of photography',NULL),(1188729,110042,10,'composer',NULL,NULL),(1188729,598,1,'actor',NULL,'[\"Payton\"]'),(1188729,4936,2,'actor',NULL,'[\"Bower\"]'),(1188729,1544217,3,'actor',NULL,'[\"Gallo\"]'),(1188729,1662644,4,'actress',NULL,'[\"Nadia\"]'),(1188729,23355,5,'director',NULL,NULL),(1188729,589871,6,'writer','screenplay',NULL),(1188729,27271,7,'producer','producer',NULL),(1188729,93337,8,'producer','producer',NULL),(1188729,474709,9,'producer','producer',NULL),(1189073,3900,10,'cinematographer','director of photography',NULL),(1189073,104,1,'actor',NULL,'[\"Robert Ledgard\"]'),(1189073,25745,2,'actress',NULL,'[\"Vera Cruz\"]'),(1189073,1693432,3,'actor',NULL,'[\"Vicente\"]'),(1189073,4650,4,'actress',NULL,'[\"Marilia\"]'),(1189073,264,5,'director',NULL,NULL),(1189073,21948,6,'writer','with the collaboration of',NULL),(1189073,429617,7,'writer','based on the novel: \"Mygale\"',NULL),(1189073,306088,8,'producer','producer',NULL),(1189073,407076,9,'composer',NULL,NULL),(1189340,742347,10,'producer','producer',NULL),(1189340,190,1,'actor',NULL,'[\"Mick Haller\"]'),(1189340,673,2,'actress',NULL,'[\"Maggie McPherson\"]'),(1189340,202,3,'actor',NULL,'[\"Louis Roulet\"]'),(1189340,513,4,'actor',NULL,'[\"Frank Levin\"]'),(1189340,1026778,5,'director',NULL,NULL),(1189340,738908,6,'writer','screenplay',NULL),(1189340,175093,7,'writer','novel',NULL),(1189340,454004,8,'producer','producer',NULL),(1189340,524342,9,'producer','producer',NULL),(11895476,7053685,1,'actress',NULL,'[\"Emma Foster\"]'),(11895476,6846760,2,'actress',NULL,'[\"Kate Thompson\"]'),(11895476,8863183,3,'actor',NULL,'[\"Jake Paulson\"]'),(11895476,5320501,4,'actor',NULL,'[\"Chris Mendoza\"]'),(11897478,5893199,10,'production_designer',NULL,NULL),(11897478,249291,1,'actor',NULL,'[\"Mark Frame\"]'),(11897478,365317,2,'actor',NULL,'[\"Henry Teague\"]'),(11897478,3415084,3,'actress',NULL,'[\"Kate Rylett\"]'),(11897478,14167237,4,'actor',NULL,'[\"Son\"]'),(11897478,942876,5,'director',NULL,NULL),(11897478,8986469,6,'writer','based on the book entitled \"The Sting\" written by',NULL),(11897478,6687155,7,'composer',NULL,NULL),(11897478,8609386,8,'cinematographer',NULL,NULL),(11897478,633354,9,'editor',NULL,NULL),(1190072,3645753,10,'actor',NULL,'[\"Policeman\"]'),(1190072,686020,1,'actor',NULL,'[\"Ali Alavi\"]'),(1190072,3640231,2,'actor',NULL,'[\"Policeman\"]'),(1190072,354508,3,'actress',NULL,'[\"Sara Alavi - Ali\'s Wife\"]'),(1190072,451544,4,'actress',NULL,'[\"Ali\'s Mother\"]'),(1190072,439003,5,'producer','producer',NULL),(1190072,205828,6,'cinematographer',NULL,NULL),(1190072,368359,7,'editor',NULL,NULL),(1190072,3750284,8,'actor',NULL,'[\"Inspector\"]'),(1190072,3645510,9,'actress',NULL,'[\"Orphonage Nurse\"]'),(1190080,5871,10,'cinematographer','director of photography',NULL),(1190080,131,1,'actor',NULL,'[\"Jackson Curtis\"]'),(1190080,628601,2,'actress',NULL,'[\"Laura Wilson\"]'),(1190080,252230,3,'actor',NULL,'[\"Adrian Helmsley\"]'),(1190080,1605,4,'actress',NULL,'[\"Kate Curtis\"]'),(1190080,386,5,'director',NULL,NULL),(1190080,460057,6,'writer','written by',NULL),(1190080,290581,7,'producer','producer',NULL),(1190080,330428,8,'producer','producer',NULL),(1190080,911173,9,'composer',NULL,NULL),(1190536,561053,10,'cinematographer',NULL,NULL),(1190536,925220,1,'actor',NULL,'[\"Black Dynamite\"]'),(1190536,2119,2,'actor',NULL,'[\"Tasty Freeze\"]'),(1190536,203508,3,'actor',NULL,'[\"Cream Corn\"]'),(1190536,32399,4,'actress',NULL,'[\"Aunt Billy\"]'),(1190536,761715,5,'director',NULL,NULL),(1190536,591528,6,'writer','screenplay',NULL),(1190536,3218082,7,'producer','producer',NULL),(1190536,826050,8,'producer','producer',NULL),(1190536,2934771,9,'composer',NULL,NULL),(1190539,3293938,10,'composer',NULL,NULL),(1190539,2412823,1,'actor',NULL,'[\"Joong-ho Eom\"]'),(1190539,1978402,2,'actor',NULL,'[\"Young-min Jee\"]'),(1190539,1320089,3,'actress',NULL,'[\"Mi-jin Kim\"]'),(1190539,2498552,4,'actress',NULL,'[\"Eun-ji\"]'),(1190539,2947553,5,'director',NULL,NULL),(1190539,2974384,6,'writer','written by',NULL),(1190539,1425348,7,'writer','written by',NULL),(1190539,1187876,8,'producer','producer',NULL),(1190539,5303413,9,'producer','producer',NULL),(11905962,9442886,10,'producer','producer',NULL),(11905962,968541,1,'actress',NULL,'[\"Tatyana Klimova\"]'),(11905962,94080,2,'actor',NULL,'[\"Colonel Semiradov\"]'),(11905962,1215228,3,'actor',NULL,'[\"Konstantin Veshnyakov\"]'),(11905962,6620975,4,'actor',NULL,'[\"Yan Rigel\"]'),(11905962,3325960,5,'director',NULL,NULL),(11905962,2672655,6,'writer',NULL,NULL),(11905962,2454599,7,'writer',NULL,NULL),(11905962,2310286,8,'producer','producer',NULL),(11905962,11396673,9,'producer','producer',NULL),(11909878,365036,10,'producer','producer',NULL),(11909878,541,1,'actress',NULL,'[\"Winifred Sanderson\"]'),(11909878,572,2,'actress',NULL,'[\"Sarah Sanderson\"]'),(11909878,1562,3,'actress',NULL,'[\"Mary Sanderson\"]'),(11909878,8857173,4,'actress',NULL,'[\"Becca\"]'),(11909878,281945,5,'director',NULL,NULL),(11909878,4594415,6,'writer','screenplay by',NULL),(11909878,456946,7,'writer','story by',NULL),(11909878,4671079,8,'writer','story by',NULL),(11909878,308376,9,'writer','based on characters created by',NULL),(1191111,544947,10,'producer','producer',NULL),(1191111,1140926,1,'actor',NULL,'[\"Oscar\"]'),(1191111,209289,2,'actress',NULL,'[\"Linda\"]'),(1191111,3026521,3,'actor',NULL,'[\"Alex\"]'),(1191111,2728054,4,'actor',NULL,'[\"Victor\"]'),(1191111,637615,5,'director',NULL,NULL),(1191111,352968,6,'writer','with the help of',NULL),(1191111,119376,7,'producer','producer',NULL),(1191111,1330234,8,'producer','producer',NULL),(1191111,216635,9,'producer','producer',NULL),(1192628,1877,10,'composer',NULL,NULL),(1192628,136,1,'actor',NULL,'[\"Rango\",\"Lars\"]'),(1192628,279545,2,'actress',NULL,'[\"Beans\"]'),(1192628,648249,3,'actor',NULL,'[\"Spirit of the West\"]'),(1192628,1113550,4,'actress',NULL,'[\"Priscilla\"]'),(1192628,893659,5,'director',NULL,NULL),(1192628,517589,6,'writer','written by',NULL),(1192628,126096,7,'writer','story by',NULL),(1192628,137811,8,'producer','producer',NULL),(1192628,454752,9,'producer','producer',NULL),(1193138,718645,10,'producer','producer',NULL),(1193138,123,1,'actor',NULL,'[\"Ryan Bingham\"]'),(1193138,267812,2,'actress',NULL,'[\"Alex Goran\"]'),(1193138,447695,3,'actress',NULL,'[\"Natalie Keener\"]'),(1193138,867,4,'actor',NULL,'[\"Craig Gregory\"]'),(1193138,718646,5,'director',NULL,NULL),(1193138,1174529,6,'writer','novel',NULL),(1193138,1417242,7,'writer','screenplay',NULL),(1193138,166641,8,'producer','producer',NULL),(1193138,239277,9,'producer','producer',NULL),(11934846,7704618,10,'composer',NULL,NULL),(11934846,3822770,1,'actor',NULL,'[\"Shardul Thakur\"]'),(11934846,6277267,2,'actress',NULL,'[\"Sumi Singh\"]'),(11934846,11525862,3,'actress',NULL,'[\"Rimjhim Jongkey\"]'),(11934846,149441,4,'actress',NULL,'[\"Baby Thakur\"]'),(11934846,2862844,5,'director',NULL,NULL),(11934846,12676929,6,'writer','screenplay',NULL),(11934846,10111893,7,'writer','dialogue',NULL),(11934846,3068550,8,'producer','producer',NULL),(11934846,7565692,9,'composer',NULL,NULL),(1193631,316774,10,'producer','producer',NULL),(1193631,1801800,1,'actress',NULL,'[\"Natalie\"]'),(1193631,2463696,2,'actor',NULL,'[\"Luke\"]'),(1193631,1782560,3,'actor',NULL,'[\"Moose\"]'),(1193631,1351987,4,'actress',NULL,'[\"Camille\"]'),(1193631,160840,5,'director',NULL,NULL),(1193631,3655562,6,'writer','written by',NULL),(1193631,2199696,7,'writer','written by',NULL),(1193631,12137,8,'writer','characters',NULL),(1193631,270549,9,'producer','producer',NULL),(1194173,1643824,10,'producer','producer',NULL),(1194173,719637,1,'actor',NULL,'[\"Aaron Cross\"]'),(1194173,1838,2,'actress',NULL,'[\"Dr. Marta Shearing\"]'),(1194173,1570,3,'actor',NULL,'[\"Col Eric Byer, USAF, Ret.\"]'),(1194173,1277,4,'actor',NULL,'[\"Ezra Kramer\"]'),(1194173,6904,5,'director',NULL,NULL),(1194173,319659,6,'writer','screenplay',NULL),(1194173,524924,7,'writer','inspired by \"The Bourne Series\" created by',NULL),(1194173,189777,8,'producer','producer',NULL),(1194173,550881,9,'producer','producer',NULL),(1194238,753708,10,'producer','producer',NULL),(1194238,309945,1,'actor',NULL,'[\"The Killer\"]'),(1194238,399424,2,'actor',NULL,'[\"Jean-François\"]'),(1194238,888468,3,'actress',NULL,'[\"Valérie\"]'),(1194238,914234,4,'actor',NULL,'[\"Jean-François\"]'),(1194238,898288,5,'director',NULL,NULL),(1194238,1802530,6,'writer','scenario and dialogue',NULL),(1194238,1266316,7,'writer','collaboration',NULL),(1194238,138502,8,'producer','producer',NULL),(1194238,745689,9,'producer','producer',NULL),(1194263,953124,10,'producer','producer',NULL),(1194263,380,1,'actor',NULL,'[\"Felix Bush\"]'),(1194263,195,2,'actor',NULL,'[\"Frank Quinn\"]'),(1194263,651,3,'actress',NULL,'[\"Mattie Darrow\"]'),(1194263,85407,4,'actor',NULL,'[\"Buddy\"]'),(1194263,773689,5,'director',NULL,NULL),(1194263,699046,6,'writer','screenplay',NULL),(1194263,2057149,7,'writer','screenplay',NULL),(1194263,3015337,8,'writer','story',NULL),(1194263,3264124,9,'producer','producer',NULL),(1194417,1365883,10,'composer',NULL,NULL),(1194417,228,1,'actor',NULL,'[\"Jack Abramoff\"]'),(1194417,1608,2,'actor',NULL,'[\"Michael Scanlon\"]'),(1194417,1484,3,'actor',NULL,'[\"Adam Kidan\"]'),(1194417,551154,4,'actress',NULL,'[\"Susan Schmidt\"]'),(1194417,382584,5,'director',NULL,NULL),(1194417,811138,6,'writer','written by',NULL),(1194417,398258,7,'producer','producer',NULL),(1194417,548776,8,'producer','producer',NULL),(1194417,952327,9,'producer','producer',NULL),(1194424,1237443,1,'actress',NULL,'[\"Callie\"]'),(1194424,2230729,2,'actor',NULL,'[\"The General\"]'),(1194424,2385616,3,'actor',NULL,'[\"Dexter Maines\"]'),(1194424,2385988,4,'actor',NULL,'[\"Dallas Murphy\"]'),(1194424,3888,5,'director',NULL,NULL),(1194424,1574847,6,'cinematographer',NULL,NULL),(1194424,1563766,7,'editor',NULL,NULL),(1194424,3057987,8,'production_designer',NULL,NULL),(1194577,5839,10,'cinematographer',NULL,NULL),(1194577,545,1,'actress',NULL,'[\"Emerenc\"]'),(1194577,311476,2,'actress',NULL,'[\"Magda\"]'),(1194577,258272,3,'actor',NULL,'[\"Tibor\"]'),(1194577,464857,4,'actor',NULL,'[\"Lieutenant Colonel\"]'),(1194577,843640,5,'director',NULL,NULL),(1194577,843651,6,'writer','novel',NULL),(1194577,905004,7,'writer','screenplay',NULL),(1194577,352232,8,'producer','producer',NULL),(1194577,845605,9,'producer','producer',NULL),(11946300,523324,10,'producer','producer',NULL),(11946300,713389,1,'actress',NULL,'[\"Emma Collins\"]'),(11946300,1692762,2,'actor',NULL,'[\"Richard Lowell\"]'),(11946300,2358388,3,'actor',NULL,'[\"Eugene Shaw\"]'),(11946300,1248409,4,'actor',NULL,'[\"Lucas\"]'),(11946300,688282,5,'director',NULL,NULL),(11946300,85736,6,'writer','written by',NULL),(11946300,3300,7,'writer','based on characters created by',NULL),(11946300,694526,8,'writer','based on characters created by',NULL),(11946300,694638,9,'writer','based on characters created by',NULL),(1195478,449820,10,'editor',NULL,NULL),(1195478,781981,1,'actor',NULL,'[\"Tom Solomon\"]'),(1195478,1289434,2,'actress',NULL,'[\"Violet Barnes\"]'),(1195478,695435,3,'actor',NULL,'[\"Alex Eilhauer\"]'),(1195478,1555340,4,'actress',NULL,'[\"Suzie Barnes-Eilhauer\"]'),(1195478,831557,5,'director',NULL,NULL),(1195478,31976,6,'producer','producer',NULL),(1195478,745247,7,'producer','producer',NULL),(1195478,28787,8,'composer',NULL,NULL),(1195478,13761,9,'cinematographer','director of photography',NULL),(1196141,2732149,10,'writer','book',NULL),(1196141,2325393,1,'actor',NULL,'[\"Greg Heffley\"]'),(1196141,2953573,2,'actor',NULL,'[\"Rowley Jefferson\"]'),(1196141,6713,3,'actress',NULL,'[\"Susan Heffley\"]'),(1196141,1872,4,'actor',NULL,'[\"Frank Heffley\"]'),(1196141,294457,5,'director',NULL,NULL),(1196141,66851,6,'writer','screenplay',NULL),(1196141,276882,7,'writer','screenplay',NULL),(1196141,7091,8,'writer','screenplay',NULL),(1196141,431817,9,'writer','screenplay',NULL),(1196204,1899,10,'cinematographer','director of photography',NULL),(1196204,177396,1,'actor',NULL,'[\"Freddie Taylor\"]'),(1196204,428065,2,'actress',NULL,'[\"Julie\"]'),(1196204,3433735,3,'actor',NULL,'[\"Bruce Pearson\"]'),(1196204,1660027,4,'actor',NULL,'[\"Snork\"]'),(1196204,315041,5,'director',NULL,NULL),(1196204,580351,6,'director',NULL,NULL),(1196204,46020,7,'producer','producer',NULL),(1196204,361210,8,'producer','producer',NULL),(1196204,40217,9,'composer',NULL,NULL),(1196339,538610,10,'cinematographer',NULL,NULL),(1196339,1416215,1,'actress',NULL,'[\"Rosalinda\",\"Rosie\"]'),(1196339,1411125,2,'actress',NULL,'[\"Carter\"]'),(1196339,1002609,3,'actor',NULL,'[\"Ed\"]'),(1196339,353243,4,'actress',NULL,'[\"The Director\"]'),(1196339,509183,5,'director',NULL,NULL),(1196339,223395,6,'writer','story',NULL),(1196339,605128,7,'writer','story',NULL),(1196339,918483,8,'producer','producer',NULL),(1196339,888113,9,'composer',NULL,NULL),(1196948,947695,10,'producer','producer',NULL),(1196948,479471,1,'actor',NULL,'[\"Charlie Countryman\"]'),(1196948,939697,2,'actress',NULL,'[\"Gabi Ibanescu\"]'),(1196948,586568,3,'actor',NULL,'[\"Nigel\"]'),(1196948,1709,4,'actor',NULL,'[\"Darko\"]'),(1196948,93934,5,'director',NULL,NULL),(1196948,236966,6,'writer','written by',NULL),(1196948,74100,7,'producer','producer',NULL),(1196948,1997836,8,'producer','producer',NULL),(1196948,394564,9,'producer','producer',NULL),(1197624,2229304,10,'producer','producer',NULL),(1197624,124930,1,'actor',NULL,'[\"Clyde Shelton\"]'),(1197624,4937,2,'actor',NULL,'[\"Nick Rice\"]'),(1197624,4753,3,'actress',NULL,'[\"Sarah Lowell\"]'),(1197624,538,4,'actor',NULL,'[\"Detective Dunnigan\"]'),(1197624,336620,5,'director',NULL,NULL),(1197624,934483,6,'writer','written by',NULL),(1197624,287946,7,'producer','producer',NULL),(1197624,1247584,8,'producer','producer',NULL),(1197624,441830,9,'producer','producer',NULL),(1198153,2117053,10,'cinematographer',NULL,NULL),(1198153,1385871,1,'actress',NULL,'[\"Galia\"]'),(1198153,1760573,2,'actress',NULL,'[\"Elinor\"]'),(1198153,2553463,3,'actor',NULL,'[\"Peter\"]'),(1198153,295393,4,'actor',NULL,'[\"Mishka\"]'),(1198153,2118165,5,'director',NULL,NULL),(1198153,88173,6,'producer','producer',NULL),(1198153,234781,7,'producer','producer',NULL),(1198153,1197007,8,'producer','producer',NULL),(1198153,1166319,9,'composer',NULL,NULL),(1198156,224145,10,'producer','producer',NULL),(1198156,5476,1,'actress',NULL,'[\"Kate\"]'),(1198156,2536,2,'actress',NULL,'[\"Bec\"]'),(1198156,241049,3,'actor',NULL,'[\"Evan\"]'),(1198156,3715867,4,'actress',NULL,'[\"Jill\"]'),(1198156,938045,5,'director',NULL,NULL),(1198156,275277,6,'writer','screenplay by',NULL),(1198156,1471001,7,'writer','screenplay by',NULL),(1198156,2947761,8,'writer','based on the book by',NULL),(1198156,5355300,9,'producer','executive producer',NULL),(1198199,852893,10,'editor',NULL,NULL),(1198199,24404,1,'actress',NULL,'[\"Angela\"]'),(1198199,3716878,2,'actress',NULL,'[\"Sunny\"]'),(1198199,5851947,3,'actress',NULL,'[\"Waitress\"]'),(1198199,48414,4,'actor',NULL,'[\"Max\"]'),(1198199,1658166,5,'director',NULL,NULL),(1198199,752749,6,'director','co-director',NULL),(1198199,1993864,7,'producer','producer',NULL),(1198199,1404741,8,'composer',NULL,NULL),(1198199,777491,9,'cinematographer',NULL,NULL),(1199099,2692146,10,'actress',NULL,'[\"Morgana\"]'),(1199099,457,1,'actor',NULL,'[\"The Dragon\",\"Voice of the Dragon\"]'),(1199099,2959880,2,'actor',NULL,'[\"Merlin\"]'),(1199099,3010926,3,'actor',NULL,'[\"Arthur\"]'),(1199099,934014,4,'actor',NULL,'[\"Gaius\"]'),(1199099,999606,5,'writer','creator',NULL),(1199099,428483,6,'writer','creator',NULL),(1199099,2350239,7,'writer','creator',NULL),(1199099,614414,8,'writer','creator',NULL),(1199099,1076294,9,'actress',NULL,'[\"Gwen\"]'),(1201167,1405,10,'cinematographer','director of photography',NULL),(1201167,1191,1,'actor',NULL,'[\"George Simmons\"]'),(1201167,736622,2,'actor',NULL,'[\"Ira Wright\"]'),(1201167,5182,3,'actress',NULL,'[\"Laura\"]'),(1201167,51509,4,'actor',NULL,'[\"Clarke\"]'),(1201167,31976,5,'director',NULL,NULL),(1201167,578814,6,'producer','producer',NULL),(1201167,870106,7,'producer','producer',NULL),(1201167,28787,8,'composer',NULL,NULL),(1201167,5403,9,'composer',NULL,NULL),(1201607,6035,10,'composer',NULL,NULL),(1201607,705356,1,'actor',NULL,'[\"Harry Potter\"]'),(1201607,914612,2,'actress',NULL,'[\"Hermione Granger\"]'),(1201607,342488,3,'actor',NULL,'[\"Ron Weasley\"]'),(1201607,2091,4,'actor',NULL,'[\"Professor Albus Dumbledore\"]'),(1201607,946734,5,'director',NULL,NULL),(1201607,460141,6,'writer','screenplay',NULL),(1201607,746830,7,'writer','novel \"Harry Potter and the Deathly Hallows\"',NULL),(1201607,57655,8,'producer','producer',NULL),(1201607,382268,9,'producer','producer',NULL),(1202028,2955286,1,'director',NULL,NULL),(1202028,2954641,2,'director',NULL,NULL),(1204340,223737,10,'editor',NULL,NULL),(1204340,611932,1,'actor',NULL,'[\"Joseph\"]'),(1204340,482311,2,'actor',NULL,'[\"Post Office Cashier\"]'),(1204340,4736095,3,'actor',NULL,'[\"Gurav\"]'),(1204340,5153144,4,'actor',NULL,'[\"Dan\"]'),(1204340,175916,5,'director',NULL,NULL),(1204340,1119610,6,'producer','producer',NULL),(1204340,4405837,7,'composer',NULL,NULL),(1204340,2779297,8,'composer',NULL,NULL),(1204340,933377,9,'cinematographer','director of photography',NULL),(1204342,65100,10,'composer',NULL,NULL),(1204342,10736,1,'actress',NULL,'[\"Mary\"]'),(1204342,781981,2,'actor',NULL,'[\"Gary\"]'),(1204342,177933,3,'actor',NULL,'[\"Tex Richman\"]'),(1204342,429069,4,'actress',NULL,'[\"CDE Executive\"]'),(1204342,90386,5,'director',NULL,NULL),(1204342,831557,6,'writer','written by',NULL),(1204342,1345,7,'writer','based on',NULL),(1204342,387674,8,'producer','producer',NULL),(1204342,509414,9,'producer','producer',NULL),(12048234,4062081,10,'producer','producer',NULL),(12048234,13326651,1,'actress',NULL,'[\"Young Liz\"]'),(12048234,10880783,2,'actor',NULL,'[\"Young Tom Jenkins\"]'),(12048234,596,3,'actor',NULL,'[\"Mr Morgan\"]'),(12048234,249622,4,'actress',NULL,'[\"Mrs Griffiths (Beehive Woman)\"]'),(12048234,837406,5,'director',NULL,NULL),(12048234,39328,6,'writer','screenplay by',NULL),(12048234,2455394,7,'writer','story by',NULL),(12048234,1479378,8,'producer','producer',NULL),(12048234,1033086,9,'producer','producer',NULL),(1204975,548257,10,'producer','producer',NULL),(1204975,134,1,'actor',NULL,'[\"Paddy\"]'),(1204975,140,2,'actor',NULL,'[\"Billy\"]'),(1204975,151,3,'actor',NULL,'[\"Archie\"]'),(1204975,177,4,'actor',NULL,'[\"Sam\"]'),(1204975,5509,5,'director',NULL,NULL),(1204975,1557594,6,'writer','written by',NULL),(1204975,1616124,7,'producer','producer',NULL),(1204975,9255008,8,'producer','producer',NULL),(1204975,236944,9,'producer','producer',NULL),(1204977,298181,10,'producer','producer',NULL),(1204977,4972453,1,'actress',NULL,'[\"Laine Morris\"]'),(1204977,4519628,2,'actress',NULL,'[\"Sarah Morris\"]'),(1204977,2973326,3,'actor',NULL,'[\"Trevor\"]'),(1204977,5291376,4,'actress',NULL,'[\"Isabelle\"]'),(1204977,925482,5,'director',NULL,NULL),(1204977,1340000,6,'writer','written by',NULL),(1204977,881,7,'producer','producer',NULL),(1204977,89658,8,'producer','producer',NULL),(1204977,286320,9,'producer','producer',NULL),(1205489,828630,10,'composer',NULL,NULL),(1205489,142,1,'actor',NULL,'[\"Walt Kowalski\"]'),(1205489,3057402,2,'actor',NULL,'[\"Thao\"]'),(1205489,1542291,3,'actor',NULL,'[\"Father Janovich\"]'),(1205489,3115704,4,'actress',NULL,'[\"Sue\"]'),(1205489,1010405,5,'writer','screenplay by',NULL),(1205489,3164738,6,'writer','story by',NULL),(1205489,314088,7,'producer','producer',NULL),(1205489,520749,8,'producer','producer',NULL),(1205489,247762,9,'composer',NULL,NULL),(1205537,626883,10,'producer','producer',NULL),(1205537,1517976,1,'actor',NULL,'[\"Jack Ryan\"]'),(1205537,126,2,'actor',NULL,'[\"Thomas Harper\"]'),(1205537,461136,3,'actress',NULL,'[\"Cathy Muller\"]'),(1205537,110,4,'actor',NULL,'[\"Viktor Cherevin\"]'),(1205537,3092414,5,'writer','written by',NULL),(1205537,462895,6,'writer','written by',NULL),(1205537,2007,7,'writer','based on characters created by',NULL),(1205537,57655,8,'producer','producer',NULL),(1205537,225146,9,'producer','producer',NULL),(1205558,1124747,10,'producer','producer',NULL),(1205558,1631269,1,'actress',NULL,'[\"Luli\"]'),(1205558,515116,2,'actress',NULL,'[\"Glenda\"]'),(1205558,191412,3,'actor',NULL,'[\"Clement\"]'),(1205558,1519666,4,'actor',NULL,'[\"Eddie\"]'),(1205558,553796,5,'director',NULL,NULL),(1205558,2959701,6,'writer','screenplay',NULL),(1205558,180390,7,'producer','producer',NULL),(1205558,4820074,8,'producer','executive producer',NULL),(1205558,796796,9,'producer','producer',NULL),(1206285,2541077,10,'production_designer',NULL,NULL),(1206285,3056937,1,'actress',NULL,'[\"Camino\"]'),(1206285,255979,2,'actress',NULL,'[\"Gloria\"]'),(1206285,1107138,3,'actor',NULL,'[\"José\"]'),(1206285,2168632,4,'actress',NULL,'[\"Nuria\"]'),(1206285,275250,5,'director',NULL,NULL),(1206285,543896,6,'producer','executive producer',NULL),(1206285,1255565,7,'producer','producer',NULL),(1206285,1290936,8,'composer',NULL,NULL),(1206285,145915,9,'cinematographer',NULL,NULL),(1206488,349356,10,'editor',NULL,NULL),(1206488,2008680,1,'actress',NULL,'[\"Fausta\"]'),(1206488,844845,2,'actress',NULL,'[\"Aída\"]'),(1206488,2961396,3,'actor',NULL,'[\"Noé\"]'),(1206488,2961401,4,'actor',NULL,'[\"Tío Lúcido\"]'),(1206488,2013191,5,'director',NULL,NULL),(1206488,154464,6,'producer','producer',NULL),(1206488,602660,7,'producer','producer',NULL),(1206488,2639868,8,'composer',NULL,NULL),(1206488,1161987,9,'cinematographer',NULL,NULL),(1206543,1448916,10,'producer','producer',NULL),(1206543,288,1,'actor',NULL,'[\"Russell Baze\"]'),(1206543,729,2,'actor',NULL,'[\"Rodney Baze Jr.\"]'),(1206543,757855,3,'actress',NULL,'[\"Lena Taylor\"]'),(1206543,437,4,'actor',NULL,'[\"Harlan DeGroat\"]'),(1206543,178376,5,'director',NULL,NULL),(1206543,2145487,6,'writer','written by',NULL),(1206543,1545611,7,'producer','producer',NULL),(1206543,2248832,8,'producer','producer',NULL),(1206543,138,9,'producer','producer',NULL),(1206885,5004893,10,'producer','producer',NULL),(1206885,230,1,'actor',NULL,'[\"John Rambo\"]'),(1206885,891895,2,'actress',NULL,'[\"Carmen Delgado\"]'),(1206885,673824,3,'actor',NULL,'[\"Hugo Martinez\"]'),(1206885,56770,4,'actress',NULL,'[\"Maria Beltran\"]'),(1206885,344496,5,'director',NULL,NULL),(1206885,1006730,6,'writer','screenplay by',NULL),(1206885,330108,7,'writer','story by',NULL),(1206885,606251,8,'writer','based on the character created by',NULL),(1206885,503592,9,'producer','producer',NULL),(1209377,673950,10,'composer',NULL,NULL),(1209377,578853,1,'actor',NULL,'[\"Ned\"]'),(1209377,2998321,2,'actress',NULL,'[\"Kate\"]'),(1209377,220450,3,'actress',NULL,'[\"Toni\"]'),(1209377,341737,4,'actress',NULL,'[\"Sally\"]'),(1209377,1829,5,'director',NULL,NULL),(1209377,861327,6,'writer','novel',NULL),(1209377,986,7,'producer','producer',NULL),(1209377,1853983,8,'producer','producer',NULL),(1209377,9896284,9,'composer',NULL,NULL),(1210042,860315,10,'producer','producer',NULL),(1210042,152,1,'actor',NULL,'[\"Eddie\"]'),(1210042,332,2,'actor',NULL,'[\"Tango\"]'),(1210042,160,3,'actor',NULL,'[\"Sal\"]'),(1210042,648,4,'actor',NULL,'[\"Caz\"]'),(1210042,298807,5,'director',NULL,NULL),(1210042,2130654,6,'writer','written by',NULL),(1210042,169896,7,'producer','producer',NULL),(1210042,412588,8,'producer','producer',NULL),(1210042,486524,9,'producer','producer',NULL),(1210166,6894,10,'producer','producer',NULL),(1210166,93,1,'actor',NULL,'[\"Billy Beane\"]'),(1210166,705,2,'actress',NULL,'[\"Sharon\"]'),(1210166,1706767,3,'actor',NULL,'[\"Peter Brand\"]'),(1210166,450,4,'actor',NULL,'[\"Art Howe\"]'),(1210166,587955,5,'director',NULL,NULL),(1210166,1873,6,'writer','screenplay',NULL),(1210166,815070,7,'writer','screenplay',NULL),(1210166,3133181,8,'writer','story',NULL),(1210166,1034122,9,'writer','book \"Moneyball: The Art of Winning an Unfair Game\"',NULL),(1210819,1877,10,'composer',NULL,NULL),(1210819,136,1,'actor',NULL,'[\"Tonto\"]'),(1210819,2309517,2,'actor',NULL,'[\"John Reid (Lone Ranger)\"]'),(1210819,1209,3,'actor',NULL,'[\"Butch Cavendish\"]'),(1210819,929489,4,'actor',NULL,'[\"Cole\"]'),(1210819,893659,5,'director',NULL,NULL),(1210819,1244808,6,'writer','screenplay',NULL),(1210819,254645,7,'writer','screenplay',NULL),(1210819,744429,8,'writer','screenplay',NULL),(1210819,988,9,'producer','producer',NULL),(1211837,270559,10,'producer','producer',NULL),(1211837,1212722,1,'actor',NULL,'[\"Dr. Stephen Strange\"]'),(1211837,252230,2,'actor',NULL,'[\"Mordo\"]'),(1211837,1046097,3,'actress',NULL,'[\"Dr. Christine Palmer\"]'),(1211837,938950,4,'actor',NULL,'[\"Wong\"]'),(1211837,220600,5,'director',NULL,NULL),(1211837,3123612,6,'writer','written by',NULL),(1211837,1803036,7,'writer','written by',NULL),(1211837,498278,8,'writer','based on the Marvel comics by',NULL),(1211837,228492,9,'writer','based on the Marvel comics by',NULL),(1211956,4185845,10,'producer','producer',NULL),(1211956,230,1,'actor',NULL,'[\"Breslin\"]'),(1211956,216,2,'actor',NULL,'[\"Rottmayer\"]'),(1211956,1265067,3,'actor',NULL,'[\"Hush\"]'),(1211956,352,4,'actor',NULL,'[\"Lester Clark\"]'),(1211956,405632,5,'director',NULL,NULL),(1211956,1974016,6,'writer','screenplay by',NULL),(1211956,445669,7,'writer','screenplay by',NULL),(1211956,107509,8,'producer','producer',NULL),(1211956,4799,9,'producer','producer',NULL),(1212428,1250070,10,'producer','producer',NULL),(1212428,402271,1,'actor',NULL,'[\"Percy Fawcett\"]'),(1212428,1500155,2,'actor',NULL,'[\"Henry Costin\"]'),(1212428,1092227,3,'actress',NULL,'[\"Nina Fawcett\"]'),(1212428,4043618,4,'actor',NULL,'[\"Jack Fawcett\"]'),(1212428,336695,5,'director',NULL,NULL),(1212428,2970418,6,'writer','book',NULL),(1212428,306890,7,'producer','producer',NULL),(1212428,5030216,8,'producer','producer',NULL),(1212428,441097,9,'producer','producer',NULL),(1212436,871136,10,'composer',NULL,NULL),(1212436,182,1,'actress',NULL,'[\"Zoe\"]'),(1212436,1533927,2,'actor',NULL,'[\"Stan\"]'),(1212436,1143861,3,'actress',NULL,'[\"Mona\"]'),(1212436,647638,4,'actor',NULL,'[\"Clive\"]'),(1212436,693561,5,'director',NULL,NULL),(1212436,1180074,6,'writer','written by',NULL),(1212436,85542,7,'producer','producer',NULL),(1212436,89820,8,'producer','producer',NULL),(1212436,5494,9,'producer','producer',NULL),(1212450,279651,10,'producer','producer',NULL),(1212450,362766,1,'actor',NULL,'[\"Forrest Bondurant\"]'),(1212450,479471,2,'actor',NULL,'[\"Jack Bondurant\"]'),(1212450,1602,3,'actor',NULL,'[\"Charley Rakes\"]'),(1212450,164809,4,'actor',NULL,'[\"Howard Bondurant\"]'),(1212450,384825,5,'director',NULL,NULL),(1212450,147022,6,'writer','screenplay by',NULL),(1212450,2967574,7,'writer','based on the book by: \"The Wettest County in the World\"',NULL),(1212450,2918260,8,'producer','producer',NULL),(1212450,2691892,9,'producer','producer',NULL),(1212454,1987578,10,'producer','producer',NULL),(1212454,4695,1,'actress',NULL,'[\"Mona Gray\"]'),(1212454,582149,2,'actor',NULL,'[\"Ben Smith\"]'),(1212454,968,3,'actress',NULL,'[\"Mom\"]'),(1212454,790291,4,'actor',NULL,'[\"Dad\"]'),(1212454,1802009,5,'director',NULL,NULL),(1212454,266184,6,'writer','screenplay',NULL),(1212454,963400,7,'writer','screenplay',NULL),(1212454,70443,8,'writer','book \"An Invisible Sign of My Own\"',NULL),(1212454,248944,9,'producer','producer',NULL),(1212974,1460612,10,'editor',NULL,NULL),(1212974,2972478,1,'actress',NULL,'[\"Trixie\"]'),(1212974,1423270,2,'actress',NULL,'[\"Hel\"]'),(1212974,1760388,3,'actress',NULL,'[\"Camero\"]'),(1212974,403628,4,'actor',NULL,'[\"Gage\"]'),(1212974,414910,5,'director',NULL,NULL),(1212974,344408,6,'writer','poet laureate',NULL),(1212974,334138,7,'composer',NULL,NULL),(1212974,38419,8,'cinematographer','director of photography',NULL),(1212974,2678900,9,'editor',NULL,NULL),(1213641,2327099,10,'producer','producer',NULL),(1213641,331516,1,'actor',NULL,'[\"Neil Armstrong\"]'),(1213641,2946516,2,'actress',NULL,'[\"Janet Armstrong\"]'),(1213641,164809,3,'actor',NULL,'[\"Ed White\"]'),(1213641,151419,4,'actor',NULL,'[\"Deke Slayton\"]'),(1213641,3227090,5,'director',NULL,NULL),(1213641,1802857,6,'writer','screenplay by',NULL),(1213641,2973253,7,'writer','based on the book by',NULL),(1213641,2125212,8,'producer','producer',NULL),(1213641,324041,9,'producer','producer',NULL),(1213648,3632795,10,'composer',NULL,NULL),(1213648,268199,1,'actor',NULL,'[\"Mitchel\"]'),(1213648,461136,2,'actress',NULL,'[\"Charlotte\"]'),(1213648,935653,3,'actor',NULL,'[\"Gant\"]'),(1213648,667,4,'actor',NULL,'[\"Jordan\"]'),(1213648,1184258,5,'director',NULL,NULL),(1213648,2012698,6,'writer','novel',NULL),(1213648,2795844,7,'producer','producer',NULL),(1213648,2593874,8,'producer','producer',NULL),(1213648,454752,9,'producer','producer',NULL),(1213663,691084,10,'cinematographer','director of photography',NULL),(1213663,670408,1,'actor',NULL,'[\"Gary King\"]'),(1213663,296545,2,'actor',NULL,'[\"Andy Knightley\"]'),(1213663,293509,3,'actor',NULL,'[\"Oliver Chamberlain\"]'),(1213663,683253,4,'actress',NULL,'[\"Sam Chamberlain\"]'),(1213663,942367,5,'director',NULL,NULL),(1213663,79677,6,'producer','producer',NULL),(1213663,271479,7,'producer','producer',NULL),(1213663,661912,8,'producer','producer',NULL),(1213663,1888527,9,'composer',NULL,NULL),(12141112,1592586,10,'editor',NULL,NULL),(12141112,5897057,1,'actor',NULL,'[\"Kevin\"]'),(12141112,12168055,2,'actor',NULL,'[\"Hunter\"]'),(12141112,8365231,3,'actress',NULL,'[\"Emily\"]'),(12141112,4776683,4,'actor',NULL,'[\"Clay\"]'),(12141112,813164,5,'director',NULL,NULL),(12141112,1888967,6,'writer','written by',NULL),(12141112,788513,7,'producer','producer',NULL),(12141112,1014697,8,'composer',NULL,NULL),(12141112,353010,9,'cinematographer',NULL,NULL),(12145728,11498336,1,'actress',NULL,'[\"Principal\"]'),(12145728,11498341,2,'actor',NULL,'[\"McFields\"]'),(12145728,11498332,3,'actor',NULL,'[\"Teacher #2\"]'),(12145728,11498346,4,'actress',NULL,'[\"Charlie Sibling #3\"]'),(12145728,8089997,5,'director',NULL,NULL),(12145728,11496045,6,'writer','story editor',NULL),(12145728,11496044,7,'writer','story editor',NULL),(12145728,11498347,8,'composer',NULL,NULL),(12145728,11498348,9,'cinematographer',NULL,NULL),(1216475,315974,10,'composer',NULL,NULL),(1216475,5562,1,'actor',NULL,'[\"Lightning McQueen\"]'),(1216475,1249256,2,'actor',NULL,'[\"Mater\"]'),(1216475,323,3,'actor',NULL,'[\"Finn McMissile\"]'),(1216475,607865,4,'actress',NULL,'[\"Holley Shiftwell\"]'),(1216475,5124,5,'director',NULL,NULL),(1216475,506977,6,'director','co-director',NULL),(1216475,1557594,7,'writer','original story by',NULL),(1216475,703078,8,'writer','screenplay by',NULL),(1216475,714066,9,'producer','producer',NULL),(1216477,50175,10,'cinematographer','director of photography',NULL),(1216477,499,1,'actress',NULL,'[\"Dede\"]'),(1216477,1581662,2,'actress',NULL,'[\"Meimei\"]'),(1216477,1735,3,'actress',NULL,'[\"Viola\"]'),(1216477,5568,4,'actor',NULL,'[\"Alexander\"]'),(1216477,156873,5,'director',NULL,NULL),(1216477,3798,6,'writer','written by',NULL),(1216477,484879,7,'producer','producer',NULL),(1216477,3599794,8,'composer',NULL,NULL),(1216477,823638,9,'composer',NULL,NULL),(1216487,596365,10,'cinematographer',NULL,NULL),(1216487,636426,1,'actress',NULL,'[\"Lisbeth Salander\"]'),(1216487,638824,2,'actor',NULL,'[\"Mikael Blomkvist\"]'),(1216487,256890,3,'actress',NULL,'[\"Erika Berger\"]'),(1216487,27800,4,'actor',NULL,'[\"Nils Bjurman\"]'),(1216487,19242,5,'director',NULL,NULL),(1216487,296926,6,'writer','screenplay',NULL),(1216487,2297183,7,'writer','novel',NULL),(1216487,836673,8,'producer','producer',NULL),(1216487,343844,9,'composer',NULL,NULL),(1216492,83696,10,'producer','producer',NULL),(1216492,10736,1,'actress',NULL,'[\"Anna\"]'),(1216492,328828,2,'actor',NULL,'[\"Declan\"]'),(1216492,4395,3,'actor',NULL,'[\"Jeremy\"]'),(1216492,1475,4,'actor',NULL,'[\"Jack\"]'),(1216492,875793,5,'director',NULL,NULL),(1216492,438226,6,'writer','written by',NULL),(1216492,253323,7,'writer','written by',NULL),(1216492,53388,8,'producer','producer',NULL),(1216492,70454,9,'producer','producer',NULL),(1216496,496933,10,'composer',NULL,NULL),(1216496,1067547,1,'actress',NULL,'[\"Mother\"]'),(1216496,1047193,2,'actor',NULL,'[\"Yoon Do-joon\"]'),(1216496,1918588,3,'actor',NULL,'[\"Jin-tae\"]'),(1216496,2175143,4,'actor',NULL,'[\"Je-moon\"]'),(1216496,94435,5,'director',NULL,NULL),(1216496,2977474,6,'writer','screenplay',NULL),(1216496,3601864,7,'producer','co-executive producer',NULL),(1216496,3601683,8,'producer','producer',NULL),(1216496,784580,9,'producer','producer',NULL),(1216515,397377,10,'writer','story',NULL),(1216515,926165,1,'actress',NULL,'[\"Tinker Bell\"]'),(1216515,3454095,2,'actress',NULL,'[\"Lizzy Griffiths\"]'),(1216515,790688,3,'actor',NULL,'[\"Dr. Griffiths\"]'),(1216515,781899,4,'actress',NULL,'[\"Vidia\"]'),(1216515,713214,5,'director',NULL,NULL),(1216515,221841,6,'writer','screenplay',NULL),(1216515,611390,7,'writer','screenplay',NULL),(1216515,30651,8,'writer','screenplay',NULL),(1216515,314480,9,'writer','screenplay',NULL),(1216516,926165,1,'actress',NULL,'[\"Tinker Bell\"]'),(1216516,565366,2,'actor',NULL,'[\"Terence\"]'),(1216516,1363,3,'actress',NULL,'[\"Fairy Mary\"]'),(1216516,5154,4,'actress',NULL,'[\"Silvermist\"]'),(1216516,355806,5,'director',NULL,NULL),(1216516,818746,6,'writer','screenplay',NULL),(1216516,527112,7,'producer','producer',NULL),(1216516,6193,8,'composer',NULL,NULL),(1216516,590678,9,'editor',NULL,NULL),(1216520,843816,10,'cinematographer',NULL,NULL),(1216520,1200692,1,'actress',NULL,'[\"Rebecca\"]'),(1216520,1741002,2,'actor',NULL,'[\"Thomas\"]'),(1216520,544334,3,'actress',NULL,'[\"Judith\"]'),(1216520,927835,4,'actor',NULL,'[\"Ralph\"]'),(1216520,1212903,5,'director',NULL,NULL),(1216520,577145,6,'producer','producer',NULL),(1216520,611274,7,'producer','producer',NULL),(1216520,1871094,8,'producer','producer',NULL),(1216520,2068037,9,'composer',NULL,NULL),(1217209,236462,10,'composer',NULL,NULL),(1217209,531808,1,'actress',NULL,'[\"Merida\"]'),(1217209,175262,2,'actor',NULL,'[\"Fergus\"]'),(1217209,668,3,'actress',NULL,'[\"Elinor\"]'),(1217209,910278,4,'actress',NULL,'[\"The Witch\"]'),(1217209,28764,5,'director',NULL,NULL),(1217209,152312,6,'director',NULL,NULL),(1217209,700760,7,'director','co-director',NULL),(1217209,575293,8,'writer','screenplay by',NULL),(1217209,764780,9,'producer','producer',NULL),(1217213,6193,10,'composer',NULL,NULL),(1217213,926165,1,'actress',NULL,'[\"Tinker Bell\"]'),(1217213,1423955,2,'actress',NULL,'[\"Periwinkle\"]'),(1217213,1096,3,'actor',NULL,'[\"Lord Milori\"]'),(1217213,71818,4,'actor',NULL,'[\"Dewey\",\"Clank\"]'),(1217213,304432,5,'director',NULL,NULL),(1217213,391996,6,'director',NULL,NULL),(1217213,746598,7,'writer','screenplay',NULL),(1217213,737241,8,'writer','screenplay',NULL),(1217213,2885121,9,'producer','producer',NULL),(1217613,262210,10,'cinematographer','director of photography',NULL),(1217613,1173,1,'actor',NULL,'[\"Ssgt. Michael Nantz\"]'),(1217613,735442,2,'actress',NULL,'[\"TSgt. Elena Santos\"]'),(1217613,5256,3,'actress',NULL,'[\"Michele\"]'),(1217613,1913125,4,'actor',NULL,'[\"2nd Lt. William Martinez\"]'),(1217613,509448,5,'director',NULL,NULL),(1217613,78203,6,'writer','written by',NULL),(1217613,1506459,7,'producer','producer',NULL),(1217613,605775,8,'producer','producer',NULL),(1217613,3911,9,'composer',NULL,NULL),(1219289,502794,10,'composer',NULL,NULL),(1219289,177896,1,'actor',NULL,'[\"Eddie Morra\"]'),(1219289,295484,2,'actress',NULL,'[\"Melissa\"]'),(1219289,180411,3,'actress',NULL,'[\"Lindy\"]'),(1219289,134,4,'actor',NULL,'[\"Carl Van Loon\"]'),(1219289,1139726,5,'director',NULL,NULL),(1219289,228908,6,'writer','screenplay',NULL),(1219289,2982186,7,'writer','novel \"The Dark Fields\"',NULL),(1219289,1448916,8,'producer','producer',NULL),(1219289,472256,9,'producer','producer',NULL),(1219817,913116,10,'actor',NULL,'[\"Priest\"]'),(1219817,185404,1,'actor',NULL,'[\"Moist Von Lipwig\"]'),(1219817,1097,2,'actor',NULL,'[\"Lord Vetinari\"]'),(1219817,837064,3,'actor',NULL,'[\"Reacher Gilt\"]'),(1219817,2946516,4,'actress',NULL,'[\"Adora Belle Dearheart\"]'),(1219817,755133,5,'actor',NULL,'[\"Groat\"]'),(1219817,922367,6,'actor',NULL,'[\"Ridcully\"]'),(1219817,671487,7,'actor',NULL,'[\"Drumknott\"]'),(1219817,53448,8,'actor',NULL,'[\"Dave Pins\"]'),(1219817,378132,9,'actor',NULL,'[\"Mr. Pony\"]'),(1219827,7191024,10,'producer','producer',NULL),(1219827,424060,1,'actress',NULL,'[\"Major\"]'),(1219827,1561982,2,'actor',NULL,'[\"Batou\"]'),(1219827,1429,3,'actor',NULL,'[\"Aramaki\"]'),(1219827,300,4,'actress',NULL,'[\"Dr. Ouelet\"]'),(1219827,2782185,5,'director',NULL,NULL),(1219827,794385,6,'writer','based on the comic \"The Ghost in the Shell\" by',NULL),(1219827,1150145,7,'writer','screenplay by',NULL),(1219827,923980,8,'writer','screenplay by',NULL),(1219827,472567,9,'writer','screenplay by',NULL),(12198524,8995650,10,'actress',NULL,'[\"Frieda\"]'),(12198524,5669843,1,'actor',NULL,'[\"Gus\"]'),(12198524,5075244,2,'actor',NULL,'[\"Adam\"]'),(12198524,8539879,3,'actor',NULL,'[\"Ryan\"]'),(12198524,1353826,4,'actor',NULL,'[\"Marty\"]'),(12198524,6417610,5,'director',NULL,NULL),(12198524,4620740,6,'producer','producer',NULL),(12198524,8064655,7,'composer',NULL,NULL),(12198524,1884065,8,'actor',NULL,'[\"Therapist\"]'),(12198524,5045263,9,'actress',NULL,'[\"Amy\"]'),(1220198,1062923,10,'cinematographer','director of photography',NULL),(1220198,170,1,'actress',NULL,'[\"Abbey Tyler\",\"Self\"]'),(1220198,480,2,'actor',NULL,'[\"Abel Campos\"]'),(1220198,1599,3,'actor',NULL,'[\"Sheriff August\"]'),(1220198,434444,4,'actor',NULL,'[\"Awolowa Odusami\"]'),(1220198,1069989,5,'director',NULL,NULL),(1220198,1844663,6,'writer','story',NULL),(1220198,112189,7,'producer','producer',NULL),(1220198,138620,8,'producer','producer',NULL),(1220198,651414,9,'composer',NULL,NULL),(1220214,318639,10,'editor',NULL,NULL),(1220214,836343,1,'actor',NULL,'[\"Jamie Morgan\"]'),(1220214,2008435,2,'actor',NULL,'[\"Lee Morgan\"]'),(1220214,993242,3,'actress',NULL,'[\"Tia\"]'),(1220214,758411,4,'actor',NULL,'[\"Raymond Morgan\"]'),(1220214,726000,5,'director',NULL,NULL),(1220214,189248,6,'producer','producer',NULL),(1220214,1995070,7,'producer','producer',NULL),(1220214,432382,8,'composer',NULL,NULL),(1220214,336819,9,'cinematographer','director of photography',NULL),(1220634,474709,10,'producer','producer',NULL),(1220634,170,1,'actress',NULL,'[\"Alice\"]'),(1220634,5123,2,'actress',NULL,'[\"Claire Redfield\"]'),(1220634,589505,3,'actor',NULL,'[\"Chris Redfield\"]'),(1220634,167649,4,'actor',NULL,'[\"Bennett\"]'),(1220634,27271,5,'director',NULL,NULL),(1220634,93337,6,'producer','producer',NULL),(1220634,138502,7,'producer','producer',NULL),(1220634,251536,8,'producer','producer',NULL),(1220634,352820,9,'producer','producer',NULL),(1220719,461922,10,'cinematographer','director of photography',NULL),(1220719,947447,1,'actor',NULL,'[\"Ip Man\"]'),(1220719,945189,2,'actor',NULL,'[\"Quan\"]'),(1220719,266658,3,'actor',NULL,'[\"Jin\"]'),(1220719,482628,4,'actor',NULL,'[\"Li\"]'),(1220719,948159,5,'director',NULL,NULL),(1220719,2774833,6,'writer','screenplay',NULL),(1220719,5335213,7,'writer',NULL,NULL),(1220719,2260417,8,'producer','executive producer',NULL),(1220719,442766,9,'composer',NULL,NULL),(1221141,306088,10,'producer','producer',NULL),(1221141,1404505,1,'actress',NULL,'[\"Verónica\"]'),(1221141,2547679,2,'actress',NULL,'[\"Josefina\"]'),(1221141,1320600,3,'actor',NULL,'[\"Marcos\"]'),(1221141,2986346,4,'actor',NULL,'[\"Juan Manuel\"]'),(1221141,551506,5,'director',NULL,NULL),(1221141,21948,6,'producer','producer',NULL),(1221141,264,7,'producer','producer',NULL),(1221141,181107,8,'producer','producer',NULL),(1221141,192587,9,'producer','producer',NULL),(1221208,1100123,10,'writer','screenplay',NULL),(1221208,932,1,'actress',NULL,'[\"Frankie\"]'),(1221208,1745,2,'actor',NULL,'[\"Oz\"]'),(1221208,711118,3,'actress',NULL,'[\"Edna\"]'),(1221208,933156,4,'actress',NULL,'[\"Maxine\"]'),(1221208,768249,5,'director',NULL,NULL),(1221208,249882,6,'writer','screenplay',NULL),(1221208,3174914,7,'writer','screenplay',NULL),(1221208,3175290,8,'writer','screenplay',NULL),(1221208,3174891,9,'writer','screenplay',NULL),(12261776,2092016,10,'composer',NULL,NULL),(12261776,3485845,1,'actor',NULL,'[\"Mills\"]'),(12261776,7567556,2,'actress',NULL,'[\"Koa\"]'),(12261776,5668548,3,'actress',NULL,'[\"Nevine\"]'),(12261776,1519739,4,'actress',NULL,'[\"Nevine\'s Mom\"]'),(12261776,1399714,5,'director',NULL,NULL),(12261776,1456816,6,'director',NULL,NULL),(12261776,10110660,7,'producer','producer',NULL),(12261776,509484,8,'producer','producer',NULL),(12261776,600,9,'producer','producer',NULL),(12261880,723353,10,'actor',NULL,'[\"Leon\"]'),(12261880,10020970,1,'actor',NULL,'[\"Billy Lynch\"]'),(12261880,703191,2,'actress',NULL,'[\"Betty\"]'),(12261880,1063422,3,'actor',NULL,'[\"Barry\"]'),(12261880,8850465,4,'actor',NULL,'[\"Demitri\"]'),(12261880,1581296,5,'director',NULL,NULL),(12261880,8901295,6,'cinematographer',NULL,NULL),(12261880,2941603,7,'actor',NULL,'[\"Ernest\"]'),(12261880,8289379,8,'actor',NULL,'[\"Winks\"]'),(12261880,10815668,9,'actor',NULL,'[\"Daz\"]'),(12262116,526412,10,'producer','producer',NULL),(12262116,1557,1,'actor',NULL,'[\"Rick Stanton\"]'),(12262116,268199,2,'actor',NULL,'[\"John Volanthen\"]'),(12262116,249291,3,'actor',NULL,'[\"Harry Harris\"]'),(12262116,5290643,4,'actor',NULL,'[\"Chris Jewell\"]'),(12262116,165,5,'director',NULL,NULL),(12262116,629933,6,'writer','screenplay by',NULL),(12262116,534207,7,'writer','story by',NULL),(12262116,175473,8,'producer','producer',NULL),(12262116,4976,9,'producer','producer',NULL),(1226229,1015867,10,'composer',NULL,NULL),(1226229,1706767,1,'actor',NULL,'[\"Aaron Green\"]'),(1226229,1258970,2,'actor',NULL,'[\"Aldous Snow\"]'),(1226229,5253,3,'actress',NULL,'[\"Daphne Binks\"]'),(1226229,126284,4,'actress',NULL,'[\"Jackie Q\"]'),(1226229,831557,5,'director',NULL,NULL),(1226229,781981,6,'writer','characters',NULL),(1226229,31976,7,'producer','producer',NULL),(1226229,124239,8,'producer','producer',NULL),(1226229,745247,9,'producer','producer',NULL),(1226232,798889,10,'editor',NULL,NULL),(1226232,1659547,1,'actress',NULL,'[\"Rose\"]'),(1226232,1093951,2,'actor',NULL,'[\"Bennett Brewer\"]'),(1226232,112,3,'actor',NULL,'[\"Allen Brewer\"]'),(1226232,215,4,'actress',NULL,'[\"Grace Brewer\"]'),(1226232,275277,5,'director',NULL,NULL),(1226232,1987578,6,'producer','producer',NULL),(1226232,820429,7,'producer','producer',NULL),(1226232,65100,8,'composer',NULL,NULL),(1226232,7037,9,'cinematographer','director of photography',NULL),(1226236,1150125,10,'producer','producer',NULL),(1226236,842770,1,'actress',NULL,'[\"Emma Recchi\"]'),(1226236,2918889,2,'actor',NULL,'[\"Edoardo Recchi Junior\"]'),(1226236,299998,3,'actor',NULL,'[\"Antonio Biscaglia\"]'),(1226236,2130040,4,'actress',NULL,'[\"Elisabetta Recchi\"]'),(1226236,345174,5,'director',NULL,NULL),(1226236,16628,6,'writer','screenplay',NULL),(1226236,182891,7,'writer','screenplay',NULL),(1226236,2576,8,'writer','screenplay',NULL),(1226236,2361520,9,'producer','producer',NULL),(1226240,1200064,10,'producer','producer',NULL),(1226240,450,1,'actor',NULL,'[\"Robert Gelbart\"]'),(1226240,686,2,'actor',NULL,'[\"Peter Mitchell\"]'),(1226240,1416,3,'actress',NULL,'[\"Juliette Gelbart\"]'),(1226240,411980,4,'actor',NULL,'[\"Daniel Lerner\"]'),(1226240,1597629,5,'director',NULL,NULL),(1226240,343713,6,'writer','screenplay by',NULL),(1226240,169989,7,'producer','producer',NULL),(1226240,1584960,8,'producer','producer',NULL),(1226240,1639578,9,'producer','producer',NULL),(1226251,8146780,10,'producer','producer',NULL),(1226251,559551,1,'actress',NULL,'[\"Satoshi\"]'),(1226251,649026,2,'actress',NULL,'[\"Pikachu\"]'),(1226251,879936,3,'actor',NULL,'[\"Takeshi\"]'),(1226251,1123476,4,'actress',NULL,'[\"Hikari\"]'),(1226251,951197,5,'director',NULL,NULL),(1226251,2095966,6,'writer','creator',NULL),(1226251,814473,7,'writer','screenplay',NULL),(1226251,2242949,8,'writer','creator',NULL),(1226251,846969,9,'writer','creator',NULL),(1226273,454752,10,'producer','producer',NULL),(1226273,154,1,'actor',NULL,'[\"Craven\"]'),(1226273,935653,2,'actor',NULL,'[\"Jedburgh\"]'),(1226273,396812,3,'actor',NULL,'[\"Jack Bennett\"]'),(1226273,636942,4,'actress',NULL,'[\"Emma Craven\"]'),(1226273,132709,5,'director',NULL,NULL),(1226273,1184258,6,'writer','screenplay',NULL),(1226273,100597,7,'writer','screenplay',NULL),(1226273,448392,8,'writer','television series',NULL),(1226273,2593874,9,'producer','producer',NULL),(1226291,2996966,1,'director',NULL,NULL),(1226291,503931,2,'writer','written by',NULL),(1226291,1244315,3,'producer','producer',NULL),(1226291,3120545,4,'producer','producer',NULL),(1226291,2998106,5,'producer','producer',NULL),(1226291,3120448,6,'producer','producer',NULL),(1226291,3120712,7,'production_designer',NULL,NULL),(1226291,3120323,8,'production_designer',NULL,NULL),(1226681,60631,10,'cinematographer','director of photography',NULL),(1226681,565569,1,'actor',NULL,'[\"Grant Mazzy\"]'),(1226681,396515,2,'actress',NULL,'[\"Sydney Briar\"]'),(1226681,2468050,3,'actress',NULL,'[\"Laurel-Ann Drummond\"]'),(1226681,19528,4,'actor',NULL,'[\"Dr. Mendez\"]'),(1226681,567680,5,'director',NULL,NULL),(1226681,2997229,6,'writer','written by',NULL),(1226681,2272274,7,'producer','producer',NULL),(1226681,2957900,8,'producer','producer',NULL),(1226681,284001,9,'composer',NULL,NULL),(1226753,2439643,10,'writer','film \"Ha-Hov\"',NULL),(1226753,545,1,'actress',NULL,'[\"Rachel Singer\"]'),(1226753,941777,2,'actor',NULL,'[\"Young David\"]'),(1226753,929489,3,'actor',NULL,'[\"Stephan Gold\"]'),(1226753,1567113,4,'actress',NULL,'[\"Young Rachel\"]'),(1226753,6960,5,'director',NULL,NULL),(1226753,891216,6,'writer','screenplay',NULL),(1226753,963359,7,'writer','screenplay',NULL),(1226753,1661186,8,'writer','screenplay',NULL),(1226753,77002,9,'writer','film \"Ha-Hov\"',NULL),(1226766,854074,10,'producer','producer',NULL),(1226766,4563869,1,'actress',NULL,'[\"Gilly Hopkins\"]'),(1226766,870,2,'actress',NULL,'[\"Maime Trotter\"]'),(1226766,335,3,'actress',NULL,'[\"Nonnie\"]'),(1226766,818055,4,'actress',NULL,'[\"Ms. Harris\"]'),(1226766,378893,5,'director',NULL,NULL),(1226766,1547579,6,'writer','screenplay by',NULL),(1226766,665505,7,'writer','based on the book by',NULL),(1226766,5606744,8,'producer','producer',NULL),(1226766,3011335,9,'producer','producer',NULL),(1226774,2941,10,'producer','producer',NULL),(1226774,390903,1,'actor',NULL,'[\"Simon Foster\"]'),(1226774,134922,2,'actor',NULL,'[\"Malcolm Tucker\"]'),(1226774,1254,3,'actor',NULL,'[\"Lt. Gen. George Miller\"]'),(1226774,2227000,4,'actor',NULL,'[\"Civil Servant\"]'),(1226774,406334,5,'director',NULL,NULL),(1226774,1104036,6,'writer','screenplay',NULL),(1226774,1006581,7,'writer','screenplay',NULL),(1226774,733988,8,'writer','screenplay',NULL),(1226774,2254846,9,'writer','additional dialogue',NULL),(1226837,1250070,10,'producer','producer',NULL),(1226837,136797,1,'actor',NULL,'[\"David Sheff\"]'),(1226837,5491,2,'actress',NULL,'[\"Karen Barbour\"]'),(1226837,6244013,3,'actor',NULL,'[\"Nic Sheff (12 Years Old)\"]'),(1226837,7294937,4,'actress',NULL,'[\"Daisy Sheff\"]'),(1226837,886976,5,'director',NULL,NULL),(1226837,1729294,6,'writer','screenplay by',NULL),(1226837,2997310,7,'writer','based on the book \"Beautiful Boy\" by',NULL),(1226837,2996954,8,'writer','based on the book \"Tweak\" by',NULL),(1226837,306890,9,'producer','producer',NULL),(12268798,6258823,1,'actor',NULL,NULL),(12268798,5698677,2,'director',NULL,NULL),(12268798,6678463,3,'writer','co-writer',NULL),(1227787,1039246,10,'cinematographer',NULL,NULL),(1227787,950,1,'actress',NULL,'[\"Elisabeth Sommers\"]'),(1227787,468130,2,'actor',NULL,'[\"Ousmane\"]'),(1227787,98793,3,'actor',NULL,'[\"Imam\"]'),(1227787,954704,4,'actor',NULL,'[\"Le Boucher\"]'),(1227787,98953,5,'director',NULL,NULL),(1227787,520569,6,'writer','screenplay',NULL),(1227787,1181258,7,'writer','screenplay',NULL),(1227787,117593,8,'producer','producer',NULL),(1227787,23940,9,'composer',NULL,NULL),(1227926,1315990,10,'actress',NULL,'[\"Groupie #1\"]'),(1227926,439,1,'actor',NULL,'[\"Billy (Dr. Horrible)\"]'),(1227926,277213,2,'actor',NULL,'[\"Captain Hammer\"]'),(1227926,1260407,3,'actress',NULL,'[\"Penny\"]'),(1227926,374865,4,'actor',NULL,'[\"Moist\"]'),(1227926,1870313,5,'actor',NULL,'[\"Bad Horse Chorus #1\"]'),(1227926,1871590,6,'actor',NULL,'[\"Bad Horse Chorus #2\",\"Dead Bowie\"]'),(1227926,718216,7,'actor',NULL,'[\"Bad Horse Chorus #3\",\"Moving Guy\"]'),(1227926,672436,8,'actor',NULL,'[\"Driver\",\"Van Driver\"]'),(1227926,663999,9,'actor',NULL,'[\"Mayor\"]'),(1227929,3409843,10,'self',NULL,'[\"Themselves - Artists\"]'),(1227929,5027760,1,'self',NULL,'[\"Self - Herb\'s Sister\"]'),(1227929,3410239,2,'self',NULL,'[\"Self - Artist\"]'),(1227929,3409938,3,'self',NULL,'[\"Self - Artist\"]'),(1227929,3410255,4,'self',NULL,'[\"Self - Artist\"]'),(1227929,2811093,5,'director',NULL,NULL),(1227929,3650664,6,'writer','Abbey Dubin',NULL),(1227929,1431983,7,'composer',NULL,NULL),(1227929,171550,8,'editor',NULL,NULL),(1227929,89255,9,'archive_footage',NULL,'[\"Self - Mayor of New York City\"]'),(1228705,456158,10,'writer','Marvel comic book',NULL),(1228705,375,1,'actor',NULL,'[\"Tony Stark\"]'),(1228705,620,2,'actor',NULL,'[\"Ivan Vanko\"]'),(1228705,569,3,'actress',NULL,'[\"Pepper Potts\"]'),(1228705,332,4,'actor',NULL,'[\"Lt. Col. James \'Rhodey\' Rhodes\"]'),(1228705,269463,5,'director',NULL,NULL),(1228705,857620,6,'writer','screenplay',NULL),(1228705,498278,7,'writer','Marvel comic book',NULL),(1228705,1411347,8,'writer','Marvel comic book',NULL),(1228705,1293367,9,'writer','Marvel comic book',NULL),(1228987,317642,10,'producer','producer',NULL),(1228987,2240346,1,'actor',NULL,'[\"Owen\"]'),(1228987,1631269,2,'actress',NULL,'[\"Abby\"]'),(1228987,420955,3,'actor',NULL,'[\"The Father\"]'),(1228987,120648,4,'actress',NULL,'[\"Owen\'s Mother\"]'),(1228987,716257,5,'director',NULL,NULL),(1228987,512137,6,'writer','screenplay \"Låt den rätte komma in\"',NULL),(1228987,1180690,7,'producer','producer',NULL),(1228987,116348,8,'producer','producer',NULL),(1228987,247524,9,'producer','producer',NULL),(1229238,1333357,10,'producer','producer',NULL),(1229238,129,1,'actor',NULL,'[\"Ethan Hunt\"]'),(1229238,719637,2,'actor',NULL,'[\"Brandt\"]'),(1229238,670408,3,'actor',NULL,'[\"Benji\"]'),(1229238,1745736,4,'actress',NULL,'[\"Jane\"]'),(1229238,83348,5,'director',NULL,NULL),(1229238,312367,6,'writer','television series \"Mission: Impossible\"',NULL),(1229238,32227,7,'writer','written by',NULL),(1229238,625858,8,'writer','written by',NULL),(1229238,9190,9,'producer','producer',NULL),(1229340,107855,10,'editor',NULL,NULL),(1229340,2071,1,'actor',NULL,'[\"Ron Burgundy\"]'),(1229340,775,2,'actress',NULL,'[\"Veronica Corningstone\"]'),(1229340,748620,3,'actor',NULL,'[\"Brian Fantana\"]'),(1229340,136797,4,'actor',NULL,'[\"Brick Tamland\"]'),(1229340,570912,5,'director',NULL,NULL),(1229340,31976,6,'producer','producer',NULL),(1229340,1420126,7,'composer',NULL,NULL),(1229340,622474,8,'composer',NULL,NULL),(1229340,5929,9,'cinematographer','director of photography',NULL),(1229381,449323,10,'editor',NULL,NULL),(1229381,213354,1,'actor',NULL,'[\"Saïd\"]'),(1229381,954704,2,'actor',NULL,'[\"Messaoud\"]'),(1229381,98793,3,'actor',NULL,'[\"Abdelkader\"]'),(1229381,99174,4,'actress',NULL,'[\"La mère\"]'),(1229381,98953,5,'director',NULL,NULL),(1229381,520569,6,'writer','writer',NULL),(1229381,117593,7,'producer','producer',NULL),(1229381,23940,8,'composer',NULL,NULL),(1229381,64290,9,'cinematographer',NULL,NULL),(1229822,547050,10,'composer',NULL,NULL),(1229822,1985859,1,'actress',NULL,'[\"Jane Eyre\"]'),(1229822,1055413,2,'actor',NULL,'[\"Rochester\"]'),(1229822,68260,3,'actor',NULL,'[\"St John Rivers\"]'),(1229822,254332,4,'actress',NULL,'[\"Hannah\"]'),(1229822,1560977,5,'director',NULL,NULL),(1229822,1620490,6,'writer','screenplay by',NULL),(1229822,111576,7,'writer','based on the novel by',NULL),(1229822,654077,8,'producer','producer',NULL),(1229822,872799,9,'producer','producer',NULL),(1230215,1910274,1,'actor',NULL,'[\"Douglas\"]'),(1230215,1658935,2,'actor',NULL,'[\"Eugene\"]'),(1230215,2939030,3,'actor',NULL,'[\"Wells\"]'),(1230215,4326044,4,'actor',NULL,'[\"Joe Patuto\"]'),(1230215,153740,5,'director',NULL,NULL),(1230215,425741,6,'producer','producer',NULL),(1230215,117381,7,'cinematographer','director of photography',NULL),(1230215,938485,8,'editor',NULL,NULL),(1230215,923820,9,'production_designer',NULL,NULL),(1230414,404528,10,'editor',NULL,NULL),(1230414,658,1,'actress',NULL,'[\"Jane Adler\"]'),(1230414,188,2,'actor',NULL,'[\"Adam Schaffer\"]'),(1230414,285,3,'actor',NULL,'[\"Jake Adler\"]'),(1230414,1024677,4,'actor',NULL,'[\"Harley\"]'),(1230414,583600,5,'director',NULL,NULL),(1230414,748784,6,'producer','producer',NULL),(1230414,673137,7,'composer','co-composer',NULL),(1230414,1877,8,'composer',NULL,NULL),(1230414,1799,9,'cinematographer','director of photography',NULL),(1230424,1216490,10,'editor',NULL,NULL),(1230424,1800338,1,'actress',NULL,'[\"Subaru Miyamoto\"]'),(1230424,2270541,2,'actress',NULL,'[\"Liz Park\"]'),(1230424,1778466,3,'actor',NULL,'[\"Kohei\"]'),(1230424,2210296,4,'actress',NULL,'[\"Mana Kureha\"]'),(1230424,156871,5,'director',NULL,NULL),(1230424,3065830,6,'writer','comic',NULL),(1230424,465067,7,'producer','producer',NULL),(1230424,1885057,8,'producer','producer',NULL),(1230424,1359837,9,'cinematographer',NULL,NULL),(1231583,65100,10,'composer',NULL,NULL),(1231583,375,1,'actor',NULL,'[\"Peter Highman\"]'),(1231583,302108,2,'actor',NULL,'[\"Ethan Tremblay\"]'),(1231583,1157358,3,'actress',NULL,'[\"Sarah Highman\"]'),(1231583,4937,4,'actor',NULL,'[\"Darryl\"]'),(1231583,680846,5,'director',NULL,NULL),(1231583,169180,6,'writer','screenplay',NULL),(1231583,293139,7,'writer','screenplay',NULL),(1231583,1186373,8,'writer','screenplay',NULL),(1231583,325175,9,'producer','producer',NULL),(1231587,601597,10,'producer','producer',NULL),(1231587,131,1,'actor',NULL,'[\"Adam\"]'),(1231587,1117791,2,'actor',NULL,'[\"Lou\"]'),(1231587,732497,3,'actor',NULL,'[\"Nick\"]'),(1231587,241173,4,'actor',NULL,'[\"Jacob\"]'),(1231587,684336,5,'director',NULL,NULL),(1231587,372222,6,'writer','screenplay',NULL),(1231587,1890845,7,'writer','screenplay',NULL),(1231587,1898234,8,'writer','screenplay',NULL),(1231587,517808,9,'producer','producer',NULL),(1232200,340003,10,'composer',NULL,NULL),(1232200,1191,1,'actor',NULL,'[\"Donny\"]'),(1232200,1676221,2,'actor',NULL,'[\"Todd\"]'),(1232200,1015262,3,'actress',NULL,'[\"Jamie\"]'),(1232200,215,4,'actress',NULL,'[\"Mary McGarricle (Present Day)\"]'),(1232200,1890845,5,'director',NULL,NULL),(1232200,2791292,6,'writer','written by',NULL),(1232200,184445,7,'producer','producer',NULL),(1232200,316406,8,'producer','producer',NULL),(1232200,1009782,9,'producer','producer',NULL),(1232207,2770339,10,'editor',NULL,NULL),(1232207,601619,1,'self',NULL,'[\"Self\"]'),(1232207,3398139,2,'self',NULL,'[\"Self\"]'),(1232207,141699,3,'archive_footage',NULL,'[\"Self\"]'),(1232207,3067972,4,'self',NULL,'[\"Self\"]'),(1232207,2154696,5,'producer','producer',NULL),(1232207,1345020,6,'composer',NULL,NULL),(1232207,550065,7,'cinematographer',NULL,NULL),(1232207,1026832,8,'cinematographer',NULL,NULL),(1232207,1755190,9,'editor',NULL,NULL),(1232776,1095780,10,'editor',NULL,NULL),(1232776,3086235,1,'actress',NULL,'[\"Mia\"]'),(1232776,1055413,2,'actor',NULL,'[\"Connor\"]'),(1232776,1663573,3,'actress',NULL,'[\"Joanne\"]'),(1232776,3650501,4,'actress',NULL,'[\"Tyler\"]'),(1232776,36349,5,'director',NULL,NULL),(1232776,440413,6,'producer','producer',NULL),(1232776,493130,7,'producer','producer',NULL),(1232776,552914,8,'composer',NULL,NULL),(1232776,752811,9,'cinematographer','director of photography',NULL),(1232783,440344,10,'producer','producer',NULL),(1232783,263759,1,'actress',NULL,'[\"Cassidy\"]'),(1232783,932454,2,'actress',NULL,'[\"Ellie\"]'),(1232783,402,3,'actress',NULL,'[\"Mrs. Crenshaw\"]'),(1232783,3338979,4,'actress',NULL,'[\"Bra-Clad Sister\"]'),(1232783,376664,5,'director',NULL,NULL),(1232783,831457,6,'writer','screenplay',NULL),(1232783,1539257,7,'writer','screenplay',NULL),(1232783,743093,8,'writer','screenplay \"Seven Sisters\"',NULL),(1232783,3136697,9,'producer','producer',NULL),(1232829,605775,10,'producer','producer',NULL),(1232829,1706767,1,'actor',NULL,'[\"Schmidt\"]'),(1232829,1475594,2,'actor',NULL,'[\"Jenko\"]'),(1232829,1084,3,'actor',NULL,'[\"Captain Dickson\"]'),(1232829,488953,4,'actress',NULL,'[\"Molly Tracey\"]'),(1232829,520488,5,'director',NULL,NULL),(1232829,588087,6,'director',NULL,NULL),(1232829,45209,7,'writer','screenplay',NULL),(1232829,367895,8,'writer','television series',NULL),(1232829,4798,9,'writer','television series',NULL),(1232838,621961,10,'producer','executive producer',NULL),(1232838,1429380,1,'actress',NULL,'[\"Chapin Wright\"]'),(1232838,2145177,2,'actress',NULL,'[\"Eve\"]'),(1232838,174021,3,'actress',NULL,'[\"Liza\"]'),(1232838,663546,4,'actress',NULL,'[\"Cicely Gerber\"]'),(1232838,289994,5,'director',NULL,NULL),(1232838,3011547,6,'writer','written by',NULL),(1232838,1828340,7,'producer','producer',NULL),(1232838,19415,8,'producer','producer',NULL),(1232838,1685816,9,'producer','producer',NULL),(1233219,82994,10,'editor',NULL,NULL),(1233219,788335,1,'actor',NULL,'[\"Brad Macallam\"]'),(1233219,353,2,'actor',NULL,'[\"Detective Havenhurst\"]'),(1233219,1721,3,'actress',NULL,'[\"Ingrid Gudmundson\"]'),(1233219,1424,4,'actor',NULL,'[\"Lee Meyers\"]'),(1233219,1348,5,'director',NULL,NULL),(1233219,325562,6,'writer','written by',NULL),(1233219,2480526,7,'producer','producer',NULL),(1233219,717609,8,'composer',NULL,NULL),(1233219,954432,9,'cinematographer','director of photography',NULL),(1233227,467977,10,'producer','producer',NULL),(1233227,68551,1,'actor',NULL,'[\"Jigsaw\",\"John\"]'),(1233227,541908,2,'actor',NULL,'[\"Hoffman\"]'),(1233227,1679,3,'actor',NULL,'[\"Erickson\"]'),(1233227,751018,4,'actress',NULL,'[\"Jill\"]'),(1233227,340436,5,'director',NULL,NULL),(1233227,1733317,6,'writer','screenplay by',NULL),(1233227,1729303,7,'writer','screenplay by',NULL),(1233227,121117,8,'producer','producer',NULL),(1233227,388898,9,'producer','producer',NULL),(1233301,1154632,10,'composer',NULL,NULL),(1233301,316079,1,'actor',NULL,'[\"King John\"]'),(1233301,2076,2,'actor',NULL,'[\"Gil Becket\"]'),(1233301,4051,3,'actor',NULL,'[\"Baron William d\'Aubigny\"]'),(1233301,700856,4,'actor',NULL,'[\"Thomas Marshal\"]'),(1233301,257646,5,'director',NULL,NULL),(1233301,440936,6,'writer','co-screenplay',NULL),(1233301,1893753,7,'writer','first screenplay',NULL),(1233301,70238,8,'producer','producer',NULL),(1233301,1259737,9,'producer','producer',NULL),(1233334,1323822,1,'actress',NULL,'[\"Alike\"]'),(1233334,915462,2,'actress',NULL,'[\"Audrey\"]'),(1233334,1632532,3,'actress',NULL,'[\"Bina\"]'),(1233334,2651139,4,'actress',NULL,'[\"Laura\"]'),(1233334,2011696,5,'director',NULL,NULL),(1233334,2011282,6,'producer','line producer',NULL),(1233334,2284226,7,'cinematographer',NULL,NULL),(1233334,1454836,8,'editor',NULL,NULL),(1233334,1234866,9,'production_designer',NULL,NULL),(1234548,5696,10,'cinematographer','director of photography',NULL),(1234548,191,1,'actor',NULL,'[\"Bob Wilton\"]'),(1234548,123,2,'actor',NULL,'[\"Lyn Cassady\"]'),(1234548,228,3,'actor',NULL,'[\"Larry Hooper\"]'),(1234548,313,4,'actor',NULL,'[\"Bill Django\"]'),(1234548,381416,5,'director',NULL,NULL),(1234548,740160,6,'writer','inspired by the book',NULL),(1234548,1661186,7,'writer','screenplay',NULL),(1234548,514264,8,'producer','producer',NULL),(1234548,448843,9,'composer',NULL,NULL),(1234654,923820,10,'production_designer',NULL,NULL),(1234654,1774,1,'actor',NULL,'[\"Roger Greenberg\"]'),(1234654,1950086,2,'actress',NULL,'[\"Florence Marr\"]'),(1234654,492,3,'actress',NULL,'[\"Beth - Beller\'s Party\"]'),(1234654,406975,4,'actor',NULL,'[\"Ivan Schrank\"]'),(1234654,876,5,'director',NULL,NULL),(1234654,748784,6,'producer','producer',NULL),(1234654,3805163,7,'composer',NULL,NULL),(1234654,767647,8,'cinematographer','director of photography',NULL),(1234654,834135,9,'editor',NULL,NULL),(1234719,4927,10,'producer','producer',NULL),(1234719,1165110,1,'actor',NULL,'[\"Jed Eckert\"]'),(1234719,1456970,2,'actress',NULL,'[\"Erica Martin\"]'),(1234719,1242688,3,'actor',NULL,'[\"Robert Kitner\"]'),(1234719,669681,4,'actor',NULL,'[\"Matt Eckert\"]'),(1234719,103187,5,'director',NULL,NULL),(1234719,255296,6,'writer','screenplay',NULL),(1234719,664920,7,'writer','screenplay',NULL),(1234719,721817,8,'writer',NULL,NULL),(1234719,587518,9,'writer',NULL,NULL),(1234721,628080,10,'producer','producer',NULL),(1234721,1172478,1,'actor',NULL,'[\"Alex Murphy\",\"RoboCop\"]'),(1234721,198,2,'actor',NULL,'[\"Dr. Dennett Norton\"]'),(1234721,474,3,'actor',NULL,'[\"Raymond Sellars\"]'),(1234721,180411,4,'actress',NULL,'[\"Clara Murphy\"]'),(1234721,655683,5,'director',NULL,NULL),(1234721,2440587,6,'writer','written by',NULL),(1234721,627159,7,'writer','written by',NULL),(1234721,591160,8,'writer','written by',NULL),(1234721,8953,9,'producer','producer',NULL),(1235075,1547634,10,'editor',NULL,NULL),(1235075,844027,1,'actor',NULL,'[\"Alex Brubeck\"]'),(1235075,683950,2,'actor',NULL,'[\"Tamás Várnai\"]'),(1235075,843632,3,'actor',NULL,'[\"Ákos Várnai\"]'),(1235075,401286,4,'actor',NULL,'[\"András Várnai\"]'),(1235075,1089985,5,'director',NULL,NULL),(1235075,1472530,6,'writer','screenplay',NULL),(1235075,1393806,7,'writer','screenplay',NULL),(1235075,1105392,8,'composer',NULL,NULL),(1235075,617349,9,'cinematographer',NULL,NULL),(1235124,695536,10,'cinematographer','director of photography',NULL),(1235124,1602660,1,'actor',NULL,'[\"Dorian Gray\"]'),(1235124,147,2,'actor',NULL,'[\"Henry Wotton\"]'),(1235124,356017,3,'actress',NULL,'[\"Emily Wotton\"]'),(1235124,3227473,4,'actor',NULL,'[\"Patrol Policeman\"]'),(1235124,662529,5,'director',NULL,NULL),(1235124,3023628,6,'writer','written by',NULL),(1235124,928492,7,'writer','novel \"The Picture of Dorian Gray\"',NULL),(1235124,859877,8,'producer','producer',NULL),(1235124,596495,9,'composer',NULL,NULL),(1235166,144297,10,'producer','producer',NULL),(1235166,2588665,1,'actor',NULL,'[\"Malik El Djebena\"]'),(1235166,34390,2,'actor',NULL,'[\"César Luciani\"]'),(1235166,1513288,3,'actor',NULL,'[\"Ryad\"]'),(1235166,3024530,4,'actor',NULL,'[\"Jordi\"]'),(1235166,2191,5,'director',NULL,NULL),(1235166,81179,6,'writer','screenplay',NULL),(1235166,2022382,7,'writer','original screenplay',NULL),(1235166,2425150,8,'writer','original screenplay',NULL),(1235166,1175084,9,'producer','producer',NULL),(1235170,83340,10,'editor',NULL,NULL),(1235170,432380,1,'actress',NULL,'[\"Sophie\",\"Voice of Paw-Paw\"]'),(1235170,512934,2,'actor',NULL,'[\"Jason\"]'),(1235170,913175,3,'actor',NULL,'[\"Marshall\"]'),(1235170,2699362,4,'actress',NULL,'[\"Gabriella\"]'),(1235170,477253,5,'producer','producer',NULL),(1235170,577145,6,'producer','producer',NULL),(1235170,1871094,7,'producer','producer',NULL),(1235170,109726,8,'composer',NULL,NULL),(1235170,1517261,9,'cinematographer','director of photography',NULL),(1235187,1564536,10,'production_designer',NULL,NULL),(1235187,180411,1,'actress',NULL,'[\"Kerstin\"]'),(1235187,3964350,2,'actress',NULL,'[\"Leyna\"]'),(1235187,1172,3,'actor',NULL,'[\"Heinz\"]'),(1235187,1126657,4,'actor',NULL,'[\"Lutz\"]'),(1235187,1392994,5,'director',NULL,NULL),(1235187,361210,6,'producer','producer',NULL),(1235187,3318201,7,'composer',NULL,NULL),(1235187,1899,8,'cinematographer',NULL,NULL),(1235187,1235965,9,'editor',NULL,NULL),(1235189,697048,10,'composer',NULL,NULL),(1235189,631490,1,'actor',NULL,'[\"Victor Maynard\"]'),(1235189,1289434,2,'actress',NULL,'[\"Rose\"]'),(1235189,342488,3,'actor',NULL,'[\"Tony\"]'),(1235189,391,4,'actor',NULL,'[\"Ferguson\"]'),(1235189,528718,5,'director',NULL,NULL),(1235189,185309,6,'writer','screenplay',NULL),(1235189,759270,7,'writer','film \"Cible émouvante\"',NULL),(1235189,3828,8,'producer','producer',NULL),(1235189,741578,9,'producer','producer',NULL),(1235796,493339,10,'editor','film editor',NULL),(1235796,268199,1,'actor',NULL,'[\"Syracuse\"]'),(1235796,45461,2,'actress',NULL,'[\"Ondine\"]'),(1235796,457062,3,'actress',NULL,'[\"Maura\"]'),(1235796,3599764,4,'actress',NULL,'[\"Annie\"]'),(1235796,1403,5,'director',NULL,NULL),(1235796,1878845,6,'producer','producer',NULL),(1235796,283478,7,'producer','producer',NULL),(1235796,1743772,8,'composer',NULL,NULL),(1235796,236313,9,'cinematographer','director of photography',NULL),(1235830,400152,10,'producer','producer',NULL),(1235830,1917423,1,'actor',NULL,'[\"Chico\"]'),(1235830,2253799,2,'actress',NULL,'[\"Rita\"]'),(1235830,2089954,3,'actor',NULL,'[\"Ramón\"]'),(1235830,4850962,4,'actor',NULL,NULL),(1235830,973105,5,'director',NULL,NULL),(1235830,973475,6,'director',NULL,NULL),(1235830,874096,7,'director',NULL,NULL),(1235830,554838,8,'writer',NULL,NULL),(1235830,3969193,9,'producer','producer',NULL),(1235842,3152009,10,'composer',NULL,NULL),(1235842,2073156,1,'actress',NULL,'[\"Lala\"]'),(1235842,3151265,2,'actress',NULL,'[\"La Guayi\"]'),(1235842,612992,3,'actor',NULL,'[\"El juez Bronté\"]'),(1235842,892799,4,'actor',NULL,'[\"El Vasco\"]'),(1235842,699932,5,'director',NULL,NULL),(1235842,602660,6,'producer','producer',NULL),(1235842,699933,7,'producer','producer',NULL),(1235842,326166,8,'composer',NULL,NULL),(1235842,850617,9,'composer',NULL,NULL),(12361974,1189346,10,'writer','Justice League of America created by',NULL),(12361974,147147,1,'actor',NULL,'[\"Superman\",\"Clark Kent\"]'),(12361974,255,2,'actor',NULL,'[\"Batman\",\"Bruce Wayne\"]'),(12361974,2933757,3,'actress',NULL,'[\"Wonder Woman\",\"Diana Prince\"]'),(12361974,10736,4,'actress',NULL,'[\"Lois Lane\"]'),(12361974,811583,5,'director',NULL,NULL),(12361974,796950,6,'writer','Superman created by',NULL),(12361974,795975,7,'writer','Superman created by',NULL),(12361974,6516,8,'writer','story by',NULL),(12361974,3263825,9,'writer','story by',NULL),(1236371,1202905,10,'actress',NULL,'[\"Elisa de Montfort\"]'),(1236371,527735,1,'actor',NULL,'[\"Padre Diniz\"]'),(1236371,1120597,2,'actress',NULL,'[\"Ângela de Lima\"]'),(1236371,673204,3,'actor',NULL,'[\"Alberto de Magalhães\"]'),(1236371,2394494,4,'actor',NULL,'[\"Pedro da Silva (adolescente)\"]'),(1236371,3562242,5,'actress',NULL,'[\"Dona Antónia\"]'),(1236371,2417108,6,'actress',NULL,'[\"Eugénia\"]'),(1236371,605706,7,'actor',NULL,'[\"Marquês de Montezelos\"]'),(1236371,3696607,8,'actor',NULL,'[\"Criado\"]'),(1236371,2128444,9,'actress',NULL,'[\"Condessa de Viso\"]'),(1237838,2255973,1,'actor',NULL,'[\"Jason\"]'),(1237838,2272628,2,'actor',NULL,'[\"Duncan\"]'),(1237838,2257388,3,'actor',NULL,'[\"Charlie\"]'),(1237838,2201555,4,'actress',NULL,'[\"Kelly\"]'),(1237838,2254920,5,'director',NULL,NULL),(1237838,2251763,6,'writer','story',NULL),(1237838,1946731,7,'cinematographer',NULL,NULL),(1237838,14685855,8,'cinematographer','co-cinematographer',NULL),(1237838,3017674,9,'production_designer',NULL,NULL),(1240982,22397,10,'editor',NULL,NULL),(1240982,1144419,1,'actor',NULL,'[\"Thadeous\"]'),(1240982,204,2,'actress',NULL,'[\"Isabel\"]'),(1240982,290556,3,'actor',NULL,'[\"Fabious\"]'),(1240982,1727356,4,'actor',NULL,'[\"Courtney\"]'),(1240982,337773,5,'director',NULL,NULL),(1240982,78897,6,'writer','written by',NULL),(1240982,835959,7,'producer','producer',NULL),(1240982,413011,8,'composer',NULL,NULL),(1240982,650615,9,'cinematographer','director of photography',NULL),(12412888,605775,10,'producer','producer',NULL),(12412888,5188,1,'actor',NULL,'[\"Tom Wachowski\"]'),(12412888,120,2,'actor',NULL,'[\"Dr. Robotnik\"]'),(12412888,2355635,3,'actor',NULL,'[\"Sonic\"]'),(12412888,1754366,4,'actress',NULL,'[\"Maddie Wachowski\"]'),(12412888,1733778,5,'director',NULL,NULL),(12412888,1352459,6,'writer','screenplay by',NULL),(12412888,1351254,7,'writer','screenplay by',NULL),(12412888,4465847,8,'writer','screenplay by',NULL),(12412888,4457111,9,'producer','producer',NULL),(1241317,1761126,10,'writer','based on \"Death Note\" by: In Shonen Jump',NULL),(1241317,1822659,1,'actor',NULL,'[\"Light Turner\"]'),(1241317,3147751,2,'actor',NULL,'[\"L\"]'),(1241317,4960279,3,'actress',NULL,'[\"Mia Sutton\"]'),(1241317,924154,4,'actor',NULL,'[\"James Turner\"]'),(1241317,1417392,5,'director',NULL,NULL),(1241317,663048,6,'writer','screenplay by',NULL),(1241317,663050,7,'writer','screenplay by',NULL),(1241317,2916300,8,'writer','screenplay by',NULL),(1241317,2174097,9,'writer','based on \"Death Note\" by: In Shonen Jump',NULL),(1242422,1455093,10,'producer','executive producer',NULL),(1242422,869088,1,'actor',NULL,'[\"Malamadre\"]'),(1242422,2975962,2,'actor',NULL,'[\"Juan Oliver\"]'),(1242422,720277,3,'actor',NULL,'[\"José Utrilla\"]'),(1242422,608210,4,'actor',NULL,'[\"Ernesto Almansa\"]'),(1242422,600409,5,'director',NULL,NULL),(1242422,346277,6,'writer','adaptation',NULL),(1242422,3035970,7,'writer','novel',NULL),(1242422,1973308,8,'producer','producer',NULL),(1242422,330270,9,'producer','producer',NULL),(1242423,1165980,10,'editor',NULL,NULL),(1242423,3091610,1,'actress',NULL,'[\"Vanessa Lemor\"]'),(1242423,2425775,2,'actor',NULL,'[\"Philip Georgey\"]'),(1242423,404269,3,'actress',NULL,'[\"Terri Lemor\"]'),(1242423,1483668,4,'actress',NULL,'[\"Norma\"]'),(1242423,1151780,5,'director',NULL,NULL),(1242423,2868943,6,'producer','producer',NULL),(1242423,2939294,7,'producer','producer',NULL),(1242423,1732883,8,'composer',NULL,NULL),(1242423,6560,9,'cinematographer','director of photography',NULL),(1242460,7011,10,'producer','producer',NULL),(1242460,842770,1,'actress',NULL,'[\"Eva Khatchadourian\"]'),(1242460,604,2,'actor',NULL,'[\"Franklin\"]'),(1242460,3009232,3,'actor',NULL,'[\"Kevin, Teenager\"]'),(1242460,3838127,4,'actor',NULL,'[\"Kevin, 6-8 Years\"]'),(1242460,708903,5,'director',NULL,NULL),(1242460,4094284,6,'writer','screenplay',NULL),(1242460,2651543,7,'writer','novel',NULL),(1242460,289048,8,'producer','producer',NULL),(1242460,736312,9,'producer','producer',NULL),(1242530,3034881,10,'producer','producer',NULL),(1242530,2102514,1,'actor',NULL,'[\"Yogesh B. Patel\"]'),(1242530,1231899,2,'actress',NULL,'[\"Anjali\",\"Sanjana Rasikbhai Shah\",\"Kajal Thakkar\"]'),(1242530,820283,3,'actor',NULL,'[\"Bharatbhai Patel\"]'),(1242530,3393414,4,'actress',NULL,'[\"Shakuntala B. Patel\"]'),(1242530,332950,5,'director',NULL,NULL),(1242530,1237215,6,'writer','dialogue',NULL),(1242530,1402904,7,'writer','screenplay & dialogue',NULL),(1242530,1796962,8,'writer','dialogue',NULL),(1242530,3220599,9,'writer','novel \"Kimball Ravenswood\"',NULL),(1242545,606682,10,'editor',NULL,NULL),(1242545,263740,1,'actor',NULL,'[\"Eric Bishop\"]'),(1242545,134642,2,'actor',NULL,'[\"Lui-même (Eric Cantona)\"]'),(1242545,2288625,3,'actress',NULL,'[\"Lily\"]'),(1242545,1542551,4,'actor',NULL,'[\"Ryan\"]'),(1242545,516360,5,'director',NULL,NULL),(1242545,491956,6,'writer','screenplay',NULL),(1242545,639780,7,'producer','producer',NULL),(1242545,6070,8,'composer',NULL,NULL),(1242545,10096,9,'cinematographer',NULL,NULL),(1242618,506259,10,'editor',NULL,NULL),(1242618,5261,1,'actress',NULL,'[\"Alice\"]'),(1242618,301,2,'actress',NULL,'[\"Lucy\"]'),(1242618,87109,3,'actress',NULL,'[\"Rebecca\"]'),(1242618,89456,4,'actor',NULL,'[\"David\"]'),(1242618,566343,5,'director',NULL,NULL),(1242618,4197701,6,'producer','producer',NULL),(1242618,2877692,7,'producer','producer',NULL),(1242618,1006435,8,'composer',NULL,NULL),(1242618,724754,9,'cinematographer',NULL,NULL),(1243375,297015,10,'editor',NULL,NULL),(1243375,201857,1,'actor',NULL,'[\"Nicolás Vergara Grey\"]'),(1243375,1366397,2,'actor',NULL,'[\"Ángel Santiago\"]'),(1243375,3037505,3,'actress',NULL,'[\"Victoria Ponce\"]'),(1243375,317725,4,'actress',NULL,'[\"Teresa Capriatti\"]'),(1243375,874096,5,'director',NULL,NULL),(1243375,805073,6,'writer','screenplay',NULL),(1243375,343903,7,'writer','screenplay',NULL),(1243375,75778,8,'producer','producer',NULL),(1243375,1314964,9,'cinematographer',NULL,NULL),(1243957,83696,10,'producer','producer',NULL),(1243957,136,1,'actor',NULL,'[\"Frank Tupelo\",\"Alexander Pearce\"]'),(1243957,1401,2,'actress',NULL,'[\"Elise Clifton-Ward\"]'),(1243957,79273,3,'actor',NULL,'[\"Inspector John Acheson\"]'),(1243957,1096,4,'actor',NULL,'[\"Chief Inspector Jones\"]'),(1243957,3697,5,'director',NULL,NULL),(1243957,3160,6,'writer','screenplay',NULL),(1243957,271501,7,'writer','screenplay',NULL),(1243957,1362432,8,'writer','motion picture \"Anthony Zimmer\"',NULL),(1243957,53388,9,'producer','producer',NULL),(1243974,404528,10,'editor',NULL,NULL),(1243974,177896,1,'actor',NULL,'[\"Brian Gilcrest\"]'),(1243974,1046097,2,'actress',NULL,'[\"Tracy Woodside\"]'),(1243974,1297015,3,'actress',NULL,'[\"Allison Ng\"]'),(1243974,285,4,'actor',NULL,'[\"General Dixon\"]'),(1243974,1081,5,'director',NULL,NULL),(1243974,748784,6,'producer','producer',NULL),(1243974,1743706,7,'composer',NULL,NULL),(1243974,3926614,8,'composer',NULL,NULL),(1243974,310341,9,'cinematographer','director of photography',NULL),(1244668,475338,10,'production_designer',NULL,NULL),(1244668,100196,1,'actor',NULL,'[\"Zinos Kazantsakis\"]'),(1244668,1953,2,'actor',NULL,'[\"Illias Kazantsakis\"]'),(1244668,2114493,3,'actress',NULL,'[\"Nadine Krüger\"]'),(1244668,3341495,4,'actress',NULL,'[\"Lucia Faust\"]'),(1244668,15359,5,'director',NULL,NULL),(1244668,3754060,6,'producer','producer',NULL),(1244668,535323,7,'producer','producer',NULL),(1244668,458430,8,'cinematographer','director of photography',NULL),(1244668,83340,9,'editor',NULL,NULL),(1244754,1136263,10,'cinematographer','director of photography',NULL),(1244754,5476,1,'actress',NULL,'[\"Betty Anne Waters\"]'),(1244754,5377,2,'actor',NULL,'[\"Kenny Waters\"]'),(1244754,502425,3,'actress',NULL,'[\"Nancy Taylor\"]'),(1244754,536780,4,'actor',NULL,'[\"Law Professor\"]'),(1244754,1282,5,'director',NULL,NULL),(1244754,336861,6,'writer','written by',NULL),(1244754,440140,7,'producer','producer',NULL),(1244754,837449,8,'producer','producer',NULL),(1244754,134508,9,'composer',NULL,NULL),(1245112,744485,10,'cinematographer','director of photography',NULL),(1245112,3536229,1,'actor',NULL,'[\"Dr. Owen\"]'),(1245112,892299,2,'actress',NULL,'[\"Ángela Vidal\"]'),(1245112,971334,3,'actor',NULL,'[\"Jefe\"]'),(1245112,143032,4,'actor',NULL,'[\"Larra\"]'),(1245112,49371,5,'director',NULL,NULL),(1245112,687042,6,'director',NULL,NULL),(1245112,1548856,7,'writer','screenplay',NULL),(1245112,3306640,8,'writer','story editor',NULL),(1245112,273327,9,'producer','executive producer',NULL),(1245492,49026,10,'editor',NULL,NULL),(1245492,290556,1,'actor',NULL,'[\"James Franco\"]'),(1245492,1706767,2,'actor',NULL,'[\"Jonah Hill\"]'),(1245492,736622,3,'actor',NULL,'[\"Seth Rogen\"]'),(1245492,59431,4,'actor',NULL,'[\"Jay Baruchel\"]'),(1245492,1698571,5,'director',NULL,NULL),(1245492,1083540,6,'writer','based on the short film \"Jay and Seth vs. The Apocalypse\" by',NULL),(1245492,4384917,7,'producer','producer',NULL),(1245492,2273444,8,'composer',NULL,NULL),(1245492,1060930,9,'cinematographer','director of photography',NULL),(1245526,225146,10,'producer','producer',NULL),(1245526,246,1,'actor',NULL,'[\"Frank Moses\"]'),(1245526,545,2,'actress',NULL,'[\"Victoria\"]'),(1245526,151,3,'actor',NULL,'[\"Joe Matheson\"]'),(1245526,571,4,'actress',NULL,'[\"Sarah Ross\"]'),(1245526,777881,5,'director',NULL,NULL),(1245526,388377,6,'writer','screenplay',NULL),(1245526,388375,7,'writer','screenplay',NULL),(1245526,1979137,8,'writer','graphic novel',NULL),(1245526,1216642,9,'writer','graphic novel',NULL),(1247644,1830380,1,'actress',NULL,'[\"Zoe\"]'),(1247644,918078,2,'actor',NULL,'[\"Daryl\"]'),(1247644,925033,3,'actress',NULL,'[\"Joanie\"]'),(1247644,551908,4,'actress',NULL,'[\"Helaine\"]'),(1247644,1947375,5,'writer','screenplay',NULL),(1247644,3051269,6,'composer',NULL,NULL),(1247644,74735,7,'cinematographer',NULL,NULL),(1247662,399523,10,'editor',NULL,NULL),(1247662,88127,1,'actress',NULL,'[\"Beth\"]'),(1247662,2187603,2,'actor',NULL,'[\"Tommy\"]'),(1247662,1034965,3,'actor',NULL,'[\"Daniel\"]'),(1247662,1148573,4,'actor',NULL,'[\"Baker\"]'),(1247662,2360037,5,'director',NULL,NULL),(1247662,60459,6,'producer','producer',NULL),(1247662,2385,7,'producer','producer',NULL),(1247662,354453,8,'composer',NULL,NULL),(1247662,862946,9,'cinematographer','director of photography',NULL),(1248971,400240,10,'producer','producer',NULL),(1248971,342488,1,'actor',NULL,'[\"Malachy\"]'),(1248971,1588066,2,'actor',NULL,'[\"Luke\"]'),(1248971,626362,3,'actor',NULL,'[\"Crilly\"]'),(1248971,2474586,4,'actress',NULL,'[\"Donna\"]'),(1248971,2443600,5,'director',NULL,NULL),(1248971,2441296,6,'director',NULL,NULL),(1248971,2076151,7,'writer','written by',NULL),(1248971,97717,8,'producer','producer',NULL),(1248971,1358793,9,'producer','producer',NULL),(1250777,1331055,10,'producer','producer',NULL),(1250777,1093951,1,'actor',NULL,'[\"Dave Lizewski\",\"Kick-Ass\"]'),(1250777,115,2,'actor',NULL,'[\"Damon Macready\",\"Big Daddy\"]'),(1250777,1631269,3,'actress',NULL,'[\"Mindy Macready\",\"Hit-Girl\"]'),(1250777,113595,4,'actor',NULL,'[\"Mr. Lizewski\"]'),(1250777,891216,5,'director',NULL,NULL),(1250777,963359,6,'writer','screenplay',NULL),(1250777,2092839,7,'writer','comic book',NULL),(1250777,1348210,8,'writer','comic book',NULL),(1250777,92061,9,'producer','producer',NULL),(1251757,919109,10,'producer','producer',NULL),(1251757,5561,1,'actor',NULL,'[\"Jack Harris\"]'),(1251757,610,2,'actor',NULL,'[\"Wayne Beering\"]'),(1251757,532683,3,'actor',NULL,'[\"Buck Dolby\"]'),(1251757,1001,4,'actor',NULL,'[\"Jerry Haggerty\"]'),(1251757,303032,5,'director',NULL,NULL),(1251757,918907,6,'writer','written by',NULL),(1251757,2672832,7,'producer','producer',NULL),(1251757,792061,8,'producer','producer',NULL),(1251757,795832,9,'producer','producer',NULL),(1252380,114399,10,'writer','characters',NULL),(1252380,1416215,1,'actress',NULL,'[\"Mitchie\"]'),(1252380,2679438,2,'actor',NULL,'[\"Shane\"]'),(1252380,2679917,3,'actor',NULL,'[\"Nate\"]'),(1252380,2650334,4,'actor',NULL,'[\"Jason\"]'),(1252380,388505,5,'director',NULL,NULL),(1252380,73504,6,'writer','written by',NULL),(1252380,1665969,7,'writer','written by',NULL),(1252380,382943,8,'writer','written by',NULL),(1252380,113935,9,'writer','characters',NULL),(1252595,2629113,10,'editor',NULL,NULL),(1252595,123984,1,'actress',NULL,'[\"Sophie Schmitt\"]'),(1252595,1339257,2,'actress',NULL,'[\"Ai-ling Chen\"]'),(1252595,1746379,3,'actress',NULL,'[\"Mei Li\"]'),(1252595,1575643,4,'actress',NULL,'[\"Katrin Bendersen\"]'),(1252595,872331,5,'director',NULL,NULL),(1252595,989994,6,'writer','screenplay',NULL),(1252595,994832,7,'producer','producer',NULL),(1252595,3354154,8,'composer',NULL,NULL),(1252595,576895,9,'cinematographer','director of photography',NULL),(12536294,2213147,10,'producer','producer',NULL),(12536294,829576,1,'actress',NULL,'[\"Diana\"]'),(12536294,1758,2,'actor',NULL,'[\"Major Alistar Gregory\"]'),(12536294,1020089,3,'actress',NULL,'[\"Maggie\"]'),(12536294,12670642,4,'actor',NULL,'[\"William\"]'),(12536294,1883257,5,'director',NULL,NULL),(12536294,1140275,6,'writer','written by',NULL),(12536294,11752,7,'producer','producer',NULL),(12536294,1548905,8,'producer','producer',NULL),(12536294,1464012,9,'producer','producer',NULL),(1253863,325927,10,'producer','producer',NULL),(1253863,822982,1,'actor',NULL,'[\"Themistokles\"]'),(1253863,1200692,2,'actress',NULL,'[\"Artemisia\"]'),(1253863,372176,3,'actress',NULL,'[\"Queen Gorgo\"]'),(1253863,558548,4,'actor',NULL,'[\"Aeskylos\"]'),(1253863,1729171,5,'director',NULL,NULL),(1253863,811583,6,'writer','screenplay',NULL),(1253863,426500,7,'writer','screenplay',NULL),(1253863,588340,8,'writer','graphic novel \"Xerxes\"',NULL),(1253863,4799,9,'producer','producer',NULL),(1253864,638089,10,'producer','producer',NULL),(1253864,147147,1,'actor',NULL,'[\"Theseus\"]'),(1253864,620,2,'actor',NULL,'[\"King Hyperion\"]'),(1253864,457,3,'actor',NULL,'[\"Old Man\"]'),(1253864,1151,4,'actor',NULL,'[\"Stavros\"]'),(1253864,802248,5,'director',NULL,NULL),(1253864,663048,6,'writer','written by',NULL),(1253864,663050,7,'writer','written by',NULL),(1253864,4799,8,'producer','producer',NULL),(1253864,1448916,9,'producer','producer',NULL),(1254322,477859,10,'producer','producer',NULL),(1254322,4274360,1,'actress',NULL,'[\"Queen Kristina\"]'),(1254322,300589,2,'actress',NULL,'[\"Countess Ebba Sparre\"]'),(1254322,638824,3,'actor',NULL,'[\"Chancellor Axel Oxenstierna\"]'),(1254322,1674903,4,'actor',NULL,'[\"Count Johan Oxenstierna\"]'),(1254322,442455,5,'director',NULL,NULL),(1254322,98919,6,'writer','written by',NULL),(1254322,3580391,7,'writer','English version by',NULL),(1254322,3889670,8,'producer','producer',NULL),(1254322,312200,9,'producer','producer',NULL),(1255953,1055564,10,'composer',NULL,NULL),(1255953,44073,1,'actress',NULL,'[\"Nawal Marwan\"]'),(1255953,246386,2,'actress',NULL,'[\"Jeanne Marwan\"]'),(1255953,309945,3,'actor',NULL,'[\"Simon Marwan\"]'),(1255953,1323233,4,'actor',NULL,'[\"Barbier de la Milice\",\"Officer Milice Chrétienne\"]'),(1255953,898288,5,'director',NULL,NULL),(1255953,1416431,6,'writer','play',NULL),(1255953,4034068,7,'writer','collaboration',NULL),(1255953,246404,8,'producer','producer',NULL),(1255953,566919,9,'producer','producer',NULL),(1257579,1385225,10,'cinematographer',NULL,NULL),(1257579,478886,1,'actress',NULL,'[\"Blanca\"]'),(1257579,3459539,2,'actress',NULL,'[\"Juana Sanchez\"]'),(1257579,702270,3,'actor',NULL,'[\"Fierro\"]'),(1257579,3603299,4,'actor',NULL,'[\"Cutberto\"]'),(1257579,140196,5,'director',NULL,NULL),(1257579,75843,6,'writer','screenplay',NULL),(1257579,850402,7,'producer','producer',NULL),(1257579,1434980,8,'composer',NULL,NULL),(1257579,1461427,9,'cinematographer','director of photography',NULL),(1258197,847986,10,'editor',NULL,NULL),(1258197,3065862,1,'actress',NULL,'[\"Dark\"]'),(1258197,2110418,2,'actress',NULL,'[\"Chinese Girl\"]'),(1258197,1812523,3,'actress',NULL,'[\"Blonde\"]'),(1258197,1125878,4,'actor',NULL,'[\"Deaf\"]'),(1258197,371955,5,'director',NULL,NULL),(1258197,3089840,6,'writer','story',NULL),(1258197,1060902,7,'producer','line producer',NULL),(1258197,1564659,8,'composer',NULL,NULL),(1258197,941335,9,'cinematographer',NULL,NULL),(1258972,195549,10,'editor',NULL,NULL),(1258972,128,1,'actor',NULL,'[\"Jack Knife\"]'),(1258972,1087183,2,'actor',NULL,'[\"Bronze Lion\"]'),(1258972,5154,3,'actress',NULL,'[\"Madam Blossom\"]'),(1258972,753526,4,'actor',NULL,'[\"Blacksmith\"]'),(1258972,744834,5,'writer','screenplay',NULL),(1258972,8953,6,'producer','producer',NULL),(1258972,628080,7,'producer','producer',NULL),(1258972,238300,8,'composer',NULL,NULL),(1258972,150832,9,'cinematographer',NULL,NULL),(1259014,874351,10,'composer',NULL,NULL),(1259014,1993,1,'actor',NULL,'[\"Jacques Mesrine\"]'),(1259014,208426,2,'actress',NULL,'[\"Jeanne Schneider\"]'),(1259014,367,3,'actor',NULL,'[\"Guido\"]'),(1259014,500976,4,'actor',NULL,'[\"Paul\"]'),(1259014,724938,5,'director',NULL,NULL),(1259014,1626500,6,'writer','book \"L\'instinct de mort\"',NULL),(1259014,2022382,7,'writer','scenario',NULL),(1259014,486627,8,'producer','producer',NULL),(1259014,1937,9,'composer',NULL,NULL),(12592084,721526,1,'director',NULL,NULL),(12593682,3825122,10,'composer',NULL,NULL),(12593682,93,1,'actor',NULL,'[\"Ladybug\"]'),(12593682,1428821,2,'actress',NULL,'[\"Prince\"]'),(12593682,1093951,3,'actor',NULL,'[\"Tangerine\"]'),(12593682,3109964,4,'actor',NULL,'[\"Lemon\"]'),(12593682,500610,5,'director',NULL,NULL),(12593682,5599654,6,'writer','screenplay by',NULL),(12593682,2157655,7,'writer','based on the book by',NULL),(12593682,298807,8,'producer','producer',NULL),(12593682,566555,9,'producer','producer',NULL),(1259521,924222,10,'production_designer',NULL,NULL),(1259521,1393354,1,'actress',NULL,'[\"Dana\"]'),(1259521,1165110,2,'actor',NULL,'[\"Curt\"]'),(1259521,404307,3,'actress',NULL,'[\"Jules\"]'),(1259521,469823,4,'actor',NULL,'[\"Marty\"]'),(1259521,1206844,5,'director',NULL,NULL),(1259521,923736,6,'writer','written by',NULL),(1259521,432382,7,'composer',NULL,NULL),(1259521,5687,8,'cinematographer','director of photography',NULL),(1259521,489809,9,'editor',NULL,NULL),(1259528,553498,10,'composer',NULL,NULL),(1259528,124930,1,'actor',NULL,'[\"\'Big Nick\' O\'Brien\"]'),(1259528,1032567,2,'actor',NULL,'[\"Ray Merrimen\"]'),(1259528,6578009,3,'actor',NULL,'[\"Donnie Wilson\"]'),(1259528,1265067,4,'actor',NULL,'[\"Enson Levoux\"]'),(1259528,345615,5,'director',NULL,NULL),(1259528,771228,6,'writer','story by',NULL),(1259528,4799,7,'producer','producer',NULL),(1259528,2229304,8,'producer','producer',NULL),(1259528,867504,9,'producer','producer',NULL),(1259571,6035,10,'composer',NULL,NULL),(1259571,829576,1,'actress',NULL,'[\"Bella Swan\"]'),(1259571,1500155,2,'actor',NULL,'[\"Edward Cullen\"]'),(1259571,1210124,3,'actor',NULL,'[\"Jacob Black\"]'),(1259571,419363,4,'actress',NULL,'[\"Gran\",\"Bella\"]'),(1259571,919363,5,'director',NULL,NULL),(1259571,742279,6,'writer','screenplay by',NULL),(1259571,2769412,7,'writer','based on the novel \"New Moon\" by',NULL),(1259571,324041,8,'producer','producer',NULL),(1259571,1651942,9,'producer','producer',NULL),(1259574,653878,10,'producer','producer',NULL),(1259574,1940449,1,'actor',NULL,'[\"Eddie Dunford\"]'),(1259574,607375,2,'actor',NULL,'[\"Maurice Jobson\"]'),(1259574,378132,3,'actor',NULL,'[\"Bill Hadley\"]'),(1259574,1340424,4,'actor',NULL,'[\"Barry Gannon\"]'),(1259574,418982,5,'director',NULL,NULL),(1259574,342617,6,'writer','writer',NULL),(1259574,3030961,7,'writer','based on the novel by',NULL),(1259574,106374,8,'producer','producer',NULL),(1259574,247787,9,'producer','producer',NULL),(1260502,442766,10,'composer',NULL,NULL),(1260502,848968,1,'actress',NULL,'[\"Motoko Kusanagi\"]'),(1260502,960033,2,'actor',NULL,'[\"Batou\"]'),(1260502,945290,3,'actor',NULL,'[\"Togusa\"]'),(1260502,312656,4,'actor',NULL,'[\"Section 6 Department Chief Nakamura\"]'),(1260502,651900,5,'director',NULL,NULL),(1260502,794385,6,'writer','manga',NULL),(1260502,411872,7,'writer','screenplay',NULL),(1260502,411070,8,'producer','producer',NULL),(1260502,559526,9,'producer','producer',NULL),(1260944,349785,1,'director',NULL,NULL),(12610794,1060386,10,'composer',NULL,NULL),(12610794,4331196,1,'actress',NULL,'[\"Luna\"]'),(12610794,1092,2,'actor',NULL,'[\"Shinshiro\"]'),(12610794,5712133,3,'actress',NULL,'[\"Onami\"]'),(12610794,2538735,4,'actor',NULL,'[\"Reo\"]'),(12610794,950620,5,'director',NULL,NULL),(12610794,4291727,6,'writer','written by',NULL),(12610794,305083,7,'writer','written by',NULL),(12610794,4054498,8,'writer','written by',NULL),(12610794,477238,9,'producer','producer',NULL),(12618926,351016,10,'production_designer',NULL,NULL),(12618926,4851,1,'actress',NULL,'[\"Janis\"]'),(12618926,9875384,2,'actress',NULL,'[\"Ana\"]'),(12618926,1990986,3,'actor',NULL,'[\"Arturo\"]'),(12618926,845209,4,'actress',NULL,'[\"Teresa\"]'),(12618926,264,5,'director',NULL,NULL),(12618926,21948,6,'producer','producer',NULL),(12618926,407076,7,'composer',NULL,NULL),(12618926,3900,8,'cinematographer',NULL,NULL),(12618926,284765,9,'editor',NULL,NULL),(1261945,859047,10,'cinematographer','director of photography',NULL),(1261945,572,1,'actress',NULL,'[\"Carrie Bradshaw\"]'),(1261945,326,2,'actress',NULL,'[\"Samantha Jones\"]'),(1261945,4862,3,'actress',NULL,'[\"Charlotte York\"]'),(1261945,633223,4,'actress',NULL,'[\"Miranda Hobbes\"]'),(1261945,455078,5,'director',NULL,NULL),(1261945,124299,6,'writer','characters from the book by',NULL),(1261945,823015,7,'writer','television series creator',NULL),(1261945,577644,8,'producer','producer',NULL),(1261945,956374,9,'composer',NULL,NULL),(1262416,574097,10,'editor',NULL,NULL),(1262416,117,1,'actress',NULL,'[\"Sidney Prescott\"]'),(1262416,1073,2,'actress',NULL,'[\"Gale Weathers-Riley\"]'),(1262416,274,3,'actor',NULL,'[\"Dewey Riley\"]'),(1262416,1423955,4,'actress',NULL,'[\"Sherrie\"]'),(1262416,127,5,'director',NULL,NULL),(1262416,932078,6,'writer','written by',NULL),(1262416,479757,7,'producer','producer',NULL),(1262416,1937,8,'composer',NULL,NULL),(1262416,5687,9,'cinematographer','director of photography',NULL),(1263670,380,10,'producer','producer',NULL),(1263670,313,1,'actor',NULL,'[\"Bad Blake\"]'),(1263670,350454,2,'actress',NULL,'[\"Jean Craddock\"]'),(1263670,268199,3,'actor',NULL,'[\"Tommy Sweet\"]'),(1263670,443856,4,'actor',NULL,'[\"Manager\"]'),(1263670,178376,5,'director',NULL,NULL),(1263670,3084575,6,'writer','novel \"Crazy Heart\"',NULL),(1263670,122439,7,'producer','producer',NULL),(1263670,3437,8,'producer','producer',NULL),(1263670,137548,9,'producer','producer',NULL),(1263750,145915,10,'cinematographer',NULL,NULL),(1263750,25745,1,'actress',NULL,'[\"Alba\"]'),(1263750,1388067,2,'actress',NULL,'[\"Natacha\"]'),(1263750,516272,3,'actor',NULL,'[\"Max\"]'),(1263750,632385,4,'actress',NULL,'[\"Edurne\"]'),(1263750,575523,5,'director',NULL,NULL),(1263750,1471503,6,'writer','based on a movie written by',NULL),(1263750,297545,7,'writer','dialogue advisor',NULL),(1263750,1007525,8,'producer','executive producer',NULL),(1263750,690772,9,'composer',NULL,NULL),(1263772,2999868,10,'actress',NULL,'[\"Kohane Tsuyuri\"]'),(1263772,1360441,1,'actress',NULL,'[\"Yuuko Ichihara\"]'),(1263772,1101677,2,'actor',NULL,'[\"Kimihiro Watanuki\"]'),(1263772,620017,3,'actor',NULL,'[\"Shizuka Doumeki\",\"Haruka Doumeki\"]'),(1263772,1328988,4,'actress',NULL,'[\"Mokona\"]'),(1263772,1598205,5,'director',NULL,NULL),(1263772,2150730,6,'director',NULL,NULL),(1263772,1220477,7,'writer','characters',NULL),(1263772,959985,8,'writer','screenplay',NULL),(1263772,9091071,9,'composer',NULL,NULL),(1263778,268628,10,'producer','producer',NULL),(1263778,308039,1,'actor',NULL,'[\"Nemours\"]'),(1263778,2244205,2,'actress',NULL,'[\"Junie\"]'),(1263778,1228072,3,'actor',NULL,'[\"Otto\"]'),(1263778,2057837,4,'actor',NULL,'[\"Matthias\"]'),(1263778,393394,5,'director',NULL,NULL),(1263778,851522,6,'writer','scenario',NULL),(1263778,478548,7,'writer','inspired by the book',NULL),(1263778,56720,8,'producer','producer',NULL),(1263778,1300565,9,'producer','producer',NULL),(1265990,5824,10,'cinematographer','director of photography',NULL),(1265990,1310368,1,'actress',NULL,'[\"Sara Matthews\"]'),(1265990,1015262,2,'actress',NULL,'[\"Rebecca\"]'),(1265990,1544217,3,'actor',NULL,'[\"Stephen\"]'),(1265990,1425528,4,'actress',NULL,'[\"Tracy\"]'),(1265990,160157,5,'director',NULL,NULL),(1265990,1867458,6,'writer','written by',NULL),(1265990,205713,7,'producer','producer',NULL),(1265990,498175,8,'producer','producer',NULL),(1265990,2227,9,'composer',NULL,NULL),(1266029,706002,10,'producer','producer',NULL),(1266029,1093951,1,'actor',NULL,'[\"John\"]'),(1266029,218,2,'actress',NULL,'[\"Mimi\"]'),(1266029,240359,3,'actress',NULL,'[\"Julia\"]'),(1266029,861915,4,'actor',NULL,'[\"Uncle George\"]'),(1266029,853374,5,'director',NULL,NULL),(1266029,3080706,6,'writer','memoir',NULL),(1266029,339043,7,'writer','screenplay',NULL),(1266029,77127,8,'producer','producer',NULL),(1266029,2941,9,'producer','producer',NULL),(1266097,377959,10,'cinematographer','director of photography',NULL),(1266097,1377478,1,'actress',NULL,'[\"Jules Steel\"]'),(1266097,831866,2,'actor',NULL,'[\"Capt. Edward Reynolds\"]'),(1266097,68643,3,'actress',NULL,'[\"Olivia\"]'),(1266097,2340248,4,'actress',NULL,'[\"Maria\"]'),(1266097,205802,5,'director',NULL,NULL),(1266097,2083643,6,'writer','screenplay',NULL),(1266097,1017005,7,'producer','producer',NULL),(1266097,3157168,8,'composer',NULL,NULL),(1266097,2158886,9,'composer',NULL,NULL),(1267297,505768,10,'producer','producer',NULL),(1267297,425005,1,'actor',NULL,'[\"Hercules\"]'),(1267297,457,2,'actor',NULL,'[\"Lord Cotys\"]'),(1267297,574534,3,'actor',NULL,'[\"Amphiaraus\"]'),(1267297,1212,4,'actor',NULL,'[\"King Eurystheus\"]'),(1267297,711840,5,'director',NULL,NULL),(1267297,2952284,6,'writer','screenplay by',NULL),(1267297,818746,7,'writer','screenplay by',NULL),(1267297,5610426,8,'writer','based on Radical Comics\' \"Hercules\" by',NULL),(1267297,4927,9,'producer','producer',NULL),(1267299,600261,10,'cinematographer',NULL,NULL),(1267299,2948912,1,'actress',NULL,'[\"The Usherette\"]'),(1267299,1842439,2,'actress',NULL,'[\"Janet Weiss\"]'),(1267299,7047874,3,'actor',NULL,'[\"Rocky\"]'),(1267299,587396,4,'actress',NULL,'[\"Magenta\"]'),(1267299,650905,5,'director',NULL,NULL),(1267299,788940,6,'writer','based on a screenplay by',NULL),(1267299,639782,7,'writer','based on a screenplay by',NULL),(1267299,4693,8,'producer','producer',NULL),(1267299,752630,9,'producer','producer',NULL),(1267379,774520,10,'writer','story and characters based on \"Dead Space\"',NULL),(1267379,296546,1,'actress',NULL,'[\"Alissa Vincent\"]'),(1267379,843775,2,'actor',NULL,'[\"Dr. Kyne\"]'),(1267379,191906,3,'actor',NULL,'[\"Captain Mathius\",\"Farum\"]'),(1267379,724656,4,'actor',NULL,'[\"Samuel Irons\",\"Pendleton\",\"Miner\"]'),(1267379,666548,5,'director',NULL,NULL),(1267379,311435,6,'director','segment director',NULL),(1267379,381817,7,'director','segment director',NULL),(1267379,658609,8,'writer','screenplay',NULL),(1267379,2917216,9,'writer','screenplay',NULL),(1268799,4344,10,'cinematographer','director of photography',NULL),(1268799,671980,1,'actor',NULL,'[\"Kumar\"]'),(1268799,158626,2,'actor',NULL,'[\"Harold\"]'),(1268799,439,3,'actor',NULL,'[\"Neil Patrick Harris\"]'),(1268799,652663,4,'actor',NULL,'[\"Mall Santa\"]'),(1268799,833889,5,'director',NULL,NULL),(1268799,1375358,6,'writer','written by',NULL),(1268799,1376383,7,'writer','written by',NULL),(1268799,788513,8,'producer','producer',NULL),(1268799,743919,9,'composer',NULL,NULL),(1268962,827071,10,'cinematographer',NULL,NULL),(1268962,5009,1,'actress',NULL,'[\"Anora Fleece\"]'),(1268962,428382,2,'actress',NULL,'[\"Imogene Cochran\"]'),(1268962,4912,3,'actor',NULL,'[\"Cheb Fleece\"]'),(1268962,3095757,4,'actress',NULL,'[\"Tabby Fleece\"]'),(1268962,1550026,5,'director',NULL,NULL),(1268962,692471,6,'producer','producer',NULL),(1268962,2250917,7,'producer','producer',NULL),(1268962,1906168,8,'producer','producer',NULL),(1268962,1632555,9,'composer',NULL,NULL),(1268987,645164,10,'producer','producer',NULL),(1268987,1725848,1,'actor',NULL,'[\"Fool\"]'),(1268987,1117791,2,'actor',NULL,'[\"Chariot\"]'),(1268987,289,3,'actress',NULL,'[\"Empress\"]'),(1268987,951148,4,'actress',NULL,'[\"Temperance\"]'),(1268987,3087552,5,'director',NULL,NULL),(1268987,506094,6,'writer','screenplay',NULL),(1268987,3087441,7,'writer','earlier screenplay',NULL),(1268987,446819,8,'producer','producer',NULL),(1268987,572014,9,'producer','producer',NULL),(1268989,598114,10,'editor',NULL,NULL),(1268989,2703558,1,'actress',NULL,'[\"Lucy\"]'),(1268989,1015,2,'actor',NULL,'[\"Lucy\'s Father\"]'),(1268989,528462,3,'actress',NULL,'[\"Lucy\'s Mother\"]'),(1268989,971135,4,'actor',NULL,'[\"Ben\"]'),(1268989,608090,5,'director',NULL,NULL),(1268989,342617,6,'writer','screenplay',NULL),(1268989,644585,7,'producer','producer',NULL),(1268989,3728869,8,'composer',NULL,NULL),(1268989,1082643,9,'cinematographer',NULL,NULL),(1269560,6230,10,'composer',NULL,NULL),(1269560,1967673,1,'actress',NULL,'[\"Belinda\"]'),(1269560,240380,2,'actress',NULL,'[\"Annie\"]'),(1269560,108758,3,'actor',NULL,'[\"Lee Owens\"]'),(1269560,1458,4,'actress',NULL,'[\"Miss Hattie Clarence\"]'),(1269560,1617,5,'director',NULL,NULL),(1269560,836129,6,'writer','written by',NULL),(1269560,1031745,7,'writer','book',NULL),(1269560,1009681,8,'writer','rewrite',NULL),(1269560,164181,9,'producer','producer',NULL),(1270120,1190888,10,'composer',NULL,NULL),(1270120,1580957,1,'actor',NULL,'[\"Apolain\",\"Young Hermann\"]'),(1270120,1939627,2,'actress',NULL,'[\"Sarah\",\"Young Anna\"]'),(1270120,716795,3,'actor',NULL,'[\"Hermann Goldbeck\"]'),(1270120,28293,4,'actress',NULL,'[\"Anna Goldbeck\"]'),(1270120,525495,5,'director',NULL,NULL),(1270120,3986722,6,'writer','story',NULL),(1270120,1973263,7,'writer','screenplay',NULL),(1270120,437933,8,'producer','producer',NULL),(1270120,499967,9,'producer','producer',NULL),(1270291,1237570,10,'editor',NULL,NULL),(1270291,1298134,1,'actor',NULL,'[\"Orin Jericho\",\"Croyer\"]'),(1270291,1364280,2,'actor',NULL,'[\"Centauri 7\",\"Landing Party Guard #2\"]'),(1270291,802280,3,'actor',NULL,'[\"Commander Karza\"]'),(1270291,4611,4,'actor',NULL,'[\"Slyak\"]'),(1270291,1414878,5,'writer','written by',NULL),(1270291,382833,6,'producer','producer',NULL),(1270291,848757,7,'producer','producer',NULL),(1270291,387426,8,'composer',NULL,NULL),(1270291,349177,9,'cinematographer',NULL,NULL),(1270296,247577,10,'cinematographer','director of photography',NULL),(1270296,514,1,'actor',NULL,'[\"Doe\"]'),(1270296,674782,2,'actor',NULL,'[\"Smith\"]'),(1270296,72435,3,'actress',NULL,'[\"Noreen\"]'),(1270296,998,4,'actor',NULL,'[\"Greene\"]'),(1270296,1766424,5,'director',NULL,NULL),(1270296,101483,6,'producer','producer',NULL),(1270296,1189201,7,'producer','producer',NULL),(1270296,755074,8,'producer','producer',NULL),(1270296,6012,9,'composer',NULL,NULL),(1270761,1937,10,'composer',NULL,NULL),(1270761,5017,1,'actress',NULL,'[\"Kim\"]'),(1270761,1602,2,'actor',NULL,'[\"Alex\"]'),(1270761,1933128,3,'actress',NULL,'[\"Sally\"]'),(1270761,1279472,4,'actor',NULL,'[\"Buggy Driver\"]'),(1270761,2552536,5,'director',NULL,NULL),(1270761,868219,6,'writer','screenplay',NULL),(1270761,730422,7,'writer','screenplay',NULL),(1270761,571111,8,'writer',NULL,NULL),(1270761,425741,9,'producer','producer',NULL),(1270769,374682,1,'actor',NULL,'[\"Erkki\"]'),(1270769,840994,2,'actor',NULL,'[\"Matti\"]'),(1270769,868039,3,'actor',NULL,'[\"Rauno Vajanne\"]'),(1270769,84950,4,'actress',NULL,'[\"Magdaleena\"]'),(1270769,442455,5,'director',NULL,NULL),(1270769,2930918,6,'writer','dialogue',NULL),(1270769,740111,7,'cinematographer',NULL,NULL),(1270797,2163440,10,'writer','Marvel\'s Venom character created by',NULL),(1270797,362766,1,'actor',NULL,'[\"Eddie Brock\",\"Venom\"]'),(1270797,931329,2,'actress',NULL,'[\"Anne Weying\"]'),(1270797,1981893,3,'actor',NULL,'[\"Carlton Drake\",\"Riot\"]'),(1270797,2020278,4,'actor',NULL,'[\"Security Chief Roland Treece\"]'),(1270797,281508,5,'director',NULL,NULL),(1270797,684374,6,'writer','screenplay by',NULL),(1270797,3298,7,'writer','screenplay by',NULL),(1270797,545150,8,'writer','screenplay by',NULL),(1270797,568825,9,'writer','Marvel\'s Venom character created by',NULL),(1270798,1741,10,'writer','story by',NULL),(1270798,564215,1,'actor',NULL,'[\"Charles Xavier (30 Years)\"]'),(1270798,1055413,2,'actor',NULL,'[\"Erik Lensherr\"]'),(1270798,2225369,3,'actress',NULL,'[\"Raven\",\"Mystique\"]'),(1270798,102,4,'actor',NULL,'[\"Sebastian Shaw\"]'),(1270798,891216,5,'director',NULL,NULL),(1270798,1005420,6,'writer','screenplay by',NULL),(1270798,826714,7,'writer','screenplay by',NULL),(1270798,963359,8,'writer','screenplay by',NULL),(1270798,1417242,9,'writer','story by',NULL),(1270842,61452,10,'editor',NULL,NULL),(1270842,1947564,1,'actor',NULL,'[\"Toru Watanabe\"]'),(1270842,452860,2,'actress',NULL,'[\"Naoko\"]'),(1270842,3460467,3,'actress',NULL,'[\"Midori\"]'),(1270842,2246282,4,'actor',NULL,'[\"Kizuki\"]'),(1270842,870841,5,'director',NULL,NULL),(1270842,1633142,6,'writer','novel',NULL),(1270842,1654405,7,'producer','producer',NULL),(1270842,339351,8,'composer',NULL,NULL),(1270842,496742,9,'cinematographer','director of photography',NULL),(12708658,5663699,10,'writer','scenario consultant',NULL),(12708658,11436471,1,'actress',NULL,'[\"Émilie Wong\"]'),(12708658,4875522,2,'actor',NULL,'[\"Camille Germain\"]'),(12708658,4374524,3,'actress',NULL,'[\"Nora Ligier\"]'),(12708658,2021640,4,'actress',NULL,'[\"Amber Sweet\"]'),(12708658,2191,5,'director',NULL,NULL),(12708658,1780037,6,'writer','scenario',NULL),(12708658,5674565,7,'writer','scenario',NULL),(12708658,5750517,8,'writer','based upon short stories by: Amber Sweet/Killing and Dying/Summer Blonde/Hawaiian Getaway',NULL),(12708658,5365694,9,'writer','writing collaboration',NULL),(12718300,3417,10,'composer',NULL,NULL),(12718300,358316,1,'actor',NULL,'[\"Fletch\"]'),(12718300,14051125,2,'actress',NULL,'[\"Laurel Goodwin\"]'),(12718300,2398653,3,'actor',NULL,'[\"Inspector Morris Monroe\"]'),(12718300,4852033,4,'actress',NULL,'[\"Griz\"]'),(12718300,609549,5,'director',NULL,NULL),(12718300,567780,6,'writer','based upon the book by',NULL),(12718300,2859316,7,'writer','screenplay by',NULL),(12718300,1088848,8,'producer','producer',NULL),(12718300,851679,9,'producer','producer',NULL),(1272041,888487,10,'cinematographer',NULL,NULL),(1272041,3093768,1,'actress',NULL,'[\"Karo\"]'),(1272041,1918862,2,'actress',NULL,'[\"Dalia\"]'),(1272041,774386,3,'actor',NULL,'[\"Raven\"]'),(1272041,469083,4,'actress',NULL,'[\"Alice\"]'),(1272041,886079,5,'director',NULL,NULL),(1272041,353012,6,'producer','producer',NULL),(1272041,2249069,7,'producer','producer',NULL),(1272041,1743612,8,'producer','producer',NULL),(1272041,887690,9,'producer','producer',NULL),(1272051,1650373,10,'writer','story \"Belka i Strelka\"',NULL),(1272051,1370204,1,'actress',NULL,'[\"Belka\"]'),(1272051,945094,2,'actress',NULL,'[\"Strelka\"]'),(1272051,592491,3,'actor',NULL,'[\"Venya\"]'),(1272051,307628,4,'actor',NULL,'[\"Kazbek\"]'),(1272051,3575075,5,'director',NULL,NULL),(1272051,882296,6,'director',NULL,NULL),(1272051,1396106,7,'writer','story \"Zvozdnyye sobaki\"',NULL),(1272051,2158185,8,'writer','story \"Zvozdnyye sobaki\"',NULL),(1272051,4901594,9,'writer','story \"Belka i Strelka\"',NULL),(1272878,298915,10,'producer','producer',NULL),(1272878,243,1,'actor',NULL,'[\"Bobby\"]'),(1272878,242,2,'actor',NULL,'[\"Stig\"]'),(1272878,1745736,3,'actress',NULL,'[\"Deb\"]'),(1272878,200,4,'actor',NULL,'[\"Earl\"]'),(1272878,466349,5,'director',NULL,NULL),(1272878,1398578,6,'writer','screenplay by',NULL),(1272878,1556427,7,'writer','based on the Boom! Studios graphic novels by',NULL),(1272878,1184676,8,'producer','producer',NULL),(1272878,256542,9,'producer','producer',NULL),(1273204,3565570,10,'composer',NULL,NULL),(1273204,309348,1,'actor',NULL,'[\"Diego\"]'),(1273204,210218,2,'actress',NULL,'[\"Francesca\"]'),(1273204,688228,3,'actor',NULL,'[\"Matteo\"]'),(1273204,1538552,4,'actress',NULL,'[\"Shary\"]'),(1273204,1332411,5,'director',NULL,NULL),(1273204,5049468,6,'writer','screenplay',NULL),(1273204,208495,7,'writer','screenplay',NULL),(1273204,2203312,8,'producer','producer',NULL),(1273204,2972845,9,'producer','producer',NULL),(1273678,628056,10,'composer',NULL,NULL),(1273678,329,1,'actor',NULL,'[\"Bob Ho\"]'),(1273678,5520,2,'actress',NULL,'[\"Gillian\"]'),(1273678,4854,3,'actor',NULL,'[\"Colton James\"]'),(1273678,1630992,4,'actress',NULL,'[\"Farren\"]'),(1273678,505152,5,'director',NULL,NULL),(1273678,77080,6,'writer','screenplay',NULL),(1273678,7079,7,'writer','screenplay',NULL),(1273678,201304,8,'writer','screenplay',NULL),(1273678,800465,9,'producer','producer',NULL),(1273816,3096229,10,'composer',NULL,NULL),(1273816,3096530,1,'actor',NULL,'[\"Freshman #3\"]'),(1273816,3096488,2,'actress',NULL,'[\"Yolanda\"]'),(1273816,1279081,3,'actor',NULL,'[\"Walter\"]'),(1273816,6292689,4,'actress',NULL,'[\"Jo-Ann\"]'),(1273816,2546669,5,'director',NULL,NULL),(1273816,3096041,6,'producer','producer',NULL),(1273816,3096086,7,'composer',NULL,NULL),(1273816,3095831,8,'composer',NULL,NULL),(1273816,3096113,9,'composer',NULL,NULL),(1274300,1507217,10,'producer','producer',NULL),(1274300,545,1,'actress',NULL,'[\"Prospera\"]'),(1274300,428065,2,'actress',NULL,'[\"Miranda\"]'),(1274300,5023,3,'actor',NULL,'[\"Caliban\"]'),(1274300,1258970,4,'actor',NULL,'[\"Trinculo\"]'),(1274300,853380,5,'director',NULL,NULL),(1274300,636,6,'writer','play',NULL),(1274300,153590,7,'producer','producer',NULL),(1274300,376274,8,'producer','producer',NULL),(1274300,2044558,9,'producer','producer',NULL),(12749596,3749687,1,'actress',NULL,'[\"Haley\"]'),(12749596,6654155,2,'actress',NULL,'[\"Jemma\"]'),(12749596,8772807,3,'actress',NULL,'[\"Emma\"]'),(12749596,7525711,4,'actress',NULL,'[\"Radina\"]'),(12749596,3699074,5,'director',NULL,NULL),(12749596,3671447,6,'writer','writer',NULL),(12749596,5178386,7,'writer','writer',NULL),(12749596,4092986,8,'producer','producer',NULL),(12749596,1914667,9,'editor',NULL,NULL),(12758060,629,10,'producer','producer',NULL),(12758060,5473782,1,'actor',NULL,'[\"Henk Rogers\"]'),(12758060,10593697,2,'actress',NULL,'[\"Tracy\"]'),(12758060,4548743,3,'actor',NULL,'[\"Dennis Jackson\"]'),(12758060,950935,4,'actor',NULL,'[\"Bank Manager\"]'),(12758060,1580671,5,'director',NULL,NULL),(12758060,3300218,6,'writer','written by',NULL),(12758060,77365,7,'producer','producer',NULL),(12758060,4131373,8,'producer','producer',NULL),(12758060,1536221,9,'producer','producer',NULL),(1276104,3032,10,'editor',NULL,NULL),(1276104,330687,1,'actor',NULL,'[\"Joe\"]'),(1276104,246,2,'actor',NULL,'[\"Old Joe\"]'),(1276104,1289434,3,'actress',NULL,'[\"Sara\"]'),(1276104,200452,4,'actor',NULL,'[\"Seth\"]'),(1276104,426059,5,'director',NULL,NULL),(1276104,74851,6,'producer','producer',NULL),(1276104,827726,7,'producer','producer',NULL),(1276104,1791103,8,'composer',NULL,NULL),(1276104,6911,9,'cinematographer','director of photography',NULL),(1276419,895366,10,'producer','producer',NULL),(1276419,2539953,1,'actress',NULL,'[\"Caroline Mathilde\"]'),(1276419,586568,2,'actor',NULL,'[\"Johann Friedrich Struensee\"]'),(1276419,3140538,3,'actor',NULL,'[\"Christian VII\"]'),(1276419,245988,4,'actress',NULL,'[\"Juliane Marie\"]'),(1276419,1064048,5,'director',NULL,NULL),(1276419,4864795,6,'writer','novel \"Prinsesse af blodet\"',NULL),(1276419,1065452,7,'writer','screenplay',NULL),(1276419,1011849,8,'producer','producer',NULL),(1276419,284070,9,'producer','producer',NULL),(1277728,819339,10,'editor',NULL,NULL),(1277728,3104455,1,'actress',NULL,'[\"Madre di Gianni\"]'),(1277728,3105515,2,'actress',NULL,'[\"Marina - la madre di Luigi\"]'),(1277728,3104983,3,'actress',NULL,'[\"Maria\"]'),(1277728,3103898,4,'actress',NULL,'[\"Grazia\"]'),(1277728,223924,5,'director',NULL,NULL),(1277728,3103905,6,'writer','story',NULL),(1277728,308520,7,'producer','producer',NULL),(1277728,3185877,8,'composer',NULL,NULL),(1277728,80609,9,'cinematographer',NULL,NULL),(1277953,1129905,10,'writer','based on the characters created by',NULL),(1277953,1774,1,'actor',NULL,'[\"Alex\"]'),(1277953,586,2,'actress',NULL,'[\"Gloria\"]'),(1277953,1674,3,'actor',NULL,'[\"Marty\"]'),(1277953,1710,4,'actor',NULL,'[\"Melman\"]'),(1277953,201509,5,'director',NULL,NULL),(1277953,569891,6,'director',NULL,NULL),(1277953,970447,7,'director',NULL,NULL),(1277953,876,8,'writer','screenplay by',NULL),(1277953,123666,9,'writer','based on the characters created by',NULL),(1278340,1972939,10,'cinematographer',NULL,NULL),(1278340,1355643,1,'actor',NULL,'[\"Erlend\"]'),(1278340,2297067,2,'actress',NULL,'[\"Hanna\"]'),(1278340,803928,3,'actress',NULL,'[\"Chris\"]'),(1278340,388473,4,'actor',NULL,'[\"Martin\"]'),(1278340,2482088,5,'director',NULL,NULL),(1278340,2552337,6,'writer','written by',NULL),(1278340,2493084,7,'producer','producer',NULL),(1278340,2288220,8,'producer','producer',NULL),(1278340,3135847,9,'composer',NULL,NULL),(12783454,918833,10,'producer','producer',NULL),(12783454,1428821,1,'actress',NULL,'[\"Elle Evans\"]'),(12783454,1525807,2,'actor',NULL,'[\"Lee Flynn\"]'),(12783454,8624059,3,'actor',NULL,'[\"Noah Flynn\"]'),(12783454,208,4,'actress',NULL,'[\"Mrs. Flynn\"]'),(12783454,1479803,5,'director',NULL,NULL),(12783454,6564541,6,'writer','based on the \"The Kissing Booth\" books by',NULL),(12783454,10477231,7,'writer','written by',NULL),(12783454,3004745,8,'producer','producer',NULL),(12783454,3005281,9,'producer','producer',NULL),(1278379,2687282,10,'composer',NULL,NULL),(1278379,450,1,'actor',NULL,'[\"Jack\"]'),(1278379,752407,2,'actress',NULL,'[\"Connie\"]'),(1278379,651159,3,'actor',NULL,'[\"Clyde\"]'),(1278379,678061,4,'actor',NULL,'[\"Uncle Frank\"]'),(1278379,322165,5,'writer','screenplay',NULL),(1278379,1033812,6,'producer','producer',NULL),(1278379,2411911,7,'producer','producer',NULL),(1278379,764771,8,'producer','producer',NULL),(1278379,1196755,9,'producer','producer',NULL),(1278449,669558,10,'producer','producer',NULL),(1278449,632165,1,'actor',NULL,'[\"Amadeus Warnebring\"]'),(1278449,1133009,2,'actress',NULL,'[\"Sanna\"]'),(1278449,1132005,3,'actor',NULL,'[\"Magnus\"]'),(1278449,1131943,4,'actor',NULL,'[\"Johannes\"]'),(1278449,800800,5,'director',NULL,NULL),(1278449,632312,6,'director',NULL,NULL),(1278449,2622280,7,'writer','story',NULL),(1278449,1135198,8,'producer','producer',NULL),(1278449,1848114,9,'producer','producer',NULL),(1278469,272605,10,'producer','producer',NULL),(1278469,132,1,'actress',NULL,'[\"Temple Grandin\"]'),(1278469,566,2,'actress',NULL,'[\"Eustacia\"]'),(1278469,657,3,'actor',NULL,'[\"Dr. Carlock\"]'),(1278469,1573,4,'actress',NULL,'[\"Aunt Ann\"]'),(1278469,413875,5,'director',NULL,NULL),(1278469,334880,6,'writer','based on the book: \"Emergence\"',NULL),(1278469,3439444,7,'writer','based on the book: \"Emergence\"',NULL),(1278469,3355,8,'writer','screenplay',NULL),(1278469,1009978,9,'writer','screenplay',NULL),(12789558,952539,10,'cinematographer','director of photography',NULL),(12789558,11879379,1,'actor',NULL,'[\"Buddy\"]'),(12789558,11888099,2,'actor',NULL,'[\"Will\"]'),(12789558,1495520,3,'actress',NULL,'[\"Ma\"]'),(12789558,1946193,4,'actor',NULL,'[\"Pa\"]'),(12789558,110,5,'director',NULL,NULL),(12789558,2233031,6,'producer','producer',NULL),(12789558,2228812,7,'producer','producer',NULL),(12789558,859561,8,'producer','producer',NULL),(12789558,607341,9,'composer',NULL,NULL),(1279083,448301,10,'editor',NULL,NULL),(1279083,2253866,1,'self',NULL,'[\"Self\"]'),(1279083,3110693,2,'self',NULL,'[\"Self\"]'),(1279083,3110651,3,'self',NULL,'[\"Self\"]'),(1279083,1767972,4,'self',NULL,'[\"Self\"]'),(1279083,2025391,5,'director',NULL,NULL),(1279083,408259,6,'producer','producer',NULL),(1279083,1765464,7,'producer','producer',NULL),(1279083,4051162,8,'composer',NULL,NULL),(1279083,870865,9,'cinematographer',NULL,NULL),(1279935,343222,10,'production_designer',NULL,NULL),(1279935,136797,1,'actor',NULL,'[\"Phil Foster\"]'),(1279935,275486,2,'actress',NULL,'[\"Claire Foster\"]'),(1279935,242,3,'actor',NULL,'[\"Holbrooke\"]'),(1279935,378245,4,'actress',NULL,'[\"Detective Arroyo\"]'),(1279935,506613,5,'director',NULL,NULL),(1279935,458441,6,'writer','written by',NULL),(1279935,65100,7,'composer',NULL,NULL),(1279935,5871,8,'cinematographer','director of photography',NULL),(1279935,956693,9,'editor',NULL,NULL),(12801262,6590106,10,'writer','story consultant',NULL),(12801262,5016878,1,'actor',NULL,'[\"Luca Paguro\"]'),(12801262,6244013,2,'actor',NULL,'[\"Alberto Scorfano\"]'),(12801262,11735922,3,'actress',NULL,'[\"Giulia Marcovaldo\"]'),(12801262,7184459,4,'actor',NULL,'[\"Ercole Visconti\"]'),(12801262,1154836,5,'director',NULL,NULL),(12801262,5428959,6,'writer','story by',NULL),(12801262,1776787,7,'writer','story by',NULL),(12801262,428873,8,'writer','screenplay by',NULL),(12801262,528724,9,'writer','story consultant',NULL),(1280558,1374769,10,'composer',NULL,NULL),(1280558,451600,1,'actor',NULL,'[\"Prakash Rathod\"]'),(1280558,787462,2,'actor',NULL,'[\"The Common Man\"]'),(1280558,768297,3,'actor',NULL,'[\"Babu\"]'),(1280558,1670244,4,'actor',NULL,'[\"Stranger at Police Station\"]'),(1280558,3109770,5,'director',NULL,NULL),(1280558,1871564,6,'producer','producer',NULL),(1280558,8563655,7,'producer','producer',NULL),(1280558,2331001,8,'producer','producer',NULL),(1280558,780098,9,'producer','producer',NULL),(1282140,514481,10,'editor',NULL,NULL),(1282140,1297015,1,'actress',NULL,'[\"Olive\"]'),(1282140,4789,2,'actress',NULL,'[\"Marianne\"]'),(1282140,46112,3,'actor',NULL,'[\"Woodchuck Todd\"]'),(1282140,126004,4,'actor',NULL,'[\"Brandon\"]'),(1282140,323239,5,'director',NULL,NULL),(1282140,1421629,6,'writer','written by',NULL),(1282140,222676,7,'producer','producer',NULL),(1282140,781760,8,'composer',NULL,NULL),(1282140,4142,9,'cinematographer','director of photography',NULL),(12838958,1047603,10,'writer','based on characters from: Scarecrow/Dr. Jonathan Crane',NULL),(12838958,919798,1,'actor',NULL,'[\"Scooby-Doo\",\"Fred Jones\"]'),(12838958,498,2,'actor',NULL,'[\"Shaggy Rogers\"]'),(12838958,217221,3,'actress',NULL,'[\"Daphne Blake\"]'),(12838958,2177528,4,'actress',NULL,'[\"Velma Dinkley\"]'),(12838958,1027050,5,'director',NULL,NULL),(12838958,360253,6,'writer','based on characters from',NULL),(12838958,53484,7,'writer','based on characters from',NULL),(12838958,4170,8,'writer','based on characters from: Scarecrow/Dr. Jonathan Crane',NULL),(12838958,277730,9,'writer','based on characters from: Scarecrow/Dr. Jonathan Crane',NULL),(12841698,3739269,10,'actress',NULL,'[\"Film Hair & Make-Up Artist\"]'),(12841698,566176,1,'actor',NULL,'[\"Hero stuntman\"]'),(12841698,3819588,2,'actress',NULL,'[\"Leading Lady\"]'),(12841698,2633394,3,'actor',NULL,'[\"Leading Man\"]'),(12841698,241539,4,'actress',NULL,'[\"Film Director\"]'),(12841698,3227090,5,'director',NULL,NULL),(12841698,1154632,6,'composer',NULL,NULL),(12841698,761874,7,'cinematographer','director of photography',NULL),(12841698,3647115,8,'editor',NULL,NULL),(12841698,1418706,9,'production_designer',NULL,NULL),(12844910,6108596,10,'composer',NULL,NULL),(12844910,451321,1,'actor',NULL,'[\"Pathaan\"]'),(12844910,2138653,2,'actress',NULL,'[\"Rubai\"]'),(12844910,1303433,3,'actor',NULL,'[\"Jim\"]'),(12844910,438092,4,'actress',NULL,'[\"Nandini\"]'),(12844910,1893457,5,'director',NULL,NULL),(12844910,1356270,6,'writer','screenplay',NULL),(12844910,1063072,7,'writer','dialogue',NULL),(12844910,159147,8,'producer','producer',NULL),(12844910,5471898,9,'composer',NULL,NULL),(1284526,324274,10,'composer',NULL,NULL),(1284526,514090,1,'actor',NULL,'[\"ucitel Petr Dolezal\"]'),(1284526,125748,2,'actress',NULL,'[\"statkárka Marie\"]'),(1284526,3120115,3,'actor',NULL,'[\"Lada\"]'),(1284526,199687,4,'actor',NULL,'[\"Prítel\"]'),(1284526,805246,5,'director',NULL,NULL),(1284526,62362,6,'producer','producer',NULL),(1284526,439003,7,'producer','producer',NULL),(1284526,653561,8,'producer','producer',NULL),(1284526,834672,9,'producer','producer',NULL),(1284575,28787,10,'composer',NULL,NULL),(1284575,139,1,'actress',NULL,'[\"Elizabeth Halsey\"]'),(1284575,781981,2,'actor',NULL,'[\"Russell Gettis\"]'),(1284575,5493,3,'actor',NULL,'[\"Scott Delacorte\"]'),(1284575,700577,4,'actress',NULL,'[\"Amy Squirrel\"]'),(1284575,440458,5,'director',NULL,NULL),(1284575,1969144,6,'writer','written by',NULL),(1284575,1072409,7,'writer','written by',NULL),(1284575,396720,8,'producer','producer',NULL),(1284575,588612,9,'producer','producer',NULL),(1284591,3119894,1,'actor',NULL,'[\"Yusuf\"]'),(1284591,477836,2,'actress',NULL,'[\"Zehra\"]'),(1284591,2564837,3,'actor',NULL,'[\"Ali Hoca\"]'),(1284591,2278522,4,'actress',NULL,'[\"Semra\"]'),(1284591,969427,5,'director',NULL,NULL),(1284591,2640072,6,'writer',NULL,NULL),(1284591,2639820,7,'cinematographer',NULL,NULL),(1284591,1032117,8,'editor',NULL,NULL),(1284591,1906655,9,'production_designer',NULL,NULL),(1285009,429134,10,'producer','producer',NULL),(1285009,376716,1,'actress',NULL,'[\"Cindy\"]'),(1285009,376540,2,'actor',NULL,'[\"Mike\"]'),(1285009,1933128,3,'actress',NULL,'[\"Kinsey\"]'),(1285009,5730649,4,'actor',NULL,'[\"Luke\"]'),(1285009,1266897,5,'director',NULL,NULL),(1285009,1052162,6,'writer','written by',NULL),(1285009,2406892,7,'writer','written by',NULL),(1285009,2222628,8,'producer','producer',NULL),(1285009,2448068,9,'producer','producer',NULL),(1285016,6894,10,'producer','producer',NULL),(1285016,251986,1,'actor',NULL,'[\"Mark Zuckerberg\"]'),(1285016,1940449,2,'actor',NULL,'[\"Eduardo Saverin\"]'),(1285016,5493,3,'actor',NULL,'[\"Sean Parker\"]'),(1285016,1913734,4,'actress',NULL,'[\"Erica Albright\"]'),(1285016,399,5,'director',NULL,NULL),(1285016,815070,6,'writer','screenplay',NULL),(1285016,583826,7,'writer','book \"The Accidental Billionaires\"',NULL),(1285016,116232,8,'producer','producer',NULL),(1285016,149556,9,'producer','producer',NULL),(1285309,2943572,10,'composer',NULL,NULL),(1285309,193,1,'actress',NULL,'[\"Kate Jones\"]'),(1285309,141,2,'actor',NULL,'[\"Steve Jones\"]'),(1285309,1720028,3,'actress',NULL,'[\"Jenn Jones\"]'),(1285309,2618951,4,'actor',NULL,'[\"Mick Jones\"]'),(1285309,97517,5,'director',NULL,NULL),(1285309,227870,6,'writer','story by',NULL),(1285309,542551,7,'producer','producer',NULL),(1285309,1051748,8,'producer','producer',NULL),(1285309,954034,9,'producer','producer',NULL),(1286124,483882,10,'editor',NULL,NULL),(1286124,1388927,1,'actress',NULL,'[\"Carly Shay\"]'),(1286124,1390614,2,'actress',NULL,'[\"Sam Puckett\"]'),(1286124,470941,3,'actor',NULL,'[\"Fredward \'Freddie\' Benson\"]'),(1286124,999117,4,'actor',NULL,'[\"Spencer Shay\"]'),(1286124,1543688,5,'director',NULL,NULL),(1286124,773759,6,'writer','creator',NULL),(1286124,628008,7,'writer','story',NULL),(1286124,1950176,8,'composer',NULL,NULL),(1286124,819285,9,'cinematographer','director of photography',NULL),(1286742,1207404,10,'composer',NULL,NULL),(1286742,827296,1,'actress',NULL,'[\"Jackie\"]'),(1286742,338292,2,'actor',NULL,'[\"Colin\"]'),(1286742,72949,3,'actor',NULL,'[\"Howie\"]'),(1286742,3728095,4,'actress',NULL,'[\"Victoria\"]'),(1286742,781477,5,'director',NULL,NULL),(1286742,691131,6,'writer','written by',NULL),(1286742,589924,7,'writer','characters',NULL),(1286742,533914,8,'writer','additional material',NULL),(1286742,1536222,9,'producer','producer',NULL),(12873562,253899,10,'editor',NULL,NULL),(12873562,2812026,1,'actress',NULL,'[\"Evie\"]'),(12873562,6015235,2,'actor',NULL,'[\"De Ville\"]'),(12873562,675730,3,'actor',NULL,'[\"Renfield\"]'),(12873562,2369260,4,'actor',NULL,'[\"Oliver\"]'),(12873562,3701612,5,'director',NULL,NULL),(12873562,1397455,6,'writer','written by',NULL),(12873562,321631,7,'producer','producer',NULL),(12873562,6076271,8,'composer',NULL,NULL),(12873562,1650772,9,'cinematographer','director of photography',NULL),(12877640,1709238,10,'producer','producer',NULL),(12877640,4436761,1,'actress',NULL,'[\"Elisa\"]'),(12877640,7008753,2,'actor',NULL,'[\"Fabrizio\"]'),(12877640,563686,3,'actor',NULL,'[\"Riccardo\"]'),(12877640,4465864,4,'actor',NULL,'[\"Mark\"]'),(12877640,3248608,5,'director',NULL,NULL),(12877640,5378650,6,'director',NULL,NULL),(12877640,7505663,7,'writer',NULL,NULL),(12877640,9840359,8,'writer',NULL,NULL),(12877640,1545963,9,'writer',NULL,NULL),(1287878,950902,1,'actress',NULL,'[\"Yang Mi-ja\"]'),(1287878,3752295,2,'actor',NULL,'[\"Jong-wook\"]'),(1287878,453472,3,'actor',NULL,'[\"Elder Kang\"]'),(1287878,14215,4,'actor',NULL,'[\"Ki-beom\'s Father\"]'),(1287878,496969,5,'director',NULL,NULL),(1287878,1297121,6,'producer','producer',NULL),(1287878,3395549,7,'cinematographer',NULL,NULL),(1287878,453479,8,'editor',NULL,NULL),(1287878,1273054,9,'production_designer',NULL,NULL),(1288558,63414,10,'composer',NULL,NULL),(1288558,3994408,1,'actress',NULL,'[\"Mia\"]'),(1288558,2057036,2,'actor',NULL,'[\"David\"]'),(1288558,1140300,3,'actress',NULL,'[\"Olivia\"]'),(1288558,1086384,4,'actor',NULL,'[\"Eric\"]'),(1288558,1793079,5,'director',NULL,NULL),(1288558,2140186,6,'writer','screenplay by',NULL),(1288558,600,7,'writer','based on the motion picture \"The Evil Dead\", written by',NULL),(1288558,132257,8,'producer','producer',NULL),(1288558,849964,9,'producer','producer',NULL),(1288589,3125810,1,'actress',NULL,'[\"Helen\"]'),(1288589,1355781,2,'actress',NULL,'[\"Mrs Thompson\"]'),(1288589,2071719,3,'actor',NULL,'[\"Mr Thompson\"]'),(1288589,1956588,4,'actress',NULL,'[\"Police Officer Saville\"]'),(1288589,2614266,5,'director',NULL,NULL),(1288589,2613934,6,'director',NULL,NULL),(1288589,2860858,7,'composer',NULL,NULL),(1288589,83559,8,'cinematographer','director of photography',NULL),(12889404,373456,10,'producer','producer',NULL),(12889404,227759,1,'actor',NULL,'[\"Cyrano\"]'),(12889404,2247245,2,'actress',NULL,'[\"Roxanne\"]'),(12889404,5123156,3,'actor',NULL,'[\"Christian\"]'),(12889404,578853,4,'actor',NULL,'[\"De Guiche\"]'),(12889404,942504,5,'director',NULL,NULL),(12889404,1765584,6,'writer','screenplay by',NULL),(12889404,744562,7,'writer','from \"Cyrano de Bergerac\" by',NULL),(12889404,79677,8,'producer','producer',NULL),(12889404,271479,9,'producer','producer',NULL),(1289401,1166871,10,'producer','producer',NULL),(1289401,565250,1,'actress',NULL,'[\"Abby Yates\"]'),(1289401,1325419,2,'actress',NULL,'[\"Erin Gilbert\"]'),(1289401,571952,3,'actress',NULL,'[\"Jillian Holtzmann\"]'),(1289401,428656,4,'actress',NULL,'[\"Patty Tolan\"]'),(1289401,82450,5,'director',NULL,NULL),(1289401,1767754,6,'writer','written by',NULL),(1289401,718645,7,'writer','based on the 1984 film \"Ghostbusters\" directed by',NULL),(1289401,101,8,'writer','based on the 1984 film \"Ghostbusters\" written by',NULL),(1289401,601,9,'writer','based on the 1984 film \"Ghostbusters\" written by',NULL),(1289403,3125143,10,'writer','based on the novel by',NULL),(1289403,3726887,1,'actress',NULL,'[\"Elizabeth McKenna\"]'),(1289403,183822,2,'actor',NULL,'[\"Eben Ramsey\"]'),(1289403,401264,3,'actor',NULL,'[\"Dawsey Adams\"]'),(1289403,1817670,4,'actress',NULL,'[\"Isola Pribby\"]'),(1289403,1565,5,'director',NULL,NULL),(1289403,740400,6,'writer','screenplay by',NULL),(1289403,393495,7,'writer','screenplay by',NULL),(1289403,80120,8,'writer','screenplay',NULL),(1289403,3125462,9,'writer','based on the novel by',NULL),(1289406,891216,10,'producer','producer',NULL),(1289406,323,1,'actor',NULL,'[\"Harry Brown\"]'),(1289406,607865,2,'actress',NULL,'[\"D.I. Frampton\"]'),(1289406,103195,3,'actor',NULL,'[\"Leonard Attwell\"]'),(1289406,187224,4,'actor',NULL,'[\"D.I. Hicock\"]'),(1289406,2905562,5,'director',NULL,NULL),(1289406,949558,6,'writer','screenplay',NULL),(1289406,68328,7,'producer','producer',NULL),(1289406,2920142,8,'producer','producer',NULL),(1289406,858123,9,'producer','producer',NULL),(1290135,764562,10,'editor',NULL,NULL),(1290135,1845157,1,'actor',NULL,'[\"Preacher Boy\"]'),(1290135,3155634,2,'actor',NULL,'[\"Bloody Knife Boy\"]'),(1290135,1044403,3,'actor',NULL,'[\"Burt\"]'),(1290135,565973,4,'actress',NULL,'[\"Vicky\"]'),(1290135,96025,5,'director',NULL,NULL),(1290135,175,6,'writer','based on the short story by',NULL),(1290135,253486,7,'composer',NULL,NULL),(1290135,2358198,8,'composer','co-composer',NULL),(1290135,860256,9,'cinematographer','director of photography',NULL),(1291150,247653,10,'writer','based on the Teenage Mutant Ninja Turtles characters created by',NULL),(1291150,1083271,1,'actress',NULL,'[\"April O\'Neil\"]'),(1291150,4715,2,'actor',NULL,'[\"Vern Fenwick\"]'),(1291150,1209,3,'actor',NULL,'[\"Eric Sacks\"]'),(1291150,279720,4,'actor',NULL,'[\"Michelangelo\"]'),(1291150,509448,5,'director',NULL,NULL),(1291150,32227,6,'writer','written by',NULL),(1291150,625858,7,'writer','written by',NULL),(1291150,2489193,8,'writer','written by',NULL),(1291150,481990,9,'writer','based on the Teenage Mutant Ninja Turtles characters created by',NULL),(1291580,414423,10,'producer','producer',NULL),(1291580,140,1,'actor',NULL,'[\"Liberace\"]'),(1291580,354,2,'actor',NULL,'[\"Scott Thorson\"]'),(1291580,836,3,'actor',NULL,'[\"Bob Black\"]'),(1291580,958420,4,'actor',NULL,'[\"Lou\"]'),(1291580,1752,5,'director',NULL,NULL),(1291580,481418,6,'writer','screenplay',NULL),(1291580,1281443,7,'writer','book',NULL),(1291580,5674732,8,'writer','book',NULL),(1291580,252382,9,'producer','producer',NULL),(1291584,1086687,10,'cinematographer','director of photography',NULL),(1291584,362766,1,'actor',NULL,'[\"Tommy Conlon\"]'),(1291584,560,2,'actor',NULL,'[\"Paddy Conlon\"]'),(1291584,249291,3,'actor',NULL,'[\"Brendan Conlon\"]'),(1291584,607185,4,'actress',NULL,'[\"Tess Conlon\"]'),(1291584,640334,5,'director',NULL,NULL),(1291584,3294574,6,'writer','screenplay',NULL),(1291584,233561,7,'writer','screenplay',NULL),(1291584,640345,8,'producer','producer',NULL),(1291584,6142,9,'composer',NULL,NULL),(1291652,252528,10,'composer',NULL,NULL),(1291652,1172478,1,'actor',NULL,'[\"JW\"]'),(1291652,655782,2,'actor',NULL,'[\"Jorge\"]'),(1291652,2800616,3,'actor',NULL,'[\"Mrado\"]'),(1291652,3523426,4,'actress',NULL,'[\"Sophie\"]'),(1291652,1174251,5,'director',NULL,NULL),(1291652,3132669,6,'writer','novel',NULL),(1291652,1372450,7,'writer','collaborating writer',NULL),(1291652,2536305,8,'writer','screenplay',NULL),(1291652,3776083,9,'writer','collaborating writer',NULL),(1292566,725444,10,'producer','producer',NULL),(1292566,424848,1,'actress',NULL,'[\"Alice\"]'),(1292566,2313103,2,'actress',NULL,'[\"Robin\"]'),(1292566,5182,3,'actress',NULL,'[\"Meg\"]'),(1292566,1555340,4,'actress',NULL,'[\"Lucy\"]'),(1292566,228542,5,'director',NULL,NULL),(1292566,463359,6,'writer','screenplay by',NULL),(1292566,799050,7,'writer','screenplay by',NULL),(1292566,1401416,8,'writer','screenplay by',NULL),(1292566,875710,9,'writer','based on the book by',NULL),(1293847,2176972,10,'producer','producer',NULL),(1293847,4874,1,'actor',NULL,'[\"Xander Cage\"]'),(1293847,947447,2,'actor',NULL,'[\"Xiang\"]'),(1293847,2138653,3,'actress',NULL,'[\"Serena Unger\"]'),(1293847,6806246,4,'actor',NULL,'[\"Nicks\"]'),(1293847,142286,5,'director',NULL,NULL),(1293847,929186,6,'writer','based on characters created by',NULL),(1293847,2400444,7,'writer','written by',NULL),(1293847,456929,8,'producer','producer',NULL),(1293847,5387,9,'producer','producer',NULL),(1294138,878586,10,'producer','producer',NULL),(1294138,792198,1,'actress',NULL,'[\"Barbie\",\"Liana\"]'),(1294138,1738571,2,'actress',NULL,'[\"Liana\"]'),(1294138,480483,3,'actress',NULL,'[\"Teresa\",\"Alexa\"]'),(1294138,833246,4,'actress',NULL,'[\"Stacie\"]'),(1294138,629306,5,'director',NULL,NULL),(1294138,504327,6,'writer','written by',NULL),(1294138,748429,7,'writer','written by',NULL),(1294138,1043325,8,'writer','based on: the Barbie characters created by',NULL),(1294138,1019013,9,'producer','producer',NULL),(1294226,956374,10,'composer',NULL,NULL),(1294226,1415323,1,'actress',NULL,'[\"Ronnie Miller\"]'),(1294226,2955013,2,'actor',NULL,'[\"Will Blakelee\"]'),(1294226,1427,3,'actor',NULL,'[\"Steve Miller\"]'),(1294226,1544100,4,'actor',NULL,'[\"Jonah Miller\"]'),(1294226,1455688,5,'director',NULL,NULL),(1294226,817023,6,'writer','screenplay',NULL),(1294226,3491486,7,'writer','screenplay',NULL),(1294226,316774,8,'producer','producer',NULL),(1294226,788202,9,'producer','producer',NULL),(1296899,228358,10,'editor',NULL,NULL),(1296899,318821,1,'actor',NULL,'[\"Patrick\"]'),(1296899,83795,2,'actress',NULL,'[\"Louise\"]'),(1296899,1758,3,'actor',NULL,'[\"Arthur\"]'),(1296899,3141070,4,'actress',NULL,'[\"Alice\"]'),(1296899,444096,5,'director',NULL,NULL),(1296899,565069,6,'writer','story',NULL),(1296899,568107,7,'producer','producer',NULL),(1296899,6016,8,'composer',NULL,NULL),(1296899,1409101,9,'cinematographer','director of photography',NULL),(1298554,1342398,10,'composer',NULL,NULL),(1298554,117709,1,'actor',NULL,'[\"Alex Garel\"]'),(1298554,1011070,2,'actress',NULL,'[\"Lana Levy\"]'),(1298554,2975962,3,'actor',NULL,'[\"David Garel\"]'),(1298554,4582429,4,'actress',NULL,'[\"Eva\"]'),(1298554,1665932,5,'director',NULL,NULL),(1298554,67618,6,'writer',NULL,NULL),(1298554,2962085,7,'writer','screenplay',NULL),(1298554,1885461,8,'writer','screenplay',NULL),(1298554,785359,9,'writer','screenplay',NULL),(1298644,83696,10,'producer','producer',NULL),(1298644,4266,1,'actress',NULL,'[\"Josephine Chesterfield\"]'),(1298644,2313103,2,'actress',NULL,'[\"Penny Rust\"]'),(1298644,5189784,3,'actor',NULL,'[\"Thomas Westerburg\"]'),(1298644,625789,4,'actor',NULL,'[\"Portnoy\"]'),(1298644,1128050,5,'director',NULL,NULL),(1298644,788630,6,'writer','story by',NULL),(1298644,377417,7,'writer','story by',NULL),(1298644,490958,8,'writer','story by',NULL),(1298644,2356614,9,'writer','screenplay by',NULL),(1298649,65100,10,'composer',NULL,NULL),(1298649,1774,1,'actor',NULL,'[\"Evan\"]'),(1298649,681,2,'actor',NULL,'[\"Bob\"]'),(1298649,1706767,3,'actor',NULL,'[\"Franklin\"]'),(1298649,1082,4,'actor',NULL,'[\"Neighbor\"]'),(1298649,1676223,5,'director',NULL,NULL),(1298649,2972864,6,'writer','written by',NULL),(1298649,736622,7,'writer','written by',NULL),(1298649,1698571,8,'writer','written by',NULL),(1298649,506613,9,'producer','producer',NULL),(1298650,694627,10,'writer','novel \"On Stranger Tides\"',NULL),(1298650,136,1,'actor',NULL,'[\"Jack Sparrow\"]'),(1298650,4851,2,'actress',NULL,'[\"Angelica\"]'),(1298650,574534,3,'actor',NULL,'[\"Blackbeard\"]'),(1298650,1691,4,'actor',NULL,'[\"Barbossa\"]'),(1298650,551128,5,'director',NULL,NULL),(1298650,254645,6,'writer','screenplay',NULL),(1298650,744429,7,'writer','screenplay',NULL),(1298650,64181,8,'writer','characters',NULL),(1298650,938684,9,'writer','characters',NULL),(1300851,1912538,10,'composer',NULL,NULL),(1300851,1218,1,'actor',NULL,'[\"Connor MacManus\"]'),(1300851,5342,2,'actor',NULL,'[\"Murphy MacManus\"]'),(1300851,175262,3,'actor',NULL,'[\"Da\"]'),(1300851,4286,4,'actor',NULL,'[\"Romeo\"]'),(1300851,240627,5,'director',NULL,NULL),(1300851,1232198,6,'writer','story',NULL),(1300851,109578,7,'producer','producer',NULL),(1300851,138502,8,'producer','producer',NULL),(1300851,4582,9,'composer',NULL,NULL),(1300854,456158,10,'writer','based on the Marvel comic book by',NULL),(1300854,375,1,'actor',NULL,'[\"Tony Stark\"]'),(1300854,1602,2,'actor',NULL,'[\"Aldrich Killian\"]'),(1300854,569,3,'actress',NULL,'[\"Pepper Potts\"]'),(1300854,332,4,'actor',NULL,'[\"Colonel James Rhodes\"]'),(1300854,948,5,'director',NULL,NULL),(1300854,1510800,6,'writer','screenplay by',NULL),(1300854,498278,7,'writer','based on the Marvel comic book by',NULL),(1300854,1411347,8,'writer','based on the Marvel comic book by',NULL),(1300854,1293367,9,'writer','based on the Marvel comic book by',NULL),(13017992,5284002,10,'composer',NULL,NULL),(13017992,1014,1,'self',NULL,'[\"Self\"]'),(13017992,8337207,2,'self',NULL,'[\"Self\"]'),(13017992,8337206,3,'self',NULL,'[\"Self\"]'),(13017992,4341891,4,'self',NULL,'[\"Self\"]'),(13017992,178910,5,'director',NULL,NULL),(13017992,357895,6,'director',NULL,NULL),(13017992,6237312,7,'writer','written by',NULL),(13017992,13545005,8,'producer','producer',NULL),(13017992,4745966,9,'composer',NULL,NULL),(1302006,7692367,10,'producer','producer',NULL),(1302006,134,1,'actor',NULL,'[\"Frank Sheeran\"]'),(1302006,199,2,'actor',NULL,'[\"Jimmy Hoffa\"]'),(1302006,582,3,'actor',NULL,'[\"Russell Bufalino\"]'),(1302006,172,4,'actor',NULL,'[\"Angelo Bruno\"]'),(1302006,217,5,'director',NULL,NULL),(1302006,1873,6,'writer','screenplay by',NULL),(1302006,3153307,7,'writer','based upon the book by',NULL),(1302006,4025731,8,'producer','producer',NULL),(1302006,256542,9,'producer','producer',NULL),(1302011,167795,10,'producer','producer',NULL),(1302011,85312,1,'actor',NULL,'[\"Po\"]'),(1302011,1401,2,'actress',NULL,'[\"Tigress\"]'),(1302011,329,3,'actor',NULL,'[\"Monkey\"]'),(1302011,163,4,'actor',NULL,'[\"Shifu\"]'),(1302011,950775,5,'director',NULL,NULL),(1302011,8743,6,'writer','written by',NULL),(1302011,74184,7,'writer','written by',NULL),(1302011,717550,8,'writer','based on the characters created by',NULL),(1302011,903456,9,'writer','based on the characters created by',NULL),(1302067,360253,10,'writer','based on the characters created by',NULL),(1302067,101,1,'actor',NULL,'[\"Yogi Bear\"]'),(1302067,5493,2,'actor',NULL,'[\"Boo Boo\"]'),(1302067,267506,3,'actress',NULL,'[\"Rachel\"]'),(1302067,146915,4,'actor',NULL,'[\"Ranger Smith\"]'),(1302067,108094,5,'director',NULL,NULL),(1302067,893262,6,'writer','written by',NULL),(1302067,827985,7,'writer','written by',NULL),(1302067,178589,8,'writer','written by',NULL),(1302067,53484,9,'writer','based on the characters created by',NULL),(13024674,2385360,10,'composer',NULL,NULL),(13024674,777788,1,'actor',NULL,'[\"Ludwig Dieter\"]'),(13024674,2812026,2,'actress',NULL,'[\"Gwendoline Starr\"]'),(13024674,3382410,3,'actress',NULL,'[\"Korina Dominguez\"]'),(13024674,3516668,4,'actor',NULL,'[\"Brad Cage\"]'),(13024674,811583,5,'writer','based on characters created by',NULL),(13024674,8748334,6,'writer','screenplay by',NULL),(13024674,1418292,7,'producer','producer',NULL),(13024674,530917,8,'producer','producer',NULL),(13024674,2003463,9,'producer','producer',NULL),(1303803,2663745,10,'production_designer',NULL,NULL),(1303803,3610766,1,'actress',NULL,'[\"Twiggy Wiggs\"]'),(1303803,3159791,2,'actress',NULL,'[\"Zita Wiggs\"]'),(1303803,3143762,3,'actress',NULL,'[\"Angel Wiggs\"]'),(1303803,2288829,4,'actress',NULL,'[\"Ziggy Wiggs\"]'),(1303803,706296,5,'director',NULL,NULL),(1303803,4341,6,'producer','producer',NULL),(1303803,2656,7,'composer',NULL,NULL),(1303803,200956,8,'cinematographer',NULL,NULL),(1303803,568304,9,'editor',NULL,NULL),(1303828,767962,10,'production_designer',NULL,NULL),(1303828,437,1,'actor',NULL,'[\"Arthur Poppington aka Defendor\"]'),(1303828,993507,2,'actress',NULL,'[\"Kat Debrofkowitz\"]'),(1303828,644897,3,'actress',NULL,'[\"Dr. Ellen Park\"]'),(1303828,480,4,'actor',NULL,'[\"Chuck Dooney\"]'),(1303828,824220,5,'director',NULL,NULL),(1303828,2431,6,'producer','producer',NULL),(1303828,2227793,7,'composer','music composer',NULL),(1303828,338726,8,'cinematographer','director of photography',NULL),(1303828,1198880,9,'editor',NULL,NULL),(1305138,1636942,10,'producer','producer',NULL),(1305138,897721,1,'actor',NULL,'[\"Francisco\"]'),(1305138,350046,2,'actress',NULL,'[\"Carmen\"]'),(1305138,882994,3,'actor',NULL,'[\"Pacheco\"]'),(1305138,432553,4,'actor',NULL,'[\"Tito\"]'),(1305138,301735,5,'director',NULL,NULL),(1305138,880048,6,'director',NULL,NULL),(1305138,409942,7,'writer','collaborator',NULL),(1305138,530668,8,'writer','collaborator',NULL),(1305138,1494231,9,'producer','producer',NULL),(1305583,1650558,10,'composer',NULL,NULL),(1305583,1065229,1,'actress',NULL,'[\"Lucia Ramirez\"]'),(1305583,1845,2,'actor',NULL,'[\"Brad Boyd\"]'),(1305583,578788,3,'actor',NULL,'[\"Miguel Ramirez\"]'),(1305583,5093,4,'actress',NULL,'[\"Angela\"]'),(1305583,266622,5,'director',NULL,NULL),(1305583,174806,6,'writer','story',NULL),(1305583,1173259,7,'writer','screenplay',NULL),(1305583,768324,8,'producer','producer',NULL),(1305583,938145,9,'producer','producer',NULL),(1305591,823330,10,'producer','producer',NULL),(1305591,1293,1,'actor',NULL,'[\"Milo\"]'),(1305591,349,2,'actress',NULL,'[\"Mom\"]'),(1305591,283945,3,'actor',NULL,'[\"Gribble\"]'),(1305591,363699,4,'actress',NULL,'[\"Ki\"]'),(1305591,920425,5,'director',NULL,NULL),(1305591,3352441,6,'writer','screenplay',NULL),(1305591,106455,7,'writer','book',NULL),(1305591,101921,8,'producer','producer',NULL),(1305591,710759,9,'producer','producer',NULL),(13056052,814280,1,'actor',NULL,'[\"Ha Sang-hyun\"]'),(13056052,1504868,2,'actor',NULL,'[\"Dong-soo\"]'),(13056052,46277,3,'actress',NULL,'[\"Su-jin\"]'),(13056052,3889963,4,'actress',NULL,'[\"Moon So-young\"]'),(13056052,466153,5,'director',NULL,NULL),(13056052,498478,6,'producer','producer',NULL),(13056052,8885840,7,'composer',NULL,NULL),(13056052,393240,8,'cinematographer',NULL,NULL),(13056052,5587368,9,'production_designer',NULL,NULL),(1305714,1660481,10,'editor',NULL,NULL),(1305714,1603403,1,'actor',NULL,'[\"Olaf \'Gunn\' Gunnunderson\"]'),(1305714,2476978,2,'actor',NULL,'[\"Thomas\"]'),(1305714,1206539,3,'actor',NULL,'[\"Professor Daniel Van Devere\"]'),(1305714,1258362,4,'actor',NULL,'[\"Nathan Stanford\"]'),(1305714,2092872,5,'director',NULL,NULL),(1305714,426120,6,'producer','producer',NULL),(1305714,1343042,7,'producer','producer',NULL),(1305714,2395325,8,'composer',NULL,NULL),(1305714,569446,9,'cinematographer',NULL,NULL),(1305797,4404570,10,'producer','producer',NULL),(1305797,707425,1,'actor',NULL,'[\"Dr. Vaseegaran\",\"Chitti\"]'),(1305797,706787,2,'actress',NULL,'[\"Sana\"]'),(1305797,219939,3,'actor',NULL,'[\"Dr. Bohra\"]'),(1305797,1962272,4,'actor',NULL,'[\"Siva\"]'),(1305797,788171,5,'director',NULL,NULL),(1305797,837675,6,'writer','dialogue',NULL),(1305797,1618886,7,'writer','hindi dialogue',NULL),(1305797,4157919,8,'writer','dialogue',NULL),(1305797,4109270,9,'producer','producer',NULL),(1305806,201857,1,'actor',NULL,'[\"Benjamín Espósito\"]'),(1305806,897845,2,'actress',NULL,'[\"Irene Menéndez Hastings\"]'),(1305806,706567,3,'actor',NULL,'[\"Ricardo Morales\"]'),(1305806,3587952,4,'actress',NULL,'[\"Liliana Coloto\"]'),(1305806,2728,5,'director',NULL,NULL),(1305806,3160078,6,'writer','screenplay',NULL),(1305806,79065,7,'producer','producer',NULL),(1305806,989434,8,'composer',NULL,NULL),(1305806,599983,9,'cinematographer','director of photography',NULL),(1306980,820987,10,'cinematographer','director of photography',NULL),(1306980,330687,1,'actor',NULL,'[\"Adam\"]'),(1306980,736622,2,'actor',NULL,'[\"Kyle\"]'),(1306980,447695,3,'actress',NULL,'[\"Katherine\"]'),(1306980,397171,4,'actress',NULL,'[\"Rachael\"]'),(1306980,1349522,5,'director',NULL,NULL),(1306980,1672425,6,'writer','written by',NULL),(1306980,1698571,7,'producer','producer',NULL),(1306980,439499,8,'producer','producer',NULL),(1306980,315974,9,'composer',NULL,NULL),(13069986,2371249,10,'producer','producer',NULL),(13069986,6466214,1,'actress',NULL,'[\"Tessa\"]'),(13069986,2842005,2,'actor',NULL,'[\"Hardin\"]'),(13069986,518321,3,'actress',NULL,'[\"Trish\"]'),(13069986,9124071,4,'actor',NULL,'[\"Landon\"]'),(13069986,2500541,5,'director',NULL,NULL),(13069986,6849771,6,'writer','based on the novel by',NULL),(13069986,757267,7,'writer','screenplay by',NULL),(13069986,4799,8,'producer','producer',NULL),(13069986,1291566,9,'producer','producer',NULL),(1307068,2207081,10,'composer',NULL,NULL),(1307068,136797,1,'actor',NULL,'[\"Dodge\"]'),(1307068,461136,2,'actress',NULL,'[\"Penny\"]'),(1307068,1491,3,'actress',NULL,'[\"Karen\"]'),(1307068,652663,4,'actor',NULL,'[\"Roache\"]'),(1307068,1032521,5,'director',NULL,NULL),(1307068,326512,6,'producer','producer',NULL),(1307068,2262509,7,'producer','producer',NULL),(1307068,747287,8,'producer','producer',NULL),(1307068,2229726,9,'producer','producer',NULL),(1307858,725166,10,'cinematographer',NULL,NULL),(1307858,232800,1,'actor',NULL,'[\"Mr. Twigs\"]'),(1307858,3148484,2,'actress',NULL,'[\"Little Debbie\"]'),(1307858,1117644,3,'actor',NULL,'[\"Walter Tennis\"]'),(1307858,6351,4,'actress',NULL,'[\"Tammy Tennis\"]'),(1307858,1514370,5,'director',NULL,NULL),(1307858,72449,6,'producer','producer',NULL),(1307858,115379,7,'producer','producer',NULL),(1307858,825434,8,'producer','producer',NULL),(1307858,3302912,9,'composer',NULL,NULL),(13079086,1732997,1,'actor',NULL,NULL),(13079086,2826999,2,'actress',NULL,NULL),(13079086,3675845,3,'actor',NULL,NULL),(13079086,11499047,4,'director',NULL,NULL),(13079086,10911810,5,'director','co-director',NULL),(13079086,11754173,6,'producer','producer',NULL),(13079086,11754174,7,'editor',NULL,NULL),(1308138,3460911,10,'producer','producer',NULL),(1308138,955505,1,'actress',NULL,'[\"Hua Mulan\"]'),(1308138,1548493,2,'actor',NULL,'[\"Fei Xiaohu\"]'),(1308138,1179512,3,'actor',NULL,'[\"Wentai\"]'),(1308138,950552,4,'actor',NULL,'[\"Hua Hu (Mulan\'s father)\"]'),(1308138,155598,5,'director',NULL,NULL),(1308138,3461127,6,'director','co-director',NULL),(1308138,1511627,7,'writer','poem',NULL),(1308138,3358264,8,'writer','screenplay',NULL),(1308138,2640850,9,'producer','producer',NULL),(13086266,1235290,10,'actor',NULL,NULL),(13086266,496932,1,'actor',NULL,'[\"Yeong-tak\"]'),(13086266,6124994,2,'actor',NULL,'[\"Min-seong\"]'),(13086266,3291520,3,'actress',NULL,'[\"Myeong-hwa\"]'),(13086266,6728658,4,'actress',NULL,'[\"Geum-ae\"]'),(13086266,6174515,5,'director',NULL,NULL),(13086266,15233930,6,'writer',NULL,NULL),(13086266,10098943,7,'actress',NULL,'[\"Hye-won\"]'),(13086266,12382711,8,'actor',NULL,'[\"Min Sung\"]'),(13086266,8760655,9,'actor',NULL,'[\"Do-gyoon\"]'),(13086274,1431912,10,'cinematographer',NULL,NULL),(13086274,5192886,1,'actress',NULL,'[\"Cherry\"]'),(13086274,150926,2,'actress',NULL,'[\"Narrator\"]'),(13086274,368646,3,'actress',NULL,'[\"Elisabeth\"]'),(13086274,522199,4,'actor',NULL,'[\"Oliver\"]'),(13086274,4775043,5,'director',NULL,NULL),(13086274,1133048,6,'writer',NULL,NULL),(13086274,4569822,7,'producer','producer',NULL),(13086274,1216684,8,'producer','producer',NULL),(13086274,549275,9,'composer',NULL,NULL),(1308728,501999,10,'composer',NULL,NULL),(1308728,565250,1,'actress',NULL,'[\"Detective Connie Edwards\"]'),(1308728,6969,2,'actress',NULL,'[\"Jenny\"]'),(1308728,748973,3,'actress',NULL,'[\"Bubbles\"]'),(1308728,1534715,4,'actor',NULL,'[\"Lt. Banning\"]'),(1308728,5008,5,'director',NULL,NULL),(1308728,1787651,6,'writer','screenplay by',NULL),(1308728,1032300,7,'writer','story by',NULL),(1308728,1229520,8,'producer','producer',NULL),(1308728,371065,9,'producer','producer',NULL),(1308729,586968,10,'producer','producer',NULL),(1308729,230,1,'actor',NULL,'[\"James Bonomo\"]'),(1308729,597388,2,'actor',NULL,'[\"Keegan\"]'),(1308729,225,3,'actor',NULL,'[\"Marcus Baptiste\"]'),(1308729,437646,4,'actor',NULL,'[\"Taylor Kwon\"]'),(1308729,1353,5,'director',NULL,NULL),(1308729,131947,6,'writer','screenplay by',NULL),(1308729,1989798,7,'writer','based on the graphic novel \"Du plomb dans la tête\" written by',NULL),(1308729,5631325,8,'writer','based on the graphic novel \"Du plomb dans la tête\" illustrated by',NULL),(1308729,332184,9,'producer','producer',NULL),(1309449,2499386,10,'composer',NULL,NULL),(1309449,297885,1,'actor',NULL,'[\"Kaiji Ito\"]'),(1309449,1947564,2,'actor',NULL,'[\"Makoto Sahara\"]'),(1309449,945500,3,'actor',NULL,'[\"Joji Funai\"]'),(1309449,1973760,4,'actress',NULL,'[\"Yasuda\",\"Ishida Hiromi\"]'),(1309449,2213511,5,'director',NULL,NULL),(1309449,2472678,6,'writer','manga',NULL),(1309449,648460,7,'writer','screenplay',NULL),(1309449,4709570,8,'producer','producer',NULL),(1309449,3104382,9,'producer','producer',NULL),(1311071,1848589,10,'composer',NULL,NULL),(1311071,705356,1,'actor',NULL,'[\"Allen Ginsberg\"]'),(1311071,2851530,2,'actor',NULL,'[\"Lucien Carr\"]'),(1311071,355910,3,'actor',NULL,'[\"David Kammerer\"]'),(1311071,4936,4,'actor',NULL,'[\"William Burroughs\"]'),(1311071,1045865,5,'director',NULL,NULL),(1311071,3169656,6,'writer','screenplay',NULL),(1311071,2918260,7,'producer','producer',NULL),(1311071,304372,8,'producer','producer',NULL),(1311071,882927,9,'producer','producer',NULL),(1311075,2732734,10,'producer','producer',NULL),(1311075,411980,1,'actor',NULL,'[\"The Human Resources Manager\"]'),(1311075,1094877,2,'actor',NULL,'[\"The Weasel\"]'),(1311075,3752454,3,'actor',NULL,'[\"The Boy\"]'),(1311075,131399,4,'actress',NULL,'[\"The Israeli Consul\"]'),(1311075,726954,5,'director',NULL,NULL),(1311075,831569,6,'writer','screenplay',NULL),(1311075,420471,7,'writer','novel \"A Woman in Jerusalem\"',NULL),(1311075,321363,8,'producer','producer',NULL),(1311075,439003,9,'producer','producer',NULL),(1312251,245744,10,'cinematographer','director of photography',NULL),(1312251,4738,1,'actress',NULL,'[\"Cassandra Nightingale\"]'),(1312251,693243,2,'actor',NULL,'[\"Jake Russell\"]'),(1312251,228324,3,'actress',NULL,'[\"Martha Tinsdale\"]'),(1312251,534132,4,'actor',NULL,'[\"George O\'Hanrahan\"]'),(1312251,3588,5,'director',NULL,NULL),(1312251,1376076,6,'writer','written by',NULL),(1312251,2778574,7,'writer','based on characters by',NULL),(1312251,706228,8,'producer','producer',NULL),(1312251,502338,9,'composer',NULL,NULL),(1313092,285721,10,'production_designer',NULL,NULL),(1313092,3306943,1,'actor',NULL,'[\"Joshua \'J\' Cody\"]'),(1313092,1602,2,'actor',NULL,'[\"Detective Senior Sgt Nathan Leckie\"]'),(1313092,249291,3,'actor',NULL,'[\"Barry \'Baz\' Brown\"]'),(1313092,3819777,4,'actor',NULL,'[\"Paramedic #1\"]'),(1313092,2391575,5,'director',NULL,NULL),(1313092,915192,6,'producer','producer',NULL),(1313092,664020,7,'composer',NULL,NULL),(1313092,1714622,8,'cinematographer',NULL,NULL),(1313092,1029112,9,'editor',NULL,NULL),(1313139,2924187,10,'producer','producer',NULL),(1313139,1015262,1,'actress',NULL,'[\"Nina\"]'),(1313139,491402,2,'actor',NULL,'[\"David\"]'),(1313139,1416,3,'actress',NULL,'[\"Paige\"]'),(1313139,5049,4,'actress',NULL,'[\"Cathy\"]'),(1313139,267497,5,'director',NULL,NULL),(1313139,375043,6,'writer','written by',NULL),(1313139,2690957,7,'writer','written by',NULL),(1313139,106835,8,'producer','producer',NULL),(1313139,881811,9,'producer','producer',NULL),(1313244,1057426,10,'composer',NULL,NULL),(1313244,740264,1,'actor',NULL,'[\"Ray\"]'),(1313244,48273,2,'actress',NULL,'[\"Helen\"]'),(1313244,2341280,3,'actor',NULL,'[\"David\"]'),(1313244,2684348,4,'actress',NULL,'[\"Gina\"]'),(1313244,1319539,5,'director',NULL,NULL),(1313244,1472372,6,'producer','producer',NULL),(1313244,275244,7,'producer','producer',NULL),(1313244,2390962,8,'producer','producer',NULL),(1313244,1490961,9,'producer','producer',NULL),(13139228,4367953,10,'producer','producer',NULL),(13139228,4089170,1,'actor',NULL,'[\"Younger Tom\"]'),(13139228,10128408,2,'actress',NULL,'[\"Younger Marion\"]'),(13139228,571160,3,'actress',NULL,'[\"Marion\"]'),(13139228,730070,4,'actor',NULL,'[\"Tom\"]'),(13139228,334787,5,'director',NULL,NULL),(13139228,638913,6,'writer','screenplay by',NULL),(13139228,13026205,7,'writer','based upon the book by',NULL),(13139228,75528,8,'producer','producer',NULL),(13139228,3179563,9,'producer','producer',NULL),(13143964,563243,10,'writer','screenplay by',NULL),(13143964,56187,1,'actor',NULL,'[\"Borat Sagdiyev\"]'),(13143964,7210025,2,'actress',NULL,'[\"Tutar Sagdiyev\"]'),(13143964,158,3,'actor',NULL,'[\"Tom Hanks\"]'),(13143964,2483965,4,'actor',NULL,'[\"Premier Nazarbayev\"]'),(13143964,938471,5,'director',NULL,NULL),(13143964,385630,6,'writer','screenplay by',NULL),(13143964,2255631,7,'writer','screenplay by',NULL),(13143964,63165,8,'writer','screenplay by',NULL),(13143964,1106214,9,'writer','screenplay by',NULL),(13145534,149260,1,'actor',NULL,'[\"Alain Duval\"]'),(13145534,238475,2,'actress',NULL,'[\"Marie Duval\"]'),(13145534,536095,3,'actor',NULL,'[\"Gérard\"]'),(13145534,1326732,4,'actress',NULL,'[\"Jeanne\"]'),(13145534,1189197,5,'director',NULL,NULL),(13145534,1700020,6,'producer','producer',NULL),(13145534,13873020,7,'composer',NULL,NULL),(13145534,4458207,8,'production_designer',NULL,NULL),(1314645,2759113,1,'actress',NULL,'[\"Sheri\"]'),(1314645,730355,2,'actor',NULL,'[\"Vince\"]'),(1314645,1518814,3,'actress',NULL,'[\"Dr. Beth Crowl\"]'),(1314645,1088549,4,'actor',NULL,'[\"Pastor Jeff\"]'),(1314645,3167701,5,'composer',NULL,NULL),(1314645,3277446,6,'cinematographer','director of photography',NULL),(1314645,2710873,7,'editor',NULL,NULL),(1314645,3191582,8,'production_designer',NULL,NULL),(1314645,3191239,9,'production_designer',NULL,NULL),(1314652,497248,10,'editor',NULL,NULL),(1314652,161133,1,'actress',NULL,'[\"Eun-yi Li\"]'),(1314652,497631,2,'actor',NULL,'[\"Hoon Goh\"]'),(1314652,950926,3,'actress',NULL,'[\"Byung-sik\"]'),(1314652,3207873,4,'actress',NULL,'[\"Hae-ra\"]'),(1314652,407992,5,'director',NULL,NULL),(1314652,453579,6,'writer','based on the film by',NULL),(1314652,1231851,7,'producer','producer',NULL),(1314652,453469,8,'composer',NULL,NULL),(1314652,2893410,9,'cinematographer',NULL,NULL),(1314655,5714,10,'cinematographer',NULL,NULL),(1314655,582149,1,'actor',NULL,'[\"Detective Bowden\"]'),(1314655,223518,2,'actress',NULL,'[\"Elsa Nahai\"]'),(1314655,940158,3,'actor',NULL,'[\"Guard\"]'),(1314655,1334869,4,'actor',NULL,'[\"Mechanic\"]'),(1314655,235719,5,'director',NULL,NULL),(1314655,625198,6,'writer','screenplay',NULL),(1314655,796117,7,'writer','story',NULL),(1314655,580303,8,'producer','producer',NULL),(1314655,1302939,9,'composer',NULL,NULL),(1315214,1026600,10,'editor',NULL,NULL),(1315214,2102,1,'actress',NULL,'[\"Older Hannah\"]'),(1315214,302442,2,'actress',NULL,'[\"Older Rachel\"]'),(1315214,3177370,3,'actress',NULL,'[\"Adult Hannah\"]'),(1315214,2277058,4,'actress',NULL,'[\"Adult Rachel\"]'),(1315214,138238,5,'director',NULL,NULL),(1315214,3177502,6,'writer','writer',NULL),(1315214,3178336,7,'producer','executive producer',NULL),(1315214,3177963,8,'composer',NULL,NULL),(1315214,1008443,9,'cinematographer',NULL,NULL),(13152234,8465623,1,'actor',NULL,NULL),(13152234,4249741,2,'actor',NULL,NULL),(13152234,804755,3,'actress',NULL,NULL),(13152234,3305403,4,'director',NULL,NULL),(13152234,3517546,5,'writer',NULL,NULL),(13152234,11363348,6,'writer',NULL,NULL),(13152234,6220981,7,'cinematographer',NULL,NULL),(13152234,5593519,8,'editor',NULL,NULL),(1315981,919363,10,'producer','producer',NULL),(1315981,147,1,'actor',NULL,'[\"George\"]'),(1315981,194,2,'actress',NULL,'[\"Charley\"]'),(1315981,328828,3,'actor',NULL,'[\"Jim\"]'),(1315981,396558,4,'actor',NULL,'[\"Kenny\"]'),(1315981,1053530,5,'director',NULL,NULL),(1315981,410877,6,'writer','novel',NULL),(1315981,3179694,7,'writer','written for the screen by',NULL),(1315981,583948,8,'producer','producer',NULL),(1315981,7011,9,'producer','producer',NULL),(1316037,3180472,1,'actor',NULL,'[\"Rod\"]'),(1316037,3179972,2,'actress',NULL,'[\"Nathalie\"]'),(1316037,1335,3,'archive_footage',NULL,'[\"Julie McNeal\"]'),(1316037,2831140,4,'actress',NULL,'[\"Susan\"]'),(1316037,1343100,5,'director',NULL,NULL),(1316037,3181332,6,'composer',NULL,NULL),(1316037,3181219,7,'cinematographer',NULL,NULL),(1316037,1724980,8,'editor',NULL,NULL),(1316037,5285233,9,'production_designer',NULL,NULL),(1316540,2940113,10,'producer','producer',NULL),(1316540,220729,1,'actor',NULL,'[\"Ohlsdorfer\"]'),(1316540,126969,2,'actress',NULL,'[\"Ohlsdorfer\'s daughter\"]'),(1316540,466345,3,'actor',NULL,'[\"Bernhard\"]'),(1316540,4277690,4,'actor',NULL,'[\"Horse\"]'),(1316540,850601,5,'director',NULL,NULL),(1316540,398555,6,'director','co-director',NULL),(1316540,470004,7,'writer','screenplay',NULL),(1316540,353351,8,'producer','producer',NULL),(1316540,3121054,9,'producer','producer',NULL),(1316541,831013,10,'cinematographer',NULL,NULL),(1316541,3532148,1,'actress',NULL,'[\"Tasha Robson\"]'),(1316541,4129192,2,'actress',NULL,'[\"Debbie Robson\"]'),(1316541,634139,3,'actor',NULL,'[\"Danny Robson\"]'),(1316541,424338,4,'actress',NULL,'[\"Jenny Robson\"]'),(1316541,1848223,5,'director',NULL,NULL),(1316541,1129522,6,'writer','screenplay, story & dialogue',NULL),(1316541,929167,7,'writer','story',NULL),(1316541,490063,8,'producer','producer',NULL),(1316541,1055902,9,'composer',NULL,NULL),(1316622,902092,10,'editor',NULL,NULL),(1316622,4778,1,'actor',NULL,'[\"Man\"]'),(1316622,223518,2,'actress',NULL,'[\"Woman\"]'),(1316622,730455,3,'actor',NULL,'[\"George Weaver\"]'),(1316622,2343,4,'actor',NULL,'[\"Raymond Plazzy\"]'),(1316622,1042371,5,'director',NULL,NULL),(1316622,1027626,6,'writer','written by',NULL),(1316622,1954504,7,'producer','producer',NULL),(1316622,111649,8,'composer',NULL,NULL),(1316622,514284,9,'cinematographer','director of photography',NULL),(1316624,764901,10,'production_designer',NULL,NULL),(1316624,3817466,1,'actress',NULL,'[\"Elizabeth Gray\"]'),(1316624,2755708,2,'actress',NULL,'[\"Annabelle Kowalski\"]'),(1316624,2604833,3,'actress',NULL,'[\"Stella Kowalski\"]'),(1316624,340284,4,'actress',NULL,'[\"Marion Gray\"]'),(1316624,1037560,5,'director',NULL,NULL),(1316624,795388,6,'producer','producer',NULL),(1316624,1502050,7,'composer',NULL,NULL),(1316624,767198,8,'cinematographer','director of photography',NULL),(1316624,74445,9,'editor',NULL,NULL),(13172796,372222,10,'producer','producer',NULL),(13172796,8872000,1,'actress',NULL,'[\"Sunny\"]'),(13172796,3483537,2,'actress',NULL,'[\"Lupe\"]'),(13172796,4413892,3,'actor',NULL,'[\"Hunter\"]'),(13172796,3303074,4,'actor',NULL,'[\"Kyle\"]'),(13172796,2295540,5,'director',NULL,NULL),(13172796,5262241,6,'writer','written by',NULL),(13172796,7011791,7,'writer','written by',NULL),(13172796,2502123,8,'producer','producer',NULL),(13172796,1275670,9,'producer','producer',NULL),(1318514,1249995,10,'producer','producer',NULL),(1318514,290556,1,'actor',NULL,'[\"Will Rodman\"]'),(1318514,785227,2,'actor',NULL,'[\"Caesar\"]'),(1318514,2951768,3,'actress',NULL,'[\"Caroline Aranha\"]'),(1318514,465269,4,'actress',NULL,'[\"Maurice\",\"Court Clerk\"]'),(1318514,1012501,5,'director',NULL,NULL),(1318514,415425,6,'writer','written by',NULL),(1318514,798646,7,'writer','written by',NULL),(1318514,99541,8,'writer','based on the novel \"La Planète des Singes\" by',NULL),(1318514,1858656,9,'producer','producer',NULL),(1318517,380547,10,'producer','producer',NULL),(1318517,274574,1,'actor',NULL,'[\"Don Quixote (commercial)\"]'),(1318517,1644151,2,'actor',NULL,'[\"Sancho Panza (commercial)\"]'),(1318517,3347002,3,'actor',NULL,'[\"Spanish Propman\"]'),(1318517,3485845,4,'actor',NULL,'[\"Toby\"]'),(1318517,416,5,'director',NULL,NULL),(1318517,342617,6,'writer','written by',NULL),(1318517,148859,7,'writer','novel',NULL),(1318517,79065,8,'producer','producer',NULL),(1318517,319094,9,'producer','producer',NULL),(1319708,4458450,10,'writer','external game writer',NULL),(1319708,1340118,1,'actor',NULL,'[\"Adam Jensen\"]'),(1319708,791156,2,'actor',NULL,'[\"David Sarif\"]'),(1319708,32001,3,'actor',NULL,'[\"Francis Pritchard\",\"Seurat\"]'),(1319708,1840389,4,'actress',NULL,'[\"Megan Reed\",\"Hyron Drone\"]'),(1319708,4307619,5,'director',NULL,NULL),(1319708,754887,6,'director',NULL,NULL),(1319708,972390,7,'writer','narrative designer',NULL),(1319708,1964714,8,'writer','narrative designer',NULL),(1319708,8379911,9,'writer','external game writer',NULL),(1319722,569160,10,'production_designer',NULL,NULL),(1319722,278979,1,'actress',NULL,'[\"Laura Pehlke\"]'),(1319722,1828101,2,'actor',NULL,'[\"Patient\"]'),(1319722,2868165,3,'actor',NULL,'[\"Dennis Pehlke\"]'),(1319722,807548,4,'actress',NULL,'[\"Kathy Helms\"]'),(1319722,919352,5,'director',NULL,NULL),(1319722,1370830,6,'producer','producer',NULL),(1319722,1323132,7,'producer','producer',NULL),(1319722,2395325,8,'composer',NULL,NULL),(1319722,366760,9,'cinematographer',NULL,NULL),(1320082,40927,10,'producer','producer',NULL),(1320082,348888,1,'actor',NULL,'[\"Andrey Simonovich Filipov\"]'),(1320082,491259,2,'actress',NULL,'[\"Anne-Marie Jacquet\",\"Lea\"]'),(1320082,623373,3,'actor',NULL,'[\"Aleksandr \'Sasha\' Abramovich Grosman\"]'),(1320082,75710,4,'actor',NULL,'[\"Olivier Morne Duplessis\"]'),(1320082,586123,5,'director',NULL,NULL),(1320082,86912,6,'writer','scenario',NULL),(1320082,730422,7,'writer','collaboration',NULL),(1320082,2131687,8,'writer','based on an original story by',NULL),(1320082,1934447,9,'writer','based on an original story by',NULL),(1320244,628080,10,'producer','producer',NULL),(1320244,264579,1,'actor',NULL,'[\"Cotton Marcus\"]'),(1320244,68042,2,'actress',NULL,'[\"Nell Sweetzer\"]'),(1320244,52754,3,'actress',NULL,'[\"Iris Reisen\"]'),(1320244,381043,4,'actor',NULL,'[\"Louis Sweetzer\"]'),(1320244,821844,5,'director',NULL,NULL),(1320244,1428204,6,'writer','written by',NULL),(1320244,348640,7,'writer','written by',NULL),(1320244,8953,8,'producer','producer',NULL),(1320244,88536,9,'producer','producer',NULL),(1320253,453808,10,'cinematographer','director of photography',NULL),(1320253,230,1,'actor',NULL,'[\"Barney Ross\"]'),(1320253,5458,2,'actor',NULL,'[\"Lee Christmas\"]'),(1320253,1472,3,'actor',NULL,'[\"Yin Yang\"]'),(1320253,185,4,'actor',NULL,'[\"Gunner Jensen\"]'),(1320253,1709264,5,'writer','screenplay',NULL),(1320253,503592,6,'producer','producer',NULL),(1320253,854772,7,'producer','producer',NULL),(1320253,860315,8,'producer','producer',NULL),(1320253,3911,9,'composer',NULL,NULL),(1320286,22939,10,'production_designer',NULL,NULL),(1320286,260,1,'actress',NULL,'[\"Georgia O\'Keeffe\"]'),(1320286,460,2,'actor',NULL,'[\"Alfred Stieglitz\"]'),(1320286,893,3,'actor',NULL,'[\"Dr. Lee Steiglita\"]'),(1320286,149910,4,'actress',NULL,'[\"Mrs. Stieglitz\"]'),(1320286,837,5,'director',NULL,NULL),(1320286,188165,6,'writer',NULL,NULL),(1320286,63618,7,'composer',NULL,NULL),(1320286,254580,8,'cinematographer','director of photography',NULL),(1320286,385442,9,'editor',NULL,NULL),(1320291,372112,10,'production_designer',NULL,NULL),(1320291,909935,1,'actor',NULL,'[\"Luke\"]'),(1320291,1189489,2,'actor',NULL,'[\"Matt\"]'),(1320291,1506789,3,'actress',NULL,'[\"Suzie\"]'),(1320291,623309,4,'actress',NULL,'[\"Kate\"]'),(1320291,871188,5,'director',NULL,NULL),(1320291,731961,6,'producer','producer',NULL),(1320291,562100,7,'composer',NULL,NULL),(1320291,34058,8,'cinematographer',NULL,NULL),(1320291,1741455,9,'editor',NULL,NULL),(1320304,534673,10,'cinematographer','director of photography',NULL),(1320304,760989,1,'actress',NULL,'[\"Stella\"]'),(1320304,1711052,2,'actor',NULL,'[\"Paul\"]'),(1320304,1401531,3,'actress',NULL,'[\"Amber\"]'),(1320304,674782,4,'actor',NULL,'[\"Todd\"]'),(1320304,2406892,5,'director',NULL,NULL),(1320304,632051,6,'writer','screenplay',NULL),(1320304,2615528,7,'writer','comic',NULL),(1320304,849964,8,'producer','producer',NULL),(1320304,2318865,9,'composer',NULL,NULL),(1320352,3700091,10,'actor',NULL,'[\"Younger Son Picknick\"]'),(1320352,2551311,1,'actress',NULL,'[\"You\"]'),(1320352,1653,2,'actor',NULL,'[\"Martin\"]'),(1320352,3699483,3,'actor',NULL,'[\"Father Picknick\"]'),(1320352,394519,4,'actress',NULL,'[\"Mother Pocknick\"]'),(1320352,1773563,5,'director',NULL,NULL),(1320352,1646374,6,'composer',NULL,NULL),(1320352,2387156,7,'cinematographer','director of photography',NULL),(1320352,2677,8,'editor',NULL,NULL),(1320352,3683310,9,'actor',NULL,'[\"Elder Son Picknick\"]'),(13204490,2700060,10,'production_designer',NULL,NULL),(13204490,12311642,1,'actress',NULL,'[\"Nelly\"]'),(13204490,12311643,2,'actress',NULL,'[\"Marion\"]'),(13204490,582889,3,'actress',NULL,'[\"La mère\"]'),(13204490,1336069,4,'actor',NULL,'[\"Le père\"]'),(13204490,1780037,5,'director',NULL,NULL),(13204490,1309676,6,'producer','producer',NULL),(13204490,1768243,7,'composer',NULL,NULL),(13204490,1083857,8,'cinematographer',NULL,NULL),(13204490,1780517,9,'editor',NULL,NULL),(1321510,761712,10,'producer','producer',NULL),(1321510,6588867,1,'actor',NULL,'[\"Usnavi\"]'),(1321510,3659660,2,'actor',NULL,'[\"Benny\"]'),(1321510,6051155,3,'actress',NULL,'[\"Nina Rosario\"]'),(1321510,4574440,4,'actress',NULL,'[\"Vanessa\"]'),(1321510,160840,5,'director',NULL,NULL),(1321510,3730005,6,'writer','screenplay by',NULL),(1321510,592135,7,'writer','concept by',NULL),(1321510,106835,8,'producer','producer',NULL),(1321510,1764768,9,'producer','producer',NULL),(1321511,63414,10,'composer',NULL,NULL),(1321511,982,1,'actor',NULL,'[\"Joe Doucett\"]'),(1321511,647634,2,'actress',NULL,'[\"Marie Sebastian\"]'),(1321511,168,3,'actor',NULL,'[\"Chaney\"]'),(1321511,1663205,4,'actor',NULL,'[\"Adrian\",\"The Stranger\"]'),(1321511,490,5,'director',NULL,NULL),(1321511,698873,6,'writer','screenplay by',NULL),(1321511,205713,7,'producer','producer',NULL),(1321511,1144042,8,'producer','producer',NULL),(1321511,498175,9,'producer','producer',NULL),(1321870,846333,10,'producer','producer',NULL),(1321870,576,1,'actor',NULL,'[\"Mickey Cohen\"]'),(1321870,331516,2,'actor',NULL,'[\"Sgt. Jerry Wooters\"]'),(1321870,1297015,3,'actress',NULL,'[\"Grace Faraday\"]'),(1321870,610,4,'actor',NULL,'[\"Officer Conwell Keeler\"]'),(1321870,281508,5,'director',NULL,NULL),(1321870,3263825,6,'writer','written by',NULL),(1321870,4624299,7,'writer','book \"Gangster Squad\"',NULL),(1321870,1469853,8,'producer','producer',NULL),(1321870,566557,9,'producer','producer',NULL),(1322269,4391997,10,'producer','producer',NULL),(1322269,658,1,'actress',NULL,'[\"Violet Weston\"]'),(1322269,551,2,'actor',NULL,'[\"Steve Huberbrecht\"]'),(1322269,210,3,'actress',NULL,'[\"Barbara Weston\"]'),(1322269,496,4,'actress',NULL,'[\"Karen Weston\"]'),(1322269,920274,5,'director',NULL,NULL),(1322269,504832,6,'writer','screenplay',NULL),(1322269,123,7,'producer','producer',NULL),(1322269,235389,8,'producer','producer',NULL),(1322269,381416,9,'producer','producer',NULL),(1322312,2217,10,'composer',NULL,NULL),(1322312,106,1,'actress',NULL,'[\"Erin\"]'),(1322312,519043,2,'actor',NULL,'[\"Garrett\"]'),(1322312,515296,3,'actor',NULL,'[\"Will\"]'),(1322312,206359,4,'actor',NULL,'[\"Dan\"]'),(1322312,123379,5,'director',NULL,NULL),(1322312,3192484,6,'writer','written by',NULL),(1322312,316774,7,'producer','producer',NULL),(1322312,335400,8,'producer','producer',NULL),(1322312,788202,9,'producer','producer',NULL),(1322315,1048600,10,'editor',NULL,NULL),(1322315,586565,1,'actor',NULL,'[\"Martin Vinge\"]'),(1322315,612675,2,'actress',NULL,'[\"Nina\"]'),(1322315,1649756,3,'actor',NULL,'[\"Christian Vestergaard\"]'),(1322315,816868,4,'actor',NULL,'[\"Vestergaards stemme\"]'),(1322315,358530,5,'director',NULL,NULL),(1322315,761879,6,'writer','story',NULL),(1322315,343844,7,'composer',NULL,NULL),(1322315,491565,8,'cinematographer',NULL,NULL),(1322315,804773,9,'editor',NULL,NULL),(1322385,1431184,10,'composer',NULL,NULL),(1322385,3758466,1,'actor',NULL,'[\"Martin\"]'),(1322385,3781410,2,'actor',NULL,'[\"Lille Nick\"]'),(1322385,1201789,3,'actor',NULL,'[\"Lillebror\"]'),(1322385,147767,4,'actor',NULL,'[\"Nick\"]'),(1322385,899121,5,'director',NULL,NULL),(1322385,3275086,6,'writer','novel',NULL),(1322385,2105585,7,'writer','screenplay',NULL),(1322385,442337,8,'producer','producer',NULL),(1322385,253120,9,'composer',NULL,NULL),(1323045,3759,10,'editor',NULL,NULL),(1323045,39162,1,'actor',NULL,'[\"Joe Lynch\"]'),(1323045,68187,2,'actress',NULL,'[\"Parker O\'Neil\"]'),(1323045,954225,3,'actor',NULL,'[\"Dan Walker\"]'),(1323045,2089320,4,'actor',NULL,'[\"Jason\"]'),(1323045,1697112,5,'director',NULL,NULL),(1323045,88756,6,'producer','producer',NULL),(1323045,1425628,7,'producer','producer',NULL),(1323045,1348545,8,'composer',NULL,NULL),(1323045,1701139,9,'cinematographer','director of photography',NULL),(13235822,162543,10,'editor',NULL,NULL),(13235822,644897,1,'actress',NULL,'[\"Amanda\"]'),(13235822,1640384,2,'actress',NULL,'[\"Chris\"]'),(13235822,551,3,'actor',NULL,'[\"Danny\"]'),(13235822,3843467,4,'actress',NULL,'[\"River\"]'),(13235822,1771279,5,'director',NULL,NULL),(13235822,10110660,6,'producer','producer',NULL),(13235822,600,7,'producer','producer',NULL),(13235822,63414,8,'composer',NULL,NULL),(13235822,2158807,9,'cinematographer','director of photography',NULL),(1323594,2805697,10,'producer','producer',NULL),(1323594,136797,1,'actor',NULL,'[\"Gru\"]'),(1323594,781981,2,'actor',NULL,'[\"Vector\"]'),(1323594,1258970,3,'actor',NULL,'[\"Dr. Nefario\"]'),(1323594,267,4,'actress',NULL,'[\"Gru\'s Mom\"]'),(1323594,1853544,5,'director',NULL,NULL),(1323594,719208,6,'director',NULL,NULL),(1323594,666791,7,'writer','screenplay by',NULL),(1323594,202425,8,'writer','screenplay by',NULL),(1323594,655053,9,'writer','based on a story by',NULL),(1323605,353563,10,'cinematographer','director of photography',NULL),(1323605,824997,1,'actor',NULL,'[\"Joey\"]'),(1323605,664175,2,'actress',NULL,'[\"Jennifer\"]'),(1323605,1457826,3,'actor',NULL,'[\"Tyler\"]'),(1323605,1280174,4,'actor',NULL,'[\"Sam\"]'),(1323605,190072,5,'producer','producer',NULL),(1323605,736943,6,'producer','producer',NULL),(1323605,440997,7,'composer',NULL,NULL),(1323605,2525068,8,'composer',NULL,NULL),(1323605,4888284,9,'composer',NULL,NULL),(1324999,1980,10,'composer',NULL,NULL),(1324999,829576,1,'actress',NULL,'[\"Bella Swan\"]'),(1324999,1500155,2,'actor',NULL,'[\"Edward Cullen\"]'),(1324999,1210124,3,'actor',NULL,'[\"Jacob Black\"]'),(1324999,83655,4,'actor',NULL,'[\"Billy\"]'),(1324999,174374,5,'director',NULL,NULL),(1324999,742279,6,'writer','screenplay by',NULL),(1324999,2769412,7,'writer','based on the novel \"Breaking Dawn\" by',NULL),(1324999,324041,8,'producer','producer',NULL),(1324999,1651942,9,'producer','producer',NULL),(1325004,6290,10,'composer',NULL,NULL),(1325004,829576,1,'actress',NULL,'[\"Bella Swan\"]'),(1325004,1500155,2,'actor',NULL,'[\"Edward Cullen\"]'),(1325004,1210124,3,'actor',NULL,'[\"Jacob Black\"]'),(1325004,1882152,4,'actor',NULL,'[\"Riley\"]'),(1325004,1720541,5,'director',NULL,NULL),(1325004,742279,6,'writer','screenplay by',NULL),(1325004,2769412,7,'writer','based on the novel \"Eclipse\" by',NULL),(1325004,324041,8,'producer','producer',NULL),(1325004,1651942,9,'producer','producer',NULL),(1326221,2207150,1,'actress',NULL,'[\"Bethesda\"]'),(1326221,2244125,2,'actor',NULL,'[\"Windham\"]'),(1326221,3121389,3,'actress',NULL,'[\"Sharon\"]'),(1326221,3199005,4,'actor',NULL,'[\"Jacob\"]'),(1326221,2208558,5,'director',NULL,NULL),(1326221,1821900,6,'producer','producer',NULL),(1326221,1471372,7,'cinematographer',NULL,NULL),(13266132,3357122,1,'actress',NULL,'[\"Ana\"]'),(13266132,5015508,2,'actor',NULL,'[\"David\"]'),(13266132,2609927,3,'actress',NULL,'[\"Lucia\"]'),(13266132,664660,4,'actor',NULL,'[\"Paco\"]'),(13266132,5274449,5,'director',NULL,NULL),(13266132,6101139,6,'composer',NULL,NULL),(13266132,3706440,7,'cinematographer',NULL,NULL),(13266132,29305,8,'actress',NULL,'[\"Senora Morales\"]'),(13266132,2369580,9,'actor',NULL,'[\"Concierge\"]'),(13266998,2357539,10,'producer','producer',NULL),(13266998,625085,1,'actor',NULL,'[\"Beardy\"]'),(13266998,2089602,2,'actor',NULL,'[\"Gary\"]'),(13266998,819741,3,'actor',NULL,'[\"Colin\"]'),(13266998,556453,4,'actor',NULL,'[\"Bull\"]'),(13266998,1440314,5,'director',NULL,NULL),(13266998,8547473,6,'producer','producer',NULL),(13266998,9395116,7,'producer','producer',NULL),(13266998,4709773,8,'producer','producer',NULL),(13266998,4234703,9,'producer','producer',NULL),(1326956,1904595,1,'self',NULL,'[\"Self - Producer\"]'),(1326956,35184,2,'director',NULL,NULL),(1326956,1762862,3,'writer',NULL,NULL),(1326956,3561,4,'producer','producer',NULL),(1326956,1442552,5,'composer',NULL,NULL),(1326956,451606,6,'editor',NULL,NULL),(1327194,6142,10,'composer',NULL,NULL),(1327194,1374980,1,'actor',NULL,'[\"Logan\"]'),(1327194,2279940,2,'actress',NULL,'[\"Beth\"]'),(1327194,1100,3,'actress',NULL,'[\"Ellie\"]'),(1327194,2546716,4,'actor',NULL,'[\"Ben\"]'),(1327194,382956,5,'director',NULL,NULL),(1327194,3391497,6,'writer','screenplay',NULL),(1327194,817023,7,'writer','novel',NULL),(1327194,224145,8,'producer','producer',NULL),(1327194,566557,9,'producer','producer',NULL),(1327773,931423,10,'producer','producer',NULL),(1327773,1845,1,'actor',NULL,'[\"Cecil Gaines\"]'),(1327773,1856,2,'actress',NULL,'[\"Gloria Gaines\"]'),(1327773,131,3,'actor',NULL,'[\"Richard Nixon\"]'),(1327773,404,4,'actress',NULL,'[\"Nancy Reagan\"]'),(1327773,200005,5,'director',NULL,NULL),(1327773,834960,6,'writer','written by',NULL),(1327773,1665973,7,'writer','inspired by the article \"A Butler Well Served by This Election\"',NULL),(1327773,255891,8,'producer','producer',NULL),(1327773,5052148,9,'producer','producer',NULL),(1331064,2304722,1,'self',NULL,'[\"Self\"]'),(1331064,148418,2,'actor',NULL,'[\"Michael Cera\"]'),(1331064,2159926,3,'actor',NULL,'[\"Nicholas Jasenovec\"]'),(1331064,3551355,4,'self',NULL,'[\"Self\"]'),(1331064,2074328,5,'director',NULL,NULL),(1331064,1024635,6,'producer','producer',NULL),(1331064,1407823,7,'producer','producer',NULL),(1331064,402870,8,'cinematographer',NULL,NULL),(1331064,998606,9,'editor',NULL,NULL),(1332054,1211646,10,'production_designer',NULL,NULL),(1332054,3464920,1,'actress',NULL,'[\"Luciana Proietti\"]'),(1332054,3465007,2,'actor',NULL,'[\"Arturo Proietti\"]'),(1332054,4253831,3,'actor',NULL,'[\"Vittorio\"]'),(1332054,8588942,4,'actress',NULL,'[\"Fiorella\"]'),(1332054,1339604,5,'director',NULL,NULL),(1332054,1304475,6,'writer','writer',NULL),(1332054,698271,7,'producer','producer',NULL),(1332054,331683,8,'cinematographer',NULL,NULL),(1332054,1085170,9,'editor',NULL,NULL),(13320622,153877,10,'producer','producer',NULL),(13320622,113,1,'actress',NULL,'[\"Loretta Sage\",\"Angela\"]'),(13320622,1475594,2,'actor',NULL,'[\"Alan\",\"Dash\"]'),(13320622,705356,3,'actor',NULL,'[\"Abigail Fairfax\"]'),(13320622,5007768,4,'actress',NULL,'[\"Beth Hatten\"]'),(13320622,1887480,5,'director',NULL,NULL),(13320622,1519639,6,'director',NULL,NULL),(13320622,3349927,7,'writer','screenplay by',NULL),(13320622,1401416,8,'writer','screenplay by',NULL),(13320622,1164861,9,'writer','story by',NULL),(1332134,432375,10,'producer','producer',NULL),(1332134,375860,1,'actor',NULL,'[\"Erling\",\"C-19\"]'),(1332134,3898788,2,'actor',NULL,'[\"Olav\",\"C-1\"]'),(1332134,1745,3,'actor',NULL,'[\"Bestyrer Håkon\"]'),(1332134,427379,4,'actor',NULL,'[\"Husfar Bråthen\"]'),(1332134,392319,5,'director',NULL,NULL),(1332134,2905814,6,'writer','story',NULL),(1332134,159835,7,'writer','story',NULL),(1332134,536370,8,'writer','screenplay',NULL),(1332134,2648175,9,'writer','screenplay',NULL),(13327038,6389731,10,'composer',NULL,NULL),(13327038,6161516,1,'actress',NULL,'[\"Drea\"]'),(13327038,1638321,2,'actress',NULL,'[\"Eleanor\"]'),(13327038,3641002,3,'actor',NULL,'[\"Max\"]'),(13327038,9169920,4,'actor',NULL,'[\"Russ\"]'),(13327038,3066492,5,'director',NULL,NULL),(13327038,4916283,6,'writer','written by',NULL),(13327038,106835,7,'producer','producer',NULL),(13327038,5153276,8,'producer','producer',NULL),(13327038,6076231,9,'composer',NULL,NULL),(1334260,6235,10,'composer',NULL,NULL),(1334260,461136,1,'actress',NULL,'[\"Ruth\"]'),(1334260,1659547,2,'actress',NULL,'[\"Kathy\"]'),(1334260,1940449,3,'actor',NULL,'[\"Tommy\"]'),(1334260,3505032,4,'actress',NULL,'[\"Young Kathy\"]'),(1334260,738796,5,'director',NULL,NULL),(1334260,410958,6,'writer','novel',NULL),(1334260,307497,7,'writer','screenplay',NULL),(1334260,531602,8,'producer','producer',NULL),(1334260,716924,9,'producer','producer',NULL),(1334512,566557,10,'producer','producer',NULL),(1334512,1258970,1,'actor',NULL,'[\"Arthur\"]'),(1334512,545,2,'actress',NULL,'[\"Hobson\"]'),(1334512,4950,3,'actress',NULL,'[\"Susan\"]'),(1334512,1950086,4,'actress',NULL,'[\"Naomi\"]'),(1334512,934864,5,'director',NULL,NULL),(1334512,63165,6,'writer','screenplay',NULL),(1334512,330619,7,'writer','story',NULL),(1334512,70454,8,'producer','producer',NULL),(1334512,108368,9,'producer','producer',NULL),(1334537,243233,1,'actor',NULL,'[\"Ben\"]'),(1334537,502671,2,'actor',NULL,'[\"Andrew\"]'),(1334537,3195983,3,'actress',NULL,'[\"Anna\"]'),(1334537,1119645,4,'actress',NULL,'[\"Monica\"]'),(1334537,810272,5,'composer',NULL,NULL),(1334537,1848388,6,'cinematographer',NULL,NULL),(1334537,1477623,7,'editor',NULL,NULL),(1334537,2244094,8,'production_designer',NULL,NULL),(1334553,1095487,10,'cinematographer','director of photography',NULL),(1334553,1383,1,'actor',NULL,'[\"Warwick Wilson\"]'),(1334553,186728,2,'actor',NULL,'[\"John Taylor\"]'),(1334553,662511,3,'actor',NULL,'[\"Det. Morton\"]'),(1334553,21132,4,'actor',NULL,'[\"Roman\"]'),(1334553,1204442,5,'director',NULL,NULL),(1334553,2032824,6,'writer','written by',NULL),(1334553,856495,7,'producer','producer',NULL),(1334553,896131,8,'producer','producer',NULL),(1334553,1067825,9,'composer',NULL,NULL),(13345606,60228,10,'production_designer',NULL,NULL),(13345606,5685676,1,'actress',NULL,'[\"Teresa\"]'),(13345606,11156289,2,'actor',NULL,'[\"Caleb\"]'),(13345606,8609147,3,'actress',NULL,'[\"Jessica\"]'),(13345606,4591498,4,'actress',NULL,'[\"Beth\"]'),(13345606,2091846,5,'director',NULL,NULL),(13345606,849964,6,'producer','producer',NULL),(13345606,571642,7,'composer',NULL,NULL),(13345606,1103355,8,'cinematographer','director of photography',NULL),(13345606,1460154,9,'editor',NULL,NULL),(13352968,1737171,10,'cinematographer',NULL,NULL),(13352968,668,1,'actress',NULL,'[\"Nancy Stokes\"]'),(13352968,7580109,2,'actor',NULL,'[\"Leo Grande\"]'),(13352968,2877285,3,'actress',NULL,'[\"Becky\"]'),(13352968,12444764,4,'actor',NULL,'[\"Delivery Person\"]'),(13352968,1170520,5,'director',NULL,NULL),(13352968,1113539,6,'writer','written by',NULL),(13352968,1636876,7,'producer','producer',NULL),(13352968,1493950,8,'producer','producer',NULL),(13352968,719673,9,'composer',NULL,NULL),(1335975,572805,10,'producer','producer',NULL),(1335975,206,1,'actor',NULL,'[\"Kai\"]'),(1335975,760796,2,'actor',NULL,'[\"Oishi\"]'),(1335975,793069,3,'actress',NULL,'[\"Mika\"]'),(1335975,38355,4,'actor',NULL,'[\"Lord Kira\"]'),(1335975,727754,5,'director',NULL,NULL),(1335975,604555,6,'writer','screenplay',NULL),(1335975,24925,7,'writer','screenplay',NULL),(1335975,1023578,8,'writer','screen story by',NULL),(1335975,8330,9,'producer','producer',NULL),(1336608,335400,10,'producer','producer',NULL),(1336608,2584600,1,'actress',NULL,'[\"Sherrie Christian\"]'),(1336608,1546300,2,'actor',NULL,'[\"Drew Boley\"]'),(1336608,129,3,'actor',NULL,'[\"Stacee Jaxx\"]'),(1336608,285,4,'actor',NULL,'[\"Dennis Dupree\"]'),(1336608,788202,5,'director',NULL,NULL),(1336608,857620,6,'writer','screenplay by',NULL),(1336608,195476,7,'writer','screenplay by',NULL),(1336608,1615610,8,'writer','screenplay by',NULL),(1336608,316774,9,'producer','producer',NULL),(1336617,221995,10,'editor',NULL,NULL),(1336617,604,1,'actor',NULL,'[\"John\"]'),(1336617,673,2,'actress',NULL,'[\"Molly\"]'),(1336617,1706767,3,'actor',NULL,'[\"Cyrus\"]'),(1336617,1416,4,'actress',NULL,'[\"Jamie\"]'),(1336617,243231,5,'director',NULL,NULL),(1336617,243233,6,'director',NULL,NULL),(1336617,1545611,7,'producer','producer',NULL),(1336617,28787,8,'composer',NULL,NULL); +INSERT INTO `MoviesPeople` VALUES (1336617,1038157,9,'cinematographer','director of photography',NULL),(1336999,1857667,10,'composer',NULL,NULL),(1336999,80,1,'archive_sound',NULL,'[\"Voice of the Elephant Lamp\"]'),(1336999,426161,2,'actor',NULL,'[\"Alex\"]'),(1336999,1555145,3,'actor',NULL,'[\"Nate\"]'),(1336999,1422928,4,'actress',NULL,'[\"Dimity\"]'),(1336999,2083655,5,'director',NULL,NULL),(1336999,2317792,6,'writer','based on characters by',NULL),(1336999,2307199,7,'writer','based on characters by',NULL),(1336999,1038254,8,'writer','screenplay',NULL),(1336999,2590370,9,'producer','producer',NULL),(1337051,1271832,10,'actor',NULL,'[\"Prosecutor\"]'),(1337051,1058007,1,'actor',NULL,'[\"Cristi\"]'),(1337051,412096,2,'actor',NULL,'[\"Anghelache\"]'),(1337051,3434665,3,'actor',NULL,'[\"Nelu\"]'),(1337051,2453508,4,'actress',NULL,'[\"Anca\"]'),(1337051,1717949,5,'director',NULL,NULL),(1337051,1857454,6,'cinematographer',NULL,NULL),(1337051,1718343,7,'editor',NULL,NULL),(1337051,2688233,8,'production_designer',NULL,NULL),(1337051,5124496,9,'actress',NULL,'[\"Gina\"]'),(13375076,1491740,10,'writer','screen story by',NULL),(13375076,128,1,'actor',NULL,'[\"Father Gabriel Amorth\"]'),(13375076,4683167,2,'actor',NULL,'[\"Father Esquibel\"]'),(13375076,3012273,3,'actress',NULL,'[\"Julia\"]'),(13375076,626259,4,'actor',NULL,'[\"The Pope\"]'),(13375076,1170339,5,'director',NULL,NULL),(13375076,678104,6,'writer','screenplay by',NULL),(13375076,818746,7,'writer','screenplay by',NULL),(13375076,566979,8,'writer','screen story by',NULL),(13375076,2340423,9,'writer','screen story by',NULL),(1339268,3229180,1,'actress',NULL,'[\"Jeannie\"]'),(1339268,3228932,2,'actress',NULL,'[\"Lauren\"]'),(1339268,1493163,3,'actor',NULL,'[\"Merrill\"]'),(1339268,1183651,4,'actress',NULL,'[\"Corinne\"]'),(1339268,1216004,5,'director',NULL,NULL),(1339268,1160375,6,'producer','producer',NULL),(1339268,901074,7,'producer','producer',NULL),(1339268,3442,8,'cinematographer','director of photography',NULL),(1339302,8146780,10,'producer','producer',NULL),(1339302,1040968,1,'actor',NULL,'[\"Ichigo Kurosaki\"]'),(1339302,1046347,2,'actress',NULL,'[\"Rukia Kuchiki\"]'),(1339302,1435774,3,'actress',NULL,'[\"Homura\"]'),(1339302,436778,4,'actor',NULL,'[\"Shizuku\"]'),(1339302,8352,5,'director',NULL,NULL),(1339302,847176,6,'writer','screenplay',NULL),(1339302,1818197,7,'writer','manga',NULL),(1339302,5159316,8,'writer','screenplay',NULL),(1339302,4115082,9,'producer','producer',NULL),(1340108,1460414,1,'actor',NULL,'[\"Killer Bean\",\"Cappuccino\'s Nephew\",\"News Reporter\"]'),(1340108,973600,2,'actor',NULL,'[\"Detective Cromwell\",\"Vagan\"]'),(1340108,1331787,3,'actor',NULL,'[\"Cappuccino\",\"Bad Bean 10\",\"Bad Bean 11\"]'),(1340108,2304468,4,'actor',NULL,'[\"The Voice\",\"Harry\",\"Bartender\"]'),(1340108,506703,5,'director',NULL,NULL),(1340108,243943,6,'composer',NULL,NULL),(1340138,1911103,10,'producer','producer',NULL),(1340138,216,1,'actor',NULL,'[\"Guardian\"]'),(1340138,164809,2,'actor',NULL,'[\"John Connor\"]'),(1340138,3592338,3,'actress',NULL,'[\"Sarah Connor\"]'),(1340138,2541974,4,'actor',NULL,'[\"Kyle Reese\"]'),(1340138,851930,5,'director',NULL,NULL),(1340138,436164,6,'writer','written by',NULL),(1340138,527261,7,'writer','written by',NULL),(1340138,116,8,'writer','based on characters created by',NULL),(1340138,5036,9,'writer','based on characters created by',NULL),(13403046,1850507,10,'cinematographer','director of photography',NULL),(13403046,8402992,1,'actress',NULL,'[\"Noa\"]'),(13403046,1659221,2,'actor',NULL,'[\"Steve\"]'),(13403046,6851510,3,'actress',NULL,'[\"Mollie\"]'),(13403046,4490375,4,'actress',NULL,'[\"Penny\"]'),(13403046,6470216,5,'director',NULL,NULL),(13403046,2808340,6,'writer','written by',NULL),(13403046,570912,7,'producer','producer',NULL),(13403046,582111,8,'producer','producer',NULL),(13403046,3926614,9,'composer',NULL,NULL),(1340664,2502023,1,'actor',NULL,'[\"Oscar\"]'),(1340664,3232904,2,'director',NULL,NULL),(1340664,2783983,3,'writer','writer',NULL),(1340768,880744,10,'composer',NULL,NULL),(1340768,1169011,1,'actor',NULL,'[\"Anatoly Sergievsky\"]'),(1340768,579953,2,'actress',NULL,'[\"Florence Vassey\"]'),(1340768,664238,3,'actor',NULL,'[\"Frederick Trumper\"]'),(1340768,1525717,4,'actor',NULL,'[\"Alexander Molokov\"]'),(1340768,2139166,5,'director',NULL,NULL),(1340768,5358,6,'writer','book by',NULL),(1340768,46805,7,'producer','producer',NULL),(1340768,789602,8,'producer','producer',NULL),(1340768,27630,9,'composer',NULL,NULL),(1340773,330687,1,'actor',NULL,'[\"Bert Rodriguez\"]'),(1340773,1303,2,'actress',NULL,'[\"Elektra Luxx\",\"Celia\"]'),(1340773,652212,3,'actor',NULL,'[\"Jimmy Cojones\"]'),(1340773,2161148,4,'actor',NULL,'[\"Thief #1\"]'),(1340773,349406,5,'director',NULL,NULL),(1340773,1237698,6,'cinematographer',NULL,NULL),(1340773,111372,7,'editor',NULL,NULL),(1340773,2334452,8,'production_designer',NULL,NULL),(1340800,271479,10,'producer','producer',NULL),(1340800,198,1,'actor',NULL,'[\"George Smiley\"]'),(1340800,147,2,'actor',NULL,'[\"Bill Haydon\"]'),(1340800,362766,3,'actor',NULL,'[\"Ricki Tarr\"]'),(1340800,835016,4,'actor',NULL,'[\"Jim Prideaux\"]'),(1340800,19247,5,'director',NULL,NULL),(1340800,494170,6,'writer','based on the novel by',NULL),(1340800,2091799,7,'writer','screenplay by',NULL),(1340800,1661186,8,'writer','screenplay by',NULL),(1340800,79677,9,'producer','producer',NULL),(1341167,772251,10,'producer','producer',NULL),(1341167,11451,1,'actor',NULL,'[\"Alex\"]'),(1341167,1981893,2,'actor',NULL,'[\"Omar\"]'),(1341167,2253821,3,'actor',NULL,'[\"Faisal\"]'),(1341167,1315378,4,'actor',NULL,'[\"Waj\"]'),(1341167,606439,5,'director',NULL,NULL),(1341167,1095060,6,'writer','written by',NULL),(1341167,1104036,7,'writer','written by',NULL),(1341167,1006581,8,'writer','additional writing',NULL),(1341167,378591,9,'producer','producer',NULL),(1341188,1405,10,'cinematographer','director of photography',NULL),(1341188,702,1,'actress',NULL,'[\"Lisa\"]'),(1341188,748620,2,'actor',NULL,'[\"George\"]'),(1341188,5562,3,'actor',NULL,'[\"Matty\"]'),(1341188,197,4,'actor',NULL,'[\"Charles\"]'),(1341188,985,5,'director',NULL,NULL),(1341188,30572,6,'producer','producer',NULL),(1341188,548257,7,'producer','producer',NULL),(1341188,918463,8,'producer','producer',NULL),(1341188,1877,9,'composer',NULL,NULL),(1341341,3415444,10,'composer',NULL,NULL),(1341341,29400,1,'actor',NULL,'[\"Sam Davis\"]'),(1341341,235,2,'actress',NULL,'[\"Zoe\"]'),(1341341,1107127,3,'actor',NULL,'[\"Marshall Schmidt\"]'),(1341341,1195855,4,'actor',NULL,'[\"Whit Coutell\"]'),(1341341,935253,5,'director',NULL,NULL),(1341341,1950898,6,'producer','producer',NULL),(1341341,1480881,7,'producer','producer',NULL),(1341341,968789,8,'producer','producer',NULL),(1341341,818485,9,'producer','producer',NULL),(1341710,2054498,10,'editor',NULL,NULL),(1341710,39148,1,'actor',NULL,'[\"Marcus\"]'),(1341710,1120797,2,'actress',NULL,'[\"Carmen\"]'),(1341710,1725322,3,'actress',NULL,'[\"Sara\"]'),(1341710,2033655,4,'actor',NULL,'[\"Henryk\"]'),(1341710,1394062,5,'director',NULL,NULL),(1341710,3135723,6,'writer','written by',NULL),(1341710,1775955,7,'producer','producer',NULL),(1341710,3972,8,'composer',NULL,NULL),(1341710,1075598,9,'cinematographer','director of photography',NULL),(1342378,2068190,10,'editor',NULL,NULL),(1342378,3239179,1,'actress',NULL,'[\"The Girl\"]'),(1342378,740075,2,'actor',NULL,'[\"The Father\"]'),(1342378,356625,3,'actress',NULL,'[\"The Mother\"]'),(1342378,3801968,4,'actor',NULL,'[\"Petter\"]'),(1342378,249189,5,'director',NULL,NULL),(1342378,37238,6,'writer','screenplay',NULL),(1342378,648038,7,'producer','producer',NULL),(1342378,2265052,8,'composer',NULL,NULL),(1342378,887227,9,'cinematographer',NULL,NULL),(13430858,768095,10,'composer','composer',NULL),(13430858,7479714,1,'actor',NULL,'[\"Farooq\"]'),(13430858,11097119,2,'actress',NULL,'[\"Yasmin Khan\"]'),(13430858,4141252,3,'actress',NULL,'[\"Zoe Stevenson\"]'),(13430858,668,4,'actress',NULL,'[\"Cath Stevenson\"]'),(13430858,1408,5,'director',NULL,NULL),(13430858,2083894,6,'writer',NULL,NULL),(13430858,55717,7,'producer','producer',NULL),(13430858,79677,8,'producer','producer',NULL),(13430858,271479,9,'producer','producer',NULL),(1343092,552039,10,'producer','producer',NULL),(1343092,138,1,'actor',NULL,'[\"Jay Gatsby\"]'),(1343092,1659547,2,'actress',NULL,'[\"Daisy Buchanan\"]'),(1343092,249291,3,'actor',NULL,'[\"Tom Buchanan\"]'),(1343092,1497,4,'actor',NULL,'[\"Nick Carraway\"]'),(1343092,525303,5,'director',NULL,NULL),(1343092,668902,6,'writer','screenplay',NULL),(1343092,280234,7,'writer','based on the novel by',NULL),(1343092,279651,8,'producer','producer',NULL),(1343092,460451,9,'producer','producer',NULL),(1343097,343844,10,'composer',NULL,NULL),(1343097,638824,1,'actor',NULL,'[\"Mikael Blomkvist\"]'),(1343097,636426,2,'actress',NULL,'[\"Lisbeth Salander\"]'),(1343097,256890,3,'actress',NULL,'[\"Erika Berger\"]'),(1343097,356625,4,'actress',NULL,'[\"Annika Giannini\"]'),(1343097,19242,5,'director',NULL,NULL),(1343097,296926,6,'writer','writer',NULL),(1343097,2297183,7,'writer','novel',NULL),(1343097,752968,8,'writer','screenplay',NULL),(1343097,836673,9,'producer','producer',NULL),(1343727,716924,10,'producer','producer',NULL),(1343727,881631,1,'actor',NULL,'[\"Judge Dredd\"]'),(1343727,1880888,2,'actress',NULL,'[\"Anderson\"]'),(1343727,372176,3,'actress',NULL,'[\"Ma-Ma\"]'),(1343727,939943,4,'actress',NULL,'[\"Control Operator 1\"]'),(1343727,871428,5,'director',NULL,NULL),(1343727,905957,6,'writer','\'Judge Dredd\' created by',NULL),(1343727,264338,7,'writer','\'Judge Dredd\' created by',NULL),(1343727,307497,8,'writer','screenplay by',NULL),(1343727,531602,9,'producer','producer',NULL),(1345772,793152,10,'cinematographer',NULL,NULL),(1345772,3248988,1,'actress',NULL,'[\"Beth\"]'),(1345772,821278,2,'actress',NULL,'[\"Veronica\"]'),(1345772,1813878,3,'actor',NULL,'[\"Cameron\"]'),(1345772,3241371,4,'actress',NULL,'[\"Ivy\"]'),(1345772,3248303,5,'director',NULL,NULL),(1345772,3248970,6,'producer','producer',NULL),(1345772,1601745,7,'composer',NULL,NULL),(1345772,1116454,8,'composer',NULL,NULL),(1345772,3210749,9,'composer',NULL,NULL),(1345836,858799,10,'producer','producer',NULL),(1345836,288,1,'actor',NULL,'[\"Bruce Wayne\",\"Batman\"]'),(1345836,362766,2,'actor',NULL,'[\"Bane\"]'),(1345836,4266,3,'actress',NULL,'[\"Selina\"]'),(1345836,198,4,'actor',NULL,'[\"Commissioner Gordon\"]'),(1345836,634240,5,'director',NULL,NULL),(1345836,634300,6,'writer','screenplay',NULL),(1345836,275286,7,'writer','story',NULL),(1345836,4170,8,'writer','characters',NULL),(1345836,746273,9,'producer','producer',NULL),(13462472,717873,10,'producer','producer',NULL),(13462472,272,1,'actress',NULL,'[\"Shauna Loszinsky\"]'),(13462472,693799,2,'actor',NULL,'[\"Pierre Escande\"]'),(13462472,208426,3,'actress',NULL,'[\"Jeanne Escande\"]'),(13462472,517975,4,'actress',NULL,'[\"Cécilia\"]'),(13462472,850366,5,'director',NULL,NULL),(13462472,30681,6,'writer','original idea',NULL),(13462472,1077445,7,'writer','collaboration',NULL),(13462472,755389,8,'writer','screenplay',NULL),(13462472,1206845,9,'producer','producer',NULL),(13482828,3631,10,'cinematographer',NULL,NULL),(13482828,2244205,1,'actress',NULL,'[\"Sandra Kienzler\"]'),(13482828,339621,2,'actor',NULL,'[\"Georg Kienzler\"]'),(13482828,693799,3,'actor',NULL,'[\"Clément\"]'),(13482828,305368,4,'actress',NULL,'[\"Françoise\"]'),(13482828,361135,5,'director',NULL,NULL),(13482828,552909,6,'producer','producer',NULL),(13482828,577145,7,'producer','producer',NULL),(13482828,1871094,8,'producer','producer',NULL),(13482828,858196,9,'producer','producer',NULL),(1348327,5667,10,'cinematographer',NULL,NULL),(1348327,1376,1,'actress',NULL,'[\"Ann\"]'),(1348327,767,2,'actor',NULL,'[\"Georges\"]'),(1348327,64741,3,'actor',NULL,'[\"Thomas\"]'),(1348327,763022,4,'actress',NULL,'[\"Giulia\"]'),(1348327,415245,5,'director',NULL,NULL),(1348327,92444,6,'writer','collaboration',NULL),(1348327,703538,7,'writer','novel',NULL),(1348327,917946,8,'producer','producer',NULL),(1348327,6020,9,'composer',NULL,NULL),(1349451,2681,10,'cinematographer','director of photography',NULL),(1349451,4950,1,'actress',NULL,'[\"Laura Pickler\"]'),(1349451,2780578,2,'actress',NULL,'[\"Destiny\"]'),(1349451,123092,3,'actor',NULL,'[\"Bob Pickler\"]'),(1349451,1312575,4,'actress',NULL,'[\"Brooke\"]'),(1349451,1637768,5,'director',NULL,NULL),(1349451,9991049,6,'writer','written by',NULL),(1349451,6894,7,'producer','producer',NULL),(1349451,1913014,8,'producer','producer',NULL),(1349451,582171,9,'composer',NULL,NULL),(1349482,573732,10,'producer','producer',NULL),(1349482,587396,1,'actress',NULL,'[\"Lina\"]'),(1349482,1752072,2,'actress',NULL,'[\"Gloria\"]'),(1349482,1827488,3,'actress',NULL,'[\"Treyvonetta\"]'),(1349482,3218349,4,'actor',NULL,'[\"Cholo\"]'),(1349482,937306,5,'director',NULL,NULL),(1349482,2608327,6,'writer','written by',NULL),(1349482,1010379,7,'writer','written by',NULL),(1349482,112335,8,'producer','producer',NULL),(1349482,2149164,9,'producer','producer',NULL),(1350498,2954155,10,'production_designer',NULL,NULL),(1350498,1444,1,'actor',NULL,'[\"Allan Baxter\"]'),(1350498,316933,2,'actress',NULL,'[\"Emma MacNeil\"]'),(1350498,152059,3,'actor',NULL,'[\"Seiji Shimada\"]'),(1350498,2316340,4,'actor',NULL,'[\"Vince\"]'),(1350498,673512,5,'director',NULL,NULL),(1350498,490375,6,'producer','producer',NULL),(1350498,725808,7,'composer',NULL,NULL),(1350498,1635438,8,'cinematographer','director of photography',NULL),(1350498,1327673,9,'editor',NULL,NULL),(1351177,3254481,1,'actor',NULL,'[\"Morgan\"]'),(1351177,2554103,2,'actor',NULL,'[\"Johnny\"]'),(1351177,2857065,3,'actor',NULL,'[\"Ash\"]'),(1351177,2531742,4,'actress',NULL,'[\"Zombie Girl\"]'),(1351177,3247238,5,'director',NULL,NULL),(1351177,3717149,6,'composer',NULL,NULL),(1351177,3247004,7,'composer',NULL,NULL),(1351177,2863638,8,'cinematographer',NULL,NULL),(1351685,1506459,10,'producer','producer',NULL),(1351685,396558,1,'actor',NULL,'[\"Jack\"]'),(1351685,1804,2,'actor',NULL,'[\"Roderick\"]'),(1351685,191,3,'actor',NULL,'[\"Elmont\"]'),(1351685,631490,4,'actor',NULL,'[\"General Fallon\"]'),(1351685,1741,5,'director',NULL,NULL),(1351685,501359,6,'writer','screenplay',NULL),(1351685,3160,7,'writer','screenplay',NULL),(1351685,836081,8,'writer','screenplay',NULL),(1351685,229694,9,'writer','story',NULL),(13521006,2356249,10,'production_designer',NULL,NULL),(13521006,1618,1,'actor',NULL,'[\"Beau Wassermann\"]'),(13521006,526985,2,'actress',NULL,'[\"Mona Wassermann\"]'),(13521006,752407,3,'actress',NULL,'[\"Grace\"]'),(13521006,1447,4,'actor',NULL,'[\"Roger\"]'),(13521006,4170048,5,'director',NULL,NULL),(13521006,1185381,6,'producer','producer',NULL),(13521006,6438644,7,'composer',NULL,NULL),(13521006,1850507,8,'cinematographer',NULL,NULL),(13521006,2730909,9,'editor','editor',NULL),(1352824,718645,10,'producer','producer',NULL),(1352824,194,1,'actress',NULL,'[\"Catherine Stewart\"]'),(1352824,1086543,2,'actress',NULL,'[\"Chloe\"]'),(1352824,553,3,'actor',NULL,'[\"David Stewart\"]'),(1352824,1302735,4,'actor',NULL,'[\"Michael Stewart\"]'),(1352824,382,5,'director',NULL,NULL),(1352824,933379,6,'writer','screenplay',NULL),(1352824,284774,7,'writer','motion picture \"Nathalie\"',NULL),(1352824,166641,8,'producer','producer',NULL),(1352824,575817,9,'producer','producer',NULL),(13539646,7286732,10,'writer','based on the novel by',NULL),(13539646,943104,1,'actor',NULL,'[\"Liu Peiqiang\"]'),(13539646,490489,2,'actor',NULL,'[\"Tu Hengyu\"]'),(13539646,10888440,3,'actor',NULL,NULL),(13539646,4788761,4,'actress',NULL,'[\"Space Elevator Female Attacker\"]'),(13539646,4914792,5,'director',NULL,NULL),(13539646,2662207,6,'director','Iceland unit director',NULL),(13539646,9400702,7,'writer',NULL,NULL),(13539646,4069148,8,'writer',NULL,NULL),(13539646,8824223,9,'writer',NULL,NULL),(1355630,207532,10,'cinematographer',NULL,NULL),(1355630,1631269,1,'actress',NULL,'[\"Mia Hall\"]'),(1355630,257969,2,'actress',NULL,'[\"Kat\"]'),(1355630,3284401,3,'actor',NULL,'[\"Adam\"]'),(1355630,502671,4,'actor',NULL,'[\"Denny\"]'),(1355630,191712,5,'director',NULL,NULL),(1355630,189272,6,'writer','screenplay',NULL),(1355630,3259208,7,'writer','novel',NULL),(1355630,1327019,8,'producer','producer',NULL),(1355630,673137,9,'composer',NULL,NULL),(1355631,2210071,10,'producer','producer',NULL),(1355631,186505,1,'actor',NULL,'[\"Robert Mazur\"]'),(1355631,491,2,'actor',NULL,'[\"Emir Abreu\"]'),(1355631,1208167,3,'actress',NULL,'[\"Kathy Ertz\"]'),(1355631,752407,4,'actress',NULL,'[\"Bonni Tischler\"]'),(1355631,1026778,5,'director',NULL,NULL),(1355631,5984688,6,'writer','screenplay',NULL),(1355631,2452397,7,'writer','based on the book on',NULL),(1355631,2228329,8,'producer','producer',NULL),(1355631,781829,9,'producer','producer',NULL),(1355638,1068771,10,'cinematographer',NULL,NULL),(1355638,23832,1,'actor',NULL,'[\"Le prince\"]'),(1355638,2082567,2,'actress',NULL,'[\"La fille du rabbin\"]'),(1355638,1460782,3,'actor',NULL,'[\"Le reporter\"]'),(1355638,1675534,4,'actress',NULL,'[\"Une copine de Zlabya\"]'),(1355638,3284014,5,'director',NULL,NULL),(1355638,2677924,6,'director',NULL,NULL),(1355638,4387238,7,'writer','screenplay',NULL),(1355638,3154125,8,'producer','producer',NULL),(1355638,1626735,9,'composer',NULL,NULL),(1355644,605775,10,'producer','producer',NULL),(1355644,2225369,1,'actress',NULL,'[\"Aurora Lane\"]'),(1355644,695435,2,'actor',NULL,'[\"Jim Preston\"]'),(1355644,790688,3,'actor',NULL,'[\"Arthur\"]'),(1355644,401,4,'actor',NULL,'[\"Gus Mancuso\"]'),(1355644,878763,5,'director',NULL,NULL),(1355644,3123612,6,'writer','written by',NULL),(1355644,1336500,7,'producer','producer',NULL),(1355644,3052130,8,'producer','producer',NULL),(1355644,1506459,9,'producer','producer',NULL),(1355683,971956,10,'producer','producer',NULL),(1355683,136,1,'actor',NULL,'[\"James \'Whitey\' Bulger\"]'),(1355683,1212722,2,'actor',NULL,'[\"Billy Bulger\"]'),(1355683,424848,3,'actress',NULL,'[\"Lindsey Cyr\"]'),(1355683,249291,4,'actor',NULL,'[\"John Connolly\"]'),(1355683,178376,5,'director',NULL,NULL),(1355683,3286851,6,'writer','screenplay',NULL),(1355683,125336,7,'writer','screenplay',NULL),(1355683,3251662,8,'writer','based on the book by',NULL),(1355683,3238883,9,'writer','based on the book by',NULL),(13560574,3219738,10,'composer',NULL,NULL),(13560574,5301405,1,'actress',NULL,'[\"Maxine\",\"Pearl\"]'),(13560574,4911194,2,'actress',NULL,'[\"Lorraine\"]'),(13560574,811242,3,'actress',NULL,'[\"Bobby-Lynne\"]'),(13560574,3264596,4,'actor',NULL,'[\"Jackson\"]'),(13560574,1488800,5,'director',NULL,NULL),(13560574,2693873,6,'producer','producer',NULL),(13560574,8368748,7,'producer','producer',NULL),(13560574,1834530,8,'producer','producer',NULL),(13560574,61045,9,'composer',NULL,NULL),(1356380,3404705,10,'actress',NULL,'[\"Nandira Patel\"]'),(1356380,779325,1,'actress',NULL,'[\"Precious Ramotswe\"]'),(1356380,741242,2,'actress',NULL,'[\"Grace Makutsi\"]'),(1356380,1748634,3,'actor',NULL,'[\"JLB Matekoni\"]'),(1356380,239221,4,'actor',NULL,'[\"BK\"]'),(1356380,2983641,5,'actor',NULL,'[\"Charlie\",\"Apprentice 2\"]'),(1356380,2467397,6,'actor',NULL,'[\"Fanwell\",\"Apprentice 1\"]'),(1356380,3371495,7,'actor',NULL,'[\"Richard Makutsi\"]'),(1356380,665370,8,'actor',NULL,'[\"Mr. Patel\"]'),(1356380,2595894,9,'actress',NULL,'[\"Florence Peko\"]'),(13575806,340003,10,'composer',NULL,NULL),(13575806,51509,1,'actor',NULL,'[\"Chaz\"]'),(13575806,2423358,2,'actor',NULL,'[\"Pretty Boy\"]'),(13575806,3872555,3,'actress',NULL,'[\"Zoe\"]'),(13575806,2653929,4,'actor',NULL,'[\"Nigel\"]'),(13575806,187912,5,'director',NULL,NULL),(13575806,208005,6,'director',NULL,NULL),(13575806,504298,7,'writer',NULL,NULL),(13575806,11281945,8,'writer','additional writing',NULL),(13575806,2499267,9,'producer','producer',NULL),(13603966,1602154,10,'producer','producer',NULL),(13603966,2933757,1,'actress',NULL,'[\"Rachel Stone\"]'),(13603966,1946193,2,'actor',NULL,'[\"Parker\"]'),(13603966,1017633,3,'actress',NULL,'[\"Keya Dhawan\"]'),(13603966,2728286,4,'actress',NULL,'[\"Yang\"]'),(13603966,2197777,5,'director',NULL,NULL),(13603966,1421638,6,'writer','screenplay by',NULL),(13603966,2284377,7,'writer','screenplay by',NULL),(13603966,193268,8,'producer','producer',NULL),(13603966,1911103,9,'producer','producer',NULL),(1360860,3732758,10,'composer',NULL,NULL),(1360860,267042,1,'actress',NULL,'[\"Sepideh\"]'),(1360860,1486911,2,'actor',NULL,'[\"Ahmad\"]'),(1360860,1267552,3,'actress',NULL,'[\"Elly\"]'),(1360860,13552091,4,'actor',NULL,'[\"Mehran\"]'),(1360860,1410815,5,'director',NULL,NULL),(1360860,1011363,6,'writer','story by',NULL),(1360860,3752010,7,'producer','producer',NULL),(1360860,13666732,8,'producer','producer',NULL),(1360860,3732846,9,'producer','producer',NULL),(13610562,769930,10,'editor',NULL,NULL),(13610562,10036531,1,'actor',NULL,'[\"Gunther\"]'),(13610562,4478685,2,'actor',NULL,'[\"Bola\"]'),(13610562,784818,3,'actor',NULL,'[\"Gavin\"]'),(13610562,3906046,4,'actress',NULL,'[\"Pippa\"]'),(13610562,31976,5,'director',NULL,NULL),(13610562,103702,6,'writer','written by',NULL),(13610562,28787,7,'composer',NULL,NULL),(13610562,1913095,8,'composer',NULL,NULL),(13610562,810430,9,'cinematographer','director of photography',NULL),(1361318,303983,10,'producer','producer',NULL),(1361318,290556,1,'actor',NULL,'[\"Tom Wright\"]'),(1361318,5028,2,'actress',NULL,'[\"Anna Wright\"]'),(1361318,929489,3,'actor',NULL,'[\"DI John Halden\"]'),(1361318,1082477,4,'actor',NULL,'[\"Khan\"]'),(1361318,313227,5,'director',NULL,NULL),(1361318,2951879,6,'writer','based on the novel by',NULL),(1361318,1031176,7,'writer','screenplay by',NULL),(1361318,146120,8,'producer','producer',NULL),(1361318,2447927,9,'producer','producer',NULL),(1361835,773805,10,'producer','producer',NULL),(1361835,860947,1,'actor',NULL,'[\"Peer Sommer\"]'),(1361835,585098,2,'actress',NULL,'[\"Julia Friedrich\"]'),(1361835,617852,3,'actor',NULL,'[\"Timo Friedrich\"]'),(1361835,765911,4,'actress',NULL,'[\"Elena Lange\"]'),(1361835,2171633,5,'director',NULL,NULL),(1361835,3469217,6,'writer','novel \"Das Schweigen\"',NULL),(1361835,1134107,7,'producer','producer',NULL),(1361835,1296729,8,'producer','producer',NULL),(1361835,1619929,9,'producer','producer',NULL),(1362058,1756539,10,'composer',NULL,NULL),(1362058,1727356,1,'actor',NULL,'[\"Terry\"]'),(1362058,2016685,2,'actor',NULL,'[\"Andy\"]'),(1362058,752740,3,'actress',NULL,'[\"Katy\"]'),(1362058,858500,4,'actor',NULL,'[\"Mental Mickey\"]'),(1362058,2775497,5,'director',NULL,NULL),(1362058,1231249,6,'writer','screenplay',NULL),(1362058,1712417,7,'writer','screenplay',NULL),(1362058,2448068,8,'producer','producer',NULL),(1362058,4234703,9,'producer','producer',NULL),(13623880,506613,10,'producer','producer',NULL),(13623880,7481311,1,'actor',NULL,'[\"Nick Daley\"]'),(13623880,5857152,2,'actor',NULL,'[\"Dr. McPhee\"]'),(13623880,4393560,3,'actress',NULL,'[\"Joan of Arc\"]'),(13623880,2149142,4,'actress',NULL,'[\"Queen Nefertiti\"]'),(13623880,200402,5,'director',NULL,NULL),(13623880,4127778,6,'director',NULL,NULL),(13623880,209589,7,'writer','screenplay by',NULL),(13623880,771547,8,'writer','screenplay by',NULL),(13623880,2025683,9,'writer','based on the book by',NULL),(1362534,918400,10,'production_designer',NULL,NULL),(1362534,471253,1,'actress',NULL,'[\"Petra Koslowski\"]'),(1362534,110259,2,'actor',NULL,'[\"Hans-Uwe Petersen\"]'),(1362534,415733,3,'actress',NULL,'[\"Inge\"]'),(1362534,382321,4,'actor',NULL,'[\"Knud\"]'),(1362534,1081521,5,'director',NULL,NULL),(1362534,916579,6,'writer',NULL,NULL),(1362534,509549,7,'producer','producer',NULL),(1362534,14358,8,'cinematographer',NULL,NULL),(1362534,1983733,9,'editor',NULL,NULL),(1365050,1889450,10,'producer','producer',NULL),(1365050,6781688,1,'actor',NULL,'[\"Agu\"]'),(1365050,7636995,2,'actor',NULL,'[\"Dike\"]'),(1365050,7636996,3,'actor',NULL,'[\"Village Constable\"]'),(1365050,7636997,4,'actor',NULL,'[\"Ecomod 2nd Lieutenant\"]'),(1365050,1560977,5,'director',NULL,NULL),(1365050,3303697,6,'writer','based on the novel by',NULL),(1365050,3259054,7,'producer','producer',NULL),(1365050,252961,8,'producer','producer',NULL),(1365050,442079,9,'producer','producer',NULL),(13650600,4037960,10,'composer',NULL,NULL),(13650600,5518972,1,'actor',NULL,'[\"Sean\"]'),(13650600,5060159,2,'actor',NULL,'[\"Kunle\"]'),(13650600,6855165,3,'actor',NULL,'[\"Carlos\"]'),(13650600,4248775,4,'actress',NULL,'[\"Maddy\"]'),(13650600,3656210,5,'director',NULL,NULL),(13650600,4944814,6,'writer','written by',NULL),(13650600,2125212,7,'producer','producer',NULL),(13650600,3301460,8,'producer','producer',NULL),(13650600,2327099,9,'producer','producer',NULL),(13651628,999118,10,'producer','producer',NULL),(13651628,12628737,1,'actress',NULL,'[\"Suzu\",\"Belle\"]'),(13651628,6954008,2,'actor',NULL,'[\"Shinobu Hisatake\"]'),(13651628,2202409,3,'actor',NULL,'[\"Shinjiro Chikami\"]'),(13651628,6119056,4,'actress',NULL,'[\"Ruka Watanabe\"]'),(13651628,396074,5,'director',NULL,NULL),(13651628,4384370,6,'producer','producer',NULL),(13651628,2929057,7,'producer','producer',NULL),(13651628,2510203,8,'producer','producer',NULL),(13651628,1315809,9,'producer','producer',NULL),(1365519,2824501,10,'writer',NULL,NULL),(1365519,2539953,1,'actress',NULL,'[\"Lara Croft\"]'),(1365519,922035,2,'actor',NULL,'[\"Richard Croft\"]'),(1365519,324658,3,'actor',NULL,'[\"Mathias Vogel\"]'),(1365519,943079,4,'actor',NULL,'[\"Lu Ren\"]'),(1365519,1012385,5,'director',NULL,NULL),(1365519,4039044,6,'writer','screenplay by',NULL),(1365519,3322414,7,'writer','screenplay by',NULL),(1365519,2489193,8,'writer','story by',NULL),(1365519,1897248,9,'writer',NULL,NULL),(1366344,935060,10,'composer',NULL,NULL),(1366344,1706767,1,'actor',NULL,'[\"Noah Griffith\"]'),(1366344,310966,2,'actress',NULL,'[\"Marisa Lewis\"]'),(1366344,5377,3,'actor',NULL,'[\"Karl\"]'),(1366344,2504006,4,'actor',NULL,'[\"Slater\"]'),(1366344,337773,5,'director',NULL,NULL),(1366344,2651299,6,'writer','written by',NULL),(1366344,848966,7,'writer','written by',NULL),(1366344,6894,8,'producer','producer',NULL),(1366344,1545234,9,'composer',NULL,NULL),(13669038,600261,10,'cinematographer',NULL,NULL),(13669038,1913734,1,'actress',NULL,'[\"Ona\"]'),(13669038,2946516,2,'actress',NULL,'[\"Salome\"]'),(13669038,2976580,3,'actress',NULL,'[\"Mariche\"]'),(13669038,531,4,'actress',NULL,'[\"Scarface Janz\"]'),(13669038,1631,5,'director',NULL,NULL),(13669038,2700470,6,'writer','based upon the book by',NULL),(13669038,306890,7,'producer','producer',NULL),(13669038,1250070,8,'producer','producer',NULL),(13669038,3723390,9,'composer','composer',NULL),(13675832,4936789,10,'actor',NULL,'[\"Tanju\"]'),(13675832,5831457,1,'actor',NULL,'[\"Yilmaz\",\"Dominus\"]'),(13675832,7946031,2,'actor',NULL,'[\"Ilkkan\",\"Barlibay\",\"Mergamud Imin\"]'),(13675832,7705136,3,'actor',NULL,'[\"Ersoy\",\"Boyga Hakan\",\"Ili Udu\"]'),(13675832,6895563,4,'actress',NULL,'[\"Esra\",\"Lucretia\"]'),(13675832,12317014,5,'actress',NULL,'[\"Ümran\"]'),(13675832,8874944,6,'actor',NULL,'[\"Berk\",\"Kutalmis\"]'),(13675832,10029946,7,'actor',NULL,'[\"Moliere\",\"Yavuz\"]'),(13675832,10612592,8,'actress',NULL,'[\"Imge\",\"Livia\"]'),(13675832,3719585,9,'actor',NULL,'[\"Magistra Maximus\",\"Tulumcu Mithat\"]'),(1368491,2311248,10,'production_designer',NULL,NULL),(1368491,2046763,1,'actor',NULL,'[\"Miguel\"]'),(1368491,39978,2,'actress',NULL,'[\"Mariela\"]'),(1368491,136572,3,'actor',NULL,'[\"Santiago\"]'),(1368491,1178239,4,'actress',NULL,'[\"Sra. La Rosa\"]'),(1368491,1659906,5,'director',NULL,NULL),(1368491,1085511,6,'producer','producer',NULL),(1368491,2639868,7,'composer',NULL,NULL),(1368491,1064395,8,'cinematographer',NULL,NULL),(1368491,1527128,9,'editor',NULL,NULL),(1369706,546152,10,'producer','producer',NULL),(1369706,1720028,1,'actress',NULL,'[\"Kristen\"]'),(1369706,336701,2,'actress',NULL,'[\"Emily\"]'),(1369706,1263939,3,'actress',NULL,'[\"Sarah\"]'),(1369706,3142880,4,'actress',NULL,'[\"Zoey\"]'),(1369706,118,5,'director',NULL,NULL),(1369706,1726531,6,'writer','written by',NULL),(1369706,1726912,7,'writer','written by',NULL),(1369706,88756,8,'producer','producer',NULL),(1369706,542551,9,'producer','producer',NULL),(1370212,1542051,10,'actor',NULL,'[\"Grocer\"]'),(1370212,2379003,1,'actress',NULL,'[\"Hayat\"]'),(1370212,1698655,2,'actor',NULL,'[\"Father\"]'),(1370212,948004,3,'actor',NULL,'[\"Grandfather\"]'),(1370212,3314528,4,'actress',NULL,'[\"Kamile\"]'),(1370212,258732,5,'director',NULL,NULL),(1370212,40313,6,'producer','producer',NULL),(1370212,380827,7,'cinematographer',NULL,NULL),(1370212,4363565,8,'actor',NULL,'[\"Man\"]'),(1370212,3325358,9,'actor',NULL,'[\"Boy\"]'),(1371111,36155,10,'producer','producer',NULL),(1371111,158,1,'actor',NULL,'[\"Dr. Henry Goose\",\"Hotel Manager\",\"Isaac Sachs\"]'),(1371111,932,2,'actress',NULL,'[\"Native Woman\",\"Jocasta Ayrs\",\"Luisa Rey\"]'),(1371111,424,3,'actor',NULL,'[\"Rev. Giles Horrox\",\"Hotel Heavy\",\"Lloyd Hooks\"]'),(1371111,915989,4,'actor',NULL,'[\"Haskell Moore\",\"Tadeusz Kesselring\",\"Bill Smoke\"]'),(1371111,878756,5,'director',NULL,NULL),(1371111,905154,6,'director',NULL,NULL),(1371111,905152,7,'director',NULL,NULL),(1371111,3290967,8,'writer','novel \"Cloud Atlas\"',NULL),(1371111,4339295,9,'writer','additional material',NULL),(1371150,820987,10,'cinematographer',NULL,NULL),(1371150,867,1,'actor',NULL,'[\"Judd Altman\"]'),(1371150,275486,2,'actress',NULL,'[\"Wendy Altman\"]'),(1371150,404,3,'actress',NULL,'[\"Hilary Altman\"]'),(1371150,3485845,4,'actor',NULL,'[\"Phillip Altman\"]'),(1371150,506613,5,'director',NULL,NULL),(1371150,2267086,6,'writer','screenplay',NULL),(1371150,5170107,7,'producer','producer',NULL),(1371150,918463,8,'producer','producer',NULL),(1371150,315974,9,'composer',NULL,NULL),(1371155,207532,10,'cinematographer','director of photography',NULL),(1371155,1020089,1,'actress',NULL,'[\"Rita O\'Grady\"]'),(1371155,1364,2,'actor',NULL,'[\"Albert Passingham\"]'),(1371155,2057859,3,'actress',NULL,'[\"Brenda\"]'),(1371155,1785575,4,'actress',NULL,'[\"Sandra\"]'),(1371155,170719,5,'director',NULL,NULL),(1371155,412470,6,'writer','written by',NULL),(1371155,439563,7,'producer','producer',NULL),(1371155,941262,8,'producer','producer',NULL),(1371155,3417,9,'composer',NULL,NULL),(1371585,1429767,10,'writer',NULL,NULL),(1371585,490513,1,'actor',NULL,'[\"Panther\"]'),(1371585,719104,2,'actor',NULL,'[\"Inspector Cheung\"]'),(1371585,1481335,3,'actress',NULL,'[\"Teresa\"]'),(1371585,1078308,4,'actress',NULL,'[\"Connie\"]'),(1371585,864775,5,'director',NULL,NULL),(1371585,1104594,6,'writer',NULL,NULL),(1371585,1396561,7,'writer',NULL,NULL),(1371585,938949,8,'writer',NULL,NULL),(1371585,946883,9,'writer',NULL,NULL),(1371630,849222,10,'production_designer',NULL,NULL),(1371630,46277,1,'actress',NULL,'[\"Nozomi\"]'),(1371630,33152,2,'actor',NULL,'[\"Junichi\"]'),(1371630,1441714,3,'actor',NULL,'[\"Hideo\"]'),(1371630,643885,4,'actor',NULL,'[\"Air Doll Maker\"]'),(1371630,466153,5,'director',NULL,NULL),(1371630,2607405,6,'writer','manga',NULL),(1371630,1116657,7,'producer','producer',NULL),(1371630,3603074,8,'composer',NULL,NULL),(1371630,496742,9,'cinematographer',NULL,NULL),(1372301,3496121,10,'composer',NULL,NULL),(1372301,3269518,1,'actress',NULL,'[\"Edit\"]'),(1372301,322977,2,'actor',NULL,'[\"Edi\"]'),(1372301,754807,3,'actress',NULL,'[\"Keva\"]'),(1372301,469398,4,'actor',NULL,'[\"Deda\"]'),(1372301,3470883,5,'director',NULL,NULL),(1372301,3510028,6,'director','co-director',NULL),(1372301,3515732,7,'director','co-director',NULL),(1372301,194143,8,'producer','producer',NULL),(1372301,430846,9,'producer','executive producer',NULL),(1372306,919035,10,'producer','producer',NULL),(1372306,2129662,1,'actress',NULL,'[\"Sammy Smalls\"]'),(1372306,719321,2,'actor',NULL,'[\"Eugene Zaslavsky\"]'),(1372306,1650932,3,'actress',NULL,'[\"Sylvia\"]'),(1372306,567852,4,'actor',NULL,'[\"Mr. Smalls\"]'),(1372306,498271,5,'director',NULL,NULL),(1372306,160942,6,'writer','story editor',NULL),(1372306,683111,7,'writer','story editor',NULL),(1372306,1121230,8,'producer','producer',NULL),(1372306,881823,9,'producer','producer',NULL),(1372686,1011065,10,'composer',NULL,NULL),(1372686,146,1,'actor',NULL,'[\"Caius Martius Coriolanus\"]'),(1372686,124930,2,'actor',NULL,'[\"Tullus Aufidius\"]'),(1372686,4051,3,'actor',NULL,'[\"Menenius\"]'),(1372686,44073,4,'actress',NULL,'[\"First Citizen (Tamora)\"]'),(1372686,517589,5,'writer','screenplay',NULL),(1372686,636,6,'writer','play',NULL),(1372686,848932,7,'producer','producer',NULL),(1372686,1507217,8,'producer','producer',NULL),(1372686,883267,9,'producer','producer',NULL),(1374989,1003922,10,'producer','producer',NULL),(1374989,4141252,1,'actress',NULL,'[\"Elizabeth Bennet\"]'),(1374989,727165,2,'actor',NULL,'[\"Mr. Darcy\"]'),(1374989,1658935,3,'actor',NULL,'[\"George Wickham\"]'),(1374989,2757333,4,'actress',NULL,'[\"Jane Bennet\"]'),(1374989,824882,5,'director',NULL,NULL),(1374989,807,6,'writer','Quirk Books novel',NULL),(1374989,334381,7,'writer','Quirk Books novel',NULL),(1374989,124652,8,'producer','producer',NULL),(1374989,572014,9,'producer','producer',NULL),(1375666,245596,10,'production_designer',NULL,NULL),(1375666,138,1,'actor',NULL,'[\"Cobb\"]'),(1375666,330687,2,'actor',NULL,'[\"Arthur\"]'),(1375666,680983,3,'actor',NULL,'[\"Ariadne\"]'),(1375666,913822,4,'actor',NULL,'[\"Saito\"]'),(1375666,634240,5,'director',NULL,NULL),(1375666,858799,6,'producer','producer',NULL),(1375666,1877,7,'composer',NULL,NULL),(1375666,2892,8,'cinematographer','director of photography',NULL),(1375666,809059,9,'editor',NULL,NULL),(1375670,182363,10,'editor',NULL,NULL),(1375670,1191,1,'actor',NULL,'[\"Lenny Feder\"]'),(1375670,161,2,'actress',NULL,'[\"Roxanne Chase-Feder\"]'),(1375670,416673,3,'actor',NULL,'[\"Eric Lamonsoff\"]'),(1375670,1674,4,'actor',NULL,'[\"Kurt McKenzie\"]'),(1375670,240797,5,'director',NULL,NULL),(1375670,937748,6,'writer','written by',NULL),(1375670,316406,7,'producer','producer',NULL),(1375670,340003,8,'composer',NULL,NULL),(1375670,5856,9,'cinematographer','director of photography',NULL),(1376195,4545,10,'cinematographer','director of photography',NULL),(1376195,343472,1,'actor',NULL,'[\"The Montana Kid\"]'),(1376195,347149,2,'actress',NULL,'[\"Jane Taylor\"]'),(1376195,1682420,3,'actor',NULL,'[\"Corporal Jonathan Kent\"]'),(1376195,3569542,4,'actress',NULL,'[\"Adell\"]'),(1376195,680889,5,'director',NULL,NULL),(1376195,275651,6,'producer','producer',NULL),(1376195,373812,7,'producer','producer',NULL),(1376195,932144,8,'producer','producer',NULL),(1376195,444562,9,'composer',NULL,NULL),(1376213,1028742,10,'producer','producer',NULL),(1376213,2902567,1,'actor',NULL,'[\"Mariah Mundi\"]'),(1376213,790688,2,'actor',NULL,'[\"Charity\"]'),(1376213,372176,3,'actress',NULL,'[\"Monica\"]'),(1376213,554,4,'actor',NULL,'[\"Otto Luger\"]'),(1376213,628146,5,'director',NULL,NULL),(1376213,995597,6,'writer','screenplay',NULL),(1376213,3953,7,'writer','screenplay',NULL),(1376213,2239151,8,'writer','based on the novel by',NULL),(1376213,1776365,9,'producer','producer',NULL),(1376233,1699507,1,'actress',NULL,'[\"Meris Canfield\"]'),(1376233,1208009,2,'actor',NULL,'[\"Mitch Canfield\"]'),(1376233,1098114,3,'actress',NULL,'[\"Briann Lockwood\"]'),(1376233,539784,4,'actor',NULL,'[\"Masud\"]'),(1376233,922487,5,'director',NULL,NULL),(1376233,920256,6,'composer','music composer',NULL),(1379177,2605345,1,'actress',NULL,'[\"Alice Creed\"]'),(1379177,550371,2,'actor',NULL,'[\"Vic\"]'),(1379177,1161994,3,'actor',NULL,'[\"Danny\"]'),(1379177,2128335,4,'director',NULL,NULL),(1379177,1214083,5,'producer','producer',NULL),(1379177,2169909,6,'composer',NULL,NULL),(1379177,1104715,7,'cinematographer','director of photography',NULL),(1379177,248595,8,'editor',NULL,NULL),(1379177,264245,9,'production_designer',NULL,NULL),(1379182,1176651,1,'actor',NULL,'[\"Father\"]'),(1379182,885091,2,'actress',NULL,'[\"Mother\"]'),(1379182,1465326,3,'actress',NULL,'[\"Older Daughter\"]'),(1379182,3217334,4,'actor',NULL,'[\"Son\"]'),(1379182,487166,5,'director',NULL,NULL),(1379182,3328207,6,'writer','writer',NULL),(1379182,3446304,7,'producer','producer',NULL),(1379182,1531046,8,'cinematographer',NULL,NULL),(1379182,561430,9,'editor',NULL,NULL),(1379222,321333,10,'producer','producer',NULL),(1379222,710938,1,'actress',NULL,'[\"Sonia\"]'),(1379222,863599,2,'actor',NULL,'[\"Guido\"]'),(1379222,1179321,3,'actress',NULL,'[\"Margherita\"]'),(1379222,1614523,4,'actor',NULL,'[\"Riccardo\"]'),(1379222,3321297,5,'director',NULL,NULL),(1379222,1453153,6,'writer','writer',NULL),(1379222,2002638,7,'writer','writer',NULL),(1379222,2827922,8,'writer','writer',NULL),(1379222,162317,9,'producer','producer',NULL),(1381404,1136263,10,'cinematographer','director of photography',NULL),(1381404,602,1,'actor',NULL,'[\"Jim Grant\",\"Nick Sloan\"]'),(1381404,1779870,2,'actress',NULL,'[\"Rebecca Osborne\"]'),(1381404,1804,3,'actor',NULL,'[\"Ray Fuller\"]'),(1381404,560,4,'actor',NULL,'[\"Donal Fitzgerald\"]'),(1381404,229644,5,'writer','screenplay by',NULL),(1381404,1428002,6,'writer','based on the novel by',NULL),(1381404,1291566,7,'producer','producer',NULL),(1381404,2250139,8,'producer','producer',NULL),(1381404,553498,9,'composer',NULL,NULL),(1381413,1614494,10,'producer','executive producer',NULL),(1381413,227759,1,'actor',NULL,'[\"K.C. Munk\"]'),(1381413,95478,2,'actor',NULL,'[\"Jack Gomes\"]'),(1381413,58178,3,'actor',NULL,'[\"Bob Withers\"]'),(1381413,114,4,'actor',NULL,'[\"Bernie Lake\"]'),(1381413,734319,5,'director',NULL,NULL),(1381413,170462,6,'writer','written by',NULL),(1381413,125698,7,'producer','producer',NULL),(1381413,3416790,8,'producer','producer',NULL),(1381413,2149083,9,'producer','line producer',NULL),(1381512,1754757,10,'composer',NULL,NULL),(1381512,3523702,1,'actress',NULL,'[\"Yoshie Kasuga\"]'),(1381512,1327092,2,'actress',NULL,'[\"Kikue Kasuga\"]'),(1381512,1102191,3,'actor',NULL,'[\"Hikaru Kageno\"]'),(1381512,407562,4,'actress',NULL,'[\"Kinu\"]'),(1381512,1175724,5,'director',NULL,NULL),(1381512,3537659,6,'producer','producer',NULL),(1381512,1514214,7,'producer','producer',NULL),(1381512,2388560,8,'producer','producer',NULL),(1381512,3520134,9,'producer','producer',NULL),(13833688,508732,10,'cinematographer',NULL,NULL),(13833688,409,1,'actor',NULL,'[\"Charlie\"]'),(13833688,5584750,2,'actress',NULL,'[\"Ellie\"]'),(13833688,1339223,3,'actor',NULL,'[\"Thomas\"]'),(13833688,2186865,4,'actress',NULL,'[\"Liz\"]'),(13833688,4716,5,'director',NULL,NULL),(13833688,5926708,6,'writer','written by',NULL),(13833688,206154,7,'producer','producer',NULL),(13833688,359504,8,'producer','producer',NULL),(13833688,1387379,9,'composer',NULL,NULL),(13841850,1134771,10,'cinematographer','director of photography',NULL),(13841850,2976580,1,'actress',NULL,'[\"Harper\"]'),(13841850,1239499,2,'actor',NULL,'[\"Geoffrey\"]'),(13841850,5469396,3,'actor',NULL,'[\"James\"]'),(13841850,4587360,4,'actress',NULL,'[\"Riley\"]'),(13841850,307497,5,'director',NULL,NULL),(13841850,531602,6,'producer','producer',NULL),(13841850,716924,7,'producer','producer',NULL),(13841850,57856,8,'composer',NULL,NULL),(13841850,1367927,9,'composer',NULL,NULL),(13845792,6708916,10,'producer','producer',NULL),(13845792,6082617,1,'actress',NULL,'[\"Teresita\"]'),(13845792,998846,2,'actor',NULL,NULL),(13845792,3224597,3,'actress',NULL,'[\"Claudia\"]'),(13845792,6689427,4,'actor',NULL,'[\"Conrrado\"]'),(13845792,3054468,5,'director',NULL,NULL),(13845792,6012564,6,'writer',NULL,NULL),(13845792,3188011,7,'writer',NULL,NULL),(13845792,2614993,8,'producer','producer',NULL),(13845792,1375303,9,'producer','producer',NULL),(1384925,305558,1,'actor',NULL,'[\"Kaí\"]'),(1384925,103797,2,'actress',NULL,'[\"Vania\"]'),(1384925,865891,3,'actor',NULL,'[\"Tarquinho\"]'),(1384925,246545,4,'actor',NULL,'[\"Joo\"]'),(1384925,1458527,5,'director',NULL,NULL),(1384925,2216949,6,'producer','executive producer',NULL),(1384925,1029303,7,'composer',NULL,NULL),(1384925,1158312,8,'cinematographer',NULL,NULL),(1384925,2328292,9,'editor',NULL,NULL),(1385826,2353,10,'composer',NULL,NULL),(1385826,354,1,'actor',NULL,'[\"David Norris\"]'),(1385826,1289434,2,'actress',NULL,'[\"Elise Sellas\"]'),(1385826,2564974,3,'actress',NULL,'[\"Suburban Mom\"]'),(1385826,1505460,4,'actress',NULL,'[\"Suburban Mom\"]'),(1385826,1079776,5,'director',NULL,NULL),(1385826,1140,6,'writer','short story \"Adjustment Team\"',NULL),(1385826,140011,7,'producer','producer',NULL),(1385826,352489,8,'producer','producer',NULL),(1385826,601031,9,'producer','producer',NULL),(1385867,846333,10,'producer','producer',NULL),(1385867,246,1,'actor',NULL,'[\"Jimmy\"]'),(1385867,605079,2,'actor',NULL,'[\"Paul\"]'),(1385867,380022,3,'actor',NULL,'[\"Raul\"]'),(1385867,2474064,4,'actor',NULL,'[\"Juan\"]'),(1385867,3620,5,'director',NULL,NULL),(1385867,191523,6,'writer','written by',NULL),(1385867,191502,7,'writer','written by',NULL),(1385867,1480881,8,'producer','producer',NULL),(1385867,686887,9,'producer','producer',NULL),(1385912,1347153,1,'actor',NULL,'[\"Madea\",\"Joe\"]'),(1385912,378245,2,'actress',NULL,'[\"April\"]'),(1385912,735226,3,'actor',NULL,'[\"Sandino\"]'),(1385912,924552,4,'actor',NULL,'[\"Randy\"]'),(1385912,134253,5,'producer','producer',NULL),(1385912,956374,6,'composer',NULL,NULL),(1385912,344738,7,'cinematographer',NULL,NULL),(1385912,398335,8,'editor',NULL,NULL),(1385912,562671,9,'production_designer',NULL,NULL),(1385956,711070,10,'cinematographer',NULL,NULL),(1385956,2940321,1,'self',NULL,'[\"Self - Theoretical Physicist, John Hopkins University\"]'),(1385956,4535452,2,'self',NULL,'[\"Self - Project Leader Atlas Experiment\"]'),(1385956,3258339,3,'archive_footage',NULL,'[\"Self - Representative, New York\"]'),(1385956,9123581,4,'archive_footage',NULL,'[\"Self - Representative, Colorado\"]'),(1385956,506071,5,'director',NULL,NULL),(1385956,587883,6,'producer','producer',NULL),(1385956,3338481,7,'producer','producer',NULL),(1385956,589217,8,'composer',NULL,NULL),(1385956,374935,9,'cinematographer',NULL,NULL),(1386588,5929,10,'cinematographer','director of photography',NULL),(1386588,2071,1,'actor',NULL,'[\"Allen Gamble\"]'),(1386588,242,2,'actor',NULL,'[\"Terry Hoitz\"]'),(1386588,1157013,3,'actor',NULL,'[\"Derek Jeter\"]'),(1386588,578949,4,'actress',NULL,'[\"Dr. Sheila Gamble\"]'),(1386588,570912,5,'director',NULL,NULL),(1386588,376260,6,'writer','written by',NULL),(1386588,189777,7,'producer','producer',NULL),(1386588,588612,8,'producer','producer',NULL),(1386588,109726,9,'composer',NULL,NULL),(1386697,1664042,10,'cinematographer','director of photography',NULL),(1386697,226,1,'actor',NULL,'[\"Deadshot\"]'),(1386697,1467,2,'actor',NULL,'[\"The Joker\"]'),(1386697,3053338,3,'actress',NULL,'[\"Harley Quinn\"]'),(1386697,205626,4,'actress',NULL,'[\"Amanda Waller\"]'),(1386697,43742,5,'director',NULL,NULL),(1386697,1694619,6,'writer','comic book',NULL),(1386697,746273,7,'producer','producer',NULL),(1386697,837112,8,'producer','producer',NULL),(1386697,1888527,9,'composer',NULL,NULL),(1386703,693956,10,'writer','screen story by',NULL),(1386703,268199,1,'actor',NULL,'[\"Douglas Quaid\",\"Hauser\"]'),(1386703,940158,2,'actor',NULL,'[\"Harry\"]'),(1386703,186505,3,'actor',NULL,'[\"Cohaagen\"]'),(1386703,295,4,'actress',NULL,'[\"Lori Quaid\"]'),(1386703,936482,5,'director',NULL,NULL),(1386703,934483,6,'writer','screenplay by',NULL),(1386703,93560,7,'writer','screenplay by',NULL),(1386703,795953,8,'writer','screen story by',NULL),(1386703,639321,9,'writer','screen story by',NULL),(1386932,3013229,10,'producer','producer',NULL),(1386932,947447,1,'actor',NULL,'[\"Ip Man\"]'),(1386932,2119781,2,'actor',NULL,'[\"Wong Shun-Leung\"]'),(1386932,5033,3,'actor',NULL,'[\"Master Hung Chun-Nam\"]'),(1386932,3237713,4,'actress',NULL,'[\"Cheung Wing-Sing\"]'),(1386932,948159,5,'director',NULL,NULL),(1386932,5335213,6,'writer',NULL,NULL),(1386932,5540383,7,'writer',NULL,NULL),(1386932,1847973,8,'writer','feature writer',NULL),(1386932,2774833,9,'writer','screenplay',NULL),(1389072,855188,10,'editor',NULL,NULL),(1389072,354,1,'actor',NULL,'[\"Paul Safranek\"]'),(1389072,910607,2,'actor',NULL,'[\"Dusan Mirkovic\"]'),(1389072,2186865,3,'actress',NULL,'[\"Ngoc Lan Tran\"]'),(1389072,1325419,4,'actress',NULL,'[\"Audrey Safranek\"]'),(1389072,668247,5,'director',NULL,NULL),(1389072,852591,6,'writer','written by',NULL),(1389072,425741,7,'producer','producer',NULL),(1389072,448843,8,'composer',NULL,NULL),(1389072,3659,9,'cinematographer','director of photography',NULL),(1389137,1743706,10,'composer',NULL,NULL),(1389137,354,1,'actor',NULL,'[\"Benjamin Mee\"]'),(1389137,424060,2,'actress',NULL,'[\"Kelly Foster\"]'),(1389137,2006,3,'actor',NULL,'[\"Duncan Mee\"]'),(1389137,1102577,4,'actress',NULL,'[\"Lily Miska\"]'),(1389137,1081,5,'director',NULL,NULL),(1389137,112459,6,'writer','screenplay',NULL),(1389137,3349167,7,'writer','book',NULL),(1389137,798930,8,'producer','producer',NULL),(1389137,948833,9,'producer','producer',NULL),(1389374,2204070,1,'actress',NULL,'[\"Li Mei\"]'),(1389374,3355362,2,'actor',NULL,'[\"\'Spikey\'\"]'),(1389374,404232,3,'actor',NULL,'[\"Geoffrey Hunt\"]'),(1389374,1197462,4,'actor',NULL,'[\"Rachid\"]'),(1389374,1802151,5,'director',NULL,NULL),(1389374,196513,6,'producer','producer',NULL),(1389374,661687,7,'composer',NULL,NULL),(1389374,1754704,8,'cinematographer',NULL,NULL),(1389374,83340,9,'editor',NULL,NULL),(1390411,4976,10,'producer','producer',NULL),(1390411,1165110,1,'actor',NULL,'[\"Owen Chase\"]'),(1390411,614165,2,'actor',NULL,'[\"Matthew Joy\"]'),(1390411,322407,3,'actor',NULL,'[\"Tom Nickerson\"]'),(1390411,924210,4,'actor',NULL,'[\"Herman Melville\"]'),(1390411,165,5,'director',NULL,NULL),(1390411,495378,6,'writer','screenplay',NULL),(1390411,415425,7,'writer','story',NULL),(1390411,798646,8,'writer','story',NULL),(1390411,1090930,9,'writer','book \"In the Heart of the Sea: The Tragedy of the Whaleship Essex\"',NULL),(1391034,295288,10,'producer','producer',NULL),(1391034,1720028,1,'actress',NULL,'[\"Stephanie\"]'),(1391034,951148,2,'actress',NULL,'[\"Ellie\"]'),(1391034,881631,3,'actor',NULL,'[\"Michael\"]'),(1391034,56770,4,'actress',NULL,'[\"Rosamaria\"]'),(1391034,1259604,5,'director',NULL,NULL),(1391034,1068980,6,'writer','screenplay',NULL),(1391034,166018,7,'writer',NULL,NULL),(1391034,622334,8,'writer',NULL,NULL),(1391034,163770,9,'producer','producer',NULL),(1392170,6133,10,'composer',NULL,NULL),(1392170,2225369,1,'actress',NULL,'[\"Katniss Everdeen\"]'),(1392170,1242688,2,'actor',NULL,'[\"Peeta Mellark\"]'),(1392170,2955013,3,'actor',NULL,'[\"Gale Hawthorne\"]'),(1392170,1804,4,'actor',NULL,'[\"Caesar Flickerman\"]'),(1392170,2657,5,'director',NULL,NULL),(1392170,1056741,6,'writer','screenplay by',NULL),(1392170,712753,7,'writer','screenplay by',NULL),(1392170,1749221,8,'producer','producer',NULL),(1392170,453091,9,'producer','producer',NULL),(1392190,432725,10,'composer',NULL,NULL),(1392190,362766,1,'actor',NULL,'[\"Max Rockatansky\"]'),(1392190,234,2,'actress',NULL,'[\"Imperator Furiosa\"]'),(1392190,396558,3,'actor',NULL,'[\"Nux\"]'),(1392190,2368789,4,'actress',NULL,'[\"Toast the Knowing\"]'),(1392190,4306,5,'director',NULL,NULL),(1392190,565068,6,'writer','written by',NULL),(1392190,490147,7,'writer','written by',NULL),(1392190,593294,8,'producer','producer',NULL),(1392190,900840,9,'producer','producer',NULL),(1392214,467255,10,'producer','producer',NULL),(1392214,413168,1,'actor',NULL,'[\"Keller Dover\"]'),(1392214,350453,2,'actor',NULL,'[\"Detective Loki\"]'),(1392214,205626,3,'actress',NULL,'[\"Nancy Birch\"]'),(1392214,502425,4,'actress',NULL,'[\"Holly Jones\"]'),(1392214,898288,5,'director',NULL,NULL),(1392214,3360706,6,'writer','written by',NULL),(1392214,204987,7,'producer','producer',NULL),(1392214,424663,8,'producer','producer',NULL),(1392214,2221807,9,'producer','producer',NULL),(13932410,14171580,10,'editor','assistant editor',NULL),(13932410,840754,1,'actress',NULL,'[\"Lorena\"]'),(13932410,760664,2,'actor',NULL,'[\"Julián\"]'),(13932410,22764,3,'actor',NULL,'[\"Rodrigo\"]'),(13932410,4547501,4,'actor',NULL,'[\"Sergio\"]'),(13932410,407067,5,'director',NULL,NULL),(13932410,346277,6,'writer',NULL,NULL),(13932410,3016653,7,'producer','executive producer',NULL),(13932410,63414,8,'composer',NULL,NULL),(13932410,1147284,9,'cinematographer',NULL,NULL),(1393746,1234849,10,'producer','producer',NULL),(1393746,155203,1,'actor',NULL,'[\"Wang Deqing (Deng\'s Foster Father)\"]'),(1393746,3155266,2,'actor',NULL,'[\"Fang Da\"]'),(1393746,1254646,3,'actor',NULL,'[\"Yang Zhi\"]'),(1393746,944624,4,'actress',NULL,'[\"Li Yuanni\"]'),(1393746,271815,5,'director',NULL,NULL),(1393746,1407934,6,'writer','screenplay',NULL),(1393746,4207856,7,'writer','novel',NULL),(1393746,4376466,8,'producer','producer',NULL),(1393746,359189,9,'producer','producer',NULL),(1396218,4361074,10,'writer','novel',NULL),(1396218,120,1,'actor',NULL,'[\"Mr. Popper\"]'),(1396218,1303,2,'actress',NULL,'[\"Amanda\"]'),(1396218,1450,3,'actress',NULL,'[\"Mrs. Van Gundy\"]'),(1396218,1166041,4,'actress',NULL,'[\"Pippi\"]'),(1396218,914132,5,'director',NULL,NULL),(1396218,1890845,6,'writer','screenplay',NULL),(1396218,1898234,7,'writer','screenplay',NULL),(1396218,2972864,8,'writer','screenplay',NULL),(1396218,4360800,9,'writer','novel',NULL),(1396484,334381,10,'producer','producer',NULL),(1396484,803889,1,'actor',NULL,'[\"Pennywise\"]'),(1396484,5897057,2,'actor',NULL,'[\"Bill Denbrough\"]'),(1396484,6016511,3,'actor',NULL,'[\"Richie Tozier\"]'),(1396484,6096118,4,'actress',NULL,'[\"Beverly Marsh\"]'),(1396484,615592,5,'director',NULL,NULL),(1396484,1286060,6,'writer','screenplay by',NULL),(1396484,1560977,7,'writer','screenplay by',NULL),(1396484,2477891,8,'writer','screenplay by',NULL),(1396484,175,9,'writer','based on the novel by',NULL),(1397280,216214,10,'editor',NULL,NULL),(1397280,553,1,'actor',NULL,'[\"Bryan Mills\"]'),(1397280,463,2,'actress',NULL,'[\"Lenore\"]'),(1397280,1192254,3,'actress',NULL,'[\"Kim\"]'),(1397280,650702,4,'actor',NULL,'[\"Sam\"]'),(1397280,576298,5,'director',NULL,NULL),(1397280,108,6,'writer','written by',NULL),(1397280,436543,7,'writer','written by',NULL),(1397280,1166319,8,'composer',NULL,NULL),(1397280,1619897,9,'cinematographer','director of photography',NULL),(1397514,4927,10,'producer','producer',NULL),(1397514,1242688,1,'actor',NULL,'[\"Sean\"]'),(1397514,425005,2,'actor',NULL,'[\"Hank\"]'),(1397514,323,3,'actor',NULL,'[\"Alexander\"]'),(1397514,350079,4,'actor',NULL,'[\"Gabato\"]'),(1397514,679031,5,'director',NULL,NULL),(1397514,348160,6,'writer','screenplay',NULL),(1397514,348208,7,'writer','screenplay',NULL),(1397514,653693,8,'writer','story',NULL),(1397514,894523,9,'writer','novel',NULL),(1398426,23297,10,'producer','producer',NULL),(1398426,6578009,1,'actor',NULL,'[\"Ice Cube\"]'),(1398426,3659660,2,'actor',NULL,'[\"Dr. Dre\"]'),(1398426,4207146,3,'actor',NULL,'[\"Eazy-E\"]'),(1398426,112932,4,'actor',NULL,'[\"DJ Yella\"]'),(1398426,336620,5,'director',NULL,NULL),(1398426,6707680,6,'writer','screenplay',NULL),(1398426,75696,7,'writer','screenplay',NULL),(1398426,767655,8,'writer','story',NULL),(1398426,921023,9,'writer','story',NULL),(1398428,3282177,10,'production_designer',NULL,NULL),(1398428,3174706,1,'actor',NULL,'[\"Teddy Barnes\"]'),(1398428,1768017,2,'actress',NULL,'[\"Melissa Barnes\"]'),(1398428,237109,3,'actor',NULL,'[\"Walter Myrick\"]'),(1398428,2336905,4,'actress',NULL,'[\"Erin Luger\"]'),(1398428,3016585,5,'director',NULL,NULL),(1398428,2347373,6,'director',NULL,NULL),(1398428,1279748,7,'producer','producer',NULL),(1398428,1029946,8,'cinematographer',NULL,NULL),(1398428,720318,9,'editor',NULL,NULL),(13989030,334138,10,'composer',NULL,NULL),(13989030,1404824,1,'actress',NULL,'[\"Isabella \'Izzy\'\"]'),(13989030,4565815,2,'actor',NULL,'[\"Prince Thomas\"]'),(13989030,13321105,3,'actress',NULL,'[\"Mrs. Cortez\"]'),(13989030,13321106,4,'actress',NULL,'[\"Rochelle\"]'),(13989030,414910,5,'director',NULL,NULL),(13989030,381675,6,'writer','written by',NULL),(13989030,1102932,7,'producer','producer',NULL),(13989030,1404825,8,'producer','producer',NULL),(13989030,807685,9,'producer','producer',NULL),(1399103,6613,10,'producer','producer',NULL),(1399103,479471,1,'actor',NULL,'[\"Sam Witwicky\"]'),(1399103,2492819,2,'actress',NULL,'[\"Carly\"]'),(1399103,879085,3,'actor',NULL,'[\"Epps\"]'),(1399103,241049,4,'actor',NULL,'[\"Lennox\"]'),(1399103,881,5,'director',NULL,NULL),(1399103,472567,6,'writer','written by',NULL),(1399103,117290,7,'producer','producer',NULL),(1399103,220892,8,'producer','producer',NULL),(1399103,225146,9,'producer','producer',NULL),(1399683,568174,10,'cinematographer',NULL,NULL),(1399683,2225369,1,'actress',NULL,'[\"Ree\"]'),(1399683,370035,2,'actor',NULL,'[\"Teardrop\"]'),(1399683,226813,3,'actor',NULL,'[\"Sheriff Baskin\"]'),(1399683,3493212,4,'actor',NULL,'[\"Sonny\"]'),(1399683,335138,5,'director',NULL,NULL),(1399683,1367893,6,'writer','screenplay',NULL),(1399683,940410,7,'writer','novel',NULL),(1399683,534893,8,'producer','producer',NULL),(1399683,385467,9,'composer',NULL,NULL),(14007288,519933,10,'actor',NULL,'[\"Jaime\"]'),(14007288,1335025,1,'actress',NULL,'[\"Piedade\"]'),(14007288,87324,2,'actress',NULL,'[\"Sara\"]'),(14007288,8019843,3,'actress',NULL,'[\"Salomé\"]'),(14007288,21823,4,'actress',NULL,'[\"Raquel\"]'),(14007288,133981,5,'director',NULL,NULL),(14007288,2953984,6,'producer','producer',NULL),(14007288,4740205,7,'cinematographer',NULL,NULL),(14007288,3949693,8,'editor',NULL,NULL),(14007288,3338544,9,'actress',NULL,'[\"Ângela\"]'),(1401143,690723,10,'producer','line producer',NULL),(1401143,866918,1,'actor',NULL,'[\"Rauno Kontio\"]'),(1401143,2762369,2,'actor',NULL,'[\"Pietari Kontio\"]'),(1401143,415932,3,'actor',NULL,'[\"Pietari\'s Elf\"]'),(1401143,466636,4,'actor',NULL,'[\"Aimo\"]'),(1401143,1118351,5,'director',NULL,NULL),(1401143,1118352,6,'writer','based on the original idea by',NULL),(1401143,427058,7,'writer','dramaturge',NULL),(1401143,662883,8,'writer','dramaturge',NULL),(1401143,44577,9,'producer','producer',NULL),(1401152,739868,10,'producer','producer',NULL),(1401152,553,1,'actor',NULL,'[\"Dr. Martin Harris\"]'),(1401152,1208167,2,'actress',NULL,'[\"Gina\"]'),(1401152,5064,3,'actress',NULL,'[\"Elizabeth Harris\"]'),(1401152,1644,4,'actor',NULL,'[\"Martin B\"]'),(1401152,1429471,5,'director',NULL,NULL),(1401152,124700,6,'writer','screenplay',NULL),(1401152,180508,7,'writer','screenplay',NULL),(1401152,885857,8,'writer','novel \"Out of My Head\"',NULL),(1401152,325252,9,'producer','producer',NULL),(1401643,4809504,10,'composer',NULL,NULL),(1401643,4070086,1,'actress',NULL,'[\"Saartjie \'Sarah\' Baartman\"]'),(1401643,414325,2,'actor',NULL,'[\"Hendrick Caezar\"]'),(1401643,332709,3,'actor',NULL,'[\"Réaux\"]'),(1401643,530581,4,'actress',NULL,'[\"Jeanne\"]'),(1401643,444244,5,'director',NULL,NULL),(1401643,480308,6,'writer','adaptation and dialogue',NULL),(1401643,318570,7,'producer','producer',NULL),(1401643,439767,8,'producer','producer',NULL),(1401643,439768,9,'producer','producer',NULL),(1402488,171722,10,'writer','characters',NULL),(1402488,704,1,'actor',NULL,'[\"Mumble\"]'),(1402488,245,2,'actor',NULL,'[\"Ramon\",\"Lovelace\"]'),(1402488,600877,3,'actress',NULL,'[\"Gloria\"]'),(1402488,16141,4,'actor',NULL,'[\"Nestor\"]'),(1402488,4306,5,'director',NULL,NULL),(1402488,248495,6,'director','co-director',NULL),(1402488,1668276,7,'director','co-director',NULL),(1402488,171253,8,'writer','written by',NULL),(1402488,515282,9,'writer','written by',NULL),(1403177,3420540,10,'producer','producer',NULL),(1403177,330687,1,'actor',NULL,'[\"Hesher\"]'),(1403177,2044770,2,'actor',NULL,'[\"TJ\"]'),(1403177,204,3,'actress',NULL,'[\"Nicole\"]'),(1403177,933988,4,'actor',NULL,'[\"Paul\"]'),(1403177,1127632,5,'director',NULL,NULL),(1403177,2391575,6,'writer','written by',NULL),(1403177,3462823,7,'writer','story by',NULL),(1403177,3481966,8,'producer','producer',NULL),(1403177,1964055,9,'producer','producer',NULL),(1403214,856946,10,'cinematographer',NULL,NULL),(1403214,1249263,1,'actress',NULL,'[\"Teresa\"]'),(1403214,3903664,2,'actor',NULL,'[\"Munga\"]'),(1403214,561356,3,'actress',NULL,'[\"Freundin von Teresa\"]'),(1403214,816387,4,'actress',NULL,'[\"Urlaubsfreundinnen\"]'),(1403214,782430,5,'director',NULL,NULL),(1403214,1072411,6,'writer','screenplay',NULL),(1403214,90350,7,'producer','producer',NULL),(1403214,750505,8,'producer','producer',NULL),(1403214,5767,9,'cinematographer',NULL,NULL),(14034966,10273397,1,'actress',NULL,'[\"Meiko (segment \\\"Magic (or Something Less Assuring)\\\")\"]'),(14034966,6331906,2,'actor',NULL,'[\"Kazuaki (segment \\\"Magic (or Something Less Assuring)\\\")\"]'),(14034966,4114764,3,'actress',NULL,'[\"Tsugumi (segment \\\"Magic (or Something Less Assuring)\\\")\"]'),(14034966,1097739,4,'actor',NULL,'[\"Segawa (segment \\\"Door Wide Open\\\")\"]'),(14034966,3152327,5,'director',NULL,NULL),(14034966,3514441,6,'producer','producer',NULL),(14034966,2654106,7,'cinematographer',NULL,NULL),(14034966,4641451,8,'production_designer',NULL,NULL),(14034966,10492749,9,'production_designer',NULL,NULL),(1403865,5683,10,'cinematographer','director of photography',NULL),(1403865,313,1,'actor',NULL,'[\"Rooster Cogburn\"]'),(1403865,354,2,'actor',NULL,'[\"LaBoeuf\"]'),(1403865,2794962,3,'actress',NULL,'[\"Mattie Ross\"]'),(1403865,982,4,'actor',NULL,'[\"Tom Chaney\"]'),(1403865,1053,5,'director',NULL,NULL),(1403865,1054,6,'director',NULL,NULL),(1403865,692427,7,'writer','novel',NULL),(1403865,748784,8,'producer','producer',NULL),(1403865,1980,9,'composer',NULL,NULL),(14039582,3566386,10,'cinematographer',NULL,NULL),(14039582,632689,1,'actor',NULL,'[\"Yûsuke Kafuku\"]'),(14039582,4392528,2,'actress',NULL,'[\"Misaki Watari\"]'),(14039582,1929776,3,'actress',NULL,'[\"Oto Kafuku, Yûsuke\'s Wife\"]'),(14039582,2347861,4,'actor',NULL,'[\"Koji Takatsuki\"]'),(14039582,3152327,5,'director',NULL,NULL),(14039582,1633142,6,'writer','short story',NULL),(14039582,5087531,7,'writer',NULL,NULL),(14039582,6167249,8,'producer','producer',NULL),(14039582,8264234,9,'composer',NULL,NULL),(1403981,293456,10,'cinematographer',NULL,NULL),(1403981,1500155,1,'actor',NULL,'[\"Tyler Hawkins\"]'),(1403981,211087,2,'actress',NULL,'[\"Ally Craig\"]'),(1403981,3533310,3,'actress',NULL,'[\"Alyssa Craig (11 yrs)\"]'),(1403981,2765716,4,'actor',NULL,'[\"Mugger\"]'),(1403981,2339,5,'director',NULL,NULL),(1403981,3391497,6,'writer','written by',NULL),(1403981,257333,7,'producer','producer',NULL),(1403981,651720,8,'producer','producer',NULL),(1403981,953616,9,'composer',NULL,NULL),(1403988,865189,10,'producer','producer',NULL),(1403988,5017,1,'actress',NULL,'[\"Laura Rosen\"]'),(1403988,1593,2,'actress',NULL,'[\"Lila Hayes\"]'),(1403988,241049,3,'actor',NULL,'[\"Tom McDevon\"]'),(1403988,15196,4,'actress',NULL,'[\"Tripler\"]'),(1403988,630633,5,'director',NULL,NULL),(1403988,2918260,6,'producer','producer',NULL),(1403988,3214314,7,'producer','producer',NULL),(1403988,3271270,8,'producer','producer',NULL),(1403988,815610,9,'producer','producer',NULL),(1405365,3318928,10,'composer',NULL,NULL),(1405365,429069,1,'actress',NULL,'[\"Celeste\"]'),(1405365,1676221,2,'actor',NULL,'[\"Jesse\"]'),(1405365,704,3,'actor',NULL,'[\"Scott\"]'),(1405365,731075,4,'actress',NULL,'[\"Riley\"]'),(1405365,1767218,5,'director',NULL,NULL),(1405365,566489,6,'writer','written by',NULL),(1405365,625540,7,'producer','producer',NULL),(1405365,865189,8,'producer','producer',NULL),(1405365,865297,9,'producer','producer',NULL),(1405500,344738,10,'cinematographer',NULL,NULL),(1405500,1390,1,'actress',NULL,'[\"Jo\",\"Red\"]'),(1405500,741242,2,'actress',NULL,'[\"Yasmine\",\"Yellow\"]'),(1405500,155,3,'actress',NULL,'[\"Alice\",\"White\"]'),(1405500,253708,4,'actress',NULL,'[\"Crystal\",\"Brown\"]'),(1405500,1347153,5,'director',NULL,NULL),(1405500,788110,6,'writer','play \"For Colored Girls Who Have Considered Suicide When the Rainbow Is Enuf\"',NULL),(1405500,90292,7,'producer','producer',NULL),(1405500,355983,8,'producer','producer',NULL),(1405500,956374,9,'composer',NULL,NULL),(1405808,1666600,1,'actor',NULL,'[\"Szabolcs\"]'),(1405808,7944796,2,'actor',NULL,'[\"Bus Driver\"]'),(1405808,3394719,3,'actress',NULL,'[\"Tessa\"]'),(1405808,3395559,4,'actress',NULL,'[\"Bettina\"]'),(1405808,835249,5,'director',NULL,NULL),(1405808,3277695,6,'producer','producer',NULL),(1405808,1931911,7,'composer',NULL,NULL),(1405808,1785999,8,'cinematographer',NULL,NULL),(1405808,275638,9,'editor',NULL,NULL),(1405809,562545,10,'production_designer',NULL,NULL),(1405809,856500,1,'actress',NULL,'[\"Christine\"]'),(1405809,2244205,2,'actress',NULL,'[\"Maria\"]'),(1405809,865333,3,'actor',NULL,'[\"Kuno\"]'),(1405809,530581,4,'actress',NULL,'[\"Cécile\"]'),(1405809,369618,5,'director',NULL,NULL),(1405809,90350,6,'producer','producer',NULL),(1405809,345116,7,'producer','producer',NULL),(1405809,547038,8,'producer','producer',NULL),(1405809,720395,9,'editor',NULL,NULL),(1405810,549516,10,'editor',NULL,NULL),(1405810,1249052,1,'actor',NULL,'[\"Tommaso Cantone\"]'),(1405810,342151,2,'actress',NULL,'[\"Alba Brunetti\"]'),(1405810,696725,3,'actor',NULL,'[\"Antonio Cantone\"]'),(1405810,266890,4,'actor',NULL,'[\"Vincenzo Cantone\"]'),(1405810,654858,5,'director',NULL,NULL),(1405810,182891,6,'writer',NULL,NULL),(1405810,698271,7,'producer','producer',NULL),(1405810,145840,8,'composer',NULL,NULL),(1405810,130846,9,'cinematographer',NULL,NULL),(1406160,747549,10,'producer','producer',NULL),(1406160,412404,1,'actress',NULL,'[\"Mali Wolf\"]'),(1406160,608701,2,'actor',NULL,'[\"Reuven Wolf\"]'),(1406160,253813,3,'actress',NULL,'[\"Osnat \'Ossi\' Wolf\"]'),(1406160,3218796,4,'actor',NULL,'[\"Toufik\"]'),(1406160,947121,5,'director',NULL,NULL),(1406160,3395306,6,'writer','collaboration',NULL),(1406160,1326263,7,'producer','producer',NULL),(1406160,88214,8,'producer','producer',NULL),(1406160,1901046,9,'producer','producer',NULL),(14062858,2740450,1,'director',NULL,NULL),(14062858,1243271,2,'producer','producer',NULL),(14062858,1316040,3,'composer',NULL,NULL),(14062858,2157365,4,'editor',NULL,NULL),(14062858,7255674,5,'production_designer',NULL,NULL),(1407061,578540,10,'composer',NULL,NULL),(1407061,1451,1,'actress',NULL,'[\"Leslie Wright\"]'),(1407061,996669,2,'actor',NULL,'[\"Scott McKnight\"]'),(1407061,1745736,3,'actress',NULL,'[\"Morgan Alexander\"]'),(1407061,681782,4,'actor',NULL,'[\"Lloyd Wright\"]'),(1407061,1065402,5,'director',NULL,NULL),(1407061,254288,6,'writer','written by',NULL),(1407061,153744,7,'producer','producer',NULL),(1407061,1406277,8,'producer','producer',NULL),(1407061,171123,9,'composer',NULL,NULL),(1407065,2336,10,'cinematographer',NULL,NULL),(1407065,92961,1,'actress',NULL,'[\"Rebecca\"]'),(1407065,300589,2,'actress',NULL,'[\"Lucy\"]'),(1407065,2178959,3,'actress',NULL,'[\"Ernessa\"]'),(1407065,206635,4,'actress',NULL,'[\"Rebecca\'s Mother\"]'),(1407065,366004,5,'director',NULL,NULL),(1407065,3393014,6,'writer','novel',NULL),(1407065,172256,7,'producer','producer',NULL),(1407065,552606,8,'producer','producer',NULL),(1407065,53427,9,'composer',NULL,NULL),(1408101,1333357,10,'producer','producer',NULL),(1408101,1517976,1,'actor',NULL,'[\"Kirk\"]'),(1408101,704270,2,'actor',NULL,'[\"Spock\"]'),(1408101,757855,3,'actress',NULL,'[\"Uhura\"]'),(1408101,1212722,4,'actor',NULL,'[\"Khan\"]'),(1408101,9190,5,'director',NULL,NULL),(1408101,649460,6,'writer','written by',NULL),(1408101,476064,7,'writer','written by',NULL),(1408101,511541,8,'writer','written by',NULL),(1408101,734472,9,'writer','television series \"Star Trek\"',NULL),(1408253,23297,10,'producer','producer',NULL),(1408253,1084,1,'actor',NULL,'[\"James Payton\"]'),(1408253,366389,2,'actor',NULL,'[\"Ben Barber\"]'),(1408253,1754366,3,'actress',NULL,'[\"Angela Payton\"]'),(1408253,491,4,'actor',NULL,'[\"Santiago\"]'),(1408253,1103162,5,'director',NULL,NULL),(1408253,177637,6,'writer','screenplay',NULL),(1408253,1727621,7,'writer','screenplay',NULL),(1408253,6534,8,'writer','screenplay',NULL),(1408253,542062,9,'writer','screenplay',NULL),(1409024,384,10,'composer',NULL,NULL),(1409024,226,1,'actor',NULL,'[\"Agent J\"]'),(1409024,169,2,'actor',NULL,'[\"Agent K\"]'),(1409024,982,3,'actor',NULL,'[\"Young Agent K\"]'),(1409024,1318596,4,'actor',NULL,'[\"Boris The Animal\"]'),(1409024,1756,5,'director',NULL,NULL),(1409024,1000113,6,'writer','written by',NULL),(1409024,192384,7,'writer','based on the Malibu comic by',NULL),(1409024,531827,8,'producer','producer',NULL),(1409024,662748,9,'producer','producer',NULL),(14091818,4465973,10,'writer',NULL,NULL),(14091818,760778,1,'actress',NULL,'[\"Lipakshi\",\"Babloo\'s wife\"]'),(14091818,4188433,2,'actor',NULL,'[\"Babloo\",\"Lipakshi\'s husband\"]'),(14091818,6012399,3,'actor',NULL,'[\"Raj\",\"Babloo\'s driver\'s son\"]'),(14091818,2410391,4,'actress',NULL,'[\"Meenal\",\"housemaid\"]'),(14091818,4784536,5,'director',NULL,NULL),(14091818,5023746,6,'director',NULL,NULL),(14091818,4264671,7,'director',NULL,NULL),(14091818,3262433,8,'director',NULL,NULL),(14091818,3486349,9,'writer',NULL,NULL),(1410063,1618536,10,'cinematographer','director of photography',NULL),(1410063,288,1,'actor',NULL,'[\"John Miller\"]'),(1410063,4809043,2,'actress',NULL,'[\"Yu Mo\"]'),(1410063,5149048,3,'actress',NULL,'[\"Shu\"]'),(1410063,4823002,4,'actor',NULL,'[\"George Chen\"]'),(1410063,955443,5,'director',NULL,NULL),(1410063,514936,6,'writer','screenplay',NULL),(1410063,945802,7,'writer','novel',NULL),(1410063,955411,8,'producer','producer',NULL),(1410063,155349,9,'composer',NULL,NULL),(1411238,2201,10,'composer',NULL,NULL),(1411238,204,1,'actress',NULL,'[\"Emma\"]'),(1411238,5110,2,'actor',NULL,'[\"Adam\"]'),(1411238,177,3,'actor',NULL,'[\"Alvin\"]'),(1411238,144,4,'actor',NULL,'[\"Dr. Metzner\"]'),(1411238,718645,5,'director',NULL,NULL),(1411238,2057975,6,'writer','screenplay',NULL),(1411238,759986,7,'writer','story',NULL),(1411238,166641,8,'producer','producer',NULL),(1411238,575817,9,'producer','producer',NULL),(1411250,250867,10,'cinematographer','director of photography',NULL),(1411250,4874,1,'actor',NULL,'[\"Riddick\"]'),(1411250,881631,2,'actor',NULL,'[\"Vaako\"]'),(1411250,755267,3,'actress',NULL,'[\"Dahl\"]'),(1411250,3244,4,'actor',NULL,'[\"Santana\"]'),(1411250,878638,5,'director',NULL,NULL),(1411250,923646,6,'writer','based on characters created by',NULL),(1411250,3117,7,'writer','based on characters created by',NULL),(1411250,276059,8,'producer','producer',NULL),(1411250,6251,9,'composer',NULL,NULL),(1411697,325175,10,'producer','producer',NULL),(1411697,177896,1,'actor',NULL,'[\"Phil\"]'),(1411697,302108,2,'actor',NULL,'[\"Alan\"]'),(1411697,1159180,3,'actor',NULL,'[\"Stu\"]'),(1411697,58581,4,'actor',NULL,'[\"Doug\"]'),(1411697,680846,5,'director',NULL,NULL),(1411697,563301,6,'writer','written by',NULL),(1411697,35905,7,'writer','written by',NULL),(1411697,524190,8,'writer','characters',NULL),(1411697,601859,9,'writer','characters',NULL),(1411704,577560,10,'producer','producer',NULL),(1411704,1258970,1,'actor',NULL,'[\"E.B. (voice)\",\"Production Assistant\"]'),(1411704,5188,2,'actor',NULL,'[\"Fred O\'Hare\"]'),(1411704,1610,3,'actress',NULL,'[\"Bonnie O\'Hare\"]'),(1411704,192505,4,'actress',NULL,'[\"Sam O\'Hare\"]'),(1411704,384722,5,'director',NULL,NULL),(1411704,666791,6,'writer','screenplay',NULL),(1411704,202425,7,'writer','screenplay',NULL),(1411704,528244,8,'writer','screenplay',NULL),(1411704,408254,9,'producer','producer',NULL),(1412386,2353,10,'composer',NULL,NULL),(1412386,1132,1,'actress',NULL,'[\"Evelyn Greenslade\"]'),(1412386,631490,2,'actor',NULL,'[\"Douglas Ainslie\"]'),(1412386,1749,3,'actress',NULL,'[\"Muriel Donnelly\"]'),(1412386,929489,4,'actor',NULL,'[\"Graham Dashwood\"]'),(1412386,6960,5,'director',NULL,NULL),(1412386,662530,6,'writer','screenplay',NULL),(1412386,595738,7,'writer','novel \"These Foolish Things\"',NULL),(1412386,110357,8,'producer','producer',NULL),(1412386,194446,9,'producer','producer',NULL),(1412528,506613,10,'producer','producer',NULL),(1412528,447695,1,'actress',NULL,'[\"Eloise McGarry\"]'),(1412528,1435,2,'actress',NULL,'[\"Bina Kepp\"]'),(1412528,732497,3,'actor',NULL,'[\"Jerry Kepp\"]'),(1412528,580351,4,'actor',NULL,'[\"Walter Thimble\"]'),(1412528,998825,5,'director',NULL,NULL),(1412528,243233,6,'writer','story by',NULL),(1412528,243231,7,'writer','story by',NULL),(1412528,2950264,8,'producer','producer',NULL),(1412528,199079,9,'producer','producer',NULL),(1412541,3078372,1,'actress',NULL,'[\"Kara\"]'),(1412541,2324802,2,'actor',NULL,'[\"Jon\"]'),(1412541,3399334,3,'actor',NULL,'[\"Miko\"]'),(1412541,3401661,4,'actor',NULL,'[\"Sam\"]'),(1412541,3399115,5,'director',NULL,NULL),(1412541,3319315,6,'cinematographer',NULL,NULL),(14128670,2368789,1,'actress',NULL,'[\"Angela Childs\"]'),(14128670,2720892,2,'actor',NULL,'[\"Terry Hughes\"]'),(14128670,1854,3,'actress',NULL,'[\"Natalie Chowdhury\"]'),(14128670,159776,4,'actress',NULL,'[\"Samantha Gerrity\"]'),(14128670,1752,5,'director',NULL,NULL),(14128670,462895,6,'writer','written by',NULL),(14128670,688789,7,'producer','producer',NULL),(14128670,553498,8,'composer',NULL,NULL),(14128670,582185,9,'production_designer',NULL,NULL),(1414382,377454,10,'cinematographer','director of photography',NULL),(1414382,68338,1,'actress',NULL,'[\"Marni\"]'),(1414382,951148,2,'actress',NULL,'[\"Joanna\"]'),(1414382,244,3,'actress',NULL,'[\"Ramona\"]'),(1414382,130,4,'actress',NULL,'[\"Gail\"]'),(1414382,275698,5,'director',NULL,NULL),(1414382,420596,6,'writer','written by',NULL),(1414382,833828,7,'producer','producer',NULL),(1414382,1383548,8,'producer','producer',NULL),(1414382,910996,9,'composer',NULL,NULL),(14145004,1512998,1,'actor',NULL,'[\"Laureano\"]'),(14145004,519933,2,'actor',NULL,'[\"Samuel\"]'),(14145004,1067411,3,'actress',NULL,'[\"Judite\"]'),(14145004,2082716,4,'actor',NULL,'[\"Paulo\"]'),(14145004,345743,5,'director',NULL,NULL),(14145004,735208,6,'writer','writer',NULL),(14145004,104418,7,'producer','producer',NULL),(14145004,1000453,8,'cinematographer',NULL,NULL),(14145004,3553429,9,'editor',NULL,NULL),(14145426,7230327,10,'writer','writing coordinator',NULL),(14145426,431918,1,'actor',NULL,'[\"Beavis\",\"Butt-Head\",\"Van Driessen\"]'),(14145426,170550,2,'actor',NULL,'[\"Mattison\"]'),(14145426,269542,3,'actor',NULL,'[\"Jim Hartson\"]'),(14145426,564277,4,'actor',NULL,'[\"Metcalf\",\"Judge\"]'),(14145426,1401737,5,'director',NULL,NULL),(14145426,723470,6,'director',NULL,NULL),(14145426,608034,7,'writer','teleplay by',NULL),(14145426,561630,8,'writer','story by',NULL),(14145426,561631,9,'writer','story by',NULL),(14152140,80235,10,'composer',NULL,NULL),(14152140,1017633,1,'actress',NULL,'[\"Badrunissa Sheikh\"]'),(14152140,156858,2,'actress',NULL,'[\"Shamshunissa\"]'),(14152140,1994146,3,'actor',NULL,'[\"Hamza Sheikh\"]'),(14152140,7733137,4,'actor',NULL,'[\"Zulfi\"]'),(14152140,2322617,5,'director',NULL,NULL),(14152140,5151578,6,'writer','written by',NULL),(14152140,1238337,7,'writer','dialogue',NULL),(14152140,451215,8,'producer','producer',NULL),(14152140,6180835,9,'producer','producer',NULL),(1415283,6133,10,'composer',NULL,NULL),(1415283,668,1,'actress',NULL,'[\"Nanny McPhee\"]'),(1415283,350454,2,'actress',NULL,'[\"Isabel Green\"]'),(1415283,146,3,'actor',NULL,'[\"Lord Gray\"]'),(1415283,3489031,4,'actor',NULL,'[\"Vincent Green\"]'),(1415283,1264352,5,'director',NULL,NULL),(1415283,104447,6,'writer','characters',NULL),(1415283,79677,7,'producer','producer',NULL),(1415283,233386,8,'producer','producer',NULL),(1415283,271479,9,'producer','producer',NULL),(14156262,8914443,1,'actor',NULL,'[\"Moncho\"]'),(14156262,12366593,2,'actor',NULL,'[\"Tomasico\"]'),(14156262,12366592,3,'actress',NULL,'[\"Dolores\"]'),(14164234,2429051,10,'cinematographer','director of photography',NULL),(14164234,3460467,1,'actress',NULL,'[\"Rei Nagasawa\"]'),(14164234,7753978,2,'actress',NULL,'[\"Nanae\",\"Kotaro\'s wife\"]'),(14164234,3084615,3,'actor',NULL,'[\"Kotaro\",\"Nanae\'s husband\"]'),(14164234,6964461,4,'actor',NULL,'[\"Masato Nagasawa\"]'),(14164234,386382,5,'director',NULL,NULL),(14164234,12523469,6,'writer','original story by',NULL),(14164234,2664646,7,'writer','written by',NULL),(14164234,880854,8,'producer','producer',NULL),(14164234,12523606,9,'composer',NULL,NULL),(1418377,556580,10,'producer','producer',NULL),(1418377,1173,1,'actor',NULL,'[\"Adam\"]'),(1418377,631490,2,'actor',NULL,'[\"Naberius\"]'),(1418377,1584,3,'actress',NULL,'[\"Leonore\"]'),(1418377,1091621,4,'actress',NULL,'[\"Elizabeth Frankenstein\"]'),(1418377,64181,5,'director',NULL,NULL),(1418377,340485,6,'writer','screen story',NULL),(1418377,791217,7,'writer','characters',NULL),(1418377,454004,8,'producer','producer',NULL),(1418377,524342,9,'producer','producer',NULL),(14208870,1849803,10,'editor',NULL,NULL),(14208870,931329,1,'actress',NULL,'[\"Mitzi Fabelman\"]'),(14208870,5450413,2,'actor',NULL,'[\"Sammy Fabelman\"]'),(14208870,200452,3,'actor',NULL,'[\"Burt Fabelman\"]'),(14208870,2139,4,'actor',NULL,'[\"Uncle Boris\"]'),(14208870,229,5,'director',NULL,NULL),(14208870,1065785,6,'writer','written by',NULL),(14208870,1069736,7,'producer','producer',NULL),(14208870,2354,8,'composer',NULL,NULL),(14208870,1405,9,'cinematographer','director of photography',NULL),(14209916,588087,10,'producer','producer',NULL),(14209916,5392,1,'actress',NULL,'[\"Sari\"]'),(14209916,2403277,2,'actor',NULL,'[\"Eddie\"]'),(14209916,6578009,3,'actor',NULL,'[\"Daveed\"]'),(14209916,501,4,'actor',NULL,'[\"Syd\"]'),(14209916,6969,5,'director',NULL,NULL),(14209916,1843538,6,'writer','written by',NULL),(14209916,3929259,7,'producer','producer',NULL),(14209916,2583641,8,'producer','producer',NULL),(14209916,520488,9,'producer','producer',NULL),(1421051,3483,10,'editor',NULL,NULL),(1421051,1151,1,'actor',NULL,'[\"Johnny Marco\"]'),(1421051,1102577,2,'actress',NULL,'[\"Cleo\"]'),(1421051,690686,3,'actor',NULL,'[\"Sammy\"]'),(1421051,2941165,4,'actress',NULL,'[\"Party Girl #1\"]'),(1421051,1068,5,'director',NULL,NULL),(1421051,113583,6,'producer','producer',NULL),(1421051,178910,7,'producer','producer',NULL),(1421051,1558471,8,'composer',NULL,NULL),(1421051,767647,9,'cinematographer','director of photography',NULL),(1422136,125419,10,'production_designer',NULL,NULL),(1422136,627995,1,'actor',NULL,'[\"Rob\"]'),(1422136,1968873,2,'actor',NULL,'[\"Ed\"]'),(1422136,313534,3,'actress',NULL,'[\"Alison\"]'),(1422136,536461,4,'actress',NULL,'[\"Jenny\"]'),(1422136,1402202,5,'director',NULL,NULL),(1422136,1402203,6,'writer','written by',NULL),(1422136,2548860,7,'producer','producer',NULL),(1422136,687497,8,'composer',NULL,NULL),(1422136,38266,9,'cinematographer','director of photography',NULL),(1422201,448568,10,'cinematographer',NULL,NULL),(1422201,522,1,'actress',NULL,'[\"Margarita Silva Santos\"]'),(1422201,680,2,'actor',NULL,'[\"Luther Simmonds\"]'),(1422201,763643,3,'actress',NULL,'[\"Anabel Aguilera\"]'),(1422201,34791,4,'actress',NULL,'[\"Viviana Suarez\"]'),(1422201,438201,5,'director',NULL,NULL),(1422201,209865,6,'writer','teleplay',NULL),(1422201,3629518,7,'writer','novel',NULL),(1422201,441831,8,'producer','producer',NULL),(1422201,328251,9,'composer',NULL,NULL),(1422674,38976,10,'composer',NULL,NULL),(1422674,2976916,1,'actor',NULL,'[\"Tetsuya (segment \'Tetsuya\')\"]'),(1422674,3515866,2,'actor',NULL,'[\"Ryûta (segment \'Tetsuya\')\"]'),(1422674,2990364,3,'actress',NULL,'[\"Mutsumi (segment \'Tetsuya\')\"]'),(1422674,1375441,4,'actress',NULL,'[\"Yûko (segment \'Yûko\')\"]'),(1422674,1977463,5,'director',NULL,NULL),(1422674,1234345,6,'writer','story',NULL),(1422674,3517327,7,'producer','producer',NULL),(1422674,3414662,8,'producer','producer',NULL),(1422674,406772,9,'producer','producer',NULL),(1422675,38976,10,'composer',NULL,NULL),(1422675,2323489,1,'actor',NULL,'[\"Fumiya Hagimoto (segment \\\"Fumiya\\\")\"]'),(1422675,594331,2,'actor',NULL,'[\"Hajime Kashiwagi (segment \\\"Kashiwagi\\\")\"]'),(1422675,2426214,3,'actress',NULL,'[\"Primary School\'s Akane (segment \\\"Kashiwagi\\\")\"]'),(1422675,3125855,4,'actress',NULL,'[\"Akane Kashiwagi (segment \\\"Akane\\\")\"]'),(1422675,1969711,5,'director',NULL,NULL),(1422675,1234345,6,'writer','story',NULL),(1422675,3517327,7,'producer','producer',NULL),(1422675,3414662,8,'producer','producer',NULL),(1422675,406772,9,'producer','producer',NULL),(14230388,5934,10,'cinematographer','director of photography',NULL),(14230388,5403,1,'actor',NULL,'[\"Augie Steenbeck\"]'),(14230388,424060,2,'actress',NULL,'[\"Midge Campbell\"]'),(14230388,158,3,'actor',NULL,'[\"Stanley Zak\"]'),(14230388,942482,4,'actor',NULL,'[\"General Gibson\"]'),(14230388,27572,5,'director',NULL,NULL),(14230388,178910,6,'writer','story by',NULL),(14230388,206154,7,'producer','producer',NULL),(14230388,2262509,8,'producer','producer',NULL),(14230388,6035,9,'composer',NULL,NULL),(1423894,240338,10,'cinematographer','director of photography',NULL),(1423894,316079,1,'actor',NULL,'[\"Barney Panofsky\"]'),(1423894,683253,2,'actress',NULL,'[\"Miriam Grant-Panofsky\"]'),(1423894,388933,3,'actor',NULL,'[\"Michael Panofsky\"]'),(1423894,340284,4,'actress',NULL,'[\"Solange\"]'),(1423894,3557,5,'director',NULL,NULL),(1423894,725006,6,'writer','novel',NULL),(1423894,465480,7,'writer','screenplay',NULL),(1423894,487190,8,'producer','producer',NULL),(1423894,145840,9,'composer',NULL,NULL),(1424327,2287544,10,'producer','producer',NULL),(1424327,1364521,1,'actor',NULL,'[\"Aaron Fleischman\"]'),(1424327,1763736,2,'actor',NULL,'[\"Ezri\"]'),(1424327,863992,3,'actress',NULL,'[\"Rivka Fleischman\"]'),(1424327,333523,4,'actor',NULL,'[\"Rabbi Vaisben\"]'),(1424327,2173202,5,'director',NULL,NULL),(1424327,1194360,6,'writer','screenplay and story',NULL),(1424327,3921981,7,'producer','producer',NULL),(1424327,57835,8,'producer','producer',NULL),(1424327,248552,9,'producer','producer',NULL),(1424381,42882,10,'producer','producer',NULL),(1424381,4778,1,'actor',NULL,'[\"Royce\"]'),(1424381,401,2,'actor',NULL,'[\"Ronald Noland\"]'),(1424381,333410,3,'actor',NULL,'[\"Edwin\"]'),(1424381,103797,4,'actress',NULL,'[\"Isabelle\"]'),(1424381,30735,5,'director',NULL,NULL),(1424381,514821,6,'writer','written by',NULL),(1424381,3360218,7,'writer','written by',NULL),(1424381,859029,8,'writer','characters',NULL),(1424381,859049,9,'writer','characters',NULL),(1424431,827869,10,'cinematographer',NULL,NULL),(1424431,541136,1,'actor',NULL,'[\"Ivan The Terrible\"]'),(1424431,946160,2,'actor',NULL,'[\"Metropolitanate Philipp\"]'),(1424431,3434407,3,'actress',NULL,'[\"Mariya Temryukovna\"]'),(1424431,2650327,4,'actress',NULL,'[\"Masha\"]'),(1424431,526732,5,'director',NULL,NULL),(1424431,3397590,6,'writer','screenplay',NULL),(1424431,3501097,7,'producer','producer',NULL),(1424431,2376327,8,'producer','producer',NULL),(1424431,469877,9,'composer',NULL,NULL),(1424432,310813,10,'producer','producer',NULL),(1424432,784389,1,'archive_footage',NULL,'[\"Self\"]'),(1424432,1464543,2,'self',NULL,'[\"Self\"]'),(1424432,6037589,3,'self',NULL,'[\"Self\"]'),(1424432,4064140,4,'self',NULL,'[\"Self\"]'),(1424432,438090,5,'director',NULL,NULL),(1424432,3419321,6,'writer','written by',NULL),(1424432,7188547,7,'producer','producer',NULL),(1424432,79677,8,'producer','producer',NULL),(1424432,271479,9,'producer','producer',NULL),(1424797,234237,1,'actress',NULL,'[\"Chantale Lemming\"]'),(1424797,230859,2,'actor',NULL,'[\"Hubert Minel\"]'),(1424797,2957696,3,'actor',NULL,'[\"Antonin Rimbaud\"]'),(1424797,167501,4,'actress',NULL,'[\"Julie Cloutier\"]'),(1424797,3434689,5,'composer',NULL,NULL),(1424797,83751,6,'cinematographer','director of photography',NULL),(1424797,320667,7,'editor',NULL,NULL),(1425928,3431799,10,'producer','producer',NULL),(1425928,2440398,1,'actress',NULL,'[\"Monami\",\"Vampire Girl\"]'),(1425928,1102191,2,'actor',NULL,'[\"Jyugon Mizushima\"]'),(1425928,2937341,3,'actress',NULL,'[\"Keiko\",\"Frankenstein Girl\"]'),(1425928,2840020,4,'actress',NULL,'[\"Midori\"]'),(1425928,1883583,5,'director',NULL,NULL),(1425928,1381841,6,'director',NULL,NULL),(1425928,4109195,7,'writer','screenplay',NULL),(1425928,879749,8,'writer','manga \"Kyûketsu Shôjo tai Shôjo Furanken\"',NULL),(1425928,3432005,9,'producer','producer',NULL),(1425933,1250449,10,'cinematographer','director of photography',NULL),(1425933,2755953,1,'actor',NULL,'[\"Davis\"]'),(1425933,118569,2,'actor',NULL,'[\"Bennett\"]'),(1425933,3095562,3,'actress',NULL,'[\"Rebecca\"]'),(1425933,824785,4,'actress',NULL,'[\"Jane\"]'),(1425933,2756264,5,'director',NULL,NULL),(1425933,1313799,6,'producer','producer',NULL),(1425933,999979,7,'producer','producer',NULL),(1425933,1397090,8,'producer','producer',NULL),(1425933,2753523,9,'composer','composer',NULL),(1426320,3354935,10,'cinematographer','director of photography',NULL),(1426320,3560097,1,'actor',NULL,'[\"Simon\"]'),(1426320,3615744,2,'actor',NULL,'[\"Santa\"]'),(1426320,2893525,3,'actor',NULL,'[\"Tyler\"]'),(1426320,5110256,4,'actor',NULL,'[\"Computer Bear\"]'),(1426320,486773,5,'director',NULL,NULL),(1426320,272213,6,'writer','written by',NULL),(1426320,2082845,7,'producer','producer',NULL),(1426320,2900790,8,'producer','executive producer',NULL),(1426320,1319652,9,'composer',NULL,NULL),(1426329,3967923,10,'producer','producer',NULL),(1426329,1086543,1,'actress',NULL,'[\"Linda\"]'),(1426329,765597,2,'actor',NULL,'[\"Chuck\"]'),(1426329,232,3,'actress',NULL,'[\"Dorothy Boreman\"]'),(1426329,1017334,4,'actress',NULL,'[\"Patsy\"]'),(1426329,258531,5,'director',NULL,NULL),(1426329,295243,6,'director',NULL,NULL),(1426329,1358354,7,'writer','written by',NULL),(1426329,548335,8,'producer','producer',NULL),(1426329,2251003,9,'producer','producer',NULL),(1426362,2316186,10,'cinematographer',NULL,NULL),(1426362,2563482,1,'actor',NULL,'[\"Lenny\"]'),(1426362,1944862,2,'actor',NULL,'[\"Alex\"]'),(1426362,3457928,3,'actor',NULL,'[\"Sage Sokol\"]'),(1426362,3457212,4,'actor',NULL,'[\"Frey Sokol\"]'),(1426362,1509478,5,'director',NULL,NULL),(1426362,1343394,6,'director',NULL,NULL),(1426362,2931325,7,'producer','producer',NULL),(1426362,779862,8,'producer','producer',NULL),(1426362,4844365,9,'producer','producer',NULL),(1426371,2208490,1,'actress',NULL,'[\"Patti\"]'),(1426371,3709976,2,'actor',NULL,'[\"Tairo\"]'),(1426371,2205945,3,'actor',NULL,'[\"Walter\"]'),(1426371,3436520,4,'actress',NULL,'[\"Asia\"]'),(1426371,2021063,5,'director',NULL,NULL),(1426371,1114006,6,'director',NULL,NULL),(1426374,2367203,10,'editor',NULL,NULL),(1426374,3418632,1,'actor',NULL,'[\"Ignacio Carrillo\"]'),(1426374,3436048,2,'actor',NULL,'[\"Fermin Morales\"]'),(1426374,4262429,3,'actor',NULL,'[\"Ninz\"]'),(1426374,4261010,4,'actor',NULL,'[\"Meyo\"]'),(1426374,1458734,5,'director',NULL,NULL),(1426374,3418734,6,'producer','producer',NULL),(1426374,5305003,7,'producer','producer',NULL),(1426374,3418738,8,'composer',NULL,NULL),(1426374,1067790,9,'cinematographer',NULL,NULL),(1428455,762186,1,'self',NULL,'[\"Self\"]'),(1428455,5690,2,'director',NULL,NULL),(1428538,570912,10,'producer','producer',NULL),(1428538,719637,1,'actor',NULL,'[\"Hansel\"]'),(1428538,2605345,2,'actress',NULL,'[\"Gretel\"]'),(1428538,1780,3,'actor',NULL,'[\"Sheriff Berringer\"]'),(1428538,463,4,'actress',NULL,'[\"Muriel\"]'),(1428538,2482088,5,'director',NULL,NULL),(1428538,342278,6,'writer','fairy tale',NULL),(1428538,342303,7,'writer','fairy tale',NULL),(1428538,2071,8,'producer','producer',NULL),(1428538,4927,9,'producer','producer',NULL),(1429392,1805064,10,'production_designer','co-production designer',NULL),(1429392,5007,1,'actress',NULL,'[\"Rita\"]'),(1429392,1430201,2,'actress',NULL,'[\"Ava\"]'),(1429392,1780,3,'actor',NULL,'[\"Walter\"]'),(1429392,94095,4,'actor',NULL,'[\"Deacon\"]'),(1429392,1424878,5,'director',NULL,NULL),(1429392,1724526,6,'producer','producer',NULL),(1429392,4005546,7,'composer',NULL,NULL),(1429392,824085,8,'cinematographer',NULL,NULL),(1429392,1601843,9,'production_designer',NULL,NULL),(14298328,6299693,10,'composer',NULL,NULL),(14298328,3929887,1,'actress',NULL,'[\"Natalie\"]'),(14298328,6639989,2,'actor',NULL,'[\"Gabe\"]'),(14298328,3419668,3,'actress',NULL,'[\"Cara\"]'),(14298328,10087263,4,'actor',NULL,'[\"Partier\"]'),(14298328,1393967,5,'director',NULL,NULL),(14298328,2046271,6,'writer','written by',NULL),(14298328,4148859,7,'producer','producer',NULL),(14298328,628080,8,'producer','producer',NULL),(14298328,4105822,9,'producer','producer',NULL),(14300504,3840676,10,'cinematographer',NULL,NULL),(14300504,12494645,1,'actress',NULL,'[\"Ana\"]'),(14300504,12494646,2,'actor',NULL,'[\"José\"]'),(14300504,210221,3,'actress',NULL,'[\"Ángela\"]'),(14300504,1036659,4,'actress',NULL,'[\"Isabella\"]'),(14300504,7410448,5,'director',NULL,NULL),(14300504,8354848,6,'writer',NULL,NULL),(14300504,1872753,7,'producer','producer',NULL),(14300504,3743814,8,'producer','producer',NULL),(14300504,11288398,9,'composer',NULL,NULL),(1430132,1937,10,'composer',NULL,NULL),(1430132,413168,1,'actor',NULL,'[\"Logan\"]'),(1430132,498449,2,'actor',NULL,'[\"Harada\"]'),(1430132,5148840,3,'actress',NULL,'[\"Mariko\"]'),(1430132,3822462,4,'actress',NULL,'[\"Yukio\"]'),(1430132,3506,5,'director',NULL,NULL),(1430132,93560,6,'writer','screenplay',NULL),(1430132,291082,7,'writer','screenplay',NULL),(1430132,404446,8,'producer','producer',NULL),(1430132,795682,9,'producer','producer',NULL),(1430607,791185,10,'producer','producer',NULL),(1430607,564215,1,'actor',NULL,'[\"Arthur\"]'),(1430607,980,2,'actor',NULL,'[\"Santa\"]'),(1430607,631490,3,'actor',NULL,'[\"Grandsanta\"]'),(1430607,491402,4,'actor',NULL,'[\"Steve\"]'),(1430607,809877,5,'director',NULL,NULL),(1430607,176905,6,'director','co-director',NULL),(1430607,63165,7,'writer','screenplay',NULL),(1430607,520485,8,'producer','producer',NULL),(1430607,670425,9,'producer','producer',NULL),(1430612,889066,10,'producer','producer',NULL),(1430612,908094,1,'actor',NULL,'[\"Damien Collier\"]'),(1430612,1042642,2,'actor',NULL,'[\"Lino\"]'),(1430612,753526,3,'actor',NULL,'[\"Tremaine Alexander\"]'),(1430612,101563,4,'actor',NULL,'[\"K2\"]'),(1430612,216214,5,'director',NULL,NULL),(1430612,108,6,'writer','screenplay',NULL),(1430612,1098947,7,'writer','screenplay \"Banlieue 13\"',NULL),(1430612,3375122,8,'writer','co-writer',NULL),(1430612,529563,9,'producer','producer',NULL),(1430615,271479,10,'producer','producer',NULL),(1430615,106,1,'actress',NULL,'[\"Rachel Kramer\"]'),(1430615,1024677,2,'actor',NULL,'[\"Adam Carlson\"]'),(1430615,4870585,3,'actor',NULL,'[\"Malik\"]'),(1430615,4577626,4,'actor',NULL,'[\"Nathan\"]'),(1430615,477129,5,'director',NULL,NULL),(1430615,24856,6,'writer','screenplay',NULL),(1430615,66764,7,'writer','screenplay',NULL),(1430615,11323314,8,'writer','book \"Freeing the Whales\"',NULL),(1430615,79677,9,'producer','producer',NULL),(1430626,788640,10,'composer',NULL,NULL),(1430626,424,1,'actor',NULL,'[\"The Pirate Captain\"]'),(1430626,161,2,'actress',NULL,'[\"Cutlass Liz\"]'),(1430626,5315,3,'actor',NULL,'[\"Black Bellamy\"]'),(1430626,293509,4,'actor',NULL,'[\"The Pirate with a Scarf\"]'),(1430626,520485,5,'director',NULL,NULL),(1430626,627920,6,'director','co-director',NULL),(1430626,2704527,7,'writer','book: The Pirates! In an Adventure with Scientists',NULL),(1430626,516880,8,'producer','producer',NULL),(1430626,819862,9,'producer','producer',NULL),(14309446,2345716,10,'production_designer',NULL,NULL),(14309446,366389,1,'actor',NULL,'[\"Sonny Fisher\"]'),(14309446,242,2,'actor',NULL,'[\"Huck Dembo\"]'),(14309446,356021,3,'actress',NULL,'[\"Maya Fisher\"]'),(14309446,8399408,4,'actor',NULL,'[\"Dashiell Fisher\"]'),(14309446,357453,5,'director',NULL,NULL),(14309446,2609292,6,'producer','producer',NULL),(14309446,1132022,7,'composer',NULL,NULL),(14309446,434168,8,'cinematographer','director of photography',NULL),(14309446,107855,9,'editor',NULL,NULL),(1431045,432725,10,'composer',NULL,NULL),(1431045,5351,1,'actor',NULL,'[\"Wade\",\"Deadpool\"]'),(1431045,1072555,2,'actress',NULL,'[\"Vanessa\"]'),(1431045,2554352,3,'actor',NULL,'[\"Weasel\"]'),(1431045,4534098,4,'actor',NULL,'[\"Ajax\"]'),(1431045,1783265,5,'director',NULL,NULL),(1431045,1014201,6,'writer','written by',NULL),(1431045,1116660,7,'writer','written by',NULL),(1431045,1334526,8,'producer','producer',NULL),(1431045,795682,9,'producer','producer',NULL),(1431181,73612,10,'production_designer',NULL,NULL),(1431181,980,1,'actor',NULL,'[\"Tom\"]'),(1431181,790689,2,'actress',NULL,'[\"Gerri\"]'),(1431181,544334,3,'actress',NULL,'[\"Mary\"]'),(1431181,1169217,4,'actor',NULL,'[\"Joe\"]'),(1431181,5139,5,'director',NULL,NULL),(1431181,522946,6,'producer','producer',NULL),(1431181,947665,7,'composer',NULL,NULL),(1431181,5836,8,'cinematographer',NULL,NULL),(1431181,339856,9,'editor',NULL,NULL),(14315756,1948910,10,'editor',NULL,NULL),(14315756,1235530,1,'actor',NULL,'[\"Peter\"]'),(14315756,11061034,2,'actor',NULL,'[\"Nick\"]'),(14315756,1682832,3,'actor',NULL,'[\"James\"]'),(14315756,960,4,'actor',NULL,'[\"Harold\"]'),(14315756,1555287,5,'director',NULL,NULL),(14315756,1209925,6,'writer','written by',NULL),(14315756,723464,7,'producer','producer',NULL),(14315756,762863,8,'composer',NULL,NULL),(14315756,147292,9,'cinematographer','director of photography',NULL),(14317880,5897824,10,'producer','producer',NULL),(14317880,244151,1,'actor',NULL,'[\"Rémi\",\"Higurashi\"]'),(14317880,67367,2,'actress',NULL,'[\"Nadia\",\"Natsumi\"]'),(14317880,1687610,3,'actor',NULL,'[\"Philippe Rolland\",\"Hosoda\"]'),(14317880,2028613,4,'actor',NULL,'[\"Raphaël Barrelle\",\"Ken\"]'),(14317880,371890,5,'director',NULL,NULL),(14317880,4940051,6,'writer','original story',NULL),(14317880,10441429,7,'writer','original story',NULL),(14317880,1330234,8,'producer','producer',NULL),(14317880,478717,9,'producer','producer',NULL),(14324650,603408,10,'producer','producer',NULL),(14324650,10075,1,'actor',NULL,'[\"Batman\",\"Bruce Wayne\"]'),(14324650,241049,2,'actor',NULL,'[\"Harvey Dent\"]'),(14324650,729369,3,'actress',NULL,'[\"Catwoman\",\"Selina Kyle\"]'),(14324650,1684869,4,'actor',NULL,'[\"Joker\",\"Antoni\"]'),(14324650,3413990,5,'director',NULL,NULL),(14324650,517188,6,'writer','based on the graphic novel by',NULL),(14324650,1348219,7,'writer','based on the graphic novel by',NULL),(14324650,2004812,8,'writer','screenplay',NULL),(14324650,471172,9,'producer','producer',NULL),(1433108,854052,10,'producer','producer',NULL),(1433108,425005,1,'actor',NULL,'[\"Driver\"]'),(1433108,671,2,'actor',NULL,'[\"Cop\"]'),(1433108,1192254,3,'actress',NULL,'[\"Lily\"]'),(1433108,4170324,4,'actor',NULL,'[\"Prison Guard\"]'),(1433108,863387,5,'director',NULL,NULL),(1433108,311024,6,'writer','written by',NULL),(1433108,311020,7,'writer','written by',NULL),(1433108,323065,8,'producer','producer',NULL),(1433108,787265,9,'producer','producer',NULL),(14331144,5055444,10,'composer',NULL,NULL),(14331144,4533533,1,'actress',NULL,'[\"Kasumi Miwa\"]'),(14331144,2594314,2,'actress',NULL,'[\"Shoko Ieiri\"]'),(14331144,2573928,3,'actress',NULL,'[\"Rika Orimoto\"]'),(14331144,370582,4,'actor',NULL,'[\"Raru\"]'),(14331144,4810022,5,'director',NULL,NULL),(14331144,12013605,6,'writer','manga',NULL),(14331144,5003154,7,'writer','screenplay',NULL),(14331144,11875975,8,'composer',NULL,NULL),(14331144,13419308,9,'composer',NULL,NULL),(1433540,1432647,10,'cinematographer',NULL,NULL),(1433540,41334,1,'actor',NULL,'[\"Coboy\",\"Max Briquenet\",\"Mr. Ernotte\"]'),(1433540,50210,2,'actress',NULL,'[\"Madame Longrée\"]'),(1433540,1328609,3,'actor',NULL,'[\"Mouton\",\"Jean-Paul\"]'),(1433540,3873825,4,'actor',NULL,'[\"Journaliste sportif\"]'),(1433540,665262,5,'director',NULL,NULL),(1433540,347029,6,'writer','co-writer',NULL),(1433540,851759,7,'writer','co-writer',NULL),(1433540,1420628,8,'producer','producer',NULL),(1433540,2847097,9,'producer','producer',NULL),(1433802,2781036,10,'production_designer',NULL,NULL),(1433802,94693,1,'actor',NULL,'[\"Genziano\"]'),(1433802,502412,2,'actor',NULL,'[\"Mirko\"]'),(1433802,408234,3,'actress',NULL,'[\"Mirella\"]'),(1433802,176109,4,'actress',NULL,'[\"Cate\"]'),(1433802,3042857,5,'writer','story editor',NULL),(1433802,1127397,6,'writer','collaborating writer',NULL),(1433802,3792499,7,'composer',NULL,NULL),(1433802,2878043,8,'cinematographer',NULL,NULL),(1433802,796407,9,'editor',NULL,NULL),(1433811,2068037,10,'composer',NULL,NULL),(1433811,867,1,'actor',NULL,'[\"Rich Boyd\"]'),(1433811,1501050,2,'actor',NULL,'[\"Ben Boyd\"]'),(1433811,1391252,3,'actress',NULL,'[\"Abby Boyd\"]'),(1433811,204706,4,'actress',NULL,'[\"Lydia Boyd\"]'),(1433811,748066,5,'director',NULL,NULL),(1433811,827632,6,'writer','written by',NULL),(1433811,394564,7,'producer','producer',NULL),(1433811,509176,8,'producer','producer',NULL),(1433811,385268,9,'producer','producer',NULL),(1435513,69063,10,'producer','producer',NULL),(1435513,350454,1,'actress',NULL,'[\"Charlotte Dalrymple\"]'),(1435513,199215,2,'actor',NULL,'[\"Mortimer Granville\"]'),(1435513,596,3,'actor',NULL,'[\"Dr. Robert Dalrymple\"]'),(1435513,428065,4,'actress',NULL,'[\"Emily Dalrymple\"]'),(1435513,923330,5,'director',NULL,NULL),(1435513,245791,6,'writer','story',NULL),(1435513,550591,7,'writer','story',NULL),(1435513,2717555,8,'writer','original story',NULL),(1435513,1240204,9,'producer','producer',NULL),(1436045,535346,10,'producer','producer',NULL),(1436045,945131,1,'actor',NULL,'[\"Shinzaemon Shimada\"]'),(1436045,1303233,2,'actor',NULL,'[\"Shinrokuro Shimada\"]'),(1436045,410832,3,'actor',NULL,'[\"Koyata Kiga\"]'),(1436045,768027,4,'actor',NULL,'[\"Gunjiro Mitsuhashi\"]'),(1436045,586281,5,'director',NULL,NULL),(1436045,407474,6,'writer','based on a screenplay by',NULL),(1436045,9348321,7,'writer','story',NULL),(1436045,854976,8,'writer','screenplay',NULL),(1436045,1549716,9,'producer','producer',NULL),(14362474,1565008,1,'actress',NULL,'[\"Geneviève\"]'),(14362474,1152485,2,'actor',NULL,'[\"Intoxicated man\"]'),(14362474,4130940,3,'actress',NULL,'[\"Camille\"]'),(14362474,383751,4,'actor',NULL,'[\"Marc\"]'),(14362474,12451365,5,'director',NULL,NULL),(14362474,11868534,6,'composer',NULL,NULL),(14362474,10557605,7,'cinematographer',NULL,NULL),(14362474,3072211,8,'editor',NULL,NULL),(1436562,893262,10,'writer','screenplay by',NULL),(1436562,251986,1,'actor',NULL,'[\"Blu\"]'),(1436562,4266,2,'actress',NULL,'[\"Jewel\"]'),(1436562,520064,3,'actor',NULL,'[\"Rafael\"]'),(1436562,228327,4,'actress',NULL,'[\"Mother Bird\"]'),(1436562,757858,5,'director',NULL,NULL),(1436562,427993,6,'writer','story by',NULL),(1436562,5333675,7,'writer','story by',NULL),(1436562,722610,8,'writer','screenplay by',NULL),(1436562,827985,9,'writer','screenplay by',NULL),(14371426,558776,10,'cinematographer',NULL,NULL),(14371426,7865907,1,'actress',NULL,'[\"Jeanne d\'Arc\"]'),(14371426,856500,2,'actress',NULL,'[\"Olympe de Gouges\"]'),(14371426,255362,3,'actor',NULL,'[\"Maximilien de Robespierre\"]'),(14371426,1877162,4,'actor',NULL,'[\"Nicolas de Condorcet\"]'),(14371426,2404839,5,'director',NULL,NULL),(14371426,9177529,6,'writer','scenario, adaptation and dialogue with the participation of',NULL),(14371426,4347,7,'producer','producer',NULL),(14371426,6249597,8,'composer',NULL,NULL),(14371426,4315422,9,'composer',NULL,NULL),(14371818,41991,10,'editor',NULL,NULL),(14371818,452161,1,'actress',NULL,'[\"Claire\"]'),(14371818,253018,2,'actor',NULL,'[\"Antoine Serano\"]'),(14371818,233123,3,'actress',NULL,'[\"Léna\"]'),(14371818,75710,4,'actor',NULL,'[\"Francis Samier\"]'),(14371818,13131782,5,'producer','producer',NULL),(14371818,1076917,6,'producer','producer',NULL),(14371818,746041,7,'producer','producer',NULL),(14371818,1293792,8,'composer',NULL,NULL),(14371818,156767,9,'cinematographer',NULL,NULL),(1437357,216632,10,'cinematographer','director of photography',NULL),(1437357,954348,1,'actor',NULL,'[\"Heinrich Faust\"]'),(1437357,11582,2,'actor',NULL,'[\"Moneylender\"]'),(1437357,2347132,3,'actress',NULL,'[\"Margarete\"]'),(1437357,295429,4,'actor',NULL,'[\"Wagner\"]'),(1437357,812546,5,'director',NULL,NULL),(1437357,32685,6,'writer','book',NULL),(1437357,466190,7,'writer','screenplay',NULL),(1437357,324473,8,'writer','play',NULL),(1437357,797461,9,'producer','producer',NULL),(1437358,2084225,10,'editor',NULL,NULL),(1437358,869088,1,'actor',NULL,'[\"César\"]'),(1437358,1011070,2,'actress',NULL,'[\"Clara\"]'),(1437358,760664,3,'actor',NULL,'[\"Marcos\"]'),(1437358,555296,4,'actress',NULL,'[\"Sra. Verónica\"]'),(1437358,49371,5,'director',NULL,NULL),(1437358,1157609,6,'writer','screenplay',NULL),(1437358,273327,7,'producer','executive producer',NULL),(1437358,2227608,8,'composer',NULL,NULL),(1437358,744485,9,'cinematographer',NULL,NULL),(1438176,1014697,10,'composer',NULL,NULL),(1438176,947338,1,'actor',NULL,'[\"Charley Brewster\"]'),(1438176,268199,2,'actor',NULL,'[\"Jerry\"]'),(1438176,855039,3,'actor',NULL,'[\"Peter Vincent\"]'),(1438176,1057,4,'actress',NULL,'[\"Jane Brewster\"]'),(1438176,318916,5,'director',NULL,NULL),(1438176,637497,6,'writer','screenplay',NULL),(1438176,276169,7,'writer','story',NULL),(1438176,6894,8,'producer','producer',NULL),(1438176,742851,9,'producer','producer',NULL),(1438216,792431,10,'producer','producer',NULL),(1438216,1833,1,'actress',NULL,'[\"Margaret\"]'),(1438216,1528026,2,'actress',NULL,'[\"Susie\"]'),(1438216,938176,3,'actor',NULL,'[\"Bill\"]'),(1438216,38690,4,'actress',NULL,'[\"Nicky\"]'),(1438216,1425385,5,'director',NULL,NULL),(1438216,613163,6,'writer','written by',NULL),(1438216,4696100,7,'writer','book \"Empty Cradles\"',NULL),(1438216,2666760,8,'producer','producer',NULL),(1438216,2096617,9,'producer','producer',NULL),(1438254,448843,10,'composer',NULL,NULL),(1438254,1374980,1,'actor',NULL,'[\"Charlie St. Cloud\"]'),(1438254,107,2,'actress',NULL,'[\"Claire St. Cloud\"]'),(1438254,2253071,3,'actor',NULL,'[\"Sam St. Cloud\"]'),(1438254,1468739,4,'actress',NULL,'[\"Tess Carroll\"]'),(1438254,824882,5,'director',NULL,NULL),(1438254,668902,6,'writer','screenplay',NULL),(1438254,171474,7,'writer','screenplay',NULL),(1438254,1639636,8,'writer','novel \"The Death and Life of Charlie St. Cloud\"',NULL),(1438254,686887,9,'producer','producer',NULL),(1439572,2068037,10,'composer',NULL,NULL),(1439572,191,1,'actor',NULL,'[\"Michael\"]'),(1439572,1200692,2,'actress',NULL,'[\"Susan\"]'),(1439572,5009714,3,'actress',NULL,'[\"Girl in Bed\"]'),(1439572,1567,4,'actress',NULL,'[\"Jenny\"]'),(1439572,533284,5,'director',NULL,NULL),(1439572,7344,6,'writer','written by',NULL),(1439572,77365,7,'producer','producer',NULL),(1439572,1052445,8,'producer','producer',NULL),(1439572,344612,9,'producer','producer',NULL),(1440118,907970,10,'editor','supervising editor',NULL),(1440118,3492949,1,'actor',NULL,'[\"Nasrine\"]'),(1440118,3467148,2,'actor',NULL,'[\"Ali\"]'),(1440118,183469,3,'actor',NULL,'[\"Tommy\"]'),(1440118,3466683,4,'actress',NULL,'[\"Nicole\"]'),(1440118,1314401,5,'director',NULL,NULL),(1440118,3466803,6,'producer','producer',NULL),(1440118,5477481,7,'composer',NULL,NULL),(1440118,5477540,8,'composer',NULL,NULL),(1440118,1351597,9,'cinematographer',NULL,NULL),(1440129,376416,10,'producer','producer',NULL),(1440129,2907,1,'actor',NULL,'[\"Commander Stone Hopper\"]'),(1440129,2395937,2,'actress',NULL,'[\"Sam\"]'),(1440129,553,3,'actor',NULL,'[\"Admiral Shane\"]'),(1440129,1982597,4,'actress',NULL,'[\"Petty Officer Cora \'Weps\' Raikes\"]'),(1440129,916,5,'director',NULL,NULL),(1440129,388377,6,'writer','written by',NULL),(1440129,388375,7,'writer','written by',NULL),(1440129,2583828,8,'producer','producer',NULL),(1440129,2131060,9,'producer','producer',NULL),(1440161,775443,10,'producer','producer',NULL),(1440161,5028,1,'actress',NULL,'[\"Marley Corbett\"]'),(1440161,305558,2,'actor',NULL,'[\"Julian Goldstein\"]'),(1440161,870,3,'actress',NULL,'[\"Beverly Corbett\"]'),(1440161,227759,4,'actor',NULL,'[\"Vinnie\"]'),(1440161,975026,5,'director',NULL,NULL),(1440161,920227,6,'writer','written by',NULL),(1440161,204862,7,'producer','producer',NULL),(1440161,1247584,8,'producer','producer',NULL),(1440161,441830,9,'producer','producer',NULL),(1440232,167388,1,'actor',NULL,'[\"Max Cantara\"]'),(1440232,182839,2,'actress',NULL,'[\"Marie\"]'),(1440232,536095,3,'actor',NULL,'[\"Vincent Ribaud\"]'),(1440232,241121,4,'actor',NULL,'[\"Ludo\"]'),(1440232,133899,5,'director',NULL,NULL),(1440232,40927,6,'producer','producer',NULL),(1440232,644393,7,'cinematographer',NULL,NULL),(1440232,217959,8,'editor',NULL,NULL),(1440232,157351,9,'production_designer',NULL,NULL),(1440292,2127991,10,'composer',NULL,NULL),(1440292,1064292,1,'actor',NULL,'[\"Oliver Tate\"]'),(1440292,1020089,2,'actress',NULL,'[\"Jill Tate\"]'),(1440292,175916,3,'actor',NULL,'[\"Graham Purvis\"]'),(1440292,852965,4,'actor',NULL,'[\"Lloyd Tate\"]'),(1440292,1547964,5,'director',NULL,NULL),(1440292,3660914,6,'writer','novel',NULL),(1440292,1537339,7,'producer','producer',NULL),(1440292,378591,8,'producer','producer',NULL),(1440292,824217,9,'producer','producer',NULL),(14402926,603408,10,'producer','producer',NULL),(14402926,10075,1,'actor',NULL,'[\"Batman\",\"Bruce Wayne\"]'),(14402926,241049,2,'actor',NULL,'[\"Harvey Dent\",\"Two-Face\"]'),(14402926,729369,3,'actress',NULL,'[\"Catwoman\",\"Selina Kyle\"]'),(14402926,1684869,4,'actor',NULL,'[\"Joker\"]'),(14402926,3413990,5,'director',NULL,NULL),(14402926,517188,6,'writer','based on the graphic novel by',NULL),(14402926,1348219,7,'writer','based on the graphic novel by',NULL),(14402926,2004812,8,'writer','screenplay',NULL),(14402926,471172,9,'producer','producer',NULL),(1440345,126154,10,'composer',NULL,NULL),(1440345,576,1,'actor',NULL,'[\"Cheyenne\"]'),(1440345,531,2,'actress',NULL,'[\"Jane\"]'),(1440345,2139,3,'actor',NULL,'[\"Mordecai Midler\"]'),(1440345,2016723,4,'actress',NULL,'[\"Mary\"]'),(1440345,815204,5,'director',NULL,NULL),(1440345,176197,6,'writer','screenplay',NULL),(1440345,162317,7,'producer','producer',NULL),(1440345,321333,8,'producer','producer',NULL),(1440345,643647,9,'producer','producer',NULL),(1440728,381416,10,'producer','producer',NULL),(1440728,123,1,'actor',NULL,'[\"Jack\",\"Edward\"]'),(1440728,93678,2,'actor',NULL,'[\"Father Benedetto\"]'),(1440728,686376,3,'actress',NULL,'[\"Clara\"]'),(1440728,84950,4,'actress',NULL,'[\"Ingrid\"]'),(1440728,179221,5,'director',NULL,NULL),(1440728,423626,6,'writer','screenplay',NULL),(1440728,95757,7,'writer','novel \"A Very Private Gentleman\"',NULL),(1440728,136904,8,'producer','producer',NULL),(1440728,337976,9,'producer','producer',NULL),(1440741,1213382,10,'editor',NULL,NULL),(1440741,501412,1,'actress',NULL,'[\"Julieta\"]'),(1440741,39916,2,'actor',NULL,'[\"Alexandre\"]'),(1440741,634120,3,'actor',NULL,'[\"Pedro\"]'),(1440741,136665,4,'actress',NULL,'[\"Rosa\"]'),(1440741,9287,5,'director',NULL,NULL),(1440741,2228449,6,'producer','producer',NULL),(1440741,620847,7,'producer','producer',NULL),(1440741,9494,8,'composer',NULL,NULL),(1440741,825336,9,'cinematographer','director of photography',NULL),(1441326,3737483,10,'composer',NULL,NULL),(1441326,647634,1,'actress',NULL,'[\"Martha\"]'),(1441326,5299,2,'actress',NULL,'[\"Lucy\"]'),(1441326,370035,3,'actor',NULL,'[\"Patrick\"]'),(1441326,3571592,4,'actor',NULL,'[\"Max\"]'),(1441326,1699934,5,'director',NULL,NULL),(1441326,1290515,6,'producer','producer',NULL),(1441326,192416,7,'producer','producer',NULL),(1441326,562222,8,'producer','producer',NULL),(1441326,1317614,9,'producer','producer',NULL),(1441395,1034914,10,'producer','producer',NULL),(1441395,424060,1,'actress',NULL,'[\"The Female\"]'),(1441395,4835245,2,'actor',NULL,'[\"The Bad Man\"]'),(1441395,5860325,3,'actress',NULL,'[\"The Dead Woman\"]'),(1441395,5860326,4,'actor',NULL,'[\"Pick-Up Man\"]'),(1441395,322242,5,'director',NULL,NULL),(1441395,4157371,6,'writer','written by',NULL),(1441395,1480060,7,'writer','based on the novel by',NULL),(1441395,995906,8,'writer',NULL,NULL),(1441395,917059,9,'producer','producer',NULL),(1441912,156816,10,'editor',NULL,NULL),(1441912,640,1,'actor',NULL,'[\"Tom\"]'),(1441912,389,2,'actor',NULL,'[\"Daniel\"]'),(1441912,679,3,'actress',NULL,'[\"Sarah\"]'),(1441912,905691,4,'actor',NULL,'[\"Joost\"]'),(1441912,2098549,5,'writer','book \"Off the Road: A Modern-Day Walk Down the Pilgrim\'s Route Into Spain\"',NULL),(1441912,1256362,6,'producer','producer',NULL),(1441912,273327,7,'producer','executive producer',NULL),(1441912,61045,8,'composer',NULL,NULL),(1441912,44411,9,'cinematographer','director of photography',NULL),(1441951,207532,10,'cinematographer','director of photography',NULL),(1441951,1749,1,'actress',NULL,'[\"Jean Horton\"]'),(1441951,2091,2,'actor',NULL,'[\"Cedric Livingstone\"]'),(1441951,175262,3,'actor',NULL,'[\"Wilf Bond\"]'),(1441951,183822,4,'actor',NULL,'[\"Reggie Paget\"]'),(1441951,163,5,'director',NULL,NULL),(1441951,367838,6,'writer','based on the play by',NULL),(1441951,245493,7,'producer','producer',NULL),(1441951,1217161,8,'producer','producer',NULL),(1441951,547050,9,'composer',NULL,NULL),(1441952,820987,10,'cinematographer','director of photography',NULL),(1441952,191,1,'actor',NULL,'[\"Dr. Alfred Jones\"]'),(1441952,1289434,2,'actress',NULL,'[\"Harriet\"]'),(1441952,906756,3,'actor',NULL,'[\"Sheikh Muhammed\"]'),(1441952,218,4,'actress',NULL,'[\"Patricia Maxwell\"]'),(1441952,2120,5,'director',NULL,NULL),(1441952,64479,6,'writer','written by',NULL),(1441952,3468186,7,'writer','novel',NULL),(1441952,916986,8,'producer','producer',NULL),(1441952,547050,9,'composer',NULL,NULL),(1441953,2068037,10,'composer',NULL,NULL),(1441953,2539953,1,'actress',NULL,'[\"Vera Brittain\"]'),(1441953,3229685,2,'actor',NULL,'[\"Roland Leighton\"]'),(1441953,5473782,3,'actor',NULL,'[\"Edward Brittain\"]'),(1441953,922035,4,'actor',NULL,'[\"Mr. Brittain\"]'),(1441953,448757,5,'director',NULL,NULL),(1441953,1177837,6,'writer','autobiography',NULL),(1441953,1130708,7,'writer','screenplay by',NULL),(1441953,2302156,8,'producer','producer',NULL),(1441953,382268,9,'producer','producer',NULL),(1441956,339856,10,'editor',NULL,NULL),(1441956,3661801,1,'actor',NULL,'[\"Sajid Khan\"]'),(1441956,700875,2,'actor',NULL,'[\"George\",\"Jahangir Khan\"]'),(1441956,60221,3,'actress',NULL,'[\"Ella Khan\"]'),(1441956,700059,4,'actor',NULL,'[\"Mr. Jordan\"]'),(1441956,214320,5,'director',NULL,NULL),(1441956,451351,6,'writer','screenplay',NULL),(1441956,879889,7,'producer','producer',NULL),(1441956,485528,8,'composer',NULL,NULL),(1441956,1668320,9,'cinematographer',NULL,NULL),(1442437,405103,10,'actress',NULL,'[\"Haley Dunphy\",\"Haley Marshall\"]'),(1442437,642145,1,'actor',NULL,'[\"Jay Pritchett\"]'),(1442437,5527,2,'actress',NULL,'[\"Gloria Delgado-Pritchett\"]'),(1442437,100866,3,'actress',NULL,'[\"Claire Dunphy\"]'),(1442437,123092,4,'actor',NULL,'[\"Phil Dunphy\"]'),(1442437,506160,5,'writer','created by',NULL),(1442437,515941,6,'writer','created by',NULL),(1442437,272479,7,'actor',NULL,'[\"Mitchell Pritchett\"]'),(1442437,832314,8,'actor',NULL,'[\"Cameron Tucker\"]'),(1442437,2349726,9,'actor',NULL,'[\"Manny Delgado\"]'),(1442519,89333,10,'cinematographer',NULL,NULL),(1442519,1929,1,'actress',NULL,'[\"Renée Michel\"]'),(1442519,2161431,2,'actress',NULL,'[\"Paloma Josse\"]'),(1442519,407033,3,'actor',NULL,'[\"Kakuro Ozu\"]'),(1442519,110507,4,'actress',NULL,'[\"Solange Josse\"]'),(1442519,2130235,5,'director',NULL,NULL),(1442519,3460513,6,'writer','novel \"L\'élégance du hérisson\"',NULL),(1442519,4215,7,'producer','producer',NULL),(1442519,7014,8,'producer','producer',NULL),(1442519,1189,9,'composer',NULL,NULL),(14428598,4319792,10,'editor',NULL,NULL),(14428598,9263896,1,'actress',NULL,'[\"Qala Manjushree\"]'),(14428598,12477601,2,'actor',NULL,'[\"Jagan\"]'),(14428598,3054665,3,'actress',NULL,'[\"Urmila Manjushree\"]'),(14428598,1748072,4,'actor',NULL,'[\"Sumant Kumar\"]'),(14428598,2101751,5,'director',NULL,NULL),(14428598,7923441,6,'writer','screenplay',NULL),(14428598,6507585,7,'producer','producer',NULL),(14428598,3032664,8,'composer',NULL,NULL),(14428598,2810184,9,'cinematographer',NULL,NULL),(1443518,903617,10,'editor',NULL,NULL),(1443518,1272221,1,'actor',NULL,'[\"Jitze\"]'),(1443518,1339257,2,'actress',NULL,'[\"Min Min\"]'),(1443518,208880,3,'actor',NULL,'[\"coach Luc\"]'),(1443518,3467259,4,'actor',NULL,'[\"Hai Li\"]'),(1443518,1564826,5,'director',NULL,NULL),(1443518,1563165,6,'writer',NULL,NULL),(1443518,315180,7,'producer','producer',NULL),(1443518,510533,8,'composer',NULL,NULL),(1443518,384852,9,'cinematographer',NULL,NULL),(14444726,929889,10,'editor',NULL,NULL),(14444726,949,1,'actress',NULL,'[\"Lydia Tár\"]'),(14444726,4374524,2,'actress',NULL,'[\"Francesca Lentini\"]'),(14444726,396125,3,'actress',NULL,'[\"Sharon Goodnow\"]'),(14444726,13154325,4,'actress',NULL,'[\"Olga Metkina\"]'),(14444726,276062,5,'director',NULL,NULL),(14444726,483300,6,'producer','producer',NULL),(14444726,586968,7,'producer','producer',NULL),(14444726,3723390,8,'composer',NULL,NULL),(14444726,389285,9,'cinematographer',NULL,NULL),(1445520,788743,10,'cinematographer','director of photography',NULL),(1445520,52722,1,'actor',NULL,'[\"Eliezer Shkolnik\"]'),(1445520,38988,2,'actor',NULL,'[\"Uriel Shkolnik\"]'),(1445520,741903,3,'actress',NULL,'[\"Yehudit Shkolnik\"]'),(1445520,1138716,4,'actress',NULL,'[\"Dikla Shkolnik\"]'),(1445520,147737,5,'director',NULL,NULL),(1445520,1672318,6,'producer','producer',NULL),(1445520,1570630,7,'producer','producer',NULL),(1445520,541812,8,'producer','producer',NULL),(1445520,694782,9,'composer',NULL,NULL),(1446192,6035,10,'composer',NULL,NULL),(1446192,413168,1,'actor',NULL,'[\"Bunny\"]'),(1446192,285,2,'actor',NULL,'[\"North\"]'),(1446192,279545,3,'actress',NULL,'[\"Tooth\"]'),(1446192,1517976,4,'actor',NULL,'[\"Jack Frost\"]'),(1446192,709056,5,'director',NULL,NULL),(1446192,1865755,6,'writer','screenplay',NULL),(1446192,431622,7,'writer','based on the book series \"Guardians of Childhood\" by',NULL),(1446192,77110,8,'producer','producer',NULL),(1446192,825730,9,'producer','producer',NULL),(1446201,3413,10,'cinematographer','director of photography',NULL),(1446201,155693,1,'actress',NULL,'[\"E.J. Baxter\"]'),(1446201,5020,2,'actor',NULL,'[\"Will Albrecht\"]'),(1446201,1043,3,'actress',NULL,'[\"Jan Lucas\"]'),(1446201,1674464,4,'actress',NULL,'[\"Roz Baxter\"]'),(1446201,762541,5,'director',NULL,NULL),(1446201,530988,6,'writer','teleplay',NULL),(1446201,3477566,7,'writer','novel \"Decent Exposure\"',NULL),(1446201,178604,8,'producer','producer',NULL),(1446201,492714,9,'composer',NULL,NULL),(1446714,318429,10,'producer','producer',NULL),(1446714,636426,1,'actress',NULL,'[\"Elizabeth Shaw\"]'),(1446714,1334869,2,'actor',NULL,'[\"Charlie Holloway\"]'),(1446714,1055413,3,'actor',NULL,'[\"David\"]'),(1446714,234,4,'actress',NULL,'[\"Meredith Vickers\"]'),(1446714,631,5,'director',NULL,NULL),(1446714,3123612,6,'writer','written by',NULL),(1446714,511541,7,'writer','written by',NULL),(1446714,639321,8,'writer','based on elements created by',NULL),(1446714,795953,9,'writer','based on elements created by',NULL),(1447479,1170121,1,'actress',NULL,'[\"Alexandra Everett\"]'),(1447479,3028961,2,'actress',NULL,'[\"Saffron\"]'),(1447479,427503,3,'actor',NULL,'[\"Leo\"]'),(1447479,609948,4,'actress',NULL,'[\"Holly\"]'),(1447479,268051,5,'director',NULL,NULL),(1447479,228264,6,'producer','producer',NULL),(1447479,724950,7,'composer',NULL,NULL),(1447479,622534,8,'cinematographer',NULL,NULL),(1447479,1546169,9,'production_designer',NULL,NULL),(1448755,797451,10,'producer','producer',NULL),(1448755,5458,1,'actor',NULL,'[\"Danny\"]'),(1448755,654110,2,'actor',NULL,'[\"Spike\"]'),(1448755,134,3,'actor',NULL,'[\"Hunter\"]'),(1448755,700712,4,'actor',NULL,'[\"Davies\"]'),(1448755,1834213,5,'director',NULL,NULL),(1448755,3906411,6,'writer','screenplay',NULL),(1448755,276399,7,'writer','book \"The Feather Men\"',NULL),(1448755,99278,8,'producer','producer',NULL),(1448755,153893,9,'producer','producer',NULL),(1449283,1293044,10,'writer','story by',NULL),(1449283,191906,1,'actor',NULL,'[\"Winnie the Pooh\",\"Tigger\"]'),(1449283,272401,2,'actor',NULL,'[\"Owl\"]'),(1449283,92,3,'actor',NULL,'[\"Narrator\"]'),(1449283,524726,4,'actor',NULL,'[\"Eeyore\"]'),(1449283,27459,5,'director',NULL,NULL),(1449283,2320658,6,'director',NULL,NULL),(1449283,3028768,7,'writer','story by',NULL),(1449283,234837,8,'writer','story by',NULL),(1449283,4611078,9,'writer','story by',NULL),(14495706,721526,1,'director',NULL,NULL),(1450321,2692293,10,'producer','producer',NULL),(1450321,564215,1,'actor',NULL,'[\"Bruce\"]'),(1450321,68260,2,'actor',NULL,'[\"Lennox\"]'),(1450321,550371,3,'actor',NULL,'[\"Bladesey\"]'),(1450321,1782299,4,'actress',NULL,'[\"Drummond\"]'),(1450321,1580671,5,'director',NULL,NULL),(1450321,920543,6,'writer','based on the novel by',NULL),(1450321,24909,7,'producer','producer',NULL),(1450321,3909704,8,'producer','producer',NULL),(1450321,1676089,9,'producer','producer',NULL),(1450332,1475754,1,'actress',NULL,NULL),(1450332,1040419,2,'actor',NULL,NULL),(1450332,1687017,3,'actor',NULL,NULL),(1450332,840660,4,'actor',NULL,NULL),(1450332,2041208,5,'writer','screenplay',NULL),(1450332,945451,6,'producer','producer',NULL),(1450332,437819,7,'composer',NULL,NULL),(1450332,2330943,8,'cinematographer','director of photography',NULL),(1450332,435372,9,'editor',NULL,NULL),(1451762,283936,10,'producer','producer',NULL),(1451762,3905923,1,'actress',NULL,'[\"Mimi Le Meaux\"]'),(1451762,2264294,2,'actress',NULL,'[\"Kitten on the Keys\"]'),(1451762,1800614,3,'actress',NULL,'[\"Dirty Martini\"]'),(1451762,1319650,4,'actress',NULL,'[\"Julie Atlas Muz\"]'),(1451762,23832,5,'director',NULL,NULL),(1451762,221613,6,'writer',NULL,NULL),(1451762,3970731,7,'writer',NULL,NULL),(1451762,3383115,8,'writer','translation',NULL),(1451762,1252650,9,'writer',NULL,NULL),(1452628,2227608,10,'composer',NULL,NULL),(1452628,159789,1,'actor',NULL,'[\"Luke\"]'),(1452628,628601,2,'actress',NULL,'[\"Rosemary\"]'),(1452628,491,3,'actor',NULL,'[\"Paul\"]'),(1452628,3632976,4,'actor',NULL,'[\"James\"]'),(1452628,26442,5,'director',NULL,NULL),(1452628,1097510,6,'writer','written by',NULL),(1452628,159922,7,'producer','producer',NULL),(1452628,3021633,8,'producer','producer',NULL),(1452628,1488027,9,'producer','producer',NULL),(1453405,435457,10,'cinematographer','director of photography: lighting',NULL),(1453405,345,1,'actor',NULL,'[\"Mike\"]'),(1453405,422,2,'actor',NULL,'[\"Sullivan\"]'),(1453405,114,3,'actor',NULL,'[\"Randy\"]'),(1453405,545,4,'actress',NULL,'[\"Dean Hardscrabble\"]'),(1453405,768959,5,'director',NULL,NULL),(1453405,314870,6,'writer','story by',NULL),(1453405,47916,7,'writer','story by',NULL),(1453405,706032,8,'producer','producer',NULL),(1453405,5271,9,'composer',NULL,NULL),(1454029,2353,10,'composer',NULL,NULL),(1454029,205626,1,'actress',NULL,'[\"Aibileen Clark\"]'),(1454029,1297015,2,'actress',NULL,'[\"Skeeter Phelan\"]'),(1454029,818055,3,'actress',NULL,'[\"Minny Jackson\"]'),(1454029,397171,4,'actress',NULL,'[\"Hilly Holbrook\"]'),(1454029,853238,5,'director',NULL,NULL),(1454029,3543826,6,'writer','novel',NULL),(1454029,55431,7,'producer','producer',NULL),(1454029,1060,8,'producer','producer',NULL),(1454029,337676,9,'producer','producer',NULL),(14544192,3102998,1,'self',NULL,'[\"Self\"]'),(14544192,3357893,2,'producer','producer',NULL),(1454468,2747,10,'editor',NULL,NULL),(1454468,113,1,'actress',NULL,'[\"Ryan Stone\"]'),(1454468,123,2,'actor',NULL,'[\"Matt Kowalski\"]'),(1454468,438,3,'actor',NULL,'[\"Mission Control\"]'),(1454468,1241511,4,'actor',NULL,'[\"Aningaaq\"]'),(1454468,190859,5,'director',NULL,NULL),(1454468,190861,6,'writer','written by',NULL),(1454468,382268,7,'producer','producer',NULL),(1454468,1888527,8,'composer',NULL,NULL),(1454468,523881,9,'cinematographer','director of photography',NULL),(1455151,167056,10,'cinematographer',NULL,NULL),(1455151,367,1,'actor',NULL,'[\"Germain Chazes\"]'),(1455151,142704,2,'actress',NULL,'[\"Margueritte Vandeveld\"]'),(1455151,560971,3,'actress',NULL,'[\"Francine\"]'),(1455151,347069,4,'actress',NULL,'[\"Annette\"]'),(1455151,65449,5,'director',NULL,NULL),(1455151,196362,6,'writer','screenplay',NULL),(1455151,3527765,7,'writer','book',NULL),(1455151,65510,8,'producer','producer',NULL),(1455151,903841,9,'composer',NULL,NULL),(1456060,399523,10,'editor',NULL,NULL),(1456060,2222743,1,'actor',NULL,'[\"Sean Donovan\"]'),(1456060,1748489,2,'actress',NULL,'[\"Teresa Ames\"]'),(1456060,756083,3,'actor',NULL,'[\"Terry Donovan\"]'),(1456060,829916,4,'actor',NULL,'[\"Gary Stenson\"]'),(1456060,3155184,5,'director',NULL,NULL),(1456060,768661,6,'producer','producer',NULL),(1456060,2264155,7,'composer',NULL,NULL),(1456060,491792,8,'cinematographer',NULL,NULL),(1456060,2532484,9,'editor',NULL,NULL),(1456472,8550454,10,'writer',NULL,NULL),(1456472,681566,1,'actor',NULL,'[\"Il papa\"]'),(1456472,604335,2,'actor',NULL,'[\"Lo psicoanalista\"]'),(1456472,836136,3,'actor',NULL,'[\"Il portavoce\"]'),(1456472,769237,4,'actor',NULL,'[\"Cardinal Gregori\"]'),(1456472,1154102,5,'writer','written by',NULL),(1456472,1703635,6,'writer','written by',NULL),(1456472,1401136,7,'writer',NULL,NULL),(1456472,2833592,8,'writer',NULL,NULL),(1456472,7931906,9,'writer',NULL,NULL),(1456635,138502,10,'producer','producer',NULL),(1456635,5405,1,'actor',NULL,'[\"Doug Glatt\"]'),(1456635,59431,2,'actor',NULL,'[\"Pat\"]'),(1456635,683467,3,'actress',NULL,'[\"Eva\"]'),(1456635,506405,4,'actor',NULL,'[\"Dr. Glatt\"]'),(1456635,236226,5,'director',NULL,NULL),(1456635,1698571,6,'writer','written by',NULL),(1456635,4106750,7,'writer','based on the book by',NULL),(1456635,4106668,8,'writer','based on the book by',NULL),(1456635,12692313,9,'writer','original idea',NULL),(1456941,459517,10,'composer',NULL,NULL),(1456941,1466205,1,'actress',NULL,'[\"Ellie Linton\"]'),(1456941,1248393,2,'actress',NULL,'[\"Corrie Mackenzie\"]'),(1456941,2089884,3,'actor',NULL,'[\"Kevin Holmes\"]'),(1456941,2727714,4,'actor',NULL,'[\"Homer Yannos\"]'),(1456941,64181,5,'director',NULL,NULL),(1456941,2498184,6,'writer','novel',NULL),(1456941,99278,7,'producer','producer',NULL),(1456941,556580,8,'producer','producer',NULL),(1456941,374112,9,'composer',NULL,NULL),(1457767,755911,10,'producer','producer',NULL),(1457767,933940,1,'actor',NULL,'[\"Ed Warren\"]'),(1457767,267812,2,'actress',NULL,'[\"Lorraine Warren\"]'),(1457767,515296,3,'actor',NULL,'[\"Roger Perron\"]'),(1457767,666,4,'actress',NULL,'[\"Carolyn Perron\"]'),(1457767,1490123,5,'director',NULL,NULL),(1457767,370937,6,'writer','written by',NULL),(1457767,370928,7,'writer','written by',NULL),(1457767,184620,8,'producer','producer',NULL),(1457767,220533,9,'producer','producer',NULL),(1458169,1857184,10,'producer','producer',NULL),(1458169,932,1,'actress',NULL,'[\"Karla Dyson\"]'),(1458169,6179030,2,'actor',NULL,'[\"Frankie\"]'),(1458169,569341,3,'actress',NULL,'[\"Margo\"]'),(1458169,854702,4,'actor',NULL,'[\"Terry\"]'),(1458169,1060986,5,'director',NULL,NULL),(1458169,1029878,6,'writer','written by',NULL),(1458169,4498658,7,'producer','producer',NULL),(1458169,225146,8,'producer','producer',NULL),(1458169,326063,9,'producer','producer',NULL),(1458175,637602,10,'producer','producer',NULL),(1458175,128,1,'actor',NULL,'[\"John Brennan\"]'),(1458175,6969,2,'actress',NULL,'[\"Lara Brennan\"]'),(1458175,553,3,'actor',NULL,'[\"Damon Pennington\"]'),(1458175,119633,4,'actor',NULL,'[\"Mick Brennan\"]'),(1458175,353673,5,'director',NULL,NULL),(1458175,146991,6,'writer','screenplay \"Pour elle\"',NULL),(1458175,3280198,7,'writer','screenplay \"Pour elle\"',NULL),(1458175,216635,8,'producer','producer',NULL),(1458175,592945,9,'producer','producer',NULL),(1461305,616142,10,'actress',NULL,'[\"Zakishiwarashi\"]'),(1461305,1360441,1,'actress',NULL,'[\"Yuko Ichihara\"]'),(1461305,1101677,2,'actor',NULL,'[\"Kimihiro Watanuki\"]'),(1461305,620017,3,'actor',NULL,'[\"Shizuka Doumeki\",\"Haruka Doumeki\"]'),(1461305,1328988,4,'actress',NULL,'[\"Mokona\"]'),(1461305,1598205,5,'director',NULL,NULL),(1461305,1220477,6,'writer','manga',NULL),(1461305,959985,7,'writer','script',NULL),(1461305,1778495,8,'actress',NULL,'[\"Himawari Kunogori\"]'),(1461305,944985,9,'actress',NULL,'[\"Amewarashi\"]'),(1461312,15865,10,'actor',NULL,'[\"10 of Clubs\"]'),(1461312,778741,1,'actress',NULL,'[\"Alice\"]'),(1461312,498517,2,'actor',NULL,'[\"Hatter\"]'),(1461312,1242,3,'actor',NULL,'[\"White Knight\"]'),(1461312,870,4,'actress',NULL,'[\"Queen of Hearts\"]'),(1461312,934618,5,'actor',NULL,'[\"Jack Chase\"]'),(1461312,538,6,'actor',NULL,'[\"King of Hearts\"]'),(1461312,347,7,'actor',NULL,'[\"Dodo\"]'),(1461312,1765,8,'actor',NULL,'[\"Caterpillar\"]'),(1461312,916448,9,'actor',NULL,'[\"Carpenter\"]'),(14614892,12138999,10,'editor',NULL,NULL),(14614892,637586,1,'actress',NULL,'[\"Gohan\",\"Goku\",\"Goten\"]'),(14614892,386752,2,'actress',NULL,'[\"Bulma\"]'),(14614892,394690,3,'actor',NULL,'[\"Vegeta\"]'),(14614892,476223,4,'actor',NULL,'[\"Trunks\"]'),(14614892,10429652,5,'director',NULL,NULL),(14614892,868066,6,'writer','creator',NULL),(14614892,5465253,7,'producer','producer',NULL),(14614892,2013149,8,'composer',NULL,NULL),(14614892,10503387,9,'editor',NULL,NULL),(1462041,732708,10,'producer','producer',NULL),(1462041,185819,1,'actor',NULL,'[\"Will Atenton\"]'),(1462041,1838,2,'actress',NULL,'[\"Libby\"]'),(1462041,915208,3,'actress',NULL,'[\"Ann Patterson\"]'),(1462041,480,4,'actor',NULL,'[\"Boyce\"]'),(1462041,6487,5,'director',NULL,NULL),(1462041,521649,6,'writer','written by',NULL),(1462041,90394,7,'producer','producer',NULL),(1462041,472567,8,'producer','producer',NULL),(1462041,1084360,9,'producer','producer',NULL),(1462053,3522771,10,'production_designer',NULL,NULL),(1462053,487429,1,'actress',NULL,'[\"Sheri Campari\"]'),(1462053,2339071,2,'actor',NULL,'[\"Cedric Michaels\"]'),(1462053,2931190,3,'actress',NULL,'[\"Toni Campari\"]'),(1462053,3520740,4,'actress',NULL,'[\"Tasi Campari\"]'),(1462053,3277823,5,'director',NULL,NULL),(1462053,3521557,6,'director',NULL,NULL),(1462053,1009444,7,'writer','written by',NULL),(1462053,80490,8,'cinematographer',NULL,NULL),(1462053,3899008,9,'editor',NULL,NULL),(1462758,1880996,10,'cinematographer',NULL,NULL),(1462758,5351,1,'actor',NULL,'[\"Paul Conroy\"]'),(1462758,305825,2,'actor',NULL,'[\"Jabir\"]'),(1462758,1746358,3,'actor',NULL,'[\"Dan Brenner\"]'),(1462758,864997,4,'actor',NULL,'[\"Alan Davenport\"]'),(1462758,181579,5,'director',NULL,NULL),(1462758,2133655,6,'writer','written by',NULL),(1462758,2541742,7,'producer','producer',NULL),(1462758,755911,8,'producer','producer',NULL),(1462758,721432,9,'composer',NULL,NULL),(1462764,442241,10,'writer','based on characters created by',NULL),(1462764,148,1,'actor',NULL,'[\"Indiana Jones\"]'),(1462764,3564817,2,'actress',NULL,'[\"Helena\"]'),(1462764,104,3,'actor',NULL,'[\"Renaldo\"]'),(1462764,261,4,'actress',NULL,'[\"Marion\"]'),(1462764,3506,5,'director',NULL,NULL),(1462764,125336,6,'writer','written by',NULL),(1462764,3890871,7,'writer','written by',NULL),(1462764,462895,8,'writer','written by',NULL),(1462764,184,9,'writer','based on characters created by',NULL),(1462769,1799,10,'cinematographer','director of photography',NULL),(1462769,4950,1,'actress',NULL,'[\"Cindy Green\"]'),(1462769,249291,2,'actor',NULL,'[\"Jim Green\"]'),(1462769,2640264,3,'actor',NULL,'[\"Timothy Green\"]'),(1462769,3843467,4,'actress',NULL,'[\"Joni Jerome\"]'),(1462769,373282,5,'director',NULL,NULL),(1462769,953257,6,'writer','story',NULL),(1462769,761712,7,'producer','producer',NULL),(1462769,924270,8,'producer','producer',NULL),(1462769,952944,9,'composer',NULL,NULL),(1462900,1166319,10,'composer',NULL,NULL),(1462900,504897,1,'actor',NULL,'[\"Ip Man\"]'),(1462900,955471,2,'actress',NULL,'[\"Gong Er\"]'),(1462900,1018221,3,'actor',NULL,'[\"Ma San\"]'),(1462900,151654,4,'actor',NULL,'[\"Razor\"]'),(1462900,939182,5,'director',NULL,NULL),(1462900,1802940,6,'writer','screenplay',NULL),(1462900,4192630,7,'writer','screenplay',NULL),(1462900,659388,8,'producer','producer',NULL),(1462900,2432604,9,'composer','co-composer',NULL),(1463167,2850179,10,'composer',NULL,NULL),(1463167,147582,1,'actress',NULL,'[\"Lucia\"]'),(1463167,1594999,2,'actress',NULL,'[\"Lea\"]'),(1463167,1320600,3,'actor',NULL,'[\"Bruno\"]'),(1463167,1166977,4,'actor',NULL,'[\"Marco\"]'),(1463167,664519,5,'director',NULL,NULL),(1463167,3556523,6,'writer','screenplay',NULL),(1463167,4082751,7,'producer','producer',NULL),(1463167,3521320,8,'producer','executive producer',NULL),(1463167,784972,9,'producer','producer',NULL),(1463188,461887,10,'cinematographer',NULL,NULL),(1463188,2203315,1,'actor',NULL,'[\"Jack\"]'),(1463188,2210888,2,'actress',NULL,'[\"Scar Sandy\"]'),(1463188,1779768,3,'actress',NULL,'[\"Christy\"]'),(1463188,2313013,4,'actress',NULL,'[\"Caca\"]'),(1463188,950728,5,'director',NULL,NULL),(1463188,492315,6,'writer','screenplay',NULL),(1463188,867253,7,'producer','producer',NULL),(1463188,516317,8,'composer',NULL,NULL),(1463188,158872,9,'cinematographer',NULL,NULL),(14641788,4070559,10,'producer','producer',NULL),(14641788,5611121,1,'actress',NULL,'[\"Enola Holmes\"]'),(14641788,147147,2,'actor',NULL,'[\"Sherlock Holmes\"]'),(14641788,667,3,'actor',NULL,'[\"Grail\"]'),(14641788,6273024,4,'actor',NULL,'[\"Tewkesbury\"]'),(14641788,102873,5,'director',NULL,NULL),(14641788,2113666,6,'writer','screenplay by',NULL),(14641788,9540892,7,'writer','based upon the \"Enola Holmes Mysteries\' book series\" by',NULL),(14641788,12178559,8,'producer','producer',NULL),(14641788,1247503,9,'producer','producer',NULL),(1464191,677075,10,'producer','producer',NULL),(1464191,166,1,'actress',NULL,'[\"Mary Claire King\"]'),(1464191,608090,2,'actress',NULL,'[\"Annie Parker\"]'),(1464191,666739,3,'actor',NULL,'[\"Paul\"]'),(1464191,429069,4,'actress',NULL,'[\"Kim\"]'),(1464191,77149,5,'director',NULL,NULL),(1464191,2763269,6,'writer',NULL,NULL),(1464191,3502928,7,'writer',NULL,NULL),(1464191,1761309,8,'producer','producer',NULL),(1464191,15222428,9,'producer','producer',NULL),(1464335,4731086,10,'writer','screen story by',NULL),(1464335,4043618,1,'actor',NULL,'[\"Nathan Drake\"]'),(1464335,242,2,'actor',NULL,'[\"Victor Sullivan\"]'),(1464335,104,3,'actor',NULL,'[\"Santiago Moncada\"]'),(1464335,1496115,4,'actress',NULL,'[\"Chloe Frazer\"]'),(1464335,281508,5,'director',NULL,NULL),(1464335,1988994,6,'writer','screenplay by',NULL),(1464335,1436466,7,'writer','screenplay by',NULL),(1464335,391344,8,'writer','screenplay by',NULL),(1464335,2616125,9,'writer','screen story by',NULL),(14644048,1789850,10,'producer','producer',NULL),(14644048,3588254,1,'actor',NULL,'[\"Ramsès\"]'),(14644048,13677438,2,'actor',NULL,'[\"Hachara\"]'),(14644048,13677439,3,'actor',NULL,'[\"Fares\"]'),(14644048,3802039,4,'actress',NULL,'[\"Grace\"]'),(14644048,2312933,5,'director',NULL,NULL),(14644048,81179,6,'writer','collaboration',NULL),(14644048,3035083,7,'writer','collaboration',NULL),(14644048,4720516,8,'writer','collaboration',NULL),(14644048,4972432,9,'writer','collaboration',NULL),(1464540,294580,10,'writer','novel',NULL),(1464540,1641117,1,'actor',NULL,'[\"John\"]'),(1464540,648249,2,'actor',NULL,'[\"Henri\"]'),(1464540,1872698,3,'actress',NULL,'[\"Sarah\"]'),(1464540,1954240,4,'actress',NULL,'[\"Number 6\"]'),(1464540,142286,5,'director',NULL,NULL),(1464540,332184,6,'writer','screenplay',NULL),(1464540,587692,7,'writer','screenplay',NULL),(1464540,637497,8,'writer','screenplay',NULL),(1464540,3787416,9,'writer','novel',NULL),(1464580,1490961,10,'producer','producer',NULL),(1464580,1269733,1,'actor',NULL,'[\"Martin\"]'),(1464580,198804,2,'actor',NULL,'[\"Mister\"]'),(1464580,534,3,'actress',NULL,'[\"Sister\"]'),(1464580,1693954,4,'actor',NULL,'[\"Martin\'s Father\"]'),(1464580,585344,5,'director',NULL,NULL),(1464580,1472372,6,'producer','producer',NULL),(1464580,275244,7,'producer','producer',NULL),(1464580,2000770,8,'producer','producer',NULL),(1464580,2390962,9,'producer','producer',NULL),(1465522,793232,10,'composer','composer',NULL),(1465522,479527,1,'actor',NULL,'[\"Dale\"]'),(1465522,876138,2,'actor',NULL,'[\"Tucker\"]'),(1465522,2197298,3,'actress',NULL,'[\"Allison\"]'),(1465522,1536605,4,'actor',NULL,'[\"Chad\"]'),(1465522,185848,5,'director',NULL,NULL),(1465522,1549853,6,'writer','written by',NULL),(1465522,3520204,7,'producer','producer',NULL),(1465522,589734,8,'producer','producer',NULL),(1465522,623235,9,'producer','producer',NULL),(1466054,48227,10,'editor',NULL,NULL),(1466054,1156,1,'actress',NULL,'[\"Stella\"]'),(1466054,2084,2,'actress',NULL,'[\"Dot\"]'),(1466054,95746,3,'actress',NULL,'[\"Molly\"]'),(1466054,2854765,4,'actor',NULL,'[\"Tommy\"]'),(1466054,280396,5,'director',NULL,NULL),(1466054,2780525,6,'producer','producer',NULL),(1466054,4299440,7,'composer',NULL,NULL),(1466054,1853667,8,'composer',NULL,NULL),(1466054,366760,9,'cinematographer','director of photography',NULL),(14668630,1853865,10,'composer',NULL,NULL),(14668630,849,1,'actor',NULL,'[\"Hector P. Valenti\"]'),(14668630,9121761,2,'actor',NULL,'[\"Josh\"]'),(14668630,6658398,3,'actor',NULL,'[\"Lyle\"]'),(14668630,2090422,4,'actress',NULL,'[\"Mrs. Primm\"]'),(14668630,330347,5,'director',NULL,NULL),(14668630,817447,6,'director',NULL,NULL),(14668630,1520948,7,'writer','based on the book series by',NULL),(14668630,204030,8,'writer','screenplay by',NULL),(14668630,404446,9,'producer','producer',NULL),(1467304,4804094,10,'editor',NULL,NULL),(1467304,489504,1,'actor',NULL,'[\"Dr. Heiter\"]'),(1467304,2280521,2,'actress',NULL,'[\"Lindsay\"]'),(1467304,2460100,3,'actress',NULL,'[\"Jenny\"]'),(1467304,2162290,4,'actor',NULL,'[\"Katsuro\"]'),(1467304,1519353,5,'director',NULL,NULL),(1467304,1575969,6,'producer','executive producer',NULL),(1467304,2747682,7,'composer',NULL,NULL),(1467304,2641744,8,'composer',NULL,NULL),(1467304,1672575,9,'cinematographer','director of photography',NULL),(1469259,798658,10,'producer','producer',NULL),(1469259,1014417,1,'actor',NULL,'[\"Dylan\"]'),(1469259,4941,2,'actress',NULL,'[\"Jade\"]'),(1469259,352374,3,'actress',NULL,'[\"Cloe\"]'),(1469259,610298,4,'actress',NULL,'[\"Sasha\"]'),(1469259,726894,5,'director',NULL,NULL),(1469259,3520645,6,'writer','characters',NULL),(1469259,2554376,7,'writer',NULL,NULL),(1469259,2554347,8,'writer',NULL,NULL),(1469259,3181773,9,'producer','producer',NULL),(1469304,740115,10,'writer','story by',NULL),(1469304,425005,1,'actor',NULL,'[\"Mitch Buchannon\"]'),(1469304,1374980,2,'actor',NULL,'[\"Matt Brody\"]'),(1469304,1275259,3,'actress',NULL,'[\"Summer Quinn\"]'),(1469304,1231899,4,'actress',NULL,'[\"Victoria Leeds\"]'),(1469304,1164861,5,'director',NULL,NULL),(1469304,75276,6,'writer','based on the series \"Baywatch\" created by',NULL),(1469304,777209,7,'writer','based on the series \"Baywatch\" created by',NULL),(1469304,93748,8,'writer','based on the series \"Baywatch\" created by',NULL),(1469304,771065,9,'writer','story by',NULL),(1470023,1060930,10,'cinematographer',NULL,NULL),(1470023,287182,1,'actor',NULL,'[\"MacGruber\"]'),(1470023,1325419,2,'actress',NULL,'[\"Vicki\"]'),(1470023,174,3,'actor',NULL,'[\"Cunth\"]'),(1470023,202,4,'actor',NULL,'[\"Piper\"]'),(1470023,1672246,5,'director',NULL,NULL),(1470023,1231253,6,'writer','written by',NULL),(1470023,326415,7,'producer','producer',NULL),(1470023,584427,8,'producer','producer',NULL),(1470023,2595269,9,'composer',NULL,NULL),(1470827,1058940,1,'actor',NULL,'[\"Andrew Kaulder\"]'),(1470827,2016345,2,'actress',NULL,'[\"Sam Wynden\"]'),(1470827,4620252,3,'actor',NULL,'[\"Ticket Seller\"]'),(1470827,420121,4,'actress',NULL,'[\"Homeless Woman\"]'),(1470827,2284484,5,'director',NULL,NULL),(1470827,629242,6,'producer','producer',NULL),(1470827,724597,7,'producer','producer',NULL),(1470827,2096445,8,'composer',NULL,NULL),(1470827,332148,9,'editor',NULL,NULL),(1473149,46991,10,'cinematographer',NULL,NULL),(1473149,1012534,1,'actress',NULL,'[\"Hebba Younis\"]'),(1473149,375990,2,'actor',NULL,'[\"Adham\"]'),(1473149,3558225,3,'actor',NULL,'[\"Karim\"]'),(1473149,3601621,4,'actress',NULL,'[\"Safaa\"]'),(1473149,1593939,5,'director',NULL,NULL),(1473149,621915,6,'director',NULL,NULL),(1473149,1431644,7,'writer','writer',NULL),(1473149,2153103,8,'producer','producer',NULL),(1473149,438918,9,'composer',NULL,NULL),(1473832,271479,10,'producer','producer',NULL),(1473832,250,1,'actress',NULL,'[\"Bridget\"]'),(1473832,428121,2,'actress',NULL,'[\"Mum\"]'),(1473832,980,3,'actor',NULL,'[\"Dad\"]'),(1473832,680766,4,'actress',NULL,'[\"Shazzer\"]'),(1473832,536632,5,'director',NULL,NULL),(1473832,276144,6,'writer','screenplay',NULL),(1473832,563243,7,'writer','screenplay',NULL),(1473832,668,8,'writer','screenplay',NULL),(1473832,79677,9,'producer','producer',NULL),(1474276,3823482,10,'producer','producer',NULL),(1474276,1126340,1,'actor',NULL,'[\"Kenji Koiso\"]'),(1474276,3142576,2,'actress',NULL,'[\"Natsuki Shinohara\"]'),(1474276,1932274,3,'actress',NULL,'[\"Kazuma Ikezawa\"]'),(1474276,3893990,4,'actor',NULL,'[\"Takashi Sakuma\"]'),(1474276,396074,5,'director',NULL,NULL),(1474276,645766,6,'writer','screenplay',NULL),(1474276,3675414,7,'producer','producer',NULL),(1474276,2510203,8,'producer','producer',NULL),(1474276,847182,9,'producer','producer',NULL),(1477171,591894,10,'production_designer',NULL,NULL),(1477171,2008680,1,'actress',NULL,'[\"Marcela\"]'),(1477171,119438,2,'actor',NULL,'[\"Amador\"]'),(1477171,796267,3,'actor',NULL,'[\"Nelson\"]'),(1477171,971346,4,'actress',NULL,'[\"Yolanda\"]'),(1477171,508208,5,'director',NULL,NULL),(1477171,1255565,6,'producer','producer',NULL),(1477171,324184,7,'composer',NULL,NULL),(1477171,14825,8,'cinematographer',NULL,NULL),(1477171,749593,9,'editor',NULL,NULL),(14775784,1085024,10,'composer',NULL,NULL),(14775784,4453291,1,'actor',NULL,'[\"Hans Hoffmann\"]'),(14775784,295429,2,'actor',NULL,'[\"Viktor\"]'),(14775784,6077587,3,'actor',NULL,'[\"Leo Giese\"]'),(14775784,6728910,4,'actor',NULL,'[\"Oskar\"]'),(14775784,2098964,5,'director',NULL,NULL),(14775784,2101047,6,'writer','screenplay',NULL),(14775784,1901046,7,'producer','producer',NULL),(14775784,2248890,8,'producer','producer',NULL),(14775784,1061561,9,'producer','producer',NULL),(1477834,918816,10,'writer','Aquaman created by',NULL),(1477834,597388,1,'actor',NULL,'[\"Arthur\"]'),(1477834,1720028,2,'actress',NULL,'[\"Mera\"]'),(1477834,353,3,'actor',NULL,'[\"Vulko\"]'),(1477834,933940,4,'actor',NULL,'[\"King Orm\"]'),(1477834,1490123,5,'director',NULL,NULL),(1477834,424901,6,'writer','screenplay by',NULL),(1477834,3263825,7,'writer','screenplay by',NULL),(1477834,424315,8,'writer','story by',NULL),(1477834,3542504,9,'writer','Aquaman created by',NULL),(1477837,65100,10,'composer',NULL,NULL),(1477837,1159180,1,'actor',NULL,'[\"Tim Lippe\"]'),(1477837,604,2,'actor',NULL,'[\"Dean Ziegler\"]'),(1477837,162,3,'actress',NULL,'[\"Joan Ostrowski-Fox\"]'),(1477837,926086,4,'actor',NULL,'[\"Ronald Wilkes\"]'),(1477837,37708,5,'director',NULL,NULL),(1477837,1601882,6,'writer','written by',NULL),(1477837,121724,7,'producer','producer',NULL),(1477837,668247,8,'producer','producer',NULL),(1477837,852591,9,'producer','producer',NULL),(1477855,187018,10,'cinematographer','director of photography',NULL),(1477855,195,1,'actor',NULL,'[\"FDR\"]'),(1477855,1473,2,'actress',NULL,'[\"Daisy\"]'),(1477855,931404,3,'actress',NULL,'[\"Eleanor\"]'),(1477855,922335,4,'actor',NULL,'[\"Bertie\"]'),(1477855,585011,5,'director',NULL,NULL),(1477855,625695,6,'writer','written by',NULL),(1477855,42010,7,'producer','producer',NULL),(1477855,2941,8,'producer','producer',NULL),(1477855,760255,9,'composer',NULL,NULL),(1478338,28787,10,'composer',NULL,NULL),(1478338,1325419,1,'actress',NULL,'[\"Annie\"]'),(1478338,748973,2,'actress',NULL,'[\"Lillian\"]'),(1478338,126284,3,'actress',NULL,'[\"Helen\"]'),(1478338,187719,4,'actor',NULL,'[\"Boot Camp Instructor\"]'),(1478338,82450,5,'director',NULL,NULL),(1478338,1754239,6,'writer','written by',NULL),(1478338,31976,7,'producer','producer',NULL),(1478338,578814,8,'producer','producer',NULL),(1478338,870106,9,'producer','producer',NULL),(1478804,2410081,10,'production_designer',NULL,NULL),(1478804,1208,1,'actor',NULL,'[\"Eli\"]'),(1478804,498449,2,'actor',NULL,'[\"Marcus\"]'),(1478804,1723094,3,'actress',NULL,'[\"Cordelia\"]'),(1478804,2841995,4,'actor',NULL,'[\"Maximo\"]'),(1478804,1704795,5,'director',NULL,NULL),(1478804,2136247,6,'producer','producer',NULL),(1478804,1383059,7,'composer',NULL,NULL),(1478804,482706,8,'cinematographer',NULL,NULL),(1478804,4089341,9,'editor',NULL,NULL),(1478839,605775,10,'producer','producer',NULL),(1478839,126,1,'actor',NULL,'[\"Enzo\"]'),(1478839,893257,2,'actor',NULL,'[\"Denny\"]'),(1478839,4467076,3,'actress',NULL,'[\"Mrs. Spangle\"]'),(1478839,393125,4,'actor',NULL,'[\"Mr. Spangle\"]'),(1478839,193508,5,'director',NULL,NULL),(1478839,93560,6,'writer','screenplay by',NULL),(1478839,825464,7,'writer','based on the novel by',NULL),(1478839,1131,8,'producer','producer',NULL),(1478839,1815091,9,'producer','producer',NULL),(1478964,1633672,10,'editor',NULL,NULL),(1478964,3915784,1,'actor',NULL,'[\"Moses\"]'),(1478964,2092886,2,'actress',NULL,'[\"Sam\"]'),(1478964,3906429,3,'actor',NULL,'[\"Pest\"]'),(1478964,3915728,4,'actor',NULL,'[\"Jerome\"]'),(1478964,180428,5,'director',NULL,NULL),(1478964,661912,6,'producer','producer',NULL),(1478964,1034914,7,'producer','producer',NULL),(1478964,1888527,8,'composer',NULL,NULL),(1478964,1082643,9,'cinematographer','director of photography',NULL),(1479163,293688,10,'editor',NULL,NULL),(1479163,3545798,1,'actor',NULL,'[\"Steve\"]'),(1479163,471597,2,'actor',NULL,'[\"Tom\"]'),(1479163,1632762,3,'actress',NULL,'[\"Sarah\"]'),(1479163,3546021,4,'actress',NULL,'[\"Debbie\"]'),(1479163,3287146,5,'director',NULL,NULL),(1479163,2840651,6,'producer','producer',NULL),(1479163,1655194,7,'composer',NULL,NULL),(1479163,7638496,8,'composer',NULL,NULL),(1479163,3280633,9,'cinematographer',NULL,NULL),(1479668,841212,10,'editor',NULL,NULL),(1479668,3938287,1,'actor',NULL,'[\"Abel\"]'),(1479668,317286,2,'actress',NULL,'[\"Cecilia\"]'),(1479668,946962,3,'actor',NULL,'[\"Anselmo\"]'),(1479668,32737,4,'actor',NULL,'[\"Dr. Monárrez\"]'),(1479668,526019,5,'director',NULL,NULL),(1479668,1754539,6,'writer','written by',NULL),(1479668,190427,7,'producer','producer',NULL),(1479668,3169829,8,'composer',NULL,NULL),(1479668,613870,9,'cinematographer','director of photography',NULL),(1479676,3224541,10,'composer',NULL,NULL),(1479676,84443,1,'actress',NULL,'[\"Stella Elizabeth Matthews\"]'),(1479676,1528,2,'actor',NULL,'[\"Michael Laffont\"]'),(1479676,712908,3,'actress',NULL,'[\"Maya Chopra\"]'),(1479676,3558144,4,'actor',NULL,'[\"Immigration Officer\",\"Buddy #3\"]'),(1479676,576549,5,'director',NULL,NULL),(1479676,576548,6,'writer','written by',NULL),(1479676,357810,7,'producer','executive producer',NULL),(1479676,2217,8,'composer',NULL,NULL),(1479676,4174387,9,'composer',NULL,NULL),(1480295,860315,10,'producer','producer',NULL),(1480295,134,1,'actor',NULL,'[\"Benjamin Ford\"]'),(1480295,237,2,'actor',NULL,'[\"Emil Kovac\"]'),(1480295,893257,3,'actor',NULL,'[\"Chris Ford\"]'),(1480295,3482594,4,'actress',NULL,'[\"Sarah Ford\"]'),(1480295,425756,5,'director',NULL,NULL),(1480295,2489193,6,'writer','written by',NULL),(1480295,108069,7,'producer','producer',NULL),(1480295,146120,8,'producer','producer',NULL),(1480295,722603,9,'producer','producer',NULL),(1480656,5893,10,'cinematographer','director of photography',NULL),(1480656,1500155,1,'actor',NULL,'[\"Eric Packer\"]'),(1480656,300,2,'actress',NULL,'[\"Didi Fancher\"]'),(1480656,300589,3,'actress',NULL,'[\"Elise Shifrin\"]'),(1480656,23832,4,'actor',NULL,'[\"André Petrescu\"]'),(1480656,343,5,'director',NULL,NULL),(1480656,1680347,6,'writer','novel',NULL),(1480656,104418,7,'producer','producer',NULL),(1480656,441792,8,'producer','producer',NULL),(1480656,6290,9,'composer',NULL,NULL),(1480660,556325,10,'director',NULL,NULL),(1480660,2171329,1,'actress',NULL,'[\"Haka (segment \\\"The Duel\\\")\"]'),(1480660,1931870,2,'actress',NULL,'[\"Sister (segment \\\"Odd One Out\\\")\"]'),(1480660,160049,3,'actress',NULL,'[\"Female Soldier (segment \\\"Prototype\\\")\",\"Kelly (segment \\\"The Package\\\")\"]'),(1480660,1001404,4,'actor',NULL,'[\"Sarge (segment \\\"Prototype\\\")\",\"Joseph (segment \\\"Homecoming\\\")\"]'),(1480660,1721889,5,'director','creative director',NULL),(1480660,32925,6,'director',NULL,NULL),(1480660,632402,7,'director',NULL,NULL),(1480660,837371,8,'director',NULL,NULL),(1480660,2282696,9,'director',NULL,NULL),(14814040,922919,10,'producer','producer',NULL),(14814040,3614913,1,'actress',NULL,'[\"Danni\"]'),(14814040,10657454,2,'actress',NULL,'[\"Rowan\"]'),(14814040,3729721,3,'actor',NULL,'[\"Colin\"]'),(14814040,3180297,4,'actress',NULL,'[\"Harper\"]'),(14814040,791723,5,'director',NULL,NULL),(14814040,5085606,6,'producer','producer',NULL),(14814040,12647497,7,'producer','producer',NULL),(14814040,415266,8,'producer','producer',NULL),(14814040,5502454,9,'producer','producer',NULL),(1481572,862946,10,'cinematographer',NULL,NULL),(1481572,1102140,1,'actor',NULL,'[\"Sam Wexler\"]'),(1481572,15196,2,'actress',NULL,'[\"Annie\"]'),(1481572,1443740,3,'actress',NULL,'[\"Mary Catherine\"]'),(1481572,3215591,4,'actor',NULL,'[\"Rasheen\"]'),(1481572,2249828,5,'producer','producer',NULL),(1481572,2803928,6,'producer','producer',NULL),(1481572,2830113,7,'producer','producer',NULL),(1481572,823133,8,'producer','producer',NULL),(1481572,2967514,9,'composer',NULL,NULL),(14817272,3237986,10,'composer',NULL,NULL),(14817272,1015262,1,'actress',NULL,'[\"Beth\"]'),(14817272,4168062,2,'actress',NULL,'[\"Kate\"]'),(14817272,2865678,3,'actor',NULL,'[\"Zain\"]'),(14817272,3037896,4,'actor',NULL,'[\"Rob\"]'),(14817272,2040537,5,'director',NULL,NULL),(14817272,8166118,6,'writer','based on the novel by',NULL),(14817272,5011725,7,'producer','producer',NULL),(14817272,1532744,8,'producer','producer',NULL),(14817272,1460251,9,'producer','producer',NULL),(1482459,372329,10,'producer','producer',NULL),(1482459,1374980,1,'actor',NULL,'[\"Ted\"]'),(1482459,2357847,2,'actress',NULL,'[\"Audrey\"]'),(1482459,362,3,'actor',NULL,'[\"The Lorax\"]'),(1482459,1159180,4,'actor',NULL,'[\"The Once-ler\"]'),(1482459,719208,5,'director',NULL,NULL),(1482459,49633,6,'director','co-director',NULL),(1482459,317450,7,'writer','based on the book by',NULL),(1482459,666791,8,'writer','screenplay by',NULL),(1482459,202425,9,'writer','screenplay by',NULL),(1483013,376416,10,'producer','producer',NULL),(1483013,129,1,'actor',NULL,'[\"Jack\"]'),(1483013,151,2,'actor',NULL,'[\"Beech\"]'),(1483013,2057859,3,'actress',NULL,'[\"Victoria\"]'),(1483013,1385871,4,'actress',NULL,'[\"Julia\"]'),(1483013,2676052,5,'director',NULL,NULL),(1483013,2244980,6,'writer','screenplay',NULL),(1483013,1578335,7,'writer','screenplay',NULL),(1483013,1858656,8,'producer','producer',NULL),(1483013,1249995,9,'producer','producer',NULL),(1483324,255440,10,'editor',NULL,NULL),(1483324,412,1,'actor',NULL,'[\"George Hartman\"]'),(1483324,267812,2,'actress',NULL,'[\"Edith Martin\"]'),(1483324,3920288,3,'actress',NULL,'[\"Audrey Martin\"]'),(1483324,4901642,4,'actor',NULL,'[\"Conrad Hartman\"]'),(1483324,2666268,5,'director',NULL,NULL),(1483324,2773757,6,'writer','written by',NULL),(1483324,508904,7,'producer','producer',NULL),(1483324,762094,8,'composer',NULL,NULL),(1483324,434400,9,'cinematographer','director of photography',NULL),(1483797,4091178,10,'producer','producer',NULL),(1483797,454120,1,'actor',NULL,'[\"JP\"]'),(1483797,1066974,2,'actress',NULL,'[\"Sonoshee\"]'),(1483797,38355,3,'actor',NULL,'[\"Frisbee\"]'),(1483797,605676,4,'actor',NULL,'[\"Shinkai\"]'),(1483797,1238086,5,'director',NULL,NULL),(1483797,411002,6,'writer','original story',NULL),(1483797,257939,7,'writer','screenplay',NULL),(1483797,1371924,8,'writer','screenplay',NULL),(1483797,902135,9,'writer','adr script',NULL),(1483831,1729612,10,'producer','producer',NULL),(1483831,2935952,1,'actor',NULL,'[\"Shmulik\"]'),(1483831,1553954,2,'actor',NULL,'[\"Assi\"]'),(1483831,1025983,3,'actor',NULL,'[\"Hertzel\"]'),(1483831,615688,4,'actor',NULL,'[\"Yigal\"]'),(1483831,1413443,5,'director',NULL,NULL),(1483831,82058,6,'producer','producer',NULL),(1483831,1672318,7,'producer','producer',NULL),(1483831,1570630,8,'producer','producer',NULL),(1483831,320670,9,'producer','producer',NULL),(14843560,5766106,1,'actress',NULL,'[\"Beth\"]'),(14843560,8048167,2,'actor',NULL,'[\"Micah\"]'),(14843560,8790881,3,'actor',NULL,'[\"Sebastian\"]'),(14843560,188888,4,'director',NULL,NULL),(14843560,8332983,5,'producer','producer',NULL),(14843560,1912969,6,'producer','producer',NULL),(14843560,4383353,7,'composer',NULL,NULL),(14843560,1557549,8,'cinematographer',NULL,NULL),(14843560,5129519,9,'production_designer',NULL,NULL),(1485698,953857,10,'production_designer',NULL,NULL),(1485698,1458971,1,'actor',NULL,'[\"Edward Srodon\"]'),(1485698,246189,2,'actor',NULL,'[\"Zdzislaw Dziabas\"]'),(1485698,695835,3,'actress',NULL,'[\"Bozena Dziabasowa\"]'),(1485698,867603,4,'actor',NULL,'[\"Mróz\"]'),(1485698,1500530,5,'director',NULL,NULL),(1485698,467219,6,'writer','co-author',NULL),(1485698,3559276,7,'composer',NULL,NULL),(1485698,699670,8,'cinematographer',NULL,NULL),(1485698,1724987,9,'editor',NULL,NULL),(1485796,867768,10,'producer','producer',NULL),(1485796,413168,1,'actor',NULL,'[\"P.T. Barnum\"]'),(1485796,931329,2,'actress',NULL,'[\"Charity Barnum\"]'),(1485796,1374980,3,'actor',NULL,'[\"Phillip Carlyle\"]'),(1485796,3918035,4,'actress',NULL,'[\"Anne Wheeler\"]'),(1485796,1243905,5,'director',NULL,NULL),(1485796,81081,6,'writer','screenplay by',NULL),(1485796,174374,7,'writer','screenplay by',NULL),(1485796,1858656,8,'producer','producer',NULL),(1485796,548257,9,'producer','producer',NULL),(14859416,3515123,10,'editor',NULL,NULL),(14859416,9116497,1,'actor',NULL,'[\"Emre\"]'),(14859416,6446613,2,'actress',NULL,'[\"Judge Zeynep\"]'),(14859416,15141839,3,'actor',NULL,'[\"Hunter 1\"]'),(14859416,3273956,4,'actor',NULL,'[\"Mayor Selim Oztürk\"]'),(14859416,1625220,5,'director',NULL,NULL),(14859416,1754588,6,'producer','producer',NULL),(14859416,1626972,7,'producer','producer',NULL),(14859416,929571,8,'composer',NULL,NULL),(14859416,1030410,9,'cinematographer',NULL,NULL),(1486185,373588,10,'composer',NULL,NULL),(1486185,1086543,1,'actress',NULL,'[\"Valerie\"]'),(1486185,1305,2,'actor',NULL,'[\"Father Auguste\"]'),(1486185,198,3,'actor',NULL,'[\"Solomon\"]'),(1486185,121605,4,'actor',NULL,'[\"Cesaire\"]'),(1486185,362566,5,'director',NULL,NULL),(1486185,424901,6,'writer','written by',NULL),(1486185,2248832,7,'producer','producer',NULL),(1486185,138,8,'producer','producer',NULL),(1486185,798930,9,'producer','producer',NULL),(1486190,872799,10,'producer','producer',NULL),(1486190,2605345,1,'actress',NULL,'[\"Tamara Drewe\"]'),(1486190,1812656,2,'actor',NULL,'[\"Andy Cobb\"]'),(1486190,1002641,3,'actor',NULL,'[\"Ben Sergeant\"]'),(1486190,19885,4,'actor',NULL,'[\"Nicholas Hardiment\"]'),(1486190,1241,5,'director',NULL,NULL),(1486190,799654,6,'writer','graphic novel',NULL),(1486190,1620490,7,'writer','screenplay',NULL),(1486190,654077,8,'producer','producer',NULL),(1486190,780870,9,'producer','producer',NULL),(1486192,753083,10,'producer','producer',NULL),(1486192,131,1,'actor',NULL,'[\"Edgar Allan Poe\"]'),(1486192,1404408,2,'actress',NULL,'[\"Emily Hamilton\"]'),(1486192,1812656,3,'actor',NULL,'[\"Detective Fields\"]'),(1486192,322407,4,'actor',NULL,'[\"Capt. Charles Hamilton\"]'),(1486192,574625,5,'director',NULL,NULL),(1486192,1110844,6,'writer','written by',NULL),(1486192,515226,7,'writer','written by',NULL),(1486192,2162955,8,'producer','producer',NULL),(1486192,1006167,9,'producer','producer',NULL),(1486193,4096030,10,'producer','producer',NULL),(1486193,1670029,1,'actor',NULL,'[\"Thomas Anders\"]'),(1486193,4825,2,'actress',NULL,'[\"Tatia Meddevi\"]'),(1486193,185404,3,'actor',NULL,'[\"Sebastian Ganz\"]'),(1486193,1287,4,'actress',NULL,'[\"Miriam Eisner\"]'),(1486193,1317,5,'director',NULL,NULL),(1486193,1209140,6,'writer','screenplay',NULL),(1486193,3649361,7,'writer','based on a screenplay by',NULL),(1486193,3567755,8,'producer','producer',NULL),(1486193,489487,9,'producer','producer',NULL),(14866710,5527923,10,'editor',NULL,NULL),(14866710,5008318,1,'actor',NULL,'[\"Sebastian\"]'),(14866710,4596051,2,'actor',NULL,'[\"Mikkel\"]'),(14866710,2070336,3,'actress',NULL,'[\"Hjørdis\"]'),(14866710,7611435,4,'actor',NULL,'[\"Kasper\"]'),(14866710,5905770,5,'director',NULL,NULL),(14866710,5474899,6,'writer',NULL,NULL),(14866710,2511326,7,'producer','producer',NULL),(14866710,5712002,8,'composer',NULL,NULL),(14866710,3819279,9,'cinematographer',NULL,NULL),(1486834,1030457,10,'producer','producer',NULL),(1486834,705356,1,'actor',NULL,'[\"Wallace\"]'),(1486834,1443740,2,'actress',NULL,'[\"Chantry\"]'),(1486834,1177914,3,'actress',NULL,'[\"Dalia\"]'),(1486834,3485845,4,'actor',NULL,'[\"Allan\"]'),(1486834,236226,5,'director',NULL,NULL),(1486834,997459,6,'writer','written by',NULL),(1486834,5182094,7,'writer','play \"Toothpaste and Cigars\"',NULL),(1486834,3867315,8,'writer','play \"Toothpaste and Cigars\"',NULL),(1486834,3510918,9,'producer','producer',NULL),(1487118,2519565,10,'producer','producer',NULL),(1487118,428065,1,'actress',NULL,'[\"Kim Matthews\"]'),(1487118,2067953,2,'actor',NULL,'[\"Jonny\"]'),(1487118,631490,3,'actor',NULL,'[\"Richard\"]'),(1487118,222,4,'actress',NULL,'[\"Caroline\"]'),(1487118,1288766,5,'director',NULL,NULL),(1487118,2423647,6,'writer','screenplay',NULL),(1487118,2565559,7,'producer','producer',NULL),(1487118,189248,8,'producer','producer',NULL),(1487118,351627,9,'producer','producer',NULL),(1488555,4090,10,'cinematographer','director of photography',NULL),(1488555,867,1,'actor',NULL,'[\"Dave Lockwood\"]'),(1488555,5351,2,'actor',NULL,'[\"Mitch Planko\"]'),(1488555,1312575,3,'actress',NULL,'[\"Sabrina McKay\"]'),(1488555,5182,4,'actress',NULL,'[\"Jamie Lockwood\"]'),(1488555,229694,5,'director',NULL,NULL),(1488555,524190,6,'writer','written by',NULL),(1488555,601859,7,'writer','written by',NULL),(1488555,605775,8,'producer','producer',NULL),(1488555,2201,9,'composer',NULL,NULL),(1488589,119946,10,'producer','producer',NULL),(1488589,191,1,'actor',NULL,'[\"Cricket\"]'),(1488589,103195,2,'actor',NULL,'[\"Geppetto\"]'),(1488589,9640481,3,'actor',NULL,'[\"Pinocchio\",\"Carlo\"]'),(1488589,1218607,4,'actor',NULL,'[\"Priest\"]'),(1488589,868219,5,'director',NULL,NULL),(1488589,348993,6,'director',NULL,NULL),(1488589,3239034,7,'writer','screenplay by',NULL),(1488589,172830,8,'writer','based on the book \"Pinocchio\" written by',NULL),(1488589,730422,9,'writer','screen story by',NULL),(1488591,2068773,10,'producer','producer',NULL),(1488591,1126978,1,'actor',NULL,'[\"Layton\"]'),(1488591,1689927,2,'actress',NULL,'[\"Luke\"]'),(1488591,1679934,3,'actress',NULL,'[\"Janice Quatlane\"]'),(1488591,913777,4,'actor',NULL,'[\"Descole\"]'),(1488591,2621812,5,'director',NULL,NULL),(1488591,1757129,6,'writer','story',NULL),(1488591,1257846,7,'writer','screenplay',NULL),(1488591,8375,8,'producer','co-executive producer',NULL),(1488591,2332735,9,'producer','producer',NULL),(1488598,2393054,10,'editor',NULL,NULL),(1488598,172557,1,'actor',NULL,'[\"Jacob\"]'),(1488598,383533,2,'actress',NULL,'[\"Kaycee\"]'),(1488598,935057,3,'actor',NULL,'[\"Dr. Trousdale\"]'),(1488598,416404,4,'actor',NULL,'[\"David\"]'),(1488598,956484,5,'director',NULL,NULL),(1488598,8926,6,'writer','written by',NULL),(1488598,2376774,7,'producer','producer',NULL),(1488598,624820,8,'composer',NULL,NULL),(1488598,575329,9,'cinematographer','director of photography',NULL),(1488606,746273,10,'producer','producer',NULL),(1488606,255,1,'actor',NULL,'[\"Tom \'Redfly\' Davis\"]'),(1488606,1209966,2,'actor',NULL,'[\"Santiago \'Pope\' Garcia\"]'),(1488606,402271,3,'actor',NULL,'[\"William \'Ironhead\' Miller\"]'),(1488606,1330560,4,'actor',NULL,'[\"Ben Miller\"]'),(1488606,1170855,5,'director',NULL,NULL),(1488606,1676793,6,'writer','story by',NULL),(1488606,230306,7,'producer','producer',NULL),(1488606,308672,8,'producer','producer',NULL),(1488606,2191045,9,'producer','producer',NULL),(14888898,1512353,10,'cinematographer',NULL,NULL),(14888898,60705,1,'actress',NULL,'[\"Tânia\"]'),(14888898,519933,2,'actor',NULL,'[\"Carlos\"]'),(14888898,1106944,3,'actor',NULL,'[\"Richard\"]'),(14888898,5532249,4,'actor',NULL,'[\"Raúl\"]'),(14888898,554076,5,'director',NULL,NULL),(14888898,4437366,6,'writer','writer',NULL),(14888898,3015482,7,'producer','producer',NULL),(14888898,2008556,8,'producer','producer',NULL),(14888898,1546919,9,'composer',NULL,NULL),(1489887,2273482,10,'producer','producer',NULL),(1489887,3239803,1,'actress',NULL,'[\"Amy\"]'),(1489887,2788156,2,'actress',NULL,'[\"Molly\"]'),(1489887,1790970,3,'actress',NULL,'[\"Miss Fine\"]'),(1489887,837177,4,'actor',NULL,'[\"Principal Brown\"]'),(1489887,1312575,5,'director',NULL,NULL),(1489887,1054604,6,'writer','written by',NULL),(1489887,2873539,7,'writer','written by',NULL),(1489887,2573005,8,'writer','written by',NULL),(1489887,4199289,9,'writer','written by',NULL),(1489889,835959,10,'producer','producer',NULL),(1489889,425005,1,'actor',NULL,'[\"Bob Stone\"]'),(1489889,366389,2,'actor',NULL,'[\"Calvin Joyner\"]'),(1489889,630379,3,'actress',NULL,'[\"Maggie\"]'),(1489889,752407,4,'actress',NULL,'[\"Agent Pamela Harris\"]'),(1489889,1098493,5,'director',NULL,NULL),(1489889,54697,6,'writer','screenplay',NULL),(1489889,2811682,7,'writer','screenplay',NULL),(1489889,288202,8,'producer','producer',NULL),(1489889,1213782,9,'producer','producer',NULL),(1490017,9204084,10,'writer','based on LEGO Construction Toys created by',NULL),(1490017,695435,1,'actor',NULL,'[\"Emmet Brickowski\"]'),(1490017,2071,2,'actor',NULL,'[\"Lord Business\",\"President Business\",\"The Man Upstairs\"]'),(1490017,6969,3,'actress',NULL,'[\"Wyldstyle\",\"Lucy\"]'),(1490017,4715,4,'actor',NULL,'[\"Batman\",\"Bruce Wayne\"]'),(1490017,520488,5,'director',NULL,NULL),(1490017,588087,6,'director',NULL,NULL),(1490017,1087952,7,'writer','story by',NULL),(1490017,1156984,8,'writer','story by',NULL),(1490017,9204083,9,'writer','based on LEGO Construction Toys created by',NULL),(14905650,3176035,1,'actress',NULL,'[\"Izzy\"]'),(14905650,692652,2,'actress',NULL,'[\"Mother\"]'),(14905650,3958780,3,'actress',NULL,'[\"Amber\"]'),(14905650,3080055,4,'actor',NULL,'[\"Uncle\"]'),(14913250,2553340,10,'cinematographer',NULL,NULL),(14913250,3226240,1,'actress',NULL,'[\"Jeanne Mayer\"]'),(14913250,480850,2,'actor',NULL,'[\"Jean\"]'),(14913250,5620088,3,'actor',NULL,'[\"Simon Mayer\"]'),(14913250,519933,4,'actor',NULL,'[\"Vitor\"]'),(14913250,5663699,5,'director',NULL,NULL),(14913250,200648,6,'producer','producer',NULL),(14913250,1931216,7,'producer','producer',NULL),(14913250,2245654,8,'producer','producer',NULL),(14913250,5664570,9,'composer',NULL,NULL),(1492030,434565,10,'actress',NULL,'[\"Mrs. Pierce\"]'),(1492030,701,1,'actress',NULL,'[\"Mildred Pierce\"]'),(1492030,1602,2,'actor',NULL,'[\"Monty Beragon\"]'),(1492030,939697,3,'actress',NULL,'[\"Veda Pierce\"]'),(1492030,639928,4,'actor',NULL,'[\"Bert Pierce\"]'),(1492030,502425,5,'actress',NULL,'[\"Lucy Gessler\"]'),(1492030,1457,6,'actor',NULL,'[\"Wally Burgan\"]'),(1492030,1858,7,'actress',NULL,'[\"Ida Corwin\"]'),(1492030,1677477,8,'actress',NULL,'[\"Letty\"]'),(1492030,349881,9,'actor',NULL,'[\"Mr. Pierce\"]'),(14923260,55431,10,'producer','producer',NULL),(14923260,65007,1,'actor',NULL,'[\"Chava\"]'),(14923260,225,2,'actor',NULL,'[\"Richard Quinn\"]'),(14923260,9060911,3,'actor',NULL,'[\"Alex\"]'),(14923260,4069814,4,'actress',NULL,'[\"Luna\"]'),(14923260,190861,5,'director',NULL,NULL),(14923260,4354045,6,'writer','screenplay by',NULL),(14923260,4353551,7,'writer','screenplay by',NULL),(14923260,4353665,8,'writer','screenplay by',NULL),(14923260,2252386,9,'writer','story by',NULL),(1492841,2612932,10,'production_designer',NULL,NULL),(1492841,3235210,1,'actress',NULL,'[\"Ellie Thir\"]'),(1492841,3234949,2,'actress',NULL,'[\"Thuy Le\"]'),(1492841,14999143,3,'actress',NULL,'[\"Shlomit\"]'),(1492841,858008,4,'actress',NULL,'[\"Ellie\'s Mom\",\"Self\"]'),(1492841,972889,5,'producer','producer',NULL),(1492841,2636630,6,'producer','producer',NULL),(1492841,972113,7,'composer',NULL,NULL),(1492841,436346,8,'cinematographer',NULL,NULL),(1492841,2171865,9,'editor',NULL,NULL),(1493886,767198,10,'cinematographer','director of photography',NULL),(1493886,1503416,1,'actress',NULL,'[\"Princess Evlynia - Lyn\"]'),(1493886,574308,2,'actor',NULL,'[\"Greg-ash\"]'),(1493886,1592061,3,'actor',NULL,'[\"Shaman Murtagh\"]'),(1493886,472761,4,'actor',NULL,'[\"Bjorn Magnusson\"]'),(1493886,1509906,5,'director',NULL,NULL),(1493886,258420,6,'writer','story consultant',NULL),(1493886,4703712,7,'producer','producer',NULL),(1493886,2713051,8,'composer',NULL,NULL),(1493886,1394880,9,'composer',NULL,NULL),(1494772,4170,10,'writer','character created by: Batman',NULL),(1494772,287,1,'actor',NULL,'[\"Batman\"]'),(1494772,1319,2,'actor',NULL,'[\"Superman\"]'),(1494772,636562,3,'actor',NULL,'[\"Lex Luthor\"]'),(1494772,868659,4,'actress',NULL,'[\"Superwoman\"]'),(1494772,515005,5,'director',NULL,NULL),(1494772,2304017,6,'director',NULL,NULL),(1494772,568336,7,'writer','written by',NULL),(1494772,796950,8,'writer','character created by: Superman',NULL),(1494772,795975,9,'writer','character created by: Superman',NULL),(1496025,122335,10,'writer','screenplay',NULL),(1496025,295,1,'actress',NULL,'[\"Selene\"]'),(1496025,1013003,2,'actor',NULL,'[\"Detective Sebastian\"]'),(1496025,2086223,3,'actress',NULL,'[\"Eve\"]'),(1496025,1653,4,'actor',NULL,'[\"Dr. Jacob Lane\"]'),(1496025,617523,5,'director',NULL,NULL),(1496025,825407,6,'director',NULL,NULL),(1496025,936482,7,'writer','screenplay',NULL),(1496025,387198,8,'writer','screenplay',NULL),(1496025,833089,9,'writer','screenplay',NULL),(1496422,1573757,10,'producer','producer',NULL),(1496422,190,1,'actor',NULL,'[\"Ward Jansen\"]'),(1496422,173,2,'actress',NULL,'[\"Charlotte Bless\"]'),(1496422,131,3,'actor',NULL,'[\"Hillary Van Wetter\"]'),(1496422,1374980,4,'actor',NULL,'[\"Jack Jansen\"]'),(1496422,200005,5,'director',NULL,NULL),(1496422,223320,6,'writer','screenplay by',NULL),(1496422,146120,7,'producer','producer',NULL),(1496422,255891,8,'producer','producer',NULL),(1496422,503592,9,'producer','producer',NULL),(14966324,9921711,10,'editor',NULL,NULL),(14966324,4879798,1,'actress',NULL,'[\"Katie\"]'),(14966324,10206525,2,'actress',NULL,'[\"Liz\"]'),(14966324,11261632,3,'actress',NULL,'[\"Summer\"]'),(14966324,2063780,4,'actor',NULL,'[\"Hermès\"]'),(14966324,10264788,5,'producer','producer',NULL),(14966324,10858541,6,'producer','producer',NULL),(14966324,1082514,7,'producer','producer',NULL),(14966324,3325324,8,'composer',NULL,NULL),(14966324,11064993,9,'cinematographer',NULL,NULL),(1496884,3586377,10,'editor',NULL,NULL),(1496884,2472051,1,'actress',NULL,'[\"Zoe\"]'),(1496884,341632,2,'actress',NULL,'[\"Molly\"]'),(1496884,1899091,3,'actor',NULL,'[\"Toby\"]'),(1496884,3045814,4,'actor',NULL,'[\"The Captor\"]'),(1496884,800951,5,'director',NULL,NULL),(1496884,3605201,6,'producer','producer',NULL),(1496884,1918316,7,'composer',NULL,NULL),(1496884,1919671,8,'composer',NULL,NULL),(1496884,1644751,9,'cinematographer',NULL,NULL),(1498569,2833364,10,'composer','co-composer',NULL),(1498569,1985859,1,'actress',NULL,'[\"Annabel Cotton\"]'),(1498569,1375330,2,'actor',NULL,'[\"Enoch Brae\"]'),(1498569,1076976,3,'actor',NULL,'[\"Hiroshi Takahashi\"]'),(1498569,4922,4,'actress',NULL,'[\"Elizabeth Cotton\"]'),(1498569,1814,5,'director',NULL,NULL),(1498569,2381911,6,'writer','written by',NULL),(1498569,4976,7,'producer','producer',NULL),(1498569,397171,8,'producer','producer',NULL),(1498569,165,9,'producer','producer',NULL),(1498878,2888,1,'actor',NULL,'[\"Charlie Tower\"]'),(1498878,2728917,2,'actor',NULL,'[\"Astronomy Colleague\"]'),(1498878,3602806,3,'actress',NULL,'[\"Hannah Masterson\"]'),(1498878,1853053,4,'actress',NULL,'[\"Starlet\"]'),(1498878,2028585,5,'director',NULL,NULL),(1498878,1411980,6,'writer','screenplay',NULL),(1498878,522454,7,'writer','story',NULL),(1498878,1401425,8,'producer','producer',NULL),(1498878,2033716,9,'composer',NULL,NULL),(1499658,827731,10,'producer','producer',NULL),(1499658,867,1,'actor',NULL,'[\"Nick Hendricks\"]'),(1499658,206359,2,'actor',NULL,'[\"Dale Arbus\"]'),(1499658,837177,3,'actor',NULL,'[\"Kurt Buckman\"]'),(1499658,2528248,4,'actor',NULL,'[\"Thomas, Head of Security\"]'),(1499658,1164861,5,'director',NULL,NULL),(1499658,2864,6,'writer','screenplay',NULL),(1499658,197855,7,'writer','screenplay',NULL),(1499658,326246,8,'writer','screenplay',NULL),(1499658,711840,9,'producer','producer',NULL),(15006566,479291,10,'producer','producer',NULL),(15006566,283997,1,'actress',NULL,'[\"Olga\"]'),(15006566,1616970,2,'actor',NULL,'[\"Antoine\"]'),(15006566,951958,3,'actor',NULL,'[\"Xan\"]'),(15006566,3661978,4,'actor',NULL,'[\"Lorenzo\"]'),(15006566,2507695,5,'director',NULL,NULL),(15006566,3124294,6,'writer','screenplay',NULL),(15006566,1028742,7,'producer','producer',NULL),(15006566,3882588,8,'producer','producer',NULL),(15006566,5644820,9,'producer','producer',NULL),(15010292,5033056,10,'production_designer',NULL,NULL),(15010292,2633535,1,'actor',NULL,'[\"Billy Rubin\"]'),(15010292,3729225,2,'actress',NULL,'[\"Jan Stevens\"]'),(15010292,3987673,3,'actress',NULL,'[\"Lamina Propria\"]'),(15010292,3272744,4,'actress',NULL,'[\"Elle di Elle\"]'),(15010292,3270827,5,'director',NULL,NULL),(15010292,4928252,6,'producer','producer',NULL),(15010292,3299225,7,'producer','producer',NULL),(15010292,970196,8,'cinematographer',NULL,NULL),(15010292,2245768,9,'editor',NULL,NULL),(1502397,303032,10,'writer','based on characters created by',NULL),(1502397,226,1,'actor',NULL,'[\"Lt. Mike Lowrey\"]'),(1502397,1454,2,'actor',NULL,'[\"Lt. Marcus Burnett\"]'),(1502397,1227814,3,'actress',NULL,'[\"Kelly\"]'),(1502397,1573253,4,'actor',NULL,'[\"Dorn\"]'),(1502397,4816401,5,'director',NULL,NULL),(1502397,4263190,6,'director',NULL,NULL),(1502397,185976,7,'writer','story by',NULL),(1502397,138620,8,'writer','story by',NULL),(1502397,6200158,9,'writer','screenplay by',NULL),(1502407,15443,10,'producer','producer',NULL),(1502407,130,1,'actress',NULL,'[\"Laurie Strode\"]'),(1502407,339460,2,'actress',NULL,'[\"Karen\"]'),(1502407,5506858,3,'actress',NULL,'[\"Allyson\"]'),(1502407,183921,4,'actor',NULL,'[\"The Shape\"]'),(1502407,337773,5,'director',NULL,NULL),(1502407,118,6,'writer','based on characters created by',NULL),(1502407,384185,7,'writer','based on characters created by',NULL),(1502407,2171769,8,'writer','written by',NULL),(1502407,1144419,9,'writer','written by',NULL),(1502712,329084,10,'producer','producer',NULL),(1502712,1886602,1,'actor',NULL,'[\"Reed Richards\"]'),(1502712,544718,2,'actress',NULL,'[\"Sue Storm\"]'),(1502712,430107,3,'actor',NULL,'[\"Johnny Storm\"]'),(1502712,68260,4,'actor',NULL,'[\"Ben Grimm\",\"The Thing\"]'),(1502712,2503633,5,'director',NULL,NULL),(1502712,2916300,6,'writer','screenplay',NULL),(1502712,1334526,7,'writer','screenplay',NULL),(1502712,498278,8,'writer','Marvel comic book',NULL),(1502712,456158,9,'writer','Marvel comic book',NULL),(1504320,6035,10,'composer',NULL,NULL),(1504320,147,1,'actor',NULL,'[\"King George VI\"]'),(1504320,1691,2,'actor',NULL,'[\"Lionel Logue\"]'),(1504320,307,3,'actress',NULL,'[\"Queen Elizabeth\"]'),(1504320,1394,4,'actor',NULL,'[\"Archbishop Cosmo Lang\"]'),(1504320,393799,5,'director',NULL,NULL),(1504320,782436,6,'writer','screenplay',NULL),(1504320,2096617,7,'producer','producer',NULL),(1504320,792431,8,'producer','producer',NULL),(1504320,1060902,9,'producer','producer',NULL),(1504362,2071741,10,'producer','producer',NULL),(1504362,211565,1,'actor',NULL,'[\"Carlo\"]'),(1504362,403223,2,'actress',NULL,'[\"Serena\"]'),(1504362,272677,3,'actress',NULL,'[\"Cristina\"]'),(1504362,315767,4,'actor',NULL,'[\"Alipandro\"]'),(1504362,661345,5,'director',NULL,NULL),(1504362,70380,6,'writer','writer',NULL),(1504362,1201108,7,'writer','writer',NULL),(1504362,690390,8,'writer','writer',NULL),(1504362,767586,9,'writer','writer',NULL),(1504429,1161522,10,'editor',NULL,NULL),(1504429,141140,1,'actress',NULL,'[\"Mousse\"]'),(1504429,158905,2,'actor',NULL,'[\"Paul\"]'),(1504429,521924,3,'actor',NULL,'[\"Serge\"]'),(1504429,693799,4,'actor',NULL,'[\"Louis\"]'),(1504429,654830,5,'director',NULL,NULL),(1504429,2011137,6,'writer','screenplay',NULL),(1504429,93499,7,'producer','producer',NULL),(1504429,652226,8,'producer','producer',NULL),(1504429,704663,9,'cinematographer',NULL,NULL),(1504443,1316040,10,'composer',NULL,NULL),(1504443,1218,1,'actor',NULL,'[\"Daniel\"]'),(1504443,695560,2,'actress',NULL,'[\"Alicia\"]'),(1504443,156475,3,'actor',NULL,'[\"Timur\"]'),(1504443,1988958,4,'actor',NULL,'[\"Patrick\"]'),(1504443,3458,5,'director',NULL,NULL),(1504443,1140089,6,'writer','screenplay',NULL),(1504443,1016634,7,'writer','screenplay',NULL),(1504443,2989,8,'producer','producer',NULL),(1504443,1710524,9,'composer',NULL,NULL),(1504508,1543747,10,'cinematographer','director of photography',NULL),(1504508,2368789,1,'actress',NULL,'[\"Sweetness O\'Hara\"]'),(1504508,164809,2,'actor',NULL,'[\"Gordon O\'Hara\"]'),(1504508,625789,3,'actor',NULL,'[\"Coleman\"]'),(1504508,2792296,4,'actress',NULL,'[\"Jojo Parker\"]'),(1504508,537199,5,'director',NULL,NULL),(1504508,225389,6,'producer','producer',NULL),(1504508,1131417,7,'producer','producer',NULL),(1504508,1147256,8,'producer','producer',NULL),(1504508,3166649,9,'composer',NULL,NULL),(1506999,2442289,1,'actress',NULL,'[\"Mallory Kane\"]'),(1506999,191,2,'actor',NULL,'[\"Kenneth\"]'),(1506999,1055413,3,'actor',NULL,'[\"Paul\"]'),(1506999,29400,4,'actor',NULL,'[\"Scott\"]'),(1506999,1752,5,'director',NULL,NULL),(1506999,229644,6,'writer','written by',NULL),(1506999,414423,7,'producer','producer',NULL),(1506999,391794,8,'composer',NULL,NULL),(1506999,191896,9,'production_designer',NULL,NULL),(1508661,1227585,1,'actress',NULL,'[\"Junkie\"]'),(1508661,3609341,2,'actress',NULL,'[\"Geek\"]'),(1508661,3609300,3,'actress',NULL,'[\"Badass\",\"1989 The Cunt\"]'),(1508661,1091670,4,'actor',NULL,'[\"Goody Two Shoes\"]'),(1508661,1653163,5,'producer','producer',NULL),(1508661,3609843,6,'producer','producer',NULL),(1508661,3608744,7,'producer','producer',NULL),(1508661,3616422,8,'producer','producer',NULL),(1508661,3015968,9,'producer','producer',NULL),(1508675,932870,1,'actor',NULL,'[\"Marcel Marx\"]'),(1508675,3805567,2,'actor',NULL,'[\"Idrissa\"]'),(1508675,201669,3,'actor',NULL,'[\"Monet\"]'),(1508675,653669,4,'actress',NULL,'[\"Arletty\"]'),(1508675,442454,5,'director',NULL,NULL),(1508675,758742,6,'cinematographer',NULL,NULL),(1508675,513044,7,'editor',NULL,NULL),(1508675,957850,8,'production_designer',NULL,NULL),(15090124,7182,1,'actor',NULL,'[\"Last Man\"]'),(15090124,4907722,2,'actress',NULL,'[\"Nurse\",\"Witch\"]'),(15090124,1568762,3,'actor',NULL,'[\"Surgeon\"]'),(15090124,12788223,4,'actress',NULL,NULL),(15090124,864138,5,'director',NULL,NULL),(15090124,4402,6,'composer',NULL,NULL),(15090124,1019639,7,'cinematographer',NULL,NULL),(15090124,1366137,8,'editor',NULL,NULL),(15090124,6629515,9,'editor',NULL,NULL),(15096128,1275670,10,'producer','producer',NULL),(15096128,3688576,1,'actress',NULL,'[\"Paige Evans\"]'),(15096128,7635388,2,'actress',NULL,'[\"AJ Campos\"]'),(15096128,8534591,3,'actress',NULL,'[\"Gabriela Campos\"]'),(15096128,4814292,4,'actor',NULL,'[\"Dillon\"]'),(15096128,3852987,5,'director',NULL,NULL),(15096128,12781524,6,'writer','written by',NULL),(15096128,6810680,7,'writer','written by',NULL),(15096128,719491,8,'producer','producer',NULL),(15096128,2502123,9,'producer','producer',NULL),(1509767,474709,10,'producer','producer',NULL),(1509767,503567,1,'actor',NULL,'[\"D\'Artagnan\"]'),(1509767,532193,2,'actor',NULL,'[\"Athos\"]'),(1509767,829032,3,'actor',NULL,'[\"Porthos\"]'),(1509767,170,4,'actress',NULL,'[\"Milady de Winter\"]'),(1509767,27271,5,'director',NULL,NULL),(1509767,514821,6,'writer','screenplay',NULL),(1509767,203577,7,'writer','screenplay',NULL),(1509767,241416,8,'writer','novel \"Les Trois Mousquetaires\"',NULL),(1509767,93337,9,'producer','producer',NULL),(1509787,787427,10,'cinematographer',NULL,NULL),(1509787,728762,1,'actor',NULL,'[\"Ben\"]'),(1509787,762424,2,'actor',NULL,'[\"Alan\"]'),(1509787,2425105,3,'actor',NULL,'[\"Kelsey\"]'),(1509787,356017,4,'actress',NULL,'[\"Melanie\"]'),(1509787,1591542,5,'director',NULL,NULL),(1509787,57735,6,'producer','producer',NULL),(1509787,1198914,7,'producer','producer',NULL),(1509787,1096719,8,'producer','producer',NULL),(1509787,1926865,9,'composer',NULL,NULL),(1509788,489464,10,'cinematographer',NULL,NULL),(1509788,2053085,1,'actress',NULL,'[\"Kate\"]'),(1509788,1988111,2,'actress',NULL,'[\"Chloe\"]'),(1509788,1083,3,'actor',NULL,'[\"Dean\"]'),(1509788,352,4,'actor',NULL,'[\"Bruce\"]'),(1509788,625245,5,'director',NULL,NULL),(1509788,2576804,6,'producer','producer',NULL),(1509788,706010,7,'producer','producer',NULL),(1509788,3521453,8,'composer',NULL,NULL),(1509788,1461800,9,'composer',NULL,NULL),(1510906,159698,10,'editor',NULL,NULL),(1510906,121895,1,'actor',NULL,'[\"Davy\"]'),(1510906,1212722,2,'actor',NULL,'[\"James\"]'),(1510906,270625,3,'actor',NULL,'[\"Miles\"]'),(1510906,731704,4,'actor',NULL,'[\"Bill\"]'),(1510906,1463009,5,'director',NULL,NULL),(1510906,803366,6,'writer','written by',NULL),(1510906,1841113,7,'producer','producer',NULL),(1510906,385311,8,'composer',NULL,NULL),(1510906,1592733,9,'cinematographer',NULL,NULL),(15109082,1303851,10,'editor',NULL,NULL),(15109082,189713,1,'actress',NULL,'[\"Eibhlín\"]'),(15109082,71585,2,'actor',NULL,'[\"Seán\"]'),(15109082,12787121,3,'actress',NULL,'[\"Cáit\"]'),(15109082,2789088,4,'actor',NULL,'[\"Da\"]'),(15109082,2128139,5,'director',NULL,NULL),(15109082,10668488,6,'writer','based on the story \'Foster\' by',NULL),(15109082,4871868,7,'producer','producer',NULL),(15109082,719673,8,'composer','composer',NULL),(15109082,1737412,9,'cinematographer','director of photography',NULL),(1510938,168,1,'actor',NULL,'[\"Black\"]'),(1510938,169,2,'actor',NULL,'[\"White\"]'),(1510938,565092,3,'writer','written by',NULL),(1510938,355331,4,'producer','producer',NULL),(1510938,1937,5,'composer',NULL,NULL),(1510938,254580,6,'cinematographer',NULL,NULL),(1510938,534509,7,'editor','co-editor',NULL),(1510938,799200,8,'editor',NULL,NULL),(1510938,98353,9,'production_designer',NULL,NULL),(1511354,2938929,10,'actress',NULL,NULL),(1511354,2646631,1,'actress',NULL,NULL),(1511354,1772460,2,'actor',NULL,'[\"Róber\"]'),(1511354,971346,3,'actress',NULL,'[\"Amelia\"]'),(1511354,144966,4,'actress',NULL,'[\"Chon\"]'),(1511354,596625,5,'director',NULL,NULL),(1511354,412180,6,'composer',NULL,NULL),(1511354,714400,7,'cinematographer',NULL,NULL),(1511354,545480,8,'editor',NULL,NULL),(1511354,3617393,9,'actor',NULL,'[\"Yao\"]'),(1512201,826932,10,'editor',NULL,NULL),(1512201,3617115,1,'self',NULL,'[\"Self\"]'),(1512201,3617143,2,'self',NULL,'[\"Self\"]'),(1512201,3617210,3,'self',NULL,'[\"Self\"]'),(1512201,3616228,4,'self',NULL,'[\"Self\"]'),(1512201,1292131,5,'director',NULL,NULL),(1512201,189138,6,'writer','story editor',NULL),(1512201,1117383,7,'producer','executive producer',NULL),(1512201,2792551,8,'composer',NULL,NULL),(1512201,1374747,9,'editor',NULL,NULL),(1512235,798889,10,'editor',NULL,NULL),(1512235,933988,1,'actor',NULL,'[\"Frank Darbo\"]'),(1512235,680983,2,'actor',NULL,'[\"Libby\"]'),(1512235,239,3,'actress',NULL,'[\"Sarah\"]'),(1512235,102,4,'actor',NULL,'[\"Jacques\"]'),(1512235,348181,5,'director',NULL,NULL),(1512235,47419,6,'producer','producer',NULL),(1512235,394046,7,'producer','producer',NULL),(1512235,61045,8,'composer',NULL,NULL),(1512235,3205,9,'cinematographer','director of photography',NULL),(1512685,850173,10,'producer','producer',NULL),(1512685,749104,1,'actress',NULL,'[\"Julia Levin\",\"Sara\"]'),(1512685,392913,2,'actor',NULL,'[\"Isaac\"]'),(1512685,1379745,3,'actor',NULL,'[\"Ángel\"]'),(1512685,649649,4,'actor',NULL,'[\"Inspector Dimas\"]'),(1512685,602616,5,'director',NULL,NULL),(1512685,1079062,6,'writer','screenplay',NULL),(1512685,138917,7,'producer','producer',NULL),(1512685,868219,8,'producer','producer',NULL),(1512685,963233,9,'producer','producer',NULL),(1514041,2205495,10,'composer',NULL,NULL),(1514041,731075,1,'actress',NULL,'[\"Joanne\"]'),(1514041,989182,2,'actress',NULL,'[\"Cassandra\"]'),(1514041,1166041,3,'actress',NULL,'[\"Shannon\"]'),(1514041,1899225,4,'actress',NULL,'[\"Kerrys\"]'),(1514041,164929,5,'director',NULL,NULL),(1514041,1329894,6,'director',NULL,NULL),(1514041,117081,7,'producer','producer',NULL),(1514041,1701474,8,'producer','producer',NULL),(1514041,3244791,9,'composer',NULL,NULL),(1515091,1469853,10,'producer','producer',NULL),(1515091,375,1,'actor',NULL,'[\"Sherlock Holmes\"]'),(1515091,179,2,'actor',NULL,'[\"Dr. John Watson\"]'),(1515091,364813,3,'actor',NULL,'[\"Professor James Moriarty\"]'),(1515091,1046097,4,'actress',NULL,'[\"Irene Adler\"]'),(1515091,5363,5,'director',NULL,NULL),(1515091,1802251,6,'writer','written by',NULL),(1515091,612487,7,'writer','written by',NULL),(1515091,236279,8,'writer','characters',NULL),(1515091,1206265,9,'producer','producer',NULL),(1515725,587929,1,'director',NULL,NULL),(1515935,374935,10,'cinematographer',NULL,NULL),(1515935,2490944,1,'self',NULL,'[\"Self\"]'),(1515935,2635020,2,'self',NULL,'[\"Self\"]'),(1515935,4242511,3,'self',NULL,'[\"Self\"]'),(1515935,4243179,4,'self',NULL,'[\"Self - Student\"]'),(1515935,2153450,5,'director',NULL,NULL),(1515935,39137,6,'producer','producer',NULL),(1515935,2498092,7,'producer','producer',NULL),(1515935,11758,8,'composer',NULL,NULL),(1515935,3360358,9,'composer',NULL,NULL),(1517260,684620,10,'composer',NULL,NULL),(1517260,1519680,1,'actress',NULL,'[\"Melanie Stryder\",\"Wanda\"]'),(1517260,1796057,2,'actor',NULL,'[\"Jared Howe\"]'),(1517260,1831976,3,'actor',NULL,'[\"Ian O\'Shea\"]'),(1517260,1208167,4,'actress',NULL,'[\"The Seeker\",\"Lacey\"]'),(1517260,629272,5,'director',NULL,NULL),(1517260,2769412,6,'writer','novel \"The Host\"',NULL),(1517260,2445382,7,'producer','producer',NULL),(1517260,777455,8,'producer','producer',NULL),(1517260,917059,9,'producer','producer',NULL),(1517268,1053148,10,'composer',NULL,NULL),(1517268,3053338,1,'actress',NULL,'[\"Barbie\"]'),(1517268,331516,2,'actor',NULL,'[\"Ken\"]'),(1517268,4793987,3,'actress',NULL,'[\"Barbie\"]'),(1517268,571952,4,'actress',NULL,'[\"Barbie\"]'),(1517268,1950086,5,'director',NULL,NULL),(1517268,876,6,'writer','written by',NULL),(1517268,3943537,7,'producer','producer',NULL),(1517268,107509,8,'producer','producer',NULL),(1517268,382268,9,'producer','producer',NULL),(1517451,682757,10,'writer','based on the 1976 screenplay by',NULL),(1517451,3078932,1,'actress',NULL,'[\"Ally\"]'),(1517451,177896,2,'actor',NULL,'[\"Jack\"]'),(1517451,385,3,'actor',NULL,'[\"Bobby\"]'),(1517451,342399,4,'actor',NULL,'[\"Phil (Jack\'s Driver)\"]'),(1517451,744839,5,'writer','screenplay by',NULL),(1517451,3391497,6,'writer','screenplay by',NULL),(1517451,366454,7,'writer','based on the 1954 screenplay by',NULL),(1517451,242869,8,'writer','based on the 1976 screenplay by',NULL),(1517451,225820,9,'writer','based on the 1976 screenplay by',NULL),(1517470,906696,10,'actor',NULL,'[\"Cell\"]'),(1517470,637586,1,'actress',NULL,'[\"Son Goku\",\"Son Gohan\"]'),(1517470,849028,2,'actress',NULL,'[\"Krillin\"]'),(1517470,875442,3,'actress',NULL,'[\"Bulma\"]'),(1517470,476223,4,'actor',NULL,'[\"Trunks\"]'),(1517470,868066,5,'writer','story',NULL),(1517470,594488,6,'actor',NULL,'[\"Kame-sennin\"]'),(1517470,31844,7,'actor',NULL,'[\"Piccolo Daimao\"]'),(1517470,394690,8,'actor',NULL,'[\"Vegeta\"]'),(1517470,620333,9,'actor',NULL,'[\"Freeza\"]'),(1518812,882102,10,'producer','producer',NULL),(1518812,931329,1,'actress',NULL,'[\"Emily Tetherow\"]'),(1518812,339304,2,'actor',NULL,'[\"Stephen Meek\"]'),(1518812,200452,3,'actor',NULL,'[\"Thomas Gately\"]'),(1518812,1599,4,'actor',NULL,'[\"Soloman Tetherow\"]'),(1518812,716980,5,'director',NULL,NULL),(1518812,1299680,6,'writer','screenplay by',NULL),(1518812,193876,7,'producer','producer',NULL),(1518812,1965828,8,'producer','producer',NULL),(1518812,1507013,9,'producer','producer',NULL),(1518861,1199131,10,'production_designer',NULL,NULL),(1518861,680,1,'actor',NULL,'[\"Tom Woodard\"]'),(1518861,374,2,'actor',NULL,'[\"Richard Devain\"]'),(1518861,1176,3,'actress',NULL,'[\"Samantha Woodard\"]'),(1518861,5258,4,'actor',NULL,'[\"Charles Devain\"]'),(1518861,676248,5,'director',NULL,NULL),(1518861,838289,6,'writer','written by',NULL),(1518861,1850657,7,'composer',NULL,NULL),(1518861,29644,8,'cinematographer',NULL,NULL),(1518861,3739,9,'editor',NULL,NULL),(1520453,2446932,10,'production_designer',NULL,NULL),(1520453,83714,1,'actor',NULL,'[\"Martin\"]'),(1520453,2676147,2,'actor',NULL,'[\"Jeff\"]'),(1520453,336701,3,'actress',NULL,'[\"Maura\"]'),(1520453,1264705,4,'actress',NULL,'[\"Mel\"]'),(1520453,513790,5,'director',NULL,NULL),(1520453,2655735,6,'producer','producer',NULL),(1520453,398843,7,'composer',NULL,NULL),(1520453,641784,8,'cinematographer','director of photography',NULL),(1520453,181006,9,'editor',NULL,NULL),(15206378,2850179,10,'composer',NULL,NULL),(15206378,125540,1,'actress',NULL,'[\"Margherita\"]'),(15206378,5072747,2,'actress',NULL,'[\"Susanna\"]'),(15206378,408234,3,'actress',NULL,'[\"Agostina\"]'),(15206378,8111444,4,'actress',NULL,'[\"Caterina\"]'),(15206378,3500190,5,'director',NULL,NULL),(15206378,9119331,6,'writer','written by',NULL),(15206378,2783258,7,'producer','producer',NULL),(15206378,1713233,8,'producer','producer',NULL),(15206378,585747,9,'producer','producer',NULL),(1521783,3643706,1,'actor',NULL,'[\"Sammy\"]'),(1521783,3633752,2,'actress',NULL,'[\"Kelly Thompson\"]'),(1521783,3643928,3,'actor',NULL,'[\"Brian\"]'),(1521783,3635292,4,'actress',NULL,'[\"Janine\"]'),(1521783,3642408,5,'director',NULL,NULL),(1521783,2769284,6,'producer','producer',NULL),(1521783,3063482,7,'composer',NULL,NULL),(1521783,3177612,8,'cinematographer','director of photography',NULL),(15218000,3960142,10,'cinematographer','director of photography',NULL),(15218000,5527841,1,'actor',NULL,'[\"Noah\"]'),(15218000,6299248,2,'actor',NULL,'[\"Howie\"]'),(15218000,158632,3,'actress',NULL,'[\"Erin\"]'),(15218000,1505056,4,'actor',NULL,'[\"Will\"]'),(15218000,3821224,5,'director',NULL,NULL),(15218000,1661460,6,'producer','producer',NULL),(15218000,3771587,7,'producer','producer',NULL),(15218000,1996954,8,'producer','producer',NULL),(15218000,3044268,9,'composer',NULL,NULL),(1521848,739151,10,'composer',NULL,NULL),(1521848,366,1,'actress',NULL,'[\"Suzanne Pujol\"]'),(1521848,367,2,'actor',NULL,'[\"Maurice Babin\"]'),(1521848,524528,3,'actor',NULL,'[\"Robert Pujol\"]'),(1521848,895759,4,'actress',NULL,'[\"Nadège Dumoulin\"]'),(1521848,654830,5,'director',NULL,NULL),(1521848,54667,6,'writer','play \"Potiche\"',NULL),(1521848,344899,7,'writer','play \"Potiche\"',NULL),(1521848,22969,8,'producer','producer',NULL),(1521848,22971,9,'producer','producer',NULL),(1523483,4088079,10,'composer',NULL,NULL),(1523483,215281,1,'actor',NULL,'[\"Smith\"]'),(1523483,2247245,2,'actress',NULL,'[\"Stella\"]'),(1523483,3024712,3,'actor',NULL,'[\"Thor\"]'),(1523483,581953,4,'actress',NULL,'[\"Lorelei\"]'),(1523483,777,5,'director',NULL,NULL),(1523483,146434,6,'producer','producer',NULL),(1523483,818304,7,'producer','producer',NULL),(1523483,1310112,8,'composer',NULL,NULL),(1523483,534540,9,'composer',NULL,NULL),(1524137,271479,10,'producer','producer',NULL),(1524137,242,1,'actor',NULL,'[\"Chris Farraday\"]'),(1524137,610,2,'actor',NULL,'[\"Tim Briggs\"]'),(1524137,295,3,'actress',NULL,'[\"Kate Farraday\"]'),(1524137,906301,4,'actor',NULL,'[\"John Bryce\"]'),(1524137,466349,5,'director',NULL,NULL),(1524137,3360706,6,'writer','screenplay',NULL),(1524137,2266689,7,'writer','film \"Reykjavik-Rotterdam\"',NULL),(1524137,433588,8,'writer','film \"Reykjavik-Rotterdam\"',NULL),(1524137,79677,9,'producer','producer',NULL),(15248702,2927888,10,'editor',NULL,NULL),(15248702,2566697,1,'actress',NULL,'[\"Catwoman\",\"Selina Kyle\"]'),(15248702,3715867,2,'actress',NULL,'[\"Batwoman\"]'),(15248702,52186,3,'actor',NULL,'[\"Black Mask\"]'),(15248702,89707,4,'actor',NULL,'[\"Solomon Grundy\",\"Abaddon\",\"Pilot\"]'),(15248702,855424,5,'director',NULL,NULL),(15248702,918852,6,'writer','written by',NULL),(15248702,507058,7,'producer','producer',NULL),(15248702,2320725,8,'producer','producer',NULL),(15248702,4718846,9,'composer',NULL,NULL),(1524930,6205,10,'composer',NULL,NULL),(1524930,1159180,1,'actor',NULL,'[\"Rusty Griswold\"]'),(1524930,775,2,'actress',NULL,'[\"Debbie Griswold\"]'),(1524930,1711114,3,'actor',NULL,'[\"James Griswold\"]'),(1524930,4347315,4,'actor',NULL,'[\"Kevin Griswold\"]'),(1524930,197855,5,'director',NULL,NULL),(1524930,326246,6,'director',NULL,NULL),(1524930,455,7,'writer','characters',NULL),(1524930,70454,8,'producer','producer',NULL),(1524930,229694,9,'producer','producer',NULL),(1525366,999979,10,'producer','producer',NULL),(1525366,4162662,1,'actor',NULL,'[\"Deckhand Greg\"]'),(1525366,334324,2,'actor',NULL,'[\"Skipper\"]'),(1525366,4048991,3,'actor',NULL,'[\"First Mate Roy\"]'),(1525366,185404,4,'actor',NULL,'[\"Garda Ciarán O\'Shea\"]'),(1525366,1229323,5,'director',NULL,NULL),(1525366,3042546,6,'writer','written by',NULL),(1525366,1313799,7,'producer','producer',NULL),(1525366,2037687,8,'producer','producer',NULL),(1525366,552455,9,'producer','producer',NULL),(1525552,750037,1,'actress',NULL,'[\"Emily Gates\"]'),(1525552,1918764,2,'actor',NULL,'[\"Noah Greene\"]'),(1525552,569226,3,'actor',NULL,'[\"Dr. Thomas Abner\"]'),(1525552,725,4,'actress',NULL,'[\"Dr. Jane Sheppard\"]'),(1525552,1130529,5,'director',NULL,NULL),(1525552,3640151,6,'producer','producer',NULL),(1525552,3652026,7,'composer',NULL,NULL),(1525552,513403,8,'cinematographer',NULL,NULL),(1525552,288727,9,'production_designer',NULL,NULL),(15255876,3501272,10,'editor',NULL,NULL),(15255876,2201555,1,'actress',NULL,'[\"Emily\"]'),(15255876,744331,2,'actor',NULL,'[\"Youcef\"]'),(15255876,2224519,3,'actor',NULL,'[\"Javier\"]'),(15255876,82517,4,'actor',NULL,'[\"Office Manager\"]'),(15255876,3621304,5,'director',NULL,NULL),(15255876,1021351,6,'producer','producer',NULL),(15255876,5349180,7,'producer','producer',NULL),(15255876,4388506,8,'composer',NULL,NULL),(15255876,1638513,9,'cinematographer','director of photography',NULL),(1525835,442766,10,'composer',NULL,NULL),(1525835,632497,1,'actor',NULL,'[\"Kei Kurono\"]'),(1525835,1959800,2,'actor',NULL,'[\"Joichiro Nishi\"]'),(1525835,1947564,3,'actor',NULL,'[\"Masaru Kato\"]'),(1525835,2963956,4,'actress',NULL,'[\"Kei Kishimoto\"]'),(1525835,766263,5,'director',NULL,NULL),(1525835,645740,6,'writer','manga',NULL),(1525835,2448218,7,'writer','screenplay',NULL),(1525835,2800320,8,'producer','producer',NULL),(1525835,2801668,9,'producer','producer',NULL),(1525836,442952,10,'cinematographer','director of photography',NULL),(1525836,632497,1,'actor',NULL,'[\"Kei Kurono\"]'),(1525836,1947564,2,'actor',NULL,'[\"Masaru Kato\"]'),(1525836,1973760,3,'actress',NULL,'[\"Tae Kojima\"]'),(1525836,411683,4,'actress',NULL,'[\"Eriko Ayukawa\"]'),(1525836,766263,5,'director',NULL,NULL),(1525836,645740,6,'writer','manga',NULL),(1525836,2448218,7,'writer','screenplay',NULL),(1525836,2228062,8,'producer','producer',NULL),(1525836,442766,9,'composer',NULL,NULL),(1525890,1033086,10,'producer','producer',NULL),(1525890,498956,1,'actress',NULL,'[\"Mary Kee\"]'),(1525890,610459,2,'actor',NULL,'[\"John Guidi\"]'),(1525890,712404,3,'actress',NULL,'[\"Rose Lazar\"]'),(1525890,703831,4,'actor',NULL,'[\"Steven Campbell\"]'),(1525890,1213712,5,'director',NULL,NULL),(1525890,1230585,6,'writer','written by',NULL),(1525890,2355488,7,'producer','producer',NULL),(1525890,1929951,8,'producer','producer',NULL),(1525890,2223688,9,'producer','producer',NULL),(1525915,599074,10,'production_designer',NULL,NULL),(1525915,782213,1,'actor',NULL,'[\"Vázquez\"]'),(1525915,1257719,2,'actress',NULL,'[\"Rosa\"]'),(1525915,29962,3,'actor',NULL,'[\"Peláez\"]'),(1525915,898420,4,'actor',NULL,'[\"González\"]'),(1525915,14426,5,'director',NULL,NULL),(1525915,2199219,6,'producer','executive producer',NULL),(1525915,557818,7,'composer',NULL,NULL),(1525915,599459,8,'cinematographer','director of photography',NULL),(1525915,661097,9,'editor',NULL,NULL),(1527186,499703,10,'production_designer',NULL,NULL),(1527186,379,1,'actress',NULL,'[\"Justine\"]'),(1527186,1250,2,'actress',NULL,'[\"Claire\"]'),(1527186,662,3,'actor',NULL,'[\"John\"]'),(1527186,2907,4,'actor',NULL,'[\"Michael\"]'),(1527186,1885,5,'director',NULL,NULL),(1527186,284070,6,'producer','producer',NULL),(1527186,895366,7,'producer','producer',NULL),(1527186,993994,8,'cinematographer','director of photography',NULL),(1527186,826663,9,'editor',NULL,NULL),(1527679,3644432,10,'editor',NULL,NULL),(1527679,3647848,1,'actress',NULL,'[\"Mette\"]'),(1527679,3647285,2,'actress',NULL,'[\"Ida\"]'),(1527679,1089136,3,'actress',NULL,'[\"Elsie\"]'),(1527679,25843,4,'actress',NULL,'[\"Märta\"]'),(1527679,3645185,5,'director',NULL,NULL),(1527679,335210,6,'producer','producer',NULL),(1527679,418727,7,'composer',NULL,NULL),(1527679,3343974,8,'cinematographer','director of photography',NULL),(1527679,471639,9,'editor',NULL,NULL),(1528071,776072,10,'producer','producer',NULL),(1528071,705356,1,'actor',NULL,'[\"Ig Perrish\"]'),(1528071,1017334,2,'actress',NULL,'[\"Merrin Williams\"]'),(1528071,1540404,3,'actor',NULL,'[\"Lee Tourneau\"]'),(1528071,1725848,4,'actor',NULL,'[\"Terry Perrish\"]'),(1528071,14960,5,'director',NULL,NULL),(1528071,1291392,6,'writer','screenplay',NULL),(1528071,454872,7,'writer','based on the novel by',NULL),(1528071,4265383,8,'producer','producer',NULL),(1528071,2110175,9,'producer','producer',NULL),(1528100,1858656,10,'producer','producer',NULL),(1528100,288,1,'actor',NULL,'[\"Moses\"]'),(1528100,249291,2,'actor',NULL,'[\"Ramses\"]'),(1528100,1426,3,'actor',NULL,'[\"Nun\"]'),(1528100,244,4,'actress',NULL,'[\"Tuya\"]'),(1528100,631,5,'director',NULL,NULL),(1528100,177836,6,'writer','written by',NULL),(1528100,171651,7,'writer','written by',NULL),(1528100,128997,8,'writer','written by',NULL),(1528100,1873,9,'writer','written by',NULL),(1528854,28787,10,'composer',NULL,NULL),(1528854,2071,1,'actor',NULL,'[\"Brad Whitaker\"]'),(1528854,242,2,'actor',NULL,'[\"Dusty Mayron\"]'),(1528854,4802,3,'actress',NULL,'[\"Sara\"]'),(1528854,2006,4,'actor',NULL,'[\"Leo Holt\"]'),(1528854,1890845,5,'director',NULL,NULL),(1528854,122602,6,'writer','screenplay',NULL),(1528854,1898234,7,'writer','screenplay',NULL),(1528854,376260,8,'producer','producer',NULL),(1528854,570912,9,'producer','producer',NULL),(1529233,4491921,10,'composer',NULL,NULL),(1529233,309348,1,'actor',NULL,'[\"Rocco Santamaria\"]'),(1529233,109277,2,'actor',NULL,'[\"Salvatore Chiarelli\"]'),(1529233,1571262,3,'actor',NULL,'[\"Franco Cardillo\"]'),(1529233,660266,4,'actor',NULL,'[\"Nicola Palmieri\"]'),(1529233,526977,5,'writer','written by',NULL),(1529233,1799384,6,'producer','producer',NULL),(1529233,4215,7,'producer','producer',NULL),(1529233,647437,8,'producer','producer',NULL),(1529233,656465,9,'producer','producer',NULL),(1530509,4803786,10,'production_designer',NULL,NULL),(1530509,4030776,1,'actor',NULL,'[\"Martin\"]'),(1530509,2460100,2,'actress',NULL,'[\"Miss Yennie - Centipede #1\"]'),(1530509,4498683,3,'actress',NULL,'[\"Candy - Centipede #2\"]'),(1530509,4498656,4,'actress',NULL,'[\"Karrie - Centipede #3\"]'),(1530509,1519353,5,'director',NULL,NULL),(1530509,1575969,6,'producer','executive producer',NULL),(1530509,1886083,7,'composer',NULL,NULL),(1530509,575038,8,'cinematographer',NULL,NULL),(1530509,4804094,9,'editor',NULL,NULL),(1531663,4344,10,'cinematographer','director of photography',NULL),(1531663,2071,1,'actor',NULL,'[\"Nick Halsey\"]'),(1531663,356017,2,'actress',NULL,'[\"Samantha\"]'),(1531663,3246926,3,'actor',NULL,'[\"Kenny Loftus\"]'),(1531663,671567,4,'actor',NULL,'[\"Frank Garcia\"]'),(1531663,3656297,5,'director',NULL,NULL),(1531663,142577,6,'writer','short story \"Why Don\'t You Dance\"',NULL),(1531663,2125212,7,'producer','executive producer',NULL),(1531663,324041,8,'producer','producer',NULL),(1531663,868128,9,'composer',NULL,NULL),(1531901,597215,10,'producer','producer',NULL),(1531901,1519680,1,'actress',NULL,'[\"Eleanor\"]'),(1531901,2605345,2,'actress',NULL,'[\"Clara\"]'),(1531901,727165,3,'actor',NULL,'[\"Darvell\"]'),(1531901,2655177,4,'actor',NULL,'[\"Frank\"]'),(1531901,1403,5,'director',NULL,NULL),(1531901,1620490,6,'writer','screenplay',NULL),(1531901,1583132,7,'producer','producer',NULL),(1531901,4207924,8,'producer','producer',NULL),(1531901,439563,9,'producer','producer',NULL),(1531930,4339223,10,'cinematographer',NULL,NULL),(1531930,502671,1,'actor',NULL,'[\"Lonnie\"]'),(1531930,1422176,2,'actress',NULL,'[\"Clover\"]'),(1531930,307726,3,'actress',NULL,'[\"Brianna\"]'),(1531930,790057,4,'actress',NULL,'[\"Seven\"]'),(1531930,102339,5,'writer','short story',NULL),(1531930,275418,6,'writer','additional material',NULL),(1531930,916406,7,'writer','screenplay',NULL),(1531930,1072589,8,'producer','producer',NULL),(1531930,1041285,9,'composer',NULL,NULL),(15324860,31,1,'archive_footage',NULL,'[\"Self\"]'),(15324860,9262312,2,'director',NULL,NULL),(15324860,1930572,3,'composer',NULL,NULL),(1532503,1082606,10,'producer','producer',NULL),(1532503,191,1,'actor',NULL,'[\"Oliver\"]'),(1532503,1626,2,'actor',NULL,'[\"Hal\"]'),(1532503,491259,3,'actress',NULL,'[\"Anna\"]'),(1532503,899681,4,'actor',NULL,'[\"Andy\"]'),(1532503,590122,5,'director',NULL,NULL),(1532503,210941,6,'producer','producer',NULL),(1532503,1185381,7,'producer','producer',NULL),(1532503,11427316,8,'producer','producer',NULL),(1532503,881811,9,'producer','producer',NULL),(15325794,2351283,10,'producer','producer',NULL),(15325794,1534201,1,'actress',NULL,'[\"Becky Connor\"]'),(15325794,4722966,2,'actress',NULL,'[\"Shiloh Hunter\"]'),(15325794,2864252,3,'actor',NULL,'[\"Dan Connor\"]'),(15325794,604742,4,'actor',NULL,'[\"James Conner\"]'),(15325794,1470993,5,'director',NULL,NULL),(15325794,1491927,6,'writer','written by',NULL),(15325794,9273762,7,'producer','producer',NULL),(15325794,2448068,8,'producer','producer',NULL),(15325794,4234703,9,'producer','producer',NULL),(15326988,198467,10,'producer','producer',NULL),(15326988,262635,1,'actor',NULL,'[\"Cole Turner\"]'),(15326988,1869101,2,'actress',NULL,'[\"Sadie Rhodes\"]'),(15326988,4778,3,'actor',NULL,'[\"Leveque\"]'),(15326988,2538735,4,'actor',NULL,'[\"Wagner\"]'),(15326988,2077,5,'director',NULL,NULL),(15326988,1014201,6,'writer','screenplay by',NULL),(15326988,1116660,7,'writer','screenplay by',NULL),(15326988,571344,8,'writer','screenplay by',NULL),(15326988,1273099,9,'writer','screenplay by',NULL),(1532957,1754919,10,'production_designer',NULL,NULL),(1532957,821,1,'actor',NULL,'[\"Auro\"]'),(1532957,45393,2,'actor',NULL,'[\"Amol Arte\"]'),(1532957,1799038,3,'actress',NULL,'[\"Dr. Vidya\"]'),(1532957,712546,4,'actor',NULL,'[\"Mr. Arte\"]'),(1532957,2669564,5,'director',NULL,NULL),(1532957,1238286,6,'producer','producer',NULL),(1532957,6137,7,'composer','music director',NULL),(1532957,820269,8,'cinematographer',NULL,NULL),(1532957,3668132,9,'editor',NULL,NULL),(15339570,631134,10,'producer','producer',NULL),(15339570,437,1,'actor',NULL,'[\"Marcus\"]'),(15339570,647698,2,'actress',NULL,'[\"Alex\"]'),(15339570,3129512,3,'actor',NULL,'[\"Sonny\"]'),(15339570,1368,4,'actor',NULL,'[\"Coach Phil Perretti\"]'),(15339570,125803,5,'director',NULL,NULL),(15339570,2626629,6,'writer','screenplay by',NULL),(15339570,275250,7,'writer','based on the Spanish film \"Campeones\" by',NULL),(15339570,1319488,8,'writer','based on the Spanish film \"Campeones\" written by',NULL),(15339570,112189,9,'producer','producer',NULL),(1534085,2124792,10,'editor',NULL,NULL),(1534085,3597280,1,'actress',NULL,'[\"Elena\"]'),(1534085,1558628,2,'actor',NULL,'[\"Barry Nyle\"]'),(1534085,405111,3,'actor',NULL,'[\"Dr. Mercurio Arboria\"]'),(1534085,722013,4,'actress',NULL,'[\"Margo\"]'),(1534085,181903,5,'director',NULL,NULL),(1534085,3177597,6,'producer','producer',NULL),(1534085,3663115,7,'producer','producer',NULL),(1534085,5682519,8,'composer',NULL,NULL),(1534085,1964040,9,'cinematographer',NULL,NULL),(1535108,1026592,10,'editor',NULL,NULL),(1535108,354,1,'actor',NULL,'[\"Max\"]'),(1535108,149,2,'actress',NULL,'[\"Delacourt\"]'),(1535108,1663205,3,'actor',NULL,'[\"Kruger\"]'),(1535108,103797,4,'actress',NULL,'[\"Frey\"]'),(1535108,88955,5,'director',NULL,NULL),(1535108,1088848,6,'producer','producer',NULL),(1535108,1334526,7,'producer','producer',NULL),(1535108,3375122,8,'composer',NULL,NULL),(1535108,1022001,9,'cinematographer','director of photography',NULL),(1535109,6894,10,'producer','producer',NULL),(1535109,158,1,'actor',NULL,'[\"Captain Richard Phillips\"]'),(1535109,5831542,2,'actor',NULL,'[\"Muse\"]'),(1535109,5831543,3,'actor',NULL,'[\"Bilal\"]'),(1535109,1416,4,'actress',NULL,'[\"Andrea Phillips\"]'),(1535109,339030,5,'director',NULL,NULL),(1535109,712753,6,'writer','screenplay',NULL),(1535109,3697679,7,'writer','based upon the book \"A Captain\'s Duty: Somali Pirates, Navy SEALS, and Dangerous Days at Sea\" by',NULL),(1535109,5643170,8,'writer','based upon the book \"A Captain\'s Duty: Somali Pirates, Navy SEALS, and Dangerous Days at Sea\" by',NULL),(1535109,116232,9,'producer','producer',NULL),(1535438,50832,10,'cinematographer','director of photography',NULL),(1535438,658,1,'actress',NULL,'[\"Kay\"]'),(1535438,169,2,'actor',NULL,'[\"Arnold\"]'),(1535438,136797,3,'actor',NULL,'[\"Doctor Feld\"]'),(1535438,5443,4,'actress',NULL,'[\"Eileen, Kay\'s Friend\"]'),(1535438,291205,5,'director',NULL,NULL),(1535438,961827,6,'writer','written by',NULL),(1535438,85542,7,'producer','producer',NULL),(1535438,143939,8,'producer','producer',NULL),(1535438,788640,9,'composer',NULL,NULL),(1535616,3918733,10,'producer','producer',NULL),(1535616,314514,1,'actress',NULL,'[\"Eva\"]'),(1535616,299,2,'actor',NULL,'[\"Mickey\"]'),(1535616,893257,3,'actor',NULL,'[\"Josh\"]'),(1535616,5524,4,'actor',NULL,'[\"Delvin\"]'),(1535616,1164755,5,'director',NULL,NULL),(1535616,2656048,6,'writer','written by',NULL),(1535616,1142688,7,'writer','written by',NULL),(1535616,1895871,8,'producer','producer',NULL),(1535616,353813,9,'producer','producer',NULL),(1536044,89658,10,'producer','producer',NULL),(1536044,2209370,1,'actress',NULL,'[\"Katie\"]'),(1536044,2913790,2,'actor',NULL,'[\"Micah\"]'),(1536044,1454378,3,'actress',NULL,'[\"Ali Rey\"]'),(1536044,4148609,4,'actor',NULL,'[\"Surveillance Camera Expert\"]'),(1536044,931095,5,'director',NULL,NULL),(1536044,675219,6,'writer','screenplay',NULL),(1536044,484907,7,'writer','screenplay',NULL),(1536044,2317082,8,'writer','screenplay',NULL),(1536044,2305431,9,'writer','film \"Paranormal Activity\"',NULL),(1536048,1626865,10,'editor',NULL,NULL),(1536048,180411,1,'actress',NULL,'[\"Wally Winthrop\"]'),(1536048,195439,2,'actor',NULL,'[\"Edward\"]'),(1536048,2057859,3,'actress',NULL,'[\"Wallis Simpson\"]'),(1536048,1209966,4,'actor',NULL,'[\"Evgeni\"]'),(1536048,187,5,'director',NULL,NULL),(1536048,450194,6,'writer','written by',NULL),(1536048,858123,7,'producer','producer',NULL),(1536048,466851,8,'composer',NULL,NULL),(1536048,91686,9,'cinematographer','director of photography',NULL),(1536053,642521,10,'editor',NULL,NULL),(1536053,1290,1,'actor',NULL,'[\"Adam\"]'),(1536053,109208,2,'actress',NULL,'[\"Celia\"]'),(1536053,535502,3,'actress',NULL,'[\"Nicoletta\"]'),(1536053,1099188,4,'actor',NULL,'[\"Tom\"]'),(1536053,578757,5,'director',NULL,NULL),(1536053,760255,6,'writer',NULL,NULL),(1536053,263236,7,'producer','producer',NULL),(1536053,731570,8,'producer','producer',NULL),(1536053,658472,9,'cinematographer',NULL,NULL),(1536410,1360311,10,'producer','producer',NULL),(1536410,170,1,'actress',NULL,'[\"Anna Marchant\"]'),(1536410,573037,2,'actor',NULL,'[\"Sam Kerrest\"]'),(1536410,2331786,3,'actor',NULL,'[\"Lanyon\",\"Tearjerk Jack\"]'),(1536410,788218,4,'actor',NULL,'[\"Bryce\"]'),(1536410,1077275,5,'director',NULL,NULL),(1536410,2409312,6,'writer','with the participation of',NULL),(1536410,1636259,7,'writer','with the participation of',NULL),(1536410,223041,8,'producer','producer',NULL),(1536410,1052811,9,'producer','producer',NULL),(1536537,746041,10,'producer','producer',NULL),(1536537,636426,1,'actress',NULL,'[\"The Settman Siblings\"]'),(1536537,335,2,'actress',NULL,'[\"Nicolette Cayman\"]'),(1536537,353,3,'actor',NULL,'[\"Terrence Settman\"]'),(1536537,3092471,4,'actor',NULL,'[\"Adrian Knowles\"]'),(1536537,2482088,5,'director',NULL,NULL),(1536537,1363111,6,'writer','written by',NULL),(1536537,1201058,7,'writer','written by',NULL),(1536537,209581,8,'producer','producer',NULL),(1536537,1818350,9,'producer','producer',NULL),(1538403,651414,10,'composer',NULL,NULL),(1538403,2934314,1,'actress',NULL,'[\"Clary\"]'),(1538403,2570429,2,'actor',NULL,'[\"Jace\"]'),(1538403,1588066,3,'actor',NULL,'[\"Simon\"]'),(1538403,922136,4,'actress',NULL,'[\"Isabelle\"]'),(1538403,958969,5,'director',NULL,NULL),(1538403,692942,6,'writer','screenplay by',NULL),(1538403,3673996,7,'writer','based on the novel by',NULL),(1538403,138502,8,'producer','producer',NULL),(1538403,474709,9,'producer','producer',NULL),(15387742,433587,10,'production_designer',NULL,NULL),(15387742,45489,1,'actor',NULL,'[\"Valur Adalsteins\"]'),(15387742,264154,2,'actress',NULL,'[\"Gugga\"]'),(15387742,311995,3,'actress',NULL,'[\"Erla\"]'),(15387742,348276,4,'actor',NULL,'[\"Hansi\"]'),(15387742,1567453,5,'director',NULL,NULL),(15387742,1735513,6,'director',NULL,NULL),(15387742,2385829,7,'composer',NULL,NULL),(15387742,1291213,8,'cinematographer',NULL,NULL),(15387742,477596,9,'editor',NULL,NULL),(15398776,3234869,10,'composer',NULL,NULL),(15398776,614165,1,'actor',NULL,'[\"J. Robert Oppenheimer\"]'),(15398776,1289434,2,'actress',NULL,'[\"Kitty Oppenheimer\"]'),(15398776,354,3,'actor',NULL,'[\"Leslie Groves\"]'),(15398776,375,4,'actor',NULL,'[\"Lewis Strauss\"]'),(15398776,634240,5,'director',NULL,NULL),(15398776,3284831,6,'writer','based on the book by',NULL),(15398776,2452558,7,'writer','based on the book by',NULL),(15398776,746273,8,'producer','producer',NULL),(15398776,858799,9,'producer','producer',NULL),(1540011,2124081,10,'producer','producer',NULL),(1540011,4372483,1,'actor',NULL,'[\"James\"]'),(1540011,5555747,2,'actress',NULL,'[\"Lisa\"]'),(1540011,4094023,3,'actress',NULL,'[\"Ashley\"]'),(1540011,1792900,4,'actor',NULL,'[\"Peter\"]'),(1540011,1417392,5,'director',NULL,NULL),(1540011,1440023,6,'writer','written by',NULL),(1540011,2384784,7,'producer','producer',NULL),(1540011,2096462,8,'producer','producer',NULL),(1540011,498175,9,'producer','producer',NULL),(1540133,129879,10,'composer',NULL,NULL),(1540133,322407,1,'actor',NULL,'[\"Gerry Boyle\"]'),(1540133,332,2,'actor',NULL,'[\"FBI Agent Wendell Everett\"]'),(1540133,835016,3,'actor',NULL,'[\"Clive Cornell\"]'),(1540133,2426101,4,'actor',NULL,'[\"Young Man in Car\"]'),(1540133,567620,5,'director',NULL,NULL),(1540133,163770,6,'producer','producer',NULL),(1540133,1771404,7,'producer','producer',NULL),(1540133,347384,8,'producer','producer',NULL),(1540133,1103466,9,'producer','producer',NULL),(1541149,248595,10,'editor',NULL,NULL),(1541149,428065,1,'actress',NULL,'[\"Beth\"]'),(1541149,3726887,2,'actress',NULL,'[\"Emelia\"]'),(1541149,462407,3,'actor',NULL,'[\"Jonathan\"]'),(1541149,566,4,'actress',NULL,'[\"Joa\"]'),(1541149,1732975,5,'director',NULL,NULL),(1541149,1064900,6,'writer','screenplay',NULL),(1541149,1214083,7,'producer','producer',NULL),(1541149,1877758,8,'composer',NULL,NULL),(1541149,1159334,9,'cinematographer','director of photography',NULL),(1541160,755911,10,'producer','producer',NULL),(1541160,1131,1,'actor',NULL,'[\"Tripp\"]'),(1541160,171,2,'actress',NULL,'[\"Kaitlin\"]'),(1541160,625789,3,'actor',NULL,'[\"Peanut Butter\"]'),(1541160,1616,4,'actor',NULL,'[\"Darrien\"]'),(1541160,591450,5,'director',NULL,NULL),(1541160,524190,6,'writer','written by',NULL),(1541160,601859,7,'writer','written by',NULL),(1541160,198941,8,'producer','producer',NULL),(1541160,224537,9,'producer','producer',NULL),(1541995,3684595,10,'producer','producer',NULL),(1541995,508356,1,'actress',NULL,'[\"Nina\",\"Lily\"]'),(1541995,432428,2,'actress',NULL,'[\"Snow Flower\",\"Sophia\"]'),(1541995,943180,3,'actress',NULL,'[\"Aunt\"]'),(1541995,5568,4,'actor',NULL,'[\"Bank CEO\"]'),(1541995,911061,5,'director',NULL,NULL),(1541995,941453,6,'writer','screenplay',NULL),(1541995,60103,7,'writer','screenplay',NULL),(1541995,2368458,8,'writer','screenplay',NULL),(1541995,2744976,9,'writer','novel',NULL),(15422224,579079,10,'editor',NULL,NULL),(15422224,1292973,1,'actor',NULL,'[\"Oliver\"]'),(15422224,3989486,2,'actress',NULL,'[\"Emily\"]'),(15422224,9741802,3,'actress',NULL,'[\"Madison\"]'),(15422224,4879798,4,'actress',NULL,'[\"Chloe\"]'),(15422224,6113423,5,'director',NULL,NULL),(15422224,3815211,6,'writer','screenplay',NULL),(15422224,4171513,7,'writer','story',NULL),(15422224,202999,8,'producer','producer',NULL),(15422224,6214568,9,'composer',NULL,NULL),(1542344,6246,10,'composer',NULL,NULL),(1542344,290556,1,'actor',NULL,'[\"Aron Ralston\"]'),(1542344,848554,2,'actress',NULL,'[\"Megan\"]'),(1542344,544718,3,'actress',NULL,'[\"Kristi\"]'),(1542344,2505304,4,'actor',NULL,'[\"Aron\'s Friend\"]'),(1542344,965,5,'director',NULL,NULL),(1542344,64479,6,'writer','screenplay',NULL),(1542344,1737008,7,'writer','book \"Between a Rock and a Hard Place\"',NULL),(1542344,1384503,8,'producer','producer',NULL),(1542344,810478,9,'producer','producer',NULL),(15426294,2228167,10,'producer','producer',NULL),(15426294,213,1,'actress',NULL,'[\"Kath\"]'),(15426294,551,2,'actor',NULL,'[\"Barlow\"]'),(15426294,302330,3,'actor',NULL,'[\"Max\"]'),(15426294,4977122,4,'actor',NULL,'[\"Al\"]'),(15426294,4896277,5,'director',NULL,NULL),(15426294,6426666,6,'writer','written by',NULL),(15426294,2591458,7,'producer','producer',NULL),(15426294,4193081,8,'producer','producer',NULL),(15426294,4814529,9,'producer','producer',NULL),(1542768,307776,10,'producer','producer',NULL),(1542768,416673,1,'actor',NULL,'[\"Sam Larson\",\"Mason Carver\"]'),(1542768,167649,2,'actor',NULL,'[\"President Miguel \'Mike\' Cueto\"]'),(1542768,173997,3,'actor',NULL,'[\"Juan\"]'),(1542768,1748489,4,'actress',NULL,'[\"Rosa Bolivar\"]'),(1542768,905592,5,'director',NULL,NULL),(1542768,1134813,6,'writer','teleplay',NULL),(1542768,2942848,7,'producer','producer',NULL),(1542768,172614,8,'producer','producer',NULL),(1542768,289694,9,'producer','producer',NULL),(1542852,1492206,10,'editor',NULL,NULL),(1542852,201857,1,'actor',NULL,'[\"Sosa\"]'),(1542852,2845889,2,'actor',NULL,'[\"Hombre que golpea a Sosa 1\"]'),(1542852,4880809,3,'actor',NULL,'[\"Hombre que golpea a Sosa 2\"]'),(1542852,1089900,4,'actress',NULL,'[\"Luján\"]'),(1542852,871086,5,'director',NULL,NULL),(1542852,1375024,6,'writer','screenplay',NULL),(1542852,1375777,7,'writer','screenplay',NULL),(1542852,1377207,8,'writer','screenplay',NULL),(1542852,1158312,9,'cinematographer',NULL,NULL),(15428940,2801211,10,'producer','producer',NULL),(15428940,1426,1,'actor',NULL,'[\"Milton\"]'),(15428940,364748,2,'actress',NULL,'[\"Sandy\"]'),(15428940,4852,3,'actress',NULL,'[\"Joyce\"]'),(15428940,1563373,4,'actor',NULL,'[\"Mayor Martinez\"]'),(15428940,1196755,5,'director',NULL,NULL),(15428940,5180712,6,'writer','written by',NULL),(15428940,164290,7,'producer','producer',NULL),(15428940,198408,8,'producer','producer',NULL),(15428940,509484,9,'producer','producer',NULL),(15438542,2914250,10,'composer','composer',NULL),(15438542,454809,1,'actress',NULL,'[\"Delilah\"]'),(15438542,104,2,'actor',NULL,'[\"Caleb\"]'),(15438542,281107,3,'actor',NULL,'[\"Anthony Greene\"]'),(15438542,5372988,4,'actress',NULL,'[\"Hailey\"]'),(15438542,444870,5,'director',NULL,NULL),(15438542,9926250,6,'writer',NULL,NULL),(15438542,3975435,7,'producer','producer',NULL),(15438542,2775149,8,'producer','producer',NULL),(15438542,2228167,9,'producer','producer',NULL),(15445056,3028383,10,'producer','producer',NULL),(15445056,8437705,1,'actor',NULL,'[\"Abdel\"]'),(15445056,12946336,2,'actor',NULL,'[\"Karim\"]'),(15445056,7557188,3,'actor',NULL,'[\"Jérôme\"]'),(15445056,256075,4,'actor',NULL,'[\"Moktar\"]'),(15445056,310615,5,'director',NULL,NULL),(15445056,2668884,6,'writer',NULL,NULL),(15445056,1868177,7,'writer','writer',NULL),(15445056,1661920,8,'producer','producer',NULL),(15445056,3923278,9,'producer','producer',NULL),(1545097,2238751,10,'composer',NULL,NULL),(1545097,1259832,1,'actress',NULL,'[\"Harriet\"]'),(1545097,95746,2,'actress',NULL,'[\"Golly\"]'),(1545097,2751101,3,'actor',NULL,'[\"Skander\"]'),(1545097,614921,4,'actor',NULL,'[\"Roger\"]'),(1545097,646987,5,'director',NULL,NULL),(1545097,2698526,6,'writer','written by',NULL),(1545097,174673,7,'writer','written by',NULL),(1545097,280447,8,'writer','based on characters created by',NULL),(1545097,352471,9,'producer','producer',NULL),(1545106,1201051,10,'producer','producer',NULL),(1545106,224,1,'actress',NULL,'[\"Goody\"]'),(1545106,1269983,2,'actress',NULL,'[\"Stacy\"]'),(1545106,932831,3,'actor',NULL,'[\"Professor Quincy\"]'),(1545106,2678125,4,'actress',NULL,'[\"Mary Anne Cachillo\"]'),(1545106,2132,5,'director',NULL,NULL),(1545106,1370044,6,'producer','producer',NULL),(1545106,109201,7,'producer','producer',NULL),(1545106,180366,8,'producer','producer',NULL),(1545106,1837043,9,'producer','producer',NULL),(1545660,567302,10,'cinematographer',NULL,NULL),(1545660,477127,1,'actor',NULL,'[\"Joe\"]'),(1545660,1872,2,'actor',NULL,'[\"Eric\"]'),(1545660,227759,3,'actor',NULL,'[\"Hung\"]'),(1545660,1132359,4,'actress',NULL,'[\"Gwen\"]'),(1545660,1362570,5,'director',NULL,NULL),(1545660,3682691,6,'writer','screenplay',NULL),(1545660,908457,7,'writer','screenplay',NULL),(1545660,123664,8,'producer','producer',NULL),(1545660,566970,9,'composer',NULL,NULL),(1545754,542568,10,'cinematographer',NULL,NULL),(1545754,5562,1,'actor',NULL,'[\"Steve Dallas\"]'),(1545754,302108,2,'actor',NULL,'[\"Ben Baker\"]'),(1545754,688132,3,'actress',NULL,'[\"Terry Coulter\"]'),(1545754,1377561,4,'actress',NULL,'[\"Angela\",\"Ben\'s stepmother\"]'),(1545754,1980806,5,'director',NULL,NULL),(1545754,1344784,6,'producer','producer',NULL),(1545754,394954,7,'producer','producer',NULL),(1545754,3527897,8,'producer','producer',NULL),(1545754,136133,9,'composer',NULL,NULL),(1547090,798002,10,'composer',NULL,NULL),(1547090,519456,1,'actress',NULL,'[\"Rosalba\"]'),(1547090,225,2,'actor',NULL,'[\"Gordon\"]'),(1547090,1386645,3,'actor',NULL,'[\"Priest Rafael\"]'),(1547090,215487,4,'actress',NULL,'[\"Cleotilde\"]'),(1547090,846590,5,'director',NULL,NULL),(1547090,3684413,6,'writer','based on the novel \"Tales from the Town of Widows\" by',NULL),(1547090,2119938,7,'producer','producer',NULL),(1547090,1684414,8,'producer','producer',NULL),(1547090,2384953,9,'producer','producer',NULL),(1547234,1761718,10,'editor',NULL,NULL),(1547234,330687,1,'actor',NULL,'[\"Wilee\"]'),(1547234,788335,2,'actor',NULL,'[\"Bobby Monday\"]'),(1547234,1268158,3,'actress',NULL,'[\"Vanessa\"]'),(1547234,5217936,4,'actor',NULL,'[\"Marco\"]'),(1547234,462895,5,'director',NULL,NULL),(1547234,436960,6,'writer','written by',NULL),(1547234,689780,7,'producer','producer',NULL),(1547234,2867565,8,'composer',NULL,NULL),(1547234,25465,9,'cinematographer','director of photography',NULL),(15474916,4423632,10,'composer',NULL,NULL),(15474916,1788739,1,'actress',NULL,'[\"Rose Cotter\"]'),(15474916,1900772,2,'actor',NULL,'[\"Trevor\"]'),(15474916,973177,3,'actor',NULL,'[\"Joel\"]'),(15474916,917848,4,'actress',NULL,'[\"Dr. Madeline Northcott\"]'),(15474916,6475689,5,'director',NULL,NULL),(15474916,2125212,6,'producer','producer',NULL),(15474916,324041,7,'producer','producer',NULL),(15474916,2327099,8,'producer','producer',NULL),(15474916,7011,9,'producer','producer',NULL),(1548603,4150464,10,'editor',NULL,NULL),(1548603,487254,1,'actor',NULL,'[\"Jo Canavero\"]'),(1548603,545356,2,'actor',NULL,'[\"Le Chinois\"]'),(1548603,608295,3,'actor',NULL,'[\"Pompon\"]'),(1548603,2256599,4,'actor',NULL,'[\"Tom Canavero\"]'),(1548603,1155314,5,'director',NULL,NULL),(1548603,1045062,6,'producer','producer',NULL),(1548603,1045239,7,'producer','producer',NULL),(1548603,2658031,8,'composer',NULL,NULL),(1548603,1415268,9,'cinematographer',NULL,NULL),(1549572,4226708,10,'composer',NULL,NULL),(1549572,1779870,1,'actress',NULL,'[\"Rhoda Williams\"]'),(1549572,544611,2,'actor',NULL,'[\"John Burroughs\"]'),(1549572,3211972,3,'actor',NULL,'[\"Alex\"]'),(1549572,4544251,4,'actor',NULL,'[\"DJ Flava\"]'),(1549572,2648685,5,'director',NULL,NULL),(1549572,336683,6,'producer','producer',NULL),(1549572,1780039,7,'producer','producer',NULL),(1549572,2007213,8,'composer','co-composer',NULL),(1549572,609163,9,'composer','co-composer',NULL),(1549920,447425,10,'editor',NULL,NULL),(1549920,216,1,'actor',NULL,'[\"Ray Owens\"]'),(1549920,1845,2,'actor',NULL,'[\"Agent John Bannister\"]'),(1549920,424216,3,'actor',NULL,'[\"Lewis Dinkum\"]'),(1549920,763928,4,'actor',NULL,'[\"Frank Martinez\"]'),(1549920,453518,5,'director',NULL,NULL),(1549920,3689973,6,'writer','written by',NULL),(1549920,225146,7,'producer','producer',NULL),(1549920,3028820,8,'composer',NULL,NULL),(1549920,1520104,9,'cinematographer',NULL,NULL),(1550312,660854,1,'actress',NULL,'[\"Jacqueline\"]'),(1550312,4762406,2,'actor',NULL,'[\"Antoine Godin\"]'),(1550312,1118078,3,'actress',NULL,'[\"Carole\"]'),(1550312,2903342,4,'actress',NULL,'[\"Rose\"]'),(1550312,885249,5,'director',NULL,NULL),(1550312,1570770,6,'producer','producer',NULL),(1550312,1317447,7,'producer','producer',NULL),(1550312,183140,8,'cinematographer',NULL,NULL),(1550312,894411,9,'production_designer',NULL,NULL),(15509244,973942,10,'cinematographer','director of photography',NULL),(15509244,2608689,1,'actress',NULL,'[\"Helen\"]'),(15509244,2093766,2,'actor',NULL,'[\"Jake\"]'),(15509244,4456672,3,'actor',NULL,'[\"Hugh\"]'),(15509244,1100,4,'actress',NULL,'[\"Gigi\"]'),(15509244,907328,5,'director',NULL,NULL),(15509244,6959883,6,'writer','based on the novel \"Happiness for Beginners\" by',NULL),(15509244,1416193,7,'producer','producer',NULL),(15509244,2360757,8,'producer','producer',NULL),(15509244,2901358,9,'composer',NULL,NULL),(15521050,3921657,10,'editor',NULL,NULL),(15521050,8915757,1,'actress',NULL,'[\"Lina Emerson\"]'),(15521050,8111443,2,'actor',NULL,'[\"Lorenzo Ferrazza\"]'),(15521050,1711652,3,'actor',NULL,'[\"Howard Riley\"]'),(15521050,1779438,4,'actress',NULL,'[\"Francesca\"]'),(15521050,131969,5,'director',NULL,NULL),(15521050,13815185,6,'writer','based on the novel by',NULL),(15521050,696360,7,'producer','producer',NULL),(15521050,160272,8,'composer',NULL,NULL),(15521050,1154300,9,'cinematographer',NULL,NULL),(1552211,4132650,10,'producer','producer',NULL),(1552211,1085134,1,'actor',NULL,'[\"Sidell Turner\"]'),(1552211,1183149,2,'actor',NULL,'[\"Graham Bricke\"]'),(1552211,135610,3,'actor',NULL,'[\"Jim Schneider\"]'),(1552211,635713,4,'actress',NULL,'[\"News Anchor 1\"]'),(1552211,576298,5,'director',NULL,NULL),(1552211,2244980,6,'writer','written by',NULL),(1552211,3559500,7,'writer','based on the Radical Publishing graphic novel created by',NULL),(1552211,11515938,8,'writer','based on the Radical Publishing graphic novel created by',NULL),(1552211,1954285,9,'producer','producer',NULL),(1552224,357861,10,'producer','producer',NULL),(1552224,115,1,'actor',NULL,'[\"Gallain\"]'),(1552224,159789,2,'actor',NULL,'[\"Jacob\"]'),(1552224,2843513,3,'actor',NULL,'[\"Crusader A\"]'),(1552224,910844,4,'actor',NULL,'[\"Lieutenant\"]'),(1552224,694249,5,'director',NULL,NULL),(1552224,1825199,6,'writer','written by',NULL),(1552224,93337,7,'producer','producer',NULL),(1552224,159922,8,'producer','producer',NULL),(1552224,1021528,9,'producer','producer',NULL),(15526040,11417793,1,'actress',NULL,'[\"Claire Mayfield\"]'),(15526040,12076580,2,'actress',NULL,'[\"Monica Sawyer\"]'),(15526040,13000826,3,'actress',NULL,'[\"Jessica Wan\"]'),(15526040,11773376,4,'director',NULL,NULL),(1555064,514746,10,'editor',NULL,NULL),(1555064,1330560,1,'actor',NULL,'[\"Beau Hutton\"]'),(1555064,569,2,'actress',NULL,'[\"Kelly Canter\"]'),(1555064,1015262,3,'actress',NULL,'[\"Chiles Stanton\"]'),(1555064,5210,4,'actor',NULL,'[\"James Canter\"]'),(1555064,275277,5,'director',NULL,NULL),(1555064,1497,6,'producer','producer',NULL),(1555064,867768,7,'producer','producer',NULL),(1555064,111649,8,'composer',NULL,NULL),(1555064,7037,9,'cinematographer',NULL,NULL),(1555093,2449024,10,'composer',NULL,NULL),(1555093,1133857,1,'actress',NULL,'[\"Angel\"]'),(1555093,675730,2,'actor',NULL,'[\"Goran\"]'),(1555093,397721,3,'actor',NULL,'[\"Viktor\"]'),(1555093,910472,4,'actress',NULL,'[\"Violeta\"]'),(1555093,404931,5,'director',NULL,NULL),(1555093,1429239,6,'writer','writer',NULL),(1555093,726615,7,'writer','writer',NULL),(1555093,4906529,8,'writer','original idea',NULL),(1555093,727121,9,'producer','producer',NULL),(1555440,2019413,10,'cinematographer',NULL,NULL),(1555440,726170,1,'actress',NULL,'[\"Daisy Robson\"]'),(1555440,1480430,2,'actress',NULL,'[\"Candace\"]'),(1555440,1723030,3,'actress',NULL,'[\"Tyler Murphy\"]'),(1555440,3752027,4,'actor',NULL,'[\"Johnny\"]'),(1555440,464934,5,'director',NULL,NULL),(1555440,1286340,6,'writer','written by',NULL),(1555440,1511212,7,'producer','producer',NULL),(1555440,4184184,8,'composer',NULL,NULL),(1555440,2879449,9,'composer',NULL,NULL),(1559547,1053785,10,'producer','producer',NULL),(1559547,2129444,1,'actress',NULL,'[\"Lena Duchannes\"]'),(1559547,205626,2,'actress',NULL,'[\"Amma\"]'),(1559547,668,3,'actress',NULL,'[\"Mavis Lincoln\",\"Sarafine\"]'),(1559547,2403277,4,'actor',NULL,'[\"Ethan Wate\"]'),(1559547,481418,5,'director',NULL,NULL),(1559547,3721581,6,'writer','based on the novel \"Beautiful Creatures\" by',NULL),(1559547,831130,7,'writer','based on the novel \"Beautiful Creatures\" by',NULL),(1559547,424663,8,'producer','producer',NULL),(1559547,467255,9,'producer','producer',NULL),(1559549,4319742,1,'self',NULL,'[\"Themselves\"]'),(1559549,4318679,2,'archive_footage',NULL,'[\"Self\"]'),(1559549,4317669,3,'self',NULL,'[\"Self\"]'),(1559549,4317871,4,'self',NULL,'[\"Self\"]'),(1559549,1770672,5,'director',NULL,NULL),(1559549,432631,6,'director',NULL,NULL),(1559549,505899,7,'editor',NULL,NULL),(1560139,2974148,10,'composer',NULL,NULL),(1560139,2034752,1,'actor',NULL,'[\"Boy\"]'),(1560139,3725110,2,'actor',NULL,'[\"Rocky\"]'),(1560139,169806,3,'actor',NULL,'[\"Alamein\"]'),(1560139,3724719,4,'actress',NULL,'[\"Dynasty\"]'),(1560139,193295,5,'producer','producer',NULL),(1560139,1189390,6,'producer','producer',NULL),(1560139,1639578,7,'producer','producer',NULL),(1560139,2679897,8,'composer',NULL,NULL),(1560139,2128958,9,'composer',NULL,NULL),(1560220,2867565,10,'composer',NULL,NULL),(1560220,437,1,'actor',NULL,'[\"Tallahassee\"]'),(1560220,251986,2,'actor',NULL,'[\"Columbus\"]'),(1560220,1297015,3,'actress',NULL,'[\"Wichita\"]'),(1560220,1113550,4,'actress',NULL,'[\"Little Rock\"]'),(1560220,281508,5,'director',NULL,NULL),(1560220,1014201,6,'writer','written by',NULL),(1560220,1116660,7,'writer','written by',NULL),(1560220,1709264,8,'writer','written by',NULL),(1560220,689780,9,'producer','producer',NULL),(1560747,1893246,10,'cinematographer','director of photography',NULL),(1560747,1618,1,'actor',NULL,'[\"Freddie Quell\"]'),(1560747,450,2,'actor',NULL,'[\"Lancaster Dodd\"]'),(1560747,10736,3,'actress',NULL,'[\"Peggy Dodd\"]'),(1560747,687146,4,'actor',NULL,'[\"Val Dodd\"]'),(1560747,759,5,'director',NULL,NULL),(1560747,2691892,6,'producer','producer',NULL),(1560747,526917,7,'producer','producer',NULL),(1560747,783280,8,'producer','producer',NULL),(1560747,339351,9,'composer',NULL,NULL),(1560779,77366,10,'cinematographer','director of photography',NULL),(1560779,4738,1,'actress',NULL,'[\"Cassandra Nightingale\"]'),(1560779,693243,2,'actor',NULL,'[\"Jake Russell\"]'),(1560779,228324,3,'actress',NULL,'[\"Martha Tinsdale\"]'),(1560779,534132,4,'actor',NULL,'[\"George O\'Hanrahan\"]'),(1560779,3588,5,'director',NULL,NULL),(1560779,2778574,6,'writer','written by',NULL),(1560779,1376076,7,'writer','written by',NULL),(1560779,706228,8,'producer','producer',NULL),(1560779,502338,9,'composer',NULL,NULL),(1560985,1103210,10,'cinematographer','director of photography',NULL),(1560985,1223326,1,'actress',NULL,'[\"Isabella Rossi\"]'),(1560985,702945,2,'actor',NULL,'[\"Father Ben Rawlings\"]'),(1560985,1069312,3,'actor',NULL,'[\"Father David Keane\"]'),(1560985,3209537,4,'actor',NULL,'[\"Michael Schaefer\"]'),(1560985,68587,5,'director',NULL,NULL),(1560985,1834343,6,'writer','written by',NULL),(1560985,3770448,7,'producer','producer',NULL),(1560985,3340455,8,'composer',NULL,NULL),(1560985,2451061,9,'composer',NULL,NULL),(1561768,969563,10,'editor','chief editor',NULL),(1561768,1252,1,'actor',NULL,'[\"Mohammed\"]'),(1561768,782561,2,'actress',NULL,'[\"Margaret\"]'),(1561768,1686684,3,'actor',NULL,'[\"American Contractor 1\"]'),(1561768,3144567,4,'actor',NULL,'[\"American Contractor 2\"]'),(1561768,804592,5,'director',NULL,NULL),(1561768,1018717,6,'writer','screenplay',NULL),(1561768,573140,7,'writer','additional writing',NULL),(1561768,586409,8,'composer',NULL,NULL),(1561768,797736,9,'cinematographer','director of photography',NULL),(1561770,2626,10,'composer',NULL,NULL),(1561770,834606,1,'actress',NULL,'[\"Laura Mayfield-Bennett\"]'),(1561770,2365515,2,'actress',NULL,'[\"Jessica\"]'),(1561770,833542,3,'actor',NULL,'[\"Theodore\"]'),(1561770,1263939,4,'actress',NULL,'[\"Katie Lapp\"]'),(1561770,484901,5,'director',NULL,NULL),(1561770,247594,6,'writer','teleplay',NULL),(1561770,2231310,7,'writer','novel',NULL),(1561770,2248793,8,'producer','producer',NULL),(1561770,302127,9,'producer','producer',NULL),(1562568,1776651,10,'producer','producer',NULL),(1562568,267812,1,'actress',NULL,'[\"Corinne Walker\"]'),(1562568,502671,2,'actor',NULL,'[\"Ethan Miller\"]'),(1562568,231436,3,'actress',NULL,'[\"Annika\"]'),(1562568,125475,4,'actor',NULL,'[\"Pastor Bill\"]'),(1562568,3720611,5,'writer','screenplay',NULL),(1562568,582481,6,'writer','screenplay',NULL),(1562568,3894387,7,'producer','producer',NULL),(1562568,1463812,8,'producer','producer',NULL),(1562568,1630123,9,'producer','producer',NULL),(1563738,1306189,10,'editor',NULL,NULL),(1563738,4266,1,'actress',NULL,'[\"Emma\"]'),(1563738,836343,2,'actor',NULL,'[\"Dexter\"]'),(1563738,165101,3,'actress',NULL,'[\"Alison\"]'),(1563738,2070427,4,'actor',NULL,'[\"Callum\"]'),(1563738,771054,5,'director',NULL,NULL),(1563738,390141,6,'writer','screenplay',NULL),(1563738,1749221,7,'producer','producer',NULL),(1563738,6235,8,'composer',NULL,NULL),(1563738,217120,9,'cinematographer','director of photography',NULL),(1563742,4344,10,'cinematographer',NULL,NULL),(1563742,220240,1,'actor',NULL,'[\"Leonardo Montenegro\"]'),(1563742,267506,2,'actress',NULL,'[\"Kate Sullivan\"]'),(1563742,519456,3,'actress',NULL,'[\"Theresa\"]'),(1563742,1314,4,'actor',NULL,'[\"Colin\"]'),(1563742,338576,5,'director',NULL,NULL),(1563742,1462097,6,'writer','screenplay by',NULL),(1563742,228908,7,'writer','screenplay by',NULL),(1563742,643967,8,'producer','producer',NULL),(1563742,1015867,9,'composer',NULL,NULL),(1564349,467255,10,'producer','producer',NULL),(1564349,151,1,'actor',NULL,'[\"Dr. Cameron McCarthy\"]'),(1564349,171,2,'actress',NULL,'[\"Lorraine Nelson\"]'),(1564349,1065,3,'actor',NULL,'[\"Dr. Clay Haskett\"]'),(1564349,1997480,4,'actor',NULL,'[\"Sawyer Nelson\"]'),(1564349,1747,5,'director',NULL,NULL),(1564349,418321,6,'writer','written by',NULL),(1564349,238247,7,'writer','written by',NULL),(1564349,995633,8,'producer','producer',NULL),(1564349,424663,9,'producer','producer',NULL),(1564367,54667,10,'writer','French play',NULL),(1564367,1191,1,'actor',NULL,'[\"Danny\"]'),(1564367,98,2,'actress',NULL,'[\"Katherine\"]'),(1564367,2395937,3,'actress',NULL,'[\"Palmer\"]'),(1564367,173,4,'actress',NULL,'[\"Devlin Adams\"]'),(1564367,240797,5,'director',NULL,NULL),(1564367,1615610,6,'writer','screenplay',NULL),(1564367,251,7,'writer','screenplay',NULL),(1564367,224634,8,'writer','screenplay \"Cactus Flower\"',NULL),(1564367,123242,9,'writer','stage play',NULL),(1564585,1853865,10,'composer',NULL,NULL),(1564585,50156,1,'actor',NULL,'[\"Jarrod\"]'),(1564585,265668,2,'actor',NULL,'[\"Terry\"]'),(1564585,2174090,3,'actress',NULL,'[\"Elaine\"]'),(1564585,199590,4,'actress',NULL,'[\"Candice\"]'),(1564585,833779,5,'director',NULL,NULL),(1564585,833780,6,'director',NULL,NULL),(1564585,1634030,7,'writer','written by',NULL),(1564585,2880943,8,'writer','written by',NULL),(1564585,3728917,9,'producer','producer',NULL),(1565958,800163,10,'cinematographer',NULL,NULL),(1565958,688143,1,'actor',NULL,'[\"Jean-René Van Den Hugde\"]'),(1565958,141140,2,'actress',NULL,'[\"Angélique Delange\"]'),(1565958,186677,3,'actress',NULL,'[\"Magda\"]'),(1565958,483508,4,'actress',NULL,'[\"Suzanne\"]'),(1565958,25534,5,'director',NULL,NULL),(1565958,87646,6,'writer',NULL,NULL),(1565958,1268534,7,'producer','producer',NULL),(1565958,323886,8,'producer','producer',NULL),(1565958,11910,9,'composer',NULL,NULL),(15671028,3644845,10,'producer','producer',NULL),(15671028,2225369,1,'actress',NULL,'[\"Maddie Barker\"]'),(15671028,10574081,2,'actor',NULL,'[\"Percy Becker\"]'),(15671028,1128574,3,'actress',NULL,'[\"Allison Becker\"]'),(15671028,111,4,'actor',NULL,'[\"Laird Becker\"]'),(15671028,1969144,5,'director',NULL,NULL),(15671028,4544229,6,'writer','written by',NULL),(15671028,3091051,7,'producer','producer',NULL),(15671028,1195799,8,'producer','producer',NULL),(15671028,2229508,9,'producer','producer',NULL),(1568338,131700,10,'cinematographer',NULL,NULL),(1568338,941777,1,'actor',NULL,'[\"Nick Cassidy\"]'),(1568338,6969,2,'actress',NULL,'[\"Lydia Mercer\"]'),(1568338,68260,3,'actor',NULL,'[\"Joey Cassidy\"]'),(1568338,1861781,4,'actress',NULL,'[\"Manager\"]'),(1568338,1300606,5,'director',NULL,NULL),(1568338,271854,6,'writer','written by',NULL),(1568338,225146,7,'producer','producer',NULL),(1568338,1680607,8,'producer','producer',NULL),(1568338,2273444,9,'composer',NULL,NULL),(1568346,836673,10,'producer','producer',NULL),(1568346,185819,1,'actor',NULL,'[\"Mikael Blomkvist\"]'),(1568346,1913734,2,'actress',NULL,'[\"Lisbeth Salander\"]'),(1568346,1626,3,'actor',NULL,'[\"Henrik Vanger\"]'),(1568346,1745,4,'actor',NULL,'[\"Martin Vanger\"]'),(1568346,399,5,'director',NULL,NULL),(1568346,1873,6,'writer','screenplay by',NULL),(1568346,2297183,7,'writer','novel \"Män som hatar kvinnor\"',NULL),(1568346,149556,8,'producer','producer',NULL),(1568346,748784,9,'producer','producer',NULL),(1568816,376655,1,'actor',NULL,'[\"Coco\"]'),(1568816,835727,2,'actress',NULL,'[\"Pipi\"]'),(1568816,2282379,3,'actor',NULL,'[\"Horacio\"]'),(1568816,2101133,4,'actress',NULL,'[\"Cajera de supermercado\"]'),(1568816,324901,5,'director',NULL,NULL),(1568816,22061,6,'producer','producer',NULL),(1568816,1385280,7,'composer',NULL,NULL),(1568816,1188711,8,'cinematographer',NULL,NULL),(1568816,53672,9,'editor',NULL,NULL),(1568911,5086,10,'producer','producer',NULL),(1568911,3528539,1,'actor',NULL,'[\"Albert Narracott\"]'),(1568911,1833,2,'actress',NULL,'[\"Rose Narracott\"]'),(1568911,667,3,'actor',NULL,'[\"Lyons\"]'),(1568911,1212722,4,'actor',NULL,'[\"Maj. Jamie Stewart\"]'),(1568911,229,5,'director',NULL,NULL),(1568911,355822,6,'writer','screenplay by',NULL),(1568911,193485,7,'writer','screenplay by',NULL),(1568911,606190,8,'writer','based on the novel by',NULL),(1568911,4312900,9,'writer','based on the stage play by',NULL),(1568921,840699,10,'producer','producer',NULL),(1568921,1847099,1,'actress',NULL,'[\"Arrietty\"]'),(1568921,688132,2,'actress',NULL,'[\"Homily\"]'),(1568921,4715,3,'actor',NULL,'[\"Pod\"]'),(1568921,1541331,4,'actress',NULL,'[\"Arietti\"]'),(1568921,948488,5,'director',NULL,NULL),(1568921,636260,6,'writer','novel \"The Borrowers\"',NULL),(1568921,594503,7,'writer','screenplay',NULL),(1568921,2146668,8,'writer','screenplay',NULL),(1568921,309806,9,'producer','producer',NULL),(1569923,537051,10,'writer','story \"Batman: Under the Hood\" illustrated by',NULL),(1569923,339304,1,'actor',NULL,'[\"Batman\",\"Bruce Wayne\"]'),(1569923,10075,2,'actor',NULL,'[\"Jason Todd\",\"Red Hood\"]'),(1569923,224007,3,'actor',NULL,'[\"Joker\"]'),(1569923,439,4,'actor',NULL,'[\"Dick Grayson\",\"Nightwing\"]'),(1569923,1541845,5,'director',NULL,NULL),(1569923,935099,6,'writer','written by',NULL),(1569923,4170,7,'writer','Batman created by',NULL),(1569923,176689,8,'writer','character created by: Jason Todd',NULL),(1569923,277730,9,'writer','concepts: Red Hood and Ace Chemical Plant based on \"The Man Behind the Red Hood\" written by',NULL),(1570728,2943572,10,'composer',NULL,NULL),(1570728,136797,1,'actor',NULL,'[\"Cal\"]'),(1570728,331516,2,'actor',NULL,'[\"Jacob\"]'),(1570728,194,3,'actress',NULL,'[\"Emily\"]'),(1570728,1297015,4,'actress',NULL,'[\"Hannah\"]'),(1570728,275629,5,'director',NULL,NULL),(1570728,720135,6,'director',NULL,NULL),(1570728,1557594,7,'writer','written by',NULL),(1570728,224145,8,'producer','producer',NULL),(1570728,65100,9,'composer',NULL,NULL),(1570989,2501633,1,'actress',NULL,'[\"Aura\"]'),(1570989,2419914,2,'actress',NULL,'[\"Siri\"]'),(1570989,2420346,3,'actress',NULL,'[\"Nadine\"]'),(1570989,1852529,4,'actress',NULL,'[\"Candice\"]'),(1570989,2769688,5,'producer','producer',NULL),(1570989,885900,6,'producer','producer',NULL),(1570989,2688443,7,'composer',NULL,NULL),(1570989,1464511,8,'cinematographer',NULL,NULL),(1570989,1463263,9,'editor',NULL,NULL),(1571222,5893,10,'cinematographer','director of photography',NULL),(1571222,1055413,1,'actor',NULL,'[\"Carl Jung\"]'),(1571222,461136,2,'actress',NULL,'[\"Sabina Spielrein\"]'),(1571222,1557,3,'actor',NULL,'[\"Sigmund Freud\"]'),(1571222,1993,4,'actor',NULL,'[\"Otto Gross\"]'),(1571222,343,5,'director',NULL,NULL),(1571222,358960,6,'writer','screenplay',NULL),(1571222,4301796,7,'writer','book \"A Most Dangerous Method\"',NULL),(1571222,859016,8,'producer','producer',NULL),(1571222,6290,9,'composer',NULL,NULL),(1571234,287149,10,'producer','producer',NULL),(1571234,2623492,1,'actress',NULL,'[\"Hester Shaw\"]'),(1571234,1588066,2,'actor',NULL,'[\"Tom Natsworthy\"]'),(1571234,915989,3,'actor',NULL,'[\"Thaddeus Valentine\"]'),(1571234,3705886,4,'actress',NULL,'[\"Anna Fang\"]'),(1571234,729514,5,'director',NULL,NULL),(1571234,909638,6,'writer','screenplay by',NULL),(1571234,101991,7,'writer','screenplay by',NULL),(1571234,1392,8,'writer','screenplay by',NULL),(1571234,2245380,9,'writer','based on the book by',NULL),(1571249,489059,10,'composer',NULL,NULL),(1571249,1325419,1,'actress',NULL,'[\"Maggie Dean\"]'),(1571249,352778,2,'actor',NULL,'[\"Milo Dean\"]'),(1571249,5561,3,'actor',NULL,'[\"Lance\"]'),(1571249,123092,4,'actor',NULL,'[\"Rich Levitt\"]'),(1571249,2574897,5,'director',NULL,NULL),(1571249,2114730,6,'writer','written by',NULL),(1571249,1293297,7,'producer','producer',NULL),(1571249,2515893,8,'producer','producer',NULL),(1571249,4092984,9,'producer','producer',NULL),(1571724,1906655,10,'production_designer',NULL,NULL),(1571724,3756517,1,'actor',NULL,'[\"Yusuf\"]'),(1571724,1698655,2,'actor',NULL,'[\"Yakup\"]'),(1571724,1754427,3,'actress',NULL,'[\"Zehra\"]'),(1571724,4069492,4,'actress',NULL,NULL),(1571724,969427,5,'director',NULL,NULL),(1571724,2640072,6,'writer',NULL,NULL),(1571724,994020,7,'cinematographer',NULL,NULL),(1571724,258908,8,'editor',NULL,NULL),(1571724,2639059,9,'editor',NULL,NULL),(1572315,377066,10,'writer','characters',NULL),(1572315,1275259,1,'actress',NULL,'[\"Heather Miller\"]'),(1572315,713389,2,'actress',NULL,'[\"Nikki\"]'),(1572315,2207222,3,'actor',NULL,'[\"Carl\"]'),(1572315,2016091,4,'actor',NULL,'[\"Ryan\"]'),(1572315,525141,5,'director',NULL,NULL),(1572315,546057,6,'writer','screenplay',NULL),(1572315,838032,7,'writer','screenplay',NULL),(1572315,1187454,8,'writer','screenplay',NULL),(1572315,839812,9,'writer','story',NULL),(1572781,3707431,10,'producer','producer',NULL),(1572781,1435774,1,'actress',NULL,'[\"Haruhi Suzumiya\"]'),(1572781,837523,2,'actor',NULL,'[\"Kyon\"]'),(1572781,2276741,3,'actress',NULL,'[\"Yuki Nagato\"]'),(1572781,1785238,4,'actress',NULL,'[\"Mikuru Asahina\"]'),(1572781,2128776,5,'director',NULL,NULL),(1572781,1856817,6,'director',NULL,NULL),(1572781,2522077,7,'writer','novels',NULL),(1572781,1160330,8,'writer','screenplay',NULL),(1572781,368979,9,'producer','producer',NULL),(1574639,733981,10,'composer',NULL,NULL),(1574639,1318596,1,'actor',NULL,'[\"Spook\"]'),(1574639,1788305,2,'actor',NULL,'[\"Mervyn Toebeck\"]'),(1574639,3743063,3,'actor',NULL,'[\"Cedric Williamson\"]'),(1574639,278178,4,'actor',NULL,'[\"Martin Williamson\"]'),(1574639,1320215,5,'director',NULL,NULL),(1574639,606302,6,'writer','novel',NULL),(1574639,737223,7,'producer','producer',NULL),(1574639,232087,8,'composer',NULL,NULL),(1574639,1453819,9,'composer',NULL,NULL),(1575539,3357555,10,'editor',NULL,NULL),(1575539,2464261,1,'actress',NULL,'[\"Elena\"]'),(1575539,227867,2,'actress',NULL,'[\"Peyton\"]'),(1575539,917314,3,'actor',NULL,'[\"Barry\"]'),(1575539,365293,4,'actor',NULL,'[\"Tyler\"]'),(1575539,174903,5,'director',NULL,NULL),(1575539,164053,6,'producer','producer',NULL),(1575539,228264,7,'producer','producer',NULL),(1575539,149750,8,'composer',NULL,NULL),(1575539,1823574,9,'cinematographer',NULL,NULL),(1576382,53672,10,'editor',NULL,NULL),(1576382,309019,1,'actor',NULL,'[\"Marcos\"]'),(1576382,96559,2,'actress',NULL,'[\"Susana\"]'),(1576382,524425,3,'actress',NULL,NULL),(1576382,181300,4,'actress',NULL,NULL),(1576382,122184,5,'director',NULL,NULL),(1576382,239216,6,'producer','producer',NULL),(1576382,3040331,7,'producer','producer',NULL),(1576382,2767413,8,'composer',NULL,NULL),(1576382,170130,9,'cinematographer',NULL,NULL),(1578261,463316,10,'producer','producer',NULL),(1578261,1405359,1,'actor',NULL,'[\"Abhay Gulati\",\"Gelato\"]'),(1578261,2138653,2,'actress',NULL,'[\"Aaliya Khan\",\"Aaliya Abhay Gulati aka Al\"]'),(1578261,5654965,3,'actor',NULL,'[\"Young Abhay\"]'),(1578261,202119,4,'actor',NULL,'[\"Teenage Abhay\"]'),(1578261,1538135,5,'director',NULL,NULL),(1578261,1318670,6,'writer','lyrics',NULL),(1578261,1149334,7,'writer','lyrics',NULL),(1578261,3065956,8,'writer','story, screenplay & dialogue',NULL),(1578261,5632466,9,'producer','producer',NULL),(1578275,869379,10,'cinematographer','director of photography',NULL),(1578275,681,1,'actor',NULL,'[\"Ronny Valentine\"]'),(1578275,416673,2,'actor',NULL,'[\"Nick Brannen\"]'),(1578275,213,3,'actress',NULL,'[\"Geneva\"]'),(1578275,124,4,'actress',NULL,'[\"Beth\"]'),(1578275,165,5,'director',NULL,NULL),(1578275,1615610,6,'writer','written by',NULL),(1578275,4976,7,'producer','producer',NULL),(1578275,1154632,8,'composer',NULL,NULL),(1578275,1877,9,'composer',NULL,NULL),(1578873,2107620,10,'actor',NULL,'[\"Caleb Rivers\"]'),(1578873,69079,1,'actress',NULL,'[\"Spencer Hastings\"]'),(1578873,1667364,2,'actress',NULL,'[\"Hanna Marin\"]'),(1578873,1423955,3,'actress',NULL,'[\"Aria Montgomery\"]'),(1578873,3762213,4,'actress',NULL,'[\"Emily Fields\"]'),(1578873,454783,5,'writer','developer',NULL),(1578873,1199888,6,'actress',NULL,'[\"Alison DiLaurentis\",\"Alison Rollins\"]'),(1578873,2870406,7,'actor',NULL,'[\"Ezra Fitz\"]'),(1578873,500359,8,'actress',NULL,'[\"Ashley Marin\"]'),(1578873,663546,9,'actress',NULL,'[\"Mona Vanderwaal\"]'),(15791034,4844181,10,'composer',NULL,NULL),(15791034,3569284,1,'actress',NULL,'[\"Tess\"]'),(15791034,803889,2,'actor',NULL,'[\"Keith\"]'),(15791034,519043,3,'actor',NULL,'[\"AJ\"]'),(15791034,1830723,4,'actor',NULL,'[\"The Mother\"]'),(15791034,1199107,5,'director',NULL,NULL),(15791034,498175,6,'producer','producer',NULL),(15791034,2591458,7,'producer','producer',NULL),(15791034,4193081,8,'producer','producer',NULL),(15791034,586969,9,'producer','producer',NULL),(1581835,919035,10,'producer','producer',NULL),(1581835,993507,1,'actress',NULL,'[\"Caroline Wexler\"]'),(1581835,1107127,2,'actor',NULL,'[\"Thurston Goldberg\"]'),(1581835,510,3,'actress',NULL,'[\"Enid Goldberg\"]'),(1581835,524197,4,'actor',NULL,'[\"Barry Anderson\"]'),(1581835,1492832,5,'director',NULL,NULL),(1581835,862932,6,'writer','story editor',NULL),(1581835,1121230,7,'producer','producer',NULL),(1581835,352980,8,'producer','producer',NULL),(1581835,881823,9,'producer','producer',NULL),(1582270,489857,1,'actress',NULL,'[\"Fiona\",\"Emily\",\"Harper\"]'),(1582270,1741967,2,'actor',NULL,'[\"Wes\",\"Max\"]'),(1582270,14302490,3,'actor',NULL,'[\"Matthew\"]'),(1582270,1372715,4,'actor',NULL,'[\"Dennis\",\"Zombie Arms\",\"Wedding Photo Couple\"]'),(1582270,2090975,5,'director',NULL,NULL),(1582270,3627959,6,'producer','producer',NULL),(1582270,1827861,7,'composer',NULL,NULL),(1582270,3767498,8,'composer',NULL,NULL),(1582270,3340541,9,'cinematographer',NULL,NULL),(1582271,1078971,10,'cinematographer',NULL,NULL),(1582271,89217,1,'actor',NULL,'[\"Dr. Martin Blake\"]'),(1582271,2142336,2,'actress',NULL,'[\"Diane Nixon\"]'),(1582271,378245,3,'actress',NULL,'[\"Nurse Theresa\"]'),(1582271,1555,4,'actor',NULL,'[\"Dr. Waylans\"]'),(1582271,198472,5,'director',NULL,NULL),(1582271,256722,6,'writer','written by',NULL),(1582271,262052,7,'producer','producer',NULL),(1582271,454908,8,'producer','producer',NULL),(1582271,1725223,9,'composer',NULL,NULL),(1582507,753083,10,'producer','producer',NULL),(1582507,2225369,1,'actress',NULL,'[\"Elissa\"]'),(1582507,223,2,'actress',NULL,'[\"Sarah\"]'),(1582507,1302735,3,'actor',NULL,'[\"Ryan\"]'),(1582507,4743,4,'actor',NULL,'[\"Weaver\"]'),(1582507,867127,5,'director',NULL,NULL),(1582507,521649,6,'writer','screenplay',NULL),(1582507,609236,7,'writer','story',NULL),(1582507,88756,8,'producer','producer',NULL),(1582507,509386,9,'producer','producer',NULL),(1583323,1718189,10,'editor',NULL,NULL),(1583323,2798376,1,'self',NULL,'[\"Self\"]'),(1583323,4006042,2,'self',NULL,'[\"Self\"]'),(1583323,4005603,3,'self',NULL,'[\"Self\"]'),(1583323,4005843,4,'self',NULL,'[\"Self\"]'),(1583323,1744333,5,'director',NULL,NULL),(1583323,2029418,6,'director',NULL,NULL),(1583323,92054,7,'composer',NULL,NULL),(1583323,299623,8,'cinematographer',NULL,NULL),(1583323,475020,9,'cinematographer',NULL,NULL),(1583421,2273444,10,'composer',NULL,NULL),(1583421,425005,1,'actor',NULL,'[\"Roadblock\"]'),(1583421,1475594,2,'actor',NULL,'[\"Duke\"]'),(1583421,1597316,3,'actress',NULL,'[\"Jaye\"]'),(1583421,496932,4,'actor',NULL,'[\"Storm Shadow\"]'),(1583421,160840,5,'director',NULL,NULL),(1583421,1014201,6,'writer','written by',NULL),(1583421,1116660,7,'writer','written by',NULL),(1583421,225146,8,'producer','producer',NULL),(1583421,2131060,9,'producer','producer',NULL),(1584016,1488260,1,'self',NULL,'[\"Self\"]'),(1584016,1413364,2,'self',NULL,'[\"Self\"]'),(1584016,1160962,3,'self',NULL,'[\"Self\"]'),(1584016,4240793,4,'self',NULL,'[\"Self\"]'),(1584016,1285613,5,'producer','producer',NULL),(1584016,806830,6,'producer','producer',NULL),(1584016,6205,7,'composer',NULL,NULL),(1584016,1782000,8,'editor',NULL,NULL),(1585255,3502454,10,'composer',NULL,NULL),(1585255,772609,1,'actress',NULL,'[\"Kathi\"]'),(1585255,3160757,2,'actress',NULL,'[\"Julia\"]'),(1585255,453489,3,'actor',NULL,'[\"Tien\"]'),(1585255,343543,4,'actress',NULL,'[\"Silke\"]'),(1585255,246903,5,'director',NULL,NULL),(1585255,830085,6,'writer',NULL,NULL),(1585255,510789,7,'producer','producer',NULL),(1585255,11579305,8,'composer',NULL,NULL),(1585255,354474,9,'composer',NULL,NULL),(1586265,1103781,10,'producer','producer',NULL),(1586265,139,1,'actress',NULL,'[\"Jules\"]'),(1586265,1285162,2,'actor',NULL,'[\"Evan\"]'),(1586265,1733365,3,'actor',NULL,'[\"Interpreter\"]'),(1586265,598,4,'actor',NULL,'[\"Ramsey\"]'),(1586265,428600,5,'director',NULL,NULL),(1586265,189272,6,'writer','screenplay',NULL),(1586265,352320,7,'writer','screenplay',NULL),(1586265,3763939,8,'writer','books',NULL),(1586265,5219,9,'producer','producer',NULL),(1587157,11758071,10,'producer','producer',NULL),(1587157,969153,1,'actor',NULL,'[\"Yusei Fudo\"]'),(1587157,479612,2,'actor',NULL,'[\"Jaden Yuki\"]'),(1587157,337751,3,'actor',NULL,'[\"Yugi Muto\",\"Yami Yugi\"]'),(1587157,770832,4,'actor',NULL,'[\"Paradox\",\"Professor Viper\"]'),(1587157,1100497,5,'director',NULL,NULL),(1587157,1444457,6,'writer','manga',NULL),(1587157,948928,7,'writer','screenplay',NULL),(1587157,8733387,8,'writer','duel composition',NULL),(1587157,11943485,9,'producer','producer',NULL),(1587309,5930,10,'cinematographer',NULL,NULL),(1587309,1315,1,'actress',NULL,'[\"Madelyn\"]'),(1587309,914455,2,'actress',NULL,'[\"Lucy\"]'),(1587309,445484,3,'actor',NULL,'[\"Paul\"]'),(1587309,756797,4,'actress',NULL,'[\"Waitress\"]'),(1587309,139905,5,'director',NULL,NULL),(1587309,329896,6,'producer','producer',NULL),(1587309,490063,7,'producer','producer',NULL),(1587309,120667,8,'composer',NULL,NULL),(1587309,267645,9,'composer',NULL,NULL),(1587310,670328,10,'writer','based on the motion picture \"Sleeping Beauty\", screenplay by',NULL),(1587310,1401,1,'actress',NULL,'[\"Maleficent\"]'),(1587310,1102577,2,'actress',NULL,'[\"Aurora\"]'),(1587310,1663205,3,'actor',NULL,'[\"Stefan\"]'),(1587310,544334,4,'actress',NULL,'[\"Flittle\"]'),(1587310,834902,5,'director',NULL,NULL),(1587310,941314,6,'writer','screenplay by',NULL),(1587310,674518,7,'writer','based on \"La Belle au bois dormant\" written by',NULL),(1587310,52520,8,'writer','based on the motion picture \"Sleeping Beauty\", screenplay by',NULL),(1587310,382548,9,'writer','based on the motion picture \"Sleeping Beauty\", screenplay by',NULL),(1587386,2821758,1,'actor',NULL,'[\"Alex\"]'),(1587386,3773933,2,'actor',NULL,'[\"Connor\"]'),(1587386,3518892,3,'actor',NULL,'[\"Jim\"]'),(1587386,3118974,4,'actress',NULL,'[\"Sarah\"]'),(1587386,3462001,5,'director',NULL,NULL),(1587386,3769877,6,'producer','producer',NULL),(1587386,129941,7,'composer',NULL,NULL),(1587386,1993587,8,'composer',NULL,NULL),(1587386,296508,9,'cinematographer',NULL,NULL),(1587707,2612991,1,'self',NULL,'[\"Self\"]'),(1587707,3205630,2,'self',NULL,'[\"Self\"]'),(1587707,2171515,3,'self',NULL,'[\"Self\"]'),(1587707,4565713,4,'self',NULL,'[\"Self\"]'),(1587707,3261008,5,'producer','producer',NULL),(1587707,57856,6,'composer',NULL,NULL),(1587707,1723418,7,'editor',NULL,NULL),(1587707,1201554,8,'editor',NULL,NULL),(1587707,3035726,9,'editor','segment editor',NULL),(1588170,1351337,10,'editor',NULL,NULL),(1588170,496932,1,'actor',NULL,'[\"Soo-hyeon\",\"Joo-yeon\'s fiancé\"]'),(1588170,158856,2,'actor',NULL,'[\"Jang Kyung-chul\"]'),(1588170,1926499,3,'actor',NULL,'[\"Squad Chief Jang\"]'),(1588170,1141657,4,'actor',NULL,'[\"Section Chief Oh\"]'),(1588170,453518,5,'director',NULL,NULL),(1588170,4219902,6,'writer','screenplay',NULL),(1588170,3888703,7,'producer','producer',NULL),(1588170,3028820,8,'composer',NULL,NULL),(1588170,1371243,9,'cinematographer',NULL,NULL),(1588173,1937,10,'composer',NULL,NULL),(1588173,396558,1,'actor',NULL,'[\"R\"]'),(1588173,1954240,2,'actress',NULL,'[\"Julie\"]'),(1588173,518,3,'actor',NULL,'[\"Grigio\"]'),(1588173,3006818,4,'actress',NULL,'[\"Nora\"]'),(1588173,1349522,5,'director',NULL,NULL),(1588173,3772853,6,'writer','based on the novel by',NULL),(1588173,387674,7,'producer','producer',NULL),(1588173,509414,8,'producer','producer',NULL),(1588173,660295,9,'producer','producer',NULL),(1588334,28787,10,'composer',NULL,NULL),(1588334,781981,1,'actor',NULL,'[\"Jeff\"]'),(1588334,1159180,2,'actor',NULL,'[\"Pat\"]'),(1588334,339460,3,'actress',NULL,'[\"Linda\"]'),(1588334,215,4,'actress',NULL,'[\"Sharon\"]'),(1588334,243231,5,'director',NULL,NULL),(1588334,243233,6,'director',NULL,NULL),(1588334,355147,7,'producer','producer',NULL),(1588334,718646,8,'producer','producer',NULL),(1588334,809833,9,'producer','producer',NULL),(1588337,5667,10,'cinematographer',NULL,NULL),(1588337,933727,1,'actor',NULL,'[\"Christian\"]'),(1588337,3909,2,'actor',NULL,'[\"Luc\"]'),(1588337,705005,3,'actor',NULL,'[\"Christophe\"]'),(1588337,490734,4,'actor',NULL,'[\"Célestin\"]'),(1588337,64741,5,'director',NULL,NULL),(1588337,173541,6,'writer','scenario',NULL),(1588337,146434,7,'producer','producer',NULL),(1588337,815081,8,'producer','producer',NULL),(1588337,4739087,9,'composer',NULL,NULL),(1588398,64293,10,'production_designer',NULL,NULL),(1588398,115161,1,'actress',NULL,'[\"Lucy\"]'),(1588398,86697,2,'actress',NULL,'[\"Clara\"]'),(1588398,1191900,3,'actor',NULL,'[\"Birdmann\"]'),(1588398,4392491,4,'actress',NULL,'[\"Dinner Waitress\"]'),(1588398,3772967,5,'director',NULL,NULL),(1588398,1445114,6,'producer','producer',NULL),(1588398,1640152,7,'composer',NULL,NULL),(1588398,801005,8,'cinematographer',NULL,NULL),(1588398,1116805,9,'editor',NULL,NULL),(1588875,1018307,10,'cinematographer',NULL,NULL),(1588875,3732046,1,'actor',NULL,'[\"Pavel\"]'),(1588875,1655234,2,'actor',NULL,'[\"Sergey\"]'),(1588875,190703,3,'actor',NULL,'[\"Golos po ratsii - Sofronov\"]'),(1588875,3778981,4,'actor',NULL,'[\"Golos po ratsii - Stas\"]'),(1588875,1403225,5,'director',NULL,NULL),(1588875,1434647,6,'producer','producer',NULL),(1588875,158543,7,'producer','producer',NULL),(1588875,3338210,8,'producer','producer',NULL),(1588875,2669155,9,'composer',NULL,NULL),(1588895,583973,10,'producer','producer',NULL),(1588895,3914142,1,'actor',NULL,'[\"Boonmee\"]'),(1588895,1178649,2,'actress',NULL,'[\"Jen\",\"Huay\'s sister\"]'),(1588895,1616807,3,'actor',NULL,'[\"Tong\",\"Boonmee\'s nephew\"]'),(1588895,3913567,4,'actress',NULL,'[\"Huay\",\"Boonmee\'s deceased wife\"]'),(1588895,917405,5,'director',NULL,NULL),(1588895,4836547,6,'writer','inspired by the book of',NULL),(1588895,1444286,7,'producer','producer',NULL),(1588895,312078,8,'producer','producer',NULL),(1588895,341702,9,'producer','producer',NULL),(1590089,840714,10,'producer','producer',NULL),(1590089,559381,1,'actress',NULL,'[\"Yuko Moriguchi\"]'),(1590089,454128,2,'actress',NULL,'[\"Yuko Shimomura (Naoki\'s mother)\"]'),(1590089,2347861,3,'actor',NULL,'[\"Yoshiteru Terada\"]'),(1590089,3945747,4,'actor',NULL,'[\"Shuya Watanabe\"]'),(1590089,620363,5,'director',NULL,NULL),(1590089,3782063,6,'writer','based on the novel by',NULL),(1590089,1097451,7,'producer','producer',NULL),(1590089,2929057,8,'producer','producer',NULL),(1590089,3898095,9,'producer','producer',NULL),(1591071,2171492,10,'composer',NULL,NULL),(1591071,1046493,1,'actress',NULL,'[\"Zoe\"]'),(1591071,2285577,2,'actor',NULL,'[\"Marty\"]'),(1591071,3076994,3,'actor',NULL,'[\"Lewis\"]'),(1591071,3516460,4,'actor',NULL,'[\"Dirk\"]'),(1591071,780934,5,'director',NULL,NULL),(1591071,3779619,6,'writer','written by',NULL),(1591071,2227142,7,'producer','producer',NULL),(1591071,3782913,8,'producer','producer',NULL),(1591071,156939,9,'composer',NULL,NULL),(1591095,1177766,10,'composer',NULL,NULL),(1591095,933940,1,'actor',NULL,'[\"Josh Lambert\"]'),(1591095,126284,2,'actress',NULL,'[\"Renai Lambert\"]'),(1591095,1339223,3,'actor',NULL,'[\"Dalton Lambert\"]'),(1591095,5417,4,'actress',NULL,'[\"Elise Rainier\"]'),(1591095,1490123,5,'director',NULL,NULL),(1591095,1191481,6,'writer','written by',NULL),(1591095,89658,7,'producer','producer',NULL),(1591095,2305431,8,'producer','producer',NULL),(1591095,2124081,9,'producer','producer',NULL),(1591479,873531,10,'editor',NULL,NULL),(1591479,891514,1,'actor',NULL,'[\"Christo\"]'),(1591479,761052,2,'actress',NULL,'[\"Lisa Morales\"]'),(1591479,785594,3,'actor',NULL,'[\"Walter Ross\"]'),(1591479,4918786,4,'actor',NULL,'[\"Lieutenant Rorke\"]'),(1591479,566788,5,'director',NULL,NULL),(1591479,915304,6,'director',NULL,NULL),(1591479,426500,7,'writer','written by',NULL),(1591479,299115,8,'composer',NULL,NULL),(1591479,403397,9,'cinematographer','director of photography',NULL),(1592281,203850,10,'production_designer',NULL,NULL),(1592281,931329,1,'actress',NULL,'[\"Margot\"]'),(1592281,736622,2,'actor',NULL,'[\"Lou\"]'),(1592281,798971,3,'actress',NULL,'[\"Geraldine\"]'),(1592281,1378320,4,'actor',NULL,'[\"Aaron\"]'),(1592281,1631,5,'director',NULL,NULL),(1592281,146889,6,'producer','producer',NULL),(1592281,1365883,7,'composer',NULL,NULL),(1592281,600261,8,'cinematographer','director of photography',NULL),(1592281,232083,9,'editor',NULL,NULL),(1592527,204171,1,'self',NULL,'[\"Self\"]'),(1592527,138460,2,'archive_footage',NULL,'[\"Self\"]'),(1592527,780523,3,'self',NULL,'[\"Self\"]'),(1592527,1918923,4,'self',NULL,'[\"Self\"]'),(1592527,648057,5,'director',NULL,NULL),(1592527,2321850,6,'producer','producer',NULL),(1592527,2827632,7,'composer',NULL,NULL),(1592527,859821,8,'composer',NULL,NULL),(1592527,2408218,9,'editor',NULL,NULL),(1592876,219965,10,'editor',NULL,NULL),(1592876,567530,1,'self',NULL,'[\"Self\"]'),(1592876,717383,2,'actor',NULL,'[\"Farley Gordon\"]'),(1592876,1488858,3,'actor',NULL,'[\"Gump\"]'),(1592876,1848474,4,'actor',NULL,'[\"Rink Rat #1\"]'),(1592876,1313340,5,'director',NULL,NULL),(1592876,683111,6,'writer','story editor',NULL),(1592876,270098,7,'producer','producer',NULL),(1592876,1365883,8,'composer',NULL,NULL),(1592876,5426384,9,'cinematographer','director of photography',NULL),(1593655,1222487,10,'editor',NULL,NULL),(1593655,3785083,1,'actress',NULL,'[\"Capt. Laura Matthews\"]'),(1593655,1432800,2,'actor',NULL,'[\"James Banks III\"]'),(1593655,3299998,3,'actor',NULL,'[\"Brett Grey\"]'),(1593655,2974943,4,'actor',NULL,'[\"Jack Haddington\"]'),(1593655,3789533,5,'director',NULL,NULL),(1593655,3789954,6,'producer','producer',NULL),(1593655,3803950,7,'producer','producer',NULL),(1593655,2356811,8,'producer','producer',NULL),(1593655,3789702,9,'composer',NULL,NULL),(15943414,576192,10,'cinematographer','director of photography',NULL),(15943414,128657,1,'actress',NULL,'[\"Charlotte\"]'),(15943414,410893,2,'actress',NULL,'[\"Emily\"]'),(15943414,1650932,3,'actress',NULL,'[\"Nora\"]'),(15943414,762365,4,'actor',NULL,'[\"Paul\"]'),(15943414,1656974,5,'director',NULL,NULL),(15943414,3959557,6,'writer','teleplay by',NULL),(15943414,11153022,7,'writer','writer',NULL),(15943414,2786983,8,'producer','executive producer',NULL),(15943414,3387157,9,'composer',NULL,NULL),(1594562,734247,10,'cinematographer','director of photography',NULL),(1594562,668139,1,'actress',NULL,'[\"Claire\"]'),(1594562,372366,2,'actor',NULL,'[\"Luke\"]'),(1594562,534,3,'actress',NULL,'[\"Leanne Rease-Jones\"]'),(1594562,58772,4,'actress',NULL,'[\"Angry Mom\"]'),(1594562,1488800,5,'director',NULL,NULL),(1594562,1472372,6,'producer','producer',NULL),(1594562,275244,7,'producer','producer',NULL),(1594562,1490961,8,'producer','producer',NULL),(1594562,1404741,9,'composer',NULL,NULL),(1594917,498291,10,'producer','producer',NULL),(1594917,418,1,'actor',NULL,'[\"Ahab\"]'),(1594917,5068,2,'actor',NULL,'[\"Stubb\"]'),(1594917,786417,3,'actor',NULL,'[\"Ishmael\"]'),(1594917,2822103,4,'actress',NULL,'[\"Rachel\"]'),(1594917,514662,5,'director',NULL,NULL),(1594917,1384611,6,'writer','screenplay',NULL),(1594917,2249135,7,'writer','story',NULL),(1594917,1237224,8,'writer','story',NULL),(1594917,578479,9,'writer','based on the novel \"Moby Dick\"',NULL),(1594972,1668027,10,'producer','producer',NULL),(1594972,1705,1,'actor',NULL,'[\"Norm\"]'),(1594972,1287,2,'actress',NULL,'[\"Vera\"]'),(1594972,421822,3,'actor',NULL,'[\"Mr. Greene\"]'),(1594972,631490,4,'actor',NULL,'[\"Socrates\"]'),(1594972,1222421,5,'director',NULL,NULL),(1594972,651184,6,'director','voice director',NULL),(1594972,7827939,7,'writer','screenplay by',NULL),(1594972,1662742,8,'writer','screenplay by',NULL),(1594972,1662741,9,'writer','screenplay by',NULL),(1595656,2270935,10,'editor',NULL,NULL),(1595656,255,1,'actor',NULL,'[\"Neil\"]'),(1595656,1385871,2,'actress',NULL,'[\"Marina\"]'),(1595656,849,3,'actor',NULL,'[\"Father Quintana\"]'),(1595656,1046097,4,'actress',NULL,'[\"Jane\"]'),(1595656,517,5,'director',NULL,NULL),(1595656,1868038,6,'producer','producer',NULL),(1595656,338320,7,'producer','producer',NULL),(1595656,3493718,8,'composer',NULL,NULL),(1595656,523881,9,'cinematographer','director of photography',NULL),(1596342,446210,10,'writer','based on characters created by',NULL),(1596342,10736,1,'actress',NULL,'[\"Giselle\"]'),(1596342,1131,2,'actor',NULL,'[\"Robert\"]'),(1596342,748973,3,'actress',NULL,'[\"Malvina\"]'),(1596342,9150537,4,'actress',NULL,'[\"Morgan\"]'),(1596342,788202,5,'director',NULL,NULL),(1596342,355048,6,'writer','screenplay by',NULL),(1596342,826425,7,'writer','story by',NULL),(1596342,918955,8,'writer','story by',NULL),(1596342,481418,9,'writer','story by',NULL),(1596343,743682,10,'producer','producer',NULL),(1596343,4874,1,'actor',NULL,'[\"Dominic Toretto\"]'),(1596343,908094,2,'actor',NULL,'[\"Brian O\'Conner\"]'),(1596343,425005,3,'actor',NULL,'[\"Hobbs\"]'),(1596343,108287,4,'actress',NULL,'[\"Mia\"]'),(1596343,510912,5,'director',NULL,NULL),(1596343,604555,6,'writer','written by',NULL),(1596343,860155,7,'writer','characters',NULL),(1596343,288202,8,'producer','producer',NULL),(1596343,605775,9,'producer','producer',NULL),(1596345,6133,10,'composer',NULL,NULL),(1596345,1497,1,'actor',NULL,'[\"Bobby Fischer\"]'),(1596345,630,2,'actor',NULL,'[\"Boris Spassky\"]'),(1596345,765597,3,'actor',NULL,'[\"Father Bill Lombardy\"]'),(1596345,836121,4,'actor',NULL,'[\"Paul Marshall\"]'),(1596345,1880,5,'director',NULL,NULL),(1596345,1140275,6,'writer','screenplay',NULL),(1596345,729151,7,'writer','story',NULL),(1596345,929349,8,'writer','story',NULL),(1596345,441713,9,'producer','producer',NULL),(1596346,933128,10,'writer','screen story',NULL),(1596346,1455681,1,'actress',NULL,'[\"Bethany Hamilton\"]'),(1596346,598,2,'actor',NULL,'[\"Tom Hamilton\"]'),(1596346,166,3,'actress',NULL,'[\"Cheri Hamilton\"]'),(1596346,1863227,4,'actress',NULL,'[\"Sarah Hill\"]'),(1596346,573732,5,'director',NULL,NULL),(1596346,777203,6,'writer','screenplay',NULL),(1596346,777209,7,'writer','screenplay',NULL),(1596346,75276,8,'writer','screenplay',NULL),(1596346,20820,9,'writer','screen story',NULL),(1596350,800465,10,'producer','producer',NULL),(1596350,702,1,'actress',NULL,'[\"Lauren\"]'),(1596350,1517976,2,'actor',NULL,'[\"FDR Foster\"]'),(1596350,362766,3,'actor',NULL,'[\"Tuck\"]'),(1596350,1709,4,'actor',NULL,'[\"Heinrich\"]'),(1596350,629334,5,'director',NULL,NULL),(1596350,251,6,'writer','screenplay',NULL),(1596350,1334526,7,'writer','screenplay',NULL),(1596350,310225,8,'writer','story',NULL),(1596350,489876,9,'producer','producer',NULL),(1596363,586969,10,'producer','producer',NULL),(1596363,288,1,'actor',NULL,'[\"Michael Burry\"]'),(1596363,136797,2,'actor',NULL,'[\"Mark Baum\"]'),(1596363,331516,3,'actor',NULL,'[\"Jared Vennett\"]'),(1596363,93,4,'actor',NULL,'[\"Ben Rickert\"]'),(1596363,570912,5,'director',NULL,NULL),(1596363,1017488,6,'writer','screenplay by',NULL),(1596363,1034122,7,'writer','based upon the book by',NULL),(1596363,306890,8,'producer','producer',NULL),(1596363,1250070,9,'producer','producer',NULL),(1596365,1003922,10,'producer','producer',NULL),(1596365,705356,1,'actor',NULL,'[\"Arthur Kipps\"]'),(1596365,5216,2,'actress',NULL,'[\"Mrs. Daily\"]'),(1596365,1354,3,'actor',NULL,'[\"Sam Daily\"]'),(1596365,4610169,4,'actress',NULL,'[\"Fisher Girl\"]'),(1596365,1220140,5,'director',NULL,NULL),(1596365,384702,6,'writer','novel',NULL),(1596365,963359,7,'writer','screenplay',NULL),(1596365,413970,8,'producer','producer',NULL),(1596365,642975,9,'producer','producer',NULL),(1597522,216635,10,'producer','producer',NULL),(1597522,367,1,'actor',NULL,'[\"Obélix\"]'),(1597522,200702,2,'actor',NULL,'[\"Têtedepiaf\"]'),(1597522,46347,3,'actor',NULL,'[\"Astérix\"]'),(1597522,302916,4,'actor',NULL,'[\"Jolitorax\"]'),(1597522,1016687,5,'director',NULL,NULL),(1597522,331453,6,'writer','comic book',NULL),(1597522,1085510,7,'writer','collaborator: scenario',NULL),(1597522,879853,8,'writer','comic book',NULL),(1597522,897065,9,'writer','scenario & adaptation',NULL),(1598538,88383,10,'editor',NULL,NULL),(1598538,559052,1,'actor',NULL,'[\"Trojan\"]'),(1598538,251526,2,'actress',NULL,'[\"Dora Hillmann\"]'),(1598538,6740,3,'actor',NULL,'[\"Meyer\"]'),(1598538,90674,4,'actor',NULL,'[\"Nico\"]'),(1598538,37575,5,'director',NULL,NULL),(1598538,462926,6,'producer','producer',NULL),(1598538,13911912,7,'producer','producer',NULL),(1598538,421780,8,'composer',NULL,NULL),(1598538,903554,9,'cinematographer',NULL,NULL),(1598642,2272537,10,'producer','producer',NULL),(1598642,252230,1,'actor',NULL,'[\"John Loomis\"]'),(1598642,1517976,2,'actor',NULL,'[\"Caleb\"]'),(1598642,3053338,3,'actress',NULL,'[\"Ann Burden\"]'),(1598642,957505,4,'director',NULL,NULL),(1598642,3797883,5,'writer','screenplay',NULL),(1598642,639791,6,'writer','based on the book by',NULL),(1598642,510956,7,'producer','producer',NULL),(1598642,1497,8,'producer','producer',NULL),(1598642,540283,9,'producer','producer',NULL),(1598778,553498,10,'composer',NULL,NULL),(1598778,354,1,'actor',NULL,'[\"Mitch Emhoff\"]'),(1598778,701,2,'actress',NULL,'[\"Dr. Erin Mears\"]'),(1598778,179,3,'actor',NULL,'[\"Alan Krumwiede\"]'),(1598778,569,4,'actress',NULL,'[\"Beth Emhoff\"]'),(1598778,1752,5,'director',NULL,NULL),(1598778,1994243,6,'writer','written by',NULL),(1598778,414423,7,'producer','producer',NULL),(1598778,787834,8,'producer','producer',NULL),(1598778,792049,9,'producer','producer',NULL),(1598822,591665,10,'cinematographer',NULL,NULL),(1598822,572,1,'actress',NULL,'[\"Kim (segment \\\"Mother & Daughter\\\")\"]'),(1598822,4754,2,'actress',NULL,'[\"Tess Byrne (segment \\\"Maternity Ward\\\")\"]'),(1598822,5110,3,'actor',NULL,'[\"Randy (segment \\\"Elevator\\\")\"]'),(1598822,201,4,'actress',NULL,'[\"Ingrid (segment \\\"Resolution Tour\\\")\"]'),(1598822,5190,5,'director',NULL,NULL),(1598822,297545,6,'writer','written by',NULL),(1598822,440344,7,'producer','producer',NULL),(1598822,723573,8,'producer','producer',NULL),(1598822,2201,9,'composer',NULL,NULL),(1600195,3731363,10,'producer','producer',NULL),(1600195,1210124,1,'actor',NULL,'[\"Nathan\"]'),(1600195,2934314,2,'actress',NULL,'[\"Karen\"]'),(1600195,547,3,'actor',NULL,'[\"Burton\"]'),(1600195,1362962,4,'actor',NULL,'[\"CIA Man\"]'),(1600195,5436,5,'director',NULL,NULL),(1600195,159900,6,'writer','written by',NULL),(1600195,189777,7,'producer','producer',NULL),(1600195,205713,8,'producer','producer',NULL),(1600195,1650412,9,'producer','producer',NULL),(1600196,1743738,10,'composer',NULL,NULL),(1600196,362766,1,'actor',NULL,'[\"Bob\"]'),(1600196,636426,2,'actress',NULL,'[\"Nadia\"]'),(1600196,1254,3,'actor',NULL,'[\"Cousin Marv\"]'),(1600196,774386,4,'actor',NULL,'[\"Eric Deeds\"]'),(1600196,1742427,5,'director',NULL,NULL),(1600196,1212331,6,'writer','screenplay',NULL),(1600196,1858656,7,'producer','producer',NULL),(1600196,1249995,8,'producer','producer',NULL),(1600196,1937,9,'composer',NULL,NULL),(1600383,13707,10,'cinematographer',NULL,NULL),(1600383,1424220,1,'actress',NULL,'[\"Axun\"]'),(1600383,3802600,2,'actress',NULL,'[\"Maite\"]'),(1600383,1444973,3,'actor',NULL,'[\"Juan Mari\"]'),(1600383,1445349,4,'actor',NULL,'[\"Julian\"]'),(1600383,1531686,5,'director',NULL,NULL),(1600383,1305002,6,'director',NULL,NULL),(1600383,1531117,7,'producer','producer',NULL),(1600383,351104,8,'producer','producer',NULL),(1600383,301174,9,'composer',NULL,NULL),(1600524,230859,1,'actor',NULL,'[\"Francis\"]'),(1600524,2873161,2,'actress',NULL,'[\"Marie\"]'),(1600524,2671105,3,'actor',NULL,'[\"Nicolas\"]'),(1600524,234237,4,'actress',NULL,'[\"Désirée\"]'),(1600524,605515,5,'producer','producer',NULL),(1600524,83751,6,'cinematographer','director of photography',NULL),(1601913,834199,10,'composer',NULL,NULL),(1601913,553,1,'actor',NULL,'[\"Ottway\"]'),(1601913,551,2,'actor',NULL,'[\"Talget\"]'),(1601913,342029,3,'actor',NULL,'[\"Diaz\"]'),(1601913,1316767,4,'actor',NULL,'[\"Henrick\"]'),(1601913,138620,5,'director',NULL,NULL),(1601913,2259451,6,'writer','screenplay',NULL),(1601913,198467,7,'producer','producer',NULL),(1601913,509176,8,'producer','producer',NULL),(1601913,631,9,'producer','producer',NULL),(1602098,193268,10,'producer','producer',NULL),(1602098,335,1,'actress',NULL,'[\"Albert Nobbs\"]'),(1602098,1985859,2,'actress',NULL,'[\"Helen\"]'),(1602098,1093951,3,'actor',NULL,'[\"Joe\"]'),(1602098,2063982,4,'actress',NULL,'[\"Emmy\"]'),(1602098,6554,5,'director',NULL,NULL),(1602098,695881,6,'writer','screenplay',NULL),(1602098,52581,7,'writer','screenplay',NULL),(1602098,601239,8,'writer','novella \"The Singular Life of Albert Nobbs\"',NULL),(1602098,843640,9,'writer','screen story',NULL),(1602472,1540863,10,'producer','producer',NULL),(1602472,365,1,'actress',NULL,'[\"Marion\"]'),(1602472,1674,2,'actor',NULL,'[\"Mingus\"]'),(1602472,217817,3,'actor',NULL,'[\"Jeannot\"]'),(1602472,6952,4,'actress',NULL,'[\"Rose\"]'),(1602472,1595314,5,'writer','participation',NULL),(1602472,291542,6,'producer','producer',NULL),(1602472,1279774,7,'producer','producer',NULL),(1602472,1222479,8,'producer','producer',NULL),(1602472,2460473,9,'producer','producer',NULL),(1602479,1712317,10,'cinematographer',NULL,NULL),(1602479,1173559,1,'actress',NULL,'[\"Cherie\"]'),(1602479,1284845,2,'actor',NULL,'[\"Jimmy\"]'),(1602479,2920258,3,'actor',NULL,'[\"Bitto\"]'),(1602479,2281077,4,'actor',NULL,'[\"Restaurant manager\"]'),(1602479,1001051,5,'director',NULL,NULL),(1602479,1040773,6,'writer',NULL,NULL),(1602479,3396841,7,'producer','producer',NULL),(1602479,2170804,8,'composer',NULL,NULL),(1602479,2125564,9,'composer',NULL,NULL),(1602613,809040,10,'cinematographer',NULL,NULL),(1602613,331516,1,'actor',NULL,'[\"Julian\"]'),(1602613,218,2,'actress',NULL,'[\"Crystal\"]'),(1602613,3307918,3,'actor',NULL,'[\"Chang\"]'),(1602613,1446625,4,'actor',NULL,'[\"Gordon\"]'),(1602613,716347,5,'director',NULL,NULL),(1602613,1178284,6,'producer','producer',NULL),(1602613,241489,7,'producer','producer',NULL),(1602613,544947,8,'producer','producer',NULL),(1602613,553498,9,'composer',NULL,NULL),(1602617,1308660,10,'editor',NULL,NULL),(1602617,2433722,1,'actor',NULL,'[\"Tyler Crawley\"]'),(1602617,2766221,2,'actor',NULL,'[\"Everett Manette\"]'),(1602617,1326886,3,'actor',NULL,'[\"Chris Comeau\"]'),(1602617,3262916,4,'actor',NULL,'[\"Robert \'Bobcat\' Comeau\"]'),(1602617,1268987,5,'director',NULL,NULL),(1602617,531799,6,'writer','written by',NULL),(1602617,131534,7,'producer','producer',NULL),(1602617,1238326,8,'producer','producer',NULL),(1602617,3544,9,'cinematographer',NULL,NULL),(1602620,4462,1,'actor',NULL,'[\"Georges\"]'),(1602620,728938,2,'actress',NULL,'[\"Anne\"]'),(1602620,1376,3,'actress',NULL,'[\"Eva\"]'),(1602620,1225096,4,'actor',NULL,'[\"Alexandre\"]'),(1602620,359734,5,'director',NULL,NULL),(1602620,451787,6,'cinematographer','director of photography',NULL),(1602620,6933,7,'editor',NULL,NULL),(1602620,929889,8,'editor',NULL,NULL),(1602620,701378,9,'production_designer',NULL,NULL),(1604171,787427,10,'cinematographer',NULL,NULL),(1604171,1631435,1,'actress',NULL,'[\"Nova Prescott\"]'),(1604171,2973459,2,'actor',NULL,'[\"Jesse Richter\"]'),(1604171,633228,3,'actor',NULL,'[\"Tyler Barso\"]'),(1604171,2836740,4,'actress',NULL,'[\"Simone Daniels\"]'),(1604171,638271,5,'director',NULL,NULL),(1604171,2251854,6,'writer','written by',NULL),(1604171,341372,7,'producer','producer',NULL),(1604171,3808455,8,'producer','producer',NULL),(1604171,527091,9,'composer',NULL,NULL),(1604225,5199533,10,'self',NULL,'[\"Self\"]'),(1604225,10226234,1,'self',NULL,'[\"Self\"]'),(1604225,4358345,2,'actress',NULL,'[\"Self.\"]'),(1604225,1786398,3,'self',NULL,'[\"Self\"]'),(1604225,10197169,4,'self',NULL,'[\"Self - Self\"]'),(1604225,3294,5,'director',NULL,NULL),(1604225,1803122,6,'producer','executive producer',NULL),(1604225,2477950,7,'composer',NULL,NULL),(1604225,3508091,8,'editor',NULL,NULL),(1604225,2986854,9,'editor',NULL,NULL),(1604900,3821738,10,'producer','producer',NULL),(1604900,2432722,1,'actor',NULL,'[\"Monk\",\"Ho Tien-Yo\"]'),(1604900,3609766,2,'actor',NULL,'[\"Mosquito\",\"Chou Yi-Mong\"]'),(1604900,3108838,3,'actor',NULL,'[\"Boss Geta\"]'),(1604900,2429015,4,'actress',NULL,'[\"Ning\"]'),(1604900,633080,5,'director',NULL,NULL),(1604900,3030690,6,'writer','screenplay',NULL),(1604900,3822259,7,'producer','producer',NULL),(1604900,3821816,8,'producer','producer',NULL),(1604900,497455,9,'producer','executive producer',NULL),(1605717,3815139,10,'producer','producer',NULL),(1605717,1055413,1,'actor',NULL,'[\"Frank\"]'),(1605717,1727304,2,'actor',NULL,'[\"Jon Burroughs\"]'),(1605717,350454,3,'actress',NULL,'[\"Clara\"]'),(1605717,111757,4,'actress',NULL,'[\"Jon\'s Mother\"]'),(1605717,1049433,5,'director',NULL,NULL),(1605717,740160,6,'writer','written by',NULL),(1605717,1661186,7,'writer','written by',NULL),(1605717,57655,8,'producer','producer',NULL),(1605717,347384,9,'producer','producer',NULL),(1605783,503429,10,'editor',NULL,NULL),(1605783,5562,1,'actor',NULL,'[\"Gil\"]'),(1605783,1046097,2,'actress',NULL,'[\"Inez\"]'),(1605783,870,3,'actress',NULL,'[\"Gertrude Stein\"]'),(1605783,298281,4,'actor',NULL,'[\"John\"]'),(1605783,95,5,'director',NULL,NULL),(1605783,36981,6,'producer','producer',NULL),(1605783,1255565,7,'producer','producer',NULL),(1605783,1008264,8,'producer','producer',NULL),(1605783,451787,9,'cinematographer','director of photography',NULL),(1605798,931027,10,'editor',NULL,NULL),(1605798,266824,1,'actress',NULL,'[\"Effie Gray\"]'),(1605798,936353,2,'actor',NULL,'[\"John Ruskin\"]'),(1605798,836432,3,'actor',NULL,'[\"John Everett Millais\"]'),(1605798,668,4,'actress',NULL,'[\"Lady Eastlake\"]'),(1605798,493441,5,'director',NULL,NULL),(1605798,2001875,6,'producer','producer',NULL),(1605798,742535,7,'producer','producer',NULL),(1605798,134508,8,'composer',NULL,NULL),(1605798,242491,9,'cinematographer','director of photography',NULL),(1606339,3619598,10,'production_designer',NULL,NULL),(1606339,279064,1,'actor',NULL,'[\"Detective John N. Davenport\"]'),(1606339,2186682,2,'actress',NULL,'[\"Sushi Girl\"]'),(1606339,865302,3,'actor',NULL,'[\"Duke\"]'),(1606339,441,4,'actor',NULL,'[\"Fish\"]'),(1606339,1615009,5,'director',NULL,NULL),(1606339,2696736,6,'writer','written by',NULL),(1606339,2410774,7,'producer','producer',NULL),(1606339,3018638,8,'composer',NULL,NULL),(1606339,2731704,9,'cinematographer',NULL,NULL),(1606378,1937,10,'composer',NULL,NULL),(1606378,246,1,'actor',NULL,'[\"John McClane\"]'),(1606378,2541974,2,'actor',NULL,'[\"Jack McClane\"]'),(1606378,462407,3,'actor',NULL,'[\"Komarov\"]'),(1606378,935541,4,'actress',NULL,'[\"Lucy\"]'),(1606378,601382,5,'director',NULL,NULL),(1606378,940790,6,'writer','written by',NULL),(1606378,861636,7,'writer','certain original characters by',NULL),(1606378,324041,8,'producer','producer',NULL),(1606378,1747215,9,'producer','producer',NULL),(1606389,53388,10,'producer','producer',NULL),(1606389,1046097,1,'actress',NULL,'[\"Paige\"]'),(1606389,1475594,2,'actor',NULL,'[\"Leo\"]'),(1606389,554,3,'actor',NULL,'[\"Bill Thornton\"]'),(1606389,1448,4,'actress',NULL,'[\"Rita Thornton\"]'),(1606389,1302591,5,'director',NULL,NULL),(1606389,463359,6,'writer','screenplay',NULL),(1606389,799050,7,'writer','screenplay',NULL),(1606389,441300,8,'writer','screenplay',NULL),(1606389,1213974,9,'writer','story',NULL),(1606392,1015867,10,'composer',NULL,NULL),(1606392,316079,1,'actor',NULL,'[\"Mike Flaherty\"]'),(1606392,752407,2,'actress',NULL,'[\"Jackie Flaherty\"]'),(1606392,1787,3,'actor',NULL,'[\"Stephen Vigman\"]'),(1606392,134072,4,'actor',NULL,'[\"Terry Delfino\"]'),(1606392,565336,5,'director',NULL,NULL),(1606392,4035833,6,'writer','story',NULL),(1606392,11396650,7,'producer','producer',NULL),(1606392,518757,8,'producer','producer',NULL),(1606392,803826,9,'producer','producer',NULL),(1606618,635225,10,'cinematographer',NULL,NULL),(1606618,470886,1,'actor',NULL,'[\"Bruno\"]'),(1606618,4558335,2,'actor',NULL,'[\"Albert\"]'),(1606618,956495,3,'actor',NULL,'[\"Elias\"]'),(1606618,4558385,4,'actress',NULL,'[\"Iris\"]'),(1606618,71070,5,'director',NULL,NULL),(1606618,256764,6,'writer','written by',NULL),(1606618,906311,7,'writer','screenplay',NULL),(1606618,529526,8,'producer','producer',NULL),(1606618,405450,9,'composer',NULL,NULL),(1609479,622474,10,'composer',NULL,NULL),(1609479,5377,1,'actor',NULL,'[\"Doug Varney\"]'),(1609479,1312575,2,'actress',NULL,'[\"Elizabeth Roberts\"]'),(1609479,1157358,3,'actress',NULL,'[\"Kara Varney\"]'),(1609479,404,4,'actress',NULL,'[\"Pharmacy Customer\"]'),(1609479,3819792,5,'director',NULL,NULL),(1609479,1506819,6,'director',NULL,NULL),(1609479,2094135,7,'producer','producer',NULL),(1609479,1765773,8,'producer','producer',NULL),(1609479,1420126,9,'composer',NULL,NULL),(1610301,807413,10,'composer',NULL,NULL),(1610301,792198,1,'actress',NULL,'[\"Merliah\"]'),(1610301,56532,2,'actress',NULL,'[\"Eris\",\"Snouts\"]'),(1610301,319308,3,'actress',NULL,'[\"Zuma\",\"Deanne\"]'),(1610301,1307564,4,'actor',NULL,'[\"Surf Announcer\"]'),(1610301,939517,5,'director',NULL,NULL),(1610301,20489,6,'writer','written by',NULL),(1610301,1043325,7,'writer','based on: the Barbie characters created by',NULL),(1610301,2241646,8,'producer','producer',NULL),(1610301,1583271,9,'producer','producer',NULL),(1610452,11689404,10,'composer',NULL,NULL),(1610452,3828984,1,'actor',NULL,'[\"Bittoo Sharma\"]'),(1610452,3087728,2,'actress',NULL,'[\"Shruti Kakkar\"]'),(1610452,6560386,3,'actor',NULL,'[\"Father-in-law of Sonia\"]'),(1610452,6444214,4,'actor',NULL,'[\"Ranveer\'s big brother\"]'),(1610452,1834891,5,'director',NULL,NULL),(1610452,3814301,6,'writer','lyrics',NULL),(1610452,1964923,7,'writer','screenplay & dialogues',NULL),(1610452,159147,8,'producer','producer',NULL),(1610452,1224445,9,'composer',NULL,NULL),(1610996,2260245,10,'production_designer',NULL,NULL),(1610996,3422130,1,'actress',NULL,'[\"Callie\"]'),(1610996,1352905,2,'actress',NULL,'[\"Tricia\"]'),(1610996,1844838,3,'actor',NULL,'[\"Det. Mallory\"]'),(1610996,1653291,4,'actor',NULL,'[\"Det. Lonergan\"]'),(1610996,1093039,5,'director',NULL,NULL),(1610996,2284726,6,'producer','producer',NULL),(1610996,1536172,7,'producer','producer',NULL),(1610996,3833088,8,'composer',NULL,NULL),(1610996,2241443,9,'cinematographer','director of photography',NULL),(1611224,221042,10,'cinematographer','director of photography',NULL),(1611224,907548,1,'actor',NULL,'[\"Abraham Lincoln\"]'),(1611224,1722,2,'actor',NULL,'[\"Adam\"]'),(1611224,1002641,3,'actor',NULL,'[\"Henry Sturges\"]'),(1611224,1107001,4,'actor',NULL,'[\"Will Johnson\"]'),(1611224,67457,5,'director',NULL,NULL),(1611224,334381,6,'writer','screenplay by',NULL),(1611224,318,7,'producer','producer',NULL),(1611224,501391,8,'producer','producer',NULL),(1611224,2273444,9,'composer',NULL,NULL),(1612774,818880,1,'actor',NULL,'[\"Lieutenant Chad\"]'),(1612774,581953,2,'actress',NULL,'[\"Sheila\"]'),(1612774,369567,3,'actor',NULL,'[\"Man in Wheelchair\"]'),(1612774,687443,4,'actor',NULL,'[\"Accountant\"]'),(1612774,1189197,5,'director',NULL,NULL),(1612774,1668020,6,'producer','producer',NULL),(1612774,2274436,7,'producer','producer',NULL),(1612774,3836404,8,'composer',NULL,NULL),(1612774,11471503,9,'production_designer',NULL,NULL),(1613750,845542,10,'composer',NULL,NULL),(1613750,1914298,1,'actor',NULL,'[\"Thor Heyerdahl\"]'),(1613750,471601,2,'actor',NULL,'[\"Herman Watzinger\"]'),(1613750,803890,3,'actor',NULL,'[\"Bengt Danielsson\"]'),(1613750,2322351,4,'actor',NULL,'[\"Erik Hesselberg\"]'),(1613750,1461392,5,'director',NULL,NULL),(1613750,1650283,6,'director',NULL,NULL),(1613750,803931,7,'writer','written by',NULL),(1613750,7317,8,'producer','producer',NULL),(1613750,859016,9,'producer','producer',NULL),(1614338,668094,1,'actress',NULL,'[\"Fanny\"]'),(1614338,2014708,2,'actress',NULL,'[\"Annie\"]'),(1614338,2748883,3,'actor',NULL,'[\"Danny\"]'),(1614338,444575,4,'actress',NULL,'[\"Edie\"]'),(1614338,2373826,5,'director',NULL,NULL),(1614338,773266,6,'producer','producer',NULL),(1614408,434996,10,'producer','producer',NULL),(1614408,2337578,1,'actress',NULL,'[\"Akari Yoshiyama\"]'),(1614408,1885802,2,'actor',NULL,'[\"Ryota Mizorogi\"]'),(1614408,1328568,3,'actor',NULL,'[\"Gotetsu\",\"Masamichi Hasegawa\"]'),(1614408,3087358,4,'actress',NULL,'[\"Kazuko - \'74\"]'),(1614408,3832292,5,'director',NULL,NULL),(1614408,875489,6,'writer','based on the novel by',NULL),(1614408,3743687,7,'writer','screenplay',NULL),(1614408,3275392,8,'producer','producer',NULL),(1614408,2095469,9,'producer','producer',NULL),(1614989,1336074,10,'producer','producer',NULL),(1614989,377336,1,'actor',NULL,'[\"Roger\"]'),(1614989,4033934,2,'actress',NULL,'[\"Diana\"]'),(1614989,182666,3,'actor',NULL,'[\"Clas Greve\"]'),(1614989,1274152,4,'actress',NULL,'[\"Lotte\"]'),(1614989,878763,5,'director',NULL,NULL),(1614989,752968,6,'writer','screenplay',NULL),(1614989,345674,7,'writer','screenplay',NULL),(1614989,1867674,8,'writer','novel',NULL),(1614989,336807,9,'producer','producer',NULL),(1615065,1642839,10,'composer',NULL,NULL),(1615065,1093951,1,'actor',NULL,'[\"Ben\"]'),(1615065,2018237,2,'actor',NULL,'[\"Chon\"]'),(1615065,515116,3,'actress',NULL,'[\"O\"]'),(1615065,1125,4,'actor',NULL,'[\"Lado\"]'),(1615065,231,5,'director',NULL,NULL),(1615065,4307,6,'writer','screenplay',NULL),(1615065,972454,7,'writer','screenplay',NULL),(1615065,97001,8,'producer','producer',NULL),(1615065,465740,9,'producer','producer',NULL),(1615147,602161,10,'producer','producer',NULL),(1615147,704270,1,'actor',NULL,'[\"Peter Sullivan\"]'),(1615147,1804,2,'actor',NULL,'[\"Eric Dale\"]'),(1615147,228,3,'actor',NULL,'[\"Sam Rogers\"]'),(1615147,79273,4,'actor',NULL,'[\"Will Emerson\"]'),(1615147,1170855,5,'director',NULL,NULL),(1615147,2216463,6,'producer','producer',NULL),(1615147,2918260,7,'producer','producer',NULL),(1615147,230306,8,'producer','producer',NULL),(1615147,3765270,9,'producer','producer',NULL),(1615160,525961,10,'producer','producer',NULL),(1615160,1648520,1,'actress',NULL,'[\"Fan\"]'),(1615160,329,2,'actor',NULL,'[\"Quan Ngoc Minh\"]'),(1615160,1257480,3,'actor',NULL,'[\"Ian Wood\"]'),(1615160,849214,4,'actor',NULL,'[\"Simpson\"]'),(1615160,132709,5,'director',NULL,NULL),(1615160,545861,6,'writer','screenplay by',NULL),(1615160,495319,7,'writer','based on the novel \"The Chinaman\" by',NULL),(1615160,2222628,8,'producer','producer',NULL),(1615160,475423,9,'producer','producer',NULL),(1615918,46559,10,'producer','producer',NULL),(1615918,519043,1,'actor',NULL,'[\"Alvin\"]'),(1615918,1131557,2,'actor',NULL,'[\"Simon\"]'),(1615918,565366,3,'actor',NULL,'[\"Theodore\"]'),(1615918,5134,4,'actor',NULL,'[\"Dave\"]'),(1615918,593610,5,'director',NULL,NULL),(1615918,8743,6,'writer','written by',NULL),(1615918,74184,7,'writer','written by',NULL),(1615918,46564,8,'writer','characters',NULL),(1615918,439739,9,'writer','characters',NULL),(1617661,76670,10,'editor',NULL,NULL),(1617661,1475594,1,'actor',NULL,'[\"Caine Wise\"]'),(1617661,5109,2,'actress',NULL,'[\"Jupiter Jones\"]'),(1617661,1519666,3,'actor',NULL,'[\"Balem Abrasax\"]'),(1617661,293,4,'actor',NULL,'[\"Stinger Apini\"]'),(1617661,905154,5,'director',NULL,NULL),(1617661,905152,6,'director',NULL,NULL),(1617661,384294,7,'producer','producer',NULL),(1617661,315974,8,'composer',NULL,NULL),(1617661,1799,9,'cinematographer','director of photography',NULL),(16183464,4052240,10,'producer','producer',NULL),(16183464,849028,1,'actress',NULL,'[\"Monkey D. Luffy\"]'),(16183464,620017,2,'actor',NULL,'[\"Roronora Zoro\"]'),(16183464,645500,3,'actress',NULL,'[\"Nami\"]'),(16183464,945322,4,'actor',NULL,'[\"Usopp\"]'),(16183464,849465,5,'director',NULL,NULL),(16183464,13244566,6,'writer','co-writer',NULL),(16183464,3648497,7,'writer','screenplay',NULL),(16183464,1520917,8,'writer','manga',NULL),(16183464,6940530,9,'producer','producer',NULL),(1618390,2408752,10,'editor',NULL,NULL),(1618390,5548,1,'actor',NULL,'[\"Jesus Christ\"]'),(1618390,1943,2,'actress',NULL,'[\"Maria\"]'),(1618390,300282,3,'actress',NULL,'[\"Maria of Magdala\"]'),(1618390,700206,4,'actor',NULL,'[\"Pilate\"]'),(1618390,1893182,5,'director',NULL,NULL),(1618390,1345076,6,'writer','english adaptation',NULL),(1618390,3839354,7,'composer',NULL,NULL),(1618390,3839262,8,'composer',NULL,NULL),(1618390,481464,9,'cinematographer',NULL,NULL),(1618434,1246087,10,'producer','producer',NULL),(1618434,1191,1,'actor',NULL,'[\"Nick Spitz\"]'),(1618434,98,2,'actress',NULL,'[\"Audrey Spitz\"]'),(1618434,1812656,3,'actor',NULL,'[\"Charles Cavendish\"]'),(1618434,654,4,'actor',NULL,'[\"Malcolm Quince\"]'),(1618434,1760830,5,'director',NULL,NULL),(1618434,888743,6,'writer','screenplay',NULL),(1618434,184445,7,'producer','producer',NULL),(1618434,228690,8,'producer','producer',NULL),(1618434,827726,9,'producer','producer',NULL),(1618442,325927,10,'producer','producer',NULL),(1618442,4874,1,'actor',NULL,'[\"Kaulder\"]'),(1618442,3310211,2,'actress',NULL,'[\"Chloe\"]'),(1618442,704,3,'actor',NULL,'[\"Dolan 37th\"]'),(1618442,959963,4,'actor',NULL,'[\"Belial\"]'),(1618442,252135,5,'director',NULL,NULL),(1618442,2309430,6,'writer','written by',NULL),(1618442,1948885,7,'writer','written by',NULL),(1618442,2332952,8,'writer','written by',NULL),(1618442,4799,9,'producer','producer',NULL),(1619029,2213147,10,'producer','producer',NULL),(1619029,204,1,'actress',NULL,'[\"Jackie Kennedy\"]'),(1619029,765597,2,'actor',NULL,'[\"Bobby Kennedy\"]'),(1619029,1950086,3,'actress',NULL,'[\"Nancy Tuckerman\"]'),(1619029,1082,4,'actor',NULL,'[\"The Journalist\"]'),(1619029,1883257,5,'director',NULL,NULL),(1619029,3834300,6,'writer','written by',NULL),(1619029,4716,7,'producer','producer',NULL),(1619029,291542,8,'producer','producer',NULL),(1619029,359504,9,'producer','producer',NULL),(1620680,924270,10,'producer','producer',NULL),(1620680,4977564,1,'actress',NULL,'[\"Meg\"]'),(1620680,1856,2,'actress',NULL,'[\"Mrs. Which\"]'),(1620680,702,3,'actress',NULL,'[\"Mrs. Whatsit\"]'),(1620680,1411676,4,'actress',NULL,'[\"Mrs. Who\"]'),(1620680,1148550,5,'director',NULL,NULL),(1620680,1601644,6,'writer','screenplay by',NULL),(1620680,830969,7,'writer','screenplay by',NULL),(1620680,478291,8,'writer','based upon the novel by',NULL),(1620680,1034870,9,'producer','producer',NULL),(1620981,75762,10,'producer','producer',NULL),(1620981,1209966,1,'actor',NULL,'[\"Gomez Addams\"]'),(1620981,234,2,'actress',NULL,'[\"Morticia Addams\"]'),(1620981,1631269,3,'actress',NULL,'[\"Wednesday Addams\"]'),(1620981,6016511,4,'actor',NULL,'[\"Pugsley Addams\"]'),(1620981,862911,5,'director',NULL,NULL),(1620981,970447,6,'director',NULL,NULL),(1620981,1073238,7,'writer','screenplay by',NULL),(1620981,1106214,8,'writer','story by',NULL),(1620981,11623,9,'writer','based on characters created by',NULL),(1621039,3439751,10,'writer','co-writer',NULL),(1621039,437,1,'actor',NULL,'[\"Jake\"]'),(1621039,5562,2,'actor',NULL,'[\"Reggie\"]'),(1621039,283945,3,'actor',NULL,'[\"Governor Bradford\"]'),(1621039,688132,4,'actress',NULL,'[\"Jenny\"]'),(1621039,371755,5,'director',NULL,NULL),(1621039,608714,6,'writer','screenplay',NULL),(1621039,827670,7,'writer','story',NULL),(1621039,833828,8,'writer','story',NULL),(1621039,1625382,9,'writer','co-writer',NULL),(1621045,501999,10,'composer',NULL,NULL),(1621045,2093097,1,'actor',NULL,'[\"Alex\"]'),(1621045,5517,2,'actress',NULL,'[\"Kristen\"]'),(1621045,366389,3,'actor',NULL,'[\"Cedric\"]'),(1621045,1013003,4,'actor',NULL,'[\"Dominic\"]'),(1621045,1103162,5,'director',NULL,NULL),(1621045,2226647,6,'writer','screenplay',NULL),(1621045,2226970,7,'writer','screenplay',NULL),(1621045,367724,8,'writer','book \"Act Like a Lady, Think Like a Man\"',NULL),(1621045,655510,9,'producer','producer',NULL),(1621046,4939447,10,'producer','producer',NULL),(1621046,671567,1,'actor',NULL,'[\"Cesar Chavez\"]'),(1621046,1065229,2,'actress',NULL,'[\"Helen Chavez\"]'),(1621046,206257,3,'actress',NULL,'[\"Dolores Huerta\"]'),(1621046,518,4,'actor',NULL,'[\"Bogdanovich Senior\"]'),(1621046,526019,5,'director',NULL,NULL),(1621046,786694,6,'writer','screenplay by',NULL),(1621046,669311,7,'writer','story by',NULL),(1621046,190427,8,'producer','producer',NULL),(1621046,355147,9,'producer','producer',NULL),(1621429,1070966,10,'producer','producer',NULL),(1621429,532683,1,'actor',NULL,'[\"Paul Cutler\"]'),(1621429,1598,2,'actor',NULL,'[\"Walter Hatch\"]'),(1621429,5318,3,'actress',NULL,'[\"Kim Byers\"]'),(1621429,2064,4,'actor',NULL,'[\"Inspector Hollander\"]'),(1621429,1534600,5,'director',NULL,NULL),(1621429,825988,6,'writer','screenplay',NULL),(1621429,908121,7,'writer','story',NULL),(1621429,2889,8,'writer','story',NULL),(1621429,36223,9,'writer','story',NULL),(1621444,3845330,10,'self',NULL,'[\"Self\"]'),(1621444,3846623,1,'self',NULL,'[\"Self\"]'),(1621444,1659661,2,'self',NULL,'[\"Self\"]'),(1621444,1824476,3,'self',NULL,'[\"Self\"]'),(1621444,792426,4,'self',NULL,'[\"Self\"]'),(1621444,696236,5,'director',NULL,NULL),(1621444,3846193,6,'producer','producer',NULL),(1621444,3845784,7,'cinematographer',NULL,NULL),(1621444,1350158,8,'editor',NULL,NULL),(1621444,2365710,9,'self',NULL,'[\"Self\"]'),(1621994,1224445,10,'composer',NULL,NULL),(1621994,1413459,1,'actor',NULL,'[\"Yodha\"]'),(1621994,1599046,2,'actress',NULL,'[\"Priya\"]'),(1621994,1711203,3,'actress',NULL,'[\"Irendri\",\"Sarpini\'s Voice\"]'),(1621994,2560181,4,'actor',NULL,'[\"Sudigundam\"]'),(1621994,1668634,5,'director',NULL,NULL),(1621994,4738590,6,'writer','additional writing',NULL),(1621994,3848973,7,'writer','additional writing',NULL),(1621994,2184504,8,'writer','dialogue',NULL),(1621994,3764352,9,'producer','producer',NULL),(1622547,1774,10,'producer','producer',NULL),(1622547,251986,1,'actor',NULL,'[\"Nick\"]'),(1622547,1144419,2,'actor',NULL,'[\"Dwayne\"]'),(1622547,841910,3,'actor',NULL,'[\"Travis\"]'),(1622547,2106637,4,'actor',NULL,'[\"Chet\"]'),(1622547,281508,5,'director',NULL,NULL),(1622547,2225652,6,'writer','screenplay',NULL),(1622547,3574030,7,'writer','story',NULL),(1622547,180366,8,'producer','producer',NULL),(1622547,469553,9,'producer','producer',NULL),(1622979,3911,10,'composer',NULL,NULL),(1622979,194900,1,'actor',NULL,'[\"Sam\"]'),(1622979,68187,2,'actress',NULL,'[\"Molly\"]'),(1622979,260224,3,'actor',NULL,'[\"Nathan\"]'),(1622979,279702,4,'actor',NULL,'[\"Peter Friedkin\"]'),(1622979,702797,5,'director',NULL,NULL),(1622979,2104063,6,'writer','written by',NULL),(1622979,714695,7,'writer','characters',NULL),(1622979,675013,8,'producer','producer',NULL),(1622979,956015,9,'producer','producer',NULL),(1623205,384,10,'composer',NULL,NULL),(1623205,290556,1,'actor',NULL,'[\"Oz\"]'),(1623205,931329,2,'actress',NULL,'[\"Annie\",\"Glinda\"]'),(1623205,1838,3,'actress',NULL,'[\"Evanora\"]'),(1623205,5109,4,'actress',NULL,'[\"Theodora\",\"Wicked Witch of the West\"]'),(1623205,600,5,'director',NULL,NULL),(1623205,438449,6,'writer','screenplay',NULL),(1623205,1865755,7,'writer','screenplay',NULL),(1623205,875,8,'writer','Oz works',NULL),(1623205,5387,9,'producer','producer',NULL),(1623288,4336,10,'cinematographer','director of photography',NULL),(1623288,2240346,1,'actor',NULL,'[\"Norman Babcock\"]'),(1623288,447695,2,'actress',NULL,'[\"Courtney Babcock\"]'),(1623288,2395586,3,'actor',NULL,'[\"Alvin\"]'),(1623288,3235380,4,'actor',NULL,'[\"Neil\"]'),(1623288,2752098,5,'director',NULL,NULL),(1623288,271402,6,'director',NULL,NULL),(1623288,1325899,7,'producer','producer',NULL),(1623288,1750312,8,'producer','producer',NULL),(1623288,109726,9,'composer',NULL,NULL),(1623745,816817,10,'editor',NULL,NULL),(1623745,1017334,1,'actress',NULL,'[\"Lily Hobart\"]'),(1623745,659048,2,'actress',NULL,'[\"Alison Hoffman\"]'),(1623745,5182,3,'actress',NULL,'[\"Margaret Hobart\"]'),(1623745,98378,4,'actress',NULL,'[\"Bonnie Muller\"]'),(1623745,1990437,5,'director',NULL,NULL),(1623745,1364232,6,'producer','producer',NULL),(1623745,2611223,7,'producer','producer',NULL),(1623745,2126907,8,'producer','producer',NULL),(1623745,1543747,9,'cinematographer','director of photography',NULL),(1624408,1755315,10,'editor',NULL,NULL),(1624408,942897,1,'actress',NULL,'[\"Vic\"]'),(1624408,662504,2,'actress',NULL,'[\"Kat\"]'),(1624408,532914,3,'actor',NULL,'[\"Host\"]'),(1624408,551991,4,'actor',NULL,'[\"Waiter #2\"]'),(1624408,567680,5,'director',NULL,NULL),(1624408,267695,6,'producer','producer',NULL),(1624408,427314,7,'producer','producer',NULL),(1624408,2880385,8,'composer',NULL,NULL),(1624408,1486199,9,'cinematographer',NULL,NULL),(1624426,2589786,10,'editor',NULL,NULL),(1624426,724757,1,'actress',NULL,'[\"Maye\"]'),(1624426,1165044,2,'actor',NULL,'[\"Troy\"]'),(1624426,925232,3,'actress',NULL,'[\"Fran\"]'),(1624426,848316,4,'actor',NULL,'[\"Raven\"]'),(1624426,1148550,5,'director',NULL,NULL),(1624426,562617,6,'producer','producer',NULL),(1624426,12082527,7,'producer','producer',NULL),(1624426,98224,8,'composer',NULL,NULL),(1624426,2319347,9,'cinematographer',NULL,NULL),(1625155,519933,10,'actor',NULL,'[\"Telmo Sobral\"]'),(1625155,87324,1,'actress',NULL,'[\"Márcia Fialho\"]'),(1625155,1335025,2,'actress',NULL,'[\"Ivete Fialho\"]'),(1625155,21823,3,'actress',NULL,'[\"Cláudia Filipa Fialho\"]'),(1625155,2742329,4,'actor',NULL,'[\"Joca Fialho\"]'),(1625155,133981,5,'director',NULL,NULL),(1625155,2953984,6,'producer','producer',NULL),(1625155,144470,7,'cinematographer',NULL,NULL),(1625155,3949693,8,'editor',NULL,NULL),(1625155,881866,9,'actor',NULL,'[\"Dr. Alberto \'Beto\' Vieira\"]'),(1625340,2940691,10,'producer','producer',NULL),(1625340,1349,1,'actress',NULL,'[\"Samantha Horton\"]'),(1625340,1146243,2,'actor',NULL,'[\"Rex Horton\"]'),(1625340,1060641,3,'actress',NULL,'[\"Dee\"]'),(1625340,7155,4,'actress',NULL,'[\"Jacie\"]'),(1625340,485637,5,'director',NULL,NULL),(1625340,553104,6,'writer','written by',NULL),(1625340,62185,7,'producer','producer',NULL),(1625340,78735,8,'producer','producer',NULL),(1625340,105946,9,'producer','executive producer',NULL),(1625346,448843,10,'composer',NULL,NULL),(1625346,234,1,'actress',NULL,'[\"Mavis Gary\"]'),(1625346,933940,2,'actor',NULL,'[\"Buddy Slade\"]'),(1625346,652663,3,'actor',NULL,'[\"Matt Freehauf\"]'),(1625346,714147,4,'actress',NULL,'[\"Beth Slade\"]'),(1625346,718646,5,'director',NULL,NULL),(1625346,1959505,6,'writer','written by',NULL),(1625346,355147,7,'producer','producer',NULL),(1625346,1259504,8,'producer','producer',NULL),(1625346,809833,9,'producer','producer',NULL),(1626146,1862149,10,'producer','producer',NULL),(1626146,670408,1,'actor',NULL,'[\"Hector\"]'),(1626146,683253,2,'actress',NULL,'[\"Clara\"]'),(1626146,643322,3,'actress',NULL,'[\"Pathetic Jane\"]'),(1626146,606,4,'actor',NULL,'[\"Diego Baresco\"]'),(1626146,155093,5,'director',NULL,NULL),(1626146,374842,6,'writer','screenplay',NULL),(1626146,2186632,7,'writer','screenplay',NULL),(1626146,1910008,8,'writer','novel \"Le voyage d\'Hector ou la recherche de bonheur\"',NULL),(1626146,3909704,9,'producer','producer',NULL),(1626201,1598010,10,'composer',NULL,NULL),(1626201,1260407,1,'actress',NULL,'[\"Virginia \'Red\' Sullivan\"]'),(1626201,808902,2,'actor',NULL,'[\"Nathan Kessler\"]'),(1626201,565569,3,'actor',NULL,'[\"Gabriel\"]'),(1626201,117374,4,'actor',NULL,'[\"Marcus Sullivan\"]'),(1626201,934135,5,'director',NULL,NULL),(1626201,1602192,6,'writer','based on a story by',NULL),(1626201,244058,7,'writer','teleplay',NULL),(1626201,156207,8,'producer','producer',NULL),(1626201,1034909,9,'producer','producer',NULL),(1628841,1125328,10,'writer','screenplay',NULL),(1628841,2955013,1,'actor',NULL,'[\"Jake Morrison\"]'),(1628841,156,2,'actor',NULL,'[\"David Levinson\"]'),(1628841,597,3,'actor',NULL,'[\"President Whitmore\"]'),(1628841,2140860,4,'actress',NULL,'[\"Patricia Whitmore\"]'),(1628841,386,5,'director',NULL,NULL),(1628841,1288961,6,'writer','screenplay by',NULL),(1628841,1123994,7,'writer','screenplay by',NULL),(1628841,2041,8,'writer','screenplay by',NULL),(1628841,888743,9,'writer','screenplay by',NULL),(1629377,1455093,10,'producer','producer',NULL),(1629377,147308,1,'actor',NULL,'[\"Jaime\"]'),(1629377,2168632,2,'actress',NULL,'[\"Isa\"]'),(1629377,905676,3,'actress',NULL,'[\"Marta\"]'),(1629377,2312358,4,'actor',NULL,'[\"Asaltante Joven\"]'),(1629377,900251,5,'director',NULL,NULL),(1629377,1512598,6,'writer',NULL,NULL),(1629377,4760689,7,'producer','producer',NULL),(1629377,4760660,8,'producer','producer',NULL),(1629377,2206548,9,'producer','producer',NULL),(1629705,5851,10,'cinematographer',NULL,NULL),(1629705,1731,1,'actor',NULL,'[\"James\"]'),(1629705,635330,2,'actor',NULL,'[\"Ing. Eduardo Apodaca\"]'),(1629705,1653,3,'actor',NULL,'[\"Mackinley\"]'),(1629705,2008680,4,'actress',NULL,'[\"Yana\"]'),(1629705,317834,5,'director',NULL,NULL),(1629705,57774,6,'writer','scriptwriter',NULL),(1629705,1028742,7,'producer','producer',NULL),(1629705,763269,8,'producer','producer',NULL),(1629705,324184,9,'composer',NULL,NULL),(1629757,425741,10,'producer','producer',NULL),(1629757,4103976,1,'actor',NULL,'[\"Jay Moriarity\"]'),(1629757,124930,2,'actor',NULL,'[\"Frosty Hesson\"]'),(1629757,223,3,'actress',NULL,'[\"Kristy Moriarity\"]'),(1629757,817844,4,'actress',NULL,'[\"Brenda Hesson\"]'),(1629757,776,5,'director',NULL,NULL),(1629757,436,6,'director',NULL,NULL),(1629757,758002,7,'writer','screenplay',NULL),(1629757,2249435,8,'writer','story',NULL),(1629757,393714,9,'writer','story',NULL),(1630027,62215,10,'composer',NULL,NULL),(1630027,2414404,1,'actor',NULL,'[\"Hüseyin\"]'),(1630027,1689177,2,'actor',NULL,'[\"Hüseyin (young)\"]'),(1630027,259435,3,'actress',NULL,'[\"Fatma\"]'),(1630027,3861089,4,'actress',NULL,'[\"Fatma (young)\"]'),(1630027,759777,5,'director',NULL,NULL),(1630027,759776,6,'writer','written by',NULL),(1630027,1341252,7,'producer','producer',NULL),(1630027,1280962,8,'producer','producer',NULL),(1630027,944256,9,'producer','producer',NULL),(1630029,484457,10,'producer','producer',NULL),(1630029,941777,1,'actor',NULL,'[\"Jake\"]'),(1630029,757855,2,'actress',NULL,'[\"Neytiri\"]'),(1630029,244,3,'actress',NULL,'[\"Kiri\"]'),(1630029,2332,4,'actor',NULL,'[\"Quaritch\"]'),(1630029,116,5,'director',NULL,NULL),(1630029,415425,6,'writer','screenplay by',NULL),(1630029,798646,7,'writer','screenplay by',NULL),(1630029,295264,8,'writer','story by',NULL),(1630029,4307,9,'writer','story by',NULL),(1630036,179966,10,'production_designer',NULL,NULL),(1630036,1731937,1,'actor',NULL,'[\"Adam Mitchell\"]'),(1630036,2848533,2,'actor',NULL,'[\"Nathan Hayes\"]'),(1630036,235948,3,'actor',NULL,'[\"Shane Fuller\"]'),(1630036,3153688,4,'actress',NULL,'[\"Victoria Mitchell\"]'),(1630036,1726854,5,'writer','written by',NULL),(1630036,1726667,6,'composer',NULL,NULL),(1630036,778894,7,'cinematographer','director of photography',NULL),(1630036,2838269,8,'editor',NULL,NULL),(1630036,1232772,9,'editor',NULL,NULL),(1630626,1159955,10,'production_designer',NULL,NULL),(1630626,2358356,1,'actress',NULL,'[\"Dana\"]'),(1630626,1875044,2,'actress',NULL,'[\"Pushy\"]'),(1630626,2843290,3,'actor',NULL,'[\"Tim\"]'),(1630626,1801800,4,'actress',NULL,'[\"Tara\"]'),(1630626,254291,5,'director',NULL,NULL),(1630626,566595,6,'writer','written by',NULL),(1630626,6254,7,'composer',NULL,NULL),(1630626,2195131,8,'cinematographer','director of photography',NULL),(1630626,205377,9,'editor',NULL,NULL),(1631867,1354139,10,'producer','producer',NULL),(1631867,129,1,'actor',NULL,'[\"Cage\"]'),(1631867,1289434,2,'actress',NULL,'[\"Rita\"]'),(1631867,200,3,'actor',NULL,'[\"Master Sergeant Farell\"]'),(1631867,322407,4,'actor',NULL,'[\"General Brigham\"]'),(1631867,510731,5,'director',NULL,NULL),(1631867,3160,6,'writer','screenplay by',NULL),(1631867,125336,7,'writer','screenplay by',NULL),(1631867,3890871,8,'writer','screenplay by',NULL),(1631867,3872326,9,'writer','based on the novel \"All You Need Is Kill\" by',NULL),(1632708,787265,10,'producer','producer',NULL),(1632708,5109,1,'actress',NULL,'[\"Jamie\"]'),(1632708,5493,2,'actor',NULL,'[\"Dylan\"]'),(1632708,165101,3,'actress',NULL,'[\"Lorna\"]'),(1632708,1184,4,'actress',NULL,'[\"Annie\"]'),(1632708,323239,5,'director',NULL,NULL),(1632708,2226647,6,'writer','screenplay',NULL),(1632708,2226970,7,'writer','screenplay',NULL),(1632708,679037,8,'writer','story',NULL),(1632708,323065,9,'producer','producer',NULL),(1634122,79677,10,'producer','producer',NULL),(1634122,100,1,'actor',NULL,'[\"Johnny English\"]'),(1634122,683253,2,'actress',NULL,'[\"Kate\"]'),(1634122,922035,3,'actor',NULL,'[\"Ambrose\"]'),(1634122,54087,4,'actor',NULL,'[\"Agent Two\"]'),(1634122,662529,5,'director',NULL,NULL),(1634122,566100,6,'writer','screenplay',NULL),(1634122,204030,7,'writer','story',NULL),(1634122,701031,8,'writer','characters',NULL),(1634122,905498,9,'writer','characters',NULL),(1634136,460114,10,'editor',NULL,NULL),(1634136,1519680,1,'actress',NULL,'[\"Daisy\"]'),(1634136,88127,2,'actress',NULL,'[\"Violet\"]'),(1634136,1254,3,'actor',NULL,'[\"The Guy\"]'),(1634136,1803,4,'actor',NULL,'[\"Russ\"]'),(1634136,2819316,5,'director',NULL,NULL),(1634136,6597,6,'producer','producer',NULL),(1634136,863659,7,'producer','producer',NULL),(1634136,134508,8,'composer',NULL,NULL),(1634136,2557,9,'cinematographer','director of photography',NULL),(1636826,343846,10,'editor',NULL,NULL),(1636826,3287038,1,'actor',NULL,'[\"Thomas\"]'),(1636826,3967796,2,'actor',NULL,'[\"Costa\"]'),(1636826,3967854,3,'actor',NULL,'[\"JB\"]'),(1636826,3967702,4,'actor',NULL,'[\"Dax\"]'),(1636826,1294036,5,'director',NULL,NULL),(1636826,236966,6,'writer','screenplay',NULL),(1636826,45209,7,'writer','screenplay',NULL),(1636826,680846,8,'producer','producer',NULL),(1636826,1092952,9,'cinematographer',NULL,NULL),(1637688,821205,10,'editor',NULL,NULL),(1637688,5493,1,'actor',NULL,'[\"Will Salas\"]'),(1637688,1086543,2,'actress',NULL,'[\"Sylvia Weis\"]'),(1637688,614165,3,'actor',NULL,'[\"Raymond Leon\"]'),(1637688,1312575,4,'actress',NULL,'[\"Rachel Salas\"]'),(1637688,629272,5,'director',NULL,NULL),(1637688,8953,6,'producer','producer',NULL),(1637688,628080,7,'producer','producer',NULL),(1637688,35661,8,'composer',NULL,NULL),(1637688,5683,9,'cinematographer','director of photography',NULL),(1637706,1196755,10,'producer','producer',NULL),(1637706,748620,1,'actor',NULL,'[\"Ned\"]'),(1637706,6969,2,'actress',NULL,'[\"Miranda\"]'),(1637706,221046,3,'actress',NULL,'[\"Natalie\"]'),(1637706,838267,4,'actor',NULL,'[\"Customer\"]'),(1637706,673400,5,'director',NULL,NULL),(1637706,3077617,6,'writer','story',NULL),(1637706,772005,7,'writer','story',NULL),(1637706,106835,8,'producer','producer',NULL),(1637706,764771,9,'producer','producer',NULL),(1637725,614774,10,'composer',NULL,NULL),(1637725,242,1,'actor',NULL,'[\"John Bennett\"]'),(1637725,5109,2,'actress',NULL,'[\"Lori Collins\"]'),(1637725,532235,3,'actor',NULL,'[\"Ted\"]'),(1637725,570364,4,'actor',NULL,'[\"Rex\"]'),(1637725,1273148,5,'writer','screenplay by',NULL),(1637725,1273397,6,'writer','screenplay by',NULL),(1637725,164063,7,'producer','producer',NULL),(1637725,1124997,8,'producer','producer',NULL),(1637725,835959,9,'producer','producer',NULL),(16377816,4839826,10,'cinematographer',NULL,NULL),(16377816,13199855,1,'actor',NULL,'[\"Deivinho\"]'),(16377816,2105464,2,'actor',NULL,'[\"Wellington\"]'),(16377816,13199854,3,'actor',NULL,'[\"Eunice\"]'),(16377816,13199852,4,'actor',NULL,'[\"Tercia\"]'),(16377816,5506211,5,'director',NULL,NULL),(16377816,5671538,6,'producer','producer',NULL),(16377816,5668454,7,'producer','producer',NULL),(16377816,5668997,8,'producer','producer',NULL),(16377816,12244197,9,'composer',NULL,NULL),(1638002,920958,10,'composer',NULL,NULL),(1638002,2934314,1,'actress',NULL,'[\"Rosie Dunne\"]'),(1638002,3510471,2,'actor',NULL,'[\"Alex Stewart\"]'),(1638002,177396,3,'actor',NULL,'[\"Greg\"]'),(1638002,1785575,4,'actress',NULL,'[\"Ruby\"]'),(1638002,228542,5,'director',NULL,NULL),(1638002,1130708,6,'writer','screenplay',NULL),(1638002,1754499,7,'writer','novel \"Where Rainbows End\"',NULL),(1638002,1267873,8,'producer','producer',NULL),(1638002,474709,9,'producer','producer',NULL),(1638328,2148132,10,'producer','producer',NULL),(1638328,2864046,1,'actress',NULL,'[\"Alice\",\"Antoine\'s wife\"]'),(1638328,3794614,2,'actor',NULL,'[\"Marc\",\"Anne\'s ex-husband-Antoine\'s cousin\"]'),(1638328,823536,3,'actor',NULL,'[\"Jean-Georges\"]'),(1638328,483200,4,'actor',NULL,'[\"Pierre\"]'),(1638328,67166,5,'director',NULL,NULL),(1638328,1290014,6,'writer','written by',NULL),(1638328,1295354,7,'writer','written by',NULL),(1638328,3032208,8,'writer','writing supervisor',NULL),(1638328,1643764,9,'producer','producer',NULL),(1638350,480942,1,'actress',NULL,'[\"Mamie Amandine\"]'),(1638350,728938,2,'actress',NULL,'[\"Mme Prévost dite Mémé - la mère d\'Anna\"]'),(1638350,255475,3,'actor',NULL,'[\"Jean dit Jacquot - le père d\'Albertine\"]'),(1638350,365,4,'actress',NULL,'[\"Anna - la mère d\'Albertine\"]'),(1638350,1643764,5,'producer','producer',NULL),(1638350,1188553,6,'cinematographer',NULL,NULL),(1638350,222589,7,'editor',NULL,NULL),(1638350,288552,8,'production_designer',NULL,NULL),(1638355,164626,10,'producer','producer',NULL),(1638355,147147,1,'actor',NULL,'[\"Solo\"]'),(1638355,2309517,2,'actor',NULL,'[\"Illya\"]'),(1638355,2539953,3,'actress',NULL,'[\"Gaby\"]'),(1638355,4456120,4,'actress',NULL,'[\"Victoria\"]'),(1638355,5363,5,'director',NULL,NULL),(1638355,927880,6,'writer','screenplay by',NULL),(1638355,458566,7,'writer','story by',NULL),(1638355,933276,8,'writer','story by',NULL),(1638355,738222,9,'writer','based on the television series created by',NULL),(1639084,111649,10,'composer',NULL,NULL),(1639084,680983,1,'actor',NULL,'[\"Tallulah\"]'),(1639084,5049,2,'actress',NULL,'[\"Margo\"]'),(1639084,87109,3,'actress',NULL,'[\"Carolyn\"]'),(1639084,2797756,4,'actor',NULL,'[\"Nico\"]'),(1639084,1571761,5,'director',NULL,NULL),(1639084,1060,6,'producer','producer',NULL),(1639084,4149902,7,'producer','producer',NULL),(1639084,706010,8,'producer','producer',NULL),(1639084,870694,9,'producer','producer',NULL),(1640459,3113260,10,'composer',NULL,NULL),(1640459,442,1,'actor',NULL,'[\"Hobo\"]'),(1640459,3395644,2,'actor',NULL,'[\"Bumfight Filmmaker\"]'),(1640459,1036211,3,'actor',NULL,'[\"Logan\"]'),(1640459,235978,4,'actor',NULL,'[\"Drake\"]'),(1640459,2639032,5,'director',NULL,NULL),(1640459,3111082,6,'writer','written by',NULL),(1640459,1080440,7,'producer','producer',NULL),(1640459,275651,8,'producer','producer',NULL),(1640459,802731,9,'producer','producer',NULL),(1640484,537164,10,'producer','producer',NULL),(1640484,1745736,1,'actress',NULL,'[\"Sabrina Watson\"]'),(1640484,22306,2,'actor',NULL,'[\"Jason Taylor\"]'),(1640484,291,3,'actress',NULL,'[\"Mrs. Watson\"]'),(1640484,222643,4,'actress',NULL,'[\"Mrs. Taylor\"]'),(1640484,15328,5,'director',NULL,NULL),(1640484,402804,6,'writer','screenplay',NULL),(1640484,1656428,7,'writer','screenplay',NULL),(1640484,249525,8,'producer','producer',NULL),(1640484,415890,9,'producer','producer',NULL),(1640571,3806729,10,'editor',NULL,NULL),(1640571,886749,1,'actor',NULL,'[\"Hayden Walsh\"]'),(1640571,1996362,2,'actress',NULL,'[\"Amy Maine\"]'),(1640571,1117,3,'actor',NULL,'[\"James Maine\"]'),(1640571,4786,4,'actress',NULL,'[\"Kim Patterson\"]'),(1640571,490375,5,'producer','producer',NULL),(1640571,1700105,6,'composer',NULL,NULL),(1640571,725808,7,'composer',NULL,NULL),(1640571,1635438,8,'cinematographer','director of photography',NULL),(1640571,40630,9,'editor',NULL,NULL),(1641410,870369,10,'producer','producer',NULL),(1641410,1196061,1,'actor',NULL,'[\"Filippo\"]'),(1641410,1006993,2,'actress',NULL,'[\"Giulietta\"]'),(1641410,278503,3,'actor',NULL,'[\"Nino\"]'),(1641410,193883,4,'actor',NULL,'[\"Ernesto\"]'),(1641410,187740,5,'director',NULL,NULL),(1641410,606081,6,'writer','screenplay',NULL),(1641410,157692,7,'producer','producer',NULL),(1641410,176604,8,'producer','producer',NULL),(1641410,820908,9,'producer','producer',NULL),(1641624,155136,10,'production_designer',NULL,NULL),(1641624,895759,1,'actress',NULL,'[\"France\"]'),(1641624,500976,2,'actor',NULL,'[\"Steve Delarue\"]'),(1641624,2188804,3,'actress',NULL,'[\"Josy, la soeur de France\"]'),(1641624,1285144,4,'actor',NULL,'[\"JP, le mari de Josy\"]'),(1641624,458251,5,'director',NULL,NULL),(1641624,506357,6,'producer','producer',NULL),(1641624,244445,7,'composer',NULL,NULL),(1641624,64290,8,'cinematographer',NULL,NULL),(1641624,761260,9,'editor',NULL,NULL),(16419074,732268,10,'producer','producer',NULL),(16419074,354,1,'actor',NULL,'[\"Sonny Vaccaro\"]'),(16419074,867,2,'actor',NULL,'[\"Rob Strasser\"]'),(16419074,255,3,'actor',NULL,'[\"Phil Knight\"]'),(16419074,582149,4,'actor',NULL,'[\"David Falk\"]'),(16419074,7418825,5,'writer','written by',NULL),(16419074,2001714,6,'producer','producer',NULL),(16419074,4132650,7,'producer','producer',NULL),(16419074,1911103,8,'producer','producer',NULL),(16419074,345542,9,'producer','producer',NULL),(1641975,1749552,10,'editor',NULL,NULL),(1641975,2902567,1,'actor',NULL,'[\"Tommy\"]'),(1641975,181920,2,'actor',NULL,'[\"Priest\"]'),(1641975,2148911,3,'actress',NULL,'[\"Marie\"]'),(1641975,4729344,4,'actor',NULL,'[\"Danny\"]'),(1641975,1164602,5,'director',NULL,NULL),(1641975,2095719,6,'producer','producer',NULL),(1641975,1545093,7,'producer','producer',NULL),(1641975,354453,8,'composer',NULL,NULL),(1641975,281800,9,'cinematographer',NULL,NULL),(1642252,3611484,10,'production_designer',NULL,NULL),(1642252,1855682,1,'actress',NULL,'[\"Lena Jodo\"]'),(1642252,3859856,2,'actress',NULL,'[\"Ginko\"]'),(1642252,3110959,3,'actress',NULL,'[\"Maria\"]'),(1642252,3887340,4,'actress',NULL,'[\"Nene\"]'),(1642252,620315,5,'director',NULL,NULL),(1642252,3887275,6,'writer','manga series \"Kyonyû doragon\"',NULL),(1642252,3398808,7,'producer','producer',NULL),(1642252,1421237,8,'producer','producer',NULL),(1642252,3280731,9,'cinematographer',NULL,NULL),(16428256,5476920,10,'cinematographer',NULL,NULL),(16428256,6152236,1,'actress',NULL,'[\"Suzume Iwato\"]'),(16428256,4941993,2,'actor',NULL,'[\"Souta Munakata\"]'),(16428256,297938,3,'actress',NULL,'[\"Tamaki Iwato\"]'),(16428256,2202409,4,'actor',NULL,'[\"Minoru Okabe\"]'),(16428256,1396121,5,'director',NULL,NULL),(16428256,5147232,6,'producer','producer',NULL),(16428256,2929057,7,'producer','producer',NULL),(16428256,2489588,8,'composer',NULL,NULL),(16428256,8052728,9,'composer',NULL,NULL),(1643222,2775581,10,'cinematographer',NULL,NULL),(1643222,62430,1,'actress',NULL,'[\"Französin\"]'),(1643222,129281,2,'actor',NULL,'[\"Franzose\"]'),(1643222,3582197,3,'actress',NULL,'[\"Leonie\"]'),(1643222,1955257,4,'actor',NULL,'[\"Phillip\"]'),(1643222,2959497,5,'director',NULL,NULL),(1643222,2059486,6,'writer','screenplay',NULL),(1643222,944230,7,'writer','screenplay',NULL),(1643222,910419,8,'producer','producer',NULL),(1643222,1656612,9,'composer',NULL,NULL),(1645080,1465570,10,'composer',NULL,NULL),(1645080,383603,1,'actor',NULL,'[\"George Zinavoy\"]'),(1645080,731075,2,'actress',NULL,'[\"Sally Howe\"]'),(1645080,29400,3,'actor',NULL,'[\"Dustin\"]'),(1645080,818587,4,'actress',NULL,'[\"Zoe Rubenstein\"]'),(1645080,1026883,5,'director',NULL,NULL),(1645080,3137986,6,'producer','producer',NULL),(1645080,199079,7,'producer','producer',NULL),(1645080,325181,8,'producer','producer',NULL),(1645080,3137040,9,'producer','producer',NULL),(1645155,4582,10,'composer','music composer',NULL),(1645155,1173,1,'actor',NULL,'[\"Ben Logan\"]'),(1645155,15777,2,'actor',NULL,'[\"Walter\"]'),(1645155,1882929,3,'actress',NULL,'[\"Amy Logan\"]'),(1645155,1385871,4,'actress',NULL,'[\"Anna Brandt\"]'),(1645155,836715,5,'director',NULL,NULL),(1645155,3885069,6,'writer','written by',NULL),(1645155,1493950,7,'producer','producer',NULL),(1645155,1353534,8,'producer','producer',NULL),(1645155,889066,9,'producer','producer',NULL),(1645170,748784,10,'producer','producer',NULL),(1645170,56187,1,'actor',NULL,'[\"Aladeen\",\"Efawadh\"]'),(1645170,267506,2,'actress',NULL,'[\"Zoey\"]'),(1645170,604,3,'actor',NULL,'[\"Clayton\"]'),(1645170,1426,4,'actor',NULL,'[\"Tamir\"]'),(1645170,153078,5,'director',NULL,NULL),(1645170,73688,6,'writer','written by',NULL),(1645170,541635,7,'writer','written by',NULL),(1645170,769840,8,'writer','written by',NULL),(1645170,385630,9,'producer','producer',NULL),(1646123,6133203,10,'writer','story planning',NULL),(1646123,1281653,1,'actor',NULL,'[\"Lin Quanhai the father\"]'),(1646123,1549063,2,'actress',NULL,'[\"Zhu Qing the doctor\"]'),(1646123,2290954,3,'actor',NULL,'[\"Xiao Hao the friend\"]'),(1646123,3886504,4,'actor',NULL,'[\"Lin Bo the son\"]'),(1646123,911075,5,'director',NULL,NULL),(1646123,6903135,6,'writer','story planning',NULL),(1646123,6079583,7,'writer','story planning',NULL),(1646123,3756134,8,'writer','story planning',NULL),(1646123,3035341,9,'writer','screenplay',NULL),(1646876,517872,10,'cinematographer','director of photography',NULL),(1646876,2913275,1,'actress',NULL,'[\"Abby Jensen\"]'),(1646876,1700638,2,'actor',NULL,'[\"Jay Kepler\"]'),(1646876,2470629,3,'actress',NULL,'[\"Celeste\"]'),(1646876,2735061,4,'actress',NULL,'[\"Krista Cook\"]'),(1646876,217938,5,'director',NULL,NULL),(1646876,223395,6,'writer','written by',NULL),(1646876,294195,7,'producer','executive producer',NULL),(1646876,2237557,8,'producer','producer',NULL),(1646876,417403,9,'composer',NULL,NULL),(1646959,2410070,10,'editor',NULL,NULL),(1646959,1320089,1,'actress',NULL,'[\"Kim Bok-nam\"]'),(1646959,3797610,2,'actress',NULL,'[\"Hae-won\"]'),(1646959,3839572,3,'actor',NULL,'[\"Dodger\"]'),(1646959,3868222,4,'actress',NULL,NULL),(1646959,1564550,5,'director',NULL,NULL),(1646959,4040235,6,'writer',NULL,NULL),(1646959,3888784,7,'producer','producer',NULL),(1646959,1534553,8,'composer',NULL,NULL),(1646959,2953042,9,'cinematographer',NULL,NULL),(1646971,139758,10,'editor',NULL,NULL),(1646971,59431,1,'actor',NULL,'[\"Hiccup\"]'),(1646971,949,2,'actress',NULL,'[\"Valka\"]'),(1646971,124930,3,'actor',NULL,'[\"Stoick\"]'),(1646971,272401,4,'actor',NULL,'[\"Gobber\"]'),(1646971,213450,5,'director',NULL,NULL),(1646971,2441763,6,'writer','based upon the \"How to Train Your Dragon\" book series by',NULL),(1646971,36366,7,'producer','producer',NULL),(1646971,694173,8,'composer',NULL,NULL),(1646971,956710,9,'cinematographer',NULL,NULL),(1646980,2201,10,'composer',NULL,NULL),(1646980,152,1,'actor',NULL,'[\"Paul Shepherdson\"]'),(1646980,333410,2,'actor',NULL,'[\"Ben Geary\"]'),(1646980,640,3,'actor',NULL,'[\"Highland\"]'),(1646980,1268748,4,'actor',NULL,'[\"Bozlovski\"]'),(1646980,104973,5,'director',NULL,NULL),(1646980,351929,6,'writer','written by',NULL),(1646980,2078509,7,'producer','producer',NULL),(1646980,2170,8,'producer','producer',NULL),(1646980,212997,9,'producer','producer',NULL),(1646985,1346804,10,'editor',NULL,NULL),(1646985,3889676,1,'actress',NULL,'[\"Anna Falguères\"]'),(1646985,513299,2,'actress',NULL,'[\"Jeanne Falguères\"]'),(1646985,301556,3,'actor',NULL,'[\"Jean Falguères\"]'),(1646985,8043003,4,'actress',NULL,'[\"Girl In Internship\"]'),(1646985,1580395,5,'director',NULL,NULL),(1646985,1768265,6,'writer','collaboration',NULL),(1646985,1347595,7,'producer','producer',NULL),(1646985,3855401,8,'composer',NULL,NULL),(1646985,1601634,9,'cinematographer',NULL,NULL),(1646987,412588,10,'producer','producer',NULL),(1646987,941777,1,'actor',NULL,'[\"Perseus\"]'),(1646987,553,2,'actor',NULL,'[\"Zeus\"]'),(1646987,683253,3,'actress',NULL,'[\"Andromeda\"]'),(1646987,146,4,'actor',NULL,'[\"Hades\"]'),(1646987,509448,5,'director',NULL,NULL),(1646987,2669197,6,'writer','screenplay',NULL),(1646987,424901,7,'writer','screenplay',NULL),(1646987,75528,8,'writer','story',NULL),(1646987,189117,9,'writer',NULL,NULL),(1647413,3679641,10,'production_designer',NULL,NULL),(1647413,696387,1,'actress',NULL,'[\"Claire\"]'),(1647413,924502,2,'actor',NULL,'[\"Ridley\"]'),(1647413,404427,3,'actor',NULL,'[\"Phil\"]'),(1647413,1439176,4,'actress',NULL,'[\"Lauren\"]'),(1647413,461072,5,'director',NULL,NULL),(1647413,3891095,6,'writer',NULL,NULL),(1647413,1949006,7,'producer','producer',NULL),(1647413,79982,8,'cinematographer',NULL,NULL),(1647413,1075721,9,'editor',NULL,NULL),(1647668,6246,10,'composer',NULL,NULL),(1647668,358316,1,'actor',NULL,'[\"JB\"]'),(1647668,541902,2,'actor',NULL,'[\"Aash\"]'),(1647668,273,3,'actor',NULL,'[\"Ray\"]'),(1647668,4139037,4,'actor',NULL,'[\"Rinku\"]'),(1647668,318916,5,'director',NULL,NULL),(1647668,565336,6,'writer','screenplay',NULL),(1647668,161891,7,'producer','producer',NULL),(1647668,336668,8,'producer','producer',NULL),(1647668,5387,9,'producer','producer',NULL),(1648133,879963,10,'editor',NULL,NULL),(1648133,1101677,1,'actor',NULL,'[\"Kimihiro Watanuki\"]'),(1648133,1360441,2,'actress',NULL,'[\"Yuko Ichihara\"]'),(1648133,1560345,3,'actress',NULL,'[\"Moro\"]'),(1648133,2173608,4,'actress',NULL,'[\"Maru\"]'),(1648133,1598205,5,'director',NULL,NULL),(1648133,1220477,6,'writer','characters',NULL),(1648133,959985,7,'writer','screenplay',NULL),(1648133,9091071,8,'composer',NULL,NULL),(1648133,2197595,9,'cinematographer',NULL,NULL),(1648190,165,10,'producer','producer',NULL),(1648190,252961,1,'actor',NULL,'[\"Roland\"]'),(1648190,190,2,'actor',NULL,'[\"Walter\"]'),(1648190,6999211,3,'actor',NULL,'[\"Jake\"]'),(1648190,371660,4,'actor',NULL,'[\"Steven\"]'),(1648190,1064048,5,'director',NULL,NULL),(1648190,326040,6,'writer','screenplay by',NULL),(1648190,684374,7,'writer','screenplay by',NULL),(1648190,421314,8,'writer','screenplay by',NULL),(1648190,175,9,'writer','based on \"The Dark Tower\" novels by',NULL),(1648194,3892153,1,'actress',NULL,'[\"Kris\"]'),(1648194,2599174,2,'actor',NULL,'[\"Derek\"]'),(1648194,3903830,3,'actress',NULL,'[\"Susan\"]'),(1648194,2436626,4,'actor',NULL,'[\"Steve\"]'),(1648194,3903466,5,'composer',NULL,NULL),(1648194,3903346,6,'composer',NULL,NULL),(1648194,3711855,7,'editor',NULL,NULL),(1648204,889678,10,'cinematographer',NULL,NULL),(1648204,1847099,1,'actress',NULL,'[\"Olivia\"]'),(1648204,382791,2,'actor',NULL,'[\"Wen\"]'),(1648204,3072243,3,'actress',NULL,'[\"Stella\"]'),(1648204,4305463,4,'actress',NULL,'[\"Mohini\"]'),(1648204,726638,5,'director',NULL,NULL),(1648204,86194,6,'writer','teleplay',NULL),(1648204,3904597,7,'writer','novel',NULL),(1648204,23296,8,'producer','producer',NULL),(1648204,501999,9,'composer',NULL,NULL),(16492574,14103040,10,'actress',NULL,'[\"Sarah Heathcliff\"]'),(16492574,13292055,1,'actor',NULL,'[\"Thatcher Davis\"]'),(16492574,13229749,2,'actor',NULL,'[\"Dave Lee\",\"Mark Heathcliff\",\"Alternate\"]'),(16492574,13732901,3,'actor',NULL,'[\"Jude Murray\",\"Commercial Narrator\",\"News Reporter #2\"]'),(16492574,13484283,4,'actor',NULL,'[\"Adam Murray\"]'),(16492574,5972126,5,'actor',NULL,'[\"The Intruder\",\"Gabriel\",\"MCPD Narrator\"]'),(16492574,13229751,6,'actress',NULL,'[\"Alternate\",\"Radio Host\"]'),(16492574,14103041,7,'actress',NULL,'[\"Evelin Miller\"]'),(16492574,13229750,8,'actor',NULL,'[\"Cesar Torres\",\"Alternate\"]'),(16492574,13864133,9,'actress',NULL,'[\"Ruth Weaver\",\"News Reporter #1\"]'),(1649418,5592,10,'producer','producer',NULL),(1649418,331516,1,'actor',NULL,'[\"Six\"]'),(1649418,262635,2,'actor',NULL,'[\"Lloyd Hansen\"]'),(1649418,1869101,3,'actress',NULL,'[\"Dani Miranda\"]'),(1649418,671,4,'actor',NULL,'[\"Fitzroy\"]'),(1649418,751577,5,'director',NULL,NULL),(1649418,751648,6,'director',NULL,NULL),(1649418,1321655,7,'writer','screenplay by',NULL),(1649418,1321656,8,'writer','screenplay by',NULL),(1649418,3892675,9,'writer','based on the book by',NULL),(1649419,57623,10,'producer','producer',NULL),(1649419,915208,1,'actress',NULL,'[\"Maria\"]'),(1649419,191,2,'actor',NULL,'[\"Henry\"]'),(1649419,4043618,3,'actor',NULL,'[\"Lucas\"]'),(1649419,3009594,4,'actor',NULL,'[\"Simon\"]'),(1649419,1291105,5,'director',NULL,NULL),(1649419,1037221,6,'writer','written by',NULL),(1649419,5377442,7,'writer','story',NULL),(1649419,1428086,8,'producer','producer',NULL),(1649419,1973308,9,'producer','producer',NULL),(1649444,744485,10,'cinematographer','director of photography',NULL),(1649444,1206701,1,'actress',NULL,'[\"Clara\"]'),(1649444,554614,2,'actor',NULL,'[\"Koldo\"]'),(1649444,555140,3,'actor',NULL,'[\"Rafa\"]'),(1649444,3856284,4,'actor',NULL,'[\"Adrián\"]'),(1649444,687042,5,'director',NULL,NULL),(1649444,1084937,6,'writer','screenplay',NULL),(1649444,1051468,7,'writer','story',NULL),(1649444,273327,8,'producer','executive producer',NULL),(1649444,1091125,9,'composer',NULL,NULL),(1649780,3894387,10,'producer','producer',NULL),(1649780,404,1,'actress',NULL,'[\"Grace\"]'),(1649780,1416,2,'actress',NULL,'[\"Diane Hudson\"]'),(1649780,647634,3,'actress',NULL,'[\"Zoe Hudson\"]'),(1649780,1822659,4,'actor',NULL,'[\"Jake Hudson\"]'),(1649780,915,5,'director',NULL,NULL),(1649780,3898253,6,'writer','written by',NULL),(1649780,3895605,7,'writer','written by',NULL),(1649780,122007,8,'producer','producer',NULL),(1649780,3894454,9,'producer','producer',NULL),(1650043,800922,10,'producer','producer',NULL),(1650043,2325393,1,'actor',NULL,'[\"Greg Heffley\"]'),(1650043,1256602,2,'actor',NULL,'[\"Rodrick Heffley\"]'),(1650043,2953573,3,'actor',NULL,'[\"Rowley Jefferson\"]'),(1650043,6713,4,'actress',NULL,'[\"Susan Heffley\"]'),(1650043,101047,5,'director',NULL,NULL),(1650043,7091,6,'writer','screenplay',NULL),(1650043,431817,7,'writer','screenplay',NULL),(1650043,2732149,8,'writer','book',NULL),(1650043,1749221,9,'producer','producer',NULL),(1650058,1732890,10,'composer',NULL,NULL),(1650058,678,1,'actress',NULL,'[\"Eileen Cleary\"]'),(1650058,221043,2,'actress',NULL,'[\"Shannon Cleary\"]'),(1650058,728762,3,'actor',NULL,'[\"Frank Jr.\"]'),(1650058,328,4,'actor',NULL,'[\"Monsignor Murphy\"]'),(1650058,2704557,5,'director',NULL,NULL),(1650058,325288,6,'writer','story',NULL),(1650058,3805317,7,'writer','screenplay',NULL),(1650058,239299,8,'producer','producer',NULL),(1650058,1975750,9,'producer','producer',NULL),(1650062,104783,10,'editor',NULL,NULL),(1650062,1102577,1,'actress',NULL,'[\"Alice Dainard\"]'),(1650062,1404488,2,'actress',NULL,'[\"Jen Kaznyk\"]'),(1650062,151419,3,'actor',NULL,'[\"Deputy Jackson Lamb\"]'),(1650062,1525807,4,'actor',NULL,'[\"Joe Lamb\"]'),(1650062,9190,5,'director',NULL,NULL),(1650062,1333357,6,'producer','producer',NULL),(1650062,229,7,'producer','producer',NULL),(1650062,315974,8,'composer',NULL,NULL),(1650062,284583,9,'cinematographer','director of photography',NULL),(1650407,1037242,10,'cinematographer',NULL,NULL),(1650407,4277598,1,'actress',NULL,'[\"Alma\"]'),(1650407,4277253,2,'actress',NULL,'[\"Sara\"]'),(1650407,824852,3,'actress',NULL,'[\"Alma\'s Mother\"]'),(1650407,4276775,4,'actress',NULL,'[\"Ingrid\"]'),(1650407,414728,5,'director',NULL,NULL),(1650407,2097279,6,'writer','novel',NULL),(1650407,256896,7,'producer','producer',NULL),(1650407,2046147,8,'producer','producer',NULL),(1650407,1909620,9,'composer',NULL,NULL),(1650554,93,10,'producer','producer',NULL),(1650554,1093951,1,'actor',NULL,'[\"Dave Lizewski\",\"Kick-Ass\"]'),(1650554,1631269,2,'actress',NULL,'[\"Mindy Macready\",\"Hit Girl\"]'),(1650554,2395586,3,'actor',NULL,'[\"Chris D\'Amico\",\"The Motherfucker\"]'),(1650554,120,4,'actor',NULL,'[\"Colonel Stars and Stripes\"]'),(1650554,905592,5,'director',NULL,NULL),(1650554,2092839,6,'writer','comic book',NULL),(1650554,1348210,7,'writer','comic book',NULL),(1650554,92061,8,'producer','producer',NULL),(1650554,1331055,9,'producer','producer',NULL),(1650555,749593,10,'editor',NULL,NULL),(1650555,1347093,1,'actor',NULL,'[\"Tomás Mariño\"]'),(1650555,1693112,2,'actor',NULL,'[\"Calixto\"]'),(1650555,209397,3,'actor',NULL,'[\"Mario\"]'),(1650555,729345,4,'actress',NULL,'[\"Rosa, abuela\"]'),(1650555,554890,5,'director',NULL,NULL),(1650555,162320,6,'producer','producer',NULL),(1650555,1455093,7,'producer','producer',NULL),(1650555,1712356,8,'composer',NULL,NULL),(1650555,274968,9,'cinematographer',NULL,NULL),(1653853,652823,1,'director',NULL,NULL),(1653853,294654,2,'producer','producer',NULL),(1653853,1055459,3,'composer',NULL,NULL),(1653853,1129781,4,'editor',NULL,NULL),(1653911,1430115,1,'actress',NULL,'[\"Nannerl Mozart\"]'),(1653911,53903,2,'actor',NULL,'[\"Léopold Mozart\"]'),(1653911,161046,3,'actress',NULL,'[\"Anna-Maria Mozart\"]'),(1653911,4941555,4,'actor',NULL,'[\"Wolfgang Mozart\"]'),(1653911,299677,5,'director',NULL,NULL),(1653911,131288,6,'producer','producer',NULL),(1653911,1234307,7,'composer',NULL,NULL),(1653911,1472622,8,'cinematographer',NULL,NULL),(1653911,2392742,9,'production_designer',NULL,NULL),(1654523,717029,10,'producer','producer',NULL),(1654523,460,1,'actor',NULL,'[\"Raimund Gregorius\"]'),(1654523,491259,2,'actress',NULL,'[\"Young Estefânia\"]'),(1654523,1658935,3,'actor',NULL,'[\"Amadeu\"]'),(1654523,311476,4,'actress',NULL,'[\"Mariana\"]'),(1654523,806,5,'director',NULL,NULL),(1654523,490417,6,'writer','screenplay',NULL),(1654523,380777,7,'writer','screenplay',NULL),(1654523,1453358,8,'writer','novel',NULL),(1654523,708132,9,'producer','producer',NULL),(1655389,93,10,'producer','producer',NULL),(1655389,1869101,1,'actress',NULL,'[\"Norma Jeane\"]'),(1655389,8720624,2,'actress',NULL,'[\"Young Norma Jeane\"]'),(1655389,629855,3,'actress',NULL,'[\"Gladys\"]'),(1655389,750353,4,'actor',NULL,'[\"Norma Jeane\'s Father\"]'),(1655389,231596,5,'director',NULL,NULL),(1655389,643093,6,'writer','based on the novel by',NULL),(1655389,306890,7,'producer','producer',NULL),(1655389,1250070,8,'producer','producer',NULL),(1655389,2087883,9,'producer','producer',NULL),(1655416,1120076,10,'composer',NULL,NULL),(1655416,1057,1,'actress',NULL,'[\"Shaz\"]'),(1655416,1439,2,'actor',NULL,'[\"Barry\"]'),(1655416,630,3,'actor',NULL,'[\"Trevor\"]'),(1655416,316805,4,'actress',NULL,'[\"Shirley\"]'),(1655416,389591,5,'director',NULL,NULL),(1655416,271474,6,'producer','producer',NULL),(1655416,602104,7,'producer','producer',NULL),(1655416,958384,8,'producer','producer',NULL),(1655416,958387,9,'producer','producer',NULL),(1655420,691100,10,'composer',NULL,NULL),(1655420,931329,1,'actress',NULL,'[\"Marilyn Monroe\"]'),(1655420,1519666,2,'actor',NULL,'[\"Colin Clark\"]'),(1655420,110,3,'actor',NULL,'[\"Sir Laurence Olivier\"]'),(1655420,566,4,'actress',NULL,'[\"Vivien Leigh\"]'),(1655420,193508,5,'director',NULL,NULL),(1655420,388130,6,'writer','screenplay',NULL),(1655420,1133610,7,'writer','books \"My Week with Marilyn\" and \"The Prince, the Showgirl and Me\"',NULL),(1655420,661406,8,'producer','producer',NULL),(1655420,5544,9,'producer','producer',NULL),(1655441,742347,10,'producer','producer',NULL),(1655441,515116,1,'actress',NULL,'[\"Adaline Bowman\"]'),(1655441,401264,2,'actor',NULL,'[\"Ellis Jones\"]'),(1655441,148,3,'actor',NULL,'[\"William Jones\"]'),(1655441,834,4,'actress',NULL,'[\"Kathy Jones\"]'),(1655441,1767218,5,'director',NULL,NULL),(1655441,328987,6,'writer','screenplay by',NULL),(1655441,3384330,7,'writer','screenplay by',NULL),(1655441,454004,8,'producer','producer',NULL),(1655441,524342,9,'producer','producer',NULL),(1655442,71879,10,'production_designer',NULL,NULL),(1655442,241121,1,'actor',NULL,'[\"George Valentin\"]'),(1655442,67367,2,'actress',NULL,'[\"Peppy Miller\"]'),(1655442,422,3,'actor',NULL,'[\"Al Zimmer\"]'),(1655442,342,4,'actor',NULL,'[\"Clifton\"]'),(1655442,371890,5,'director',NULL,NULL),(1655442,486627,6,'producer','producer',NULL),(1655442,99753,7,'composer',NULL,NULL),(1655442,771526,8,'cinematographer','director of photography',NULL),(1655442,2691134,9,'editor',NULL,NULL),(1655460,605758,10,'editor',NULL,NULL),(1655460,98,1,'actress',NULL,'[\"Linda Gergenblatt\"]'),(1655460,748620,2,'actor',NULL,'[\"George Gergenblatt\"]'),(1655460,15196,3,'actress',NULL,'[\"Eva\"]'),(1655460,857620,4,'actor',NULL,'[\"Seth\"]'),(1655460,906476,5,'director',NULL,NULL),(1655460,547800,6,'writer','written by',NULL),(1655460,31976,7,'producer','producer',NULL),(1655460,917208,8,'composer',NULL,NULL),(1655460,95272,9,'cinematographer','director of photography',NULL),(1656190,1754850,10,'editor',NULL,NULL),(1656190,5458,1,'actor',NULL,'[\"Luke Wright\"]'),(1656190,4313845,2,'actress',NULL,'[\"Mei\"]'),(1656190,1697,3,'actor',NULL,'[\"Mayor Tremello\"]'),(1656190,121559,4,'actor',NULL,'[\"Captain Wolf\"]'),(1656190,945026,5,'director',NULL,NULL),(1656190,4744,6,'producer','producer',NULL),(1656190,116232,7,'producer','producer',NULL),(1656190,6205,8,'composer',NULL,NULL),(1656190,194356,9,'cinematographer','director of photography',NULL),(1657299,728619,10,'producer','producer',NULL),(1657299,531808,1,'actress',NULL,'[\"Katie\"]'),(1657299,855039,2,'actor',NULL,'[\"James\"]'),(1657299,1404408,3,'actress',NULL,'[\"Lara\"]'),(1657299,1235530,4,'actor',NULL,'[\"Steve\"]'),(1657299,284308,5,'director',NULL,NULL),(1657299,1672363,6,'writer','written by',NULL),(1657299,680766,7,'writer','story',NULL),(1657299,77127,8,'producer','producer',NULL),(1657299,706002,9,'producer','producer',NULL),(1657507,1635670,10,'composer',NULL,NULL),(1657507,757855,1,'actress',NULL,'[\"Cataleya\"]'),(1657507,890232,2,'actor',NULL,'[\"Danny Delanay\"]'),(1657507,89485,3,'actor',NULL,'[\"Richard\"]'),(1657507,3244,4,'actor',NULL,'[\"Marco\"]'),(1657507,576298,5,'director',NULL,NULL),(1657507,108,6,'writer','written by',NULL),(1657507,436543,7,'writer','written by',NULL),(1657507,954437,8,'producer','producer',NULL),(1657507,1166319,9,'composer',NULL,NULL),(1657510,1075721,10,'editor',NULL,NULL),(1657510,1227814,1,'actress',NULL,'[\"Agnes \'Apple\' Bailey\"]'),(1657510,206257,2,'actress',NULL,'[\"June Bailey\"]'),(1657510,409,3,'actor',NULL,'[\"Tom Fitzpatrick\"]'),(1657510,469,4,'actor',NULL,'[\"Frank McCarthy\"]'),(1657510,470323,5,'director',NULL,NULL),(1657510,723450,6,'producer','producer',NULL),(1657510,4263872,7,'composer',NULL,NULL),(1657510,545822,8,'cinematographer','director of photography',NULL),(1657510,236549,9,'editor',NULL,NULL),(1658801,1511165,10,'producer','producer',NULL),(1658801,194,1,'actress',NULL,'[\"Laurel Hester\"]'),(1658801,680983,2,'actor',NULL,'[\"Stacie Andree\"]'),(1658801,136797,3,'actor',NULL,'[\"Steven Goldstein\"]'),(1658801,788335,4,'actor',NULL,'[\"Dane Wells\"]'),(1658801,813164,5,'director',NULL,NULL),(1658801,638913,6,'writer','screenplay by',NULL),(1658801,1377744,7,'producer','producer',NULL),(1658801,326252,8,'producer','producer',NULL),(1658801,402599,9,'producer','producer',NULL),(1658837,1267888,10,'composer',NULL,NULL),(1658837,4754,1,'actress',NULL,'[\"Julia Denning\"]'),(1658837,272706,2,'actress',NULL,'[\"Jenny\"]'),(1658837,205657,3,'actor',NULL,'[\"Sheriff Chestnut\"]'),(1658837,565569,4,'actor',NULL,'[\"Lieutenant Dodd\"]'),(1658837,1052791,5,'director',NULL,NULL),(1658837,223041,6,'producer','producer',NULL),(1658837,6400,7,'producer','producer',NULL),(1658837,1052811,8,'producer','producer',NULL),(1658837,1360311,9,'producer','producer',NULL),(1659337,242491,10,'cinematographer','director of photography',NULL),(1659337,503567,1,'actor',NULL,'[\"Charlie\"]'),(1659337,914612,2,'actress',NULL,'[\"Sam\"]'),(1659337,3009232,3,'actor',NULL,'[\"Patrick\"]'),(1659337,748620,4,'actor',NULL,'[\"Mr. Anderson\"]'),(1659337,154716,5,'director',NULL,NULL),(1659337,355147,6,'producer','producer',NULL),(1659337,518,7,'producer','producer',NULL),(1659337,809833,8,'producer','producer',NULL),(1659337,111649,9,'composer',NULL,NULL),(1659338,502794,10,'composer',NULL,NULL),(1659338,131,1,'actor',NULL,'[\"Emerson Kent\"]'),(1659338,15196,2,'actress',NULL,'[\"Katherine\"]'),(1659338,192377,3,'actor',NULL,'[\"Grey\"]'),(1659338,104114,4,'actor',NULL,'[\"Max\"]'),(1659338,54504,5,'director',NULL,NULL),(1659338,2400444,6,'writer','screenplay by',NULL),(1659338,1227576,7,'producer','producer',NULL),(1659338,299120,8,'producer','producer',NULL),(1659338,859302,9,'producer','producer',NULL),(1660379,527852,1,'actress',NULL,'[\"Marie-France\"]'),(1660379,2082567,2,'actress',NULL,'[\"Samira\"]'),(1660379,2072818,3,'actress',NULL,'[\"Clotilde\"]'),(1660379,872910,4,'actress',NULL,'[\"Julie\"]'),(1660379,94274,5,'director',NULL,NULL),(1660379,2196016,6,'producer','producer',NULL),(1660379,221169,7,'cinematographer',NULL,NULL),(1660379,745512,8,'editor',NULL,NULL),(1660379,346534,9,'production_designer',NULL,NULL),(1661199,1903054,10,'producer','producer',NULL),(1661199,4141252,1,'actress',NULL,'[\"Cinderella\"]'),(1661199,949,2,'actress',NULL,'[\"Stepmother\"]'),(1661199,534635,3,'actor',NULL,'[\"Prince\"]'),(1661199,307,4,'actress',NULL,'[\"Fairy Godmother\"]'),(1661199,110,5,'director',NULL,NULL),(1661199,919363,6,'writer','screenplay by',NULL),(1661199,674518,7,'writer','based on the fairy tale written by',NULL),(1661199,57655,8,'producer','producer',NULL),(1661199,1334526,9,'producer','producer',NULL),(1661275,692656,10,'producer','producer',NULL),(1661275,2605345,1,'actress',NULL,'[\"Catrin Cole\"]'),(1661275,3510471,2,'actor',NULL,'[\"Tom Buckley\"]'),(1661275,631490,3,'actor',NULL,'[\"Ambrose Hilliard\",\"Uncle Frank\"]'),(1661275,1290,4,'actor',NULL,'[\"Roger Swain\"]'),(1661275,771054,5,'director',NULL,NULL),(1661275,262986,6,'writer','based on the novel \"Their Finest Hour and a Half\" by',NULL),(1661275,960711,7,'writer','screenplay by',NULL),(1661275,245493,8,'producer','producer',NULL),(1661275,439563,9,'producer','producer',NULL),(1661420,214088,10,'editor',NULL,NULL),(1661420,895759,1,'actress',NULL,'[\"Nadine\"]'),(1661420,823536,2,'actor',NULL,'[\"Fred\"]'),(1661420,283997,3,'actress',NULL,'[\"Iris\"]'),(1661420,245164,4,'actor',NULL,'[\"Mathieu\"]'),(1661420,494069,5,'director',NULL,NULL),(1661420,73384,6,'writer','screenplay',NULL),(1661420,40927,7,'producer','producer',NULL),(1661420,6339,8,'composer',NULL,NULL),(1661420,44545,9,'cinematographer',NULL,NULL),(1661820,5453257,10,'producer','producer',NULL),(1661820,836121,1,'actor',NULL,'[\"Derby Milton\"]'),(1661820,1136,2,'actor',NULL,'[\"Georgie Wits\"]'),(1661820,518,3,'actor',NULL,'[\"Sheriff Vogel\"]'),(1661820,730391,4,'actress',NULL,'[\"Mrs. Margaret\"]'),(1661820,787687,5,'director',NULL,NULL),(1661820,3069399,6,'writer','written by',NULL),(1661820,1370108,7,'producer','producer',NULL),(1661820,2950264,8,'producer','producer',NULL),(1661820,4808284,9,'producer','producer',NULL),(1663202,661289,10,'producer','producer',NULL),(1663202,138,1,'actor',NULL,'[\"Hugh Glass\"]'),(1663202,362766,2,'actor',NULL,'[\"John Fitzgerald\"]'),(1663202,2401020,3,'actor',NULL,'[\"Bridger\"]'),(1663202,1727304,4,'actor',NULL,'[\"Captain Andrew Henry\"]'),(1663202,327944,5,'director',NULL,NULL),(1663202,1872664,6,'writer','screenplay',NULL),(1663202,3488559,7,'writer','based in part on the novel by',NULL),(1663202,326512,8,'producer','producer',NULL),(1663202,586969,9,'producer','producer',NULL),(1663655,324041,10,'producer','producer',NULL),(1663655,69079,1,'actress',NULL,'[\"Lucie\"]'),(1663655,3950210,2,'actress',NULL,'[\"Anna\"]'),(1663655,123632,3,'actress',NULL,'[\"Eleanor\"]'),(1663655,2965079,4,'actress',NULL,'[\"Sam\"]'),(1663655,324521,5,'director',NULL,NULL),(1663655,1603397,6,'director',NULL,NULL),(1663655,1052791,7,'writer','characters',NULL),(1663655,1872664,8,'writer','screenplay',NULL),(1663655,89658,9,'producer','producer',NULL),(1663662,1014697,10,'composer',NULL,NULL),(1663662,252961,1,'actor',NULL,'[\"Stacker Pentecost\"]'),(1663662,402271,2,'actor',NULL,'[\"Raleigh Becket\"]'),(1663662,452860,3,'actress',NULL,'[\"Mako Mori\"]'),(1663662,206359,4,'actor',NULL,'[\"Dr. Newton Geiszler\"]'),(1663662,868219,5,'director',NULL,NULL),(1663662,2012438,6,'writer','screenplay',NULL),(1663662,419169,7,'producer','producer',NULL),(1663662,661289,8,'producer','producer',NULL),(1663662,2100078,9,'producer','producer',NULL),(1665418,128709,10,'editor',NULL,NULL),(1665418,749081,1,'actress',NULL,'[\"Deb Dorfman\"]'),(1665418,1285,2,'actor',NULL,'[\"Burt Dorfman\"]'),(1665418,382819,3,'actress',NULL,'[\"Rose\"]'),(1665418,934113,4,'actor',NULL,'[\"Winston Cooke Sr.\"]'),(1665418,1956394,5,'director',NULL,NULL),(1665418,468080,6,'writer',NULL,NULL),(1665418,384472,7,'producer','producer',NULL),(1665418,4499,8,'composer',NULL,NULL),(1665418,1121126,9,'cinematographer',NULL,NULL),(1666185,1084360,10,'producer','producer',NULL),(1666185,7447307,1,'actor',NULL,'[\"Tupac\"]'),(1666185,1775091,2,'actress',NULL,'[\"Afeni Shakur\"]'),(1666185,334159,3,'actress',NULL,'[\"Jada Pinkett\"]'),(1666185,2679753,4,'actress',NULL,'[\"Kidada Jones\"]'),(1666185,1534600,5,'director',NULL,NULL),(1666185,353183,6,'writer','written by',NULL),(1666185,327659,7,'writer','written by',NULL),(1666185,1691003,8,'writer','written by',NULL),(1666185,4314223,9,'producer','producer',NULL),(1666300,191178,10,'cinematographer',NULL,NULL),(1666300,3931354,1,'actor',NULL,'[\"Laura\"]'),(1666300,3935609,2,'actor',NULL,'[\"Mirlo\"]'),(1666300,3651147,3,'actor',NULL,'[\"Buho\"]'),(1666300,3935350,4,'actor',NULL,'[\"Aguila\"]'),(1666300,305563,5,'director',NULL,NULL),(1666300,305564,6,'director',NULL,NULL),(1666300,3934672,7,'writer',NULL,NULL),(1666300,145207,8,'producer','producer',NULL),(1666300,1759696,9,'producer','producer',NULL),(1666642,199131,10,'producer','producer',NULL),(1666642,712368,1,'actress',NULL,'[\"Abigail Scanlon\"]'),(1666642,305272,2,'actress',NULL,'[\"Parker Wald\"]'),(1666642,110803,3,'actress',NULL,'[\"Olivia McNabb\"]'),(1666642,1134641,4,'actor',NULL,'[\"Henry Kent\"]'),(1666642,371348,5,'director',NULL,NULL),(1666642,447583,6,'writer','written by',NULL),(1666642,949319,7,'writer','written by',NULL),(1666642,680805,8,'writer','written by',NULL),(1666642,24169,9,'writer','written by',NULL),(1666801,899193,10,'producer','producer',NULL),(1666801,926165,1,'actress',NULL,'[\"Bianca Piper\"]'),(1666801,2254074,2,'actress',NULL,'[\"Madison Morgan\"]'),(1666801,2064412,3,'actor',NULL,'[\"Wesley Rush\"]'),(1666801,5049,4,'actress',NULL,'[\"Dottie\"]'),(1666801,1847738,5,'director',NULL,NULL),(1666801,1038800,6,'writer','screenplay',NULL),(1666801,3929735,7,'writer','novel',NULL),(1666801,142134,8,'producer','producer',NULL),(1666801,629334,9,'producer','producer',NULL),(1667079,14136189,1,'actress',NULL,'[\"Patient\"]'),(1667079,3931146,2,'self',NULL,'[\"Self\"]'),(1667079,693014,3,'self',NULL,'[\"Self\"]'),(1667307,1397781,10,'cinematographer',NULL,NULL),(1667307,1950086,1,'actress',NULL,'[\"Violet\"]'),(1667307,111013,2,'actor',NULL,'[\"Fred Packenstacker\",\"Charlie Walker\"]'),(1667307,3006818,3,'actress',NULL,'[\"Lily\"]'),(1667307,248461,4,'actress',NULL,'[\"Rose\"]'),(1667307,1775,5,'director',NULL,NULL),(1667307,323065,6,'producer','producer',NULL),(1667307,787265,7,'producer','producer',NULL),(1667307,772245,8,'composer',NULL,NULL),(1667307,839438,9,'composer',NULL,NULL),(1667353,1448916,10,'producer','producer',NULL),(1667353,2934314,1,'actress',NULL,'[\"Snow White\"]'),(1667353,210,2,'actress',NULL,'[\"The Queen\"]'),(1667353,2309517,3,'actor',NULL,'[\"Prince Alcott\"]'),(1667353,1447,4,'actor',NULL,'[\"Brighton\"]'),(1667353,802248,5,'director',NULL,NULL),(1667353,458884,6,'writer','screenplay',NULL),(1667353,445669,7,'writer','screenplay',NULL),(1667353,2214893,8,'writer','screen story',NULL),(1667353,325927,9,'producer','producer',NULL),(1667355,609265,10,'producer','producer',NULL),(1667355,2063982,1,'actress',NULL,'[\"Natascha Kampusch\"]'),(1667355,511892,2,'actor',NULL,'[\"Wolfgang Priklopil\"]'),(1667355,5011427,3,'actress',NULL,'[\"Young Natascha\"]'),(1667355,245988,4,'actress',NULL,'[\"Natascha\'s Mother\"]'),(1667355,394776,5,'director',NULL,NULL),(1667355,858399,6,'writer','screenplay',NULL),(1667355,251536,7,'writer','unfinished screenplay',NULL),(1667355,2383312,8,'writer','autobiography',NULL),(1667355,716973,9,'writer','contributing writer',NULL),(1667691,1889853,10,'production_designer',NULL,NULL),(1667691,2658780,1,'actor',NULL,'[\"Sasa\"]'),(1667691,84759,2,'actor',NULL,'[\"Vlado\"]'),(1667691,1164922,3,'actor',NULL,'[\"Pero\"]'),(1667691,1269867,4,'actress',NULL,'[\"Stanka Petrovic\"]'),(1667691,1516751,5,'director',NULL,NULL),(1667691,1988886,6,'producer','producer',NULL),(1667691,1894190,7,'composer',NULL,NULL),(1667691,1839316,8,'cinematographer',NULL,NULL),(1667691,4286702,9,'editor',NULL,NULL),(1667889,232561,10,'producer','producer',NULL),(1667889,5380,1,'actor',NULL,'[\"Manny\"]'),(1667889,1459,2,'actor',NULL,'[\"Diego\"]'),(1667889,491,3,'actor',NULL,'[\"Sid\"]'),(1667889,2106637,4,'actor',NULL,'[\"Squint\"]'),(1667889,553942,5,'director',NULL,NULL),(1667889,862211,6,'director',NULL,NULL),(1667889,73850,7,'writer','screenplay by',NULL),(1667889,297229,8,'writer','screenplay by',NULL),(1667889,1000858,9,'writer','story by',NULL),(1667905,70159,1,'self',NULL,'[\"Self\"]'),(1667905,7720241,2,'self',NULL,'[\"Self - pet lizard\"]'),(1667905,7720242,3,'self',NULL,'[\"Self\"]'),(1667905,592554,4,'self',NULL,'[\"Self\"]'),(1667905,7455013,5,'producer','producer',NULL),(1668200,725691,10,'cinematographer','director of photography',NULL),(1668200,218,1,'actress',NULL,'[\"Julia Jarmond\"]'),(1668200,3274621,2,'actress',NULL,'[\"Sarah\"]'),(1668200,34390,3,'actor',NULL,'[\"Jules Dufaure\"]'),(1668200,682692,4,'actor',NULL,'[\"Bertrand Tezac\"]'),(1668200,660707,5,'director',NULL,NULL),(1668200,4058200,6,'writer','novel',NULL),(1668200,1930728,7,'writer','screenplay',NULL),(1668200,551279,8,'producer','producer',NULL),(1668200,2068037,9,'composer',NULL,NULL),(1669706,2846804,1,'actress',NULL,'[\"Runa\"]'),(1669706,3937438,2,'actor',NULL,'[\"Beggar\"]'),(1669706,3941792,3,'actress',NULL,'[\"Linda\"]'),(1669706,2362652,4,'actor',NULL,'[\"Lasse\"]'),(1669706,3941547,5,'writer','story',NULL),(1669706,3937114,6,'composer',NULL,NULL),(1669706,3941862,7,'editor',NULL,NULL),(1669794,430773,10,'production_designer',NULL,NULL),(1669794,1051247,1,'actress',NULL,'[\"Christina\"]'),(1669794,898798,2,'actor',NULL,'[\"Pascal\"]'),(1669794,2317224,3,'actor',NULL,'[\"Marco\"]'),(1669794,1364145,4,'actor',NULL,'[\"Tony\"]'),(1669794,2458644,5,'director',NULL,NULL),(1669794,216651,6,'producer','producer',NULL),(1669794,1158288,7,'cinematographer',NULL,NULL),(1669794,582094,8,'editor',NULL,NULL),(1669794,743974,9,'editor',NULL,NULL),(1670345,476064,10,'producer','producer',NULL),(1670345,251986,1,'actor',NULL,'[\"J. Daniel Atlas\"]'),(1670345,996669,2,'actor',NULL,'[\"Evans\"]'),(1670345,749263,3,'actor',NULL,'[\"Dylan Rhodes\"]'),(1670345,437,4,'actor',NULL,'[\"Merritt McKinney\"]'),(1670345,504642,5,'director',NULL,NULL),(1670345,4412,6,'writer','screenplay',NULL),(1670345,945026,7,'writer','screenplay',NULL),(1670345,3242689,8,'writer','screenplay',NULL),(1670345,169256,9,'producer','producer',NULL),(1671457,64651,10,'production_designer',NULL,NULL),(1671457,2794406,1,'actor',NULL,'[\"Benoit\"]'),(1671457,539981,2,'actress',NULL,'[\"Maryse\"]'),(1671457,197275,3,'actor',NULL,'[\"André\"]'),(1671457,545166,4,'actor',NULL,'[\"Alain\"]'),(1671457,480894,5,'director',NULL,NULL),(1671457,246404,6,'producer','producer',NULL),(1671457,566919,7,'producer','producer',NULL),(1671457,592734,8,'cinematographer',NULL,NULL),(1671457,495790,9,'editor',NULL,NULL),(1671616,3129085,10,'producer','executive producer',NULL),(1671616,869088,1,'actor',NULL,'[\"Edu\"]'),(1671616,1853380,2,'actor',NULL,'[\"Tuto\"]'),(1671616,1616623,3,'actor',NULL,'[\"Fran\"]'),(1671616,1987150,4,'actress',NULL,'[\"Sol\"]'),(1671616,170030,5,'director',NULL,NULL),(1671616,1943306,6,'writer','written by',NULL),(1671616,2779222,7,'writer','written by',NULL),(1671616,1366612,8,'producer','producer',NULL),(1671616,1766942,9,'producer','producer',NULL),(1672718,698645,1,'director',NULL,NULL),(1672723,4851883,10,'writer','graphic novel',NULL),(1672723,186505,1,'actor',NULL,'[\"Jim Gordon\"]'),(1672723,1360270,2,'actor',NULL,'[\"Bruce Wayne\",\"Batman\"]'),(1672723,244630,3,'actress',NULL,'[\"Selina\"]'),(1672723,689237,4,'actor',NULL,'[\"Commissioner Loeb\"]'),(1672723,515005,5,'director',NULL,NULL),(1672723,2304017,6,'director',NULL,NULL),(1672723,4170,7,'writer','Batman created by',NULL),(1672723,614742,8,'writer','written by',NULL),(1672723,588340,9,'writer','graphic novel',NULL),(1672845,1075638,10,'editor',NULL,NULL),(1672845,2008435,1,'actor',NULL,'[\"Adam\"]'),(1672845,1164730,2,'actress',NULL,'[\"Morello\"]'),(1672845,5039410,3,'actress',NULL,'[\"Lucie\"]'),(1672845,2719406,4,'actor',NULL,'[\"Tyko\"]'),(1672845,533284,5,'director',NULL,NULL),(1672845,3954987,6,'writer','screenplay',NULL),(1672845,77365,7,'producer','producer',NULL),(1672845,4594066,8,'composer',NULL,NULL),(1672845,638365,9,'cinematographer',NULL,NULL),(1673423,1393297,10,'composer',NULL,NULL),(1673423,1342743,1,'actor',NULL,'[\"Ethan Morgan\"]'),(1673423,605081,2,'actress',NULL,'[\"Sarah\"]'),(1673423,3620184,3,'actor',NULL,'[\"Benny\"]'),(1673423,2789757,4,'actor',NULL,'[\"Rory\"]'),(1673423,567680,5,'director',NULL,NULL),(1673423,569299,6,'writer','story by',NULL),(1673423,675708,7,'writer','story by',NULL),(1673423,122899,8,'writer','story by',NULL),(1673423,410237,9,'producer','executive producer',NULL),(1673430,456158,10,'writer','characters created by: Darkseid & The New Gods',NULL),(1673430,105672,1,'actor',NULL,'[\"Darkseid\"]'),(1673430,175834,2,'actor',NULL,'[\"Batman\"]'),(1673430,4857,3,'actor',NULL,'[\"Superman\"]'),(1673430,252006,4,'actress',NULL,'[\"Wonder Woman\"]'),(1673430,2304017,5,'director',NULL,NULL),(1673430,4170,6,'writer','character created by: Batman',NULL),(1673430,796950,7,'writer','character created by: Superman',NULL),(1673430,795975,8,'writer','character created by: Superman',NULL),(1673430,551376,9,'writer','character created by: Wonder Woman',NULL),(1673434,1980,10,'composer',NULL,NULL),(1673434,829576,1,'actress',NULL,'[\"Bella Swan\"]'),(1673434,1500155,2,'actor',NULL,'[\"Edward Cullen\"]'),(1673434,1210124,3,'actor',NULL,'[\"Jacob Black\"]'),(1673434,4906,4,'actor',NULL,'[\"Dr. Carlisle Cullen\"]'),(1673434,174374,5,'director',NULL,NULL),(1673434,2769412,6,'writer','based on the novel \"Breaking Dawn\" by',NULL),(1673434,742279,7,'writer','screenplay by',NULL),(1673434,324041,8,'producer','producer',NULL),(1673434,1651942,9,'producer','producer',NULL),(1673697,804918,10,'composer',NULL,NULL),(1673697,1483369,1,'actor',NULL,'[\"Dave Lovelace\"]'),(1673697,537648,2,'actress',NULL,'[\"Gail\"]'),(1673697,2371735,3,'actress',NULL,'[\"Julie\"]'),(1673697,3996908,4,'actress',NULL,'[\"Kay\"]'),(1673697,992370,5,'director',NULL,NULL),(1673697,860375,6,'writer','written by',NULL),(1673697,109092,7,'writer','written by',NULL),(1673697,88414,8,'producer','producer',NULL),(1673697,238879,9,'producer','producer',NULL),(1673702,86924,1,'actress',NULL,'[\"Jeanne\"]'),(1673702,480942,2,'actress',NULL,'[\"Claudine\"]'),(1673702,758912,3,'actor',NULL,'[\"Nico\"]'),(1673702,71114,4,'actor',NULL,'[\"Victor Costa\"]'),(1673702,271246,5,'director',NULL,NULL),(1673702,300944,6,'director',NULL,NULL),(1673702,320868,7,'writer','dialogue',NULL),(1673702,78813,8,'composer',NULL,NULL),(1673702,1051488,9,'editor',NULL,NULL),(1674047,4903826,10,'actress',NULL,'[\"Jessica\"]'),(1674047,3180472,1,'actor',NULL,'[\"Rod\"]'),(1674047,3179972,2,'actress',NULL,'[\"Nathalie\"]'),(1674047,4946619,3,'actor',NULL,'[\"Bill\"]'),(1674047,4925682,4,'actress',NULL,'[\"Gloria\"]'),(1674047,1343100,5,'director',NULL,NULL),(1674047,343390,6,'producer','producer',NULL),(1674047,4411377,7,'cinematographer',NULL,NULL),(1674047,4946793,8,'actor',NULL,'[\"Will\"]'),(1674047,3894605,9,'actor',NULL,'[\"Dustin\"]'),(1674057,171493,10,'cinematographer',NULL,NULL),(1674057,66159,1,'actor',NULL,'[\"Jean Colin\"]'),(1674057,117709,2,'actor',NULL,'[\"Dirk\"]'),(1674057,1036,3,'actress',NULL,'[\"Annie Colin\"]'),(1674057,404,4,'actress',NULL,'[\"Jeanne\"]'),(1674057,1416796,5,'director',NULL,NULL),(1674057,1564759,6,'producer','producer',NULL),(1674057,2930317,7,'producer','producer',NULL),(1674057,3011601,8,'producer','producer',NULL),(1674057,2588785,9,'composer',NULL,NULL),(1674692,850561,10,'editor',NULL,NULL),(1674692,1583978,1,'actress',NULL,'[\"Aretha\"]'),(1674692,77715,2,'actress',NULL,'[\"Therese Tremblay\"]'),(1674692,98901,3,'actor',NULL,'[\"Euclide Tremblay \'Papa\'\"]'),(1674692,4893058,4,'actress',NULL,'[\"Bebette Tremblay, Strip Barmaid\"]'),(1674692,862935,5,'director',NULL,NULL),(1674692,507334,6,'writer','written by',NULL),(1674692,94663,7,'producer','producer',NULL),(1674692,2899434,8,'composer',NULL,NULL),(1674692,596588,9,'cinematographer',NULL,NULL),(1674771,343846,10,'editor',NULL,NULL),(1674771,4978,1,'actor',NULL,'[\"Vince\"]'),(1674771,175305,2,'actor',NULL,'[\"Eric\"]'),(1674771,1483196,3,'actor',NULL,'[\"Turtle\"]'),(1674771,1143,4,'actor',NULL,'[\"Johnny Drama\"]'),(1674771,254120,5,'director',NULL,NULL),(1674771,731146,6,'writer','story',NULL),(1674771,506100,7,'producer','producer',NULL),(1674771,242,8,'producer','producer',NULL),(1674771,276405,9,'cinematographer','director of photography',NULL),(1674773,5667,10,'cinematographer','director of photography',NULL),(1674773,837784,1,'actress',NULL,'[\"Hannah Arendt\"]'),(1674773,586923,2,'actor',NULL,'[\"Heinrich Blücher\"]'),(1674773,5216,3,'actress',NULL,'[\"Mary McCarthy\"]'),(1674773,421799,4,'actress',NULL,'[\"Lotte Köhler\"]'),(1674773,903137,5,'director',NULL,NULL),(1674773,441815,6,'writer','screenplay by',NULL),(1674773,111236,7,'producer','producer',NULL),(1674773,714909,8,'producer','producer',NULL),(1674773,580705,9,'composer',NULL,NULL),(1675192,3664579,10,'editor',NULL,NULL),(1675192,788335,1,'actor',NULL,'[\"Curtis\"]'),(1675192,1567113,2,'actress',NULL,'[\"Samantha\"]'),(1675192,924154,3,'actor',NULL,'[\"Dewart\"]'),(1675192,3964962,4,'actress',NULL,'[\"Hannah LaForche\"]'),(1675192,2158772,5,'director',NULL,NULL),(1675192,1021351,6,'producer','producer',NULL),(1675192,510956,7,'producer','producer',NULL),(1675192,935060,8,'composer',NULL,NULL),(1675192,1309148,9,'cinematographer','director of photography',NULL),(1675434,1133525,10,'producer','producer',NULL),(1675434,167388,1,'actor',NULL,'[\"Philippe\"]'),(1675434,1082477,2,'actor',NULL,'[\"Driss\"]'),(1675434,494504,3,'actress',NULL,'[\"Yvonne\"]'),(1675434,1109153,4,'actress',NULL,'[\"Magalie\"]'),(1675434,619923,5,'director',NULL,NULL),(1675434,865918,6,'director',NULL,NULL),(1675434,4778840,7,'writer','adapted from his autobiographical tale Le Second Souffle',NULL),(1675434,1457753,8,'producer','producer',NULL),(1675434,1552771,9,'producer','producer',NULL),(1675439,782431,10,'composer',NULL,NULL),(1675439,692634,1,'actor',NULL,'[\"Andy\"]'),(1675439,1034266,2,'actor',NULL,'[\"Derek\"]'),(1675439,930570,3,'actor',NULL,'[\"Lloyd\"]'),(1675439,1851574,4,'actor',NULL,'[\"Patrick\"]'),(1675439,3401036,5,'director',NULL,NULL),(1675439,3959774,6,'writer','written by',NULL),(1675439,2082436,7,'producer','producer',NULL),(1675439,403926,8,'producer','producer',NULL),(1675439,682327,9,'composer',NULL,NULL),(1677720,1069736,10,'producer','producer',NULL),(1677720,4446467,1,'actor',NULL,'[\"Parzival\",\"Wade\"]'),(1677720,4972453,2,'actress',NULL,'[\"Art3mis\",\"Samantha\"]'),(1677720,578853,3,'actor',NULL,'[\"Sorrento\"]'),(1677720,2913119,4,'actress',NULL,'[\"Aech\",\"Helen\"]'),(1677720,229,5,'director',NULL,NULL),(1677720,672015,6,'writer','screenplay by',NULL),(1677720,2094392,7,'writer','screenplay by',NULL),(1677720,209773,8,'producer','producer',NULL),(1677720,2252124,9,'producer','producer',NULL),(1679235,1650558,10,'composer',NULL,NULL),(1679235,2449480,1,'actress',NULL,'[\"Johanna \'Jo\' Mitchell\"]'),(1679235,483540,2,'actor',NULL,'[\"Sidney Hanover\"]'),(1679235,798,3,'actor',NULL,'[\"Rod Mitchell\"]'),(1679235,4235455,4,'actor',NULL,'[\"Mr. Winkle\"]'),(1679235,563039,5,'director',NULL,NULL),(1679235,748429,6,'writer','written by',NULL),(1679235,504327,7,'writer','written by',NULL),(1679235,2284377,8,'writer','written by',NULL),(1679235,1577281,9,'writer','based on the book: \"Queen Bees and Wannabes\" by',NULL),(1679276,1345733,10,'producer','producer',NULL),(1679276,6532163,1,'actor',NULL,'[\"Rico Doretti\"]'),(1679276,4727722,2,'actor',NULL,'[\"Oskar\"]'),(1679276,378932,3,'actress',NULL,'[\"Tanja Doretti\"]'),(1679276,695127,4,'actor',NULL,'[\"Marrak\"]'),(1679276,1541888,5,'director',NULL,NULL),(1679276,496046,6,'writer','screenplay',NULL),(1679276,2256841,7,'writer','screenplay',NULL),(1679276,3960548,8,'writer','screenplay',NULL),(1679276,826091,9,'writer','novel: \'Rico, Oskar und die Tieferschatten\'',NULL),(1679335,8540931,10,'writer','based on the Good Luck Trolls created by',NULL),(1679335,447695,1,'actress',NULL,'[\"Poppy\"]'),(1679335,5493,2,'actor',NULL,'[\"Branch\"]'),(1679335,221046,3,'actress',NULL,'[\"Bridget\"]'),(1679335,2395586,4,'actor',NULL,'[\"King Gristle\"]'),(1679335,593610,5,'director',NULL,NULL),(1679335,230666,6,'director','co-director',NULL),(1679335,8743,7,'writer','screenplay by',NULL),(1679335,74184,8,'writer','screenplay by',NULL),(1679335,1106214,9,'writer','story by',NULL),(1680051,1762507,1,'actress',NULL,'[\"Alyce\"]'),(1680051,1299293,2,'actress',NULL,'[\"Carroll\"]'),(1680051,1166,3,'actor',NULL,'[\"Vince\"]'),(1680051,745852,4,'actor',NULL,'[\"Rex\"]'),(1680051,999415,5,'director',NULL,NULL),(1680051,1815953,6,'producer','producer',NULL),(1680051,588824,7,'producer','producer',NULL),(1680051,924385,8,'composer',NULL,NULL),(1680051,1413205,9,'production_designer',NULL,NULL),(1682180,543739,10,'composer',NULL,NULL),(1682180,1985859,1,'actress',NULL,'[\"India Stoker\"]'),(1682180,173,2,'actress',NULL,'[\"Evelyn Stoker\"]'),(1682180,328828,3,'actor',NULL,'[\"Charles Stoker\"]'),(1682180,551,4,'actor',NULL,'[\"Richard Stoker\"]'),(1682180,661791,5,'director',NULL,NULL),(1682180,589505,6,'writer','written by',NULL),(1682180,1545611,7,'producer','producer',NULL),(1682180,631,8,'producer','producer',NULL),(1682180,1716,9,'producer','producer',NULL),(1682246,111372,10,'editor',NULL,NULL),(1682246,4743,1,'actor',NULL,'[\"Emmit\"]'),(1682246,75359,2,'actor',NULL,'[\"Moe\"]'),(1682246,88127,3,'actress',NULL,'[\"Kim\"]'),(1682246,4825,4,'actress',NULL,'[\"Teresa\"]'),(1682246,349406,5,'director',NULL,NULL),(1682246,82893,6,'producer','producer',NULL),(1682246,1852259,7,'producer','producer',NULL),(1682246,1160039,8,'composer',NULL,NULL),(1682246,1237698,9,'cinematographer',NULL,NULL),(1683526,788513,10,'producer','producer',NULL),(1683526,4778,1,'actor',NULL,'[\"Henry Barthes\"]'),(1683526,376716,2,'actress',NULL,'[\"Ms. Sarah Madison\"]'),(1683526,1315,3,'actress',NULL,'[\"Principal Carol Dearden\"]'),(1683526,5154,4,'actress',NULL,'[\"Dr. Doris Parker\"]'),(1683526,443411,5,'director',NULL,NULL),(1683526,1656308,6,'writer','written by',NULL),(1683526,1292502,7,'producer','producer',NULL),(1683526,2803928,8,'producer','producer',NULL),(1683526,2830113,9,'producer','producer',NULL),(1683921,2855886,10,'producer','producer',NULL),(1683921,803037,1,'actor',NULL,'[\"Vincent\"]'),(1683921,722657,2,'actor',NULL,'[\"José Marciano\"]'),(1683921,92362,3,'actor',NULL,'[\"Lacombe\"]'),(1683921,823536,4,'actor',NULL,'[\"Feydek\"]'),(1683921,418621,5,'director',NULL,NULL),(1683921,754256,6,'writer','scenario',NULL),(1683921,235502,7,'writer','adaptation and dialogue',NULL),(1683921,1175084,8,'producer','producer',NULL),(1683921,155863,9,'producer','producer',NULL),(1684226,595227,10,'cinematographer','director of photography',NULL),(1684226,749263,1,'actor',NULL,'[\"Ned Weeks\"]'),(1684226,2676147,2,'actor',NULL,'[\"Craig\"]'),(1684226,2774571,3,'actor',NULL,'[\"Nick\"]'),(1684226,2292548,4,'actor',NULL,'[\"Nino\"]'),(1684226,614682,5,'director',NULL,NULL),(1684226,469594,6,'writer','screenplay by',NULL),(1684226,272605,7,'producer','producer',NULL),(1684226,1558784,8,'producer','producer',NULL),(1684226,553498,9,'composer',NULL,NULL),(1684233,1456252,10,'cinematographer','director of photography',NULL),(1684233,564215,1,'actor',NULL,'[\"Max Lewinsky\"]'),(1684233,835016,2,'actor',NULL,'[\"Jacob Sternwood\"]'),(1684233,2057859,3,'actress',NULL,'[\"Sarah Hawks\"]'),(1684233,611932,4,'actor',NULL,'[\"Roy Edwards\"]'),(1684233,2123102,5,'director',NULL,NULL),(1684233,1989734,6,'producer','producer',NULL),(1684233,2271939,7,'producer','producer',NULL),(1684233,1532744,8,'producer','producer',NULL),(1684233,1879532,9,'composer',NULL,NULL),(1684628,157368,10,'editor',NULL,NULL),(1684628,3972775,1,'actress',NULL,'[\"Shireen Arshadi\"]'),(1684628,3970988,2,'actress',NULL,'[\"Atafeh Hakimi\"]'),(1684628,2872129,3,'actor',NULL,'[\"Mehran Hakimi\"]'),(1684628,4196514,4,'actor',NULL,'[\"Firouz Hakimi\"]'),(1684628,1991486,5,'director',NULL,NULL),(1684628,157313,6,'producer','producer',NULL),(1684628,2939294,7,'producer','producer',NULL),(1684628,1929734,8,'composer',NULL,NULL),(1684628,399146,9,'cinematographer','director of photography',NULL),(1684911,2016581,1,'actor',NULL,'[\"Pierre\"]'),(1684911,6402840,2,'actor',NULL,'[\"L\'enfant\"]'),(1684911,6402841,3,'actress',NULL,'[\"La voisine\"]'),(1684911,3625869,4,'actress',NULL,'[\"Le joggeuse\"]'),(1684911,693844,5,'director',NULL,NULL),(1684911,1457566,6,'composer',NULL,NULL),(1684911,693833,7,'cinematographer',NULL,NULL),(1684911,877994,8,'editor',NULL,NULL),(1686067,3039234,10,'producer','producer',NULL),(1686067,1871951,1,'actress',NULL,'[\"Leila\"]'),(1686067,2082567,2,'actress',NULL,'[\"Loubna\",\"Esmeralda\"]'),(1686067,7814,3,'actress',NULL,'[\"Fatima\"]'),(1686067,2759746,4,'actor',NULL,'[\"Sami\"]'),(1686067,586123,5,'director',NULL,NULL),(1686067,86912,6,'writer','scenario',NULL),(1686067,708084,7,'writer','collaboration',NULL),(1686067,1379288,8,'producer','line producer',NULL),(1686067,139203,9,'producer','producer',NULL),(1686313,3700729,10,'editor',NULL,NULL),(1686313,803889,1,'actor',NULL,'[\"Simon\"]'),(1686313,909412,2,'actor',NULL,'[\"Sam\"]'),(1686313,1840471,3,'actress',NULL,'[\"Jennifer\"]'),(1686313,2343300,4,'actress',NULL,'[\"Frida\"]'),(1686313,2976232,5,'director',NULL,NULL),(1686313,803568,6,'writer','screenplay',NULL),(1686313,3687608,7,'producer','producer',NULL),(1686313,1507293,8,'composer',NULL,NULL),(1686313,1686763,9,'cinematographer',NULL,NULL),(1686821,623235,10,'producer','producer',NULL),(1686821,3614913,1,'actress',NULL,'[\"Rose Hathaway\"]'),(1686821,4867258,2,'actress',NULL,'[\"Lissa Dragomir\"]'),(1686821,1572716,3,'actor',NULL,'[\"Dimitri Belikov\"]'),(1686821,321,4,'actor',NULL,'[\"Victor Dashkov\"]'),(1686821,914132,5,'director',NULL,NULL),(1686821,914058,6,'writer','screenplay',NULL),(1686821,3976229,7,'writer','novel',NULL),(1686821,1848205,8,'producer','producer',NULL),(1686821,6613,9,'producer','producer',NULL),(1687901,1207404,10,'composer',NULL,NULL),(1687901,356017,1,'actress',NULL,'[\"Florence Cathcart\"]'),(1687901,922035,2,'actor',NULL,'[\"Robert Mallory\"]'),(1687901,1767,3,'actress',NULL,'[\"Maud Hill\"]'),(1687901,169982,4,'actress',NULL,'[\"Constance Strickland\"]'),(1687901,1960322,5,'director',NULL,NULL),(1687901,901446,6,'writer','screenplay by',NULL),(1687901,193501,7,'producer','producer',NULL),(1687901,822628,8,'producer','producer',NULL),(1687901,860034,9,'producer','producer',NULL),(1690953,577560,10,'producer','producer',NULL),(1690953,136797,1,'actor',NULL,'[\"Gru\"]'),(1690953,1325419,2,'actress',NULL,'[\"Lucy\"]'),(1690953,973,3,'actor',NULL,'[\"Eduardo Pérez\",\"El Macho\"]'),(1690953,1388927,4,'actress',NULL,'[\"Margo\"]'),(1690953,1853544,5,'director',NULL,NULL),(1690953,719208,6,'director',NULL,NULL),(1690953,666791,7,'writer','written by',NULL),(1690953,202425,8,'writer','written by',NULL),(1690953,372329,9,'producer','producer',NULL),(1691323,1823713,10,'editor',NULL,NULL),(1691323,3987673,1,'actress',NULL,'[\"Marina\"]'),(1691323,609999,2,'actor',NULL,'[\"Spyros\"]'),(1691323,2032234,3,'actress',NULL,'[\"Bella\"]'),(1691323,487166,4,'actor',NULL,'[\"The Engineer\"]'),(1691323,718125,5,'director',NULL,NULL),(1691323,3987382,6,'producer','co-producer',NULL),(1691323,1145840,7,'producer','producer',NULL),(1691323,3853116,8,'producer','producer',NULL),(1691323,1531046,9,'cinematographer',NULL,NULL),(1691916,792871,10,'producer','producer',NULL),(1691916,3614913,1,'actress',NULL,'[\"Samantha Kingston\"]'),(1691916,4296013,2,'actress',NULL,'[\"Lindsay Edgecomb\"]'),(1691916,5318271,3,'actress',NULL,'[\"Ally Harris\"]'),(1691916,4279413,4,'actress',NULL,'[\"Elody\"]'),(1691916,1735543,5,'director',NULL,NULL),(1691916,535940,6,'writer','screenplay by',NULL),(1691916,3986344,7,'writer','based on the novel by',NULL),(1691916,1396390,8,'producer','producer',NULL),(1691916,5367,9,'producer','producer',NULL),(1691917,51212,10,'producer','producer',NULL),(1691917,16141,1,'actor',NULL,'[\"El Chupacabra\",\"Additional Voices\"]'),(1691917,176981,2,'actor',NULL,'[\"Dusty Crophopper\"]'),(1691917,5078,3,'actor',NULL,'[\"Skipper\"]'),(1691917,4951,4,'actor',NULL,'[\"Chug\"]'),(1691917,355806,5,'director',NULL,NULL),(1691917,5124,6,'writer','original story by',NULL),(1691917,397377,7,'writer','original story by',NULL),(1691917,304432,8,'writer','additional story material',NULL),(1691917,1083,9,'writer','additional story material',NULL),(1692486,248997,10,'cinematographer','director of photography',NULL),(1692486,149,1,'actress',NULL,'[\"Penelope Longstreet\"]'),(1692486,701,2,'actress',NULL,'[\"Nancy Cowan\"]'),(1692486,910607,3,'actor',NULL,'[\"Alan Cowan\"]'),(1692486,604,4,'actor',NULL,'[\"Michael Longstreet\"]'),(1692486,591,5,'director',NULL,NULL),(1692486,722078,6,'writer','based on the play \'Le Dieu du Carnage\' by',NULL),(1692486,441301,7,'writer','translated by',NULL),(1692486,69963,8,'producer','producer',NULL),(1692486,6035,9,'composer',NULL,NULL),(1692504,3196,10,'editor',NULL,NULL),(1692504,378932,1,'actress',NULL,'[\"Lena\"]'),(1692504,396125,2,'actress',NULL,'[\"Louise\"]'),(1692504,1457472,3,'actress',NULL,'[\"Charlotte\"]'),(1692504,1389342,4,'actress',NULL,'[\"Nora\"]'),(1692504,304541,5,'director',NULL,NULL),(1692504,74217,6,'writer','screenplay',NULL),(1692504,65376,7,'producer','producer',NULL),(1692504,2166687,8,'composer',NULL,NULL),(1692504,108041,9,'cinematographer',NULL,NULL),(1694020,9846718,10,'producer','producer',NULL),(1694020,659,1,'actress',NULL,'[\"Joyce Brewster\"]'),(1694020,736622,2,'actor',NULL,'[\"Andrew Brewster\"]'),(1694020,719444,3,'actress',NULL,'[\"K-Mart Receptionist\"]'),(1694020,1478285,4,'actress',NULL,'[\"K-Mart Executive\"]'),(1694020,281945,5,'director',NULL,NULL),(1694020,1557594,6,'writer','written by',NULL),(1694020,9209737,7,'writer','collaborating writer',NULL),(1694020,1698571,8,'producer','producer',NULL),(1694020,326415,9,'producer','producer',NULL),(16953666,779970,10,'producer','producer',NULL),(16953666,3319078,1,'actor',NULL,'[\"Le capitaine Yohan Vivès\"]'),(16953666,99521,2,'actor',NULL,'[\"Marceau\"]'),(16953666,4965045,3,'actor',NULL,'[\"Willy\"]'),(16953666,5293255,4,'actor',NULL,'[\"Fred\"]'),(16953666,596962,5,'director',NULL,NULL),(16953666,5778020,6,'writer','book \'18.3 - Une année à la PJ\'',NULL),(16953666,545382,7,'writer','screenplay',NULL),(16953666,71379,8,'producer','producer',NULL),(16953666,504618,9,'producer','producer',NULL),(1695405,1185381,10,'producer','producer',NULL),(1695405,305558,1,'actor',NULL,'[\"Alex\"]'),(1695405,1139455,2,'actress',NULL,'[\"Nica\"]'),(1695405,4050711,3,'actor',NULL,'[\"Dato\"]'),(1695405,5783881,4,'actress',NULL,'[\"Guesthouse Mom\"]'),(1695405,518123,5,'director',NULL,NULL),(1695405,2661978,6,'writer','short story \"Expensive Trips Nowhere\" from the collection \'God Lives In St. Petersburg\'',NULL),(1695405,503581,7,'writer','excerpt from \'A Hero Of Our Time\'',NULL),(1695405,16444,8,'producer','producer',NULL),(1695405,1848115,9,'producer','producer',NULL),(1695843,907301,10,'cinematographer','director of photography',NULL),(1695843,3147751,1,'actor',NULL,'[\"Ben Matthias\"]'),(1695843,206257,2,'actress',NULL,'[\"Gabbie\"]'),(1695843,5562,3,'actor',NULL,'[\"Father Kent\"]'),(1695843,1840504,4,'actress',NULL,'[\"Harriet\"]'),(1695843,2282177,5,'director',NULL,NULL),(1695843,1767754,6,'writer','written by',NULL),(1695843,3043818,7,'producer','producer',NULL),(1695843,1469853,8,'producer','producer',NULL),(1695843,3929283,9,'composer',NULL,NULL),(1698641,506613,10,'producer','producer',NULL),(1698641,136797,1,'actor',NULL,'[\"Ben Cooper\"]'),(1698641,4950,2,'actress',NULL,'[\"Kelly Cooper\"]'),(1698641,4590837,3,'actor',NULL,'[\"Alexander Cooper\"]'),(1698641,1910255,4,'actor',NULL,'[\"Anthony Cooper\"]'),(1698641,37708,5,'director',NULL,NULL),(1698641,1464577,6,'writer','screen story by',NULL),(1698641,1460483,7,'writer','based on the book by',NULL),(1698641,378229,8,'producer','producer',NULL),(1698641,1362282,9,'producer','producer',NULL),(1698648,1488027,10,'producer','producer',NULL),(1698648,1325419,1,'actress',NULL,'[\"Imogene Duncan\"]'),(1698648,906,2,'actress',NULL,'[\"Zelda Duncan\"]'),(1698648,369,3,'actor',NULL,'[\"George Bousche\"]'),(1698648,2023050,4,'actor',NULL,'[\"Lee\"]'),(1698648,75849,5,'director',NULL,NULL),(1698648,700301,6,'director',NULL,NULL),(1698648,1180348,7,'writer','written by',NULL),(1698648,24909,8,'producer','producer',NULL),(1698648,534893,9,'producer','producer',NULL),(1699185,244764,10,'editor',NULL,NULL),(1699185,2588665,1,'actor',NULL,'[\"Younes Ben Daoud\"]'),(1699185,3909,2,'actor',NULL,'[\"Si Kaddour Ben Ghabrit\"]'),(1699185,3218796,3,'actor',NULL,'[\"Salim Halali\"]'),(1699185,44073,4,'actress',NULL,'[\"Leila\"]'),(1699185,275044,5,'director',NULL,NULL),(1699185,86912,6,'writer','screenplay',NULL),(1699185,903348,7,'producer','producer',NULL),(1699185,23940,8,'composer',NULL,NULL),(1699185,1039246,9,'cinematographer',NULL,NULL),(1699231,687042,10,'writer','motion picture \"Rec\"',NULL),(1699231,1997689,1,'actress',NULL,'[\"Jenny\"]'),(1699231,1622615,2,'actor',NULL,'[\"Henry\"]'),(1699231,4001975,3,'actor',NULL,'[\"George\"]'),(1699231,1579445,4,'actor',NULL,'[\"Ed\"]'),(1699231,688282,5,'director',NULL,NULL),(1699231,235719,6,'writer','motion picture \"Quarantine\"',NULL),(1699231,1803105,7,'writer','motion picture \"Quarantine\"',NULL),(1699231,49371,8,'writer','motion picture \"Rec\"',NULL),(1699231,1084937,9,'writer','motion picture \"Rec\"',NULL),(1699498,102278,10,'composer',NULL,NULL),(1699498,2174090,1,'actress',NULL,'[\"Sara\"]'),(1699498,5412,2,'actress',NULL,'[\"Vivian\"]'),(1699498,956526,3,'actress',NULL,'[\"Lily\"]'),(1699498,1194,4,'actor',NULL,'[\"Ray\"]'),(1699498,571024,5,'director',NULL,NULL),(1699498,1303155,6,'writer',NULL,NULL),(1699498,1171298,7,'writer','additional material',NULL),(1699498,1258658,8,'writer','additional material',NULL),(1699498,4655428,9,'writer','contributing writer',NULL),(1699755,1347153,10,'producer','producer',NULL),(1699755,732497,1,'actor',NULL,'[\"Wade Walker\"]'),(1699755,913488,2,'actress',NULL,'[\"Grace Peeples\"]'),(1699755,4979,3,'actor',NULL,'[\"Virgil Peeples\"]'),(1699755,580924,4,'actress',NULL,'[\"Daphne Peeples\"]'),(1699755,1202276,5,'director',NULL,NULL),(1699755,19858,6,'producer','producer',NULL),(1699755,1129570,7,'producer','producer',NULL),(1699755,355983,8,'producer','producer',NULL),(1699755,601597,9,'producer','producer',NULL),(1700467,805235,10,'production_designer',NULL,NULL),(1700467,609981,1,'actor',NULL,'[\"Louis\"]'),(1700467,33389,2,'actress',NULL,'[\"Zoé\"]'),(1700467,38449,3,'actress',NULL,'[\"Emmanuelle\"]'),(1700467,1078628,4,'actress',NULL,'[\"La voisine d\'Achille\"]'),(1700467,1028107,5,'producer','producer',NULL),(1700467,630642,6,'producer','producer',NULL),(1700467,5407482,7,'composer',NULL,NULL),(1700467,221407,8,'cinematographer',NULL,NULL),(1700467,1551706,9,'editor',NULL,NULL),(1700808,427827,10,'producer','producer',NULL),(1700808,1564072,1,'actress',NULL,'[\"Shania Andrews\"]'),(1700808,205289,2,'actor',NULL,'[\"Brian\"]'),(1700808,3446995,3,'actor',NULL,'[\"Craft\"]'),(1700808,3104063,4,'actor',NULL,'[\"Evs\"]'),(1700808,3834604,5,'director',NULL,NULL),(1700808,164929,6,'writer','screenplay',NULL),(1700808,1951398,7,'writer','screenplay',NULL),(1700808,1747271,8,'writer','screenplay',NULL),(1700808,1638619,9,'writer','additional material by',NULL),(1700841,2691892,10,'producer','producer',NULL),(1700841,736622,1,'actor',NULL,'[\"Frank\",\"Sergeant Pepper\"]'),(1700841,1325419,2,'actress',NULL,'[\"Brenda\"]'),(1700841,1706767,3,'actor',NULL,'[\"Carl\"]'),(1700841,8533,4,'actor',NULL,'[\"Mariachi Salsa\",\"Gefilte Fish\"]'),(1700841,970447,5,'director',NULL,NULL),(1700841,862911,6,'director',NULL,NULL),(1700841,3773434,7,'writer','screenplay by',NULL),(1700841,3782043,8,'writer','screenplay by',NULL),(1700841,1698571,9,'writer','screenplay by',NULL),(1700844,389285,10,'cinematographer','director of photography',NULL),(1700844,1838,1,'actress',NULL,'[\"Hester Collyer\"]'),(1700844,1089991,2,'actor',NULL,'[\"Freddie Page\"]'),(1700844,593129,3,'actress',NULL,'[\"Mrs Elton\"]'),(1700844,2870590,4,'actor',NULL,'[\"Philip Welch\"]'),(1700844,203993,5,'director',NULL,NULL),(1700844,711905,6,'writer','play',NULL),(1700844,1366269,7,'producer','producer',NULL),(1700844,644585,8,'producer','producer',NULL),(1700844,53462,9,'composer',NULL,NULL),(1700845,848932,10,'producer','producer',NULL),(1700845,146,1,'actor',NULL,'[\"Charles Dickens\"]'),(1700845,428065,2,'actress',NULL,'[\"Nelly\"]'),(1700845,218,3,'actress',NULL,'[\"Mrs. Frances Ternan\"]'),(1700845,390903,4,'actor',NULL,'[\"Wilkie Collins\"]'),(1700845,604448,5,'writer','written by',NULL),(1700845,1597463,6,'writer','book',NULL),(1700845,62492,7,'producer','producer',NULL),(1700845,2769165,8,'producer','producer',NULL),(1700845,1217161,9,'producer','producer',NULL),(17009710,1927930,10,'editor',NULL,NULL),(17009710,1197689,1,'actress',NULL,'[\"Sandra Voyter\"]'),(17009710,35128,2,'actor',NULL,'[\"Maître Vincent Renzi\"]'),(17009710,12299991,3,'actor',NULL,'[\"Daniel\"]'),(17009710,6995530,4,'actor',NULL,'[\"Avocat général\"]'),(17009710,2630323,5,'director',NULL,NULL),(17009710,1932959,6,'writer','written by',NULL),(17009710,4352455,7,'producer','producer',NULL),(17009710,858196,8,'producer','producer',NULL),(17009710,1471778,9,'cinematographer','director of photography',NULL),(1701210,35,10,'composer',NULL,NULL),(1701210,2588665,1,'actor',NULL,'[\"Prince Auda\"]'),(1701210,104,2,'actor',NULL,'[\"Emir Nesib\"]'),(1701210,835016,3,'actor',NULL,'[\"Sultan Amar\"]'),(1701210,2951768,4,'actress',NULL,'[\"Princess Leyla\"]'),(1701210,269,5,'director',NULL,NULL),(1701210,583675,6,'writer','screenplay',NULL),(1701210,323708,7,'writer','adaptation',NULL),(1701210,749200,8,'writer','novel \"Arab\"',NULL),(1701210,69893,9,'producer','producer',NULL),(1701215,1549503,1,'actress',NULL,'[\"Lauduree\"]'),(1701215,666,2,'actress',NULL,'[\"Ms. Markovi\"]'),(1701215,1496,3,'actress',NULL,'[\"Greta\"]'),(1701215,1677477,4,'actress',NULL,'[\"Tanya\"]'),(1701215,2639627,5,'director',NULL,NULL),(1701215,3488211,6,'producer','producer',NULL),(1701215,1862511,7,'cinematographer',NULL,NULL),(1701215,797010,8,'editor',NULL,NULL),(1701215,2566841,9,'production_designer',NULL,NULL),(1701990,1694289,10,'composer',NULL,NULL),(1701990,1242688,1,'actor',NULL,'[\"Clapton Davis\"]'),(1701990,2632793,2,'actress',NULL,'[\"Riley Jones\"]'),(1701990,1682400,3,'actress',NULL,'[\"Ione\"]'),(1701990,176981,4,'actor',NULL,'[\"Principal Verge\"]'),(1701990,994538,5,'director',NULL,NULL),(1701990,1792363,6,'writer','written by',NULL),(1701990,849223,7,'producer','producer',NULL),(1701990,4007366,8,'producer','producer',NULL),(1701990,17450,9,'composer',NULL,NULL),(1702014,3978701,1,'actor',NULL,'[\"Leonardo\"]'),(1702014,3977622,2,'actor',NULL,'[\"Gabriel\"]'),(1702014,2944240,3,'actress',NULL,'[\"Giovana\"]'),(1702014,738922,4,'actress',NULL,'[\"Laura\"]'),(1702014,2406154,5,'director',NULL,NULL),(1702014,2401579,6,'producer','executive producer',NULL),(1702014,2716026,7,'cinematographer','director of photography',NULL),(1702014,2400429,8,'editor',NULL,NULL),(1702014,2917619,9,'production_designer',NULL,NULL),(1702439,324041,10,'producer','producer',NULL),(1702439,2584600,1,'actress',NULL,'[\"Katie\"]'),(1702439,241049,2,'actor',NULL,'[\"Alex\"]'),(1702439,1130627,3,'actress',NULL,'[\"Jo\"]'),(1702439,2256017,4,'actor',NULL,'[\"Tierney\"]'),(1702439,2120,5,'director',NULL,NULL),(1702439,828342,6,'writer','screenplay',NULL),(1702439,5654942,7,'writer','screenplay',NULL),(1702439,817023,8,'writer','based upon the novel by',NULL),(1702439,2125212,9,'producer','producer',NULL),(1703148,484108,10,'composer',NULL,NULL),(1703148,353,1,'actor',NULL,'[\"Martin\"]'),(1703148,554,2,'actor',NULL,'[\"Jack\"]'),(1703148,3115934,3,'actor',NULL,'[\"Sass\"]'),(1703148,464522,4,'actor',NULL,'[\"Middleman\"]'),(1703148,626706,5,'director',NULL,NULL),(1703148,1545955,6,'writer','screenplay',NULL),(1703148,277337,7,'writer','original adaptation',NULL),(1703148,3772967,8,'writer','based on the novel by',NULL),(1703148,790636,9,'producer','producer',NULL),(1703199,592598,10,'cinematographer','director of photography',NULL),(1703199,1649128,1,'actor',NULL,'[\"Jerry Hartfield\"]'),(1703199,1556638,2,'actor',NULL,'[\"Lance Preston\"]'),(1703199,1925168,3,'actress',NULL,'[\"Sasha Parker\"]'),(1703199,597740,4,'actor',NULL,'[\"T.C. Gibson\"]'),(1703199,4017355,5,'director',NULL,NULL),(1703199,3425513,6,'director',NULL,NULL),(1703199,4155547,7,'director',NULL,NULL),(1703199,1180669,8,'producer','executive producer',NULL),(1703199,3529153,9,'composer',NULL,NULL),(1704573,1450928,10,'producer','producer',NULL),(1704573,85312,1,'actor',NULL,'[\"Bernie Tiede\"]'),(1704573,511,2,'actress',NULL,'[\"Marjorie Nugent\"]'),(1704573,190,3,'actor',NULL,'[\"Danny Buck\"]'),(1704573,170952,4,'actor',NULL,'[\"Scrappy Holmes\"]'),(1704573,500,5,'director',NULL,NULL),(1704573,390912,6,'writer','based on the article in Texas Monthly by',NULL),(1704573,323065,7,'producer','producer',NULL),(1704573,568730,8,'producer','producer',NULL),(1704573,2072611,9,'producer','producer',NULL),(1705134,2632545,1,'actor',NULL,'[\"Jim\"]'),(1705134,1979997,2,'actress',NULL,'[\"Ix\"]'),(1705134,2182628,3,'actor',NULL,'[\"Scott\"]'),(1705134,4020603,4,'actress',NULL,'[\"Julie\"]'),(1705134,2571852,5,'director',NULL,NULL),(1705134,1667112,6,'producer','executive producer',NULL),(1705134,2339372,7,'cinematographer',NULL,NULL),(1706365,1742208,1,'actor',NULL,'[\"Jesse Camp\"]'),(1706365,3263203,2,'actress',NULL,'[\"Christine Preston\"]'),(1706365,1517540,3,'actor',NULL,'[\"Mr. Plinkett\"]'),(1706365,1518150,4,'actor',NULL,'[\"Carl\",\"Mike Hilton\"]'),(1706365,1513241,5,'director','co-director',NULL),(1706365,1573096,6,'composer',NULL,NULL),(1706593,1148952,10,'editor',NULL,NULL),(1706593,2851530,1,'actor',NULL,'[\"Andrew Detmer\"]'),(1706593,3887625,2,'actor',NULL,'[\"Matt Garetty\"]'),(1706593,430107,3,'actor',NULL,'[\"Steve Montgomery\"]'),(1706593,446672,4,'actor',NULL,'[\"Richard Detmer\"]'),(1706593,2503633,5,'director',NULL,NULL),(1706593,484840,6,'writer','screenplay',NULL),(1706593,204862,7,'producer','producer',NULL),(1706593,775443,8,'producer','producer',NULL),(1706593,421608,9,'cinematographer','director of photography',NULL),(1706598,2055749,10,'composer',NULL,NULL),(1706598,178,1,'actress',NULL,'[\"Helen Manning\"]'),(1706598,5607486,2,'actress',NULL,'[\"Young Alice\"]'),(1706598,5195331,3,'actress',NULL,'[\"Young Ronnie\"]'),(1706598,1425780,4,'actress',NULL,'[\"Pool Party Girl - Jeanne\"]'),(1706598,1332844,5,'director',NULL,NULL),(1706598,392237,6,'writer','screenplay',NULL),(1706598,2887908,7,'writer','novel',NULL),(1706598,106835,8,'producer','producer',NULL),(1706598,531,9,'producer','producer',NULL),(1706620,661791,10,'producer','producer',NULL),(1706620,262635,1,'actor',NULL,'[\"Curtis\"]'),(1706620,68260,2,'actor',NULL,'[\"Edgar\"]'),(1706620,842770,3,'actress',NULL,'[\"Mason\"]'),(1706620,438,4,'actor',NULL,'[\"Wilford\"]'),(1706620,94435,5,'director',NULL,NULL),(1706620,2441468,6,'writer','based on \"Le Transperceneige\" by',NULL),(1706620,499429,7,'writer','based on \"Le Transperceneige\" by',NULL),(1706620,2440893,8,'writer','based on \"Le Transperceneige\" by',NULL),(1706620,1031176,9,'writer','screenplay by',NULL),(1707386,401076,10,'writer','based on: the original stage musical \"Les Misérables\", from the novel by',NULL),(1707386,413168,1,'actor',NULL,'[\"Jean Valjean\"]'),(1707386,128,2,'actor',NULL,'[\"Javert\"]'),(1707386,4266,3,'actress',NULL,'[\"Fantine\"]'),(1707386,1086543,4,'actress',NULL,'[\"Cosette\"]'),(1707386,393799,5,'director',NULL,NULL),(1707386,629933,6,'writer','screenplay by',NULL),(1707386,98842,7,'writer','screenplay by',NULL),(1707386,774744,8,'writer','screenplay by',NULL),(1707386,471014,9,'writer','screenplay by',NULL),(1707391,544947,10,'producer','producer',NULL),(1707391,353,1,'actor',NULL,'[\"Cisco\"]'),(1707391,2559036,2,'actress',NULL,'[\"Skye\"]'),(1707391,5169,3,'actress',NULL,'[\"Tina\"]'),(1707391,4272,4,'actor',NULL,'[\"Noah\"]'),(1707391,1206,5,'director',NULL,NULL),(1707391,1330234,6,'producer','producer',NULL),(1707391,3009559,7,'producer','producer',NULL),(1707391,2213147,8,'producer','producer',NULL),(1707391,1883257,9,'producer','producer',NULL),(1707392,649507,10,'producer','producer',NULL),(1707392,4248899,1,'actress',NULL,'[\"Molly\"]'),(1707392,507381,2,'actor',NULL,'[\"Tim\"]'),(1707392,5016,3,'actress',NULL,'[\"Hannah\"]'),(1707392,1522452,4,'actor',NULL,'[\"Pastor Bobby\"]'),(1707392,844896,5,'director',NULL,NULL),(1707392,1912178,6,'writer','story',NULL),(1707392,184770,7,'producer','producer',NULL),(1707392,3794057,8,'producer','producer',NULL),(1707392,354918,9,'producer','producer',NULL),(17076046,2593874,10,'producer','producer',NULL),(17076046,46033,1,'actor',NULL,'[\"Grizzled Narrator\"]'),(17076046,705356,2,'actor',NULL,'[\"Weird Al\"]'),(17076046,592135,3,'actor',NULL,'[\"Doctor\"]'),(17076046,10735537,4,'actor',NULL,'[\"Young Al\"]'),(17076046,1926903,5,'director',NULL,NULL),(17076046,946148,6,'writer','written by',NULL),(17076046,2513975,7,'producer','producer',NULL),(17076046,2199854,8,'producer','producer',NULL),(17076046,1440221,9,'producer','producer',NULL),(1710417,609163,10,'composer','co-composer',NULL),(1710417,1950086,1,'actress',NULL,'[\"Lola\"]'),(1710417,1830380,2,'actress',NULL,'[\"Alice\"]'),(1710417,512934,3,'actor',NULL,'[\"Henry\"]'),(1710417,1172478,4,'actor',NULL,'[\"Luke\"]'),(1710417,918078,5,'director',NULL,NULL),(1710417,1441603,6,'producer','producer',NULL),(1710417,518757,7,'producer','producer',NULL),(1710417,1003921,8,'producer','producer',NULL),(1710417,2007213,9,'composer','co-composer',NULL),(1711366,5360368,10,'producer','producer',NULL),(1711366,431895,1,'actor',NULL,'[\"Nickolas Kuttner\"]'),(1711366,154632,2,'actor',NULL,'[\"Alejandro Borges\"]'),(1711366,1290102,3,'actress',NULL,'[\"Isabel Cho\"]'),(1711366,180182,4,'actor',NULL,'[\"Nolan Stross\"]'),(1711366,1918538,5,'director','supervising director',NULL),(1711366,1737422,6,'writer','screenplay',NULL),(1711366,2301055,7,'writer','story',NULL),(1711366,333076,8,'writer','story',NULL),(1711366,5332470,9,'producer','producer',NULL),(1711425,961727,10,'producer','producer',NULL),(1711425,1886602,1,'actor',NULL,'[\"Miller\"]'),(1711425,2014390,2,'actor',NULL,'[\"Jeff Chang\"]'),(1711425,1947831,3,'actor',NULL,'[\"Randy\"]'),(1711425,942792,4,'actress',NULL,'[\"Nicole\"]'),(1711425,524190,5,'director',NULL,NULL),(1711425,601859,6,'director',NULL,NULL),(1711425,387674,7,'producer','producer',NULL),(1711425,1448916,8,'producer','producer',NULL),(1711425,509414,9,'producer','producer',NULL),(1711525,3675159,10,'writer','screenplay by',NULL),(1711525,867,1,'actor',NULL,'[\"Josh Parker\"]'),(1711525,1601397,2,'actress',NULL,'[\"Tracey Hughes\"]'),(1711525,2554352,3,'actor',NULL,'[\"Clay Vanstone\"]'),(1711525,98,4,'actress',NULL,'[\"Carol Vanstone\"]'),(1711525,330347,5,'director',NULL,NULL),(1711525,817447,6,'director',NULL,NULL),(1711525,524190,7,'writer','story by',NULL),(1711525,601859,8,'writer','story by',NULL),(1711525,251,9,'writer','story by',NULL),(1712261,2166024,10,'producer','producer',NULL),(1712261,729,1,'actor',NULL,'[\"Chris Allen\"]'),(1712261,252230,2,'actor',NULL,'[\"Michael Atwood\"]'),(1712261,1107001,3,'actor',NULL,'[\"Marcus Belmont\"]'),(1712261,666739,4,'actor',NULL,'[\"Gabe Welch\"]'),(1712261,384825,5,'director',NULL,NULL),(1712261,3208946,6,'writer','written by',NULL),(1712261,124652,7,'producer','producer',NULL),(1712261,2251559,8,'producer','producer',NULL),(1712261,441097,9,'producer','producer',NULL),(1713476,953616,10,'composer',NULL,NULL),(1713476,3283577,1,'actor',NULL,'[\"Alex\"]'),(1713476,1393354,2,'actress',NULL,'[\"Stephanie\"]'),(1713476,1850967,3,'actress',NULL,'[\"Donna\"]'),(1713476,1478067,4,'actor',NULL,'[\"Mayor Stockman\"]'),(1713476,1469,5,'director',NULL,NULL),(1713476,4057720,6,'writer','screenplay by',NULL),(1713476,89658,7,'producer','producer',NULL),(1713476,2305431,8,'producer','producer',NULL),(1713476,2124081,9,'producer','producer',NULL),(1714206,491054,10,'producer','producer',NULL),(1714206,1886602,1,'actor',NULL,'[\"Sutter\"]'),(1714206,940362,2,'actress',NULL,'[\"Aimee\"]'),(1714206,151419,3,'actor',NULL,'[\"Tommy\"]'),(1714206,492,4,'actress',NULL,'[\"Sara\"]'),(1714206,1242054,5,'director',NULL,NULL),(1714206,2354099,6,'writer','screenplay',NULL),(1714206,2352210,7,'writer','screenplay',NULL),(1714206,4043665,8,'writer','novel',NULL),(1714206,2325301,9,'producer','producer',NULL),(1714208,892957,10,'cinematographer',NULL,NULL),(1714208,1717573,1,'actress',NULL,'[\"The Woman\"]'),(1714208,4897618,2,'actor',NULL,'[\"Baby\"]'),(1714208,3354777,3,'actress',NULL,'[\"Peggy Cleek\"]'),(1714208,4111911,4,'actor',NULL,'[\"Roger\"]'),(1714208,1031246,5,'director',NULL,NULL),(1714208,1626482,6,'writer','written by',NULL),(1714208,1720736,7,'producer','producer',NULL),(1714208,886156,8,'producer','producer',NULL),(1714208,4441694,9,'composer','music composer',NULL),(1714210,3665787,1,'actor',NULL,'[\"Russell\"]'),(1714210,2773325,2,'actor',NULL,'[\"Glen\"]'),(1714210,2827255,3,'actor',NULL,'[\"Jamie\"]'),(1714210,3935285,4,'actress',NULL,'[\"Jill\"]'),(1714210,354091,5,'director',NULL,NULL),(1714210,2571063,6,'producer','producer',NULL),(1714210,1127138,7,'cinematographer','director of photography',NULL),(1714210,2406475,8,'production_designer',NULL,NULL),(17146978,497383,1,'actress',NULL,'[\"Kim Junhee\"]'),(17146978,1195119,2,'actress',NULL,'[\"Kilsoo\"]'),(17146978,6526081,3,'actor',NULL,NULL),(17146978,12358906,4,'actress',NULL,'[\"Hyunwoo\"]'),(17146978,393254,5,'director',NULL,NULL),(1714886,1471654,10,'cinematographer','director of photography',NULL),(1714886,998846,1,'actor',NULL,'[\"Mario Cornejo\"]'),(1714886,954222,2,'actress',NULL,'[\"Nancy Puelma\"]'),(1714886,882994,3,'actor',NULL,'[\"Dr. Castillo\"]'),(1714886,634074,4,'actress',NULL,'[\"Sandra\"]'),(1714886,1883257,5,'director',NULL,NULL),(1714886,1505557,6,'writer','screenplay advisor',NULL),(1714886,409942,7,'writer','writer',NULL),(1714886,2213147,8,'producer','producer',NULL),(1714886,583763,9,'composer',NULL,NULL),(1714915,494617,10,'cinematographer','director of photography',NULL),(1714915,842770,1,'actress',NULL,'[\"Eve\"]'),(1714915,1089991,2,'actor',NULL,'[\"Adam\"]'),(1714915,1985859,3,'actress',NULL,'[\"Ava\"]'),(1714915,457,4,'actor',NULL,'[\"Christopher Marlowe\"]'),(1714915,464,5,'director',NULL,NULL),(1714915,7377556,6,'writer','adaptation: French version',NULL),(1714915,116062,7,'producer','producer',NULL),(1714915,859016,8,'producer','producer',NULL),(1714915,5670040,9,'composer',NULL,NULL),(1716767,3894454,10,'producer','producer',NULL),(1716767,1644,1,'actor',NULL,'[\"John Carver\"]'),(1716767,515,2,'actress',NULL,'[\"Abigail Carver\"]'),(1716767,541082,3,'actress',NULL,'[\"Rhea Carver\"]'),(1716767,1156,4,'actress',NULL,'[\"Rosmarie Carver\"]'),(1716767,339245,5,'director',NULL,NULL),(1716767,8614515,6,'director',NULL,NULL),(1716767,4050491,7,'writer','written by',NULL),(1716767,3898253,8,'writer','written by',NULL),(1716767,3894387,9,'writer','story',NULL),(1716772,1439751,10,'cinematographer','director of photography',NULL),(1716772,118617,1,'actor',NULL,'[\"Jay Cartwright\"]'),(1716772,3002919,2,'actor',NULL,'[\"Neil Sutherland\"]'),(1716772,3022504,3,'actor',NULL,'[\"Simon Cooper\"]'),(1716772,3020713,4,'actor',NULL,'[\"Will McKenzie\"]'),(1716772,1414582,5,'director',NULL,NULL),(1716772,606597,6,'writer','written by',NULL),(1716772,1720648,7,'writer','written by',NULL),(1716772,949396,8,'producer','producer',NULL),(1716772,1508332,9,'composer',NULL,NULL),(1716777,6246,10,'composer',NULL,NULL),(1716777,1517976,1,'actor',NULL,'[\"Sam\"]'),(1716777,6969,2,'actress',NULL,'[\"Frankie\"]'),(1716777,201,3,'actress',NULL,'[\"Lillian\"]'),(1716777,1312575,4,'actress',NULL,'[\"Hannah\"]'),(1716777,476064,5,'director',NULL,NULL),(1716777,649460,6,'writer','written by',NULL),(1716777,483192,7,'writer','written by',NULL),(1716777,169256,8,'producer','producer',NULL),(1716777,870106,9,'producer','producer',NULL),(1718807,666967,10,'production_designer',NULL,NULL),(1718807,3177954,1,'actor',NULL,'[\"Jamie\"]'),(1718807,4056398,2,'actress',NULL,'[\"Jessie\"]'),(1718807,3401111,3,'actress',NULL,'[\"Rhonda\"]'),(1718807,3612288,4,'actress',NULL,'[\"Elizabeth\"]'),(1718807,138238,5,'director',NULL,NULL),(1718807,3204697,6,'producer','producer',NULL),(1718807,1976305,7,'composer',NULL,NULL),(1718807,1008443,8,'cinematographer',NULL,NULL),(1718807,3059225,9,'editor',NULL,NULL),(1719009,2146597,10,'composer',NULL,NULL),(1719009,571741,1,'actress',NULL,'[\"Cloe\"]'),(1719009,410127,2,'actress',NULL,'[\"Jade\"]'),(1719009,2724682,3,'actress',NULL,'[\"Sasha\"]'),(1719009,376860,4,'actress',NULL,'[\"Yasmin\"]'),(1719009,234725,5,'director',NULL,NULL),(1719009,571066,6,'writer','written by',NULL),(1719009,776202,7,'producer','producer',NULL),(1719009,949899,8,'producer','producer',NULL),(1719009,1720431,9,'composer',NULL,NULL),(1719071,1488027,10,'producer','producer',NULL),(1719071,289,1,'actress',NULL,'[\"Lynn\"]'),(1719071,3009232,2,'actor',NULL,'[\"Elliot\"]'),(1719071,995,3,'actress',NULL,'[\"Doris Baker\"]'),(1719071,193,4,'actress',NULL,'[\"Patty\"]'),(1719071,506094,5,'director',NULL,NULL),(1719071,2376412,6,'producer','producer',NULL),(1719071,3481966,7,'producer','producer',NULL),(1719071,1660148,8,'producer','producer',NULL),(1719071,628255,9,'producer','producer',NULL),(1720182,2863272,10,'producer','producer',NULL),(1720182,3598337,1,'actress',NULL,'[\"Hannah\"]'),(1720182,3600327,2,'actor',NULL,'[\"Jason\"]'),(1720182,773884,3,'actor',NULL,'[\"Jacob\"]'),(1720182,4982,4,'actress',NULL,'[\"Nurse Mary\"]'),(1720182,3401779,5,'director',NULL,NULL),(1720182,2296528,6,'director',NULL,NULL),(1720182,4061206,7,'writer','written by',NULL),(1720182,5008401,8,'writer','story',NULL),(1720182,3598678,9,'producer','producer',NULL),(1720616,2164624,10,'composer',NULL,NULL),(1720616,922724,1,'actress',NULL,'[\"Julie Keller\"]'),(1720616,4395,2,'actor',NULL,'[\"Jason Fryman\"]'),(1720616,748973,3,'actress',NULL,'[\"Leslie\"]'),(1720616,1483369,4,'actor',NULL,'[\"Alex\"]'),(1720616,40120,5,'producer','producer',NULL),(1720616,4265383,6,'producer','producer',NULL),(1720616,358316,7,'producer','producer',NULL),(1720616,440458,8,'producer','producer',NULL),(1720616,2110175,9,'producer','producer',NULL),(1721685,4067233,1,'actress',NULL,NULL),(1721685,4067606,2,'actress',NULL,NULL),(1721685,4068364,3,'actor',NULL,NULL),(1721685,4067348,4,'actor',NULL,NULL),(1721685,519354,5,'director',NULL,NULL),(1721685,3161865,6,'producer','producer',NULL),(1721685,1259686,7,'producer','producer',NULL),(1721685,1859202,8,'composer',NULL,NULL),(1721685,399677,9,'editor',NULL,NULL),(1723115,154439,10,'editor',NULL,NULL),(1723115,1989830,1,'actress',NULL,'[\"Amy\"]'),(1723115,653450,2,'actress',NULL,'[\"Mariam\"]'),(1723115,945793,3,'actress',NULL,'[\"Acita\"]'),(1723115,723865,4,'actress',NULL,'[\"Esther\"]'),(1723115,100493,5,'director',NULL,NULL),(1723115,1342890,6,'writer','screenplay',NULL),(1723115,757787,7,'producer','producer',NULL),(1723115,1441074,8,'composer',NULL,NULL),(1723115,310180,9,'cinematographer',NULL,NULL),(1723120,733728,10,'cinematographer','director of photography',NULL),(1723120,4071231,1,'actor',NULL,'[\"Riva\"]'),(1723120,3037333,2,'actress',NULL,'[\"Nora\"]'),(1723120,4071082,3,'actor',NULL,'[\"Azor\"]'),(1723120,1533685,4,'actor',NULL,'[\"César\"]'),(1723120,4062319,5,'director',NULL,NULL),(1723120,1885778,6,'composer',NULL,NULL),(1723120,5250180,7,'composer',NULL,NULL),(1723120,13711911,8,'composer',NULL,NULL),(1723120,904551,9,'composer',NULL,NULL),(1723121,70454,10,'producer','producer',NULL),(1723121,837177,1,'actor',NULL,'[\"David Clark\"]'),(1723121,98,2,'actress',NULL,'[\"Rose O\'Reilly\"]'),(1723121,731075,3,'actress',NULL,'[\"Casey Mathis\"]'),(1723121,1159180,4,'actor',NULL,'[\"Brad Gurdlinger\"]'),(1723121,1098493,5,'director',NULL,NULL),(1723121,1462097,6,'writer','screenplay',NULL),(1723121,264520,7,'writer','screenplay',NULL),(1723121,1890845,8,'writer','screenplay',NULL),(1723121,1898234,9,'writer','screenplay',NULL),(1723811,90312,10,'cinematographer','director of photography',NULL),(1723811,1055413,1,'actor',NULL,'[\"Brandon\"]'),(1723811,1659547,2,'actress',NULL,'[\"Sissy\"]'),(1723811,197647,3,'actor',NULL,'[\"David\"]'),(1723811,3046705,4,'actress',NULL,'[\"Woman on Subway Train\"]'),(1723811,2588606,5,'director',NULL,NULL),(1723811,604448,6,'writer','written by',NULL),(1723811,2096617,7,'producer','producer',NULL),(1723811,792431,8,'producer','producer',NULL),(1723811,1879532,9,'composer',NULL,NULL),(1724965,354453,10,'composer',NULL,NULL),(1724965,3885341,1,'actress',NULL,'[\"Beckett Warner\"]'),(1724965,717709,2,'actress',NULL,'[\"Pamela Hamilton\"]'),(1724965,1775177,3,'actor',NULL,'[\"Tobey Crawford\"]'),(1724965,730070,4,'actor',NULL,'[\"Miles Warner\"]'),(1724965,112668,5,'director',NULL,NULL),(1724965,805055,6,'writer','screenplay',NULL),(1724965,4075257,7,'writer','novel',NULL),(1724965,463025,8,'producer','producer',NULL),(1724965,882927,9,'producer','producer',NULL),(1726589,632093,10,'editor',NULL,NULL),(1726589,1269983,1,'actress',NULL,'[\"Kim\"]'),(1726589,98378,2,'actress',NULL,'[\"Deena\"]'),(1726589,1377375,3,'actress',NULL,'[\"Laura\"]'),(1726589,836176,4,'actor',NULL,'[\"Nicholas\"]'),(1726589,192478,5,'director',NULL,NULL),(1726589,2249410,6,'producer','executive producer',NULL),(1726589,582171,7,'composer',NULL,NULL),(1726589,1084584,8,'cinematographer',NULL,NULL),(1726589,1401780,9,'editor',NULL,NULL),(1726592,642869,10,'producer','producer',NULL),(1726592,173,1,'actress',NULL,'[\"Christine\"]'),(1726592,147,2,'actor',NULL,'[\"Ben\"]'),(1726592,835016,3,'actor',NULL,'[\"Dr. Nasch\"]'),(1726592,240359,4,'actress',NULL,'[\"Claire\"]'),(1726592,423626,5,'director',NULL,NULL),(1726592,4081356,6,'writer','based on the novel by',NULL),(1726592,1247584,7,'producer','producer',NULL),(1726592,503592,8,'producer','producer',NULL),(1726592,551017,9,'producer','producer',NULL),(1726669,221042,10,'cinematographer','director of photography',NULL),(1726669,190,1,'actor',NULL,'[\"Killer Joe Cooper\"]'),(1726669,386472,2,'actor',NULL,'[\"Chris Smith\"]'),(1726669,1017334,3,'actress',NULL,'[\"Dottie Smith\"]'),(1726669,2006,4,'actor',NULL,'[\"Ansel Smith\"]'),(1726669,1243,5,'director',NULL,NULL),(1726669,504832,6,'writer','screenplay',NULL),(1726669,1291566,7,'producer','producer',NULL),(1726669,251809,8,'producer','producer',NULL),(1726669,61045,9,'composer',NULL,NULL),(1727388,7037,10,'cinematographer','director of photography',NULL),(1727388,136797,1,'actor',NULL,'[\"Trent\"]'),(1727388,1057,2,'actress',NULL,'[\"Pam\"]'),(1727388,5049,3,'actress',NULL,'[\"Betty\"]'),(1727388,1455681,4,'actress',NULL,'[\"Susanna\"]'),(1727388,269542,5,'director',NULL,NULL),(1727388,711110,6,'director',NULL,NULL),(1727388,723570,7,'producer','producer',NULL),(1727388,1016966,8,'producer','producer',NULL),(1727388,1387379,9,'composer',NULL,NULL),(1727770,6070,10,'composer',NULL,NULL),(1727770,670408,1,'actor',NULL,'[\"Neil\"]'),(1727770,295,2,'actress',NULL,'[\"Catherine\"]'),(1727770,80276,3,'actor',NULL,'[\"Ray\"]'),(1727770,1443527,4,'actor',NULL,'[\"Grant\"]'),(1727770,1402,5,'director',NULL,NULL),(1727770,779170,6,'writer','screenplay',NULL),(1727770,10930,7,'writer','original story',NULL),(1727770,427580,8,'producer','producer',NULL),(1727770,1507245,9,'producer','producer',NULL),(1727776,307776,10,'producer','producer',NULL),(1727776,4446467,1,'actor',NULL,'[\"Ben Goudy\"]'),(1727776,2383250,2,'actor',NULL,'[\"Carter Grant\"]'),(1727776,6368720,3,'actor',NULL,'[\"Augie Foster\"]'),(1727776,3924288,4,'actress',NULL,'[\"Denise Russo\"]'),(1727776,484907,5,'director',NULL,NULL),(1727776,933144,6,'writer','screenplay',NULL),(1727776,595088,7,'writer','screenplay',NULL),(1727776,931185,8,'writer','story',NULL),(1727776,275698,9,'producer','producer',NULL),(1727824,5875,10,'cinematographer','director of photography',NULL),(1727824,1785339,1,'actor',NULL,'[\"Freddie Mercury\"]'),(1727824,2377903,2,'actress',NULL,'[\"Mary Austin\"]'),(1727824,3152605,3,'actor',NULL,'[\"Brian May\"]'),(1727824,5228887,4,'actor',NULL,'[\"Roger Taylor\"]'),(1727824,1741,5,'director',NULL,NULL),(1727824,565026,6,'writer','story by',NULL),(1727824,604948,7,'writer','story by',NULL),(1727824,63473,8,'producer','producer',NULL),(1727824,454752,9,'producer','producer',NULL),(1728196,3160100,10,'producer','producer',NULL),(1728196,945131,1,'actor',NULL,'[\"Kageyu Saito\"]'),(1728196,1328568,2,'actor',NULL,'[\"Hikokuro Omodaka\"]'),(1728196,847562,3,'actor',NULL,'[\"Tajiri\"]'),(1728196,2098603,4,'actress',NULL,'[\"Miho\"]'),(1728196,586281,5,'director',NULL,NULL),(1728196,1120067,6,'writer','screenplay',NULL),(1728196,847668,7,'writer','novel \"Ibun rônin-ki\"',NULL),(1728196,620457,8,'producer','producer',NULL),(1728196,2526637,9,'producer','producer',NULL),(1730189,3350072,10,'editor',NULL,NULL),(1730189,1266,1,'actor',NULL,'[\"Professor Meade\"]'),(1730189,938294,2,'actress',NULL,'[\"Ranger Cherry\"]'),(1730189,4103161,3,'actress',NULL,'[\"Tyler\"]'),(1730189,2459770,4,'actress',NULL,'[\"Kayla\"]'),(1730189,3888,5,'director',NULL,NULL),(1730189,2814511,6,'writer','story',NULL),(1730189,4022289,7,'composer',NULL,NULL),(1730189,4108935,8,'cinematographer',NULL,NULL),(1730189,1370830,9,'editor',NULL,NULL),(1731141,1261078,10,'producer','producer',NULL),(1731141,148,1,'actor',NULL,'[\"Colonel Graff\"]'),(1731141,2633535,2,'actor',NULL,'[\"Ender Wiggin\"]'),(1731141,2794962,3,'actress',NULL,'[\"Petra Arkanian\"]'),(1731141,1113550,4,'actress',NULL,'[\"Valentine Wiggin\"]'),(1731141,4303,5,'director',NULL,NULL),(1731141,136298,6,'writer','based on the book Ender\'s Game by',NULL),(1731141,153590,7,'producer','producer',NULL),(1731141,376274,8,'producer','producer',NULL),(1731141,476064,9,'producer','producer',NULL),(1731697,424118,10,'composer',NULL,NULL),(1731697,600667,1,'actress',NULL,'[\"Heidi Hawthorne\"]'),(1731697,1236,2,'actress',NULL,'[\"Margaret Morgan\"]'),(1731697,1117,3,'actor',NULL,'[\"Francis Matthias\"]'),(1731697,680489,4,'actor',NULL,'[\"Herman \'Whitey\' Salvador\"]'),(1731697,957772,5,'director',NULL,NULL),(1731697,89658,6,'producer','producer',NULL),(1731697,332308,7,'producer','producer',NULL),(1731697,2305431,8,'producer','producer',NULL),(1731697,3656848,9,'composer',NULL,NULL),(1731701,366894,10,'producer','producer',NULL),(1731701,454809,1,'actress',NULL,'[\"Analyst Knight\"]'),(1731701,168,2,'actor',NULL,'[\"Hardman\"]'),(1731701,6094820,3,'actress',NULL,'[\"Megan (8)\"]'),(1731701,3849842,4,'actress',NULL,'[\"Heather\"]'),(1731701,1381100,5,'director',NULL,NULL),(1731701,1733756,6,'writer','written by',NULL),(1731701,1766738,7,'producer','producer',NULL),(1731701,156819,8,'producer','producer',NULL),(1731701,169989,9,'producer','producer',NULL),(1731767,469384,10,'composer',NULL,NULL),(1731767,919798,1,'actor',NULL,'[\"Scooby-Doo\",\"Freddy Jones\"]'),(1731767,169934,2,'actress',NULL,'[\"Velma Dinkley\"]'),(1731767,498,3,'actor',NULL,'[\"Shaggy Rogers\"]'),(1731767,217221,4,'actress',NULL,'[\"Daphne Blake\"]'),(1731767,2320725,5,'director',NULL,NULL),(1731767,253624,6,'writer','written by',NULL),(1731767,1698584,7,'writer','written by',NULL),(1731767,105001,8,'producer','producer',NULL),(1731767,148999,9,'producer','producer',NULL),(1732730,692064,10,'cinematographer','director of photography',NULL),(1732730,3283711,1,'actor',NULL,'[\"Leo\"]'),(1732730,3391690,2,'actress',NULL,'[\"Julia\"]'),(1732730,3551768,3,'actor',NULL,'[\"Davis\"]'),(1732730,3303567,4,'actor',NULL,'[\"Music\"]'),(1732730,124089,5,'director',NULL,NULL),(1732730,1298894,6,'producer','producer',NULL),(1732730,1228443,7,'producer','producer',NULL),(1732730,3859039,8,'composer',NULL,NULL),(1732730,2806099,9,'composer',NULL,NULL),(1733114,1673595,10,'cinematographer',NULL,NULL),(1733114,2694584,1,'actress',NULL,'[\"Cal\"]'),(1733114,1722914,2,'actress',NULL,'[\"Margo\"]'),(1733114,581365,3,'actor',NULL,'[\"Andy\"]'),(1733114,381043,4,'actor',NULL,'[\"Howard\"]'),(1733114,1533947,5,'director',NULL,NULL),(1733114,2255776,6,'writer','stage play',NULL),(1733114,2245756,7,'writer','story',NULL),(1733114,2131892,8,'composer',NULL,NULL),(1733114,541359,9,'composer',NULL,NULL),(1734110,1589714,10,'editor',NULL,NULL),(1734110,611552,1,'actress',NULL,'[\"Meera Gaity\"]'),(1734110,1799038,2,'actress',NULL,'[\"Sabrina Lall\"]'),(1734110,4252343,3,'actress',NULL,'[\"Jessica Lall\"]'),(1734110,2161624,4,'actor',NULL,'[\"Vikram Jai Singh\"]'),(1734110,2955107,5,'director',NULL,NULL),(1734110,3814301,6,'writer','lyrics',NULL),(1734110,780098,7,'producer','producer',NULL),(1734110,3032664,8,'composer',NULL,NULL),(1734110,3440793,9,'cinematographer','director of photography',NULL),(1734113,1618433,10,'producer','producer',NULL),(1734113,361753,1,'actress',NULL,'[\"Mother\"]'),(1734113,3432082,2,'actor',NULL,'[\"Umasou\"]'),(1734113,945322,3,'actor',NULL,'[\"Heart\"]'),(1734113,14557,4,'actress',NULL,'[\"Heart (young)\"]'),(1734113,4047350,5,'director',NULL,NULL),(1734113,4102670,6,'writer','based on the book by',NULL),(1734113,613482,7,'writer','written by',NULL),(1734113,423148,8,'writer','written by',NULL),(1734113,613673,9,'producer','producer',NULL),(1734493,1827715,10,'producer','producer',NULL),(1734493,636426,1,'actress',NULL,'[\"Alice Racine\"]'),(1734493,89217,2,'actor',NULL,'[\"Jack Alcott\"]'),(1734493,1057,3,'actress',NULL,'[\"Emily Knowles\"]'),(1734493,518,4,'actor',NULL,'[\"Bob Hunter\"]'),(1734493,776,5,'director',NULL,NULL),(1734493,3761791,6,'writer','screenplay',NULL),(1734493,3388080,7,'producer','producer',NULL),(1734493,225146,8,'producer','producer',NULL),(1734493,1857184,9,'producer','executive producer',NULL),(1735200,2460473,10,'producer','producer',NULL),(1735200,299924,1,'actor',NULL,'[\"Jafaar\"]'),(1735200,67521,2,'actress',NULL,'[\"Fatima\"]'),(1735200,1494423,3,'actress',NULL,'[\"Yelena\"]'),(1735200,7811,4,'actor',NULL,'[\"Barber\"]'),(1735200,3742814,5,'director',NULL,NULL),(1735200,88423,6,'producer','producer',NULL),(1735200,1602118,7,'producer','producer',NULL),(1735200,1762339,8,'producer','producer',NULL),(1735200,3125367,9,'producer','producer',NULL),(1735839,2969035,10,'editor',NULL,NULL),(1735839,493257,1,'actor',NULL,'[\"Ben\"]'),(1735839,1592225,2,'actress',NULL,'[\"Alex\"]'),(1735839,2989873,3,'actor',NULL,'[\"Nick\"]'),(1735839,2306975,4,'actress',NULL,'[\"Emily\"]'),(1735839,803203,5,'director',NULL,NULL),(1735839,162274,6,'writer','written by',NULL),(1735839,322467,7,'writer','written by',NULL),(1735839,386651,8,'producer','producer',NULL),(1735839,2642924,9,'cinematographer',NULL,NULL),(1735853,3598037,10,'writer','story',NULL),(1735853,38258,1,'actress',NULL,'[\"Júlia\",\"teacher\"]'),(1735853,740856,2,'actor',NULL,'[\"Hugo\"]'),(1735853,481185,3,'actress',NULL,'[\"Lisa\"]'),(1735853,180837,4,'actress',NULL,'[\"Helena\",\"Lisa\'s cousin\"]'),(1735853,553917,5,'director',NULL,NULL),(1735853,142453,6,'writer','screenplay',NULL),(1735853,1271154,7,'writer','story',NULL),(1735853,1062569,8,'writer','story',NULL),(1735853,4106302,9,'writer','story',NULL),(1735898,5387,10,'producer','producer',NULL),(1735898,829576,1,'actress',NULL,'[\"Snow White\"]'),(1735898,1165110,2,'actor',NULL,'[\"The Huntsman\"]'),(1735898,234,3,'actress',NULL,'[\"Ravenna\"]'),(1735898,3510471,4,'actor',NULL,'[\"William\"]'),(1735898,2782185,5,'director',NULL,NULL),(1735898,2489193,6,'writer','screenplay',NULL),(1735898,359387,7,'writer','screenplay',NULL),(1735898,24925,8,'writer','screenplay',NULL),(1735898,580303,9,'producer','producer',NULL),(1736599,895515,1,'director',NULL,NULL),(1736633,845306,10,'producer','producer',NULL),(1736633,509264,1,'actor',NULL,'[\"Anders\"]'),(1736633,1282571,2,'actor',NULL,'[\"Thomas\"]'),(1736633,4465402,3,'actress',NULL,'[\"Rebekka\"]'),(1736633,1715257,4,'actress',NULL,'[\"Malin\"]'),(1736633,1258686,5,'director',NULL,NULL),(1736633,478934,6,'writer','novel \"Le feu follet\"',NULL),(1736633,1258777,7,'writer',NULL,NULL),(1736633,256896,8,'producer','producer',NULL),(1736633,1343171,9,'producer','producer',NULL),(1737090,34492,1,'actor',NULL,'[\"Patrick Thomas\"]'),(1737090,2567203,2,'actress',NULL,'[\"Amber Hannold\"]'),(1737090,2153198,3,'actress',NULL,'[\"Amber Allen\"]'),(1737090,2189611,4,'actress',NULL,'[\"Girl in Bed\"]'),(1737090,1963288,5,'director',NULL,NULL),(1737090,2325094,6,'producer','producer',NULL),(1737090,547776,7,'composer',NULL,NULL),(1737090,1673595,8,'cinematographer',NULL,NULL),(1740047,36545,10,'editor',NULL,NULL),(1740047,176869,1,'actor',NULL,'[\"Steve Coogan\"]'),(1740047,117339,2,'actor',NULL,'[\"Rob Brydon\"]'),(1740047,426038,3,'actress',NULL,'[\"Sally\"]'),(1740047,4169770,4,'actress',NULL,'[\"Chloe\"]'),(1740047,935863,5,'director',NULL,NULL),(1740047,247787,6,'producer','producer',NULL),(1740047,1315448,7,'producer','producer',NULL),(1740047,6219,8,'composer',NULL,NULL),(1740047,810430,9,'cinematographer',NULL,NULL),(1740707,304574,10,'production_designer',NULL,NULL),(1740707,422151,1,'actor',NULL,'[\"Hans, trolljegeren\"]'),(1740707,293804,2,'actor',NULL,'[\"Polsk bjørnejeger\"]'),(1740707,639016,3,'actor',NULL,'[\"E-verkssjef\"]'),(1740707,3331177,4,'actor',NULL,'[\"Thomas\"]'),(1740707,4217,5,'director',NULL,NULL),(1740707,326505,6,'producer','producer',NULL),(1740707,414734,7,'producer','producer',NULL),(1740707,117556,8,'cinematographer',NULL,NULL),(1740707,1342287,9,'editor',NULL,NULL),(1742044,827869,10,'cinematographer',NULL,NULL),(1742044,1638365,1,'actor',NULL,'[\"Frankie Valli\"]'),(1742044,2706992,2,'actor',NULL,'[\"Bob Gaudio\"]'),(1742044,4608989,3,'actor',NULL,'[\"Nick Massi\"]'),(1742044,1842344,4,'actor',NULL,'[\"Tommy DeVito\"]'),(1742044,142,5,'director',NULL,NULL),(1742044,108613,6,'writer','screenplay',NULL),(1742044,1338811,7,'writer','screenplay',NULL),(1742044,454752,8,'producer','producer',NULL),(1742044,520749,9,'producer','producer',NULL),(1742334,808178,10,'producer','producer',NULL),(1742334,216,1,'actor',NULL,'[\"John \'Breacher\' Wharton\"]'),(1742334,941777,2,'actor',NULL,'[\"James \'Monster\' Murray\"]'),(1742334,5024,3,'actor',NULL,'[\"Julius \'Sugar\' Edmonds\"]'),(1742334,931404,4,'actress',NULL,'[\"Det. Caroline Brentwood\"]'),(1742334,43742,5,'director',NULL,NULL),(1742334,940790,6,'writer','written by',NULL),(1742334,1088848,7,'producer','producer',NULL),(1742334,2352181,8,'producer','producer',NULL),(1742334,2026983,9,'producer','producer',NULL),(1742336,3592268,10,'production_designer',NULL,NULL),(1742336,243233,1,'actor',NULL,'[\"Jack\"]'),(1742336,1289434,2,'actress',NULL,'[\"Iris\"]'),(1742336,1679669,3,'actress',NULL,'[\"Hannah\"]'),(1742336,1898126,4,'actor',NULL,'[\"Al\"]'),(1742336,1119645,5,'director',NULL,NULL),(1742336,2693744,6,'producer','producer',NULL),(1742336,810272,7,'composer',NULL,NULL),(1742336,1848388,8,'cinematographer',NULL,NULL),(1742336,1477623,9,'editor',NULL,NULL),(1742650,238698,10,'cinematographer','director of photography',NULL),(1742650,572,1,'actress',NULL,'[\"Kate Reddy\"]'),(1742650,112,2,'actor',NULL,'[\"Jack Abelhammer\"]'),(1742650,1288,3,'actor',NULL,'[\"Clark Cooper\"]'),(1742650,1427,4,'actor',NULL,'[\"Richard Reddy\"]'),(1742650,569790,5,'director',NULL,NULL),(1742650,112459,6,'writer','screenplay',NULL),(1742650,1308026,7,'writer','novel',NULL),(1742650,317642,8,'producer','producer',NULL),(1742650,956374,9,'composer',NULL,NULL),(1742683,605190,10,'cinematographer',NULL,NULL),(1742683,249,1,'actor',NULL,'[\"Richard Fuld\"]'),(1742683,1334,2,'actor',NULL,'[\"Joe Gregory\"]'),(1742683,458,3,'actor',NULL,'[\"Henry Paulson\"]'),(1742683,1674464,4,'actress',NULL,'[\"Christal West\"]'),(1742683,436,5,'director',NULL,NULL),(1742683,332467,6,'writer','written by',NULL),(1742683,3376444,7,'writer','book',NULL),(1742683,842470,8,'producer','producer',NULL),(1742683,953616,9,'composer',NULL,NULL),(1743922,294520,10,'composer',NULL,NULL),(1743922,418,1,'actor',NULL,'[\"Donovan Matheson\"]'),(1743922,1985784,2,'actor',NULL,'[\"Magnolia Matheson\"]'),(1743922,392228,3,'actress',NULL,'[\"Jasmine Matheson\"]'),(1743922,339304,4,'actor',NULL,'[\"Finnley Boyd\"]'),(1743922,1633002,5,'director',NULL,NULL),(1743922,3009751,6,'writer','screenplay',NULL),(1743922,179126,7,'writer','story editor',NULL),(1743922,138034,8,'producer','producer',NULL),(1743922,2101544,9,'producer','producer',NULL),(1744641,4125245,10,'editor',NULL,NULL),(1744641,48075,1,'actor',NULL,'[\"Rama\"]'),(1744641,4487,2,'actress',NULL,'[\"Sita\"]'),(1744641,709359,3,'actor',NULL,'[\"Ravan\"]'),(1744641,728262,4,'actor',NULL,'[\"Hanuman\"]'),(1744641,2709116,5,'director',NULL,NULL),(1744641,4003994,6,'writer','dialogue',NULL),(1744641,4124318,7,'producer','producer',NULL),(1744641,756313,8,'producer','producer',NULL),(1744641,1006855,9,'composer',NULL,NULL),(1745686,841326,10,'producer','producer',NULL),(1745686,311476,1,'actress',NULL,'[\"Woman\"]'),(1745686,9211909,2,'actor',NULL,'[\"Luchs\"]'),(1745686,352528,3,'actor',NULL,'[\"Hugo\"]'),(1745686,67235,4,'actress',NULL,'[\"Luise\"]'),(1745686,702518,5,'director',NULL,NULL),(1745686,4126357,6,'writer','novel',NULL),(1745686,3889670,7,'producer','producer',NULL),(1745686,345116,8,'producer','producer',NULL),(1745686,477859,9,'producer','producer',NULL),(1745960,472567,10,'writer','screenplay by',NULL),(1745960,129,1,'actor',NULL,'[\"Capt. Pete \'Maverick\' Mitchell\"]'),(1745960,124,2,'actress',NULL,'[\"Penny Benjamin\"]'),(1745960,1886602,3,'actor',NULL,'[\"Lt. Bradley \'Rooster\' Bradshaw\"]'),(1745960,174,4,'actor',NULL,'[\"Adm. Tom \'Iceman\' Kazansky\"]'),(1745960,2676052,5,'director',NULL,NULL),(1745960,143596,6,'writer','based on characters created by',NULL),(1745960,258390,7,'writer','based on characters created by',NULL),(1745960,185976,8,'writer','story by',NULL),(1745960,1098479,9,'writer','story by',NULL),(1748122,6035,10,'composer',NULL,NULL),(1748122,4442068,1,'actor',NULL,'[\"Sam\"]'),(1748122,4442319,2,'actress',NULL,'[\"Suzy\"]'),(1748122,246,3,'actor',NULL,'[\"Captain Sharp\"]'),(1748122,195,4,'actor',NULL,'[\"Mr. Bishop\"]'),(1748122,27572,5,'director',NULL,NULL),(1748122,178910,6,'writer','written by',NULL),(1748122,206154,7,'producer','producer',NULL),(1748122,2262509,8,'producer','producer',NULL),(1748122,748784,9,'producer','producer',NULL),(1748207,2042837,10,'editor',NULL,NULL),(1748207,1706832,1,'actor',NULL,'[\"Peter Aitken\"]'),(1748207,1656122,2,'actress',NULL,'[\"Lorna Michaelson\"]'),(1748207,1779870,3,'actress',NULL,'[\"Maggie\"]'),(1748207,568672,4,'actress',NULL,'[\"Carol Briggs\"]'),(1748207,2610231,5,'director',NULL,NULL),(1748207,728754,6,'producer','producer',NULL),(1748207,839710,7,'producer','producer',NULL),(1748207,2610770,8,'composer',NULL,NULL),(1748207,1121126,9,'cinematographer',NULL,NULL),(1748260,489059,10,'composer',NULL,NULL),(1748260,1473267,1,'actress',NULL,'[\"Davey Wexler\"]'),(1748260,5057,2,'actress',NULL,'[\"Gwen Wexler\"]'),(1748260,326074,3,'actress',NULL,'[\"Rabbi\"]'),(1748260,3646050,4,'actor',NULL,'[\"Jason Wexler\"]'),(1748260,89756,5,'director',NULL,NULL),(1748260,89755,6,'writer','novel and screenplay',NULL),(1748260,255375,7,'producer','producer',NULL),(1748260,537884,8,'producer','producer',NULL),(1748260,649507,9,'producer','producer',NULL),(17527468,6424616,10,'composer',NULL,NULL),(17527468,6976735,1,'actress',NULL,'[\"PJ\"]'),(17527468,8731249,2,'actress',NULL,'[\"Josie\"]'),(17527468,9342097,3,'actress',NULL,'[\"Hazel Callahan\"]'),(17527468,10023988,4,'actress',NULL,'[\"Isabel\"]'),(17527468,7681231,5,'director',NULL,NULL),(17527468,6969,6,'producer','producer',NULL),(17527468,2583641,7,'producer','producer',NULL),(17527468,1861333,8,'producer','producer',NULL),(17527468,3681192,9,'composer',NULL,NULL),(1753383,938645,10,'writer','screenplay',NULL),(1753383,1265802,1,'actor',NULL,'[\"Bailey\",\"Ellie\",\"Tino\"]'),(1753383,598,2,'actor',NULL,'[\"Adult Ethan\"]'),(1753383,5152,3,'actress',NULL,'[\"Adult Hannah\"]'),(1753383,7291339,4,'actor',NULL,'[\"Ethan - 8 Years Old\"]'),(1753383,2120,5,'director',NULL,NULL),(1753383,1240326,6,'writer','screenplay by',NULL),(1753383,585243,7,'writer','screenplay by',NULL),(1753383,920108,8,'writer','screenplay by',NULL),(1753383,285379,9,'writer','screenplay by',NULL),(1753722,990167,10,'cinematographer',NULL,NULL),(1753722,684654,1,'actor',NULL,'[\"Edgar\"]'),(1753722,624487,2,'actress',NULL,'[\"Júlia\"]'),(1753722,162535,3,'actor',NULL,'[\"Walter\"]'),(1753722,2671364,4,'actor',NULL,'[\"Maicon\"]'),(1753722,4139472,5,'director',NULL,NULL),(1753722,4293654,6,'producer','producer',NULL),(1753722,5598987,7,'producer','producer',NULL),(1753722,9494,8,'composer',NULL,NULL),(1753722,3069626,9,'composer',NULL,NULL),(1753887,5086797,10,'composer',NULL,NULL),(1753887,2808715,1,'actress',NULL,'[\"Brunette Jogger\"]'),(1753887,4304388,2,'actress',NULL,'[\"Blonde jogger\"]'),(1753887,1613524,3,'actor',NULL,'[\"Philip\"]'),(1753887,898965,4,'actor',NULL,'[\"Geert - Philip\'s Dad\"]'),(1753887,258172,5,'director',NULL,NULL),(1753887,208051,6,'writer','written by',NULL),(1753887,4157089,7,'writer','original idea',NULL),(1753887,1066773,8,'writer','story',NULL),(1753887,5086820,9,'composer',NULL,NULL),(1754351,1804520,10,'editor',NULL,NULL),(1754351,2865071,1,'self',NULL,'[\"Self - Opening Narration\"]'),(1754351,4234289,2,'self',NULL,'[\"Self\"]'),(1754351,142799,3,'self',NULL,'[\"Self\"]'),(1754351,2368087,4,'self',NULL,'[\"Self\"]'),(1754351,2437138,5,'director',NULL,NULL),(1754351,1383547,6,'director',NULL,NULL),(1754351,417322,7,'producer','producer',NULL),(1754351,551108,8,'composer',NULL,NULL),(1754351,4139296,9,'cinematographer',NULL,NULL),(1754656,1417039,10,'producer','producer',NULL),(1754656,313,1,'actor',NULL,'[\"The Aviator\"]'),(1754656,3237775,2,'actress',NULL,'[\"The Little Girl\"]'),(1754656,1046097,3,'actress',NULL,'[\"The Mother\"]'),(1754656,182839,4,'actress',NULL,'[\"The Rose\"]'),(1754656,651706,5,'director',NULL,NULL),(1754656,109267,6,'writer','original screenplay by',NULL),(1754656,2130108,7,'writer','original screenplay by',NULL),(1754656,756686,8,'writer','based on \"Le Petit Prince\" by',NULL),(1754656,2185250,9,'producer','producer',NULL),(1756750,2502,10,'editor',NULL,NULL),(1756750,399088,1,'actor',NULL,'[\"David Wozniak\",\"Starbuck\"]'),(1756750,495920,2,'actress',NULL,'[\"Valérie\"]'),(1756750,1531116,3,'actor',NULL,'[\"Avocat\"]'),(1756750,679930,4,'actor',NULL,'[\"Frère sombre\"]'),(1756750,779433,5,'director',NULL,NULL),(1756750,677587,6,'writer',NULL,NULL),(1756750,745689,7,'producer','producer',NULL),(1756750,4554016,8,'composer',NULL,NULL),(1756750,5602,9,'cinematographer','director of photography',NULL),(1756832,2474998,1,'actress',NULL,'[\"Madison\"]'),(1756832,3678876,2,'actress',NULL,'[\"Lindsay\"]'),(1756832,1797322,3,'actor',NULL,'[\"Andrew Porter\"]'),(1756832,930226,4,'actress',NULL,'[\"Professor Curtis\"]'),(1756832,3048048,5,'director',NULL,NULL),(1756832,3049642,6,'writer',NULL,NULL),(1756832,3632859,7,'writer',NULL,NULL),(1756832,3007784,8,'composer',NULL,NULL),(1756832,1155313,9,'cinematographer','director of photography',NULL),(1757742,1087822,10,'editor',NULL,NULL),(1757742,502097,1,'actor',NULL,'[\"Alan White\"]'),(1757742,1213456,2,'actress',NULL,'[\"Caitlin White\"]'),(1757742,1574,3,'actor',NULL,'[\"Dr. Helzer\"]'),(1757742,321800,4,'actress',NULL,'[\"Ellen Keegan\"]'),(1757742,2165066,5,'director',NULL,NULL),(1757742,181579,6,'writer','written by',NULL),(1757742,2541742,7,'producer','producer',NULL),(1757742,721432,8,'composer',NULL,NULL),(1757742,1087719,9,'cinematographer',NULL,NULL),(1757746,2047344,10,'editor',NULL,NULL),(1757746,1501388,1,'actor',NULL,'[\"Tom\"]'),(1757746,1200748,2,'actress',NULL,'[\"Abbey\"]'),(1757746,1665054,3,'actor',NULL,'[\"Anthony\"]'),(1757746,726223,4,'actor',NULL,'[\"Father Riley\"]'),(1757746,2040027,5,'director',NULL,NULL),(1757746,1410462,6,'writer','story',NULL),(1757746,2986811,7,'writer','story',NULL),(1757746,3016367,8,'composer',NULL,NULL),(1757746,3512,9,'cinematographer',NULL,NULL),(1757944,2445082,10,'production_designer',NULL,NULL),(1757944,3926596,1,'actress',NULL,'[\"Princess Evelyn Cottington\"]'),(1757944,2454994,2,'actor',NULL,'[\"Theodore Snyder\"]'),(1757944,490127,3,'actress',NULL,'[\"Aunt Fay\"]'),(1757944,354479,4,'actor',NULL,'[\"Lawrence\"]'),(1757944,2079484,5,'director',NULL,NULL),(1757944,2536503,6,'writer','written by',NULL),(1757944,490375,7,'producer','producer',NULL),(1757944,725808,8,'composer',NULL,NULL),(1757944,1467511,9,'cinematographer',NULL,NULL),(1758563,1796515,1,'actor',NULL,'[\"Accordion Player\"]'),(1758563,1284117,2,'director',NULL,NULL),(1758575,4507147,10,'composer',NULL,NULL),(1758575,1483867,1,'actor',NULL,'[\"Don Miller\"]'),(1758575,2322853,2,'actress',NULL,'[\"Penny\"]'),(1758575,713389,3,'actress',NULL,'[\"Lauryn\"]'),(1758575,919482,4,'actor',NULL,'[\"The Pope\"]'),(1758575,1741105,5,'director',NULL,NULL),(1758575,4149854,6,'writer','screenplay',NULL),(1758575,1741471,7,'writer','screenplay',NULL),(1758575,302983,8,'producer','producer',NULL),(1758575,760244,9,'producer','producer',NULL),(1758692,1458741,10,'cinematographer','director of photography',NULL),(1758692,428065,1,'actress',NULL,'[\"Anna\"]'),(1758692,947338,2,'actor',NULL,'[\"Jacob\"]'),(1758692,2225369,3,'actress',NULL,'[\"Sam\"]'),(1758692,3404934,4,'actor',NULL,'[\"Simon\"]'),(1758692,2035886,5,'director',NULL,NULL),(1758692,1726378,6,'writer','written by',NULL),(1758692,2009933,7,'producer','producer',NULL),(1758692,818304,8,'producer','producer',NULL),(1758692,641169,9,'composer',NULL,NULL),(1758795,1397781,10,'cinematographer','director of photography',NULL),(1758795,2201555,1,'actress',NULL,'[\"Brandy Klark\"]'),(1758795,2215447,2,'actor',NULL,'[\"Cameron\"]'),(1758795,352778,3,'actor',NULL,'[\"Willy\"]'),(1758795,790057,4,'actress',NULL,'[\"Fiona\"]'),(1758795,962849,5,'director',NULL,NULL),(1758795,5367,6,'producer','producer',NULL),(1758795,998099,7,'producer','producer',NULL),(1758795,865189,8,'producer','producer',NULL),(1758795,774306,9,'composer',NULL,NULL),(1758830,2706,10,'editor',NULL,NULL),(1758830,748620,1,'actor',NULL,'[\"Pete\"]'),(1758830,5182,2,'actress',NULL,'[\"Debbie\"]'),(1758830,2654829,3,'actress',NULL,'[\"Sadie\"]'),(1758830,2957717,4,'actress',NULL,'[\"Charlotte\"]'),(1758830,31976,5,'director',NULL,NULL),(1758830,578814,6,'producer','producer',NULL),(1758830,870106,7,'producer','producer',NULL),(1758830,109726,8,'composer',NULL,NULL),(1758830,3659,9,'cinematographer','director of photography',NULL),(1759744,1394761,10,'producer','producer',NULL),(1759744,2356940,1,'actress',NULL,'[\"Leslie \'Lulu\' Van Houten\"]'),(1759744,1741002,2,'actor',NULL,'[\"Charles Manson\"]'),(1759744,1788739,3,'actress',NULL,'[\"Patricia \'Katie\' Krenwinkel\"]'),(1759744,8205766,4,'actress',NULL,'[\"Susan \'Sadie\' Atkins\"]'),(1759744,366004,5,'director',NULL,NULL),(1759744,877587,6,'writer','written by',NULL),(1759744,761541,7,'writer','based on the book \"The Family\" by',NULL),(1759744,9489667,8,'writer','based on the book \"The Long Prison Journey of Leslie Van Houten\" by',NULL),(1759744,6136327,9,'producer','producer',NULL),(1760967,1190005,10,'editor',NULL,NULL),(1760967,1981893,1,'actor',NULL,'[\"Aaron\"]'),(1760967,6878585,2,'actor',NULL,'[\"Social Worker\"]'),(1760967,4534098,3,'actor',NULL,'[\"Ed\"]'),(1760967,5009508,4,'actor',NULL,'[\"Chris\"]'),(1760967,2304008,5,'director',NULL,NULL),(1760967,1479780,6,'producer','producer',NULL),(1760967,2134910,7,'cinematographer','director of photography',NULL),(1760967,2397094,8,'editor',NULL,NULL),(1760967,293352,9,'editor',NULL,NULL),(1762248,3570554,1,'actress',NULL,'[\"Jane\"]'),(1762248,956146,2,'actress',NULL,'[\"Zoinx\"]'),(1762248,3250667,3,'actress',NULL,'[\"Zylar\"]'),(1762248,438219,4,'actress',NULL,'[\"Barr\"]'),(1762248,2112342,5,'director',NULL,NULL),(1762248,2884474,6,'producer','producer',NULL),(1762248,2218177,7,'cinematographer',NULL,NULL),(1762248,3186586,8,'editor',NULL,NULL),(1762248,2340360,9,'production_designer',NULL,NULL),(1764141,439292,1,'actress',NULL,'[\"Seba\"]'),(1764141,1655591,2,'actress',NULL,'[\"Fayzah\"]'),(1764141,444324,3,'actor',NULL,'[\"Essam\"]'),(1764141,760234,4,'actor',NULL,'[\"Adel\"]'),(1764141,2559996,5,'director',NULL,NULL),(1764141,2667119,6,'producer','producer',NULL),(1764141,3192881,7,'composer',NULL,NULL),(1764141,2425283,8,'cinematographer',NULL,NULL),(1764141,2145492,9,'editor',NULL,NULL),(1764183,553498,10,'composer',NULL,NULL),(1764183,152,1,'actor',NULL,'[\"Robert Miller\"]'),(1764183,215,2,'actress',NULL,'[\"Ellen Miller\"]'),(1764183,1779870,3,'actress',NULL,'[\"Brooke Miller\"]'),(1764183,619,4,'actor',NULL,'[\"Det. Michael Bryer\"]'),(1764183,1906430,5,'director',NULL,NULL),(1764183,81046,6,'producer','producer',NULL),(1764183,4312021,7,'producer','producer',NULL),(1764183,7011,8,'producer','producer',NULL),(1764183,1834530,9,'producer','producer',NULL),(1764234,777455,10,'producer','producer',NULL),(1764234,93,1,'actor',NULL,'[\"Jackie\"]'),(1764234,501,2,'actor',NULL,'[\"Markie Trattman\"]'),(1764234,420955,3,'actor',NULL,'[\"Driver\"]'),(1764234,1058940,4,'actor',NULL,'[\"Frankie\"]'),(1764234,231596,5,'director',NULL,NULL),(1764234,383389,6,'writer','based on the novel \"Cogan\'s Trade\" by',NULL),(1764234,306890,7,'producer','producer',NULL),(1764234,441097,8,'producer','producer',NULL),(1764234,2445382,9,'producer','producer',NULL),(1764275,1291213,10,'cinematographer',NULL,NULL),(1764275,959963,1,'actor',NULL,'[\"Gulli\"]'),(1764275,1156466,2,'actor',NULL,'[\"Jón\"]'),(1764275,423975,3,'actor',NULL,'[\"Palli\"]'),(1764275,4157959,4,'actress',NULL,'[\"Halla\"]'),(1764275,466349,5,'director',NULL,NULL),(1764275,4852341,6,'writer',NULL,NULL),(1764275,1297538,7,'producer','producer',NULL),(1764275,1154710,8,'composer',NULL,NULL),(1764275,1640152,9,'composer',NULL,NULL),(1764625,484475,10,'writer','screenplay',NULL),(1764625,1504627,1,'actor',NULL,'[\"Tadeo Jones\"]'),(1764625,1043338,2,'actress',NULL,'[\"Sara Lavrof\"]'),(1764625,1239566,3,'actor',NULL,'[\"Freddy\"]'),(1764625,179069,4,'actor',NULL,'[\"Freddy\"]'),(1764625,1955897,5,'director',NULL,NULL),(1764625,529787,6,'writer','screenplay',NULL),(1764625,1729366,7,'writer','screenplay',NULL),(1764625,602508,8,'writer','screenplay',NULL),(1764625,309027,9,'writer','screenplay',NULL),(1764645,137534,10,'editor',NULL,NULL),(1764645,1875238,1,'actress',NULL,'[\"Marie\"]'),(1764645,192889,2,'actor',NULL,'[\"Filthy\"]'),(1764645,5510087,3,'actor',NULL,'[\"Sean\"]'),(1764645,1203457,4,'actress',NULL,'[\"Kathy\"]'),(1764645,3322414,5,'director',NULL,NULL),(1764645,2126141,6,'writer',NULL,NULL),(1764645,558563,7,'producer','producer',NULL),(1764645,427831,8,'composer',NULL,NULL),(1764645,1818572,9,'cinematographer',NULL,NULL),(1764651,503592,10,'producer','producer',NULL),(1764651,230,1,'actor',NULL,'[\"Barney Ross\"]'),(1764651,2955013,2,'actor',NULL,'[\"Billy The Kid\"]'),(1764651,1330276,3,'actor',NULL,'[\"Toll Road\"]'),(1764651,241,4,'actor',NULL,'[\"Vilain\"]'),(1764651,922346,5,'director',NULL,NULL),(1764651,921013,6,'writer','screenplay',NULL),(1764651,442190,7,'writer','story',NULL),(1764651,13234,8,'writer','story',NULL),(1764651,1709264,9,'writer','characters',NULL),(1764657,779720,1,'self',NULL,'[\"Self\"]'),(1764657,690677,2,'self',NULL,'[\"Self\"]'),(1764657,3117600,3,'self',NULL,'[\"Self\"]'),(1764657,3117593,4,'self',NULL,'[\"Self\"]'),(1764657,279842,5,'composer',NULL,NULL),(1764657,3117660,6,'self',NULL,'[\"Self\"]'),(1764657,3118087,7,'self',NULL,'[\"Self\"]'),(1764666,2952155,10,'writer','based on the book by',NULL),(1764666,72533,1,'actress',NULL,'[\"Jillian\"]'),(1764666,88298,2,'actor',NULL,'[\"Lou\"]'),(1764666,130,3,'actress',NULL,'[\"Bev\"]'),(1764666,155,4,'actress',NULL,'[\"Tower\"]'),(1764666,1074748,5,'director',NULL,NULL),(1764666,462895,6,'writer','screenplay by',NULL),(1764666,436960,7,'writer','screenplay by',NULL),(1764666,748429,8,'writer','screenplay by',NULL),(1764666,504327,9,'writer','screenplay by',NULL),(1765847,7308759,1,'actor',NULL,'[\"Rogelio\"]'),(1765847,4161717,2,'actress',NULL,'[\"Karla\"]'),(1765847,4643025,3,'actress',NULL,'[\"Latifa\"]'),(1765847,4911369,4,'director',NULL,NULL),(1765847,4910900,5,'cinematographer',NULL,NULL),(1766094,247524,10,'producer','producer',NULL),(1766094,1415323,1,'actress',NULL,'[\"Molly\",\"Brook\"]'),(1766094,5315,2,'actor',NULL,'[\"Armon\"]'),(1766094,5282,3,'actor',NULL,'[\"Sam\"]'),(1766094,2811944,4,'actor',NULL,'[\"Nicholas\"]'),(1766094,891114,5,'director',NULL,NULL),(1766094,1615610,6,'writer','written by',NULL),(1766094,669093,7,'writer','written by',NULL),(1766094,1180690,8,'producer','producer',NULL),(1766094,1148321,9,'producer','producer',NULL),(1766175,378194,10,'composer',NULL,NULL),(1766175,3095562,1,'actress',NULL,'[\"Micky\"]'),(1766175,3789989,2,'actress',NULL,'[\"Do\"]'),(1766175,289098,3,'actress',NULL,'[\"Julia\"]'),(1766175,209428,4,'actress',NULL,'[\"Elinor\"]'),(1766175,812200,5,'director',NULL,NULL),(1766175,314665,6,'writer',NULL,NULL),(1766175,418469,7,'writer','novel',NULL),(1766175,429134,8,'producer','producer',NULL),(1766175,511698,9,'producer','producer',NULL),(17663992,2248084,10,'producer','producer',NULL),(17663992,1073,1,'actress',NULL,'[\"Gale Weathers\"]'),(17663992,4574440,2,'actress',NULL,'[\"Sam Carpenter\"]'),(17663992,4911194,3,'actress',NULL,'[\"Tara Carpenter\"]'),(17663992,5506401,4,'actress',NULL,'[\"Mindy Meeks-Martin\"]'),(17663992,2366012,5,'director',NULL,NULL),(17663992,2419470,6,'director',NULL,NULL),(17663992,888743,7,'writer','written by',NULL),(17663992,2361509,8,'writer','written by',NULL),(17663992,932078,9,'writer','based on characters created by',NULL),(1767354,25465,10,'cinematographer','director of photography',NULL),(1767354,947338,1,'actor',NULL,'[\"Odd Thomas\"]'),(1767354,3547112,2,'actress',NULL,'[\"Penny Kalisto\"]'),(1767354,7237,3,'actress',NULL,'[\"Odd\'s Mother\"]'),(1767354,656275,4,'actor',NULL,'[\"Harlo Landerson\"]'),(1767354,814085,5,'director',NULL,NULL),(1767354,465588,6,'writer','based on the novel \"Odd Thomas\" by',NULL),(1767354,49689,7,'producer','producer',NULL),(1767354,2637037,8,'producer','producer',NULL),(1767354,1067825,9,'composer',NULL,NULL),(1767372,790481,10,'composer',NULL,NULL),(1767372,1782299,1,'actress',NULL,'[\"Isabella Patterson\"]'),(1767372,5562,2,'actor',NULL,'[\"Arnold Albertson\"]'),(1767372,98,3,'actress',NULL,'[\"Jane Claremont\"]'),(1767372,1063517,4,'actress',NULL,'[\"Delta Simmons\"]'),(1767372,953,5,'director',NULL,NULL),(1767372,91673,6,'writer','written by',NULL),(1767372,237041,7,'producer','producer',NULL),(1767372,4690271,8,'producer','producer',NULL),(1767372,927561,9,'producer','producer',NULL),(1767382,489059,10,'composer',NULL,NULL),(1767382,647634,1,'actress',NULL,'[\"Sarah\"]'),(1767382,872242,2,'actor',NULL,'[\"John\"]'),(1767382,2033731,3,'actor',NULL,'[\"Peter\"]'),(1767382,3631803,4,'actress',NULL,'[\"Sophia\"]'),(1767382,448900,5,'director',NULL,NULL),(1767382,490582,6,'director',NULL,NULL),(1767382,3889354,7,'writer','film \"La casa muda\"',NULL),(1767382,2864272,8,'writer','original screen play',NULL),(1767382,1126792,9,'producer','producer',NULL),(1769363,1397781,10,'cinematographer',NULL,NULL),(1769363,278979,1,'actress',NULL,'[\"Janice\"]'),(1769363,582149,2,'actor',NULL,'[\"Tim\"]'),(1769363,333410,3,'actor',NULL,'[\"Doug\"]'),(1769363,15196,4,'actress',NULL,'[\"Jill\"]'),(1769363,456509,5,'director',NULL,NULL),(1769363,1837043,6,'producer','producer',NULL),(1769363,1660148,7,'producer','producer',NULL),(1769363,1937968,8,'producer','executive producer',NULL),(1769363,706615,9,'composer',NULL,NULL),(1770734,385467,10,'composer',NULL,NULL),(1770734,654110,1,'actor',NULL,'[\"Mac\"]'),(1770734,2057859,2,'actress',NULL,'[\"Collette\"]'),(1770734,96,3,'actress',NULL,'[\"Kate Fletcher\"]'),(1770734,318821,4,'actor',NULL,'[\"Gerry\"]'),(1770734,1016428,5,'director',NULL,NULL),(1770734,1687155,6,'writer','screenplay',NULL),(1770734,168753,7,'producer','producer',NULL),(1770734,347384,8,'producer','producer',NULL),(1770734,1103466,9,'producer','producer',NULL),(1772240,169420,10,'composer',NULL,NULL),(1772240,1406239,1,'actor',NULL,'[\"Ben Anderson\"]'),(1772240,654197,2,'actor',NULL,'[\"Nate\"]'),(1772240,730455,3,'actor',NULL,'[\"John Grey\"]'),(1772240,465959,4,'actor',NULL,'[\"Deputy Secretary of Defense\"]'),(1772240,1018426,5,'director',NULL,NULL),(1772240,2921766,6,'writer','written by',NULL),(1772240,2309430,7,'writer','co-writer',NULL),(1772240,67457,8,'producer','producer',NULL),(1772240,1222086,9,'producer','producer',NULL),(1772250,989434,10,'composer',NULL,NULL),(1772250,1273697,1,'actor',NULL,'[\"Adrián\"]'),(1772250,306357,2,'actress',NULL,'[\"Fabiana\"]'),(1772250,3599039,3,'actress',NULL,'[\"Mesera\"]'),(1772250,5415981,4,'actor',NULL,'[\"Novio Pelea\"]'),(1772250,1223381,5,'director',NULL,NULL),(1772250,1523747,6,'writer','screenplay',NULL),(1772250,1523568,7,'writer','original story by',NULL),(1772250,1761469,8,'producer','producer',NULL),(1772250,3590688,9,'producer','producer',NULL),(1772341,2273444,10,'composer',NULL,NULL),(1772341,604,1,'actor',NULL,'[\"Ralph\"]'),(1772341,1442113,2,'actor',NULL,'[\"Felix\"]'),(1772341,528331,3,'actress',NULL,'[\"Calhoun\"]'),(1772341,798971,4,'actress',NULL,'[\"Vanellope\"]'),(1772341,601781,5,'director',NULL,NULL),(1772341,1601882,6,'writer','story by',NULL),(1772341,714114,7,'writer','story by',NULL),(1772341,1601644,8,'writer','screenplay by',NULL),(1772341,1192875,9,'producer','producer',NULL),(1772373,386640,10,'composer',NULL,NULL),(1772373,1416330,1,'actor',NULL,'[\"Philip Markoff\"]'),(1772373,115671,2,'actress',NULL,'[\"Megan McAllister\"]'),(1772373,1208725,3,'actor',NULL,'[\"Detective Frye\"]'),(1772373,132610,4,'actress',NULL,'[\"Susan McAllister\"]'),(1772373,443181,5,'director',NULL,NULL),(1772373,3798,6,'writer','written by',NULL),(1772373,6809,7,'writer','written by',NULL),(1772373,164181,8,'producer','producer',NULL),(1772373,1377990,9,'producer','producer',NULL),(1772398,2653161,10,'production_designer',NULL,NULL),(1772398,562848,1,'actor',NULL,'[\"Sidney\"]'),(1772398,4170028,2,'actor',NULL,'[\"Isaiah\"]'),(1772398,120128,3,'actress',NULL,'[\"Joan\"]'),(1772398,915125,4,'actress',NULL,'[\"Marianne\"]'),(1772398,4170048,5,'director',NULL,NULL),(1772398,4101103,6,'producer','producer',NULL),(1772398,4175771,7,'composer',NULL,NULL),(1772398,1850507,8,'cinematographer',NULL,NULL),(1772398,1339041,9,'editor',NULL,NULL),(1772424,644393,10,'cinematographer',NULL,NULL),(1772424,4463556,1,'actress',NULL,'[\"Takla\"]'),(1772424,1701024,2,'actress',NULL,'[\"Amale\"]'),(1772424,4463554,3,'actress',NULL,'[\"Yvonne\"]'),(1772424,4599748,4,'actress',NULL,'[\"Afaf\"]'),(1772424,2764802,5,'writer','screenplay',NULL),(1772424,2125368,6,'writer','screenplay',NULL),(1772424,81179,7,'writer','collaboration',NULL),(1772424,7014,8,'producer','producer',NULL),(1772424,1848588,9,'composer',NULL,NULL),(1772925,3363220,10,'composer',NULL,NULL),(1772925,4807635,1,'self',NULL,'[\"Self\"]'),(1772925,4929877,2,'self',NULL,'[\"Self\"]'),(1772925,3975879,3,'self',NULL,'[\"Self\"]'),(1772925,5630237,4,'self',NULL,'[\"Self\"]'),(1772925,312173,5,'director',NULL,NULL),(1772925,2250990,6,'producer','producer',NULL),(1772925,1215065,7,'producer','producer',NULL),(1772925,3362914,8,'composer',NULL,NULL),(1772925,3561071,9,'composer',NULL,NULL),(1778258,156496,10,'editor',NULL,NULL),(1778258,1474034,1,'actor',NULL,'[\"Chan Kit\"]'),(1778258,1855682,2,'actress',NULL,'[\"Cheung Wing\"]'),(1778258,490492,3,'actor',NULL,'[\"To Hok-Shun\"]'),(1778258,157785,4,'actor',NULL,'[\"Jeff\"]'),(1778258,1494662,5,'director',NULL,NULL),(1778258,4183613,6,'writer',NULL,NULL),(1778258,1125508,7,'producer','producer',NULL),(1778258,4391705,8,'composer',NULL,NULL),(1778258,939145,9,'cinematographer','director of photography',NULL),(1778304,2124081,10,'producer','producer',NULL),(1778304,3785503,1,'actress',NULL,'[\"Katie\"]'),(1778304,1053580,2,'actress',NULL,'[\"Kristi\"]'),(1778304,2166469,3,'actor',NULL,'[\"Dennis\"]'),(1778304,1584283,4,'actress',NULL,'[\"Julie\"]'),(1778304,1160962,5,'director',NULL,NULL),(1778304,1413364,6,'director',NULL,NULL),(1778304,484907,7,'writer','written by',NULL),(1778304,2305431,8,'writer','film \"Paranormal Activity\"',NULL),(1778304,89658,9,'producer','producer',NULL),(1780798,2291162,10,'producer','producer',NULL),(1780798,1022918,1,'actor',NULL,'[\"Kent\"]'),(1780798,20751,2,'actress',NULL,'[\"Meg\"]'),(1780798,1780,3,'actor',NULL,'[\"Karlsson\"]'),(1780798,4680692,4,'actor',NULL,'[\"Jack\"]'),(1780798,1218281,5,'director',NULL,NULL),(1780798,1755986,6,'writer','written by',NULL),(1780798,2225247,7,'producer','producer',NULL),(1780798,1003922,8,'producer','producer',NULL),(1780798,744834,9,'producer','producer',NULL),(1780967,308838,10,'producer','producer',NULL),(1780967,829576,1,'actress',NULL,'[\"Jean Seberg\"]'),(1780967,40939,2,'actor',NULL,'[\"Romain Gary\"]'),(1780967,9982380,3,'actor',NULL,'[\"Diego Gary\"]'),(1780967,1925239,4,'actor',NULL,'[\"Jack Solomon\"]'),(1780967,4970700,5,'director',NULL,NULL),(1780967,1100123,6,'writer','written by',NULL),(1780967,3143608,7,'writer','written by',NULL),(1780967,9685533,8,'producer','producer',NULL),(1780967,1757754,9,'producer','producer',NULL),(1781058,5695,10,'cinematographer','director of photography',NULL),(1781058,437,1,'actor',NULL,'[\"Wilson\"]'),(1781058,1648337,2,'actress',NULL,'[\"Dog Lover\"]'),(1781058,3357942,3,'actor',NULL,'[\"Laptop Man\"]'),(1781058,7435004,4,'actor',NULL,'[\"Bearded Man\"]'),(1781058,2574897,5,'director',NULL,NULL),(1781058,167280,6,'writer','graphic novel',NULL),(1781058,1510486,7,'producer','producer',NULL),(1781058,803826,8,'producer','producer',NULL),(1781058,109726,9,'composer',NULL,NULL),(1781769,916986,10,'producer','producer',NULL),(1781769,461136,1,'actress',NULL,'[\"Anna Karenina\"]'),(1781769,179,2,'actor',NULL,'[\"Karenin\"]'),(1781769,1093951,3,'actor',NULL,'[\"Vronsky\"]'),(1781769,532193,4,'actor',NULL,'[\"Oblonsky\"]'),(1781769,942504,5,'director',NULL,NULL),(1781769,1779,6,'writer','screenplay',NULL),(1781769,866243,7,'writer','novel',NULL),(1781769,79677,8,'producer','producer',NULL),(1781769,271479,9,'producer','producer',NULL),(1781812,4707686,10,'composer',NULL,NULL),(1781812,4051,1,'actor',NULL,'[\"Malcolm Young\"]'),(1781812,4056899,2,'actor',NULL,'[\"Edward Young\"]'),(1781812,908914,3,'actress',NULL,'[\"Eve\"]'),(1781812,608405,4,'actor',NULL,'[\"General Williams\"]'),(1781812,2373106,5,'director',NULL,NULL),(1781812,2373713,6,'producer','producer',NULL),(1781812,3172318,7,'producer','producer',NULL),(1781812,4308768,8,'composer',NULL,NULL),(1781812,4707707,9,'composer',NULL,NULL),(1781840,548718,10,'cinematographer','director of photography',NULL),(1781840,1335,1,'actress',NULL,'[\"Naomi Caldwell\"]'),(1781840,102,2,'actor',NULL,'[\"Carroll Caldwell\"]'),(1781840,829032,3,'actor',NULL,'[\"Phillip Bedford\"]'),(1781840,1598,4,'actor',NULL,'[\"Jimbo Caldwell\"]'),(1781840,671,5,'director',NULL,NULL),(1781840,258370,6,'writer','written by',NULL),(1781840,467083,7,'producer','producer',NULL),(1781840,734954,8,'producer','producer',NULL),(1781840,4914265,9,'composer',NULL,NULL),(1783732,3911,10,'composer',NULL,NULL),(1783732,3311695,1,'actor',NULL,'[\"Dave\"]'),(1783732,2373827,2,'actor',NULL,'[\"John\"]'),(1783732,316079,3,'actor',NULL,'[\"Arnie Blondestone\"]'),(1783732,317,4,'actor',NULL,'[\"Dr. Albert Marconi\"]'),(1783732,181741,5,'director',NULL,NULL),(1783732,4200139,6,'writer','based on the story by',NULL),(1783732,2038534,7,'producer','producer',NULL),(1783732,1034889,8,'producer','producer',NULL),(1783732,1228585,9,'producer','producer',NULL),(1783798,2515893,10,'editor',NULL,NULL),(1783798,87109,1,'actress',NULL,'[\"Jenny\"]'),(1783798,227,2,'actress',NULL,'[\"Lucy\"]'),(1783798,2104119,3,'actor',NULL,'[\"Jay\"]'),(1783798,9446930,4,'actor',NULL,'[\"Murray\"]'),(1783798,1700,5,'director',NULL,NULL),(1783798,864987,6,'writer','screenplay',NULL),(1783798,35465,7,'producer','producer',NULL),(1783798,345491,8,'producer','producer',NULL),(1783798,502900,9,'cinematographer',NULL,NULL),(1784575,1249167,10,'production_designer',NULL,NULL),(1784575,463649,1,'actor',NULL,'[\"Limun\"]'),(1784575,1320016,2,'actor',NULL,'[\"Radmilo\"]'),(1784575,691420,3,'actress',NULL,'[\"Biserka\"]'),(1784575,1060418,4,'actor',NULL,'[\"Mirko\"]'),(1784575,236729,5,'director',NULL,NULL),(1784575,699325,6,'producer','executive producer',NULL),(1784575,1352737,7,'composer',NULL,NULL),(1784575,427068,8,'cinematographer',NULL,NULL),(1784575,548665,9,'editor',NULL,NULL),(1785612,654601,10,'producer','producer',NULL),(1785612,360213,1,'self',NULL,'[\"Self\"]'),(1785612,1247855,2,'self',NULL,'[\"Self\"]'),(1785612,330371,3,'self',NULL,'[\"Self\"]'),(1785612,5053,4,'self',NULL,'[\"Self\"]'),(1785612,2481948,5,'director',NULL,NULL),(1785612,80521,6,'producer','producer',NULL),(1785612,205542,7,'producer','producer',NULL),(1785612,1370488,8,'producer','producer',NULL),(1785612,2126669,9,'producer','producer',NULL),(1786751,824175,10,'production_designer',NULL,NULL),(1786751,614,1,'actor',NULL,'[\"Hilly Kristal\"]'),(1786751,15196,2,'actress',NULL,'[\"Debbie Harry\"]'),(1786751,58581,3,'actor',NULL,'[\"Stiv Bators\"]'),(1786751,209113,4,'actor',NULL,'[\"Taxi\"]'),(1786751,589168,5,'director',NULL,NULL),(1786751,767713,6,'writer','written by',NULL),(1786751,2045518,7,'producer','producer',NULL),(1786751,654795,8,'cinematographer',NULL,NULL),(1786751,1521046,9,'editor',NULL,NULL),(1787127,1134771,10,'cinematographer','director of photography',NULL),(1787127,4329298,1,'actor',NULL,'[\"Nik\"]'),(1787127,4329341,2,'actress',NULL,'[\"Rudina\"]'),(1787127,7785,3,'actor',NULL,'[\"Mark\"]'),(1787127,4329329,4,'actress',NULL,'[\"Drita\"]'),(1787127,551358,5,'director',NULL,NULL),(1787127,1580463,6,'writer','written by',NULL),(1787127,583796,7,'producer','producer',NULL),(1787127,995768,8,'composer',NULL,NULL),(1787127,509390,9,'composer',NULL,NULL),(1787729,1952066,10,'cinematographer',NULL,NULL),(1787729,3255563,1,'actor',NULL,'[\"Greg\"]'),(1787729,3742758,2,'actor',NULL,'[\"Chuck Spratt\"]'),(1787729,3686059,3,'actor',NULL,'[\"John Panda\"]'),(1787729,2803002,4,'actress',NULL,'[\"Jackie\"]'),(1787729,1957260,5,'director',NULL,NULL),(1787729,1952786,6,'writer','story',NULL),(1787729,1922875,7,'writer','story',NULL),(1787729,1800791,8,'writer','story',NULL),(1787729,2001753,9,'cinematographer',NULL,NULL),(1787777,1827744,10,'composer',NULL,NULL),(1787777,2551033,1,'self',NULL,'[\"Self\"]'),(1787777,3708716,2,'self',NULL,'[\"Self\"]'),(1787777,5035127,3,'self',NULL,'[\"Self\"]'),(1787777,5035474,4,'self',NULL,'[\"Self\"]'),(1787777,1427149,5,'director',NULL,NULL),(1787777,1425662,6,'writer','written by',NULL),(1787777,5584727,7,'producer','producer',NULL),(1787777,654601,8,'producer','producer',NULL),(1787777,772290,9,'producer','producer',NULL),(1788391,1124802,10,'cinematographer','director of photography',NULL),(1788391,556453,1,'actor',NULL,'[\"Jay\"]'),(1788391,1769728,2,'actress',NULL,'[\"Shel\"]'),(1788391,4207396,3,'actor',NULL,'[\"Sam\"]'),(1788391,806968,4,'actor',NULL,'[\"Gal\"]'),(1788391,1296554,5,'director',NULL,NULL),(1788391,4207229,6,'writer','written by',NULL),(1788391,2095003,7,'producer','producer',NULL),(1788391,823288,8,'producer','producer',NULL),(1788391,1546919,9,'composer',NULL,NULL),(1788453,222615,10,'cinematographer','director of photography',NULL),(1788453,2763516,1,'actor',NULL,'[\"General Darwin\"]'),(1788453,2440777,2,'actress',NULL,'[\"Hannah Darwin\"]'),(1788453,540500,3,'actor',NULL,'[\"Dr. Werner von Kantlove\"]'),(1788453,3693285,4,'actress',NULL,'[\"Lolita Kantlove\"]'),(1788453,6955,5,'director',NULL,NULL),(1788453,2184232,6,'writer','story',NULL),(1788453,1684558,7,'writer','story',NULL),(1788453,827500,8,'producer','producer',NULL),(1788453,1789645,9,'composer',NULL,NULL),(1790809,64181,10,'writer','based on characters created by',NULL),(1790809,136,1,'actor',NULL,'[\"Captain Jack Sparrow\"]'),(1790809,1691,2,'actor',NULL,'[\"Hector Barbossa\"]'),(1790809,849,3,'actor',NULL,'[\"Captain Salazar\"]'),(1790809,89217,4,'actor',NULL,'[\"Will Turner\"]'),(1790809,1461392,5,'director',NULL,NULL),(1790809,1650283,6,'director',NULL,NULL),(1790809,622288,7,'writer','screenplay by',NULL),(1790809,744429,8,'writer','story by',NULL),(1790809,254645,9,'writer','based on characters created by',NULL),(1790864,2125212,10,'producer','producer',NULL),(1790864,3729721,1,'actor',NULL,'[\"Thomas\"]'),(1790864,2546012,2,'actress',NULL,'[\"Teresa\"]'),(1790864,2401020,3,'actor',NULL,'[\"Gally\"]'),(1790864,1032473,4,'actor',NULL,'[\"Newt\"]'),(1790864,1226871,5,'director',NULL,NULL),(1790864,3834300,6,'writer','screenplay by',NULL),(1790864,2233127,7,'writer','screenplay by',NULL),(1790864,2385905,8,'writer','screenplay by',NULL),(1790864,4212895,9,'writer','based upon the novel by',NULL),(1790885,325549,10,'editor',NULL,NULL),(1790885,1567113,1,'actress',NULL,'[\"Maya\"]'),(1790885,249291,2,'actor',NULL,'[\"Patrick - Squadron Team Leader\"]'),(1790885,695435,3,'actor',NULL,'[\"Justin - DEVGRU\"]'),(1790885,835016,4,'actor',NULL,'[\"George\"]'),(1790885,941,5,'director',NULL,NULL),(1790885,1676793,6,'writer','written by',NULL),(1790885,2691892,7,'producer','producer',NULL),(1790885,6035,8,'composer',NULL,NULL),(1790885,292132,9,'cinematographer','director of photography',NULL),(1790886,2681,10,'cinematographer','director of photography',NULL),(1790886,2071,1,'actor',NULL,'[\"Cam Brady\"]'),(1790886,302108,2,'actor',NULL,'[\"Marty Huggins\"]'),(1790886,837177,3,'actor',NULL,'[\"Mitch\"]'),(1790886,1518,4,'actor',NULL,'[\"Tim Wattley\"]'),(1790886,5366,5,'director',NULL,NULL),(1790886,376260,6,'writer','screenplay',NULL),(1790886,3347197,7,'writer','screenplay',NULL),(1790886,570912,8,'writer','story',NULL),(1790886,788640,9,'composer',NULL,NULL),(1791528,5696,10,'cinematographer','director of photography',NULL),(1791528,1618,1,'actor',NULL,'[\"Larry \\\"Doc\\\" Sportello\"]'),(1791528,982,2,'actor',NULL,'[\"Lt. Det. Christian F. \\\"Bigfoot\\\" Bjornsen\"]'),(1791528,5562,3,'actor',NULL,'[\"Coy Harlingen\"]'),(1791528,2239702,4,'actress',NULL,'[\"Shasta Fay Hepworth\"]'),(1791528,759,5,'director',NULL,NULL),(1791528,1535410,6,'writer','based on the novel by',NULL),(1791528,526917,7,'producer','producer',NULL),(1791528,783280,8,'producer','producer',NULL),(1791528,339351,9,'composer',NULL,NULL),(1791614,119785,10,'cinematographer',NULL,NULL),(1791614,3182094,1,'actor',NULL,'[\"Carson Phillips\"]'),(1791614,2313103,2,'actress',NULL,'[\"Malerie Baggs\"]'),(1791614,376716,3,'actress',NULL,'[\"April\"]'),(1791614,551,4,'actor',NULL,'[\"Neal Phillips\"]'),(1791614,200380,5,'director',NULL,NULL),(1791614,4539692,6,'producer','producer',NULL),(1791614,151780,7,'producer','producer',NULL),(1791614,674303,8,'producer','producer',NULL),(1791614,2606933,9,'composer',NULL,NULL),(1791681,4861816,10,'producer','producer',NULL),(1791681,3390312,1,'actress',NULL,'[\"Elizabeth\"]'),(1791681,1920618,2,'actor',NULL,'[\"Killian\"]'),(1791681,1752714,3,'actor',NULL,'[\"Killian\'s father\"]'),(1791681,447984,4,'actor',NULL,'[\"Officer Morgan\"]'),(1791681,2408930,5,'director',NULL,NULL),(1791681,4215026,6,'writer',NULL,NULL),(1791681,4111194,7,'writer',NULL,NULL),(1791681,4444526,8,'producer','producer',NULL),(1791681,3098724,9,'producer','producer',NULL),(1791682,944803,10,'producer','producer',NULL),(1791682,1774,1,'actor',NULL,'[\"Josh\"]'),(1791682,915208,2,'actress',NULL,'[\"Cornelia\"]'),(1791682,3485845,3,'actor',NULL,'[\"Jamie\"]'),(1791682,1086543,4,'actress',NULL,'[\"Darby\"]'),(1791682,876,5,'director',NULL,NULL),(1791682,406585,6,'writer','epigraph from \"A Master Builder\" by',NULL),(1791682,1728,7,'writer','epigraph from \"A Master Builder\" translated by',NULL),(1791682,4791912,8,'producer','producer',NULL),(1791682,748784,9,'producer','producer',NULL),(1793931,1086656,10,'cinematographer',NULL,NULL),(1793931,746162,1,'actor',NULL,'[\"Jeff Tuche\"]'),(1793931,620964,2,'actress',NULL,'[\"Cathy Tuche\"]'),(1793931,618795,3,'actress',NULL,'[\"Mamie Suze\"]'),(1793931,3676680,4,'actor',NULL,'[\"Donald Tuche, dit Coin-Coin\"]'),(1793931,57842,5,'director',NULL,NULL),(1793931,2382268,6,'writer','original scenario',NULL),(1793931,490702,7,'writer','adaptation and dialogue',NULL),(1793931,334926,8,'producer','producer',NULL),(1793931,1674139,9,'composer',NULL,NULL),(1798188,4233688,10,'writer','comic',NULL),(1798188,92961,1,'actress',NULL,'[\"Umi Matsuzaki\"]'),(1798188,636562,2,'actor',NULL,'[\"Akio Kazama\"]'),(1798188,947338,3,'actor',NULL,'[\"Shun Kazama\"]'),(1798188,376716,4,'actress',NULL,'[\"Saori Makimura\"]'),(1798188,2066439,5,'director',NULL,NULL),(1798188,4234019,6,'writer','original story',NULL),(1798188,594503,7,'writer','screenplay',NULL),(1798188,2146668,8,'writer','screenplay',NULL),(1798188,1439632,9,'writer','Additional Dialogue, English Language Adaptation',NULL),(1798684,724854,10,'producer','producer',NULL),(1798684,350453,1,'actor',NULL,'[\"Billy Hope\"]'),(1798684,1046097,2,'actress',NULL,'[\"Maureen Hope\"]'),(1798684,4802218,3,'actress',NULL,'[\"Leila Hope\"]'),(1798684,1845,4,'actor',NULL,'[\"Tick Wills\"]'),(1798684,298807,5,'director',NULL,NULL),(1798684,1176676,6,'writer','written by',NULL),(1798684,85542,7,'producer','producer',NULL),(1798684,89820,8,'producer','producer',NULL),(1798684,724843,9,'producer','producer',NULL),(1798709,1434016,10,'editor',NULL,NULL),(1798709,1618,1,'actor',NULL,'[\"Theodore\"]'),(1798709,10736,2,'actress',NULL,'[\"Amy\"]'),(1798709,424060,3,'actress',NULL,'[\"Samantha\"]'),(1798709,1913734,4,'actress',NULL,'[\"Catherine\"]'),(1798709,5069,5,'director',NULL,NULL),(1798709,2691892,6,'producer','producer',NULL),(1798709,484504,7,'producer','producer',NULL),(1798709,1841348,8,'composer',NULL,NULL),(1798709,887227,9,'cinematographer','director of photography',NULL),(1800241,837112,10,'producer','producer',NULL),(1800241,288,1,'actor',NULL,'[\"Irving Rosenfeld\"]'),(1800241,10736,2,'actress',NULL,'[\"Sydney Prosser\"]'),(1800241,177896,3,'actor',NULL,'[\"Richie DiMaso\"]'),(1800241,2225369,4,'actress',NULL,'[\"Rosalyn Rosenfeld\"]'),(1800241,751102,5,'director',NULL,NULL),(1800241,2545235,6,'writer','written by',NULL),(1800241,2691892,7,'producer','producer',NULL),(1800241,330335,8,'producer','producer',NULL),(1800241,746273,9,'producer','producer',NULL),(1800246,868128,10,'composer',NULL,NULL),(1800246,1374980,1,'actor',NULL,'[\"Jason\"]'),(1800246,430107,2,'actor',NULL,'[\"Mikey\"]'),(1800246,1886602,3,'actor',NULL,'[\"Daniel\"]'),(1800246,1782299,4,'actress',NULL,'[\"Ellie\"]'),(1800246,3230448,5,'director',NULL,NULL),(1800246,42992,6,'producer','producer',NULL),(1800246,4312021,7,'producer','producer',NULL),(1800246,640193,8,'producer','producer',NULL),(1800246,1834530,9,'producer','producer',NULL),(1800741,335400,10,'producer','producer',NULL),(1800741,3663324,1,'actress',NULL,'[\"Emily\"]'),(1800741,4554428,2,'actor',NULL,'[\"Sean\"]'),(1800741,1671147,3,'actress',NULL,'[\"Penelope\"]'),(1800741,2298016,4,'actor',NULL,'[\"Eddy\"]'),(1800741,1228976,5,'director',NULL,NULL),(1800741,5177729,6,'writer','written by',NULL),(1800741,12137,7,'writer','characters',NULL),(1800741,270549,8,'producer','producer',NULL),(1800741,316774,9,'producer','producer',NULL),(1801123,2161377,10,'editor',NULL,NULL),(1801123,3135135,1,'actor',NULL,'[\"No. 1 - Tim Horton\"]'),(1801123,1990944,2,'actor',NULL,'[\"No. 2\"]'),(1801123,1456457,3,'actor',NULL,'[\"Professor Acuri\"]'),(1801123,3931046,4,'actor',NULL,'[\"Mysterious Man\"]'),(1801123,2637294,5,'director',NULL,NULL),(1801123,2634491,6,'writer',NULL,NULL),(1801123,2366163,7,'producer','producer',NULL),(1801123,5128938,8,'composer',NULL,NULL),(1801123,1584144,9,'cinematographer',NULL,NULL),(1802750,159015,1,'director',NULL,NULL),(1805297,488625,10,'cinematographer',NULL,NULL),(1805297,524528,1,'actor',NULL,'[\"Jean-Louis Joubert\"]'),(1805297,452161,2,'actress',NULL,'[\"Suzanne Joubert\"]'),(1805297,893638,3,'actress',NULL,'[\"María Gonzalez\"]'),(1805297,560962,4,'actress',NULL,'[\"Concepción Ramirez\"]'),(1805297,494355,5,'director',NULL,NULL),(1805297,867374,6,'writer','scenario and dialogue',NULL),(1805297,173541,7,'producer','producer',NULL),(1805297,746041,8,'producer','producer',NULL),(1805297,5948,9,'composer',NULL,NULL),(1809231,406053,10,'cinematographer',NULL,NULL),(1809231,1178594,1,'actor',NULL,'[\"Oscar\"]'),(1809231,653626,2,'actor',NULL,'[\"Thor\"]'),(1809231,582278,3,'actor',NULL,'[\"Solør\"]'),(1809231,2791225,4,'actor',NULL,'[\"Billy\"]'),(1809231,994368,5,'director',NULL,NULL),(1809231,1867674,6,'writer','story',NULL),(1809231,2511326,7,'producer','executive producer',NULL),(1809231,2276540,8,'producer','executive producer',NULL),(1809231,1401580,9,'composer',NULL,NULL),(1809398,1227780,10,'writer','book',NULL),(1809398,1925239,1,'actor',NULL,'[\"Louis Zamperini\"]'),(1809398,2032193,2,'actor',NULL,'[\"Watanabe\"]'),(1809398,1727304,3,'actor',NULL,'[\"Phil\"]'),(1809398,1330560,4,'actor',NULL,'[\"Fitzgerald\"]'),(1809398,1401,5,'director',NULL,NULL),(1809398,1054,6,'writer','screenplay',NULL),(1809398,1053,7,'writer','screenplay',NULL),(1809398,481418,8,'writer','screenplay',NULL),(1809398,629933,9,'writer','screenplay',NULL),(1813314,2717241,1,'actress',NULL,'[\"Solveig\"]'),(1813314,2077509,2,'actress',NULL,'[\"Nora\"]'),(1813314,1350461,3,'director',NULL,NULL),(1813314,432375,4,'producer','producer',NULL),(1813314,1492711,5,'composer',NULL,NULL),(1813314,2561272,6,'cinematographer','director of photography',NULL),(1813314,2472187,7,'editor',NULL,NULL),(1813314,754052,8,'editor',NULL,NULL),(1813609,4937329,10,'composer',NULL,NULL),(1813609,45584,1,'actor',NULL,'[\"Kevin Sanders\"]'),(1813609,923105,2,'actress',NULL,'[\"Anne Sanders\"]'),(1813609,2160156,3,'actress',NULL,'[\"Jordan\"]'),(1813609,3938323,4,'actor',NULL,'[\"Larry\"]'),(1813609,233078,5,'director',NULL,NULL),(1813609,1359191,6,'writer',NULL,NULL),(1813609,519154,7,'writer',NULL,NULL),(1813609,4256393,8,'writer',NULL,NULL),(1813609,1067987,9,'producer','producer',NULL),(1813757,4257098,1,'actor',NULL,'[\"Captain Alex\"]'),(1813757,4256868,2,'actor',NULL,'[\"Richard\"]'),(1813757,4256326,3,'actor',NULL,'[\"Puffs\"]'),(1813757,4255719,4,'actor',NULL,'[\"Sergeant\"]'),(1813757,4254419,5,'director',NULL,NULL),(1813757,4256878,6,'composer',NULL,NULL),(1814621,871136,10,'composer',NULL,NULL),(1814621,275486,1,'actress',NULL,'[\"Portia Nathan\"]'),(1814621,748620,2,'actor',NULL,'[\"John Pressman\"]'),(1814621,1822659,3,'actor',NULL,'[\"Jeremiah\"]'),(1814621,5349,4,'actress',NULL,'[\"Corinne\"]'),(1814621,919369,5,'director',NULL,NULL),(1814621,188733,6,'writer','screenplay by',NULL),(1814621,5067996,7,'writer','based on the novel by',NULL),(1814621,1097895,8,'producer','producer',NULL),(1814621,583948,9,'producer','producer',NULL),(1815836,596364,10,'cinematographer',NULL,NULL),(1815836,1480489,1,'actor',NULL,NULL),(1815836,6500715,2,'actress',NULL,NULL),(1815836,2349958,3,'actress',NULL,'[\"Queen of Spain\"]'),(1815836,2148845,4,'actor',NULL,NULL),(1815836,3070614,5,'director',NULL,NULL),(1815836,2305781,6,'producer','producer',NULL),(1815836,3051957,7,'producer','producer',NULL),(1815836,2647329,8,'producer','producer',NULL),(1815836,2305072,9,'composer',NULL,NULL),(1815862,6133,10,'composer',NULL,NULL),(1815862,1535523,1,'actor',NULL,'[\"Kitai Raige\"]'),(1815862,219292,2,'actor',NULL,'[\"Private McQuarrie\"]'),(1815862,226,3,'actor',NULL,'[\"Cypher Raige\"]'),(1815862,645683,4,'actress',NULL,'[\"Faia Raige\"]'),(1815862,796117,5,'director',NULL,NULL),(1815862,1729428,6,'writer','screenplay',NULL),(1815862,489876,7,'producer','producer',NULL),(1815862,586,8,'producer','producer',NULL),(1815862,1496298,9,'producer','producer',NULL),(1816518,4384336,10,'producer','producer',NULL),(1816518,933727,1,'actor',NULL,'[\"Ernest\"]'),(1816518,5312818,2,'actress',NULL,'[\"Célestine\"]'),(1816518,519735,3,'actress',NULL,'[\"La Grise\"]'),(1816518,577616,4,'actor',NULL,'[\"Georges\"]'),(1816518,41334,5,'director',NULL,NULL),(1816518,665262,6,'director',NULL,NULL),(1816518,2883649,7,'director',NULL,NULL),(1816518,672032,8,'writer','scenario and dialogue',NULL),(1816518,6135541,9,'writer','after: D\'après les albums de',NULL),(1816608,697048,10,'composer',NULL,NULL),(1816608,3849842,1,'actress',NULL,'[\"Fay\",\"Layla\"]'),(1816608,1231,2,'actress',NULL,'[\"Ann\"]'),(1816608,406975,3,'actor',NULL,'[\"Don\"]'),(1816608,702142,4,'actor',NULL,'[\"Doctor Carbantes\"]'),(1816608,170043,5,'director',NULL,NULL),(1816608,5367652,6,'writer','based on the novel of the same name by',NULL),(1816608,79065,7,'producer','producer',NULL),(1816608,2131974,8,'producer','producer',NULL),(1816608,1729542,9,'producer','producer',NULL),(1817081,582171,10,'composer',NULL,NULL),(1817081,519043,1,'actor',NULL,'[\"Sam\"]'),(1817081,1218757,2,'actor',NULL,'[\"Eliot\"]'),(1817081,939697,3,'actress',NULL,'[\"Birdie\"]'),(1817081,1921376,4,'actor',NULL,'[\"Fan\"]'),(1817081,192478,5,'director',NULL,NULL),(1817081,2342540,6,'writer','screenplay',NULL),(1817081,1207050,7,'producer','producer',NULL),(1817081,4690271,8,'producer','producer',NULL),(1817081,927561,9,'producer','producer',NULL),(1817232,2956436,10,'writer','written by',NULL),(1817232,1605108,1,'actor',NULL,'[\"Phineas\"]'),(1817232,48389,2,'actor',NULL,'[\"Perry\",\"Mama\",\"Additional Voices\"]'),(1817232,864308,3,'actress',NULL,'[\"Candace\"]'),(1817232,5512177,4,'actor',NULL,'[\"Ferb\",\"Additional Voices\"]'),(1817232,1401131,5,'director',NULL,NULL),(1817232,693933,6,'writer','written by',NULL),(1817232,550578,7,'writer','written by',NULL),(1817232,3408251,8,'writer','written by',NULL),(1817232,963343,9,'writer','written by',NULL),(1817273,650164,10,'producer','producer',NULL),(1817273,331516,1,'actor',NULL,'[\"Luke\"]'),(1817273,177896,2,'actor',NULL,'[\"Avery\"]'),(1817273,578949,3,'actress',NULL,'[\"Romina\"]'),(1817273,3995471,4,'actor',NULL,'[\"Jack\"]'),(1817273,161834,5,'director',NULL,NULL),(1817273,1397579,6,'writer','story',NULL),(1817273,2942187,7,'writer','screenplay',NULL),(1817273,1987578,8,'producer','producer',NULL),(1817273,454004,9,'producer','producer',NULL),(1817287,2331729,10,'editor',NULL,NULL),(1817287,159008,1,'self',NULL,'[\"Self\"]'),(1817287,327273,2,'self',NULL,'[\"Self\"]'),(1817287,275509,3,'archive_footage',NULL,'[\"Self\"]'),(1817287,5974032,4,'self',NULL,'[\"Self\"]'),(1817287,2028000,5,'producer','producer',NULL),(1817287,1028107,6,'producer','producer',NULL),(1817287,284577,7,'producer','producer',NULL),(1817287,6962541,8,'composer',NULL,NULL),(1817287,717959,9,'editor',NULL,NULL),(1817676,889678,10,'cinematographer',NULL,NULL),(1817676,578949,1,'actress',NULL,'[\"Grace\"]'),(1817676,2028116,2,'actress',NULL,'[\"Ansiedad\"]'),(1817676,99,3,'actress',NULL,'[\"Ms. Armstrong\"]'),(1817676,546,4,'actor',NULL,'[\"Dr. Harford\"]'),(1817676,726638,5,'director',NULL,NULL),(1817676,1564800,6,'writer','screenplay',NULL),(1817676,275836,7,'producer','producer',NULL),(1817676,643967,8,'producer','producer',NULL),(1817676,501999,9,'composer',NULL,NULL),(1821426,582171,10,'composer',NULL,NULL),(1821426,155693,1,'actress',NULL,'[\"Samantha Smith-Dungy\"]'),(1821426,546,2,'actor',NULL,'[\"Duncan Dungy\"]'),(1821426,750037,3,'actress',NULL,'[\"Emily Smith-Dungy\"]'),(1821426,1428821,4,'actress',NULL,'[\"Lucinda Smith-Dungy\"]'),(1821426,1219307,5,'director',NULL,NULL),(1821426,3213569,6,'writer','written by',NULL),(1821426,1538113,7,'producer','producer',NULL),(1821426,2259350,8,'producer','producer',NULL),(1821426,2035423,9,'composer',NULL,NULL),(1821480,4449370,10,'writer','additional screenplay',NULL),(1821480,1799038,1,'actress',NULL,'[\"Vidya Venkatesan-Bagchi\"]'),(1821480,1913625,2,'actor',NULL,'[\"Inspector Satyaki Sinha aka Rana\"]'),(1821480,1778890,3,'actor',NULL,'[\"Arnab Bagchi\",\"Milan Damji\"]'),(1821480,1596350,4,'actor',NULL,'[\"Mr. Khan\"]'),(1821480,1223910,5,'director',NULL,NULL),(1821480,4298729,6,'writer','story',NULL),(1821480,1330994,7,'writer','additional screenplay',NULL),(1821480,1937760,8,'writer','dialogue',NULL),(1821480,1399188,9,'writer','dialogue',NULL),(1821549,3659,10,'cinematographer','director of photography',NULL),(1821549,1136,1,'actor',NULL,'[\"Woody Grant\"]'),(1821549,287182,2,'actor',NULL,'[\"David Grant\"]'),(1821549,820053,3,'actress',NULL,'[\"Kate Grant\"]'),(1821549,644022,4,'actor',NULL,'[\"Ross Grant\"]'),(1821549,668247,5,'director',NULL,NULL),(1821549,1504572,6,'writer','written by',NULL),(1821549,74100,7,'producer','producer',NULL),(1821549,947695,8,'producer','producer',NULL),(1821549,651366,9,'composer',NULL,NULL),(1821593,1743965,10,'production_designer',NULL,NULL),(1821593,774386,1,'actor',NULL,'[\"Jacky Vanmarsenille\"]'),(1821593,2334765,2,'actor',NULL,'[\"Diederik Maes\"]'),(1821593,4278439,3,'actress',NULL,'[\"Lucia Schepers\"]'),(1821593,764774,4,'actress',NULL,'[\"Eva Forrestier\"]'),(1821593,1742427,5,'director',NULL,NULL),(1821593,1494530,6,'producer','producer',NULL),(1821593,1743738,7,'composer',NULL,NULL),(1821593,1785999,8,'cinematographer',NULL,NULL),(1821593,220918,9,'editor',NULL,NULL),(1821641,2855886,10,'producer','producer',NULL),(1821641,705,1,'actress',NULL,'[\"Robin Wright\"]'),(1821641,172,2,'actor',NULL,'[\"Al\"]'),(1821641,358316,3,'actor',NULL,'[\"Dylan Truliner\"]'),(1821641,2240346,4,'actor',NULL,'[\"Aaron Wright\"]'),(1821641,284369,5,'director',NULL,NULL),(1821641,501015,6,'writer','novel \"The Futurological Congress\"',NULL),(1821641,116062,7,'producer','producer',NULL),(1821641,217524,8,'producer','producer',NULL),(1821641,246185,9,'producer','producer',NULL),(1821658,597258,10,'producer','producer',NULL),(1821658,4715,1,'actor',NULL,'[\"Surly\"]'),(1821658,409,2,'actor',NULL,'[\"Grayson\"]'),(1821658,553,3,'actor',NULL,'[\"Raccoon\"]'),(1821658,1337,4,'actress',NULL,'[\"Andie\"]'),(1821658,503259,5,'director',NULL,NULL),(1821658,131661,6,'writer','written by',NULL),(1821658,5371827,7,'writer','story by',NULL),(1821658,715257,8,'writer','additional screenplay material',NULL),(1821658,5624924,9,'producer','producer',NULL),(1821694,225146,10,'producer','producer',NULL),(1821694,246,1,'actor',NULL,'[\"Frank\"]'),(1821694,545,2,'actress',NULL,'[\"Victoria\"]'),(1821694,518,3,'actor',NULL,'[\"Marvin\"]'),(1821694,164,4,'actor',NULL,'[\"Bailey\"]'),(1821694,661751,5,'director',NULL,NULL),(1821694,388377,6,'writer','written by',NULL),(1821694,388375,7,'writer','written by',NULL),(1821694,1979137,8,'writer','characters',NULL),(1821694,1216642,9,'writer','characters',NULL),(1822302,441834,10,'editor',NULL,NULL),(1822302,348152,1,'actress',NULL,'[\"June Pruitt\"]'),(1822302,2413197,2,'actress',NULL,'[\"Bethany Pruitt\"]'),(1822302,816844,3,'actor',NULL,'[\"Shayne Pruitt\"]'),(1822302,1014721,4,'actor',NULL,'[\"Michael Paul\"]'),(1822302,812298,5,'director',NULL,NULL),(1822302,1014957,6,'producer','producer',NULL),(1822302,1259588,7,'producer','producer',NULL),(1822302,3452362,8,'composer',NULL,NULL),(1822302,6780,9,'cinematographer',NULL,NULL),(1822304,651005,10,'cinematographer',NULL,NULL),(1822304,92592,1,'actor',NULL,'[\"Ebbo Velten\"]'),(1822304,1739904,2,'actor',NULL,'[\"Alex Nzila\"]'),(1822304,771739,3,'actress',NULL,'[\"Vera Velten\"]'),(1822304,320762,4,'actor',NULL,'[\"Gaspard Signac\"]'),(1822304,477823,5,'director',NULL,NULL),(1822304,11752,6,'producer','producer',NULL),(1822304,1464012,7,'producer','producer',NULL),(1822304,772524,8,'producer','producer',NULL),(1822304,315180,9,'producer','producer',NULL),(1823125,2602846,10,'producer','producer',NULL),(1823125,46112,1,'actor',NULL,'[\"Jeff Buckley\"]'),(1823125,1782299,2,'actress',NULL,'[\"Allie\"]'),(1823125,125475,3,'actor',NULL,'[\"Hal Wilner\"]'),(1823125,4101208,4,'actor',NULL,'[\"Tim Buckley\"]'),(1823125,19341,5,'director',NULL,NULL),(1823125,107150,6,'writer',NULL,NULL),(1823125,4553512,7,'writer',NULL,NULL),(1823125,366363,8,'producer','producer',NULL),(1823125,2594525,9,'producer','producer',NULL),(1823664,419650,10,'producer','producer',NULL),(1823664,4832920,1,'actress',NULL,'[\"Annie\"]'),(1823664,139,2,'actress',NULL,'[\"Hannigan\"]'),(1823664,4937,3,'actor',NULL,'[\"Will Stacks\"]'),(1823664,126284,4,'actress',NULL,'[\"Grace\"]'),(1823664,323239,5,'director',NULL,NULL),(1823664,112459,6,'writer','screenplay',NULL),(1823664,576070,7,'writer','stage play book',NULL),(1823664,336675,8,'writer','comic strip \"Little Orphan Annie\"',NULL),(1823664,5971122,9,'producer','producer',NULL),(1823672,1026592,10,'editor',NULL,NULL),(1823672,1663205,1,'actor',NULL,'[\"Chappie\"]'),(1823672,2353862,2,'actor',NULL,'[\"Deon Wilson\"]'),(1823672,413168,3,'actor',NULL,'[\"Vincent Moore\"]'),(1823672,244,4,'actress',NULL,'[\"Michelle Bradley\"]'),(1823672,88955,5,'director',NULL,NULL),(1823672,2833612,6,'writer','written by',NULL),(1823672,1334526,7,'producer','producer',NULL),(1823672,1877,8,'composer',NULL,NULL),(1823672,1022001,9,'cinematographer',NULL,NULL),(18250460,3149909,10,'editor',NULL,NULL),(18250460,1456471,1,'actress',NULL,'[\"Bumblebee\"]'),(18250460,996651,2,'actor',NULL,'[\"Beast Boy\"]'),(18250460,1584992,3,'actor',NULL,'[\"Batman\"]'),(18250460,295115,4,'actor',NULL,'[\"Lex Luthor\",\"Aquaman\"]'),(18250460,1602528,5,'director',NULL,NULL),(18250460,1407728,6,'director',NULL,NULL),(18250460,2767831,7,'writer','written by',NULL),(18250460,193377,8,'producer','producer',NULL),(18250460,309746,9,'composer',NULL,NULL),(1825157,2127991,10,'composer',NULL,NULL),(1825157,251986,1,'actor',NULL,'[\"Simon\",\"James\"]'),(1825157,1985859,2,'actress',NULL,'[\"Hannah\"]'),(1825157,1728,3,'actor',NULL,'[\"Mr Papadopoulos\"]'),(1825157,852965,4,'actor',NULL,'[\"Harris\"]'),(1825157,1547964,5,'director',NULL,NULL),(1825157,234502,6,'writer','novella',NULL),(1825157,2016298,7,'writer','story',NULL),(1825157,2355488,8,'producer','producer',NULL),(1825157,1929951,9,'producer','producer',NULL),(1825683,3234869,10,'composer',NULL,NULL),(1825683,1569276,1,'actor',NULL,'[\"T\'Challa\",\"Black Panther\"]'),(1825683,430107,2,'actor',NULL,'[\"Erik Killmonger\"]'),(1825683,2143282,3,'actress',NULL,'[\"Nakia\"]'),(1825683,1775091,4,'actress',NULL,'[\"Okoye\"]'),(1825683,3363032,5,'director',NULL,NULL),(1825683,1963288,6,'writer','written by',NULL),(1825683,498278,7,'writer','based on the Marvel comics by',NULL),(1825683,456158,8,'writer','based on the Marvel Comics by',NULL),(1825683,270559,9,'producer','producer',NULL),(18257464,1995968,10,'composer',NULL,NULL),(18257464,13067986,1,'actress',NULL,'[\"Ria\"]'),(18257464,5709125,2,'actress',NULL,'[\"Lena\"]'),(18257464,3230224,3,'actress',NULL,'[\"Mrs Nawaz\"]'),(18257464,6946516,4,'actress',NULL,'[\"Mrs Abbas\"]'),(18257464,5668015,5,'director',NULL,NULL),(18257464,79677,6,'producer','producer',NULL),(18257464,271479,7,'producer','producer',NULL),(18257464,2954652,8,'producer','producer',NULL),(18257464,1867620,9,'producer','producer',NULL),(1825918,3408251,10,'writer','written by',NULL),(1825918,1605108,1,'actor',NULL,'[\"Phineas Flynn\",\"Phineas-2\"]'),(1825918,864308,2,'actress',NULL,'[\"Candace Flynn\",\"Candace-2\"]'),(1825918,1032473,3,'actor',NULL,'[\"Ferb Fletcher\"]'),(1825918,5352,4,'actress',NULL,'[\"Linda Flynn-Fletcher\",\"Linda-2\",\"Additional Voices\"]'),(1825918,1471248,5,'director',NULL,NULL),(1825918,693933,6,'director',NULL,NULL),(1825918,1083610,7,'director',NULL,NULL),(1825918,550578,8,'director',NULL,NULL),(1825918,579668,9,'director',NULL,NULL),(1826590,323239,10,'producer','producer',NULL),(1826590,366389,1,'actor',NULL,'[\"Bernie\"]'),(1826590,1013003,2,'actor',NULL,'[\"Danny\"]'),(1826590,356021,3,'actress',NULL,'[\"Joan\"]'),(1826590,117146,4,'actress',NULL,'[\"Debbie\"]'),(1826590,684336,5,'director',NULL,NULL),(1826590,2853516,6,'writer','screenplay by',NULL),(1826590,443730,7,'writer','based on the screenplay by',NULL),(1826590,213932,8,'writer','based on the screenplay by',NULL),(1826590,519,9,'writer','based upon \"Sexual Perversity in Chicago\" by',NULL),(1827358,635103,10,'editor',NULL,NULL),(1827358,4288659,1,'actress',NULL,'[\"Emma\"]'),(1827358,4288209,2,'actress',NULL,'[\"Cassandra\"]'),(1827358,4288407,3,'actress',NULL,'[\"Sara\"]'),(1827358,4288737,4,'actor',NULL,'[\"Ivan\"]'),(1827358,2132286,5,'director',NULL,NULL),(1827358,4287576,6,'writer',NULL,NULL),(1827358,1050143,7,'producer','producer',NULL),(1827358,1433493,8,'composer',NULL,NULL),(1827358,1408253,9,'cinematographer',NULL,NULL),(1827487,1780337,10,'cinematographer',NULL,NULL),(1827487,1959252,1,'actor',NULL,'[\"Doctor Cemal\"]'),(1827487,258784,2,'actor',NULL,'[\"Commissar Naci\"]'),(1827487,83777,3,'actor',NULL,'[\"Prosecutor Nusret\"]'),(1827487,1488529,4,'actor',NULL,'[\"Driver Arab Ali\"]'),(1827487,149196,5,'director',NULL,NULL),(1827487,946324,6,'writer',NULL,NULL),(1827487,1941926,7,'writer',NULL,NULL),(1827487,960222,8,'producer','producer',NULL),(1827487,947999,9,'producer','producer',NULL),(1828224,1491111,10,'producer','producer',NULL),(1828224,184308,1,'actor',NULL,'[\"Andres\"]'),(1828224,2415604,2,'actress',NULL,'[\"Kika\"]'),(1828224,408476,3,'actor',NULL,'[\"Alebrije\"]'),(1828224,2502293,4,'actress',NULL,'[\"La Llorona\"]'),(1828224,2910706,5,'director',NULL,NULL),(1828224,1645959,6,'writer','story',NULL),(1828224,2234558,7,'writer','screenplay',NULL),(1828224,1725951,8,'writer','screenplay',NULL),(1828224,1480420,9,'producer','producer',NULL),(1829012,3900,10,'cinematographer','director of photography',NULL),(1829012,1046097,1,'actress',NULL,'[\"Christine\"]'),(1829012,636426,2,'actress',NULL,'[\"Isabelle\"]'),(1829012,378932,3,'actress',NULL,'[\"Dani\"]'),(1829012,2167957,4,'actor',NULL,'[\"Dirk\"]'),(1829012,361,5,'director',NULL,NULL),(1829012,141843,6,'writer','film \"Crime d\'amour\"',NULL),(1829012,6734,7,'writer','film \"Crime d\'amour\"',NULL),(1829012,69963,8,'producer','producer',NULL),(1829012,6043,9,'composer',NULL,NULL),(1832382,1818216,1,'actor',NULL,'[\"Nader\"]'),(1832382,368689,2,'actress',NULL,'[\"Simin\"]'),(1832382,4299147,3,'actress',NULL,'[\"Razieh\"]'),(1832382,1486911,4,'actor',NULL,'[\"Hojjat\"]'),(1832382,1410815,5,'director',NULL,NULL),(1832382,3156436,6,'composer',NULL,NULL),(1832382,435534,7,'cinematographer','director of photography',NULL),(1832382,755868,8,'editor',NULL,NULL),(1832382,1487566,9,'production_designer',NULL,NULL),(1832405,693066,10,'producer','producer',NULL),(1832405,3036377,1,'actor',NULL,'[\"Darryl Strozka\"]'),(1832405,1273957,2,'actress',NULL,'[\"Kristin\"]'),(1832405,2830921,3,'actor',NULL,'[\"Femur\"]'),(1832405,349663,4,'actress',NULL,'[\"Sarah Cherry\"]'),(1832405,1439785,5,'director',NULL,NULL),(1832405,10812411,6,'writer',NULL,NULL),(1832405,2858400,7,'writer','story editor',NULL),(1832405,4560803,8,'writer','story editor',NULL),(1832405,1922643,9,'producer','producer',NULL),(1833781,698271,10,'producer','producer',NULL),(1833781,863599,1,'actor',NULL,'[\"Dr. Boldrini\"]'),(1833781,9629,2,'actor',NULL,'[\"Sandro\"]'),(1833781,557609,3,'actor',NULL,'[\"Carmine\"]'),(1833781,1335782,4,'actress',NULL,'[\"Cinzia\"]'),(1833781,300880,5,'director',NULL,NULL),(1833781,4303793,6,'writer','novel',NULL),(1833781,22085,7,'writer','screenplay',NULL),(1833781,1520934,8,'writer','screenplay',NULL),(1833781,33870,9,'producer','producer',NULL),(1833844,225323,10,'editor',NULL,NULL),(1833844,429363,1,'actor',NULL,'[\"Gilderoy\"]'),(1833844,3881852,2,'actor',NULL,'[\"Giancarlo Santini\"]'),(1833844,12389,3,'actor',NULL,'[\"Lorenzo\"]'),(1833844,4492084,4,'actress',NULL,'[\"Veronica as Accused Witch\"]'),(1833844,3270827,5,'director',NULL,NULL),(1833844,1537339,6,'producer','producer',NULL),(1833844,341702,7,'producer','producer',NULL),(1833844,1848481,8,'composer',NULL,NULL),(1833844,461486,9,'cinematographer',NULL,NULL),(1836202,929571,10,'composer',NULL,NULL),(1836202,462407,1,'actor',NULL,'[\"Jens Kessler\"]'),(1836202,343857,2,'actor',NULL,'[\"Henner Borchard\"]'),(1836202,604349,3,'actor',NULL,'[\"Ulrich Lansky\"]'),(1836202,726257,4,'actress',NULL,'[\"Inga Lansky\"]'),(1836202,343547,5,'director',NULL,NULL),(1836202,772384,6,'writer','novel',NULL),(1836202,295073,7,'producer','producer',NULL),(1836202,389386,8,'producer','producer',NULL),(1836202,618262,9,'producer','producer',NULL),(1836212,1875808,1,'actor',NULL,'[\"Charge\",\"John\"]'),(1836212,1395771,2,'actor',NULL,'[\"Cutthroat\",\"Ben\"]'),(1836212,1664,3,'actor',NULL,'[\"Rickshaw\"]'),(1836212,3504218,4,'actress',NULL,'[\"Shadow\",\"Jill\"]'),(1836212,2123688,5,'producer','producer',NULL),(1836212,3660335,6,'composer',NULL,NULL),(1836212,1439732,7,'cinematographer',NULL,NULL),(1836212,4684238,8,'production_designer',NULL,NULL),(1836987,959128,10,'cinematographer',NULL,NULL),(1836987,2951768,1,'actress',NULL,'[\"Trishna\"]'),(1836987,1981893,2,'actor',NULL,'[\"Jay\"]'),(1836987,890622,3,'actress',NULL,'[\"Bhaanumathi\"]'),(1836987,1390115,4,'actor',NULL,'[\"Vijay\"]'),(1836987,935863,5,'director',NULL,NULL),(1836987,362762,6,'writer','novel \"Tess of the d\'Urbervilles\"',NULL),(1836987,1315448,7,'producer','producer',NULL),(1836987,3032664,8,'composer',NULL,NULL),(1836987,880839,9,'composer',NULL,NULL),(1837562,1232266,10,'composer',NULL,NULL),(1837562,300589,1,'actress',NULL,'[\"Elizabeth\"]'),(1837562,2525790,2,'actress',NULL,'[\"Margaret\"]'),(1837562,1833,3,'actress',NULL,'[\"Queen\"]'),(1837562,391,4,'actor',NULL,'[\"King\"]'),(1837562,418982,5,'director',NULL,NULL),(1837562,2198611,6,'writer','screenplay',NULL),(1837562,393495,7,'writer','screenplay',NULL),(1837562,77127,8,'producer','producer',NULL),(1837562,706002,9,'producer','producer',NULL),(1837703,326512,10,'producer','producer',NULL),(1837703,1212722,1,'actor',NULL,'[\"Julian Assange\"]'),(1837703,117709,2,'actor',NULL,'[\"Daniel Berg\"]'),(1837703,396924,3,'actress',NULL,'[\"Birgitta Jónsdóttir\"]'),(1837703,2539953,4,'actress',NULL,'[\"Anke Domscheit\"]'),(1837703,174374,5,'director',NULL,NULL),(1837703,4089358,6,'writer','book \"Inside WikiLeaks: My Time with Julian Assange at the World\'s Most Dangerous Website\"',NULL),(1837703,3859582,7,'writer','book \"WikiLeaks: Inside Julian Assange\'s War on Secrecy\"',NULL),(1837703,4816469,8,'writer','book \"WikiLeaks: Inside Julian Assange\'s War on Secrecy\"',NULL),(1837703,1802857,9,'writer','screenplay by',NULL),(1837709,340003,10,'composer',NULL,NULL),(1837709,268199,1,'actor',NULL,'[\"Peter Lake\"]'),(1837709,3726887,2,'actress',NULL,'[\"Beverly Penn\"]'),(1837709,128,3,'actor',NULL,'[\"Pearly Soames\"]'),(1837709,124,4,'actress',NULL,'[\"Virginia Gamely\"]'),(1837709,326040,5,'director',NULL,NULL),(1837709,4311444,6,'writer','novel',NULL),(1837709,20065,7,'producer','producer',NULL),(1837709,686887,8,'producer','producer',NULL),(1837709,846333,9,'producer','producer',NULL),(1838520,1329360,10,'cinematographer',NULL,NULL),(1838520,2546012,1,'actress',NULL,'[\"Emanuel\"]'),(1838520,4754,2,'actress',NULL,'[\"Linda\"]'),(1838520,640323,3,'actress',NULL,'[\"Janice\"]'),(1838520,2902567,4,'actor',NULL,'[\"Claude\"]'),(1838520,1036527,5,'director',NULL,NULL),(1838520,861638,6,'writer','story',NULL),(1838520,103683,7,'producer','producer',NULL),(1838520,1913734,8,'producer','producer',NULL),(1838520,489059,9,'composer',NULL,NULL),(1838544,742347,10,'producer','producer',NULL),(1838544,1086543,1,'actress',NULL,'[\"Jill\"]'),(1838544,1358539,2,'actress',NULL,'[\"Sharon Ames\"]'),(1838544,4747,3,'actor',NULL,'[\"Peter Hood\"]'),(1838544,839326,4,'actor',NULL,'[\"Powers\"]'),(1838544,1104944,5,'director',NULL,NULL),(1838544,122335,6,'writer','written by',NULL),(1838544,1358789,7,'producer','producer',NULL),(1838544,454004,8,'producer','producer',NULL),(1838544,524342,9,'producer','producer',NULL),(1838571,6541046,10,'editor','co-editor',NULL),(1838571,1822679,1,'actor',NULL,'[\"Juan\"]'),(1838571,596710,2,'actor',NULL,'[\"Lázaro\"]'),(1838571,4312440,3,'actor',NULL,'[\"Vladi\"]'),(1838571,2863907,4,'actress',NULL,'[\"Camila\"]'),(1838571,1486025,5,'director',NULL,NULL),(1838571,1943704,6,'composer',NULL,NULL),(1838571,7638842,7,'composer',NULL,NULL),(1838571,348873,8,'cinematographer',NULL,NULL),(1838571,1441022,9,'editor',NULL,NULL),(1839492,508732,10,'cinematographer','director of photography',NULL),(1839492,200452,1,'actor',NULL,'[\"Calvin Weir-Fields\"]'),(1839492,1443740,2,'actress',NULL,'[\"Ruby Sparks\"]'),(1839492,906,3,'actress',NULL,'[\"Gertrude\"]'),(1839492,104,4,'actor',NULL,'[\"Mort\"]'),(1839492,206760,5,'director',NULL,NULL),(1839492,267512,6,'director',NULL,NULL),(1839492,74100,7,'producer','producer',NULL),(1839492,947695,8,'producer','producer',NULL),(1839492,2943572,9,'composer',NULL,NULL),(1839654,628255,10,'producer','producer',NULL),(1839654,151,1,'actor',NULL,'[\"Monte Wildhorn\"]'),(1839654,515,2,'actress',NULL,'[\"Charlotte O\'Neil\"]'),(1839654,1630992,3,'actress',NULL,'[\"Willow O\'Neil\"]'),(1839654,3409535,4,'actress',NULL,'[\"Finnegan O\'Neil\"]'),(1839654,1661,5,'director',NULL,NULL),(1839654,858895,6,'writer','written by',NULL),(1839654,770650,7,'writer',NULL,NULL),(1839654,340112,8,'producer','producer',NULL),(1839654,566975,9,'producer','producer',NULL),(1840309,4489323,10,'producer','producer',NULL),(1840309,940362,1,'actress',NULL,'[\"Tris\"]'),(1840309,3772243,2,'actor',NULL,'[\"Four\"]'),(1840309,701,3,'actress',NULL,'[\"Jeanine\"]'),(1840309,2541974,4,'actor',NULL,'[\"Eric\"]'),(1840309,1139726,5,'director',NULL,NULL),(1840309,2489193,6,'writer','screenplay by',NULL),(1840309,961827,7,'writer','screenplay by',NULL),(1840309,4316121,8,'writer','based on the novel by',NULL),(1840309,279651,9,'producer','producer',NULL),(1840417,953616,10,'composer',NULL,NULL),(1840417,177896,1,'actor',NULL,'[\"Rory Jansen\"]'),(1840417,598,2,'actor',NULL,'[\"Clay Hammond\"]'),(1840417,1312575,3,'actress',NULL,'[\"Daniella\"]'),(1840417,757855,4,'actress',NULL,'[\"Dora Jansen\"]'),(1840417,460206,5,'director',NULL,NULL),(1840417,1600872,6,'director',NULL,NULL),(1840417,2918260,7,'producer','producer',NULL),(1840417,2015238,8,'producer','producer',NULL),(1840417,1209063,9,'producer','producer',NULL),(1842356,3663291,10,'production_designer',NULL,NULL),(1842356,457062,1,'actress',NULL,'[\"Ruth Peacock\"]'),(1842356,2731660,2,'actress',NULL,'[\"Kate Hansen\"]'),(1842356,1036127,3,'actor',NULL,'[\"Yuri Levkov\"]'),(1842356,1152688,4,'actor',NULL,'[\"Matt Hurst\"]'),(1842356,4360075,5,'director',NULL,NULL),(1842356,3038523,6,'producer','line producer',NULL),(1842356,4340253,7,'composer',NULL,NULL),(1842356,2410872,8,'cinematographer','director of photography',NULL),(1842356,3423836,9,'editor',NULL,NULL),(1843678,54922,10,'actress',NULL,'[\"Dorothy Parsons\"]'),(1843678,1013087,1,'actress',NULL,'[\"DC Rachel Bailey\",\"DS Rachel Bailey\",\"ADI Rachel Bailey\"]'),(1843678,789093,2,'actress',NULL,'[\"DC Janet Scott\"]'),(1843678,600781,3,'actor',NULL,'[\"DC Pete Readyough\"]'),(1843678,698744,4,'actor',NULL,'[\"DC Ian Mitchell\"]'),(1843678,906550,5,'writer','created by',NULL),(1843678,4461520,6,'writer','created by',NULL),(1843678,120111,7,'actress',NULL,'[\"DCI Gill Murray\"]'),(1843678,2478333,8,'actor',NULL,'[\"DC Lee Broadhurst\"]'),(1843678,2717849,9,'actor',NULL,'[\"DC Kevin Lumb\"]'),(1843866,456158,10,'writer','based on the Marvel comics by',NULL),(1843866,262635,1,'actor',NULL,'[\"Steve Rogers\",\"Captain America\"]'),(1843866,168,2,'actor',NULL,'[\"Nick Fury\"]'),(1843866,424060,3,'actress',NULL,'[\"Natasha Romanoff\",\"Black Widow\"]'),(1843866,602,4,'actor',NULL,'[\"Alexander Pierce\"]'),(1843866,751577,5,'director',NULL,NULL),(1843866,751648,6,'director',NULL,NULL),(1843866,1321655,7,'writer','screenplay by',NULL),(1843866,1321656,8,'writer','screenplay by',NULL),(1843866,800209,9,'writer','based on the Marvel comics by',NULL),(1844025,793710,10,'producer','producer',NULL),(1844025,1595000,1,'actress',NULL,'[\"Akane Ayukawa\"]'),(1844025,2976916,2,'actor',NULL,'[\"Takanori Andô\"]'),(1844025,1169797,3,'actress',NULL,'[\"Sadako\"]'),(1844025,3050429,4,'actor',NULL,'[\"Detective Nakamura\"]'),(1844025,3108153,5,'director',NULL,NULL),(1844025,840626,6,'writer','based on the novel by',NULL),(1844025,1299421,7,'writer','screenplay',NULL),(1844025,8160206,8,'producer','producer',NULL),(1844025,2170121,9,'producer','producer',NULL),(1845849,2352780,10,'editor',NULL,NULL),(1845849,205,1,'actress',NULL,'[\"Susan Felders\"]'),(1845849,531095,2,'actor',NULL,'[\"Pete Cozy\"]'),(1845849,661755,3,'actress',NULL,'[\"Sara Cozy\"]'),(1845849,785854,4,'actor',NULL,'[\"Jim Brady\"]'),(1845849,908037,5,'director',NULL,NULL),(1845849,355502,6,'producer','producer',NULL),(1845849,680272,7,'composer',NULL,NULL),(1845849,999134,8,'composer',NULL,NULL),(1845849,1016752,9,'cinematographer',NULL,NULL),(1845866,6099,10,'composer',NULL,NULL),(1845866,2628561,1,'actress',NULL,'[\"Amber Pollock\"]'),(1845866,2401385,2,'actress',NULL,'[\"Paisley\"]'),(1845866,4388400,3,'actress',NULL,'[\"Carlita\"]'),(1845866,2797652,4,'actress',NULL,'[\"Dakota\"]'),(1845866,432627,5,'director',NULL,NULL),(1845866,447583,6,'writer','teleplay',NULL),(1845866,4352571,7,'writer','story and teleplay',NULL),(1845866,949319,8,'writer','teleplay',NULL),(1845866,2638,9,'producer','producer',NULL),(1846442,527668,10,'composer',NULL,NULL),(1846442,3111874,1,'actress',NULL,'[\"Miyoko\"]'),(1846442,576586,2,'actor',NULL,'[\"Ad Man\"]'),(1846442,5442,3,'actress',NULL,'[\"Kate Stanton\"]'),(1846442,245473,4,'actress',NULL,'[\"Milk Maid Salesgirl\"]'),(1846442,371348,5,'director',NULL,NULL),(1846442,578850,6,'writer','teleplay by',NULL),(1846442,115114,7,'writer','teleplay by',NULL),(1846442,4671079,8,'writer','story by',NULL),(1846442,628255,9,'producer','producer',NULL),(1847731,1780517,10,'editor',NULL,NULL),(1847731,1549582,1,'actress',NULL,'[\"Laure\",\"Mickäel\"]'),(1847731,4391872,2,'actress',NULL,'[\"Jeanne\"]'),(1847731,4392658,3,'actress',NULL,'[\"Lisa\"]'),(1847731,968797,4,'actress',NULL,'[\"La mère de Laure\"]'),(1847731,1780037,5,'director',NULL,NULL),(1847731,1309676,6,'producer','producer',NULL),(1847731,1768243,7,'composer',NULL,NULL),(1847731,3653131,8,'composer','co-composer',NULL),(1847731,994004,9,'cinematographer',NULL,NULL),(1847746,602660,10,'producer','producer',NULL),(1847746,107165,1,'actor',NULL,'[\"Mengele\"]'),(1847746,673391,2,'actor',NULL,'[\"Enzo\"]'),(1847746,1166977,3,'actor',NULL,'[\"Klaus\"]'),(1847746,5445656,4,'actor',NULL,'[\"Tomás\"]'),(1847746,699932,5,'director',NULL,NULL),(1847746,5531197,6,'producer','producer',NULL),(1847746,401865,7,'producer','producer',NULL),(1847746,1224102,8,'producer','producer',NULL),(1847746,1098024,9,'producer','producer',NULL),(1848902,788640,10,'composer',NULL,NULL),(1848902,438,1,'actor',NULL,'[\"John McCain\"]'),(1848902,194,2,'actress',NULL,'[\"Sarah Palin\"]'),(1848902,437,3,'actor',NULL,'[\"Steve Schmidt\"]'),(1848902,1493,4,'actor',NULL,'[\"Rick Davis\"]'),(1848902,5366,5,'director',NULL,NULL),(1848902,834960,6,'writer','written by',NULL),(1848902,356927,7,'writer','book',NULL),(1848902,2129264,8,'writer','book',NULL),(1848902,768528,9,'producer','producer',NULL),(1850457,677021,10,'cinematographer',NULL,NULL),(1850457,688132,1,'actress',NULL,'[\"Maura Ellis\"]'),(1850457,275486,2,'actress',NULL,'[\"Kate Ellis\"]'),(1850457,748973,3,'actress',NULL,'[\"Brinda\"]'),(1850457,54697,4,'actor',NULL,'[\"James\"]'),(1850457,601337,5,'director',NULL,NULL),(1850457,996134,6,'writer','written by',NULL),(1850457,529092,7,'producer','producer',NULL),(1850457,5366,8,'producer','producer',NULL),(1850457,65100,9,'composer',NULL,NULL),(1853643,3907323,10,'producer','producer',NULL),(1853643,251986,1,'actor',NULL,'[\"Eli Bloom\"]'),(1853643,502425,2,'actress',NULL,'[\"Penny Bloom\"]'),(1853643,605079,3,'actor',NULL,'[\"Sprinkles\"]'),(1853643,926086,4,'actor',NULL,'[\"Black\"]'),(1853643,2365361,5,'director',NULL,NULL),(1853643,638913,6,'director',NULL,NULL),(1853643,35465,7,'producer','producer',NULL),(1853643,3894454,8,'producer','producer',NULL),(1853643,3894387,9,'producer','producer',NULL),(1853728,711235,10,'editor',NULL,NULL),(1853728,4937,1,'actor',NULL,'[\"Django\"]'),(1853728,910607,2,'actor',NULL,'[\"Dr. King Schultz\"]'),(1853728,138,3,'actor',NULL,'[\"Calvin Candie\"]'),(1853728,913488,4,'actress',NULL,'[\"Broomhilda von Shaft\"]'),(1853728,233,5,'director',NULL,NULL),(1853728,399737,6,'producer','producer',NULL),(1853728,767894,7,'producer','producer',NULL),(1853728,792049,8,'producer','producer',NULL),(1853728,724744,9,'cinematographer','director of photography',NULL),(1853739,1262626,10,'composer',NULL,NULL),(1853739,1801800,1,'actress',NULL,'[\"Erin\"]'),(1853739,1846132,2,'actor',NULL,'[\"Drake\"]'),(1853739,1410105,3,'actor',NULL,'[\"Crispian\"]'),(1853739,2431167,4,'actor',NULL,'[\"Felix\"]'),(1853739,1417392,5,'director',NULL,NULL),(1853739,1440023,6,'writer','written by',NULL),(1853739,2384784,7,'producer','producer',NULL),(1853739,2096462,8,'producer','producer',NULL),(1853739,2980861,9,'producer','producer',NULL),(1854236,845612,10,'cinematographer',NULL,NULL),(1854236,112,1,'actor',NULL,'[\"Philip\"]'),(1854236,245988,2,'actress',NULL,'[\"Ida\"]'),(1854236,1029222,3,'actress',NULL,'[\"Astrid\"]'),(1854236,422205,4,'actor',NULL,'[\"Patrick\"]'),(1854236,81540,5,'director',NULL,NULL),(1854236,421314,6,'writer','screenplay',NULL),(1854236,1011849,7,'producer','producer',NULL),(1854236,934668,8,'producer','producer',NULL),(1854236,845542,9,'composer',NULL,NULL),(1854506,1676423,10,'composer',NULL,NULL),(1854506,770647,1,'actor',NULL,'[\"Tyler\"]'),(1854506,1762388,2,'actress',NULL,'[\"Jesse\"]'),(1854506,2460287,3,'actress',NULL,'[\"Ava\"]'),(1854506,1384079,4,'actor',NULL,'[\"Jake\"]'),(1854506,6955,5,'director',NULL,NULL),(1854506,150043,6,'writer','story',NULL),(1854506,827500,7,'writer','idea',NULL),(1854506,3117093,8,'writer','screenplay',NULL),(1854506,3233246,9,'writer','screenplay',NULL),(1854513,897350,10,'composer',NULL,NULL),(1854513,893941,1,'actress',NULL,'[\"Encarna\"]'),(1854513,310586,2,'actor',NULL,'[\"Jesusín\"]'),(1854513,319843,3,'actor',NULL,'[\"Antonio Villalta\"]'),(1854513,596807,4,'actress',NULL,'[\"Doña Concha\"]'),(1854513,74311,5,'director',NULL,NULL),(1854513,342278,6,'writer','story',NULL),(1854513,342303,7,'writer','story',NULL),(1854513,1028742,8,'producer','producer',NULL),(1854513,896356,9,'producer','producer',NULL),(1854564,516908,10,'composer',NULL,NULL),(1854564,503567,1,'actor',NULL,'[\"Percy Jackson\"]'),(1854564,1275259,2,'actress',NULL,'[\"Annabeth\"]'),(1854564,1040365,3,'actor',NULL,'[\"Grover\"]'),(1854564,277213,4,'actor',NULL,'[\"Hermes\"]'),(1854564,294457,5,'director',NULL,NULL),(1854564,973233,6,'writer','screenplay by',NULL),(1854564,2292894,7,'writer','based upon the novel \"Percy Jackson and the Olympians: The Sea of Monsters\" written by',NULL),(1854564,55431,8,'producer','producer',NULL),(1854564,1651942,9,'producer','producer',NULL),(1855199,1664042,10,'cinematographer','director of photography',NULL),(1855199,350453,1,'actor',NULL,'[\"Brian Taylor\"]'),(1855199,671567,2,'actor',NULL,'[\"Mike Zavala\"]'),(1855199,447695,3,'actress',NULL,'[\"Janet\"]'),(1855199,1065229,4,'actress',NULL,'[\"Orozco\"]'),(1855199,43742,5,'director',NULL,NULL),(1855199,5009883,6,'producer','producer',NULL),(1855199,971956,7,'producer','producer',NULL),(1855199,801691,8,'producer','producer',NULL),(1855199,2867565,9,'composer',NULL,NULL),(1855325,354453,10,'composer',NULL,NULL),(1855325,170,1,'actress',NULL,'[\"Alice\"]'),(1855325,347149,2,'actress',NULL,'[\"Jill Valentine\"]'),(1855325,735442,3,'actress',NULL,'[\"Rain\"]'),(1855325,2954597,4,'actress',NULL,'[\"Becky\"]'),(1855325,27271,5,'director',NULL,NULL),(1855325,93337,6,'producer','producer',NULL),(1855325,138502,7,'producer','producer',NULL),(1855325,352820,8,'producer','producer',NULL),(1855325,474709,9,'producer','producer',NULL),(1855401,2505054,10,'producer','producer',NULL),(1855401,1727367,1,'actor',NULL,'[\"Tim Heidecker\"]'),(1855401,1728099,2,'actor',NULL,'[\"Eric Wareheim\"]'),(1855401,5162,3,'actor',NULL,'[\"Tommy Schlaaang\"]'),(1855401,2071,4,'actor',NULL,'[\"Damien Weebs\"]'),(1855401,1730037,5,'writer','additional writing',NULL),(1855401,1582493,6,'writer','additional writing',NULL),(1855401,1497393,7,'writer','additional writing',NULL),(1855401,963211,8,'producer','producer',NULL),(1855401,376260,9,'producer','producer',NULL),(1856010,2080557,10,'actor',NULL,'[\"Edward Meechum\"]'),(1856010,228,1,'actor',NULL,'[\"Francis Underwood\"]'),(1856010,318703,2,'actor',NULL,'[\"President Garrett Walker\",\"Garrett Walker\"]'),(1856010,705,3,'actress',NULL,'[\"Claire Underwood\"]'),(1856010,544718,4,'actress',NULL,'[\"Zoe Barnes\"]'),(1856010,2802722,5,'writer','created for television by',NULL),(1856010,446672,6,'actor',NULL,'[\"Doug Stamper\"]'),(1856010,2858333,7,'actor',NULL,'[\"Frank Underwood Security\",\"Frank\'s Secret Service\",\"Secret Service\"]'),(1856010,147689,8,'actor',NULL,'[\"Seth Grayson\"]'),(1856010,40739,9,'actress',NULL,'[\"Catherine Durant\"]'),(1856101,467255,10,'producer','producer',NULL),(1856101,148,1,'actor',NULL,'[\"Rick Deckard\"]'),(1856101,331516,2,'actor',NULL,'[\"\'K\'\"]'),(1856101,1869101,3,'actress',NULL,'[\"Joi\"]'),(1856101,1176985,4,'actor',NULL,'[\"Sapper Morton\"]'),(1856101,898288,5,'director',NULL,NULL),(1856101,266684,6,'writer','screenplay by',NULL),(1856101,338169,7,'writer','screenplay by',NULL),(1856101,1140,8,'writer','based on characters from the novel \"Do Androids Dream of Electric Sheep?\" by',NULL),(1856101,424663,9,'producer','producer',NULL),(1857718,2625837,10,'producer','producer',NULL),(1857718,2540802,1,'actress',NULL,'[\"Kaori\"]'),(1857718,5379309,2,'actor',NULL,'[\"Tadashi\"]'),(1857718,5378253,3,'actress',NULL,'[\"Erika\"]'),(1857718,5379274,4,'actress',NULL,'[\"Aki\"]'),(1857718,2014132,5,'director',NULL,NULL),(1857718,411702,6,'writer','manga',NULL),(1857718,3835542,7,'writer','screenplay',NULL),(1857718,3309461,8,'producer','producer',NULL),(1857718,2137662,9,'producer','producer',NULL),(1857913,450646,10,'cinematographer',NULL,NULL),(1857913,1472,1,'actor',NULL,'[\"Abott Fahai\"]'),(1857913,1785004,2,'actress',NULL,'[\"White Snake\"]'),(1857913,1332451,3,'actor',NULL,'[\"Xu Xian\"]'),(1857913,1218953,4,'actress',NULL,'[\"Green Snake\"]'),(1857913,155642,5,'director',NULL,NULL),(1857913,848826,6,'writer',NULL,NULL),(1857913,161045,7,'producer','producer',NULL),(1857913,525328,8,'composer',NULL,NULL),(1857913,2190547,9,'cinematographer',NULL,NULL),(1858481,2153456,10,'producer','producer',NULL),(1858481,779084,1,'actor',NULL,'[\"Lewis Shaler\"]'),(1858481,865652,2,'actress',NULL,'[\"Sarah Barwell\"]'),(1858481,325221,3,'actor',NULL,'[\"Jan Klimowski\"]'),(1858481,774516,4,'actor',NULL,'[\"Peter Carmichael\"]'),(1858481,634811,5,'director',NULL,NULL),(1858481,8769457,6,'director',NULL,NULL),(1858481,522277,7,'writer','written by',NULL),(1858481,3114778,8,'writer','additional material',NULL),(1858481,2112927,9,'producer','producer',NULL),(1859446,699654,1,'actor',NULL,'[\"Nurse\'s Father\"]'),(1859446,1160306,2,'actor',NULL,'[\"Stretcher-bearer\"]'),(1859446,4542522,3,'actor',NULL,'[\"Coach\"]'),(1859446,3987673,4,'actress',NULL,'[\"Gymnast\"]'),(1859446,487166,5,'director',NULL,NULL),(1859446,3328207,6,'writer','screenplay',NULL),(1859446,718125,7,'producer','producer',NULL),(1859446,1041899,8,'cinematographer',NULL,NULL),(1859446,561430,9,'editor',NULL,NULL),(1859522,1079275,10,'editor',NULL,NULL),(1859522,2685937,1,'actress',NULL,'[\"Mia Sundström\"]'),(1859522,1203571,2,'actress',NULL,'[\"Frida\"]'),(1859522,377631,3,'actor',NULL,'[\"Lasse\"]'),(1859522,256890,4,'actress',NULL,'[\"Elisabeth\"]'),(1859522,445129,5,'director',NULL,NULL),(1859522,1426206,6,'writer','idea',NULL),(1859522,11027502,7,'producer','producer',NULL),(1859522,172018,8,'composer',NULL,NULL),(1859522,430438,9,'cinematographer',NULL,NULL),(1859650,503429,10,'editor',NULL,NULL),(1859650,95,1,'actor',NULL,'[\"Jerry\"]'),(1859650,4851,2,'actress',NULL,'[\"Anna\"]'),(1859650,251986,3,'actor',NULL,'[\"Jack\"]'),(1859650,680983,4,'actor',NULL,'[\"Monica\"]'),(1859650,16092,5,'producer','producer',NULL),(1859650,36981,6,'producer','producer',NULL),(1859650,2325586,7,'producer','producer',NULL),(1859650,1008264,8,'producer','producer',NULL),(1859650,451787,9,'cinematographer','director of photography',NULL),(1860152,679346,10,'production_designer',NULL,NULL),(1860152,3501465,1,'actress',NULL,'[\"Camille\"]'),(1860152,4362383,2,'actress',NULL,'[\"Julia\"]'),(1860152,3646923,3,'actress',NULL,'[\"Florence\"]'),(1860152,1081257,4,'actress',NULL,'[\"Flavie\"]'),(1860152,183419,5,'director',NULL,NULL),(1860152,183421,6,'director',NULL,NULL),(1860152,294654,7,'producer','producer',NULL),(1860152,895613,8,'cinematographer',NULL,NULL),(1860152,496327,9,'editor',NULL,NULL),(1860213,2441221,10,'producer','producer',NULL),(1860213,134,1,'actor',NULL,'[\"Dick Kelly\"]'),(1860213,1374980,2,'actor',NULL,'[\"Jason Kelly\"]'),(1860213,3614913,3,'actress',NULL,'[\"Shadia\"]'),(1860213,2201555,4,'actress',NULL,'[\"Lenore\"]'),(1860213,563243,5,'director',NULL,NULL),(1860213,4544229,6,'writer','written by',NULL),(1860213,2249074,7,'producer','producer',NULL),(1860213,1088848,8,'producer','producer',NULL),(1860213,430742,9,'producer','producer',NULL),(1860242,292482,10,'editor',NULL,NULL),(1860242,126,1,'actor',NULL,'[\"Frank Hamer\"]'),(1860242,437,2,'actor',NULL,'[\"Maney Gault\"]'),(1860242,870,3,'actress',NULL,'[\"Ma Ferguson\"]'),(1860242,2253,4,'actor',NULL,'[\"Lee Simmons\"]'),(1860242,359387,5,'director',NULL,NULL),(1860242,299301,6,'writer','written by',NULL),(1860242,798661,7,'producer','producer',NULL),(1860242,2353,8,'composer',NULL,NULL),(1860242,6701,9,'cinematographer','director of photography',NULL),(1860353,1960598,10,'cinematographer',NULL,NULL),(1860353,5351,1,'actor',NULL,'[\"Turbo\"]'),(1860353,316079,2,'actor',NULL,'[\"Chet\"]'),(1860353,748973,3,'actress',NULL,'[\"Burn\"]'),(1860353,168,4,'actor',NULL,'[\"Whiplash\"]'),(1860353,1659741,5,'director',NULL,NULL),(1860353,501359,6,'writer','screenplay by',NULL),(1860353,1557909,7,'writer','screenplay by',NULL),(1860353,829601,8,'producer','producer',NULL),(1860353,2273444,9,'composer',NULL,NULL),(1860357,8341683,10,'writer','based upon an article by',NULL),(1860357,242,1,'actor',NULL,'[\"Mike Williams\"]'),(1860357,621,2,'actor',NULL,'[\"Jimmy Harrell\"]'),(1860357,341174,3,'actor',NULL,'[\"Captain Landry\"]'),(1860357,3069,4,'actor',NULL,'[\"O\'Bryan\"]'),(1860357,916,5,'director',NULL,NULL),(1860357,1996352,6,'writer','screenplay by',NULL),(1860357,2373271,7,'writer','screenplay by',NULL),(1860357,2417866,8,'writer','based upon an article by',NULL),(1860357,4413187,9,'writer','based upon an article by',NULL),(1862079,1792454,10,'composer',NULL,NULL),(1862079,2201555,1,'actress',NULL,'[\"Darius\"]'),(1862079,243233,2,'actor',NULL,'[\"Kenneth\"]'),(1862079,2159926,3,'actor',NULL,'[\"Jeff\"]'),(1862079,4175221,4,'actor',NULL,'[\"Arnau\"]'),(1862079,1119880,5,'director',NULL,NULL),(1862079,2081046,6,'writer','written by',NULL),(1862079,1293297,7,'producer','producer',NULL),(1862079,764771,8,'producer','producer',NULL),(1862079,1196755,9,'producer','producer',NULL),(1862457,3540304,10,'composer',NULL,NULL),(1862457,1402187,1,'actress',NULL,'[\"Roan\"]'),(1862457,2375377,2,'actor',NULL,'[\"Erick\"]'),(1862457,2651574,3,'actor',NULL,'[\"Vitto\"]'),(1862457,209649,4,'actor',NULL,'[\"President\"]'),(1862457,190389,5,'director',NULL,NULL),(1862457,215853,6,'writer','story',NULL),(1862457,215842,7,'producer','producer',NULL),(1862457,215861,8,'producer','producer',NULL),(1862457,1284306,9,'producer','producer',NULL),(1864750,1666855,10,'actor',NULL,'[\"Ignacio\"]'),(1864750,1246047,1,'actress',NULL,'[\"Sira Quiroga\"]'),(1864750,1005292,2,'actress',NULL,'[\"Candelaria\"]'),(1864750,880554,3,'actor',NULL,'[\"Beigbeder\"]'),(1864750,308289,4,'actor',NULL,'[\"Vázquez\"]'),(1864750,4026222,5,'actress',NULL,'[\"Rosalinda Fox\"]'),(1864750,1699346,6,'actress',NULL,'[\"Jamila\"]'),(1864750,2039747,7,'actor',NULL,'[\"Inspector Palomares\"]'),(1864750,1685281,8,'actor',NULL,'[\"Félix\"]'),(1864750,14734434,9,'actress',NULL,'[\"Rosalinda Fox Maid Daughter\"]'),(1865368,352471,10,'producer','producer',NULL),(1865368,2254074,1,'actress',NULL,'[\"Avalon Greene\"]'),(1865368,3918035,2,'actress',NULL,'[\"Halley Brandon\"]'),(1865368,1597268,3,'actress',NULL,'[\"Savannah\",\"Emma\"]'),(1865368,3538718,4,'actor',NULL,'[\"Jake\"]'),(1865368,902939,5,'director',NULL,NULL),(1865368,6032360,6,'writer','based on a novel by',NULL),(1865368,767530,7,'writer','teleplay by',NULL),(1865368,4816775,8,'writer','teleplay by',NULL),(1865368,471172,9,'writer','teleplay by',NULL),(1865505,2690424,10,'producer','producer',NULL),(1865505,5146515,1,'actor',NULL,'[\"Ben\"]'),(1865505,322407,2,'actor',NULL,'[\"Conor\",\"Mac Lir\"]'),(1865505,1907066,3,'actress',NULL,'[\"Bronach\"]'),(1865505,1217,4,'actress',NULL,'[\"Granny\",\"Macha\"]'),(1865505,1119079,5,'director',NULL,NULL),(1865505,3822528,6,'writer','screenplay by',NULL),(1865505,1656397,7,'producer','producer',NULL),(1865505,2247998,8,'producer','producer',NULL),(1865505,2731232,9,'producer','producer',NULL),(1866249,801005,10,'cinematographer','director of photography',NULL),(1866249,370035,1,'actor',NULL,'[\"Mark\"]'),(1866249,166,2,'actress',NULL,'[\"Cheryl\"]'),(1866249,513,3,'actor',NULL,'[\"Father Brendan\"]'),(1866249,1291227,4,'actress',NULL,'[\"Vera\"]'),(1866249,506802,5,'director',NULL,NULL),(1866249,639694,6,'writer','article \"On Seeing a Sex Surrogate\"',NULL),(1866249,505861,7,'producer','producer',NULL),(1866249,625932,8,'producer','producer',NULL),(1866249,1937,9,'composer',NULL,NULL),(1869416,208341,10,'producer','producer',NULL),(1869416,2218857,1,'actor',NULL,'[\"João de Santo Cristo\"]'),(1869416,2238342,2,'actress',NULL,'[\"Maria Lúcia\"]'),(1869416,4392832,3,'actor',NULL,'[\"Jeremias\"]'),(1869416,130554,4,'actor',NULL,'[\"Marco Aurélio\"]'),(1869416,1302165,5,'director',NULL,NULL),(1869416,4677225,6,'writer','screenplay',NULL),(1869416,77094,7,'writer','screenplay',NULL),(1869416,142453,8,'writer','screenplay',NULL),(1869416,1543823,9,'writer','story',NULL),(1869653,2462031,10,'editor',NULL,NULL),(1869653,100793,1,'actor',NULL,'[\"John\"]'),(1869653,1260407,2,'actress',NULL,'[\"Alison\"]'),(1869653,2014390,3,'actor',NULL,'[\"Seth\"]'),(1869653,66144,4,'actor',NULL,'[\"Tom\"]'),(1869653,2282414,5,'director',NULL,NULL),(1869653,117230,6,'producer','producer',NULL),(1869653,1153493,7,'producer','producer',NULL),(1869653,3053485,8,'composer',NULL,NULL),(1869653,1329360,9,'cinematographer',NULL,NULL),(1869716,4581,10,'composer',NULL,NULL),(1869716,1779870,1,'actress',NULL,'[\"Sarah\"]'),(1869716,2907,2,'actor',NULL,'[\"Benji\"]'),(1869716,680983,3,'actor',NULL,'[\"Izzy\"]'),(1869716,1527905,4,'actor',NULL,'[\"Doc\"]'),(1869716,2610231,5,'director',NULL,NULL),(1869716,1545611,6,'producer','producer',NULL),(1869716,1441603,7,'producer','producer',NULL),(1869716,631,8,'producer','producer',NULL),(1869716,2246698,9,'composer',NULL,NULL),(1870529,90867,10,'editor',NULL,NULL),(1870529,205626,1,'actress',NULL,'[\"Nona Alberts\"]'),(1870529,350454,2,'actress',NULL,'[\"Jamie Fitzpatrick\"]'),(1870529,456,3,'actress',NULL,'[\"Evelyn Riske\"]'),(1870529,1209966,4,'actor',NULL,'[\"Michael Perry\"]'),(1870529,1400426,5,'director',NULL,NULL),(1870529,1067779,6,'writer','written by',NULL),(1870529,425741,7,'producer','producer',NULL),(1870529,953616,8,'composer',NULL,NULL),(1870529,651969,9,'cinematographer','director of photography',NULL),(1870548,1468859,1,'self',NULL,'[\"Self - Narrator\"]'),(1870548,4752172,2,'actress',NULL,'[\"President\'s Political Party Member\"]'),(1870548,1726688,3,'director',NULL,NULL),(1870548,55656,4,'producer','producer',NULL),(1870548,1908049,5,'composer',NULL,NULL),(1870548,4281603,6,'composer',NULL,NULL),(1870548,1139699,7,'cinematographer',NULL,NULL),(1870548,373105,8,'editor',NULL,NULL),(1870548,483968,9,'editor',NULL,NULL),(1872181,498278,10,'writer','Marvel comic book',NULL),(1872181,1940449,1,'actor',NULL,'[\"Spider-Man\",\"Peter Parker\"]'),(1872181,1297015,2,'actress',NULL,'[\"Gwen Stacy\"]'),(1872181,4937,3,'actor',NULL,'[\"Electro\",\"Max Dillon\"]'),(1872181,316079,4,'actor',NULL,'[\"Aleksei Sytsevich\"]'),(1872181,1989536,5,'director',NULL,NULL),(1872181,476064,6,'writer','screenplay',NULL),(1872181,649460,7,'writer','screenplay',NULL),(1872181,684374,8,'writer','screenplay',NULL),(1872181,888743,9,'writer','screen story',NULL),(1872194,2353,10,'composer',NULL,NULL),(1872194,375,1,'actor',NULL,'[\"Hank Palmer\"]'),(1872194,380,2,'actor',NULL,'[\"Joseph Palmer\"]'),(1872194,267812,3,'actress',NULL,'[\"Samantha Powell\"]'),(1872194,671,4,'actor',NULL,'[\"Dwight Dickham\"]'),(1872194,229694,5,'director',NULL,NULL),(1872194,1010405,6,'writer','screenplay',NULL),(1872194,4057793,7,'writer','screenplay',NULL),(1872194,1206265,8,'producer','producer',NULL),(1872194,1312724,9,'producer','producer',NULL),(1872328,2067669,10,'actress',NULL,'[\"Avril Bradley\"]'),(1872328,2976492,1,'actress',NULL,'[\"Victorique de Blois\"]'),(1872328,3414040,2,'actor',NULL,'[\"Kazuya Kujo\"]'),(1872328,4974834,3,'actor',NULL,'[\"Kazuya Kujo\"]'),(1872328,4857717,4,'actress',NULL,'[\"Victorique de Blois\"]'),(1872328,1428827,5,'actor',NULL,'[\"Grevil de Blois\"]'),(1872328,3233605,6,'actor',NULL,'[\"Grevil de Blois\"]'),(1872328,2580291,7,'actress',NULL,'[\"Cecile Lafitte\"]'),(1872328,7118506,8,'actress',NULL,'[\"Cecile Lafitte\"]'),(1872328,566147,9,'actor',NULL,'[\"Brian Roscoe\"]'),(1872818,862946,10,'cinematographer','director of photography',NULL),(1872818,1102140,1,'actor',NULL,'[\"Jesse Fisher\"]'),(1872818,647634,2,'actress',NULL,'[\"Zibby\"]'),(1872818,1374980,3,'actor',NULL,'[\"Nat\"]'),(1872818,714147,4,'actress',NULL,'[\"Ana\"]'),(1872818,3894454,5,'producer','producer',NULL),(1872818,3894387,6,'producer','producer',NULL),(1872818,2249828,7,'producer','producer',NULL),(1872818,3907323,8,'producer','producer',NULL),(1872818,3457394,9,'composer',NULL,NULL),(1874789,4181227,10,'production_designer',NULL,NULL),(1874789,1493163,1,'actor',NULL,'[\"Nick\"]'),(1874789,523061,2,'actor',NULL,'[\"Darryl\"]'),(1874789,444223,3,'actress',NULL,'[\"Jamie\"]'),(1874789,3046419,4,'actress',NULL,'[\"Amy\"]'),(1874789,1633080,5,'director',NULL,NULL),(1874789,2187304,6,'producer','producer',NULL),(1874789,2178779,7,'producer','producer',NULL),(1874789,1865890,8,'composer',NULL,NULL),(1874789,1234703,9,'cinematographer',NULL,NULL),(1876451,415890,10,'producer','producer',NULL),(1876451,2554052,1,'actress',NULL,'[\"Sparkle\"]'),(1876451,252238,2,'actress',NULL,'[\"Sister\"]'),(1876451,1365,3,'actress',NULL,'[\"Emma\"]'),(1876451,1035682,4,'actor',NULL,'[\"Stix\"]'),(1876451,15328,5,'director',NULL,NULL),(1876451,15327,6,'writer','screenplay',NULL),(1876451,1708,7,'writer','story',NULL),(1876451,742651,8,'writer','story',NULL),(1876451,153744,9,'producer','producer',NULL),(1877830,315974,10,'composer',NULL,NULL),(1877830,1500155,1,'actor',NULL,'[\"Bruce Wayne\",\"The Batman\"]'),(1877830,2368789,2,'actress',NULL,'[\"Selina Kyle\"]'),(1877830,942482,3,'actor',NULL,'[\"Lt. James Gordon\"]'),(1877830,268199,4,'actor',NULL,'[\"Oz\",\"The Penguin\"]'),(1877830,716257,5,'director',NULL,NULL),(1877830,185976,6,'writer','written by',NULL),(1877830,4170,7,'writer','created by: Batman',NULL),(1877830,277730,8,'writer','created by: Batman',NULL),(1877830,1249995,9,'producer','producer',NULL),(1877832,498278,10,'writer','based on Marvel\'s \"X-Men\" comics by',NULL),(1877832,1772,1,'actor',NULL,'[\"Professor X\"]'),(1877832,5212,2,'actor',NULL,'[\"Magneto\"]'),(1877832,413168,3,'actor',NULL,'[\"Logan\",\"Wolverine\"]'),(1877832,564215,4,'actor',NULL,'[\"Charles Xavier\"]'),(1877832,1741,5,'director',NULL,NULL),(1877832,1334526,6,'writer','screenplay by',NULL),(1877832,963359,7,'writer','story by',NULL),(1877832,891216,8,'writer','story by',NULL),(1877832,456158,9,'writer','based on the Marvel comics by',NULL),(1878841,1396390,10,'producer','producer',NULL),(1878841,102,1,'actor',NULL,'[\"Peter Taylor\"]'),(1878841,593664,2,'actress',NULL,'[\"Bronny Taylor\"]'),(1878841,3458761,3,'actor',NULL,'[\"Michael Taylor\"]'),(1878841,4867258,4,'actress',NULL,'[\"Stephanie Taylor\"]'),(1878841,572562,5,'director',NULL,NULL),(1878841,2453858,6,'writer','written by',NULL),(1878841,1324960,7,'writer','written by',NULL),(1878841,926625,8,'writer','additional writing',NULL),(1878841,89658,9,'producer','producer',NULL),(1878870,1397781,10,'cinematographer','director of photography',NULL),(1878870,2794962,1,'actress',NULL,'[\"Nadine\"]'),(1878870,4726634,2,'actress',NULL,'[\"Krista\"]'),(1878870,4296357,3,'actor',NULL,'[\"Darian\"]'),(1878870,1718,4,'actress',NULL,'[\"Mona\"]'),(1878870,2609807,5,'director',NULL,NULL),(1878870,30572,6,'producer','producer',NULL),(1878870,985,7,'producer','producer',NULL),(1878870,757017,8,'producer','producer',NULL),(1878870,651414,9,'composer',NULL,NULL),(1878942,3415444,10,'composer',NULL,NULL),(1878942,1002609,1,'actor',NULL,'[\"Michael\"]'),(1878942,3697467,2,'actor',NULL,'[\"Matty\"]'),(1878942,424848,3,'actress',NULL,'[\"Em\"]'),(1878942,170550,4,'actor',NULL,'[\"Dwayne\"]'),(1878942,625245,5,'director',NULL,NULL),(1878942,1520649,6,'writer','written by',NULL),(1878942,1844320,7,'producer','producer',NULL),(1878942,548257,8,'producer','producer',NULL),(1878942,1167812,9,'producer','producer',NULL),(1879012,228678,1,'actor',NULL,'[\"Gerald Tovar, Jr.\"]'),(1879012,1062,2,'actor',NULL,'[\"Harold Tovar\"]'),(1879012,1919727,3,'actress',NULL,'[\"Cristie Forrest\"]'),(1879012,1218053,4,'actress',NULL,'[\"DyeAnne\"]'),(1879012,110420,5,'director',NULL,NULL),(1879012,2100833,6,'writer','certain characters created by',NULL),(1879012,1202084,7,'composer',NULL,NULL),(1879012,3046,8,'cinematographer',NULL,NULL),(1883180,95983,10,'cinematographer',NULL,NULL),(1883180,3300074,1,'actor',NULL,'[\"Jonathan\"]'),(1883180,4844938,2,'actor',NULL,'[\"Sam\"]'),(1883180,6918863,3,'actor',NULL,'[\"King Karl XII\"]'),(1883180,2620303,4,'actress',NULL,'[\"Flamenco Teacher\"]'),(1883180,27815,5,'director',NULL,NULL),(1883180,90350,6,'producer','producer',NULL),(1883180,1119558,7,'producer','producer',NULL),(1883180,7071849,8,'composer',NULL,NULL),(1883180,5048244,9,'composer',NULL,NULL),(1885300,862946,10,'cinematographer',NULL,NULL),(1885300,519043,1,'actor',NULL,'[\"Scott\"]'),(1885300,1422176,2,'actress',NULL,'[\"Kristin\"]'),(1885300,479527,3,'actor',NULL,'[\"Lumpy\"]'),(1885300,1789970,4,'actress',NULL,'[\"Ramsey\"]'),(1885300,1197318,5,'director',NULL,NULL),(1885300,7896,6,'producer','producer',NULL),(1885300,2686615,7,'producer','producer',NULL),(1885300,743060,8,'producer','producer',NULL),(1885300,582171,9,'composer',NULL,NULL),(1885331,171165,10,'editor',NULL,NULL),(1885331,998117,1,'actress',NULL,'[\"Alice\"]'),(1885331,115730,2,'actor',NULL,'[\"Victor\"]'),(1885331,217868,3,'actress',NULL,'[\"Hélène\"]'),(1885331,42104,4,'actor',NULL,'[\"Isaac - Le Père\"]'),(1885331,1523943,5,'director',NULL,NULL),(1885331,173541,6,'producer','producer',NULL),(1885331,746041,7,'producer','producer',NULL),(1885331,76259,8,'composer',NULL,NULL),(1885331,532576,9,'cinematographer',NULL,NULL),(1886493,953357,10,'composer',NULL,NULL),(1886493,15196,1,'actress',NULL,'[\"Tes\"]'),(1886493,1223023,2,'actress',NULL,'[\"Kara\"]'),(1886493,2832695,3,'actress',NULL,'[\"Dawn\"]'),(1886493,1845,4,'actor',NULL,'[\"Ronny\"]'),(1886493,1980747,5,'director',NULL,NULL),(1886493,2558161,6,'writer','staff writer',NULL),(1886493,2918260,7,'producer','producer',NULL),(1886493,2691892,8,'producer','producer',NULL),(1886493,256542,9,'producer','producer',NULL),(1890373,1621482,10,'production_designer',NULL,NULL),(1890373,2957324,1,'actress',NULL,'[\"Marisa\"]'),(1890373,3436464,2,'actress',NULL,'[\"Svenja\"]'),(1890373,4501333,3,'actor',NULL,'[\"Rasul\"]'),(1890373,2083561,4,'actor',NULL,'[\"Sandro\"]'),(1890373,1177494,5,'director',NULL,NULL),(1890373,1582231,6,'producer','producer',NULL),(1890373,2792069,7,'composer',NULL,NULL),(1890373,1778879,8,'cinematographer',NULL,NULL),(1890373,1303162,9,'editor',NULL,NULL),(1891942,2611366,10,'editor',NULL,NULL),(1891942,1437,1,'actor',NULL,'[\"Démosthène\"]'),(1891942,4500558,2,'actor',NULL,'[\"Yannis\"]'),(1891942,1687404,3,'actor',NULL,'[\"Aristote\"]'),(1891942,3261209,4,'actress',NULL,'[\"Angeliki\"]'),(1891942,394756,5,'director',NULL,NULL),(1891942,3033686,6,'writer',NULL,NULL),(1891942,334849,7,'producer','executive producer',NULL),(1891942,435525,8,'composer',NULL,NULL),(1891942,24123,9,'cinematographer',NULL,NULL),(1891974,645379,10,'cinematographer','director of photography',NULL),(1891974,1224532,1,'actor',NULL,'[\"Ryuuichi Naruhodou (Phoenix Wright)\"]'),(1891974,1102191,2,'actor',NULL,'[\"Reiji Mitsurugi (Miles Edgeworth)\"]'),(1891974,2962268,3,'actress',NULL,'[\"Mayoi Ayasato (Maya Fey)\"]'),(1891974,1885802,4,'actor',NULL,'[\"Masashi Yahari (Larry Butz)\"]'),(1891974,586281,5,'director',NULL,NULL),(1891974,3464902,6,'writer','screenplay',NULL),(1891974,4525917,7,'writer','screenplay',NULL),(1891974,847735,8,'writer','video game',NULL),(1891974,256862,9,'composer',NULL,NULL),(18925334,1558480,10,'composer',NULL,NULL),(18925334,5301405,1,'actress',NULL,'[\"Pearl\"]'),(18925334,4825178,2,'actor',NULL,'[\"Projectionist\"]'),(18925334,942858,3,'actress',NULL,'[\"Ruth\"]'),(18925334,839146,4,'actor',NULL,'[\"Father\"]'),(18925334,1488800,5,'director',NULL,NULL),(18925334,2693873,6,'producer','producer',NULL),(18925334,8368748,7,'producer','producer',NULL),(18925334,1834530,8,'producer','producer',NULL),(18925334,61045,9,'composer',NULL,NULL),(1894476,2113666,10,'writer','additional material',NULL),(1894476,1519680,1,'actress',NULL,'[\"Daisy\"]'),(1894476,4043618,2,'actor',NULL,'[\"Isaac\"]'),(1894476,1126657,3,'actor',NULL,'[\"Eddie\"]'),(1894476,3897655,4,'actress',NULL,'[\"Piper\"]'),(1894476,531817,5,'director',NULL,NULL),(1894476,4424079,6,'writer','based on the novel by',NULL),(1894476,110591,7,'writer','screenplay by',NULL),(1894476,4696885,8,'writer','screenplay by',NULL),(1894476,342617,9,'writer','screenplay by',NULL),(1895587,837386,10,'producer','producer',NULL),(1895587,749263,1,'actor',NULL,'[\"Mike Rezendes\"]'),(1895587,474,2,'actor',NULL,'[\"Walter \'Robby\' Robinson\"]'),(1895587,1046097,3,'actress',NULL,'[\"Sacha Pfeiffer\"]'),(1895587,630,4,'actor',NULL,'[\"Marty Baron\"]'),(1895587,565336,5,'director',NULL,NULL),(1895587,1802857,6,'writer','written by',NULL),(1895587,1421308,7,'producer','producer',NULL),(1895587,326512,8,'producer','producer',NULL),(1895587,2140746,9,'producer','producer',NULL),(1897941,1185877,10,'cinematographer',NULL,NULL),(1897941,2337578,1,'actress',NULL,'[\"Mitsuko\"]'),(1897941,3007114,2,'actor',NULL,'[\"Yoichi\"]'),(1897941,410903,3,'actor',NULL,'[\"Jiro\"]'),(1897941,396212,4,'actor',NULL,NULL),(1897941,2911203,5,'director',NULL,NULL),(1897941,1233045,6,'producer','producer',NULL),(1897941,3536772,7,'producer','producer',NULL),(1897941,2063430,8,'producer','producer',NULL),(1897941,913870,9,'composer',NULL,NULL),(1899353,3496107,10,'composer',NULL,NULL),(1899353,3299397,1,'actor',NULL,'[\"Rama\"]'),(1899353,1146705,2,'actor',NULL,'[\"Ari\"]'),(1899353,1228805,3,'actor',NULL,'[\"Tama\"]'),(1899353,1902766,4,'actor',NULL,'[\"Andi\"]'),(1899353,2153088,5,'director',NULL,NULL),(1899353,3299334,6,'producer','producer',NULL),(1899353,4390103,7,'composer',NULL,NULL),(1899353,1060557,8,'composer',NULL,NULL),(1899353,2468967,9,'composer',NULL,NULL),(1900854,528355,10,'cinematographer',NULL,NULL),(1900854,1758,1,'actor',NULL,'[\"Charlie Morgan\"]'),(1900854,1782299,2,'actress',NULL,'[\"Mary Bright\"]'),(1900854,1064292,3,'actor',NULL,'[\"Sam Smith\"]'),(1900854,4459896,4,'actor',NULL,'[\"Mr. Sullivan\"]'),(1900854,2868171,5,'director',NULL,NULL),(1900854,17577,6,'producer','producer',NULL),(1900854,4040474,7,'composer',NULL,NULL),(1900854,1315448,8,'composer',NULL,NULL),(1900854,1825507,9,'composer',NULL,NULL),(1900856,86955,10,'producer','producer',NULL),(1900856,296594,1,'actress',NULL,'[\"Le capitaine de police Fabienne Bourrier\"]'),(1900856,782035,2,'actor',NULL,'[\"Kacem\"]'),(1900856,1277138,3,'actress',NULL,'[\"Carole\"]'),(1900856,746371,4,'actress',NULL,'[\"La mère de Fabienne\"]'),(1900856,1615914,5,'director',NULL,NULL),(1900856,329825,6,'writer','scenario',NULL),(1900856,346677,7,'writer','adaptation and dialogue',NULL),(1900856,4592701,8,'writer','collaboration',NULL),(1900856,171528,9,'writer','collaboration',NULL),(1900893,1976411,10,'cinematographer',NULL,NULL),(1900893,2202409,1,'actor',NULL,'[\"Yuichi\"]'),(1900893,3049403,2,'actress',NULL,'[\"Keiko\"]'),(1900893,913880,3,'actor',NULL,'[\"Shozo\"]'),(1900893,297956,4,'actor',NULL,'[\"Keita tamura\"]'),(1900893,814469,5,'director',NULL,NULL),(1900893,1136150,6,'writer','manga',NULL),(1900893,880854,7,'producer','producer',NULL),(1900893,3408217,8,'producer','producer',NULL),(1900893,2422977,9,'composer',NULL,NULL),(1900908,1398885,10,'production_designer',NULL,NULL),(1900908,4425740,1,'actress',NULL,'[\"Jasna\"]'),(1900908,4425316,2,'actor',NULL,'[\"Ðole\"]'),(1900908,3206301,3,'actress',NULL,'[\"Jasnina mama - Jasna\'s Mother\"]'),(1900908,1767287,4,'actor',NULL,'[\"Jasnin tata - Jasna\'s Father\"]'),(1900908,1481851,5,'director',NULL,NULL),(1900908,326740,6,'producer','producer',NULL),(1900908,2027474,7,'producer','producer',NULL),(1900908,1726647,8,'cinematographer','director of photography',NULL),(1900908,1194496,9,'editor',NULL,NULL),(1904996,454004,10,'producer','producer',NULL),(1904996,5458,1,'actor',NULL,'[\"Parker\"]'),(1904996,182,2,'actress',NULL,'[\"Leslie Rodgers\"]'),(1904996,4821,3,'actor',NULL,'[\"Melander\"]'),(1904996,560,4,'actor',NULL,'[\"Hurley\"]'),(1904996,431,5,'director',NULL,NULL),(1904996,572352,6,'writer','screenplay',NULL),(1904996,922799,7,'writer','novel \"Flashfire\"',NULL),(1904996,18573,8,'producer','producer',NULL),(1904996,153893,9,'producer','producer',NULL),(1905040,577861,10,'producer','producer',NULL),(1905040,3444592,1,'actress',NULL,'[\"Holly King\"]'),(1905040,4688232,2,'actor',NULL,'[\"Jenson Day\"]'),(1905040,1265089,3,'actor',NULL,'[\"John Patrick (JP) Hauser Jr.\"]'),(1905040,3130311,4,'actor',NULL,'[\"Andy Thatcher\"]'),(1905040,1317,5,'director',NULL,NULL),(1905040,1704969,6,'writer','written by',NULL),(1905040,4208519,7,'producer','producer',NULL),(1905040,3703488,8,'producer','producer',NULL),(1905040,416164,9,'producer','producer',NULL),(1905041,2227608,10,'composer',NULL,NULL),(1905041,4874,1,'actor',NULL,'[\"Dominic Toretto\"]'),(1905041,908094,2,'actor',NULL,'[\"Brian O\'Conner\"]'),(1905041,425005,3,'actor',NULL,'[\"Hobbs\"]'),(1905041,735442,4,'actress',NULL,'[\"Letty\"]'),(1905041,510912,5,'director',NULL,NULL),(1905041,604555,6,'writer','written by',NULL),(1905041,860155,7,'writer','characters',NULL),(1905041,605775,8,'producer','producer',NULL),(1905041,870106,9,'producer','producer',NULL),(1906426,927097,10,'producer','producer',NULL),(1906426,1845127,1,'actor',NULL,'[\"Michael\"]'),(1906426,4465377,2,'actor',NULL,'[\"Wolfgang\"]'),(1906426,3422873,3,'actress',NULL,'[\"Mutter\"]'),(1906426,1306697,4,'actress',NULL,'[\"Schwester\"]'),(1906426,772207,5,'director',NULL,NULL),(1906426,720241,6,'director','co-director',NULL),(1906426,315430,7,'producer','producer',NULL),(1906426,321842,8,'producer','producer',NULL),(1906426,1207063,9,'producer','line producer',NULL),(1907668,823330,10,'producer','producer',NULL),(1907668,243,1,'actor',NULL,'[\"Whip Whitaker\"]'),(1907668,1229204,2,'actress',NULL,'[\"Katerina Marquez\"]'),(1907668,332,3,'actor',NULL,'[\"Hugh Lang\"]'),(1907668,422,4,'actor',NULL,'[\"Harling Mays\"]'),(1907668,709,5,'director',NULL,NULL),(1907668,309691,6,'writer','written by',NULL),(1907668,531827,7,'producer','producer',NULL),(1907668,662748,8,'producer','producer',NULL),(1907668,710759,9,'producer','producer',NULL),(1909270,1038557,10,'editor',NULL,NULL),(1909270,1751183,1,'actor',NULL,'[\"Levi Savage\"]'),(1909270,4672312,2,'actress',NULL,'[\"Elizabeth Panting\"]'),(1909270,2350588,3,'actor',NULL,'[\"George Padley\"]'),(1909270,3598126,4,'actress',NULL,'[\"Sarah Franks\"]'),(1909270,2459,5,'director',NULL,NULL),(1909270,1752997,6,'writer','additional writer',NULL),(1909270,806687,7,'writer','thanks',NULL),(1909270,3400240,8,'writer','additional writer',NULL),(1909270,904349,9,'writer','additional writer',NULL),(1909796,3568412,10,'composer',NULL,NULL),(1909796,2760504,1,'actress',NULL,'[\"Yui Hirasawa\"]'),(1909796,2932868,2,'actress',NULL,'[\"Mio Akiyama\"]'),(1909796,3017331,3,'actress',NULL,'[\"Ritsu Tainaka\"]'),(1909796,2964162,4,'actress',NULL,'[\"Tsumugi Kotobuki\"]'),(1909796,2210720,5,'director',NULL,NULL),(1909796,3452285,6,'writer','manga',NULL),(1909796,1027089,7,'writer','screenplay',NULL),(1909796,31407,8,'writer','english script',NULL),(1909796,4743231,9,'producer','producer',NULL),(1910498,2608287,1,'actress',NULL,'[\"Jodie Elliott\"]'),(1910498,3870,2,'actress',NULL,'[\"Macy\"]'),(1910498,3360889,3,'actress',NULL,'[\"Stepmom\"]'),(1910498,4372137,4,'actress',NULL,'[\"Jodie\'s Daughter\"]'),(1910498,1484928,5,'director',NULL,NULL),(1910498,3054265,6,'writer',NULL,NULL),(1911644,336145,10,'producer','producer',NULL),(1911644,932,1,'actress',NULL,'[\"Jordan Turner\"]'),(1911644,2065398,2,'actress',NULL,'[\"Leah Templeton\"]'),(1911644,1113550,3,'actress',NULL,'[\"Casey Welson\"]'),(1911644,4820,4,'actor',NULL,'[\"Officer Paul Phillips\"]'),(1911644,26442,5,'director',NULL,NULL),(1911644,6902,6,'writer','screenplay',NULL),(1911644,5460828,7,'writer','story',NULL),(1911644,92578,8,'writer','story',NULL),(1911644,303010,9,'producer','producer',NULL),(1911658,774786,10,'writer','story by',NULL),(1911658,569891,1,'actor',NULL,'[\"Skipper\"]'),(1911658,1844237,2,'actor',NULL,'[\"Kowalski\"]'),(1911658,971017,3,'actor',NULL,'[\"Private\"]'),(1911658,970447,4,'actor',NULL,'[\"Rico\"]'),(1911658,201509,5,'director',NULL,NULL),(1911658,971239,6,'director',NULL,NULL),(1911658,1685000,7,'writer','screenplay by',NULL),(1911658,1595526,8,'writer','screenplay by',NULL),(1911658,1725022,9,'writer','screenplay by',NULL),(1913178,2060872,10,'cinematographer',NULL,NULL),(1913178,2381142,1,'actress',NULL,'[\"Ellen Barethon\"]'),(1913178,2956456,2,'actor',NULL,'[\"Aedin\"]'),(1913178,871845,3,'actor',NULL,'[\"Corvus\"]'),(1913178,2188842,4,'actor',NULL,'[\"Strabus\"]'),(1913178,1237224,5,'director',NULL,NULL),(1913178,1344786,6,'writer',NULL,NULL),(1913178,1656923,7,'writer',NULL,NULL),(1913178,2576658,8,'producer','executive producer',NULL),(1913178,1664512,9,'composer',NULL,NULL),(1915581,1475594,1,'actor',NULL,'[\"Magic Mike\"]'),(1915581,1641117,2,'actor',NULL,'[\"Adam\"]'),(1915581,1601397,3,'actress',NULL,'[\"Joanna\"]'),(1915581,190,4,'actor',NULL,'[\"Dallas\"]'),(1915581,1752,5,'director',NULL,NULL),(1915581,1730221,6,'writer','written by',NULL),(1915581,414423,7,'producer','producer',NULL),(1915581,917059,8,'producer','producer',NULL),(1915581,191896,9,'production_designer',NULL,NULL),(1918806,88770,1,'actress',NULL,'[\"Suzy\"]'),(1918806,47887,2,'actress',NULL,NULL),(1918806,4603536,3,'actor',NULL,NULL),(1918806,4450152,4,'actress',NULL,'[\"Karen\"]'),(1918806,1463759,5,'director','co-director',NULL),(1918806,1767139,6,'director','co-director',NULL),(1918806,4606353,7,'writer','co-writer',NULL),(1918806,2128956,8,'writer','co-writer',NULL),(1920849,570912,10,'producer','producer',NULL),(1920849,379,1,'actress',NULL,'[\"Regan\"]'),(1920849,279545,2,'actress',NULL,'[\"Katie\"]'),(1920849,135221,3,'actress',NULL,'[\"Gena\"]'),(1920849,5188,4,'actor',NULL,'[\"Trevor\"]'),(1920849,2853516,5,'director',NULL,NULL),(1920849,3894454,6,'producer','producer',NULL),(1920849,3894387,7,'producer','producer',NULL),(1920849,1819990,8,'producer','producer',NULL),(1920849,2071,9,'producer','producer',NULL),(1920885,2616937,10,'editor',NULL,NULL),(1920885,4589246,1,'actress',NULL,'[\"Chun\"]'),(1920885,8275833,2,'actor',NULL,'[\"Qiu\"]'),(1920885,8275834,3,'actor',NULL,'[\"Kun\"]'),(1920885,8282196,4,'actress',NULL,'[\"Chun, old age\"]'),(1920885,4443317,5,'director',NULL,NULL),(1920885,8082506,6,'director',NULL,NULL),(1920885,160935,7,'writer','writer: english language version',NULL),(1920885,8194801,8,'producer','producer',NULL),(1920885,2345290,9,'composer',NULL,NULL),(1920945,247787,10,'producer','producer',NULL),(1920945,5647513,1,'actor',NULL,'[\"Young Terri Hooley\"]'),(1920945,5647518,2,'actor',NULL,'[\"Hank Williams\"]'),(1920945,5701256,3,'actor',NULL,'[\"Boy 1\"]'),(1920945,13704883,4,'actor',NULL,'[\"Boy 2\"]'),(1920945,2443600,5,'director',NULL,NULL),(1920945,2441296,6,'director',NULL,NULL),(1920945,4444157,7,'writer','screenplay',NULL),(1920945,4443983,8,'writer','screenplay',NULL),(1920945,153198,9,'producer','producer',NULL),(1921064,138502,10,'producer','producer',NULL),(1921064,3229685,1,'actor',NULL,'[\"Milo\"]'),(1921064,115161,2,'actress',NULL,'[\"Cassia\"]'),(1921064,662,3,'actor',NULL,'[\"Corvus\"]'),(1921064,15382,4,'actor',NULL,'[\"Atticus\"]'),(1921064,27271,5,'director',NULL,NULL),(1921064,60760,6,'writer','screenplay',NULL),(1921064,60761,7,'writer','screenplay',NULL),(1921064,3467335,8,'writer','screenplay',NULL),(1921064,93337,9,'producer','producer',NULL),(1921149,79677,10,'producer','producer',NULL),(1921149,5787342,1,'actor',NULL,'[\"Raphael\"]'),(1921149,5787486,2,'actor',NULL,'[\"Rato\"]'),(1921149,640,3,'actor',NULL,'[\"Father Juilliard\"]'),(1921149,1913734,4,'actress',NULL,'[\"Olivia\"]'),(1921149,197636,5,'director',NULL,NULL),(1921149,1595836,6,'director','co-director',NULL),(1921149,4443217,7,'writer','based on the novel by',NULL),(1921149,1806027,8,'writer','additional material',NULL),(1921149,193485,9,'writer','screenplay by',NULL),(1922679,3290129,10,'composer',NULL,NULL),(1922679,4741,1,'actress',NULL,'[\"Angie\"]'),(1922679,412,2,'actor',NULL,'[\"Chuck\"]'),(1922679,1148573,3,'actor',NULL,'[\"David\"]'),(1922679,496,4,'actress',NULL,'[\"Jill\"]'),(1922679,305362,5,'director',NULL,NULL),(1922679,2915845,6,'writer','screenplay',NULL),(1922679,1881399,7,'producer','producer',NULL),(1922679,3633993,8,'producer','executive producer',NULL),(1922679,896916,9,'producer','producer',NULL),(1922777,635742,10,'cinematographer','director of photography',NULL),(1922777,160,1,'actor',NULL,'[\"Ellison Oswalt\"]'),(1922777,1628115,2,'actress',NULL,'[\"Tracy\"]'),(1922777,710447,3,'actor',NULL,'[\"Deputy\"]'),(1922777,669,4,'actor',NULL,'[\"Sheriff\"]'),(1922777,220600,5,'director',NULL,NULL),(1922777,1803036,6,'writer','written by',NULL),(1922777,89658,7,'producer','producer',NULL),(1922777,2271939,8,'producer','producer',NULL),(1922777,2366,9,'composer',NULL,NULL),(1924394,606682,10,'editor',NULL,NULL),(1924394,4834796,1,'actor',NULL,'[\"Robbie\"]'),(1924394,378132,2,'actor',NULL,'[\"Harry\"]'),(1924394,19885,3,'actor',NULL,'[\"Thaddeus\"]'),(1924394,1162012,4,'actor',NULL,'[\"Albert\"]'),(1924394,516360,5,'director',NULL,NULL),(1924394,491956,6,'writer','screenplay',NULL),(1924394,639780,7,'producer','producer',NULL),(1924394,6070,8,'composer',NULL,NULL),(1924394,752811,9,'cinematographer',NULL,NULL),(1924396,702760,10,'editor',NULL,NULL),(1924396,1691,1,'actor',NULL,'[\"Virgil Oldman\"]'),(1924396,836343,2,'actor',NULL,'[\"Robert\"]'),(1924396,1679778,3,'actress',NULL,'[\"Claire Ibbetson\"]'),(1924396,661,4,'actor',NULL,'[\"Billy Whistler\"]'),(1924396,868153,5,'director',NULL,NULL),(1924396,1799384,6,'producer','producer',NULL),(1924396,656465,7,'producer','producer',NULL),(1924396,1553,8,'composer',NULL,NULL),(1924396,952525,9,'cinematographer','director of photography',NULL),(1924429,230045,10,'cinematographer','director of photography',NULL),(1924429,564215,1,'actor',NULL,'[\"Simon\"]'),(1924429,206257,2,'actress',NULL,'[\"Elizabeth\"]'),(1924429,1993,3,'actor',NULL,'[\"Franck\"]'),(1924429,764527,4,'actor',NULL,'[\"Nate\"]'),(1924429,965,5,'director',NULL,NULL),(1924429,13878,6,'writer','screenplay',NULL),(1924429,388076,7,'writer','screenplay',NULL),(1924429,1384503,8,'producer','producer',NULL),(1924429,1587208,9,'composer',NULL,NULL),(1924435,2606933,10,'composer',NULL,NULL),(1924435,2159926,1,'actor',NULL,'[\"Ryan\"]'),(1924435,915458,2,'actor',NULL,'[\"Justin\"]'),(1924435,1443527,3,'actor',NULL,'[\"Segars\"]'),(1924435,2400045,4,'actress',NULL,'[\"Josie\"]'),(1924435,339004,5,'director',NULL,NULL),(1924435,1242846,6,'writer','written by',NULL),(1924435,1334526,7,'producer','producer',NULL),(1924435,1533078,8,'producer','producer',NULL),(1924435,65100,9,'composer',NULL,NULL),(1925435,1459019,10,'producer','producer',NULL),(1925435,350335,1,'actor',NULL,'[\"Novikov\"]'),(1925435,684131,2,'actor',NULL,'[\"Ivan\",\"Ivan Zombot\"]'),(1925435,2765435,3,'actor',NULL,'[\"Dimitri\",\"Wall Zombot #4 - Legs\"]'),(1925435,627639,4,'actor',NULL,'[\"Sacha\"]'),(1925435,704675,5,'director',NULL,NULL),(1925435,854185,6,'writer','story',NULL),(1925435,593222,7,'writer',NULL,NULL),(1925435,791217,8,'writer','characters',NULL),(1925435,1458075,9,'producer','producer',NULL),(1926992,1980596,1,'actress',NULL,'[\"Lawyer\"]'),(1926992,649746,2,'actress',NULL,'[\"Translator\"]'),(1926992,1486911,3,'actor',NULL,'[\"Husband\"]'),(1926992,1249246,4,'actress',NULL,'[\"Doctor\"]'),(1926992,1488024,5,'director',NULL,NULL),(1926992,3697166,6,'cinematographer',NULL,NULL),(1926992,610194,7,'editor',NULL,NULL),(1926992,4554791,8,'production_designer',NULL,NULL),(1928335,3726210,10,'producer','producer',NULL),(1928335,582257,1,'actor',NULL,'[\"Gabriel\"]'),(1928335,514904,2,'actor',NULL,'[\"Snakehead\"]'),(1928335,2932738,3,'actress',NULL,'[\"Som\"]'),(1928335,507363,4,'actor',NULL,'[\"Carpenter\"]'),(1928335,3450267,5,'director',NULL,NULL),(1928335,1121703,6,'writer','written by',NULL),(1928335,2435550,7,'producer','producer',NULL),(1928335,263839,8,'producer','producer',NULL),(1928335,848841,9,'producer','producer',NULL),(1928337,4043287,10,'producer','producer',NULL),(1928337,189200,1,'actor',NULL,'[\"Michael\"]'),(1928337,263759,2,'actress',NULL,'[\"Lyla\"]'),(1928337,1969169,3,'actor',NULL,'[\"Lex\"]'),(1928337,1566474,4,'actress',NULL,'[\"Claire\"]'),(1928337,3413681,5,'director',NULL,NULL),(1928337,2132562,6,'writer','story',NULL),(1928337,3414193,7,'writer','writer',NULL),(1928337,4321690,8,'writer','story',NULL),(1928337,4345145,9,'producer','producer',NULL),(1929263,5387,10,'producer','producer',NULL),(1929263,1427,1,'actor',NULL,'[\"Todd Burpo\"]'),(1929263,717709,2,'actress',NULL,'[\"Sonja Burpo\"]'),(1929263,2006,3,'actor',NULL,'[\"Jay Wilkins\"]'),(1929263,5889877,4,'actor',NULL,'[\"Colton Burpo\"]'),(1929263,908824,5,'director',NULL,NULL),(1929263,662134,6,'writer','screenplay',NULL),(1929263,4455796,7,'writer','book',NULL),(1929263,3004527,8,'writer','book',NULL),(1929263,415890,9,'producer','producer',NULL),(1930294,1439215,10,'production_designer',NULL,NULL),(1930294,1051221,1,'actress',NULL,'[\"Abby\"]'),(1930294,1128572,2,'actress',NULL,'[\"Lou\"]'),(1930294,98378,3,'actress',NULL,'[\"Sarah\"]'),(1930294,3536375,4,'actor',NULL,'[\"Henry\"]'),(1930294,243233,5,'writer','screenplay',NULL),(1930294,1532846,6,'producer','producer',NULL),(1930294,1705911,7,'composer',NULL,NULL),(1930294,1629321,8,'cinematographer','director of photography',NULL),(1930294,891048,9,'editor',NULL,NULL),(1930315,916298,10,'editor',NULL,NULL),(1930315,652089,1,'actress',NULL,'[\"Taylor Hillridge\"]'),(1930315,659048,2,'actress',NULL,'[\"Samantha Caldone\"]'),(1930315,1012010,3,'actress',NULL,'[\"Cheyenne Mortenson\"]'),(1930315,746414,4,'actress',NULL,'[\"Kris Hillridge\"]'),(1930315,82748,5,'director',NULL,NULL),(1930315,2058180,6,'writer','written by',NULL),(1930315,1090994,7,'producer','producer',NULL),(1930315,312292,8,'composer',NULL,NULL),(1930315,5602,9,'cinematographer',NULL,NULL),(1930371,3275688,1,'actress',NULL,'[\"Belle\"]'),(1930371,3270108,2,'actress',NULL,'[\"Joe\"]'),(1930371,8892,3,'actress',NULL,'[\"Abigail\"]'),(1930371,317302,4,'actress',NULL,'[\"Shoshi\"]'),(1930371,4456548,5,'writer','written by',NULL),(1930371,3744919,6,'producer','producer',NULL),(1930371,2672105,7,'composer',NULL,NULL),(1930371,3763905,8,'cinematographer',NULL,NULL),(1930371,4457104,9,'editor',NULL,NULL),(1931435,759363,10,'producer','producer',NULL),(1931435,134,1,'actor',NULL,'[\"Don\"]'),(1931435,473,2,'actress',NULL,'[\"Ellie\"]'),(1931435,1337,3,'actress',NULL,'[\"Lyla\"]'),(1931435,1086543,4,'actress',NULL,'[\"Missy\"]'),(1931435,951698,5,'director',NULL,NULL),(1931435,111379,6,'writer','motion picture \"Mon frère se marie\"',NULL),(1931435,837141,7,'writer','motion picture \"Mon frère se marie\"',NULL),(1931435,441097,8,'producer','producer',NULL),(1931435,2668976,9,'producer','producer',NULL),(1931533,1265913,10,'editor',NULL,NULL),(1931533,268199,1,'actor',NULL,'[\"Marty\"]'),(1931533,437,2,'actor',NULL,'[\"Charlie\"]'),(1931533,5377,3,'actor',NULL,'[\"Billy\"]'),(1931533,686,4,'actor',NULL,'[\"Hans\"]'),(1931533,1732981,5,'director',NULL,NULL),(1931533,110357,6,'producer','producer',NULL),(1931533,194446,7,'producer','producer',NULL),(1931533,1980,8,'composer',NULL,NULL),(1931533,1023204,9,'cinematographer','director of photography',NULL),(1931602,507343,10,'composer',NULL,NULL),(1931602,266824,1,'actress',NULL,'[\"Lilly\"]'),(1931602,647634,2,'actress',NULL,'[\"Gerri\"]'),(1931602,1285082,3,'actor',NULL,'[\"Beach Boy\"]'),(1931602,3095723,4,'actor',NULL,'[\"Beach Boy\"]'),(1931602,284524,5,'director',NULL,NULL),(1931602,3021633,6,'producer','producer',NULL),(1931602,518757,7,'producer','producer',NULL),(1931602,803826,8,'producer','producer',NULL),(1931602,1003921,9,'producer','producer',NULL),(1932718,881811,10,'producer','producer',NULL),(1932718,749263,1,'actor',NULL,'[\"Adam\"]'),(1932718,209,2,'actor',NULL,'[\"Mike\"]'),(1932718,569,3,'actress',NULL,'[\"Phoebe\"]'),(1932718,1265802,4,'actor',NULL,'[\"Neil\"]'),(1932718,89742,5,'director',NULL,NULL),(1932718,935616,6,'writer','written by',NULL),(1932718,210941,7,'producer','producer',NULL),(1932718,465800,8,'producer','producer',NULL),(1932718,585958,9,'producer','producer',NULL),(1932767,3259054,10,'producer','producer',NULL),(1932767,194,1,'actress',NULL,'[\"Susanna\"]'),(1932767,2907,2,'actor',NULL,'[\"Lincoln\"]'),(1932767,176869,3,'actor',NULL,'[\"Beale\"]'),(1932767,4092740,4,'actress',NULL,'[\"Margo\"]'),(1932767,569166,5,'director',NULL,NULL),(1932767,796915,6,'director',NULL,NULL),(1932767,1057734,7,'writer','screenplay by',NULL),(1932767,142154,8,'writer','screenplay by',NULL),(1932767,416556,9,'writer','based on the novel by',NULL),(1935179,1309148,10,'cinematographer','director of photography',NULL),(1935179,190,1,'actor',NULL,'[\"Mud\"]'),(1935179,4446467,2,'actor',NULL,'[\"Ellis\"]'),(1935179,5015107,3,'actor',NULL,'[\"Neckbone\"]'),(1935179,1731,4,'actor',NULL,'[\"Tom\"]'),(1935179,2158772,5,'director',NULL,NULL),(1935179,11396650,6,'producer','producer',NULL),(1935179,338320,7,'producer','producer',NULL),(1935179,753083,8,'producer','producer',NULL),(1935179,935060,9,'composer',NULL,NULL),(1935859,383588,10,'composer',NULL,NULL),(1935859,1200692,1,'actress',NULL,'[\"Miss Peregrine\"]'),(1935859,2633535,2,'actor',NULL,'[\"Jake\"]'),(1935859,168,3,'actor',NULL,'[\"Barron\"]'),(1935859,1132,4,'actress',NULL,'[\"Miss Avocet\"]'),(1935859,318,5,'director',NULL,NULL),(1935859,2207353,6,'writer','based upon the novel written by',NULL),(1935859,963359,7,'writer','screenplay by',NULL),(1935859,1858656,8,'producer','producer',NULL),(1935859,867768,9,'producer','producer',NULL),(1935897,692925,10,'cinematographer','director of photography',NULL),(1935897,492,1,'actress',NULL,'[\"Joan\"]'),(1935897,2254074,2,'actress',NULL,'[\"Belle\"]'),(1935897,5085683,3,'actress',NULL,'[\"Juliet\"]'),(1935897,1185747,4,'actor',NULL,'[\"James\"]'),(1935897,451076,5,'director',NULL,NULL),(1935897,89658,6,'producer','producer',NULL),(1935897,268107,7,'producer','producer',NULL),(1935897,489453,8,'producer','producer',NULL),(1935897,2055749,9,'composer',NULL,NULL),(1935902,4113381,10,'producer','producer',NULL),(1935902,1017334,1,'actress',NULL,'[\"Alice\"]'),(1935902,29400,2,'actor',NULL,'[\"John\"]'),(1935902,88127,3,'actress',NULL,'[\"Payton\"]'),(1935902,2915105,4,'actor',NULL,'[\"Arnie\"]'),(1935902,1310794,5,'director',NULL,NULL),(1935902,3095307,6,'writer','screenplay',NULL),(1935902,325181,7,'producer','producer',NULL),(1935902,1645871,8,'producer','producer',NULL),(1935902,740427,9,'producer','producer',NULL),(1937118,75645,10,'production_designer',NULL,NULL),(1937118,244151,1,'actor',NULL,'[\"Xavier Rousseau\"]'),(1937118,851582,2,'actress',NULL,'[\"Martine\"]'),(1937118,208426,3,'actress',NULL,'[\"Isabelle\"]'),(1937118,717709,4,'actress',NULL,'[\"Wendy\"]'),(1937118,458251,5,'director',NULL,NULL),(1937118,506357,6,'producer','producer',NULL),(1937118,1293792,7,'composer',NULL,NULL),(1937118,1161987,8,'cinematographer',NULL,NULL),(1937118,2691134,9,'editor',NULL,NULL),(1937149,850173,10,'producer','producer',NULL),(1937149,180580,1,'actor',NULL,'[\"Jaime Peña\"]'),(1937149,1281229,2,'actor',NULL,'[\"Álex Ulloa\"]'),(1937149,749104,3,'actress',NULL,'[\"Mayka Villaverde\"]'),(1937149,3467663,4,'actress',NULL,'[\"Carla\"]'),(1937149,1079062,5,'director',NULL,NULL),(1937149,1516346,6,'writer','screenplay',NULL),(1937149,303922,7,'producer','producer',NULL),(1937149,1481660,8,'producer','producer',NULL),(1937149,963233,9,'producer','producer',NULL),(1937264,933377,10,'cinematographer','director of photography',NULL),(1937264,266824,1,'actress',NULL,'[\"Tessa Scott\"]'),(1937264,1086981,2,'actor',NULL,'[\"Jake\"]'),(1937264,3528539,3,'actor',NULL,'[\"Adam\"]'),(1937264,175916,4,'actor',NULL,'[\"Father\"]'),(1937264,662530,5,'director',NULL,NULL),(1937264,236050,6,'writer','based on the book \"Before I Die\" by',NULL),(1937264,110357,7,'producer','producer',NULL),(1937264,194446,8,'producer','producer',NULL),(1937264,641169,9,'composer',NULL,NULL),(1937390,826663,10,'editor',NULL,NULL),(1937390,1250,1,'actress',NULL,'[\"Joe\"]'),(1937390,1745,2,'actor',NULL,'[\"Seligman\"]'),(1937390,5237479,3,'actress',NULL,'[\"Young Joe\"]'),(1937390,479471,4,'actor',NULL,'[\"Jerôme\"]'),(1937390,1885,5,'director',NULL,NULL),(1937390,895366,6,'producer','producer',NULL),(1937390,993994,7,'cinematographer','director of photography',NULL),(1937390,1069370,8,'editor',NULL,NULL),(1937390,1859287,9,'editor','co-editor',NULL),(1939659,1937,10,'composer',NULL,NULL),(1939659,1631269,1,'actress',NULL,'[\"Carrie White\"]'),(1939659,194,2,'actress',NULL,'[\"Margaret White\"]'),(1939659,3538539,3,'actress',NULL,'[\"Sue Snell\"]'),(1939659,234668,4,'actress',NULL,'[\"Chris Hargensen\"]'),(1939659,5303,5,'director',NULL,NULL),(1939659,169548,6,'writer','screenplay',NULL),(1939659,2630745,7,'writer','screenplay',NULL),(1939659,175,8,'writer','novel',NULL),(1939659,592746,9,'producer','producer',NULL),(1941600,4474480,1,'actress',NULL,'[\"Stella\"]'),(1941600,728786,2,'actress',NULL,'[\"Roza Janowska\"]'),(1941600,3245933,3,'actress',NULL,'[\"Cecile\"]'),(1941600,521295,4,'actor',NULL,'[\"Matteusz Gdula\"]'),(1941600,1098492,5,'director',NULL,NULL),(1941600,526092,6,'producer','producer',NULL),(1941600,4472797,7,'composer',NULL,NULL),(1941600,4542828,8,'composer','co-composer',NULL),(1941600,2370175,9,'cinematographer',NULL,NULL),(1942120,377836,10,'cinematographer',NULL,NULL),(1942120,512071,1,'actor',NULL,'[\"Stéphane\"]'),(1942120,2100,2,'actress',NULL,'[\"Claire Conti\"]'),(1942120,223070,3,'actress',NULL,'[\"Céline\"]'),(1942120,1099640,4,'actor',NULL,'[\"Christophe\"]'),(1942120,513371,5,'director',NULL,NULL),(1942120,141127,6,'writer','novel: D\'autres vies que la mienne',NULL),(1942120,183686,7,'writer','screenplay',NULL),(1942120,1379819,8,'producer','producer',NULL),(1942120,1099067,9,'composer',NULL,NULL),(1942798,3387157,10,'composer',NULL,NULL),(1942798,4147558,1,'actress',NULL,'[\"Kelly Walker\"]'),(1942798,114177,2,'actor',NULL,'[\"Con\"]'),(1942798,5226523,3,'actress',NULL,'[\"Denise Gordan\"]'),(1942798,1194,4,'actor',NULL,'[\"Judd Walker\"]'),(1942798,123009,5,'director',NULL,NULL),(1942798,83590,6,'writer',NULL,NULL),(1942798,46168,7,'producer','executive producer',NULL),(1942798,975225,8,'producer','producer',NULL),(1942798,2786983,9,'producer','executive producer',NULL),(1942989,103593,10,'composer',NULL,NULL),(1942989,252728,1,'actor',NULL,'[\"Ibrahim\"]'),(1942989,115671,2,'actress',NULL,'[\"Diane\"]'),(1942989,542492,3,'actor',NULL,'[\"Mo\"]'),(1942989,40472,4,'actor',NULL,'[\"Winston\"]'),(1942989,3018890,5,'director',NULL,NULL),(1942989,3195822,6,'writer',NULL,NULL),(1942989,1273456,7,'writer',NULL,NULL),(1942989,891783,8,'producer','line producer',NULL),(1942989,1414749,9,'producer','producer',NULL),(1945062,450347,10,'producer','producer',NULL),(1945062,3358233,1,'actress',NULL,'[\"Angelina\"]'),(1945062,290556,2,'actor',NULL,'[\"Frances\"]'),(1945062,1287,3,'actress',NULL,'[\"Margaret\"]'),(1945062,666,4,'actress',NULL,'[\"Phyllis\"]'),(1945062,4107260,5,'director',NULL,NULL),(1945062,2439425,6,'writer','written by',NULL),(1945062,82012,7,'producer','producer',NULL),(1945062,1989592,8,'producer','producer',NULL),(1945062,1067987,9,'producer','producer',NULL),(1946421,638,1,'self',NULL,'[\"Self\"]'),(1946421,1772,2,'self',NULL,'[\"Self\"]'),(1946421,984,3,'self',NULL,'[\"Self\"]'),(1946421,550,4,'self',NULL,'[\"Self\"]'),(1946421,2940781,5,'producer','executive producer',NULL),(1946421,4484067,6,'composer',NULL,NULL),(1946421,3965287,7,'cinematographer','director of photography',NULL),(1948150,5632466,10,'producer','producer',NULL),(1948150,222426,1,'actor',NULL,'[\"Inspector Bajirao M. Singham\"]'),(1948150,695177,2,'actor',NULL,'[\"Jaikant Shikre\"]'),(1948150,659249,3,'actor',NULL,'[\"Inspector Rakesh Kadam\"]'),(1948150,2570245,4,'actress',NULL,'[\"Kavya G. Bhosle\"]'),(1948150,1460159,5,'director',NULL,NULL),(1948150,1419055,6,'writer','original story',NULL),(1948150,1182352,7,'writer','screenplay',NULL),(1948150,2678319,8,'writer','dialogue',NULL),(1948150,2260872,9,'writer','dialogue',NULL),(19500164,1199351,10,'writer','story by',NULL),(19500164,1631269,1,'actress',NULL,'[\"Nimona\"]'),(19500164,1981893,2,'actor',NULL,'[\"Ballister Boldheart\"]'),(19500164,3631295,3,'actor',NULL,'[\"Ambrosius Goldenloin\"]'),(19500164,175814,4,'actress',NULL,'[\"The Director\"]'),(19500164,2939767,5,'director',NULL,NULL),(19500164,702863,6,'director',NULL,NULL),(19500164,47916,7,'writer','screenplay by',NULL),(19500164,1124448,8,'writer','screenplay by',NULL),(19500164,962596,9,'writer','story by',NULL),(1950135,775480,10,'cinematographer',NULL,NULL),(1950135,177396,1,'actor',NULL,'[\"Jon\",\"groom\"]'),(1950135,4504454,2,'actress',NULL,'[\"Elissa\",\"bride-Daphne\'s sister\"]'),(1950135,2872012,3,'actor',NULL,'[\"Phil\",\"husband\"]'),(1950135,2377750,4,'actress',NULL,'[\"Daphne\",\"wife\"]'),(1950135,2358558,5,'director',NULL,NULL),(1950135,7333899,6,'writer','co-writer',NULL),(1950135,2250789,7,'producer','producer',NULL),(1950135,6727657,8,'composer',NULL,NULL),(1950135,2568850,9,'composer',NULL,NULL),(1950186,867768,10,'producer','producer',NULL),(1950186,354,1,'actor',NULL,'[\"Carroll Shelby\"]'),(1950186,288,2,'actor',NULL,'[\"Ken Miles\"]'),(1950186,1256532,3,'actor',NULL,'[\"Lee Iacocca\"]'),(1950186,1495520,4,'actress',NULL,'[\"Mollie Miles\"]'),(1950186,3506,5,'director',NULL,NULL),(1950186,125336,6,'writer','written by',NULL),(1950186,3890871,7,'writer','written by',NULL),(1950186,445669,8,'writer','written by',NULL),(1950186,1858656,9,'producer','producer',NULL),(1950235,4490217,10,'writer','based on the book by',NULL),(1950235,5097044,1,'actress',NULL,'[\"Julie\"]'),(1950235,4271336,2,'actor',NULL,'[\"Stuart\"]'),(1950235,3843467,3,'actress',NULL,'[\"Addie\"]'),(1950235,5735148,4,'actress',NULL,'[\"Dorrie\"]'),(1950235,2866226,5,'director',NULL,NULL),(1950235,2083678,6,'writer','screenplay by',NULL),(1950235,835194,7,'writer','screenplay by',NULL),(1950235,134224,8,'writer','screenplay by',NULL),(1950235,1981261,9,'writer','based on the book by',NULL),(1951181,1536130,10,'composer',NULL,NULL),(1951181,182839,1,'actress',NULL,'[\"Ewa Cybulska\"]'),(1951181,1618,2,'actor',NULL,'[\"Bruno Weiss\"]'),(1951181,719637,3,'actor',NULL,'[\"Orlando the Magician\",\"Emil\"]'),(1951181,231436,4,'actress',NULL,'[\"Belva\"]'),(1951181,336695,5,'director',NULL,NULL),(1951181,579453,6,'writer','written by',NULL),(1951181,441097,7,'producer','producer',NULL),(1951181,788513,8,'producer','producer',NULL),(1951181,2002108,9,'producer','producer',NULL),(1951216,4998050,10,'writer','English translation extract from \"Pyjama Tops originally titled Moumou\"',NULL),(1951216,176869,1,'actor',NULL,'[\"Paul Raymond\"]'),(1951216,524240,2,'actor',NULL,'[\"Matron Behind Bars\"]'),(1951216,295484,3,'actress',NULL,'[\"Jean Raymond\"]'),(1951216,1782299,4,'actress',NULL,'[\"Debbie Raymond\"]'),(1951216,935863,5,'director',NULL,NULL),(1951216,339043,6,'writer','written by',NULL),(1951216,5641396,7,'writer','based on biographical material from \"Members Only: The Life and Times of Paul Raymond\"',NULL),(1951216,209988,8,'writer','extract from \"Pyjama Tops originally titled Moumou\"',NULL),(1951216,6147127,9,'writer','extract from \"Pyjama Tops originally titled Moumou\"',NULL),(1951261,65100,10,'composer',NULL,NULL),(1951261,177896,1,'actor',NULL,'[\"Phil\"]'),(1951261,302108,2,'actor',NULL,'[\"Alan\"]'),(1951261,1159180,3,'actor',NULL,'[\"Stu\"]'),(1951261,58581,4,'actor',NULL,'[\"Doug\"]'),(1951261,680846,5,'director',NULL,NULL),(1951261,563301,6,'writer','written by',NULL),(1951261,524190,7,'writer','characters',NULL),(1951261,601859,8,'writer','characters',NULL),(1951261,325175,9,'producer','producer',NULL),(1951264,453091,10,'producer','producer',NULL),(1951264,2225369,1,'actress',NULL,'[\"Katniss Everdeen\"]'),(1951264,1242688,2,'actor',NULL,'[\"Peeta Mellark\"]'),(1951264,2955013,3,'actor',NULL,'[\"Gale Hawthorne\"]'),(1951264,450,4,'actor',NULL,'[\"Plutarch Heavensbee\"]'),(1951264,1349376,5,'director',NULL,NULL),(1951264,64479,6,'writer','screenplay by',NULL),(1951264,1578335,7,'writer','screenplay by',NULL),(1951264,1056741,8,'writer','based upon the novel \"Catching Fire\" by',NULL),(1951264,1749221,9,'producer','producer',NULL),(1951265,453091,10,'producer','producer',NULL),(1951265,2225369,1,'actress',NULL,'[\"Katniss Everdeen\"]'),(1951265,1242688,2,'actor',NULL,'[\"Peeta Mellark\"]'),(1951265,2955013,3,'actor',NULL,'[\"Gale Hawthorne\"]'),(1951265,437,4,'actor',NULL,'[\"Haymitch Abernathy\"]'),(1951265,1349376,5,'director',NULL,NULL),(1951265,185976,6,'writer','screenplay by',NULL),(1951265,834960,7,'writer','screenplay by',NULL),(1951265,1056741,8,'writer','adaptation by',NULL),(1951265,1749221,9,'producer','producer',NULL),(1951266,453091,10,'producer','producer',NULL),(1951266,2225369,1,'actress',NULL,'[\"Katniss Everdeen\"]'),(1951266,1242688,2,'actor',NULL,'[\"Peeta Mellark\"]'),(1951266,2955013,3,'actor',NULL,'[\"Gale Hawthorne\"]'),(1951266,437,4,'actor',NULL,'[\"Haymitch Abernathy\"]'),(1951266,1349376,5,'director',NULL,NULL),(1951266,185976,6,'writer','screenplay by',NULL),(1951266,834960,7,'writer','screenplay by',NULL),(1951266,1056741,8,'writer','adaptation by',NULL),(1951266,1749221,9,'producer','producer',NULL),(1954701,990823,10,'production_designer',NULL,NULL),(1954701,771713,1,'actor',NULL,'[\"Niko Fischer\"]'),(1954701,778348,2,'actress',NULL,'[\"Elli\"]'),(1954701,230649,3,'actor',NULL,'[\"Karl Speckenbach\"]'),(1954701,775709,4,'actor',NULL,'[\"Psychologe\"]'),(1954701,1673756,5,'director',NULL,NULL),(1954701,5840079,6,'composer',NULL,NULL),(1954701,5840080,7,'composer',NULL,NULL),(1954701,456859,8,'cinematographer',NULL,NULL),(1954701,1315848,9,'editor',NULL,NULL),(1954780,4005376,1,'actor',NULL,'[\"Wolf\"]'),(1954780,4001763,2,'actress',NULL,'[\"Rachel\"]'),(1954780,3848484,3,'actor',NULL,'[\"Jake\"]'),(1954780,3525994,4,'actress',NULL,'[\"Samantha\"]'),(1954780,3845578,5,'director',NULL,NULL),(1954780,3682427,6,'producer','producer',NULL),(1954780,6682916,7,'composer',NULL,NULL),(1958043,4263757,10,'editor',NULL,NULL),(1958043,769590,1,'actress',NULL,'[\"Brandy\"]'),(1958043,4504121,2,'actor',NULL,'[\"Zack\"]'),(1958043,1745427,3,'actor',NULL,'[\"Bobby\"]'),(1958043,4504267,4,'actor',NULL,'[\"Mikey\"]'),(1958043,4941030,5,'writer','written by',NULL),(1958043,2522898,6,'writer','story by',NULL),(1958043,2124081,7,'producer','producer',NULL),(1958043,82797,8,'composer',NULL,NULL),(1958043,1046893,9,'cinematographer','director of photography',NULL),(1959332,3388,10,'cinematographer',NULL,NULL),(1959332,410622,1,'actress',NULL,'[\"Mary Mason\"]'),(1959332,1182955,2,'actor',NULL,'[\"Billy Barker\"]'),(1959332,2021381,3,'actress',NULL,'[\"Beatress Johnson\"]'),(1959332,522704,4,'actor',NULL,'[\"Dr. Grant\"]'),(1959332,3609341,5,'director',NULL,NULL),(1959332,3609300,6,'director',NULL,NULL),(1959332,193394,7,'producer','producer',NULL),(1959332,878953,8,'producer','producer',NULL),(1959332,20906,9,'composer',NULL,NULL),(1959438,3087954,10,'editor',NULL,NULL),(1959438,3033378,1,'actress',NULL,'[\"Djuna\"]'),(1959438,581953,2,'actress',NULL,'[\"Mimi\"]'),(1959438,893257,3,'actor',NULL,'[\"Paolo\"]'),(1959438,1021721,4,'actress',NULL,'[\"Rebecca\"]'),(1959438,144018,5,'director',NULL,NULL),(1959438,309684,6,'producer','producer',NULL),(1959438,650164,7,'producer','producer',NULL),(1959438,400312,8,'composer',NULL,NULL),(1959438,1309722,9,'cinematographer',NULL,NULL),(1959490,543739,10,'composer',NULL,NULL),(1959490,128,1,'actor',NULL,'[\"Noah\"]'),(1959490,124,2,'actress',NULL,'[\"Naameh\"]'),(1959490,164,3,'actor',NULL,'[\"Methuselah\"]'),(1959490,914612,4,'actress',NULL,'[\"Ila\"]'),(1959490,4716,5,'director',NULL,NULL),(1959490,359504,6,'writer','written by',NULL),(1959490,291542,7,'producer','producer',NULL),(1959490,586969,8,'producer','producer',NULL),(1959490,661289,9,'producer','producer',NULL),(1959563,2659,10,'producer','producer',NULL),(1959563,5351,1,'actor',NULL,'[\"Michael Bryce\"]'),(1959563,168,2,'actor',NULL,'[\"Darius Kincaid\"]'),(1959563,198,3,'actor',NULL,'[\"Vladislav Dukhovich\"]'),(1959563,1392388,4,'actress',NULL,'[\"Amelia Roussel\"]'),(1959563,400850,5,'director',NULL,NULL),(1959563,4468296,6,'writer','written by',NULL),(1959563,1247584,7,'producer','producer',NULL),(1959563,642869,8,'producer','producer',NULL),(1959563,860315,9,'producer','producer',NULL),(1961175,2064770,10,'writer','based on the novel by',NULL),(1961175,3729721,1,'actor',NULL,'[\"Mitch Rapp\"]'),(1961175,474,2,'actor',NULL,'[\"Stan Hurley\"]'),(1961175,5125,3,'actress',NULL,'[\"Irene Kennedy\"]'),(1961175,2018237,4,'actor',NULL,'[\"Ghost\"]'),(1961175,191147,5,'director',NULL,NULL),(1961175,771496,6,'writer','screenplay by',NULL),(1961175,3360218,7,'writer','screenplay by',NULL),(1961175,1880,8,'writer','screenplay by',NULL),(1961175,380980,9,'writer','screenplay by',NULL),(1961281,4503275,1,'actor',NULL,'[\"Rasmus\"]'),(1961281,2179241,2,'actor',NULL,'[\"Nicklas\"]'),(1961281,198983,3,'actor',NULL,'[\"Carsten\"]'),(1961281,1924339,4,'actor',NULL,'[\"Pusher\"]'),(1961281,1603283,5,'director',NULL,NULL),(1961281,4515387,6,'composer',NULL,NULL),(1961281,1265382,7,'cinematographer',NULL,NULL),(1961281,2920894,8,'production_designer',NULL,NULL),(19623240,10489274,1,'actor',NULL,'[\"Christopher Robin\"]'),(19623240,10791266,2,'actress',NULL,'[\"Maria\"]'),(19623240,6502355,3,'actress',NULL,'[\"Jessica\"]'),(19623240,8380569,4,'actress',NULL,'[\"Alice\"]'),(19623240,6294482,5,'director',NULL,NULL),(19623240,590316,6,'writer','characters by',NULL),(19623240,4500258,7,'producer','executive producer',NULL),(19623240,4452385,8,'composer',NULL,NULL),(19623240,5616316,9,'cinematographer','director of photography',NULL),(1964418,592073,10,'cinematographer','director of photography',NULL),(1964418,123,1,'actor',NULL,'[\"Frank Walker\"]'),(1964418,1429380,2,'actress',NULL,'[\"Casey Newton\"]'),(1964418,491402,3,'actor',NULL,'[\"Nix\"]'),(1964418,3864163,4,'actress',NULL,'[\"Athena\"]'),(1964418,83348,5,'director',NULL,NULL),(1964418,511541,6,'writer','screenplay by',NULL),(1964418,2701804,7,'writer','story by',NULL),(1964418,155942,8,'producer','producer',NULL),(1964418,315974,9,'composer',NULL,NULL),(1964624,739151,10,'composer',NULL,NULL),(1964624,524528,1,'actor',NULL,'[\"Germain Germain\"]'),(1964624,773460,2,'actor',NULL,'[\"Bernard - le prof de maths\"]'),(1964624,3312875,3,'actor',NULL,'[\"Claude Garcia\"]'),(1964624,218,4,'actress',NULL,'[\"Jeanne Germain\"]'),(1964624,654830,5,'director',NULL,NULL),(1964624,1974226,6,'writer','play \"El chico de la última fila\"',NULL),(1964624,22969,7,'producer','producer',NULL),(1964624,22971,8,'producer','producer',NULL),(1964624,652226,9,'producer','producer',NULL),(1965065,1988698,10,'producer','producer',NULL),(1965065,135221,1,'actress',NULL,'[\"Sarah\"]'),(1965065,1555340,2,'actress',NULL,'[\"Beth\"]'),(1965065,916406,3,'actor',NULL,'[\"Jonathan\"]'),(1965065,34309,4,'actor',NULL,'[\"Kevin\"]'),(1965065,2278537,5,'director',NULL,NULL),(1965065,113818,6,'writer',NULL,NULL),(1965065,4509100,7,'writer','screenplay',NULL),(1965065,3527897,8,'producer','producer',NULL),(1965065,400252,9,'producer','producer',NULL),(1966566,734954,10,'producer','producer',NULL),(1966566,5176076,1,'actress',NULL,'[\"Katya\"]'),(1966566,3331125,2,'actress',NULL,'[\"Masha\"]'),(1966566,1215228,3,'actor',NULL,'[\"Kapitan Gromov\"]'),(1966566,470981,4,'actor',NULL,'[\"Kapitan Kan\"]'),(1966566,94080,5,'director',NULL,NULL),(1966566,343728,6,'writer','book',NULL),(1966566,811100,7,'writer','screenplay',NULL),(1966566,2658369,8,'writer','screenplay',NULL),(1966566,577861,9,'producer','producer',NULL),(1969062,938645,10,'producer','producer',NULL),(1969062,749263,1,'actor',NULL,'[\"Cam Stuart\"]'),(1969062,757855,2,'actress',NULL,'[\"Maggie Stuart\"]'),(1969062,5602167,3,'actress',NULL,'[\"Amelia Stuart\"]'),(1969062,5602169,4,'actress',NULL,'[\"Faith Stuart\"]'),(1969062,285379,5,'director',NULL,NULL),(1969062,83851,6,'producer','producer',NULL),(1969062,1292502,7,'producer','producer',NULL),(1969062,2803928,8,'producer','producer',NULL),(1969062,630633,9,'producer','producer',NULL),(1971325,2659,10,'producer','producer',NULL),(1971325,104,1,'actor',NULL,'[\"Jacq Vaucan\"]'),(1971325,2171898,2,'actress',NULL,'[\"Rachel Vaucan\"]'),(1971325,1518,3,'actor',NULL,'[\"Sean Wallace\"]'),(1971325,429,4,'actress',NULL,'[\"Duprè\"]'),(1971325,2688320,5,'director',NULL,NULL),(1971325,1672020,6,'writer','written by',NULL),(1971325,1760980,7,'writer','written by',NULL),(1971325,379408,8,'producer','producer',NULL),(1971325,503600,9,'producer','producer',NULL),(1971352,4051162,10,'composer',NULL,NULL),(1971352,235652,1,'actress',NULL,'[\"Sandra\"]'),(1971352,2439111,2,'actress',NULL,'[\"Becky\"]'),(1971352,372366,3,'actor',NULL,'[\"Officer Daniels\"]'),(1971352,131966,4,'actor',NULL,'[\"Van\"]'),(1971352,957505,5,'director',NULL,NULL),(1971352,1021351,6,'producer','producer',NULL),(1971352,510956,7,'producer','producer',NULL),(1971352,615770,8,'producer','producer',NULL),(1971352,1082324,9,'producer','producer',NULL),(1972571,4051169,10,'producer','producer',NULL),(1972571,450,1,'actor',NULL,'[\"Günther Bachmann\"]'),(1972571,1046097,2,'actress',NULL,'[\"Annabel Richter\"]'),(1972571,117709,3,'actor',NULL,'[\"Maximilian\"]'),(1972571,705,4,'actress',NULL,'[\"Martha Sullivan\"]'),(1972571,179221,5,'director',NULL,NULL),(1972571,100597,6,'writer','screenplay',NULL),(1972571,494170,7,'writer','novel',NULL),(1972571,180508,8,'writer','additional writing',NULL),(1972571,129573,9,'producer','producer',NULL),(1972591,326040,10,'producer','producer',NULL),(1972591,402271,1,'actor',NULL,'[\"Arthur\"]'),(1972591,2793591,2,'actress',NULL,'[\"The Mage\"]'),(1972591,179,3,'actor',NULL,'[\"Vortigern\"]'),(1972591,5023,4,'actor',NULL,'[\"Bedivere\"]'),(1972591,5363,5,'director',NULL,NULL),(1972591,1703612,6,'writer','screenplay by',NULL),(1972591,927880,7,'writer','screenplay by',NULL),(1972591,229694,8,'writer','story by',NULL),(1972591,164626,9,'producer','producer',NULL),(1974419,544947,10,'producer','producer',NULL),(1974419,1102577,1,'actress',NULL,'[\"Jesse\"]'),(1974419,376716,2,'actress',NULL,'[\"Roberta Hoffmann\"]'),(1974419,206,3,'actor',NULL,'[\"Hank\"]'),(1974419,3194762,4,'actor',NULL,'[\"Dean\"]'),(1974419,716347,5,'director',NULL,NULL),(1974419,6890017,6,'writer','screenplay by',NULL),(1974419,6031291,7,'writer','screenplay by',NULL),(1974419,1178284,8,'producer','producer',NULL),(1974419,241489,9,'producer','producer',NULL),(1976000,827923,10,'producer','producer',NULL),(1976000,1557,1,'actor',NULL,'[\"Chester\"]'),(1976000,379,2,'actress',NULL,'[\"Colette\"]'),(1976000,1209966,3,'actor',NULL,'[\"Rydal\"]'),(1976000,79651,4,'actress',NULL,'[\"Lauren\"]'),(1976000,24925,5,'director',NULL,NULL),(1976000,383604,6,'writer','based on the novel by',NULL),(1976000,79677,7,'producer','producer',NULL),(1976000,271479,8,'producer','producer',NULL),(1976000,806255,9,'producer','producer',NULL),(1976009,1234835,10,'cinematographer','director of photography',NULL),(1976009,705356,1,'actor',NULL,'[\"Igor\"]'),(1976009,564215,2,'actor',NULL,'[\"Victor Frankenstein\"]'),(1976009,3726887,3,'actress',NULL,'[\"Lorelei\"]'),(1976009,778831,4,'actor',NULL,'[\"Inspector Turpin\"]'),(1976009,6476,5,'director',NULL,NULL),(1976009,484840,6,'writer','screenplay',NULL),(1976009,791217,7,'writer','novel \"Frankenstein\"',NULL),(1976009,204862,8,'producer','producer',NULL),(1976009,35661,9,'composer',NULL,NULL),(1976633,817748,1,'actor',NULL,'[\"Grandfather\"]'),(1976633,4524582,2,'actor',NULL,'[\"Boy\"]'),(1976633,4610196,3,'actor',NULL,'[\"Resistance Fighter\"]'),(1976633,4017066,4,'actress',NULL,'[\"Resistance Fighter\"]'),(1976633,3381232,5,'director',NULL,NULL),(1976633,3380243,6,'director',NULL,NULL),(1976633,4757359,7,'writer','co-scriptwriter',NULL),(1976633,2935375,8,'cinematographer',NULL,NULL),(1977739,635103,10,'editor',NULL,NULL),(1977739,5117180,1,'actress',NULL,'[\"Iris\"]'),(1977739,2685920,2,'actor',NULL,'[\"John\"]'),(1977739,4739140,3,'actress',NULL,'[\"Sonja\"]'),(1977739,278,4,'actress',NULL,'[\"Dagmar Glans\"]'),(1977739,545729,5,'director',NULL,NULL),(1977739,62340,6,'writer','written by',NULL),(1977739,1281315,7,'producer','producer',NULL),(1977739,1736162,8,'composer',NULL,NULL),(1977739,887227,9,'cinematographer',NULL,NULL),(1978480,733316,10,'editor',NULL,NULL),(1978480,2209074,1,'actress',NULL,'[\"Yolanda\"]'),(1978480,3083922,2,'actress',NULL,'[\"Mari\"]'),(1978480,308299,3,'actor',NULL,'[\"Mr. Olveros\"]'),(1978480,2755651,4,'actress',NULL,'[\"Mrs. Olveros\"]'),(1978480,1312731,5,'director',NULL,NULL),(1978480,2204910,6,'producer','producer',NULL),(1978480,123139,7,'producer','producer',NULL),(1978480,79715,8,'composer',NULL,NULL),(1978480,1598899,9,'cinematographer',NULL,NULL),(1978532,853781,10,'cinematographer','director of photography',NULL),(1978532,479527,1,'actor',NULL,'[\"Barry Burke\"]'),(1978532,915458,2,'actor',NULL,'[\"Desmond\"]'),(1978532,1887429,3,'actor',NULL,'[\"Rafe\"]'),(1978532,3042755,4,'actor',NULL,'[\"Kurt\"]'),(1978532,1745389,5,'director',NULL,NULL),(1978532,3154628,6,'producer','producer',NULL),(1978532,430742,7,'producer','producer',NULL),(1978532,689909,8,'producer','producer',NULL),(1978532,3004433,9,'composer',NULL,NULL),(1979319,4809574,10,'producer','producer',NULL),(1979319,2615398,1,'actor',NULL,'[\"Kenshin Himura\"]'),(1979319,3191754,2,'actress',NULL,'[\"Kaoru Kamiya\"]'),(1979319,1066974,3,'actress',NULL,'[\"Megumi Takani\"]'),(1979319,1328568,4,'actor',NULL,'[\"Sanosuke Sagara\"]'),(1979319,3311094,5,'director',NULL,NULL),(1979319,914941,6,'writer','manga',NULL),(1979319,2789483,7,'writer','screenplay',NULL),(1979319,368694,8,'producer','producer',NULL),(1979319,2598359,9,'producer','producer',NULL),(1979320,1003922,10,'producer','producer',NULL),(1979320,117709,1,'actor',NULL,'[\"Niki Lauda\"]'),(1979320,1165110,2,'actor',NULL,'[\"James Hunt\"]'),(1979320,1312575,3,'actress',NULL,'[\"Suzy Miller\"]'),(1979320,487884,4,'actress',NULL,'[\"Marlene Lauda\"]'),(1979320,165,5,'director',NULL,NULL),(1979320,604948,6,'writer','written by',NULL),(1979320,247787,7,'producer','producer',NULL),(1979320,271479,8,'producer','producer',NULL),(1979320,4976,9,'producer','producer',NULL),(1979376,566489,10,'writer','original story by',NULL),(1979376,158,1,'actor',NULL,'[\"Woody\"]'),(1979376,741,2,'actor',NULL,'[\"Buzz Lightyear\"]'),(1979376,1633,3,'actress',NULL,'[\"Bo Peep\"]'),(1979376,355024,4,'actor',NULL,'[\"Forky\"]'),(1979376,2155757,5,'director',NULL,NULL),(1979376,5124,6,'writer','original story by',NULL),(1979376,4056,7,'writer','original story by',NULL),(1979376,1445746,8,'writer','original story by',NULL),(1979376,429069,9,'writer','original story by',NULL),(1979388,373282,10,'writer','additional screenplay material by',NULL),(1979388,942482,1,'actor',NULL,'[\"Poppa\"]'),(1979388,531,2,'actress',NULL,'[\"Momma\"]'),(1979388,5558187,3,'actress',NULL,'[\"Young Libby\"]'),(1979388,4455823,4,'actor',NULL,'[\"Young Buck\"]'),(1979388,812307,5,'director',NULL,NULL),(1979388,677037,6,'writer','original concept & development by',NULL),(1979388,4402755,7,'writer','story by',NULL),(1979388,498834,8,'writer','story by',NULL),(1979388,1626375,9,'writer','story by',NULL),(1980209,209773,10,'producer','producer',NULL),(1980209,242,1,'actor',NULL,'[\"Daniel Lugo\"]'),(1980209,425005,2,'actor',NULL,'[\"Paul Doyle\"]'),(1980209,1107001,3,'actor',NULL,'[\"Adrian Doorbal\"]'),(1980209,1724,4,'actor',NULL,'[\"Victor Kershaw\"]'),(1980209,881,5,'director',NULL,NULL),(1980209,1321655,6,'writer','screenplay',NULL),(1980209,1321656,7,'writer','screenplay',NULL),(1980209,2431017,8,'writer','based on the magazine articles by',NULL),(1980209,117290,9,'producer','producer',NULL),(1980929,1078971,10,'cinematographer','director of photography',NULL),(1980929,461136,1,'actress',NULL,'[\"Gretta\"]'),(1980929,749263,2,'actor',NULL,'[\"Dan\"]'),(1980929,1747013,3,'actor',NULL,'[\"Dave\"]'),(1980929,2794962,4,'actress',NULL,'[\"Violet\"]'),(1980929,138809,5,'director',NULL,NULL),(1980929,31976,6,'producer','producer',NULL),(1980929,1180690,7,'producer','producer',NULL),(1980929,106835,8,'producer','producer',NULL),(1980929,1353967,9,'composer',NULL,NULL),(1981107,499448,10,'producer','producer',NULL),(1981107,307,1,'actress',NULL,'[\"Dr. Clair, Mother\"]'),(1981107,1114,2,'actress',NULL,'[\"Ms. Jibsen\"]'),(1981107,719678,3,'actor',NULL,'[\"Father\"]'),(1981107,3714535,4,'actor',NULL,'[\"T.S. Spivet\"]'),(1981107,466,5,'director',NULL,NULL),(1981107,491011,6,'writer','screenplay',NULL),(1981107,2916565,7,'writer','novel \"The Selected Works of T.S. Spivet\"',NULL),(1981107,109393,8,'producer','producer',NULL),(1981107,320727,9,'producer','executive producer',NULL),(1981115,734441,10,'writer','story by',NULL),(1981115,1165110,1,'actor',NULL,'[\"Thor\"]'),(1981115,204,2,'actress',NULL,'[\"Jane Foster\"]'),(1981115,1089991,3,'actor',NULL,'[\"Loki\"]'),(1981115,1745,4,'actor',NULL,'[\"Erik Selvig\"]'),(1981115,851930,5,'director',NULL,NULL),(1981115,1236653,6,'writer','screenplay by',NULL),(1981115,1321655,7,'writer','screenplay by',NULL),(1981115,1321656,8,'writer','screenplay by',NULL),(1981115,668309,9,'writer','story by',NULL),(1981128,769656,10,'cinematographer','director of photography',NULL),(1981128,124930,1,'actor',NULL,'[\"Jake Lawson\"]'),(1981128,836343,2,'actor',NULL,'[\"Max Lawson\"]'),(1981128,180411,3,'actress',NULL,'[\"Sarah Wilson\"]'),(1981128,487884,4,'actress',NULL,'[\"Ute Fassbinder\"]'),(1981128,2041,5,'director',NULL,NULL),(1981128,349935,6,'writer','written by',NULL),(1981128,1911103,7,'producer','producer',NULL),(1981128,1602154,8,'producer','producer',NULL),(1981128,1154632,9,'composer',NULL,NULL),(1981677,2583641,10,'producer','producer',NULL),(1981677,447695,1,'actress',NULL,'[\"Beca\"]'),(1981677,811242,2,'actress',NULL,'[\"Chloe\"]'),(1981677,2313103,3,'actress',NULL,'[\"Fat Amy\"]'),(1981677,2319871,4,'actress',NULL,'[\"Aubrey\"]'),(1981677,601337,5,'director',NULL,NULL),(1981677,134224,6,'writer','screenplay',NULL),(1981677,3015467,7,'writer','based on the book by',NULL),(1981677,6969,8,'producer','producer',NULL),(1981677,112189,9,'producer','producer',NULL),(1982177,739688,10,'editor',NULL,NULL),(1982177,876300,1,'actor',NULL,'[\"Heinrich\"]'),(1982177,2974640,2,'actor',NULL,'[\"Ben\"]'),(1982177,2082567,3,'actress',NULL,'[\"Karima\"]'),(1982177,783317,4,'actress',NULL,'[\"Lea\"]'),(1982177,512862,5,'director',NULL,NULL),(1982177,380764,6,'producer','producer',NULL),(1982177,1334590,7,'producer','line producer',NULL),(1982177,718426,8,'composer',NULL,NULL),(1982177,354713,9,'cinematographer',NULL,NULL),(1984153,2286337,10,'cinematographer',NULL,NULL),(1984153,1715118,1,'actress',NULL,'[\"Pauline\"]'),(1984153,58372,2,'actor',NULL,'[\"Bob\"]'),(1984153,1736769,3,'actress',NULL,'[\"Grace\"]'),(1984153,183,4,'actress',NULL,'[\"Phyllis\"]'),(1984153,3160595,5,'director',NULL,NULL),(1984153,1568493,6,'producer','producer',NULL),(1984153,4554781,7,'producer','producer',NULL),(1984153,3243369,8,'composer',NULL,NULL),(1984153,1262626,9,'composer',NULL,NULL),(1985019,1011065,10,'composer',NULL,NULL),(1985019,5392,1,'actress',NULL,'[\"Jane Hayes\"]'),(1985019,270625,2,'actor',NULL,'[\"Mr. Henry Nobley\"]'),(1985019,177639,3,'actress',NULL,'[\"Miss Elizabeth Charming\"]'),(1985019,1235366,4,'actor',NULL,'[\"Martin\"]'),(1985019,1415801,5,'director',NULL,NULL),(1985019,4539250,6,'writer','screenplay',NULL),(1985019,4539568,7,'producer','producer',NULL),(1985019,2769412,8,'producer','producer',NULL),(1985019,591266,9,'producer','producer',NULL),(1985949,2805697,10,'writer','story by',NULL),(1985949,837177,1,'actor',NULL,'[\"Red\"]'),(1985949,1265802,2,'actor',NULL,'[\"Chuck\"]'),(1985949,1144419,3,'actor',NULL,'[\"Bomb\"]'),(1985949,748973,4,'actress',NULL,'[\"Matilda\"]'),(1985949,443505,5,'director',NULL,NULL),(1985949,717678,6,'director',NULL,NULL),(1985949,900140,7,'writer','screenplay by',NULL),(1985949,4678928,8,'writer','story by',NULL),(1985949,2039903,9,'writer','story by',NULL),(1985966,520488,10,'writer','story by',NULL),(1985966,352778,1,'actor',NULL,'[\"Flint Lockwood\"]'),(1985966,267506,2,'actress',NULL,'[\"Sam Sparks\"]'),(1985966,287182,3,'actor',NULL,'[\"Chester V\"]'),(1985966,439,4,'actor',NULL,'[\"Steve\"]'),(1985966,970606,5,'director',NULL,NULL),(1985966,2329165,6,'director',NULL,NULL),(1985966,1106214,7,'writer','screenplay by',NULL),(1985966,197855,8,'writer','screenplay by',NULL),(1985966,326246,9,'writer','screenplay by',NULL),(1986806,838588,10,'actress',NULL,'[\"Lily\"]'),(1986806,244630,1,'actress',NULL,'[\"Catwoman\"]'),(1986806,224007,2,'actor',NULL,'[\"Rough Cut\"]'),(1986806,1137414,3,'actress',NULL,'[\"Holly Robinson\"]'),(1986806,724656,4,'actor',NULL,'[\"Moe\"]'),(1986806,2304017,5,'director',NULL,NULL),(1986806,227704,6,'writer','written by',NULL),(1986806,1537113,7,'composer',NULL,NULL),(1986806,396285,8,'editor',NULL,NULL),(1986806,152839,9,'actress',NULL,'[\"Buttermilk Skye\"]'),(1987018,1000958,10,'producer','producer',NULL),(1987018,2864046,1,'actress',NULL,'[\"Barbara Dray\",\"Barbara\"]'),(1987018,2847812,2,'actor',NULL,'[\"Nicolas Malle\",\"Nicolas\"]'),(1987018,1929,3,'actress',NULL,'[\"Claire\",\"la mère de Barbara\"]'),(1987018,297004,4,'actor',NULL,'[\"Tony\"]'),(1987018,1462495,5,'director',NULL,NULL),(1987018,8399,6,'writer','novel',NULL),(1987018,4554522,7,'writer','writer',NULL),(1987018,22969,8,'producer','producer',NULL),(1987018,22971,9,'producer','producer',NULL),(1990314,630633,10,'producer','producer',NULL),(1990314,765597,1,'actor',NULL,'[\"Robot\"]'),(1990314,1449,2,'actor',NULL,'[\"Frank\"]'),(1990314,215,3,'actress',NULL,'[\"Jennifer\"]'),(1990314,239,4,'actress',NULL,'[\"Madison\"]'),(1990314,1500577,5,'director',NULL,NULL),(1990314,1755986,6,'writer','screenplay',NULL),(1990314,10139,7,'producer','producer',NULL),(1990314,83851,8,'producer','producer',NULL),(1990314,3638150,9,'producer','producer',NULL),(1991245,2306354,10,'composer',NULL,NULL),(1991245,565366,1,'actor',NULL,'[\"Chris\"]'),(1991245,1838070,2,'actor',NULL,'[\"Paul\"]'),(1991245,2772584,3,'actress',NULL,'[\"Natalie\"]'),(1991245,680667,4,'actor',NULL,'[\"Michael\"]'),(1991245,662086,5,'director',NULL,NULL),(1991245,2305431,6,'writer','screenplay',NULL),(1991245,1139317,7,'writer','screenplay',NULL),(1991245,886749,8,'writer','screenplay',NULL),(1991245,936970,9,'producer','producer',NULL),(1995242,4515860,1,'actor',NULL,'[\"Greta\"]'),(1995242,4553858,2,'actor',NULL,'[\"Jorge Chicaiza Cisneros (Jordi)\"]'),(1995242,2342617,3,'actress',NULL,'[\"Yahaira\"]'),(1995242,5015081,4,'actor',NULL,'[\"Javier\"]'),(1995242,4628545,5,'director',NULL,NULL),(1995242,3240261,6,'cinematographer',NULL,NULL),(1995242,1970164,7,'editor',NULL,NULL),(1995304,1852879,10,'producer','producer',NULL),(1995304,3846106,1,'actor',NULL,'[\"Troy\"]'),(1995304,641610,2,'actor',NULL,'[\"Marcus\"]'),(1995304,1004,3,'actor',NULL,'[\"Mr. Billings\"]'),(1995304,3827455,4,'actress',NULL,'[\"Isabel\"]'),(1995304,498,5,'director',NULL,NULL),(1995304,303462,6,'writer','screenplay by',NULL),(1995304,817277,7,'writer','screenplay by',NULL),(1995304,5195805,8,'writer','based upon the novel by',NULL),(1995304,153051,9,'producer','producer',NULL),(1995341,775262,10,'cinematographer',NULL,NULL),(1995341,1036340,1,'actress',NULL,'[\"Lexi\"]'),(1995341,2289780,2,'actress',NULL,'[\"Jenny\"]'),(1995341,1059821,3,'actor',NULL,'[\"Buck\"]'),(1995341,189144,4,'actor',NULL,'[\"Glen\"]'),(1995341,1787651,5,'director',NULL,NULL),(1995341,82012,6,'producer','producer',NULL),(1995341,2281884,7,'producer','producer',NULL),(1995341,3070810,8,'producer','producer',NULL),(1995341,1484310,9,'producer','producer',NULL),(1995390,1292052,10,'producer','producer',NULL),(1995390,10169,1,'actor',NULL,'[\"Ballet Dancer\"]'),(1995390,1366568,2,'actor',NULL,'[\"Misha\"]'),(1995390,1745,3,'actor',NULL,'[\"Dima\"]'),(1995390,3401043,4,'actress',NULL,'[\"Anna\"]'),(1995390,1264352,5,'director',NULL,NULL),(1995390,494170,6,'writer','based on the novel by',NULL),(1995390,24925,7,'writer','written by',NULL),(1995390,4051169,8,'producer','producer',NULL),(1995390,180508,9,'producer','producer',NULL),(1996211,4627181,1,'self',NULL,'[\"Self - Voice Over\"]'),(1996211,3602022,2,'self',NULL,'[\"Self\"]'),(1996211,4629545,3,'self',NULL,'[\"Self\"]'),(1996211,4634928,4,'self',NULL,'[\"Self\"]'),(1996211,2605255,5,'director',NULL,NULL),(1996211,2602301,6,'producer','producer',NULL),(1996211,2298416,7,'composer',NULL,NULL),(1996211,4638123,8,'cinematographer',NULL,NULL),(1996211,4651571,9,'cinematographer',NULL,NULL),(1996264,1067825,10,'composer',NULL,NULL),(1996264,310966,1,'actress',NULL,'[\"Katie Steele\"]'),(1996264,1601643,2,'actress',NULL,'[\"Lauren Powell\"]'),(1996264,519043,3,'actor',NULL,'[\"Jesse\"]'),(1996264,2312345,4,'actor',NULL,'[\"Charlie\"]'),(1996264,1637474,5,'director',NULL,NULL),(1996264,4561763,6,'writer','written by',NULL),(1996264,385777,7,'producer','producer',NULL),(1996264,450275,8,'producer','producer',NULL),(1996264,2481860,9,'producer','producer',NULL),(1996310,915192,10,'producer','producer',NULL),(1996310,4551978,1,'actress',NULL,'[\"Hannelore Dressler\"]'),(1996310,2837587,2,'actor',NULL,'[\"Thomas\"]'),(1996310,3047077,3,'actress',NULL,'[\"Liesel\"]'),(1996310,488053,4,'actress',NULL,'[\"Mutti\"]'),(1996310,795153,5,'director',NULL,NULL),(1996310,611555,6,'writer','written by',NULL),(1996310,4579216,7,'writer','novel \"The Dark Room\"',NULL),(1996310,1901046,8,'producer','producer',NULL),(1996310,1162031,9,'producer','producer',NULL),(1999995,433578,10,'composer',NULL,NULL),(1999995,811242,1,'actress',NULL,'[\"Iris\"]'),(1999995,820053,2,'actress',NULL,'[\"Linda\"]'),(1999995,1062,3,'actor',NULL,'[\"Shepard Lambrick\"]'),(1999995,185431,4,'actor',NULL,'[\"Bevans\"]'),(1999995,1428946,5,'director',NULL,NULL),(1999995,970125,6,'writer',NULL,NULL),(1999995,2306906,7,'producer','producer',NULL),(1999995,1815953,8,'producer','producer',NULL),(1999995,4899762,9,'composer',NULL,NULL),(2002718,1733216,10,'producer','producer',NULL),(2002718,1803,1,'actor',NULL,'[\"Machete\"]'),(2002718,891786,2,'actress',NULL,'[\"KillJoy\"]'),(2002718,154,3,'actor',NULL,'[\"Voz\"]'),(2002718,4695,4,'actress',NULL,'[\"Sartana\"]'),(2002718,1675,5,'director',NULL,NULL),(2002718,2040359,6,'writer','screenplay',NULL),(2002718,735420,7,'writer','story',NULL),(2002718,3703488,8,'producer','producer',NULL),(2002718,2721926,9,'producer','producer',NULL),(2004420,28787,10,'composer',NULL,NULL),(2004420,736622,1,'actor',NULL,'[\"Mac Radner\"]'),(2004420,126284,2,'actress',NULL,'[\"Kelly Radner\"]'),(2004420,1374980,3,'actor',NULL,'[\"Teddy Sanders\"]'),(2004420,1435,4,'actress',NULL,'[\"Dean Carol Gladstone\"]'),(2004420,831557,5,'director',NULL,NULL),(2004420,1157527,6,'writer','written by',NULL),(2004420,1895993,7,'writer','written by',NULL),(2004420,1698571,8,'producer','producer',NULL),(2004420,4384917,9,'producer','producer',NULL),(2005151,330428,10,'producer','producer',NULL),(2005151,1706767,1,'actor',NULL,'[\"Efraim Diveroli\"]'),(2005151,1886602,2,'actor',NULL,'[\"David Packouz\"]'),(2005151,3111373,3,'actor',NULL,'[\"Security Guard\"]'),(2005151,1816775,4,'actor',NULL,'[\"Massage Client\"]'),(2005151,680846,5,'director',NULL,NULL),(2005151,157787,6,'writer','screenplay',NULL),(2005151,1429512,7,'writer','screenplay',NULL),(2005151,493225,8,'writer','Rolling Stone article \"Arms and the Dudes\"',NULL),(2005151,177896,9,'producer','producer',NULL),(2005156,129321,10,'composer',NULL,NULL),(2005156,2893525,1,'actor',NULL,'[\"Tyler\"]'),(2005156,567162,2,'actor',NULL,'[\"Roger\"]'),(2005156,5163462,3,'actor',NULL,'[\"Tim\"]'),(2005156,9512526,4,'actor',NULL,'[\"Shower Bear #1\"]'),(2005156,486773,5,'director',NULL,NULL),(2005156,3599574,6,'producer','producer',NULL),(2005156,2016048,7,'producer','producer',NULL),(2005156,924863,8,'producer','executive producer',NULL),(2005156,5009324,9,'composer',NULL,NULL),(2005374,649507,10,'producer','producer',NULL),(2005374,115,1,'actor',NULL,'[\"Sgt. Jack Halcombe\"]'),(2005374,1227814,2,'actress',NULL,'[\"Cindy Paulson\"]'),(2005374,131,3,'actor',NULL,'[\"Robert Hansen\"]'),(2005374,606487,4,'actor',NULL,'[\"Sgt. Lyle Haugsven\"]'),(2005374,1960428,5,'director',NULL,NULL),(2005374,1265067,6,'producer','producer',NULL),(2005374,4185845,7,'producer','producer',NULL),(2005374,256542,8,'producer','producer',NULL),(2005374,3794057,9,'producer','producer',NULL),(2006295,5203976,10,'writer','book \"Deep Down Dark\"',NULL),(2006295,104,1,'actor',NULL,'[\"Mario Sepúlveda\"]'),(2006295,763928,2,'actor',NULL,'[\"Laurence Golborne\"]'),(2006295,300,3,'actress',NULL,'[\"María Segovia\"]'),(2006295,981,4,'actor',NULL,'[\"Jeff Hart\"]'),(2006295,726638,5,'director',NULL,NULL),(2006295,1209140,6,'writer','screenplay',NULL),(2006295,1258965,7,'writer','screenplay',NULL),(2006295,859241,8,'writer','screenplay',NULL),(2006295,1433580,9,'writer','screen story',NULL),(2006810,298147,10,'production_designer',NULL,NULL),(2006810,1528394,1,'actor',NULL,'[\"Dave the Gardener\"]'),(2006810,226820,2,'actor',NULL,'[\"Harry Papadopoulos\"]'),(2006810,128135,3,'actress',NULL,'[\"Mrs Parrington\"]'),(2006810,226817,4,'actor',NULL,'[\"James Papadopoulos\"]'),(2006810,1854120,5,'director',NULL,NULL),(2006810,2442717,6,'producer','producer',NULL),(2006810,6339,7,'composer',NULL,NULL),(2006810,2168099,8,'cinematographer',NULL,NULL),(2006810,1573988,9,'editor',NULL,NULL),(2007360,5421253,1,'actor',NULL,'[\"ADVANTAGE Member\"]'),(2007360,5421727,2,'actor',NULL,'[\"DEEP SPEED Member\"]'),(2007360,927812,3,'actor',NULL,'[\"Beuscher\"]'),(2007360,3416644,4,'actor',NULL,'[\"Bishton\"]'),(2007360,1216004,5,'director',NULL,NULL),(2007360,991229,6,'producer','producer',NULL),(2007360,2483108,7,'producer','producer',NULL),(2007360,3442,8,'cinematographer','director of photography',NULL),(2007360,2017170,9,'production_designer',NULL,NULL),(2007418,396071,1,'archive_footage',NULL,'[\"Self\"]'),(2007418,1645751,2,'director',NULL,NULL),(2008006,950454,10,'cinematographer','director of photography',NULL),(2008006,490489,1,'actor',NULL,'[\"Roger\"]'),(2008006,409677,2,'actress',NULL,'[\"Ah Tao\"]'),(2008006,702656,3,'actress',NULL,'[\"Ms. Choi\"]'),(2008006,298121,4,'actress',NULL,'[\"Roger\'s mother\"]'),(2008006,401176,5,'director',NULL,NULL),(2008006,151113,6,'writer','writer',NULL),(2008006,498151,7,'writer','story',NULL),(2008006,151072,8,'producer','producer',NULL),(2008006,492409,9,'composer',NULL,NULL),(2008009,71,10,'archive_footage',NULL,'[\"Self\"]'),(2008009,275,1,'archive_footage',NULL,'[\"Self\"]'),(2008009,12,2,'archive_footage',NULL,'[\"Self\"]'),(2008009,138,3,'archive_footage',NULL,'[\"Self\"]'),(2008009,458,4,'archive_footage',NULL,'[\"Self\"]'),(2008009,3827692,5,'director',NULL,NULL),(2008009,6830749,6,'producer','producer',NULL),(2008009,537,7,'archive_footage',NULL,'[\"Self\"]'),(2008009,54,8,'archive_footage',NULL,'[\"Self\"]'),(2008009,1637,9,'archive_footage',NULL,'[\"Self\"]'),(2008562,688143,1,'actor',NULL,'[\"Benoît Bonzini, alias NOT\"]'),(2008562,243355,2,'actor',NULL,'[\"Jean-Pierre Bonzini\"]'),(2008562,284780,3,'actress',NULL,'[\"Marie-Annick Bonzini, la mère\"]'),(2008562,67943,4,'actor',NULL,'[\"René Bonzini, le père\"]'),(2008562,218022,5,'director',NULL,NULL),(2008562,1086956,6,'director',NULL,NULL),(2008562,350225,7,'producer','producer',NULL),(2008562,693571,8,'cinematographer',NULL,NULL),(2008562,255360,9,'editor',NULL,NULL),(2008602,3089881,10,'production_designer',NULL,NULL),(2008602,4563421,1,'actor',NULL,'[\"Mark\"]'),(2008602,2916150,2,'actress',NULL,'[\"Alexis\"]'),(2008602,4097817,3,'actor',NULL,'[\"Scott\"]'),(2008602,2335279,4,'actor',NULL,'[\"Toby\"]'),(2008602,1327168,5,'director',NULL,NULL),(2008602,1955614,6,'writer',NULL,NULL),(2008602,3298910,7,'producer','producer',NULL),(2008602,1865371,8,'cinematographer',NULL,NULL),(2008602,2470175,9,'editor',NULL,NULL),(2008633,417403,10,'composer',NULL,NULL),(2008633,2913275,1,'actress',NULL,'[\"Tara\",\"Radio Rebel\"]'),(2008633,3591035,2,'actress',NULL,'[\"Audrey\"]'),(2008633,4348240,3,'actor',NULL,'[\"Gavin\"]'),(2008633,3620184,4,'actor',NULL,'[\"Gabe\"]'),(2008633,398185,5,'director',NULL,NULL),(2008633,4557307,6,'writer','based on the novel \"Shrinking Violet\" by',NULL),(2008633,666203,7,'writer','teleplay',NULL),(2008633,779321,8,'writer','teleplay',NULL),(2008633,2435579,9,'producer','executive producer',NULL),(2009643,4260753,10,'producer','producer',NULL),(2009643,2056684,1,'actor',NULL,'[\"Alfred\"]'),(2009643,2855195,2,'actor',NULL,'[\"Finnbogi\"]'),(2009643,45489,3,'actor',NULL,'[\"Vörubílstjóri\"]'),(2009643,4637847,4,'actress',NULL,'[\"Kona\"]'),(2009643,2619779,5,'director',NULL,NULL),(2009643,2660842,6,'producer','producer',NULL),(2009643,1886330,7,'producer','producer',NULL),(2009643,1888242,8,'producer','producer',NULL),(2009643,4658646,9,'producer','producer',NULL),(2011159,4344,10,'cinematographer','director of photography',NULL),(2011159,378245,1,'actress',NULL,'[\"Terry\"]'),(2011159,252961,2,'actor',NULL,'[\"Colin\"]'),(2011159,4753,3,'actress',NULL,'[\"Meg\"]'),(2011159,215487,4,'actress',NULL,'[\"Alexis\"]'),(2011159,589284,5,'director',NULL,NULL),(2011159,1350938,6,'writer','written by',NULL),(2011159,165540,7,'producer','producer',NULL),(2011159,655510,8,'producer','producer',NULL),(2011159,368248,9,'composer',NULL,NULL),(2011971,686656,10,'cinematographer',NULL,NULL),(2011971,271408,1,'actor',NULL,'[\"Bachir Lazhar\"]'),(2011971,4563869,2,'actress',NULL,'[\"Alice L\'Écuyer\"]'),(2011971,4563783,3,'actor',NULL,'[\"Simon\"]'),(2011971,698921,4,'actress',NULL,'[\"Mme Vaillancourt\"]'),(2011971,265852,5,'director',NULL,NULL),(2011971,1656167,6,'writer','play \"Bashir Lazhar\"',NULL),(2011971,246404,7,'producer','producer',NULL),(2011971,566919,8,'producer','producer',NULL),(2011971,4537345,9,'composer',NULL,NULL),(2013293,786707,10,'editor',NULL,NULL),(2013293,30417,1,'actor',NULL,'[\"Jirô Horikoshi\"]'),(2013293,632689,2,'actor',NULL,'[\"Honjô\"]'),(2013293,3768523,3,'actress',NULL,'[\"Naoko Satomi\"]'),(2013293,632761,4,'actor',NULL,'[\"Kurokawa\"]'),(2013293,594503,5,'director',NULL,NULL),(2013293,840699,6,'producer','producer',NULL),(2013293,5347659,7,'producer','producer',NULL),(2013293,386749,8,'composer',NULL,NULL),(2013293,645777,9,'cinematographer',NULL,NULL),(2015381,317493,10,'writer','character created by: Rocket Raccoon',NULL),(2015381,695435,1,'actor',NULL,'[\"Peter Quill\"]'),(2015381,4874,2,'actor',NULL,'[\"Groot\"]'),(2015381,177896,3,'actor',NULL,'[\"Rocket\"]'),(2015381,757855,4,'actress',NULL,'[\"Gamora\"]'),(2015381,348181,5,'director',NULL,NULL),(2015381,2270979,6,'writer','written by',NULL),(2015381,3966115,7,'writer','based on the Marvel comics by',NULL),(2015381,5037683,8,'writer','based on the Marvel comics by',NULL),(2015381,2757098,9,'writer','character created by: Rocket Raccoon',NULL),(2016940,204567,10,'cinematographer','director of photography',NULL),(2016940,155392,1,'actor',NULL,'[\"\'Tiger\' Chen Lin Hu\"]'),(2016940,206,2,'actor',NULL,'[\"Donaka Mark\"]'),(2016940,596297,3,'actress',NULL,'[\"Inspector Suen Jing Si\"]'),(2016940,950494,4,'actor',NULL,'[\"Master Yang\"]'),(2016940,2686509,5,'writer',NULL,NULL),(2016940,843543,6,'producer','producer',NULL),(2016940,918566,7,'producer','producer',NULL),(2016940,955339,8,'producer','producer',NULL),(2016940,150989,9,'composer',NULL,NULL),(2017020,456732,10,'writer','screenplay',NULL),(2017020,439,1,'actor',NULL,'[\"Patrick\"]'),(2017020,1724323,2,'actress',NULL,'[\"Grace\"]'),(2017020,2953537,3,'actress',NULL,'[\"Smurfette\"]'),(2017020,279,4,'actor',NULL,'[\"Gargamel\"]'),(2017020,331532,5,'director',NULL,NULL),(2017020,826425,6,'writer','screenplay',NULL),(2017020,918955,7,'writer','screenplay',NULL),(2017020,771065,8,'writer','screenplay',NULL),(2017020,740115,9,'writer','screenplay',NULL),(2017038,64444,10,'editor',NULL,NULL),(2017038,602,1,'actor',NULL,'[\"Our Man\"]'),(2017038,1170855,2,'director',NULL,NULL),(2017038,230306,3,'producer','producer',NULL),(2017038,1291145,4,'producer','producer',NULL),(2017038,4312021,5,'producer','producer',NULL),(2017038,3267061,6,'producer','producer',NULL),(2017038,2745006,7,'composer',NULL,NULL),(2017038,1054979,8,'cinematographer','director of photography',NULL),(2017038,958323,9,'cinematographer','underwater director of photography',NULL),(2017561,5533999,10,'writer',NULL,NULL),(2017561,3491286,1,'actor',NULL,'[\"Xuan Zang\"]'),(2017561,795517,2,'actress',NULL,'[\"Miss Duan\"]'),(2017561,2348646,3,'actor',NULL,'[\"Sun Wukong\"]'),(2017561,3881333,4,'actor',NULL,'[\"Prince Important\"]'),(2017561,159507,5,'director',NULL,NULL),(2017561,477213,6,'director','co-director',NULL),(2017561,403230,7,'writer',NULL,NULL),(2017561,3773382,8,'writer',NULL,NULL),(2017561,1385080,9,'writer',NULL,NULL),(2018086,581012,10,'producer','producer',NULL),(2018086,300,1,'actress',NULL,'[\"Camille Claudel\"]'),(2018086,4581120,2,'actress',NULL,'[\"Nursing Home Resident\"]'),(2018086,4885097,3,'actor',NULL,'[\"Paul Claudel\"]'),(2018086,6017870,4,'actress',NULL,'[\"Nursing Home Resident\"]'),(2018086,241622,5,'director',NULL,NULL),(2018086,165227,6,'writer','letters',NULL),(2018086,6163206,7,'writer','letters',NULL),(2018086,98953,8,'producer','producer',NULL),(2018086,117593,9,'producer','producer',NULL),(20227026,7160313,10,'editor',NULL,NULL),(20227026,5438400,1,'actor',NULL,'[\"Leslie\"]'),(20227026,12560062,2,'actor',NULL,'[\"Renard\"]'),(20227026,4473893,3,'actor',NULL,'[\"Amin\"]'),(20227026,6745676,4,'actor',NULL,'[\"Momo\"]'),(20227026,493594,5,'writer','collaboration',NULL),(20227026,2055216,6,'producer','producer',NULL),(20227026,2126992,7,'composer',NULL,NULL),(20227026,12950984,8,'composer',NULL,NULL),(20227026,7298598,9,'cinematographer',NULL,NULL),(2023453,800922,10,'producer','producer',NULL),(2023453,2325393,1,'actor',NULL,'[\"Greg Heffley\"]'),(2023453,2953573,2,'actor',NULL,'[\"Rowley Jefferson\"]'),(2023453,1256602,3,'actor',NULL,'[\"Rodrick Heffley\"]'),(2023453,1872,4,'actor',NULL,'[\"Frank Heffley\"]'),(2023453,101047,5,'director',NULL,NULL),(2023453,285379,6,'writer','screenplay by',NULL),(2023453,938645,7,'writer','screenplay by',NULL),(2023453,2732149,8,'writer','based upon the book by',NULL),(2023453,1749221,9,'producer','producer',NULL),(2023587,726379,10,'cinematographer','director of photography',NULL),(2023587,1567113,1,'actress',NULL,'[\"Annabel\"]'),(2023587,182666,2,'actor',NULL,'[\"Lucas\",\"Jeffrey\"]'),(2023587,2743784,3,'actress',NULL,'[\"Victoria\"]'),(2023587,4719471,4,'actress',NULL,'[\"Lilly\"]'),(2023587,615592,5,'director',NULL,NULL),(2023587,1953833,6,'writer','story',NULL),(2023587,189232,7,'writer','screenplay',NULL),(2023587,197703,8,'producer','producer',NULL),(2023587,1302939,9,'composer',NULL,NULL),(2023690,1546919,10,'composer',NULL,NULL),(2023690,1546686,1,'actress',NULL,'[\"Tina\"]'),(2023690,352901,2,'actor',NULL,'[\"Richard\"]'),(2023690,1361530,3,'actor',NULL,'[\"Chris\"]'),(2023690,203688,4,'actress',NULL,'[\"Carol\"]'),(2023690,1296554,5,'director',NULL,NULL),(2023690,4207229,6,'writer','additional material',NULL),(2023690,2095003,7,'producer','producer',NULL),(2023690,661912,8,'producer','producer',NULL),(2023690,823288,9,'producer','producer',NULL),(2024432,501999,10,'composer',NULL,NULL),(2024432,867,1,'actor',NULL,'[\"Sandy Patterson\"]'),(2024432,565250,2,'actress',NULL,'[\"Diana\"]'),(2024432,158626,3,'actor',NULL,'[\"Daniel Casey\"]'),(2024432,1605,4,'actress',NULL,'[\"Trish Patterson\"]'),(2024432,1164861,5,'director',NULL,NULL),(2024432,563301,6,'writer','screenplay',NULL),(2024432,1087085,7,'writer','story',NULL),(2024432,8330,8,'producer','producer',NULL),(2024432,835959,9,'producer','producer',NULL),(2024469,739868,10,'producer','producer',NULL),(2024469,553,1,'actor',NULL,'[\"Bill Marks\"]'),(2024469,194,2,'actress',NULL,'[\"Jen Summers\"]'),(2024469,1058940,3,'actor',NULL,'[\"Tom Bowen\"]'),(2024469,1890784,4,'actress',NULL,'[\"Nancy\"]'),(2024469,1429471,5,'director',NULL,NULL),(2024469,1622147,6,'writer','screenplay',NULL),(2024469,1496753,7,'writer','screenplay',NULL),(2024469,257513,8,'writer','screenplay',NULL),(2024469,2670366,9,'producer','producer',NULL),(2024519,259317,10,'composer',NULL,NULL),(2024519,46424,1,'actress',NULL,'[\"Elise Vandevelde\",\"Alabama\"]'),(2024519,374949,2,'actor',NULL,'[\"Didier Bontinck\",\"Monroe\"]'),(2024519,4636536,3,'actress',NULL,'[\"Maybelle\"]'),(2024519,887769,4,'actor',NULL,'[\"William\"]'),(2024519,886976,5,'director',NULL,NULL),(2024519,1570441,6,'writer','play The Broken Circle Breakdown Featuring the Cover-Ups of Alabama',NULL),(2024519,429741,7,'writer','adaptation',NULL),(2024519,1631468,8,'writer','collaboration on screenplay',NULL),(2024519,408248,9,'producer','producer',NULL),(2024544,1250070,10,'producer','producer',NULL),(2024544,252230,1,'actor',NULL,'[\"Solomon Northup\"]'),(2024544,931324,2,'actor',NULL,'[\"Robert\"]'),(2024544,1055413,3,'actor',NULL,'[\"Edwin Epps\"]'),(2024544,93,4,'actor',NULL,'[\"Bass\"]'),(2024544,2588606,5,'director',NULL,NULL),(2024544,725983,6,'writer','screenplay by',NULL),(2024544,1185849,7,'writer','based on \"Twelve Years a Slave\" by',NULL),(2024544,306890,8,'producer','producer',NULL),(2024544,441097,9,'producer','producer',NULL),(2025667,1958109,10,'cinematographer',NULL,NULL),(2025667,3312826,1,'actress',NULL,'[\"Ashley\"]'),(2025667,1750524,2,'actress',NULL,'[\"Proxy\"]'),(2025667,3507289,3,'actor',NULL,'[\"Binder\"]'),(2025667,20264,4,'actor',NULL,'[\"Zane\"]'),(2025667,2038422,5,'director',NULL,NULL),(2025667,680421,6,'writer','screenplay',NULL),(2025667,2384452,7,'writer','story',NULL),(2025667,2347031,8,'producer','producer',NULL),(2025667,1726663,9,'composer',NULL,NULL),(2025690,4634203,10,'writer','based on the book by',NULL),(2025690,1517976,1,'actor',NULL,'[\"Bernie Webber\"]'),(2025690,729,2,'actor',NULL,'[\"Ray Sybert\"]'),(2025690,4936,3,'actor',NULL,'[\"Richard Livesey\"]'),(2025690,51509,4,'actor',NULL,'[\"Daniel Cluff\"]'),(2025690,318916,5,'director',NULL,NULL),(2025690,798788,6,'writer','screenplay by',NULL),(2025690,848496,7,'writer','screenplay by',NULL),(2025690,2053216,8,'writer','screenplay by',NULL),(2025690,4648803,9,'writer','based on the book by',NULL),(2027140,3938283,10,'editor',NULL,NULL),(2027140,244151,1,'actor',NULL,'[\"Colin\"]'),(2027140,851582,2,'actress',NULL,'[\"Chloé\"]'),(2027140,255362,3,'actor',NULL,'[\"Chick\"]'),(2027140,1082477,4,'actor',NULL,'[\"Nicolas\"]'),(2027140,327273,5,'director',NULL,NULL),(2027140,2236676,6,'writer','scenario',NULL),(2027140,895644,7,'writer','novel',NULL),(2027140,1584523,8,'composer',NULL,NULL),(2027140,64290,9,'cinematographer','director of photography',NULL),(2027231,729871,10,'composer',NULL,NULL),(2027231,1113550,1,'actress',NULL,'[\"Sandra Anderson\"]'),(2027231,1670137,2,'actress',NULL,'[\"Beth Anderson\"]'),(2027231,227,3,'actress',NULL,'[\"Linda\",\"Perfect Mom\"]'),(2027231,751638,4,'actor',NULL,'[\"Steve Bowman\"]'),(2027231,112253,5,'director',NULL,NULL),(2027231,277116,6,'writer','screenplay',NULL),(2027231,7850004,7,'writer','book \"The Class Project\"',NULL),(2027231,1733337,8,'writer','screenplay',NULL),(2027231,353813,9,'producer','producer',NULL),(2034031,1217426,10,'producer','producer',NULL),(2034031,461136,1,'actress',NULL,'[\"Megan\"]'),(2034031,1631269,2,'actress',NULL,'[\"Annika\"]'),(2034031,5377,3,'actor',NULL,'[\"Craig\"]'),(2034031,916406,4,'actor',NULL,'[\"Anthony\"]'),(2034031,1119645,5,'director',NULL,NULL),(2034031,2484916,6,'writer','written by',NULL),(2034031,289694,7,'producer','producer',NULL),(2034031,326512,8,'producer','producer',NULL),(2034031,534893,9,'producer','producer',NULL),(2034139,88536,10,'producer','producer',NULL),(2034139,68042,1,'actress',NULL,'[\"Nell\"]'),(2034139,3400186,2,'actress',NULL,'[\"Gwen\"]'),(2034139,4829,3,'actor',NULL,'[\"Chris\"]'),(2034139,3861,4,'actor',NULL,'[\"Calder\"]'),(2034139,1424878,5,'director',NULL,NULL),(2034139,3227090,6,'writer','screenplay',NULL),(2034139,1428204,7,'writer','characters created by',NULL),(2034139,348640,8,'writer','characters created by',NULL),(2034139,8953,9,'producer','producer',NULL),(2034761,630334,10,'cinematographer',NULL,NULL),(2034761,4935995,1,'actress',NULL,'[\"Sonja\"]'),(2034761,471601,2,'actor',NULL,'[\"Kongen\"]'),(2034761,1748545,3,'actress',NULL,'[\"Heksa\"]'),(2034761,1375888,4,'actor',NULL,'[\"Greven\"]'),(2034761,310168,5,'director',NULL,NULL),(2034761,1515005,6,'writer',NULL,NULL),(2034761,439883,7,'producer','producer',NULL),(2034761,486644,8,'producer','producer',NULL),(2034761,1482406,9,'composer',NULL,NULL),(2034800,1880,10,'writer','story',NULL),(2034800,354,1,'actor',NULL,'[\"William\"]'),(2034800,1320897,2,'actress',NULL,'[\"Commander Lin Mae\"]'),(2034800,353,3,'actor',NULL,'[\"Ballard\"]'),(2034800,490489,4,'actor',NULL,'[\"Strategist Wang\"]'),(2034800,955443,5,'director',NULL,NULL),(2034800,76166,6,'writer','screenplay',NULL),(2034800,1215164,7,'writer','screenplay',NULL),(2034800,6904,8,'writer','screenplay',NULL),(2034800,112150,9,'writer','story',NULL),(2035630,562222,10,'producer','producer',NULL),(2035630,2218604,1,'actress',NULL,'[\"Jane\"]'),(2035630,4588116,2,'actress',NULL,'[\"Sadie\"]'),(2035630,5589118,3,'actor',NULL,'[\"Starlet\"]'),(2035630,1886524,4,'actress',NULL,'[\"Melissa\"]'),(2035630,48918,5,'director',NULL,NULL),(2035630,2022341,6,'writer','written by',NULL),(2035630,39137,7,'producer','producer',NULL),(2035630,157966,8,'producer','producer',NULL),(2035630,192416,9,'producer','producer',NULL),(2040560,1784078,10,'production_designer',NULL,NULL),(2040560,2362068,1,'actress',NULL,'[\"Annie\"]'),(2040560,680,2,'actor',NULL,'[\"Creek\"]'),(2040560,825209,3,'actor',NULL,'[\"Charles Barlow\",\"Judas\"]'),(2040560,115671,4,'actress',NULL,'[\"Nichole\"]'),(2040560,1130275,5,'director',NULL,NULL),(2040560,1895871,6,'producer','producer',NULL),(2040560,1950472,7,'composer',NULL,NULL),(2040560,631028,8,'cinematographer','director of photography',NULL),(2040560,1948910,9,'editor',NULL,NULL),(2042432,2578038,10,'producer','producer',NULL),(2042432,4592524,1,'actor',NULL,'[\"Papa\"]'),(2042432,4636706,2,'actor',NULL,'[\"Wang Han\"]'),(2042432,6563744,3,'actor',NULL,'[\"La Souris\"]'),(2042432,5617993,4,'actor',NULL,'[\"La Teigne\"]'),(2042432,911075,5,'director',NULL,NULL),(2042432,4592523,6,'writer','screenplay',NULL),(2042432,61669,7,'producer','producer',NULL),(2042432,2701668,8,'producer','producer',NULL),(2042432,3211098,9,'producer','producer',NULL),(2042568,1209966,1,'actor',NULL,'[\"Llewyn Davis\"]'),(2042568,1659547,2,'actress',NULL,'[\"Jean\"]'),(2042568,422,3,'actor',NULL,'[\"Roland Turner\"]'),(2042568,1330560,4,'actor',NULL,'[\"Johnny Five\"]'),(2042568,1053,5,'director',NULL,NULL),(2042568,1054,6,'director',NULL,NULL),(2042568,748784,7,'producer','producer',NULL),(2042568,216632,8,'cinematographer','director of photography',NULL),(2042568,327211,9,'production_designer',NULL,NULL),(2042583,1758477,10,'producer','producer',NULL),(2042583,5090373,1,'actor',NULL,'[\"Juan\"]'),(2042583,5088963,2,'actor',NULL,'[\"Chauk\"]'),(2042583,5090255,3,'actress',NULL,'[\"Sara\"]'),(2042583,5089380,4,'actor',NULL,'[\"Samuel\"]'),(2042583,4033,5,'director',NULL,NULL),(2042583,2157916,6,'writer',NULL,NULL),(2042583,3669468,7,'writer',NULL,NULL),(2042583,1691108,8,'producer','producer',NULL),(2042583,1156085,9,'producer','producer',NULL),(2043879,2940113,10,'producer','producer',NULL),(2043879,345741,1,'actress',NULL,'[\"Madalena\"]'),(2043879,3630611,2,'actress',NULL,'[\"Rita\"]'),(2043879,785418,3,'actor',NULL,'[\"Antonio\"]'),(2043879,580934,4,'actor',NULL,'[\"Padre Josias\"]'),(2043879,613580,5,'director',NULL,NULL),(2043879,4593163,6,'writer',NULL,NULL),(2043879,2779187,7,'writer',NULL,NULL),(2043879,4592943,8,'producer','producer',NULL),(2043879,3121054,9,'producer','producer',NULL),(2043900,731324,10,'editor',NULL,NULL),(2043900,4777,1,'self',NULL,'[\"Self - Legal Consultant\"]'),(2043900,4593068,2,'self',NULL,'[\"Self - UC Center for Hydrologic Modeling\"]'),(2043900,2865571,3,'self',NULL,'[\"Self - Pacific Institute\"]'),(2043900,3142474,4,'self',NULL,'[\"Self - Scripps Researcher\"]'),(2043900,950506,5,'director',NULL,NULL),(2043900,2954422,6,'writer','inspired by the book \"The Ripple Effect\" by',NULL),(2043900,1015409,7,'producer','producer',NULL),(2043900,63618,8,'composer',NULL,NULL),(2043900,255613,9,'cinematographer',NULL,NULL),(2046090,100559,10,'producer','producer',NULL),(2046090,893941,1,'actress',NULL,'[\"Maribel\"]'),(2046090,1268637,2,'actor',NULL,'[\"Félix\"]'),(2046090,1242939,3,'actress',NULL,'[\"Eva\"]'),(2046090,749715,4,'actress',NULL,'[\"Sara\"]'),(2046090,868441,5,'director',NULL,NULL),(2046090,1037221,6,'writer',NULL,NULL),(2046090,346277,7,'writer',NULL,NULL),(2046090,3427616,8,'writer','novel',NULL),(2046090,1428086,9,'producer','producer',NULL),(2049430,12878979,10,'cinematographer',NULL,NULL),(2049430,297847,1,'actress',NULL,'[\"Taichi Yagami\"]'),(2049430,32890,2,'actress',NULL,'[\"Hikari Yagami\"]'),(2049430,757076,3,'actress',NULL,'[\"Koromon\"]'),(2049430,411097,4,'actor',NULL,'[\"Taichi no chichi\"]'),(2049430,396074,5,'director',NULL,NULL),(2049430,393289,6,'writer','original concept',NULL),(2049430,1027089,7,'writer','writer',NULL),(2049430,386386,8,'producer','producer',NULL),(2049430,34885,9,'composer',NULL,NULL),(2049440,4620889,1,'director',NULL,NULL),(2049543,534673,10,'cinematographer',NULL,NULL),(2049543,572030,1,'actor',NULL,'[\"Jim Beale\"]'),(2049543,1732403,2,'actress',NULL,'[\"Abby\"]'),(2049543,1410105,3,'actor',NULL,'[\"Chuck\"]'),(2049543,1407651,4,'actor',NULL,'[\"Matty\"]'),(2049543,1402180,5,'director',NULL,NULL),(2049543,1373794,6,'writer','story by',NULL),(2049543,2572,7,'producer','producer',NULL),(2049543,1402995,8,'producer','producer',NULL),(2049543,1705911,9,'composer',NULL,NULL),(2051879,2926,10,'cinematographer',NULL,NULL),(2051879,1663205,1,'actor',NULL,'[\"James Corrigan\"]'),(2051879,638824,2,'actor',NULL,'[\"Andrei Blok\"]'),(2051879,131235,3,'actor',NULL,'[\"Daniel Luxembourg\"]'),(2051879,1110,4,'actress',NULL,'[\"Dr. Unger\"]'),(2051879,179542,5,'director',NULL,NULL),(2051879,3664884,6,'writer','written by',NULL),(2051879,1878845,7,'producer','producer',NULL),(2051879,592746,8,'producer','producer',NULL),(2051879,566970,9,'composer',NULL,NULL),(2053463,191896,10,'production_designer',NULL,NULL),(2053463,1913734,1,'actress',NULL,'[\"Emily Taylor\"]'),(2053463,1475594,2,'actor',NULL,'[\"Martin Taylor\"]'),(2053463,179,3,'actor',NULL,'[\"Dr. Jonathan Banks\"]'),(2053463,1876,4,'actress',NULL,'[\"Dr. Victoria Siebert\"]'),(2053463,1752,5,'director',NULL,NULL),(2053463,1994243,6,'writer','written by',NULL),(2053463,225146,7,'producer','producer',NULL),(2053463,414423,8,'producer','producer',NULL),(2053463,2353,9,'composer',NULL,NULL),(2054790,5648690,10,'composer','co-composer',NULL),(2054790,586568,1,'actor',NULL,'[\"Michael Kohlhaas\"]'),(2054790,3274621,2,'actress',NULL,'[\"Lisbeth\"]'),(2054790,161046,3,'actress',NULL,'[\"Judith\"]'),(2054790,1269088,4,'actor',NULL,'[\"The Preacher\"]'),(2054790,220774,5,'director',NULL,NULL),(2054790,4663240,6,'writer','screenplay',NULL),(2054790,902535,7,'writer','novella',NULL),(2054790,482532,8,'producer','producer',NULL),(2054790,923915,9,'composer',NULL,NULL),(2057392,378364,10,'composer',NULL,NULL),(2057392,545,1,'actress',NULL,'[\"Colonel Katherine Powell\"]'),(2057392,666739,2,'actor',NULL,'[\"Steve Watts\"]'),(2057392,614,3,'actor',NULL,'[\"Lieutenant General Frank Benson\"]'),(2057392,5831542,4,'actor',NULL,'[\"Jama Farah\"]'),(2057392,4303,5,'director',NULL,NULL),(2057392,382505,6,'writer','written by',NULL),(2057392,2561852,7,'producer','producer',NULL),(2057392,147,8,'producer','producer',NULL),(2057392,484123,9,'producer','producer',NULL),(2058107,192612,10,'producer','producer',NULL),(2058107,147,1,'actor',NULL,'[\"Eric\"]'),(2058107,173,2,'actress',NULL,'[\"Patti\"]'),(2058107,1745,3,'actor',NULL,'[\"Finlay\"]'),(2058107,3528539,4,'actor',NULL,'[\"Young Eric\"]'),(2058107,855300,5,'director',NULL,NULL),(2058107,101639,6,'writer','screenplay',NULL),(2058107,665466,7,'writer','screenplay',NULL),(2058107,4671561,8,'writer','book',NULL),(2058107,113244,9,'producer','producer',NULL),(2058673,424663,10,'producer','producer',NULL),(2058673,1183149,1,'actor',NULL,'[\"Bodhi\"]'),(2058673,3478396,2,'actor',NULL,'[\"Utah\"]'),(2058673,935653,3,'actor',NULL,'[\"Pappas\"]'),(2058673,1954240,4,'actress',NULL,'[\"Samsara\"]'),(2058673,179697,5,'director',NULL,NULL),(2058673,934483,6,'writer','screenplay by',NULL),(2058673,4488,7,'writer','story by',NULL),(2058673,407717,8,'writer','story by',NULL),(2058673,49689,9,'producer','producer',NULL),(2059255,9533867,10,'producer','producer',NULL),(2059255,305558,1,'actor',NULL,'[\"René Saavedra\"]'),(2059255,998846,2,'actor',NULL,'[\"Lucho Guzmán\"]'),(2059255,954222,3,'actress',NULL,'[\"Verónica Carvajal\"]'),(2059255,323483,4,'actor',NULL,'[\"José Tomás Urrutia\"]'),(2059255,1883257,5,'director',NULL,NULL),(2059255,1425747,6,'writer','written by',NULL),(2059255,805073,7,'writer','based on the play: El Plebiscito',NULL),(2059255,1897448,8,'producer','producer',NULL),(2059255,2213147,9,'producer','producer',NULL),(2061702,3834107,10,'producer','producer',NULL),(2061702,2146022,1,'actor',NULL,'[\"Gin\"]'),(2061702,4785118,2,'actress',NULL,'[\"Hotaru Takegawa\"]'),(2061702,875320,3,'actor',NULL,NULL),(2061702,5345817,4,'actress',NULL,'[\"Mom\"]'),(2061702,648464,5,'director',NULL,NULL),(2061702,3267629,6,'writer','idea',NULL),(2061702,2443844,7,'producer','producer',NULL),(2061702,3984065,8,'producer','producer',NULL),(2061702,5472874,9,'producer','producer',NULL),(2061712,4405694,10,'production_designer',NULL,NULL),(2061712,331577,1,'actor',NULL,'[\"Viktor\"]'),(2061712,3202512,2,'actress',NULL,'[\"Bethesda\"]'),(2061712,7154,3,'actor',NULL,'[\"Traffikant\"]'),(2061712,529300,4,'actor',NULL,'[\"Xavier\"]'),(2061712,4678690,5,'director',NULL,NULL),(2061712,1385003,6,'producer','producer',NULL),(2061712,3900456,7,'composer',NULL,NULL),(2061712,2400418,8,'cinematographer',NULL,NULL),(2061712,2681705,9,'editor',NULL,NULL),(2062969,323707,10,'cinematographer',NULL,NULL),(2062969,2244205,1,'actress',NULL,'[\"Louise\"]'),(2062969,3197772,2,'actor',NULL,'[\"Simon\"]'),(2062969,1161994,3,'actor',NULL,'[\"Mike\"]'),(2062969,96,4,'actress',NULL,'[\"Kristin Jansen\"]'),(2062969,576732,5,'director',NULL,NULL),(2062969,413051,6,'writer','scenario',NULL),(2062969,851522,7,'writer','collaboration',NULL),(2062969,906935,8,'producer','producer',NULL),(2062969,661687,9,'composer',NULL,NULL),(2063781,3803244,10,'composer',NULL,NULL),(2063781,935541,1,'actress',NULL,'[\"Kate Hannah\"]'),(2063781,666739,2,'actor',NULL,'[\"Charlie Hannah\"]'),(2063781,644406,3,'actor',NULL,'[\"Dave Davies\"]'),(2063781,5259,4,'actress',NULL,'[\"Principal Barnes\"]'),(2063781,1242054,5,'director',NULL,NULL),(2063781,2226741,6,'writer','written by',NULL),(2063781,3692021,7,'producer','producer',NULL),(2063781,2009933,8,'producer','producer',NULL),(2063781,818304,9,'producer','producer',NULL),(2066051,891216,10,'producer','producer',NULL),(2066051,5473782,1,'actor',NULL,'[\"Elton John\"]'),(2066051,68260,2,'actor',NULL,'[\"Bernie Taupin\"]'),(2066051,534635,3,'actor',NULL,'[\"John Reid\"]'),(2066051,397171,4,'actress',NULL,'[\"Sheila\"]'),(2066051,2077,5,'director',NULL,NULL),(2066051,355822,6,'writer','written by',NULL),(2066051,92061,7,'producer','producer',NULL),(2066051,299050,8,'producer','producer',NULL),(2066051,717230,9,'producer','producer',NULL),(2066133,4859073,10,'composer',NULL,NULL),(2066133,968,1,'actress',NULL,'[\"Eliza\"]'),(2066133,4699235,2,'actor',NULL,'[\"Nico\"]'),(2066133,3039141,3,'actor',NULL,'[\"Carlo\"]'),(2066133,669656,4,'actor',NULL,'[\"James\"]'),(2066133,265852,5,'director',NULL,NULL),(2066133,2512252,6,'director',NULL,NULL),(2066133,665235,7,'producer','producer',NULL),(2066133,4807404,8,'producer','producer',NULL),(2066133,4859162,9,'composer',NULL,NULL),(2066832,3372379,10,'editor','lead editor',NULL),(2066832,1460601,1,'actress',NULL,'[\"Blair\"]'),(2066832,52218,2,'actress',NULL,'[\"Miss Privet\"]'),(2066832,646955,3,'actress',NULL,'[\"Dame Devin\"]'),(2066832,1243009,4,'actress',NULL,'[\"Delancy\"]'),(2066832,2923,5,'director',NULL,NULL),(2066832,20489,6,'writer','written by',NULL),(2066832,1115084,7,'writer','story by',NULL),(2066832,1019013,8,'producer','producer',NULL),(2066832,807413,9,'composer',NULL,NULL),(2069797,6395789,10,'producer','producer',NULL),(2069797,333410,1,'actor',NULL,'[\"Tom\"]'),(2069797,1270009,2,'actress',NULL,'[\"Lynn\"]'),(2069797,165101,3,'actress',NULL,'[\"Brody\"]'),(2069797,342881,4,'actor',NULL,'[\"Psychiatrist\"]'),(2069797,1531934,5,'director',NULL,NULL),(2069797,2085654,6,'writer','written by',NULL),(2069797,89658,7,'producer','producer',NULL),(2069797,2248832,8,'producer','producer',NULL),(2069797,138,9,'producer','producer',NULL),(2070649,1520104,10,'cinematographer',NULL,NULL),(2070649,1508003,1,'actor',NULL,'[\"Kang In-ho\"]'),(2070649,1869756,2,'actress',NULL,'[\"Seo Yoo-jin\"]'),(2070649,4694226,3,'actress',NULL,'[\"Kim Yeon-doo\"]'),(2070649,1048199,4,'actress',NULL,'[\"In-ho\'s grandmother\"]'),(2070649,1375363,5,'director',NULL,NULL),(2070649,2403193,6,'writer','based upon the novel by',NULL),(2070649,4989553,7,'producer','producer',NULL),(2070649,4989537,8,'producer','producer',NULL),(2070649,3028820,9,'composer',NULL,NULL),(2070776,2272810,10,'composer',NULL,NULL),(2070776,244151,1,'actor',NULL,'[\"Louis Échard\"]'),(2070776,40545,2,'actor',NULL,'[\"André Japy\"]'),(2070776,1918862,3,'actress',NULL,'[\"Rose Pamphyle\"]'),(2070776,67367,4,'actress',NULL,'[\"Marie Taylor\"]'),(2070776,1672051,5,'director',NULL,NULL),(2070776,5272702,6,'writer','scenario',NULL),(2070776,4694441,7,'writer','scenario',NULL),(2070776,40927,8,'producer','producer',NULL),(2070776,2055749,9,'composer',NULL,NULL),(2075247,1284117,1,'director',NULL,NULL),(2076220,5667,10,'cinematographer',NULL,NULL),(2076220,491777,1,'actor',NULL,'[\"Mr. Oscar\",\"Le Banquier\",\"La Mendiante\"]'),(2076220,778568,2,'actress',NULL,'[\"Céline\"]'),(2076220,578949,3,'actress',NULL,'[\"Kay M\"]'),(2076220,1541,4,'actress',NULL,'[\"Eva Grace (Jean)\"]'),(2076220,136021,5,'director',NULL,NULL),(2076220,547376,6,'producer','producer',NULL),(2076220,699540,7,'producer','producer',NULL),(2076220,863862,8,'producer','producer',NULL),(2076220,134992,9,'cinematographer',NULL,NULL),(2076298,2260417,10,'producer','executive producer',NULL),(2076298,947447,1,'actor',NULL,'[\"Ip Man\"]'),(2076298,12078,2,'actor',NULL,'[\"Barton Geddes\"]'),(2076298,2185928,3,'actor',NULL,'[\"Bruce Lee\"]'),(2076298,1488865,4,'actor',NULL,'[\"Hartman Wu\"]'),(2076298,948159,5,'director',NULL,NULL),(2076298,2774833,6,'writer','written by',NULL),(2076298,297946,7,'writer','written by',NULL),(2076298,5335213,8,'writer','written by',NULL),(2076298,4183613,9,'writer','written by',NULL),(2076850,742645,10,'cinematographer',NULL,NULL),(2076850,4716115,1,'actress',NULL,'[\"Signe\"]'),(2076850,2070336,2,'actress',NULL,'[\"Dagmar\"]'),(2076850,4715868,3,'actress',NULL,'[\"Frigg\"]'),(2076850,4083737,4,'actor',NULL,'[\"Arvid\"]'),(2076850,1012385,5,'director',NULL,NULL),(2076850,1856961,6,'writer','story by',NULL),(2076850,2276540,7,'writer','story by',NULL),(2076850,2511326,8,'producer','executive producer',NULL),(2076850,1401580,9,'composer',NULL,NULL),(2077851,65781,10,'cinematographer','director of photography',NULL),(2077851,1898126,1,'actor',NULL,'[\"Matt\"]'),(2077851,24404,2,'actress',NULL,'[\"Abby\"]'),(2077851,714310,3,'actor',NULL,'[\"Frank\"]'),(2077851,1406,4,'actress',NULL,'[\"Linda\"]'),(2077851,57592,5,'director','co-director',NULL),(2077851,1101712,6,'writer','screenplay',NULL),(2077851,2928745,7,'writer','screenplay',NULL),(2077851,2693873,8,'producer','producer',NULL),(2077851,390867,9,'composer',NULL,NULL),(2080374,330428,10,'producer','producer',NULL),(2080374,1055413,1,'actor',NULL,'[\"Steve Jobs\"]'),(2080374,701,2,'actress',NULL,'[\"Joanna Hoffman\"]'),(2080374,736622,3,'actor',NULL,'[\"Steve Wozniak\"]'),(2080374,1099,4,'actor',NULL,'[\"John Sculley\"]'),(2080374,965,5,'director',NULL,NULL),(2080374,815070,6,'writer','screenplay',NULL),(2080374,410596,7,'writer','book \"Steve Jobs\"',NULL),(2080374,143939,8,'producer','producer',NULL),(2080374,1384503,9,'producer','producer',NULL),(2081178,2316415,10,'editor',NULL,NULL),(2081178,413,1,'actress',NULL,'[\"Kathy\"]'),(2081178,864541,2,'actor',NULL,'[\"Nick\"]'),(2081178,90225,3,'actor',NULL,'[\"Gary\"]'),(2081178,43855,4,'actress',NULL,'[\"Laurie\"]'),(2081178,2320276,5,'director',NULL,NULL),(2081178,1370487,6,'producer','line producer',NULL),(2081178,4071338,7,'producer','producer',NULL),(2081178,3457941,8,'composer',NULL,NULL),(2081178,767734,9,'cinematographer',NULL,NULL),(2081194,3782251,10,'producer','producer',NULL),(2081194,703939,1,'actress',NULL,'[\"Gretel\"]'),(2081194,919616,2,'actor',NULL,'[\"Hansel\"]'),(2081194,1223,3,'actress',NULL,'[\"Witch Agnes\"]'),(2081194,144,4,'actor',NULL,'[\"Meter Man\"]'),(2081194,431172,5,'director',NULL,NULL),(2081194,1196692,6,'writer','written by',NULL),(2081194,974169,7,'producer','producer',NULL),(2081194,399791,8,'producer','producer',NULL),(2081194,604878,9,'producer','producer',NULL),(2082197,1338587,10,'composer',NULL,NULL),(2082197,1633541,1,'actor',NULL,'[\"Murphy\",\"Barfi\"]'),(2082197,1231899,2,'actress',NULL,'[\"Jhilmil Chatterjee\"]'),(2082197,2299825,3,'actress',NULL,'[\"Shruti Ghosh Sengupta\"]'),(2082197,795661,4,'actor',NULL,'[\"Sudhanshu Dutta\"]'),(2082197,1397301,5,'director',NULL,NULL),(2082197,6215655,6,'writer','story and screenplay',NULL),(2082197,1821635,7,'writer','dialogue',NULL),(2082197,3032965,8,'producer','producer',NULL),(2082197,780098,9,'producer','producer',NULL),(2083355,122740,10,'production_designer',NULL,NULL),(2083355,4793,1,'actress',NULL,'[\"Mia\"]'),(2083355,4820,2,'actor',NULL,'[\"Lance\"]'),(2083355,211726,3,'actress',NULL,'[\"Shelby\"]'),(2083355,4875,4,'actor',NULL,'[\"Harper\"]'),(2083355,2700,5,'director',NULL,NULL),(2083355,199733,6,'producer','producer',NULL),(2083355,6010,7,'composer',NULL,NULL),(2083355,306755,8,'cinematographer',NULL,NULL),(2083355,590247,9,'editor',NULL,NULL),(2084093,1192759,10,'cinematographer','director of photography',NULL),(2084093,514,1,'actor',NULL,'[\"Bill\"]'),(2084093,4111426,2,'actress',NULL,'[\"Young Ashley\"]'),(2084093,852569,3,'actress',NULL,'[\"Stacy\"]'),(2084093,4742517,4,'actress',NULL,'[\"Gabby\"]'),(2084093,1324090,5,'director',NULL,NULL),(2084093,3894671,6,'writer',NULL,NULL),(2084093,540176,7,'producer','producer',NULL),(2084093,1824654,8,'producer','producer',NULL),(2084093,4972198,9,'composer',NULL,NULL),(2084970,3267061,10,'producer','producer',NULL),(2084970,1212722,1,'actor',NULL,'[\"Alan Turing\"]'),(2084970,461136,2,'actress',NULL,'[\"Joan Clarke\"]'),(2084970,328828,3,'actor',NULL,'[\"Hugh Alexander\"]'),(2084970,1395602,4,'actor',NULL,'[\"John Cairncross\"]'),(2084970,878763,5,'director',NULL,NULL),(2084970,2441699,6,'writer','written by',NULL),(2084970,388132,7,'writer','based on the book \"Alan Turing The Enigma\" by',NULL),(2084970,3860486,8,'producer','producer',NULL),(2084970,1755470,9,'producer','producer',NULL),(2084989,1541272,1,'actress',NULL,'[\"Kris\"]'),(2084989,1797014,2,'actor',NULL,'[\"Husband\"]'),(2084989,1503403,3,'actor',NULL,'[\"Jeff\"]'),(2084989,2426419,4,'actor',NULL,'[\"The Sampler\"]'),(2084989,1503463,5,'producer','producer',NULL),(2084989,1444110,6,'producer','producer',NULL),(2084989,1108007,7,'editor',NULL,NULL),(2084989,2548464,8,'production_designer',NULL,NULL),(2085957,514284,10,'cinematographer',NULL,NULL),(2085957,2706397,1,'actress',NULL,'[\"Natalie Ross\"]'),(2085957,2650700,2,'actor',NULL,'[\"Cameron\"]'),(2085957,1275101,3,'actress',NULL,'[\"Zoe\"]'),(2085957,2702898,4,'actress',NULL,'[\"Hayley Jones\"]'),(2085957,1042371,5,'director',NULL,NULL),(2085957,1027626,6,'writer','screenplay',NULL),(2085957,287147,7,'writer','screenplay',NULL),(2085957,1954504,8,'producer','producer',NULL),(2085957,111649,9,'composer',NULL,NULL),(2088003,1240300,10,'composer',NULL,NULL),(2088003,168,1,'actor',NULL,'[\"US President William Alan Moore\"]'),(2088003,2762369,2,'actor',NULL,'[\"Oskari\"]'),(2088003,829032,3,'actor',NULL,'[\"Morris\"]'),(2088003,1255,4,'actor',NULL,'[\"Vice President\"]'),(2088003,1118351,5,'director',NULL,NULL),(2088003,427058,6,'writer','based on the original story by',NULL),(2088003,1676089,7,'producer','producer',NULL),(2088003,1010017,8,'producer','producer',NULL),(2088003,582797,9,'producer','producer',NULL),(2088714,4161516,1,'self',NULL,'[\"Self - Ugandan Politician\"]'),(2088714,3588627,2,'archive_footage',NULL,'[\"Self\"]'),(2088714,4161887,3,'self',NULL,'[\"Self\"]'),(2088714,4303926,4,'self',NULL,'[\"Self - Founder, Sexual Minorities Uganda\"]'),(2088714,2816706,5,'director',NULL,NULL),(2088714,4729613,6,'director',NULL,NULL),(2088714,4729633,7,'composer',NULL,NULL),(2091243,4735495,1,'actor',NULL,'[\"John Woo\"]'),(2091243,4371772,2,'actor',NULL,'[\"Luke Locktin\"]'),(2091243,2845534,3,'actor',NULL,'[\"Andrew Edwards\"]'),(2091243,4734674,4,'actor',NULL,'[\"Charlie Sanderson\"]'),(2091243,1349347,5,'producer','producer',NULL),(2091243,4804056,6,'composer',NULL,NULL),(2091243,1817544,7,'cinematographer',NULL,NULL),(2091243,1335267,8,'cinematographer',NULL,NULL),(2091243,4861501,9,'editor',NULL,NULL),(2091256,788640,10,'composer',NULL,NULL),(2091256,366389,1,'actor',NULL,'[\"George\"]'),(2091256,3042755,2,'actor',NULL,'[\"Harold\"]'),(2091256,1159180,3,'actor',NULL,'[\"Captain Underpants\",\"Mr. Krupp\"]'),(2091256,1802209,4,'actor',NULL,'[\"Professor Poopypants\"]'),(2091256,1659741,5,'director',NULL,NULL),(2091256,831557,6,'writer','screenplay by',NULL),(2091256,2438127,7,'writer','based on the epic novels by',NULL),(2091256,814969,8,'producer','producer',NULL),(2091256,842616,9,'producer','producer',NULL),(2091935,1646318,10,'producer','producer',NULL),(2091935,447695,1,'actress',NULL,'[\"Martha McKay\"]'),(2091935,5377,2,'actor',NULL,'[\"Francis\"]'),(2091935,619,3,'actor',NULL,'[\"Hopper\",\"Reynolds\"]'),(2091935,710447,4,'actor',NULL,'[\"Von Cartigan\"]'),(2091935,2161247,5,'director',NULL,NULL),(2091935,484840,6,'writer','written by',NULL),(2091935,303010,7,'producer','producer',NULL),(2091935,375033,8,'producer','producer',NULL),(2091935,414601,9,'producer','producer',NULL),(2093109,2730654,10,'editor',NULL,NULL),(2093109,6049037,1,'self',NULL,'[\"Self\"]'),(2093109,5282532,2,'self',NULL,'[\"Self\"]'),(2093109,3371784,3,'self',NULL,'[\"Self\"]'),(2093109,6049050,4,'self',NULL,'[\"Self\"]'),(2093109,297085,5,'director',NULL,NULL),(2093109,1292648,6,'director',NULL,NULL),(2093109,1445673,7,'composer',NULL,NULL),(2093109,5240,8,'composer',NULL,NULL),(2093109,374935,9,'cinematographer','director of photography',NULL),(2093270,548776,10,'producer','producer',NULL),(2093270,358922,1,'actress',NULL,'[\"Kate\"]'),(2093270,390285,2,'actor',NULL,'[\"Alex Green\"]'),(2093270,236495,3,'actor',NULL,'[\"Jacob\"]'),(2093270,2218213,4,'actress',NULL,'[\"Amber\"]'),(2093270,1298542,5,'director',NULL,NULL),(2093270,1523747,6,'writer','story',NULL),(2093270,43946,7,'producer','producer',NULL),(2093270,273327,8,'producer','producer',NULL),(2093270,398258,9,'producer','producer',NULL),(2093990,733730,10,'producer','producer',NULL),(2093990,869088,1,'actor',NULL,'[\"Jesús\"]'),(2093990,5631118,2,'actor',NULL,'[\"Niño\"]'),(2093990,273464,3,'actor',NULL,'[\"Sergio\"]'),(2093990,530365,4,'actor',NULL,'[\"Vicente\"]'),(2093990,600409,5,'director',NULL,NULL),(2093990,346277,6,'writer',NULL,NULL),(2093990,1973308,7,'producer','producer',NULL),(2093990,57623,8,'producer','producer',NULL),(2093990,1394607,9,'producer','producer',NULL),(2093991,927561,10,'producer','producer',NULL),(2093991,788335,1,'actor',NULL,'[\"Elvis\"]'),(2093991,228,2,'actor',NULL,'[\"Nixon\"]'),(2093991,1641117,3,'actor',NULL,'[\"Jerry\"]'),(2093991,424216,4,'actor',NULL,'[\"Sonny\"]'),(2093991,1637785,5,'director',NULL,NULL),(2093991,755966,6,'writer','screenplay',NULL),(2093991,821179,7,'writer','screenplay',NULL),(2093991,144,8,'writer','screenplay',NULL),(2093991,255891,9,'producer','producer',NULL),(2094064,2754766,10,'production_designer',NULL,NULL),(2094064,219206,1,'actor',NULL,'[\"Benedick\"]'),(2094064,9918,2,'actress',NULL,'[\"Beatrice\"]'),(2094064,469823,3,'actor',NULL,'[\"Claudio\"]'),(2094064,4711616,4,'actress',NULL,'[\"Hero\"]'),(2094064,923736,5,'director',NULL,NULL),(2094064,636,6,'writer','based on the play by',NULL),(2094064,4740874,7,'producer','producer',NULL),(2094064,402870,8,'cinematographer',NULL,NULL),(2094064,3354467,9,'editor',NULL,NULL),(2094155,1968338,10,'production_designer',NULL,NULL),(2094155,2049889,1,'actor',NULL,'[\"Wade McCurry\"]'),(2094155,3241371,2,'actress',NULL,'[\"Martha Kirkland\"]'),(2094155,1964247,3,'actor',NULL,'[\"Heck Kirkland\"]'),(2094155,852668,4,'actor',NULL,'[\"E.J. Lane\"]'),(2094155,1474337,5,'director',NULL,NULL),(2094155,2828636,6,'producer','producer',NULL),(2094155,1242185,7,'composer',NULL,NULL),(2094155,1580444,8,'cinematographer',NULL,NULL),(2094155,411459,9,'editor',NULL,NULL),(2094762,607559,10,'production_designer',NULL,NULL),(2094762,339304,1,'actor',NULL,'[\"Adan Kundle\"]'),(2094762,205,2,'actress',NULL,'[\"Karen Hillridge\"]'),(2094762,89485,3,'actor',NULL,'[\"Lucas Foster\"]'),(2094762,1239813,4,'actress',NULL,'[\"Meghan Hillridge\"]'),(2094762,3466040,5,'director',NULL,NULL),(2094762,358228,6,'writer','written by',NULL),(2094762,2421501,7,'composer',NULL,NULL),(2094762,2660194,8,'cinematographer',NULL,NULL),(2094762,3152815,9,'editor',NULL,NULL),(2094766,1817726,10,'writer','based on the video game series created by',NULL),(2094766,1055413,1,'actor',NULL,'[\"Cal Lynch\",\"Aguilar\"]'),(2094766,182839,2,'actress',NULL,'[\"Sofia\"]'),(2094766,460,3,'actor',NULL,'[\"Rikkin\"]'),(2094766,322407,4,'actor',NULL,'[\"Joseph Lynch\"]'),(2094766,997291,5,'director',NULL,NULL),(2094766,2078681,6,'writer','screenplay by',NULL),(2094766,177836,7,'writer','screenplay by',NULL),(2094766,171651,8,'writer','screenplay by',NULL),(2094766,1172727,9,'writer','based on the video game series created by',NULL),(2094877,197340,10,'cinematographer',NULL,NULL),(2094877,296594,1,'actress',NULL,'[\"Hortense Laborie\"]'),(2094877,1570563,2,'actor',NULL,'[\"Nicolas Bauvois\"]'),(2094877,195883,3,'actor',NULL,'[\"Le Président\"]'),(2094877,320762,4,'actor',NULL,'[\"David Azoulay\"]'),(2094877,898603,5,'director',NULL,NULL),(2094877,173541,6,'writer','screenplay',NULL),(2094877,5336512,7,'writer','story',NULL),(2094877,746041,8,'producer','producer',NULL),(2094877,1189,9,'composer',NULL,NULL),(2095649,310341,10,'cinematographer',NULL,NULL),(2095649,173,1,'actress',NULL,'[\"Grace\"]'),(2095649,619,2,'actor',NULL,'[\"Prince Rainier\"]'),(2095649,672422,3,'actor',NULL,'[\"Charles de Gaulle\"]'),(2095649,1449,4,'actor',NULL,'[\"Francis Tucker\"]'),(2095649,196860,5,'director',NULL,NULL),(2095649,3885069,6,'writer','screenplay',NULL),(2095649,159167,7,'producer','producer',NULL),(2095649,1118769,8,'producer','producer',NULL),(2095649,6116,9,'composer',NULL,NULL),(2096672,148808,10,'writer','written by',NULL),(2096672,120,1,'actor',NULL,'[\"Lloyd\"]'),(2096672,1099,2,'actor',NULL,'[\"Harry\"]'),(2096672,1443527,3,'actor',NULL,'[\"Travis\",\"Captain Lippincott\"]'),(2096672,390229,4,'actress',NULL,'[\"Adele\"]'),(2096672,125803,5,'director',NULL,NULL),(2096672,268380,6,'director',NULL,NULL),(2096672,1890845,7,'writer','written by',NULL),(2096672,1898234,8,'writer','written by',NULL),(2096672,947395,9,'writer','written by',NULL),(2096673,2919995,10,'writer','additional story material by',NULL),(2096673,688132,1,'actress',NULL,'[\"Joy\"]'),(2096673,352778,2,'actor',NULL,'[\"Fear\"]'),(2096673,85400,3,'actor',NULL,'[\"Anger\"]'),(2096673,1411676,4,'actress',NULL,'[\"Disgust\"]'),(2096673,230032,5,'director',NULL,NULL),(2096673,215455,6,'director','co-director',NULL),(2096673,498834,7,'writer','screenplay by',NULL),(2096673,2155757,8,'writer','screenplay by',NULL),(2096673,1578335,9,'writer','additional story material by',NULL),(2097307,2341944,10,'composer',NULL,NULL),(2097307,1009277,1,'actor',NULL,'[\"Yul Perrkins a.k.a. Charles Bronson\"]'),(2097307,68338,2,'actress',NULL,'[\"Annie Bean\"]'),(2097307,177896,3,'actor',NULL,'[\"Alex Dmitri\"]'),(2097307,155693,4,'actress',NULL,'[\"Debby Kreeger\"]'),(2097307,3124542,5,'director',NULL,NULL),(2097307,659123,6,'producer','producer',NULL),(2097307,875777,7,'producer','producer',NULL),(2097307,910601,8,'producer','producer',NULL),(2097307,4389727,9,'composer',NULL,NULL),(2097331,815610,10,'producer','producer',NULL),(2097331,867,1,'actor',NULL,'[\"Baxter Fang\"]'),(2097331,173,2,'actress',NULL,'[\"Annie Fang\"]'),(2097331,1063517,3,'actress',NULL,'[\"Young Camille\"]'),(2097331,687694,4,'actress',NULL,'[\"Camille Fang\"]'),(2097331,2951052,5,'writer','based on the book by',NULL),(2097331,1865755,6,'writer','screenplay',NULL),(2097331,1907858,7,'producer','producer',NULL),(2097331,1889450,8,'producer','producer',NULL),(2097331,754344,9,'producer','producer',NULL),(2098627,1628845,10,'editor',NULL,NULL),(2098627,2916225,1,'actress',NULL,'[\"Cassie\"]'),(2098627,707,2,'actress',NULL,'[\"Brenda Stratford\"]'),(2098627,1852,3,'actor',NULL,'[\"Mr. Gray\"]'),(2098627,2358356,4,'actress',NULL,'[\"Jett\"]'),(2098627,642223,5,'director',NULL,NULL),(2098627,3554679,6,'writer',NULL,NULL),(2098627,339,7,'producer','producer',NULL),(2098627,4444020,8,'composer',NULL,NULL),(2098627,2764089,9,'editor',NULL,NULL),(2098628,1780517,10,'editor',NULL,NULL),(2098628,512071,1,'actor',NULL,'[\"Le professeur Jean-Martin Charcot\"]'),(2098628,1904769,2,'actor',NULL,'[\"Conti\"]'),(2098628,1331316,3,'actress',NULL,'[\"Augustine\"]'),(2098628,557859,4,'actress',NULL,'[\"Constance Charcot\"]'),(2098628,1356951,5,'director',NULL,NULL),(2098628,534774,6,'producer','producer',NULL),(2098628,1857335,7,'producer','producer',NULL),(2098628,690772,8,'composer',NULL,NULL),(2098628,496055,9,'cinematographer',NULL,NULL),(2101341,328738,10,'editor',NULL,NULL),(2101341,268199,1,'actor',NULL,'[\"Victor\"]'),(2101341,636426,2,'actress',NULL,'[\"Beatrice\"]'),(2101341,1002641,3,'actor',NULL,'[\"Darcy\"]'),(2101341,5024,4,'actor',NULL,'[\"Alphonse\"]'),(2101341,649117,5,'director',NULL,NULL),(2101341,437249,6,'writer','written by',NULL),(2101341,605775,7,'producer','producer',NULL),(2101341,343844,8,'composer',NULL,NULL),(2101341,131700,9,'cinematographer','director of photography',NULL),(2101441,553498,10,'composer',NULL,NULL),(2101441,1227814,1,'actress',NULL,'[\"Candy\"]'),(2101441,1411125,2,'actress',NULL,'[\"Faith\"]'),(2101441,1667364,3,'actress',NULL,'[\"Brit\"]'),(2101441,2540339,4,'actress',NULL,'[\"Cotty\"]'),(2101441,5101,5,'director',NULL,NULL),(2101441,1661920,6,'producer','producer',NULL),(2101441,314976,7,'producer','producer',NULL),(2101441,360065,8,'producer','producer',NULL),(2101441,1536307,9,'producer','producer',NULL),(2101473,61952,10,'producer','producer',NULL),(2101473,2092835,1,'actor',NULL,'[\"Rob Cole\"]'),(2101473,1745,2,'actor',NULL,'[\"Barber\"]'),(2101473,553648,3,'actor',NULL,'[\"Shah Ala ad Daula\"]'),(2101473,2050746,4,'actress',NULL,'[\"Rebecca\"]'),(2101473,836715,5,'director',NULL,NULL),(2101473,1975430,6,'writer','based on the novel by',NULL),(2101473,74217,7,'writer','screenplay by',NULL),(2101473,1171030,8,'writer','co-written by',NULL),(2101473,6905,9,'writer','co-written by',NULL),(2103254,757938,10,'editor',NULL,NULL),(2103254,565250,1,'actress',NULL,'[\"Tammy\"]'),(2103254,215,2,'actress',NULL,'[\"Pearl\"]'),(2103254,870,3,'actress',NULL,'[\"Lenore\"]'),(2103254,5049,4,'actress',NULL,'[\"Deb\"]'),(2103254,1229520,5,'director',NULL,NULL),(2103254,2071,6,'producer','producer',NULL),(2103254,570912,7,'producer','producer',NULL),(2103254,28787,8,'composer',NULL,NULL),(2103254,22540,9,'cinematographer',NULL,NULL),(2103267,316629,10,'producer','producer',NULL),(2103267,915208,1,'actress',NULL,'[\"Lil\"]'),(2103267,705,2,'actress',NULL,'[\"Roz\"]'),(2103267,1882152,3,'actor',NULL,'[\"Ian\"]'),(2103267,3306943,4,'actor',NULL,'[\"Tom\"]'),(2103267,284774,5,'director',NULL,NULL),(2103267,504363,6,'writer','book \"The Grandmothers\"',NULL),(2103267,358960,7,'writer','adaptation',NULL),(2103267,136260,8,'producer','producer',NULL),(2103267,271446,9,'producer','producer',NULL),(2103281,1858656,10,'producer','producer',NULL),(2103281,198,1,'actor',NULL,'[\"Dreyfus\"]'),(2103281,5392,2,'actress',NULL,'[\"Ellie\"]'),(2103281,785227,3,'actor',NULL,'[\"Caesar\"]'),(2103281,2240346,4,'actor',NULL,'[\"Alexander\"]'),(2103281,716257,5,'director',NULL,NULL),(2103281,93560,6,'writer','written by',NULL),(2103281,415425,7,'writer','written by',NULL),(2103281,798646,8,'writer','written by',NULL),(2103281,99541,9,'writer','based on the novel \"La Planète des Singes\" by',NULL),(2105044,4761826,10,'director',NULL,NULL),(2105044,2015221,1,'actor',NULL,'[\"Gary (segment \\\"Tape 56\\\")\"]'),(2105044,2721366,2,'actor',NULL,'[\"Zak (segment \\\"Tape 56\\\")\"]'),(2105044,1417392,3,'actor',NULL,'[\"Brad (segment \\\"Tape 56\\\")\"]'),(2105044,2689823,4,'actress',NULL,'[\"Lily (segment \\\"Amateur Night\\\")\"]'),(2105044,2366012,5,'director',NULL,NULL),(2105044,1410159,6,'director',NULL,NULL),(2105044,2419470,7,'director',NULL,NULL),(2105044,2301412,8,'director',NULL,NULL),(2105044,1137264,9,'director',NULL,NULL),(2106361,780762,10,'editor',NULL,NULL),(2106361,35514,1,'actor',NULL,'[\"Gary\"]'),(2106361,915637,2,'actress',NULL,'[\"Allison\"]'),(2106361,909768,3,'actor',NULL,'[\"Pete\"]'),(2106361,2666746,4,'actor',NULL,'[\"Donnie\"]'),(2106361,702797,5,'director',NULL,NULL),(2106361,4291727,6,'writer','written by',NULL),(2106361,307776,7,'producer','producer',NULL),(2106361,3911,8,'composer',NULL,NULL),(2106361,3388,9,'cinematographer',NULL,NULL),(2106403,682366,10,'cinematographer',NULL,NULL),(2106403,518321,1,'actress',NULL,'[\"Juliana Lovece\"]'),(2106403,3626153,2,'actress',NULL,'[\"Celine Davies\"]'),(2106403,13286169,3,'actor',NULL,'[\"Passerby\"]'),(2106403,2080363,4,'actor',NULL,'[\"Saxon Blake\"]'),(2106403,423623,5,'director',NULL,NULL),(2106403,725984,6,'writer','written by',NULL),(2106403,1379081,7,'writer','created by',NULL),(2106403,1293699,8,'producer','producer',NULL),(2106403,1902248,9,'composer',NULL,NULL),(2106476,1401820,10,'cinematographer',NULL,NULL),(2106476,586568,1,'actor',NULL,'[\"Lucas\"]'),(2106476,488917,2,'actor',NULL,'[\"Theo\"]'),(2106476,5038871,3,'actress',NULL,'[\"Klara\"]'),(2106476,5039026,4,'actor',NULL,'[\"Marcus\"]'),(2106476,899121,5,'director',NULL,NULL),(2106476,2105585,6,'writer','screenplay',NULL),(2106476,1011849,7,'producer','producer',NULL),(2106476,442337,8,'producer','producer',NULL),(2106476,250813,9,'composer',NULL,NULL),(2106529,1497731,10,'editor',NULL,NULL),(2106529,469823,1,'actor',NULL,'[\"Astor\"]'),(2106529,1901842,2,'actress',NULL,'[\"Cali\"]'),(2106529,1683768,3,'actress',NULL,'[\"Mila\"]'),(2106529,1466205,4,'actress',NULL,'[\"Trinity\",\"Divinity\"]'),(2106529,2656528,5,'director',NULL,NULL),(2106529,3651498,6,'producer','producer',NULL),(2106529,2289851,7,'composer',NULL,NULL),(2106529,3079852,8,'cinematographer',NULL,NULL),(2106529,971017,9,'editor',NULL,NULL),(2106550,10407071,10,'producer','producer',NULL),(2106550,241121,1,'actor',NULL,'[\"Moïse\"]'),(2106550,208426,2,'actress',NULL,'[\"Alice\"]'),(2106550,619,3,'actor',NULL,'[\"Ivan Rostovsky\"]'),(2106550,220183,4,'actress',NULL,'[\"Sandra\"]'),(2106550,733886,5,'director',NULL,NULL),(2106550,1345806,6,'producer','producer',NULL),(2106550,2017060,7,'producer','producer',NULL),(2106550,2005949,8,'producer','producer',NULL),(2106550,9658994,9,'producer','producer',NULL),(2106739,403830,10,'editor',NULL,NULL),(2106739,364835,1,'actress',NULL,'[\"Jenn\"]'),(2106739,2385935,2,'actress',NULL,'[\"Kelly\"]'),(2106739,3151834,3,'actor',NULL,'[\"Matt\"]'),(2106739,183469,4,'actor',NULL,'[\"Aaron\"]'),(2106739,1550373,5,'director',NULL,NULL),(2106739,387646,6,'producer','producer',NULL),(2106739,1608935,7,'producer','producer',NULL),(2106739,2035201,8,'composer',NULL,NULL),(2106739,509828,9,'cinematographer','director of photography',NULL),(2107648,2043737,10,'production_designer',NULL,NULL),(2107648,1501565,1,'actress',NULL,'[\"Sol\"]'),(2107648,2442431,2,'actor',NULL,'[\"Félix\"]'),(2107648,5243946,3,'actress',NULL,'[\"Sara\"]'),(2107648,5242974,4,'actor',NULL,'[\"Adolfo\"]'),(2107648,305563,5,'director',NULL,NULL),(2107648,3525895,6,'producer','producer',NULL),(2107648,5245791,7,'composer',NULL,NULL),(2107648,994007,8,'cinematographer',NULL,NULL),(2107648,3935402,9,'editor',NULL,NULL),(2107835,4737701,10,'production_designer',NULL,NULL),(2107835,810620,1,'actor',NULL,'[\"Magnus\"]'),(2107835,2683090,2,'actor',NULL,'[\"Sebastian\"]'),(2107835,2926907,3,'actor',NULL,'[\"Kyle\"]'),(2107835,1899225,4,'actress',NULL,'[\"Langston\"]'),(2107835,689319,5,'director',NULL,NULL),(2107835,1984776,6,'producer','producer',NULL),(2107835,793893,7,'producer','producer',NULL),(2107835,2038313,8,'cinematographer',NULL,NULL),(2107835,12480616,9,'cinematographer',NULL,NULL),(2108546,4100983,10,'producer','producer',NULL),(2108546,396924,1,'actress',NULL,'[\"Sofie\"]'),(2108546,887206,2,'actress',NULL,'[\"Daan\"]'),(2108546,456,3,'actress',NULL,'[\"Jackie\"]'),(2108546,2456350,4,'actor',NULL,'[\"Nurse Larry\"]'),(2108546,79578,5,'director',NULL,NULL),(2108546,88858,6,'writer','written by',NULL),(2108546,392288,7,'writer','written by',NULL),(2108546,212355,8,'producer','producer',NULL),(2108546,644283,9,'producer','producer',NULL),(2109127,3647860,1,'actor',NULL,'[\"Nolan Reynolds\"]'),(2109127,5100396,2,'actress',NULL,'[\"Jill McCalister\"]'),(2109127,4770295,3,'actor',NULL,'[\"Dillon Armstrong\"]'),(2109127,3364314,4,'actress',NULL,'[\"Alice Woodward\"]'),(2109127,3311772,5,'director',NULL,NULL),(2109127,4770727,6,'producer','producer',NULL),(2109127,4770678,7,'producer','producer',NULL),(2109127,4978261,8,'producer','producer',NULL),(2109127,3314377,9,'cinematographer',NULL,NULL),(2109184,89658,10,'producer','producer',NULL),(2109184,242295,1,'actor',NULL,'[\"Doug\"]'),(2109184,2209370,2,'actress',NULL,'[\"Katie\"]'),(2109184,2397866,3,'actor',NULL,'[\"Ben\"]'),(2109184,3293813,4,'actor',NULL,'[\"Derek\"]'),(2109184,1160962,5,'director',NULL,NULL),(2109184,1413364,6,'director',NULL,NULL),(2109184,484907,7,'writer','screenplay',NULL),(2109184,1739039,8,'writer','story',NULL),(2109184,2305431,9,'writer','film \"Paranormal Activity\"',NULL),(2109248,6613,10,'producer','producer',NULL),(2109248,242,1,'actor',NULL,'[\"Cade Yeager\"]'),(2109248,2443758,2,'actress',NULL,'[\"Tessa Yeager\"]'),(2109248,2930503,3,'actor',NULL,'[\"Shane Dyson\"]'),(2109248,1804,4,'actor',NULL,'[\"Joshua Joyce\"]'),(2109248,881,5,'director',NULL,NULL),(2109248,472567,6,'writer','written by',NULL),(2109248,117290,7,'producer','producer',NULL),(2109248,220892,8,'producer','producer',NULL),(2109248,225146,9,'producer','producer',NULL),(2112096,2363648,10,'editor',NULL,NULL),(2112096,766837,1,'actress',NULL,'[\"Edina\"]'),(2112096,525921,2,'actress',NULL,'[\"Patsy\"]'),(2112096,1363,3,'actress',NULL,'[\"Bubble\"]'),(2112096,768018,4,'actress',NULL,'[\"Saffy\"]'),(2112096,282064,5,'director',NULL,NULL),(2112096,427827,6,'producer','producer',NULL),(2112096,687494,7,'producer','producer',NULL),(2112096,2606933,8,'composer',NULL,NULL),(2112096,1237812,9,'cinematographer','director of photography',NULL),(2112131,1754800,10,'composer',NULL,NULL),(2112131,6795,1,'actor',NULL,'[\"Chulbul Pandey\"]'),(2112131,3848064,2,'actress',NULL,'[\"Rajjo Pandey\"]'),(2112131,695177,3,'actor',NULL,'[\"Thakur Bachchalal Singh\"]'),(2112131,451396,4,'actor',NULL,'[\"Prajapati Pandey\"]'),(2112131,451170,5,'director',NULL,NULL),(2112131,795651,6,'writer',NULL,NULL),(2112131,37019,7,'producer','producer',NULL),(2112131,1150796,8,'composer',NULL,NULL),(2112131,19507,9,'composer',NULL,NULL),(2113681,623900,10,'producer','producer',NULL),(2113681,349052,1,'actor',NULL,'[\"Allan Karlsson\"]'),(2113681,928002,2,'actor',NULL,'[\"Julius\"]'),(2113681,2433382,3,'actor',NULL,'[\"Benny Ljungberg\"]'),(2113681,3230026,4,'actress',NULL,'[\"Gunilla\"]'),(2113681,379773,5,'director',NULL,NULL),(2113681,2055727,6,'writer','screenplay',NULL),(2113681,4932770,7,'writer','novel',NULL),(2113681,286843,8,'producer','producer',NULL),(2113681,1961951,9,'producer','producer',NULL),(2115295,176323,10,'production_designer',NULL,NULL),(2115295,1102577,1,'actress',NULL,'[\"Ginger\"]'),(2115295,2129444,2,'actress',NULL,'[\"Rosa\"]'),(2115295,906,3,'actress',NULL,'[\"Bella\"]'),(2115295,1624,4,'actor',NULL,'[\"Mark Two\"]'),(2115295,6845,5,'director',NULL,NULL),(2115295,1585950,6,'producer','producer',NULL),(2115295,791931,7,'producer','producer',NULL),(2115295,752811,8,'cinematographer','director of photography',NULL),(2115295,716343,9,'editor',NULL,NULL),(2116853,1961777,1,'director',NULL,NULL),(2116898,1961777,1,'director',NULL,NULL),(2116968,1961777,1,'director',NULL,NULL),(2118624,4613059,10,'composer',NULL,NULL),(2118624,3920288,1,'actress',NULL,'[\"Max Cartwright\"]'),(2118624,15196,2,'actress',NULL,'[\"Nancy\",\"Amanda Cartwright\"]'),(2118624,2796745,3,'actor',NULL,'[\"Kurt\"]'),(2118624,3042755,4,'actor',NULL,'[\"Duncan\"]'),(2118624,833889,5,'director',NULL,NULL),(2118624,4784201,6,'writer','written by',NULL),(2118624,588679,7,'writer','written by',NULL),(2118624,518757,8,'producer','producer',NULL),(2118624,1003921,9,'producer','producer',NULL),(2119383,4421949,10,'production_designer',NULL,NULL),(2119383,1060691,1,'actress',NULL,'[\"Margaret\"]'),(2119383,1048246,2,'actress',NULL,'[\"Josephine\"]'),(2119383,4784888,3,'actress',NULL,'[\"Hannah\"]'),(2119383,908914,4,'actress',NULL,'[\"Aunt Deborah\"]'),(2119383,1223500,5,'director',NULL,NULL),(2119383,1912334,6,'producer','producer',NULL),(2119383,2817446,7,'composer',NULL,NULL),(2119383,27493,8,'cinematographer',NULL,NULL),(2119383,1479335,9,'editor',NULL,NULL),(2119532,202704,10,'producer','producer',NULL),(2119532,1940449,1,'actor',NULL,'[\"Desmond Doss\"]'),(2119532,941777,2,'actor',NULL,'[\"Captain Glover\"]'),(2119532,3478396,3,'actor',NULL,'[\"Smitty Ryker\"]'),(2119532,1954240,4,'actress',NULL,'[\"Dorothy Schutte\"]'),(2119532,154,5,'director',NULL,NULL),(2119532,770938,6,'writer','screenplay by',NULL),(2119532,460795,7,'writer','screenplay by',NULL),(2119532,70822,8,'producer','producer',NULL),(2119532,192984,9,'producer','producer',NULL),(2119543,56550,10,'composer',NULL,NULL),(2119543,85312,1,'actor',NULL,'[\"Jonathan Barnavelt\"]'),(2119543,949,2,'actress',NULL,'[\"Florence Zimmerman\"]'),(2119543,6236783,3,'actor',NULL,'[\"Lewis Barnavelt\"]'),(2119543,1492,4,'actor',NULL,'[\"Isaac Izard\"]'),(2119543,744834,5,'director',NULL,NULL),(2119543,68662,6,'writer','based on the novel by',NULL),(2119543,471392,7,'writer','screenplay by',NULL),(2119543,1329482,8,'producer','producer',NULL),(2119543,888743,9,'producer','producer',NULL),(2120120,184445,10,'producer','producer',NULL),(2120120,1191,1,'actor',NULL,'[\"Brenner\"]'),(2120120,416673,2,'actor',NULL,'[\"President Will Cooper\"]'),(2120120,1157358,3,'actress',NULL,'[\"Violet\"]'),(2120120,227759,4,'actor',NULL,'[\"Eddie\"]'),(2120120,1060,5,'director',NULL,NULL),(2120120,379056,6,'writer','screenplay',NULL),(2120120,251,7,'writer','screenplay',NULL),(2120120,1268896,8,'writer','short film',NULL),(2120120,55431,9,'producer','producer',NULL),(2123146,284853,10,'editor',NULL,NULL),(2123146,3005544,1,'actor',NULL,'[\"The Angry Video Game Nerd\"]'),(2123146,836836,2,'actor',NULL,'[\"Cooper\"]'),(2123146,2262265,3,'actress',NULL,'[\"Mandi\"]'),(2123146,715327,4,'actor',NULL,'[\"Bernie Cockburn\"]'),(2123146,3075905,5,'director',NULL,NULL),(2123146,7199643,6,'producer','producer',NULL),(2123146,2094821,7,'producer','producer',NULL),(2123146,566970,8,'composer',NULL,NULL),(2123146,3194940,9,'cinematographer','director of photography',NULL),(2125435,2475118,10,'composer',NULL,NULL),(2125435,4832920,1,'actress',NULL,'[\"Hushpuppy\"]'),(2125435,4833412,2,'actor',NULL,'[\"Wink\"]'),(2125435,3017611,3,'actor',NULL,'[\"Jean Battiste\"]'),(2125435,3017935,4,'actor',NULL,'[\"Walrus\"]'),(2125435,1022455,5,'director',NULL,NULL),(2125435,3599054,6,'writer','screenplay',NULL),(2125435,1886653,7,'producer','producer',NULL),(2125435,1885766,8,'producer','producer',NULL),(2125435,3017255,9,'producer','producer',NULL),(2126355,516908,10,'composer',NULL,NULL),(2126355,425005,1,'actor',NULL,'[\"Raymond Gaines\"]'),(2126355,1303,2,'actress',NULL,'[\"Emma Gaines\"]'),(2126355,1275259,3,'actress',NULL,'[\"Blake Gaines\"]'),(2126355,2686262,4,'actor',NULL,'[\"Joby O\'Leary\"]'),(2126355,679031,5,'director',NULL,NULL),(2126355,193681,6,'writer','screenplay',NULL),(2126355,1061002,7,'writer','story',NULL),(2126355,664920,8,'writer','story',NULL),(2126355,4927,9,'producer','producer',NULL),(2126357,825336,10,'cinematographer','director of photography',NULL),(2126357,182,1,'actress',NULL,'[\"Maya\"]'),(2126357,1227814,2,'actress',NULL,'[\"Zoe\"]'),(2126357,718957,3,'actress',NULL,'[\"Joan\"]'),(2126357,1852,4,'actor',NULL,'[\"Anderson Clarke\"]'),(2126357,781842,5,'director',NULL,NULL),(2126357,951698,6,'writer','written by',NULL),(2126357,326063,7,'writer','written by',NULL),(2126357,575656,8,'producer','producer',NULL),(2126357,28787,9,'composer',NULL,NULL),(21307994,13857303,1,'actor',NULL,'[\"Kevin\"]'),(21307994,13857304,2,'actress',NULL,'[\"Kaylee\"]'),(21307994,10504964,3,'actor',NULL,'[\"Dad\"]'),(21307994,10212813,4,'actress',NULL,'[\"Mom\"]'),(21307994,9689976,5,'director',NULL,NULL),(21307994,2576729,6,'producer','producer',NULL),(21307994,7039173,7,'cinematographer',NULL,NULL),(2131532,432382,10,'composer',NULL,NULL),(2131532,2907,1,'actor',NULL,'[\"Ray\"]'),(2131532,2057859,2,'actress',NULL,'[\"Claire\"]'),(2131532,3014840,3,'actress',NULL,'[\"Zoe\"]'),(2131532,1121232,4,'actor',NULL,'[\"Ted Neary\"]'),(2131532,1819972,5,'director',NULL,NULL),(2131532,1819973,6,'director',NULL,NULL),(2131532,2302134,7,'producer','producer',NULL),(2131532,498175,8,'producer','producer',NULL),(2131532,1259504,9,'producer','producer',NULL),(2132285,718687,10,'composer',NULL,NULL),(2132285,4583512,1,'actress',NULL,'[\"Rebecca\"]'),(2132285,3441152,2,'actor',NULL,'[\"Marc\"]'),(2132285,914612,3,'actress',NULL,'[\"Nicki\"]'),(2132285,4903197,4,'actress',NULL,'[\"Chloe\"]'),(2132285,1068,5,'director',NULL,NULL),(2132285,3653856,6,'writer','based on the Vanity Fair article \"The Suspect Wore Louboutins\" by',NULL),(2132285,178910,7,'producer','producer',NULL),(2132285,1323058,8,'producer','producer',NULL),(2132285,1644827,9,'composer',NULL,NULL),(2132415,4528425,10,'editor',NULL,NULL),(2132415,4806540,1,'actor',NULL,'[\"Colton Pratt\"]'),(2132415,4806160,2,'actress',NULL,'[\"Sarah Taylor\"]'),(2132415,6293442,3,'actor',NULL,'[\"Dallen\"]'),(2132415,4805321,4,'actress',NULL,'[\"Liz\"]'),(2132415,18268,5,'director',NULL,NULL),(2132415,4531196,6,'writer','written by',NULL),(2132415,4531463,7,'producer','producer',NULL),(2132415,4805617,8,'composer',NULL,NULL),(2132415,4806050,9,'cinematographer','director of photography',NULL),(2139843,510458,10,'editor',NULL,NULL),(2139843,3400186,1,'actress',NULL,'[\"Rachel\"]'),(2139843,14582,2,'actor',NULL,'[\"Mr. Will\"]'),(2139843,708,3,'actor',NULL,'[\"Paul\"]'),(2139843,914475,4,'actress',NULL,'[\"Gay Lynn\"]'),(2139843,3275942,5,'director',NULL,NULL),(2139843,4055424,6,'producer','producer',NULL),(2139843,3987974,7,'producer','producer',NULL),(2139843,173433,8,'composer',NULL,NULL),(2139843,1328334,9,'cinematographer',NULL,NULL),(2139881,1461537,10,'producer','producer',NULL),(2139881,234,1,'actress',NULL,'[\"Charlotte Field\"]'),(2139881,736622,2,'actor',NULL,'[\"Fred Flarsky\"]'),(2139881,2053085,3,'actress',NULL,'[\"Maggie Millikin\"]'),(2139881,6578009,4,'actor',NULL,'[\"Lance\"]'),(2139881,1349522,5,'director',NULL,NULL),(2139881,1003839,6,'writer','screenplay by',NULL),(2139881,2176283,7,'writer','screenplay by',NULL),(2139881,228690,8,'producer','producer',NULL),(2139881,1698571,9,'producer','producer',NULL),(2140037,1887564,10,'producer','producer',NULL),(2140037,204,1,'actress',NULL,'[\"Jane Hammond\"]'),(2140037,249291,2,'actor',NULL,'[\"Dan Frost\"]'),(2140037,191,3,'actor',NULL,'[\"John Bishop\"]'),(2140037,763928,4,'actor',NULL,'[\"Fitchum\"]'),(2140037,640334,5,'director',NULL,NULL),(2140037,3929259,6,'writer','screenplay',NULL),(2140037,3294574,7,'writer','screenplay',NULL),(2140037,234806,8,'producer','producer',NULL),(2140037,450193,9,'producer','producer',NULL),(2140203,2699867,10,'composer',NULL,NULL),(2140203,594497,1,'actress',NULL,'[\"Hana\"]'),(2140203,651534,2,'actor',NULL,'[\"Ôkami otoko\"]'),(2140203,4429739,3,'actress',NULL,'[\"Yuki (shôjo-ki)\"]'),(2140203,3945747,4,'actor',NULL,'[\"Ame (shônen-ki)\"]'),(2140203,396074,5,'director',NULL,NULL),(2140203,645766,6,'writer','screenplay',NULL),(2140203,3675414,7,'producer','producer',NULL),(2140203,2510203,8,'producer','producer',NULL),(2140203,3823482,9,'producer','producer',NULL),(2140371,3712568,10,'cinematographer',NULL,NULL),(2140371,9648255,1,'self',NULL,'[\"Self - Advocate High Court\"]'),(2140371,5949208,2,'self',NULL,'[\"Self - Plastic Surgeon\"]'),(2140371,432616,3,'director',NULL,NULL),(2140371,1581464,4,'director','co-director',NULL),(2140371,2420356,5,'producer','producer',NULL),(2140371,4875028,6,'producer','producer',NULL),(2140371,838526,7,'producer','producer',NULL),(2140371,1570443,8,'composer',NULL,NULL),(2140371,4163732,9,'cinematographer',NULL,NULL),(2140373,828130,10,'producer','producer',NULL),(2140373,668,1,'actress',NULL,'[\"P.L. Travers\"]'),(2140373,158,2,'actor',NULL,'[\"Walt Disney\"]'),(2140373,4003520,3,'actress',NULL,'[\"Ginty\"]'),(2140373,268199,4,'actor',NULL,'[\"Travers Goff\"]'),(2140373,359387,5,'director',NULL,NULL),(2140373,545150,6,'writer','written by',NULL),(2140373,810055,7,'writer','written by',NULL),(2140373,1503097,8,'producer','producer',NULL),(2140373,654077,9,'producer','producer',NULL),(2140379,827726,10,'producer','producer',NULL),(2140379,5351,1,'actor',NULL,'[\"Young Damian\"]'),(2140379,2358540,2,'actress',NULL,'[\"Madeline\"]'),(2140379,328828,3,'actor',NULL,'[\"Albright\"]'),(2140379,1426,4,'actor',NULL,'[\"Damian\"]'),(2140379,802248,5,'director',NULL,NULL),(2140379,1883612,6,'writer','written by',NULL),(2140379,665041,7,'writer','written by',NULL),(2140379,74851,8,'producer','producer',NULL),(2140379,772283,9,'producer','producer',NULL),(2140479,568974,10,'cinematographer','director of photography',NULL),(2140479,255,1,'actor',NULL,'[\"Christian Wolff\"]'),(2140479,447695,2,'actress',NULL,'[\"Dana Cummings\"]'),(2140479,799777,3,'actor',NULL,'[\"Ray King\"]'),(2140479,1256532,4,'actor',NULL,'[\"Brax\"]'),(2140479,640334,5,'director',NULL,NULL),(2140479,4057793,6,'writer','written by',NULL),(2140479,1987578,7,'producer','producer',NULL),(2140479,931251,8,'producer','producer',NULL),(2140479,6142,9,'composer',NULL,NULL),(2140577,2347163,10,'editor',NULL,NULL),(2140577,1443740,1,'actress',NULL,'[\"Laurel\",\"Audrey\"]'),(2140577,2159926,2,'actor',NULL,'[\"Basel\"]'),(2140577,515296,3,'actor',NULL,'[\"Charles\"]'),(2140577,2253,4,'actor',NULL,'[\"Frank\"]'),(2140577,2534923,5,'director',NULL,NULL),(2140577,2393709,6,'producer','producer',NULL),(2140577,774908,7,'producer','producer',NULL),(2140577,2341944,8,'composer',NULL,NULL),(2140577,1329360,9,'cinematographer',NULL,NULL),(2140619,4207924,10,'producer','producer',NULL),(2140619,1886602,1,'actor',NULL,'[\"Alec\"]'),(2140619,3006818,2,'actress',NULL,'[\"Megan\"]'),(2140619,1221906,3,'actress',NULL,'[\"Faiza\"]'),(2140619,3264596,4,'actor',NULL,'[\"Cedric\"]'),(2140619,629658,5,'director',NULL,NULL),(2140619,3472302,6,'writer','written by',NULL),(2140619,1583132,7,'producer','producer',NULL),(2140619,281508,8,'producer','producer',NULL),(2140619,4927,9,'producer','producer',NULL),(2141751,115161,1,'actress',NULL,'[\"Eve\"]'),(2141751,2728054,2,'actor',NULL,'[\"James\"]'),(2141751,2356940,3,'actress',NULL,'[\"Cassie\"]'),(2141751,1227027,4,'actor',NULL,'[\"Anton\"]'),(2141751,1060010,5,'director',NULL,NULL),(2141751,578814,6,'producer','producer',NULL),(2141751,638365,7,'cinematographer','director of photography',NULL),(2141751,3284417,8,'editor',NULL,NULL),(2141751,498758,9,'production_designer',NULL,NULL),(2142801,728724,10,'cinematographer',NULL,NULL),(2142801,1920131,1,'actress',NULL,'[\"Eylem\"]'),(2142801,15130,2,'actress',NULL,'[\"Vartanus\"]'),(2142801,1282801,3,'actress',NULL,'[\"Füsun\"]'),(2142801,2682929,4,'actress',NULL,'[\"Goncagül\"]'),(2142801,2946194,5,'director',NULL,NULL),(2142801,685157,6,'writer',NULL,NULL),(2142801,15528,7,'producer','producer',NULL),(2142801,8847729,8,'producer','producer',NULL),(2142801,3003090,9,'composer',NULL,NULL),(2142955,2890502,1,'actress',NULL,'[\"Salla Saraste\"]'),(2142955,626076,2,'actress',NULL,'[\"Tuulikki Saraste\"]'),(2142955,84950,3,'actress',NULL,'[\"Saima\"]'),(2142955,4846905,4,'actress',NULL,'[\"Salla-Mari\"]'),(2142955,134503,5,'director',NULL,NULL),(2142955,746116,6,'producer','producer',NULL),(2142955,3441561,7,'composer',NULL,NULL),(2142955,405501,8,'cinematographer',NULL,NULL),(2142955,1823730,9,'editor',NULL,NULL),(2145829,1033086,10,'producer','producer',NULL),(2145829,1426,1,'actor',NULL,'[\"Robin Smythe\"]'),(2145829,96,2,'actress',NULL,'[\"Kate\"]'),(2145829,2786608,3,'actor',NULL,'[\"Sean Flynn\"]'),(2145829,4457775,4,'actress',NULL,'[\"Alexandra\"]'),(2145829,1229323,5,'director',NULL,NULL),(2145829,4821008,6,'writer','screenplay by',NULL),(2145829,282582,7,'producer','producer',NULL),(2145829,5666501,8,'producer','producer',NULL),(2145829,1983071,9,'producer','producer',NULL),(2147319,879992,10,'composer',NULL,NULL),(2147319,1847329,1,'actress',NULL,'[\"Lilico\"]'),(2147319,1071413,2,'actor',NULL,'[\"Makoto asada\"]'),(2147319,855429,3,'actress',NULL,'[\"Michiko Hada\"]'),(2147319,1687017,4,'actor',NULL,'[\"Shin Okumura\"]'),(2147319,2242451,5,'director',NULL,NULL),(2147319,4822259,6,'writer','manga',NULL),(2147319,1939516,7,'writer','screenplay',NULL),(2147319,1780075,8,'producer','producer',NULL),(2147319,2523577,9,'producer','producer',NULL),(2147550,154243,10,'cinematographer',NULL,NULL),(2147550,617852,1,'actor',NULL,'[\"Markus\"]'),(2147550,3002243,2,'actress',NULL,'[\"Kim\"]'),(2147550,774883,3,'actress',NULL,'[\"Gerlinde\"]'),(2147550,1035643,4,'actor',NULL,'[\"Alex\"]'),(2147550,1839743,5,'director',NULL,NULL),(2147550,3036348,6,'writer','screenplay',NULL),(2147550,248552,7,'producer','producer',NULL),(2147550,1477652,8,'composer',NULL,NULL),(2147550,434763,9,'composer',NULL,NULL),(2147728,1099918,10,'cinematographer',NULL,NULL),(2147728,5047164,1,'actress',NULL,'[\"Taryn\"]'),(2147728,2193120,2,'actress',NULL,'[\"Abby\"]'),(2147728,5047355,3,'actor',NULL,'[\"Bill\"]'),(2147728,5047691,4,'actress',NULL,'[\"Kim\"]'),(2147728,2275041,5,'director',NULL,NULL),(2147728,5047017,6,'writer','screenplay',NULL),(2147728,2495409,7,'producer','producer',NULL),(2147728,2766247,8,'producer','producer',NULL),(2147728,2274219,9,'producer','producer',NULL),(2150139,2308166,1,'actress',NULL,'[\"Kate Jones\"]'),(2150139,1270429,2,'actor',NULL,'[\"Shane Fuller\"]'),(2150139,4825006,3,'actress',NULL,'[\"Maddy Cornell\"]'),(2150139,3577215,4,'actress',NULL,'[\"Sally Peterson\"]'),(2150139,4825581,5,'director',NULL,NULL),(2150139,2870049,6,'producer','producer',NULL),(2150139,2776151,7,'composer',NULL,NULL),(2150139,293903,8,'cinematographer','director of photography',NULL),(2150139,1825525,9,'editor',NULL,NULL),(2150332,592945,10,'producer','producer',NULL),(2150332,99677,1,'actor',NULL,'[\"Pierre-Auguste Renoir\"]'),(2150332,1817887,2,'actress',NULL,'[\"Andrée Heuschling\"]'),(2150332,1196219,3,'actor',NULL,'[\"Jean Renoir\"]'),(2150332,4461361,4,'actor',NULL,'[\"Coco Renoir\"]'),(2150332,99841,5,'director',NULL,NULL),(2150332,719357,6,'writer','based on work \'\'Le tableau amoureux\' by',NULL),(2150332,867374,7,'writer','screenplay',NULL),(2150332,818996,8,'writer','screenplay collaboration',NULL),(2150332,216635,9,'producer','producer',NULL),(2151543,3387157,10,'composer',NULL,NULL),(2151543,2117096,1,'actress',NULL,'[\"Annabel\"]'),(2151543,2505507,2,'actor',NULL,'[\"Major Crandle\"]'),(2151543,95326,3,'actor',NULL,'[\"Clerk\"]'),(2151543,411,4,'actor',NULL,'[\"Charlie\"]'),(2151543,975225,5,'director',NULL,NULL),(2151543,286790,6,'writer','story',NULL),(2151543,83590,7,'writer','screenplay',NULL),(2151543,46168,8,'producer','executive producer',NULL),(2151543,2786983,9,'producer','executive producer',NULL),(2153963,1703853,1,'actor',NULL,'[\"Intrépido Explorador\"]'),(2153963,326937,2,'actor',NULL,'[\"Narrador\"]'),(2153963,5486569,3,'actor',NULL,'[\"Carregador\"]'),(2153963,5486597,4,'actor',NULL,'[\"Carregador\"]'),(2153963,723114,5,'writer',NULL,NULL),(2153963,13611,6,'producer','producer',NULL),(2153963,2245654,7,'producer','producer',NULL),(2153963,694874,8,'cinematographer',NULL,NULL),(2153963,2993666,9,'production_designer',NULL,NULL),(2161519,762186,1,'self',NULL,'[\"Self\"]'),(2161519,5690,2,'director',NULL,NULL),(2161519,374658,3,'cinematographer',NULL,NULL),(2161521,762186,1,'self',NULL,'[\"Self\"]'),(2161521,5690,2,'director',NULL,NULL),(2161521,374658,3,'cinematographer',NULL,NULL),(2165859,1065667,10,'cinematographer',NULL,NULL),(2165859,207691,1,'actor',NULL,'[\"Tom\"]'),(2165859,2129444,2,'actress',NULL,'[\"Lucy\"]'),(2165859,1395602,3,'actor',NULL,'[\"Max\"]'),(2165859,522634,4,'director',NULL,NULL),(2165859,1638619,5,'writer','story consultant',NULL),(2165859,1143970,6,'producer','producer',NULL),(2165859,661912,7,'producer','producer',NULL),(2165859,1207404,8,'composer',NULL,NULL),(2165859,5450549,9,'composer',NULL,NULL),(2166616,122511,1,'actor',NULL,'[\"Officer Duke\"]'),(2166616,431956,2,'actor',NULL,'[\"Officer Rough\"]'),(2166616,115671,3,'actress',NULL,'[\"Julia Kieffer\"]'),(2166616,298281,4,'actor',NULL,'[\"Music Producer\"]'),(2166616,1189197,5,'director',NULL,NULL),(2166616,2274436,6,'producer','producer',NULL),(2166616,3864634,7,'producer','producer',NULL),(2166616,1062552,8,'producer','producer',NULL),(2166616,4458207,9,'production_designer',NULL,NULL),(2167266,5096683,10,'composer',NULL,NULL),(2167266,1985859,1,'actress',NULL,'[\"Robyn\"]'),(2167266,3485845,2,'actor',NULL,'[\"Rick\"]'),(2167266,5659346,3,'actress',NULL,'[\"Young Robyn\"]'),(2167266,230109,4,'actor',NULL,'[\"Publican\"]'),(2167266,192845,5,'director',NULL,NULL),(2167266,5327453,6,'writer','screenplay',NULL),(2167266,203475,7,'writer','book',NULL),(2167266,2096617,8,'producer','producer',NULL),(2167266,792431,9,'producer','producer',NULL),(2168910,1338587,10,'composer',NULL,NULL),(2168910,451307,1,'actor',NULL,'[\"Gautam Kapoor\"]'),(2168910,2138653,2,'actress',NULL,'[\"Veronica Malaney\"]'),(2168910,5069465,3,'actress',NULL,'[\"Meera Sahni\"]'),(2168910,438092,4,'actress',NULL,'[\"Kavita Kapoor\"]'),(2168910,1223294,5,'director',NULL,NULL),(2168910,1665004,6,'writer',NULL,NULL),(2168910,5068934,7,'writer',NULL,NULL),(2168910,3800133,8,'producer','producer',NULL),(2168910,1803649,9,'producer','producer',NULL),(2169322,354008,10,'production_designer',NULL,NULL),(2169322,2325018,1,'actress',NULL,'[\"JiaJia\"]'),(2169322,5071399,2,'actor',NULL,'[\"Frank\"]'),(2169322,3713819,3,'actress',NULL,'[\"Joe\"]'),(2169322,5071064,4,'actress',NULL,'[\"Moon\"]'),(2169322,1249411,5,'director',NULL,NULL),(2169322,849315,6,'producer','producer',NULL),(2169322,436348,7,'composer',NULL,NULL),(2169322,150832,8,'cinematographer','director of photography',NULL),(2169322,156496,9,'editor',NULL,NULL),(2170299,1092952,10,'cinematographer',NULL,NULL),(2170299,867,1,'actor',NULL,'[\"Guy Trilby\"]'),(2170299,1063517,2,'actress',NULL,'[\"Jenny Widgeon\"]'),(2170299,5049,3,'actress',NULL,'[\"Dr. Bernice Deagan\"]'),(2170299,4575116,4,'actor',NULL,'[\"Chaitanya Chopra\"]'),(2170299,3775019,5,'writer','written by',NULL),(2170299,2261214,6,'producer','producer',NULL),(2170299,572014,7,'producer','producer',NULL),(2170299,1259504,8,'producer','producer',NULL),(2170299,448843,9,'composer',NULL,NULL),(2170439,70454,10,'producer','producer',NULL),(2170439,867,1,'actor',NULL,'[\"Nick Hendricks\"]'),(2170439,837177,2,'actor',NULL,'[\"Kurt Buckman\"]'),(2170439,206359,3,'actor',NULL,'[\"Dale Arbus\"]'),(2170439,98,4,'actress',NULL,'[\"Dr. Julia Harris, D.D.S.\"]'),(2170439,1890845,5,'director',NULL,NULL),(2170439,1898234,6,'writer','screenplay by',NULL),(2170439,326246,7,'writer','story',NULL),(2170439,197855,8,'writer','story by',NULL),(2170439,2864,9,'writer','characters',NULL),(2170593,511979,10,'cinematographer',NULL,NULL),(2170593,195,1,'actor',NULL,'[\"Vincent\"]'),(2170593,565250,2,'actress',NULL,'[\"Maggie\"]'),(2170593,915208,3,'actress',NULL,'[\"Daka\"]'),(2170593,5897057,4,'actor',NULL,'[\"Oliver\"]'),(2170593,577647,5,'director',NULL,NULL),(2170593,1858656,6,'producer','producer',NULL),(2170593,740407,7,'producer','producer',NULL),(2170593,867768,8,'producer','producer',NULL),(2170593,788640,9,'composer',NULL,NULL),(2172584,6290,10,'composer',NULL,NULL),(2172584,194,1,'actress',NULL,'[\"Havana Segrand\"]'),(2172584,1985859,2,'actress',NULL,'[\"Agatha Weiss\"]'),(2172584,1500155,3,'actor',NULL,'[\"Jerome Fontana\"]'),(2172584,131,4,'actor',NULL,'[\"Dr. Stafford Weiss\"]'),(2172584,343,5,'director',NULL,NULL),(2172584,905818,6,'writer','screenplay',NULL),(2172584,69963,7,'producer','producer',NULL),(2172584,441792,8,'producer','producer',NULL),(2172584,4752699,9,'producer','producer',NULL),(2172934,1190889,10,'composer',NULL,NULL),(2172934,126,1,'actor',NULL,'[\"Ethan Renner\"]'),(2172934,2794962,2,'actress',NULL,'[\"Zooey Renner\"]'),(2172934,1567,3,'actress',NULL,'[\"Christine Renner\"]'),(2172934,1720028,4,'actress',NULL,'[\"Vivi Delay\"]'),(2172934,629334,5,'director',NULL,NULL),(2172934,367867,6,'writer','screenplay',NULL),(2172934,108,7,'writer','screenplay',NULL),(2172934,1448916,8,'producer','producer',NULL),(2172934,1899067,9,'producer','producer',NULL),(2175927,3309673,10,'production_designer',NULL,NULL),(2175927,5522,1,'actor',NULL,'[\"Captain James Winston\"]'),(2175927,1835,2,'actor',NULL,'[\"General Hugh McKraken\"]'),(2175927,1262249,3,'actress',NULL,'[\"Lt. Caroline Bradley\"]'),(2175927,1977084,4,'actress',NULL,'[\"Dr. Julia Flynn\"]'),(2175927,505736,5,'director',NULL,NULL),(2175927,490375,6,'producer','producer',NULL),(2175927,725808,7,'composer',NULL,NULL),(2175927,107646,8,'cinematographer',NULL,NULL),(2175927,35784,9,'editor',NULL,NULL),(2177683,5432696,10,'actor',NULL,'[\"Rob\"]'),(2177683,1417935,1,'actress',NULL,'[\"Beth\",\"Beth Connonlly\"]'),(2177683,2922563,2,'actor',NULL,'[\"Matt\",\"Matt Moorland\"]'),(2177683,5432951,3,'actress',NULL,'[\"Moneka Kawai\",\"Monika Kawai\"]'),(2177683,4124746,4,'actress',NULL,'[\"Lilli Jay\"]'),(2177683,1017424,5,'actress',NULL,'[\"Beth\'s Mum\"]'),(2177683,2277884,6,'actress',NULL,'[\"School receptionist\"]'),(2177683,12243490,7,'actress',NULL,'[\"Party guest\"]'),(2177683,3289412,8,'actress',NULL,'[\"Petra Taplin\"]'),(2177683,2909214,9,'actor',NULL,'[\"James Jay\"]'),(2177771,592537,10,'editor',NULL,NULL),(2177771,123,1,'actor',NULL,'[\"Frank Stokes\"]'),(2177771,354,2,'actor',NULL,'[\"James Granger\"]'),(2177771,195,3,'actor',NULL,'[\"Richard Campbell\"]'),(2177771,949,4,'actress',NULL,'[\"Claire Simone\"]'),(2177771,381416,5,'writer','screenplay',NULL),(2177771,2603459,6,'writer','book',NULL),(2177771,4007817,7,'writer','book',NULL),(2177771,6035,8,'composer',NULL,NULL),(2177771,3659,9,'cinematographer','director of photography',NULL),(2178470,1338587,10,'composer',NULL,NULL),(2178470,1633541,1,'actor',NULL,'[\"Kabir Thapar (Bunny)\"]'),(2178470,2138653,2,'actress',NULL,'[\"Naina Talwar\"]'),(2178470,3169069,3,'actor',NULL,'[\"Avinash (Avi)\"]'),(2178470,3202701,4,'actress',NULL,'[\"Aditi\"]'),(2178470,2209781,5,'director',NULL,NULL),(2178470,4990507,6,'writer','dialogue',NULL),(2178470,424101,7,'producer','producer',NULL),(2178470,424103,8,'producer','producer',NULL),(2178470,14192924,9,'producer','producer',NULL),(2178941,127009,10,'editor',NULL,NULL),(2178941,396125,1,'actress',NULL,'[\"Barbara\"]'),(2178941,1665537,2,'actor',NULL,'[\"André\"]'),(2178941,90674,3,'actor',NULL,'[\"Klaus Schütz\"]'),(2178941,2322467,4,'actress',NULL,'[\"Assistenzärztin Schulze\"]'),(2178941,678857,5,'director',NULL,NULL),(2178941,267943,6,'writer','collaborator on screenplay',NULL),(2178941,462926,7,'producer','producer',NULL),(2178941,929571,8,'composer',NULL,NULL),(2178941,296362,9,'cinematographer',NULL,NULL),(2179116,1792454,10,'composer',NULL,NULL),(2179116,3538718,1,'actor',NULL,'[\"Joe\"]'),(2179116,2773059,2,'actor',NULL,'[\"Patrick\"]'),(2179116,2030779,3,'actor',NULL,'[\"Biaggio\"]'),(2179116,644406,4,'actor',NULL,'[\"Frank\"]'),(2179116,3611349,5,'director',NULL,NULL),(2179116,3658138,6,'writer','written by',NULL),(2179116,1021351,7,'producer','producer',NULL),(2179116,3771587,8,'producer','producer',NULL),(2179116,764771,9,'producer','producer',NULL),(2179121,881104,10,'cinematographer',NULL,NULL),(2179121,115730,1,'actor',NULL,'[\"Vincent\"]'),(2179121,71116,2,'actress',NULL,'[\"Elisabeth\"]'),(2179121,75650,3,'actor',NULL,'[\"Pierre\"]'),(2179121,211956,4,'actor',NULL,'[\"Claude\"]'),(2179121,478799,5,'director',NULL,NULL),(2179121,1141181,6,'director',NULL,NULL),(2179121,2185250,7,'producer','producer',NULL),(2179121,1482301,8,'producer','producer',NULL),(2179121,714367,9,'composer',NULL,NULL),(2179136,493662,10,'producer','producer',NULL),(2179136,177896,1,'actor',NULL,'[\"Chris Kyle\"]'),(2179136,1092227,2,'actress',NULL,'[\"Taya\"]'),(2179136,973177,3,'actor',NULL,'[\"Goat-Winston\"]'),(2179136,6518675,4,'actor',NULL,'[\"Young Chris Kyle\"]'),(2179136,142,5,'director',NULL,NULL),(2179136,355699,6,'writer','written by',NULL),(2179136,4881574,7,'writer','book',NULL),(2179136,6984200,8,'writer','book',NULL),(2179136,7198520,9,'writer','book',NULL),(2180411,686887,10,'producer','producer',NULL),(2180411,447695,1,'actress',NULL,'[\"Cinderella\"]'),(2180411,658,2,'actress',NULL,'[\"Witch\"]'),(2180411,1517976,3,'actor',NULL,'[\"Cinderella\'s Prince\"]'),(2180411,1289434,4,'actress',NULL,'[\"Baker\'s Wife\"]'),(2180411,551128,5,'director',NULL,NULL),(2180411,487567,6,'writer','screenplay by',NULL),(2180411,814227,7,'writer','based on the musical by',NULL),(2180411,217896,8,'producer','producer',NULL),(2180411,568223,9,'producer','producer',NULL),(2181931,3032664,10,'composer',NULL,NULL),(2181931,4437,1,'actress',NULL,'[\"Shashi Godbole\"]'),(2181931,1300009,2,'actor',NULL,'[\"Satish Godbole\"]'),(2181931,623854,3,'actor',NULL,'[\"Laurent\"]'),(2181931,3591550,4,'actress',NULL,'[\"Radha\"]'),(2181931,1903006,5,'director',NULL,NULL),(2181931,2669564,6,'producer','producer',NULL),(2181931,5439103,7,'producer','producer',NULL),(2181931,5439073,8,'producer','producer',NULL),(2181931,2602251,9,'producer','producer',NULL),(2183034,1131817,10,'cinematographer',NULL,NULL),(2183034,5128387,1,'actor',NULL,'[\"Alex\"]'),(2183034,4702342,2,'actor',NULL,'[\"Tuck\"]'),(2183034,3419119,3,'actor',NULL,'[\"Munch\"]'),(2183034,4125403,4,'actress',NULL,'[\"Emma\"]'),(2183034,1757777,5,'director',NULL,NULL),(2183034,2849655,6,'writer','screenplay by',NULL),(2183034,659123,7,'writer','story by',NULL),(2183034,1448916,8,'producer','producer',NULL),(2183034,2468967,9,'composer',NULL,NULL),(2184339,1085924,10,'producer','producer',NULL),(2184339,160,1,'actor',NULL,'[\"James Sandin\"]'),(2184339,372176,2,'actress',NULL,'[\"Mary Sandin\"]'),(2184339,1370269,3,'actor',NULL,'[\"Charlie Sandin\"]'),(2184339,2560043,4,'actress',NULL,'[\"Zoey Sandin\"]'),(2184339,218621,5,'director',NULL,NULL),(2184339,881,6,'producer','producer',NULL),(2184339,89658,7,'producer','producer',NULL),(2184339,286320,8,'producer','producer',NULL),(2184339,298181,9,'producer','producer',NULL),(21848598,11516255,1,'actress',NULL,'[\"Ego Maddy\"]'),(21848598,11259677,2,'actress',NULL,'[\"Maddy\"]'),(21848598,13817447,3,'director',NULL,NULL),(21848598,13381717,4,'writer',NULL,NULL),(21848598,7276328,5,'producer','producer',NULL),(21848598,12529782,6,'cinematographer',NULL,NULL),(21848598,9612607,7,'production_designer',NULL,NULL),(2185503,1785967,10,'producer','producer',NULL),(2185503,162198,1,'actor',NULL,'[\"Ali\"]'),(2185503,649301,2,'actress',NULL,'[\"Pinar\"]'),(2185503,3099844,3,'actress',NULL,'[\"Nuray\"]'),(2185503,4887438,4,'actress',NULL,'[\"Aysun\"]'),(2185503,1589704,5,'director',NULL,NULL),(2185503,487582,6,'writer','screenplay',NULL),(2185503,212297,7,'producer','producer',NULL),(2185503,677578,8,'producer','producer',NULL),(2185503,3117965,9,'producer','producer',NULL),(2187115,4631694,10,'production_designer',NULL,NULL),(2187115,315640,1,'actress',NULL,'[\"Cornelia Keneres\"]'),(2187115,1896035,2,'actor',NULL,'[\"Barbu\"]'),(2187115,704630,3,'actress',NULL,'[\"Olga Cerchez\"]'),(2187115,324763,4,'actress',NULL,'[\"Carmen\"]'),(2187115,626754,5,'director',NULL,NULL),(2187115,1146102,6,'writer','screenplay',NULL),(2187115,1127536,7,'producer','producer',NULL),(2187115,1108647,8,'cinematographer',NULL,NULL),(2187115,1274442,9,'editor',NULL,NULL),(2188560,793404,10,'actor',NULL,'[\"Det. Kyoichiro Kazamatsuri\"]'),(2188560,1123941,1,'actor',NULL,'[\"Kageyama\"]'),(2188560,1487136,2,'actress',NULL,'[\"Reiko Hosho\"]'),(2188560,2867865,3,'actor',NULL,'[\"Namiki Seiichi\"]'),(2188560,1933697,4,'actor',NULL,'[\"Yamashige Satoru\"]'),(2188560,1778465,5,'director',NULL,NULL),(2188560,4646236,6,'writer','based on the novel by',NULL),(2188560,2499386,7,'composer',NULL,NULL),(2188560,2873397,8,'actress',NULL,'[\"Munemori Azumi\"]'),(2188560,3456897,9,'actress',NULL,'[\"Ejiri Yuka\"]'),(2189240,2368981,10,'actress',NULL,'[\"Irina\"]'),(2189240,1335291,1,'actress',NULL,'[\"Chloe Jocelyn\"]'),(2189240,3073428,2,'actor',NULL,'[\"Konrad\"]'),(2189240,348748,3,'actor',NULL,'[\"Rabbit Rosen\"]'),(2189240,2861303,4,'actor',NULL,'[\"Frank Parker\"]'),(2189240,958499,5,'writer','creator',NULL),(2189240,553648,6,'actor',NULL,'[\"Gustov Dobreff\"]'),(2189240,931845,7,'actress',NULL,'[\"Donna Berg\"]'),(2189240,810500,8,'actress',NULL,'[\"Amanda Jocelyn\"]'),(2189240,445681,9,'actor',NULL,'[\"Jim McCluskey\"]'),(2190367,1647268,10,'editor',NULL,NULL),(2190367,5836719,1,'actress',NULL,'[\"Ana Lúcia\"]'),(2190367,5836720,2,'actor',NULL,'[\"Namorado\"]'),(2190367,2701325,3,'actress',NULL,'[\"Bia\"]'),(2190367,5395541,4,'actor',NULL,'[\"Marido\"]'),(2190367,2207625,5,'director',NULL,NULL),(2190367,2201794,6,'producer','producer',NULL),(2190367,231222,7,'composer','score composer',NULL),(2190367,3087076,8,'cinematographer','director of photography',NULL),(2190367,846301,9,'cinematographer','co-cinematographer',NULL),(2190475,853683,10,'producer','producer',NULL),(2190475,2859853,1,'actor',NULL,'[\"Monk\"]'),(2190475,1002207,2,'actor',NULL,'[\"Woodcutter\"]'),(2190475,1033529,3,'actor',NULL,'[\"Undertaker\"]'),(2190475,263594,4,'actor',NULL,'[\"Warlord\"]'),(2190475,4154470,5,'director',NULL,NULL),(2190475,41,6,'writer','based on screenplay by',NULL),(2190475,368074,7,'writer','based on screenplay by',NULL),(2190475,15611,8,'writer','based on stories by',NULL),(2190475,695197,9,'writer','based on play by',NULL),(2191671,1017951,10,'actor',NULL,'[\"Alfredo Llamosa\"]'),(2191671,1538,1,'actor',NULL,'[\"Sherlock Holmes\"]'),(2191671,5154,2,'actress',NULL,'[\"Dr. Joan Watson\",\"Joan Watson\"]'),(2191671,1644,3,'actor',NULL,'[\"Captain Thomas Gregson\"]'),(2191671,3586347,4,'actor',NULL,'[\"Detective Marcus Bell\"]'),(2191671,1201266,5,'writer','created by',NULL),(2191671,312217,6,'actor',NULL,'[\"Dr. Eugene Hawes\"]'),(2191671,633604,7,'actor',NULL,'[\"Mr. Morland Holmes\",\"Morland Holmes\"]'),(2191671,1166041,8,'actress',NULL,'[\"Kitty Winter\"]'),(2191671,1734700,9,'actor',NULL,'[\"Shinwell Johnson\"]'),(2191701,5856,10,'cinematographer',NULL,NULL),(2191701,1191,1,'actor',NULL,'[\"Lenny Feder\"]'),(2191701,416673,2,'actor',NULL,'[\"Eric Lamonsoff\"]'),(2191701,1674,3,'actor',NULL,'[\"Kurt McKenzie\"]'),(2191701,5450,4,'actor',NULL,'[\"Marcus Higgins\"]'),(2191701,240797,5,'director',NULL,NULL),(2191701,937748,6,'writer','written by',NULL),(2191701,379056,7,'writer','written by',NULL),(2191701,316406,8,'producer','producer',NULL),(2191701,340003,9,'composer',NULL,NULL),(2193185,2099785,10,'editor',NULL,NULL),(2193185,574460,1,'actor',NULL,'[\"Shaun Knox\"]'),(2193185,1289484,2,'actress',NULL,'[\"Dr. Lyndsay Bryce\"]'),(2193185,429129,3,'actor',NULL,'[\"Danny\"]'),(2193185,3680694,4,'actor',NULL,'[\"Charlie\"]'),(2193185,70474,5,'director',NULL,NULL),(2193185,1098479,6,'writer','written by',NULL),(2193185,2785549,7,'composer',NULL,NULL),(2193185,3087740,8,'composer',NULL,NULL),(2193185,2323,9,'cinematographer','director of photography',NULL),(2193215,1207404,10,'composer',NULL,NULL),(2193215,1055413,1,'actor',NULL,'[\"Counselor\"]'),(2193215,4851,2,'actress',NULL,'[\"Laura\"]'),(2193215,139,3,'actress',NULL,'[\"Malkina\"]'),(2193215,849,4,'actor',NULL,'[\"Reiner\"]'),(2193215,631,5,'director',NULL,NULL),(2193215,565092,6,'writer','written by',NULL),(2193215,2445382,7,'producer','producer',NULL),(2193215,777455,8,'producer','producer',NULL),(2193215,917059,9,'producer','producer',NULL),(2193418,670475,10,'cinematographer',NULL,NULL),(2193418,3404934,1,'actor',NULL,'[\"Steinar\"]'),(2193418,5093301,2,'actress',NULL,'[\"Agnes\"]'),(2193418,1641140,3,'actor',NULL,'[\"Hagen\"]'),(2193418,181920,4,'actor',NULL,'[\"King Bagsecg\"]'),(2193418,1879225,5,'director',NULL,NULL),(2193418,713852,6,'writer','writer',NULL),(2193418,696486,7,'producer','producer',NULL),(2193418,3982701,8,'producer','producer',NULL),(2193418,1818744,9,'composer',NULL,NULL),(2194499,1458741,10,'cinematographer','director of photography',NULL),(2194499,1727304,1,'actor',NULL,'[\"Tim\"]'),(2194499,1046097,2,'actress',NULL,'[\"Mary\"]'),(2194499,631490,3,'actor',NULL,'[\"Dad\"]'),(2194499,3575723,4,'actress',NULL,'[\"Kit Kat\"]'),(2194499,193485,5,'director',NULL,NULL),(2194499,55717,6,'producer','producer',NULL),(2194499,79677,7,'producer','producer',NULL),(2194499,271479,8,'producer','producer',NULL),(2194499,481996,9,'composer',NULL,NULL),(2195548,957505,10,'producer','producer',NULL),(2195548,748620,1,'actor',NULL,'[\"Alvin\"]'),(2195548,386472,2,'actor',NULL,'[\"Lance\"]'),(2195548,499223,3,'actor',NULL,'[\"Truck Driver\"]'),(2195548,5370274,4,'actress',NULL,'[\"Lady\"]'),(2195548,337773,5,'director',NULL,NULL),(2195548,2619779,6,'writer','based on the film \"Either Way\" by',NULL),(2195548,2699875,7,'producer','producer',NULL),(2195548,615770,8,'producer','producer',NULL),(2195548,874913,9,'producer','producer',NULL),(2199436,1117334,10,'cinematographer',NULL,NULL),(2199436,87807,1,'actor',NULL,'[\"Mitio\"]'),(2199436,3437226,2,'actor',NULL,'[\"Vasko\"]'),(2199436,4622194,3,'actress',NULL,'[\"Maria\"]'),(2199436,543547,4,'actor',NULL,'[\"The Captain\"]'),(2199436,464526,5,'director',NULL,NULL),(2199436,199001,6,'writer','co-writer',NULL),(2199436,3937887,7,'writer','co-writer',NULL),(2199436,3876762,8,'producer','producer',NULL),(2199436,883769,9,'composer',NULL,NULL),(21994906,1519392,10,'editor',NULL,NULL),(21994906,2633535,1,'actor',NULL,'[\"James\"]'),(21994906,8230647,2,'actress',NULL,'[\"Hayley\"]'),(21994906,990547,3,'actor',NULL,'[\"Geoff\"]'),(21994906,341110,4,'actress',NULL,'[\"Kath\"]'),(21994906,1317262,5,'director',NULL,NULL),(21994906,2758295,6,'writer','written & created by',NULL),(21994906,11517792,7,'producer','producer',NULL),(21994906,3987156,8,'composer',NULL,NULL),(21994906,835371,9,'cinematographer',NULL,NULL),(2199543,2890617,10,'composer',NULL,NULL),(2199543,609944,1,'actor',NULL,'[\"Donato\"]'),(2199543,771332,2,'actor',NULL,'[\"Konrad\"]'),(2199543,6203017,3,'actor',NULL,'[\"Heiko\"]'),(2199543,6203018,4,'actor',NULL,'[\"Jefferson\"]'),(2199543,14694,5,'director',NULL,NULL),(2199543,2369858,6,'writer','writer',NULL),(2199543,1824290,7,'writer','contributing writer',NULL),(2199543,995444,8,'producer','producer',NULL),(2199543,505810,9,'producer','producer',NULL),(2199571,432725,10,'composer',NULL,NULL),(2199571,553,1,'actor',NULL,'[\"Jimmy Conlon\"]'),(2199571,438,2,'actor',NULL,'[\"Shawn Maguire\"]'),(2199571,1172478,3,'actor',NULL,'[\"Mike Conlon\"]'),(2199571,352,4,'actor',NULL,'[\"Detective John Harding\"]'),(2199571,1429471,5,'director',NULL,NULL),(2199571,2145487,6,'writer','written by',NULL),(2199571,498175,7,'producer','producer',NULL),(2199571,846333,8,'producer','producer',NULL),(2199571,915819,9,'producer','producer',NULL),(2201221,136133,10,'composer',NULL,NULL),(2201221,111013,1,'actor',NULL,'[\"The Man\"]'),(2201221,68338,2,'actress',NULL,'[\"Bobbi\"]'),(2201221,1443740,3,'actress',NULL,'[\"Reggie\"]'),(2201221,535502,4,'actress',NULL,'[\"Tyler\"]'),(2201221,902939,5,'director',NULL,NULL),(2201221,1438,6,'writer','screenplay by',NULL),(2201221,3374655,7,'producer','producer',NULL),(2201221,1215482,8,'producer','producer',NULL),(2201221,1636466,9,'producer','producer',NULL),(2201251,214874,10,'editor',NULL,NULL),(2201251,222,1,'actress',NULL,'[\"Beth Humphrey\"]'),(2201251,843100,2,'actress',NULL,'[\"Florine Clarkston\"]'),(2201251,435,3,'actress',NULL,'[\"Ginger Peabody\"]'),(2201251,5179,4,'actress',NULL,'[\"Roxie Rosales\"]'),(2201251,782384,5,'director',NULL,NULL),(2201251,1380270,6,'writer','written by',NULL),(2201251,376562,7,'producer','producer',NULL),(2201251,953616,8,'composer',NULL,NULL),(2201251,1054979,9,'cinematographer',NULL,NULL),(2201548,3980996,10,'production_designer',NULL,NULL),(2201548,2698115,1,'actress',NULL,'[\"Diana Watts\"]'),(2201548,4311291,2,'actor',NULL,'[\"Eric Tull\"]'),(2201548,1989927,3,'actress',NULL,'[\"Sophia\"]'),(2201548,4287920,4,'actress',NULL,'[\"Jessica\"]'),(2201548,4227232,5,'director',NULL,NULL),(2201548,2980861,6,'producer','producer',NULL),(2201548,4590024,7,'composer',NULL,NULL),(2201548,3902730,8,'cinematographer',NULL,NULL),(2201548,3629058,9,'editor',NULL,NULL),(2202750,3266672,10,'production_designer',NULL,NULL),(2202750,2609288,1,'actor',NULL,'[\"Oliver Richmond\"]'),(2202750,2436,2,'actress',NULL,'[\"Jessica Richmond\"]'),(2202750,112043,3,'actor',NULL,'[\"Jeff Richmond\"]'),(2202750,3441130,4,'actor',NULL,'[\"Ben\"]'),(2202750,782457,5,'director',NULL,NULL),(2202750,490375,6,'producer','producer',NULL),(2202750,725808,7,'composer',NULL,NULL),(2202750,2244594,8,'cinematographer',NULL,NULL),(2202750,3973341,9,'editor',NULL,NULL),(2202928,1068404,10,'editor',NULL,NULL),(2202928,1726,1,'actress',NULL,'[\"Pearl\"]'),(2202928,588364,2,'actress',NULL,'[\"Fawn\"]'),(2202928,817780,3,'actress',NULL,'[\"Aki\"]'),(2202928,719705,4,'actress',NULL,'[\"Harper\"]'),(2202928,711838,5,'director',NULL,NULL),(2202928,3232321,6,'producer','producer',NULL),(2202928,2063773,7,'producer','producer',NULL),(2202928,14697,8,'composer',NULL,NULL),(2202928,528741,9,'cinematographer',NULL,NULL),(2203939,1467567,10,'editor',NULL,NULL),(2203939,139,1,'actress',NULL,'[\"Carly Whitten\"]'),(2203939,5182,2,'actress',NULL,'[\"Kate King\"]'),(2203939,4478322,3,'actress',NULL,'[\"Amber\"]'),(2203939,182666,4,'actor',NULL,'[\"Mark King\"]'),(2203939,1024,5,'director',NULL,NULL),(2203939,2602433,6,'writer','written by',NULL),(2203939,798930,7,'producer','producer',NULL),(2203939,956374,8,'composer',NULL,NULL),(2203939,5709,9,'cinematographer',NULL,NULL),(2204379,385820,10,'production_designer',NULL,NULL),(2204379,1218,1,'actor',NULL,'[\"John\"]'),(2204379,263759,2,'actress',NULL,'[\"Ms. Kathleen Merrywood\"]'),(2204379,2057726,3,'actress',NULL,'[\"Tamara\"]'),(2204379,954023,4,'actor',NULL,'[\"Lucifer\"]'),(2204379,1135423,5,'director',NULL,NULL),(2204379,3390000,6,'producer','producer',NULL),(2204379,2283738,7,'composer',NULL,NULL),(2204379,1600160,8,'cinematographer',NULL,NULL),(2204379,213795,9,'editor',NULL,NULL),(2205697,650615,10,'cinematographer',NULL,NULL),(2205697,1427,1,'actor',NULL,'[\"Bill Borgens\"]'),(2205697,124,2,'actress',NULL,'[\"Erica\"]'),(2205697,2934314,3,'actress',NULL,'[\"Samantha Borgens\"]'),(2205697,1822659,4,'actor',NULL,'[\"Rusty Borgens\"]'),(2205697,1837748,5,'director',NULL,NULL),(2205697,84598,6,'writer','creative development',NULL),(2205697,3437,7,'producer','producer',NULL),(2205697,2059333,8,'composer',NULL,NULL),(2205697,2868383,9,'composer',NULL,NULL),(2207050,488625,10,'cinematographer',NULL,NULL),(2207050,524528,1,'actor',NULL,'[\"Serge Tanneur\"]'),(2207050,933727,2,'actor',NULL,'[\"Gauthier Valence\"]'),(2207050,763022,3,'actress',NULL,'[\"Francesca\"]'),(2207050,418470,4,'actress',NULL,'[\"Christine\"]'),(2207050,494355,5,'director',NULL,NULL),(2207050,141127,6,'writer','collaboration',NULL),(2207050,596942,7,'writer','characters',NULL),(2207050,7014,8,'producer','producer',NULL),(2207050,5948,9,'composer',NULL,NULL),(2208216,271882,10,'editor',NULL,NULL),(2208216,1815886,1,'actor',NULL,'[\"Lukas\",\"neuroscientist\"]'),(2208216,2284891,2,'actress',NULL,'[\"Aurora\",\"woman in coma\"]'),(2208216,5104879,3,'actor',NULL,'[\"Jonas\",\"psychologist\"]'),(2208216,4482485,4,'actor',NULL,'[\"Mantas\"]'),(2208216,3043504,5,'director',NULL,NULL),(2208216,3042028,6,'writer',NULL,NULL),(2208216,3043830,7,'producer','producer',NULL),(2208216,2208283,8,'composer',NULL,NULL),(2208216,1673508,9,'cinematographer',NULL,NULL),(2209418,1041899,10,'cinematographer','director of photography',NULL),(2209418,160,1,'actor',NULL,'[\"Jesse\"]'),(2209418,365,2,'actress',NULL,'[\"Celine\"]'),(2209418,2089090,3,'actor',NULL,'[\"Hank\"]'),(2209418,3987673,4,'actress',NULL,'[\"Anna\"]'),(2209418,500,5,'director',NULL,NULL),(2209418,471811,6,'writer','characters',NULL),(2209418,3517546,7,'producer','producer',NULL),(2209418,940287,8,'producer','producer',NULL),(2209418,1199960,9,'composer',NULL,NULL),(2209764,1142038,10,'producer','producer',NULL),(2209764,136,1,'actor',NULL,'[\"Will Caster\"]'),(2209764,356017,2,'actress',NULL,'[\"Evelyn Caster\"]'),(2209764,151,3,'actor',NULL,'[\"Joseph Tagger\"]'),(2209764,614165,4,'actor',NULL,'[\"Agent Buchanan\"]'),(2209764,2892,5,'director',NULL,NULL),(2209764,1438698,6,'writer','written by',NULL),(2209764,3154628,7,'producer','producer',NULL),(2209764,424663,8,'producer','producer',NULL),(2209764,467255,9,'producer','producer',NULL),(2210769,843816,10,'cinematographer',NULL,NULL),(2210769,1634838,1,'actress',NULL,'[\"Liza\"]'),(2210769,1039405,2,'actor',NULL,'[\"Zoltán zászlós\"]'),(2210769,2077159,3,'actor',NULL,'[\"Tomy Tani\"]'),(2210769,773327,4,'actor',NULL,'[\"Henrik\"]'),(2210769,1902132,5,'director',NULL,NULL),(2210769,1257362,6,'writer',NULL,NULL),(2210769,1044218,7,'producer','producer',NULL),(2210769,1858687,8,'composer',NULL,NULL),(2210769,2752422,9,'composer',NULL,NULL),(2212008,2117800,10,'producer','producer',NULL),(2212008,131,1,'actor',NULL,'[\"Jack\"]'),(2212008,3762369,2,'actress',NULL,'[\"Rivka\"]'),(2212008,134,3,'actor',NULL,'[\"Dragna\"]'),(2212008,417,4,'actor',NULL,'[\"Ned\"]'),(2212008,4333222,5,'director',NULL,NULL),(2212008,176759,6,'writer','written by',NULL),(2212008,751638,7,'writer','original screenplay \"Motel\"',NULL),(2212008,336337,8,'producer','producer',NULL),(2212008,5554560,9,'producer','producer',NULL),(2215395,2028277,10,'composer',NULL,NULL),(2215395,480942,1,'actress',NULL,'[\"Paulette\"]'),(2215395,560962,2,'actress',NULL,'[\"Maria\"]'),(2215395,491763,3,'actress',NULL,'[\"Lucienne\"]'),(2215395,78097,4,'actress',NULL,'[\"Renée\"]'),(2215395,257991,5,'director',NULL,NULL),(2215395,5056467,6,'writer','scenario',NULL),(2215395,4531688,7,'writer','original idea',NULL),(2215395,5056474,8,'writer','scenario',NULL),(2215395,1384440,9,'composer',NULL,NULL),(2216240,1400445,10,'editor',NULL,NULL),(2216240,1561982,1,'actor',NULL,'[\"Mikkel Hartmann\"]'),(2216240,540038,2,'actor',NULL,'[\"Peter C. Ludvigsen\"]'),(2216240,1502469,3,'actor',NULL,'[\"Lars Vestergaard\"]'),(2216240,3435612,4,'actor',NULL,'[\"Jan Sørensen\"]'),(2216240,2105585,5,'director',NULL,NULL),(2216240,1400761,6,'producer','producer',NULL),(2216240,1400785,7,'producer','producer',NULL),(2216240,3723390,8,'composer',NULL,NULL),(2216240,1454821,9,'cinematographer',NULL,NULL),(2217458,57025,10,'producer','producer',NULL),(2217458,685123,1,'actress',NULL,'[\"Lota de Macedo Soares\"]'),(2217458,1584,2,'actress',NULL,'[\"Elizabeth Bishop\"]'),(2217458,585429,3,'actress',NULL,'[\"Mary\",\"Elizabeth\'s friend\"]'),(2217458,3610616,4,'actor',NULL,'[\"Carlos Lacerda\"]'),(2217458,853,5,'director',NULL,NULL),(2217458,152466,6,'writer','screenplay',NULL),(2217458,768544,7,'writer','screenplay',NULL),(2217458,5583572,8,'writer','based on the novel \"Flores raras e banalíssimas\" by',NULL),(2217458,1802656,9,'writer','based on the screenplay by',NULL),(2217859,733435,10,'producer','producer',NULL),(2217859,251986,1,'actor',NULL,'[\"Jonah\"]'),(2217859,321,2,'actor',NULL,'[\"Gene\"]'),(2217859,1376,3,'actress',NULL,'[\"Isabelle\"]'),(2217859,4917921,4,'actor',NULL,'[\"Conrad\"]'),(2217859,1258686,5,'director',NULL,NULL),(2217859,1258777,6,'writer','screenplay',NULL),(2217859,40120,7,'producer','producer',NULL),(2217859,74100,8,'producer','producer',NULL),(2217859,1905834,9,'producer','producer',NULL),(2218003,847926,10,'composer',NULL,NULL),(2218003,51509,1,'actor',NULL,'[\"Martin Rose\"]'),(2218003,356017,2,'actress',NULL,'[\"Claudia Simmons-Howe\"]'),(2218003,980,3,'actor',NULL,'[\"Attorney General\"]'),(2218003,1354,4,'actor',NULL,'[\"Devlin\"]'),(2218003,1259871,5,'director',NULL,NULL),(2218003,1140275,6,'writer','screenplay',NULL),(2218003,79677,7,'producer','producer',NULL),(2218003,163770,8,'producer','producer',NULL),(2218003,271479,9,'producer','producer',NULL),(2220408,578042,1,'actor',NULL,'[\"Rodrigo\"]'),(2220408,561210,2,'actor',NULL,'[\"Danilo\"]'),(2220408,1167049,3,'actor',NULL,'[\"Amaral\"]'),(2220408,2366126,4,'actor',NULL,'[\"Vaguinho\"]'),(2220408,267399,5,'director',NULL,NULL),(2220408,5115855,6,'writer','written by',NULL),(2220408,1060971,7,'producer','producer',NULL),(2220408,1149945,8,'producer','producer',NULL),(2220408,2024895,9,'cinematographer','second cinematographer',NULL),(2221420,5422697,1,'self',NULL,'[\"Self - Domm (jockey)\"]'),(2221420,9515880,2,'self',NULL,'[\"Self (horse)\"]'),(2221420,1155956,3,'director',NULL,NULL),(2221420,5114631,4,'producer','producer',NULL),(2222042,1937,10,'composer',NULL,NULL),(2222042,3729721,1,'actor',NULL,'[\"Joel\"]'),(2222042,3725055,2,'actress',NULL,'[\"Aimee\"]'),(2222042,740264,3,'actor',NULL,'[\"Clyde\"]'),(2222042,2045439,4,'actor',NULL,'[\"Cap\"]'),(2222042,3462290,5,'director',NULL,NULL),(2222042,3929259,6,'writer','screenplay by',NULL),(2222042,2816668,7,'writer','screenplay by',NULL),(2222042,2950264,8,'producer','producer',NULL),(2222042,506613,9,'producer','producer',NULL),(2222052,4537345,10,'composer',NULL,NULL),(2222052,4960279,1,'actress',NULL,'[\"Joanna\"]'),(2222052,244,2,'actress',NULL,'[\"Margaret\"]'),(2222052,3150488,3,'actor',NULL,'[\"Don\"]'),(2222052,4881749,4,'actress',NULL,'[\"Jenny\"]'),(2222052,265852,5,'director',NULL,NULL),(2222052,5117507,6,'writer','based on the book by',NULL),(2222052,13326855,7,'writer','poem \'Sea Peach\'',NULL),(2222052,246404,8,'producer','producer',NULL),(2222052,566919,9,'producer','producer',NULL),(22227936,3219350,10,'production_designer',NULL,NULL),(22227936,1742715,1,'actress',NULL,'[\"Saliha\",\"Bekir and Havva\'s daughter\"]'),(22227936,4245240,2,'actor',NULL,'[\"Yusuf\",\"Bekir and Havva\'s son\"]'),(22227936,2985917,3,'actress',NULL,'[\"Havva\",\"Young\"]'),(22227936,6892146,4,'actress',NULL,'[\"Yusuf\'s wife\"]'),(22227936,1727762,5,'director',NULL,NULL),(22227936,5081070,6,'producer','producer',NULL),(22227936,4043163,7,'cinematographer',NULL,NULL),(22227936,5246019,8,'editor',NULL,NULL),(22227936,5367909,9,'production_designer',NULL,NULL),(2223990,698133,10,'producer','producer',NULL),(2223990,126,1,'actor',NULL,'[\"Sonny Weaver Jr.\"]'),(2223990,1569276,2,'actor',NULL,'[\"Vontae Mack\"]'),(2223990,4950,3,'actress',NULL,'[\"Ali\"]'),(2223990,1449,4,'actor',NULL,'[\"Anthony Molina\"]'),(2223990,718645,5,'director',NULL,NULL),(2223990,2744027,6,'writer','written by',NULL),(2223990,4396670,7,'writer','written by',NULL),(2223990,2093343,8,'producer','producer',NULL),(2223990,575817,9,'producer','producer',NULL),(2224026,1074134,10,'producer','producer',NULL),(2224026,1433588,1,'actor',NULL,'[\"Oh\"]'),(2224026,1982597,2,'actress',NULL,'[\"Gratuity \'Tip\' Tucci\"]'),(2224026,188,3,'actor',NULL,'[\"Captain Smek\"]'),(2224026,182,4,'actress',NULL,'[\"Lucy Tucci\"]'),(2224026,426333,5,'director',NULL,NULL),(2224026,40022,6,'writer','screenplay by',NULL),(2224026,256079,7,'writer','screenplay by',NULL),(2224026,5199482,8,'writer','book \"The True Meaning of Smekday\"',NULL),(2224026,1330174,9,'producer','producer',NULL),(2224073,153774,10,'editor',NULL,NULL),(2224073,2355036,1,'actor',NULL,'[\"Alex 1\"]'),(2224073,3800566,2,'actress',NULL,'[\"Woman\"]'),(2224073,2788999,3,'actor',NULL,'[\"Man\"]'),(2224073,3075802,4,'actor',NULL,'[\"Mattias\"]'),(2224073,2647420,5,'director',NULL,NULL),(2224073,3399858,6,'writer',NULL,NULL),(2224073,1477515,7,'producer','producer',NULL),(2224073,699841,8,'composer',NULL,NULL),(2224073,2044345,9,'cinematographer',NULL,NULL),(2224455,4087518,10,'writer','story \"What\'s So Funny About Truth, Justice, and the American Way\"',NULL),(2224455,627624,1,'actor',NULL,'[\"Superman\",\"Clark Kent\",\"Robot\"]'),(2224455,5306,2,'actress',NULL,'[\"Lois Lane\"]'),(2224455,235960,3,'actor',NULL,'[\"Manchester Black\",\"Pokolistani Ambassador\"]'),(2224455,48389,4,'actor',NULL,'[\"Atomic Skull\"]'),(2224455,970607,5,'director',NULL,NULL),(2224455,796950,6,'writer','character created by: Superman',NULL),(2224455,795975,7,'writer','character created by: Superman',NULL),(2224455,2399856,8,'writer','story \"What\'s So Funny About Truth, Justice, and the American Way\"',NULL),(2224455,537051,9,'writer','story \"What\'s So Funny About Truth, Justice, and the American Way\"',NULL),(2226417,502954,10,'cinematographer',NULL,NULL),(2226417,933940,1,'actor',NULL,'[\"Josh Lambert\"]'),(2226417,126284,2,'actress',NULL,'[\"Renai Lambert\"]'),(2226417,1347,3,'actress',NULL,'[\"Lorraine Lambert\"]'),(2226417,5417,4,'actress',NULL,'[\"Elise Rainier\"]'),(2226417,1490123,5,'director',NULL,NULL),(2226417,1191481,6,'writer','based on characters created by',NULL),(2226417,89658,7,'producer','producer',NULL),(2226417,2305431,8,'producer','producer',NULL),(2226417,1177766,9,'composer',NULL,NULL),(2226519,1269144,10,'composer',NULL,NULL),(2226519,115161,1,'actress',NULL,'[\"Hayley\"]'),(2226519,1882152,2,'actor',NULL,'[\"Enzo\"]'),(2226519,1544217,3,'actor',NULL,'[\"Carter\"]'),(2226519,1685408,4,'actress',NULL,'[\"Annie\"]'),(2226519,362566,5,'director',NULL,NULL),(2226519,625158,6,'writer','written by',NULL),(2226519,89658,7,'producer','producer',NULL),(2226519,1602119,8,'producer','producer',NULL),(2226519,1023349,9,'producer','producer',NULL),(2226597,1249995,10,'producer','producer',NULL),(2226597,701,1,'actress',NULL,'[\"Alex Martin\"]'),(2226597,252961,2,'actor',NULL,'[\"Ben Bass\"]'),(2226597,977,3,'actor',NULL,'[\"Walter\"]'),(2226597,551,4,'actor',NULL,'[\"Mark\"]'),(2226597,9463,5,'director',NULL,NULL),(2226597,919363,6,'writer','screenplay by',NULL),(2226597,328987,7,'writer','screenplay by',NULL),(2226597,4887947,8,'writer','based upon the book by',NULL),(2226597,1858656,9,'producer','producer',NULL),(2229499,330687,1,'actor',NULL,'[\"Jon\"]'),(2229499,424060,2,'actress',NULL,'[\"Barbara\"]'),(2229499,194,3,'actress',NULL,'[\"Esther\"]'),(2229499,1103,4,'actor',NULL,'[\"Jon Sr.\"]'),(2229499,74851,5,'producer','producer',NULL),(2229499,1791103,6,'composer',NULL,NULL),(2229499,460071,7,'cinematographer','director of photography',NULL),(2229499,958432,8,'editor',NULL,NULL),(2229499,1343355,9,'production_designer',NULL,NULL),(2230358,1046664,10,'production_designer',NULL,NULL),(2230358,703336,1,'actress',NULL,'[\"Sarah\"]'),(2230358,1875040,2,'actress',NULL,'[\"Nica\"]'),(2230358,2849998,3,'actor',NULL,'[\"US EX Guy\"]'),(2230358,84426,4,'actress',NULL,'[\"Barb\"]'),(2230358,238841,5,'director',NULL,NULL),(2230358,456946,6,'producer','producer',NULL),(2230358,6173,7,'composer',NULL,NULL),(2230358,551058,8,'cinematographer','director of photography',NULL),(2230358,167917,9,'editor',NULL,NULL),(2231461,4927,10,'producer','producer',NULL),(2231461,425005,1,'actor',NULL,'[\"Davis Okoye\"]'),(2231461,365140,2,'actress',NULL,'[\"Dr. Kate Caldwell\"]'),(2231461,15196,3,'actress',NULL,'[\"Claire Wyden\"]'),(2231461,604742,4,'actor',NULL,'[\"Harvey Russell\"]'),(2231461,679031,5,'director',NULL,NULL),(2231461,257513,6,'writer','screenplay by',NULL),(2231461,193681,7,'writer','screenplay by',NULL),(2231461,2952284,8,'writer','screenplay by',NULL),(2231461,1186373,9,'writer','screenplay by',NULL),(2231489,409275,10,'actor',NULL,'[\"Leo\",\"Aiolia\"]'),(2231489,5481013,1,'actor',NULL,'[\"Seiya\"]'),(2231489,3401643,2,'actor',NULL,'[\"Shiryu\"]'),(2231489,2770525,3,'actor',NULL,'[\"Hyoga\"]'),(2231489,2462004,4,'actor',NULL,'[\"Shun\"]'),(2231489,766226,5,'director',NULL,NULL),(2231489,1030700,6,'writer','manga',NULL),(2231489,4330767,7,'writer','adaptation',NULL),(2231489,840555,8,'writer','screenplay',NULL),(2231489,1261186,9,'actor',NULL,'[\"Ikki\"]'),(2234003,809040,10,'cinematographer','director of photography',NULL),(2234003,322407,1,'actor',NULL,'[\"Father James\"]'),(2234003,1483369,2,'actor',NULL,'[\"Jack Brennan\"]'),(2234003,717709,3,'actress',NULL,'[\"Fiona Lavelle\"]'),(2234003,318821,4,'actor',NULL,'[\"Dr. Frank Harte\"]'),(2234003,567620,5,'director',NULL,NULL),(2234003,163770,6,'producer','producer',NULL),(2234003,1771404,7,'producer','producer',NULL),(2234003,283478,8,'producer','producer',NULL),(2234003,144234,9,'composer',NULL,NULL),(2234155,583390,10,'production_designer',NULL,NULL),(2234155,681,1,'actor',NULL,'[\"Billy McMahon\"]'),(2234155,5562,2,'actor',NULL,'[\"Nick Campbell\"]'),(2234155,126284,3,'actress',NULL,'[\"Dana\"]'),(2234155,541902,4,'actor',NULL,'[\"Mr. Chetty\"]'),(2234155,506613,5,'director',NULL,NULL),(2234155,2972864,6,'writer','screenplay',NULL),(2234155,65100,7,'composer',NULL,NULL),(2234155,3446,8,'cinematographer','director of photography',NULL),(2234155,956693,9,'editor',NULL,NULL),(2234222,1289249,10,'writer','developed with the participation of: Canadian Film Centre story editor resident',NULL),(2234222,1137209,1,'actress',NULL,'[\"Sarah Manning\",\"Cosima Niehaus\",\"Alison Hendrix\"]'),(2234222,1851313,2,'actor',NULL,'[\"Paul Dierden\"]'),(2234222,2849998,3,'actor',NULL,'[\"Felix Dawkins\"]'),(2234222,359322,4,'actor',NULL,'[\"Detective Art Bell\",\"Art Bell\"]'),(2234222,1528935,5,'writer','developed with the participation of: Canadian Film Centre story editor resident',NULL),(2234222,3784672,6,'writer','developed with the participation of: Canadian Film Centre story editor resident',NULL),(2234222,3709826,7,'writer','developed with the participation of: Canadian Film Centre story editor resident',NULL),(2234222,269502,8,'writer','created by',NULL),(2234222,4166033,9,'writer','developed with the participation of: Canadian Film Centre story editor resident',NULL),(2234261,882270,10,'producer','producer',NULL),(2234261,112,1,'actor',NULL,'[\"Richard\"]'),(2234261,668,2,'actress',NULL,'[\"Kate\"]'),(2234261,1758,3,'actor',NULL,'[\"Jerry\"]'),(2234261,408309,4,'actress',NULL,'[\"Pen\"]'),(2234261,394199,5,'director',NULL,NULL),(2234261,2208729,6,'writer','additional writing by',NULL),(2234261,1052811,7,'producer','producer',NULL),(2234261,1360311,8,'producer','producer',NULL),(2234261,673258,9,'producer','producer',NULL),(2235108,2913119,10,'producer','producer',NULL),(2235108,1927701,1,'actor',NULL,'[\"Lionel Higgins\"]'),(2235108,1935086,2,'actress',NULL,'[\"Samantha White\"]'),(2235108,973177,3,'actor',NULL,'[\"Kurt Fletcher\"]'),(2235108,3500582,4,'actress',NULL,'[\"Colandrea \'Coco\' Conners\"]'),(2235108,2282177,5,'director',NULL,NULL),(2235108,113500,6,'producer','producer',NULL),(2235108,3460178,7,'producer','producer',NULL),(2235108,3782182,8,'producer','producer',NULL),(2235108,3649782,9,'producer','producer',NULL),(2235902,743117,10,'composer',NULL,NULL),(2235902,3846716,1,'actor',NULL,'[\"Russell Middlebrook\"]'),(2235902,214302,2,'actor',NULL,'[\"Kevin Land\"]'),(2235902,2449480,3,'actress',NULL,'[\"Trish\"]'),(2235902,262374,4,'actor',NULL,'[\"Mr. Kaplan\"]'),(2235902,1925528,5,'director',NULL,NULL),(2235902,1925823,6,'writer','screenplay',NULL),(2235902,5133272,7,'writer','novel',NULL),(2235902,2328309,8,'producer','producer',NULL),(2235902,400252,9,'producer','producer',NULL),(2238050,534893,10,'producer','producer',NULL),(2238050,940362,1,'actress',NULL,'[\"Kat Connors\"]'),(2238050,1200692,2,'actress',NULL,'[\"Eve Connors\"]'),(2238050,5221,3,'actor',NULL,'[\"Brock Connors\"]'),(2238050,291,4,'actress',NULL,'[\"Dr. Thaler\"]'),(2238050,777,5,'director',NULL,NULL),(2238050,440641,6,'writer','based on the novel by',NULL),(2238050,146434,7,'producer','producer',NULL),(2238050,1014957,8,'producer','producer',NULL),(2238050,1085924,9,'producer','producer',NULL),(2239822,5636,10,'cinematographer','director of photography',NULL),(2239822,2851530,1,'actor',NULL,'[\"Major Valerian\"]'),(2239822,5353321,2,'actress',NULL,'[\"Sergeant Laureline\"]'),(2239822,654110,3,'actor',NULL,'[\"Commander Arun Filitt\"]'),(2239822,1982597,4,'actress',NULL,'[\"Bubble\"]'),(2239822,108,5,'director',NULL,NULL),(2239822,160391,6,'writer','based on the comic book series \"Valerian and Laureline\" by',NULL),(2239822,617789,7,'writer','based on the comic book series \"Valerian and Laureline\" by',NULL),(2239822,798065,8,'producer','producer',NULL),(2239822,6035,9,'composer',NULL,NULL),(2241351,239277,10,'producer','producer',NULL),(2241351,123,1,'actor',NULL,'[\"Lee Gates\"]'),(2241351,210,2,'actress',NULL,'[\"Patty Fenn\"]'),(2241351,1925239,3,'actor',NULL,'[\"Kyle Budwell\"]'),(2241351,922035,4,'actor',NULL,'[\"Walt Camby\"]'),(2241351,149,5,'director',NULL,NULL),(2241351,1956691,6,'writer','screenplay',NULL),(2241351,223804,7,'writer','screenplay',NULL),(2241351,467942,8,'writer','screenplay',NULL),(2241351,1240783,9,'producer','producer',NULL),(2243389,757814,10,'editor',NULL,NULL),(2243389,194572,1,'actor',NULL,'[\"Joserra\"]'),(2243389,1250933,2,'actress',NULL,'[\"Piluca (azafata 1)\"]'),(2243389,5386,3,'actress',NULL,'[\"Norma Boss\"]'),(2243389,240318,4,'actress',NULL,'[\"Bruna\"]'),(2243389,264,5,'director',NULL,NULL),(2243389,21948,6,'producer','producer',NULL),(2243389,306088,7,'producer','producer',NULL),(2243389,407076,8,'composer',NULL,NULL),(2243389,3900,9,'cinematographer',NULL,NULL),(2243537,5541,1,'actor',NULL,'[\"Malcolm\"]'),(2243537,40591,2,'actress',NULL,'[\"Kisha\"]'),(2243537,287168,3,'actress',NULL,'[\"Rosa\"]'),(2243537,462712,4,'actor',NULL,'[\"Dan the Security Man\"]'),(2243537,1639277,5,'director',NULL,NULL),(2243537,23315,6,'writer','written by',NULL),(2243537,3205,7,'cinematographer','director of photography',NULL),(2243537,385720,8,'editor',NULL,NULL),(2243537,1088871,9,'production_designer',NULL,NULL),(2243621,67457,10,'producer','producer',NULL),(2243621,3765756,1,'actress',NULL,'[\"Gerda\"]'),(2243621,645612,2,'actor',NULL,'[\"Orm\"]'),(2243621,879218,3,'actress',NULL,'[\"Snezhnaya koroleva\"]'),(2243621,1166576,4,'actor',NULL,'[\"Vospitatel\"]'),(2243621,1703597,5,'director',NULL,NULL),(2243621,1650373,6,'director',NULL,NULL),(2243621,520036,7,'writer','english adaptation',NULL),(2243621,7803906,8,'writer',NULL,NULL),(2243621,4901594,9,'writer',NULL,NULL),(2243973,3821782,10,'actress',NULL,'[\"Abigail Hobbs\"]'),(2243973,199215,1,'actor',NULL,'[\"Will Graham\"]'),(2243973,586568,2,'actor',NULL,'[\"Dr. Hannibal Lecter\"]'),(2243973,223518,3,'actress',NULL,'[\"Dr. Alana Bloom\"]'),(2243973,401,4,'actor',NULL,'[\"Jack Crawford\"]'),(2243973,298188,5,'writer','developed for television by',NULL),(2243973,860690,6,'actor',NULL,'[\"Jimmy Price\"]'),(2243973,1378320,7,'actor',NULL,'[\"Brian Zeller\"]'),(2243973,96,8,'actress',NULL,'[\"Dr. Bedelia Du Maurier\"]'),(2243973,1782292,9,'actress',NULL,'[\"Beverly Katz\"]'),(2244901,1023204,10,'cinematographer','director of photography',NULL),(2244901,126284,1,'actress',NULL,'[\"Nat\"]'),(2244901,1245863,2,'actor',NULL,'[\"Josh\"]'),(2244901,1276507,3,'actor',NULL,'[\"Minister\"]'),(2244901,580351,4,'actor',NULL,'[\"Danny\"]'),(2244901,563243,5,'director',NULL,NULL),(2244901,79677,6,'producer','producer',NULL),(2244901,271479,7,'producer','producer',NULL),(2244901,858123,8,'producer','producer',NULL),(2244901,1011065,9,'composer',NULL,NULL),(2245003,58442,10,'editor',NULL,NULL),(2245003,106,1,'actress',NULL,'[\"Jess\"]'),(2245003,1057,2,'actress',NULL,'[\"Milly\"]'),(2245003,1002641,3,'actor',NULL,'[\"Kit\"]'),(2245003,175916,4,'actor',NULL,'[\"Jago\"]'),(2245003,362566,5,'director',NULL,NULL),(2245003,52218,6,'writer','written by',NULL),(2245003,800097,7,'producer','producer',NULL),(2245003,4581,8,'composer',NULL,NULL),(2245003,204567,9,'cinematographer','director of photography',NULL),(2245084,2185413,10,'writer','Big Hero 6 team and characters created by',NULL),(2245084,3994407,1,'actor',NULL,'[\"Hiro\"]'),(2245084,12523,2,'actor',NULL,'[\"Baymax\"]'),(2245084,1512166,3,'actress',NULL,'[\"Go Go\"]'),(2245084,2554352,4,'actor',NULL,'[\"Fred\"]'),(2245084,2320658,5,'director',NULL,NULL),(2245084,930261,6,'director',NULL,NULL),(2245084,1471001,7,'writer','screenplay by',NULL),(2245084,47916,8,'writer','screenplay by',NULL),(2245084,314870,9,'writer','screenplay by',NULL),(2245195,1558480,10,'composer',NULL,NULL),(2245195,2297889,1,'actor',NULL,'[\"Bill Hunt\",\"General Trius\"]'),(2245195,1828101,2,'actor',NULL,'[\"Kevin\"]'),(2245195,1024264,3,'actress',NULL,'[\"Holly\"]'),(2245195,1571820,4,'actress',NULL,'[\"Carmen\"]'),(2245195,1006056,5,'director',NULL,NULL),(2245195,907844,6,'director',NULL,NULL),(2245195,3234219,7,'producer','producer',NULL),(2245195,2749806,8,'producer','producer',NULL),(2245195,999768,9,'producer','producer',NULL),(2247432,817311,10,'production_designer',NULL,NULL),(2247432,4986,1,'actress',NULL,'[\"Bernice\"]'),(2247432,743931,2,'actress',NULL,'[\"Fontayne\"]'),(2247432,1579,3,'actor',NULL,'[\"Freddy Suarez\"]'),(2247432,1538210,4,'actress',NULL,'[\"Cindy\"]'),(2247432,626,5,'director',NULL,NULL),(2247432,90454,6,'producer','producer',NULL),(2247432,819702,7,'producer','producer',NULL),(2247432,6025,8,'composer',NULL,NULL),(2247432,1918900,9,'cinematographer',NULL,NULL),(2247476,517872,10,'cinematographer',NULL,NULL),(2247476,1029,1,'actor',NULL,'[\"Bob Ladouceur\"]'),(2247476,1573253,2,'actor',NULL,'[\"Chris Ryan\"]'),(2247476,4821,3,'actor',NULL,'[\"Terry Eidson\"]'),(2247476,368,4,'actress',NULL,'[\"Bev Ladouceur\"]'),(2247476,141961,5,'director',NULL,NULL),(2247476,809899,6,'writer','screenplay',NULL),(2247476,954679,7,'writer','story',NULL),(2247476,5637188,8,'writer','book',NULL),(2247476,1373352,9,'composer',NULL,NULL),(2249628,4273301,1,'actor',NULL,'[\"Oli\"]'),(2249628,5063151,2,'actor',NULL,'[\"Jan\"]'),(2249628,4925485,3,'director',NULL,NULL),(2249628,4952295,4,'producer','producer',NULL),(2249628,5141827,5,'producer','producer',NULL),(2249628,5142339,6,'composer',NULL,NULL),(2249628,3524021,7,'cinematographer',NULL,NULL),(2249628,3522963,8,'editor',NULL,NULL),(2250234,1058095,1,'actress',NULL,'[\"Nemyt Akaia\"]'),(2250234,4156117,2,'actor',NULL,'[\"Keltus the Wanderer\"]'),(2250234,2506257,3,'actor',NULL,'[\"Kullimon the Black\"]'),(2250234,2482481,4,'actor',NULL,'[\"Gyarmuck\",\"Maggut Gulbrow\"]'),(2250234,1439346,5,'director',NULL,NULL),(2250234,1131306,6,'writer','writer',NULL),(2250234,1344786,7,'writer','writer',NULL),(2250234,1803932,8,'composer',NULL,NULL),(2250234,1237224,9,'production_designer',NULL,NULL),(2250912,1273099,10,'writer','screenplay by',NULL),(2250912,4043618,1,'actor',NULL,'[\"Peter Parker\",\"Spider-Man\"]'),(2250912,474,2,'actor',NULL,'[\"Adrian Toomes\",\"Vulture\"]'),(2250912,375,3,'actor',NULL,'[\"Tony Stark\",\"Iron Man\"]'),(2250912,673,4,'actress',NULL,'[\"May Parker\"]'),(2250912,1218281,5,'director',NULL,NULL),(2250912,326246,6,'writer','screenplay by',NULL),(2250912,197855,7,'writer','screenplay by',NULL),(2250912,1755986,8,'writer','screenplay by',NULL),(2250912,571344,9,'writer','screenplay by',NULL),(2251281,2447772,10,'producer','producer',NULL),(2251281,243806,1,'actor',NULL,'[\"Paul Shields\"]'),(2251281,1305,2,'actor',NULL,'[\"Donny Saunders\"]'),(2251281,435323,3,'actress',NULL,'[\"Susan Shields\"]'),(2251281,198804,4,'actor',NULL,'[\"Earl\"]'),(2251281,2597331,5,'director',NULL,NULL),(2251281,2252414,6,'writer','written by',NULL),(2251281,2909903,7,'producer','producer',NULL),(2251281,3344353,8,'producer','producer',NULL),(2251281,3378356,9,'producer','producer',NULL),(2254131,4919938,10,'production_designer',NULL,NULL),(2254131,4910720,1,'actress',NULL,'[\"Chelsea\"]'),(2254131,4464150,2,'actor',NULL,'[\"Hudson\"]'),(2254131,2878438,3,'actress',NULL,'[\"Marisa\"]'),(2254131,2870912,4,'actor',NULL,'[\"Jeff\"]'),(2254131,3373450,5,'director',NULL,NULL),(2254131,3373660,6,'director',NULL,NULL),(2254131,4970331,7,'composer',NULL,NULL),(2254131,3240509,8,'cinematographer',NULL,NULL),(2254131,3492673,9,'cinematographer',NULL,NULL),(2255372,3111937,10,'actress',NULL,'[\"Alice\"]'),(2255372,589,1,'actress',NULL,'[\"Celestia Plotz\"]'),(2255372,358478,2,'actress',NULL,'[\"Ladybug Plotz\"]'),(2255372,1192238,3,'actress',NULL,'[\"Whimsellica Plotz\"]'),(2255372,2358125,4,'actor',NULL,'[\"Reginald\"]'),(2255372,2367718,5,'actor',NULL,'[\"Uncle Sinley\"]'),(2255372,5146757,6,'actor',NULL,'[\"Henthrop Glassley\"]'),(2255372,5147242,7,'actress',NULL,'[\"Petula Feather\"]'),(2255372,1101768,8,'actor',NULL,'[\"Jean Pierre, Bif\"]'),(2255372,2046446,9,'actor',NULL,'[\"Lance\"]'),(2258281,2688233,10,'production_designer',NULL,NULL),(2258281,4914976,1,'actress',NULL,'[\"Voichita\"]'),(2258281,4915334,2,'actress',NULL,'[\"Alina Ringhis\"]'),(2258281,1250558,3,'actor',NULL,'[\"Priest\"]'),(2258281,849944,4,'actress',NULL,'[\"Mother superior\"]'),(2258281,612816,5,'director',NULL,NULL),(2258281,4208990,6,'writer','inspired by non-fiction novels of',NULL),(2258281,1412545,7,'cinematographer',NULL,NULL),(2258281,3203615,8,'editor',NULL,NULL),(2258281,660676,9,'production_designer',NULL,NULL),(2258337,4180576,10,'writer','hindi dialogue',NULL),(2258337,1679372,1,'actor',NULL,'[\"Sudeep\"]'),(2258337,3761004,2,'actor',NULL,'[\"Nani\"]'),(2258337,3606487,3,'actress',NULL,'[\"Bindhu\"]'),(2258337,2334720,4,'actress',NULL,'[\"Kala\"]'),(2258337,1442514,5,'director',NULL,NULL),(2258337,2132230,6,'writer','dialogue',NULL),(2258337,1190372,7,'writer','dialogue',NULL),(2258337,2353436,8,'writer','based on an idea by',NULL),(2258337,4034632,9,'writer','writer',NULL),(2258345,169555,10,'production_designer',NULL,NULL),(2258345,1806,1,'actor',NULL,'[\"Fioravante\"]'),(2258345,95,2,'actor',NULL,'[\"Murray\"]'),(2258345,232,3,'actress',NULL,'[\"Dr. Parker\"]'),(2258345,5527,4,'actress',NULL,'[\"Selima\"]'),(2258345,1088848,5,'producer','producer',NULL),(2258345,2352181,6,'producer','producer',NULL),(2258345,506664,7,'producer','producer',NULL),(2258345,690602,8,'cinematographer','director of photography',NULL),(2258345,656455,9,'editor',NULL,NULL),(2258858,1303162,10,'editor',NULL,NULL),(2258858,5179652,1,'actress',NULL,'[\"Wadjda\"]'),(2258858,5179673,2,'actress',NULL,'[\"Mother\"]'),(2258858,5184964,3,'actor',NULL,'[\"Abdullah\"]'),(2258858,2269188,4,'actress',NULL,'[\"Ms. Hussa\"]'),(2258858,2223783,5,'director',NULL,NULL),(2258858,577145,6,'producer','producer',NULL),(2258858,1871094,7,'producer','producer',NULL),(2258858,2068037,8,'composer',NULL,NULL),(2258858,718573,9,'cinematographer','director of photography',NULL),(2261287,1457753,10,'producer','producer',NULL),(2261287,1102577,1,'actress',NULL,'[\"Felicie\"]'),(2261287,2851530,2,'actor',NULL,'[\"Victor\"]'),(2261287,4946551,3,'actress',NULL,'[\"Odette\"]'),(2261287,4675650,4,'actress',NULL,'[\"Camille\"]'),(2261287,838599,5,'director',NULL,NULL),(2261287,2908199,6,'director',NULL,NULL),(2261287,1552771,7,'writer','original story',NULL),(2261287,633560,8,'writer','screenplay',NULL),(2261287,3278504,9,'producer','producer',NULL),(2261331,942549,10,'editor',NULL,NULL),(2261331,179,1,'actor',NULL,'[\"Robinson\"]'),(2261331,1058940,2,'actor',NULL,'[\"Daniels\"]'),(2261331,578853,3,'actor',NULL,'[\"Fraser\"]'),(2261331,861915,4,'actor',NULL,'[\"Peters\"]'),(2261331,531817,5,'director',NULL,NULL),(2261331,2393111,6,'writer','screenplay by',NULL),(2261331,824395,7,'producer','producer',NULL),(2261331,1011065,8,'composer',NULL,NULL),(2261331,2131733,9,'cinematographer','director of photography',NULL),(2262129,3802743,1,'actress',NULL,'[\"Eden\"]'),(2262129,3221093,2,'actress',NULL,'[\"Matilda\"]'),(2262129,5499902,3,'actor',NULL,'[\"Ticks\"]'),(2262129,324597,4,'actor',NULL,'[\"Alfred\"]'),(2262129,3248639,5,'director',NULL,NULL),(2262129,3260168,6,'producer','executive producer',NULL),(2262129,1862479,7,'composer',NULL,NULL),(2262129,4991302,8,'cinematographer','director of photography',NULL),(2262129,8378253,9,'editor',NULL,NULL),(2262161,910621,10,'composer',NULL,NULL),(2262161,85612,1,'actor',NULL,'[\"Galt\"]'),(2262161,1326440,2,'actor',NULL,'[\"Reverend Gibbon\"]'),(2262161,101400,3,'actor',NULL,'[\"Alex Mutch\"]'),(2262161,3841447,4,'actress',NULL,'[\"Christine\"]'),(2262161,203993,5,'director',NULL,NULL),(2262161,316514,6,'writer','novel',NULL),(2262161,1057727,7,'producer','producer',NULL),(2262161,1099225,8,'producer','producer',NULL),(2262161,825350,9,'producer','producer',NULL),(2262227,226558,10,'producer','associate producer',NULL),(2262227,526019,1,'actor',NULL,'[\"Manolo\"]'),(2262227,757855,2,'actress',NULL,'[\"Maria\"]'),(2262227,1475594,3,'actor',NULL,'[\"Joaquin\"]'),(2262227,579,4,'actor',NULL,'[\"Xibalba\"]'),(2262227,1509613,5,'director',NULL,NULL),(2262227,486007,6,'writer','screenplay by',NULL),(2262227,121178,7,'producer','producer',NULL),(2262227,95374,8,'producer','producer',NULL),(2262227,868219,9,'producer','producer',NULL),(2262308,1214436,10,'actor',NULL,'[\"Master Chief\"]'),(2262308,2964015,1,'actor',NULL,'[\"Thomas Lasky\"]'),(2262308,691600,2,'actress',NULL,'[\"Chyler Silva\"]'),(2262308,3964998,3,'actress',NULL,'[\"April Orenski\"]'),(2262308,957909,4,'actress',NULL,'[\"Mehaffey\",\"Colonel Mehaffey\"]'),(2262308,1642004,5,'actor',NULL,'[\"Michael Sullivan\"]'),(2262308,233304,6,'actor',NULL,'[\"General Black\"]'),(2262308,4256622,7,'actor',NULL,'[\"Vickers\",\"Walter Vickers\"]'),(2262308,1859543,8,'actor',NULL,'[\"Junjie Chen\"]'),(2262308,3304127,9,'actress',NULL,'[\"Dimah Tchakova\"]'),(2262345,2731232,10,'producer','producer',NULL),(2262345,399940,1,'actor',NULL,'[\"Lund\"]'),(2262345,40545,2,'actor',NULL,'[\"Oloukine\"]'),(2262345,1817887,3,'actress',NULL,'[\"Sasha\"]'),(2262345,522502,4,'actor',NULL,'[\"Briscoe Loujine\"]'),(2262345,2916570,5,'director',NULL,NULL),(2262345,1718014,6,'writer','writer',NULL),(2262345,1222014,7,'writer','writer',NULL),(2262345,208150,8,'writer','adaptation',NULL),(2262345,1054433,9,'producer','producer',NULL),(2262532,3112508,10,'actress',NULL,'[\"Emma Kurtzman\"]'),(2262532,1632,1,'actress',NULL,'[\"Stef Adams Foster\",\"Stef Foster\"]'),(2262532,766708,2,'actress',NULL,'[\"Lena Adams Foster\",\"Lena Adams\"]'),(2262532,4114475,3,'actor',NULL,'[\"Jude Adams Foster\",\"Jude Jacob\"]'),(2262532,3620810,4,'actor',NULL,'[\"Brandon Foster\"]'),(2262532,1401678,5,'writer','created by',NULL),(2262532,656739,6,'writer','created by',NULL),(2262532,2314596,7,'actress',NULL,'[\"Callie Adams Foster\",\"Callie Jacob\"]'),(2262532,2028116,8,'actress',NULL,'[\"Mariana Adams Foster\",\"Mariana Foster\"]'),(2262532,1572,9,'actor',NULL,'[\"Mike Foster\"]'),(2263944,1119778,10,'composer',NULL,NULL),(2263944,637586,1,'actress',NULL,'[\"Son Gokû\",\"Son Gohan\",\"Son Goten\"]'),(2263944,875442,2,'actress',NULL,'[\"Bulma\"]'),(2263944,394690,3,'actor',NULL,'[\"Vegeta\"]'),(2263944,766493,4,'actor',NULL,'[\"Kame Sen\'nin\",\"King Vegeta\"]'),(2263944,396075,5,'director',NULL,NULL),(2263944,868066,6,'writer','manga',NULL),(2263944,2448218,7,'writer','screenplay',NULL),(2263944,5327343,8,'producer','producer',NULL),(2263944,2154425,9,'producer','producer',NULL),(2265398,1564639,10,'cinematographer',NULL,NULL),(2265398,1312575,1,'actress',NULL,'[\"Kate\"]'),(2265398,2159926,2,'actor',NULL,'[\"Luke\"]'),(2265398,447695,3,'actress',NULL,'[\"Jill\"]'),(2265398,515296,4,'actor',NULL,'[\"Chris\"]'),(2265398,1846132,5,'director',NULL,NULL),(2265398,3971847,6,'producer','producer',NULL),(2265398,1978398,7,'producer','producer',NULL),(2265398,4930589,8,'producer','producer',NULL),(2265398,885900,9,'producer','producer',NULL),(2265534,676512,10,'cinematographer','director of photography',NULL),(2265534,68338,1,'actress',NULL,'[\"Leigh\"]'),(2265534,336701,2,'actress',NULL,'[\"Mel\"]'),(2265534,771414,3,'actor',NULL,'[\"Todd\"]'),(2265534,367176,4,'actor',NULL,'[\"John\"]'),(2265534,1225921,5,'director',NULL,NULL),(2265534,3065255,6,'producer','line producer',NULL),(2265534,485085,7,'producer','line producer',NULL),(2265534,1511558,8,'producer','line producer',NULL),(2265534,2919157,9,'composer',NULL,NULL),(2267968,903456,10,'writer','based on the characters created by',NULL),(2267968,85312,1,'actor',NULL,'[\"Po\"]'),(2267968,186505,2,'actor',NULL,'[\"Li\"]'),(2267968,163,3,'actor',NULL,'[\"Shifu\"]'),(2267968,1401,4,'actress',NULL,'[\"Tigress\"]'),(2267968,1868917,5,'director',NULL,NULL),(2267968,950775,6,'director',NULL,NULL),(2267968,8743,7,'writer','written by',NULL),(2267968,74184,8,'writer','written by',NULL),(2267968,717550,9,'writer','based on the characters created by',NULL),(2267998,702,10,'producer','producer',NULL),(2267998,255,1,'actor',NULL,'[\"Nick Dunne\"]'),(2267998,683253,2,'actress',NULL,'[\"Amy Dunne\"]'),(2267998,439,3,'actor',NULL,'[\"Desi Collings\"]'),(2267998,1347153,4,'actor',NULL,'[\"Tanner Bolt\"]'),(2267998,399,5,'director',NULL,NULL),(2267998,5058839,6,'writer','screenplay',NULL),(2267998,149556,7,'producer','producer',NULL),(2267998,232433,8,'producer','producer',NULL),(2267998,586969,9,'producer','producer',NULL),(2268016,1475594,1,'actor',NULL,'[\"Mike\"]'),(2268016,542133,2,'actor',NULL,'[\"Big Dick Richie\"]'),(2268016,93589,3,'actor',NULL,'[\"Ken\"]'),(2268016,735226,4,'actor',NULL,'[\"Tito\"]'),(2268016,414423,5,'director',NULL,NULL),(2268016,1730221,6,'writer','written by',NULL),(2268016,917059,7,'producer','producer',NULL),(2268016,1752,8,'cinematographer','director of photography',NULL),(2268016,191896,9,'production_designer',NULL,NULL),(2273657,1250070,10,'producer','producer',NULL),(2273657,290556,1,'actor',NULL,'[\"Christian Longo\"]'),(2273657,1706767,2,'actor',NULL,'[\"Michael Finkel\"]'),(2273657,428065,3,'actress',NULL,'[\"Jill Barker\"]'),(2273657,1978694,4,'actress',NULL,'[\"MaryJane Longo\"]'),(2273657,3734458,5,'director',NULL,NULL),(2273657,1738734,6,'writer','screenplay by',NULL),(2273657,4927379,7,'writer','based on the book by',NULL),(2273657,306890,8,'producer','producer',NULL),(2273657,441097,9,'producer','producer',NULL),(2274604,6415238,10,'composer',NULL,NULL),(2274604,648406,1,'actress',NULL,'[\"Emma\"]'),(2274604,1345932,2,'actor',NULL,'[\"Elliot\"]'),(2274604,5474,3,'actress',NULL,'[\"Maureen\"]'),(2274604,3094339,4,'actor',NULL,'[\"Ian\"]'),(2274604,1614404,5,'director',NULL,NULL),(2274604,2160435,6,'writer',NULL,NULL),(2274604,1615954,7,'producer','producer',NULL),(2274604,1351041,8,'producer','producer',NULL),(2274604,5068149,9,'composer',NULL,NULL),(2275949,2900682,1,'actor',NULL,'[\"Eoghan Mac Suibhne\"]'),(2275949,2384596,2,'actress',NULL,'[\"Girlfriend\"]'),(2275949,71585,3,'actor',NULL,'[\"Barman\"]'),(2275949,4930263,4,'self',NULL,'[\"Self\"]'),(2275949,2919747,5,'director',NULL,NULL),(2275949,4929316,6,'writer','co-writer',NULL),(2275949,1621408,7,'producer','producer',NULL),(2275949,1983925,8,'cinematographer',NULL,NULL),(2275949,2738464,9,'editor',NULL,NULL),(2275990,332449,10,'actor',NULL,'[\"Deputy Commissioner Wainwright\"]'),(2275990,830556,1,'actress',NULL,'[\"Millie\"]'),(2275990,334150,2,'actress',NULL,'[\"Jean\"]'),(2275990,2570706,3,'actress',NULL,'[\"Lucy\"]'),(2275990,1269412,4,'actress',NULL,'[\"Susan\"]'),(2275990,223316,5,'actor',NULL,'[\"Timothy\"]'),(2275990,602455,6,'actress',NULL,'[\"Alice\"]'),(2275990,3849670,7,'actress',NULL,'[\"Lizzie\"]'),(2275990,3435454,8,'actor',NULL,'[\"Ben Gladstone\"]'),(2275990,4963600,9,'actor',NULL,'[\"Harry\"]'),(2277860,311449,10,'editor','film editor',NULL),(2277860,1122,1,'actress',NULL,'[\"Dory\"]'),(2277860,983,2,'actor',NULL,'[\"Marlin\"]'),(2277860,642145,3,'actor',NULL,'[\"Hank\"]'),(2277860,647698,4,'actress',NULL,'[\"Destiny\"]'),(2277860,4056,5,'director',NULL,NULL),(2277860,533691,6,'director','co-director',NULL),(2277860,835194,7,'writer','screenplay by',NULL),(2277860,172491,8,'producer','producer',NULL),(2277860,2353,9,'composer',NULL,NULL),(2278388,748784,10,'producer','producer',NULL),(2278388,146,1,'actor',NULL,'[\"M. Gustave\"]'),(2278388,719,2,'actor',NULL,'[\"Mr. Moustafa\"]'),(2278388,23832,3,'actor',NULL,'[\"Serge X.\"]'),(2278388,4778,4,'actor',NULL,'[\"Dmitri\"]'),(2278388,27572,5,'director',NULL,NULL),(2278388,959003,6,'writer','inspired by the writings of',NULL),(2278388,2450453,7,'writer','story',NULL),(2278388,206154,8,'producer','producer',NULL),(2278388,2262509,9,'producer','producer',NULL),(2278871,1384878,10,'cinematographer',NULL,NULL),(2278871,2244205,1,'actress',NULL,'[\"Emma\"]'),(2278871,2650819,2,'actress',NULL,'[\"Adèle\"]'),(2278871,444248,3,'actor',NULL,'[\"Samir\"]'),(2278871,714534,4,'actor',NULL,'[\"Père Adèle\"]'),(2278871,444244,5,'director',NULL,NULL),(2278871,480308,6,'writer','scenario, adaptation and dialogue',NULL),(2278871,4932043,7,'writer','adapted from: the comic book \"Le Bleu est une couleur chaude\" by',NULL),(2278871,1330234,8,'producer','producer',NULL),(2278871,544947,9,'producer','producer',NULL),(2279339,204567,10,'cinematographer','director of photography',NULL),(2279339,188,1,'actor',NULL,'[\"Rags\"]'),(2279339,473,2,'actress',NULL,'[\"Charlotte\"]'),(2279339,422,3,'actor',NULL,'[\"Sam\"]'),(2279339,1159180,4,'actor',NULL,'[\"Hank\"]'),(2279339,625458,5,'director',NULL,NULL),(2279339,737216,6,'writer','written by',NULL),(2279339,518757,7,'producer','producer',NULL),(2279339,1003921,8,'producer','producer',NULL),(2279339,2943572,9,'composer',NULL,NULL),(2279373,238757,10,'writer','based on: the series \"SpongeBob SquarePants\", developed by',NULL),(2279373,444786,1,'actor',NULL,'[\"SpongeBob\",\"Gary\",\"Agreeable Mob Member\"]'),(2279373,104,2,'actor',NULL,'[\"Burger Beard\"]'),(2279373,265067,3,'actor',NULL,'[\"Patrick\",\"Male Fish\",\"Eager Customer\"]'),(2279373,317,4,'actor',NULL,'[\"Mr. Krabs\"]'),(2279373,1196684,5,'director',NULL,NULL),(2279373,593610,6,'director',NULL,NULL),(2279373,8743,7,'writer','screenplay by',NULL),(2279373,74184,8,'writer','screenplay by',NULL),(2279373,384864,9,'writer','story by',NULL),(2279864,99753,10,'composer',NULL,NULL),(2279864,202970,1,'actor',NULL,'[\"Nathan\",\"Rolly\"]'),(2279864,352778,2,'actor',NULL,'[\"Rags\"]'),(2279864,1311,3,'actor',NULL,'[\"McKenzie\"]'),(2279864,358316,4,'actor',NULL,'[\"Will Haney\"]'),(2279864,609549,5,'director',NULL,NULL),(2279864,73688,6,'writer','written by',NULL),(2279864,541635,7,'writer','written by',NULL),(2279864,769840,8,'writer','written by',NULL),(2279864,506075,9,'producer','producer',NULL),(2281159,3991275,10,'editor',NULL,NULL),(2281159,1680142,1,'actress',NULL,'[\"Samantha\"]'),(2281159,930226,2,'actress',NULL,'[\"Sam\'s Mom\"]'),(2281159,3948907,3,'actress',NULL,'[\"Alice\"]'),(2281159,580290,4,'actor',NULL,'[\"Riley\"]'),(2281159,3146718,5,'director',NULL,NULL),(2281159,2591458,6,'producer','producer',NULL),(2281159,4193081,7,'producer','producer',NULL),(2281159,1258312,8,'composer',NULL,NULL),(2281159,1847756,9,'cinematographer',NULL,NULL),(2281587,65100,10,'composer',NULL,NULL),(2281587,315041,1,'actor',NULL,'[\"Dominic Badguy\"]'),(2281587,123092,2,'actor',NULL,'[\"Jean Pierre Napoleon\"]'),(2281587,275486,3,'actress',NULL,'[\"Nadya\"]'),(2281587,926209,4,'actor',NULL,'[\"Kermit the Frog\",\"Foo Foo\",\"Statler\"]'),(2281587,90386,5,'director',NULL,NULL),(2281587,831557,6,'writer','written by',NULL),(2281587,1345,7,'writer','based on',NULL),(2281587,387674,8,'producer','producer',NULL),(2281587,509414,9,'producer','producer',NULL),(2283336,662748,10,'producer','producer',NULL),(2283336,1165110,1,'actor',NULL,'[\"Agent H\"]'),(2283336,1935086,2,'actress',NULL,'[\"Agent M\"]'),(2283336,3529685,3,'actor',NULL,'[\"Pawny\"]'),(2283336,272581,4,'actress',NULL,'[\"Riza\"]'),(2283336,336620,5,'director',NULL,NULL),(2283336,391344,6,'writer','written by',NULL),(2283336,1436466,7,'writer','written by',NULL),(2283336,192384,8,'writer','based on the Malibu comic by',NULL),(2283336,531827,9,'producer','producer',NULL),(2283362,885575,10,'writer','based on the book \"Jumanji\" by',NULL),(2283362,425005,1,'actor',NULL,'[\"Spencer\"]'),(2283362,2394794,2,'actress',NULL,'[\"Martha\"]'),(2283362,366389,3,'actor',NULL,'[\"Fridge\"]'),(2283362,85312,4,'actor',NULL,'[\"Bethany\"]'),(2283362,440458,5,'director',NULL,NULL),(2283362,571344,6,'writer','screenplay by',NULL),(2283362,1273099,7,'writer','screenplay by',NULL),(2283362,3298,8,'writer','screenplay by',NULL),(2283362,684374,9,'writer','screenplay by',NULL),(2284766,1697283,10,'composer',NULL,NULL),(2284766,5476,1,'actress',NULL,'[\"Mary\"]'),(2284766,950,2,'actress',NULL,'[\"Martha\"]'),(2284766,3510471,3,'actor',NULL,'[\"Ben\"]'),(2284766,342029,4,'actor',NULL,'[\"Peter\"]'),(2284766,637518,5,'director',NULL,NULL),(2284766,193485,6,'writer',NULL,NULL),(2284766,79638,7,'producer','producer',NULL),(2284766,115537,8,'producer','producer',NULL),(2284766,389414,9,'producer','producer',NULL),(2285752,5175245,10,'actress',NULL,'[\"Djenghis\"]'),(2285752,513190,1,'actor',NULL,'[\"Old Thom\"]'),(2285752,3316142,2,'actor',NULL,'[\"Barley\"]'),(2285752,1851201,3,'actor',NULL,'[\"Captain\"]'),(2285752,4495815,4,'actor',NULL,'[\"Thom\"]'),(2285752,1937843,5,'director',NULL,NULL),(2285752,2278225,6,'producer','producer',NULL),(2285752,2419888,7,'composer',NULL,NULL),(2285752,1514878,8,'cinematographer','director of photography',NULL),(2285752,3912956,9,'actress',NULL,'[\"Celia\"]'),(2286988,1972345,10,'production_designer',NULL,NULL),(2286988,4291609,1,'actress',NULL,'[\"Casey\"]'),(2286988,1752221,2,'actress',NULL,'[\"Alexis Fish\"]'),(2286988,1711829,3,'actor',NULL,'[\"Dominic Sebastiani\"]'),(2286988,651067,4,'actress',NULL,'[\"Kayla Fish\"]'),(2286988,1505381,5,'director',NULL,NULL),(2286988,1912357,6,'producer','producer',NULL),(2286988,839670,7,'composer',NULL,NULL),(2286988,314485,8,'cinematographer',NULL,NULL),(2286988,1906001,9,'editor',NULL,NULL),(2287655,4288209,1,'actress',NULL,'[\"Kristin\"]'),(2287655,3804405,2,'actress',NULL,'[\"Andrea\"]'),(2287655,4262529,3,'actress',NULL,'[\"Linn\"]'),(2287655,2050806,4,'actor',NULL,'[\"Gustav\"]'),(2287655,2976232,5,'director',NULL,NULL),(2287655,803568,6,'writer',NULL,NULL),(2287655,3687608,7,'producer','producer',NULL),(2287655,5067468,8,'composer',NULL,NULL),(2287655,1686763,9,'cinematographer',NULL,NULL),(2287663,164181,10,'producer','producer',NULL),(2287663,1505375,1,'actress',NULL,'[\"Emmaline \'Emma\' Robinson\"]'),(2287663,4154798,2,'actor',NULL,'[\"Dean McMullen\"]'),(2287663,612,3,'actress',NULL,'[\"Barbara Robinson\"]'),(2287663,820520,4,'actor',NULL,'[\"Jack McMullen\"]'),(2287663,112498,5,'director',NULL,NULL),(2287663,4121,6,'director',NULL,NULL),(2287663,821070,7,'writer','based on the novel by',NULL),(2287663,1973900,8,'writer','teleplay by',NULL),(2287663,1196241,9,'writer','teleplay by',NULL),(2287715,909412,1,'actor',NULL,'[\"Sebastian\"]'),(2287715,1136429,2,'actress',NULL,'[\"Mia\"]'),(2287715,477404,3,'actress',NULL,'[\"Annelie\"]'),(2287715,27800,4,'actor',NULL,'[\"Göran\"]'),(2287715,2657081,5,'director',NULL,NULL),(2287715,584574,6,'producer','producer',NULL),(2287715,4889579,7,'composer',NULL,NULL),(2287715,2884195,8,'cinematographer',NULL,NULL),(2287715,1786180,9,'editor',NULL,NULL),(2287861,3977124,10,'editor',NULL,NULL),(2287861,3046705,1,'actress',NULL,'[\"Cory Webber\"]'),(2287861,284129,2,'actress',NULL,'[\"Laura Lucien\"]'),(2287861,4532245,3,'actress',NULL,'[\"Singing Waiter\"]'),(2287861,666556,4,'actor',NULL,'[\"Josh Davidson\"]'),(2287861,4490351,5,'director',NULL,NULL),(2287861,2379216,6,'writer','co-writer',NULL),(2287861,4541174,7,'writer',NULL,NULL),(2287861,4490064,8,'composer',NULL,NULL),(2287861,3935883,9,'cinematographer',NULL,NULL),(2288044,2477337,10,'composer',NULL,NULL),(2288044,1833770,1,'actress',NULL,'[\"Lale\"]'),(2288044,378698,2,'actor',NULL,'[\"Ludwig Sarheimer\"]'),(2288044,2414404,3,'actor',NULL,'[\"Hodscha Demirkan\"]'),(2288044,2556155,4,'actor',NULL,'[\"Marc Rehmann\"]'),(2288044,15784,5,'director',NULL,NULL),(2288044,1893665,6,'writer',NULL,NULL),(2288044,1840907,7,'writer',NULL,NULL),(2288044,818293,8,'writer',NULL,NULL),(2288044,340456,9,'producer','producer',NULL),(2289538,771526,10,'cinematographer',NULL,NULL),(2289538,366,1,'actress',NULL,'[\"Bettie\"]'),(2289538,1328088,2,'actor',NULL,'[\"Charly\"]'),(2289538,1420220,3,'actor',NULL,'[\"Alain\"]'),(2289538,1722079,4,'actress',NULL,'[\"Muriel\"]'),(2289538,73384,5,'director',NULL,NULL),(2289538,867374,6,'writer','screenplay',NULL),(2289538,216635,7,'producer','producer',NULL),(2289538,592945,8,'producer','producer',NULL),(2289538,8576688,9,'composer',NULL,NULL),(2289920,4562457,10,'cinematographer',NULL,NULL),(2289920,4781382,1,'actor',NULL,'[\"Henri Miller\"]'),(2289920,4708690,2,'actress',NULL,'[\"Margaret Miller\"]'),(2289920,3204934,3,'actress',NULL,'[\"Constance Smith\"]'),(2289920,5175557,4,'actor',NULL,'[\"John Darrow\"]'),(2289920,2342088,5,'director',NULL,NULL),(2289920,4781331,6,'producer','producer',NULL),(2289920,2632819,7,'producer','producer',NULL),(2289920,5174817,8,'producer','producer',NULL),(2289920,5174854,9,'composer',NULL,NULL),(2290819,1599810,1,'actress',NULL,'[\"Gessica\"]'),(2290819,4448255,2,'actor',NULL,'[\"Ben\"]'),(2290819,1847023,3,'actress',NULL,'[\"Cocoa\"]'),(2290819,3101670,4,'actor',NULL,'[\"Singing Bear\"]'),(2290819,3268500,5,'director',NULL,NULL),(2290819,579005,6,'producer','executive producer',NULL),(2290819,1556019,7,'composer',NULL,NULL),(2290819,3254459,8,'editor',NULL,NULL),(2290819,1982871,9,'production_designer',NULL,NULL),(2291540,8401672,10,'producer','producer',NULL),(2291540,3515425,1,'actor',NULL,'[\"Jeff Dahmer\"]'),(2291540,1842974,2,'actor',NULL,'[\"John \'Derf\' Backderf\"]'),(2291540,162,3,'actress',NULL,'[\"Joyce Dahmer\"]'),(2291540,440229,4,'actor',NULL,'[\"Dr. Matthews\"]'),(2291540,1836315,5,'director',NULL,NULL),(2291540,3994172,6,'writer','based on the book My Friend Dahmer by',NULL),(2291540,3065255,7,'producer','producer',NULL),(2291540,1761255,8,'producer','producer',NULL),(2291540,326411,9,'producer','producer',NULL),(2292794,6679704,1,'self',NULL,'[\"Self\"]'),(2292794,6679706,2,'self',NULL,'[\"Self\"]'),(2292794,6679708,3,'self',NULL,'[\"Self\"]'),(2292794,13009154,4,'self',NULL,'[\"Self\"]'),(2292794,598408,5,'director',NULL,NULL),(2292794,357192,6,'cinematographer',NULL,NULL),(2292794,460338,7,'cinematographer',NULL,NULL),(2292794,538199,8,'editor',NULL,NULL),(2293276,512744,10,'cinematographer','director of photography',NULL),(2293276,3575723,1,'actress',NULL,'[\"Emily Fox Seton\"]'),(2293276,289130,2,'actress',NULL,'[\"Mrs. Parke\"]'),(2293276,1575191,3,'actress',NULL,'[\"Jane\"]'),(2293276,525921,4,'actress',NULL,'[\"Lady Maria Byrne\"]'),(2293276,193599,5,'director',NULL,NULL),(2293276,1358357,6,'writer','written by',NULL),(2293276,122364,7,'writer','novel \'The Making of a Marchioness\'',NULL),(2293276,929820,8,'producer','producer',NULL),(2293276,485528,9,'composer',NULL,NULL),(2293640,1622910,10,'editor',NULL,NULL),(2293640,113,1,'actress',NULL,'[\"Scarlet Overkill\"]'),(2293640,358316,2,'actor',NULL,'[\"Herb Overkill\"]'),(2293640,474,3,'actor',NULL,'[\"Walter Nelson\"]'),(2293640,1853544,4,'actor',NULL,'[\"The Minions\"]'),(2293640,49633,5,'director',NULL,NULL),(2293640,528244,6,'writer','written by',NULL),(2293640,372329,7,'producer','producer',NULL),(2293640,577560,8,'producer','producer',NULL),(2293640,673137,9,'composer',NULL,NULL),(2294189,846499,10,'actress',NULL,'[\"DC Gail McNally\"]'),(2294189,96,1,'actress',NULL,'[\"DSU Stella Gibson\"]'),(2294189,1946193,2,'actor',NULL,'[\"Paul Spector\"]'),(2294189,1487,3,'actor',NULL,'[\"ACC Jim Burns\"]'),(2294189,4957233,4,'actress',NULL,'[\"Katie Benedetto\"]'),(2294189,190930,5,'writer','created by',NULL),(2294189,3287053,6,'actress',NULL,'[\"PC Danielle Ferrington\"]'),(2294189,2391026,7,'actress',NULL,'[\"Sally Ann Spector\"]'),(2294189,5664508,8,'actress',NULL,'[\"Olivia Spector\"]'),(2294189,334324,9,'actor',NULL,'[\"DCI Matthew Eastwood\"]'),(2294449,367895,10,'writer','television series \"21 Jump Street\"',NULL),(2294449,1475594,1,'actor',NULL,'[\"Jenko\"]'),(2294449,1706767,2,'actor',NULL,'[\"Schmidt\"]'),(2294449,1084,3,'actor',NULL,'[\"Captain Dickson\"]'),(2294449,644406,4,'actor',NULL,'[\"Deputy Chief Hardy\"]'),(2294449,520488,5,'director',NULL,NULL),(2294449,588087,6,'director',NULL,NULL),(2294449,45209,7,'writer','screenplay',NULL),(2294449,3349927,8,'writer','screenplay',NULL),(2294449,745247,9,'writer','screenplay',NULL),(2294629,65100,10,'composer',NULL,NULL),(2294629,68338,1,'actress',NULL,'[\"Anna\"]'),(2294629,579953,2,'actress',NULL,'[\"Elsa\"]'),(2294629,2676147,3,'actor',NULL,'[\"Kristoff\"]'),(2294629,1265802,4,'actor',NULL,'[\"Olaf\"]'),(2294629,118333,5,'director',NULL,NULL),(2294629,1601644,6,'director',NULL,NULL),(2294629,26153,7,'writer','story inspired by: \"The Snow Queen\" by',NULL),(2294629,2280850,8,'writer','story by',NULL),(2294629,1275326,9,'producer','producer',NULL),(2294677,2500,10,'editor',NULL,NULL),(2294677,1128572,1,'actress',NULL,'[\"Carol Solomon\"]'),(2294677,577329,2,'actor',NULL,'[\"Sam Soto\"]'),(2294677,1143861,3,'actress',NULL,'[\"Dani\"]'),(2294677,1117791,4,'actor',NULL,'[\"Moe\"]'),(2294677,4352987,5,'producer','producer',NULL),(2294677,2532520,6,'producer','producer',NULL),(2294677,2249488,7,'producer','producer',NULL),(2294677,1792454,8,'composer',NULL,NULL),(2294677,862946,9,'cinematographer','director of photography',NULL),(2296697,3017674,10,'production_designer',NULL,NULL),(2296697,917848,1,'actress',NULL,'[\"Abby\",\"Eleanor\"]'),(2296697,1745019,2,'actress',NULL,'[\"Sam Bennet\"]'),(2296697,1705158,3,'actor',NULL,'[\"Justin Myers\"]'),(2296697,791570,4,'actor',NULL,'[\"Graham Bennet\"]'),(2296697,4945419,5,'director',NULL,NULL),(2296697,873266,6,'producer','producer',NULL),(2296697,1054413,7,'composer',NULL,NULL),(2296697,3350641,8,'cinematographer','director of photography',NULL),(2296697,1479767,9,'editor',NULL,NULL),(2296777,1271884,10,'writer','story by',NULL),(2296777,136,1,'actor',NULL,'[\"Sherlock Gnomes\"]'),(2296777,564215,2,'actor',NULL,'[\"Gnomeo\"]'),(2296777,1289434,3,'actress',NULL,'[\"Juliet\"]'),(2296777,38432,4,'actor',NULL,'[\"Goons\"]'),(2296777,828970,5,'director',NULL,NULL),(2296777,4475394,6,'writer','screenplay by',NULL),(2296777,726978,7,'writer','story by',NULL),(2296777,147700,8,'writer','story by',NULL),(2296777,1486235,9,'writer','story by',NULL),(2298416,1346804,10,'editor',NULL,NULL),(2298416,1271759,1,'actress',NULL,'[\"Suzanne Merevsky\"]'),(2298416,1460782,2,'actor',NULL,'[\"Nicolas Merevsky\"]'),(2298416,1194748,3,'actress',NULL,'[\"Maria Merevsky\"]'),(2298416,5524273,4,'actor',NULL,'[\"Julien\"]'),(2298416,1580395,5,'director',NULL,NULL),(2298416,1768265,6,'writer','writer',NULL),(2298416,3039234,7,'producer','producer',NULL),(2298416,506357,8,'producer','producer',NULL),(2298416,1601634,9,'cinematographer',NULL,NULL),(2298820,534311,10,'producer','producer',NULL),(2298820,5181353,1,'actress',NULL,'[\"Alice\"]'),(2298820,5180960,2,'actor',NULL,'[\"Thomas\"]'),(2298820,522205,3,'actor',NULL,'[\"Pol\"]'),(2298820,5181048,4,'actor',NULL,'[\"Octave\"]'),(2298820,112456,5,'director',NULL,NULL),(2298820,941017,6,'director',NULL,NULL),(2298820,43347,7,'producer','producer',NULL),(2298820,217524,8,'producer','producer',NULL),(2298820,252970,9,'producer','producer',NULL),(2302755,503600,10,'producer','producer',NULL),(2302755,124930,1,'actor',NULL,'[\"Mike Banning\"]'),(2302755,1173,2,'actor',NULL,'[\"President Benjamin Asher\"]'),(2302755,151,3,'actor',NULL,'[\"Speaker Trumbull\"]'),(2302755,291,4,'actress',NULL,'[\"Secret Service Director Lynn Jacobs\"]'),(2302755,298807,5,'director',NULL,NULL),(2302755,4950667,6,'writer','written by',NULL),(2302755,4951717,7,'writer','written by',NULL),(2302755,146120,8,'producer','producer',NULL),(2302755,1247584,9,'producer','producer',NULL),(2303110,915872,10,'production_designer',NULL,NULL),(2303110,834282,1,'actor',NULL,'[\"Captain John Steakley\"]'),(2303110,5269,2,'actor',NULL,'[\"Colonel Carter\"]'),(2303110,920460,3,'actor',NULL,'[\"Agent Grimaldi\"]'),(2303110,941708,4,'actor',NULL,'[\"Professor Roxton\"]'),(2303110,2285209,5,'director',NULL,NULL),(2303110,1878140,6,'writer',NULL,NULL),(2303110,1249036,7,'composer',NULL,NULL),(2303110,107646,8,'cinematographer',NULL,NULL),(2303110,2113026,9,'editor',NULL,NULL),(2304426,253279,10,'cinematographer','director of photography',NULL),(2304426,5519350,1,'actor',NULL,'[\"Arbor\"]'),(2304426,5649091,2,'actor',NULL,'[\"Swifty\"]'),(2304426,318409,3,'actor',NULL,'[\"Kitten\"]'),(2304426,38690,4,'actress',NULL,'[\"Mary\"]'),(2304426,1163237,5,'director',NULL,NULL),(2304426,1474875,6,'writer','story development',NULL),(2304426,928492,7,'writer','inspired by \'The Selfish Giant\'',NULL),(2304426,1272660,8,'producer','producer',NULL),(2304426,1879532,9,'composer',NULL,NULL),(2304517,3973341,10,'editor',NULL,NULL),(2304517,4131336,1,'actress',NULL,'[\"Alice\"]'),(2304517,3811798,2,'actress',NULL,'[\"Zoe\"]'),(2304517,4953520,3,'actress',NULL,'[\"Whitney\"]'),(2304517,1019,4,'actor',NULL,'[\"Gill\"]'),(2304517,1714788,5,'director',NULL,NULL),(2304517,783119,6,'writer','screenplay',NULL),(2304517,490375,7,'producer','producer',NULL),(2304517,4158577,8,'composer',NULL,NULL),(2304517,2244594,9,'cinematographer','director of photography',NULL),(2304771,187018,10,'cinematographer','director of photography',NULL),(2304771,252961,1,'actor',NULL,'[\"Nelson Mandela\"]'),(2304771,365140,2,'actress',NULL,'[\"Winnie Madikizela\"]'),(2304771,1965907,3,'actress',NULL,'[\"Evelyn Mase\"]'),(2304771,1193091,4,'actor',NULL,'[\"Chief Warder\"]'),(2304771,149491,5,'director',NULL,NULL),(2304771,629933,6,'writer','screenplay',NULL),(2304771,541691,7,'writer','autobiography',NULL),(2304771,802081,8,'producer','producer',NULL),(2304771,373588,9,'composer',NULL,NULL),(2304933,365036,10,'producer','producer',NULL),(2304933,1631269,1,'actress',NULL,'[\"Cassie Sullivan\"]'),(2304933,2832703,2,'actor',NULL,'[\"Wounded Man with Crucifix\"]'),(2304933,4388400,3,'actress',NULL,'[\"Lizbeth\"]'),(2304933,3173395,4,'actress',NULL,'[\"Julia\"]'),(2304933,2128335,5,'director',NULL,NULL),(2304933,335666,6,'writer','screenplay by',NULL),(2304933,326040,7,'writer','screenplay by',NULL),(2304933,684374,8,'writer','screenplay by',NULL),(2304933,2130099,9,'writer','based on the novel by',NULL),(2305051,126825,10,'cinematographer',NULL,NULL),(2305051,702,1,'actress',NULL,'[\"Cheryl\"]'),(2305051,368,2,'actress',NULL,'[\"Bobbi\"]'),(2305051,451,3,'actress',NULL,'[\"Aimee\"]'),(2305051,401264,4,'actor',NULL,'[\"Jonathan\"]'),(2305051,885249,5,'director',NULL,NULL),(2305051,394984,6,'writer','screenplay by',NULL),(2305051,4952700,7,'writer','memoir \"Wild: From Lost to Found on the Pacific Crest Trail\"',NULL),(2305051,660295,8,'producer','producer',NULL),(2305051,688361,9,'producer','producer',NULL),(2306299,1379938,10,'actor',NULL,'[\"Ragnar Lothbrok\"]'),(2306299,935395,1,'actress',NULL,'[\"Lagertha\"]'),(2306299,803890,2,'actor',NULL,'[\"Floki\"]'),(2306299,1573253,3,'actor',NULL,'[\"Bjorn Lothbrok\",\"Bjorn Ragnarson\"]'),(2306299,6354997,4,'actress',NULL,'[\"Torvi\"]'),(2306299,386694,5,'writer','written by',NULL),(2306299,5405979,6,'actor',NULL,'[\"Ivar\"]'),(2306299,2356851,7,'actor',NULL,'[\"Ubbe\"]'),(2306299,3223453,8,'actor',NULL,'[\"Hvitserk\"]'),(2306299,291918,9,'actor',NULL,'[\"King Harald Finehair\"]'),(2309021,2385,10,'producer','producer',NULL),(2309021,756083,1,'actor',NULL,'[\"Frank Parker\"]'),(2309021,1024107,2,'actress',NULL,'[\"Iris Parker\"]'),(2309021,3400186,3,'actress',NULL,'[\"Rose Parker\"]'),(2309021,751518,4,'actor',NULL,'[\"Deputy Anders\"]'),(2309021,585344,5,'director',NULL,NULL),(2309021,198804,6,'writer','written by',NULL),(2309021,1664036,7,'writer','based on: the screenplay \"Somos lo que hay\" by',NULL),(2309021,1267716,8,'producer','producer',NULL),(2309021,2371958,9,'producer','producer',NULL),(2309295,3241414,10,'actress',NULL,'[\"Letha Godfrey\"]'),(2309295,463,1,'actress',NULL,'[\"Olivia Godfrey\"]'),(2309295,803889,2,'actor',NULL,'[\"Roman Godfrey\"]'),(2309295,2334994,3,'actor',NULL,'[\"Peter Rumancek\"]'),(2309295,209249,4,'actor',NULL,'[\"Johann Pryce\"]'),(2309295,2992029,5,'writer','based on the book by',NULL),(2309295,794106,6,'writer','developed by',NULL),(2309295,1503416,7,'actress',NULL,'[\"Destiny Rumancek\"]'),(2309295,779084,8,'actor',NULL,'[\"Norman Godfrey\"]'),(2309295,1502383,9,'actress',NULL,'[\"Shelley Godfrey\"]'),(2310332,192253,10,'producer','producer',NULL),(2310332,5212,1,'actor',NULL,'[\"Gandalf\"]'),(2310332,293509,2,'actor',NULL,'[\"Bilbo\"]'),(2310332,35514,3,'actor',NULL,'[\"Thorin\"]'),(2310332,949,4,'actress',NULL,'[\"Galadriel\"]'),(2310332,1392,5,'director',NULL,NULL),(2310332,909638,6,'writer','screenplay',NULL),(2310332,101991,7,'writer','screenplay',NULL),(2310332,868219,8,'writer','screenplay',NULL),(2310332,866058,9,'writer','novel \"The Hobbit\"',NULL),(2312390,2826685,10,'cinematographer',NULL,NULL),(2312390,1831420,1,'actor',NULL,'[\"Cass\",\"Silence\"]'),(2312390,4407268,2,'actress',NULL,'[\"Natalie\"]'),(2312390,2822771,3,'actress',NULL,'[\"Myriad\"]'),(2312390,4170840,4,'actor',NULL,'[\"Dundareel\"]'),(2312390,1389141,5,'director',NULL,NULL),(2312390,1392106,6,'director',NULL,NULL),(2312390,1391322,7,'writer','writer',NULL),(2312390,4233970,8,'producer','producer',NULL),(2312390,1900756,9,'cinematographer',NULL,NULL),(2312718,6142,10,'composer',NULL,NULL),(2312718,5458,1,'actor',NULL,'[\"Phil Broker\"]'),(2312718,290556,2,'actor',NULL,'[\"Morgan \'Gator\' Bodine\"]'),(2312718,213,3,'actress',NULL,'[\"Sheryl Marie Mott\"]'),(2312718,98378,4,'actress',NULL,'[\"Cassie Bodine Klum\"]'),(2312718,1219,5,'director',NULL,NULL),(2312718,230,6,'writer','screenplay by',NULL),(2312718,5335939,7,'writer','based on the novel by',NULL),(2312718,854772,8,'producer','producer',NULL),(2312718,860315,9,'producer','producer',NULL),(2312890,1021578,10,'editor',NULL,NULL),(2312890,1063517,1,'actress',NULL,'[\"Rachel\"]'),(2312890,3433566,2,'actor',NULL,'[\"Car Wash Attendant 1\"]'),(2312890,1075323,3,'actor',NULL,'[\"Car Wash Attendant 2\"]'),(2312890,528331,4,'actress',NULL,'[\"Dr. Lenore\"]'),(2312890,813561,5,'director',NULL,NULL),(2312890,149671,6,'producer','producer',NULL),(2312890,242253,7,'producer','producer',NULL),(2312890,917208,8,'composer',NULL,NULL),(2312890,296255,9,'cinematographer','director of photography',NULL),(2313197,2241067,10,'writer','comic book',NULL),(2313197,693,1,'actor',NULL,'[\"Batman\",\"Bruce Wayne\"]'),(2313197,1736769,2,'actress',NULL,'[\"Robin\",\"Carrie Kelley\"]'),(2313197,782978,3,'actor',NULL,'[\"Commissioner Gordon\"]'),(2313197,931898,4,'actor',NULL,'[\"Harvey Dent\"]'),(2313197,646515,5,'director',NULL,NULL),(2313197,4170,6,'writer','character created by: Batman',NULL),(2313197,588340,7,'writer','comic book',NULL),(2313197,2744748,8,'writer','comic book',NULL),(2313197,329213,9,'writer','written by',NULL),(2315200,917946,10,'producer','producer',NULL),(2315200,302916,1,'actor',NULL,'[\"Guillaume\",\"Maman\"]'),(2315200,545838,2,'actor',NULL,'[\"Le père\"]'),(2315200,264554,3,'actress',NULL,'[\"Babou\"]'),(2315200,305365,4,'actress',NULL,'[\"Paqui\"]'),(2315200,1139120,5,'writer','collaboration on screenplay',NULL),(2315200,4794244,6,'writer','collaboration on screenplay',NULL),(2315200,1045062,7,'producer','producer',NULL),(2315200,1045239,8,'producer','producer',NULL),(2315200,5221389,9,'producer','producer',NULL),(2315582,1011485,10,'composer',NULL,NULL),(2315582,4250763,1,'actress',NULL,'[\"Young Una\"]'),(2315582,1913734,2,'actress',NULL,'[\"Una\"]'),(2315582,1981893,3,'actor',NULL,'[\"Scott\"]'),(2315582,578853,4,'actor',NULL,'[\"Ray\"]'),(2315582,4970700,5,'director',NULL,NULL),(2315582,3017670,6,'writer','based on his play \"Blackbird\"',NULL),(2315582,3123922,7,'producer','producer',NULL),(2315582,3174627,8,'producer','producer',NULL),(2315582,235389,9,'producer','producer',NULL),(2316204,517589,10,'writer','screenplay by',NULL),(2316204,1055413,1,'actor',NULL,'[\"David\",\"Walter\"]'),(2316204,2239702,2,'actress',NULL,'[\"Daniels\"]'),(2316204,1082,3,'actor',NULL,'[\"Oram\"]'),(2316204,1144419,4,'actor',NULL,'[\"Tennessee\"]'),(2316204,631,5,'director',NULL,NULL),(2316204,639321,6,'writer','based on characters created by',NULL),(2316204,795953,7,'writer','based on characters created by',NULL),(2316204,1438698,8,'writer','story by',NULL),(2316204,338169,9,'writer','story by',NULL),(2316411,3737483,10,'composer',NULL,NULL),(2316411,350453,1,'actor',NULL,'[\"Adam + Anthony\"]'),(2316411,491259,2,'actress',NULL,'[\"Mary\"]'),(2316411,300589,3,'actress',NULL,'[\"Helen\"]'),(2316411,618,4,'actress',NULL,'[\"Mother\"]'),(2316411,898288,5,'director',NULL,NULL),(2316411,764832,6,'writer','novel \"The Double\"',NULL),(2316411,1942197,7,'writer','written by',NULL),(2316411,2049115,8,'producer','producer',NULL),(2316411,275651,9,'producer','producer',NULL),(2316801,64290,10,'cinematographer',NULL,NULL),(2316801,1993,1,'actor',NULL,'[\"La Bête\",\"Le Prince\"]'),(2316801,2244205,2,'actress',NULL,'[\"Belle\"]'),(2316801,244707,3,'actor',NULL,'[\"Le marchand\"]'),(2316801,635330,4,'actor',NULL,'[\"Perducas\"]'),(2316801,304521,5,'director',NULL,NULL),(2316801,6046765,6,'writer','scenario and dialogue',NULL),(2316801,207305,7,'writer','book',NULL),(2316801,334926,8,'producer','producer',NULL),(2316801,11910,9,'composer',NULL,NULL),(2317225,1465650,10,'production_designer',NULL,NULL),(2317225,827170,1,'actor',NULL,'[\"Vincent McCarthy\"]'),(2317225,2362068,2,'actress',NULL,'[\"Ava\",\"The Machine\"]'),(2317225,493200,3,'actor',NULL,'[\"Thomson\"]'),(2317225,1486831,4,'actor',NULL,'[\"James\"]'),(2317225,1589670,5,'director',NULL,NULL),(2317225,1952088,6,'producer','producer',NULL),(2317225,1770705,7,'composer',NULL,NULL),(2317225,117692,8,'cinematographer',NULL,NULL),(2317225,1228617,9,'editor',NULL,NULL),(2318360,1618160,10,'cinematographer',NULL,NULL),(2318360,2382590,1,'actress',NULL,'[\"Morgana\"]'),(2318360,32800,2,'actress',NULL,'[\"Aunt Carolina\"]'),(2318360,2280329,3,'actress',NULL,'[\"Sofía\"]'),(2318360,869827,4,'actor',NULL,'[\"Agustín, the gardener\"]'),(2318360,643582,5,'director',NULL,NULL),(2318360,255842,6,'producer','producer',NULL),(2318360,316037,7,'composer',NULL,NULL),(2318360,1198832,8,'cinematographer',NULL,NULL),(2318360,496775,9,'cinematographer',NULL,NULL),(2318625,43107,10,'cinematographer','director of photography',NULL),(2318625,4966502,1,'actor',NULL,'[\"Nimer Mashrawi\"]'),(2318625,2072214,2,'actor',NULL,'[\"Roy Schaffer\"]'),(2318625,2297989,3,'actor',NULL,'[\"Nabil Mashrawi\"]'),(2318625,1727781,4,'actor',NULL,'[\"Gil\"]'),(2318625,3199492,5,'director',NULL,NULL),(2318625,4966241,6,'writer','co-writer',NULL),(2318625,3743845,7,'producer','producer',NULL),(2318625,3705821,8,'composer',NULL,NULL),(2318625,4965369,9,'composer',NULL,NULL),(2319580,3753061,10,'composer',NULL,NULL),(2319580,2018237,1,'actor',NULL,'[\"Dr. Paul Lewis\"]'),(2319580,322407,2,'actor',NULL,'[\"Murray French\"]'),(2319580,49313,3,'actress',NULL,'[\"Kathleen\"]'),(2319580,684521,4,'actor',NULL,'[\"Simon\"]'),(2319580,1528,5,'director',NULL,NULL),(2319580,779433,6,'writer','written by',NULL),(2319580,236226,7,'writer','written by',NULL),(2319580,233353,8,'producer','producer',NULL),(2319580,292024,9,'producer','producer',NULL),(2321187,1452197,10,'actor',NULL,'[\"Additional Voices\"]'),(2321187,643885,1,'actor',NULL,'[\"Yuji Tamiya\"]'),(2321187,848801,2,'actress',NULL,'[\"Ai\"]'),(2321187,623605,3,'actor',NULL,'[\"Domeki\"]'),(2321187,657139,4,'actress',NULL,'[\"Tao\"]'),(2321187,465160,5,'actor',NULL,'[\"Kaneshiro\"]'),(2321187,386286,6,'actor',NULL,'[\"Chanpua\"]'),(2321187,594074,7,'actress',NULL,'[\"Mitsuki\"]'),(2321187,312656,8,'actor',NULL,'[\"Kudou\"]'),(2321187,132285,9,'actor',NULL,'[\"Additional Voices\"]'),(2321405,7751721,10,'writer','english script adaptation',NULL),(2321405,8101777,1,'actor',NULL,'[\"Courgette\"]'),(2321405,8101778,2,'actress',NULL,'[\"Camille\"]'),(2321405,4343886,3,'actor',NULL,'[\"Simon\"]'),(2321405,904273,4,'actor',NULL,'[\"Raymond\"]'),(2321405,1957706,5,'director',NULL,NULL),(2321405,1780037,6,'writer','screenplay',NULL),(2321405,622973,7,'writer','contributing writer',NULL),(2321405,4966991,8,'writer','contributing writer',NULL),(2321405,2951613,9,'writer','novel \"Autobiographie d\'une courgette\"',NULL),(2321502,724950,10,'composer',NULL,NULL),(2321502,916406,1,'actor',NULL,'[\"David Kressen\"]'),(2321502,1134641,2,'actor',NULL,'[\"Adam Kressen\"]'),(2321502,2189625,3,'actress',NULL,'[\"Joy Andrews\"]'),(2321502,933988,4,'actor',NULL,'[\"Castle\"]'),(2321502,505075,5,'director',NULL,NULL),(2321502,2839612,6,'writer','written by',NULL),(2321502,3354200,7,'producer','producer',NULL),(2321502,3091091,8,'producer','producer',NULL),(2321502,765394,9,'producer','producer',NULL),(2321549,633354,10,'editor',NULL,NULL),(2321549,204583,1,'actress',NULL,'[\"Amelia Vanek\"]'),(2321549,5231168,2,'actor',NULL,'[\"Samuel\"]'),(2321549,2989873,3,'actor',NULL,'[\"Robbie\"]'),(2321549,568399,4,'actress',NULL,'[\"Claire\"]'),(2321549,448768,5,'director',NULL,NULL),(2321549,373829,6,'producer','producer',NULL),(2321549,1202788,7,'producer','producer',NULL),(2321549,1011485,8,'composer',NULL,NULL),(2321549,2043246,9,'cinematographer','director of photography',NULL),(2322441,384,10,'composer',NULL,NULL),(2322441,424848,1,'actress',NULL,'[\"Anastasia Steele\"]'),(2322441,1946193,2,'actor',NULL,'[\"Christian Grey\"]'),(2322441,383,3,'actress',NULL,'[\"Carla\"]'),(2322441,3037833,4,'actress',NULL,'[\"Kate\"]'),(2322441,853374,5,'director',NULL,NULL),(2322441,545150,6,'writer','screenplay by',NULL),(2322441,1093317,7,'writer','based on the novel by',NULL),(2322441,116232,8,'producer','producer',NULL),(2322441,6894,9,'producer','producer',NULL),(2322517,204487,10,'cinematographer',NULL,NULL),(2322517,1209966,1,'actor',NULL,'[\"Jack\"]'),(2322517,1330560,2,'actor',NULL,'[\"Tom\"]'),(2322517,2864046,3,'actress',NULL,'[\"Milly\"]'),(2322517,949409,4,'actor',NULL,'[\"Old-Timer\"]'),(2322517,1184258,5,'director',NULL,NULL),(2322517,2686934,6,'producer','producer',NULL),(2322517,1094495,7,'producer','producer',NULL),(2322517,3540960,8,'producer','producer',NULL),(2322517,2127991,9,'composer',NULL,NULL),(2322603,4432234,10,'producer','producer',NULL),(2322603,2583829,1,'actress',NULL,'[\"Shizuka Hattori\"]'),(2322603,6548466,2,'actress',NULL,'[\"Heidemarie W. Schnaufer\"]'),(2322603,1215197,3,'actor',NULL,'[\"Additional Voices\"]'),(2322603,1236503,4,'actor',NULL,'[\"Additional Voices\"]'),(2322603,1160487,5,'director',NULL,NULL),(2322603,3158487,6,'writer','manga',NULL),(2322603,881544,7,'writer',NULL,NULL),(2322603,946694,8,'writer',NULL,NULL),(2322603,2562763,9,'writer',NULL,NULL),(2325989,492714,10,'composer',NULL,NULL),(2325989,3515425,1,'actor',NULL,'[\"Brady\"]'),(2325989,2314596,2,'actress',NULL,'[\"McKenzie\",\"Mack\"]'),(2325989,3966682,3,'actress',NULL,'[\"Lela\"]'),(2325989,2372412,4,'actor',NULL,'[\"Tanner\"]'),(2325989,394944,5,'director',NULL,NULL),(2325989,1479803,6,'writer','story by',NULL),(2325989,1479948,7,'writer','story by',NULL),(2325989,394911,8,'writer','teleplay by',NULL),(2325989,2638,9,'producer','producer',NULL),(2326087,123394,10,'cinematographer','director of photography',NULL),(2326087,3127051,1,'actress',NULL,'[\"Skylar Lewis\"]'),(2326087,1748388,2,'actress',NULL,'[\"Sadie\"]'),(2326087,2063811,3,'actor',NULL,'[\"Henry\"]'),(2326087,3031063,4,'actress',NULL,'[\"Myra Santelli\"]'),(2326087,318795,5,'director',NULL,NULL),(2326087,223395,6,'writer','story',NULL),(2326087,569130,7,'writer','teleplay',NULL),(2326087,420326,8,'producer','producer',NULL),(2326087,242084,9,'composer',NULL,NULL),(2326554,1503298,10,'cinematographer',NULL,NULL),(2326554,2611074,1,'actress',NULL,'[\"The Girl\"]'),(2326554,4256281,2,'actor',NULL,'[\"Arash\"]'),(2326554,542000,3,'actor',NULL,'[\"Hossein \'The Junkie\'\"]'),(2326554,2236560,4,'actress',NULL,'[\"Atti \'The Prostitute\'\"]'),(2326554,3235877,5,'director',NULL,NULL),(2326554,2942848,6,'producer','producer',NULL),(2326554,3152436,7,'producer','producer',NULL),(2326554,3236844,8,'producer','producer',NULL),(2326554,9222384,9,'composer',NULL,NULL),(2328503,2156696,10,'producer','producer',NULL),(2328503,351710,1,'actress',NULL,'[\"Hyun Jung Hwa\"]'),(2328503,46277,2,'actress',NULL,'[\"Li Bun Hui\"]'),(2328503,3680658,3,'actress',NULL,'[\"Soon-bok Yoo\"]'),(2328503,4274963,4,'actress',NULL,'[\"Yeon-jeon Choi\"]'),(2328503,4975337,5,'director',NULL,NULL),(2328503,5587369,6,'writer','screenplay',NULL),(2328503,5312974,7,'writer','screenplay',NULL),(2328503,8356897,8,'writer','screenplay adaptation',NULL),(2328503,1530832,9,'producer','producer',NULL),(2328549,175829,10,'cinematographer',NULL,NULL),(2328549,4975765,1,'actress',NULL,'[\"Niamh\"]'),(2328549,687692,2,'actress',NULL,'[\"Nat Galin\"]'),(2328549,2073546,3,'actor',NULL,'[\"Lucas Galin\"]'),(2328549,4091076,4,'actress',NULL,'[\"Tanya Collins\"]'),(2328549,888418,5,'director',NULL,NULL),(2328549,96266,6,'producer','producer',NULL),(2328549,650251,7,'producer','producer',NULL),(2328549,811773,8,'producer','producer',NULL),(2328549,1823621,9,'composer',NULL,NULL),(2328749,448568,10,'cinematographer','director of photography',NULL),(2328749,1451,1,'actress',NULL,'[\"M\'Lynn\"]'),(2328749,3568698,2,'actress',NULL,'[\"Shelby\"]'),(2328749,5569,3,'actress',NULL,'[\"Ouiser\"]'),(2328749,711118,4,'actress',NULL,'[\"Clairee\"]'),(2328749,502497,5,'director',NULL,NULL),(2328749,548736,6,'writer','teleplay by',NULL),(2328749,363326,7,'writer','based upon the play by',NULL),(2328749,741889,8,'producer','producer',NULL),(2328749,743919,9,'composer',NULL,NULL),(2328900,371735,10,'producer','producer',NULL),(2328900,1519680,1,'actress',NULL,'[\"Mary Stuart\"]'),(2328900,3053338,2,'actress',NULL,'[\"Queen Elizabeth I\"]'),(2328900,4110963,3,'actor',NULL,'[\"Henry Darnley\"]'),(2328900,7153679,4,'actor',NULL,'[\"Robert Dudley\"]'),(2328900,6066050,5,'director',NULL,NULL),(2328900,2802722,6,'writer','screenplay by',NULL),(2328900,3288103,7,'writer','based on the book \"Queen of Scots: The True Life of Mary Stuart\" by',NULL),(2328900,79677,8,'producer','producer',NULL),(2328900,271479,9,'producer','producer',NULL),(2330312,419403,10,'actress',NULL,'[\"Cymbeline\"]'),(2330312,1868320,1,'actress',NULL,'[\"Sasha\"]'),(2330312,249550,2,'actress',NULL,'[\"Lina\"]'),(2330312,376860,3,'actress',NULL,'[\"Yasmin\"]'),(2330312,391738,4,'actor',NULL,'[\"Dylan\"]'),(2330312,268741,5,'director',NULL,NULL),(2330312,421079,6,'writer','written by',NULL),(2330312,5209223,7,'producer','producer',NULL),(2330312,949899,8,'producer','producer',NULL),(2330312,1720431,9,'composer',NULL,NULL),(2330546,4469012,10,'writer','consultant',NULL),(2330546,77622,1,'actress',NULL,'[\"Rose\"]'),(2330546,882,2,'actress',NULL,'[\"Colette\"]'),(2330546,244707,3,'actor',NULL,'[\"Richard\"]'),(2330546,1109153,4,'actress',NULL,'[\"Jessica\"]'),(2330546,2277061,5,'director',NULL,NULL),(2330546,1105000,6,'writer','scenario',NULL),(2330546,3960972,7,'writer','scenario',NULL),(2330546,5773231,8,'writer','scenario',NULL),(2330546,1602507,9,'writer','adaptation',NULL),(2331143,3431763,10,'composer','co-composer',NULL),(2331143,298048,1,'actor',NULL,'[\"Ryota Nonomiya\"]'),(2331143,648762,2,'actress',NULL,'[\"Midori Nonomiya\"]'),(2331143,1536988,3,'actress',NULL,'[\"Yukari Saiki\"]'),(2331143,1410940,4,'actor',NULL,'[\"Yudai Saiki\"]'),(2331143,466153,5,'director',NULL,NULL),(2331143,3022813,6,'producer','producer',NULL),(2331143,1460332,7,'producer','producer',NULL),(2331143,6222423,8,'composer','co-composer',NULL),(2331143,6222422,9,'composer','co-composer',NULL),(2332579,1380786,10,'editor',NULL,NULL),(2332579,148418,1,'actor',NULL,'[\"Jamie\"]'),(2332579,451,2,'actress',NULL,'[\"Crystal Fairy\"]'),(2332579,5383638,3,'actor',NULL,'[\"Champa\"]'),(2332579,2927993,4,'actor',NULL,'[\"Pilo\"]'),(2332579,2928364,5,'director',NULL,NULL),(2332579,2213147,6,'producer','producer',NULL),(2332579,1883257,7,'producer','producer',NULL),(2332579,3081403,8,'composer',NULL,NULL),(2332579,3556277,9,'cinematographer','director of photography',NULL),(2333784,503600,10,'producer','producer',NULL),(2333784,230,1,'actor',NULL,'[\"Barney Ross\"]'),(2333784,5458,2,'actor',NULL,'[\"Lee Christmas\"]'),(2333784,1472,3,'actor',NULL,'[\"Yin Yang\"]'),(2333784,104,4,'actor',NULL,'[\"Galgo\"]'),(2333784,400850,5,'director',NULL,NULL),(2333784,4950667,6,'writer','screenplay',NULL),(2333784,4951717,7,'writer','screenplay',NULL),(2333784,1709264,8,'writer','characters',NULL),(2333784,503592,9,'producer','producer',NULL),(2333804,669797,10,'cinematographer','director of photography',NULL),(2333804,910607,1,'actor',NULL,'[\"Qohen Leth\"]'),(2333804,2348627,2,'actor',NULL,'[\"Bob\"]'),(2333804,858048,3,'actress',NULL,'[\"Bainsley\"]'),(2333804,667,4,'actor',NULL,'[\"Joby\"]'),(2333804,416,5,'director',NULL,NULL),(2333804,5210575,6,'writer','screenplay',NULL),(2333804,1291566,7,'producer','producer',NULL),(2333804,953124,8,'producer','producer',NULL),(2333804,6070,9,'composer',NULL,NULL),(2334649,2711975,10,'editor',NULL,NULL),(2334649,430107,1,'actor',NULL,'[\"Oscar Grant\"]'),(2334649,246686,2,'actress',NULL,'[\"Sophina\"]'),(2334649,818055,3,'actress',NULL,'[\"Wanda\"]'),(2334649,243806,4,'actor',NULL,'[\"Officer Caruso\"]'),(2334649,3363032,5,'director',NULL,NULL),(2334649,1341146,6,'producer','producer',NULL),(2334649,1845,7,'producer','producer',NULL),(2334649,3234869,8,'composer',NULL,NULL),(2334649,1121126,9,'cinematographer','director of photography',NULL),(2334733,1342398,10,'composer',NULL,NULL),(2334733,1985859,1,'actress',NULL,'[\"Emma Bovary\"]'),(2334733,406975,2,'actor',NULL,'[\"Monsieur Lheureux\"]'),(2334733,3009232,3,'actor',NULL,'[\"Léon Dupuis\"]'),(2334733,1334869,4,'actor',NULL,'[\"Marquis d\'Andervilliers\"]'),(2334733,1754436,5,'director',NULL,NULL),(2334733,2094135,6,'writer','screenplay by',NULL),(2334733,281306,7,'writer','based on the novel by',NULL),(2334733,4263117,8,'producer','producer',NULL),(2334733,1765773,9,'producer','producer',NULL),(2334871,867768,10,'producer','producer',NULL),(2334871,2154960,1,'actress',NULL,'[\"Emily Middleton\"]'),(2334871,443,2,'actress',NULL,'[\"Linda Middleton\"]'),(2334871,5671708,3,'actress',NULL,'[\"Shopper\"]'),(2334871,329538,4,'actress',NULL,'[\"Lew\"]'),(2334871,1349522,5,'director',NULL,NULL),(2334871,1767754,6,'writer','written by',NULL),(2334871,1858656,7,'producer','producer',NULL),(2334871,82450,8,'producer','producer',NULL),(2334871,2295810,9,'producer','producer',NULL),(2334873,503429,10,'editor',NULL,NULL),(2334873,949,1,'actress',NULL,'[\"Jasmine\"]'),(2334873,285,2,'actor',NULL,'[\"Hal\"]'),(2334873,765597,3,'actor',NULL,'[\"Dwight\"]'),(2334873,1020089,4,'actress',NULL,'[\"Ginger\"]'),(2334873,95,5,'director',NULL,NULL),(2334873,36981,6,'producer','producer',NULL),(2334873,1008264,7,'producer','producer',NULL),(2334873,2304996,8,'producer','producer',NULL),(2334873,13761,9,'cinematographer','director of photography',NULL),(2334879,460057,10,'producer','producer',NULL),(2334879,1475594,1,'actor',NULL,'[\"Cale\"]'),(2334879,4937,2,'actor',NULL,'[\"President Sawyer\"]'),(2334879,350454,3,'actress',NULL,'[\"Finnerty\"]'),(2334879,164809,4,'actor',NULL,'[\"Stenz\"]'),(2334879,386,5,'director',NULL,NULL),(2334879,888743,6,'writer','written by',NULL),(2334879,1329482,7,'producer','producer',NULL),(2334879,290581,8,'producer','producer',NULL),(2334879,436164,9,'producer','producer',NULL),(2334896,4798740,1,'actor',NULL,'[\"Matt\"]'),(2334896,5178247,2,'actor',NULL,'[\"Owen\"]'),(2334896,6331196,3,'actor',NULL,'[\"Boy in Park 1\"]'),(2334896,6331197,4,'actor',NULL,'[\"Boy in Park 2\"]'),(2334896,5215273,5,'writer','story',NULL),(2334896,2530291,6,'writer','written by',NULL),(2334896,1546969,7,'writer','story editor',NULL),(2334896,2910091,8,'producer','producer',NULL),(2334896,2340891,9,'composer',NULL,NULL),(2336846,719024,10,'editor',NULL,NULL),(2336846,1564087,1,'actress',NULL,'[\"Sarah\"]'),(2336846,5959612,2,'archive_footage',NULL,'[\"Self - Suspect\"]'),(2336846,13283860,3,'archive_footage',NULL,'[\"Self - Suspect\"]'),(2336846,680603,4,'actress',NULL,'[\"Jamie\"]'),(2336846,367538,5,'director',NULL,NULL),(2336846,862787,6,'writer','written by',NULL),(2336846,434838,7,'producer','producer',NULL),(2336846,2257177,8,'composer',NULL,NULL),(2336846,805918,9,'cinematographer','director of photography',NULL),(2336960,495790,10,'editor',NULL,NULL),(2336960,9571584,1,'actor',NULL,'[\"Garçon\"]'),(2336960,9571585,2,'actor',NULL,'[\"Serveur terrasse\"]'),(2336960,3227954,3,'actor',NULL,'[\"Itamar\"]'),(2336960,2903342,4,'actress',NULL,'[\"Chloé\"]'),(2336960,1932706,5,'director',NULL,NULL),(2336960,246404,6,'producer','producer',NULL),(2336960,566919,7,'producer','producer',NULL),(2336960,586284,8,'composer',NULL,NULL),(2336960,491722,9,'cinematographer',NULL,NULL),(2338151,1381050,10,'cinematographer',NULL,NULL),(2338151,451148,1,'actor',NULL,'[\"PK\"]'),(2338151,3087728,2,'actress',NULL,'[\"Jagat Janani Sahni (Jaggu)\"]'),(2338151,4569,3,'actor',NULL,'[\"Bhairon Singh\"]'),(2338151,1224082,4,'actor',NULL,'[\"Cherry Bajwa\"]'),(2338151,386246,5,'director',NULL,NULL),(2338151,430785,6,'writer',NULL,NULL),(2338151,6765,7,'producer','producer',NULL),(2338151,3777780,8,'composer',NULL,NULL),(2338151,596240,9,'composer',NULL,NULL),(2338454,2673579,10,'producer','producer',NULL),(2338454,488953,1,'actress',NULL,'[\"Kit\"]'),(2338454,168,2,'actor',NULL,'[\"The Salesman\"]'),(2338454,349,3,'actress',NULL,'[\"Gladys\"]'),(2338454,925966,4,'actor',NULL,'[\"Gene\"]'),(2338454,1916239,5,'writer','written by',NULL),(2338454,1556829,6,'producer','producer',NULL),(2338454,234806,7,'producer','producer',NULL),(2338454,281508,8,'producer','producer',NULL),(2338454,1987578,9,'producer','producer',NULL),(2338864,2775581,10,'cinematographer',NULL,NULL),(2338864,11929,1,'actress',NULL,'[\"Verkäuferin\"]'),(2338864,1047726,2,'actor',NULL,'[\"Lehrer Nickel\"]'),(2338864,141380,3,'actress',NULL,'[\"Frau Sandberg\"]'),(2338864,3617350,4,'actor',NULL,'[\"Maximilian Sandberg\"]'),(2338864,2746964,5,'director',NULL,NULL),(2338864,3440231,6,'writer',NULL,NULL),(2338864,1308591,7,'producer','producer',NULL),(2338864,2087765,8,'producer','producer',NULL),(2338864,5543711,9,'composer',NULL,NULL),(2339741,413970,10,'producer','producer',NULL),(2339741,567031,1,'actress',NULL,'[\"Jean Hogg\"]'),(2339741,3528539,2,'actor',NULL,'[\"Harry Burnstow\"]'),(2339741,4555381,3,'actress',NULL,'[\"Eve Parkins\"]'),(2339741,1569065,4,'actress',NULL,'[\"The Woman in Black\"]'),(2339741,2197777,5,'director',NULL,NULL),(2339741,1638619,6,'writer','screenplay by',NULL),(2339741,384702,7,'writer','story by',NULL),(2339741,1180690,8,'producer','producer',NULL),(2339741,1592118,9,'producer','producer',NULL),(2340650,3680598,1,'actress',NULL,'[\"Juana\"]'),(2340650,1798276,2,'actor',NULL,'[\"Aki\"]'),(2340650,5705627,3,'actor',NULL,'[\"Apa\"]'),(2340650,5705818,4,'actress',NULL,'[\"Lydia\"]'),(2340650,524461,5,'director',NULL,NULL),(2340650,2178299,6,'producer','producer',NULL),(2340650,2085191,7,'composer',NULL,NULL),(2340650,742276,8,'cinematographer',NULL,NULL),(2343371,130846,10,'cinematographer',NULL,NULL),(2343371,314358,1,'actress',NULL,'[\"Gilda\"]'),(2343371,135404,2,'actress',NULL,'[\"Olivia\"]'),(2343371,408234,3,'actress',NULL,'[\"Crocetta\"]'),(2343371,3036436,4,'actor',NULL,'[\"Ispettore Nico Malachia\"]'),(2343371,2782251,5,'director',NULL,NULL),(2343371,94565,6,'writer',NULL,NULL),(2343371,3093424,7,'producer','producer',NULL),(2343371,502918,8,'producer','producer',NULL),(2343371,145840,9,'composer',NULL,NULL),(2345567,2711,10,'editor',NULL,NULL),(2345567,1113550,1,'actress',NULL,'[\"Lisa\"]'),(2345567,653660,2,'actor',NULL,'[\"Bruce\"]'),(2345567,634409,3,'actress',NULL,'[\"Carol\"]'),(2345567,565569,4,'actor',NULL,'[\"Pale Man\"]'),(2345567,622112,5,'director',NULL,NULL),(2345567,454521,6,'writer','written by',NULL),(2345567,387541,7,'producer','producer',NULL),(2345567,1040487,8,'composer',NULL,NULL),(2345567,423632,9,'cinematographer','director of photography',NULL),(2345737,1161987,10,'cinematographer','director of photography',NULL),(2345737,1602,1,'actor',NULL,'[\"Eric\"]'),(2345737,1500155,2,'actor',NULL,'[\"Rey\"]'),(2345737,1058940,3,'actor',NULL,'[\"Henry\"]'),(2345737,275913,4,'actor',NULL,'[\"Archie\"]'),(2345737,2391575,5,'director',NULL,NULL),(2345737,249291,6,'writer','based on a story by',NULL),(2345737,511482,7,'producer','producer',NULL),(2345737,915192,8,'producer','producer',NULL),(2345737,664020,9,'composer',NULL,NULL),(2345759,525886,10,'writer','screen story by',NULL),(2345759,129,1,'actor',NULL,'[\"Nick Morton\"]'),(2345759,1154749,2,'actress',NULL,'[\"Ahmanet\"]'),(2345759,1834115,3,'actress',NULL,'[\"Jenny Halsey\"]'),(2345759,128,4,'actor',NULL,'[\"Henry Jekyll\"]'),(2345759,476064,5,'director',NULL,NULL),(2345759,462895,6,'writer','screenplay by',NULL),(2345759,3160,7,'writer','screenplay by',NULL),(2345759,476378,8,'writer','screenplay by',NULL),(2345759,3123612,9,'writer','screen story by',NULL),(2346744,5222596,10,'composer','music director',NULL),(2346744,12422297,1,'actor',NULL,NULL),(2346744,52532,2,'actor',NULL,'[\"Nikhil Dabur\'s Father\"]'),(2346744,77681,3,'actor',NULL,'[\"Danny DiGama\"]'),(2346744,2768910,4,'actress',NULL,'[\"Kanishka\"]'),(2346744,3805636,5,'director',NULL,NULL),(2346744,5416061,6,'writer',NULL,NULL),(2346744,5466057,7,'writer','writer',NULL),(2346744,1185342,8,'writer','written by',NULL),(2346744,5223244,9,'producer','producer',NULL),(2347569,2352780,10,'editor',NULL,NULL),(2347569,1950086,1,'actress',NULL,'[\"Frances\"]'),(2347569,2316017,2,'actress',NULL,'[\"Sophie\"]'),(2347569,3485845,3,'actor',NULL,'[\"Lev\"]'),(2347569,1652433,4,'actor',NULL,'[\"Benji\"]'),(2347569,876,5,'director',NULL,NULL),(2347569,748784,6,'producer','producer',NULL),(2347569,2095560,7,'producer','producer',NULL),(2347569,944803,8,'producer','producer',NULL),(2347569,1240085,9,'cinematographer','director of photography',NULL),(2349460,2716956,10,'producer','producer',NULL),(2349460,1404488,1,'actress',NULL,'[\"Gracie Trey\"]'),(2349460,1576552,2,'actress',NULL,'[\"Renae Taylor\"]'),(2349460,219835,3,'actor',NULL,'[\"Johnny Trey\"]'),(2349460,1629,4,'actor',NULL,'[\"Frank \'Mossy\' Mostin\"]'),(2349460,798888,5,'director',NULL,NULL),(2349460,2005175,6,'writer','story',NULL),(2349460,2994180,7,'writer','story',NULL),(2349460,2122783,8,'producer','producer',NULL),(2349460,1007773,9,'producer','producer',NULL),(2350496,2068037,10,'composer',NULL,NULL),(2350496,451234,1,'actor',NULL,'[\"Saajan Fernandes\"]'),(2350496,1909661,2,'actress',NULL,'[\"Ila\"]'),(2350496,1596350,3,'actor',NULL,'[\"Shaikh\"]'),(2350496,239267,4,'actress',NULL,'[\"Ila\'s Mother\"]'),(2350496,3592235,5,'director',NULL,NULL),(2350496,3035236,6,'writer','hindi dialogue consultant',NULL),(2350496,440604,7,'producer','producer',NULL),(2350496,1944105,8,'producer','producer',NULL),(2350496,3821667,9,'producer','producer',NULL),(2351098,3282373,10,'editor',NULL,NULL),(2351098,2049067,1,'actress',NULL,'[\"Jen\"]'),(2351098,659374,2,'actor',NULL,'[\"Kyle\"]'),(2351098,3500582,3,'actress',NULL,'[\"Mika\"]'),(2351098,5226793,4,'actor',NULL,'[\"Doug\"]'),(2351098,2081116,5,'director',NULL,NULL),(2351098,2030135,6,'producer','producer',NULL),(2351098,3112301,7,'producer','producer',NULL),(2351098,4826343,8,'composer',NULL,NULL),(2351098,2012439,9,'cinematographer',NULL,NULL),(2352488,491082,1,'actor',NULL,'[\"Val\",\"Steve\"]'),(2352488,5266716,2,'actor',NULL,'[\"Master Avery\"]'),(2352488,290556,3,'actor',NULL,'[\"James\"]'),(2352488,1953841,4,'actor',NULL,'[\"Travis\"]'),(2352488,3158680,5,'producer','producer',NULL),(2352488,1401178,6,'producer','producer',NULL),(2352488,3482736,7,'composer',NULL,NULL),(2352488,1431138,8,'cinematographer',NULL,NULL),(2352488,2137588,9,'cinematographer',NULL,NULL),(2354196,2074459,1,'actress',NULL,'[\"Wen Yan\"]'),(2354196,849919,2,'actor',NULL,'[\"Wang Beiji\"]'),(2354196,1253217,3,'actor',NULL,'[\"Guangtou Liu (Bald Liu)\"]'),(2354196,482695,4,'actor',NULL,'[\"Zhao Dazui\"]'),(2354196,4725115,5,'director',NULL,NULL),(2354196,4593484,6,'producer','producer',NULL),(2354196,4409824,7,'cinematographer',NULL,NULL),(2354196,3304681,8,'editor',NULL,NULL),(2354196,955780,9,'editor',NULL,NULL),(2355495,344738,10,'cinematographer','director of photography',NULL),(2355495,939697,1,'actress',NULL,'[\"Daisy Kensington\"]'),(2355495,5454,2,'actor',NULL,'[\"Jay Wheeler\"]'),(2355495,799777,3,'actor',NULL,'[\"Dr. Bertleman\"]'),(2355495,1852,4,'actor',NULL,'[\"Mr. Wheeler\"]'),(2355495,281598,5,'director',NULL,NULL),(2355495,1837015,6,'writer','written by',NULL),(2355495,4998084,7,'producer','producer',NULL),(2355495,1005373,8,'producer','producer',NULL),(2355495,5304,9,'composer',NULL,NULL),(2355540,2090073,10,'editor',NULL,NULL),(2355540,5230401,1,'self',NULL,'[\"Self\"]'),(2355540,5230596,2,'self',NULL,'[\"Self\"]'),(2355540,5902069,3,'self',NULL,'[\"Self\"]'),(2355540,5542960,4,'self',NULL,'[\"Self\"]'),(2355540,2784978,5,'director',NULL,NULL),(2355540,5477660,6,'producer','producer',NULL),(2355540,212990,7,'producer','producer',NULL),(2355540,2218225,8,'producer','producer',NULL),(2355540,793697,9,'composer',NULL,NULL),(2357263,1911788,10,'editor',NULL,NULL),(2357263,1860,1,'actress',NULL,'[\"Nina\"]'),(2357263,385644,2,'actress',NULL,'[\"Deborah\"]'),(2357263,907427,3,'actress',NULL,'[\"Lindsay\"]'),(2357263,5481,4,'actress',NULL,'[\"Elizabeth Utley\"]'),(2357263,2034711,5,'director',NULL,NULL),(2357263,2035913,6,'producer','producer',NULL),(2357263,3323131,7,'producer','producer',NULL),(2357263,5025914,8,'composer',NULL,NULL),(2357263,3171433,9,'cinematographer',NULL,NULL),(2357291,185934,10,'writer','story consultant',NULL),(2357291,251986,1,'actor',NULL,'[\"Blu\"]'),(2357291,4266,2,'actress',NULL,'[\"Jewel\"]'),(2357291,1318596,3,'actor',NULL,'[\"Nigel\"]'),(2357291,412,4,'actor',NULL,'[\"Eduardo\"]'),(2357291,757858,5,'director',NULL,NULL),(2357291,722610,6,'writer','screenplay by',NULL),(2357291,6423183,7,'writer','screenplay by',NULL),(2357291,81081,8,'writer','screenplay by',NULL),(2357291,3229505,9,'writer','screenplay by',NULL),(2358592,5683923,10,'producer','producer',NULL),(2358592,4401889,1,'actor',NULL,'[\"Nikhil\"]'),(2358592,4941738,2,'actress',NULL,'[\"Shwetha\"]'),(2358592,5724719,3,'actor',NULL,'[\"Shankranna\"]'),(2358592,3424525,4,'actress',NULL,'[\"Sabreen\"]'),(2358592,5237694,5,'director',NULL,NULL),(2358592,5931657,6,'producer','producer',NULL),(2358592,5931658,7,'producer','producer',NULL),(2358592,5931659,8,'producer','producer',NULL),(2358592,5931656,9,'producer','producer',NULL),(2358891,81723,10,'cinematographer',NULL,NULL),(2358891,785842,1,'actor',NULL,'[\"Jep Gambardella\"]'),(2358891,893872,2,'actor',NULL,'[\"Romano\"]'),(2358891,272677,3,'actress',NULL,'[\"Ramona\"]'),(2358891,117911,4,'actor',NULL,'[\"Lello Cava\"]'),(2358891,815204,5,'director',NULL,NULL),(2358891,176197,6,'writer','screenplay',NULL),(2358891,162317,7,'producer','producer',NULL),(2358891,321333,8,'producer','producer',NULL),(2358891,545661,9,'composer',NULL,NULL),(2358925,586969,10,'producer','producer',NULL),(2358925,681,1,'actor',NULL,'[\"Dan Trunkman\"]'),(2358925,2002649,2,'actor',NULL,'[\"Mike Pancake\"]'),(2358925,929489,3,'actor',NULL,'[\"Timothy McWinters\"]'),(2358925,5188,4,'actor',NULL,'[\"Jim Spinch\"]'),(2358925,779433,5,'director',NULL,NULL),(2358925,175726,6,'writer','written by',NULL),(2358925,85542,7,'producer','producer',NULL),(2358925,89820,8,'producer','producer',NULL),(2358925,441097,9,'producer','producer',NULL),(2359024,1957540,10,'composer',NULL,NULL),(2359024,86301,1,'actor',NULL,'[\"Dwight\"]'),(2359024,711864,2,'actor',NULL,'[\"Ben Gaffney\"]'),(2359024,362955,3,'actress',NULL,'[\"Sam\"]'),(2359024,463828,4,'actor',NULL,'[\"Teddy Cleland\"]'),(2359024,1099918,5,'director',NULL,NULL),(2359024,2568423,6,'producer','producer',NULL),(2359024,3346403,7,'producer','producer',NULL),(2359024,1507013,8,'producer','producer',NULL),(2359024,1298270,9,'composer',NULL,NULL),(2361317,724744,10,'cinematographer','director of photography',NULL),(2361317,255,1,'actor',NULL,'[\"Joe Coughlin\"]'),(2361317,1102577,2,'actress',NULL,'[\"Loretta Figgis\"]'),(2361317,322407,3,'actor',NULL,'[\"Thomas Coughlin\"]'),(2361317,582149,4,'actor',NULL,'[\"Dion Bartolo\"]'),(2361317,1212331,5,'writer','based on the novel by',NULL),(2361317,2248832,6,'producer','producer',NULL),(2361317,138,7,'producer','producer',NULL),(2361317,865189,8,'producer','producer',NULL),(2361317,4581,9,'composer',NULL,NULL),(2361509,954034,10,'production_designer',NULL,NULL),(2361509,134,1,'actor',NULL,'[\"Ben\"]'),(2361509,4266,2,'actress',NULL,'[\"Jules\"]'),(2361509,623,3,'actress',NULL,'[\"Fiona\"]'),(2361509,2981082,4,'actor',NULL,'[\"Matt\"]'),(2361509,583600,5,'director',NULL,NULL),(2361509,268616,6,'producer','producer',NULL),(2361509,788640,7,'composer',NULL,NULL),(2361509,3552,8,'cinematographer',NULL,NULL),(2361509,500371,9,'editor',NULL,NULL),(2364841,586969,10,'producer','producer',NULL),(2364841,255,1,'actor',NULL,'[\"Ivan Block\"]'),(2364841,5493,2,'actor',NULL,'[\"Richie Furst\"]'),(2364841,2605345,3,'actress',NULL,'[\"Rebecca Shafran\"]'),(2364841,1107001,4,'actor',NULL,'[\"Agent Shavers\"]'),(2364841,1026778,5,'director',NULL,NULL),(2364841,2718,6,'writer','written by',NULL),(2364841,505522,7,'writer','written by',NULL),(2364841,2248832,8,'producer','producer',NULL),(2364841,138,9,'producer','producer',NULL),(2364949,1679669,1,'actress',NULL,'[\"Abby\"]'),(2364949,680983,2,'actor',NULL,'[\"Jenny\"]'),(2364949,656929,3,'actor',NULL,'[\"Paul\"]'),(2364949,1058940,4,'actor',NULL,'[\"Jesse\"]'),(2364949,1119645,5,'director',NULL,NULL),(2364949,2693744,6,'producer','producer',NULL),(2364949,810272,7,'composer',NULL,NULL),(2364949,1848388,8,'cinematographer',NULL,NULL),(2364949,3592268,9,'production_designer',NULL,NULL),(2364975,5917371,10,'production_designer','designer',NULL),(2364975,5869153,1,'actress',NULL,'[\"Bobo\"]'),(2364975,5869154,2,'actress',NULL,'[\"Klara\"]'),(2364975,5869155,3,'actress',NULL,'[\"Hedvig\"]'),(2364975,5917366,4,'actor',NULL,'[\"Kenneth\"]'),(2364975,600546,5,'director',NULL,NULL),(2364975,1098819,6,'writer','graphic novel',NULL),(2364975,433646,7,'producer','producer',NULL),(2364975,105308,8,'cinematographer',NULL,NULL),(2364975,504576,9,'editor',NULL,NULL),(2365580,800922,10,'producer','producer',NULL),(2365580,949,1,'actress',NULL,'[\"Bernadette\"]'),(2365580,1082,2,'actor',NULL,'[\"Elgie\"]'),(2365580,8625874,3,'actress',NULL,'[\"Bee\"]'),(2365580,1325419,4,'actress',NULL,'[\"Audrey\"]'),(2365580,500,5,'director',NULL,NULL),(2365580,313012,6,'writer','screenplay by',NULL),(2365580,658628,7,'writer','screenplay by',NULL),(2365580,783926,8,'writer','based on the novel written by',NULL),(2365580,1749221,9,'producer','producer',NULL),(2366450,689574,1,'self',NULL,'[\"Self - Storyteller\"]'),(2366450,117956,2,'self',NULL,'[\"Self - Storyteller\"]'),(2366450,689573,3,'self',NULL,'[\"Self - Storyteller\"]'),(2366450,689572,4,'self',NULL,'[\"Self - Storyteller\"]'),(2366450,1631,5,'director',NULL,NULL),(2366450,496811,6,'producer','producer',NULL),(2366450,2698749,7,'cinematographer','director of photography',NULL),(2366450,612965,8,'editor',NULL,NULL),(2366450,137963,9,'production_designer',NULL,NULL),(2368254,997470,10,'producer','producer',NULL),(2368254,683253,1,'actress',NULL,'[\"Marie Colvin\"]'),(2368254,1752186,2,'actress',NULL,'[\"Zoe\"]'),(2368254,390903,3,'actor',NULL,'[\"Sean Ryan\"]'),(2368254,3849670,4,'actress',NULL,'[\"Kate Richardson\"]'),(2368254,1292648,5,'director',NULL,NULL),(2368254,3885069,6,'writer','written by',NULL),(2368254,107493,7,'writer','based on the Vanity Fair article \"Marie Colvin\'s Private War\" by',NULL),(2368254,313531,8,'producer','producer',NULL),(2368254,412588,9,'producer','producer',NULL),(2368749,746370,10,'producer','producer',NULL),(2368749,1671609,1,'actress',NULL,'[\"Alejandra\"]'),(2368749,579281,2,'actor',NULL,'[\"Roberto\"]'),(2368749,5012141,3,'actor',NULL,'[\"José\"]'),(2368749,5013014,4,'actress',NULL,'[\"Camila\"]'),(2368749,1633015,5,'director',NULL,NULL),(2368749,1000616,6,'producer','producer',NULL),(2368749,1481112,7,'producer','producer',NULL),(2368749,5032943,8,'producer','producer',NULL),(2368749,746369,9,'producer','producer',NULL),(2369135,299115,10,'composer',NULL,NULL),(2369135,666739,1,'actor',NULL,'[\"Tobey Marshall\"]'),(2369135,1002641,2,'actor',NULL,'[\"Dino Brewster\"]'),(2369135,1782299,3,'actress',NULL,'[\"Julia Maddon\"]'),(2369135,3264596,4,'actor',NULL,'[\"Benny\"]'),(2369135,915304,5,'director',NULL,NULL),(2369135,1038345,6,'writer','screenplay',NULL),(2369135,309691,7,'writer','story',NULL),(2369135,4918858,8,'producer','producer',NULL),(2369135,815931,9,'producer','producer',NULL),(2369396,7743119,10,'cinematographer',NULL,NULL),(2369396,550452,1,'actor',NULL,'[\"Drifter\"]'),(2369396,518085,2,'actress',NULL,'[\"Catherine\"]'),(2369396,1732579,3,'actress',NULL,'[\"Mary Death\"]'),(2369396,3462502,4,'actor',NULL,'[\"Jack LeMans\"]'),(2369396,3026907,5,'director',NULL,NULL),(2369396,2611629,6,'writer','story',NULL),(2369396,1538954,7,'writer','written by',NULL),(2369396,626697,8,'producer','producer',NULL),(2369396,249557,9,'composer',NULL,NULL),(2370034,753030,10,'editor',NULL,NULL),(2370034,1460782,1,'actor',NULL,'[\"Jean-Christophe\"]'),(2370034,530365,2,'actor',NULL,'[\"Fernand\"]'),(2370034,358418,3,'actor',NULL,'[\"Dominic\"]'),(2370034,2973991,4,'actress',NULL,'[\"Alice\"]'),(2370034,285090,5,'director',NULL,NULL),(2370034,87646,6,'writer','written by',NULL),(2370034,703697,7,'producer','line producer',NULL),(2370034,7236,8,'producer','producer',NULL),(2370034,756738,9,'cinematographer',NULL,NULL),(2370248,3669779,10,'composer',NULL,NULL),(2370248,488953,1,'actress',NULL,'[\"Grace\"]'),(2370248,877555,2,'actor',NULL,'[\"Jack\"]'),(2370248,302330,3,'actor',NULL,'[\"Mason\"]'),(2370248,3239803,4,'actress',NULL,'[\"Jayden\"]'),(2370248,2308774,5,'director',NULL,NULL),(2370248,40120,6,'producer','producer',NULL),(2370248,1852583,7,'producer','producer',NULL),(2370248,619895,8,'producer','producer',NULL),(2370248,1217504,9,'producer','producer',NULL),(2371399,418309,10,'writer','comic strip',NULL),(2371399,1483716,1,'actress',NULL,'[\"Muumimamma\"]'),(2371399,869871,2,'actor',NULL,'[\"Moomin\"]'),(2371399,529526,3,'actor',NULL,'[\"Muumipappa\"]'),(2371399,643322,4,'actress',NULL,'[\"Moominmamma\"]'),(2371399,681422,5,'director',NULL,NULL),(2371399,375991,6,'director','co-director',NULL),(2371399,829593,7,'writer','screenplay',NULL),(2371399,256764,8,'writer','screenplay',NULL),(2371399,2853724,9,'writer','screenplay',NULL),(2375574,1124802,10,'cinematographer','director of photography',NULL),(2375574,1027986,1,'actor',NULL,'[\"Trower\"]'),(2375574,272252,2,'actor',NULL,'[\"Jacob\"]'),(2375574,1757718,3,'actor',NULL,'[\"Friend\"]'),(2375574,691186,4,'actor',NULL,'[\"Cutler\"]'),(2375574,1296554,5,'director',NULL,NULL),(2375574,4207229,6,'writer','written by',NULL),(2375574,2095003,7,'producer','producer',NULL),(2375574,823288,8,'producer','producer',NULL),(2375574,1546919,9,'composer',NULL,NULL),(2377322,2366,10,'composer',NULL,NULL),(2377322,51509,1,'actor',NULL,'[\"Sarchie\"]'),(2377322,1183149,2,'actor',NULL,'[\"Mendoza\"]'),(2377322,1601397,3,'actress',NULL,'[\"Jen\"]'),(2377322,2421211,4,'actor',NULL,'[\"Jimmy\"]'),(2377322,220600,5,'director',NULL,NULL),(2377322,90199,6,'writer','screenplay',NULL),(2377322,1767483,7,'writer','book',NULL),(2377322,6525945,8,'writer','book',NULL),(2377322,988,9,'producer','producer',NULL),(2377396,2350847,10,'production_designer',NULL,NULL),(2377396,845301,1,'actress',NULL,'[\"Forfatteren\"]'),(2377396,754031,2,'actor',NULL,'[\"Instruktøren\"]'),(2377396,329588,3,'actress',NULL,'[\"Lise Gundersen\"]'),(2377396,824852,4,'actress',NULL,'[\"Ann-Kristin\"]'),(2377396,369326,5,'director',NULL,NULL),(2377396,845306,6,'producer','producer',NULL),(2377396,458045,7,'composer',NULL,NULL),(2377396,386117,8,'cinematographer',NULL,NULL),(2377396,283792,9,'editor',NULL,NULL),(2378281,2077283,10,'writer','written by',NULL),(2378281,220240,1,'actor',NULL,'[\"Valentín\"]'),(2378281,646568,2,'actress',NULL,'[\"Jackie\"]'),(2378281,2264706,3,'actress',NULL,'[\"Julie\"]'),(2378281,5160381,4,'actress',NULL,'[\"Maggie\"]'),(2378281,753820,5,'writer','written by',NULL),(2378281,3898016,6,'writer','written by',NULL),(2378281,1405206,7,'writer','story advisor',NULL),(2378281,735869,8,'writer','story advisor',NULL),(2378281,4252090,9,'writer','story advisor',NULL),(2378507,3669779,10,'composer',NULL,NULL),(2378507,488953,1,'actress',NULL,'[\"Jeannette\"]'),(2378507,437,2,'actor',NULL,'[\"Rex\"]'),(2378507,915208,3,'actress',NULL,'[\"Rose Mary\"]'),(2378507,3993221,4,'actress',NULL,'[\"Young Jeannette\"]'),(2378507,2308774,5,'director',NULL,NULL),(2378507,6150131,6,'writer','screenplay by',NULL),(2378507,1890456,7,'writer','based upon the book by',NULL),(2378507,4056338,8,'producer','producer',NULL),(2378507,626696,9,'producer','producer',NULL),(2379082,3300247,1,'actor',NULL,'[\"Mike\"]'),(2379082,4588939,2,'actor',NULL,'[\"William\"]'),(2379082,5277764,3,'actress',NULL,'[\"Jacquelyn\"]'),(2379082,5277886,4,'actress',NULL,'[\"Jenine\"]'),(2379082,1527081,5,'director',NULL,NULL),(2379082,3764049,6,'composer',NULL,NULL),(2379082,4906641,7,'cinematographer',NULL,NULL),(2379713,1220,10,'writer','based on characters created by',NULL),(2379713,185819,1,'actor',NULL,'[\"James Bond\"]'),(2379713,910607,2,'actor',NULL,'[\"Blofeld\"]'),(2379713,2244205,3,'actress',NULL,'[\"Madeleine\"]'),(2379713,146,4,'actor',NULL,'[\"M\"]'),(2379713,5222,5,'director',NULL,NULL),(2379713,517589,6,'writer','screenplay by',NULL),(2379713,701031,7,'writer','screenplay by',NULL),(2379713,905498,8,'writer','screenplay by',NULL),(2379713,125336,9,'writer','screenplay by',NULL),(2380307,315974,10,'composer',NULL,NULL),(2380307,5645519,1,'actor',NULL,'[\"Miguel\"]'),(2380307,305558,2,'actor',NULL,'[\"Héctor\"]'),(2380307,973,3,'actor',NULL,'[\"Ernesto de la Cruz\"]'),(2380307,5513,4,'actress',NULL,'[\"Mamá Imelda\"]'),(2380307,881279,5,'director',NULL,NULL),(2380307,2937122,6,'director','co-director',NULL),(2380307,441735,7,'writer','original story by',NULL),(2380307,17690,8,'writer','original story by',NULL),(2380307,26565,9,'producer','producer',NULL),(2380331,392000,10,'editor',NULL,NULL),(2380331,654110,1,'actor',NULL,'[\"Jack Marcus\"]'),(2380331,300,2,'actress',NULL,'[\"Dina Delsanto\"]'),(2380331,1117,3,'actor',NULL,'[\"Walt\"]'),(2380331,312,4,'actress',NULL,'[\"Elspeth\"]'),(2380331,770961,5,'director',NULL,NULL),(2380331,224187,6,'writer','written by',NULL),(2380331,2645917,7,'producer','producer',NULL),(2380331,333297,8,'composer',NULL,NULL),(2380331,48524,9,'cinematographer','director of photography',NULL),(2381111,111649,10,'composer',NULL,NULL),(2381111,1519680,1,'actress',NULL,'[\"Eilis\"]'),(2381111,1710309,2,'actor',NULL,'[\"Tony\"]'),(2381111,1727304,3,'actor',NULL,'[\"Jim Farrell\"]'),(2381111,980,4,'actor',NULL,'[\"Father Flood\"]'),(2381111,1259871,5,'director',NULL,NULL),(2381111,394984,6,'writer','written by',NULL),(2381111,1460386,7,'writer','novel',NULL),(2381111,245493,8,'producer','producer',NULL),(2381111,692656,9,'producer','producer',NULL),(2381249,1911103,10,'producer','producer',NULL),(2381249,129,1,'actor',NULL,'[\"Ethan Hunt\"]'),(2381249,272581,2,'actress',NULL,'[\"Ilsa Faust\"]'),(2381249,719637,3,'actor',NULL,'[\"William Brandt\"]'),(2381249,670408,4,'actor',NULL,'[\"Benji Dunn\"]'),(2381249,3160,5,'director',NULL,NULL),(2381249,312367,6,'writer','based on the television series created by',NULL),(2381249,1510800,7,'writer','story by',NULL),(2381249,9190,8,'producer','producer',NULL),(2381249,1333357,9,'producer','producer',NULL),(2381941,5552644,10,'editor',NULL,NULL),(2381941,226,1,'actor',NULL,'[\"Nicky\"]'),(2381941,3053338,2,'actress',NULL,'[\"Jess\"]'),(2381941,763928,3,'actor',NULL,'[\"Garriga\"]'),(2381941,553440,4,'actor',NULL,'[\"Farhad\"]'),(2381941,275629,5,'director',NULL,NULL),(2381941,720135,6,'director',NULL,NULL),(2381941,224145,7,'producer','producer',NULL),(2381941,2943572,8,'composer',NULL,NULL),(2381941,4267,9,'cinematographer','director of photography',NULL),(2381991,6133,10,'composer',NULL,NULL),(2381991,1165110,1,'actor',NULL,'[\"The Huntsman\",\"Eric\"]'),(2381991,1567113,2,'actress',NULL,'[\"Sara\"]'),(2381991,234,3,'actress',NULL,'[\"Ravenna\"]'),(2381991,1289434,4,'actress',NULL,'[\"Queen Freya\"]'),(2381991,1031639,5,'director',NULL,NULL),(2381991,818746,6,'writer','written by',NULL),(2381991,563301,7,'writer','written by',NULL),(2381991,2489193,8,'writer','characters',NULL),(2381991,5387,9,'producer','producer',NULL),(2382009,1069370,10,'editor',NULL,NULL),(2382009,1250,1,'actress',NULL,'[\"Joe\"]'),(2382009,1745,2,'actor',NULL,'[\"Seligman\"]'),(2382009,353,3,'actor',NULL,'[\"L\"]'),(2382009,68260,4,'actor',NULL,'[\"K\"]'),(2382009,1885,5,'director',NULL,NULL),(2382009,1314345,6,'producer','producer',NULL),(2382009,421639,7,'producer','executive producer',NULL),(2382009,895366,8,'producer','producer',NULL),(2382009,993994,9,'cinematographer',NULL,NULL),(2382320,933865,10,'producer','producer',NULL),(2382320,185819,1,'actor',NULL,'[\"James Bond\"]'),(2382320,1869101,2,'actress',NULL,'[\"Paloma\"]'),(2382320,1785339,3,'actor',NULL,'[\"Lyutsifer Safin\"]'),(2382320,2244205,4,'actress',NULL,'[\"Madeleine\"]'),(2382320,1560977,5,'director',NULL,NULL),(2382320,701031,6,'writer','screenplay by',NULL),(2382320,905498,7,'writer','screenplay by',NULL),(2382320,3564817,8,'writer','screenplay by',NULL),(2382320,110483,9,'producer','producer',NULL),(2382396,2002108,10,'producer','producer',NULL),(2382396,115,1,'actor',NULL,'[\"Joe\"]'),(2382396,4446467,2,'actor',NULL,'[\"Gary\"]'),(2382396,5371554,3,'actor',NULL,'[\"Wade a.k.a. G-Daawg\"]'),(2382396,1237235,4,'actor',NULL,'[\"Willie-Russell\"]'),(2382396,337773,5,'director',NULL,NULL),(2382396,1149074,6,'writer','written by',NULL),(2382396,114051,7,'writer','based on the novel by',NULL),(2382396,615770,8,'producer','producer',NULL),(2382396,874913,9,'producer','producer',NULL),(2382422,3228320,1,'actor',NULL,'[\"Jacky\"]'),(2382422,1250,2,'actress',NULL,'[\"La colonelle\"]'),(2382422,99828,3,'actor',NULL,'[\"Brunu\"]'),(2382422,31785,4,'actress',NULL,'[\"La générale\"]'),(2382422,3176551,5,'director',NULL,NULL),(2382422,7014,6,'producer','producer',NULL),(2382422,221169,7,'cinematographer',NULL,NULL),(2382422,1055166,8,'editor',NULL,NULL),(2382422,346534,9,'production_designer',NULL,NULL),(2386257,93151,10,'cinematographer',NULL,NULL),(2386257,2369949,1,'actress',NULL,'[\"Paraiti\"]'),(2386257,1344302,2,'actress',NULL,'[\"Maraea\"]'),(2386257,695666,3,'actress',NULL,'[\"Rebecca\"]'),(2386257,116426,4,'actress',NULL,'[\"Horiana\"]'),(2386257,744721,5,'director',NULL,NULL),(2386257,1065547,6,'writer','novel',NULL),(2386257,55922,7,'producer','producer',NULL),(2386257,358932,8,'producer','producer',NULL),(2386257,4259073,9,'composer',NULL,NULL),(2386278,4839602,10,'producer','producer',NULL),(2386278,915865,1,'actress',NULL,'[\"Janet Morello\"]'),(2386278,1882929,2,'actress',NULL,'[\"Sam\"]'),(2386278,1549295,3,'actor',NULL,'[\"Evan Asher\"]'),(2386278,1746,4,'actress',NULL,'[\"Emily Asher\"]'),(2386278,2554792,5,'director',NULL,NULL),(2386278,3029372,6,'writer','written by',NULL),(2386278,1088848,7,'producer','producer',NULL),(2386278,2352181,8,'producer','producer',NULL),(2386278,373723,9,'producer','producer',NULL),(2386490,956710,10,'cinematographer',NULL,NULL),(2386490,59431,1,'actor',NULL,'[\"Hiccup\"]'),(2386490,1065229,2,'actress',NULL,'[\"Astrid\"]'),(2386490,719,3,'actor',NULL,'[\"Grimmel\"]'),(2386490,949,4,'actress',NULL,'[\"Valka\"]'),(2386490,213450,5,'director',NULL,NULL),(2386490,2441763,6,'writer','based upon the \"How to Train Your Dragon\" book series by',NULL),(2386490,36366,7,'producer','producer',NULL),(2386490,506977,8,'producer','producer',NULL),(2386490,694173,9,'composer',NULL,NULL),(2387222,5263447,1,'director',NULL,NULL),(2387222,5263022,2,'cinematographer',NULL,NULL),(2387413,827500,10,'producer','producer',NULL),(2387413,2255441,1,'actor',NULL,'[\"Sam Battle\",\"Captain Battle\"]'),(2387413,3917690,2,'actor',NULL,'[\"Brandon Storm\"]'),(2387413,2556054,3,'actress',NULL,'[\"Jane Storm\"]'),(2387413,3025407,4,'actress',NULL,'[\"Necromancer\"]'),(2387413,658571,5,'director',NULL,NULL),(2387413,8291736,6,'writer','comic book',NULL),(2387413,8034541,7,'writer','comic book',NULL),(2387413,3117093,8,'writer',NULL,NULL),(2387413,3233246,9,'writer',NULL,NULL),(2387433,383653,10,'production_designer',NULL,NULL),(2387433,5392,1,'actress',NULL,'[\"Lacy Barrett\"]'),(2387433,3967248,2,'actor',NULL,'[\"Bobby Jessop\"]'),(2387433,357979,3,'actor',NULL,'[\"Daniel Barrett\"]'),(2387433,2023672,4,'actor',NULL,'[\"Jesse Barrett\"]'),(2387433,829820,5,'director',NULL,NULL),(2387433,89658,6,'producer','producer',NULL),(2387433,1177766,7,'composer',NULL,NULL),(2387433,101741,8,'cinematographer',NULL,NULL),(2387433,2000224,9,'editor',NULL,NULL),(2387499,242491,10,'cinematographer','director of photography',NULL),(2387499,302108,1,'actor',NULL,'[\"Jeff Gaffney\"]'),(2387499,279545,2,'actress',NULL,'[\"Karen Gaffney\"]'),(2387499,358316,3,'actor',NULL,'[\"Tim Jones\"]'),(2387499,2933757,4,'actress',NULL,'[\"Natalie Jones\"]'),(2387499,609549,5,'director',NULL,NULL),(2387499,1942829,6,'writer','written by',NULL),(2387499,531827,7,'producer','producer',NULL),(2387499,662748,8,'producer','producer',NULL),(2387499,2606933,9,'composer',NULL,NULL),(2387559,623979,10,'editor',NULL,NULL),(2387559,681,1,'actor',NULL,'[\"David\"]'),(2387559,695435,2,'actor',NULL,'[\"Brett\"]'),(2387559,1130627,3,'actress',NULL,'[\"Emma\"]'),(2387559,2930503,4,'actor',NULL,'[\"Josh\"]'),(2387559,779433,5,'director',NULL,NULL),(2387559,677587,6,'writer','original screenplay \"Starbuck\"',NULL),(2387559,745689,7,'producer','producer',NULL),(2387559,109726,8,'composer',NULL,NULL),(2387559,4090,9,'cinematographer','director of photography',NULL),(2388715,2435752,10,'composer',NULL,NULL),(2388715,2394794,1,'actress',NULL,'[\"Kaylie Russell\"]'),(2388715,4154798,2,'actor',NULL,'[\"Tim Russell\"]'),(2388715,755267,3,'actress',NULL,'[\"Marie Russell\"]'),(2388715,168262,4,'actor',NULL,'[\"Alan Russell\"]'),(2388715,1093039,5,'director',NULL,NULL),(2388715,3670452,6,'writer','screenplay by',NULL),(2388715,1529699,7,'writer','based on a short screenplay by',NULL),(2388715,2162955,8,'producer','producer',NULL),(2388715,1006167,9,'producer','producer',NULL),(2388759,1425860,10,'cinematographer','director of photography',NULL),(2388759,68042,1,'actress',NULL,'[\"Cathy\"]'),(2388759,1199107,2,'actor',NULL,'[\"Jeff\"]'),(2388759,668139,3,'actress',NULL,'[\"Kara\"]'),(2388759,1221863,4,'actor',NULL,'[\"Stan\"]'),(2388759,694737,5,'director',NULL,NULL),(2388759,5035480,6,'writer',NULL,NULL),(2388759,2389157,7,'writer',NULL,NULL),(2388759,1803184,8,'producer','producer',NULL),(2388759,2618717,9,'producer','producer',NULL),(2388821,100559,10,'producer','executive producer',NULL),(2388821,349522,1,'actor',NULL,'[\"Falconetti\"]'),(2388821,5279469,2,'actor',NULL,'[\"Zipi\"]'),(2388821,5279428,3,'actor',NULL,'[\"Zape\"]'),(2388821,4582429,4,'actress',NULL,'[\"Matilde\"]'),(2388821,1245735,5,'director',NULL,NULL),(2388821,2703276,6,'writer','story',NULL),(2388821,2693578,7,'writer','screenplay',NULL),(2388821,260322,8,'writer','comic \"Zipi y Zape\" created by',NULL),(2388821,997003,9,'writer','story collaboration',NULL),(2389182,1705857,10,'producer','producer',NULL),(2389182,372366,1,'actor',NULL,'[\"Craig Daniels\"]'),(2389182,256121,2,'actor',NULL,'[\"Vince\"]'),(2389182,668139,3,'actress',NULL,'[\"Violet\"]'),(2389182,462712,4,'actor',NULL,'[\"Colin\"]'),(2389182,1414810,5,'director',NULL,NULL),(2389182,3616958,6,'writer','written by',NULL),(2389182,1094,7,'writer','short story \"Man from the South\"',NULL),(2389182,351772,8,'writer','written by',NULL),(2389182,1410462,9,'producer','producer',NULL),(2390237,5836,10,'cinematographer',NULL,NULL),(2390237,296545,1,'actor',NULL,'[\"Bruce\"]'),(2390237,429069,2,'actress',NULL,'[\"Julia\"]'),(2390237,1483369,3,'actor',NULL,'[\"Drew\"]'),(2390237,1469236,4,'actress',NULL,'[\"Sam\"]'),(2390237,2926263,5,'director',NULL,NULL),(2390237,2163353,6,'writer','written by',NULL),(2390237,1143970,7,'producer','producer',NULL),(2390237,661912,8,'producer','producer',NULL),(2390237,1207404,9,'composer',NULL,NULL),(2390361,292482,10,'editor',NULL,NULL),(2390361,506,1,'actress',NULL,'[\"Eva\"]'),(2390361,1254,2,'actor',NULL,'[\"Albert\"]'),(2390361,1416,3,'actress',NULL,'[\"Marianne\"]'),(2390361,1057,4,'actress',NULL,'[\"Sarah\"]'),(2390361,392237,5,'director',NULL,NULL),(2390361,1282412,6,'producer','producer',NULL),(2390361,106835,7,'producer','producer',NULL),(2390361,953616,8,'composer',NULL,NULL),(2390361,4267,9,'cinematographer','director of photography',NULL),(2392261,3532961,10,'actor',NULL,'[\"George Wickham\"]'),(2392261,4087420,1,'actress',NULL,'[\"Lizzie Bennet\"]'),(2392261,2971227,2,'actress',NULL,'[\"Charlotte Lu\"]'),(2392261,3189010,3,'actress',NULL,'[\"Jane Bennet\"]'),(2392261,3167202,4,'actress',NULL,'[\"Lydia Bennet\"]'),(2392261,2451401,5,'actor',NULL,'[\"Ricky Collins\"]'),(2392261,3014867,6,'actor',NULL,'[\"William Darcy\"]'),(2392261,1268478,7,'actor',NULL,'[\"Bing Lee\"]'),(2392261,2599071,8,'actress',NULL,'[\"Caroline Lee\"]'),(2392261,2407761,9,'actress',NULL,'[\"Gigi Darcy\"]'),(2392326,381738,10,'editor',NULL,NULL),(2392326,242026,1,'actress',NULL,'[\"Meg\"]'),(2392326,980,2,'actor',NULL,'[\"Nick\"]'),(2392326,156,3,'actor',NULL,'[\"Morgan\"]'),(2392326,331868,4,'actor',NULL,'[\"Montmartre Receptionist\"]'),(2392326,585011,5,'director',NULL,NULL),(2392326,475659,6,'writer','written by',NULL),(2392326,2941,7,'producer','producer',NULL),(2392326,760255,8,'composer',NULL,NULL),(2392326,243818,9,'cinematographer','director of photography',NULL),(2392830,784599,10,'production_designer',NULL,NULL),(2392830,68187,1,'actress',NULL,'[\"Young Emily\"]'),(2392830,990095,2,'actress',NULL,'[\"Miss Lyon\"]'),(2392830,6216593,3,'actress',NULL,'[\"Young Vinnie\"]'),(2392830,7027696,4,'actor',NULL,'[\"Young Austin\"]'),(2392830,203993,5,'director',NULL,NULL),(2392830,1057727,6,'producer','producer',NULL),(2392830,1099225,7,'producer','producer',NULL),(2392830,389285,8,'cinematographer',NULL,NULL),(2392830,223737,9,'editor',NULL,NULL),(2393787,2043246,10,'cinematographer',NULL,NULL),(2393787,477174,1,'actress',NULL,'[\"Halina Radwan\"]'),(2393787,1455087,2,'actor',NULL,'[\"Eryk Gasiorowski\"]'),(2393787,58342,3,'actress',NULL,'[\"Regina Radwan, Halina\'s mother\"]'),(2393787,3387568,4,'actress',NULL,'[\"Andzelika\"]'),(2393787,2895884,5,'director',NULL,NULL),(2393787,4949211,6,'writer',NULL,NULL),(2393787,111369,7,'producer','producer',NULL),(2393787,1375125,8,'producer','producer',NULL),(2393787,1292863,9,'producer','producer',NULL),(2395337,2529103,10,'producer','producer',NULL),(2395337,1154161,1,'actress',NULL,'[\"Lagoona Blue\",\"Headless Headmistress Bloodgood\"]'),(2395337,1014417,2,'actor',NULL,'[\"Clawd Wolf\"]'),(2395337,164682,3,'actor',NULL,'[\"Heath Burns\",\"Ghost\"]'),(2395337,199118,4,'actor',NULL,'[\"Kipling\"]'),(2395337,50472,5,'director',NULL,NULL),(2395337,1433999,6,'director',NULL,NULL),(2395337,599609,7,'writer',NULL,NULL),(2395337,1577492,8,'writer',NULL,NULL),(2395337,1946485,9,'producer','producer',NULL),(2395385,561430,10,'editor',NULL,NULL),(2395385,1973422,1,'actor',NULL,'[\"David\"]'),(2395385,2383250,2,'actor',NULL,'[\"Teddy\"]'),(2395385,3358233,3,'actress',NULL,'[\"Jill\"]'),(2395385,2834250,4,'actress',NULL,'[\"Melanie\"]'),(2395385,1531934,5,'director',NULL,NULL),(2395385,1976650,6,'writer','screenplay by',NULL),(2395385,673258,7,'producer','producer',NULL),(2395385,489059,8,'composer',NULL,NULL),(2395385,1893246,9,'cinematographer',NULL,NULL),(2395417,118605,10,'editor',NULL,NULL),(2395417,550371,1,'actor',NULL,'[\"John May\"]'),(2395417,296219,2,'actress',NULL,'[\"Kelly Stoke\"]'),(2395417,238635,3,'actress',NULL,'[\"Mary\"]'),(2395417,2217601,4,'actor',NULL,'[\"Council Manager\"]'),(2395417,664667,5,'director',NULL,NULL),(2395417,800097,6,'producer','producer',NULL),(2395417,3770108,7,'producer','producer',NULL),(2395417,6235,8,'composer',NULL,NULL),(2395417,266113,9,'cinematographer',NULL,NULL),(2395421,1118126,10,'production_designer',NULL,NULL),(2395421,1081893,1,'actor',NULL,'[\"Don Fabijan\"]'),(2395421,2418386,2,'actor',NULL,'[\"Petar\"]'),(2395421,1146292,3,'actress',NULL,'[\"Marija\"]'),(2395421,474092,4,'actor',NULL,'[\"Marin\"]'),(2395421,107655,5,'director',NULL,NULL),(2395421,559105,6,'writer','writer',NULL),(2395421,540365,7,'producer','producer',NULL),(2395421,1086342,8,'cinematographer',NULL,NULL),(2395421,98550,9,'editor',NULL,NULL),(2395427,270559,10,'producer','producer',NULL),(2395427,375,1,'actor',NULL,'[\"Tony Stark\",\"Iron Man\"]'),(2395427,262635,2,'actor',NULL,'[\"Steve Rogers\",\"Captain America\"]'),(2395427,749263,3,'actor',NULL,'[\"Bruce Banner\",\"Hulk\"]'),(2395427,1165110,4,'actor',NULL,'[\"Thor\"]'),(2395427,923736,5,'director',NULL,NULL),(2395427,498278,6,'writer','based on the Marvel comics by',NULL),(2395427,456158,7,'writer','based on the Marvel comics by',NULL),(2395427,800209,8,'writer','character created by: Captain America',NULL),(2395427,4160687,9,'writer','character created by: Thanos',NULL),(2395469,1032700,10,'producer','producer',NULL),(2395469,3828984,1,'actor',NULL,'[\"Murad Ahmed\",\"Gully Boy\"]'),(2395469,1017633,2,'actress',NULL,'[\"Safeena Firdausi\"]'),(2395469,8237564,3,'actor',NULL,'[\"MC Sher\"]'),(2395469,704694,4,'actor',NULL,'[\"Aftab Shakir Ahmed\"]'),(2395469,15295,5,'director',NULL,NULL),(2395469,1030373,6,'writer',NULL,NULL),(2395469,1238337,7,'writer','dialogue',NULL),(2395469,1027719,8,'producer','producer',NULL),(2395469,11405540,9,'producer','producer',NULL),(2396566,932580,10,'cinematographer','director of photography',NULL),(2396566,522306,1,'self',NULL,'[\"Self\"]'),(2396566,165749,2,'self',NULL,'[\"Self\"]'),(2396566,1423952,3,'self',NULL,'[\"Self\"]'),(2396566,3528523,4,'self',NULL,'[\"Self\"]'),(2396566,1365879,5,'director',NULL,NULL),(2396566,295648,6,'producer','producer',NULL),(2396566,2868934,7,'producer','producer',NULL),(2396566,743682,8,'producer','producer',NULL),(2396566,1958109,9,'cinematographer','director of photography',NULL),(2396589,255891,10,'producer','producer',NULL),(2396589,4207146,1,'actor',NULL,'[\"Ronsel Jackson\"]'),(2396589,1659547,2,'actress',NULL,'[\"Laura McAllan\"]'),(2396589,164809,3,'actor',NULL,'[\"Henry McAllan\"]'),(2396589,4763,4,'actress',NULL,'[\"Florence Jackson\"]'),(2396589,2011696,5,'director',NULL,NULL),(2396589,1125049,6,'writer','screenplay by',NULL),(2396589,5045262,7,'writer','based on the novel by',NULL),(2396589,3811174,8,'producer','producer',NULL),(2396589,1949947,9,'producer','producer',NULL),(2396701,3175913,1,'actor',NULL,'[\"Jake Wildman\"]'),(2396701,2290733,2,'actress',NULL,'[\"Vanessa Dane\"]'),(2396701,2735837,3,'actor',NULL,'[\"Craig Gavin\"]'),(2396701,2065115,4,'actress',NULL,'[\"Penny Abbot\"]'),(2396701,695977,5,'director',NULL,NULL),(2396701,490375,6,'producer','producer',NULL),(2396701,424999,7,'cinematographer',NULL,NULL),(2396701,2989608,8,'editor',NULL,NULL),(2396701,4702521,9,'production_designer',NULL,NULL),(2396721,3512,10,'cinematographer',NULL,NULL),(2396721,1556320,1,'actress',NULL,'[\"Suki\"]'),(2396721,226813,2,'actor',NULL,'[\"Hogan\"]'),(2396721,5502,3,'actress',NULL,'[\"Alice\"]'),(2396721,244630,4,'actress',NULL,'[\"Silk\"]'),(2396721,2986811,5,'director',NULL,NULL),(2396721,2645827,6,'writer','writer: graphic novel',NULL),(2396721,1410462,7,'producer','producer',NULL),(2396721,2195507,8,'producer','producer',NULL),(2396721,1465570,9,'composer',NULL,NULL),(2397461,710784,10,'writer','screen story by',NULL),(2397461,6081322,1,'actress',NULL,'[\"Emily\"]'),(2397461,3099754,2,'actor',NULL,'[\"Casey\"]'),(2397461,9865565,3,'actor',NULL,'[\"Owen\"]'),(2397461,92,4,'actor',NULL,'[\"Bridwell\"]'),(2397461,65608,5,'director',NULL,NULL),(2397461,771065,6,'writer','screenplay by',NULL),(2397461,740115,7,'writer','screenplay by',NULL),(2397461,1271984,8,'writer','screenplay by',NULL),(2397461,3675159,9,'writer','screen story by',NULL),(2397535,636603,10,'cinematographer','director of photography',NULL),(2397535,160,1,'actor',NULL,'[\"The Barkeep\"]'),(2397535,3512758,2,'actress',NULL,'[\"The Unmarried Mother\"]'),(2397535,852965,3,'actor',NULL,'[\"Mr. Robertson\"]'),(2397535,922210,4,'actress',NULL,'[\"Mrs. Stapleton\"]'),(2397535,1294961,5,'director',NULL,NULL),(2397535,1294962,6,'director',NULL,NULL),(2397535,374423,7,'writer','based on the short story \"All You Zombies\" by',NULL),(2397535,1646322,8,'producer','producer',NULL),(2397535,1245249,9,'producer','producer',NULL),(2398231,5606744,10,'producer','producer',NULL),(2398231,169,1,'actor',NULL,'[\"George Briggs\"]'),(2398231,5476,2,'actress',NULL,'[\"Mary Bee Cuddy\"]'),(2398231,3501146,3,'actress',NULL,'[\"Arabella Sours\"]'),(2398231,1584,4,'actress',NULL,'[\"Theoline Belknap\"]'),(2398231,1634307,5,'writer','screenplay',NULL),(2398231,1364182,6,'writer','screenplay',NULL),(2398231,841933,7,'writer','novel',NULL),(2398231,108,8,'producer','producer',NULL),(2398231,105263,9,'producer','producer',NULL),(2398249,1265901,10,'editor',NULL,NULL),(2398249,748620,1,'actor',NULL,'[\"Joel\"]'),(2398249,688132,2,'actress',NULL,'[\"Molly\"]'),(2398249,352778,3,'actor',NULL,'[\"Kyle\"]'),(2398249,1130627,4,'actress',NULL,'[\"Tiffany\"]'),(2398249,906476,5,'director',NULL,NULL),(2398249,795290,6,'writer','written by',NULL),(2398249,2012118,7,'composer',NULL,NULL),(2398249,917208,8,'composer',NULL,NULL),(2398249,6633,9,'cinematographer',NULL,NULL),(2400463,788640,10,'composer',NULL,NULL),(2400463,1334869,1,'actor',NULL,'[\"Will\"]'),(2400463,1538675,2,'actress',NULL,'[\"Kira\"]'),(2400463,401264,3,'actor',NULL,'[\"David\"]'),(2400463,87109,4,'actress',NULL,'[\"Eden\"]'),(2400463,476201,5,'director',NULL,NULL),(2400463,6534,6,'writer','written by',NULL),(2400463,542062,7,'writer','written by',NULL),(2400463,341301,8,'producer','producer',NULL),(2400463,2656897,9,'producer','producer',NULL),(2401711,1873021,10,'producer','producer',NULL),(2401711,5244,1,'actress',NULL,'[\"Bibiana Terra Cambará (idosa)\"]'),(2401711,479895,2,'actor',NULL,'[\"Capitão Rodrigo Cambará\"]'),(2401711,1597010,3,'actress',NULL,'[\"Bibiana Terra-Cambará (jovem)\"]'),(2401711,1132887,4,'actress',NULL,'[\"Bibiana Terra-Cambará (adulta)\"]'),(2401711,598173,5,'director',NULL,NULL),(2401711,747752,6,'writer','screenplay',NULL),(2401711,895160,7,'writer','book',NULL),(2401711,1311694,8,'writer','screenplay',NULL),(2401711,125632,9,'producer','executive producer',NULL),(2401715,2146733,10,'composer',NULL,NULL),(2401715,1075603,1,'actor',NULL,'[\"Niccolò Paganini\"]'),(2401715,364813,2,'actor',NULL,'[\"Urbani\"]'),(2401715,613,3,'actress',NULL,'[\"Ethel Langham\"]'),(2401715,1605114,4,'actor',NULL,'[\"John Watson\"]'),(2401715,741262,5,'director',NULL,NULL),(2401715,3909704,6,'producer','producer',NULL),(2401715,45429,7,'producer','producer',NULL),(2401715,375383,8,'producer','producer',NULL),(2401715,470338,9,'producer','producer',NULL),(2401878,1804458,10,'editor',NULL,NULL),(2401878,667,1,'actor',NULL,'[\"Michael Stone\"]'),(2401878,492,2,'actress',NULL,'[\"Lisa Hesselman\"]'),(2401878,6888,3,'actor',NULL,'[\"Everyone else\"]'),(2401878,2122478,4,'director',NULL,NULL),(2401878,442109,5,'director',NULL,NULL),(2401878,821786,6,'producer','producer',NULL),(2401878,1533266,7,'producer','producer',NULL),(2401878,1980,8,'composer',NULL,NULL),(2401878,2026060,9,'cinematographer','director of photography',NULL),(2402157,820429,10,'producer','producer',NULL),(2402157,112,1,'actor',NULL,'[\"Devereaux\"]'),(2402157,3478396,2,'actor',NULL,'[\"Mason\"]'),(2402157,1385871,3,'actress',NULL,'[\"Alice\"]'),(2402157,810488,4,'actor',NULL,'[\"Hanley\"]'),(2402157,2044,5,'director',NULL,NULL),(2402157,3360218,6,'writer','screenplay',NULL),(2402157,2244980,7,'writer','screenplay',NULL),(2402157,1952653,8,'writer','book \"There Are No Spies\"',NULL),(2402157,1885661,9,'producer','producer',NULL),(2402927,941262,10,'producer','producer',NULL),(2402927,949,1,'actress',NULL,'[\"Carol Aird\"]'),(2402927,1913734,2,'actress',NULL,'[\"Therese Belivet\"]'),(2402927,5299,3,'actress',NULL,'[\"Abby Gerhard\"]'),(2402927,151419,4,'actor',NULL,'[\"Harge Aird\"]'),(2402927,1331,5,'director',NULL,NULL),(2402927,619507,6,'writer','screenplay by',NULL),(2402927,383604,7,'writer','based on the novel \"The Price of Salt\" by',NULL),(2402927,439563,8,'producer','producer',NULL),(2402927,882927,9,'producer','producer',NULL),(2403021,2002108,10,'producer','producer',NULL),(2403021,4448022,1,'actress',NULL,'[\"Justine\"]'),(2403021,1642639,2,'actor',NULL,'[\"Alejandro\"]'),(2403021,2746751,3,'actor',NULL,'[\"Jonah\"]'),(2403021,1926300,4,'actress',NULL,'[\"Amy\"]'),(2403021,744834,5,'director',NULL,NULL),(2403021,3771227,6,'writer','screenplay by',NULL),(2403021,38585,7,'producer','line producer',NULL),(2403021,2576804,8,'producer','producer',NULL),(2403021,1240647,9,'producer','producer',NULL),(2403029,697953,10,'editor',NULL,NULL),(2403029,2118666,1,'actress',NULL,'[\"Kantmiss\"]'),(2403029,2301213,2,'actor',NULL,'[\"Dale\"]'),(2403029,2421367,3,'actor',NULL,'[\"Peter\"]'),(2403029,101242,4,'actress',NULL,'[\"Effoff\"]'),(2403029,294997,5,'director',NULL,NULL),(2403029,783536,6,'director',NULL,NULL),(2403029,755911,7,'producer','producer',NULL),(2403029,944000,8,'composer',NULL,NULL),(2403029,561053,9,'cinematographer',NULL,NULL),(2403419,1955573,10,'cinematographer',NULL,NULL),(2403419,1352147,1,'actress',NULL,'[\"Elisa\"]'),(2403419,2376425,2,'actress',NULL,'[\"Ana\"]'),(2403419,310459,3,'actress',NULL,'[\"Diamantina\"]'),(2403419,1972873,4,'actor',NULL,'[\"Alex\"]'),(2403419,4973558,5,'director',NULL,NULL),(2403419,4348934,6,'producer','executive producer',NULL),(2403419,4052106,7,'producer','producer',NULL),(2403419,4349061,8,'producer','producer',NULL),(2403419,3901375,9,'composer',NULL,NULL),(2404153,237236,10,'editor',NULL,NULL),(2404153,5066351,1,'actor',NULL,'[\"Adam\"]'),(2404153,5065934,2,'actress',NULL,'[\"Molly\"]'),(2404153,213374,3,'actress',NULL,'[\"Linda\"]'),(2404153,616,4,'actor',NULL,'[\"Ted\"]'),(2404153,213983,5,'director',NULL,NULL),(2404153,375604,6,'writer','written by',NULL),(2404153,3003512,7,'producer','producer',NULL),(2404153,5932902,8,'producer','producer',NULL),(2404153,6185,9,'composer',NULL,NULL),(2404181,101970,10,'editor',NULL,NULL),(2404181,1813221,1,'actress',NULL,'[\"Dido Elizabeth Belle\"]'),(2404181,328828,2,'actor',NULL,'[\"Captain Sir John Lindsay\"]'),(2404181,1833,3,'actress',NULL,'[\"Lady Mansfield\"]'),(2404181,1669,4,'actress',NULL,'[\"Lady Ashford\"]'),(2404181,1392994,5,'director',NULL,NULL),(2404181,756034,6,'writer','writer',NULL),(2404181,427827,7,'producer','producer',NULL),(2404181,6235,8,'composer',NULL,NULL),(2404181,810430,9,'cinematographer','director of photography',NULL),(2404233,579977,10,'cinematographer','director of photography',NULL),(2404233,4154798,1,'actor',NULL,'[\"Bek\"]'),(2404233,182666,2,'actor',NULL,'[\"Horus\"]'),(2404233,124930,3,'actor',NULL,'[\"Set\"]'),(2404233,1569276,4,'actor',NULL,'[\"Thoth\"]'),(2404233,1639,5,'director',NULL,NULL),(2404233,1948885,6,'writer','written by',NULL),(2404233,2332952,7,'writer','written by',NULL),(2404233,412588,8,'producer','producer',NULL),(2404233,1937,9,'composer',NULL,NULL),(2404311,1342398,10,'composer',NULL,NULL),(2404311,134,1,'actor',NULL,'[\"Fred Blake\",\"Giovanni Manzoni\"]'),(2404311,201,2,'actress',NULL,'[\"Maggie Blake\"]'),(2404311,1872698,3,'actress',NULL,'[\"Belle Blake\"]'),(2404311,2649720,4,'actor',NULL,'[\"Warren Blake\"]'),(2404311,108,5,'director',NULL,NULL),(2404311,1003636,6,'writer','screenplay',NULL),(2404311,70152,7,'writer','based on the book by',NULL),(2404311,798065,8,'producer','producer',NULL),(2404311,1448916,9,'producer','producer',NULL),(2404425,858123,10,'producer','producer',NULL),(2404425,545,1,'actress',NULL,'[\"Maria Altmann\"]'),(2404425,5351,2,'actor',NULL,'[\"Randy Schoenberg\"]'),(2404425,117709,3,'actor',NULL,'[\"Hubertus Czernin\"]'),(2404425,5017,4,'actress',NULL,'[\"Pam Schoenberg\"]'),(2404425,193508,5,'director',NULL,NULL),(2404425,443252,6,'writer','written by',NULL),(2404425,2739175,7,'writer','life story',NULL),(2404425,2721839,8,'writer','life story',NULL),(2404425,860034,9,'producer','producer',NULL),(2404435,921013,10,'writer','screenplay',NULL),(2404435,243,1,'actor',NULL,'[\"Chisolm\"]'),(2404435,695435,2,'actor',NULL,'[\"Josh Faraday\"]'),(2404435,160,3,'actor',NULL,'[\"Goodnight Robicheaux\"]'),(2404435,352,4,'actor',NULL,'[\"Jack Horne\"]'),(2404435,298807,5,'director',NULL,NULL),(2404435,41,6,'writer','based on the screenplay by',NULL),(2404435,368074,7,'writer','based on the screenplay by',NULL),(2404435,644823,8,'writer','based on the screenplay by',NULL),(2404435,4446305,9,'writer','screenplay',NULL),(2404461,919761,10,'editor',NULL,NULL),(2404461,67367,1,'actress',NULL,'[\"Marie Brisson\"]'),(2404461,2588665,2,'actor',NULL,'[\"Samir\"]'),(2404461,608214,3,'actor',NULL,'[\"Ahmad\"]'),(2404461,2519287,4,'actress',NULL,'[\"Lucie\"]'),(2404461,1410815,5,'director',NULL,NULL),(2404461,1905834,6,'producer','producer',NULL),(2404461,1342398,7,'composer',NULL,NULL),(2404461,5138509,8,'composer',NULL,NULL),(2404461,435534,9,'cinematographer',NULL,NULL),(2404463,5934,10,'cinematographer','director of photography',NULL),(2404463,113,1,'actress',NULL,'[\"Ashburn\"]'),(2404463,567912,2,'actor',NULL,'[\"Julian\"]'),(2404463,565250,3,'actress',NULL,'[\"Mullins\"]'),(2404463,65007,4,'actor',NULL,'[\"Hale\"]'),(2404463,82450,5,'director',NULL,NULL),(2404463,1767754,6,'writer','written by',NULL),(2404463,1858656,7,'producer','producer',NULL),(2404463,867768,8,'producer','producer',NULL),(2404463,28787,9,'composer',NULL,NULL),(2404465,803022,10,'producer','producer',NULL),(2404465,5085683,1,'actress',NULL,'[\"Christmas Flint\"]'),(2404465,205626,2,'actress',NULL,'[\"Miss Rayleen\"]'),(2404465,300712,3,'actor',NULL,'[\"Ramsey Flint\"]'),(2404465,5049,4,'actress',NULL,'[\"Miss Massey\"]'),(2404465,2134432,5,'director',NULL,NULL),(2404465,1232262,6,'director',NULL,NULL),(2404465,3599054,7,'writer','screenplay',NULL),(2404465,85542,8,'producer','producer',NULL),(2404465,89820,9,'producer','producer',NULL),(2404738,87308,10,'editor',NULL,NULL),(2404738,1281229,1,'actor',NULL,'[\"José\"]'),(2404738,1832584,2,'actor',NULL,'[\"Antonio\"]'),(2404738,631326,3,'actor',NULL,'[\"Calvo\"]'),(2404738,3016653,4,'actress',NULL,'[\"Eva\"]'),(2404738,407067,5,'director',NULL,NULL),(2404738,346277,6,'writer',NULL,NULL),(2404738,148554,7,'producer','executive producer',NULL),(2404738,884030,8,'composer',NULL,NULL),(2404738,209364,9,'cinematographer',NULL,NULL),(2406252,217959,10,'editor',NULL,NULL),(2406252,782561,1,'actress',NULL,'[\"Vanda\"]'),(2406252,23832,2,'actor',NULL,'[\"Thomas\"]'),(2406252,591,3,'director',NULL,NULL),(2406252,412328,4,'writer','play',NULL),(2406252,755106,5,'writer','novel',NULL),(2406252,71452,6,'producer','producer',NULL),(2406252,764963,7,'producer','producer',NULL),(2406252,6035,8,'composer',NULL,NULL),(2406252,248997,9,'cinematographer',NULL,NULL),(2406566,321218,10,'producer','producer',NULL),(2406566,234,1,'actress',NULL,'[\"Lorraine Broughton\"]'),(2406566,564215,2,'actor',NULL,'[\"David Percival\"]'),(2406566,422,3,'actor',NULL,'[\"Emmett Kurzfeld\"]'),(2406566,550371,4,'actor',NULL,'[\"Spyglass\"]'),(2406566,500610,5,'director',NULL,NULL),(2406566,426500,6,'writer','screenplay by',NULL),(2406566,2985952,7,'writer','based on the Oni Press graphic novel series \"The Coldest City\" written by',NULL),(2406566,8697009,8,'writer','based on the Oni Press graphic novel series \"The Coldest City\" illustrated by',NULL),(2406566,228690,9,'producer','producer',NULL),(24068064,3977207,10,'producer','producer',NULL),(24068064,2858875,1,'actress',NULL,'[\"Reality Winner\"]'),(24068064,357979,2,'actor',NULL,'[\"Agent Garrick\"]'),(24068064,8463983,3,'actor',NULL,'[\"Agent Taylor\"]'),(24068064,2059443,4,'actor',NULL,'[\"Joe (Unknown Male)\"]'),(24068064,13258656,5,'director',NULL,NULL),(24068064,1108879,6,'writer','screenplay by',NULL),(24068064,5126852,7,'producer','producer',NULL),(24068064,1889450,8,'producer','producer',NULL),(24068064,12182370,9,'producer','producer',NULL),(24070754,2183916,10,'production_designer',NULL,NULL),(24070754,9729714,1,'actor',NULL,'[\"Issa\"]'),(24070754,1871951,2,'actress',NULL,'[\"Nawelle\"]'),(24070754,1229839,3,'actress',NULL,'[\"Yvette\"]'),(24070754,8437705,4,'actor',NULL,'[\"Nassim\"]'),(24070754,380831,5,'director',NULL,NULL),(24070754,40927,6,'producer','producer',NULL),(24070754,2390477,7,'producer','producer',NULL),(24070754,3376331,8,'composer',NULL,NULL),(24070754,1490063,9,'cinematographer',NULL,NULL),(2407574,3147566,10,'actor',NULL,'[\"Karim\",\"Karim Bouchtat\"]'),(2407574,4853513,1,'actress',NULL,'[\"Izzy\"]'),(2407574,5044830,2,'actor',NULL,'[\"Archie\"]'),(2407574,3069650,3,'actress',NULL,'[\"Chloe\"]'),(2407574,2362716,4,'actor',NULL,'[\"Danny Two Hats\"]'),(2407574,1324,5,'actor',NULL,'[\"Dr Kester Gill\"]'),(2407574,2813963,6,'actor',NULL,'[\"Finn\"]'),(2407574,1276792,7,'actor',NULL,'[\"Chop\"]'),(2407574,5287110,8,'actress',NULL,'[\"Rae\"]'),(2407574,750718,9,'actress',NULL,'[\"Rae\'s Mum\"]'),(2412568,3356695,10,'composer',NULL,NULL),(2412568,4669731,1,'actor',NULL,'[\"Rich Wayne Mullins\"]'),(2412568,1932967,2,'actor',NULL,'[\"Sam Howard\"]'),(2412568,1292126,3,'actor',NULL,'[\"John Mullins\"]'),(2412568,2827409,4,'actor',NULL,'[\"Justin\"]'),(2412568,8444876,5,'writer','screenplay',NULL),(2412568,1973680,6,'writer','additional story',NULL),(2412568,5288797,7,'writer','story consultant',NULL),(2412568,2507792,8,'producer','producer',NULL),(2412568,6479944,9,'composer',NULL,NULL),(2414766,2200824,1,'actor',NULL,'[\"Zak\"]'),(2414766,2284961,2,'actress',NULL,'[\"Marie\"]'),(2414766,4099580,3,'actor',NULL,'[\"Theo\"]'),(2414766,3780043,4,'actor',NULL,'[\"Teen Zak\"]'),(2414766,279441,5,'director',NULL,NULL),(2414766,3056432,6,'composer',NULL,NULL),(2414766,4100666,7,'cinematographer',NULL,NULL),(2414766,3783426,8,'production_designer',NULL,NULL),(2414766,5291515,9,'production_designer',NULL,NULL),(2415174,4386666,10,'actor',NULL,'[\"Arley Johnson\"]'),(2415174,622,1,'actress',NULL,'[\"Trish Bragg\"]'),(2415174,1017514,2,'actress',NULL,'[\"Elaine Purkey\"]'),(2415174,2386140,3,'actor',NULL,'[\"Joe Lovett\"]'),(2415174,2703527,4,'actress',NULL,'[\"Kayla Bragg\"]'),(2415174,3329828,5,'director',NULL,NULL),(2415174,3755246,6,'writer',NULL,NULL),(2415174,2811008,7,'producer','post producer',NULL),(2415174,2744162,8,'cinematographer',NULL,NULL),(2415174,5295692,9,'actor',NULL,'[\"Dewey Bragg\"]'),(2415464,397697,10,'composer',NULL,NULL),(2415464,2001537,1,'actor',NULL,'[\"Hansel Grimm\"]'),(2415464,2316340,2,'actor',NULL,'[\"Jane\'s Father\"]'),(2415464,2065115,3,'actress',NULL,'[\"Gretel Grimm\"]'),(2415464,908914,4,'actress',NULL,'[\"Lilith\"]'),(2415464,3116,5,'director',NULL,NULL),(2415464,342278,6,'writer','fairy tale',NULL),(2415464,342303,7,'writer','fairy tale',NULL),(2415464,695977,8,'writer','screenplay',NULL),(2415464,490375,9,'producer','producer',NULL),(2417712,3510918,10,'producer','producer',NULL),(2417712,5405,1,'actor',NULL,'[\"Doug Glatt\"]'),(2417712,683467,2,'actress',NULL,'[\"Eva\"]'),(2417712,343082,3,'actor',NULL,'[\"Xavier LaFlamme\"]'),(2417712,630,4,'actor',NULL,'[\"Ross Rhea\"]'),(2417712,59431,5,'director',NULL,NULL),(2417712,1241059,6,'writer','screenplay by',NULL),(2417712,1698571,7,'writer','based on characters created by',NULL),(2417712,4106750,8,'writer','based on the book \"Goon\" by',NULL),(2417712,4106668,9,'writer','based on the book \"Goon\" by',NULL),(2425486,1472622,10,'cinematographer','director of photography',NULL),(2425486,1257208,1,'actress',NULL,'[\"Gloria\"]'),(2425486,380139,2,'actor',NULL,'[\"Rodolfo\"]'),(2425486,2020909,3,'actor',NULL,'[\"Pedro\"]'),(2425486,5418160,4,'actress',NULL,'[\"Ana\"]'),(2425486,133326,5,'director',NULL,NULL),(2425486,1752036,6,'writer','screenplay',NULL),(2425486,171662,7,'producer','producer',NULL),(2425486,2213147,8,'producer','producer',NULL),(2425486,1883257,9,'producer','producer',NULL),(2428170,1051221,1,'actress',NULL,'[\"Angela\"]'),(2428170,2674307,2,'actor',NULL,'[\"Aaron\"]'),(2428170,243233,3,'actor',NULL,'[\"Josef\"]'),(2428170,89658,4,'producer','producer',NULL),(2428170,1747551,5,'composer',NULL,NULL),(2428170,1823857,6,'composer',NULL,NULL),(2428170,2240960,7,'editor',NULL,NULL),(2428170,5298541,8,'production_designer',NULL,NULL),(2429074,1424077,10,'cinematographer','director of photography',NULL),(2429074,1752259,1,'actor',NULL,'[\"Tanner Daniels\"]'),(2429074,1476591,2,'actor',NULL,'[\"Brent Van Camp\"]'),(2429074,1199888,3,'actress',NULL,'[\"Fawcett Brooks\"]'),(2429074,100792,4,'actress',NULL,'[\"\'Shley Osgoode\"]'),(2429074,825434,5,'director',NULL,NULL),(2429074,5301911,6,'writer','written by',NULL),(2429074,1622110,7,'producer','producer',NULL),(2429074,10963043,8,'producer','producer',NULL),(2429074,1975202,9,'composer',NULL,NULL),(2429414,1637687,10,'composer',NULL,NULL),(2429414,775858,1,'actress',NULL,'[\"Hanna\"]'),(2429414,4285949,2,'actor',NULL,'[\"Itay\"]'),(2429414,447775,3,'actress',NULL,'[\"Gertraud\"]'),(2429414,1090576,4,'actor',NULL,'[\"Carsten\"]'),(2429414,2522719,5,'director',NULL,NULL),(2429414,2522812,6,'writer','screenplay',NULL),(2429414,5580066,7,'writer','novel \"Das war der gute Teil des Tages\"',NULL),(2429414,283687,8,'producer','producer',NULL),(2429414,797216,9,'producer','producer',NULL),(2431286,6035,10,'composer',NULL,NULL),(2431286,1132,1,'actress',NULL,'[\"Philomena Lee\"]'),(2431286,176869,2,'actor',NULL,'[\"Martin Sixsmith\"]'),(2431286,4080531,3,'actress',NULL,'[\"Young Philomena\"]'),(2431286,1858,4,'actress',NULL,'[\"Mary\"]'),(2431286,1241,5,'director',NULL,NULL),(2431286,691131,6,'writer','screenplay',NULL),(2431286,1939381,7,'writer','book \"The Lost Child of Philomena Lee\"',NULL),(2431286,780870,8,'producer','producer',NULL),(2431286,848932,9,'producer','producer',NULL),(2435166,2169314,1,'actress',NULL,'[\"Juanita Perez\"]'),(2435166,4596380,2,'actress',NULL,'[\"Gina\"]'),(2435166,1426836,3,'actor',NULL,'[\"Carlos\"]'),(2435166,2554997,4,'actress',NULL,'[\"Lauren Hamilton\"]'),(2435166,2025006,5,'director',NULL,NULL),(2435166,2846582,6,'producer','producer',NULL),(2435166,5306600,7,'composer',NULL,NULL),(2435166,1950381,8,'cinematographer',NULL,NULL),(2435166,3449717,9,'editor',NULL,NULL),(2436386,298181,10,'producer','producer',NULL),(2436386,484541,1,'actress',NULL,'[\"Kathy Raskin\"]'),(2436386,3733763,2,'actress',NULL,'[\"Jessie Pierce\"]'),(2436386,4722966,3,'actress',NULL,'[\"Christina Raskin\"]'),(2436386,4103976,4,'actor',NULL,'[\"David Raskin\"]'),(2436386,2410311,5,'director',NULL,NULL),(2436386,3091255,6,'writer','written by',NULL),(2436386,2065670,7,'writer','written by',NULL),(2436386,881,8,'producer','producer',NULL),(2436386,286320,9,'producer','producer',NULL),(2436682,742580,10,'producer','producer',NULL),(2436682,437,1,'actor',NULL,'[\"Abraham\"]'),(2436682,2955013,2,'actor',NULL,'[\"David Kingston\"]'),(2436682,103797,3,'actress',NULL,'[\"Marisol\"]'),(2436682,1710309,4,'actor',NULL,'[\"Isaac Brant\"]'),(2436682,201061,5,'director',NULL,NULL),(2436682,3208946,6,'writer','written by',NULL),(2436682,387674,7,'producer','producer',NULL),(2436682,509414,8,'producer','producer',NULL),(2436682,1371473,9,'producer','producer',NULL),(2440362,442766,10,'composer',NULL,NULL),(2440362,3768523,1,'actress',NULL,'[\"Fûko Andô\"]'),(2440362,2976916,2,'actor',NULL,'[\"Takanori Andô\"]'),(2440362,1255077,3,'actress',NULL,'[\"Fumika Kamimura\"]'),(2440362,4732281,4,'actress',NULL,'[\"Nagi Andô\"]'),(2440362,3108153,5,'director',NULL,NULL),(2440362,840626,6,'writer','based on the novel by',NULL),(2440362,2120797,7,'writer','screenplay by',NULL),(2440362,5537917,8,'writer','screenplay by',NULL),(2440362,8160206,9,'producer','producer',NULL),(2446042,2407784,10,'editor',NULL,NULL),(2446042,553,1,'actor',NULL,'[\"Bryan Mills\"]'),(2446042,1845,2,'actor',NULL,'[\"Frank Dotzler\"]'),(2446042,1192254,3,'actress',NULL,'[\"Kim Mills\"]'),(2446042,463,4,'actress',NULL,'[\"Lenore St. John\"]'),(2446042,576298,5,'director',NULL,NULL),(2446042,108,6,'writer','written by',NULL),(2446042,436543,7,'writer','written by',NULL),(2446042,1166319,8,'composer',NULL,NULL),(2446042,470929,9,'cinematographer','director of photography',NULL),(2446108,2529103,10,'producer','producer',NULL),(2446108,280230,1,'actress',NULL,'[\"Abbey Bominable\",\"C.A. Cupid\",\"Clair\"]'),(2446108,134269,2,'actor',NULL,'[\"Chad\",\"Kid #1\"]'),(2446108,1014417,3,'actor',NULL,'[\"Clawd Wolf\"]'),(2446108,1086483,4,'actress',NULL,'[\"Clawdeen Wolf\",\"Cleo DeNile\"]'),(2446108,1684016,5,'director',NULL,NULL),(2446108,755323,6,'director',NULL,NULL),(2446108,599609,7,'writer',NULL,NULL),(2446108,1577492,8,'writer',NULL,NULL),(2446108,1946485,9,'producer','producer',NULL),(2446502,1664512,10,'composer',NULL,NULL),(2446502,1803,1,'actor',NULL,'[\"Jesús\"]'),(2446502,178840,2,'actor',NULL,'[\"Hunter\"]'),(2446502,3743828,3,'actress',NULL,'[\"Alison\"]'),(2446502,2611883,4,'actress',NULL,'[\"\'Fast Lane\' Debbie\"]'),(2446502,4283294,5,'director',NULL,NULL),(2446502,5323274,6,'writer','co-writer',NULL),(2446502,1238067,7,'producer','producer',NULL),(2446502,2211997,8,'producer','producer',NULL),(2446502,5321218,9,'producer','producer',NULL),(2446980,596298,10,'producer','producer',NULL),(2446980,2225369,1,'actress',NULL,'[\"Joy\"]'),(2446980,134,2,'actor',NULL,'[\"Rudy\"]'),(2446980,177896,3,'actor',NULL,'[\"Neil Walker\"]'),(2446980,1183149,4,'actor',NULL,'[\"Tony\"]'),(2446980,751102,5,'director',NULL,NULL),(2446980,1754239,6,'writer','story',NULL),(2446980,204862,7,'producer','producer',NULL),(2446980,2691892,8,'producer','producer',NULL),(2446980,330335,9,'producer','producer',NULL),(2450186,3464186,10,'director',NULL,NULL),(2450186,1494818,1,'actor',NULL,'[\"Larry (segment \\\"Tape 49\\\")\"]'),(2450186,2940487,2,'actress',NULL,'[\"Ayesha (segment \\\"Tape 49\\\")\"]'),(2450186,1417392,3,'actor',NULL,'[\"Herman (segment \\\"Phase I Clinical Trials\\\")\"]'),(2450186,2721580,4,'actress',NULL,'[\"Clarissa (segment \\\"Phase I Clinical Trials\\\")\"]'),(2450186,1440023,5,'director',NULL,NULL),(2450186,2639032,6,'director',NULL,NULL),(2450186,2153088,7,'director',NULL,NULL),(2450186,354918,8,'director',NULL,NULL),(2450186,844896,9,'director',NULL,NULL),(2450440,882927,10,'producer','producer',NULL),(2450440,3027401,1,'actor',NULL,'[\"TV News Reporter\"]'),(2450440,2267906,2,'actor',NULL,'[\"Reporter #1\"]'),(2450440,3330464,3,'actor',NULL,'[\"Reporter #2\"]'),(2450440,641914,4,'actress',NULL,'[\"Reporter #3\"]'),(2450440,322144,5,'director',NULL,NULL),(2450440,922903,6,'director',NULL,NULL),(2450440,49888,7,'producer','producer',NULL),(2450440,463025,8,'producer','producer',NULL),(2450440,539654,9,'producer','producer',NULL),(2452042,82450,10,'producer','producer',NULL),(2452042,6907855,1,'actor',NULL,'[\"Charlie Brown\"]'),(2452042,6837,2,'archive_sound',NULL,'[\"Snoopy\",\"Woodstock\"]'),(2452042,5295511,3,'actress',NULL,'[\"Lucy\"]'),(2452042,4941145,4,'actress',NULL,'[\"The Little Red-Haired Girl\",\"Frieda\"]'),(2452042,553942,5,'director',NULL,NULL),(2452042,776441,6,'writer','screenplay by',NULL),(2452042,2421049,7,'writer','screenplay by',NULL),(2452042,2370700,8,'writer','screenplay by',NULL),(2452042,776433,9,'writer','based upon the comic strip by',NULL),(2452150,2298264,10,'producer','producer',NULL),(2452150,1617685,1,'actress',NULL,'[\"Aretha Franklin\"]'),(2452150,1845,2,'actor',NULL,'[\"C. L. Franklin\"]'),(2452150,5541,3,'actor',NULL,'[\"Ted White\"]'),(2452150,4270695,4,'actor',NULL,'[\"James Cleveland\"]'),(2452150,8217935,5,'director',NULL,NULL),(2452150,5885049,6,'writer','screenplay by',NULL),(2452150,451884,7,'writer','story by',NULL),(2452150,1303857,8,'producer','producer',NULL),(2452150,322802,9,'producer','producer',NULL),(2452244,560033,10,'producer','producer',NULL),(2452244,2313103,1,'actress',NULL,'[\"Natalie\"]'),(2452244,2955013,2,'actor',NULL,'[\"Blake\"]'),(2452244,2796745,3,'actor',NULL,'[\"Josh\"]'),(2452244,1231899,4,'actress',NULL,'[\"Isabella\"]'),(2452244,833889,5,'director',NULL,NULL),(2452244,1728301,6,'writer','screenplay by',NULL),(2452244,1401416,7,'writer','screenplay by',NULL),(2452244,4199289,8,'writer','screenplay by',NULL),(2452244,307776,9,'producer','producer',NULL),(2452254,300,1,'actress',NULL,'[\"Maria Enders\"]'),(2452254,829576,2,'actress',NULL,'[\"Valentine\"]'),(2452254,1631269,3,'actress',NULL,'[\"Jo-Ann Ellis\"]'),(2452254,1955257,4,'actor',NULL,'[\"Klaus Diesterweg\"]'),(2452254,801,5,'director',NULL,NULL),(2452254,318570,6,'producer','producer',NULL),(2452254,494617,7,'cinematographer',NULL,NULL),(2452254,1520209,8,'editor',NULL,NULL),(2452254,479352,9,'production_designer',NULL,NULL),(2452386,638365,10,'cinematographer',NULL,NULL),(2452386,1064292,1,'actor',NULL,'[\"Trevor\"]'),(2452386,748620,2,'actor',NULL,'[\"Ben Benjamin\"]'),(2452386,1411125,3,'actress',NULL,'[\"Dot\"]'),(2452386,3587170,4,'actor',NULL,'[\"Jodi\"]'),(2452386,122427,5,'director',NULL,NULL),(2452386,5325195,6,'writer','novel',NULL),(2452386,317642,7,'producer','producer',NULL),(2452386,818657,8,'producer','producer',NULL),(2452386,1792454,9,'composer',NULL,NULL),(2457282,1562757,10,'producer','producer',NULL),(2457282,2976492,1,'actress',NULL,'[\"Madoka Kaname\"]'),(2457282,1543455,2,'actress',NULL,'[\"Homura Akemi\"]'),(2457282,1543296,3,'actress',NULL,'[\"Sayaka Miki\"]'),(2457282,594646,4,'actress',NULL,'[\"Mami Tomoe\"]'),(2457282,3578010,5,'director',NULL,NULL),(2457282,793840,6,'director',NULL,NULL),(2457282,2900314,7,'writer','original story',NULL),(2457282,3309461,8,'writer','original story',NULL),(2457282,3256781,9,'writer','original story',NULL),(2460488,490489,1,'actor',NULL,'[\"Xiao Jinhan\"]'),(2460488,2258705,2,'actress',NULL,'[\"Lisa\",\"Wang Xueqing\"]'),(2460488,1846368,3,'actress',NULL,'[\"Lin Yuyan\"]'),(2460488,1291827,4,'actor',NULL,'[\"Yamamoto Toshio\"]'),(2460488,2767560,5,'director',NULL,NULL),(2460488,3531500,6,'producer','producer',NULL),(2460488,854972,7,'producer','producer',NULL),(2460488,3238657,8,'composer',NULL,NULL),(2460488,567061,9,'cinematographer',NULL,NULL),(2461126,4404335,1,'actress',NULL,'[\"Peggy\",\"Margaret\"]'),(2461126,424684,2,'actor',NULL,'[\"Mark\"]'),(2461126,2400464,3,'actor',NULL,'[\"Tim\"]'),(2461126,399143,4,'actress',NULL,'[\"Gina\"]'),(2461126,364204,5,'director',NULL,NULL),(2461126,3579482,6,'producer','producer',NULL),(2461126,2023699,7,'composer',NULL,NULL),(2461126,2703176,8,'cinematographer',NULL,NULL),(2461126,510458,9,'editor',NULL,NULL),(2461150,584427,10,'producer','producer',NULL),(2461150,302108,1,'actor',NULL,'[\"David Ghantt\"]'),(2461150,5562,2,'actor',NULL,'[\"Steve Chambers\"]'),(2461150,1325419,3,'actress',NULL,'[\"Kelly Campbell\"]'),(2461150,5155666,4,'actor',NULL,'[\"Eric Payne\"]'),(2461150,381478,5,'director',NULL,NULL),(2461150,101302,6,'writer','screenplay',NULL),(2461150,1376062,7,'writer','screenplay',NULL),(2461150,819225,8,'writer','screenplay',NULL),(2461150,326415,9,'producer','producer',NULL),(2461340,1475619,10,'editor',NULL,NULL),(2461340,3943314,1,'actor',NULL,'[\"Erik\"]'),(2461340,4528758,2,'actress',NULL,'[\"Joanna\"]'),(2461340,1869082,3,'actor',NULL,'[\"David\"]'),(2461340,6033413,4,'actress',NULL,'[\"Miranda\"]'),(2461340,4041027,5,'director',NULL,NULL),(2461340,5387558,6,'writer','writer',NULL),(2461340,5464293,7,'composer',NULL,NULL),(2461340,3627934,8,'cinematographer',NULL,NULL),(2461340,3312831,9,'cinematographer',NULL,NULL),(2463208,1911103,10,'producer','producer',NULL),(2463208,5351,1,'actor',NULL,'[\"Big Adam\"]'),(2463208,11880640,2,'actor',NULL,'[\"Young Adam\"]'),(2463208,749263,3,'actor',NULL,'[\"Louis Reed\"]'),(2463208,4950,4,'actress',NULL,'[\"Ellie Reed\"]'),(2463208,506613,5,'director',NULL,NULL),(2463208,2267086,6,'writer','written by',NULL),(2463208,2385905,7,'writer','written by',NULL),(2463208,280814,8,'writer','written by',NULL),(2463208,505662,9,'writer','written by',NULL),(2463288,3446,10,'cinematographer',NULL,NULL),(2463288,6969,1,'actress',NULL,'[\"Meghan\"]'),(2463288,5188,2,'actor',NULL,'[\"Gordon\"]'),(2463288,1843026,3,'actress',NULL,'[\"Rose\"]'),(2463288,942792,4,'actress',NULL,'[\"Denise\"]'),(2463288,109359,5,'director',NULL,NULL),(2463288,454004,6,'producer','producer',NULL),(2463288,524342,7,'producer','producer',NULL),(2463288,742347,8,'producer','producer',NULL),(2463288,2201,9,'composer',NULL,NULL),(2464018,261884,10,'cinematographer',NULL,NULL),(2464018,2694342,1,'actor',NULL,'[\"Dona Hermínia\"]'),(2464018,3451641,2,'actor',NULL,'[\"Juliano\"]'),(2464018,3240305,3,'actress',NULL,'[\"Marcelina\"]'),(2464018,725197,4,'actress',NULL,'[\"Iesa\"]'),(2464018,2853542,5,'director',NULL,NULL),(2464018,4767807,6,'writer','screenplay',NULL),(2464018,1492569,7,'writer','collaborating writer',NULL),(2464018,1095510,8,'producer','producer',NULL),(2464018,3077748,9,'composer',NULL,NULL),(2465140,398335,10,'editor',NULL,NULL),(2465140,505,1,'actress',NULL,'[\"May\"]'),(2465140,1018488,2,'actress',NULL,'[\"Jan\"]'),(2465140,5442,3,'actress',NULL,'[\"Hillary\"]'),(2465140,1748489,4,'actress',NULL,'[\"Esperanza\"]'),(2465140,1347153,5,'director',NULL,NULL),(2465140,1129570,6,'producer','producer',NULL),(2465140,601597,7,'producer','producer',NULL),(2465140,2366,8,'composer',NULL,NULL),(2465140,344738,9,'cinematographer','director of photography',NULL),(2473602,400385,10,'producer','producer',NULL),(2473602,1569276,1,'actor',NULL,'[\"James Brown\"]'),(2473602,1734700,2,'actor',NULL,'[\"Bobby Byrd\"]'),(2473602,101,3,'actor',NULL,'[\"Ben Bart\"]'),(2473602,205626,4,'actress',NULL,'[\"Susie Brown\"]'),(2473602,853238,5,'director',NULL,NULL),(2473602,125336,6,'writer','screenplay',NULL),(2473602,3890871,7,'writer','screenplay',NULL),(2473602,47076,8,'writer','story',NULL),(2473602,4976,9,'producer','producer',NULL),(2473682,1491999,10,'production_designer',NULL,NULL),(2473682,5594209,1,'actor',NULL,'[\"Jesse Arista\"]'),(2473682,246612,2,'actor',NULL,'[\"Hector Estrella\"]'),(2473682,4493176,3,'actress',NULL,'[\"Marisol Vargas\"]'),(2473682,762121,4,'actress',NULL,'[\"Ana Sanchez\"]'),(2473682,484907,5,'director',NULL,NULL),(2473682,2305431,6,'writer','based on the film \"Paranormal Activity\" by',NULL),(2473682,89658,7,'producer','producer',NULL),(2473682,1103210,8,'cinematographer',NULL,NULL),(2473682,687427,9,'editor',NULL,NULL),(2473794,339856,10,'editor',NULL,NULL),(2473794,1758,1,'actor',NULL,'[\"JMW Turner\"]'),(2473794,422234,2,'actor',NULL,'[\"William Turner Snr\"]'),(2473794,40709,3,'actress',NULL,'[\"Hannah Danby\"]'),(2473794,47392,4,'actress',NULL,'[\"Sophia Booth\"]'),(2473794,5139,5,'director',NULL,NULL),(2473794,522946,6,'producer','producer',NULL),(2473794,4904466,7,'composer',NULL,NULL),(2473794,947665,8,'composer',NULL,NULL),(2473794,5836,9,'cinematographer',NULL,NULL),(2474024,577152,10,'cinematographer','director of photography',NULL),(2474024,447695,1,'actress',NULL,'[\"Cathy Hiatt\"]'),(2474024,2921091,2,'actor',NULL,'[\"Jamie Wellerstein\"]'),(2474024,7139651,3,'actress',NULL,'[\"Danica Schwartz\"]'),(2474024,7139652,4,'actress',NULL,'[\"Erica Weiss\"]'),(2474024,481418,5,'director',NULL,NULL),(2474024,2212346,6,'writer','based on the musical play by',NULL),(2474024,5337077,7,'producer','producer',NULL),(2474024,222084,8,'producer','producer',NULL),(2474024,1201051,9,'producer','producer',NULL),(2474310,2815444,10,'cinematographer',NULL,NULL),(2474310,5364484,1,'actor',NULL,'[\"Szabolcs\"]'),(2474310,3944077,2,'actor',NULL,'[\"Áron\"]'),(2474310,773308,3,'actor',NULL,'[\"Bernard\"]'),(2474310,127102,4,'actress',NULL,'[\"Áron\'s Mother\"]'),(2474310,2414670,5,'director',NULL,NULL),(2474310,2037710,6,'writer','screenplay',NULL),(2474310,2419181,7,'producer','producer',NULL),(2474310,678467,8,'producer','producer',NULL),(2474310,1963767,9,'composer',NULL,NULL),(2479478,4228,10,'composer',NULL,NULL),(2479478,1191,1,'actor',NULL,'[\"Tommy\"]'),(2479478,187719,2,'actor',NULL,'[\"Chico\"]'),(2479478,306201,3,'actor',NULL,'[\"Herm\"]'),(2479478,1210124,4,'actor',NULL,'[\"Lil Pete\"]'),(2479478,178997,5,'director',NULL,NULL),(2479478,379056,6,'writer','written by',NULL),(2479478,184445,7,'producer','producer',NULL),(2479478,1848253,8,'producer','producer',NULL),(2479478,340003,9,'composer',NULL,NULL),(2479800,2910622,10,'composer',NULL,NULL),(2479800,731075,1,'actress',NULL,'[\"April\"]'),(2479800,290556,2,'actor',NULL,'[\"Mr. B\"]'),(2479800,5451410,3,'actor',NULL,'[\"Teddy\"]'),(2479800,4534201,4,'actress',NULL,'[\"Emily\"]'),(2479800,178886,5,'director',NULL,NULL),(2479800,6683,6,'producer','producer',NULL),(2479800,506553,7,'producer','producer',NULL),(2479800,2149548,8,'producer','line producer',NULL),(2479800,2071545,9,'producer','line producer',NULL),(24803056,14362192,1,'actor',NULL,'[\"Rodrigo Ortiz Vinholo\"]'),(2481198,716924,10,'producer','producer',NULL),(2481198,4834796,1,'actor',NULL,'[\"Ronnie\"]'),(2481198,1126657,2,'actor',NULL,'[\"Davy\"]'),(2481198,2295590,3,'actor',NULL,'[\"Ally\"]'),(2481198,1363,4,'actress',NULL,'[\"Jean\"]'),(2481198,2077,5,'director',NULL,NULL),(2481198,1114104,6,'writer','writer',NULL),(2481198,531602,7,'producer','producer',NULL),(2481198,656091,8,'producer','producer',NULL),(2481198,662404,9,'producer','producer',NULL),(2483260,177170,10,'writer','story by',NULL),(2483260,926165,1,'actress',NULL,'[\"Tinker Bell\"]'),(2483260,376716,2,'actress',NULL,'[\"Zarina\"]'),(2483260,1089991,3,'actor',NULL,'[\"James\"]'),(2483260,5154,4,'actress',NULL,'[\"Silvermist\"]'),(2483260,391996,5,'director',NULL,NULL),(2483260,397377,6,'writer','screenplay by',NULL),(2483260,1009988,7,'writer','screenplay by',NULL),(2483260,5124,8,'writer','story by',NULL),(2483260,304432,9,'writer','story by',NULL),(2488496,5086,10,'producer','producer',NULL),(2488496,5397459,1,'actress',NULL,'[\"Rey\"]'),(2488496,3915784,2,'actor',NULL,'[\"Finn\"]'),(2488496,1209966,3,'actor',NULL,'[\"Poe Dameron\"]'),(2488496,1727304,4,'actor',NULL,'[\"General Hux\"]'),(2488496,9190,5,'director',NULL,NULL),(2488496,1410,6,'writer','written by',NULL),(2488496,1578335,7,'writer','written by',NULL),(2488496,184,8,'writer','based on characters created by',NULL),(2488496,1333357,9,'producer','producer',NULL),(2490326,159922,10,'producer','producer',NULL),(2490326,704,1,'actor',NULL,'[\"Clint\"]'),(2490326,933988,2,'actor',NULL,'[\"Wade\"]'),(2490326,683467,3,'actress',NULL,'[\"Lucy\"]'),(2490326,1442113,4,'actor',NULL,'[\"Tracy\"]'),(2490326,5732579,5,'director',NULL,NULL),(2490326,5722382,6,'director',NULL,NULL),(2490326,1191481,7,'writer','written by',NULL),(2490326,107302,8,'writer','written by',NULL),(2490326,1892220,9,'writer','story by',NULL),(2493486,863415,10,'composer',NULL,NULL),(2493486,654110,1,'actor',NULL,'[\"Raiden\"]'),(2493486,151,2,'actor',NULL,'[\"Bartok\"]'),(2493486,377336,3,'actor',NULL,'[\"Geza Mott\"]'),(2493486,1818216,4,'actor',NULL,'[\"Emperor\"]'),(2493486,1589546,5,'director',NULL,NULL),(2493486,465480,6,'writer','screenplay',NULL),(2493486,5352443,7,'writer','screenplay',NULL),(2493486,1346566,8,'producer','producer',NULL),(2493486,1948280,9,'composer',NULL,NULL),(2494280,3234869,10,'composer',NULL,NULL),(2494280,933940,1,'actor',NULL,'[\"Stretch\"]'),(2494280,1159180,2,'actor',NULL,'[\"Karl w\",\"a K\"]'),(2494280,197647,3,'actor',NULL,'[\"Laurent\",\"Linares\"]'),(2494280,2395937,4,'actress',NULL,'[\"Candace\"]'),(2494280,138620,5,'director',NULL,NULL),(2494280,179971,6,'writer','story by',NULL),(2494280,3911112,7,'writer','story by',NULL),(2494280,89658,8,'producer','producer',NULL),(2494280,265944,9,'producer','producer',NULL),(2494384,92839,10,'cinematographer',NULL,NULL),(2494384,124,1,'actress',NULL,'[\"Nana Kunning\"]'),(2494384,614165,2,'actor',NULL,'[\"Ivan\"]'),(2494384,491259,3,'actress',NULL,'[\"Jannia Ressmore\"]'),(2494384,2772105,4,'actress',NULL,'[\"Alice\"]'),(2494384,2013191,5,'director',NULL,NULL),(2494384,1028742,6,'producer','producer',NULL),(2494384,481923,7,'producer','producer',NULL),(2494384,602660,8,'producer','producer',NULL),(2494384,111649,9,'composer',NULL,NULL),(2495118,150945,10,'cinematographer','director of photography',NULL),(2495118,938893,1,'actor',NULL,'[\"Yip Man\"]'),(2495118,1239735,2,'actress',NULL,'[\"Chan Sei-mui\"]'),(2495118,150952,3,'actor',NULL,'[\"Tang Shing\"]'),(2495118,874676,4,'actor',NULL,'[\"Ng Chung\"]'),(2495118,946875,5,'director',NULL,NULL),(2495118,497231,6,'writer','screenplay',NULL),(2495118,1707265,7,'producer','producer',NULL),(2495118,3881007,8,'producer','executive producer',NULL),(2495118,1058561,9,'composer',NULL,NULL),(2496366,2905863,10,'editor',NULL,NULL),(2496366,5363996,1,'actor',NULL,'[\"Nader\"]'),(2496366,5363942,2,'actor',NULL,'[\"Stefano\"]'),(2496366,5363488,3,'actress',NULL,'[\"Brigitte\"]'),(2496366,5363670,4,'actress',NULL,'[\"Zoran\"]'),(2496366,2465833,5,'director',NULL,NULL),(2496366,2435377,6,'writer','story collaborator',NULL),(2496366,2738907,7,'writer','writer',NULL),(2496366,608247,8,'producer','producer',NULL),(2496366,162668,9,'cinematographer',NULL,NULL),(2497980,2342540,10,'producer','producer',NULL),(2497980,519043,1,'actor',NULL,'[\"Holt Mulligan\"]'),(2497980,5278,2,'actor',NULL,'[\"Joe Mulligan\"]'),(2497980,179173,3,'actor',NULL,'[\"Bobby\"]'),(2497980,2174090,4,'actress',NULL,'[\"Mila\"]'),(2497980,3413681,5,'director',NULL,NULL),(2497980,3414193,6,'writer','writer',NULL),(2497980,4345145,7,'producer','producer',NULL),(2497980,3873581,8,'producer','producer',NULL),(2497980,4202096,9,'producer','producer',NULL),(2499414,697953,10,'editor',NULL,NULL),(2499414,1869418,1,'actress',NULL,'[\"Claire\"]'),(2499414,2699105,2,'actress',NULL,'[\"Leslie\"]'),(2499414,2902289,3,'actress',NULL,'[\"Zoe\"]'),(2499414,1556400,4,'actress',NULL,'[\"Janet Simmons\"]'),(2499414,294997,5,'director',NULL,NULL),(2499414,783536,6,'director',NULL,NULL),(2499414,89658,7,'producer','producer',NULL),(2499414,755911,8,'producer','producer',NULL),(2499414,561053,9,'cinematographer',NULL,NULL),(2503154,2339833,10,'cinematographer',NULL,NULL),(2503154,1750524,1,'actress',NULL,'[\"Elizabeth Benton\"]'),(2503154,2992079,2,'actor',NULL,'[\"Damien Clark\"]'),(2503154,1995781,3,'actor',NULL,'[\"Max\"]'),(2503154,2385935,4,'actress',NULL,'[\"Lynn Benton\"]'),(2503154,3628670,5,'director',NULL,NULL),(2503154,4757461,6,'writer','co-writer',NULL),(2503154,3360080,7,'producer','producer',NULL),(2503154,2453962,8,'producer','producer',NULL),(2503154,3321545,9,'composer',NULL,NULL),(2504614,5415164,1,'self',NULL,'[\"Self\"]'),(2504614,5412202,2,'self',NULL,'[\"Self\"]'),(2504614,5414184,3,'actor',NULL,'[\"Rose\"]'),(2504614,5411969,4,'self',NULL,'[\"Self\"]'),(2504614,4194689,5,'writer','screenplay',NULL),(2504614,2351700,6,'cinematographer',NULL,NULL),(2504614,2207836,7,'editor',NULL,NULL),(2505294,6444,10,'cinematographer',NULL,NULL),(2505294,1429380,1,'actress',NULL,'[\"Katie Kampenfelt\"]'),(2505294,353243,2,'actress',NULL,'[\"Caroline Kampenfelt\"]'),(2505294,2952467,3,'actor',NULL,'[\"Mark Aubichon\"]'),(2505294,1598,4,'actor',NULL,'[\"Doug Kampenfelt\"]'),(2505294,122335,5,'director',NULL,NULL),(2505294,5316693,6,'producer','producer',NULL),(2505294,1762122,7,'producer','producer',NULL),(2505294,5303360,8,'producer','producer',NULL),(2505294,251363,9,'composer',NULL,NULL),(2508258,1839414,1,'actor',NULL,'[\"Cassie Glenn\"]'),(2508258,1568957,2,'actor',NULL,'[\"Maggie\"]'),(2508258,2371200,3,'actress',NULL,'[\"Heather\"]'),(2508258,3722777,4,'actor',NULL,'[\"Dirk\"]'),(2508258,1218863,5,'director',NULL,NULL),(2508258,3095828,6,'composer',NULL,NULL),(2508258,1850235,7,'cinematographer',NULL,NULL),(2508258,1042028,8,'editor',NULL,NULL),(2508258,678804,9,'production_designer',NULL,NULL),(2509008,4117068,1,'actor',NULL,'[\"James\"]'),(2509008,3169820,2,'actress',NULL,'[\"James\' Mother\"]'),(2509008,2942094,3,'actor',NULL,'[\"Tobias\"]'),(2509008,5361609,4,'director',NULL,NULL),(2509008,5392239,5,'producer','producer',NULL),(2509008,4285499,6,'cinematographer','director of photography',NULL),(2509008,5391611,7,'editor','supervising editor',NULL),(2510894,32310,10,'editor',NULL,NULL),(2510894,1191,1,'actor',NULL,'[\"Dracula\"]'),(2510894,1676221,2,'actor',NULL,'[\"Jonathan\"]'),(2510894,1411125,3,'actress',NULL,'[\"Mavis\"]'),(2510894,416673,4,'actor',NULL,'[\"Frankenstein\"]'),(2510894,850733,5,'director',NULL,NULL),(2510894,806912,6,'writer','written by',NULL),(2510894,244110,7,'writer','based on characters created by',NULL),(2510894,613740,8,'producer','producer',NULL),(2510894,6205,9,'composer',NULL,NULL),(2511190,237236,10,'editor',NULL,NULL),(2511190,924278,1,'actor',NULL,'[\"Phil\"]'),(2511190,213374,2,'actress',NULL,'[\"Susan\"]'),(2511190,4009603,3,'actor',NULL,'[\"Chris\"]'),(2511190,5284988,4,'actress',NULL,'[\"Tina\"]'),(2511190,213983,5,'director',NULL,NULL),(2511190,375604,6,'writer','written by',NULL),(2511190,3003512,7,'producer','producer',NULL),(2511190,5932902,8,'producer','producer',NULL),(2511190,6185,9,'composer',NULL,NULL),(2515030,107463,10,'editor',NULL,NULL),(2515030,1125,1,'actor',NULL,'[\"Pablo Escobar\"]'),(2515030,1242688,2,'actor',NULL,'[\"Nick\"]'),(2515030,1726555,3,'actress',NULL,'[\"Maria\"]'),(2515030,1227232,4,'actor',NULL,'[\"Dylan\"]'),(2515030,224331,5,'director',NULL,NULL),(2515030,545690,6,'writer','adaptation',NULL),(2515030,2185250,7,'producer','producer',NULL),(2515030,2068037,8,'composer',NULL,NULL),(2515030,763030,9,'cinematographer',NULL,NULL),(2515034,739868,10,'producer','producer',NULL),(2515034,576,1,'actor',NULL,'[\"Terrier\"]'),(2515034,252961,2,'actor',NULL,'[\"Barnes\"]'),(2515034,872910,3,'actress',NULL,'[\"Annie\"]'),(2515034,849,4,'actor',NULL,'[\"Felix\"]'),(2515034,603628,5,'director',NULL,NULL),(2515034,541389,6,'writer','novel \"The Prone Gunman\"',NULL),(2515034,534207,7,'writer','screenplay',NULL),(2515034,871428,8,'writer','screenplay',NULL),(2515034,1286457,9,'producer','producer',NULL),(2520512,788617,10,'actor',NULL,'[\"Bernie\"]'),(2520512,549505,1,'actor',NULL,'[\"Marc Maron\"]'),(2520512,30851,2,'actor',NULL,'[\"Dave Anthony\"]'),(2520512,454306,3,'actor',NULL,'[\"Andy Kindler\"]'),(2520512,3091777,4,'actor',NULL,'[\"Kyle\"]'),(2520512,31193,5,'actor',NULL,'[\"Chris\",\"Clerk\",\"Studio Doctor\"]'),(2520512,954253,6,'actress',NULL,'[\"Jen\"]'),(2520512,205063,7,'actress',NULL,'[\"Emily\"]'),(2520512,2139,8,'actor',NULL,'[\"Larry\"]'),(2520512,1419,9,'actress',NULL,'[\"Toni Maron\",\"Toni\"]'),(2523600,1131918,10,'editor',NULL,NULL),(2523600,785842,1,'actor',NULL,'[\"Enrico Oliveri\",\"Giovanni Ernani\"]'),(2523600,557609,2,'actor',NULL,'[\"Andrea Bottini\"]'),(2523600,116254,3,'actress',NULL,'[\"Danielle\"]'),(2523600,1538552,4,'actress',NULL,'[\"Anna\"]'),(2523600,27948,5,'director',NULL,NULL),(2523600,664760,6,'writer','screenplay',NULL),(2523600,53184,7,'producer','producer',NULL),(2523600,79263,8,'composer',NULL,NULL),(2523600,130846,9,'cinematographer',NULL,NULL),(2523692,5389955,10,'composer',NULL,NULL),(2523692,5383288,1,'actress',NULL,'[\"Amy\"]'),(2523692,5383335,2,'actor',NULL,'[\"Connor\"]'),(2523692,5383565,3,'actor',NULL,'[\"James\"]'),(2523692,5383792,4,'actor',NULL,'[\"Matt\"]'),(2523692,5383581,5,'director',NULL,NULL),(2523692,563392,6,'director','co-director',NULL),(2523692,7110934,7,'writer','story',NULL),(2523692,5390715,8,'writer','additional writer',NULL),(2523692,5383466,9,'producer','producer',NULL),(2524674,1190888,10,'composer',NULL,NULL),(2524674,3231562,1,'actress',NULL,'[\"Helen\"]'),(2524674,2556155,2,'actor',NULL,'[\"Robin\"]'),(2524674,4170693,3,'actress',NULL,'[\"Corinna\"]'),(2524674,888,4,'actress',NULL,'[\"Helens Mother\"]'),(2524674,1177494,5,'director',NULL,NULL),(2524674,5542022,6,'writer','screenplay',NULL),(2524674,687861,7,'writer','co-writer',NULL),(2524674,733919,8,'writer','novel',NULL),(2524674,739689,9,'producer','producer',NULL),(2527186,2766163,10,'cinematographer',NULL,NULL),(2527186,3453460,1,'actress',NULL,'[\"Taylor\"]'),(2527186,2483129,2,'actor',NULL,'[\"Football Player 25\"]'),(2527186,39958,3,'actress',NULL,'[\"Ms. Wolf\"]'),(2527186,2005850,4,'actor',NULL,'[\"Moochie\"]'),(2527186,1031246,5,'director',NULL,NULL),(2527186,1032754,6,'director',NULL,NULL),(2527186,1720736,7,'producer','producer',NULL),(2527186,886156,8,'producer','producer',NULL),(2527186,1262626,9,'composer',NULL,NULL),(2527336,6911,10,'cinematographer','director of photography',NULL),(2527336,5397459,1,'actress',NULL,'[\"Rey\"]'),(2527336,3915784,2,'actor',NULL,'[\"Finn\"]'),(2527336,434,3,'actor',NULL,'[\"Luke Skywalker\",\"Dobbu Scay\"]'),(2527336,402,4,'actress',NULL,'[\"Leia Organa\"]'),(2527336,426059,5,'director',NULL,NULL),(2527336,184,6,'writer','based on characters created by',NULL),(2527336,74851,7,'producer','producer',NULL),(2527336,5086,8,'producer','producer',NULL),(2527336,2354,9,'composer',NULL,NULL),(2527338,5086,10,'producer','producer',NULL),(2527338,5397459,1,'actress',NULL,'[\"Rey\"]'),(2527338,3915784,2,'actor',NULL,'[\"Finn\"]'),(2527338,1209966,3,'actor',NULL,'[\"Poe Dameron\"]'),(2527338,3485845,4,'actor',NULL,'[\"Kylo Ren\"]'),(2527338,9190,5,'director',NULL,NULL),(2527338,6516,6,'writer','screenplay by',NULL),(2527338,2081046,7,'writer','story by',NULL),(2527338,1119880,8,'writer','story by',NULL),(2527338,184,9,'writer','based on characters created by',NULL),(2528814,1594757,10,'producer','producer',NULL),(2528814,2436499,1,'actor',NULL,'[\"Josh Wheaton\"]'),(2528814,1757,2,'actor',NULL,'[\"Professor Radisson\"]'),(2528814,924684,3,'actor',NULL,'[\"Reverend Dave\"]'),(2528814,1002,4,'actor',NULL,'[\"Marc Shelley\"]'),(2528814,1880561,5,'director',NULL,NULL),(2528814,1010373,6,'writer','story',NULL),(2528814,465484,7,'writer','story',NULL),(2528814,813301,8,'writer','story',NULL),(2528814,2299609,9,'producer','producer',NULL),(2531258,3511283,10,'production_designer',NULL,NULL),(2531258,629006,1,'actor',NULL,'[\"Master Dao\"]'),(2531258,1787887,2,'actress',NULL,'[\"Anh\"]'),(2531258,950619,3,'actor',NULL,'[\"General Long\"]'),(2531258,4642822,4,'actor',NULL,'[\"Hien\"]'),(2531258,4888194,5,'producer','producer',NULL),(2531258,629062,6,'producer','producer',NULL),(2531258,4517773,7,'composer',NULL,NULL),(2531258,1126346,8,'cinematographer',NULL,NULL),(2531258,3749865,9,'editor',NULL,NULL),(2531344,1375358,10,'producer','producer',NULL),(2531344,5182,1,'actress',NULL,'[\"Lisa\"]'),(2531344,1078479,2,'actor',NULL,'[\"Mitchell\"]'),(2531344,54697,3,'actor',NULL,'[\"Hunter\"]'),(2531344,1105980,4,'actress',NULL,'[\"Julie\"]'),(2531344,134224,5,'director',NULL,NULL),(2531344,1383738,6,'writer','written by',NULL),(2531344,1383078,7,'writer','written by',NULL),(2531344,1308622,8,'producer','producer',NULL),(2531344,1698571,9,'producer','producer',NULL),(2535470,1052026,1,'actor',NULL,'[\"Barry\"]'),(2535470,3658287,2,'actress',NULL,'[\"Brooke\"]'),(2535470,3278698,3,'actor',NULL,'[\"Benny\"]'),(2535470,13075,4,'actor',NULL,'[\"Frank\"]'),(2535470,3737504,5,'director',NULL,NULL),(2535470,3736623,6,'writer','screenplay',NULL),(2535470,1883403,7,'composer',NULL,NULL),(2535470,6749497,8,'cinematographer',NULL,NULL),(2535470,3738284,9,'production_designer',NULL,NULL),(2536428,994004,10,'cinematographer',NULL,NULL),(2536428,1533569,1,'actor',NULL,'[\"Dan\"]'),(2536428,4393560,2,'actress',NULL,'[\"Kelliah\"]'),(2536428,3922902,3,'actor',NULL,'[\"Louis\"]'),(2536428,3026084,4,'actor',NULL,'[\"Jaffar\"]'),(2536428,1320966,5,'director',NULL,NULL),(2536428,4380548,6,'writer','scenario',NULL),(2536428,5376692,7,'producer','producer',NULL),(2536428,1118769,8,'producer','producer',NULL),(2536428,3737930,9,'composer',NULL,NULL),(2537390,1264510,10,'producer','producer',NULL),(2537390,1269723,1,'actor',NULL,'[\"Jeff Lowry\"]'),(2537390,1474425,2,'actress',NULL,'[\"Laura\"]'),(2537390,7515373,3,'actor',NULL,'[\"Fellini Cafe Waiter\"]'),(2537390,2003994,4,'actor',NULL,'[\"Dr. Mark Sonderskov\"]'),(2537390,34531,5,'director',NULL,NULL),(2537390,1852224,6,'director',NULL,NULL),(2537390,537386,7,'writer','screenplay by',NULL),(2537390,6887079,8,'writer','story by',NULL),(2537390,2287411,9,'producer','producer',NULL),(2542420,3284553,10,'editor',NULL,NULL),(2542420,1564072,1,'actress',NULL,'[\"Victoria Skillane\"]'),(2542420,806968,2,'actor',NULL,'[\"Baxter\"]'),(2542420,3095562,3,'actress',NULL,'[\"Jem\"]'),(2542420,1947068,4,'actor',NULL,'[\"Damien\"]'),(2542420,3393440,5,'director',NULL,NULL),(2542420,111765,6,'writer','creator',NULL),(2542420,718553,7,'producer','producer',NULL),(2542420,3132693,8,'composer',NULL,NULL),(2542420,1250449,9,'cinematographer','director of photography',NULL),(2543164,511482,10,'producer','producer',NULL),(2543164,10736,1,'actress',NULL,'[\"Louise Banks\"]'),(2543164,719637,2,'actor',NULL,'[\"Ian Donnelly\"]'),(2543164,1845,3,'actor',NULL,'[\"Colonel Weber\"]'),(2543164,836121,4,'actor',NULL,'[\"Agent Halpern\"]'),(2543164,898288,5,'director',NULL,NULL),(2543164,2104063,6,'writer','screenplay by',NULL),(2543164,5384213,7,'writer','based on the story \"Story of Your Life\" written by',NULL),(2543164,1362282,8,'producer','producer',NULL),(2543164,506613,9,'producer','producer',NULL),(2543472,509414,10,'producer','producer',NULL),(2543472,5016878,1,'actor',NULL,'[\"Auggie\"]'),(2543472,5562,2,'actor',NULL,'[\"Nate\"]'),(2543472,4207679,3,'actress',NULL,'[\"Via\"]'),(2543472,210,4,'actress',NULL,'[\"Isabel\"]'),(2543472,154716,5,'director',NULL,NULL),(2543472,175726,6,'writer','screenplay by',NULL),(2543472,2113666,7,'writer','screenplay by',NULL),(2543472,5383459,8,'writer','based on the novel by',NULL),(2543472,387674,9,'producer','producer',NULL),(2543508,3635401,10,'production_designer',NULL,NULL),(2543508,47896,1,'actress',NULL,'[\"Laura\"]'),(2543508,3906552,2,'actor',NULL,'[\"Shane\"]'),(2543508,621994,3,'actress',NULL,'[\"Lydia\"]'),(2543508,184748,4,'actor',NULL,'[\"Mike\"]'),(2543508,194866,5,'director',NULL,NULL),(2543508,2854670,6,'producer','producer',NULL),(2543508,2288,7,'composer',NULL,NULL),(2543508,294293,8,'cinematographer',NULL,NULL),(2543508,538901,9,'editor',NULL,NULL),(2545118,408683,10,'cinematographer',NULL,NULL),(2545118,5747280,1,'archive_footage',NULL,'[\"Self - Killer Whale\"]'),(2545118,5747284,2,'self',NULL,'[\"Self - OSHA Expert Witness, Whale Researcher\"]'),(2545118,5747281,3,'self',NULL,'[\"Self - Former SeaWorld Trainer\"]'),(2545118,5747282,4,'self',NULL,'[\"Self - Former SeaWorld Trainer\"]'),(2545118,1363250,5,'director',NULL,NULL),(2545118,1492515,6,'writer','written by',NULL),(2545118,6041096,7,'writer','co-writer',NULL),(2545118,652855,8,'producer','producer',NULL),(2545118,63618,9,'composer',NULL,NULL),(2545186,1280483,10,'cinematographer',NULL,NULL),(2545186,3753393,1,'actress',NULL,'[\"Emma Dorian\"]'),(2545186,255475,2,'actor',NULL,'[\"Tristan Fersen\"]'),(2545186,80020,3,'actor',NULL,'[\"Paul\"]'),(2545186,94993,4,'actress',NULL,'[\"Béné Dorian\"]'),(2545186,3627727,5,'director',NULL,NULL),(2545186,5245313,6,'writer','adaptation',NULL),(2545186,109393,7,'producer','producer',NULL),(2545186,499448,8,'producer','producer',NULL),(2545186,3376331,9,'composer',NULL,NULL),(2547584,1714622,10,'cinematographer','director of photography',NULL),(2547584,1055413,1,'actor',NULL,'[\"Tom Sherbourne\"]'),(2547584,2539953,2,'actress',NULL,'[\"Isabel Graysmark\"]'),(2547584,1838,3,'actress',NULL,'[\"Hannah Roennfeldt\"]'),(2547584,6931628,4,'actress',NULL,'[\"Lucy-Grace\"]'),(2547584,161834,5,'director',NULL,NULL),(2547584,5390305,6,'writer','novel',NULL),(2547584,166641,7,'producer','producer',NULL),(2547584,382268,8,'producer','producer',NULL),(2547584,6035,9,'composer',NULL,NULL),(2548396,566970,10,'composer',NULL,NULL),(2548396,1813221,1,'actress',NULL,'[\"Hamilton\"]'),(2548396,654648,2,'actor',NULL,'[\"Kiel\"]'),(2548396,117709,3,'actor',NULL,'[\"Schmidt\"]'),(2548396,651159,4,'actor',NULL,'[\"Monk\"]'),(2548396,1564809,5,'director',NULL,NULL),(2548396,3349927,6,'writer','screenplay by',NULL),(2548396,1136647,7,'writer','story by',NULL),(2548396,9190,8,'producer','producer',NULL),(2548396,6618222,9,'producer','producer',NULL),(2552394,452684,10,'producer','producer',NULL),(2552394,1015,1,'actor',NULL,'[\"Barney Thomson\"]'),(2552394,668,2,'actress',NULL,'[\"Cemolina\"]'),(2552394,935653,3,'actor',NULL,'[\"Detective Inspector Holdall\"]'),(2552394,183822,4,'actor',NULL,'[\"Chief Superintendent McManaman\"]'),(2552394,8126580,5,'writer','based on the book \"The Long Midnight of Barney Thompson\"',NULL),(2552394,184617,6,'writer','adapted for the screen by',NULL),(2552394,973497,7,'writer','written by',NULL),(2552394,6670977,8,'producer','producer',NULL),(2552394,2095719,9,'producer','producer',NULL),(2554274,1302939,10,'composer',NULL,NULL),(2554274,1985859,1,'actress',NULL,'[\"Edith Cushing\"]'),(2554274,1567113,2,'actress',NULL,'[\"Lucille Sharpe\"]'),(2554274,1089991,3,'actor',NULL,'[\"Thomas Sharpe\"]'),(2554274,402271,4,'actor',NULL,'[\"Dr. Alan McMichael\"]'),(2554274,868219,5,'director',NULL,NULL),(2554274,730422,6,'writer','written by',NULL),(2554274,338696,7,'producer','producer',NULL),(2554274,419169,8,'producer','producer',NULL),(2554274,2100078,9,'producer','producer',NULL),(2555268,5635259,1,'self',NULL,'[\"Self\"]'),(2555268,10974307,2,'self',NULL,'[\"Self\"]'),(2555268,3939442,3,'self',NULL,'[\"Self\"]'),(2555268,10974306,4,'self',NULL,'[\"Self\"]'),(2555268,3066399,5,'director',NULL,NULL),(2555268,4938638,6,'producer','producer',NULL),(2555268,3430921,7,'composer',NULL,NULL),(2555268,1629321,8,'cinematographer',NULL,NULL),(2555268,266186,9,'editor',NULL,NULL),(2555736,810430,10,'cinematographer',NULL,NULL),(2555736,1132,1,'actress',NULL,'[\"Evelyn Greenslade\"]'),(2555736,1749,2,'actress',NULL,'[\"Muriel Donnelly\"]'),(2555736,631490,3,'actor',NULL,'[\"Douglas Ainslie\"]'),(2555736,2353862,4,'actor',NULL,'[\"Sonny Kapoor\"]'),(2555736,6960,5,'director',NULL,NULL),(2555736,662530,6,'writer','screenplay by',NULL),(2555736,110357,7,'producer','producer',NULL),(2555736,194446,8,'producer','producer',NULL),(2555736,2353,9,'composer',NULL,NULL),(2557478,1212547,10,'producer','producer',NULL),(2557478,3915784,1,'actor',NULL,'[\"Jake Pentecost\"]'),(2557478,2207222,2,'actor',NULL,'[\"Nate Lambert\"]'),(2557478,8314228,3,'actress',NULL,'[\"Amara Namani\"]'),(2557478,1218607,4,'actor',NULL,'[\"Hermann Gottlieb\"]'),(2557478,215299,5,'director',NULL,NULL),(2557478,3045440,6,'writer','written by',NULL),(2557478,2575780,7,'writer','written by',NULL),(2557478,2385905,8,'writer','written by',NULL),(2557478,2012438,9,'writer','based on characters created by',NULL),(2557490,4344,10,'cinematographer','director of photography',NULL),(2557490,532235,1,'actor',NULL,'[\"Albert\"]'),(2557490,234,2,'actress',NULL,'[\"Anna\"]'),(2557490,553,3,'actor',NULL,'[\"Clinch\"]'),(2557490,1086543,4,'actress',NULL,'[\"Louise\"]'),(2557490,1273148,5,'writer','written by',NULL),(2557490,1273397,6,'writer','written by',NULL),(2557490,164063,7,'producer','producer',NULL),(2557490,835959,8,'producer','producer',NULL),(2557490,6193,9,'composer',NULL,NULL),(2561546,3234869,10,'composer',NULL,NULL),(2561546,1789970,1,'actress',NULL,'[\"Jami\"]'),(2561546,1021,2,'actress',NULL,'[\"Lillian\"]'),(2561546,26364,3,'actor',NULL,'[\"Lone Wolf Morales\"]'),(2561546,2506621,4,'actor',NULL,'[\"Nick\"]'),(2561546,4234,5,'director',NULL,NULL),(2561546,2630745,6,'writer','screenplay',NULL),(2561546,808073,7,'writer',NULL,NULL),(2561546,89658,8,'producer','producer',NULL),(2561546,614682,9,'producer','producer',NULL),(2561572,65100,10,'composer',NULL,NULL),(2561572,2071,1,'actor',NULL,'[\"James\"]'),(2561572,366389,2,'actor',NULL,'[\"Darnell\"]'),(2561572,1555340,3,'actress',NULL,'[\"Alissa\"]'),(2561572,1939267,4,'actor',NULL,'[\"Russell\"]'),(2561572,1000113,5,'director',NULL,NULL),(2561572,1007602,6,'writer','screenplay',NULL),(2561572,731168,7,'writer','screenplay',NULL),(2561572,570912,8,'writer','story',NULL),(2561572,376260,9,'producer','producer',NULL),(2562232,971956,10,'producer','producer',NULL),(2562232,474,1,'actor',NULL,'[\"Riggan\"]'),(2562232,302108,2,'actor',NULL,'[\"Jake\"]'),(2562232,1570,3,'actor',NULL,'[\"Mike\"]'),(2562232,2057859,4,'actress',NULL,'[\"Laura\"]'),(2562232,327944,5,'director',NULL,NULL),(2562232,1481172,6,'writer','written by',NULL),(2562232,5409486,7,'writer','written by',NULL),(2562232,3174584,8,'writer','written by',NULL),(2562232,142577,9,'writer','play based on the story \"What We Talk About When We Talk About Love\"',NULL),(2567026,865189,10,'producer','producer',NULL),(2567026,1985859,1,'actress',NULL,'[\"Alice Kingsleigh\"]'),(2567026,136,2,'actor',NULL,'[\"Hatter Tarrant Hightopp\"]'),(2567026,307,3,'actress',NULL,'[\"Iracebeth\"]'),(2567026,4266,4,'actress',NULL,'[\"Mirana\"]'),(2567026,90386,5,'director',NULL,NULL),(2567026,941314,6,'writer','written by',NULL),(2567026,140902,7,'writer','based on characters created by',NULL),(2567026,318,8,'producer','producer',NULL),(2567026,5387,9,'producer','producer',NULL),(2567038,2845865,1,'actor',NULL,'[\"Alex\"]'),(2567038,2482191,2,'actress',NULL,'[\"Sam\"]'),(2567038,58786,3,'actor',NULL,'[\"Noah\"]'),(2567038,2025993,4,'actor',NULL,'[\"The Mechanic\"]'),(2567038,1985821,5,'director',NULL,NULL),(2567038,2026881,6,'producer','producer',NULL),(2567038,613625,7,'cinematographer',NULL,NULL),(2567038,4178565,8,'production_designer',NULL,NULL),(2568862,153552,10,'cinematographer',NULL,NULL),(2568862,323,1,'actor',NULL,'[\"Joe Harding\"]'),(2568862,273,2,'actor',NULL,'[\"Albert Garner\"]'),(2568862,268,3,'actress',NULL,'[\"Annie Santori\"]'),(2568862,369,4,'actor',NULL,'[\"FBI Agent Arlen Hamer\"]'),(2568862,103785,5,'director',NULL,NULL),(2568862,577647,6,'writer','screenplay by',NULL),(2568862,134191,7,'writer','based on the story by',NULL),(2568862,209773,8,'producer','producer',NULL),(2568862,1387379,9,'composer',NULL,NULL),(2570858,2245768,10,'editor',NULL,NULL),(2570858,461746,1,'actress',NULL,'[\"Cynthia\"]'),(2570858,842737,2,'actress',NULL,'[\"Lorna\"]'),(2570858,4786698,3,'actress',NULL,'[\"Evelyn\"]'),(2570858,1846447,4,'actress',NULL,'[\"Dr. Lurida\"]'),(2570858,3270827,5,'director',NULL,NULL),(2570858,823288,6,'producer','producer',NULL),(2570858,3166633,7,'composer',NULL,NULL),(2570858,6807422,8,'composer',NULL,NULL),(2570858,461486,9,'cinematographer',NULL,NULL),(2576852,386749,10,'composer',NULL,NULL),(2576852,1631269,1,'actress',NULL,'[\"The Princess Kaguya\"]'),(2576852,1001,2,'actor',NULL,'[\"The Bamboo Cutter\"]'),(2576852,5460,3,'actress',NULL,'[\"The Bamboo Cutter\'s Wife\",\"Narrator\"]'),(2576852,5188,4,'actor',NULL,'[\"Prince Ishitsukuri\"]'),(2576852,847223,5,'director',NULL,NULL),(2576852,4940865,6,'writer','screenplay',NULL),(2576852,2052679,7,'producer','producer',NULL),(2576852,1576785,8,'producer','producer',NULL),(2576852,5347659,9,'producer','producer',NULL),(2580928,1578489,10,'production_designer',NULL,NULL),(2580928,3574793,1,'actor',NULL,'[\"Turei\"]'),(2580928,607325,2,'actor',NULL,'[\"Dad\"]'),(2580928,809402,3,'actress',NULL,'[\"Layla\"]'),(2580928,1796000,4,'actor',NULL,NULL),(2580928,1081550,5,'director',NULL,NULL),(2580928,973280,6,'producer','producer',NULL),(2580928,5792317,7,'composer',NULL,NULL),(2580928,1459943,8,'cinematographer',NULL,NULL),(2580928,561794,9,'editor',NULL,NULL),(2582008,361819,10,'cinematographer',NULL,NULL),(2582008,1935952,1,'actress',NULL,'[\"Linda\"]'),(2582008,475365,2,'actress',NULL,'[\"Katharina\"]'),(2582008,2989239,3,'actress',NULL,'[\"Clara\"]'),(2582008,1095,4,'actress',NULL,'[\"Mildred\"]'),(2582008,470081,5,'director',NULL,NULL),(2582008,1980219,6,'writer','screenplay',NULL),(2582008,246849,7,'producer','producer',NULL),(2582008,435137,8,'composer',NULL,NULL),(2582008,1900651,9,'composer',NULL,NULL),(2582496,6061,10,'composer',NULL,NULL),(2582496,3287038,1,'actor',NULL,'[\"Greg\"]'),(2582496,5518972,2,'actor',NULL,'[\"Earl\"]'),(2582496,4972453,3,'actress',NULL,'[\"Rachel\"]'),(2582496,644406,4,'actor',NULL,'[\"Greg\'s Dad\"]'),(2582496,4234,5,'director',NULL,NULL),(2582496,5428959,6,'writer','screenplay by',NULL),(2582496,206154,7,'producer','producer',NULL),(2582496,1557594,8,'producer','producer',NULL),(2582496,2262509,9,'producer','producer',NULL),(2582498,1124841,10,'producer','producer',NULL),(2582498,1256532,1,'actor',NULL,'[\"Sam Rossi\"]'),(2582498,3571592,2,'actor',NULL,'[\"Elwood\"]'),(2582498,1782299,3,'actress',NULL,'[\"Lila Mccabe\"]'),(2582498,1679669,4,'actress',NULL,'[\"Bernadette Barrett\"]'),(2582498,5590177,5,'director',NULL,NULL),(2582498,2988845,6,'writer',NULL,NULL),(2582498,3121883,7,'writer',NULL,NULL),(2582498,1829543,8,'producer','producer',NULL),(2582498,2271939,9,'producer','producer',NULL),(2582502,120667,10,'composer',NULL,NULL),(2582502,128,1,'actor',NULL,'[\"Jake Davis\"]'),(2582502,1086543,2,'actress',NULL,'[\"Katie Davis\"]'),(2582502,666739,3,'actor',NULL,'[\"Cameron\"]'),(2582502,1208167,4,'actress',NULL,'[\"Elizabeth\"]'),(2582502,610831,5,'director',NULL,NULL),(2582502,5428483,6,'writer','written by',NULL),(2582502,1291566,7,'producer','producer',NULL),(2582502,1602119,8,'producer','producer',NULL),(2582502,1997836,9,'producer','producer',NULL),(2582576,1642839,10,'composer',NULL,NULL),(2582576,396558,1,'actor',NULL,'[\"Pvt. Matt Ocre\"]'),(2582576,1334869,2,'actor',NULL,'[\"Sgt. Harper\"]'),(2582576,147147,3,'actor',NULL,'[\"Cpt. Syverson\"]'),(2582576,1412974,4,'actor',NULL,'[\"Sgt. Chutsky\"]'),(2582576,2036500,5,'director',NULL,NULL),(2582576,2532249,6,'writer','written by',NULL),(2582576,330428,7,'producer','producer',NULL),(2582576,4312021,8,'producer','producer',NULL),(2582576,1532744,9,'producer','producer',NULL),(2582782,798930,10,'producer','producer',NULL),(2582782,1517976,1,'actor',NULL,'[\"Toby Howard\"]'),(2582782,4936,2,'actor',NULL,'[\"Tanner Howard\"]'),(2582782,313,3,'actor',NULL,'[\"Marcus Hamilton\"]'),(2582782,83655,4,'actor',NULL,'[\"Alberto Parker\"]'),(2582782,533284,5,'director',NULL,NULL),(2582782,792263,6,'writer','written by',NULL),(2582782,916,7,'producer','producer',NULL),(2582782,352402,8,'producer','producer',NULL),(2582782,454004,9,'producer','producer',NULL),(2582784,3510596,10,'producer','producer',NULL),(2582784,3614913,1,'actress',NULL,'[\"Erica Vandross\"]'),(2582784,1063517,2,'actress',NULL,'[\"Laurie Vandross\"]'),(2582784,1727367,3,'actor',NULL,'[\"Bob Sherman\"]'),(2582784,4395,4,'actor',NULL,'[\"Will Jordan\"]'),(2582784,935253,5,'director',NULL,NULL),(2582784,1709225,6,'writer','story by',NULL),(2582784,818485,7,'writer','written by',NULL),(2582784,4251668,8,'producer','producer',NULL),(2582784,2244426,9,'producer','producer',NULL),(2582802,3225654,10,'composer',NULL,NULL),(2582802,1886602,1,'actor',NULL,'[\"Andrew\"]'),(2582802,799777,2,'actor',NULL,'[\"Fletcher\"]'),(2582802,2552034,3,'actress',NULL,'[\"Nicole\"]'),(2582802,1663,4,'actor',NULL,'[\"Jim Neimann\"]'),(2582802,3227090,5,'director',NULL,NULL),(2582802,89658,6,'producer','producer',NULL),(2582802,2615685,7,'producer','producer',NULL),(2582802,484123,8,'producer','producer',NULL),(2582802,1490949,9,'producer','producer',NULL),(2582846,324041,10,'producer','producer',NULL),(2582846,940362,1,'actress',NULL,'[\"Hazel\"]'),(2582846,5052065,2,'actor',NULL,'[\"Gus\"]'),(2582846,1822659,3,'actor',NULL,'[\"Isaac\"]'),(2582846,368,4,'actress',NULL,'[\"Frannie\"]'),(2582846,1837748,5,'director',NULL,NULL),(2582846,2354099,6,'writer','screenplay',NULL),(2582846,2352210,7,'writer','screenplay',NULL),(2582846,1981261,8,'writer','book',NULL),(2582846,2125212,9,'producer','producer',NULL),(2584384,2305414,10,'editor',NULL,NULL),(2584384,9877392,1,'actor',NULL,'[\"Jojo\"]'),(2584384,5057169,2,'actress',NULL,'[\"Elsa\"]'),(2584384,424060,3,'actress',NULL,'[\"Rosie\"]'),(2584384,169806,4,'actor',NULL,'[\"Adolf\"]'),(2584384,9862836,5,'writer','based upon the book \'Caging Skies\' by',NULL),(2584384,2868859,6,'producer','producer',NULL),(2584384,4438615,7,'producer','producer',NULL),(2584384,315974,8,'composer',NULL,NULL),(2584384,1893246,9,'cinematographer','director of photography',NULL),(2585078,3172728,1,'actress',NULL,'[\"Allie\"]'),(2585078,5443003,2,'actor',NULL,'[\"Kenzie\"]'),(2585078,5082528,3,'actor',NULL,'[\"Henry\"]'),(2585078,3546112,4,'actor',NULL,'[\"Scott\"]'),(2585078,1954634,5,'director',NULL,NULL),(2585078,5442381,6,'writer','screenplay',NULL),(2585078,4978282,7,'producer','producer',NULL),(2585078,2054850,8,'composer',NULL,NULL),(2585078,5442735,9,'cinematographer',NULL,NULL),(2592512,5443588,1,'actress',NULL,'[\"Maura\"]'),(2592512,5473596,2,'actor',NULL,'[\"Sammy\"]'),(2592512,230426,3,'actor',NULL,'[\"Rescue 1\"]'),(2592512,5473571,4,'actor',NULL,'[\"Rick\"]'),(2592512,1871873,5,'director',NULL,NULL),(2592512,5442529,6,'composer',NULL,NULL),(2592512,4217264,7,'cinematographer',NULL,NULL),(2592512,3024970,8,'editor',NULL,NULL),(2592614,534215,10,'cinematographer','director of photography',NULL),(2592614,170,1,'actress',NULL,'[\"Alice\",\"Alicia Marcus\"]'),(2592614,322513,2,'actor',NULL,'[\"Dr. Isaacs\"]'),(2592614,5123,3,'actress',NULL,'[\"Claire Redfield\"]'),(2592614,731575,4,'actor',NULL,'[\"Wesker\"]'),(2592614,27271,5,'director',NULL,NULL),(2592614,93337,6,'producer','producer',NULL),(2592614,352820,7,'producer','producer',NULL),(2592614,474709,8,'producer','producer',NULL),(2592614,368248,9,'composer',NULL,NULL),(2593224,581445,10,'composer',NULL,NULL),(2593224,366,1,'actress',NULL,'[\"Mathilde\"]'),(2593224,1086956,2,'actor',NULL,'[\"Antoine Le Garrec\"]'),(2593224,40545,3,'actor',NULL,'[\"Serge\"]'),(2593224,2847812,4,'actor',NULL,'[\"Stéphane\"]'),(2593224,759270,5,'director',NULL,NULL),(2593224,529642,6,'writer','screenplay',NULL),(2593224,333818,7,'writer','collaboration',NULL),(2593224,552909,8,'producer','producer',NULL),(2593224,1055564,9,'composer',NULL,NULL),(25971180,237608,10,'cinematographer',NULL,NULL),(25971180,933727,1,'actor',NULL,'[\"Vincent\"]'),(25971180,1687610,2,'actor',NULL,'[\"Pierre\"]'),(25971180,2100,3,'actress',NULL,'[\"Camille\"]'),(25971180,14623340,4,'actor',NULL,'[\"Zoé\"]'),(25971180,78704,5,'director',NULL,NULL),(25971180,286202,6,'producer','producer',NULL),(25971180,737293,7,'producer','producer',NULL),(25971180,939359,8,'producer','producer',NULL),(25971180,432257,9,'composer',NULL,NULL),(2599226,237236,10,'editor',NULL,NULL),(2599226,3187025,1,'actress',NULL,'[\"Lucy\"]'),(2599226,5387896,2,'actor',NULL,'[\"Jake\"]'),(2599226,4930837,3,'actor',NULL,'[\"Jasper\"]'),(2599226,269141,4,'actor',NULL,'[\"Courtney\"]'),(2599226,213983,5,'director',NULL,NULL),(2599226,5465383,6,'writer','written by',NULL),(2599226,3003512,7,'producer','producer',NULL),(2599226,5932902,8,'producer','producer',NULL),(2599226,6185,9,'composer',NULL,NULL),(2601160,5140588,1,'actress',NULL,'[\"Deborah\"]'),(2601160,2088015,2,'actor',NULL,'[\"Arthur\"]'),(2601160,5440062,3,'actress',NULL,'[\"Lydia\"]'),(2601160,4826391,4,'actor',NULL,'[\"Timothy\"]'),(2601160,4100945,5,'director',NULL,NULL),(2601160,5440128,6,'composer',NULL,NULL),(2601160,5439959,7,'cinematographer',NULL,NULL),(2614684,705377,10,'cinematographer',NULL,NULL),(2614684,1925239,1,'actor',NULL,'[\"Gary Hook\"]'),(2614684,2730580,2,'actor',NULL,'[\"Lt. Armitage\"]'),(2614684,365317,3,'actor',NULL,'[\"Captain Sandy Browning\"]'),(2614684,691586,4,'actor',NULL,'[\"Training Corporal\"]'),(2614684,1312919,5,'director',NULL,NULL),(2614684,2954373,6,'writer','written by',NULL),(2614684,349168,7,'producer','producer',NULL),(2614684,483642,8,'producer','producer',NULL),(2614684,391794,9,'composer',NULL,NULL),(2617828,578813,10,'cinematographer',NULL,NULL),(2617828,1269047,1,'actor',NULL,'[\"Marc Borgmann\"]'),(2617828,726262,2,'actor',NULL,'[\"Kay Engel\"]'),(2617828,96965,3,'actor',NULL,'[\"Werner Brandt\"]'),(2617828,778348,4,'actress',NULL,'[\"Bettina Bischoff\"]'),(2617828,479810,5,'director',NULL,NULL),(2617828,1256888,6,'writer','written by',NULL),(2617828,956299,7,'writer','story consultant',NULL),(2617828,7961669,8,'composer',NULL,NULL),(2617828,7977610,9,'composer',NULL,NULL),(2618500,1803734,10,'cinematographer',NULL,NULL),(2618500,888,1,'actress',NULL,'[\"Coco\"]'),(2618500,374610,2,'actor',NULL,'[\"Carlos\"]'),(2618500,1164552,3,'actor',NULL,'[\"Andi\"]'),(2618500,354198,4,'actress',NULL,'[\"Patti\"]'),(2618500,429774,5,'director',NULL,NULL),(2618500,5457778,6,'writer','screenplay',NULL),(2618500,1548905,7,'producer','producer',NULL),(2618500,1464012,8,'producer','producer',NULL),(2618500,921815,9,'composer',NULL,NULL),(2620736,1351446,10,'editor',NULL,NULL),(2620736,108703,1,'actor',NULL,'[\"Dawai\"]'),(2620736,3354777,2,'actress',NULL,'[\"Ada\"]'),(2620736,191636,3,'actress',NULL,'[\"Christie\"]'),(2620736,275244,4,'actor',NULL,'[\"Sustin\"]'),(2620736,455659,5,'director',NULL,NULL),(2620736,1720736,6,'producer','producer',NULL),(2620736,886156,7,'producer','producer',NULL),(2620736,4441694,8,'composer',NULL,NULL),(2620736,374460,9,'cinematographer',NULL,NULL),(2625810,2039934,10,'cinematographer','director of photography',NULL),(2625810,680983,1,'actor',NULL,'[\"Nell\"]'),(2625810,939697,2,'actress',NULL,'[\"Eva\"]'),(2625810,1540404,3,'actor',NULL,'[\"Eli\"]'),(2625810,719678,4,'actor',NULL,'[\"Robert\"]'),(2625810,5390,5,'director',NULL,NULL),(2625810,5465949,6,'writer','based on the novel by',NULL),(2625810,275651,7,'producer','producer',NULL),(2625810,317943,8,'producer','producer',NULL),(2625810,2068037,9,'composer',NULL,NULL),(2626350,788202,10,'producer','producer',NULL),(2626350,4554428,1,'actor',NULL,'[\"Sean\"]'),(2626350,263759,2,'actress',NULL,'[\"Andie\"]'),(2626350,1782560,3,'actor',NULL,'[\"Moose\"]'),(2626350,2298016,4,'actor',NULL,'[\"Eddy\"]'),(2626350,2586324,5,'director',NULL,NULL),(2626350,12137,6,'writer','characters',NULL),(2626350,4291727,7,'writer','written by',NULL),(2626350,270549,8,'producer','producer',NULL),(2626350,316774,9,'producer','producer',NULL),(2628260,5606935,1,'self',NULL,'[\"Self\"]'),(2628260,2040736,2,'self',NULL,'[\"Self\"]'),(2628260,730401,3,'self',NULL,'[\"Self\"]'),(2628260,5606752,4,'self',NULL,'[\"Self\"]'),(2628260,1552360,5,'director',NULL,NULL),(2628260,3329566,6,'composer',NULL,NULL),(2630134,4735747,10,'editor',NULL,NULL),(2630134,792198,1,'actress',NULL,'[\"Kristyn\"]'),(2630134,1764070,2,'actress',NULL,'[\"Hailey\"]'),(2630134,1650932,3,'actress',NULL,'[\"Tara\",\"Hannah\"]'),(2630134,2322192,4,'actor',NULL,'[\"Dillon\",\"Prince Seigfried\"]'),(2630134,403481,5,'director',NULL,NULL),(2630134,851945,6,'writer','written by',NULL),(2630134,4734344,7,'producer','producer',NULL),(2630134,1019013,8,'producer','producer',NULL),(2630134,233199,9,'composer',NULL,NULL),(2631186,4191232,10,'writer','hindi dialogue',NULL),(2631186,1659141,1,'actor',NULL,'[\"Shivudu\",\"Baahubali\"]'),(2631186,2281292,2,'actor',NULL,'[\"Bhallaladeva\"]'),(2631186,2011932,3,'actress',NULL,'[\"Devasena\"]'),(2631186,1961459,4,'actress',NULL,'[\"Avanthika\"]'),(2631186,1442514,5,'director',NULL,NULL),(2631186,2353436,6,'writer','story by',NULL),(2631186,7448575,7,'writer','telugu dialogue',NULL),(2631186,4488268,8,'writer','telugu dialogue',NULL),(2631186,4157919,9,'writer','tamil dialogue',NULL),(2637276,614774,10,'composer',NULL,NULL),(2637276,242,1,'actor',NULL,'[\"John\"]'),(2637276,532235,2,'actor',NULL,'[\"Ted\"]'),(2637276,1086543,3,'actress',NULL,'[\"Samantha\"]'),(2637276,1274797,4,'actress',NULL,'[\"Tami-Lynn\"]'),(2637276,1273148,5,'writer','written by',NULL),(2637276,1273397,6,'writer','written by',NULL),(2637276,164063,7,'producer','producer',NULL),(2637276,1124997,8,'producer','producer',NULL),(2637276,835959,9,'producer','producer',NULL),(2638144,376416,10,'producer','producer',NULL),(2638144,1658935,1,'actor',NULL,'[\"Judah Ben-Hur\"]'),(2638144,1527905,2,'actor',NULL,'[\"Messala Severus\"]'),(2638144,763928,3,'actor',NULL,'[\"Jesus\"]'),(2638144,2258164,4,'actress',NULL,'[\"Esther\"]'),(2638144,67457,5,'director',NULL,NULL),(2638144,164851,6,'writer','screenplay by',NULL),(2638144,725983,7,'writer','screenplay by',NULL),(2638144,908753,8,'writer','based on the novel by',NULL),(2638144,199733,9,'producer','producer',NULL),(2639254,3214219,10,'composer',NULL,NULL),(2639254,701,1,'actress',NULL,'[\"Sabine De Barra\"]'),(2639254,614,2,'actor',NULL,'[\"King Louis XIV\"]'),(2639254,1804,3,'actor',NULL,'[\"Philippe, Duc d\'Orleans\"]'),(2639254,774386,4,'actor',NULL,'[\"André Le Notre\"]'),(2639254,110591,5,'writer','screenplay',NULL),(2639254,214255,6,'writer','story',NULL),(2639254,129573,7,'producer','producer',NULL),(2639254,1292052,8,'producer','producer',NULL),(2639254,265724,9,'producer','producer',NULL),(2639336,6597,10,'producer','producer',NULL),(2639336,1376,1,'actress',NULL,'[\"Greta Hideg\"]'),(2639336,1631269,2,'actress',NULL,'[\"Frances McCullen\"]'),(2639336,2140860,3,'actress',NULL,'[\"Erica Penn\"]'),(2639336,675110,4,'actress',NULL,'[\"Animal Shelter Worker\"]'),(2639336,1403,5,'director',NULL,NULL),(2639336,1242522,6,'writer','story by',NULL),(2639336,4744,7,'producer','producer',NULL),(2639336,283478,8,'producer','producer',NULL),(2639336,454004,9,'producer','producer',NULL),(2639344,1082606,10,'producer','producer',NULL),(2639344,1475,1,'actor',NULL,'[\"Ben Hull\"]'),(2639344,547,2,'actor',NULL,'[\"George Garea\"]'),(2639344,673,3,'actress',NULL,'[\"Kate Hull\"]'),(2639344,2253071,4,'actor',NULL,'[\"Joey\"]'),(2639344,755158,5,'director',NULL,NULL),(2639344,951592,6,'writer','written by',NULL),(2639344,1861210,7,'producer','producer',NULL),(2639344,1185381,8,'producer','producer',NULL),(2639344,3246341,9,'producer','producer',NULL),(26440896,60705,10,'actress',NULL,'[\"Judite\"]'),(26440896,519933,1,'actor',NULL,'[\"Jaime\"]'),(26440896,4669612,2,'actress',NULL,'[\"Camila\"]'),(26440896,798611,3,'actress',NULL,'[\"Elisa\"]'),(26440896,2742329,4,'actor',NULL,'[\"Alex\"]'),(26440896,133981,5,'director',NULL,NULL),(26440896,2953984,6,'producer','producer',NULL),(26440896,4740205,7,'cinematographer',NULL,NULL),(26440896,3949693,8,'editor',NULL,NULL),(26440896,3619382,9,'actress',NULL,'[\"Graça\"]'),(2645188,3908957,10,'production_designer',NULL,NULL),(2645188,2301950,1,'actress',NULL,'[\"Sarah\"]'),(2645188,203801,2,'actor',NULL,'[\"Jude\"]'),(2645188,1481829,3,'actor',NULL,'[\"Tom Connelly\"]'),(2645188,2692312,4,'actress',NULL,'[\"Kathryn\"]'),(2645188,2042155,5,'director',NULL,NULL),(2645188,566343,6,'producer','producer',NULL),(2645188,1006435,7,'composer',NULL,NULL),(2645188,1899740,8,'cinematographer',NULL,NULL),(2645188,3861879,9,'editor',NULL,NULL),(2649554,598520,10,'editor',NULL,NULL),(2649554,788335,1,'actor',NULL,'[\"Roy\"]'),(2649554,249291,2,'actor',NULL,'[\"Lucas\"]'),(2649554,379,3,'actress',NULL,'[\"Sarah\"]'),(2649554,3485845,4,'actor',NULL,'[\"Sevier\"]'),(2649554,2158772,5,'director',NULL,NULL),(2649554,338320,6,'producer','producer',NULL),(2649554,2271939,7,'producer','producer',NULL),(2649554,935060,8,'composer',NULL,NULL),(2649554,1309148,9,'cinematographer','director of photography',NULL),(2651924,4147492,1,'actress',NULL,'[\"Jessica\"]'),(2651924,5488482,2,'actress',NULL,'[\"Suzy Bannion\"]'),(2651924,828464,3,'actor',NULL,'[\"Bill\"]'),(2651924,5488695,4,'actress',NULL,'[\"Elizabeth Bannion\"]'),(2651924,3278938,5,'director',NULL,NULL),(2651924,3522780,6,'writer',NULL,NULL),(2651924,4106560,7,'composer',NULL,NULL),(2651924,804480,8,'cinematographer','director of photography',NULL),(2652092,524745,10,'producer','producer',NULL),(2652092,702,1,'actress',NULL,'[\"Carrie\"]'),(2652092,643668,2,'actor',NULL,'[\"Mamere\"]'),(2652092,1563346,3,'actor',NULL,'[\"Jeremiah\"]'),(2652092,2897500,4,'actor',NULL,'[\"Paul\"]'),(2652092,265852,5,'director',NULL,NULL),(2652092,619361,6,'writer','written by',NULL),(2652092,4976,7,'producer','producer',NULL),(2652092,165,8,'producer','producer',NULL),(2652092,444916,9,'producer','producer',NULL),(2652118,1110306,10,'producer','producer',NULL),(2652118,947447,1,'actor',NULL,'[\"Silent Wolf\"]'),(2652118,706,2,'actress',NULL,'[\"Yu Shu Lien\"]'),(2652118,1484270,3,'actor',NULL,'[\"Wei Fang\"]'),(2652118,6812060,4,'actress',NULL,'[\"Snow Vase\"]'),(2652118,950759,5,'director',NULL,NULL),(2652118,299301,6,'writer','screenplay',NULL),(2652118,238893,7,'writer','book series \"The Crane Iron Pentalogy\"',NULL),(2652118,4214,8,'writer',NULL,NULL),(2652118,916,9,'producer','producer',NULL),(26537229,2951803,10,'cinematographer',NULL,NULL),(26537229,6450743,1,'actor',NULL,'[\"Tanjiro Kamado\"]'),(26537229,5389637,2,'actress',NULL,NULL),(26537229,2299231,3,'actress',NULL,'[\"Mitsuri Kanroji\"]'),(26537229,4035204,4,'actress',NULL,'[\"Aoi Kanzaki\"]'),(26537229,1417038,5,'director',NULL,NULL),(26537229,11019861,6,'writer','screenplay',NULL),(26537229,10281577,7,'writer','original story',NULL),(26537229,435317,8,'composer',NULL,NULL),(26537229,2283317,9,'composer',NULL,NULL),(2656122,1825294,10,'producer','producer',NULL),(2656122,1031324,1,'actor',NULL,'[\"Bruno\"]'),(2656122,517937,2,'actress',NULL,'[\"Vicky\"]'),(2656122,3555926,3,'actor',NULL,'[\"Roman Centurion\"]'),(2656122,3687514,4,'director',NULL,NULL),(2656122,1965566,5,'writer','writer',NULL),(2656122,3890751,6,'writer','additional ideas',NULL),(2656122,2451815,7,'writer','additional ideas',NULL),(2656122,5671504,8,'writer','additional ideas',NULL),(2656122,5033218,9,'writer','additional ideas',NULL),(2660888,4259881,10,'writer','writer',NULL),(2660888,1517976,1,'actor',NULL,'[\"Captain James T. Kirk\"]'),(2660888,704270,2,'actor',NULL,'[\"Commander Spock\"]'),(2660888,881631,3,'actor',NULL,'[\"Doctor \'Bones\' McCoy\"]'),(2660888,757855,4,'actress',NULL,'[\"Lieutenant Uhura\"]'),(2660888,510912,5,'director',NULL,NULL),(2660888,670408,6,'writer','written by',NULL),(2660888,1136647,7,'writer','written by',NULL),(2660888,734472,8,'writer','based upon \"Star Trek\" created by',NULL),(2660888,649460,9,'writer','writer',NULL),(2662716,271064,10,'editor',NULL,NULL),(2662716,6551426,1,'actor',NULL,'[\"David\"]'),(2662716,2128444,2,'actress',NULL,'[\"Mónica\"]'),(2662716,4655830,3,'actor',NULL,'[\"Rafael\"]'),(2662716,6551427,4,'actress',NULL,'[\"Paulinha\"]'),(2662716,757651,5,'director',NULL,NULL),(2662716,37665,6,'producer','producer',NULL),(2662716,562462,7,'producer','producer',NULL),(2662716,3732104,8,'composer',NULL,NULL),(2662716,1738811,9,'cinematographer',NULL,NULL),(2664258,1650747,10,'cinematographer',NULL,NULL),(2664258,4496659,1,'actor',NULL,'[\"Yahya\"]'),(2664258,1502269,2,'actor',NULL,'[\"Ahmad\"]'),(2664258,2475729,3,'actress',NULL,'[\"Kindergärtnerin\"]'),(2664258,2515050,4,'actress',NULL,'[\"Nachrichtensprecherin\"]'),(2664258,2677390,5,'director',NULL,NULL),(2664258,3078572,6,'producer','producer',NULL),(2664258,2336612,7,'producer','producer',NULL),(2664258,918326,8,'producer','producer',NULL),(2664258,1804246,9,'composer',NULL,NULL),(2667380,385311,10,'composer',NULL,NULL),(2667380,511892,1,'actor',NULL,'[\"Bukes\"]'),(2667380,3948952,2,'actress',NULL,'[\"Mills\"]'),(2667380,2916966,3,'actor',NULL,'[\"Drifter\"]'),(2667380,4707183,4,'actor',NULL,'[\"Goodwin\"]'),(2667380,2684095,5,'director',NULL,NULL),(2667380,629242,6,'producer','producer',NULL),(2667380,696486,7,'producer','producer',NULL),(2667380,724597,8,'producer','producer',NULL),(2667380,2005794,9,'producer','producer',NULL),(2671706,3893,10,'editor',NULL,NULL),(2671706,243,1,'actor',NULL,'[\"Troy Maxson\"]'),(2671706,205626,2,'actress',NULL,'[\"Rose Maxson\"]'),(2671706,376610,3,'actor',NULL,'[\"Jim Bono\"]'),(2671706,5381254,4,'actor',NULL,'[\"Cory\"]'),(2671706,933025,5,'writer','screenplay by',NULL),(2671706,85542,6,'producer','producer',NULL),(2671706,748784,7,'producer','producer',NULL),(2671706,953616,8,'composer',NULL,NULL),(2671706,1401820,9,'cinematographer','director of photography',NULL),(26744173,15223726,10,'cinematographer',NULL,NULL),(26744173,6298111,1,'actor',NULL,NULL),(26744173,9656960,2,'actor',NULL,NULL),(26744173,1566197,3,'actor',NULL,NULL),(26744173,11674492,4,'actor',NULL,'[\"Petrol Pump Guy\"]'),(26744173,2563022,5,'director',NULL,NULL),(26744173,13243990,6,'producer','producer',NULL),(26744173,8092250,7,'producer','producer',NULL),(26744173,1171979,8,'composer',NULL,NULL),(26744173,2292141,9,'cinematographer',NULL,NULL),(2674426,1899,10,'cinematographer','director of photography',NULL),(2674426,3592338,1,'actress',NULL,'[\"Lou Clark\"]'),(2674426,3510471,2,'actor',NULL,'[\"Will Traynor\"]'),(2674426,5216,3,'actress',NULL,'[\"Camilla Traynor\"]'),(2674426,1097,4,'actor',NULL,'[\"Stephen Traynor\"]'),(2674426,4824763,5,'director',NULL,NULL),(2674426,4424713,6,'writer','based on the novel by',NULL),(2674426,654077,7,'producer','producer',NULL),(2674426,1651942,8,'producer','producer',NULL),(2674426,35661,9,'composer',NULL,NULL),(2674430,3017255,10,'producer','producer',NULL),(2674430,835016,1,'actor',NULL,'[\"William D. Stanaforth\"]'),(2674430,5561,2,'actor',NULL,'[\"Louis \'Skinny\' Skinner (CapCom)\"]'),(2674430,5125,3,'actress',NULL,'[\"Emily Maddox\"]'),(2674430,509264,4,'actor',NULL,'[\"Greenstreet\"]'),(2674430,5457825,5,'director',NULL,NULL),(2674430,4132650,6,'producer','producer',NULL),(2674430,199079,7,'producer','producer',NULL),(2674430,4500976,8,'producer','producer',NULL),(2674430,1776651,9,'producer','producer',NULL),(2675914,5226720,10,'composer',NULL,NULL),(2675914,1745,1,'actor',NULL,'[\"Nils Dickman\"]'),(2675914,4486,2,'actor',NULL,'[\"\'Papa\' Popovic\"]'),(2675914,1914298,3,'actor',NULL,'[\"Ole \'Greven\' Forsby\"]'),(2675914,1939580,4,'actor',NULL,'[\"Aron \'Junior\' Horowitz\"]'),(2675914,596407,5,'director',NULL,NULL),(2675914,7344,6,'writer','script',NULL),(2675914,321521,7,'writer','based on a story by',NULL),(2675914,1626598,8,'producer','executive producer',NULL),(2675914,4655014,9,'composer',NULL,NULL),(2678152,5505737,1,'actor',NULL,'[\"The Model\"]'),(2678152,5505335,2,'actor',NULL,'[\"Monster 3\"]'),(2678152,2231646,3,'actor',NULL,'[\"Wireboy\"]'),(2678152,5505260,4,'actor',NULL,'[\"Monster 2\"]'),(2678152,4143195,5,'director',NULL,NULL),(2678152,5505150,6,'writer','writer',NULL),(2678152,5312746,7,'producer','producer',NULL),(2679042,1457858,10,'producer','producer',NULL),(2679042,1670029,1,'actor',NULL,'[\"Agent 47\"]'),(2679042,3799669,2,'actress',NULL,'[\"Katia\"]'),(2679042,704270,3,'actor',NULL,'[\"John Smith\"]'),(2679042,1354,4,'actor',NULL,'[\"Litvenko\"]'),(2679042,5507490,5,'director',NULL,NULL),(2679042,940790,6,'writer','screenplay',NULL),(2679042,3360218,7,'writer','screenplay',NULL),(2679042,412282,8,'writer','video game',NULL),(2679042,2288699,9,'writer','video game',NULL),(2690226,304372,10,'producer','producer',NULL),(2690226,1527,1,'actress',NULL,'[\"Norma\"]'),(2690226,4726634,2,'actress',NULL,'[\"Louise\"]'),(2690226,2764022,3,'actor',NULL,'[\"Joseph\"]'),(2690226,384751,4,'actress',NULL,'[\"Myra Brooks\"]'),(2690226,257554,5,'director',NULL,NULL),(2690226,271501,6,'writer','screenplay by',NULL),(2690226,5509690,7,'writer','based on the book by',NULL),(2690226,1163710,8,'producer','producer',NULL),(2690226,9175660,9,'producer','producer',NULL),(2692250,304830,10,'writer','characters',NULL),(2692250,1774,1,'actor',NULL,'[\"Larry Daley\",\"Laaa\"]'),(2692250,245,2,'actor',NULL,'[\"Teddy Roosevelt\",\"Voice of Garuda\"]'),(2692250,5562,3,'actor',NULL,'[\"Jedediah\"]'),(2692250,1813,4,'actor',NULL,'[\"Cecil\"]'),(2692250,506613,5,'director',NULL,NULL),(2692250,1115862,6,'writer','screenplay',NULL),(2692250,1911349,7,'writer','screenplay',NULL),(2692250,295296,8,'writer','story',NULL),(2692250,502073,9,'writer','characters',NULL),(2692904,942549,10,'editor',NULL,NULL),(2692904,362766,1,'actor',NULL,'[\"Ivan Locke\"]'),(2692904,1469236,2,'actress',NULL,'[\"Bethan\"]'),(2692904,2235721,3,'actress',NULL,'[\"Katrina\"]'),(2692904,778831,4,'actor',NULL,'[\"Donal\"]'),(2692904,1140275,5,'director',NULL,NULL),(2692904,373456,6,'producer','producer',NULL),(2692904,916986,7,'producer','producer',NULL),(2692904,385467,8,'composer',NULL,NULL),(2692904,952539,9,'cinematographer','director of photography',NULL),(2693664,2789,10,'editor',NULL,NULL),(2693664,396558,1,'actor',NULL,'[\"Flem Lever\"]'),(2693664,2240346,2,'actor',NULL,'[\"Jerome Holm\"]'),(2693664,788335,3,'actor',NULL,'[\"Ernest Holm\"]'),(2693664,1102577,4,'actress',NULL,'[\"Mary Holm\"]'),(2693664,658823,5,'director',NULL,NULL),(2693664,2934638,6,'producer','producer',NULL),(2693664,528485,7,'producer','producer',NULL),(2693664,1791103,8,'composer',NULL,NULL),(2693664,638365,9,'cinematographer',NULL,NULL),(2702724,501999,10,'composer',NULL,NULL),(2702724,565250,1,'actress',NULL,'[\"Michelle Darnell\"]'),(2702724,68338,2,'actress',NULL,'[\"Claire\"]'),(2702724,227759,3,'actor',NULL,'[\"Renault\"]'),(2702724,3993221,4,'actress',NULL,'[\"Rachel\"]'),(2702724,1229520,5,'director',NULL,NULL),(2702724,1133719,6,'writer','written by',NULL),(2702724,2071,7,'producer','producer',NULL),(2702724,376260,8,'producer','producer',NULL),(2702724,570912,9,'producer','producer',NULL),(2704998,1907858,10,'producer','producer',NULL),(2704998,867,1,'actor',NULL,'[\"Max\"]'),(2704998,1046097,2,'actress',NULL,'[\"Annie\"]'),(2704998,151419,3,'actor',NULL,'[\"Brooks\"]'),(2704998,1279721,4,'actress',NULL,'[\"Sarah\"]'),(2704998,197855,5,'director',NULL,NULL),(2704998,326246,6,'director',NULL,NULL),(2704998,991423,7,'writer','written by',NULL),(2704998,204862,8,'producer','producer',NULL),(2704998,2470810,9,'producer','producer',NULL),(2707858,2040193,10,'writer','scenario collaborator',NULL),(2707858,2582755,1,'actor',NULL,'[\"Yves Saint Laurent\"]'),(2707858,302916,2,'actor',NULL,'[\"Pierre Bergé\"]'),(2707858,3114649,3,'actress',NULL,'[\"Victoire Doutreleau\"]'),(2707858,1357722,4,'actress',NULL,'[\"Loulou de la Falaise\"]'),(2707858,504267,5,'director',NULL,NULL),(2707858,404093,6,'writer','scenario',NULL),(2707858,276466,7,'writer','scenario',NULL),(2707858,4766328,8,'writer','book',NULL),(2707858,5747900,9,'writer','collaborating writer',NULL),(2709692,372329,10,'producer','producer',NULL),(2709692,1212722,1,'actor',NULL,'[\"The Grinch\"]'),(2709692,7372981,2,'actress',NULL,'[\"Cindy-Lou Who\"]'),(2709692,429069,3,'actress',NULL,'[\"Donna Who\"]'),(2709692,1214289,4,'actor',NULL,'[\"Narrator\"]'),(2709692,155528,5,'director',NULL,NULL),(2709692,608714,6,'director',NULL,NULL),(2709692,1942829,7,'writer','screenplay by',NULL),(2709692,842476,8,'writer','screenplay by',NULL),(2709692,317450,9,'writer','based on the book \"How The Grinch Stole Christmas\" by',NULL),(2709768,577560,10,'producer','producer',NULL),(2709768,127373,1,'actor',NULL,'[\"Max\"]'),(2709768,832314,2,'actor',NULL,'[\"Duke\"]'),(2709768,366389,3,'actor',NULL,'[\"Snowball\"]'),(2709768,1128572,4,'actress',NULL,'[\"Chloe\"]'),(2709768,719208,5,'director',NULL,NULL),(2709768,666791,6,'writer','written by',NULL),(2709768,202425,7,'writer','written by',NULL),(2709768,528244,8,'writer','written by',NULL),(2709768,372329,9,'producer','producer',NULL),(2710826,1824014,10,'cinematographer',NULL,NULL),(2710826,707214,1,'actress',NULL,'[\"Robyn\"]'),(2710826,4187130,2,'actor',NULL,'[\"Seb\"]'),(2710826,2917590,3,'actress',NULL,'[\"Patricia\"]'),(2710826,4589735,4,'actress',NULL,'[\"Livvy\"]'),(2710826,1504946,5,'director',NULL,NULL),(2710826,1651487,6,'director',NULL,NULL),(2710826,1497219,7,'writer','writer',NULL),(2710826,3760436,8,'producer','producer',NULL),(2710826,4133459,9,'composer',NULL,NULL),(2713180,1664042,10,'cinematographer','director of photography',NULL),(2713180,93,1,'actor',NULL,'[\"Don \'Wardaddy\' Collier\"]'),(2713180,479471,2,'actor',NULL,'[\"Boyd \'Bible\' Swan\"]'),(2713180,503567,3,'actor',NULL,'[\"Norman Ellison\"]'),(2713180,671567,4,'actor',NULL,'[\"Trini \'Gordo\' Garcia\"]'),(2713180,43742,5,'director',NULL,NULL),(2713180,1088848,6,'producer','producer',NULL),(2713180,971956,7,'producer','producer',NULL),(2713180,808178,8,'producer','producer',NULL),(2713180,1888527,9,'composer',NULL,NULL),(2717822,1589604,10,'composer',NULL,NULL),(2717822,1165110,1,'actor',NULL,'[\"Nick Hathaway\"]'),(2717822,205626,2,'actress',NULL,'[\"Carol Barrett\"]'),(2717822,2325018,3,'actress',NULL,'[\"Chen Lien\"]'),(2717822,910966,4,'actor',NULL,'[\"Chen Dawai\"]'),(2717822,520,5,'director',NULL,NULL),(2717822,1420156,6,'writer','written by',NULL),(2717822,419169,7,'producer','producer',NULL),(2717822,2100078,8,'producer','producer',NULL),(2717822,4581,9,'composer',NULL,NULL),(2717860,1028202,10,'cinematographer','director of photography',NULL),(2717860,3510471,1,'actor',NULL,'[\"Alistair Ryle\"]'),(2717860,1796057,2,'actor',NULL,'[\"Miles\"]'),(2717860,3150488,3,'actor',NULL,'[\"Harry Villiers\"]'),(2717860,3726887,4,'actress',NULL,'[\"Rachel\"]'),(2717860,771054,5,'director',NULL,NULL),(2717860,5529799,6,'writer','written by',NULL),(2717860,110357,7,'producer','producer',NULL),(2717860,194446,8,'producer','producer',NULL),(2717860,934719,9,'composer',NULL,NULL),(2718492,253120,10,'composer',NULL,NULL),(2718492,474492,1,'actress',NULL,'[\"Wanda\"]'),(2718492,5531398,2,'actress',NULL,'[\"Anna\"]'),(2718492,4221607,3,'actor',NULL,'[\"Lis\"]'),(2718492,871827,4,'actor',NULL,'[\"Szymon\"]'),(2718492,667734,5,'director',NULL,NULL),(2718492,501947,6,'writer','screenplay',NULL),(2718492,8937,7,'producer','producer',NULL),(2718492,246185,8,'producer','producer',NULL),(2718492,2038610,9,'producer','producer',NULL),(2719848,271479,10,'producer','producer',NULL),(2719848,164809,1,'actor',NULL,'[\"Rob Hall\"]'),(2719848,7583273,2,'actor',NULL,'[\"Ang Dorjee\"]'),(2719848,942876,3,'actor',NULL,'[\"Michael Groom\"]'),(2719848,376540,4,'actor',NULL,'[\"Andy \'Harold\' Harris\"]'),(2719848,466349,5,'director',NULL,NULL),(2719848,629933,6,'writer','screenplay by',NULL),(2719848,64479,7,'writer','screenplay by',NULL),(2719848,55717,8,'producer','producer',NULL),(2719848,79677,9,'producer','producer',NULL),(2720680,64940,10,'editor',NULL,NULL),(2720680,586568,1,'actor',NULL,'[\"Jon Jensen\"]'),(2720680,1200692,2,'actress',NULL,'[\"Madelaine\"]'),(2720680,604742,3,'actor',NULL,'[\"Henry Delarue\"]'),(2720680,134642,4,'actor',NULL,'[\"Corsican\"]'),(2720680,506290,5,'director',NULL,NULL),(2720680,421314,6,'writer',NULL,NULL),(2720680,1011849,7,'producer','producer',NULL),(2720680,934719,8,'composer','composer',NULL),(2720680,2854,9,'cinematographer','director of photography',NULL),(2724064,3116399,10,'editor',NULL,NULL),(2724064,5575,1,'actor',NULL,'[\"Fin Shepard\"]'),(2724064,5346,2,'actress',NULL,'[\"April Wexler\"]'),(2724064,1334,3,'actor',NULL,'[\"George\"]'),(2724064,2628561,4,'actress',NULL,'[\"Nova Clarke\"]'),(2724064,3116,5,'director',NULL,NULL),(2724064,505736,6,'writer','written by',NULL),(2724064,490375,7,'producer','producer',NULL),(2724064,3267200,8,'composer',NULL,NULL),(2724064,2244594,9,'cinematographer','director of photography',NULL),(2725962,370181,10,'cinematographer',NULL,NULL),(2725962,683253,1,'actress',NULL,'[\"Abi\"]'),(2725962,855039,2,'actor',NULL,'[\"Doug\"]'),(2725962,175262,3,'actor',NULL,'[\"Gordie\"]'),(2725962,587950,4,'actor',NULL,'[\"Gavin\"]'),(2725962,357725,5,'director',NULL,NULL),(2725962,420746,6,'director',NULL,NULL),(2725962,860034,7,'producer','producer',NULL),(2725962,1311708,8,'producer','producer',NULL),(2725962,373588,9,'composer',NULL,NULL),(2726560,4517772,10,'producer','producer',NULL),(2726560,2207222,1,'actor',NULL,'[\"Luke Collins\"]'),(2726560,1429380,2,'actress',NULL,'[\"Sophia Danko\"]'),(2726560,257,3,'actor',NULL,'[\"Ira Levinson\"]'),(2726560,1658935,4,'actor',NULL,'[\"Young Ira\"]'),(2726560,863387,5,'director',NULL,NULL),(2726560,817023,6,'writer','novella',NULL),(2726560,93271,7,'writer','screenplay',NULL),(2726560,2125212,8,'producer','producer',NULL),(2726560,324041,9,'producer','producer',NULL),(2737050,300229,10,'production_designer',NULL,NULL),(2737050,182839,1,'actress',NULL,'[\"Sandra\"]'),(2737050,740090,2,'actor',NULL,'[\"Manu\"]'),(2737050,1595165,3,'actress',NULL,'[\"Juliette\"]'),(2737050,2719128,4,'actor',NULL,'[\"M. Dumont\"]'),(2737050,201094,5,'director',NULL,NULL),(2737050,201095,6,'director',NULL,NULL),(2737050,294654,7,'producer','producer',NULL),(2737050,545822,8,'cinematographer',NULL,NULL),(2737050,236549,9,'editor',NULL,NULL),(2737304,870106,10,'producer','producer',NULL),(2737304,113,1,'actress',NULL,'[\"Malorie\"]'),(2737304,5218990,2,'actor',NULL,'[\"Tom\"]'),(2737304,518,3,'actor',NULL,'[\"Douglas\"]'),(2737304,5299,4,'actress',NULL,'[\"Jessica\"]'),(2737304,81540,5,'director',NULL,NULL),(2737304,2104063,6,'writer','screenplay by',NULL),(2737304,4789922,7,'writer','based on the novel by',NULL),(2737304,1249995,8,'producer','producer',NULL),(2737304,604555,9,'producer','producer',NULL),(2742544,2333751,10,'producer','producer',NULL),(2742544,659363,1,'actress',NULL,'[\"Samantha\"]'),(2742544,1780,2,'actor',NULL,'[\"Dr. Hill\"]'),(2742544,1785339,3,'actor',NULL,'[\"Joshua\"]'),(2742544,3474430,4,'actor',NULL,'[\"Michael\"]'),(2742544,5659625,5,'director','executive director',NULL),(2742544,275244,6,'writer','screenplay by',NULL),(2742544,1657200,7,'writer','screenplay by',NULL),(2742544,1593812,8,'writer','original story',NULL),(2742544,6980752,9,'writer','story by',NULL),(27502426,2775878,10,'production_designer',NULL,NULL),(27502426,14799370,1,'self',NULL,'[\"Self\"]'),(27502426,14799371,2,'self',NULL,'[\"Self\"]'),(27502426,7200284,3,'archive_footage',NULL,'[\"Self - delivering a speech on TV\"]'),(27502426,14799373,4,'self',NULL,'[\"Self\"]'),(27502426,4141599,5,'director',NULL,NULL),(27502426,2329106,6,'producer','producer',NULL),(27502426,5251743,7,'composer',NULL,NULL),(27502426,11111365,8,'cinematographer',NULL,NULL),(27502426,4458621,9,'editor',NULL,NULL),(2751310,774086,10,'producer','producer',NULL),(2751310,5286,1,'actor',NULL,'[\"Eddie\"]'),(2751310,4448022,2,'actress',NULL,'[\"Pilar\"]'),(2751310,3172776,3,'actor',NULL,'[\"Tito\"]'),(2751310,802876,4,'actress',NULL,'[\"Sydney\"]'),(2751310,1690967,5,'director',NULL,NULL),(2751310,5620591,6,'writer','written by',NULL),(2751310,2279345,7,'producer','producer',NULL),(2751310,1693627,8,'producer','producer',NULL),(2751310,4375802,9,'producer','producer',NULL),(2751390,6296,10,'composer',NULL,NULL),(2751390,44535,1,'actress',NULL,'[\"Kathryn\"]'),(2751390,452161,2,'actress',NULL,'[\"Monica\"]'),(2751390,797631,3,'actress',NULL,'[\"Tamara\"]'),(2751390,244707,4,'actor',NULL,'[\"Simeon\"]'),(2751390,720297,5,'director',NULL,NULL),(2751390,43697,6,'writer','play',NULL),(2751390,4124,7,'writer','adaptation',NULL),(2751390,78811,8,'writer','dialogue',NULL),(2751390,515201,9,'producer','producer',NULL),(2752200,1136185,10,'editor',NULL,NULL),(2752200,4297691,1,'actress',NULL,'[\"Isabelle\"]'),(2752200,656768,2,'actress',NULL,'[\"Sylvie\"]'),(2752200,682692,3,'actor',NULL,'[\"Patrick\"]'),(2752200,3495707,4,'actor',NULL,'[\"Victor\"]'),(2752200,654830,5,'director',NULL,NULL),(2752200,22969,6,'producer','producer',NULL),(2752200,22971,7,'producer','producer',NULL),(2752200,739151,8,'composer',NULL,NULL),(2752200,551785,9,'cinematographer','director of photography',NULL),(2752688,6290,10,'composer',NULL,NULL),(2752688,305558,1,'actor',NULL,'[\"Maziar Bahari\"]'),(2752688,91035,2,'actor',NULL,'[\"Javadi (Rosewater)\"]'),(2752688,503059,3,'actor',NULL,'[\"Davood\"]'),(2752688,82211,4,'actor',NULL,'[\"Baba Akbar\"]'),(2752688,829537,5,'director',NULL,NULL),(2752688,46867,6,'writer','book \"Then They Came for Me: A Family\'s Story of Love, Captivity, and Survival\"',NULL),(2752688,5566166,7,'writer','book \"Then They Came for Me: A Family\'s Story of Love, Captivity, and Survival\"',NULL),(2752688,698133,8,'producer','producer',NULL),(2752688,748784,9,'producer','producer',NULL),(2756032,1397781,10,'cinematographer','director of photography',NULL),(2756032,243233,1,'actor',NULL,'[\"Ethan\"]'),(2756032,5253,2,'actress',NULL,'[\"Sophie\"]'),(2756032,1101,3,'actor',NULL,'[\"Therapist\"]'),(2756032,6686435,4,'actress',NULL,'[\"Waitress\"]'),(2756032,1660595,5,'director',NULL,NULL),(2756032,1645301,6,'writer','written by',NULL),(2756032,2400555,7,'producer','producer',NULL),(2756032,3737483,8,'composer',NULL,NULL),(2756032,2450367,9,'composer',NULL,NULL),(2758904,605775,10,'producer','producer',NULL),(2758904,1269723,1,'actor',NULL,'[\"Evan\"]'),(2758904,2554352,2,'actor',NULL,'[\"Jason\"]'),(2758904,3042755,3,'actor',NULL,'[\"Nardo\"]'),(2758904,940990,4,'actress',NULL,'[\"Tracy\"]'),(2758904,35905,5,'director',NULL,NULL),(2758904,2871458,6,'writer','story by',NULL),(2758904,909022,7,'writer','story by',NULL),(2758904,112189,8,'producer','producer',NULL),(2758904,1506459,9,'producer','producer',NULL),(2761578,247577,10,'cinematographer','director of photography',NULL),(2761578,1113550,1,'actress',NULL,'[\"Hannah Lee Baker\"]'),(2761578,293,2,'actor',NULL,'[\"Frank Stinson\"]'),(2761578,700856,3,'actor',NULL,'[\"Bill\"]'),(2761578,891786,4,'actress',NULL,'[\"Amber Dawn Baker\"]'),(2761578,1766424,5,'director',NULL,NULL),(2761578,2480526,6,'producer','producer',NULL),(2761578,1077668,7,'producer','producer',NULL),(2761578,821406,8,'producer','producer',NULL),(2761578,6012,9,'composer',NULL,NULL),(2762506,7208988,10,'composer',NULL,NULL),(2762506,8152221,1,'actress',NULL,'[\"Teresa\"]'),(2762506,6203018,2,'actor',NULL,'[\"Pacote\",\"Acácio\"]'),(2762506,6320498,3,'actor',NULL,'[\"Lunga\"]'),(2762506,10076475,4,'actor',NULL,'[\"Tony Jr.\"]'),(2762506,2289860,5,'director',NULL,NULL),(2762506,2207625,6,'director',NULL,NULL),(2762506,69963,7,'producer','producer',NULL),(2762506,2201794,8,'producer','producer',NULL),(2762506,4752699,9,'producer','producer',NULL),(2762970,80259,10,'editor',NULL,NULL),(2762970,972851,1,'actor',NULL,'[\"Will\"]'),(2762970,4874651,2,'actress',NULL,'[\"Kayla\"]'),(2762970,3374198,3,'actor',NULL,'[\"Nick Swift\"]'),(2762970,4169922,4,'actress',NULL,'[\"Skye Sailor\"]'),(2762970,388505,5,'director',NULL,NULL),(2762970,1234853,6,'writer','written by',NULL),(2762970,23296,7,'producer','producer',NULL),(2762970,943391,8,'composer',NULL,NULL),(2762970,575530,9,'cinematographer','director of photography',NULL),(2763304,531602,10,'producer','producer',NULL),(2763304,191,1,'actor',NULL,'[\"Renton\"]'),(2763304,1971,2,'actor',NULL,'[\"Spud\"]'),(2763304,1538,3,'actor',NULL,'[\"Simon\"]'),(2763304,1015,4,'actor',NULL,'[\"Begbie\",\"Begbie\'s Father\"]'),(2763304,965,5,'director',NULL,NULL),(2763304,388076,6,'writer','written by',NULL),(2763304,920543,7,'writer','based on the books Porno and Trainspotting by',NULL),(2763304,68925,8,'producer','producer',NULL),(2763304,1384503,9,'producer','producer',NULL),(2764784,929571,10,'composer',NULL,NULL),(2764784,396125,1,'actress',NULL,'[\"Nelly Lenz\"]'),(2764784,1665537,2,'actor',NULL,'[\"Johnny Lenz\"]'),(2764784,475365,3,'actress',NULL,'[\"Lene Winter\"]'),(2764784,2012595,4,'actor',NULL,'[\"Soldat an der Brücke\"]'),(2764784,678857,5,'director',NULL,NULL),(2764784,267943,6,'writer','co-writer',NULL),(2764784,599170,7,'writer','novel \"Le Retour des cendres\"',NULL),(2764784,462926,8,'producer','producer',NULL),(2764784,916688,9,'producer','producer',NULL),(2770480,517872,10,'cinematographer','director of photography',NULL),(2770480,88127,1,'actress',NULL,'[\"Molly\"]'),(2770480,1157048,2,'actor',NULL,'[\"Gus\"]'),(2770480,923266,3,'actress',NULL,'[\"Lucy\"]'),(2770480,377106,4,'actor',NULL,'[\"Baptiste\"]'),(2770480,88121,5,'director',NULL,NULL),(2770480,440476,6,'writer','story',NULL),(2770480,607454,7,'writer','teleplay',NULL),(2770480,604558,8,'producer','producer',NULL),(2770480,501999,9,'composer',NULL,NULL),(2771200,3343855,10,'writer','based upon the original tale by',NULL),(2771200,914612,1,'actress',NULL,'[\"Belle\"]'),(2771200,1405398,2,'actor',NULL,'[\"Beast\"]'),(2771200,1812656,3,'actor',NULL,'[\"Gaston\"]'),(2771200,1265802,4,'actor',NULL,'[\"LeFou\"]'),(2771200,174374,5,'director',NULL,NULL),(2771200,154716,6,'writer','screenplay by',NULL),(2771200,818746,7,'writer','screenplay by',NULL),(2771200,941314,8,'writer','based on the 1991 animated film \"Beauty and the Beast\" animation screenplay by',NULL),(2771200,207305,9,'writer','based upon the original story revision by',NULL),(2771372,469725,10,'composer',NULL,NULL),(2771372,68338,1,'actress',NULL,'[\"Veronica Mars\"]'),(2771372,230655,2,'actor',NULL,'[\"Logan Echolls\"]'),(2771372,170186,3,'actor',NULL,'[\"Keith Mars\"]'),(2771372,1645313,4,'actor',NULL,'[\"Stosh \'Piz\' Piznarski\"]'),(2771372,859432,5,'director',NULL,NULL),(2771372,749461,6,'writer','screenplay',NULL),(2771372,262052,7,'producer','producer',NULL),(2771372,5926669,8,'producer','producer',NULL),(2771372,831281,9,'producer','producer',NULL),(2776074,1166319,10,'composer',NULL,NULL),(2776074,2482391,1,'actress',NULL,'[\"Angélique de Sancé de Monteloup\"]'),(2776074,487254,2,'actor',NULL,'[\"Le comte Joffrey de Peyrac\"]'),(2776074,803037,3,'actor',NULL,'[\"Philippe de Plessis-Bellière\"]'),(2776074,1269088,4,'actor',NULL,'[\"Le Roi\",\"Louis XIV\"]'),(2776074,954437,5,'director',NULL,NULL),(2776074,6170153,6,'writer','scenario',NULL),(2776074,87646,7,'writer','scenario',NULL),(2776074,326624,8,'writer','novel',NULL),(2776074,326625,9,'writer','novel',NULL),(2779318,204651,10,'writer','The Cybermen created by',NULL),(2779318,1741002,1,'actor',NULL,'[\"The Doctor\"]'),(2779318,855039,2,'actor',NULL,'[\"The Doctor\"]'),(2779318,457,3,'actor',NULL,'[\"The Doctor\"]'),(2779318,1172,4,'archive_footage',NULL,'[\"The Doctor\"]'),(2779318,403541,5,'director',NULL,NULL),(2779318,595590,6,'writer','written by',NULL),(2779318,622334,7,'writer','Daleks created by',NULL),(2779318,829775,8,'writer','Zygons created by',NULL),(2779318,670035,9,'writer','The Cybermen created by',NULL),(27816768,10133695,10,'composer',NULL,NULL),(27816768,4806622,1,'actress',NULL,'[\"Tarla Dalal\"]'),(27816768,1904586,2,'actor',NULL,'[\"Rajni (Tarla\'s Brother)\"]'),(27816768,4360891,3,'actor',NULL,'[\"Tarla\'s Father\"]'),(27816768,5651050,4,'actress',NULL,'[\"Tarla\'s Mother\"]'),(27816768,6328029,5,'director',NULL,NULL),(27816768,5856571,6,'writer',NULL,NULL),(27816768,780098,7,'producer','producer',NULL),(27816768,6436658,8,'producer','producer',NULL),(27816768,4318159,9,'producer','producer',NULL),(2784512,4043287,10,'producer','producer',NULL),(2784512,1560493,1,'actress',NULL,'[\"Mary\"]'),(2784512,2186682,2,'actress',NULL,'[\"Zoe\"]'),(2784512,4885949,3,'actress',NULL,'[\"Jenn\"]'),(2784512,2938448,4,'actor',NULL,'[\"Sam\"]'),(2784512,1140290,5,'director',NULL,NULL),(2784512,1172430,6,'writer','screenplay by',NULL),(2784512,1172431,7,'writer','screenplay by',NULL),(2784512,40148,8,'producer','producer',NULL),(2784512,70454,9,'producer','producer',NULL),(2784678,993994,10,'cinematographer',NULL,NULL),(2784678,1674,1,'actor',NULL,'[\"Andre Allen\"]'),(2784678,206257,2,'actress',NULL,'[\"Chelsea Brown\"]'),(2784678,5517,3,'actress',NULL,'[\"Erica Long\"]'),(2784678,366389,4,'actor',NULL,'[\"Charles\"]'),(2784678,4791912,5,'producer','producer',NULL),(2784678,1660377,6,'producer','producer',NULL),(2784678,748784,7,'producer','producer',NULL),(2784678,3234869,8,'composer',NULL,NULL),(2784678,859821,9,'composer',NULL,NULL),(2788432,166061,10,'actor',NULL,'[\"Bill Hodgman\"]'),(2788432,5299,1,'actress',NULL,'[\"Linda Tripp\",\"Marcia Clark\"]'),(2788432,2807560,2,'actress',NULL,'[\"Paula Jones\",\"Elizabeth Cote\"]'),(2788432,1250791,3,'actor',NULL,'[\"Christopher Darden\"]'),(2788432,158846,4,'actor',NULL,'[\"Judge Lance Ito\"]'),(2788432,18735,5,'writer','developed for television by',NULL),(2788432,438989,6,'writer','developed for television by',NULL),(2788432,2001346,7,'writer','developed for television by',NULL),(2788432,1602547,8,'writer','developed for television by',NULL),(2788432,2788156,9,'actress',NULL,'[\"Monica Lewinsky\"]'),(2788710,49026,10,'editor',NULL,NULL),(2788710,290556,1,'actor',NULL,'[\"Dave Skylark\"]'),(2788710,736622,2,'actor',NULL,'[\"Aaron Rapaport\"]'),(2788710,1320827,3,'actor',NULL,'[\"President Kim\"]'),(2788710,135221,4,'actress',NULL,'[\"Agent Lacey\"]'),(2788710,1698571,5,'director',NULL,NULL),(2788710,1003839,6,'writer','screenplay',NULL),(2788710,4384917,7,'producer','producer',NULL),(2788710,2273444,8,'composer',NULL,NULL),(2788710,1060930,9,'cinematographer','director of photography',NULL),(2788716,1628464,10,'producer','producer',NULL),(2788716,1325419,1,'actress',NULL,'[\"Alice Klieg\"]'),(2788716,5188,2,'actor',NULL,'[\"Rich Ruskin\"]'),(2788716,4802,3,'actress',NULL,'[\"Gina Selway\"]'),(2788716,4747,4,'actor',NULL,'[\"Gabe Ruskin\"]'),(2788716,686099,5,'director',NULL,NULL),(2788716,2436744,6,'writer','written by',NULL),(2788716,1819990,7,'producer','producer',NULL),(2788716,2071,8,'producer','producer',NULL),(2788716,317943,9,'producer','producer',NULL),(2788732,924270,10,'producer','producer',NULL),(2788732,397171,1,'actress',NULL,'[\"Grace\"]'),(2788732,602,2,'actor',NULL,'[\"Meacham\"]'),(2788732,4625502,3,'actor',NULL,'[\"Pete\"]'),(2788732,4802218,4,'actress',NULL,'[\"Natalie\"]'),(2788732,1108007,5,'director',NULL,NULL),(2788732,2021909,6,'writer','screenplay by',NULL),(2788732,549393,7,'writer','based on a screenplay by',NULL),(2788732,589316,8,'writer','based on a story by',NULL),(2788732,276039,9,'writer','based on a story by',NULL),(2792728,994683,10,'editor',NULL,NULL),(2792728,303973,1,'actress',NULL,'[\"Selma Trastell\"]'),(2792728,1553922,2,'actor',NULL,'[\"John\"]'),(2792728,480023,3,'actor',NULL,'[\"Nils\"]'),(2792728,277700,4,'actress',NULL,'[\"Nathalie\"]'),(2792728,458034,5,'director',NULL,NULL),(2792728,3019174,6,'writer',NULL,NULL),(2792728,1218268,7,'producer','producer',NULL),(2792728,5157729,8,'composer',NULL,NULL),(2792728,1402702,9,'cinematographer',NULL,NULL),(2795478,2807833,1,'actor',NULL,'[\"Marc\"]'),(2795478,5589598,2,'actor',NULL,'[\"Olaf\"]'),(2795478,5456764,3,'actor',NULL,'[\"Marc\'s Dad\"]'),(2795478,5361609,4,'director',NULL,NULL),(2795478,5590265,5,'producer','producer',NULL),(2795478,5454090,6,'composer',NULL,NULL),(2795478,5024255,7,'cinematographer',NULL,NULL),(2795478,5591021,8,'production_designer',NULL,NULL),(2796584,2270787,1,'actor',NULL,'[\"Michael\"]'),(2796584,3702875,2,'actor',NULL,'[\"Carlitos\"]'),(2796584,5589319,3,'actor',NULL,'[\"Pimp\"]'),(2796584,2063780,4,'actor',NULL,'[\"Seedy Motel Guest\"]'),(2796584,3768162,5,'producer','executive producer',NULL),(2796584,695233,6,'composer',NULL,NULL),(2796584,3289297,7,'cinematographer',NULL,NULL),(2796584,5247926,8,'production_designer',NULL,NULL),(2798920,748784,10,'producer','producer',NULL),(2798920,204,1,'actress',NULL,'[\"Lena\"]'),(2798920,492,2,'actress',NULL,'[\"Dr. Ventress\"]'),(2798920,1935086,3,'actress',NULL,'[\"Josie Radek\"]'),(2798920,938950,4,'actor',NULL,'[\"Lomax\"]'),(2798920,307497,5,'director',NULL,NULL),(2798920,4554159,6,'writer','based on the novel by',NULL),(2798920,4791912,7,'producer','producer',NULL),(2798920,531602,8,'producer','producer',NULL),(2798920,716924,9,'producer','producer',NULL),(2800038,851320,10,'cinematographer',NULL,NULL),(2800038,1119340,1,'actor',NULL,'[\"John Galt\"]'),(2800038,716438,2,'actress',NULL,'[\"Dagny Taggart\"]'),(2800038,1555,3,'actor',NULL,'[\"Henry Rearden\"]'),(2800038,533380,4,'actor',NULL,'[\"Head of State Thompson\"]'),(2800038,2690726,5,'director',NULL,NULL),(2800038,440673,6,'writer','screenplay',NULL),(2800038,2244438,7,'writer','screenplay',NULL),(2800038,709446,8,'writer','novel',NULL),(2800038,6012,9,'composer',NULL,NULL),(2800240,1363860,10,'editor',NULL,NULL),(2800240,2010,1,'actor',NULL,'[\"Claude Verneuil\"]'),(2800240,490702,2,'actress',NULL,'[\"Marie Verneuil\"]'),(2800240,2987278,3,'actor',NULL,'[\"David Benichou\"]'),(2800240,4150929,4,'actor',NULL,'[\"Rachid Benassem\"]'),(2800240,154385,5,'director',NULL,NULL),(2800240,491230,6,'writer','dialogue',NULL),(2800240,2041941,7,'producer','producer',NULL),(2800240,1384440,8,'composer',NULL,NULL),(2800240,558776,9,'cinematographer',NULL,NULL),(2802144,717230,10,'producer','producer',NULL),(2802144,147,1,'actor',NULL,'[\"Harry Hart\",\"Galahad\"]'),(2802144,5473782,2,'actor',NULL,'[\"Gary \'Eggsy\' Unwin\"]'),(2802144,168,3,'actor',NULL,'[\"Valentine\"]'),(2802144,323,4,'actor',NULL,'[\"Arthur\"]'),(2802144,891216,5,'director',NULL,NULL),(2802144,963359,6,'writer','screenplay by',NULL),(2802144,2092839,7,'writer','based on the comic book \"The Secret Service\" by',NULL),(2802144,1733301,8,'writer','based on the comic book \"The Secret Service\" by',NULL),(2802144,92061,9,'producer','producer',NULL),(2802154,1275,10,'composer',NULL,NULL),(2802154,148516,1,'actor',NULL,'[\"Nikolay\"]'),(2802154,1956600,2,'actress',NULL,'[\"Lilya\"]'),(2802154,535295,3,'actor',NULL,'[\"Mer\"]'),(2802154,1284690,4,'actor',NULL,'[\"Dmitriy\"]'),(2802154,1168657,5,'director',NULL,NULL),(2802154,2697466,6,'writer',NULL,NULL),(2802154,577861,7,'producer','producer',NULL),(2802154,734954,8,'producer','producer',NULL),(2802154,1435137,9,'composer',NULL,NULL),(2808680,2217536,10,'composer',NULL,NULL),(2808680,802406,1,'actress',NULL,'[\"Heli\",\"Wife\"]'),(2808680,899476,2,'actor',NULL,'[\"Matti\",\"Husband\"]'),(2808680,1288800,3,'actor',NULL,'[\"Jarno\",\"Heli\'s lover\"]'),(2808680,239281,4,'actress',NULL,'[\"Manna\",\"Heli\'s friend\"]'),(2808680,2043837,5,'director',NULL,NULL),(2808680,405588,6,'writer','novel',NULL),(2808680,655013,7,'writer',NULL,NULL),(2808680,754367,8,'producer','producer',NULL),(2808680,1818453,9,'producer','producer',NULL),(2818178,1441627,10,'composer',NULL,NULL),(2818178,5926134,1,'actress',NULL,'[\"Marie\"]'),(2818178,586565,2,'actor',NULL,'[\"Thor\"]'),(2818178,1003081,3,'actress',NULL,'[\"Mor\"]'),(2818178,1939580,4,'actor',NULL,'[\"Daniel\"]'),(2818178,1064646,5,'director',NULL,NULL),(2818178,3213566,6,'writer',NULL,NULL),(2818178,1061993,7,'writer','original idea',NULL),(2818178,2549583,8,'producer','producer',NULL),(2818178,2299367,9,'producer','producer',NULL),(2818348,2199863,10,'producer','producer',NULL),(2818348,5605786,1,'actress',NULL,'[\"Saige\"]'),(2818348,4571051,2,'actress',NULL,'[\"Tessa\"]'),(2818348,3019971,3,'actress',NULL,'[\"Gabi\"]'),(2818348,3100933,4,'actress',NULL,'[\"Dylan\"]'),(2818348,1479803,5,'director',NULL,NULL),(2818348,1890301,6,'writer','teleplay',NULL),(2818348,1898779,7,'writer','teleplay',NULL),(2818348,4138426,8,'writer','based on: The Saige Stories by',NULL),(2818348,153744,9,'producer','producer',NULL),(2820466,795975,10,'writer','character created by: Superman',NULL),(2820466,150362,1,'actor',NULL,'[\"The Flash\",\"Barry Allen\"]'),(2820466,1367,2,'actor',NULL,'[\"Professor Zoom\",\"Eobard Thawne\"]'),(2820466,430107,3,'actor',NULL,'[\"Cyborg\",\"Victor Stone\"]'),(2820466,571727,4,'actor',NULL,'[\"Batman\",\"Thomas Wayne\"]'),(2820466,646515,5,'director',NULL,NULL),(2820466,471172,6,'writer','written by',NULL),(2820466,424315,7,'writer','based on the graphic novel \"Flashpoint\" by',NULL),(2820466,1572769,8,'writer','based on the graphic novel \"Flashpoint\" by',NULL),(2820466,796950,9,'writer','character created by: Superman',NULL),(2820852,3911,10,'composer',NULL,NULL),(2820852,4874,1,'actor',NULL,'[\"Dominic Toretto\"]'),(2820852,908094,2,'actor',NULL,'[\"Brian O\'Conner\"]'),(2820852,425005,3,'actor',NULL,'[\"Hobbs\"]'),(2820852,5458,4,'actor',NULL,'[\"Deckard Shaw\"]'),(2820852,1490123,5,'director',NULL,NULL),(2820852,604555,6,'writer','written by',NULL),(2820852,860155,7,'writer','characters',NULL),(2820852,288202,8,'producer','producer',NULL),(2820852,605775,9,'producer','producer',NULL),(2823054,867768,10,'producer','producer',NULL),(2823054,1374980,1,'actor',NULL,'[\"Dave Stangle\"]'),(2823054,2796745,2,'actor',NULL,'[\"Mike Stangle\"]'),(2823054,447695,3,'actress',NULL,'[\"Alice\"]'),(2823054,2201555,4,'actress',NULL,'[\"Tatiana\"]'),(2823054,2021516,5,'director',NULL,NULL),(2823054,1157527,6,'writer','written by',NULL),(2823054,1895993,7,'writer','written by',NULL),(2823054,1858656,8,'producer','producer',NULL),(2823054,1349522,9,'producer','producer',NULL),(2829458,1834373,10,'cinematographer',NULL,NULL),(2829458,4888033,1,'actress',NULL,'[\"Tale\"]'),(2829458,5615953,2,'actor',NULL,'[\"Vegard\"]'),(2829458,427379,3,'actor',NULL,'[\"Lars\"]'),(2829458,5875349,4,'actress',NULL,'[\"Nora\"]'),(2829458,471622,5,'director',NULL,NULL),(2829458,1515005,6,'writer',NULL,NULL),(2829458,256896,7,'producer','producer',NULL),(2829458,845306,8,'producer','producer',NULL),(2829458,5875357,9,'composer',NULL,NULL),(2831440,5619780,1,'actor',NULL,'[\"Adam\"]'),(2831440,1724509,2,'actor',NULL,'[\"Ronnie\"]'),(2831440,1100076,3,'director',NULL,NULL),(2832470,1972939,10,'cinematographer',NULL,NULL),(2832470,388473,1,'actor',NULL,'[\"Martin\"]'),(2832470,2505635,2,'actor',NULL,'[\"Herzog\"]'),(2832470,771414,3,'actor',NULL,'[\"Daniel\"]'),(2832470,3202519,4,'actress',NULL,'[\"Monica\"]'),(2832470,2482088,5,'director',NULL,NULL),(2832470,2552337,6,'writer','screenplay',NULL),(2832470,3154448,7,'producer','producer',NULL),(2832470,2288220,8,'producer','producer',NULL),(2832470,3135847,9,'composer',NULL,NULL),(2835536,418011,10,'editor',NULL,NULL),(2835536,833290,1,'actress',NULL,'[\"Marianne\"]'),(2835536,778016,2,'actress',NULL,'[\"Eva\"]'),(2835536,5622292,3,'actress',NULL,'[\"Young Marianne\"]'),(2835536,841144,4,'actor',NULL,'[\"Husband\"]'),(2835536,1795890,5,'director',NULL,NULL),(2835536,1234876,6,'writer','co-writer',NULL),(2835536,3322721,7,'producer','producer',NULL),(2835536,439663,8,'composer',NULL,NULL),(2835536,5621490,9,'composer',NULL,NULL),(2837574,557829,10,'producer','producer',NULL),(2837574,602,1,'actor',NULL,'[\"Forrest Tucker\"]'),(2837574,729,2,'actor',NULL,'[\"John Hunt\"]'),(2837574,651,3,'actress',NULL,'[\"Jewel\"]'),(2837574,418,4,'actor',NULL,'[\"Teddy\"]'),(2837574,1108007,5,'director',NULL,NULL),(2837574,2970418,6,'writer','based on the New Yorker article by',NULL),(2837574,2021909,7,'producer','producer',NULL),(2837574,2250139,8,'producer','producer',NULL),(2837574,1435934,9,'producer','producer',NULL),(2844798,2815444,10,'cinematographer',NULL,NULL),(2844798,5625871,1,'actress',NULL,'[\"Lili\"]'),(2844798,958192,2,'actor',NULL,'[\"Dániel\"]'),(2844798,2520336,3,'actress',NULL,'[\"Elza\"]'),(2844798,862286,4,'actor',NULL,'[\"Old man\"]'),(2844798,610960,5,'director',NULL,NULL),(2844798,678467,6,'writer','screenplay',NULL),(2844798,5032902,7,'writer',NULL,NULL),(2844798,970537,8,'writer','screenplay',NULL),(2844798,3623464,9,'composer',NULL,NULL),(2848292,6205,10,'composer',NULL,NULL),(2848292,447695,1,'actress',NULL,'[\"Beca\"]'),(2848292,2313103,2,'actress',NULL,'[\"Fat Amy\"]'),(2848292,2794962,3,'actress',NULL,'[\"Emily\"]'),(2848292,811242,4,'actress',NULL,'[\"Chloe\"]'),(2848292,6969,5,'director',NULL,NULL),(2848292,134224,6,'writer','written by',NULL),(2848292,3015467,7,'writer','based on the book by',NULL),(2848292,112189,8,'producer','producer',NULL),(2848292,2583641,9,'producer','producer',NULL),(2850386,210320,10,'writer','story by',NULL),(2850386,115,1,'actor',NULL,'[\"Grug\"]'),(2850386,1297015,2,'actress',NULL,'[\"Eep\"]'),(2850386,5351,3,'actor',NULL,'[\"Guy\"]'),(2850386,1416,4,'actress',NULL,'[\"Ugga\"]'),(2850386,3150455,5,'director',NULL,NULL),(2850386,1156984,6,'writer','screenplay by',NULL),(2850386,1087952,7,'writer','screenplay by',NULL),(2850386,279729,8,'writer','screenplay by',NULL),(2850386,517517,9,'writer','screenplay by',NULL),(2852458,2715213,10,'actor',NULL,'[\"L\'homme du mardi soir\"]'),(2852458,1731624,1,'actor',NULL,'[\"Franck\"]'),(2852458,1043011,2,'actor',NULL,'[\"Michel\"]'),(2852458,1253936,3,'actor',NULL,'[\"Henri\"]'),(2852458,152571,4,'actor',NULL,'[\"Inspecteur Damroder\"]'),(2852458,347492,5,'director',NULL,NULL),(2852458,200648,6,'producer','producer',NULL),(2852458,1083857,7,'cinematographer',NULL,NULL),(2852458,1780515,8,'editor',NULL,NULL),(2852458,1519727,9,'actor',NULL,'[\"Eric\"]'),(2852460,3486823,10,'composer',NULL,NULL),(2852460,490500,1,'actress',NULL,'[\"Anna\"]'),(2852460,1179512,2,'actor',NULL,'[\"Fai\"]'),(2852460,154726,3,'actress',NULL,NULL),(2852460,155593,4,'actor',NULL,NULL),(2852460,3408503,5,'director',NULL,NULL),(2852460,44577,6,'producer','producer',NULL),(2852460,2315332,7,'producer','producer',NULL),(2852460,2939294,8,'producer','producer',NULL),(2852460,9166641,9,'producer','producer',NULL),(2854926,1184901,10,'composer',NULL,NULL),(2854926,719637,1,'actor',NULL,'[\"Jerry Pierce\"]'),(2854926,1159180,2,'actor',NULL,'[\"Hogan \'Hoagie\' Malloy\"]'),(2854926,2159926,3,'actor',NULL,'[\"Randy \'Chilli\' Cilliano\"]'),(2854926,358316,4,'actor',NULL,'[\"Bob Callahan\"]'),(2854926,1762961,5,'director',NULL,NULL),(2854926,1301035,6,'writer','screenplay by',NULL),(2854926,825356,7,'writer','screenplay by',NULL),(2854926,9715487,8,'writer','based on the Wall Street Journal article entitled \"It Takes Planning, Caution to Avoid Being It\" by',NULL),(2854926,307776,9,'producer','producer',NULL),(2865120,2351757,10,'writer','based on the video games created by',NULL),(2865120,852517,1,'actor',NULL,'[\"Ratchet\"]'),(2865120,443286,2,'actor',NULL,'[\"Clank\"]'),(2865120,911589,3,'actor',NULL,'[\"Qwark\"]'),(2865120,230,4,'actor',NULL,'[\"Victor\"]'),(2865120,1083489,5,'director',NULL,NULL),(2865120,165995,6,'director','co-director',NULL),(2865120,2686579,7,'writer','written by',NULL),(2865120,841532,8,'writer','written by',NULL),(2865120,3131921,9,'writer','based on the video games created by',NULL),(2865802,919443,10,'editor',NULL,NULL),(2865802,2409219,1,'actor',NULL,'[\"Paul\"]'),(2865802,126669,2,'actress',NULL,'[\"Anna\"]'),(2865802,343857,3,'actor',NULL,'[\"Georg\"]'),(2865802,294984,4,'actress',NULL,'[\"Yvonne\"]'),(2865802,220274,5,'director',NULL,NULL),(2865802,124441,6,'producer','producer',NULL),(2865802,1251606,7,'producer','producer',NULL),(2865802,501531,8,'composer',NULL,NULL),(2865802,2724035,9,'cinematographer',NULL,NULL),(2866360,755555,10,'cinematographer','director of photography',NULL),(2866360,2032150,1,'actress',NULL,'[\"Em\"]'),(2866360,827561,2,'actor',NULL,'[\"Kevin\"]'),(2866360,107183,3,'actor',NULL,'[\"Mike\"]'),(2866360,1286,4,'actress',NULL,'[\"Beth\"]'),(2866360,126096,5,'director',NULL,NULL),(2866360,1178832,6,'writer','story by',NULL),(2866360,1184392,7,'producer','producer',NULL),(2866360,1869376,8,'composer',NULL,NULL),(2866360,1044044,9,'cinematographer','director of photography',NULL),(2869728,108368,10,'producer','producer',NULL),(2869728,1084,1,'actor',NULL,'[\"James Payton\"]'),(2869728,366389,2,'actor',NULL,'[\"Ben Barber\"]'),(2869728,1754366,3,'actress',NULL,'[\"Angela Payton\"]'),(2869728,973,4,'actor',NULL,'[\"Antonio Pope\"]'),(2869728,1103162,5,'director',NULL,NULL),(2869728,6534,6,'writer','written by',NULL),(2869728,542062,7,'writer','written by',NULL),(2869728,177637,8,'writer','characters',NULL),(2869728,23297,9,'producer','producer',NULL),(2870612,1548572,10,'composer',NULL,NULL),(2870612,917347,1,'actress',NULL,'[\"Scarlett\"]'),(2870612,1133651,2,'actor',NULL,'[\"George\"]'),(2870612,388064,3,'actor',NULL,'[\"Benji\"]'),(2870612,2476624,4,'actor',NULL,'[\"Papillon\"]'),(2870612,235719,5,'director',NULL,NULL),(2870612,1803105,6,'writer','screenplay',NULL),(2870612,2078509,7,'producer','producer',NULL),(2870612,419169,8,'producer','producer',NULL),(2870612,2100078,9,'producer','producer',NULL),(2870708,450005,10,'editor',NULL,NULL),(2870708,103785,1,'actor',NULL,'[\"Aidan Bloom\"]'),(2870708,1428821,2,'actress',NULL,'[\"Grace Bloom\"]'),(2870708,3163952,3,'actor',NULL,'[\"Tucker Bloom\"]'),(2870708,5028,4,'actress',NULL,'[\"Sarah Bloom\"]'),(2870708,103783,5,'writer',NULL,NULL),(2870708,787834,6,'producer','producer',NULL),(2870708,792049,7,'producer','producer',NULL),(2870708,1387379,8,'composer',NULL,NULL),(2870708,3394,9,'cinematographer','director of photography',NULL),(2870756,503429,10,'editor',NULL,NULL),(2870756,147,1,'actor',NULL,'[\"Stanley\"]'),(2870756,1297015,2,'actress',NULL,'[\"Sophie\"]'),(2870756,1315,3,'actress',NULL,'[\"Mrs. Baker\"]'),(2870756,512934,4,'actor',NULL,'[\"Brice Catledge\"]'),(2870756,95,5,'director',NULL,NULL),(2870756,36981,6,'producer','producer',NULL),(2870756,1008264,7,'producer','producer',NULL),(2870756,2304996,8,'producer','producer',NULL),(2870756,451787,9,'cinematographer',NULL,NULL),(2870808,815610,10,'producer','producer',NULL),(2870808,1015262,1,'actress',NULL,'[\"Sasha\"]'),(2870808,1843026,2,'actress',NULL,'[\"Paige\"]'),(2870808,111013,3,'actor',NULL,'[\"Tim\"]'),(2870808,2829737,4,'actress',NULL,'[\"Jen\"]'),(2870808,2573005,5,'director',NULL,NULL),(2870808,1706261,6,'writer','writer',NULL),(2870808,2303385,7,'producer','producer',NULL),(2870808,1889450,8,'producer','producer',NULL),(2870808,3627693,9,'producer','producer',NULL),(2872462,999134,10,'composer',NULL,NULL),(2872462,1950086,1,'actress',NULL,'[\"Brooke\"]'),(2872462,3860305,2,'actress',NULL,'[\"Tracy\"]'),(2872462,1699328,3,'actress',NULL,'[\"Ruth\"]'),(2872462,6201749,4,'actress',NULL,'[\"Laura\"]'),(2872462,876,5,'director',NULL,NULL),(2872462,748784,6,'producer','producer',NULL),(2872462,2095560,7,'producer','producer',NULL),(2872462,944803,8,'producer','producer',NULL),(2872462,680272,9,'composer',NULL,NULL),(2872518,8815438,10,'writer','in collaboration with',NULL),(2872518,941777,1,'actor',NULL,'[\"Mack Phillips\"]'),(2872518,818055,2,'actress',NULL,'[\"Papa\"]'),(2872518,5210,3,'actor',NULL,'[\"Willie\"]'),(2872518,593664,4,'actress',NULL,'[\"Nan Phillips\"]'),(2872518,371955,5,'director',NULL,NULL),(2872518,299301,6,'writer','screenplay by',NULL),(2872518,6150131,7,'writer','screenplay by',NULL),(2872518,2308774,8,'writer','screenplay by',NULL),(2872518,3523960,9,'writer','based on the book by',NULL),(2872718,6133,10,'composer',NULL,NULL),(2872718,350453,1,'actor',NULL,'[\"Louis Bloom\"]'),(2872718,623,2,'actress',NULL,'[\"Nina Romina\"]'),(2872718,200,3,'actor',NULL,'[\"Joe Loder\"]'),(2872718,1981893,4,'actor',NULL,'[\"Rick\"]'),(2872718,319659,5,'director',NULL,NULL),(2872718,289048,6,'producer','producer',NULL),(2872718,6904,7,'producer','producer',NULL),(2872718,484123,8,'producer','producer',NULL),(2872718,1490949,9,'producer','producer',NULL),(2872724,1761469,10,'producer','producer',NULL),(2872724,5466,1,'actress',NULL,'[\"Sarah\"]'),(2872724,5454,2,'actor',NULL,'[\"Paul\"]'),(2872724,1653,3,'actor',NULL,'[\"Jordan\"]'),(2872724,5177929,4,'actress',NULL,'[\"Hannah\"]'),(2872724,1589515,5,'director',NULL,NULL),(2872724,1942197,6,'writer','screenplay',NULL),(2872724,665041,7,'writer','screenplay',NULL),(2872724,1883612,8,'writer','screenplay',NULL),(2872724,1428086,9,'producer','executive producer',NULL),(2872732,864371,10,'production_designer',NULL,NULL),(2872732,424060,1,'actress',NULL,'[\"Lucy\"]'),(2872732,151,2,'actor',NULL,'[\"Professor Norman\"]'),(2872732,158856,3,'actor',NULL,'[\"Mr. Jang\"]'),(2872732,906756,4,'actor',NULL,'[\"Pierre Del Rio\"]'),(2872732,108,5,'director',NULL,NULL),(2872732,798065,6,'producer','producer',NULL),(2872732,785385,7,'composer',NULL,NULL),(2872732,5636,8,'cinematographer',NULL,NULL),(2872732,9545038,9,'editor',NULL,NULL),(2872750,1011065,10,'composer','composer',NULL),(2872750,1017994,1,'actor',NULL,'[\"Shaun\",\"Timmy\"]'),(2872750,816950,2,'actor',NULL,'[\"The Farmer\",\"Bitzer\"]'),(2872750,229084,3,'actor',NULL,'[\"Trumper\"]'),(2872750,916432,4,'actor',NULL,'[\"Shirley\"]'),(2872750,123666,5,'director',NULL,NULL),(2872750,326450,6,'director',NULL,NULL),(2872750,661910,7,'writer','characters created by',NULL),(2872750,1385754,8,'producer','producer',NULL),(2872750,516880,9,'producer','producer',NULL),(2873282,867768,10,'producer','producer',NULL),(2873282,2225369,1,'actress',NULL,'[\"Dominika Egorova\"]'),(2873282,249291,2,'actor',NULL,'[\"Nate Nash\"]'),(2873282,774386,3,'actor',NULL,'[\"Vanya Egorov\"]'),(2873282,1648,4,'actress',NULL,'[\"Matron\"]'),(2873282,1349376,5,'director',NULL,NULL),(2873282,1244808,6,'writer','screenplay by',NULL),(2873282,5645796,7,'writer','based upon the book by',NULL),(2873282,1858656,8,'producer','producer',NULL),(2873282,2819401,9,'producer','producer',NULL),(2881698,1180557,10,'producer','producer',NULL),(2881698,1278492,1,'actress',NULL,'[\"Lab Tech Michelle\"]'),(2881698,5949270,2,'actress',NULL,'[\"Rebecca\"]'),(2881698,2074421,3,'actor',NULL,'[\"Sam\"]'),(2881698,85433,4,'actor',NULL,'[\"Britton Sloan\"]'),(2881698,1408629,5,'director',NULL,NULL),(2881698,4104012,6,'writer','story by',NULL),(2881698,1686085,7,'writer','story by',NULL),(2881698,4520513,8,'writer','writer',NULL),(2881698,878925,9,'producer','producer',NULL),(2883512,269463,1,'actor',NULL,'[\"Carl Casper\"]'),(2883512,375,2,'actor',NULL,'[\"Marvin\"]'),(2883512,424060,3,'actress',NULL,'[\"Molly\"]'),(2883512,163,4,'actor',NULL,'[\"Riva\"]'),(2883512,3703488,5,'producer','producer',NULL),(2883512,605190,6,'cinematographer','director of photography',NULL),(2883512,500371,7,'editor',NULL,NULL),(2883512,686225,8,'production_designer',NULL,NULL),(2884018,2096617,10,'producer','producer',NULL),(2884018,1055413,1,'actor',NULL,'[\"Macbeth\"]'),(2884018,182839,2,'actress',NULL,'[\"Lady Macbeth\"]'),(2884018,7752797,3,'actor',NULL,'[\"Macbeth Child\"]'),(2884018,7752798,4,'actor',NULL,'[\"Macbeth Child\"]'),(2884018,997291,5,'director',NULL,NULL),(2884018,521974,6,'writer','screenplay',NULL),(2884018,1105617,7,'writer','screenplay',NULL),(2884018,2078681,8,'writer','screenplay',NULL),(2884018,636,9,'writer','play',NULL),(2884206,2775581,10,'cinematographer','director of photography',NULL),(2884206,685856,1,'actor',NULL,'[\"Ian\"]'),(2884206,3081796,2,'actor',NULL,'[\"Kenny\"]'),(2884206,2793591,3,'actress',NULL,'[\"Sofi\"]'),(2884206,1779870,4,'actress',NULL,'[\"Karen\"]'),(2884206,2648685,5,'director',NULL,NULL),(2884206,336683,6,'producer','producer',NULL),(2884206,650164,7,'producer','producer',NULL),(2884206,2007213,8,'composer',NULL,NULL),(2884206,609163,9,'composer',NULL,NULL),(2888046,2260417,10,'producer','producer',NULL),(2888046,947447,1,'actor',NULL,'[\"Ip Man\"]'),(2888046,3237713,2,'actress',NULL,'[\"Cheung Wing-sing\"]'),(2888046,1018221,3,'actor',NULL,'[\"Cheung Tin-chi\"]'),(2888046,5512,4,'actor',NULL,'[\"Frank\"]'),(2888046,948159,5,'director',NULL,NULL),(2888046,5335213,6,'writer',NULL,NULL),(2888046,4183613,7,'writer',NULL,NULL),(2888046,2774833,8,'writer',NULL,NULL),(2888046,3019636,9,'producer','producer',NULL),(2896036,720950,10,'production_designer',NULL,NULL),(2896036,194572,1,'actor',NULL,'[\"Antonio\"]'),(2896036,5131296,2,'actress',NULL,'[\"Belén\"]'),(2896036,3609850,3,'actor',NULL,'[\"Juanjo\"]'),(2896036,1155179,4,'actor',NULL,'[\"Ramón\"]'),(2896036,874093,5,'director',NULL,NULL),(2896036,400152,6,'producer','producer',NULL),(2896036,582533,7,'composer',NULL,NULL),(2896036,1536156,8,'cinematographer',NULL,NULL),(2896036,1791196,9,'editor',NULL,NULL),(2906216,1436246,10,'producer','producer',NULL),(2906216,1517976,1,'actor',NULL,'[\"Edgin\"]'),(2906216,735442,2,'actress',NULL,'[\"Holga\"]'),(2906216,2074546,3,'actor',NULL,'[\"Xenk\"]'),(2906216,6819854,4,'actor',NULL,'[\"Simon\"]'),(2906216,197855,5,'director',NULL,NULL),(2906216,326246,6,'director',NULL,NULL),(2906216,318580,7,'writer','screenplay by',NULL),(2906216,3021,8,'writer','story by',NULL),(2906216,2131060,9,'producer','producer',NULL),(2908228,2109290,10,'producer','producer',NULL),(2908228,152839,1,'actress',NULL,'[\"Twilight Sparkle\"]'),(2908228,1868320,2,'actress',NULL,'[\"Applejack\",\"Rainbow Dash\"]'),(2908228,508877,3,'actress',NULL,'[\"Pinkie Pie\",\"Fluttershy\"]'),(2908228,319308,4,'actress',NULL,'[\"Rarity\",\"Princess Luna\",\"Vice Principal Luna\"]'),(2908228,2149505,5,'director',NULL,NULL),(2908228,6348823,6,'director','co-director',NULL),(2908228,2436273,7,'writer','written by',NULL),(2908228,269260,8,'writer','television series: \"My Little Pony: Friendship is Magic\"',NULL),(2908228,9261564,9,'writer','creator',NULL),(2908446,279651,10,'producer','producer',NULL),(2908446,940362,1,'actress',NULL,'[\"Tris\"]'),(2908446,5052065,2,'actor',NULL,'[\"Caleb\"]'),(2908446,3772243,3,'actor',NULL,'[\"Four\"]'),(2908446,701,4,'actress',NULL,'[\"Jeanine\"]'),(2908446,777881,5,'director',NULL,NULL),(2908446,3929259,6,'writer','screenplay by',NULL),(2908446,326040,7,'writer','screenplay by',NULL),(2908446,93560,8,'writer','screenplay by',NULL),(2908446,4316121,9,'writer','based on the novel \"Insurgent\" by',NULL),(2908856,651366,10,'composer',NULL,NULL),(2908856,177,1,'actor',NULL,'[\"Mathias Gold\"]'),(2908856,218,2,'actress',NULL,'[\"Chloé Girard\"]'),(2908856,1749,3,'actress',NULL,'[\"Mathilde Girard\"]'),(2908856,6747483,4,'actor',NULL,'[\"Rabbi on Bicycle\"]'),(2908856,395262,5,'director',NULL,NULL),(2908856,57835,6,'producer','producer',NULL),(2908856,70351,7,'producer','producer',NULL),(2908856,287811,8,'producer','producer',NULL),(2908856,395267,9,'producer','producer',NULL),(2910274,1627409,10,'cinematographer',NULL,NULL),(2910274,2809577,1,'actress',NULL,'[\"Donna\"]'),(2910274,3821405,2,'actor',NULL,'[\"Max\"]'),(2910274,451,3,'actress',NULL,'[\"Nellie\"]'),(2910274,4460471,4,'actor',NULL,'[\"Joey\"]'),(2910274,3521871,5,'director',NULL,NULL),(2910274,3505289,6,'writer','story',NULL),(2910274,3831085,7,'writer','story',NULL),(2910274,2210641,8,'writer','based on the short film written by',NULL),(2910274,6018565,9,'composer',NULL,NULL),(2910904,5791,10,'cinematographer','director of photography',NULL),(2910904,701,1,'actress',NULL,'[\"Tilly Dunnage\"]'),(2910904,1114,2,'actress',NULL,'[\"Molly Dunnage\"]'),(2910904,2955013,3,'actor',NULL,'[\"Teddy McSwiney\"]'),(2910904,915989,4,'actor',NULL,'[\"Sergeant Farrat\"]'),(2910904,602104,5,'director',NULL,NULL),(2910904,5672426,6,'writer','based on the novel by',NULL),(2910904,389591,7,'writer','written by',NULL),(2910904,556514,8,'producer','producer',NULL),(2910904,386595,9,'composer',NULL,NULL),(2911666,5156455,10,'producer','producer',NULL),(2911666,206,1,'actor',NULL,'[\"John Wick\"]'),(2911666,638824,2,'actor',NULL,'[\"Viggo Tarasov\"]'),(2911666,654295,3,'actor',NULL,'[\"Iosef Tarasov\"]'),(2911666,353,4,'actor',NULL,'[\"Marcus\"]'),(2911666,821432,5,'director',NULL,NULL),(2911666,500610,6,'director',NULL,NULL),(2911666,4401003,7,'writer','written by',NULL),(2911666,412588,8,'producer','producer',NULL),(2911666,519456,9,'producer','producer',NULL),(2911674,2898959,10,'composer','composer',NULL),(2911674,2546012,1,'actress',NULL,'[\"Kelly\"]'),(2911674,4534098,2,'actor',NULL,'[\"Callum\"]'),(2911674,779084,3,'actor',NULL,'[\"Shane\"]'),(2911674,4511908,4,'actor',NULL,'[\"Mark\"]'),(2911674,3552673,5,'director',NULL,NULL),(2911674,2954322,6,'writer','written by',NULL),(2911674,32557,7,'producer','producer',NULL),(2911674,2293530,8,'producer','producer',NULL),(2911674,1943389,9,'producer','producer',NULL),(2918436,588612,10,'producer','producer',NULL),(2918436,1312575,1,'actress',NULL,'[\"Zoe\"]'),(2918436,243233,2,'actor',NULL,'[\"Frank\"]'),(2918436,1404239,3,'actor',NULL,'[\"Clay\"]'),(2918436,92961,4,'actress',NULL,'[\"Eva\"]'),(2918436,312173,5,'director',NULL,NULL),(2918436,1430636,6,'writer','written by',NULL),(2918436,2916300,7,'writer','written by',NULL),(2918436,89658,8,'producer','producer',NULL),(2918436,1396390,9,'producer','producer',NULL),(2920808,1033812,10,'producer','producer',NULL),(2920808,450,1,'actor',NULL,'[\"Mickey Scarpato\"]'),(2920808,376716,2,'actress',NULL,'[\"Jeanie Scarpato\"]'),(2920808,420955,3,'actor',NULL,'[\"Richard Shellburn\"]'),(2920808,1806,4,'actor',NULL,'[\"Arthur \'Bird\' Capezio\"]'),(2920808,805476,5,'director',NULL,NULL),(2920808,223320,6,'writer','novel',NULL),(2920808,582396,7,'writer','screenplay',NULL),(2920808,10139,8,'producer','producer',NULL),(2920808,83851,9,'producer','producer',NULL),(2927212,792463,10,'producer','producer',NULL),(2927212,1882929,1,'actress',NULL,'[\"Ellie\"]'),(2927212,2265157,2,'actress',NULL,'[\"Max\"]'),(2927212,524197,3,'actor',NULL,'[\"Frank Morris\"]'),(2927212,5561,4,'actor',NULL,'[\"Bob Potter\"]'),(2927212,175305,5,'director',NULL,NULL),(2927212,3156749,6,'writer','written by',NULL),(2927212,3157246,7,'writer','written by',NULL),(2927212,2769063,8,'producer','producer',NULL),(2927212,1014034,9,'producer','executive producer',NULL),(2929690,3668292,10,'composer',NULL,NULL),(2929690,3202701,1,'actress',NULL,'[\"Laila\"]'),(2929690,720763,2,'actress',NULL,'[\"Shubhangini\",\"Laila\'s mother\"]'),(2929690,4668046,3,'actress',NULL,'[\"Khanum\"]'),(2929690,4990507,4,'actor',NULL,'[\"Dhruv\",\"Laila\'s schoolmate\"]'),(2929690,1773569,5,'director',NULL,NULL),(2929690,3721662,6,'director','co-director',NULL),(2929690,5961159,7,'writer','hindi dialogue',NULL),(2929690,6372520,8,'producer','producer',NULL),(2929690,6711534,9,'producer','producer',NULL),(2932536,798027,10,'cinematographer','director of photography',NULL),(2932536,601553,1,'actress',NULL,'[\"Lisa\"]'),(2932536,2322853,2,'actress',NULL,'[\"Kate\"]'),(2932536,546,3,'actor',NULL,'[\"Captain Taylor\"]'),(2932536,1404137,4,'actor',NULL,'[\"Javier\"]'),(2932536,1266897,5,'director',NULL,NULL),(2932536,2033094,6,'writer','writer',NULL),(2932536,2448068,7,'producer','producer',NULL),(2932536,4234703,8,'producer','producer',NULL),(2932536,354453,9,'composer',NULL,NULL),(2933474,697953,10,'editor',NULL,NULL),(2933474,4091175,1,'actor',NULL,'[\"Lucas White\"]'),(2933474,3107498,2,'actor',NULL,'[\"Vin Serento\"]'),(2933474,2055623,3,'actress',NULL,'[\"Jordana\"]'),(2933474,623085,4,'actress',NULL,'[\"Michelle\"]'),(2933474,294997,5,'director',NULL,NULL),(2933474,783536,6,'director',NULL,NULL),(2933474,755911,7,'producer','producer',NULL),(2933474,944000,8,'composer',NULL,NULL),(2933474,561053,9,'cinematographer',NULL,NULL),(2933544,580312,10,'producer','producer',NULL),(2933544,473,1,'actress',NULL,'[\"Ruth Carver\"]'),(2933544,151,2,'actor',NULL,'[\"Alex Carver\"]'),(2933544,633223,3,'actress',NULL,'[\"Lily Portman\"]'),(2933544,696387,4,'actress',NULL,'[\"Miriam Carswell\"]'),(2933544,518644,5,'director',NULL,NULL),(2933544,676361,6,'writer','screenplay',NULL),(2933544,3263342,7,'writer','book \"Heroic Measures\"',NULL),(2933544,2645917,8,'producer','producer',NULL),(2933544,566975,9,'producer','producer',NULL),(2935476,35661,10,'composer',NULL,NULL),(2935476,1659547,1,'actress',NULL,'[\"Bathsheba Everdene\"]'),(2935476,774386,2,'actor',NULL,'[\"Gabriel Oak\"]'),(2935476,790688,3,'actor',NULL,'[\"William Boldwood\"]'),(2935476,836432,4,'actor',NULL,'[\"Sergeant Francis Troy\"]'),(2935476,899121,5,'director',NULL,NULL),(2935476,362762,6,'writer','based on the novel by',NULL),(2935476,390141,7,'writer','screenplay by',NULL),(2935476,531602,8,'producer','producer',NULL),(2935476,716924,9,'producer','producer',NULL),(2935510,586969,10,'producer','producer',NULL),(2935510,93,1,'actor',NULL,'[\"Roy McBride\"]'),(2935510,169,2,'actor',NULL,'[\"H. Clifford McBride\"]'),(2935510,1550948,3,'actress',NULL,'[\"Helen Lantos\"]'),(2935510,661,4,'actor',NULL,'[\"Thomas Pruitt\"]'),(2935510,336695,5,'director',NULL,NULL),(2935510,1342473,6,'writer','written by',NULL),(2935510,306890,7,'producer','producer',NULL),(2935510,441097,8,'producer','producer',NULL),(2935510,1250070,9,'producer','producer',NULL),(2935622,5387,10,'producer','producer',NULL),(2935622,3315947,1,'actor',NULL,'[\"Rafal\",\"Rhian\"]'),(2935622,3143851,2,'actress',NULL,'[\"Sophie\"]'),(2935622,949,3,'actress',NULL,'[\"The Storian\"]'),(2935622,7937946,4,'actor',NULL,'[\"Footman\"]'),(2935622,82450,5,'director',NULL,NULL),(2935622,1341735,6,'writer','screenplay by',NULL),(2935622,2287777,7,'writer','based on the book by',NULL),(2935622,11023968,8,'producer','producer',NULL),(2935622,456929,9,'producer','producer',NULL),(2935662,644055,10,'editor',NULL,NULL),(2935662,5765981,1,'actress',NULL,'[\"Young Woman With Scowl\"]'),(2935662,241208,2,'actress',NULL,'[\"Abby Neufeld\"]'),(2935662,475129,3,'actress',NULL,'[\"Eve\"]'),(2935662,2055254,4,'actress',NULL,'[\"Sarah\"]'),(2935662,5690823,5,'director',NULL,NULL),(2935662,1259692,6,'director',NULL,NULL),(2935662,502258,7,'producer','executive producer',NULL),(2935662,701501,8,'composer',NULL,NULL),(2935662,194595,9,'cinematographer',NULL,NULL),(2936470,2924636,10,'cinematographer',NULL,NULL),(2936470,2936228,1,'actress',NULL,'[\"Lily O\'Connor\"]'),(2936470,177396,2,'actor',NULL,'[\"Mikey O\'Connor\"]'),(2936470,2167957,3,'actor',NULL,'[\"Barry O\'Connor\"]'),(2936470,313702,4,'actor',NULL,'[\"Al\"]'),(2936470,383343,5,'director',NULL,NULL),(2936470,279580,6,'writer','screenplay',NULL),(2936470,6370516,7,'writer','novel',NULL),(2936470,1644654,8,'producer','producer',NULL),(2936470,526753,9,'composer',NULL,NULL),(2937696,193274,10,'production_designer',NULL,NULL),(2937696,4296357,1,'actor',NULL,'[\"Jake\"]'),(2937696,388382,2,'actor',NULL,'[\"McReynolds\"]'),(2937696,4554428,3,'actor',NULL,'[\"Roper\"]'),(2937696,3614913,4,'actress',NULL,'[\"Beverly\"]'),(2937696,500,5,'director',NULL,NULL),(2937696,2691892,6,'producer','producer',NULL),(2937696,805678,7,'producer','producer',NULL),(2937696,446867,8,'cinematographer','director of photography',NULL),(2937696,10471,9,'editor',NULL,NULL),(2937898,1219505,10,'editor',NULL,NULL),(2937898,1209966,1,'actor',NULL,'[\"Abel Morales\"]'),(2937898,1567113,2,'actress',NULL,'[\"Anna Morales\"]'),(2937898,654648,3,'actor',NULL,'[\"D.A. Lawrence\"]'),(2937898,5273,4,'actor',NULL,'[\"Peter Forente\"]'),(2937898,1170855,5,'director',NULL,NULL),(2937898,230306,6,'producer','producer',NULL),(2937898,1291145,7,'producer','producer',NULL),(2937898,2745006,8,'composer',NULL,NULL),(2937898,2284226,9,'cinematographer',NULL,NULL),(2938496,1615536,10,'actor',NULL,'[\"Russ\"]'),(2938496,6721767,1,'actor',NULL,'[\"Cafe Patron\"]'),(2938496,3059726,2,'actor',NULL,'[\"V-Lounge Bouncer\"]'),(2938496,5933962,3,'actor',NULL,'[\"Crony 2\"]'),(2938496,8675620,4,'actress',NULL,'[\"Blood Buffet Vampire\"]'),(2938496,1441248,5,'director',NULL,NULL),(2938496,1465535,6,'cinematographer',NULL,NULL),(2938496,3095836,7,'editor',NULL,NULL),(2938496,3621333,8,'actor',NULL,'[\"Detective Jim\"]'),(2938496,6348036,9,'actor',NULL,'[\"Shadow Attacker\"]'),(2938956,3640199,10,'producer','producer',NULL),(2938956,4534098,1,'actor',NULL,'[\"Frank Martin Jr.\"]'),(2938956,5307742,2,'actress',NULL,'[\"Anna\"]'),(2938956,829032,3,'actor',NULL,'[\"Frank Martin Sr.\"]'),(2938956,473814,4,'actor',NULL,'[\"Leo Imasova\"]'),(2938956,216214,5,'director',NULL,NULL),(2938956,177836,6,'writer','written by',NULL),(2938956,171651,7,'writer','written by',NULL),(2938956,108,8,'writer','written by',NULL),(2938956,436543,9,'writer','characters',NULL),(2944454,2452495,10,'actor',NULL,'[\"Edward\"]'),(2944454,4331196,1,'actress',NULL,'[\"Riley Brown\"]'),(2944454,5720886,2,'actor',NULL,'[\"Jay\"]'),(2944454,2329247,3,'actress',NULL,'[\"Gail\"]'),(2944454,5721811,4,'actress',NULL,'[\"Kara\"]'),(2944454,2825203,5,'actress',NULL,'[\"Angela Vaughn\"]'),(2944454,4198185,6,'actor',NULL,'[\"Trevor\"]'),(2944454,4723086,7,'actor',NULL,'[\"Quinn\"]'),(2944454,4440417,8,'actor',NULL,'[\"Jimmy Natale\"]'),(2944454,5626215,9,'actor',NULL,'[\"DJ\"]'),(2948356,1601882,10,'writer','story by',NULL),(2948356,329481,1,'actress',NULL,'[\"Judy Hopps\"]'),(2948356,867,2,'actor',NULL,'[\"Nick Wilde\"]'),(2948356,252961,3,'actor',NULL,'[\"Chief Bogo\"]'),(2948356,2809577,4,'actress',NULL,'[\"Bellwether\"]'),(2948356,397174,5,'director',NULL,NULL),(2948356,601781,6,'director',NULL,NULL),(2948356,1158544,7,'director','co-director',NULL),(2948356,714114,8,'writer','story by',NULL),(2948356,2888684,9,'writer','story by',NULL),(2948372,1589604,10,'composer',NULL,NULL),(2948372,4937,1,'actor',NULL,'[\"Joe\"]'),(2948372,275486,2,'actress',NULL,'[\"22\"]'),(2948372,636218,3,'actor',NULL,'[\"Moonwind\"]'),(2948372,1344302,4,'actress',NULL,'[\"Terry\"]'),(2948372,230032,5,'director',NULL,NULL),(2948372,5358492,6,'director','co-director',NULL),(2948372,428873,7,'writer','story by',NULL),(2948372,1733918,8,'producer','producer',NULL),(2948372,722153,9,'composer',NULL,NULL),(2948840,1114974,10,'producer','producer',NULL),(2948840,1500155,1,'actor',NULL,'[\"Dennis Stock\"]'),(2948840,2851530,2,'actor',NULL,'[\"James Dean\"]'),(2948840,524255,3,'actor',NULL,'[\"Nicholas Ray\"]'),(2948840,3418305,4,'actress',NULL,'[\"Natalie Wood\"]'),(2948840,179221,5,'director',NULL,NULL),(2948840,1729294,6,'writer','screenplay',NULL),(2948840,2096617,7,'producer','producer',NULL),(2948840,1762339,8,'producer','producer',NULL),(2948840,3125367,9,'producer','producer',NULL),(2953050,592135,10,'writer','story by',NULL),(2953050,3715867,1,'actress',NULL,'[\"Mirabel\"]'),(2953050,1239720,2,'actress',NULL,'[\"Abuela Alma\"]'),(2953050,491,3,'actor',NULL,'[\"Bruno\"]'),(2953050,8871347,4,'actor',NULL,'[\"Félix\"]'),(2953050,1158544,5,'director',NULL,NULL),(2953050,397174,6,'director',NULL,NULL),(2953050,4146781,7,'director','co-director',NULL),(2953050,2911364,8,'writer','story by',NULL),(2953050,472866,9,'writer','story by',NULL),(2955096,6646183,10,'actor',NULL,'[\"Cab Driver\"]'),(2955096,447695,1,'actress',NULL,'[\"Jenny\"]'),(2955096,1491,2,'actress',NULL,'[\"Kelly\"]'),(2955096,916406,3,'actor',NULL,'[\"Kevin\"]'),(2955096,2501633,4,'actress',NULL,'[\"Carson\"]'),(2955096,1846132,5,'director',NULL,NULL),(2955096,318201,6,'producer','producer',NULL),(2955096,1564639,7,'cinematographer',NULL,NULL),(2955096,5047403,8,'actor',NULL,'[\"Jude\"]'),(2955096,3704942,9,'actor',NULL,'[\"Music Supervisor\"]'),(2955316,2134597,10,'producer','producer',NULL),(2955316,1242939,1,'actress',NULL,'[\"Amaia\"]'),(2955316,3657043,2,'actor',NULL,'[\"Rafa\"]'),(2955316,1197737,3,'actress',NULL,'[\"Merche\"]'),(2955316,253216,4,'actor',NULL,'[\"Koldo\"]'),(2955316,554880,5,'director',NULL,NULL),(2955316,1141070,6,'writer','screenplay',NULL),(2955316,1749125,7,'writer','screenplay',NULL),(2955316,1973308,8,'producer','producer',NULL),(2955316,57623,9,'producer','producer',NULL),(2964334,2808229,1,'actor',NULL,NULL),(2964334,5715934,2,'actor',NULL,NULL),(2964334,5716066,3,'actor',NULL,NULL),(2964334,529867,4,'director',NULL,NULL),(2964334,4588492,5,'writer',NULL,NULL),(2964334,3439939,6,'writer','original idea',NULL),(2964334,812992,7,'composer',NULL,NULL),(2964334,5423878,8,'editor',NULL,NULL),(2965412,1663329,10,'cinematographer','director of photography',NULL),(2965412,519043,1,'actor',NULL,'[\"Dell\"]'),(2965412,2536,2,'actress',NULL,'[\"Kimberly\"]'),(2965412,5236664,3,'actress',NULL,'[\"Stephanie\"]'),(2965412,935721,4,'actor',NULL,'[\"Josh\"]'),(2965412,1322753,5,'director',NULL,NULL),(2965412,165540,6,'producer','producer',NULL),(2965412,1600403,7,'producer','producer',NULL),(2965412,1680597,8,'producer','producer',NULL),(2965412,5740235,9,'composer',NULL,NULL),(2965466,1837152,10,'production_designer',NULL,NULL),(2965466,3952890,1,'actress',NULL,'[\"Jessica Loren\"]'),(2965466,2282254,2,'actor',NULL,'[\"John Michael Paymon\"]'),(2965466,831902,3,'actor',NULL,'[\"Grip Cohen\"]'),(2965466,488493,4,'actor',NULL,'[\"Patrick Black\"]'),(2965466,1304669,5,'director',NULL,NULL),(2965466,4124059,6,'writer','written by',NULL),(2965466,4156156,7,'producer','producer',NULL),(2965466,53344,8,'composer',NULL,NULL),(2965466,1946731,9,'cinematographer',NULL,NULL),(2967224,2374959,10,'producer','producer',NULL),(2967224,702,1,'actress',NULL,'[\"Rose Cooper\"]'),(2967224,5527,2,'actress',NULL,'[\"Daniella Riva\"]'),(2967224,215682,3,'actor',NULL,'[\"Detective Hauser\"]'),(2967224,1134612,4,'actor',NULL,'[\"Detective Dixon\"]'),(2967224,281945,5,'director',NULL,NULL),(2967224,1068488,6,'writer','written by',NULL),(2967224,1735367,7,'writer','written by',NULL),(2967224,1401416,8,'producer','producer',NULL),(2967224,660295,9,'producer','producer',NULL),(2967286,2057312,10,'writer','english script adaptation',NULL),(2967286,1465001,1,'actor',NULL,'[\"Rintarou Okabe\"]'),(2967286,1411540,2,'actress',NULL,'[\"Kurisu Makise\"]'),(2967286,2573928,3,'actress',NULL,'[\"Mayuri Shiina\"]'),(2967286,782840,4,'actor',NULL,'[\"Itaru Hashida\"]'),(2967286,2324235,5,'director',NULL,NULL),(2967286,357355,6,'director','chief director',NULL),(2967286,766272,7,'director','chief director',NULL),(2967286,2924255,8,'writer','original story',NULL),(2967286,2438224,9,'writer','screenplay',NULL),(2969656,1276066,10,'composer',NULL,NULL),(2969656,812555,1,'actor',NULL,'[\"Chief detective Hwang\"]'),(2969656,432601,2,'actor',NULL,'[\"James\"]'),(2969656,2174122,3,'actress',NULL,'[\"Detective Ha Yoon-Joo\"]'),(2969656,5675066,4,'actor',NULL,'[\"Detective Squirrel\"]'),(2969656,1181534,5,'director',NULL,NULL),(2969656,2303963,6,'director',NULL,NULL),(2969656,1104594,7,'writer','original screenplay',NULL),(2969656,946883,8,'writer','original screenplay',NULL),(2969656,498478,9,'producer','producer',NULL),(2974918,46559,10,'producer','producer',NULL),(2974918,5134,1,'actor',NULL,'[\"Dave\"]'),(2974918,519043,2,'actor',NULL,'[\"Alvin\"]'),(2974918,1131557,3,'actor',NULL,'[\"Simon\"]'),(2974918,565366,4,'actor',NULL,'[\"Theodore\"]'),(2974918,65608,5,'director',NULL,NULL),(2974918,46564,6,'writer','characters',NULL),(2974918,439739,7,'writer','characters',NULL),(2974918,802020,8,'writer','written by',NULL),(2974918,1186373,9,'writer','written by',NULL),(2975578,1085924,10,'producer','producer',NULL),(2975578,342029,1,'actor',NULL,'[\"Sergeant\"]'),(2975578,252238,2,'actress',NULL,'[\"Eva Sanchez\"]'),(2975578,1472917,3,'actor',NULL,'[\"Shane\"]'),(2975578,760989,4,'actress',NULL,'[\"Liz\"]'),(2975578,218621,5,'director',NULL,NULL),(2975578,881,6,'producer','producer',NULL),(2975578,89658,7,'producer','producer',NULL),(2975578,286320,8,'producer','producer',NULL),(2975578,298181,9,'producer','producer',NULL),(2975590,551376,10,'writer','character created by: Wonder Woman',NULL),(2975590,255,1,'actor',NULL,'[\"Bruce Wayne\",\"Batman\"]'),(2975590,147147,2,'actor',NULL,'[\"Clark Kent\",\"Superman\"]'),(2975590,10736,3,'actress',NULL,'[\"Lois\"]'),(2975590,251986,4,'actor',NULL,'[\"Lex Luthor\"]'),(2975590,811583,5,'director',NULL,NULL),(2975590,4170,6,'writer','Batman created by',NULL),(2975590,277730,7,'writer','Batman created by',NULL),(2975590,796950,8,'writer','Superman created by',NULL),(2975590,795975,9,'writer','Superman created by',NULL),(2977090,935060,10,'composer',NULL,NULL),(2977090,935541,1,'actress',NULL,'[\"Alex\"]'),(2977090,582149,2,'actor',NULL,'[\"George\"]'),(2977090,467,3,'actor',NULL,'[\"Roger\"]'),(2977090,1035682,4,'actor',NULL,'[\"Frank\"]'),(2977090,2713351,5,'writer',NULL,NULL),(2977090,2605625,6,'writer',NULL,NULL),(2977090,793526,7,'writer',NULL,NULL),(2977090,1987578,8,'producer','producer',NULL),(2977090,1364232,9,'producer','producer',NULL),(2978462,467255,10,'producer','producer',NULL),(2978462,151,1,'actor',NULL,'[\"Dr. Cameron McCarthy\"]'),(2978462,171,2,'actress',NULL,'[\"Lorraine Nelson\"]'),(2978462,1997480,3,'actor',NULL,'[\"Sawyer Nelson\"]'),(2978462,4077908,4,'actress',NULL,'[\"Hazel Haskett\"]'),(2978462,1747,5,'director',NULL,NULL),(2978462,418321,6,'writer','characters',NULL),(2978462,238247,7,'writer','characters',NULL),(2978462,995633,8,'producer','producer',NULL),(2978462,424663,9,'producer','producer',NULL),(2978576,824395,10,'producer','producer',NULL),(2978576,2719406,1,'actor',NULL,'[\"William \'Bill\' Shakespeare\",\"Lord Burghley\",\"English Messenger\"]'),(2978576,1375030,2,'actor',NULL,'[\"Earl of Croydon\",\"Juan Domingo\",\"Sausage\"]'),(2978576,1544279,3,'actress',NULL,'[\"Anne Hathaway\",\"Molly\",\"Spanish Courtier\"]'),(2978576,1377114,4,'actor',NULL,'[\"Christopher Marlowe\",\"Gabriel Montoya\",\"Cynical Jester\"]'),(2978576,102714,5,'director',NULL,NULL),(2978576,3053272,6,'writer',NULL,NULL),(2978576,1941093,7,'writer',NULL,NULL),(2978576,1941417,8,'producer','producer',NULL),(2978576,2799626,9,'producer','producer',NULL),(2980516,271479,10,'producer','producer',NULL),(2980516,1519666,1,'actor',NULL,'[\"Stephen Hawking\"]'),(2980516,428065,2,'actress',NULL,'[\"Jane Hawking\"]'),(2980516,4350114,3,'actor',NULL,'[\"Robert Hawking - Age 17\"]'),(2980516,6240141,4,'actress',NULL,'[\"Lucy Hawking - Age 14\"]'),(2980516,1016428,5,'director',NULL,NULL),(2980516,565026,6,'writer','screenplay',NULL),(2980516,6186324,7,'writer','book \"Travelling to Infinity: My Life with Stephen\"',NULL),(2980516,79677,8,'producer','producer',NULL),(2980516,115537,9,'producer','producer',NULL),(2980648,1856,10,'producer','producer',NULL),(2980648,545,1,'actress',NULL,'[\"Madame Mallory\"]'),(2980648,700875,2,'actor',NULL,'[\"Papa\"]'),(2980648,2110485,3,'actor',NULL,'[\"Hassan\"]'),(2980648,3114649,4,'actress',NULL,'[\"Marguerite\"]'),(2980648,2120,5,'director',NULL,NULL),(2980648,1140275,6,'writer','screenplay by',NULL),(2980648,5728000,7,'writer','novel',NULL),(2980648,86613,8,'producer','producer',NULL),(2980648,229,9,'producer','producer',NULL),(2980706,1805074,10,'production_designer',NULL,NULL),(2980706,176981,1,'actor',NULL,'[\"Dusty Crophopper\"]'),(2980706,438,2,'actor',NULL,'[\"Blade Ranger\"]'),(2980706,100866,3,'actress',NULL,'[\"Lil\' Dipper\"]'),(2980706,35664,4,'actor',NULL,'[\"Maru\"]'),(2980706,304432,5,'director',NULL,NULL),(2980706,397377,6,'writer','story and screenplay by',NULL),(2980706,57664,7,'producer','producer',NULL),(2980706,6183,8,'composer',NULL,NULL),(2980706,7171,9,'editor',NULL,NULL),(2980794,1589714,10,'editor',NULL,NULL),(2980794,1017633,1,'actress',NULL,'[\"Veera Tripathi\"]'),(2980794,393535,2,'actor',NULL,'[\"Mahabir Bhati\"]'),(2980794,6294201,3,'actor',NULL,'[\"Aadoo\"]'),(2980794,6294202,4,'actor',NULL,'[\"Tonk\"]'),(2980794,1665004,5,'director',NULL,NULL),(2980794,12466397,6,'producer','producer',NULL),(2980794,618898,7,'producer','producer',NULL),(2980794,6246,8,'composer',NULL,NULL),(2980794,576540,9,'cinematographer',NULL,NULL),(2981768,4480120,1,'actress',NULL,'[\"Patema\"]'),(2981768,2462004,2,'actor',NULL,'[\"Age\"]'),(2981768,1566172,3,'actor',NULL,'[\"Porta\"]'),(2981768,2496301,4,'actor',NULL,'[\"Elder\"]'),(2981768,3602074,5,'director',NULL,NULL),(2981768,2817116,6,'producer','producer',NULL),(2981768,651914,7,'composer',NULL,NULL),(2987732,906247,10,'cinematographer','director of photography',NULL),(2987732,1065929,1,'actor',NULL,'[\"Zeki Müller\"]'),(2987732,378932,2,'actress',NULL,'[\"Lisi Schnabelstedt\"]'),(2987732,726257,3,'actress',NULL,'[\"Gudrun Gerster\"]'),(2987732,657822,4,'actress',NULL,'[\"Charlie\"]'),(2987732,1480916,5,'director',NULL,NULL),(2987732,4380835,6,'writer','lecture',NULL),(2987732,65376,7,'producer','producer',NULL),(2987732,2264541,8,'producer','producer',NULL),(2987732,1049516,9,'composer',NULL,NULL),(2991224,467761,10,'cinematographer',NULL,NULL),(2991224,880407,1,'actor',NULL,'[\"Ivo\"]'),(2991224,639297,2,'actor',NULL,'[\"Margus\"]'),(2991224,620351,3,'actor',NULL,'[\"Ahmed\"]'),(2991224,2067091,4,'actor',NULL,'[\"Nika\"]'),(2991224,882203,5,'director',NULL,NULL),(2991224,6313374,6,'writer','idea',NULL),(2991224,6313373,7,'writer','idea',NULL),(2991224,271605,8,'producer','producer',NULL),(2991224,1202460,9,'composer',NULL,NULL),(2991296,2318865,10,'composer',NULL,NULL),(2991296,109785,1,'actor',NULL,'[\"Mundy\"]'),(2991296,127988,2,'actor',NULL,'[\"Torres\"]'),(2991296,262026,3,'actor',NULL,'[\"Masek\"]'),(2991296,1194,4,'actor',NULL,'[\"George Marsh\"]'),(2991296,2406892,5,'director',NULL,NULL),(2991296,2388,6,'writer',NULL,NULL),(2991296,884425,7,'writer',NULL,NULL),(2991296,1094560,8,'producer','producer',NULL),(2991296,2530,9,'producer','producer',NULL),(2991316,5739775,1,'actress',NULL,'[\"Akasha\"]'),(2991316,4812310,2,'actress',NULL,'[\"Liora\"]'),(2991316,4620544,3,'actor',NULL,'[\"Calder\"]'),(2991316,5739774,4,'actress',NULL,'[\"Clan Mother\"]'),(2991316,5739770,5,'director',NULL,NULL),(2991316,2395663,6,'cinematographer',NULL,NULL),(2992146,158872,10,'cinematographer','director of photography',NULL),(2992146,490500,1,'actress',NULL,'[\"Wu Zetian\"]'),(2992146,5071833,2,'actor',NULL,'[\"The Emperor\"]'),(2992146,3609766,3,'actor',NULL,'[\"Dee Renjie\"]'),(2992146,2854802,4,'actress',NULL,'[\"Yin Ruiji\"]'),(2992146,7139,5,'director',NULL,NULL),(2992146,2310115,6,'writer',NULL,NULL),(2992146,155295,7,'writer',NULL,NULL),(2992146,793016,8,'producer','producer',NULL),(2992146,442766,9,'composer',NULL,NULL),(2994832,352325,10,'editor',NULL,NULL),(2994832,1743180,1,'actress',NULL,'[\"Sangaile\"]'),(2994832,6356341,2,'actress',NULL,'[\"Auste\"]'),(2994832,7449762,3,'actress',NULL,'[\"Sangaile\'s Mother\"]'),(2994832,7449763,4,'actor',NULL,'[\"Sangaile\'s Father\"]'),(2994832,1419321,5,'director',NULL,NULL),(2994832,2289791,6,'producer','producer',NULL),(2994832,799560,7,'producer','producer',NULL),(2994832,242155,8,'composer',NULL,NULL),(2994832,171493,9,'cinematographer',NULL,NULL),(3003800,591036,10,'producer','producer',NULL),(3003800,3041056,1,'actor',NULL,'[\"Heinrich\"]'),(3003800,4087835,2,'actress',NULL,'[\"Henriette\"]'),(3003800,335951,3,'actor',NULL,'[\"Friedrich Louis Vogel\"]'),(3003800,1197689,4,'actress',NULL,'[\"Marie\"]'),(3003800,369618,5,'director',NULL,NULL),(3003800,2017718,6,'writer','dramaturgy',NULL),(3003800,90350,7,'producer','producer',NULL),(3003800,411942,8,'producer','producer',NULL),(3003800,345116,9,'producer','producer',NULL),(3007302,3423952,10,'cinematographer',NULL,NULL),(3007302,919616,1,'actor',NULL,'[\"Robby Riley\"]'),(3007302,5956399,2,'actress',NULL,'[\"Ricky Jones\"]'),(3007302,4078666,3,'actress',NULL,'[\"Francesca Duval\"]'),(3007302,2631939,4,'actor',NULL,'[\"David\"]'),(3007302,769703,5,'director',NULL,NULL),(3007302,6019266,6,'producer','producer',NULL),(3007302,6008996,7,'producer','producer',NULL),(3007302,700099,8,'producer','producer',NULL),(3007302,699841,9,'composer',NULL,NULL),(3010990,4544507,1,'actor',NULL,'[\"Police detective Waldo Mamani\",\"Mythical creature\"]'),(3010990,2008680,2,'actress',NULL,'[\"Mother of the boy\"]'),(3010990,5769792,3,'actress',NULL,'[\"Village girl\"]'),(3010990,5761799,4,'actor',NULL,'[\"Extirpator of idolatries\",\"Mythical creature\"]'),(3010990,5761803,5,'director',NULL,NULL),(3010990,5761798,6,'producer','producer',NULL),(3010990,6047793,7,'composer',NULL,NULL),(3010990,5761796,8,'cinematographer',NULL,NULL),(3010990,5769791,9,'editor',NULL,NULL),(3011894,306088,10,'producer','producer',NULL),(3011894,334882,1,'actor',NULL,'[\"Salgado (segment \\\"Pasternak\\\")\"]'),(3011894,555404,2,'actress',NULL,'[\"Isabel (segment \\\"Pasternak\\\")\"]'),(3011894,897640,3,'actress',NULL,'[\"Profesora Leguizamón (segment \\\"Pasternak\\\")\"]'),(3011894,823435,4,'actor',NULL,'[\"Ignacio Fontana (segment \\\"Pasternak\\\")\"]'),(3011894,1167933,5,'director',NULL,NULL),(3011894,2265326,6,'writer','collaborating writer',NULL),(3011894,1238855,7,'writer','collaborating writer',NULL),(3011894,21948,8,'producer','producer',NULL),(3011894,264,9,'producer','producer',NULL),(3013588,606,1,'actor',NULL,'[\"Paul\"]'),(3013588,302105,2,'actress',NULL,'[\"Irène\"]'),(3013588,2685846,3,'actress',NULL,'[\"Léa\"]'),(3013588,5826963,4,'actor',NULL,'[\"Adrien\"]'),(3013588,97785,5,'director',NULL,NULL),(3013588,4347,6,'producer','producer',NULL),(3013588,6481960,7,'composer','composer',NULL),(3013588,494512,8,'cinematographer',NULL,NULL),(3013588,200788,9,'editor',NULL,NULL),(3014666,498920,10,'producer','producer',NULL),(3014666,237711,1,'actress',NULL,'[\"Allyson\"]'),(3014666,276,2,'actor',NULL,'[\"Sean\"]'),(3014666,5004,3,'actress',NULL,'[\"Sondra\"]'),(3014666,12081,4,'actor',NULL,'[\"Bones\"]'),(3014666,3401779,5,'director',NULL,NULL),(3014666,2296528,6,'director',NULL,NULL),(3014666,621665,7,'writer',NULL,NULL),(3014666,235948,8,'producer','producer',NULL),(3014666,368792,9,'producer','producer',NULL),(3014866,1247584,10,'producer','producer',NULL),(3014866,126,1,'actor',NULL,'[\"Jerico Stewart\"]'),(3014866,5351,2,'actor',NULL,'[\"Bill Pope\"]'),(3014866,2933757,3,'actress',NULL,'[\"Jill Pope\"]'),(3014866,198,4,'actor',NULL,'[\"Quaker Wells\"]'),(3014866,1033517,5,'director',NULL,NULL),(3014866,177018,6,'writer','written by',NULL),(3014866,918711,7,'writer','written by',NULL),(3014866,132300,8,'producer','producer',NULL),(3014866,9822321,9,'producer','producer',NULL),(3015110,3225709,10,'editor',NULL,NULL),(3015110,930053,1,'actress',NULL,'[\"Wendy Carroll\"]'),(3015110,38680,2,'actress',NULL,'[\"Teanna Musk\"]'),(3015110,2062720,3,'actor',NULL,'[\"Tom Wolman\"]'),(3015110,1342513,4,'actress',NULL,'[\"Angie\"]'),(3015110,333239,5,'director',NULL,NULL),(3015110,1672013,6,'writer','written by',NULL),(3015110,1469831,7,'producer','producer',NULL),(3015110,2035423,8,'composer',NULL,NULL),(3015110,3278139,9,'cinematographer','director of photography',NULL),(3019620,2886400,10,'editor',NULL,NULL),(3019620,3508604,1,'actor',NULL,'[\"Titli\"]'),(3019620,1249116,2,'actor',NULL,'[\"Vikram\"]'),(3019620,6327552,3,'actress',NULL,'[\"Neelu\"]'),(3019620,1748072,4,'actor',NULL,'[\"Pradeep\"]'),(3019620,2885983,5,'director',NULL,NULL),(3019620,2680506,6,'writer',NULL,NULL),(3019620,1962313,7,'producer','producer',NULL),(3019620,3937503,8,'composer',NULL,NULL),(3019620,2810184,9,'cinematographer','director of photography',NULL),(3021360,2051771,10,'editor',NULL,NULL),(3021360,650702,1,'actor',NULL,'[\"Ansel Roth\"]'),(3021360,935541,2,'actress',NULL,'[\"Claire\"]'),(3021360,254760,3,'actor',NULL,'[\"Dad\"]'),(3021360,340973,4,'actor',NULL,'[\"Terry\"]'),(3021360,2720681,5,'director',NULL,NULL),(3021360,2384784,6,'producer','producer',NULL),(3021360,2096462,7,'producer','producer',NULL),(3021360,4051162,8,'composer',NULL,NULL),(3021360,3140764,9,'cinematographer',NULL,NULL),(3038708,1994659,10,'writer','story by',NULL),(3038708,4468181,1,'actress',NULL,'[\"Obianaju \'Obi\' Washington\"]'),(3038708,122095,2,'actor',NULL,'[\"Sasha\"]'),(3038708,7610067,3,'actor',NULL,'[\"Malcom\"]'),(3038708,1087430,4,'actress',NULL,'[\"Renate Richter\"]'),(3038708,1993322,5,'director',NULL,NULL),(3038708,615914,6,'writer','written by',NULL),(3038708,1242274,7,'writer','story by',NULL),(3038708,1990490,8,'writer','story by',NULL),(3038708,442381,9,'writer','story by',NULL),(3040964,691084,10,'cinematographer','director of photography',NULL),(3040964,5888481,1,'actor',NULL,'[\"Mowgli\"]'),(3040964,195,2,'actor',NULL,'[\"Baloo\"]'),(3040964,1426,3,'actor',NULL,'[\"Bagheera\"]'),(3040964,252961,4,'actor',NULL,'[\"Shere Khan\"]'),(3040964,269463,5,'director',NULL,NULL),(3040964,1098479,6,'writer','screenplay by',NULL),(3040964,456017,7,'writer','based on the books by',NULL),(3040964,1761420,8,'producer','producer',NULL),(3040964,2201,9,'composer',NULL,NULL),(3042408,838624,10,'cinematographer',NULL,NULL),(3042408,771713,1,'actor',NULL,'[\"Benjamin\"]'),(3042408,1065929,2,'actor',NULL,'[\"Max\"]'),(3042408,617852,3,'actor',NULL,'[\"Stephan\"]'),(3042408,6801,4,'actor',NULL,'[\"Paul\"]'),(3042408,2171633,5,'director',NULL,NULL),(3042408,1296729,6,'writer','screenplay',NULL),(3042408,73875,7,'producer','producer',NULL),(3042408,927270,8,'producer','producer',NULL),(3042408,1833186,9,'composer',NULL,NULL),(3043252,6311995,10,'producer','producer',NULL),(3043252,1318578,1,'actress',NULL,'[\"Rani\"]'),(3043252,2331000,2,'actress',NULL,'[\"Lajjo\"]'),(3043252,4015689,3,'actress',NULL,'[\"Bijli\"]'),(3043252,5032757,4,'actress',NULL,'[\"Janaki\"]'),(3043252,1636742,5,'director',NULL,NULL),(3043252,1805418,6,'writer','additional material',NULL),(3043252,47999,7,'producer','producer',NULL),(3043252,222426,8,'producer','producer',NULL),(3043252,6537224,9,'producer','producer',NULL),(3045616,566590,10,'producer','producer',NULL),(3045616,136,1,'actor',NULL,'[\"Mortdecai\"]'),(3045616,569,2,'actress',NULL,'[\"Johanna\"]'),(3045616,191,3,'actor',NULL,'[\"Martland\"]'),(3045616,1601397,4,'actress',NULL,'[\"Georgina\"]'),(3045616,462895,5,'director',NULL,NULL),(3045616,36962,6,'writer','screenplay',NULL),(3045616,5795768,7,'writer','novel \"Don\'t Point That Thing at Me\"',NULL),(3045616,218259,8,'producer','producer',NULL),(3045616,493662,9,'producer','producer',NULL),(3058674,2118666,1,'actress',NULL,'[\"Emma\"]'),(3058674,865302,2,'actor',NULL,'[\"Officer Darrow\"]'),(3058674,1803,3,'actor',NULL,'[\"Carlos\"]'),(3058674,3119840,4,'actor',NULL,'[\"Jack\"]'),(3058674,2417024,5,'director',NULL,NULL),(3058674,6378889,6,'composer',NULL,NULL),(3058674,2684783,7,'cinematographer',NULL,NULL),(3058674,2263593,8,'editor',NULL,NULL),(3058674,6378892,9,'production_designer',NULL,NULL),(3060952,795975,10,'writer','character created by: Superman',NULL),(3060952,276,1,'actor',NULL,'[\"Shazam\"]'),(3060952,2642131,2,'actor',NULL,'[\"Billy Batson\"]'),(3060952,330913,3,'actor',NULL,'[\"The Flash\",\"Barry Allen\"]'),(3060952,5095,4,'actor',NULL,'[\"Green Lantern\",\"Hal Jordan\"]'),(3060952,646515,5,'director',NULL,NULL),(3060952,1236620,6,'writer','written by',NULL),(3060952,424315,7,'writer','comic book: \"Justice League: Origin\"',NULL),(3060952,1504567,8,'writer','comic book: \"Justice League: Origin\"',NULL),(3060952,796950,9,'writer','character created by: Superman',NULL),(3062074,2244594,10,'cinematographer','director of photography',NULL),(3062074,5575,1,'actor',NULL,'[\"Fin\"]'),(3062074,5346,2,'actress',NULL,'[\"April\"]'),(3062074,407,3,'actress',NULL,'[\"Skye\"]'),(3062074,5209,4,'actor',NULL,'[\"Martin\"]'),(3062074,3116,5,'director',NULL,NULL),(3062074,505736,6,'writer','written by',NULL),(3062074,490375,7,'producer','producer',NULL),(3062074,1700105,8,'composer',NULL,NULL),(3062074,725808,9,'composer',NULL,NULL),(3062096,869379,10,'cinematographer','director of photography',NULL),(3062096,158,1,'actor',NULL,'[\"Robert Langdon\"]'),(3062096,428065,2,'actress',NULL,'[\"Sienna Brooks\"]'),(3062096,451234,3,'actor',NULL,'[\"Harry Sims\"]'),(3062096,4936,4,'actor',NULL,'[\"Bertrand Zobrist\"]'),(3062096,165,5,'director',NULL,NULL),(3062096,1467010,6,'writer','based in part on the novel by',NULL),(3062096,462895,7,'writer','screenplay by',NULL),(3062096,4976,8,'producer','producer',NULL),(3062096,1877,9,'composer',NULL,NULL),(3062976,1430583,10,'composer',NULL,NULL),(3062976,165101,1,'actress',NULL,'[\"Wendy\"]'),(3062976,1426,2,'actor',NULL,'[\"Darwan\"]'),(3062976,3501146,3,'actress',NULL,'[\"Tasha\"]'),(3062976,1200650,4,'actress',NULL,'[\"Debbie\"]'),(3062976,170043,5,'director',NULL,NULL),(3062976,449576,6,'writer','written by',NULL),(3062976,295182,7,'producer','producer',NULL),(3062976,5806267,8,'producer','producer',NULL),(3062976,1468166,9,'composer',NULL,NULL),(3064298,975099,10,'producer','producer',NULL),(3064298,1128572,1,'actress',NULL,'[\"Nancy\"]'),(3064298,1239499,2,'actor',NULL,'[\"Sean\"]'),(3064298,832792,3,'actor',NULL,'[\"Bert\"]'),(3064298,910040,4,'actress',NULL,'[\"Fran\"]'),(3064298,1414582,5,'director',NULL,NULL),(3064298,2208729,6,'writer','written by',NULL),(3064298,1143970,7,'producer','producer',NULL),(3064298,5071842,8,'producer','producer',NULL),(3064298,661912,9,'producer','producer',NULL),(3065204,755911,10,'producer','producer',NULL),(3065204,267812,1,'actress',NULL,'[\"Lorraine Warren\"]'),(3065204,933940,2,'actor',NULL,'[\"Ed Warren\"]'),(3065204,4068901,3,'actress',NULL,'[\"Janet Hodgson\"]'),(3065204,640323,4,'actress',NULL,'[\"Peggy Hodgson\"]'),(3065204,1490123,5,'director',NULL,NULL),(3065204,370937,6,'writer','screenplay by',NULL),(3065204,370928,7,'writer','screenplay by',NULL),(3065204,424901,8,'writer','screenplay by',NULL),(3065204,184620,9,'producer','producer',NULL),(3066242,566608,10,'actor',NULL,'[\"Professor Ozpin\",\"Ozma\",\"Ozpin\"]'),(3066242,4865756,1,'actress',NULL,'[\"Ruby Rose\"]'),(3066242,5813286,2,'actress',NULL,'[\"Weiss Schnee\"]'),(3066242,5813285,3,'actress',NULL,'[\"Yang Xiao Long\"]'),(3066242,5771189,4,'actress',NULL,'[\"Blake Belladonna\"]'),(3066242,3371095,5,'writer','created by',NULL),(3066242,3950939,6,'actor',NULL,'[\"Jaune Arc\",\"Rusted Knight\",\"White Fang Goon 1\"]'),(3066242,4776797,7,'actress',NULL,'[\"Nora Valkyrie\"]'),(3066242,7683186,8,'actor',NULL,'[\"Lie Ren\"]'),(3066242,1309787,9,'actor',NULL,'[\"Oscar Pine\",\"Ozma\"]'),(3068194,887630,10,'cinematographer',NULL,NULL),(3068194,295,1,'actress',NULL,'[\"Lady Susan Vernon\"]'),(3068194,1721,2,'actress',NULL,'[\"Alicia Johnson\"]'),(3068194,1882152,3,'actor',NULL,'[\"Reginald DeCourcy\"]'),(3068194,4563896,4,'actress',NULL,'[\"Catherine DeCourcy Vernon\"]'),(3068194,1775,5,'director',NULL,NULL),(3068194,807,6,'writer','based on her novella \"Lady Susan\"',NULL),(3068194,1175084,7,'producer','producer',NULL),(3068194,1545093,8,'producer','producer',NULL),(3068194,1342292,9,'composer',NULL,NULL),(3068894,4736304,10,'actress',NULL,'[\"Werenro\"]'),(3068894,378,1,'actress',NULL,'[\"Leah\"]'),(3068894,322513,2,'actor',NULL,'[\"Jacob\"]'),(3068894,4831584,3,'actor',NULL,'[\"Joseph\"]'),(3068894,733172,4,'actress',NULL,'[\"Bilhah\"]'),(3068894,700,5,'actress',NULL,'[\"Rebecca\"]'),(3068894,6547285,6,'actor',NULL,'[\"Levi\"]'),(3068894,3749668,7,'actor',NULL,'[\"Simon\"]'),(3068894,4789518,8,'actor',NULL,'[\"Reuben\"]'),(3068894,1552362,9,'actress',NULL,'[\"Zilpah\"]'),(3072482,1748780,10,'composer',NULL,NULL),(3072482,1663205,1,'actor',NULL,'[\"Jimmy\"]'),(3072482,619,2,'actor',NULL,'[\"Henry\'s Father\"]'),(3072482,2247245,3,'actress',NULL,'[\"Estelle\"]'),(3072482,1572716,4,'actor',NULL,'[\"Akan\"]'),(3072482,5820154,5,'director',NULL,NULL),(3072482,829901,6,'writer','additional writing by',NULL),(3072482,67457,7,'producer','producer',NULL),(3072482,6924140,8,'producer','producer',NULL),(3072482,4492491,9,'producer','producer',NULL),(3074694,339704,10,'composer',NULL,NULL),(3074694,1287,1,'actress',NULL,'[\"Corrine\"]'),(3074694,995,2,'actress',NULL,'[\"Grandmother\"]'),(3074694,2215143,3,'actress',NULL,'[\"Cathy\"]'),(3074694,5323995,4,'actor',NULL,'[\"Christopher\"]'),(3074694,1278887,5,'director',NULL,NULL),(3074694,28892,6,'writer','based upon the novel by',NULL),(3074694,1547852,7,'writer','teleplay by',NULL),(3074694,304119,8,'producer','producer',NULL),(3074694,434838,9,'producer','producer',NULL),(3074732,6270594,10,'production_designer',NULL,NULL),(3074732,797614,1,'actor',NULL,'[\"Kolbeinn\"]'),(3074732,100628,2,'actress',NULL,'[\"Solveig\"]'),(3074732,7242421,3,'actor',NULL,'[\"Jon\"]'),(3074732,457999,4,'actress',NULL,'[\"Hildur\"]'),(3074732,259574,5,'director',NULL,NULL),(3074732,296144,6,'producer','producer',NULL),(3074732,433601,7,'composer',NULL,NULL),(3074732,1291213,8,'cinematographer',NULL,NULL),(3074732,6221348,9,'editor',NULL,NULL),(3076658,935203,10,'producer','producer',NULL),(3076658,430107,1,'actor',NULL,'[\"Adonis Johnson\"]'),(3076658,230,2,'actor',NULL,'[\"Rocky Balboa\"]'),(3076658,1935086,3,'actress',NULL,'[\"Bianca\"]'),(3076658,711118,4,'actress',NULL,'[\"Mary Anne Creed\"]'),(3076658,3363032,5,'director',NULL,NULL),(3076658,2128400,6,'writer','screenplay by',NULL),(3076658,153590,7,'producer','producer',NULL),(3076658,153587,8,'producer','producer',NULL),(3076658,854772,9,'producer','producer',NULL),(3077108,3034178,1,'actress',NULL,'[\"Shirin\"]'),(3077108,3020280,2,'actress',NULL,'[\"Maxine\"]'),(3077108,270546,3,'actress',NULL,'[\"Crystal\"]'),(3077108,3678203,4,'actor',NULL,'[\"Brendan\"]'),(3077108,2360311,5,'writer','story',NULL),(3077108,3859654,6,'composer',NULL,NULL),(3077108,1627409,7,'cinematographer','director of photography',NULL),(3077108,2113420,8,'editor',NULL,NULL),(3077108,2720784,9,'production_designer',NULL,NULL),(3077214,1880996,10,'cinematographer','director of photography',NULL),(3077214,1659547,1,'actress',NULL,'[\"Maud Watts\"]'),(3077214,240359,2,'actress',NULL,'[\"Violet Miller\"]'),(3077214,307,3,'actress',NULL,'[\"Edith Ellyn\"]'),(3077214,658,4,'actress',NULL,'[\"Emmeline Pankhurst\"]'),(3077214,310673,5,'director',NULL,NULL),(3077214,604448,6,'writer','written by',NULL),(3077214,654077,7,'producer','producer',NULL),(3077214,1952700,8,'producer','producer',NULL),(3077214,6035,9,'composer',NULL,NULL),(3078718,5827806,10,'composer',NULL,NULL),(3078718,61484,1,'actor',NULL,'[\"Paolo\"]'),(3078718,148081,2,'actor',NULL,'[\"Gustino\"]'),(3078718,5827798,3,'actor',NULL,'[\"Zoran\"]'),(3078718,162911,4,'actor',NULL,'[\"Alfio\"]'),(3078718,2663031,5,'director',NULL,NULL),(3078718,2394916,6,'writer','writer',NULL),(3078718,678499,7,'writer','writer',NULL),(3078718,2360312,8,'writer','writer',NULL),(3078718,3801930,9,'producer','producer',NULL),(3079380,5934,10,'cinematographer',NULL,NULL),(3079380,565250,1,'actress',NULL,'[\"Susan Cooper\"]'),(3079380,126284,2,'actress',NULL,'[\"Rayna Boyanov\"]'),(3079380,179,3,'actor',NULL,'[\"Bradley Fine\"]'),(3079380,5458,4,'actor',NULL,'[\"Rick Ford\"]'),(3079380,82450,5,'director',NULL,NULL),(3079380,1858656,6,'producer','producer',NULL),(3079380,2295810,7,'producer','producer',NULL),(3079380,867768,8,'producer','producer',NULL),(3079380,788640,9,'composer',NULL,NULL),(3086442,657965,10,'editor',NULL,NULL),(3086442,5835039,1,'actor',NULL,'[\"Lukas\"]'),(3086442,5835038,2,'actor',NULL,'[\"Elias\"]'),(3086442,1218360,3,'actress',NULL,'[\"Mutter\"]'),(3086442,3041988,4,'actor',NULL,'[\"Priester\"]'),(3086442,3868633,5,'director',NULL,NULL),(3086442,1072411,6,'director',NULL,NULL),(3086442,782430,7,'producer','producer',NULL),(3086442,1119144,8,'composer',NULL,NULL),(3086442,345116,9,'cinematographer',NULL,NULL),(3089326,2010257,10,'editor',NULL,NULL),(3089326,755364,1,'actor',NULL,'[\"Damián\"]'),(3089326,2658169,2,'actress',NULL,'[\"Bárbara niña\"]'),(3089326,7343749,3,'actor',NULL,'[\"Marcos niño\"]'),(3089326,5838435,4,'actress',NULL,'[\"Alicia\"]'),(3089326,4209430,5,'director',NULL,NULL),(3089326,4391804,6,'producer','producer',NULL),(3089326,4392452,7,'producer','producer',NULL),(3089326,4392562,8,'producer','producer',NULL),(3089326,1167135,9,'cinematographer',NULL,NULL),(3089388,5316154,1,'self',NULL,'[\"Self\"]'),(3089388,422710,2,'self',NULL,'[\"Self\"]'),(3089388,611898,3,'self',NULL,'[\"Self\"]'),(3089388,1635344,4,'self',NULL,'[\"Self\"]'),(3089388,854418,5,'director',NULL,NULL),(3089388,956098,6,'producer','producer',NULL),(3089388,691100,7,'composer',NULL,NULL),(3089388,446867,8,'cinematographer','director of photography',NULL),(3089388,790797,9,'editor',NULL,NULL),(3089630,236462,10,'composer',NULL,NULL),(3089630,9500254,1,'actor',NULL,'[\"Artemis Fowl\"]'),(3089630,7107447,2,'actress',NULL,'[\"Holly Short\"]'),(3089630,1265802,3,'actor',NULL,'[\"Mulch Diggums\"]'),(3089630,8165603,4,'actress',NULL,'[\"Juliet\"]'),(3089630,110,5,'director',NULL,NULL),(3089630,1379619,6,'writer','based on the novel by',NULL),(3089630,566100,7,'writer','screenplay by',NULL),(3089630,574217,8,'writer','screenplay by',NULL),(3089630,388788,9,'producer','producer',NULL),(3090670,1471372,10,'cinematographer',NULL,NULL),(3090670,453492,1,'actress',NULL,'[\"Gwen\"]'),(3090670,881672,2,'actor',NULL,'[\"Fisher\"]'),(3090670,2633431,3,'actress',NULL,'[\"Gwen 2.0\"]'),(3090670,421822,4,'actor',NULL,'[\"Han\"]'),(3090670,679662,5,'director',NULL,NULL),(3090670,2030135,6,'producer','producer',NULL),(3090670,2365254,7,'producer','producer',NULL),(3090670,3121389,8,'producer','line producer',NULL),(3090670,1479273,9,'composer',NULL,NULL),(3095734,661289,10,'producer','producer',NULL),(3095734,1395771,1,'actor',NULL,'[\"Tripp\"]'),(3095734,3994408,2,'actress',NULL,'[\"Meredith\"]'),(3095734,502073,3,'actor',NULL,'[\"Jim Dowd\"]'),(3095734,1608,4,'actor',NULL,'[\"Sheriff Rick\"]'),(3095734,917188,5,'director',NULL,NULL),(3095734,2081046,6,'writer','screenplay by',NULL),(3095734,2816668,7,'writer','story by',NULL),(3095734,8743,8,'writer','story by',NULL),(3095734,74184,9,'writer','story by',NULL),(3097084,238848,10,'editor',NULL,NULL),(3097084,4739686,1,'actress',NULL,'[\"Elise Miller\"]'),(3097084,4413917,2,'actress',NULL,'[\"Maxine Reynolds\"]'),(3097084,2520235,3,'actor',NULL,'[\"Jeff Sanford\"]'),(3097084,5177123,4,'actress',NULL,'[\"Allison Henry\"]'),(3097084,4801201,5,'director',NULL,NULL),(3097084,5485262,6,'director',NULL,NULL),(3097084,1389536,7,'writer','story',NULL),(3097084,5849613,8,'writer','screenplay',NULL),(3097084,6280772,9,'composer',NULL,NULL),(3097204,1439751,10,'cinematographer',NULL,NULL),(3097204,3020713,1,'actor',NULL,'[\"Will McKenzie\"]'),(3097204,118617,2,'actor',NULL,'[\"Jay Cartwright\"]'),(3097204,3002919,3,'actor',NULL,'[\"Neil Sutherland\"]'),(3097204,3022504,4,'actor',NULL,'[\"Simon Cooper\"]'),(3097204,1720648,5,'director',NULL,NULL),(3097204,606597,6,'director',NULL,NULL),(3097204,1416379,7,'producer','producer',NULL),(3097204,3417,8,'composer',NULL,NULL),(3097204,697048,9,'composer',NULL,NULL),(3099498,1537113,10,'composer',NULL,NULL),(3099498,519043,1,'actor',NULL,'[\"Wallace Bryton\"]'),(3099498,662981,2,'actor',NULL,'[\"Howard Howe\"]'),(3099498,5286,3,'actor',NULL,'[\"Teddy Craft\"]'),(3099498,1270009,4,'actress',NULL,'[\"Ally Leon\"]'),(3099498,3620,5,'director',NULL,NULL),(3099498,1583132,6,'producer','producer',NULL),(3099498,989308,7,'producer','producer',NULL),(3099498,4207924,8,'producer','producer',NULL),(3099498,570690,9,'producer','producer',NULL),(3100510,4472504,1,'actress',NULL,'[\"Audrey\"]'),(3100510,3830070,2,'actress',NULL,'[\"Carey\"]'),(3100510,4680333,3,'director',NULL,NULL),(3100510,4379382,4,'cinematographer',NULL,NULL),(3100510,5951166,5,'editor',NULL,NULL),(3100636,5315479,1,'actress',NULL,'[\"Billie\"]'),(3100636,5853561,2,'actor',NULL,'[\"Josh\"]'),(3100636,5853559,3,'actress',NULL,'[\"Jasmine\"]'),(3100636,6023730,4,'actor',NULL,'[\"James\"]'),(3100636,1170520,5,'director',NULL,NULL),(3100636,2568692,6,'writer','screenplay',NULL),(3100636,1737171,7,'producer','producer',NULL),(3100636,838837,8,'producer','producer',NULL),(3100636,2307111,9,'composer',NULL,NULL),(3103576,702455,10,'producer','producer',NULL),(3103576,23832,1,'actor',NULL,'[\"Marc\"]'),(3103576,895759,2,'actress',NULL,'[\"Marianne\"]'),(3103576,494069,3,'actress',NULL,'[\"Anna Eggbaum\"]'),(3103576,1271759,4,'actress',NULL,'[\"Annie\"]'),(3103576,488623,5,'director',NULL,NULL),(3103576,488626,6,'director',NULL,NULL),(3103576,229172,7,'writer','novel \'Incendies\'',NULL),(3103576,91402,8,'producer','producer',NULL),(3103576,241489,9,'producer','producer',NULL),(3104818,3633993,10,'producer','producer',NULL),(3104818,5382637,1,'actor',NULL,'[\"Reggie\"]'),(3104818,580646,2,'actress',NULL,'[\"Esa\"]'),(3104818,5226,3,'actress',NULL,'[\"Barbara\"]'),(3104818,696546,4,'actor',NULL,'[\"Teacher\"]'),(3104818,1844,5,'director',NULL,NULL),(3104818,1164842,6,'producer','producer',NULL),(3104818,1684092,7,'producer','producer',NULL),(3104818,450275,8,'producer','producer',NULL),(3104818,1003923,9,'producer','producer',NULL),(3104930,2344826,10,'cinematographer',NULL,NULL),(3104930,2637959,1,'actor',NULL,'[\"Dr. Hess Greene\"]'),(3104930,1401432,2,'actress',NULL,'[\"Ganja Hightower\"]'),(3104930,1785339,3,'actor',NULL,'[\"Seneschal Higginbottom\"]'),(3104930,634393,4,'actor',NULL,'[\"Lafayette Hightower\"]'),(3104930,490,5,'director',NULL,NULL),(3104930,348155,6,'writer','original screenplay',NULL),(3104930,1280085,7,'writer',NULL,NULL),(3104930,776213,8,'producer','producer',NULL),(3104930,395193,9,'composer',NULL,NULL),(3104988,6597,10,'producer','producer',NULL),(3104988,2090422,1,'actress',NULL,'[\"Rachel Chu\"]'),(3104988,6525901,2,'actor',NULL,'[\"Nick Young\"]'),(3104988,706,3,'actress',NULL,'[\"Eleanor Young\"]'),(3104988,2110418,4,'actress',NULL,'[\"Astrid Young Teo\"]'),(3104988,160840,5,'director',NULL,NULL),(3104988,1095804,6,'writer','screenplay by',NULL),(3104988,1004604,7,'writer','screenplay by',NULL),(3104988,5858664,8,'writer','based on the novel \"Crazy Rich Asians\" by',NULL),(3104988,1749221,9,'producer','producer',NULL),(3106846,3518,10,'editor',NULL,NULL),(3106846,5861076,1,'actress',NULL,'[\"Gabrielle\"]'),(3106846,5861077,2,'actor',NULL,'[\"Martin\"]'),(3106846,246386,3,'actress',NULL,'[\"Sophie\"]'),(3106846,2066600,4,'actor',NULL,'[\"Remi\"]'),(3106846,33596,5,'director',NULL,NULL),(3106846,246404,6,'producer','producer',NULL),(3106846,566919,7,'producer','producer',NULL),(3106846,5299681,8,'composer',NULL,NULL),(3106846,491911,9,'cinematographer',NULL,NULL),(3107288,630379,10,'actress',NULL,'[\"Cecile Horton\",\"Virtue\"]'),(3107288,2652716,1,'actor',NULL,'[\"Barry Allen\",\"The Flash\",\"The Streak\"]'),(3107288,2765384,2,'actress',NULL,'[\"Iris West-Allen\",\"Iris West\",\"Millie Foss\"]'),(3107288,1263939,3,'actress',NULL,'[\"Caitlin Snow\",\"Killer Frost\",\"Frost\"]'),(3107288,4583876,4,'actor',NULL,'[\"Cisco Ramon\",\"Vibe\",\"Mecha-Vibe\"]'),(3107288,75528,5,'writer','developed by',NULL),(3107288,424315,6,'writer','developed by',NULL),(3107288,1132610,7,'writer','developed by',NULL),(3107288,552509,8,'actor',NULL,'[\"Joe West\",\"Digsy Foss\",\"Joseph West\"]'),(3107288,146915,9,'actor',NULL,'[\"Dr. Harry Wells\",\"Dr. Harrison Wells\",\"Eobard Thawne\"]'),(3108894,6076271,10,'composer',NULL,NULL),(3108894,255,1,'actor',NULL,'[\"Uncle Charlie\"]'),(3108894,4446467,2,'actor',NULL,'[\"JR\"]'),(3108894,12373805,3,'actor',NULL,'[\"Young JR\"]'),(3108894,1143816,4,'actress',NULL,'[\"Mom\"]'),(3108894,123,5,'director',NULL,NULL),(3108894,1184258,6,'writer','screenplay by',NULL),(3108894,2622304,7,'writer','based on the memoir by',NULL),(3108894,381416,8,'producer','producer',NULL),(3108894,394046,9,'producer','producer',NULL),(3110958,169256,10,'producer','producer',NULL),(3110958,251986,1,'actor',NULL,'[\"J. Daniel Atlas\"]'),(3110958,749263,2,'actor',NULL,'[\"Dylan Rhodes\"]'),(3110958,437,3,'actor',NULL,'[\"Merritt McKinney\",\"Chase McKinney\"]'),(3110958,2002649,4,'actor',NULL,'[\"Jack Wilder\"]'),(3110958,160840,5,'director',NULL,NULL),(3110958,4412,6,'writer','screenplay by',NULL),(3110958,1095804,7,'writer','story by',NULL),(3110958,945026,8,'writer','based on characters created by',NULL),(3110958,3242689,9,'writer','based on characters created by',NULL),(3110960,4904466,10,'composer',NULL,NULL),(3110960,911395,1,'actor',NULL,'[\"Jimmy\"]'),(3110960,535837,2,'actor',NULL,'[\"Mossie\"]'),(3110960,5879255,3,'actress',NULL,'[\"Alice\"]'),(3110960,2034064,4,'actress',NULL,'[\"Oonagh\"]'),(3110960,516360,5,'director',NULL,NULL),(3110960,491956,6,'writer','screenplay',NULL),(3110960,641525,7,'writer','play: Jimmy Gralton\'s Dancehall',NULL),(3110960,639780,8,'producer','producer',NULL),(3110960,6070,9,'composer',NULL,NULL),(3111426,1870110,10,'composer',NULL,NULL),(3111426,752407,1,'actress',NULL,'[\"Mari Gilbert\"]'),(3111426,5057169,2,'actress',NULL,'[\"Sherre Gilbert\"]'),(3111426,321,3,'actor',NULL,'[\"Richard Dormer\"]'),(3111426,3860305,4,'actress',NULL,'[\"Kim\"]'),(3111426,305017,5,'director',NULL,NULL),(3111426,4524237,6,'writer','book',NULL),(3111426,5344063,7,'writer',NULL,NULL),(3111426,136904,8,'producer','producer',NULL),(3111426,566557,9,'producer','producer',NULL),(3115906,1470915,10,'cinematographer',NULL,NULL),(3115906,4872352,1,'actress',NULL,'[\"Kristi\"]'),(3115906,5216592,2,'actress',NULL,'[\"Bridgette\"]'),(3115906,2490324,3,'actress',NULL,'[\"Honey\"]'),(3115906,6427328,4,'actress',NULL,'[\"Shara\"]'),(3115906,1087375,5,'director',NULL,NULL),(3115906,1859539,6,'producer','producer',NULL),(3115906,2335176,7,'producer','producer',NULL),(3115906,6680958,8,'composer',NULL,NULL),(3115906,11893277,9,'composer',NULL,NULL),(3118452,2460649,10,'producer','producer',NULL),(3118452,6276713,1,'actress',NULL,'[\"The Pregnant Girl\"]'),(3118452,4401508,2,'actress',NULL,'[\"Beth\"]'),(3118452,4081721,3,'actress',NULL,'[\"The Young Girl\"]'),(3118452,2608927,4,'actress',NULL,'[\"Woman #4\"]'),(3118452,5278146,5,'director',NULL,NULL),(3118452,5278427,6,'director',NULL,NULL),(3118452,1706441,7,'producer','producer',NULL),(3118452,251809,8,'producer','producer',NULL),(3118452,1660148,9,'producer','producer',NULL),(3118958,886781,10,'editor',NULL,NULL),(3118958,207,1,'actress',NULL,'[\"Lizzie Borden\"]'),(3118958,245112,2,'actress',NULL,'[\"Emma Borden\"]'),(3118958,1344,3,'actor',NULL,'[\"Hosea Knowlton\"]'),(3118958,565569,4,'actor',NULL,'[\"Andrew Borden\"]'),(3118958,327064,5,'director',NULL,NULL),(3118958,443181,6,'writer','written by',NULL),(3118958,537164,7,'producer','producer',NULL),(3118958,386640,8,'composer',NULL,NULL),(3118958,181767,9,'cinematographer',NULL,NULL),(3120280,3043128,10,'producer','producer',NULL),(3120280,7684864,1,'actress',NULL,'[\"Sierra\"]'),(3120280,8109082,2,'actress',NULL,'[\"Veronica\"]'),(3120280,5518972,3,'actor',NULL,'[\"Dan\"]'),(3120280,3170207,4,'actor',NULL,'[\"Jamey\"]'),(3120280,3859682,5,'director',NULL,NULL),(3120280,5170222,6,'writer','written by',NULL),(3120280,524745,7,'producer','producer',NULL),(3120280,2590720,8,'producer','producer',NULL),(3120280,1053785,9,'producer','producer',NULL),(3120408,3360872,10,'producer','producer',NULL),(3120408,329481,1,'actress',NULL,'[\"Fawn\"]'),(3120408,926165,2,'actress',NULL,'[\"Tinker Bell\"]'),(3120408,206257,3,'actress',NULL,'[\"Nyx\"]'),(3120408,5154,4,'actress',NULL,'[\"Silvermist\"]'),(3120408,521425,5,'director',NULL,NULL),(3120408,737241,6,'writer','story',NULL),(3120408,774792,7,'writer','screenplay',NULL),(3120408,566407,8,'writer','screenplay',NULL),(3120408,1009988,9,'writer','screenplay',NULL),(3122122,3644298,10,'actor',NULL,'[\"Henchmen\"]'),(3122122,511429,1,'actress',NULL,'[\"Princess Dawn\",\"Princess Eve\"]'),(3122122,573926,2,'actor',NULL,'[\"Caasi\",\"Lettam\",\"Jibber\"]'),(3122122,646955,3,'actress',NULL,'[\"Queen Dume\",\"Luna\",\"Sparks\"]'),(3122122,149942,4,'actor',NULL,'[\"King Solter\",\"Castle Guard\",\"Henchmen\"]'),(3122122,471972,5,'director',NULL,NULL),(3122122,1570443,6,'composer',NULL,NULL),(3122122,2200299,7,'actor',NULL,'[\"Kylo\"]'),(3122122,2244498,8,'actress',NULL,'[\"Cammie\"]'),(3122122,2177049,9,'actress',NULL,'[\"Jemma\"]'),(3125324,4584738,10,'producer','producer',NULL),(3125324,1813221,1,'actress',NULL,'[\"Noni\"]'),(3125324,1676649,2,'actor',NULL,'[\"Kaz\"]'),(3125324,378,3,'actress',NULL,'[\"Macy Jean\"]'),(3125324,418,4,'actor',NULL,'[\"Captain Nicol\"]'),(3125324,697656,5,'director',NULL,NULL),(3125324,19858,6,'producer','producer',NULL),(3125324,90066,7,'producer','producer',NULL),(3125324,1448916,8,'producer','producer',NULL),(3125324,2535778,9,'producer','producer',NULL),(3128900,811761,10,'editor',NULL,NULL),(3128900,5017,1,'actress',NULL,'[\"Miss Meadows\"]'),(3128900,197647,2,'actor',NULL,'[\"Sheriff\"]'),(3128900,612534,3,'actor',NULL,'[\"Skylar\"]'),(3128900,5443,4,'actress',NULL,'[\"Mother Meadows\"]'),(3128900,394212,5,'director',NULL,NULL),(3128900,3665102,6,'producer','producer',NULL),(3128900,137548,7,'producer','producer',NULL),(3128900,1132022,8,'composer',NULL,NULL),(3128900,548718,9,'cinematographer','director of photography',NULL),(3138192,820925,10,'producer','producer',NULL),(3138192,2254074,1,'actress',NULL,'[\"Cammy\"]'),(3138192,2452327,2,'actor',NULL,'[\"Max\"]'),(3138192,1640086,3,'actor',NULL,'[\"Nicky\"]'),(3138192,2202521,4,'actress',NULL,'[\"Tara\"]'),(3138192,382072,5,'director',NULL,NULL),(3138192,830419,6,'writer','based on the book by',NULL),(3138192,180902,7,'writer','screenplay by',NULL),(3138192,1017627,8,'producer','producer',NULL),(3138192,1033984,9,'producer','producer',NULL),(3139072,487067,10,'writer','screenplay',NULL),(3139072,641816,1,'actor',NULL,'[\"Batman\",\"Bruce Wayne\"]'),(3139072,4184666,2,'actor',NULL,'[\"Damian\"]'),(3139072,4959,3,'actor',NULL,'[\"Deathstroke\"]'),(3139072,1072555,4,'actress',NULL,'[\"Talia\"]'),(3139072,2320725,5,'director',NULL,NULL),(3139072,4170,6,'writer','Batman created by',NULL),(3139072,1634601,7,'writer','graphic novel',NULL),(3139072,1572769,8,'writer','graphic novel illustrator',NULL),(3139072,732702,9,'writer','story',NULL),(3139086,1694619,10,'writer','Amanda Waller created by',NULL),(3139086,175834,1,'actor',NULL,'[\"Batman\"]'),(3139086,568180,2,'actor',NULL,'[\"Deadshot\"]'),(3139086,906945,3,'actress',NULL,'[\"Harley Quinn\"]'),(3139086,1131557,4,'actor',NULL,'[\"Riddler\"]'),(3139086,646515,5,'director',NULL,NULL),(3139086,2320725,6,'director',NULL,NULL),(3139086,1236620,7,'writer','written by',NULL),(3139086,4170,8,'writer','Batman created by',NULL),(3139086,2954970,9,'writer','Deadshot co-created by',NULL),(3145220,444156,10,'composer',NULL,NULL),(3145220,2993517,1,'actress',NULL,'[\"Katelyn Stuben\"]'),(3145220,909768,2,'actor',NULL,'[\"Dave Stuben\"]'),(3145220,1894391,3,'actor',NULL,'[\"Donovan\"]'),(3145220,1544084,4,'actor',NULL,'[\"Cory\"]'),(3145220,189144,5,'director',NULL,NULL),(3145220,2782693,6,'producer','producer',NULL),(3145220,1265343,7,'producer','producer',NULL),(3145220,5407803,8,'producer','producer',NULL),(3145220,1146967,9,'producer','producer',NULL),(3148348,568107,10,'producer','producer',NULL),(3148348,192377,1,'actor',NULL,'[\"Six\"]'),(3148348,1717573,2,'actress',NULL,'[\"PC. Rachel Heggie\"]'),(3148348,1385922,3,'actor',NULL,'[\"PC. Jack Warnock\"]'),(3148348,3501831,4,'actress',NULL,'[\"PC. Jennifer Mundie\"]'),(3148348,1746948,5,'director',NULL,NULL),(3148348,1814869,6,'writer','written by',NULL),(3148348,1331951,7,'writer','written by',NULL),(3148348,225257,8,'producer','producer',NULL),(3148348,565069,9,'producer','producer',NULL),(3148952,5338416,10,'composer',NULL,NULL),(3148952,3747101,1,'actor',NULL,'[\"Ernst Ostertag\"]'),(3148952,1845333,2,'actor',NULL,'[\"Principal Dr. Max Sieber\"]'),(3148952,3325981,3,'actress',NULL,'[\"Fräulein Gabi Gerster\"]'),(3148952,936834,4,'actor',NULL,'[\"Rolf\"]'),(3148952,369442,5,'director',NULL,NULL),(3148952,2789152,6,'writer','screenplay',NULL),(3148952,2319441,7,'writer','screenplay',NULL),(3148952,2497348,8,'writer','screenplay',NULL),(3148952,3022531,9,'producer','producer',NULL),(3149038,169299,10,'cinematographer','director of photography',NULL),(3149038,2633535,1,'actor',NULL,'[\"Nathan Ellis\"]'),(3149038,1245863,2,'actor',NULL,'[\"Martin Humphreys\"]'),(3149038,1020089,3,'actress',NULL,'[\"Julie Ellis\"]'),(3149038,550371,4,'actor',NULL,'[\"Richard\"]'),(3149038,2051728,5,'director',NULL,NULL),(3149038,3037341,6,'writer',NULL,NULL),(3149038,1232664,7,'producer','producer',NULL),(3149038,860034,8,'producer','producer',NULL),(3149038,681040,9,'composer',NULL,NULL),(3152098,1635438,10,'cinematographer',NULL,NULL),(3152098,431895,1,'actor',NULL,'[\"Jack Turner\"]'),(3152098,737533,2,'actress',NULL,'[\"Rosie\"]'),(3152098,969523,3,'actor',NULL,'[\"Admiral Engleberg\"]'),(3152098,27276,4,'actor',NULL,'[\"Nero\"]'),(3152098,808136,5,'director',NULL,NULL),(3152098,4437450,6,'writer','screenplay',NULL),(3152098,695977,7,'writer','story and screenplay',NULL),(3152098,490375,8,'producer','producer',NULL),(3152098,2399763,9,'composer',NULL,NULL),(3152592,687937,10,'writer','story by',NULL),(3152592,287182,1,'actor',NULL,'[\"Shaggy Rogers\"]'),(3152592,242,2,'actor',NULL,'[\"Blue Falcon\"]'),(3152592,5042,3,'actor',NULL,'[\"Dick Dastardly\"]'),(3152592,1752221,4,'actress',NULL,'[\"Velma Dinkley\"]'),(3152592,148999,5,'director',NULL,NULL),(3152592,1186373,6,'writer','screenplay by',NULL),(3152592,3242555,7,'writer','screenplay by',NULL),(3152592,5440708,8,'writer','screenplay by',NULL),(3152592,1073238,9,'writer','screenplay by',NULL),(3152624,958393,10,'editor',NULL,NULL),(3152624,2154960,1,'actress',NULL,'[\"Amy\"]'),(3152624,352778,2,'actor',NULL,'[\"Aaron\"]'),(3152624,488953,3,'actress',NULL,'[\"Kim\"]'),(3152624,703800,4,'actor',NULL,'[\"Gordon\"]'),(3152624,31976,5,'director',NULL,NULL),(3152624,578814,6,'producer','producer',NULL),(3152624,109726,7,'composer',NULL,NULL),(3152624,1464511,8,'cinematographer',NULL,NULL),(3152624,449820,9,'editor',NULL,NULL),(3153524,1388136,10,'production_designer',NULL,NULL),(3153524,2286314,1,'actor',NULL,'[\"Stephen (2013)\"]'),(3153524,2561194,2,'actor',NULL,'[\"Patrick (2013)\"]'),(3153524,674,3,'actress',NULL,'[\"Tamlyn\",\"Pamlyn (2013)\"]'),(3153524,502959,4,'actor',NULL,'[\"Al (2013)\"]'),(3153524,2041920,5,'writer','writer',NULL),(3153524,930446,6,'producer','producer',NULL),(3153524,3455445,7,'composer',NULL,NULL),(3153524,8731,8,'cinematographer',NULL,NULL),(3153524,1110123,9,'editor',NULL,NULL),(3155794,1715062,1,'director',NULL,NULL),(3159812,1854009,10,'writer','story by',NULL),(3159812,280230,1,'actress',NULL,'[\"Abbey Bominable\",\"Fairy Girl\",\"Rochelle Goyle\"]'),(3159812,6049147,2,'actress',NULL,'[\"Catty Noir\"]'),(3159812,6049148,3,'actor',NULL,'[\"Clawd Wolf\"]'),(3159812,1086483,4,'actress',NULL,'[\"Clawdeen Wolf\",\"Cleo de Nile\"]'),(3159812,755323,5,'director',NULL,NULL),(3159812,1433999,6,'director','supervising director',NULL),(3159812,655637,7,'director','supervising director',NULL),(3159812,1026847,8,'writer','story by',NULL),(3159812,599609,9,'writer','written by',NULL),(3165612,1420126,10,'composer',NULL,NULL),(3165612,837177,1,'actor',NULL,'[\"Jake\"]'),(3165612,1555340,2,'actress',NULL,'[\"Lainey\"]'),(3165612,1994167,3,'actor',NULL,'[\"R.A.\"]'),(3165612,1760272,4,'actress',NULL,'[\"Hannah\"]'),(3165612,2853516,5,'director',NULL,NULL),(3165612,1819990,6,'producer','producer',NULL),(3165612,2071,7,'producer','producer',NULL),(3165612,454004,8,'producer','producer',NULL),(3165612,570912,9,'producer','producer',NULL),(3168230,136904,10,'producer','producer',NULL),(3168230,5212,1,'actor',NULL,'[\"Sherlock Holmes\"]'),(3168230,1473,2,'actress',NULL,'[\"Mrs. Munro\"]'),(3168230,760796,3,'actor',NULL,'[\"Tamiki Umezaki\"]'),(3168230,602455,4,'actress',NULL,'[\"Ann Kelmot\"]'),(3168230,174374,5,'director',NULL,NULL),(3168230,1616194,6,'writer','novel \"A Slight Trick of the Mind\"',NULL),(3168230,368774,7,'writer','screenplay',NULL),(3168230,236279,8,'writer','created by',NULL),(3168230,2096617,9,'producer','producer',NULL),(3169706,646941,10,'editor',NULL,NULL),(3169706,631490,1,'actor',NULL,'[\"Cliff\"]'),(3169706,1767,2,'actress',NULL,'[\"Hefina\"]'),(3169706,922035,3,'actor',NULL,'[\"Jonathan\"]'),(3169706,175916,4,'actor',NULL,'[\"Dai Donovan\"]'),(3169706,911334,5,'director',NULL,NULL),(3169706,73571,6,'writer','screenplay by',NULL),(3169706,5928339,7,'producer','producer',NULL),(3169706,6444995,8,'composer',NULL,NULL),(3169706,705377,9,'cinematographer',NULL,NULL),(3170832,169299,10,'cinematographer','director of photography',NULL),(3170832,488953,1,'actress',NULL,'[\"Ma\"]'),(3170832,5016878,2,'actor',NULL,'[\"Jack\"]'),(3170832,108703,3,'actor',NULL,'[\"Old Nick\"]'),(3170832,187724,4,'actress',NULL,'[\"Talk Show Hostess\"]'),(3170832,1049433,5,'director',NULL,NULL),(3170832,1480980,6,'writer','screenplay by',NULL),(3170832,3510918,7,'producer','producer',NULL),(3170832,347384,8,'producer','producer',NULL),(3170832,719673,9,'composer',NULL,NULL),(3172532,2632891,10,'producer','producer',NULL),(3172532,2525790,1,'actress',NULL,'[\"Minnie\"]'),(3172532,2907,2,'actor',NULL,'[\"Monroe\"]'),(3172532,1325419,3,'actress',NULL,'[\"Charlotte\"]'),(3172532,5221,4,'actor',NULL,'[\"Pascal\"]'),(3172532,1716636,5,'director',NULL,NULL),(3172532,6390963,6,'writer','novel',NULL),(3172532,47419,7,'producer','producer',NULL),(3172532,136904,8,'producer','producer',NULL),(3172532,353012,9,'producer','producer',NULL),(3175038,8126552,10,'composer',NULL,NULL),(3175038,3289096,1,'actor',NULL,'[\"Guru\"]'),(3175038,3601766,2,'actress',NULL,'[\"Aisha\"]'),(3175038,1299011,3,'actor',NULL,'[\"Rakesh Mahadkar\"]'),(3175038,2337375,4,'actor',NULL,'[\"Aditya\"]'),(3175038,1887138,5,'director',NULL,NULL),(3175038,1571874,6,'writer',NULL,NULL),(3175038,1179457,7,'writer','dialogue',NULL),(3175038,438471,8,'producer','producer',NULL),(3175038,438506,9,'producer','producer',NULL),(3183630,6457440,1,'actor',NULL,'[\"Menino\"]'),(3183630,6457442,2,'actor',NULL,'[\"Pai\"]'),(3183630,6457441,3,'actress',NULL,'[\"Mãe\"]'),(3183630,7856663,4,'actor',NULL,'[\"Jovem e Vozes Adicionais\"]'),(3183630,994245,5,'director',NULL,NULL),(3183630,4173773,6,'producer','producer',NULL),(3183630,2671345,7,'producer','producer',NULL),(3183630,3290129,8,'composer',NULL,NULL),(3183630,3289947,9,'composer',NULL,NULL),(3183660,6133,10,'composer',NULL,NULL),(3183660,1519666,1,'actor',NULL,'[\"Newt\"]'),(3183660,2239702,2,'actress',NULL,'[\"Tina\"]'),(3183660,837223,3,'actress',NULL,'[\"Queenie\"]'),(3183660,283945,4,'actor',NULL,'[\"Jacob Kowalski\"]'),(3183660,946734,5,'director',NULL,NULL),(3183660,746830,6,'writer','written by',NULL),(3183660,382268,7,'producer','producer',NULL),(3183660,460141,8,'producer','producer',NULL),(3183660,927880,9,'producer','producer',NULL),(3184934,551785,10,'cinematographer','director of photography',NULL),(3184934,244151,1,'actor',NULL,'[\"David\",\"Virginia\"]'),(3184934,1326732,2,'actress',NULL,'[\"Claire\"]'),(3184934,675521,3,'actor',NULL,'[\"Gilles\"]'),(3184934,494066,4,'actress',NULL,'[\"Laura\"]'),(3184934,654830,5,'director',NULL,NULL),(3184934,719334,6,'writer','novel The New Girlfriend',NULL),(3184934,22969,7,'producer','producer',NULL),(3184934,22971,8,'producer','producer',NULL),(3184934,739151,9,'composer',NULL,NULL),(3186838,3077219,1,'actress',NULL,'[\"Emma Cartwright\"]'),(3186838,2883176,2,'actor',NULL,'[\"Trent\"]'),(3186838,3078352,3,'actor',NULL,'[\"Raliegh Cartwright\"]'),(3186838,3078554,4,'actress',NULL,'[\"Linda\"]'),(3186838,3077718,5,'director',NULL,NULL),(3186838,3077942,6,'writer',NULL,NULL),(3186838,3078531,7,'producer','producer',NULL),(3186838,2188800,8,'producer','producer',NULL),(3195644,23398,10,'editor',NULL,NULL),(3195644,551,1,'actor',NULL,'[\"Sean Brenner\"]'),(3195644,2640887,2,'actress',NULL,'[\"Quinn Brenner\"]'),(3195644,760151,3,'actor',NULL,'[\"Tucker\"]'),(3195644,1191481,4,'actor',NULL,'[\"Specs\"]'),(3195644,89658,5,'producer','producer',NULL),(3195644,2305431,6,'producer','producer',NULL),(3195644,1490123,7,'producer','producer',NULL),(3195644,1177766,8,'composer',NULL,NULL),(3195644,3388,9,'cinematographer','director of photography',NULL),(3198652,8465701,10,'producer','producer',NULL),(3198652,410907,1,'actor',NULL,'[\"Makoto Yuki\"]'),(3198652,585640,2,'actor',NULL,'[\"Akihiko Sanada\"]'),(3198652,620017,3,'actor',NULL,'[\"Shinjiro Aragaki\"]'),(3198652,1145982,4,'actress',NULL,'[\"Fuuka Yamagishi\"]'),(3198652,3421291,5,'director',NULL,NULL),(3198652,2809027,6,'writer',NULL,NULL),(3198652,5264366,7,'producer','producer',NULL),(3198652,4247882,8,'producer','producer',NULL),(3198652,2286030,9,'producer','producer',NULL),(3201916,2930046,1,'self',NULL,'[\"Self\"]'),(3201916,4620889,2,'producer','producer',NULL),(3203528,3604,10,'cinematographer',NULL,NULL),(3203528,855039,1,'actor',NULL,'[\"Cale Erendreich\"]'),(3203528,1588066,2,'actor',NULL,'[\"Sean Falco\"]'),(3203528,174403,3,'actress',NULL,'[\"Katie\"]'),(3203528,4616554,4,'actor',NULL,'[\"Derek Sandoval\"]'),(3203528,2041,5,'director',NULL,NULL),(3203528,101625,6,'writer','written by',NULL),(3203528,1272673,7,'producer','producer',NULL),(3203528,743059,8,'producer','producer',NULL),(3203528,6173,9,'composer',NULL,NULL),(3203606,518757,10,'producer','producer',NULL),(3203606,186505,1,'actor',NULL,'[\"Dalton Trumbo\"]'),(3203606,178,2,'actress',NULL,'[\"Cleo Trumbo\"]'),(3203606,545,3,'actress',NULL,'[\"Hedda Hopper\"]'),(3203606,127373,4,'actor',NULL,'[\"Arlen Hird\"]'),(3203606,5366,5,'director',NULL,NULL),(3203606,573695,6,'writer','written by',NULL),(3203606,6983391,7,'writer','book \"Dalton Trumbo\"',NULL),(3203606,3819,8,'producer','producer',NULL),(3203606,506075,9,'producer','producer',NULL),(3203620,2249488,10,'producer','producer',NULL),(3203620,1985974,1,'actor',NULL,'[\"Dylan Heinz\"]'),(3203620,7044454,2,'actress',NULL,'[\"Kamryn Velez\"]'),(3203620,176869,3,'actor',NULL,'[\"Paul Lohman\"]'),(3203620,4055138,4,'actor',NULL,'[\"Michael Lohman\"]'),(3203620,610219,5,'director',NULL,NULL),(3203620,462319,6,'writer','based on the novel by',NULL),(3203620,160941,7,'producer','producer',NULL),(3203620,1224078,8,'producer','producer',NULL),(3203620,3782182,9,'producer','producer',NULL),(3205376,1011485,10,'composer',NULL,NULL),(3205376,2240346,1,'actor',NULL,'[\"Jay Cavendish\"]'),(3205376,3308569,2,'actress',NULL,'[\"Rose Ross\"]'),(3205376,7324744,3,'actor',NULL,'[\"Young Native Boy\"]'),(3205376,859005,4,'actor',NULL,'[\"Union Officer\"]'),(3205376,3304468,5,'director',NULL,NULL),(3205376,2096617,6,'producer','producer',NULL),(3205376,2051350,7,'producer','producer',NULL),(3205376,2221815,8,'producer','producer',NULL),(3205376,792431,9,'producer','producer',NULL),(3205394,2173766,10,'composer',NULL,NULL),(3205394,179479,1,'actor',NULL,'[\"Narrator\"]'),(3205394,307097,2,'actor',NULL,'[\"Mr. Mavrokoukoudopolous\"]'),(3205394,163,3,'actor',NULL,'[\"Mr. Hoppy\"]'),(3205394,179549,4,'actor',NULL,'[\"Mr. Pringle\"]'),(3205394,909608,5,'director',NULL,NULL),(3205394,193485,6,'writer','written by',NULL),(3205394,562687,7,'writer','written by',NULL),(3205394,1094,8,'writer','based on the novel by',NULL),(3205394,79638,9,'producer','producer',NULL),(3208026,1030457,10,'producer','producer',NULL),(3208026,915989,1,'actor',NULL,'[\"Hannah\"]'),(3208026,3306943,2,'actor',NULL,'[\"Feeney\"]'),(3208026,1653,3,'actor',NULL,'[\"Conneely\"]'),(3208026,3456865,4,'actor',NULL,'[\"Pope\"]'),(3208026,198472,5,'director',NULL,NULL),(3208026,227047,6,'writer','story by',NULL),(3208026,1980706,7,'writer','story by',NULL),(3208026,639546,8,'writer','screenplay by',NULL),(3208026,1795681,9,'producer','producer',NULL),(3212568,237944,10,'editor',NULL,NULL),(3212568,5970913,1,'self',NULL,'[\"Self\"]'),(3212568,5970914,2,'self',NULL,'[\"Self\"]'),(3212568,4810388,3,'self',NULL,'[\"Self\"]'),(3212568,6232940,4,'self',NULL,'[\"Self\"]'),(3212568,1920707,5,'director',NULL,NULL),(3212568,819764,6,'producer','producer',NULL),(3212568,916606,7,'producer','producer',NULL),(3212568,1220630,8,'composer',NULL,NULL),(3212568,935856,9,'cinematographer',NULL,NULL),(3215824,1834530,10,'producer','producer',NULL),(3215824,1401,1,'actress',NULL,'[\"Hannah\"]'),(3215824,396558,2,'actor',NULL,'[\"Patrick\"]'),(3215824,7567974,3,'actor',NULL,'[\"Connor\"]'),(3215824,1256532,4,'actor',NULL,'[\"Ethan\"]'),(3215824,792263,5,'director',NULL,NULL),(3215824,4509289,6,'writer','screenplay by',NULL),(3215824,495378,7,'writer','screenplay by',NULL),(3215824,1440825,8,'producer','producer',NULL),(3215824,317943,9,'producer','producer',NULL),(3224458,1323058,10,'producer','producer',NULL),(3224458,722629,1,'actor',NULL,'[\"Lloyd Vogel\"]'),(3224458,158,2,'actor',NULL,'[\"Fred Rogers\"]'),(3224458,177933,3,'actor',NULL,'[\"Jerry Vogel\"]'),(3224458,1635244,4,'actress',NULL,'[\"Andrea Vogel\"]'),(3224458,1716636,5,'director',NULL,NULL),(3224458,2873116,6,'writer','written by',NULL),(3224458,1406764,7,'writer','written by',NULL),(3224458,1754526,8,'writer','inspired by the article \"Can You Say... Hero?\" by',NULL),(3224458,736872,9,'writer','based on the work of',NULL),(3228774,1587813,10,'writer','story by',NULL),(3228774,1297015,1,'actress',NULL,'[\"Estella\",\"Cruella\"]'),(3228774,668,2,'actress',NULL,'[\"The Baroness\"]'),(3228774,2181128,3,'actor',NULL,'[\"Jasper\"]'),(3228774,3236159,4,'actor',NULL,'[\"Horace\"]'),(3228774,318916,5,'director',NULL,NULL),(3228774,1401416,6,'writer','screenplay by',NULL),(3228774,1110111,7,'writer','screenplay by',NULL),(3228774,112459,8,'writer','story by',NULL),(3228774,545150,9,'writer','story by',NULL),(3230162,63266,10,'editor',NULL,NULL),(3230162,6327727,1,'actor',NULL,'[\"Kaito\"]'),(3230162,4252250,2,'actress',NULL,'[\"Kyôko\"]'),(3230162,474731,3,'actress',NULL,'[\"Isa\"]'),(3230162,837501,4,'actor',NULL,'[\"Tôru\"]'),(3230162,442905,5,'director',NULL,NULL),(3230162,3977111,6,'producer','producer',NULL),(3230162,1980385,7,'producer','producer',NULL),(3230162,4575621,8,'composer',NULL,NULL),(3230162,945594,9,'cinematographer',NULL,NULL),(3235888,4354653,10,'composer',NULL,NULL),(3235888,2140860,1,'actress',NULL,'[\"Jay Height\"]'),(3235888,1507857,2,'actor',NULL,'[\"Paul\"]'),(3235888,3459140,3,'actress',NULL,'[\"Yara\"]'),(3235888,2714273,4,'actress',NULL,'[\"Kelly Height\"]'),(3235888,1379002,5,'director',NULL,NULL),(3235888,338253,6,'producer','producer',NULL),(3235888,1413530,7,'producer','producer',NULL),(3235888,3346661,8,'producer','producer',NULL),(3235888,3980199,9,'producer','producer',NULL),(3236120,1535892,10,'cinematographer','director of photography',NULL),(3236120,1100,1,'actress',NULL,'[\"Carol Petersen\"]'),(3236120,771414,2,'actor',NULL,'[\"Lloyd\"]'),(3236120,385,3,'actor',NULL,'[\"Bill\"]'),(3236120,15196,4,'actress',NULL,'[\"Katherine Petersen\"]'),(3236120,1417640,5,'director',NULL,NULL),(3236120,5303256,6,'writer','written by',NULL),(3236120,338253,7,'producer','producer',NULL),(3236120,1413530,8,'producer','producer',NULL),(3236120,1548770,9,'composer',NULL,NULL),(3247714,5563,10,'producer','producer',NULL),(3247714,170,1,'actress',NULL,'[\"Kate Abbot\"]'),(3247714,112,2,'actor',NULL,'[\"Nash\"]'),(3247714,1518,3,'actor',NULL,'[\"Sam Parker\"]'),(3247714,4696880,4,'actor',NULL,'[\"Johnny Talbot\"]'),(3247714,574625,5,'director',NULL,NULL),(3247714,1909937,6,'writer','written by',NULL),(3247714,203246,7,'producer','producer',NULL),(3247714,642869,8,'producer','producer',NULL),(3247714,935203,9,'producer','producer',NULL),(3252208,2077070,1,'director',NULL,NULL),(3252208,947496,2,'producer','producer',NULL),(3252208,583513,3,'cinematographer',NULL,NULL),(3252208,1661374,4,'editor',NULL,NULL),(3253930,1481660,10,'producer','producer',NULL),(3253930,349522,1,'actor',NULL,'[\"Juan Robles\"]'),(3253930,1666855,2,'actor',NULL,'[\"Pedro Suárez\"]'),(3253930,7102804,3,'actress',NULL,'[\"Trinidad\"]'),(3253930,6960420,4,'actor',NULL,'[\"Padre Trinidad\"]'),(3253930,735705,5,'director',NULL,NULL),(3253930,1943791,6,'writer',NULL,NULL),(3253930,7305905,7,'producer','producer',NULL),(3253930,299642,8,'producer','executive producer',NULL),(3253930,303922,9,'producer','producer',NULL),(3254796,2525142,10,'editor',NULL,NULL),(3254796,171,1,'actress',NULL,'[\"Ave Maria Mulligan\"]'),(3254796,933940,2,'actor',NULL,'[\"Jack MacChesney\"]'),(3254796,155,3,'actress',NULL,'[\"Fleeta Mullins\"]'),(3254796,382632,4,'actor',NULL,'[\"Theodore Tipton\"]'),(3254796,872765,5,'director',NULL,NULL),(3254796,317642,6,'producer','producer',NULL),(3254796,818657,7,'producer','producer',NULL),(3254796,1626759,8,'composer',NULL,NULL),(3254796,897794,9,'cinematographer',NULL,NULL),(3255590,5891,10,'cinematographer',NULL,NULL),(3255590,1009277,1,'actor',NULL,'[\"Deputy Billy Calhoun\"]'),(3255590,1748,2,'actor',NULL,'[\"Sheriff Bob Fuller\"]'),(3255590,2093766,3,'actor',NULL,'[\"Eric Norris\"]'),(3255590,729256,4,'actor',NULL,'[\"Vicente Santos\"]'),(3255590,847859,5,'director',NULL,NULL),(3255590,6033035,6,'writer',NULL,NULL),(3255590,577647,7,'writer',NULL,NULL),(3255590,703910,8,'producer','producer',NULL),(3255590,501999,9,'composer',NULL,NULL),(3257692,1987792,10,'editor',NULL,NULL),(3257692,2270016,1,'actress',NULL,'[\"Hannah\"]'),(3257692,5232,2,'actress',NULL,'[\"Teagan\",\"ButterflyAna\"]'),(3257692,861361,3,'actress',NULL,'[\"Joey\"]'),(3257692,316078,4,'actor',NULL,'[\"Michael\"]'),(3257692,1301113,5,'director',NULL,NULL),(3257692,1935796,6,'producer','producer',NULL),(3257692,1085933,7,'producer','producer',NULL),(3257692,2316589,8,'composer',NULL,NULL),(3257692,3285316,9,'cinematographer',NULL,NULL),(3262342,543739,10,'composer',NULL,NULL),(3262342,3150488,1,'actor',NULL,'[\"Armand Roulin\"]'),(3262342,283492,2,'actor',NULL,'[\"Doctor Gachet\"]'),(3262342,7956813,3,'actor',NULL,'[\"Vincent van Gogh\"]'),(3262342,567031,4,'actress',NULL,'[\"Louise Chevalier\"]'),(3262342,3699790,5,'director',NULL,NULL),(3262342,1364790,6,'director',NULL,NULL),(3262342,7974908,7,'writer','written by',NULL),(3262342,7390412,8,'producer','producer',NULL),(3262342,1597847,9,'producer','producer',NULL),(3263614,645068,10,'producer','producer',NULL),(3263614,452860,1,'actress',NULL,'[\"Kumiko\"]'),(3263614,441528,2,'actor',NULL,'[\"Sakagami\"]'),(3263614,4731857,3,'actress',NULL,'[\"Michi\"]'),(3263614,3750804,4,'actor',NULL,'[\"Library Security Guard\"]'),(3263614,954655,5,'director',NULL,NULL),(3263614,954658,6,'writer','writer',NULL),(3263614,4650463,7,'producer','producer',NULL),(3263614,121724,8,'producer','producer',NULL),(3263614,2337088,9,'producer','producer',NULL),(3263732,845157,10,'editor',NULL,NULL),(3263732,6130755,1,'actor',NULL,'[\"Sebastián\"]'),(3263732,5382648,2,'actress',NULL,'[\"Laura\"]'),(3263732,3177508,3,'actress',NULL,'[\"Carmen\"]'),(3263732,811785,4,'actor',NULL,'[\"Papa\"]'),(3263732,2060292,5,'director',NULL,NULL),(3263732,2713435,6,'producer','producer',NULL),(3263732,4912682,7,'composer',NULL,NULL),(3263732,33261,8,'cinematographer',NULL,NULL),(3263732,5943532,9,'editor',NULL,NULL),(3263904,601954,10,'producer','producer',NULL),(3263904,158,1,'actor',NULL,'[\"Chesley \'Sully\' Sullenberger\"]'),(3263904,1173,2,'actor',NULL,'[\"Jeff Skiles\"]'),(3263904,1473,3,'actress',NULL,'[\"Lorrie Sullenberger\"]'),(3263904,536723,4,'actress',NULL,'[\"Diane Higgins\"]'),(3263904,142,5,'director',NULL,NULL),(3263904,464548,6,'writer','written by',NULL),(3263904,3314810,7,'writer','based on the book \"Highest Duty\" by',NULL),(3263904,5293055,8,'writer','based on the book \"Highest Duty\" by',NULL),(3263904,550881,9,'producer','producer',NULL),(3268668,1993666,10,'producer','producer',NULL),(3268668,544718,1,'actress',NULL,'[\"Ashley Smith\"]'),(3268668,654648,2,'actor',NULL,'[\"Brian Nichols\"]'),(3268668,211,3,'actress',NULL,'[\"Aunt Kim\"]'),(3268668,931324,4,'actor',NULL,'[\"Lt. John Chestnut\"]'),(3268668,417054,5,'director',NULL,NULL),(3268668,83349,6,'writer','screenplay by',NULL),(3268668,2053278,7,'writer','book \"Unlikely Angel\"',NULL),(3268668,8354080,8,'writer','book \"Unlikely Angel\"',NULL),(3268668,3690965,9,'writer',NULL,NULL),(3272066,131700,10,'cinematographer','director of photography',NULL),(3272066,413168,1,'actor',NULL,'[\"Nick Bannister\"]'),(3272066,272581,2,'actress',NULL,'[\"Mae\"]'),(3272066,628601,3,'actress',NULL,'[\"Emily \'Watts\' Sanders\"]'),(3272066,193295,4,'actor',NULL,'[\"Cyrus Boothe\"]'),(3272066,2847370,5,'director',NULL,NULL),(3272066,6894,6,'producer','producer',NULL),(3272066,634300,7,'producer','producer',NULL),(3272066,753083,8,'producer','producer',NULL),(3272066,1014697,9,'composer',NULL,NULL),(3274100,6027351,1,'director',NULL,NULL),(3278330,5644820,10,'producer','producer',NULL),(3278330,161,1,'actress',NULL,'[\"Queen of Longtrellis\"]'),(3278330,1993,2,'actor',NULL,'[\"King of Strongcliff\"]'),(3278330,429363,3,'actor',NULL,'[\"King of Highhills\"]'),(3278330,604,4,'actor',NULL,'[\"King of Longtrellis\"]'),(3278330,308520,5,'director',NULL,NULL),(3278330,16837,6,'writer','written by',NULL),(3278330,158323,7,'writer','written by',NULL),(3278330,309979,8,'writer','written by',NULL),(3278330,2228277,9,'writer','loosely based on the novel by',NULL),(3281548,6035,10,'composer',NULL,NULL),(3281548,1519680,1,'actress',NULL,'[\"Jo March\"]'),(3281548,914612,2,'actress',NULL,'[\"Meg March\"]'),(3281548,6073955,3,'actress',NULL,'[\"Amy March\"]'),(3281548,7340546,4,'actress',NULL,'[\"Beth March\"]'),(3281548,1950086,5,'director',NULL,NULL),(3281548,17301,6,'writer','based on the novel by',NULL),(3281548,224145,7,'producer','producer',NULL),(3281548,1166871,8,'producer','producer',NULL),(3281548,842523,9,'producer','producer',NULL),(3283556,2072976,10,'producer','producer',NULL),(3283556,3743833,1,'actor',NULL,'[\"Mitch\"]'),(3283556,1435269,2,'actor',NULL,'[\"Colin\"]'),(3283556,6071354,3,'actor',NULL,'[\"Rental Car Employee\"]'),(3283556,4955813,4,'actress',NULL,'[\"Hotel Restaurant Waitress\"]'),(3283556,1369800,5,'director',NULL,NULL),(3283556,1387503,6,'director',NULL,NULL),(3283556,421126,7,'producer','producer',NULL),(3283556,10731247,8,'producer','producer',NULL),(3283556,1545197,9,'producer','producer',NULL),(3284618,549516,10,'editor',NULL,NULL),(3284618,157098,1,'actress',NULL,'[\"Matilde\"]'),(3284618,408234,2,'actress',NULL,'[\"Giuliana\"]'),(3284618,2594938,3,'actress',NULL,'[\"Teresa\"]'),(3284618,350125,4,'actress',NULL,'[\"Frida\"]'),(3284618,3466764,5,'director',NULL,NULL),(3284618,116511,6,'writer','story',NULL),(3284618,524669,7,'producer','producer',NULL),(3284618,3792499,8,'composer','music composer',NULL),(3284618,6582,9,'cinematographer',NULL,NULL),(3286052,1865648,10,'producer','producer',NULL),(3286052,731075,1,'actress',NULL,'[\"Joan\"]'),(3286052,2215143,2,'actress',NULL,'[\"Kat\"]'),(3286052,2377903,3,'actress',NULL,'[\"Rose\"]'),(3286052,1664,4,'actor',NULL,'[\"Bill\"]'),(3286052,674020,5,'director',NULL,NULL),(3286052,1052162,6,'producer','producer',NULL),(3286052,81133,7,'producer','producer',NULL),(3286052,5187480,8,'producer','producer',NULL),(3286052,11749748,9,'producer','producer',NULL),(3289712,307147,10,'editor',NULL,NULL),(3289712,1337,1,'actress',NULL,'[\"Jenny\"]'),(3289712,929489,2,'actor',NULL,'[\"Eddie\"]'),(3289712,256599,3,'actress',NULL,'[\"Rose\"]'),(3289712,3501146,4,'actress',NULL,'[\"Anne\"]'),(3289712,232858,5,'director',NULL,NULL),(3289712,505601,6,'producer','producer',NULL),(3289712,543339,7,'producer','producer',NULL),(3289712,1725223,8,'composer',NULL,NULL),(3289712,862946,9,'cinematographer','director of photography',NULL),(3289724,6293,10,'composer',NULL,NULL),(3289724,136797,1,'actor',NULL,'[\"Mark Hogancamp\",\"Cap\'n Hogie\"]'),(3289724,1571804,2,'actor',NULL,'[\"Captain Topf\",\"Louis\"]'),(3289724,641610,3,'actor',NULL,'[\"Lieutenant Benz\",\"Carl\"]'),(3289724,5775621,4,'actor',NULL,'[\"Rudolph\",\"Rudy\"]'),(3289724,709,5,'director',NULL,NULL),(3289724,3031,6,'writer','screenplay by',NULL),(3289724,552070,7,'producer','producer',NULL),(3289724,710759,8,'producer','producer',NULL),(3289724,823330,9,'producer','producer',NULL),(3289728,769644,10,'producer','producer',NULL),(3289728,396558,1,'actor',NULL,'[\"Silas\"]'),(3289728,829576,2,'actress',NULL,'[\"Nia\"]'),(3289728,520224,3,'actress',NULL,'[\"Woman at Turnstile\"]'),(3289728,493013,4,'actor',NULL,'[\"Mark\"]'),(3289728,2035886,5,'director',NULL,NULL),(3289728,2914162,6,'writer','screenplay by',NULL),(3289728,226505,7,'producer','producer',NULL),(3289728,2165590,8,'producer','producer',NULL),(3289728,747742,9,'producer','producer',NULL),(3289956,1201715,10,'producer','producer',NULL),(3289956,4051,1,'actor',NULL,'[\"Tommy\"]'),(3289956,386472,2,'actor',NULL,'[\"Austin\"]'),(3289956,1166041,3,'actress',NULL,'[\"Emma\"]'),(3289956,568385,4,'actor',NULL,'[\"Sheriff Burke\"]'),(3289956,4217,5,'director',NULL,NULL),(3289956,1968372,6,'writer','written by',NULL),(3289956,3915456,7,'writer','written by',NULL),(3289956,1989734,8,'producer','producer',NULL),(3289956,1757754,9,'producer','producer',NULL),(3291148,1564536,10,'production_designer',NULL,NULL),(3291148,386472,1,'actor',NULL,'[\"Dean\"]'),(3291148,1064292,2,'actor',NULL,'[\"Jim\"]'),(3291148,428765,3,'actor',NULL,'[\"Donald\"]'),(3291148,364348,4,'actor',NULL,'[\"Headmaster\"]'),(3291148,60765,5,'producer','producer',NULL),(3291148,112702,6,'producer','producer',NULL),(3291148,697048,7,'composer',NULL,NULL),(3291148,831013,8,'cinematographer',NULL,NULL),(3291148,1647070,9,'editor',NULL,NULL),(3294200,943527,10,'editor','film editor',NULL),(3294200,668845,1,'actress',NULL,'[\"Eileen Lamont\"]'),(3294200,3586035,2,'actress',NULL,'[\"Lydia Lamont\"]'),(3294200,6073955,3,'actress',NULL,'[\"Abbie Mortimer\"]'),(3294200,5591592,4,'actress',NULL,'[\"Susan\"]'),(3294200,1345246,5,'director',NULL,NULL),(3294200,1345765,6,'producer','producer',NULL),(3294200,736312,7,'producer','producer',NULL),(3294200,861305,8,'composer',NULL,NULL),(3294200,323707,9,'cinematographer','director of photography',NULL),(3294746,44411,10,'cinematographer',NULL,NULL),(3294746,285,1,'actor',NULL,'[\"Detective Bill Ramstead\"]'),(3294746,2279940,2,'actress',NULL,'[\"Angela\"]'),(3294746,389,3,'actor',NULL,'[\"Stuart Goodson\"]'),(3294746,540441,4,'actress',NULL,'[\"Myra\"]'),(3294746,3078006,5,'producer','producer',NULL),(3294746,630615,6,'producer','producer',NULL),(3294746,5744805,7,'producer','producer',NULL),(3294746,61045,8,'composer',NULL,NULL),(3294746,3341997,9,'composer',NULL,NULL),(3296658,2629091,10,'production_designer',NULL,NULL),(3296658,797610,1,'actor',NULL,'[\"Gummi\"]'),(3296658,433763,2,'actor',NULL,'[\"Kiddi\"]'),(3296658,100628,3,'actress',NULL,'[\"Katrin\"]'),(3296658,8197361,4,'actor',NULL,'[\"Runólfur\"]'),(3296658,1963886,5,'director',NULL,NULL),(3296658,3060115,6,'producer','producer',NULL),(3296658,651414,7,'composer',NULL,NULL),(3296658,3163889,8,'cinematographer',NULL,NULL),(3296658,2661293,9,'editor',NULL,NULL),(3296908,4347,10,'producer','producer',NULL),(3296908,164809,1,'actor',NULL,'[\"Reinhard Heydrich\"]'),(3296908,683253,2,'actress',NULL,'[\"Lina Von Osten\"]'),(3296908,1925239,3,'actor',NULL,'[\"Jan Kubis\"]'),(3296908,2930503,4,'actor',NULL,'[\"Jozef Gabcík\"]'),(3296908,1473428,5,'director',NULL,NULL),(3296908,4753929,6,'writer','based on the novel by',NULL),(3296908,1016333,7,'writer','screenplay by',NULL),(3296908,1604976,8,'writer','screenplay by',NULL),(3296908,3259054,9,'producer','producer',NULL),(3298820,85312,1,'actor',NULL,'[\"Dethklok\'s Original Manager\",\"Fat Fan\"]'),(3298820,105011,2,'actor',NULL,'[\"General Crozier\"]'),(3298820,2102798,3,'actor',NULL,'[\"The Man with the Silver Face\"]'),(3298820,434,4,'actor',NULL,'[\"Mr. Salacia\",\"Senator Stampingston\"]'),(3298820,1033955,5,'director',NULL,NULL),(3298820,224366,6,'writer','story',NULL),(3298820,806430,7,'writer','written by',NULL),(3298820,2403279,8,'producer','producer',NULL),(3298820,2475067,9,'editor',NULL,NULL),(3303652,1315333,10,'cinematographer',NULL,NULL),(3303652,167342,1,'actress',NULL,'[\"Adult Amy\"]'),(3303652,3237897,2,'actor',NULL,'[\"Victor\"]'),(3303652,629634,3,'actor',NULL,'[\"Hal\"]'),(3303652,281693,4,'actress',NULL,'[\"Val\"]'),(3303652,123661,5,'director',NULL,NULL),(3303652,6057203,6,'writer','writer',NULL),(3303652,114177,7,'producer','producer',NULL),(3303652,6057204,8,'producer','producer',NULL),(3303652,3387157,9,'composer',NULL,NULL),(3306776,3255193,10,'producer','producer',NULL),(3306776,848968,1,'actress',NULL,'[\"Bayonetta\"]'),(3306776,1840747,2,'actress',NULL,'[\"Jeanne\"]'),(3306776,1328076,3,'actress',NULL,'[\"Cereza\"]'),(3306776,620657,4,'actor',NULL,'[\"Luka\"]'),(3306776,1590302,5,'director',NULL,NULL),(3306776,3029810,6,'writer','written by',NULL),(3306776,1400430,7,'writer','character',NULL),(3306776,2473426,8,'writer','character',NULL),(3306776,3615904,9,'producer','producer',NULL),(3307774,2989608,10,'editor',NULL,NULL),(3307774,4288936,1,'actor',NULL,'[\"Cameron\"]'),(3307774,5363540,2,'actress',NULL,'[\"Kelly\"]'),(3307774,3115641,3,'actor',NULL,'[\"Zack\"]'),(3307774,3062739,4,'actress',NULL,'[\"Melanie\"]'),(3307774,1043852,5,'director',NULL,NULL),(3307774,2603621,6,'writer','screenplay',NULL),(3307774,490375,7,'producer','producer',NULL),(3307774,725808,8,'composer',NULL,NULL),(3307774,1149785,9,'cinematographer',NULL,NULL),(3312830,81723,10,'cinematographer','director of photography',NULL),(3312830,323,1,'actor',NULL,'[\"Fred Ballinger\"]'),(3312830,172,2,'actor',NULL,'[\"Mick Boyle\"]'),(3312830,1838,3,'actress',NULL,'[\"Lena Ballinger\"]'),(3312830,404,4,'actress',NULL,'[\"Brenda Morel\"]'),(3312830,815204,5,'director',NULL,NULL),(3312830,3302333,6,'producer','producer',NULL),(3312830,162317,7,'producer','producer',NULL),(3312830,321333,8,'producer','producer',NULL),(3312830,1012893,9,'composer',NULL,NULL),(3315342,918083,10,'writer','based on the character created by',NULL),(3315342,413168,1,'actor',NULL,'[\"Logan\",\"X-24\"]'),(3315342,1772,2,'actor',NULL,'[\"Charles\"]'),(3315342,6748436,3,'actress',NULL,'[\"Laura\"]'),(3315342,2933542,4,'actor',NULL,'[\"Pierce\"]'),(3315342,3506,5,'director',NULL,NULL),(3315342,291082,6,'writer','screenplay by',NULL),(3315342,338169,7,'writer','screenplay by',NULL),(3315342,739661,8,'writer','based on the character created by',NULL),(3315342,859471,9,'writer','based on the character created by',NULL),(3316948,2250407,10,'producer','producer',NULL),(3316948,251986,1,'actor',NULL,'[\"Mike Howell\"]'),(3316948,829576,2,'actress',NULL,'[\"Phoebe Larson\"]'),(3316948,110168,3,'actress',NULL,'[\"Victoria Lasseter\"]'),(3316948,491,4,'actor',NULL,'[\"Rose\"]'),(3316948,1294036,5,'director',NULL,NULL),(3316948,484840,6,'writer','written by',NULL),(3316948,2221121,7,'producer','producer',NULL),(3316948,106835,8,'producer','producer',NULL),(3316948,289694,9,'producer','producer',NULL),(3316960,3053132,10,'producer','producer',NULL),(3316960,194,1,'actress',NULL,'[\"Alice Howland\"]'),(3316960,285,2,'actor',NULL,'[\"Dr. John Howland\"]'),(3316960,829576,3,'actress',NULL,'[\"Lydia Howland\"]'),(3316960,98378,4,'actress',NULL,'[\"Anna Howland-Jones\"]'),(3316960,322144,5,'director',NULL,NULL),(3316960,922903,6,'director',NULL,NULL),(3316960,5581694,7,'writer','novel',NULL),(3316960,4065767,8,'producer','producer',NULL),(3316960,463025,9,'producer','producer',NULL),(3318220,887508,10,'producer','producer',NULL),(3318220,4714014,1,'actor',NULL,'[\"Sieger\"]'),(3318220,4531861,2,'actor',NULL,'[\"Marc\"]'),(3318220,4724525,3,'actor',NULL,'[\"Eddy\"]'),(3318220,440368,4,'actor',NULL,'[\"Theo\"]'),(3318220,436899,5,'director',NULL,NULL),(3318220,1680438,6,'writer','screenplay',NULL),(3318220,4106718,7,'writer','screenplay',NULL),(3318220,474233,8,'producer','producer',NULL),(3318220,1077598,9,'producer','producer',NULL),(3319018,721707,10,'editor',NULL,NULL),(3319018,2121541,1,'actress',NULL,'[\"Emily\"]'),(3319018,4716683,2,'actor',NULL,'[\"Arden\"]'),(3319018,806968,3,'actor',NULL,'[\"Robert\"]'),(3319018,3133298,4,'actress',NULL,'[\"Emily\'s Mother\"]'),(3319018,1729102,5,'director',NULL,NULL),(3319018,2393891,6,'producer','producer',NULL),(3319018,571775,7,'producer','producer',NULL),(3319018,571642,8,'composer',NULL,NULL),(3319018,213239,9,'cinematographer',NULL,NULL),(3321254,460710,10,'composer',NULL,NULL),(3321254,792198,1,'actress',NULL,'[\"Barbie\"]'),(3321254,2831024,2,'actress',NULL,'[\"Skipper\"]'),(3321254,2805467,3,'actress',NULL,'[\"Stacie\"]'),(3321254,4734845,4,'actress',NULL,'[\"Chelsea\"]'),(3321254,1416001,5,'director',NULL,NULL),(3321254,1618217,6,'writer','written by',NULL),(3321254,334671,7,'writer','written by',NULL),(3321254,1247154,8,'producer','producer',NULL),(3321254,1901341,9,'producer','producer',NULL),(3322314,429171,10,'actor',NULL,'[\"Bobby Fish\"]'),(3322314,1591496,1,'actor',NULL,'[\"Luke Cage\"]'),(3322314,1395855,2,'actress',NULL,'[\"Misty Knight\"]'),(3322314,744331,3,'actor',NULL,'[\"Hernan \'Shades\' Alvarez\"]'),(3322314,5569,4,'actress',NULL,'[\"Mariah Dillard\"]'),(3322314,1854539,5,'writer','created by',NULL),(3322314,2475803,6,'actor',NULL,'[\"Detective Mark Bailey\"]'),(3322314,2548468,7,'actor',NULL,'[\"Sugar\"]'),(3322314,6525603,8,'actor',NULL,'[\"Alex Wesley\"]'),(3322314,3204288,9,'actress',NULL,'[\"Inspector Priscilla Ridley\",\"Deputy Chief Priscilla Ridley\"]'),(3322364,795834,10,'producer','producer',NULL),(3322364,226,1,'actor',NULL,'[\"Dr. Bennet Omalu\"]'),(3322364,285,2,'actor',NULL,'[\"Dr. Julian Bailes\"]'),(3322364,983,3,'actor',NULL,'[\"Dr. Cyril Wecht\"]'),(3322364,1556,4,'actor',NULL,'[\"Mike Webster\"]'),(3322364,1481618,5,'director',NULL,NULL),(3322364,6543415,6,'writer','based on the GQ article \"Game Brain\" by',NULL),(3322364,134578,7,'producer','producer',NULL),(3322364,264857,8,'producer','producer',NULL),(3322364,631,9,'producer','producer',NULL),(3322420,440604,10,'producer','producer',NULL),(3322420,2144007,1,'actress',NULL,'[\"Rani (Queen)\"]'),(3322420,3822770,2,'actor',NULL,'[\"Vijay\"]'),(3322420,3629863,3,'actress',NULL,'[\"Vijayalakshmi\"]'),(3322420,7832790,4,'actor',NULL,'[\"Taka\"]'),(3322420,2134474,5,'director',NULL,NULL),(3322420,3212517,6,'writer','story and screenplay',NULL),(3322420,5151578,7,'writer','story and screenplay',NULL),(3322420,2101751,8,'writer','dialogue',NULL),(3322420,6372520,9,'producer','producer',NULL),(3322940,460770,10,'cinematographer','director of photography',NULL),(3322940,1782235,1,'actor',NULL,'[\"John\"]'),(3322940,1834115,2,'actress',NULL,'[\"Mia\"]'),(3322940,5569,3,'actress',NULL,'[\"Evelyn\"]'),(3322940,24593,4,'actor',NULL,'[\"Father Perez\"]'),(3322940,502954,5,'director',NULL,NULL),(3322940,2477891,6,'writer','written by',NULL),(3322940,755911,7,'producer','producer',NULL),(3322940,1490123,8,'producer','producer',NULL),(3322940,1177766,9,'composer',NULL,NULL),(3328716,587184,10,'producer','producer',NULL),(3328716,941777,1,'actor',NULL,'[\"Jack\"]'),(3328716,4590837,2,'actor',NULL,'[\"Dylan\"]'),(3328716,537648,3,'actress',NULL,'[\"Maureen\"]'),(3328716,6537560,4,'actress',NULL,'[\"Kimi\"]'),(3328716,175352,5,'director',NULL,NULL),(3328716,941489,6,'writer','screenplay by',NULL),(3328716,6537765,7,'writer','inspired by',NULL),(3328716,6537766,8,'writer','inspired by',NULL),(3328716,2782306,9,'producer','producer',NULL),(3332064,916986,10,'producer','producer',NULL),(3332064,5920962,1,'actor',NULL,'[\"Peter\"]'),(3332064,413168,2,'actor',NULL,'[\"Blackbeard\"]'),(3332064,1330560,3,'actor',NULL,'[\"Hook\"]'),(3332064,1913734,4,'actress',NULL,'[\"Tiger Lily\"]'),(3332064,942504,5,'director',NULL,NULL),(3332064,297229,6,'writer','written by',NULL),(3332064,57381,7,'writer','based on characters introduced by',NULL),(3332064,75528,8,'producer','producer',NULL),(3332064,1150863,9,'producer','producer',NULL),(3334794,1301265,10,'editor',NULL,NULL),(3334794,3672175,1,'actress',NULL,'[\"Charleen\"]'),(3334794,538443,2,'actress',NULL,'[\"Sabine\"]'),(3334794,1579219,3,'actor',NULL,'[\"Jeff\"]'),(3334794,777649,4,'actor',NULL,'[\"Volker\"]'),(3334794,1103518,5,'director',NULL,NULL),(3334794,2058345,6,'writer','writer',NULL),(3334794,2009281,7,'composer',NULL,NULL),(3334794,778163,8,'cinematographer',NULL,NULL),(3334794,1770781,9,'editor',NULL,NULL),(3335606,1718181,10,'cinematographer',NULL,NULL),(3335606,1954240,1,'actress',NULL,'[\"Clare Havel\"]'),(3335606,726262,2,'actor',NULL,'[\"Andi Werner\"]'),(3335606,352278,3,'actor',NULL,'[\"Erich Werner\"]'),(3335606,4750182,4,'actress',NULL,'[\"Franka Hummels\"]'),(3335606,795153,5,'director',NULL,NULL),(3335606,3961014,6,'writer','screenplay',NULL),(3335606,6090597,7,'writer','novel',NULL),(3335606,1893077,8,'producer','producer',NULL),(3335606,1245217,9,'composer',NULL,NULL),(3344922,3607,10,'composer',NULL,NULL),(3344922,3485845,1,'actor',NULL,'[\"Jude\"]'),(3344922,2130040,2,'actress',NULL,'[\"Mina\"]'),(3344922,561809,3,'actress',NULL,'[\"Anne\"]'),(3344922,8996867,4,'actor',NULL,'[\"Baby\"]'),(3344922,182459,5,'director',NULL,NULL),(3344922,291909,6,'writer','novel',NULL),(3344922,581038,7,'writer','English adaptation',NULL),(3344922,1713233,8,'producer','producer',NULL),(3344922,585747,9,'producer','producer',NULL),(3348476,6103119,1,'actor',NULL,'[\"David\"]'),(3348476,4413036,2,'actor',NULL,'[\"Niels\"]'),(3348476,4516917,3,'actress',NULL,'[\"Stella\"]'),(3348476,3949757,4,'actor',NULL,'[\"Tim\"]'),(3348476,4138657,5,'director',NULL,NULL),(3348476,4140262,6,'director',NULL,NULL),(3348476,1174229,7,'cinematographer',NULL,NULL),(3348476,2673333,8,'editor',NULL,NULL),(3348730,388898,10,'producer','producer',NULL),(3348730,1432956,1,'actor',NULL,'[\"Logan Nelson\"]'),(3348730,68551,2,'actor',NULL,'[\"Jigsaw\",\"John Kramer\"]'),(3348730,719678,3,'actor',NULL,'[\"Detective Halloran\"]'),(3348730,5557932,4,'actress',NULL,'[\"Eleanor Bonneville\"]'),(3348730,1294961,5,'director',NULL,NULL),(3348730,1294962,6,'director',NULL,NULL),(3348730,831457,7,'writer','written by',NULL),(3348730,1539257,8,'writer','written by',NULL),(3348730,121117,9,'producer','producer',NULL),(3352390,2528358,10,'composer',NULL,NULL),(3352390,1486317,1,'actress',NULL,'[\"Laura\"]'),(3352390,608440,2,'actor',NULL,'[\"Tyler\"]'),(3352390,1269733,3,'actor',NULL,'[\"Kobe\"]'),(3352390,2694584,4,'actress',NULL,'[\"Olivia\"]'),(3352390,894207,5,'director',NULL,NULL),(3352390,50722,6,'writer','written by',NULL),(3352390,2279441,7,'writer','written by',NULL),(3352390,73875,8,'producer','producer',NULL),(3352390,927270,9,'producer','producer',NULL),(3361792,858123,10,'producer','producer',NULL),(3361792,396558,1,'actor',NULL,'[\"J.R.R. Tolkien\"]'),(3361792,2934314,2,'actress',NULL,'[\"Edith Bratt\"]'),(3361792,538,3,'actor',NULL,'[\"Father Francis\"]'),(3361792,1394,4,'actor',NULL,'[\"Professor Wright\"]'),(3361792,1933648,5,'director',NULL,NULL),(3361792,1216554,6,'writer','written by',NULL),(3361792,73571,7,'writer','written by',NULL),(3361792,1858656,8,'producer','producer',NULL),(3361792,2819401,9,'producer','producer',NULL),(3365778,1062814,10,'cinematographer',NULL,NULL),(3365778,1754147,1,'actress',NULL,'[\"Charlie\"]'),(3365778,3650704,2,'actress',NULL,'[\"Sarah\"]'),(3365778,141140,3,'actress',NULL,'[\"Vanessa - la mère de Charlie\"]'),(3365778,445102,4,'actress',NULL,'[\"Laura\"]'),(3365778,491259,5,'director',NULL,NULL),(3365778,4952582,6,'writer','novel',NULL),(3365778,483451,7,'writer','screenplay',NULL),(3365778,506357,8,'producer','producer',NULL),(3365778,1384440,9,'composer',NULL,NULL),(3368222,605513,10,'composer',NULL,NULL),(3368222,4199026,1,'actress',NULL,'[\"Joanna Mendes \'Jo\'\"]'),(3368222,5423482,2,'actress',NULL,'[\"Laxmi Gaude\"]'),(3368222,6120325,3,'actress',NULL,'[\"Pamela Jaiswal \'Pammi\'\"]'),(3368222,2821699,4,'actress',NULL,'[\"Madhurita Kumar \'Mad\'\"]'),(3368222,659023,5,'director',NULL,NULL),(3368222,2987926,6,'writer',NULL,NULL),(3368222,788157,7,'writer',NULL,NULL),(3368222,3977264,8,'writer','co-writer',NULL),(3368222,1809308,9,'producer','producer',NULL),(3368814,101096,10,'composer',NULL,NULL),(3368814,2566697,1,'actress',NULL,'[\"Callie Ross\"]'),(3368814,828906,2,'actress',NULL,'[\"Emma Granger\"]'),(3368814,608632,3,'actor',NULL,'[\"George Ross\"]'),(3368814,2477204,4,'actor',NULL,'[\"Jake Watkins\"]'),(3368814,186733,5,'director',NULL,NULL),(3368814,1113827,6,'writer','story by',NULL),(3368814,351772,7,'writer','screenplay by',NULL),(3368814,1688447,8,'producer','producer',NULL),(3368814,937304,9,'producer','producer',NULL),(3369806,194356,10,'cinematographer',NULL,NULL),(3369806,2006,1,'actor',NULL,'[\"Ray Wincott\"]'),(3369806,5946818,2,'actor',NULL,'[\"Justin Wincott\"]'),(3369806,3312554,3,'actor',NULL,'[\"Tyler Harne\"]'),(3369806,334179,4,'actress',NULL,'[\"Pamela Wincott\"]'),(3369806,945026,5,'director',NULL,NULL),(3369806,504802,6,'writer','written by',NULL),(3369806,86998,7,'producer','producer',NULL),(3369806,1651942,8,'producer','producer',NULL),(3369806,704909,9,'composer',NULL,NULL),(3371366,117290,10,'producer','producer',NULL),(3371366,242,1,'actor',NULL,'[\"Cade Yeager\"]'),(3371366,164,2,'actor',NULL,'[\"Sir Edmund Burton\"]'),(3371366,241049,3,'actor',NULL,'[\"Colonel William Lennox\"]'),(3371366,2652095,4,'actress',NULL,'[\"Vivian Wembly\"]'),(3371366,881,5,'director',NULL,NULL),(3371366,1436466,6,'writer','screenplay by',NULL),(3371366,391344,7,'writer','screenplay by',NULL),(3371366,634307,8,'writer','screenplay by',NULL),(3371366,326040,9,'writer','story by',NULL),(3381008,1288503,10,'producer','producer',NULL),(3381008,56187,1,'actor',NULL,'[\"Nobby\"]'),(3381008,835016,2,'actor',NULL,'[\"Sebastian Graves\"]'),(3381008,2313103,3,'actress',NULL,'[\"Dawn Grobham\"]'),(3381008,7534357,4,'actor',NULL,'[\"Tsunami\"]'),(3381008,504642,5,'director',NULL,NULL),(3381008,1601882,6,'writer','story by',NULL),(3381008,63165,7,'writer','screenplay by',NULL),(3381008,385630,8,'producer','producer',NULL),(3381008,661912,9,'producer','producer',NULL),(3385516,498278,10,'writer','based on characters created by',NULL),(3385516,564215,1,'actor',NULL,'[\"Professor Charles Xavier\"]'),(3385516,1055413,2,'actor',NULL,'[\"Erik Lehnsherr\",\"Magneto\"]'),(3385516,2225369,3,'actress',NULL,'[\"Raven\",\"Mystique\"]'),(3385516,396558,4,'actor',NULL,'[\"Hank McCoy\",\"Beast\"]'),(3385516,1741,5,'director',NULL,NULL),(3385516,1334526,6,'writer','screenplay by',NULL),(3385516,1002424,7,'writer','story by',NULL),(3385516,3529,8,'writer','story by',NULL),(3385516,456158,9,'writer','based on characters created by',NULL),(3385524,1124802,10,'cinematographer','director of photography',NULL),(3385524,176869,1,'actor',NULL,'[\"Stan Laurel\"]'),(3385524,604,2,'actor',NULL,'[\"Oliver Hardy\"]'),(3385524,376602,3,'actress',NULL,'[\"Lucille Hardy\"]'),(3385524,3616206,4,'actress',NULL,'[\"Ida Kitaeva Laurel\"]'),(3385524,1580671,5,'director',NULL,NULL),(3385524,691131,6,'writer','written by',NULL),(3385524,10554376,7,'writer','inspired by the book \'Laurel & Hardy - The British Tours\' by',NULL),(3385524,1952700,8,'producer','producer',NULL),(3385524,448843,9,'composer',NULL,NULL),(3386954,519558,10,'cinematographer',NULL,NULL),(3386954,5093,1,'actress',NULL,'[\"Natalie Hawkins\"]'),(3386954,1944254,2,'actress',NULL,'[\"Gabby 14-16 Years\"]'),(3386954,4273524,3,'actress',NULL,'[\"Gabby 7-12 Years\"]'),(3386954,974575,4,'actor',NULL,'[\"Liang Chow\"]'),(3386954,150707,5,'director',NULL,NULL),(3386954,622329,6,'writer','teleplay',NULL),(3386954,27463,7,'writer','story',NULL),(3386954,741889,8,'producer','producer',NULL),(3386954,242084,9,'composer',NULL,NULL),(3387266,381413,10,'producer','producer',NULL),(3387266,654648,1,'actor',NULL,'[\"Seretse Khama\"]'),(3387266,683253,2,'actress',NULL,'[\"Ruth Williams\"]'),(3387266,271657,3,'actor',NULL,'[\"Rufus Lancaster\"]'),(3387266,202603,4,'actor',NULL,'[\"Sir Alistair Canning\"]'),(3387266,1392994,5,'director',NULL,NULL),(3387266,382505,6,'writer','screenplay by',NULL),(3387266,8815175,7,'writer','based upon the book \'Colour Bar\' by',NULL),(3387266,10089754,8,'producer','producer',NULL),(3387266,337676,9,'producer','producer',NULL),(3387520,1729303,10,'writer','screen story by',NULL),(3387520,2292661,1,'actress',NULL,'[\"Stella Nicholls\"]'),(3387520,3585613,2,'actor',NULL,'[\"Ramon Morales\"]'),(3387520,3513522,3,'actor',NULL,'[\"Auggie Hilderbrandt\"]'),(3387520,3641002,4,'actor',NULL,'[\"Tommy Milner\"]'),(3387520,4217,5,'director',NULL,NULL),(3387520,1087952,6,'writer','screenplay by',NULL),(3387520,1156984,7,'writer','screenplay by',NULL),(3387520,868219,8,'writer','screen story by',NULL),(3387520,1733317,9,'writer','screen story by',NULL),(3387542,511482,10,'producer','producer',NULL),(3387542,1754059,1,'actress',NULL,'[\"Sara\",\"Jess Price\"]'),(3387542,2151126,2,'actor',NULL,'[\"Rob\"]'),(3387542,901110,3,'actress',NULL,'[\"Valerie\"]'),(3387542,3852131,4,'actor',NULL,'[\"Homeless Man\"]'),(3387542,4941030,5,'director',NULL,NULL),(3387542,2406892,6,'writer','writer',NULL),(3387542,180506,7,'writer','writer',NULL),(3387542,4528537,8,'writer','writer',NULL),(3387542,275286,9,'producer','producer',NULL),(3387648,1030152,10,'cinematographer',NULL,NULL),(3387648,489010,1,'actress',NULL,'[\"Deborah Logan\"]'),(3387648,708867,2,'actress',NULL,'[\"Sarah Logan\"]'),(3387648,29391,3,'actress',NULL,'[\"Mia Medina\"]'),(3387648,1654820,4,'actor',NULL,'[\"Gavin\"]'),(3387648,733263,5,'director',NULL,NULL),(3387648,1134130,6,'writer','written by',NULL),(3387648,723450,7,'producer','producer',NULL),(3387648,1741,8,'producer','producer',NULL),(3387648,3214738,9,'composer',NULL,NULL),(3390572,1210799,10,'editor',NULL,NULL),(3390572,1372788,1,'actor',NULL,'[\"Haider Meer\"]'),(3390572,7102,2,'actress',NULL,'[\"Ghazala Meer\"]'),(3390572,3601766,3,'actress',NULL,'[\"Arshia\"]'),(3390572,1946407,4,'actor',NULL,'[\"Khurram Meer\"]'),(3390572,80235,5,'director',NULL,NULL),(3390572,636,6,'writer','based on the play \"Hamlet\" by',NULL),(3390572,5470025,7,'writer','screenplay',NULL),(3390572,3032965,8,'producer','producer',NULL),(3390572,2803251,9,'cinematographer',NULL,NULL),(3391348,3598782,10,'composer',NULL,NULL),(3391348,6139440,1,'actress',NULL,'[\"Emily\"]'),(3391348,6139439,2,'actress',NULL,'[\"Jackie\"]'),(3391348,4435492,3,'actress',NULL,'[\"Selena\"]'),(3391348,528761,4,'actress',NULL,'[\"Aquarium Docent\"]'),(3391348,308233,5,'director',NULL,NULL),(3391348,6139441,6,'writer',NULL,NULL),(3391348,1209438,7,'producer','producer',NULL),(3391348,2030179,8,'producer','producer',NULL),(3391348,693531,9,'producer','executive producer',NULL),(3393786,3160,10,'producer','producer',NULL),(3393786,129,1,'actor',NULL,'[\"Jack Reacher\"]'),(3393786,1130627,2,'actress',NULL,'[\"Turner\"]'),(3393786,388038,3,'actor',NULL,'[\"Espin\"]'),(3393786,460694,4,'actor',NULL,'[\"Gen. Harkness\"]'),(3393786,1880,5,'director',NULL,NULL),(3393786,921013,6,'writer','screenplay',NULL),(3393786,380980,7,'writer','screenplay',NULL),(3393786,1676193,8,'writer','book \"Never Go Back\"',NULL),(3393786,1447370,9,'producer','producer',NULL),(3395184,3848514,10,'editor',NULL,NULL),(3395184,1086384,1,'actor',NULL,'[\"Evan\"]'),(3395184,3758734,2,'actress',NULL,'[\"Louise\"]'),(3395184,138700,3,'actor',NULL,'[\"Angelo\"]'),(3395184,2339680,4,'actor',NULL,'[\"Thomas\"]'),(3395184,1918140,5,'director',NULL,NULL),(3395184,1823264,6,'director',NULL,NULL),(3395184,2472482,7,'producer','producer',NULL),(3395184,1550279,8,'composer',NULL,NULL),(3395184,3488167,9,'editor',NULL,NULL),(3397082,469329,10,'production_designer',NULL,NULL),(3397082,771713,1,'actor',NULL,'[\"Robert Rother\"]'),(3397082,643806,2,'actor',NULL,'[\"Schwarz\"]'),(3397082,2163092,3,'actress',NULL,'[\"Sanja\"]'),(3397082,1035643,4,'actor',NULL,'[\"Gries\"]'),(3397082,753912,5,'director',NULL,NULL),(3397082,36155,6,'producer','producer',NULL),(3397082,865427,7,'composer',NULL,NULL),(3397082,466962,8,'cinematographer',NULL,NULL),(3397082,10574,9,'editor',NULL,NULL),(3397884,568093,10,'producer','producer',NULL),(3397884,1289434,1,'actress',NULL,'[\"Kate Macer\"]'),(3397884,982,2,'actor',NULL,'[\"Matt Graver\"]'),(3397884,1125,3,'actor',NULL,'[\"Alejandro\"]'),(3397884,1256532,4,'actor',NULL,'[\"Ted\"]'),(3397884,898288,5,'director',NULL,NULL),(3397884,792263,6,'writer','written by',NULL),(3397884,412588,7,'producer','producer',NULL),(3397884,524745,8,'producer','producer',NULL),(3397884,2590720,9,'producer','producer',NULL),(3397918,1537113,10,'composer',NULL,NULL),(3397918,448,1,'actor',NULL,'[\"Graff\"]'),(3397918,3499098,2,'actress',NULL,'[\"Sadie\"]'),(3397918,935616,3,'actor',NULL,'[\"Stephen\"]'),(3397918,1755213,4,'actor',NULL,'[\"Bowman\"]'),(3397918,319266,5,'director',NULL,NULL),(3397918,3172356,6,'producer','producer',NULL),(3397918,780166,7,'producer','producer',NULL),(3397918,876611,8,'producer','producer',NULL),(3397918,940430,9,'producer','producer',NULL),(3398268,5347659,10,'producer','producer',NULL),(3398268,3268918,1,'actress',NULL,'[\"Anna Sasaki\"]'),(3398268,4134328,2,'actress',NULL,'[\"Marnie\"]'),(3398268,559652,3,'actress',NULL,'[\"Yoriko Sasaki\"]'),(3398268,855398,4,'actor',NULL,'[\"Kiyomasa Oiwa\"]'),(3398268,948488,5,'director',NULL,NULL),(3398268,2226124,6,'writer','based on the novel by',NULL),(3398268,2146668,7,'writer','screenplay by',NULL),(3398268,27943,8,'writer','screenplay by',NULL),(3398268,2052679,9,'producer','producer',NULL),(3401882,506613,10,'producer','producer',NULL),(3401882,1084,1,'actor',NULL,'[\"Strickland\"]'),(3401882,206359,2,'actor',NULL,'[\"Andy Campbell\"]'),(3401882,605079,3,'actor',NULL,'[\"Coach Crawford\"]'),(3401882,376716,4,'actress',NULL,'[\"Ms. Monet\"]'),(3401882,7193,5,'director',NULL,NULL),(3401882,2448917,6,'writer','screenplay by',NULL),(3401882,4105248,7,'writer','screenplay by',NULL),(3401882,339011,8,'writer','story by',NULL),(3401882,2950264,9,'producer','producer',NULL),(3402236,769644,10,'producer','producer',NULL),(3402236,110,1,'actor',NULL,'[\"Hercule Poirot\"]'),(3402236,4851,2,'actress',NULL,'[\"Pilar Estravados\"]'),(3402236,353,3,'actor',NULL,'[\"Gerhard Hardman\"]'),(3402236,1132,4,'actress',NULL,'[\"Princess Dragomiroff\"]'),(3402236,338169,5,'writer','screenplay by',NULL),(3402236,2005,6,'writer','based upon the novel by',NULL),(3402236,330428,7,'producer','producer',NULL),(3402236,388788,8,'producer','producer',NULL),(3402236,1334526,9,'producer','producer',NULL),(3410834,279651,10,'producer','producer',NULL),(3410834,940362,1,'actress',NULL,'[\"Tris\"]'),(3410834,3772243,2,'actor',NULL,'[\"Four\"]'),(3410834,1099,3,'actor',NULL,'[\"David\"]'),(3410834,915208,4,'actress',NULL,'[\"Evelyn\"]'),(3410834,777881,5,'director',NULL,NULL),(3410834,3834300,6,'writer','screenplay by',NULL),(3410834,177836,7,'writer','screenplay by',NULL),(3410834,171651,8,'writer','screenplay by',NULL),(3410834,4316121,9,'writer','based on the novel \"Allegiant\" by',NULL),(3411444,452235,10,'writer','screen story by',NULL),(3411444,1078479,1,'actor',NULL,'[\"Ferdinand\"]'),(3411444,571952,2,'actress',NULL,'[\"Lupe\"]'),(3411444,134072,3,'actor',NULL,'[\"Valiente\'s Father\",\"Valiente\"]'),(3411444,5375420,4,'actor',NULL,'[\"Young Valiente\"]'),(3411444,757858,5,'director',NULL,NULL),(3411444,47916,6,'writer','screenplay by',NULL),(3411444,8758198,7,'writer','screenplay by',NULL),(3411444,178589,8,'writer','screenplay by',NULL),(3411444,120816,9,'writer','screen story by',NULL),(3416532,1260544,10,'cinematographer','director of photography',NULL),(3416532,6484968,1,'actor',NULL,'[\"Conor\"]'),(3416532,244,2,'actress',NULL,'[\"Grandma\"]'),(3416532,428065,3,'actress',NULL,'[\"Mum\"]'),(3416532,1527905,4,'actor',NULL,'[\"Dad\"]'),(3416532,1291105,5,'director',NULL,NULL),(3416532,4710432,6,'writer','screenplay by',NULL),(3416532,8435299,7,'writer','from an original idea by',NULL),(3416532,1428086,8,'producer','producer',NULL),(3416532,1302939,9,'composer',NULL,NULL),(3416742,2305414,10,'editor',NULL,NULL),(3416742,1318596,1,'actor',NULL,'[\"Vladislav\"]'),(3416742,169806,2,'actor',NULL,'[\"Viago\"]'),(3416742,1129962,3,'actor',NULL,'[\"Nick\"]'),(3416742,1591353,4,'actor',NULL,'[\"Deacon\"]'),(3416742,1639578,5,'producer','producer',NULL),(3416742,4438615,6,'producer','producer',NULL),(3416742,1453819,7,'composer',NULL,NULL),(3416742,89459,8,'cinematographer',NULL,NULL),(3416742,3090510,9,'cinematographer',NULL,NULL),(3416744,1198322,10,'producer','producer',NULL),(3416744,781981,1,'actor',NULL,'[\"David Foster Wallace\"]'),(3416744,251986,2,'actor',NULL,'[\"David Lipsky\"]'),(3416744,1043,3,'actress',NULL,'[\"Sarah\"]'),(3416744,336701,4,'actress',NULL,'[\"Julie\"]'),(3416744,1242054,5,'director',NULL,NULL),(3416744,546869,6,'writer','screenplay',NULL),(3416744,4240610,7,'writer','book \"Although of Course You End Up Becoming Yourself\"',NULL),(3416744,4676720,8,'producer','producer',NULL),(3416744,2249185,9,'producer','producer',NULL),(3416828,813289,10,'writer','story by',NULL),(3416828,5380,1,'actor',NULL,'[\"Manny\"]'),(3416828,1459,2,'actor',NULL,'[\"Diego\"]'),(3416828,491,3,'actor',NULL,'[\"Sid\"]'),(3416828,917188,4,'actor',NULL,'[\"Scrat\"]'),(3416828,862211,5,'director',NULL,NULL),(3416828,1154886,6,'director','co-director',NULL),(3416828,5022110,7,'writer','screenplay by',NULL),(3416828,73850,8,'writer','screenplay by',NULL),(3416828,3229505,9,'writer','screenplay by',NULL),(3421270,3792633,10,'cinematographer',NULL,NULL),(3421270,5692704,1,'actress',NULL,'[\"Hannah\"]'),(3421270,5742365,2,'actress',NULL,'[\"May\"]'),(3421270,6171620,3,'actress',NULL,'[\"Vivian\"]'),(3421270,424499,4,'actor',NULL,'[\"Jack\"]'),(3421270,1226129,5,'director',NULL,NULL),(3421270,6197687,6,'writer','screenplay',NULL),(3421270,490375,7,'producer','producer',NULL),(3421270,1700105,8,'composer',NULL,NULL),(3421270,725808,9,'composer',NULL,NULL),(3422078,514643,10,'writer','adaptation',NULL),(3422078,182839,1,'actress',NULL,'[\"Avril\"]'),(3422078,343082,2,'actor',NULL,'[\"Julius\"]'),(3422078,1081573,3,'actor',NULL,'[\"Darwin\"]'),(3422078,734000,4,'actor',NULL,'[\"Pops\"]'),(3422078,2903634,5,'director',NULL,NULL),(3422078,1458457,6,'director',NULL,NULL),(3422078,499429,7,'writer','screenplay by',NULL),(3422078,850361,8,'writer','original graphic creation',NULL),(3422078,131117,9,'writer','adaptation',NULL),(3427056,6177278,10,'actress',NULL,'[\"La beghina\"]'),(3427056,6177273,1,'actor',NULL,'[\"Allan\"]'),(3427056,6177274,2,'actor',NULL,'[\"Valdemar\"]'),(3427056,6177275,3,'actor',NULL,'[\"Il medico condotto\"]'),(3427056,6177276,4,'actor',NULL,'[\"Il medium\"]'),(3427056,6177272,5,'director',NULL,NULL),(3427056,1749090,6,'director',NULL,NULL),(3427056,590,7,'writer','story',NULL),(3427056,6177277,8,'actress',NULL,'[\"La suora\"]'),(3427056,2951163,9,'actress',NULL,'[\"La portinaia\"]'),(3428912,182688,10,'actor',NULL,'[\"Nevison Gallagher\"]'),(3428912,484104,1,'actress',NULL,'[\"Catherine Cawood\"]'),(3428912,278239,2,'actress',NULL,'[\"Clare Cartwright\"]'),(3428912,3584268,3,'actor',NULL,'[\"Tommy Lee Royce\"]'),(3428912,6441597,4,'actor',NULL,'[\"Ryan Cawood\"]'),(3428912,906550,5,'writer','created by',NULL),(3428912,3647676,6,'actress',NULL,'[\"Ann Gallagher\"]'),(3428912,1600132,7,'actor',NULL,'[\"Shafiq Shah\"]'),(3428912,72186,8,'actress',NULL,'[\"Joyce Metcalfe\",\"Joyce\"]'),(3428912,912012,9,'actor',NULL,'[\"Mike Taylor\"]'),(3430042,3672479,10,'production_designer',NULL,NULL),(3430042,3483467,1,'actor',NULL,'[\"Perry Frank\"]'),(3430042,800896,2,'actor',NULL,'[\"Devin Fischer\"]'),(3430042,3876660,3,'actor',NULL,'[\"Ampersand Garner\"]'),(3430042,1978534,4,'actor',NULL,'[\"Carter Watts\"]'),(3430042,3251519,5,'director',NULL,NULL),(3430042,4794657,6,'producer','producer',NULL),(3430042,6180355,7,'composer',NULL,NULL),(3430042,3742794,8,'cinematographer',NULL,NULL),(3430042,3347296,9,'editor',NULL,NULL),(3430416,212423,1,'actor',NULL,'[\"Schneider\"]'),(3430416,912334,2,'actor',NULL,'[\"Ramon Bax\"]'),(3430416,469083,3,'actress',NULL,'[\"Francisca\"]'),(3430416,78517,4,'actor',NULL,'[\"Mertens\"]'),(3430416,912337,5,'producer','producer',NULL),(3430416,259445,6,'cinematographer',NULL,NULL),(3430416,3102,7,'editor',NULL,NULL),(3431798,1117581,10,'producer','producer',NULL),(3431798,536989,1,'archive_footage',NULL,'[\"Self\"]'),(3431798,766509,2,'archive_footage',NULL,'[\"Self\"]'),(3431798,576941,3,'archive_footage',NULL,'[\"Self\"]'),(3431798,761400,4,'archive_footage',NULL,'[\"Self\"]'),(3431798,1516014,5,'director',NULL,NULL),(3431798,388293,6,'writer',NULL,NULL),(3431798,825896,7,'writer',NULL,NULL),(3431798,1928790,8,'writer',NULL,NULL),(3431798,4889497,9,'writer',NULL,NULL),(3438514,1618566,10,'composer',NULL,NULL),(3438514,2677529,1,'actress',NULL,'[\"Astraea\"]'),(3438514,2977461,2,'actress',NULL,'[\"Ikaros\"]'),(3438514,1489841,3,'actress',NULL,'[\"Mikako Satsukitane\"]'),(3438514,3584164,4,'actress',NULL,'[\"Mitsuki, Sohara\"]'),(3438514,1843517,5,'director',NULL,NULL),(3438514,12102665,6,'writer','manga',NULL),(3438514,4676366,7,'writer','screenplay',NULL),(3438514,2405043,8,'writer','screenplay supervisor',NULL),(3438514,7529321,9,'producer','producer',NULL),(3440298,123394,10,'cinematographer','director of photography',NULL),(3440298,4874651,1,'actress',NULL,'[\"Mal\"]'),(3440298,2624602,2,'actor',NULL,'[\"Carlos\"]'),(3440298,1559927,3,'actor',NULL,'[\"Jay\"]'),(3440298,6259860,4,'actress',NULL,'[\"Evie\"]'),(3440298,650905,5,'director',NULL,NULL),(3440298,569210,6,'writer','written by',NULL),(3440298,663490,7,'writer','written by',NULL),(3440298,420326,8,'producer','producer',NULL),(3440298,492714,9,'composer',NULL,NULL),(3442006,813309,10,'producer','producer',NULL),(3442006,98,1,'actress',NULL,'[\"Claire Bennett\"]'),(3442006,56770,2,'actress',NULL,'[\"Silvana\"]'),(3442006,447695,3,'actress',NULL,'[\"Nina Collins\"]'),(3442006,941777,4,'actor',NULL,'[\"Roy Collins\"]'),(3442006,1400426,5,'director',NULL,NULL),(3442006,864959,6,'writer','screenplay',NULL),(3442006,2657554,7,'producer','producer',NULL),(3442006,4799,8,'producer','producer',NULL),(3442006,353929,9,'producer','producer',NULL),(3447590,271479,10,'producer','producer',NULL),(3447590,10341836,1,'actress',NULL,'[\"Matilda Wormwood\"]'),(3447590,668,2,'actress',NULL,'[\"Agatha Trunchbull\"]'),(3447590,2736476,3,'actress',NULL,'[\"Miss Honey\"]'),(3447590,334318,4,'actor',NULL,'[\"Mr. Wormwood\"]'),(3447590,911334,5,'director',NULL,NULL),(3447590,2393111,6,'writer','screenplay by',NULL),(3447590,2423358,7,'writer','based on the stage musical by',NULL),(3447590,1094,8,'writer','based on the book by',NULL),(3447590,79677,9,'producer','producer',NULL),(3450650,340003,10,'composer',NULL,NULL),(3450650,416673,1,'actor',NULL,'[\"Paul Blart\"]'),(3450650,2263115,2,'actress',NULL,'[\"Maya Blart\"]'),(3450650,895150,3,'actor',NULL,'[\"Eduardo Furtillo\"]'),(3450650,22161,4,'actress',NULL,'[\"Divina Martinez\"]'),(3450650,275698,5,'director',NULL,NULL),(3450650,48169,6,'writer','written by',NULL),(3450650,307776,7,'producer','producer',NULL),(3450650,316406,8,'producer','producer',NULL),(3450650,1191,9,'producer','producer',NULL),(3450958,1858656,10,'producer','producer',NULL),(3450958,785227,1,'actor',NULL,'[\"Caesar\"]'),(3450958,437,2,'actor',NULL,'[\"The Colonel\"]'),(3450958,1872,3,'actor',NULL,'[\"Bad Ape\"]'),(3450958,465269,4,'actress',NULL,'[\"Maurice\"]'),(3450958,716257,5,'director',NULL,NULL),(3450958,93560,6,'writer','written by',NULL),(3450958,415425,7,'writer','based on characters created by',NULL),(3450958,798646,8,'writer','based on characters created by',NULL),(3450958,99541,9,'writer','suggested by the novel \"La planète des singes\"',NULL),(3451230,4160188,10,'editor',NULL,NULL),(3451230,6469442,1,'actress',NULL,'[\"Ruby Adams\"]'),(3451230,5954280,2,'actor',NULL,'[\"Johnnie Blackwell\"]'),(3451230,4420495,3,'actress',NULL,'[\"Jazzy\"]'),(3451230,5412,4,'actress',NULL,'[\"Oksana\"]'),(3451230,198755,5,'director',NULL,NULL),(3451230,78943,6,'writer','written by',NULL),(3451230,1622492,7,'composer',NULL,NULL),(3451230,785150,8,'cinematographer',NULL,NULL),(3451230,1473095,9,'editor',NULL,NULL),(3453052,6550733,10,'cinematographer',NULL,NULL),(3453052,3551591,1,'actress',NULL,'[\"Nellie Bly\"]'),(3453052,483,2,'actor',NULL,'[\"Dr. Dent\"]'),(3453052,1456,3,'actress',NULL,'[\"Miss Grant\"]'),(3453052,30404,4,'actress',NULL,'[\"Anne Neville\"]'),(3453052,385725,5,'director',NULL,NULL),(3453052,1024391,6,'producer','producer',NULL),(3453052,2559683,7,'producer','producer',NULL),(3453052,928862,8,'producer','producer',NULL),(3453052,1624029,9,'composer',NULL,NULL),(3457342,835016,1,'actor',NULL,'[\"Nosferatu\"]'),(3457342,889022,2,'actor',NULL,'[\"Fonso\"]'),(3457342,411569,3,'actress',NULL,'[\"Luna\"]'),(3457342,6494022,4,'actress',NULL,'[\"Dooriya\"]'),(3457342,1661186,5,'director',NULL,NULL),(3457342,94222,6,'producer','producer',NULL),(3457342,83559,7,'cinematographer',NULL,NULL),(3457342,1306189,8,'editor',NULL,NULL),(3457342,1914613,9,'production_designer',NULL,NULL),(3457734,6727657,10,'composer',NULL,NULL),(3457734,2416507,1,'actress',NULL,'[\"Harper\"]'),(3457734,3631940,2,'actress',NULL,'[\"Allie\"]'),(3457734,2654481,3,'actor',NULL,'[\"Ebb\"]'),(3457734,1130496,4,'actress',NULL,'[\"Cobble Hill Mom\"]'),(3457734,3975695,5,'director',NULL,NULL),(3457734,4054218,6,'director',NULL,NULL),(3457734,3720904,7,'writer','story',NULL),(3457734,2571693,8,'producer','producer',NULL),(3457734,4459520,9,'producer','producer',NULL),(3458254,828596,10,'editor',NULL,NULL),(3458254,1754059,1,'actress',NULL,'[\"Dr. Gina Rose\"]'),(3458254,1804,2,'actor',NULL,'[\"The Professor\"]'),(3458254,1741002,3,'actor',NULL,'[\"Morgan\"]'),(3458254,1641140,4,'actor',NULL,'[\"Knox\"]'),(3458254,752328,5,'director',NULL,NULL),(3458254,2047864,6,'writer','screenplay',NULL),(3458254,628304,7,'producer','producer',NULL),(3458254,910800,8,'composer',NULL,NULL),(3458254,626859,9,'cinematographer',NULL,NULL),(3458510,706010,10,'producer','producer',NULL),(3458510,1423955,1,'actress',NULL,'[\"Lily\"]'),(3458510,3077071,2,'actress',NULL,'[\"Chloe\"]'),(3458510,3381295,3,'actress',NULL,'[\"Amelia\"]'),(3458510,5377144,4,'actress',NULL,'[\"Rebecca\"]'),(3458510,6035700,5,'director',NULL,NULL),(3458510,4014004,6,'writer','story by',NULL),(3458510,5653115,7,'producer','producer',NULL),(3458510,6005771,8,'producer','producer',NULL),(3458510,2434923,9,'producer','producer',NULL),(3460252,724744,10,'cinematographer','director of photography',NULL),(3460252,168,1,'actor',NULL,'[\"Major Marquis Warren\"]'),(3460252,621,2,'actor',NULL,'[\"John Ruth\"]'),(3460252,492,3,'actress',NULL,'[\"Daisy Domergue\"]'),(3460252,324658,4,'actor',NULL,'[\"Sheriff Chris Mannix\"]'),(3460252,233,5,'director',NULL,NULL),(3460252,321621,6,'producer','producer',NULL),(3460252,570690,7,'producer','producer',NULL),(3460252,792049,8,'producer','producer',NULL),(3460252,1553,9,'composer',NULL,NULL),(3462710,221042,10,'cinematographer',NULL,NULL),(3462710,206257,1,'actress',NULL,'[\"Julia Banks\"]'),(3462710,1337,2,'actress',NULL,'[\"Tessa Connover\"]'),(3462710,836176,3,'actor',NULL,'[\"David Connover\"]'),(3462710,6038328,4,'actress',NULL,'[\"Lily Connover\"]'),(3462710,224145,5,'director',NULL,NULL),(3462710,5429637,6,'writer','written by',NULL),(3462710,1327019,7,'producer','producer',NULL),(3462710,576571,8,'producer','producer',NULL),(3462710,996646,9,'composer',NULL,NULL),(3463106,3037108,10,'cinematographer',NULL,NULL),(3463106,680983,1,'actor',NULL,'[\"Abbie\"]'),(3463106,4187130,2,'actor',NULL,'[\"Senan\"]'),(3463106,2534167,3,'actor',NULL,'[\"Conor\"]'),(3463106,334324,4,'actor',NULL,'[\"Cantor\"]'),(3463106,3263357,5,'director',NULL,NULL),(3463106,3159348,6,'producer','producer',NULL),(3463106,3121755,7,'producer','producer',NULL),(3463106,9251768,8,'composer',NULL,NULL),(3463106,9251769,9,'composer',NULL,NULL),(3464902,1531046,10,'cinematographer',NULL,NULL),(3464902,268199,1,'actor',NULL,'[\"David\"]'),(3464902,1838,2,'actress',NULL,'[\"Short Sighted Woman\"]'),(3464902,1875238,3,'actress',NULL,'[\"Nosebleed Woman\"]'),(3464902,1469236,4,'actress',NULL,'[\"Hotel Manager\"]'),(3464902,487166,5,'director',NULL,NULL),(3464902,3328207,6,'writer','written by',NULL),(3464902,218714,7,'producer','producer',NULL),(3464902,347384,8,'producer','producer',NULL),(3464902,3717662,9,'producer','producer',NULL),(3468260,551376,10,'writer','character created by: Wonder Woman',NULL),(3468260,46033,1,'actor',NULL,'[\"Batman\",\"Bruce Wayne\",\"Narrator\"]'),(3468260,1154161,2,'actress',NULL,'[\"Dawnstar\"]'),(3468260,2364,3,'actor',NULL,'[\"Karate Kid\"]'),(3468260,123553,4,'actor',NULL,'[\"Time Trapper\",\"Captain Cold\"]'),(3468260,2083477,5,'director',NULL,NULL),(3468260,752728,6,'writer','written by',NULL),(3468260,796950,7,'writer','character created by: Superman',NULL),(3468260,795975,8,'writer','character created by: Superman',NULL),(3468260,4170,9,'writer','character created by: Batman',NULL),(3469046,372329,10,'producer','producer',NULL),(3469046,136797,1,'actor',NULL,'[\"Gru\",\"Dru\"]'),(3469046,1325419,2,'actress',NULL,'[\"Lucy\"]'),(3469046,5295,3,'actor',NULL,'[\"Balthazar Bratt\"]'),(3469046,1388927,4,'actress',NULL,'[\"Margo\"]'),(3469046,49633,5,'director',NULL,NULL),(3469046,1853544,6,'director',NULL,NULL),(3469046,3210494,7,'director','co-director',NULL),(3469046,666791,8,'writer','written by',NULL),(3469046,202425,9,'writer','written by',NULL),(3469518,6865,10,'cinematographer',NULL,NULL),(3469518,255678,1,'actress',NULL,'[\"Ingrid\"]'),(3469518,880167,2,'actress',NULL,'[\"Apple\"]'),(3469518,1091185,3,'actor',NULL,'[\"Tim\",\"Tina Birker\"]'),(3469518,695127,4,'actor',NULL,'[\"Helmut\"]'),(3469518,246903,5,'director',NULL,NULL),(3469518,4762565,6,'writer','songwriter, performer',NULL),(3469518,478105,7,'producer','producer',NULL),(3469518,902282,8,'producer','producer',NULL),(3469518,1210638,9,'composer',NULL,NULL),(3470600,674179,10,'editor',NULL,NULL),(3470600,190,1,'actor',NULL,'[\"Buster Moon\"]'),(3470600,702,2,'actress',NULL,'[\"Rosita\"]'),(3470600,532235,3,'actor',NULL,'[\"Mike\"]'),(3470600,424060,4,'actress',NULL,'[\"Ash\"]'),(3470600,1134029,5,'director',NULL,NULL),(3470600,2888554,6,'director','co-director',NULL),(3470600,372329,7,'producer','producer',NULL),(3470600,577560,8,'producer','producer',NULL),(3470600,847926,9,'composer',NULL,NULL),(3471098,1240085,10,'cinematographer','director of photography',NULL),(3471098,1950086,1,'actress',NULL,'[\"Maggie\"]'),(3471098,160,2,'actor',NULL,'[\"John\"]'),(3471098,194,3,'actress',NULL,'[\"Georgette\"]'),(3471098,748973,4,'actress',NULL,'[\"Felicia\"]'),(3471098,589182,5,'director',NULL,NULL),(3471098,6223233,6,'writer','based on a story by',NULL),(3471098,1955420,7,'producer','producer',NULL),(3471098,395267,8,'producer','producer',NULL),(3471098,737459,9,'composer',NULL,NULL),(3472226,3745427,10,'editor',NULL,NULL),(3472226,6247887,1,'actor',NULL,'[\"Kung Fury\"]'),(3472226,1672246,2,'actor',NULL,'[\"Adolf Hitler\"]'),(3472226,7320022,3,'actor',NULL,'[\"Dragon\"]'),(3472226,6224535,4,'actor',NULL,'[\"Hackerman\"]'),(3472226,5213347,5,'producer','producer',NULL),(3472226,7277325,6,'producer','producer',NULL),(3472226,4599751,7,'cinematographer',NULL,NULL),(3472226,6224540,8,'cinematographer',NULL,NULL),(3472226,5527440,9,'cinematographer',NULL,NULL),(3478232,2648896,10,'composer',NULL,NULL),(3478232,5752523,1,'actress',NULL,'[\"Marek\"]'),(3478232,424453,2,'actor',NULL,'[\"Thane\"]'),(3478232,3940484,3,'actor',NULL,'[\"Dagen\"]'),(3478232,1870939,4,'actress',NULL,'[\"Teela\"]'),(3478232,1237224,5,'director',NULL,NULL),(3478232,1131306,6,'writer','written by',NULL),(3478232,1344786,7,'writer','written by',NULL),(3478232,2021543,8,'writer',NULL,NULL),(3478232,1656923,9,'writer',NULL,NULL),(3479316,1509816,10,'composer',NULL,NULL),(3479316,2639722,1,'actor',NULL,'[\"Ronan Carver\"]'),(3479316,1557329,2,'actress',NULL,'[\"Beatrix Carver\"]'),(3479316,432657,3,'actor',NULL,'[\"Harold\"]'),(3479316,2090422,4,'actress',NULL,'[\"Polly\"]'),(3479316,2814,5,'director',NULL,NULL),(3479316,1165047,6,'writer','story',NULL),(3479316,994468,7,'producer','producer',NULL),(3479316,374295,8,'producer','producer',NULL),(3479316,1363931,9,'producer','producer',NULL),(3480446,3838148,10,'producer','producer',NULL),(3480446,608405,1,'actor',NULL,'[\"Pastor Johnson\"]'),(3480446,387987,2,'actor',NULL,'[\"Coach Elwood\"]'),(3480446,1891137,3,'actor',NULL,'[\"Orderly\"]'),(3480446,1020877,4,'actor',NULL,'[\"Mr. James\"]'),(3480446,3848723,5,'director',NULL,NULL),(3480446,6233153,6,'writer',NULL,NULL),(3480446,7183498,7,'producer','producer',NULL),(3480446,3921051,8,'producer','producer',NULL),(3480446,5204317,9,'producer','producer',NULL),(3480796,326411,10,'producer','producer',NULL),(3480796,5048,1,'actor',NULL,'[\"Roy\"]'),(3480796,246,2,'actor',NULL,'[\"Julian\"]'),(3480796,1024107,3,'actress',NULL,'[\"Kelly\"]'),(3480796,628,4,'actor',NULL,'[\"Chris\"]'),(3480796,2357819,5,'director',NULL,NULL),(3480796,1061002,6,'writer','written by',NULL),(3480796,664920,7,'writer','written by',NULL),(3480796,256542,8,'producer','producer',NULL),(3480796,298915,9,'producer','producer',NULL),(3480822,1154632,10,'composer',NULL,NULL),(3480822,424060,1,'actress',NULL,'[\"Natasha Romanoff\",\"Black Widow\"]'),(3480822,6073955,2,'actress',NULL,'[\"Yelena Belova\"]'),(3480822,1092086,3,'actor',NULL,'[\"Alexei\"]'),(3480822,1838,4,'actress',NULL,'[\"Melina\"]'),(3480822,795153,5,'director',NULL,NULL),(3480822,3069408,6,'writer','screenplay by',NULL),(3480822,2356614,7,'writer','story by',NULL),(3480822,72600,8,'writer','story by',NULL),(3480822,270559,9,'producer','producer',NULL),(3483194,592734,10,'cinematographer',NULL,NULL),(3483194,1764072,1,'actress',NULL,'[\"Nicole\"]'),(3483194,1450428,2,'actor',NULL,'[\"Amant\"]'),(3483194,784111,3,'actor',NULL,'[\"Père de Nicole\"]'),(3483194,2498449,4,'actress',NULL,'[\"Mère de Nicole\"]'),(3483194,480894,5,'director',NULL,NULL),(3483194,4034068,6,'writer','story consultant',NULL),(3483194,246404,7,'producer','producer',NULL),(3483194,566919,8,'producer','producer',NULL),(3483194,9758076,9,'composer',NULL,NULL),(3486626,5650752,10,'producer','producer',NULL),(3486626,4715,1,'actor',NULL,'[\"Surly\"]'),(3486626,748973,2,'actress',NULL,'[\"Precious\"]'),(3486626,134072,3,'actor',NULL,'[\"Frankie\"]'),(3486626,1293885,4,'actor',NULL,'[\"Mayor Muldoon\"]'),(3486626,2117510,5,'director',NULL,NULL),(3486626,82839,6,'writer','written by',NULL),(3486626,1779809,7,'writer','written by',NULL),(3486626,503259,8,'writer','based on characters created by',NULL),(3486626,1545935,9,'producer','producer',NULL),(3487994,2007542,10,'producer','producer',NULL),(3487994,469823,1,'actor',NULL,'[\"Evan\"]'),(3487994,50959,2,'actor',NULL,'[\"Max\"]'),(3487994,449466,3,'actor',NULL,'[\"Tim\"]'),(3487994,615063,4,'actor',NULL,'[\"Ted\"]'),(3487994,640031,5,'director',NULL,NULL),(3487994,1216185,6,'writer','writer',NULL),(3487994,2369675,7,'writer','writer',NULL),(3487994,3051028,8,'writer',NULL,NULL),(3487994,1234853,9,'writer','writer',NULL),(3488710,6293,10,'composer',NULL,NULL),(3488710,330687,1,'actor',NULL,'[\"Philippe Petit\"]'),(3488710,3114649,2,'actress',NULL,'[\"Annie\"]'),(3488710,2968773,3,'actor',NULL,'[\"Outdoor Café Man\"]'),(3488710,4487667,4,'actress',NULL,'[\"Outdoor Café Woman\"]'),(3488710,709,5,'director',NULL,NULL),(3488710,1358613,6,'writer','screenplay',NULL),(3488710,677597,7,'writer','book \"To Reach the Clouds\"',NULL),(3488710,710759,8,'producer','producer',NULL),(3488710,823330,9,'producer','producer',NULL),(3498820,456158,10,'writer','based on the Marvel comics by',NULL),(3498820,262635,1,'actor',NULL,'[\"Steve Rogers\",\"Captain America\"]'),(3498820,375,2,'actor',NULL,'[\"Tony Stark\",\"Iron Man\"]'),(3498820,424060,3,'actress',NULL,'[\"Natasha Romanoff\",\"Black Widow\"]'),(3498820,1659221,4,'actor',NULL,'[\"Bucky Barnes\",\"Winter Soldier\"]'),(3498820,751577,5,'director',NULL,NULL),(3498820,751648,6,'director',NULL,NULL),(3498820,1321655,7,'writer','screenplay by',NULL),(3498820,1321656,8,'writer','screenplay by',NULL),(3498820,800209,9,'writer','based on the Marvel comics by',NULL),(3499048,1449904,10,'cinematographer',NULL,NULL),(3499048,2204178,1,'actor',NULL,'[\"Sombra\"]'),(3499048,3042259,2,'actor',NULL,'[\"Tomás\"]'),(3499048,3892047,3,'actress',NULL,'[\"Ana\"]'),(3499048,2134806,4,'actor',NULL,'[\"Santos\"]'),(3499048,2091911,5,'director',NULL,NULL),(3499048,2157916,6,'writer','screenplay',NULL),(3499048,3998715,7,'writer','collaborator',NULL),(3499048,4261097,8,'producer','producer',NULL),(3499048,1419454,9,'composer',NULL,NULL),(3501632,1293367,10,'writer','based on the Marvel comics by',NULL),(3501632,1165110,1,'actor',NULL,'[\"Thor\"]'),(3501632,1089991,2,'actor',NULL,'[\"Loki\"]'),(3501632,949,3,'actress',NULL,'[\"Hela\"]'),(3501632,749263,4,'actor',NULL,'[\"Bruce Banner\",\"Hulk\"]'),(3501632,169806,5,'director',NULL,NULL),(3501632,3069408,6,'writer','written by',NULL),(3501632,1219736,7,'writer','written by',NULL),(3501632,1236653,8,'writer','written by',NULL),(3501632,498278,9,'writer','based on the Marvel comics by',NULL),(3503460,6369081,10,'composer',NULL,NULL),(3503460,728762,1,'actor',NULL,'[\"Guy\"]'),(3503460,2147605,2,'actress',NULL,'[\"Girl\"]'),(3503460,3036925,3,'actress',NULL,'[\"Miranda\"]'),(3503460,806613,4,'actor',NULL,'[\"Teacher\"]'),(3503460,1452752,5,'director',NULL,NULL),(3503460,1116340,6,'writer','written by',NULL),(3503460,1744293,7,'producer','producer',NULL),(3503460,2927679,8,'producer','producer',NULL),(3503460,1651670,9,'producer','producer',NULL),(3504048,2782087,10,'production_designer',NULL,NULL),(3504048,2837410,1,'actress',NULL,'[\"Kylie Bucknell\"]'),(3504048,853498,2,'actress',NULL,'[\"Miriam Bucknell\"]'),(3504048,1089840,3,'actor',NULL,'[\"Amos\"]'),(3504048,1101752,4,'actor',NULL,'[\"Graeme\"]'),(3504048,2067421,5,'director',NULL,NULL),(3504048,1962070,6,'producer','producer',NULL),(3504048,5823663,7,'composer',NULL,NULL),(3504048,726320,8,'cinematographer',NULL,NULL),(3504048,4158205,9,'production_designer','senior production designer',NULL),(3504064,233199,10,'composer',NULL,NULL),(3504064,792198,1,'actress',NULL,'[\"Lumina\"]'),(3504064,1764070,2,'actress',NULL,'[\"Kuda\"]'),(3504064,3568062,3,'actor',NULL,'[\"King Nereus\"]'),(3504064,1690630,4,'actress',NULL,'[\"Queen Lorelei\"]'),(3504064,2923,5,'director',NULL,NULL),(3504064,1618217,6,'writer','written by',NULL),(3504064,334671,7,'writer','written by',NULL),(3504064,1750217,8,'producer','producer',NULL),(3504064,1019013,9,'producer','producer',NULL),(3508566,4620889,1,'director',NULL,NULL),(3508840,399055,10,'producer','producer',NULL),(3508840,795517,1,'actress',NULL,'[\"Nie Yinniang\"]'),(3508840,151654,2,'actor',NULL,'[\"Tian Ji\'an, governor of Weibo\"]'),(3508840,1497874,3,'actress',NULL,'[\"Lady Tian\"]'),(3508840,1070494,4,'actor',NULL,'[\"The Mirror Polisher\"]'),(3508840,396284,5,'director',NULL,NULL),(3508840,155531,6,'writer','screenplay',NULL),(3508840,160883,7,'writer','screenwriter',NULL),(3508840,7431172,8,'writer','screenplay',NULL),(3508840,7431173,9,'writer','short story',NULL),(3513498,795975,10,'writer','created by: Superman',NULL),(3513498,695435,1,'actor',NULL,'[\"Emmet Brickowski\",\"Rex Dangervest\"]'),(3513498,6969,2,'actress',NULL,'[\"Wyldstyle\",\"Lucy\"]'),(3513498,4715,3,'actor',NULL,'[\"Batman\"]'),(3513498,1840504,4,'actress',NULL,'[\"Queen Watevra Wa\'Nabi\"]'),(3513498,593610,5,'director',NULL,NULL),(3513498,520488,6,'writer','screenplay by',NULL),(3513498,588087,7,'writer','screenplay by',NULL),(3513498,3821363,8,'writer','story by',NULL),(3513498,796950,9,'writer','created by: Superman',NULL),(3513500,3911,10,'composer',NULL,NULL),(3513500,1676221,1,'actor',NULL,'[\"Dale\"]'),(3513500,1825214,2,'actor',NULL,'[\"Chip\"]'),(3513500,8460487,3,'actress',NULL,'[\"Ellie\"]'),(3513500,4715,4,'actor',NULL,'[\"Sweet Pete\"]'),(3513500,1676223,5,'director',NULL,NULL),(3513500,2287168,6,'writer','written by',NULL),(3513500,3096061,7,'writer','written by',NULL),(3513500,387674,8,'producer','producer',NULL),(3513500,509414,9,'producer','producer',NULL),(3513548,2248832,10,'producer','producer',NULL); +INSERT INTO `MoviesPeople` VALUES (3513548,3236159,1,'actor',NULL,'[\"Richard Jewell\"]'),(3513548,5377,2,'actor',NULL,'[\"Watson Bryant\"]'),(3513548,10263413,3,'actor',NULL,'[\"Student\"]'),(3513548,5573623,4,'actor',NULL,'[\"Student\"]'),(3513548,142,5,'director',NULL,NULL),(3513548,712753,6,'writer','written by',NULL),(3513548,107493,7,'writer','based upon the article \"American Nightmare: The Ballad of Richard Jewell\" by',NULL),(3513548,7471755,8,'writer','based upon the book \"The Suspect\" by',NULL),(3513548,11296384,9,'writer','based upon the book \"The Suspect\" by',NULL),(3515892,3094695,10,'editor',NULL,NULL),(3515892,4267908,1,'actor',NULL,'[\"Danny\"]'),(3515892,3452033,2,'actor',NULL,'[\"Tau\"]'),(3515892,6271481,3,'actor',NULL,'[\"Cityboy\"]'),(3515892,4570963,4,'actress',NULL,'[\"Puti\"]'),(3515892,1795704,5,'director',NULL,NULL),(3515892,1189390,6,'producer','producer',NULL),(3515892,3551530,7,'producer','producer',NULL),(3515892,3111864,8,'composer',NULL,NULL),(3515892,364066,9,'cinematographer',NULL,NULL),(3521126,6683,10,'producer','producer',NULL),(3521126,290556,1,'actor',NULL,'[\"Tommy\",\"\'Johnny\'\"]'),(3521126,2002649,2,'actor',NULL,'[\"Greg\",\"\'Mark\'\"]'),(3521126,310966,3,'actress',NULL,'[\"Juliette\",\"\'Lisa\'\"]'),(3521126,736622,4,'actor',NULL,'[\"Sandy\"]'),(3521126,2354099,5,'writer','screenplay by',NULL),(3521126,2352210,6,'writer','screenplay by',NULL),(3521126,802995,7,'writer','based on the book \"The Disaster Artist: My Life Inside The Room, the Greatest Bad Movie Ever Made\" by',NULL),(3521126,2661978,8,'writer','based on the book \"The Disaster Artist: My Life Inside The Room, the Greatest Bad Movie Ever Made\" by',NULL),(3521126,1698571,9,'producer','producer',NULL),(3521164,962596,10,'writer','story by',NULL),(3521164,7635388,1,'actress',NULL,'[\"Moana\"]'),(3521164,425005,2,'actor',NULL,'[\"Maui\"]'),(3521164,1344302,3,'actress',NULL,'[\"Gramma Tala\"]'),(3521164,607325,4,'actor',NULL,'[\"Chief Tui\"]'),(3521164,166256,5,'director',NULL,NULL),(3521164,615780,6,'director',NULL,NULL),(3521164,2320658,7,'director','co-director',NULL),(3521164,930261,8,'director','co-director',NULL),(3521164,1158544,9,'writer','screenplay by',NULL),(3521332,1378833,10,'cinematographer',NULL,NULL),(3521332,201903,1,'actress',NULL,'[\"Mina\"]'),(3521332,1216145,2,'actress',NULL,'[\"Paula\"]'),(3521332,7810955,3,'actress',NULL,'[\"Mina (jove)\"]'),(3521332,3447755,4,'actor',NULL,'[\"Prakash\"]'),(3521332,728048,5,'director',NULL,NULL),(3521332,1893474,6,'writer','novel',NULL),(3521332,2894559,7,'writer','novel',NULL),(3521332,3155308,8,'composer',NULL,NULL),(3521332,3122277,9,'composer',NULL,NULL),(3525168,3987156,10,'composer',NULL,NULL),(3525168,929489,1,'actor',NULL,'[\"Leslie\"]'),(3525168,2902567,2,'actor',NULL,'[\"William\"]'),(3525168,47392,3,'actress',NULL,'[\"Penny\"]'),(3525168,4087606,4,'actress',NULL,'[\"Ellie\"]'),(3525168,2190048,5,'director',NULL,NULL),(3525168,2465403,6,'producer','producer',NULL),(3525168,2257360,7,'producer','producer',NULL),(3525168,2209203,8,'composer',NULL,NULL),(3525168,4417880,9,'composer',NULL,NULL),(3528906,564530,10,'director',NULL,NULL),(3528906,2280204,1,'actor',NULL,'[\"Chasey Wong (segment \\\"Scene 02 & 04\\\")\"]'),(3528906,5099152,2,'actress',NULL,'[\"Jess Lane (segment \\\"Scene 02 & 04\\\")\"]'),(3528906,1409381,3,'actor',NULL,'[\"Dick Jones (segment \\\"Scene 02 & 04\\\")\",\"Rapist (segment \\\"Scene 27\\\")\",\"Casey Wong (segment \\\"Scene 29 & 31\\\")\"]'),(3528906,295223,4,'actor',NULL,'[\"Officer Alex J. Murphy (segment \\\"Scene 05\\\")\"]'),(3528906,2940487,5,'director',NULL,NULL),(3528906,3373074,6,'director',NULL,NULL),(3528906,4949867,7,'director',NULL,NULL),(3528906,4615186,8,'director',NULL,NULL),(3528906,3171597,9,'director',NULL,NULL),(3529198,2109290,10,'producer','producer',NULL),(3529198,152839,1,'actress',NULL,'[\"Twilight Sparkle\"]'),(3529198,1868320,2,'actress',NULL,'[\"Applejack\",\"Rainbow Dash\"]'),(3529198,508877,3,'actress',NULL,'[\"Pinkie Pie\",\"Fluttershy\"]'),(3529198,319308,4,'actress',NULL,'[\"Rarity\",\"Vice Principal Luna\",\"Photo Finish\"]'),(3529198,2149505,5,'director',NULL,NULL),(3529198,2154278,6,'director','co-director',NULL),(3529198,269260,7,'writer','characters',NULL),(3529198,2436273,8,'writer','written by',NULL),(3529198,9261564,9,'writer','creator',NULL),(3529612,574376,10,'editor',NULL,NULL),(3529612,49623,1,'actor',NULL,'[\"Norman III\"]'),(3529612,1589584,2,'actor',NULL,'[\"Norman II\"]'),(3529612,537545,3,'actor',NULL,'[\"Norman I\"]'),(3529612,995,4,'actress',NULL,'[\"Hathfertiti\"]'),(3529612,56030,5,'director',NULL,NULL),(3529612,6286994,6,'writer','additional dialogue written and adapted by',NULL),(3529612,1848038,7,'producer','producer',NULL),(3529612,73203,8,'composer',NULL,NULL),(3529612,834480,9,'cinematographer',NULL,NULL),(3529656,4839745,10,'composer',NULL,NULL),(3529656,1312575,1,'actress',NULL,'[\"Sarah\"]'),(3529656,5561,2,'actor',NULL,'[\"Phil\"]'),(3529656,610,3,'actor',NULL,'[\"Tim\"]'),(3529656,5253,4,'actress',NULL,'[\"Shannon\"]'),(3529656,1543747,5,'director',NULL,NULL),(3529656,2684234,6,'writer','written by',NULL),(3529656,317943,7,'producer','producer',NULL),(3529656,3250262,8,'producer','producer',NULL),(3529656,851437,9,'producer','producer',NULL),(3531202,694440,10,'production_designer',NULL,NULL),(3531202,4043618,1,'actor',NULL,'[\"Brother Diarmuid - The Novice\"]'),(3531202,35514,2,'actor',NULL,'[\"Raymond De Merville\"]'),(3531202,1256532,3,'actor',NULL,'[\"The Mute\"]'),(3531202,439002,4,'actor',NULL,'[\"Saint Matthias\"]'),(3531202,1119099,5,'director',NULL,NULL),(3531202,2976806,6,'writer','written by',NULL),(3531202,571642,7,'composer',NULL,NULL),(3531202,1078957,8,'cinematographer','director of photography',NULL),(3531202,570871,9,'editor',NULL,NULL),(3531824,1903054,10,'producer','producer',NULL),(3531824,731075,1,'actress',NULL,'[\"Vee\"]'),(3531824,2002649,2,'actor',NULL,'[\"Ian\"]'),(3531824,2007030,3,'actress',NULL,'[\"Sydney\"]'),(3531824,1851028,4,'actor',NULL,'[\"Tommy\"]'),(3531824,1160962,5,'director',NULL,NULL),(3531824,1413364,6,'director',NULL,NULL),(3531824,789366,7,'writer','screenplay by',NULL),(3531824,6290393,8,'writer','based on the novel by',NULL),(3531824,441097,9,'producer','producer',NULL),(3532216,1003922,10,'producer','producer',NULL),(3532216,129,1,'actor',NULL,'[\"Barry Seal\"]'),(3532216,1727304,2,'actor',NULL,'[\"Monty \'Schafer\'\"]'),(3532216,942792,3,'actress',NULL,'[\"Lucy Seal\"]'),(3532216,687146,4,'actor',NULL,'[\"Sheriff Downing\"]'),(3532216,510731,5,'director',NULL,NULL),(3532216,818889,6,'writer','written by',NULL),(3532216,29562,7,'producer','producer',NULL),(3532216,205713,8,'producer','producer',NULL),(3532216,4976,9,'producer','producer',NULL),(3532278,1860749,10,'producer','producer',NULL),(3532278,606,1,'actor',NULL,'[\"Danzer\"]'),(3532278,604349,2,'actor',NULL,'[\"Keller\"]'),(3532278,4195983,3,'actor',NULL,'[\"Lukas\"]'),(3532278,3474511,4,'actress',NULL,'[\"Maria\"]'),(3532278,1942303,5,'director',NULL,NULL),(3532278,3010539,6,'director',NULL,NULL),(3532278,714199,7,'writer','screenplay',NULL),(3532278,3755906,8,'writer','based on an idea by',NULL),(3532278,6607687,9,'producer','producer',NULL),(3544082,2406475,10,'production_designer',NULL,NULL),(3544082,1648,1,'actress',NULL,'[\"Kate Mercer\"]'),(3544082,183822,2,'actor',NULL,'[\"Geoff Mercer\"]'),(3544082,416524,3,'actress',NULL,'[\"Lena\"]'),(3544082,920185,4,'actress',NULL,'[\"Sally\"]'),(3544082,354091,5,'director',NULL,NULL),(3544082,3807555,6,'writer','short story \"In Another Country\"',NULL),(3544082,2571063,7,'producer','producer',NULL),(3544082,187018,8,'cinematographer',NULL,NULL),(3544082,1183873,9,'editor',NULL,NULL),(3544112,1078971,10,'cinematographer',NULL,NULL),(3544112,6916321,1,'actor',NULL,'[\"Conor\"]'),(3544112,318821,2,'actor',NULL,'[\"Robert\"]'),(3544112,448204,3,'actress',NULL,'[\"Penny\"]'),(3544112,2930503,4,'actor',NULL,'[\"Brendan\"]'),(3544112,138809,5,'director',NULL,NULL),(3544112,8823854,6,'writer','story',NULL),(3544112,106835,7,'producer','producer',NULL),(3544112,632017,8,'producer','producer',NULL),(3544112,163955,9,'composer',NULL,NULL),(3544218,408249,10,'cinematographer',NULL,NULL),(3544218,1769711,1,'actor',NULL,'[\"Jo\"]'),(3544218,973945,2,'actor',NULL,'[\"Frank\"]'),(3544218,6493698,3,'actor',NULL,'[\"Ferre\"]'),(3544218,1502517,4,'actor',NULL,'[\"Manu Dewaey\"]'),(3544218,886976,5,'director',NULL,NULL),(3544218,2327205,6,'writer',NULL,NULL),(3544218,408248,7,'producer','producer',NULL),(3544218,11512056,8,'producer','producer',NULL),(3544218,1552050,9,'composer',NULL,NULL),(3546114,3165623,1,'actress',NULL,'[\"Zoe Peterson\"]'),(3546114,3458185,2,'actress',NULL,'[\"Mal Ford\"]'),(3546114,1265337,3,'actress',NULL,'[\"Anne Pasternak\"]'),(3546114,3742962,4,'actress',NULL,'[\"Kara Voss\"]'),(3546114,5364436,5,'producer','producer',NULL),(3546114,4451902,6,'composer',NULL,NULL),(3546114,2834506,7,'cinematographer',NULL,NULL),(3546114,4351773,8,'editor',NULL,NULL),(3546114,3487380,9,'production_designer',NULL,NULL),(3553442,584427,10,'producer','producer',NULL),(3553442,275486,1,'actress',NULL,'[\"Kim Baker\"]'),(3553442,3053338,2,'actress',NULL,'[\"Tanya Vanderpoel\"]'),(3553442,293509,3,'actor',NULL,'[\"Iain MacKelpie\"]'),(3553442,547,4,'actor',NULL,'[\"Ali Massoud Sadiq\"]'),(3553442,275629,5,'director',NULL,NULL),(3553442,720135,6,'director',NULL,NULL),(3553442,1061622,7,'writer','screenplay by',NULL),(3553442,5092324,8,'writer','based on the book \"The Taliban Shuffle: Strange Days in Afghanistan and Pakistan\" by',NULL),(3553442,117290,9,'producer','producer',NULL),(3553976,3926614,10,'composer',NULL,NULL),(3553976,1557,1,'actor',NULL,'[\"Ben\"]'),(3553976,1126657,2,'actor',NULL,'[\"Bodevan\"]'),(3553976,4705966,3,'actress',NULL,'[\"Kielyr\"]'),(3553976,2399383,4,'actress',NULL,'[\"Vespyr\"]'),(3553976,743671,5,'director',NULL,NULL),(3553976,1987578,6,'producer','producer',NULL),(3553976,506075,7,'producer','producer',NULL),(3553976,1364232,8,'producer','producer',NULL),(3553976,2961544,9,'producer','producer',NULL),(3554046,3541432,10,'writer','story by',NULL),(3554046,1429908,1,'actor',NULL,'[\"LeBron James\"]'),(3554046,332,2,'actor',NULL,'[\"Al G. Rhythm\"]'),(3554046,9347978,3,'actor',NULL,'[\"Dom James\"]'),(3554046,7800057,4,'actor',NULL,'[\"Malik\"]'),(3554046,2700,5,'director',NULL,NULL),(3554046,1080144,6,'writer','based on \"Space Jam\" written by',NULL),(3554046,748874,7,'writer','based on \"Space Jam\" written by',NULL),(3554046,365390,8,'writer','based on \"Space Jam\" written by',NULL),(3554046,918339,9,'writer','based on \"Space Jam\" written by',NULL),(3556230,8029694,10,'producer','producer',NULL),(3556230,4463447,1,'actress',NULL,'[\"Rita\"]'),(3556230,799111,2,'actress',NULL,'[\"Directora Isabel\"]'),(3556230,2398005,3,'actor',NULL,'[\"Tiago Maia\"]'),(3556230,5228863,4,'actor',NULL,'[\"Leonardo Davintji\"]'),(3556230,4775571,5,'director',NULL,NULL),(3556230,8024993,6,'writer','idea',NULL),(3556230,8029259,7,'writer','original idea',NULL),(3556230,5632589,8,'writer','co-writer',NULL),(3556230,6693889,9,'producer','producer',NULL),(3560546,8601223,10,'producer','producer',NULL),(3560546,5464867,1,'actress',NULL,'[\"Alice (segment \\\"Wraparound\\\")\"]'),(3560546,127438,2,'actor',NULL,'[\"Chavo (segment \\\"Wraparound\\\")\"]'),(3560546,5996313,3,'actress',NULL,'[\"Robin (segment \\\"Wraparound\\\")\"]'),(3560546,4977194,4,'actress',NULL,'[\"Suzy (segment \\\"Over My Dead Body\\\")\"]'),(3560546,2258859,5,'director',NULL,NULL),(3560546,2123947,6,'director',NULL,NULL),(3560546,4633307,7,'writer','co-writer',NULL),(3560546,6511561,8,'writer','co-writer',NULL),(3560546,4529654,9,'writer','co-writer',NULL),(3564472,628056,10,'composer',NULL,NULL),(3564472,356021,1,'actress',NULL,'[\"Ryan Pierce\"]'),(3564472,1451,2,'actress',NULL,'[\"Sasha Franklin\"]'),(3564472,586,3,'actress',NULL,'[\"Lisa Cooper\"]'),(3564472,1840504,4,'actress',NULL,'[\"Dina\"]'),(3564472,2700,5,'director',NULL,NULL),(3564472,1106214,6,'writer','story by',NULL),(3564472,1244069,7,'writer','story by',NULL),(3564472,2002824,8,'writer','story by',NULL),(3564472,655510,9,'producer','producer',NULL),(3564794,6583483,10,'production_designer',NULL,NULL),(3564794,973177,1,'actor',NULL,'[\"Woody\"]'),(3564794,1880888,2,'actress',NULL,'[\"Trudy\"]'),(3564794,644406,3,'actor',NULL,'[\"Moses\"]'),(3564794,1221047,4,'actor',NULL,'[\"Proctor\"]'),(3564794,3681509,5,'director',NULL,NULL),(3564794,2469515,6,'producer','producer',NULL),(3564794,703939,7,'producer','producer',NULL),(3564794,1653021,8,'cinematographer',NULL,NULL),(3564794,7883110,9,'editor',NULL,NULL),(3565264,5654463,1,'actor',NULL,'[\"Vetri\"]'),(3565264,3817633,2,'actress',NULL,'[\"Madhusree\"]'),(3565264,1957308,3,'actor',NULL,'[\"Inspector Raghuram\"]'),(3565264,3264948,4,'actor',NULL,'[\"Sailesh\"]'),(3565264,6322451,5,'director',NULL,NULL),(3565264,5366411,6,'producer','producer',NULL),(3565264,4512287,7,'composer',NULL,NULL),(3565264,4594226,8,'cinematographer',NULL,NULL),(3565264,5365700,9,'editor',NULL,NULL),(3566726,2199657,10,'actress',NULL,'[\"Dr. Luisa Alver\"]'),(3566726,1752221,1,'actress',NULL,'[\"Jane Villanueva\",\"Jane\",\"Self\"]'),(3566726,623085,2,'actress',NULL,'[\"Xiomara Villanueva\",\"Self\",\"Xiomara\"]'),(3566726,4141803,3,'actress',NULL,'[\"Petra Solano\",\"Anezka\",\"Petra\"]'),(3566726,1682573,4,'actor',NULL,'[\"Rafael Solano\",\"Self\"]'),(3566726,1646565,5,'writer','developed by',NULL),(3566726,171583,6,'actress',NULL,'[\"Alba Villanueva\",\"Alba\",\"Self\"]'),(3566726,131781,7,'actor',NULL,'[\"Rogelio De La Vega\",\"Rogelio\",\"Self\"]'),(3566726,2373831,8,'actor',NULL,'[\"Narrator\",\"Self\"]'),(3566726,2322192,9,'actor',NULL,'[\"Michael Cordero Jr.\",\"Michael\",\"Self\"]'),(3567288,1132783,10,'production_designer',NULL,NULL),(3567288,4609822,1,'actress',NULL,'[\"Becca\"]'),(3567288,4590837,2,'actor',NULL,'[\"Tyler\"]'),(3567288,241759,3,'actress',NULL,'[\"Nana\"]'),(3567288,574513,4,'actor',NULL,'[\"Pop Pop\"]'),(3567288,796117,5,'director',NULL,NULL),(3567288,81514,6,'producer','producer',NULL),(3567288,89658,7,'producer','producer',NULL),(3567288,16662,8,'cinematographer',NULL,NULL),(3567288,3002063,9,'editor',NULL,NULL),(3569230,271479,10,'producer','producer',NULL),(3569230,362766,1,'actor',NULL,'[\"Reggie Kray\",\"Ron Kray\"]'),(3569230,115161,2,'actress',NULL,'[\"Frances Shea\"]'),(3569230,5473782,3,'actor',NULL,'[\"Mad Teddy Smith\"]'),(3569230,2167957,4,'actor',NULL,'[\"Albert Donoghue\"]'),(3569230,1338,5,'director',NULL,NULL),(3569230,669301,6,'writer','book \"The Profession of Violence\"',NULL),(3569230,79677,7,'producer','producer',NULL),(3569230,163770,8,'producer','producer',NULL),(3569230,2795844,9,'producer','producer',NULL),(3569356,1981047,10,'production_designer',NULL,NULL),(3569356,3507289,1,'actor',NULL,'[\"Scott\"]'),(3569356,473873,2,'actress',NULL,'[\"Tori\"]'),(3569356,6342949,3,'actor',NULL,'[\"Joel\"]'),(3569356,2741657,4,'actress',NULL,'[\"Marissa\"]'),(3569356,3111149,5,'writer','written by',NULL),(3569356,1580131,6,'producer','producer',NULL),(3569356,1003558,7,'producer','producer',NULL),(3569356,1740259,8,'composer',NULL,NULL),(3569356,2156404,9,'cinematographer',NULL,NULL),(3570168,2045654,10,'writer',NULL,NULL),(3570168,6327776,1,'actress',NULL,'[\"Peggy\"]'),(3570168,6327778,2,'actress',NULL,'[\"Bandito\"]'),(3570168,6327777,3,'actress',NULL,'[\"Scotty\"]'),(3570168,6327775,4,'actress',NULL,'[\"Riff\"]'),(3570168,3175829,5,'director',NULL,NULL),(3570168,6330013,6,'writer','inspired by the works of',NULL),(3570168,3488941,7,'writer',NULL,NULL),(3570168,3136017,8,'writer',NULL,NULL),(3570168,3564870,9,'writer',NULL,NULL),(3572132,879992,10,'composer',NULL,NULL),(3572132,4100452,1,'actor',NULL,'[\"Naoto Miyakoshi\"]'),(3572132,354560,2,'actor',NULL,'[\"Kyosuke Takeda\"]'),(3572132,383016,3,'actor',NULL,'[\"Takeo Saeki\"]'),(3572132,1057135,4,'actress',NULL,'[\"Vice-Principal Inui\"]'),(3572132,643696,5,'director',NULL,NULL),(3572132,406772,6,'writer','screenplay',NULL),(3572132,1234345,7,'writer','characters',NULL),(3572132,386295,8,'producer','producer',NULL),(3572132,4947120,9,'producer','producer',NULL),(3576084,1738814,10,'composer',NULL,NULL),(3576084,412404,1,'actress',NULL,'[\"Zohar\"]'),(3576084,846474,2,'actress',NULL,'[\"Daffi\"]'),(3576084,6449075,3,'actress',NULL,'[\"Rama\"]'),(3576084,6449076,4,'actress',NULL,'[\"Livnat\"]'),(3576084,1731479,5,'director',NULL,NULL),(3576084,2764493,6,'producer','producer',NULL),(3576084,1001231,7,'producer','producer',NULL),(3576084,711940,8,'producer','producer',NULL),(3576084,1979335,9,'producer','producer',NULL),(3577624,145915,10,'cinematographer',NULL,NULL),(3577624,1125,1,'actor',NULL,'[\"Mambrú\"]'),(3577624,209,2,'actor',NULL,'[\"B\"]'),(3577624,1385871,3,'actress',NULL,'[\"Katya\"]'),(3577624,858048,4,'actress',NULL,'[\"Sophie\"]'),(3577624,508208,5,'director',NULL,NULL),(3577624,1402066,6,'writer','collaborating writer',NULL),(3577624,1369071,7,'writer','novel \"Dejarse llover\"',NULL),(3577624,1255565,8,'producer','producer',NULL),(3577624,1703899,9,'composer',NULL,NULL),(3579698,1850235,10,'cinematographer',NULL,NULL),(3579698,1817,1,'actor',NULL,'[\"Art Stephenson\"]'),(3579698,2301854,2,'actor',NULL,'[\"Jack Whitley\"]'),(3579698,4245678,3,'actress',NULL,'[\"Ryan\"]'),(3579698,2524051,4,'actress',NULL,'[\"Blair\"]'),(3579698,1218863,5,'director',NULL,NULL),(3579698,3401440,6,'writer','screenplay by',NULL),(3579698,2947416,7,'writer','screenplay by',NULL),(3579698,3037403,8,'writer','story by',NULL),(3579698,3773899,9,'composer',NULL,NULL),(3581652,77086,10,'composer',NULL,NULL),(3581652,5052065,1,'actor',NULL,'[\"Tony\"]'),(3581652,10399505,2,'actress',NULL,'[\"María\"]'),(3581652,3663196,3,'actress',NULL,'[\"Anita\"]'),(3581652,3174725,4,'actor',NULL,'[\"Bernardo\"]'),(3581652,229,5,'director',NULL,NULL),(3581652,1065785,6,'writer','screenplay by',NULL),(3581652,491306,7,'writer','based on the stage play, book by',NULL),(3581652,1069736,8,'producer','producer',NULL),(3581652,566140,9,'producer','producer',NULL),(3589968,1424,1,'actor',NULL,'[\"Nathan Vogel\"]'),(3589968,122703,2,'actor',NULL,'[\"Walter Broadnax\"]'),(3589968,6751867,3,'actor',NULL,'[\"Trenlin Polenski\"]'),(3589968,1186842,4,'actor',NULL,'[\"Jack Mitchell\"]'),(3589968,6269336,5,'director',NULL,NULL),(3589968,6269337,6,'producer','producer',NULL),(3589968,1201865,7,'composer',NULL,NULL),(3589968,1676759,8,'cinematographer',NULL,NULL),(3589968,68304,9,'cinematographer',NULL,NULL),(3595966,1197998,10,'editor',NULL,NULL),(3595966,735715,1,'actress',NULL,'[\"Carmela\"]'),(3595966,1522834,2,'actress',NULL,'[\"Sonia\"]'),(3595966,5404677,3,'actor',NULL,'[\"Ignacio\"]'),(3595966,4023162,4,'actress',NULL,'[\"Maria\"]'),(3595966,1954936,5,'director',NULL,NULL),(3595966,7713299,6,'writer','collaboration',NULL),(3595966,1927429,7,'composer',NULL,NULL),(3595966,1935957,8,'composer',NULL,NULL),(3595966,1396906,9,'cinematographer',NULL,NULL),(3598222,1266607,10,'editor',NULL,NULL),(3598222,1057928,1,'actress',NULL,'[\"Cassandra Clay\"]'),(3598222,518085,2,'actress',NULL,'[\"Kat Morgan\"]'),(3598222,407,3,'actress',NULL,'[\"Raven\"]'),(3598222,557,4,'actress',NULL,'[\"Ulrika\"]'),(3598222,712782,5,'director',NULL,NULL),(3598222,220656,6,'writer','screenplay',NULL),(3598222,490375,7,'producer','producer',NULL),(3598222,725808,8,'composer',NULL,NULL),(3598222,1635438,9,'cinematographer','director of photography',NULL),(3605262,5199206,10,'production_designer',NULL,NULL),(3605262,913460,1,'actor',NULL,'[\"Grant Summit\"]'),(3605262,27092,2,'actress',NULL,'[\"Rose Ricard\"]'),(3605262,724757,3,'actress',NULL,'[\"Nia\"]'),(3605262,1367,4,'actor',NULL,'[\"Detective Riggers\"]'),(3605262,4011579,5,'director',NULL,NULL),(3605262,1353719,6,'producer','producer',NULL),(3605262,1789645,7,'composer',NULL,NULL),(3605262,808914,8,'cinematographer',NULL,NULL),(3605262,744802,9,'editor',NULL,NULL),(3606752,677037,10,'writer','screenplay by',NULL),(3606752,5562,1,'actor',NULL,'[\"Lightning McQueen\"]'),(3606752,2242399,2,'actress',NULL,'[\"Cruz Ramirez\"]'),(3606752,177933,3,'actor',NULL,'[\"Smokey\"]'),(3606752,277213,4,'actor',NULL,'[\"Sterling\"]'),(3606752,270263,5,'director',NULL,NULL),(3606752,703078,6,'writer','original story by',NULL),(3606752,687937,7,'writer','original story by',NULL),(3606752,1139293,8,'writer','original story by',NULL),(3606752,1195697,9,'writer','screenplay by',NULL),(3606756,250995,10,'production_designer',NULL,NULL),(3606756,5266,1,'actor',NULL,'[\"Bob Parr\",\"Mr. Incredible\"]'),(3606756,456,2,'actress',NULL,'[\"Helen Parr\",\"Elastigirl\"]'),(3606756,1102970,3,'actress',NULL,'[\"Violet Parr\"]'),(3606756,9133740,4,'actor',NULL,'[\"Dashiell Parr (Dash)\"]'),(3606756,83348,5,'director',NULL,NULL),(3606756,342430,6,'producer','producer',NULL),(3606756,907869,7,'producer','producer',NULL),(3606756,315974,8,'composer',NULL,NULL),(3606756,769863,9,'editor',NULL,NULL),(3608930,730336,10,'cinematographer',NULL,NULL),(3608930,160,1,'actor',NULL,'[\"Paul\"]'),(3608930,237,2,'actor',NULL,'[\"Marshal\"]'),(3608930,3920288,3,'actress',NULL,'[\"Mary-Anne\"]'),(3608930,710447,4,'actor',NULL,'[\"Gilly\"]'),(3608930,1488800,5,'director',NULL,NULL),(3608930,89658,6,'producer','producer',NULL),(3608930,2693873,7,'producer','producer',NULL),(3608930,1490961,8,'producer','producer',NULL),(3608930,1404741,9,'composer',NULL,NULL),(3610746,1129502,10,'producer','producer',NULL),(3610746,2116419,1,'actor',NULL,'[\"Sam Fuller\"]'),(3610746,2372412,2,'actor',NULL,'[\"Brady Mannion\"]'),(3610746,3598736,3,'actress',NULL,'[\"Peyton Grey\"]'),(3610746,347149,4,'actress',NULL,'[\"Mrs. Kolbein\"]'),(3610746,1835055,5,'director',NULL,NULL),(3610746,2528062,6,'director',NULL,NULL),(3610746,1135022,7,'writer','written by',NULL),(3610746,1562672,8,'producer','producer',NULL),(3610746,177157,9,'producer','producer',NULL),(3612616,234237,1,'actress',NULL,'[\"Diane \'Die\' Després\"]'),(3612616,4608165,2,'actor',NULL,'[\"Steve O\'Connor Després\"]'),(3612616,167501,3,'actress',NULL,'[\"Kyla\"]'),(3612616,399088,4,'actor',NULL,'[\"Paul\"]'),(3612616,230859,5,'director',NULL,NULL),(3612616,3119194,6,'producer','producer',NULL),(3612616,5469670,7,'composer',NULL,NULL),(3612616,878031,8,'cinematographer','director of photography',NULL),(3612616,705025,9,'production_designer',NULL,NULL),(3614530,2131060,10,'producer','producer',NULL),(3614530,2874427,1,'actress',NULL,'[\"Jerrica\",\"Jem\"]'),(3614530,2640887,2,'actress',NULL,'[\"Kimber\"]'),(3614530,4563780,3,'actress',NULL,'[\"Shana\"]'),(3614530,3072243,4,'actress',NULL,'[\"Aja\"]'),(3614530,160840,5,'director',NULL,NULL),(3614530,1293285,6,'writer','screenplay by',NULL),(3614530,89658,7,'producer','producer',NULL),(3614530,4025993,8,'producer','producer',NULL),(3614530,205510,9,'producer','producer',NULL),(3616916,1401580,10,'composer',NULL,NULL),(3616916,427379,1,'actor',NULL,'[\"Kristian Eikjord\"]'),(3616916,1335996,2,'actress',NULL,'[\"Idun Karlsen\"]'),(3616916,3026834,3,'actor',NULL,'[\"Sondre\"]'),(3616916,6497646,4,'actress',NULL,'[\"Julia\"]'),(3616916,1012385,5,'director',NULL,NULL),(3616916,5006328,6,'writer','story by',NULL),(3616916,995943,7,'writer',NULL,NULL),(3616916,2276540,8,'writer','story by',NULL),(3616916,2511326,9,'producer','producer',NULL),(3620762,226421,10,'editor',NULL,NULL),(3620762,1364532,1,'actress',NULL,'[\"Tess\"]'),(3620762,1161296,2,'actress',NULL,'[\"Jessica\"]'),(3620762,517792,3,'actress',NULL,'[\"Sarah\"]'),(3620762,1554516,4,'actor',NULL,'[\"Robert\"]'),(3620762,1867458,5,'director',NULL,NULL),(3620762,2191747,6,'producer','producer',NULL),(3620762,1476392,7,'composer',NULL,NULL),(3620762,1439732,8,'cinematographer',NULL,NULL),(3620762,1009894,9,'editor',NULL,NULL),(3622332,385311,10,'composer',NULL,NULL),(3622332,2720118,1,'actor',NULL,'[\"Shadow Walker\"]'),(3622332,1834115,2,'actress',NULL,'[\"Anna\"]'),(3622332,734558,3,'actor',NULL,'[\"Durant\"]'),(3622332,4534098,4,'actor',NULL,'[\"Treden\"]'),(3622332,6406593,5,'director',NULL,NULL),(3622332,881378,6,'writer','written by',NULL),(3622332,713852,7,'writer','story by',NULL),(3622332,696486,8,'producer','producer',NULL),(3622332,3982701,9,'producer','producer',NULL),(3622592,324041,10,'producer','producer',NULL),(3622592,1822659,1,'actor',NULL,'[\"Quentin\"]'),(3622592,5353321,2,'actress',NULL,'[\"Margo\"]'),(3622592,3641002,3,'actor',NULL,'[\"Ben\"]'),(3622592,6819854,4,'actor',NULL,'[\"Radar\"]'),(3622592,1500577,5,'director',NULL,NULL),(3622592,2354099,6,'writer','screenplay by',NULL),(3622592,2352210,7,'writer','screenplay by',NULL),(3622592,1981261,8,'writer','based on the book by',NULL),(3622592,2125212,9,'producer','producer',NULL),(3623726,2336,10,'cinematographer',NULL,NULL),(3623726,658,1,'actress',NULL,'[\"Ricki\"]'),(3623726,177,2,'actor',NULL,'[\"Pete\"]'),(3623726,336701,3,'actress',NULL,'[\"Julie\"]'),(3623726,1659221,4,'actor',NULL,'[\"Josh\"]'),(3623726,1129,5,'director',NULL,NULL),(3623726,1959505,6,'writer','written by',NULL),(3623726,324556,7,'producer','producer',NULL),(3623726,1259504,8,'producer','producer',NULL),(3623726,686887,9,'producer','producer',NULL),(3625970,3128465,10,'cinematographer','director of photography',NULL),(3625970,4247622,1,'actress',NULL,'[\"Debbie\"]'),(3625970,6421226,2,'actress',NULL,'[\"Marcie\"]'),(3625970,1662586,3,'actress',NULL,'[\"Mistress Frost\"]'),(3625970,3316545,4,'actor',NULL,'[\"Mike\"]'),(3625970,3613396,5,'director',NULL,NULL),(3625970,1497211,6,'writer','comic',NULL),(3625970,6421224,7,'writer','screenplay',NULL),(3625970,3763513,8,'producer','producer',NULL),(3625970,4005207,9,'composer',NULL,NULL),(3627488,5978223,10,'composer',NULL,NULL),(3627488,1478079,1,'actor',NULL,'[\"James\"]'),(3627488,722279,2,'actor',NULL,'[\"Adam\"]'),(3627488,4006608,3,'actress',NULL,'[\"Alex\"]'),(3627488,680766,4,'actress',NULL,'[\"Ingrid\"]'),(3627488,4800248,5,'director',NULL,NULL),(3627488,1966892,6,'writer',NULL,NULL),(3627488,2257360,7,'producer','producer',NULL),(3627488,2262799,8,'producer','producer',NULL),(3627488,2169909,9,'composer',NULL,NULL),(3628584,863387,10,'producer','producer',NULL),(3628584,1084,1,'actor',NULL,'[\"Calvin\"]'),(3628584,356021,2,'actress',NULL,'[\"Angie\"]'),(3628584,26364,3,'actor',NULL,'[\"J.D.\"]'),(3628584,1073992,4,'actress',NULL,'[\"Terri\"]'),(3628584,2700,5,'director',NULL,NULL),(3628584,1244069,6,'writer','written by',NULL),(3628584,2002824,7,'writer','written by',NULL),(3628584,114197,8,'writer','characters',NULL),(3628584,854052,9,'producer','producer',NULL),(3631112,384,10,'composer',NULL,NULL),(3631112,1289434,1,'actress',NULL,'[\"Rachel\"]'),(3631112,2247245,2,'actress',NULL,'[\"Megan\"]'),(3631112,272581,3,'actress',NULL,'[\"Anna\"]'),(3631112,857620,4,'actor',NULL,'[\"Tom\"]'),(3631112,853238,5,'director',NULL,NULL),(3631112,933379,6,'writer','screenplay by',NULL),(3631112,6391502,7,'writer','based on the novel by',NULL),(3631112,1545176,8,'producer','producer',NULL),(3631112,686887,9,'producer','producer',NULL),(3638604,6416437,10,'cinematographer',NULL,NULL),(3638604,6416434,1,'actor',NULL,'[\"Jean-Guy\"]'),(3638604,5027845,2,'actress',NULL,'[\"Mireille\"]'),(3638604,6416435,3,'actor',NULL,'[\"Alpha Man\"]'),(3638604,6416436,4,'actor',NULL,'[\"Alpha Man (voice)\"]'),(3638604,3890560,5,'director',NULL,NULL),(3638604,6416440,6,'producer','producer',NULL),(3638604,4386174,7,'composer',NULL,NULL),(3638604,6416438,8,'composer',NULL,NULL),(3638604,6416439,9,'composer',NULL,NULL),(3640424,121281,10,'cinematographer','director of photography',NULL),(3640424,93,1,'actor',NULL,'[\"Max Vatan\"]'),(3640424,182839,2,'actress',NULL,'[\"Marianne Beauséjour\"]'),(3640424,364813,3,'actor',NULL,'[\"Frank Heslop\"]'),(3640424,1081121,4,'actor',NULL,'[\"Driver in Desert\"]'),(3640424,709,5,'director',NULL,NULL),(3640424,1140275,6,'writer','written by',NULL),(3640424,454752,7,'producer','producer',NULL),(3640424,823330,8,'producer','producer',NULL),(3640424,6293,9,'composer',NULL,NULL),(3654680,4204540,1,'actress',NULL,'[\"Fran\"]'),(3654680,2719170,2,'actress',NULL,'[\"Miriam\"]'),(3654680,5446778,3,'actress',NULL,'[\"Ann\"]'),(3654680,555093,4,'actor',NULL,'[\"Peter\"]'),(3654680,3673803,5,'director',NULL,NULL),(3654680,488574,6,'writer','story',NULL),(3654680,2319296,7,'composer',NULL,NULL),(3654680,757576,8,'cinematographer','director of photography',NULL),(3654680,3523714,9,'editor',NULL,NULL),(3654796,4175221,1,'actor',NULL,'[\"Dave\"]'),(3654796,243233,2,'actor',NULL,'[\"Aaron\"]'),(3654796,3034178,3,'actress',NULL,'[\"Sara\"]'),(3654796,1747551,4,'actor',NULL,'[\"Wade\"]'),(3654796,2674307,5,'director',NULL,NULL),(3654796,5533145,6,'producer','producer',NULL),(3654796,2341944,7,'composer',NULL,NULL),(3654796,2240960,8,'editor',NULL,NULL),(3654796,3258357,9,'production_designer',NULL,NULL),(3655522,1132378,10,'production_designer',NULL,NULL),(3655522,6414713,1,'actress',NULL,'[\"Marieme, alias Vic\"]'),(3655522,6733166,2,'actress',NULL,'[\"Lady\"]'),(3655522,6733167,3,'actress',NULL,'[\"Adiatou\"]'),(3655522,6733168,4,'actress',NULL,'[\"Fily\"]'),(3655522,1780037,5,'director',NULL,NULL),(3655522,1309676,6,'producer','producer',NULL),(3655522,1768243,7,'composer',NULL,NULL),(3655522,994004,8,'cinematographer',NULL,NULL),(3655522,1780517,9,'editor',NULL,NULL),(3655972,749593,10,'editor',NULL,NULL),(3655972,1298582,1,'actress',NULL,'[\"Alma\"]'),(3655972,349522,2,'actor',NULL,'[\"Alcachofa\"]'),(3655972,3314114,3,'actor',NULL,'[\"Rafa\"]'),(3655972,7314077,4,'actor',NULL,'[\"Ramón\"]'),(3655972,93081,5,'director',NULL,NULL),(3655972,491956,6,'writer','screenplay',NULL),(3655972,330270,7,'producer','producer',NULL),(3655972,301174,8,'composer',NULL,NULL),(3655972,302636,9,'cinematographer','director of photography',NULL),(3659388,769644,10,'producer','producer',NULL),(3659388,354,1,'actor',NULL,'[\"Mark Watney\"]'),(3659388,1567113,2,'actress',NULL,'[\"Melissa Lewis\"]'),(3659388,1325419,3,'actress',NULL,'[\"Annie Montrose\"]'),(3659388,544718,4,'actress',NULL,'[\"Beth Johanssen\"]'),(3659388,631,5,'director',NULL,NULL),(3659388,1206844,6,'writer','screenplay by',NULL),(3659388,1083982,7,'writer','based on the novel by',NULL),(3659388,400240,8,'producer','producer',NULL),(3659388,1334526,9,'producer','producer',NULL),(3661298,2258931,10,'producer','producer',NULL),(3661298,161,1,'actress',NULL,'[\"Farnez\"]'),(3661298,4778,2,'actor',NULL,'[\"Isaac\"]'),(3661298,13037,3,'actress',NULL,'[\"Habibeh\"]'),(3661298,1973209,4,'actor',NULL,'[\"Keyvan\"]'),(3661298,992370,5,'director',NULL,NULL),(3661298,917440,6,'writer','screenplay by',NULL),(3661298,6643494,7,'writer','based on the novel by',NULL),(3661298,124930,8,'producer','producer',NULL),(3661298,548335,9,'producer','producer',NULL),(3661798,3395549,10,'cinematographer',NULL,NULL),(3661798,46277,1,'actress',NULL,'[\"Young-Nam\"]'),(3661798,3393343,2,'actress',NULL,'[\"Do-Hee\"]'),(3661798,3827087,3,'actor',NULL,'[\"Yong-Ha\"]'),(3661798,5601908,4,'actor',NULL,'[\"Chief Uhm\"]'),(3661798,4772133,5,'director',NULL,NULL),(3661798,496969,6,'producer','producer',NULL),(3661798,13604595,7,'producer','producer',NULL),(3661798,1297121,8,'producer','executive producer',NULL),(3661798,1276066,9,'composer',NULL,NULL),(3666024,840699,10,'producer','producer',NULL),(3666024,307430,1,'actor',NULL,'[\"The Father\"]'),(3666024,4423028,2,'actor',NULL,'[\"The Son (young adult)\"]'),(3666024,8940318,3,'actor',NULL,'[\"The Son (child)\"]'),(3666024,8940319,4,'actor',NULL,'[\"The Baby\"]'),(3666024,240196,5,'director',NULL,NULL),(3666024,273863,6,'writer','screenplay',NULL),(3666024,146434,7,'producer','producer',NULL),(3666024,544947,8,'producer','producer',NULL),(3666024,815081,9,'producer','producer',NULL),(3666210,3882975,10,'producer','producer',NULL),(3666210,862,1,'actress',NULL,'[\"Helen\"]'),(3666210,3266168,2,'actress',NULL,'[\"Helen\"]'),(3666210,1052666,3,'actor',NULL,'[\"Alex\"]'),(3666210,303792,4,'actor',NULL,'[\"Roy\"]'),(3666210,4275547,5,'director',NULL,NULL),(3666210,2525426,6,'director',NULL,NULL),(3666210,2056401,7,'producer','producer',NULL),(3666210,1785879,8,'producer','producer',NULL),(3666210,3855258,9,'producer','producer',NULL),(3671900,762965,10,'actor',NULL,'[\"Dr. Murakami\"]'),(3671900,3136514,1,'actor',NULL,'[\"Doctor\"]'),(3671900,3194537,2,'actor',NULL,'[\"Dr. Anderson\"]'),(3671900,2400607,3,'actress',NULL,'[\"Momoko Hagiwara\"]'),(3671900,1101793,4,'actor',NULL,'[\"Alien\"]'),(3671900,1160484,5,'director',NULL,NULL),(3671900,1993800,6,'actor',NULL,'[\"Signalman\"]'),(3671900,2614548,7,'actress',NULL,'[\"Signalman\"]'),(3671900,651528,8,'actor',NULL,'[\"Hideo Hagiwara\"]'),(3671900,645381,9,'actress',NULL,'[\"Tsuruko Hagiwara\"]'),(3672742,6257330,10,'producer','producer',NULL),(3672742,1089325,1,'actor',NULL,'[\"The Kid\"]'),(3672742,495799,2,'actress',NULL,'[\"Apple\"]'),(3672742,461,3,'actor',NULL,'[\"Zeus\"]'),(3672742,1249752,4,'actor',NULL,'[\"Skeletron\"]'),(3672742,2379331,5,'director',NULL,NULL),(3672742,2377436,6,'director',NULL,NULL),(3672742,2375643,7,'director',NULL,NULL),(3672742,64510,8,'producer','producer',NULL),(3672742,350742,9,'producer','producer',NULL),(3682448,686887,10,'producer','producer',NULL),(3682448,158,1,'actor',NULL,'[\"James B. Donovan\"]'),(3682448,753314,2,'actor',NULL,'[\"Rudolf Abel\"]'),(3682448,257,3,'actor',NULL,'[\"Thomas Watters Jr.\"]'),(3682448,752407,4,'actress',NULL,'[\"Mary Donovan\"]'),(3682448,229,5,'director',NULL,NULL),(3682448,4131020,6,'writer','written by',NULL),(3682448,1053,7,'writer','written by',NULL),(3682448,1054,8,'writer','written by',NULL),(3682448,1069736,9,'producer','producer',NULL),(3685622,3348196,10,'editor',NULL,NULL),(3685622,619,1,'actor',NULL,'[\"Hank Harris\"]'),(3685622,2946712,2,'actor',NULL,'[\"Arnulfo Rubio\"]'),(3685622,2415604,3,'actress',NULL,'[\"Mamá Rubio\"]'),(3685622,2084963,4,'actor',NULL,'[\"Martín\"]'),(3685622,2239581,5,'director',NULL,NULL),(3685622,411517,6,'writer','screenplay',NULL),(3685622,1633015,7,'producer','producer',NULL),(3685622,6446252,8,'producer','producer',NULL),(3685622,545822,9,'cinematographer',NULL,NULL),(3686998,1787884,1,'self',NULL,'[\"Self\"]'),(3686998,6226190,2,'self',NULL,'[\"Self\"]'),(3686998,6458939,3,'self',NULL,'[\"Self\"]'),(3686998,5423040,4,'self',NULL,'[\"Self\"]'),(3686998,3194180,5,'producer','producer',NULL),(3686998,4552937,6,'producer','producer',NULL),(3686998,2558061,7,'composer',NULL,NULL),(3686998,2426541,8,'cinematographer','director of photography',NULL),(3691740,2354,10,'composer',NULL,NULL),(3691740,753314,1,'actor',NULL,'[\"BFG\"]'),(3691740,6982717,2,'actress',NULL,'[\"Sophie\"]'),(3691740,934362,3,'actress',NULL,'[\"The Queen\"]'),(3691740,1318596,4,'actor',NULL,'[\"Fleshlumpeater\"]'),(3691740,229,5,'director',NULL,NULL),(3691740,558953,6,'writer','screenplay by',NULL),(3691740,1094,7,'writer','based on the book by',NULL),(3691740,550881,8,'producer','producer',NULL),(3691740,580303,9,'producer','producer',NULL),(3696086,465067,10,'producer','producer',NULL),(3696086,2325018,1,'actress',NULL,'[\"Xiao Hong\"]'),(3696086,2682046,2,'actor',NULL,'[\"Xiao Jun\"]'),(3696086,911113,3,'actor',NULL,'[\"Lu Xun\"]'),(3696086,3301868,4,'actor',NULL,'[\"Duanmu Hongliang\"]'),(3696086,401176,5,'director',NULL,NULL),(3696086,1829803,6,'writer',NULL,NULL),(3696086,5071398,7,'producer','producer',NULL),(3696086,359189,8,'producer','producer',NULL),(3696086,3956870,9,'producer','producer',NULL),(3700804,3624136,10,'production_designer',NULL,NULL),(3700804,1512166,1,'actress',NULL,'[\"Ruby\"]'),(3700804,1034965,2,'actor',NULL,'[\"Josh\"]'),(3700804,628827,3,'actor',NULL,'[\"Fortune Teller\"]'),(3700804,2861251,4,'actress',NULL,'[\"Monica\"]'),(3700804,1733017,5,'director',NULL,NULL),(3700804,2385426,6,'producer','producer',NULL),(3700804,1479273,7,'composer',NULL,NULL),(3700804,1387362,8,'cinematographer',NULL,NULL),(3700804,2766382,9,'editor',NULL,NULL),(3704352,6235,10,'composer',NULL,NULL),(3704352,1451,1,'actress',NULL,'[\"Bessie\"]'),(3704352,4559582,2,'actress',NULL,'[\"Young Bessie\"]'),(3704352,3220289,3,'actor',NULL,'[\"Chorus Guy\"]'),(3704352,2910826,4,'actor',NULL,'[\"Stagehand\"]'),(3704352,2011696,5,'director',NULL,NULL),(3704352,1480450,6,'writer','screenplay',NULL),(3704352,319619,7,'writer','screenplay',NULL),(3704352,285210,8,'writer','story',NULL),(3704352,773176,9,'producer','producer',NULL),(3704428,552039,10,'producer','producer',NULL),(3704428,158,1,'actor',NULL,'[\"Colonel Tom Parker\"]'),(3704428,2581521,2,'actor',NULL,'[\"Elvis\"]'),(3704428,4609822,3,'actress',NULL,'[\"Priscilla\"]'),(3704428,861013,4,'actress',NULL,'[\"Gladys\"]'),(3704428,525303,5,'director',NULL,NULL),(3704428,5150018,6,'writer','screenplay by',NULL),(3704428,668902,7,'writer','screenplay by',NULL),(3704428,232442,8,'writer','screenplay by',NULL),(3704428,75762,9,'producer','producer',NULL),(3706352,917059,10,'producer','producer',NULL),(3706352,12588647,1,'actress',NULL,'[\"Turkish Airlines Stewardess\"]'),(3706352,4371455,2,'actress',NULL,'[\"News Reporter #1\"]'),(3706352,1517976,3,'actor',NULL,'[\"Henry Pelham\"]'),(3706352,628601,4,'actress',NULL,'[\"Celia Harrison\"]'),(3706352,2178458,5,'director',NULL,NULL),(3706352,2802754,6,'writer','based on the book by',NULL),(3706352,5009883,7,'producer','producer',NULL),(3706352,2445382,8,'producer','producer',NULL),(3706352,777455,9,'producer','producer',NULL),(3707106,93,1,'actor',NULL,'[\"Roland\"]'),(3707106,1401,2,'actress',NULL,'[\"Vanessa\"]'),(3707106,491259,3,'actress',NULL,'[\"Lea\"]'),(3707106,693799,4,'actor',NULL,'[\"François\"]'),(3707106,1189,5,'composer',NULL,NULL),(3707106,74141,6,'cinematographer','director of photography',NULL),(3707106,3819839,7,'editor',NULL,NULL),(3707106,739688,8,'editor',NULL,NULL),(3707106,404509,9,'production_designer',NULL,NULL),(3707396,1517261,10,'cinematographer',NULL,NULL),(3707396,867338,1,'actress',NULL,'[\"Hedi Schneider\"]'),(3707396,530561,2,'actor',NULL,'[\"Uli\"]'),(3707396,6560125,3,'actor',NULL,'[\"Finn\"]'),(3707396,5651291,4,'actress',NULL,'[\"Viviane\",\"Gehörlose Frau\"]'),(3707396,1519289,5,'director',NULL,NULL),(3707396,11752,6,'producer','producer',NULL),(3707396,1548905,7,'producer','producer',NULL),(3707396,1464012,8,'producer','producer',NULL),(3707396,7154275,9,'composer',NULL,NULL),(3708886,1154632,10,'composer',NULL,NULL),(3708886,2907,1,'actor',NULL,'[\"Det. Terry Monroe\"]'),(3708886,671567,2,'actor',NULL,'[\"Bob Bolaño\"]'),(3708886,3772243,3,'actor',NULL,'[\"Lord James Mangan\"]'),(3708886,1935086,4,'actress',NULL,'[\"Jackie Hollis\"]'),(3708886,567620,5,'director',NULL,NULL),(3708886,163770,6,'producer','producer',NULL),(3708886,1771404,7,'producer','producer',NULL),(3708886,402599,8,'producer','producer',NULL),(3708886,1672429,9,'producer','producer',NULL),(3711622,1666014,10,'writer','screenplay',NULL),(3711622,257237,1,'actress',NULL,'[\"Hetty Cuminseed\",\"Hedwig Kümmelsaft\"]'),(3711622,6057785,2,'actor',NULL,'[\"Tom Thompson\",\"Tom Tomsky\"]'),(3711622,665002,3,'actor',NULL,'[\"Hugo\"]'),(3711622,378932,4,'actress',NULL,'[\"Hopkins\",\"Frau Hoffmann\"]'),(3711622,1095164,5,'director',NULL,NULL),(3711622,165326,6,'writer','screenplay',NULL),(3711622,1751315,7,'writer','based on a novel by',NULL),(3711622,3693580,8,'writer','additional material',NULL),(3711622,728894,9,'writer','screenplay',NULL),(3713166,2022847,10,'editor',NULL,NULL),(3713166,2054764,1,'actress',NULL,'[\"Laura\"]'),(3713166,4026000,2,'actor',NULL,'[\"Matt\"]'),(3713166,1237541,3,'actress',NULL,'[\"Val\"]'),(3713166,2645189,4,'actress',NULL,'[\"Blaire\"]'),(3713166,300174,5,'director',NULL,NULL),(3713166,4532532,6,'writer',NULL,NULL),(3713166,67457,7,'producer','producer',NULL),(3713166,2186596,8,'cinematographer','director of photography',NULL),(3713166,4265905,9,'editor',NULL,NULL),(3715122,3302333,10,'producer','producer',NULL),(3715122,300,1,'actress',NULL,'[\"Anna Remigi\"]'),(3715122,170168,2,'actor',NULL,'[\"Pietro\"]'),(3715122,3650704,3,'actress',NULL,'[\"Jeanne\"]'),(3715122,4413847,4,'actor',NULL,'[\"Giorgio\"]'),(3715122,3137132,5,'director',NULL,NULL),(3715122,4580584,6,'writer','written by',NULL),(3715122,4552557,7,'writer','written by',NULL),(3715122,3324087,8,'writer','written by',NULL),(3715122,685063,9,'writer','play: \"La vita che ti diedi\"',NULL),(3715320,503429,10,'editor',NULL,NULL),(3715320,1618,1,'actor',NULL,'[\"Abe Lucas\"]'),(3715320,1297015,2,'actress',NULL,'[\"Jill Pollard\"]'),(3715320,205,3,'actress',NULL,'[\"Rita Richards\"]'),(3715320,1369571,4,'actor',NULL,'[\"Professor\"]'),(3715320,95,5,'director',NULL,NULL),(3715320,36981,6,'producer','producer',NULL),(3715320,1008264,7,'producer','producer',NULL),(3715320,2304996,8,'producer','producer',NULL),(3715320,451787,9,'cinematographer',NULL,NULL),(3716530,6050,10,'composer',NULL,NULL),(3716530,1376,1,'actress',NULL,'[\"Michèle\"]'),(3716530,480850,2,'actor',NULL,'[\"Patrick\"]'),(3716530,175931,3,'actress',NULL,'[\"Anna\"]'),(3716530,75650,4,'actor',NULL,'[\"Richard\"]'),(3716530,682,5,'director',NULL,NULL),(3716530,229172,6,'writer','novel \"Oh...\"',NULL),(3716530,83547,7,'writer','screenplay',NULL),(3716530,69963,8,'producer','producer',NULL),(3716530,4752699,9,'producer','producer',NULL),(3717016,280817,10,'writer','story consultant',NULL),(3717016,234668,1,'actress',NULL,'[\"Kate Kassell\",\"Nate\"]'),(3717016,343082,2,'actor',NULL,'[\"Daniel\"]'),(3717016,636562,3,'actor',NULL,'[\"Lee Kassell\"]'),(3717016,452,4,'actress',NULL,'[\"Elise\"]'),(3717016,308498,5,'director',NULL,NULL),(3717016,1383745,6,'writer','screenplay',NULL),(3717016,2169801,7,'writer','screenplay',NULL),(3717016,1912424,8,'writer','story editor',NULL),(3717016,974301,9,'writer','story consultant',NULL),(3717068,4077861,10,'production_designer',NULL,NULL),(3717068,6481337,1,'actor',NULL,'[\"Narayan Kamble\"]'),(3717068,1836649,2,'actor',NULL,'[\"Vinay Vora\"]'),(3717068,3453549,3,'actress',NULL,'[\"Public Prosecutor Nutan\"]'),(3717068,6481336,4,'actor',NULL,'[\"Judge Sadavarte\"]'),(3717068,4058904,5,'director',NULL,NULL),(3717068,6531922,6,'composer',NULL,NULL),(3717068,1486349,7,'cinematographer',NULL,NULL),(3717068,3828850,8,'editor',NULL,NULL),(3717068,12769957,9,'production_designer','project designer',NULL),(3717242,713777,10,'composer',NULL,NULL),(3717242,6580193,1,'self',NULL,'[\"Self\"]'),(3717242,6580346,2,'self',NULL,'[\"Self\"]'),(3717242,6580345,3,'self',NULL,'[\"Self\"]'),(3717242,204171,4,'self',NULL,'[\"Self\"]'),(3717242,1848683,5,'director',NULL,NULL),(3717242,1297550,6,'producer','producer',NULL),(3717242,1349986,7,'producer','producer',NULL),(3717242,1115070,8,'producer','producer',NULL),(3717242,339704,9,'composer',NULL,NULL),(3717252,564286,10,'writer','based on characters created by',NULL),(3717252,295,1,'actress',NULL,'[\"Selene\"]'),(3717252,3772243,2,'actor',NULL,'[\"David\"]'),(3717252,580014,3,'actor',NULL,'[\"Marius\"]'),(3717252,3091498,4,'actress',NULL,'[\"Semira\"]'),(3717252,283816,5,'director',NULL,NULL),(3717252,2309430,6,'writer','screenplay by',NULL),(3717252,2040359,7,'writer','story by',NULL),(3717252,340485,8,'writer','based on characters created by',NULL),(3717252,936482,9,'writer','based on characters created by',NULL),(3717490,612487,10,'writer','story by',NULL),(3717490,4223882,1,'actor',NULL,'[\"Jason (Red Ranger)\"]'),(3717490,4305463,2,'actress',NULL,'[\"Kimberly (Pink Ranger)\"]'),(3717490,5518972,3,'actor',NULL,'[\"Billy (Blue Ranger)\"]'),(3717490,3485108,4,'actor',NULL,'[\"Zack (Black Ranger)\"]'),(3717490,2410311,5,'director',NULL,NULL),(3717490,309691,6,'writer','screenplay by',NULL),(3717490,1948885,7,'writer','story by',NULL),(3717490,2332952,8,'writer','story by',NULL),(3717490,1802251,9,'writer','story by',NULL),(3717532,2371104,10,'producer','producer',NULL),(3717532,847594,1,'actress',NULL,'[\"Naruto Uzumaki\"]'),(3717532,1679934,2,'actress',NULL,'[\"Hinata Hyûga\"]'),(3717532,1101677,3,'actor',NULL,'[\"Toneri Ôtsutsuki\"]'),(3717532,1468944,4,'actress',NULL,'[\"Sakura Haruno\"]'),(3717532,462076,5,'director',NULL,NULL),(3717532,1618263,6,'writer','original author',NULL),(3717532,7764978,7,'writer','screenplay',NULL),(3717532,6716,8,'writer','english script adaptation',NULL),(3717532,4329109,9,'producer','producer',NULL),(3720788,87918,10,'cinematographer',NULL,NULL),(3720788,1567113,1,'actress',NULL,'[\"Eleanor Rigby\"]'),(3720788,564215,2,'actor',NULL,'[\"Conor Ludlow\"]'),(3720788,3616206,3,'actress',NULL,'[\"Alexis\"]'),(3720788,205626,4,'actress',NULL,'[\"Professor Lillian Friedman\"]'),(3720788,72600,5,'director',NULL,NULL),(3720788,474697,6,'producer','producer',NULL),(3720788,1132640,7,'producer','producer',NULL),(3720788,1639578,8,'producer','producer',NULL),(3720788,4843730,9,'composer',NULL,NULL),(3720802,1022075,10,'editor',NULL,NULL),(3720802,4292757,1,'actor',NULL,'[\"Fred Dorkel\"]'),(3720802,6485085,2,'actor',NULL,'[\"Jason Dorkel\"]'),(3720802,6485086,3,'actor',NULL,'[\"Mickaël Dorkel\"]'),(3720802,4292410,4,'actor',NULL,'[\"Moïse Dorkel\"]'),(3720802,2574581,5,'director',NULL,NULL),(3720802,1550375,6,'writer','co-writer',NULL),(3720802,1871501,7,'producer','producer',NULL),(3720802,100453,8,'composer',NULL,NULL),(3720802,5490381,9,'cinematographer',NULL,NULL),(3721936,4489323,10,'producer','producer',NULL),(3721936,7603745,1,'actress',NULL,'[\"Star\"]'),(3721936,479471,2,'actor',NULL,'[\"Jake\"]'),(3721936,2142336,3,'actress',NULL,'[\"Krystal\"]'),(3721936,6132638,4,'actor',NULL,'[\"Corey\"]'),(3721936,36349,5,'director',NULL,NULL),(3721936,8237023,6,'writer','based on the reporting by',NULL),(3721936,1964434,7,'producer','producer',NULL),(3721936,1185381,8,'producer','producer',NULL),(3721936,3170355,9,'producer','producer',NULL),(3721954,949229,10,'producer','producer',NULL),(3721954,1020089,1,'actress',NULL,'[\"Maud Lewis\"]'),(3721954,160,2,'actor',NULL,'[\"Everett Lewis\"]'),(3721954,72124,3,'actor',NULL,'[\"Charles Dowley\"]'),(3721954,741388,4,'actress',NULL,'[\"Aunt Ida\"]'),(3721954,909532,5,'director',NULL,NULL),(3721954,925456,6,'writer',NULL,NULL),(3721954,178341,7,'producer','producer',NULL),(3721954,1669348,8,'producer','producer',NULL),(3721954,786673,9,'producer','producer',NULL),(3722070,242491,10,'cinematographer','director of photography',NULL),(3722070,1749,1,'actress',NULL,'[\"Miss Shepherd\"]'),(3722070,421105,2,'actor',NULL,'[\"Alan Bennett\"]'),(3722070,980,3,'actor',NULL,'[\"Underwood\"]'),(3722070,5297113,4,'actress',NULL,'[\"Young Margaret Fairchild\"]'),(3722070,405336,5,'director',NULL,NULL),(3722070,3141,6,'writer','screenplay',NULL),(3722070,427827,7,'producer','producer',NULL),(3722070,2941,8,'producer','producer',NULL),(3722070,6070,9,'composer',NULL,NULL),(3726220,2031047,10,'composer',NULL,NULL),(3726220,1357512,1,'actress',NULL,'[\"Ananas\"]'),(3726220,1146936,2,'actress',NULL,'[\"Mette\"]'),(3726220,388424,3,'actor',NULL,'[\"Chef\"]'),(3726220,1090206,4,'actress',NULL,'[\"Matilda\"]'),(3726220,2222398,5,'director',NULL,NULL),(3726220,920492,6,'director',NULL,NULL),(3726220,2173401,7,'writer',NULL,NULL),(3726220,910419,8,'writer',NULL,NULL),(3726220,151680,9,'composer',NULL,NULL),(3726682,726898,10,'producer','producer',NULL),(3726682,13764320,1,'actor',NULL,'[\"Yara\"]'),(3726682,13764321,2,'actor',NULL,'[\"Lelena\"]'),(3726682,13764318,3,'actor',NULL,'[\"Soldier Woman\"]'),(3726682,7425638,4,'actress',NULL,'[\"Nayola\"]'),(3726682,722875,5,'director',NULL,NULL),(3726682,2120003,6,'writer',NULL,NULL),(3726682,2346032,7,'writer',NULL,NULL),(3726682,184241,8,'writer',NULL,NULL),(3726682,5465704,9,'producer','producer',NULL),(3726704,774779,10,'producer','producer',NULL),(3726704,3746649,1,'actor',NULL,'[\"John Williams\"]'),(3726704,381,2,'actor',NULL,'[\"Miller\"]'),(3726704,300712,3,'actor',NULL,'[\"James McDonough\"]'),(3726704,765597,4,'actor',NULL,'[\"Stanley Milgram\"]'),(3726704,21899,5,'director',NULL,NULL),(3726704,1595523,6,'producer','producer',NULL),(3726704,1164842,7,'producer','producer',NULL),(3726704,577826,8,'producer','producer',NULL),(3726704,730358,9,'producer','producer',NULL),(3727982,2090381,10,'cinematographer',NULL,NULL),(3727982,2106801,1,'actress',NULL,'[\"Ava\"]'),(3727982,2016345,2,'actress',NULL,'[\"Jillian\"]'),(3727982,750658,3,'actress',NULL,'[\"Joanna\"]'),(3727982,6669,4,'actor',NULL,'[\"Bernard\"]'),(3727982,1865890,5,'director',NULL,NULL),(3727982,1217504,6,'producer','producer',NULL),(3727982,1511558,7,'producer','producer',NULL),(3727982,918777,8,'producer','producer',NULL),(3727982,5141,9,'composer',NULL,NULL),(3729920,87918,10,'cinematographer',NULL,NULL),(3729920,564215,1,'actor',NULL,'[\"Conor Ludlow\"]'),(3729920,1567113,2,'actress',NULL,'[\"Eleanor Rigby\"]'),(3729920,205626,3,'actress',NULL,'[\"Professor Friedman\"]'),(3729920,352778,4,'actor',NULL,'[\"Stuart\"]'),(3729920,72600,5,'director',NULL,NULL),(3729920,474697,6,'producer','producer',NULL),(3729920,1132640,7,'producer','producer',NULL),(3729920,1639578,8,'producer','producer',NULL),(3729920,4843730,9,'composer',NULL,NULL),(3731562,178260,10,'writer','based on the character created by',NULL),(3731562,1089991,1,'actor',NULL,'[\"James Conrad\"]'),(3731562,168,2,'actor',NULL,'[\"Preston Packard\"]'),(3731562,488953,3,'actress',NULL,'[\"Mason Weaver\"]'),(3731562,604,4,'actor',NULL,'[\"Hank Marlow\"]'),(3731562,3611349,5,'director',NULL,NULL),(3731562,319659,6,'writer','screenplay by',NULL),(3731562,1440919,7,'writer','screenplay by',NULL),(3731562,2081046,8,'writer','screenplay by',NULL),(3731562,309691,9,'writer','story by',NULL),(3735246,6108596,10,'composer',NULL,NULL),(3735246,3828984,1,'actor',NULL,'[\"Peshwa Bajirao Ballal\"]'),(3735246,2138653,2,'actress',NULL,'[\"Mastani\"]'),(3735246,1231899,3,'actress',NULL,'[\"Kashibai\"]'),(3735246,44343,4,'actress',NULL,'[\"Radha Maa\"]'),(3735246,80220,5,'director',NULL,NULL),(3735246,7816195,6,'writer','novel: Rau',NULL),(3735246,3960993,7,'writer','additional writer',NULL),(3735246,1165501,8,'writer','written by',NULL),(3735246,2475355,9,'producer','producer',NULL),(3741700,661289,10,'producer','producer',NULL),(3741700,151419,1,'actor',NULL,'[\"Dr. Mark Russell\"]'),(3741700,267812,2,'actress',NULL,'[\"Dr. Emma Russell\"]'),(3741700,5611121,3,'actress',NULL,'[\"Madison Russell\"]'),(3741700,913822,4,'actor',NULL,'[\"Dr. Ishiro Serizawa\"]'),(3741700,1002424,5,'director',NULL,NULL),(3741700,1296461,6,'writer','screenplay by',NULL),(3741700,1440919,7,'writer','story by',NULL),(3741700,1247503,8,'producer','producer',NULL),(3741700,419169,9,'producer','producer',NULL),(3741834,792431,10,'producer','producer',NULL),(3741834,2353862,1,'actor',NULL,'[\"Saroo Brierley\"]'),(3741834,173,2,'actress',NULL,'[\"Sue Brierley\"]'),(3741834,1913734,3,'actress',NULL,'[\"Lucy\"]'),(3741834,8061218,4,'actor',NULL,'[\"Young Saroo\"]'),(3741834,204628,5,'director',NULL,NULL),(3741834,6506884,6,'writer','adapted from the book \"A Long Way Home\" by',NULL),(3741834,1729294,7,'writer','screenplay by',NULL),(3741834,2096617,8,'producer','producer',NULL),(3741834,2652108,9,'producer','producer',NULL),(3742378,7254012,10,'composer',NULL,NULL),(3742378,143252,1,'actress',NULL,'[\"Val\"]'),(3742378,2674069,2,'actress',NULL,'[\"Edna\"]'),(3742378,2376938,3,'actor',NULL,'[\"Fabinho\"]'),(3742378,6507706,4,'actress',NULL,'[\"Jéssica\"]'),(3742378,1155957,5,'director',NULL,NULL),(3742378,347775,6,'producer','executive producer',NULL),(3742378,347776,7,'producer','producer',NULL),(3742378,2052281,8,'producer','producer',NULL),(3742378,3034370,9,'producer','producer',NULL),(3748076,6513885,1,'actor',NULL,'[\"Will\"]'),(3748076,4156265,2,'actor',NULL,'[\"Lester\"]'),(3748076,6513884,3,'actor',NULL,'[\"Eddie Osborne\"]'),(3748076,6406825,4,'actress',NULL,'[\"Leslie\"]'),(3748076,3325172,5,'director',NULL,NULL),(3748076,3108341,6,'producer','producer',NULL),(3748076,6513892,7,'composer',NULL,NULL),(3748076,6058067,8,'cinematographer',NULL,NULL),(3748076,6513890,9,'production_designer',NULL,NULL),(3748172,277342,10,'cinematographer','director of photography',NULL),(3748172,1303,1,'actress',NULL,'[\"Jessie\"]'),(3748172,339304,2,'actor',NULL,'[\"Gerald\"]'),(3748172,5988570,3,'actress',NULL,'[\"Young Jessie\"]'),(3748172,835393,4,'actor',NULL,'[\"Moonlight Man\"]'),(3748172,1093039,5,'director',NULL,NULL),(3748172,3670452,6,'writer','screenplay by',NULL),(3748172,175,7,'writer','based on the novel by',NULL),(3748172,1006167,8,'producer','producer',NULL),(3748172,2435752,9,'composer',NULL,NULL),(3748528,184,10,'writer','based on characters created by',NULL),(3748528,428065,1,'actress',NULL,'[\"Jyn Erso\"]'),(3748528,526019,2,'actor',NULL,'[\"Cassian Andor\"]'),(3748528,876138,3,'actor',NULL,'[\"K-2SO\"]'),(3748528,947447,4,'actor',NULL,'[\"Chirrut Îmwe\"]'),(3748528,2284484,5,'director',NULL,NULL),(3748528,919363,6,'writer','screenplay by',NULL),(3748528,6904,7,'writer','screenplay by',NULL),(3748528,461306,8,'writer','story by',NULL),(3748528,1729428,9,'writer','story by',NULL),(3749900,3260333,10,'actress',NULL,'[\"Barbara Kean\"]'),(3749900,1360270,1,'actor',NULL,'[\"James Gordon\"]'),(3749900,586,2,'actress',NULL,'[\"Fish Mooney\"]'),(3749900,6610,3,'actor',NULL,'[\"Harvey Bullock\"]'),(3749900,4800564,4,'actress',NULL,'[\"Selina Kyle\"]'),(3749900,375285,5,'writer','developed by',NULL),(3749900,3458761,6,'actor',NULL,'[\"Bruce Wayne\",\"514A\",\"Batman\"]'),(3749900,2088699,7,'actor',NULL,'[\"Oswald Cobblepot\",\"Penguin\"]'),(3749900,5754425,8,'actor',NULL,'[\"Edward Nygma\",\"The Riddler\"]'),(3749900,675730,9,'actor',NULL,'[\"Alfred Pennyworth\"]'),(3750872,842065,10,'producer','producer',NULL),(3750872,335,1,'actress',NULL,'[\"Joan Castleman\"]'),(3750872,596,2,'actor',NULL,'[\"Joe Castleman\"]'),(3750872,1796057,3,'actor',NULL,'[\"David Castleman\"]'),(3750872,225,4,'actor',NULL,'[\"Nathanial Bone\"]'),(3750872,750275,5,'director',NULL,NULL),(3750872,26862,6,'writer','screenplay by',NULL),(3750872,938487,7,'writer','based on the novel \"The Wife\" by',NULL),(3750872,2281587,8,'producer','producer',NULL),(3750872,3388080,9,'producer','producer',NULL),(3756788,437819,10,'composer',NULL,NULL),(3756788,1480573,1,'actress',NULL,'[\"Sachi Kôda\"]'),(3756788,619178,2,'actress',NULL,'[\"Yoshino Kôda\"]'),(3756788,1949808,3,'actress',NULL,'[\"Chika Kôda\"]'),(3756788,5620173,4,'actress',NULL,'[\"Suzu Asano\"]'),(3756788,466153,5,'director',NULL,NULL),(3756788,15332,6,'writer','manga',NULL),(3756788,410984,7,'producer','producer',NULL),(3756788,3022813,8,'producer','producer',NULL),(3756788,1460332,9,'producer','producer',NULL),(3757648,6523679,1,'actor',NULL,'[\"Dom\"]'),(3757648,6523680,2,'actor',NULL,'[\"Matteo\"]'),(3757648,6523681,3,'actress',NULL,'[\"Mailys\"]'),(3757648,7901648,4,'actor',NULL,'[\"Vincent\"]'),(3757648,1848357,5,'director',NULL,NULL),(3757648,1771591,6,'writer','screenplay',NULL),(3757648,2160922,7,'producer','producer',NULL),(3757648,3243537,8,'composer',NULL,NULL),(3757648,1780517,9,'editor',NULL,NULL),(3760922,2681,10,'cinematographer',NULL,NULL),(3760922,889522,1,'actress',NULL,'[\"Toula\"]'),(3760922,179173,2,'actor',NULL,'[\"Ian\"]'),(3760922,176073,3,'actor',NULL,'[\"Gus\"]'),(3760922,443577,4,'actress',NULL,'[\"Maria\"]'),(3760922,428600,5,'director',NULL,NULL),(3760922,324556,6,'producer','producer',NULL),(3760922,158,7,'producer','producer',NULL),(3760922,1854,8,'producer','producer',NULL),(3760922,501999,9,'composer',NULL,NULL),(3764966,1479803,10,'writer','based on characters created by',NULL),(3764966,3515425,1,'actor',NULL,'[\"Brady\"]'),(3764966,2314596,2,'actress',NULL,'[\"McKenzie\",\"Mack\"]'),(3764966,3966682,3,'actress',NULL,'[\"Lela\"]'),(3764966,2372412,4,'actor',NULL,'[\"Tanner\"]'),(3764966,394944,5,'director',NULL,NULL),(3764966,1103326,6,'writer','teleplay by',NULL),(3764966,2785000,7,'writer','teleplay by',NULL),(3764966,73504,8,'writer','story by',NULL),(3764966,394911,9,'writer','story by',NULL),(3766394,3627693,10,'producer','producer',NULL),(3766394,398,1,'actress',NULL,'[\"Doris\"]'),(3766394,339011,2,'actor',NULL,'[\"John\"]'),(3766394,2033,3,'actress',NULL,'[\"Roz\"]'),(3766394,1018488,4,'actress',NULL,'[\"Cynthia\"]'),(3766394,795290,5,'director',NULL,NULL),(3766394,2884474,6,'writer','screenplay',NULL),(3766394,3259054,7,'producer','producer',NULL),(3766394,1269343,8,'producer','producer',NULL),(3766394,1889450,9,'producer','producer',NULL),(3774114,465740,10,'producer','producer',NULL),(3774114,330687,1,'actor',NULL,'[\"Edward Snowden\"]'),(3774114,940362,2,'actress',NULL,'[\"Lindsay Mills\"]'),(3774114,502425,3,'actress',NULL,'[\"Laura Poitras\"]'),(3774114,704270,4,'actor',NULL,'[\"Glenn Greenwald\"]'),(3774114,231,5,'director',NULL,NULL),(3774114,1634307,6,'writer','screenplay by',NULL),(3774114,4816469,7,'writer','book \"The Snowden Files\"',NULL),(3774114,3427812,8,'writer','book \"The Time of the Octopus\"',NULL),(3774114,97001,9,'producer','producer',NULL),(3774802,4145891,10,'editor',NULL,NULL),(3774802,629697,1,'actress',NULL,'[\"Lauren\"]'),(3774802,654295,2,'actor',NULL,'[\"Wheeler\"]'),(3774802,701512,3,'actress',NULL,'[\"Denise\"]'),(3774802,1616,4,'actor',NULL,'[\"Gunner\"]'),(3774802,2986811,5,'director',NULL,NULL),(3774802,3986004,6,'writer','writer',NULL),(3774802,1410462,7,'producer','producer',NULL),(3774802,1465570,8,'composer',NULL,NULL),(3774802,3512,9,'cinematographer',NULL,NULL),(3775086,4357799,10,'editor','collaborating editor',NULL),(3775086,763216,1,'actor',NULL,'[\"Enzo Ceccotti\"]'),(3775086,2143950,2,'actor',NULL,'[\"Zingaro\"]'),(3775086,6620696,3,'actress',NULL,'[\"Alessia\"]'),(3775086,1201777,4,'actor',NULL,'[\"Sergio\"]'),(3775086,537734,5,'director',NULL,NULL),(3775086,1834298,6,'writer','story',NULL),(3775086,1371376,7,'writer','screenplay',NULL),(3775086,2554932,8,'composer',NULL,NULL),(3775086,1428360,9,'cinematographer',NULL,NULL),(3777462,774377,10,'editor',NULL,NULL),(3777462,773670,1,'actress',NULL,'[\"Anne\"]'),(3777462,491596,2,'actor',NULL,'[\"Eddi\"]'),(3777462,937000,3,'actor',NULL,'[\"Johannes\"]'),(3777462,2475729,4,'actress',NULL,'[\"Katharina\"]'),(3777462,1311684,5,'director',NULL,NULL),(3777462,223386,6,'producer','producer',NULL),(3777462,1116647,7,'producer','producer',NULL),(3777462,1482490,8,'composer',NULL,NULL),(3777462,89851,9,'cinematographer',NULL,NULL),(3778644,5086,10,'producer','producer',NULL),(3778644,2403277,1,'actor',NULL,'[\"Han Solo\"]'),(3778644,437,2,'actor',NULL,'[\"Beckett\"]'),(3778644,3592338,3,'actress',NULL,'[\"Qi\'ra\"]'),(3778644,2255973,4,'actor',NULL,'[\"Lando Calrissian\"]'),(3778644,165,5,'director',NULL,NULL),(3778644,440459,6,'writer','written by',NULL),(3778644,1410,7,'writer','written by',NULL),(3778644,184,8,'writer','based on characters created by',NULL),(3778644,4012,9,'producer','producer',NULL),(3783958,3225654,10,'composer',NULL,NULL),(3783958,331516,1,'actor',NULL,'[\"Sebastian\"]'),(3783958,1297015,2,'actress',NULL,'[\"Mia\"]'),(3783958,1679669,3,'actress',NULL,'[\"Laura\"]'),(3783958,799777,4,'actor',NULL,'[\"Bill\"]'),(3783958,3227090,5,'director',NULL,NULL),(3783958,1757754,6,'producer','producer',NULL),(3783958,1344784,7,'producer','producer',NULL),(3783958,3527897,8,'producer','producer',NULL),(3783958,686887,9,'producer','producer',NULL),(3794354,605775,10,'producer','producer',NULL),(3794354,2355635,1,'actor',NULL,'[\"Sonic\"]'),(3794354,5188,2,'actor',NULL,'[\"Tom\"]'),(3794354,120,3,'actor',NULL,'[\"Dr. Robotnik\"]'),(3794354,1754366,4,'actress',NULL,'[\"Maddie\"]'),(3794354,1733778,5,'director',NULL,NULL),(3794354,1352459,6,'writer','written by',NULL),(3794354,1351254,7,'writer','written by',NULL),(3794354,4457111,8,'producer','producer',NULL),(3794354,1843982,9,'producer','producer',NULL),(3797512,501999,10,'composer',NULL,NULL),(3797512,1325419,1,'actress',NULL,'[\"Sharon Gordon Fisherman\",\"Star\"]'),(3797512,1754239,2,'actress',NULL,'[\"Barb\"]'),(3797512,1946193,3,'actor',NULL,'[\"Edgar Pagét\"]'),(3797512,915458,4,'actor',NULL,'[\"Darlie Bunkle\"]'),(3797512,2307949,5,'director',NULL,NULL),(3797512,1819990,6,'producer','producer',NULL),(3797512,2071,7,'producer','producer',NULL),(3797512,3250262,8,'producer','producer',NULL),(3797512,570912,9,'producer','producer',NULL),(3797868,953616,10,'composer',NULL,NULL),(3797868,907548,1,'actor',NULL,'[\"Travis\"]'),(3797868,1954240,2,'actress',NULL,'[\"Gabby\"]'),(3797868,1275259,3,'actress',NULL,'[\"Monica\"]'),(3797868,1192254,4,'actress',NULL,'[\"Steph\"]'),(3797868,441839,5,'director',NULL,NULL),(3797868,1032743,6,'writer','screenplay',NULL),(3797868,817023,7,'writer','novel',NULL),(3797868,4517772,8,'producer','producer',NULL),(3797868,755911,9,'producer','producer',NULL),(3799232,1572568,10,'composer',NULL,NULL),(3799232,1428821,1,'actress',NULL,'[\"Shelly \'Elle\' Evans\"]'),(3799232,8624059,2,'actor',NULL,'[\"Noah Flynn\"]'),(3799232,1525807,3,'actor',NULL,'[\"Lee Flynn\"]'),(3799232,9833473,4,'actress',NULL,'[\"Shelly \'Elle\' Evans (Age 4)\"]'),(3799232,1479803,5,'director',NULL,NULL),(3799232,6564541,6,'writer','based on \"The Kissing Booth\" by',NULL),(3799232,3004745,7,'producer','producer',NULL),(3799232,3005281,8,'producer','producer',NULL),(3799232,918833,9,'producer','producer',NULL),(3799694,3542,10,'cinematographer','director of photography',NULL),(3799694,128,1,'actor',NULL,'[\"Jackson Healy\"]'),(3799694,331516,2,'actor',NULL,'[\"Holland March\"]'),(3799694,3886028,3,'actress',NULL,'[\"Holly March\"]'),(3799694,93589,4,'actor',NULL,'[\"John Boy\"]'),(3799694,948,5,'director',NULL,NULL),(3799694,46524,6,'writer','written by',NULL),(3799694,5428,7,'producer','producer',NULL),(3799694,1384267,8,'composer',NULL,NULL),(3799694,653211,9,'composer',NULL,NULL),(3800012,396391,1,'actor',NULL,'[\"Paul\"]'),(3800012,78326,2,'actor',NULL,'[\"Le vagabond\"]'),(3800012,218022,3,'actor',NULL,'[\"Collègue Orange 1\"]'),(3800012,1086956,4,'actor',NULL,'[\"Collègue Orange 2\"]'),(3800012,693571,5,'cinematographer',NULL,NULL),(3800012,255360,6,'editor',NULL,NULL),(3801372,2515735,10,'composer',NULL,NULL),(3801372,728762,1,'actor',NULL,'[\"Jeff\"]'),(3801372,4825,2,'actress',NULL,'[\"Marla\"]'),(3801372,981,3,'actor',NULL,'[\"Ed\"]'),(3801372,1441,4,'actress',NULL,'[\"Sherry\"]'),(3801372,192933,5,'director',NULL,NULL),(3801372,6567661,6,'writer',NULL,NULL),(3801372,410065,7,'producer','producer',NULL),(3801372,1060164,8,'producer','producer',NULL),(3801372,913963,9,'producer','producer',NULL),(3804984,6627231,1,'actress',NULL,'[\"Wendy\"]'),(3804984,6571089,2,'actress',NULL,'[\"Kayra\"]'),(3804984,6585023,3,'actor',NULL,'[\"Gus\"]'),(3804984,7621404,4,'actor',NULL,NULL),(3804984,5160784,5,'director',NULL,NULL),(3804984,3770066,6,'producer','producer',NULL),(3804984,5428455,7,'cinematographer',NULL,NULL),(3811906,2409153,10,'cinematographer','director of photography',NULL),(3811906,1834115,1,'actress',NULL,'[\"Madison Mitchell\"]'),(3811906,4487976,2,'actress',NULL,'[\"Sydney Lake\"]'),(3811906,2965226,3,'actor',NULL,'[\"Kekoa Shaw\"]'),(3811906,925232,4,'actress',NULL,'[\"Regina Moss\"]'),(3811906,1490123,5,'director',NULL,NULL),(3811906,2445328,6,'writer','story by',NULL),(3811906,4868455,7,'writer','story by',NULL),(3811906,2752795,8,'producer','producer',NULL),(3811906,1177766,9,'composer',NULL,NULL),(3812402,4725270,10,'composer',NULL,NULL),(3812402,6903064,1,'actress',NULL,'[\"Ji-so\"]'),(3812402,9206992,2,'actress',NULL,'[\"Chae-Rang\"]'),(3812402,7275956,3,'actor',NULL,'[\"Ji-seok\"]'),(3812402,1067547,4,'actress',NULL,'[\"Lady Marcel\"]'),(3812402,1193005,5,'director',NULL,NULL),(3812402,3614132,6,'writer','screenplay',NULL),(3812402,7275965,7,'writer','original story',NULL),(3812402,4989553,8,'producer','producer',NULL),(3812402,5379124,9,'producer','producer',NULL),(3817188,1412545,10,'cinematographer',NULL,NULL),(3817188,5534861,1,'actor',NULL,'[\"Tomas\"]'),(3817188,7099587,2,'actor',NULL,'[\"Pyotr\"]'),(3817188,2428413,3,'actor',NULL,'[\"Hans\"]'),(3817188,395926,4,'actor',NULL,'[\"Willi\"]'),(3817188,591046,5,'director',NULL,NULL),(3817188,30336,6,'producer','producer',NULL),(3817188,3100084,7,'producer','producer',NULL),(3817188,7628319,8,'producer','producer',NULL),(3817188,7890417,9,'composer',NULL,NULL),(3819668,298016,10,'editor',NULL,NULL),(3819668,637586,1,'actress',NULL,'[\"Son Gokû\",\"Son Gohan\"]'),(3819668,394690,2,'actor',NULL,'[\"Bejîta\"]'),(3819668,875442,3,'actress',NULL,'[\"Buruma\"]'),(3819668,766493,4,'actor',NULL,'[\"Kame Sen\'nin\"]'),(3819668,2238569,5,'director',NULL,NULL),(3819668,868066,6,'writer','screenplay by',NULL),(3819668,5465253,7,'producer','producer',NULL),(3819668,2154425,8,'producer','producer',NULL),(3819668,1119778,9,'composer',NULL,NULL),(3824458,1516804,10,'producer','producer',NULL),(3824458,6702770,1,'actress',NULL,'[\"Sin-Dee\"]'),(3824458,4924757,2,'actress',NULL,'[\"Alexandra\"]'),(3824458,1199489,3,'actor',NULL,'[\"Razmik\"]'),(3824458,1551040,4,'actress',NULL,'[\"Dinah\"]'),(3824458,48918,5,'director',NULL,NULL),(3824458,2022341,6,'writer','written by',NULL),(3824458,2281849,7,'producer','producer',NULL),(3824458,3579466,8,'producer','producer',NULL),(3824458,2608694,9,'producer','producer',NULL),(3829266,2273444,10,'composer',NULL,NULL),(3829266,2933542,1,'actor',NULL,'[\"Quinn McKenna\"]'),(3829266,5218990,2,'actor',NULL,'[\"Nebraska Williams\"]'),(3829266,5016878,3,'actor',NULL,'[\"Rory McKenna\"]'),(3829266,1221047,4,'actor',NULL,'[\"Coyle\"]'),(3829266,948,5,'director',NULL,NULL),(3829266,215269,6,'writer','written by',NULL),(3829266,859029,7,'writer','based on characters created by',NULL),(3829266,859049,8,'writer','based on characters created by',NULL),(3829266,204862,9,'producer','producer',NULL),(3829378,1650412,10,'producer','producer',NULL),(3829378,5369197,1,'actress',NULL,'[\"Stephanie\"]'),(3829378,342029,2,'actor',NULL,'[\"Man\",\"Dad\"]'),(3829378,1396022,3,'actress',NULL,'[\"Woman\",\"Mom\"]'),(3829378,4904810,4,'actor',NULL,'[\"Paul\"]'),(3829378,326040,5,'director',NULL,NULL),(3829378,2049126,6,'writer','written by',NULL),(3829378,2431095,7,'writer','screenplay',NULL),(3829378,81133,8,'producer','producer',NULL),(3829378,89658,9,'producer','producer',NULL),(3829920,1857184,10,'producer','producer',NULL),(3829920,982,1,'actor',NULL,'[\"Eric Marsh\"]'),(3829920,1886602,2,'actor',NULL,'[\"Brendan McDonough\"]'),(3829920,313,3,'actor',NULL,'[\"Duane Steinbrink\"]'),(3829920,124,4,'actress',NULL,'[\"Amanda Marsh\"]'),(3829920,2676052,5,'director',NULL,NULL),(3829920,9351707,6,'writer','based on the GQ article \"No Exit\" by',NULL),(3829920,634307,7,'writer','written by',NULL),(3829920,2545235,8,'writer','written by',NULL),(3829920,225146,9,'producer','producer',NULL),(3832158,1823523,10,'producer','producer',NULL),(3832158,1531003,1,'actor',NULL,'[\"Rappel\"]'),(3832158,228537,2,'actor',NULL,'[\"Dr. X\"]'),(3832158,6445791,3,'actor',NULL,'[\"Nano\"]'),(3832158,1553588,4,'actor',NULL,'[\"Boardcomputer\"]'),(3832158,163572,5,'director',NULL,NULL),(3832158,232787,6,'writer','screenplay',NULL),(3832158,7765306,7,'writer','screenplay',NULL),(3832158,1646475,8,'writer','screenplay adaptation',NULL),(3832158,1109481,9,'writer','screenplay adaptation',NULL),(3833474,1395864,1,'actress',NULL,'[\"Lisa Brennan\"]'),(3833474,6466615,2,'actor',NULL,'[\"Hassan\"]'),(3833474,5304098,3,'actress',NULL,'[\"Bouchra\"]'),(3833474,926205,4,'actor',NULL,'[\"Clark Anderson\"]'),(3833474,285683,5,'director',NULL,NULL),(3833474,14200375,6,'producer','producer',NULL),(3833474,3207853,7,'composer','composer',NULL),(3833474,3286073,8,'cinematographer',NULL,NULL),(3837248,11901152,10,'producer','producer',NULL),(3837248,2583829,1,'actress',NULL,'[\"Kotori Minami\"]'),(3837248,6949652,2,'actress',NULL,'[\"Eli Ayase\"]'),(3837248,2299231,3,'actress',NULL,'[\"Umi Sonoda\"]'),(3837248,4808080,4,'actress',NULL,'[\"Erena Toudou\"]'),(3837248,3558314,5,'director',NULL,NULL),(3837248,2438224,6,'writer','original story',NULL),(3837248,2840491,7,'writer','original story',NULL),(3837248,946695,8,'writer','original story',NULL),(3837248,6119199,9,'producer','producer',NULL),(3838728,1328334,10,'cinematographer',NULL,NULL),(3838728,2028613,1,'actor',NULL,'[\"Alex\"]'),(3838728,6725563,2,'actress',NULL,'[\"George\"]'),(3838728,6725564,3,'actor',NULL,'[\"Gabriel\"]'),(3838728,2392266,4,'actress',NULL,'[\"Laetitia\"]'),(3838728,404067,5,'director',NULL,NULL),(3838728,61669,6,'producer','producer',NULL),(3838728,2701668,7,'producer','producer',NULL),(3838728,1910842,8,'producer','producer',NULL),(3838728,452153,9,'composer',NULL,NULL),(3838802,2261303,10,'editor',NULL,NULL),(3838802,41281,1,'actor',NULL,'[\"Art\"]'),(3838802,2884388,2,'actor',NULL,'[\"Rusty\"]'),(3838802,2906174,3,'actor',NULL,'[\"The Fisherman\"]'),(3838802,5404,4,'actress',NULL,'[\"Dot\"]'),(3838802,41280,5,'director',NULL,NULL),(3838802,2607692,6,'writer',NULL,NULL),(3838802,2184127,7,'producer','producer',NULL),(3838802,3419045,8,'producer','producer',NULL),(3838802,156547,9,'cinematographer',NULL,NULL),(3838992,493439,10,'cinematographer',NULL,NULL),(3838992,6675440,1,'actress',NULL,'[\"Colleen Collette\"]'),(3838992,808410,2,'actress',NULL,'[\"Colleen McKenzie\"]'),(3838992,136,3,'actor',NULL,'[\"Guy Lapointe\"]'),(3838992,111013,4,'actor',NULL,'[\"Ichabod\"]'),(3838992,3620,5,'director',NULL,NULL),(3838992,1989592,6,'producer','producer',NULL),(3838992,3655313,7,'producer','producer',NULL),(3838992,777059,8,'producer','producer',NULL),(3838992,1537113,9,'composer',NULL,NULL),(3840898,6339,10,'composer',NULL,NULL),(3840898,19885,1,'actor',NULL,'[\"Prospero\"]'),(3840898,1561385,2,'actor',NULL,'[\"Antonio\"]'),(3840898,2976580,3,'actress',NULL,'[\"Miranda\"]'),(3840898,185239,4,'actor',NULL,'[\"Stephano\"]'),(3840898,3329219,5,'director','director: stage',NULL),(3840898,751196,6,'director','director: screen',NULL),(3840898,636,7,'writer','play',NULL),(3840898,7011392,8,'producer','producer',NULL),(3840898,6452049,9,'producer','producer',NULL),(3844362,2345716,10,'production_designer',NULL,NULL),(3844362,4395,1,'actor',NULL,'[\"Alex\"]'),(3844362,2279940,2,'actress',NULL,'[\"Emily\"]'),(3844362,5403,3,'actor',NULL,'[\"Kurt\"]'),(3844362,2105,4,'actress',NULL,'[\"Charlotte\"]'),(3844362,2674307,5,'director',NULL,NULL),(3844362,1133158,6,'producer','producer',NULL),(3844362,2341944,7,'composer',NULL,NULL),(3844362,1458741,8,'cinematographer',NULL,NULL),(3844362,2240960,9,'editor',NULL,NULL),(3844962,1682029,10,'production_designer',NULL,NULL),(3844962,6757610,1,'actress',NULL,'[\"Ilsa\"]'),(3844962,6757611,2,'actor',NULL,'[\"Dominic\"]'),(3844962,6033482,3,'actor',NULL,'[\"Eli\"]'),(3844962,7103165,4,'actress',NULL,'[\"Mariko\"]'),(3844962,6612149,5,'director',NULL,NULL),(3844962,4411465,6,'writer','story by',NULL),(3844962,2819452,7,'writer','story by',NULL),(3844962,2821942,8,'composer',NULL,NULL),(3844962,2204477,9,'cinematographer',NULL,NULL),(3845670,2440627,1,'actor',NULL,'[\"Suk-gyu\"]'),(3845670,2987726,2,'actress',NULL,'[\"Hye-Sun\"]'),(3845670,3241804,3,'actor',NULL,'[\"Ki-woong\"]'),(3845670,5901828,4,'actor',NULL,'[\"Mr. Kim\"]'),(3845670,3613566,5,'director',NULL,NULL),(3845670,4830845,6,'producer','producer',NULL),(3845670,2446178,7,'producer','producer',NULL),(3845670,5471670,8,'actress',NULL,'[\"Volunteer\"]'),(3846674,505640,10,'producer','producer',NULL),(3846674,7093076,1,'actress',NULL,'[\"Lara Jean\"]'),(3846674,3170207,2,'actor',NULL,'[\"Peter\"]'),(3846674,663546,3,'actress',NULL,'[\"Margot\"]'),(3846674,8264172,4,'actress',NULL,'[\"Kitty\"]'),(3846674,426287,5,'director',NULL,NULL),(3846674,2531261,6,'writer','screenplay by',NULL),(3846674,6614229,7,'writer','based on the novel by',NULL),(3846674,6638723,8,'producer','producer',NULL),(3846674,1396390,9,'producer','producer',NULL),(3850214,2420926,10,'editor',NULL,NULL),(3850214,4271336,1,'actor',NULL,'[\"Malcolm\"]'),(3850214,1727825,2,'actor',NULL,'[\"Jib\"]'),(3850214,4169922,3,'actress',NULL,'[\"Diggy\"]'),(3850214,253708,4,'actress',NULL,'[\"Lisa Hayes\"]'),(3850214,266622,5,'director',NULL,NULL),(3850214,1341146,6,'producer','producer',NULL),(3850214,1845,7,'producer','producer',NULL),(3850214,1184901,8,'composer',NULL,NULL),(3850214,1121126,9,'cinematographer',NULL,NULL),(3850590,2100078,10,'producer','producer',NULL),(3850590,4395,1,'actor',NULL,'[\"Tom\"]'),(3850590,1057,2,'actress',NULL,'[\"Sarah\"]'),(3850590,462712,3,'actor',NULL,'[\"Howard\"]'),(3850590,2798112,4,'actress',NULL,'[\"Linda\"]'),(3850590,1002424,5,'director',NULL,NULL),(3850590,2591926,6,'writer','written by',NULL),(3850590,1296461,7,'writer','written by',NULL),(3850590,1247503,8,'producer','producer',NULL),(3850590,419169,9,'producer','producer',NULL),(3854234,994556,10,'producer','producer',NULL),(3854234,1166977,1,'actor',NULL,'[\"Marcelo Di Giovanni\"]'),(3854234,1886707,2,'actress',NULL,'[\"Nora (Secretaria del Juzgado)\"]'),(3854234,299078,3,'actor',NULL,'[\"Hermogenes Saldivar\"]'),(3854234,1173704,4,'actor',NULL,'[\"Fiscal\"]'),(3854234,994416,5,'director',NULL,NULL),(3854234,994500,6,'writer','written by',NULL),(3854234,1545566,7,'writer','story consultant',NULL),(3854234,1892590,8,'writer','novel',NULL),(3854234,647056,9,'writer','written by',NULL),(3856042,291997,10,'producer','producer',NULL),(3856042,1404824,1,'actress',NULL,'[\"Monica\"]'),(3856042,48687,2,'actress',NULL,'[\"Liz\"]'),(3856042,132301,3,'actor',NULL,'[\"Pierce\"]'),(3856042,332562,4,'actor',NULL,'[\"Dad\"]'),(3856042,134811,5,'director',NULL,NULL),(3856042,1103326,6,'writer','teleplay by',NULL),(3856042,2785000,7,'writer','teleplay by',NULL),(3856042,5208226,8,'writer','teleplay by',NULL),(3856042,934178,9,'writer','teleplay by',NULL),(3856638,2934722,10,'producer','producer',NULL),(3856638,1453891,1,'actor',NULL,'[\"Hajime Saito\"]'),(3856638,1591151,2,'actor',NULL,'[\"Additional Voices\"]'),(3856638,1364905,3,'actor',NULL,'[\"Heisuke Todo\"]'),(3856638,1480625,4,'actor',NULL,'[\"Susumu Yamazaki\",\"Additional Voices\"]'),(3856638,945717,5,'director',NULL,NULL),(3856638,12908458,6,'writer','screenplay',NULL),(3856638,8911664,7,'producer','producer',NULL),(3856638,5500358,8,'producer','producer',NULL),(3856638,8151551,9,'producer','producer',NULL),(3859272,4034667,10,'producer','producer',NULL),(3859272,6552202,1,'actress',NULL,'[\"Sadie Cunningham\"]'),(3859272,3381295,2,'actress',NULL,'[\"McKayla Hooper\"]'),(3859272,4425051,3,'actor',NULL,'[\"Jordan Welch\"]'),(3859272,243806,4,'actor',NULL,'[\"Lowell\"]'),(3859272,3225709,5,'director',NULL,NULL),(3859272,3273770,6,'writer',NULL,NULL),(3859272,6016499,7,'writer','based on an original screenplay by',NULL),(3859272,3875898,8,'producer','producer',NULL),(3859272,2352307,9,'producer','producer',NULL),(3859304,377606,10,'cinematographer',NULL,NULL),(3859304,1851981,1,'actress',NULL,'[\"Hope Ann Greggory\"]'),(3859304,170550,2,'actor',NULL,'[\"Stan Greggory\"]'),(3859304,4726634,3,'actress',NULL,'[\"Maggie Townsend\"]'),(3859304,3042755,4,'actor',NULL,'[\"Ben Lawfort\"]'),(3859304,1519252,5,'director',NULL,NULL),(3859304,3440862,6,'writer','co-writer',NULL),(3859304,1293297,7,'producer','producer',NULL),(3859304,1420126,8,'composer',NULL,NULL),(3859304,622474,9,'composer',NULL,NULL),(3862750,2140746,10,'producer','producer',NULL),(3862750,5125,1,'actress',NULL,'[\"Leah\"]'),(3862750,1013003,2,'actor',NULL,'[\"Carter\"]'),(3862750,4820,3,'actor',NULL,'[\"Dave\"]'),(3862750,129749,4,'actress',NULL,'[\"Evelyn\"]'),(3862750,1270033,5,'director',NULL,NULL),(3862750,568416,6,'writer','story by',NULL),(3862750,931862,7,'writer','screenplay',NULL),(3862750,2179966,8,'producer','producer',NULL),(3862750,1593077,9,'producer','producer',NULL),(3864056,2642389,10,'composer',NULL,NULL),(3864056,4625502,1,'actor',NULL,'[\"Young Theo Decker\"]'),(3864056,5052065,2,'actor',NULL,'[\"Adult Theo Decker\"]'),(3864056,173,3,'actress',NULL,'[\"Mrs. Barbour\"]'),(3864056,942482,4,'actor',NULL,'[\"Hobie\"]'),(3864056,1259871,5,'director',NULL,NULL),(3864056,1661186,6,'writer','screenplay by',NULL),(3864056,1535570,7,'writer','based on the novel by',NULL),(3864056,1749221,8,'producer','producer',NULL),(3864056,800922,9,'producer','producer',NULL),(3874544,1877,10,'composer',NULL,NULL),(3874544,285,1,'actor',NULL,'[\"Boss Baby\"]'),(3874544,114,2,'actor',NULL,'[\"Francis Francis\"]'),(3874544,453994,3,'actor',NULL,'[\"Dad\"]'),(3874544,1435,4,'actress',NULL,'[\"Mom\"]'),(3874544,569891,5,'director',NULL,NULL),(3874544,567112,6,'writer','written by',NULL),(3874544,2807682,7,'writer','based on the book by',NULL),(3874544,619820,8,'producer','producer',NULL),(3874544,2385360,9,'composer',NULL,NULL),(3877674,1028202,10,'cinematographer',NULL,NULL),(3877674,1399770,1,'actor',NULL,'[\"Gabriel\"]'),(3877674,586568,2,'actor',NULL,'[\"Elias\"]'),(3877674,509263,3,'actor',NULL,'[\"Gregor\"]'),(3877674,540038,4,'actor',NULL,'[\"Franz\"]'),(3877674,421314,5,'director',NULL,NULL),(3877674,536385,6,'producer','producer',NULL),(3877674,536410,7,'producer','producer',NULL),(3877674,48101,8,'composer',NULL,NULL),(3877674,433967,9,'composer',NULL,NULL),(3878542,796950,10,'writer','character created by: Superman',NULL),(3878542,276,1,'actor',NULL,'[\"Shazam\"]'),(3878542,206257,2,'actress',NULL,'[\"Wonder Woman\"]'),(3878542,277213,3,'actor',NULL,'[\"Green Lantern\"]'),(3878542,330913,4,'actor',NULL,'[\"The Flash\",\"Barry Allen\"]'),(3878542,2320725,5,'director',NULL,NULL),(3878542,1236620,6,'writer','written by',NULL),(3878542,424315,7,'writer','graphic novel',NULL),(3878542,7100009,8,'writer','graphic novel',NULL),(3878542,6907789,9,'writer','graphic novel',NULL),(3882074,8340690,1,'self',NULL,'[\"Self\"]'),(3882074,5397459,2,'actress',NULL,'[\"Narrator\"]'),(3882074,8648628,3,'self',NULL,'[\"Self\"]'),(3882074,6646390,4,'director',NULL,NULL),(3882074,4975709,5,'producer','producer',NULL),(3882074,2398958,6,'producer','producer',NULL),(3882074,4252508,7,'composer',NULL,NULL),(3882074,1108014,8,'cinematographer',NULL,NULL),(3882074,1825565,9,'editor',NULL,NULL),(3882082,742347,10,'producer','producer',NULL),(3882082,1659348,1,'actress',NULL,'[\"Greta Evans\"]'),(3882082,1140344,2,'actor',NULL,'[\"Malcolm\"]'),(3882082,3609439,3,'actor',NULL,'[\"Brahms Heelshire\"]'),(3882082,636235,4,'actor',NULL,'[\"Mr. Heelshire\"]'),(3882082,68587,5,'director',NULL,NULL),(3882082,3771577,6,'writer','written by',NULL),(3882082,73554,7,'producer','producer',NULL),(3882082,498175,8,'producer','producer',NULL),(3882082,524342,9,'producer','producer',NULL),(3887208,3371044,1,'actor',NULL,'[\"Ricky\"]'),(3887208,1632536,2,'actress',NULL,'[\"Claire\"]'),(3887208,3192168,3,'actor',NULL,'[\"Nitin\"]'),(3887208,6688164,4,'actor',NULL,'[\"Silver (VP of Strategic Initiatives)\"]'),(3887208,2251234,5,'director',NULL,NULL),(3887208,2302582,6,'producer','producer',NULL),(3887208,2037549,7,'producer','producer',NULL),(3887208,3232928,8,'composer',NULL,NULL),(3887208,2152458,9,'cinematographer','director of photography',NULL),(3890160,691084,10,'cinematographer','director of photography',NULL),(3890160,5052065,1,'actor',NULL,'[\"Baby\"]'),(3890160,1256532,2,'actor',NULL,'[\"Griff\"]'),(3890160,358316,3,'actor',NULL,'[\"Buddy\"]'),(3890160,2555462,4,'actress',NULL,'[\"Darling\"]'),(3890160,942367,5,'director',NULL,NULL),(3890160,79677,6,'producer','producer',NULL),(3890160,271479,7,'producer','producer',NULL),(3890160,661912,8,'producer','producer',NULL),(3890160,1888527,9,'composer',NULL,NULL),(3892172,385467,10,'composer',NULL,NULL),(3892172,5057169,1,'actress',NULL,'[\"Tom\"]'),(3892172,4936,2,'actor',NULL,'[\"Will\"]'),(3892172,9286880,3,'actor',NULL,'[\"Vet at VA\"]'),(3892172,9583795,4,'actor',NULL,'[\"Larry\"]'),(3892172,335138,5,'director',NULL,NULL),(3892172,1367893,6,'writer','screenplay by',NULL),(3892172,7161572,7,'writer','based on the novel \"My Abandonment\" by',NULL),(3892172,365478,8,'producer','producer',NULL),(3892172,718458,9,'producer','producer',NULL),(3893280,610219,10,'producer','producer',NULL),(3893280,1405398,1,'actor',NULL,'[\"James\"]'),(3893280,15196,2,'actress',NULL,'[\"Sam\"]'),(3893280,1624,3,'actor',NULL,'[\"Bob\"]'),(3893280,2628935,4,'actress',NULL,'[\"Jessica\"]'),(3893280,4099985,5,'director',NULL,NULL),(3893280,3429981,6,'writer','screenplay',NULL),(3893280,3894387,7,'producer','producer',NULL),(3893280,1224078,8,'producer','producer',NULL),(3893280,2397168,9,'producer','producer',NULL),(3896100,3137073,10,'writer','development and creative senior',NULL),(3896100,3274162,1,'actor',NULL,'[\"Richard Carson\"]'),(3896100,3657043,2,'actor',NULL,'[\"Richard Carson\"]'),(3896100,1043338,3,'actress',NULL,'[\"Amy González\"]'),(3896100,7600583,4,'actress',NULL,'[\"Mike Goldwing\"]'),(3896100,1955897,5,'director',NULL,NULL),(3896100,309027,6,'writer','escrita por',NULL),(3896100,529787,7,'writer','escrita por',NULL),(3896100,484475,8,'writer','escrita por',NULL),(3896100,25538,9,'writer',NULL,NULL),(3896198,4160687,10,'writer','Gamora and Drax created by',NULL),(3896198,695435,1,'actor',NULL,'[\"Peter Quill\",\"Star-Lord\"]'),(3896198,757855,2,'actress',NULL,'[\"Gamora\"]'),(3896198,1176985,3,'actor',NULL,'[\"Drax\"]'),(3896198,4874,4,'actor',NULL,'[\"Baby Groot\"]'),(3896198,348181,5,'director',NULL,NULL),(3896198,3966115,6,'writer','based on the Marvel comics by',NULL),(3896198,5037683,7,'writer','based on the Marvel comics by',NULL),(3896198,1921680,8,'writer','Star-Lord created by',NULL),(3896198,3053444,9,'writer','Star-Lord created by',NULL),(3896738,419436,10,'production_designer',NULL,NULL),(3896738,1134439,1,'actress',NULL,'[\"Evelyn White\"]'),(3896738,2913280,2,'actress',NULL,'[\"Vicki Maloney\"]'),(3896738,193135,3,'actor',NULL,'[\"John White\"]'),(3896738,692305,4,'actress',NULL,'[\"Maggie Maloney\"]'),(3896738,1587778,5,'director',NULL,NULL),(3896738,1651897,6,'producer','producer',NULL),(3896738,2350062,7,'composer',NULL,NULL),(3896738,2925759,8,'cinematographer',NULL,NULL),(3896738,1095937,9,'editor',NULL,NULL),(3899796,2244594,10,'cinematographer','director of photography',NULL),(3899796,5575,1,'actor',NULL,'[\"Fin Shepard\"]'),(3899796,5346,2,'actress',NULL,'[\"April Shepard\"]'),(3899796,2628561,3,'actress',NULL,'[\"Nova Clarke\"]'),(3899796,5260,4,'actor',NULL,'[\"Lucas Stevens\"]'),(3899796,3116,5,'director',NULL,NULL),(3899796,505736,6,'writer','written by',NULL),(3899796,490375,7,'producer','producer',NULL),(3899796,1700105,8,'composer',NULL,NULL),(3899796,725808,9,'composer',NULL,NULL),(3901340,2738138,1,'actor',NULL,'[\"Billy\"]'),(3901340,3397519,2,'actor',NULL,'[\"Chester\"]'),(3901340,1980137,3,'actor',NULL,'[\"Dr. Laurence Corman\"]'),(3901340,6666563,4,'actor',NULL,'[\"Georgie\"]'),(3901340,2320332,5,'director',NULL,NULL),(3901340,2433586,6,'cinematographer','co-director of photography',NULL),(3901340,3534101,7,'editor',NULL,NULL),(3901340,6666567,8,'production_designer',NULL,NULL),(3901340,3028403,9,'production_designer',NULL,NULL),(3901826,3304,10,'producer','producer',NULL),(3901826,4740113,1,'actress',NULL,'[\"Parvana\"]'),(3901826,6154971,2,'actress',NULL,'[\"Shauzia\"]'),(3901826,6225541,3,'actor',NULL,'[\"Idrees\",\"Sulayman\"]'),(3901826,755499,4,'actress',NULL,'[\"Fattema\",\"Old Woman\"]'),(3901826,1316072,5,'director',NULL,NULL),(3901826,1093036,6,'writer','screenplay',NULL),(3901826,6667085,7,'writer','screen story',NULL),(3901826,1479800,8,'producer','producer',NULL),(3901826,1119079,9,'producer','producer',NULL),(3904770,5781348,1,'actress',NULL,'[\"Shirley\"]'),(3904770,6669635,2,'actor',NULL,'[\"Jeison\"]'),(3904770,7559720,3,'actress',NULL,'[\"Avó\"]'),(3904770,10100374,4,'actor',NULL,'[\"Avó\"]'),(3904770,3486709,5,'director',NULL,NULL),(3904770,3599723,6,'writer','story',NULL),(3904770,4399773,7,'editor',NULL,NULL),(3904770,3810896,8,'editor',NULL,NULL),(3906082,912396,10,'composer',NULL,NULL),(3906082,1102577,1,'actress',NULL,'[\"Mary Shelley\"]'),(3906082,2525790,2,'actress',NULL,'[\"Claire Clairmont\"]'),(3906082,9494455,3,'actor',NULL,'[\"William Godwin\"]'),(3906082,296219,4,'actress',NULL,'[\"Mrs. Godwin\"]'),(3906082,2223783,5,'director',NULL,NULL),(3906082,3667303,6,'writer','written by',NULL),(3906082,1616124,7,'producer','producer',NULL),(3906082,2364176,8,'producer','producer',NULL),(3906082,597215,9,'producer','producer',NULL),(3907584,542551,10,'producer','producer',NULL),(3907584,1102577,1,'actress',NULL,'[\"Violet\"]'),(3907584,6819854,2,'actor',NULL,'[\"Finch\"]'),(3907584,3381295,3,'actress',NULL,'[\"Kate\"]'),(3907584,641290,4,'actress',NULL,'[\"Sheryl\"]'),(3907584,1417640,5,'director',NULL,NULL),(3907584,2274598,6,'writer','screenplay by',NULL),(3907584,2176283,7,'writer','screenplay by',NULL),(3907584,2636478,8,'producer','producer',NULL),(3907584,3125086,9,'producer','producer',NULL),(3908142,6231136,1,'actress',NULL,'[\"Elaine Parks\"]'),(3908142,661651,2,'actor',NULL,'[\"Wayne Peters\"]'),(3908142,3731645,3,'actress',NULL,'[\"Trish\"]'),(3908142,1323275,4,'actor',NULL,'[\"Griff Meadows\"]'),(3908142,82366,5,'director',NULL,NULL),(3908142,2470,6,'cinematographer',NULL,NULL),(3915174,1000113,10,'writer','additional screenplay material by',NULL),(3915174,104,1,'actor',NULL,'[\"Puss in Boots\"]'),(3915174,161,2,'actress',NULL,'[\"Kitty Softpaws\"]'),(3915174,2957490,3,'actor',NULL,'[\"Perrito\"]'),(3915174,6073955,4,'actress',NULL,'[\"Goldilocks\"]'),(3915174,3150455,5,'director',NULL,NULL),(3915174,2591093,6,'director','co-director',NULL),(3915174,279729,7,'writer','screenplay by',NULL),(3915174,842476,8,'writer','screenplay by',NULL),(3915174,1117226,9,'writer','story by',NULL),(3921852,2549381,10,'editor',NULL,NULL),(3921852,792198,1,'actress',NULL,'[\"Alexa\"]'),(3921852,6730265,2,'actress',NULL,'[\"Alexa\"]'),(3921852,1868320,3,'actress',NULL,'[\"Nori\"]'),(3921852,4306222,4,'actress',NULL,'[\"Romy\"]'),(3921852,1746859,5,'director',NULL,NULL),(3921852,389830,6,'writer','written by',NULL),(3921852,27178,7,'producer','producer',NULL),(3921852,1019013,8,'producer','producer',NULL),(3921852,460710,9,'composer',NULL,NULL),(3922798,2468967,10,'composer',NULL,NULL),(3922798,1946193,1,'actor',NULL,'[\"Patrick Quinlan\"]'),(3922798,782561,2,'actress',NULL,'[\"Madame LaFontagne\"]'),(3922798,835016,3,'actor',NULL,'[\"Conor Cruise O\'Brien\"]'),(3922798,675409,4,'actor',NULL,'[\"Dag Hammarskjold\"]'),(3922798,1100217,5,'director',NULL,NULL),(3922798,110778,6,'writer','screenplay',NULL),(3922798,7702379,7,'writer','based on the book by',NULL),(3922798,597215,8,'producer','producer',NULL),(3922798,1848253,9,'producer','producer',NULL),(3922818,677021,10,'cinematographer','director of photography',NULL),(3922818,198,1,'actor',NULL,'[\"Nathaniel Shepherd\"]'),(3922818,2633535,2,'actor',NULL,'[\"Gardner Elliot\"]'),(3922818,1303,3,'actress',NULL,'[\"Kendra Wyndham\"]'),(3922818,1429380,4,'actress',NULL,'[\"Tulsa\"]'),(3922818,155093,5,'director',NULL,NULL),(3922818,1615610,6,'writer','screenplay by',NULL),(3922818,771609,7,'writer','story by',NULL),(3922818,507669,8,'writer','story by',NULL),(3922818,516908,9,'composer',NULL,NULL),(3949660,881,10,'producer','producer',NULL),(3949660,1083271,1,'actress',NULL,'[\"April O\'Neil\"]'),(3949660,4715,2,'actor',NULL,'[\"Vernon Fenwick\"]'),(3949660,1347153,3,'actor',NULL,'[\"Baxter Stockman\"]'),(3949660,1473,4,'actress',NULL,'[\"Chief Vincent\"]'),(3949660,1757777,5,'director',NULL,NULL),(3949660,32227,6,'writer','written by',NULL),(3949660,625858,7,'writer','written by',NULL),(3949660,481990,8,'writer','based on the Teenage Mutant Ninja Turtles characters created by',NULL),(3949660,247653,9,'writer','based on the Teenage Mutant Ninja Turtles characters created by',NULL),(3953626,4465999,10,'composer',NULL,NULL),(3953626,1782299,1,'actress',NULL,'[\"Ellie\"]'),(3953626,4496875,2,'actress',NULL,'[\"Reno\"]'),(3953626,5203,3,'actress',NULL,'[\"Amanda\"]'),(3953626,1123709,4,'actor',NULL,'[\"Jack\"]'),(3953626,2459150,5,'director',NULL,NULL),(3953626,4218328,6,'writer','written by',NULL),(3953626,1868038,7,'producer','producer',NULL),(3953626,626697,8,'producer','producer',NULL),(3953626,8154709,9,'composer',NULL,NULL),(3958098,6705455,10,'composer',NULL,NULL),(3958098,1036,1,'actress',NULL,'[\"Anne\"]'),(3958098,6705452,2,'actress',NULL,'[\"Noeli\"]'),(3958098,6705453,3,'actor',NULL,'[\"Yeremi\"]'),(3958098,7741350,4,'actor',NULL,'[\"The Frenchman\"]'),(3958098,1738794,5,'director',NULL,NULL),(3958098,2191541,6,'director',NULL,NULL),(3958098,5204692,7,'writer','novel',NULL),(3958098,6705456,8,'composer',NULL,NULL),(3958098,6705454,9,'composer',NULL,NULL),(3958780,1386009,10,'cinematographer',NULL,NULL),(3958780,348152,1,'actress',NULL,'[\"Naomi Bishop\"]'),(3958780,700856,2,'actor',NULL,'[\"Michael Connor\"]'),(3958780,2353338,3,'actress',NULL,'[\"Erin Manning\"]'),(3958780,1130496,4,'actress',NULL,'[\"Samantha Ryan\"]'),(3958780,3652021,5,'director',NULL,NULL),(3958780,1470084,6,'writer','story by',NULL),(3958780,6592483,7,'composer',NULL,NULL),(3958780,3922307,8,'composer',NULL,NULL),(3958780,3307537,9,'composer',NULL,NULL),(3960412,1265901,10,'editor',NULL,NULL),(3960412,1676221,1,'actor',NULL,'[\"Conner\"]'),(3960412,1672246,2,'actor',NULL,'[\"Owen\"]'),(3960412,1676223,3,'actor',NULL,'[\"Lawrence\"]'),(3960412,798971,4,'actress',NULL,'[\"Paula\"]'),(3960412,31976,5,'producer','producer',NULL),(3960412,745247,6,'producer','producer',NULL),(3960412,2595269,7,'composer','composer',NULL),(3960412,1060930,8,'cinematographer',NULL,NULL),(3960412,22397,9,'editor',NULL,NULL),(3963816,298915,10,'producer','producer',NULL),(3963816,246,1,'actor',NULL,'[\"Hubert\"]'),(3963816,5221,2,'actor',NULL,'[\"Montgomery\"]'),(3963816,1176985,3,'actor',NULL,'[\"Stockwell\"]'),(3963816,4978,4,'actor',NULL,'[\"Wells\"]'),(3963816,1921345,5,'director',NULL,NULL),(3963816,6710963,6,'writer','written by',NULL),(3963816,1032754,7,'writer','written by',NULL),(3963816,2196261,8,'producer','producer',NULL),(3963816,256542,9,'producer','producer',NULL),(3966404,4219921,10,'cinematographer','director of photography',NULL),(3966404,7322143,1,'actress',NULL,'[\"Lale\"]'),(3966404,7322144,2,'actress',NULL,'[\"Nur\"]'),(3966404,7322145,3,'actress',NULL,'[\"Selma\"]'),(3966404,2379003,4,'actress',NULL,'[\"Ece\"]'),(3966404,2197025,5,'director',NULL,NULL),(3966404,1356951,6,'writer','written by',NULL),(3966404,318570,7,'producer','producer',NULL),(3966404,255145,8,'composer',NULL,NULL),(3966404,2166084,9,'cinematographer','director of photography',NULL),(3967856,1250070,10,'producer','producer',NULL),(3967856,842770,1,'actress',NULL,'[\"Lucy Mirando\",\"Nancy Mirando\"]'),(3967856,200452,2,'actor',NULL,'[\"Jay\"]'),(3967856,3673821,3,'actress',NULL,'[\"Mija\"]'),(3967856,350453,4,'actor',NULL,'[\"Johnny Wilcox\"]'),(3967856,94435,5,'director',NULL,NULL),(3967856,740160,6,'writer','screenplay by',NULL),(3967856,2127512,7,'producer','producer',NULL),(3967856,306890,8,'producer','producer',NULL),(3967856,2531690,9,'producer','producer',NULL),(3969208,1557329,1,'actress',NULL,'[\"Reese Donahue\"]'),(3969208,651067,2,'actress',NULL,'[\"Meredith\"]'),(3969208,308606,3,'actor',NULL,'[\"Jerry Peters\"]'),(3969208,1372721,4,'actor',NULL,'[\"Jonathan\"]'),(3969208,3719393,5,'director',NULL,NULL),(3969208,2715524,6,'producer','producer',NULL),(3969208,2568850,7,'composer',NULL,NULL),(3969208,6892406,8,'production_designer',NULL,NULL),(3971202,7144322,10,'actress',NULL,NULL),(3971202,7144316,1,'actress',NULL,NULL),(3971202,7144317,2,'actor',NULL,NULL),(3971202,7144318,3,'actress',NULL,NULL),(3971202,7144319,4,'actor',NULL,NULL),(3971202,146760,5,'director',NULL,NULL),(3971202,786733,6,'producer','producer',NULL),(3971202,927115,7,'producer','producer',NULL),(3971202,7144320,8,'actress',NULL,NULL),(3971202,7144321,9,'actor',NULL,NULL),(3973012,1578,1,'actress',NULL,'[\"Lila\"]'),(3973012,2611074,2,'actress',NULL,'[\"Simone\"]'),(3973012,750658,3,'actress',NULL,'[\"Grace\"]'),(3973012,30751,4,'actress',NULL,'[\"Josephine Walker\"]'),(3973012,1742910,5,'director',NULL,NULL),(3973012,3659547,6,'producer','producer',NULL),(3973012,2128585,7,'cinematographer',NULL,NULL),(3973012,2246549,8,'editor',NULL,NULL),(3973012,616575,9,'production_designer',NULL,NULL),(3977428,144470,10,'cinematographer',NULL,NULL),(3977428,6793763,1,'actress',NULL,'[\"Rita\"]'),(3977428,8253762,2,'actress',NULL,'[\"Sara\"]'),(3977428,2618913,3,'actor',NULL,'[\"Filipe\"]'),(3977428,527735,4,'actor',NULL,'[\"Pai\"]'),(3977428,1176219,5,'director',NULL,NULL),(3977428,723114,6,'writer',NULL,NULL),(3977428,13611,7,'producer','producer',NULL),(3977428,2245654,8,'producer','producer',NULL),(3977428,8362408,9,'composer',NULL,NULL),(3977462,2323821,10,'composer',NULL,NULL),(3977462,3132111,1,'actress',NULL,'[\"Ariana Berlin\"]'),(3977462,884,2,'actress',NULL,'[\"Coach Valorie Kondos-Field\"]'),(3977462,5162352,3,'actress',NULL,'[\"Isla Steponchev\"]'),(3977462,4329459,4,'actress',NULL,'[\"Michelle\"]'),(3977462,1439785,5,'director',NULL,NULL),(3977462,921043,6,'writer','written by',NULL),(3977462,2671751,7,'writer','story editor',NULL),(3977462,7970811,8,'writer','story editor',NULL),(3977462,1424693,9,'producer','executive producer',NULL),(3978720,66373,10,'composer',NULL,NULL),(3978720,2875233,1,'actor',NULL,'[\"Chris\"]'),(3978720,2208272,2,'actor',NULL,'[\"Adam\"]'),(3978720,3432881,3,'actor',NULL,'[\"Nick\"]'),(3978720,2516690,4,'actor',NULL,'[\"Ortu\"]'),(3978720,3300820,5,'director',NULL,NULL),(3978720,6721779,6,'writer',NULL,NULL),(3978720,5316693,7,'producer','producer',NULL),(3978720,5303360,8,'producer','producer',NULL),(3978720,5300281,9,'producer','producer',NULL),(3981858,2269668,10,'editor',NULL,NULL),(3981858,821113,1,'actor',NULL,'[\"Frank Koops\"]'),(3981858,1918947,2,'actress',NULL,'[\"Miriam Nohe\"]'),(3981858,1091185,3,'actor',NULL,'[\"Patrick Riemann\"]'),(3981858,1047726,4,'actor',NULL,'[\"Thomas Bartkowiak\"]'),(3981858,906114,5,'director',NULL,NULL),(3981858,772988,6,'writer',NULL,NULL),(3981858,1160770,7,'producer','producer',NULL),(3981858,39463,8,'composer',NULL,NULL),(3981858,70922,9,'cinematographer',NULL,NULL),(3983072,2683058,10,'production_designer',NULL,NULL),(3983072,3130003,1,'actress',NULL,'[\"Anna Bischoff\"]'),(3983072,100196,2,'actor',NULL,'[\"Dimitri\"]'),(3983072,269831,3,'actor',NULL,'[\"Franz\"]'),(3983072,3538758,4,'actress',NULL,'[\"Friederike\"]'),(3983072,1637776,5,'director',NULL,NULL),(3983072,1549110,6,'producer','producer',NULL),(3983072,6280,7,'composer',NULL,NULL),(3983072,1968411,8,'cinematographer',NULL,NULL),(3983072,688325,9,'editor',NULL,NULL),(3986820,4279838,10,'production_designer',NULL,NULL),(3986820,1823264,1,'actor',NULL,'[\"Aaron\"]'),(3986820,1918140,2,'actor',NULL,'[\"Justin\"]'),(3986820,5555747,3,'actress',NULL,'[\"Anna\"]'),(3986820,1693588,4,'actor',NULL,'[\"Hal\"]'),(3986820,8340357,5,'producer','producer',NULL),(3986820,2472482,6,'producer','producer',NULL),(3986820,3882076,7,'producer','producer',NULL),(3986820,1550279,8,'composer',NULL,NULL),(3986820,3488167,9,'editor',NULL,NULL),(3991412,2291582,10,'composer',NULL,NULL),(3991412,1946193,1,'actor',NULL,'[\"Dr. Allan Pascal\"]'),(3991412,4965754,2,'actor',NULL,'[\"Louis Drax\"]'),(3991412,300589,3,'actress',NULL,'[\"Natalie\"]'),(3991412,666739,4,'actor',NULL,'[\"Peter Drax\",\"Sea Monster\"]'),(3991412,14960,5,'director',NULL,NULL),(3991412,2542577,6,'writer','based on the novel by',NULL),(3991412,1540404,7,'writer','screenplay',NULL),(3991412,108618,8,'producer','producer',NULL),(3991412,932144,9,'producer','producer',NULL),(3992752,1124723,10,'composer',NULL,NULL),(3992752,51469,1,'self',NULL,'[\"Self\"]'),(3992752,4805,2,'self',NULL,'[\"Self\"]'),(3992752,2074204,3,'actor',NULL,NULL),(3992752,261435,4,'self',NULL,'[\"Self\"]'),(3992752,568796,5,'director',NULL,NULL),(3992752,1812566,6,'writer',NULL,NULL),(3992752,2296884,7,'writer',NULL,NULL),(3992752,375778,8,'writer',NULL,NULL),(3992752,1100912,9,'writer',NULL,NULL),(3993894,998342,10,'cinematographer','director of photography',NULL),(3993894,5253,1,'actress',NULL,'[\"Catherine\"]'),(3993894,2239702,2,'actress',NULL,'[\"Virginia\"]'),(3993894,297578,3,'actor',NULL,'[\"Rich\"]'),(3993894,2310589,4,'actor',NULL,'[\"James\"]'),(3993894,3504405,5,'director',NULL,NULL),(3993894,7032189,6,'producer','associate producer: Forager',NULL),(3993894,2860409,7,'producer','producer',NULL),(3993894,1846132,8,'producer','associate producer: Forager',NULL),(3993894,1548770,9,'composer',NULL,NULL),(4000768,1029845,10,'cinematographer',NULL,NULL),(4000768,973796,1,'actress',NULL,'[\"Esther\"]'),(4000768,99677,2,'actor',NULL,'[\"Raoul\"]'),(4000768,386542,3,'actor',NULL,'[\"Claude Weinstein\"]'),(4000768,75710,4,'actor',NULL,'[\"Simon\"]'),(4000768,546753,5,'director',NULL,NULL),(4000768,344467,6,'writer','screenplay',NULL),(4000768,3431390,7,'writer','screenplay',NULL),(4000768,6739313,8,'writer','original idea',NULL),(4000768,5667,9,'cinematographer',NULL,NULL),(4003440,1859287,10,'editor',NULL,NULL),(4003440,369,1,'actor',NULL,'[\"Jack\"]'),(4003440,4486,2,'actor',NULL,'[\"Verge\"]'),(4003440,235,3,'actress',NULL,'[\"Lady 1\"]'),(4003440,266441,4,'actress',NULL,'[\"Lady 2 (Claire Miller)\"]'),(4003440,1885,5,'director',NULL,NULL),(4003440,5008457,6,'writer','based on idea by',NULL),(4003440,895366,7,'producer','producer',NULL),(4003440,721432,8,'composer',NULL,NULL),(4003440,993994,9,'cinematographer','director of photography',NULL),(4003774,1149177,10,'editor',NULL,NULL),(4003774,6836141,1,'actor',NULL,'[\"The Bishop\"]'),(4003774,4351708,2,'actor',NULL,'[\"The Coach\"]'),(4003774,6836142,3,'actress',NULL,'[\"The Fighter\"]'),(4003774,6836140,4,'actor',NULL,'[\"The Humanitarian\"]'),(4003774,872316,5,'director',NULL,NULL),(4003774,6730257,6,'producer','producer',NULL),(4003774,136550,7,'composer',NULL,NULL),(4003774,2348101,8,'cinematographer',NULL,NULL),(4003774,6730259,9,'cinematographer',NULL,NULL),(4005402,246205,10,'composer',NULL,NULL),(4005402,914612,1,'actress',NULL,'[\"Lena\"]'),(4005402,117709,2,'actor',NULL,'[\"Daniel\"]'),(4005402,638824,3,'actor',NULL,'[\"Paul Schäfer\"]'),(4005402,137028,4,'actress',NULL,'[\"Gisela\"]'),(4005402,302780,5,'director',NULL,NULL),(4005402,6804048,6,'writer',NULL,NULL),(4005402,455780,7,'writer','additional script material by',NULL),(4005402,6791,8,'producer','producer',NULL),(4005402,825350,9,'producer','producer',NULL),(4006302,573710,10,'producer','producer',NULL),(4006302,3353780,1,'actress',NULL,'[\"Vivien\"]'),(4006302,4955588,2,'actress',NULL,'[\"Sophia\"]'),(4006302,3048050,3,'actress',NULL,'[\"Miss Brixil\"]'),(4006302,653660,4,'actor',NULL,'[\"Dr. Miro\"]'),(4006302,261629,5,'director',NULL,NULL),(4006302,1086155,6,'writer','story editor',NULL),(4006302,160942,7,'writer','story consultant',NULL),(4006302,1968074,8,'producer','producer',NULL),(4006302,1010393,9,'producer','executive producer',NULL),(4007248,3084347,10,'production_designer',NULL,NULL),(4007248,1004435,1,'actor',NULL,'[\"Richard Martinez\"]'),(4007248,8463815,2,'actress',NULL,'[\"Lola\"]'),(4007248,6345366,3,'actor',NULL,'[\"Freckly Boy\"]'),(4007248,1316418,4,'actor',NULL,'[\"Bailey\"]'),(4007248,4082120,5,'director',NULL,NULL),(4007248,1101381,6,'producer','producer',NULL),(4007248,900931,7,'composer',NULL,NULL),(4007248,1946731,8,'cinematographer',NULL,NULL),(4007248,4386577,9,'editor',NULL,NULL),(4009278,723450,10,'producer','producer',NULL),(4009278,191412,1,'actor',NULL,'[\"Dan Cooper\"]'),(4009278,3605836,2,'actress',NULL,'[\"Charlotte\"]'),(4009278,4477836,3,'actor',NULL,'[\"J.P. Henson\"]'),(4009278,3977251,4,'actor',NULL,'[\"Conrad\"]'),(4009278,2040169,5,'director',NULL,NULL),(4009278,4620383,6,'writer',NULL,NULL),(4009278,5020816,7,'writer',NULL,NULL),(4009278,342788,8,'producer','producer',NULL),(4009278,1752591,9,'producer','producer',NULL),(4010918,51917,10,'composer',NULL,NULL),(4010918,814280,1,'actor',NULL,'[\"King Yeongjo\"]'),(4010918,2584860,2,'actor',NULL,'[\"Crown Prince Sado\"]'),(4010918,1371529,3,'actress',NULL,'[\"Lady Hyegyeong\"]'),(4010918,1390122,4,'actress',NULL,'[\"Queen Inwon\"]'),(4010918,1045937,5,'director',NULL,NULL),(4010918,1435926,6,'writer','screenplay',NULL),(4010918,7768970,7,'writer','screenplay',NULL),(4010918,3099907,8,'writer','screenplay',NULL),(4010918,9461750,9,'producer','producer',NULL),(4016934,161200,10,'cinematographer',NULL,NULL),(4016934,1195119,1,'actress',NULL,'[\"Lady Hideko\"]'),(4016934,1978402,2,'actor',NULL,'[\"Count Fujiwara\"]'),(4016934,2437361,3,'actor',NULL,'[\"Uncle Kouzuki\"]'),(4016934,600668,4,'actress',NULL,'[\"Aunt of Lady Hideko\"]'),(4016934,661791,5,'director',NULL,NULL),(4016934,1258797,6,'writer','inspired by the novel \"Fingersmith\" by',NULL),(4016934,1941029,7,'writer','screenplay',NULL),(4016934,1367410,8,'producer','producer',NULL),(4016934,423280,9,'composer',NULL,NULL),(4026600,1806251,10,'production_designer',NULL,NULL),(4026600,2297708,1,'actor',NULL,'[\"Richard\"]'),(4026600,4501728,2,'actor',NULL,'[\"Khushtar\"]'),(4026600,4555856,3,'actor',NULL,'[\"Hamish\"]'),(4026600,3248732,4,'actor',NULL,'[\"William\"]'),(4026600,1014959,5,'director',NULL,NULL),(4026600,4063236,6,'producer','producer',NULL),(4026600,2202746,7,'composer',NULL,NULL),(4026600,575038,8,'cinematographer',NULL,NULL),(4026600,341772,9,'editor',NULL,NULL),(4028464,3163889,10,'cinematographer',NULL,NULL),(4028464,12248293,1,'actress',NULL,'[\"Ida\"]'),(4028464,12248294,2,'actress',NULL,'[\"Anna\"]'),(4028464,12248295,3,'actor',NULL,'[\"Ben\"]'),(4028464,12248296,4,'actress',NULL,'[\"Aisha\"]'),(4028464,1258777,5,'director',NULL,NULL),(4028464,2250929,6,'producer','producer',NULL),(4028464,1626587,7,'producer','co-producer',NULL),(4028464,527859,8,'producer','co-producer',NULL),(4028464,1743745,9,'composer',NULL,NULL),(4030600,3078928,10,'producer','producer',NULL),(4030600,808022,1,'actor',NULL,'[\"Elliot\"]'),(4030600,1620741,2,'actor',NULL,'[\"John\"]'),(4030600,6463103,3,'actress',NULL,'[\"Sasha\"]'),(4030600,873998,4,'actor',NULL,'[\"Virgil\"]'),(4030600,864468,5,'director',NULL,NULL),(4030600,672103,6,'writer','screenplay by',NULL),(4030600,6765196,7,'writer','based on \"The Bridge to Body Island\" by',NULL),(4030600,2551041,8,'producer','producer',NULL),(4030600,1006167,9,'producer','producer',NULL),(4034228,1016966,10,'producer','producer',NULL),(4034228,729,1,'actor',NULL,'[\"Lee Chandler\"]'),(4034228,931329,2,'actress',NULL,'[\"Randi Chandler\"]'),(4034228,151419,3,'actor',NULL,'[\"Joe Chandler\"]'),(4034228,2348627,4,'actor',NULL,'[\"Patrick\"]'),(4034228,518836,5,'director',NULL,NULL),(4034228,4568172,6,'producer','producer',NULL),(4034228,354,7,'producer','producer',NULL),(4034228,601031,8,'producer','producer',NULL),(4034228,6844518,9,'producer','producer',NULL),(4034354,1622973,10,'producer','producer',NULL),(4034354,200452,1,'actor',NULL,'[\"Hank\"]'),(4034354,705356,2,'actor',NULL,'[\"Manny\"]'),(4034354,935541,3,'actress',NULL,'[\"Sarah\"]'),(4034354,7708571,4,'actress',NULL,'[\"Crissie\"]'),(4034354,3453283,5,'director',NULL,NULL),(4034354,3215397,6,'director',NULL,NULL),(4034354,47419,7,'producer','producer',NULL),(4034354,1224078,8,'producer','producer',NULL),(4034354,2473652,9,'producer','producer',NULL),(4042818,4752699,10,'producer','producer',NULL),(4042818,3229685,1,'actor',NULL,'[\"John F. Donovan\"]'),(4042818,204,2,'actress',NULL,'[\"Sam Turner\"]'),(4042818,5016878,3,'actor',NULL,'[\"Rupert Turner\"]'),(4042818,215,4,'actress',NULL,'[\"Grace Donovan\"]'),(4042818,230859,5,'director',NULL,NULL),(4042818,862932,6,'writer','written by',NULL),(4042818,3119194,7,'producer','producer',NULL),(4042818,1045622,8,'producer','executive producer',NULL),(4042818,480972,9,'producer','producer',NULL),(4044364,2762905,10,'cinematographer',NULL,NULL),(4044364,5722984,1,'self',NULL,'[\"Self\"]'),(4044364,3390925,2,'self',NULL,'[\"Self\"]'),(4044364,5015568,3,'self',NULL,'[\"Self\"]'),(4044364,3335834,4,'self',NULL,'[\"Self\"]'),(4044364,688636,5,'director',NULL,NULL),(4044364,94850,6,'producer','producer',NULL),(4044364,934406,7,'producer','producer',NULL),(4044364,990310,8,'cinematographer',NULL,NULL),(4044364,6786039,9,'cinematographer',NULL,NULL),(4046784,1650412,10,'producer','producer',NULL),(4046784,3729721,1,'actor',NULL,'[\"Thomas\"]'),(4046784,2546012,2,'actress',NULL,'[\"Teresa\"]'),(4046784,1032473,3,'actor',NULL,'[\"Newt\"]'),(4046784,2064,4,'actor',NULL,'[\"Jorge\"]'),(4046784,1226871,5,'director',NULL,NULL),(4046784,2385905,6,'writer','screenplay by',NULL),(4046784,4212895,7,'writer','based upon the novel \"The Scorch Trials\" by',NULL),(4046784,2125212,8,'producer','producer',NULL),(4046784,324041,9,'producer','producer',NULL),(4048272,1709689,10,'editor',NULL,NULL),(4048272,1197689,1,'actress',NULL,'[\"Ines Conradi\"]'),(4048272,800638,2,'actor',NULL,'[\"Winfried\"]'),(4048272,937000,3,'actor',NULL,'[\"Henneberg\"]'),(4048272,2457436,4,'actor',NULL,'[\"Gerald\"]'),(4048272,11752,5,'director',NULL,NULL),(4048272,1548905,6,'producer','producer',NULL),(4048272,1464012,7,'producer','producer',NULL),(4048272,4752699,8,'producer','producer',NULL),(4048272,651005,9,'cinematographer',NULL,NULL),(4052882,554871,10,'cinematographer','director of photography',NULL),(4052882,515116,1,'actress',NULL,'[\"Nancy\"]'),(4052882,1049982,2,'actor',NULL,'[\"Carlos\"]'),(4052882,8395137,3,'actor',NULL,'[\"Surfer\"]'),(4052882,8238078,4,'actor',NULL,'[\"Surfer\"]'),(4052882,1429471,5,'director',NULL,NULL),(4052882,1097510,6,'writer','written by',NULL),(4052882,365036,7,'producer','producer',NULL),(4052882,1105713,8,'producer','producer',NULL),(4052882,1937,9,'composer',NULL,NULL),(4056574,317189,10,'cinematographer','director of photography',NULL),(4056574,421332,1,'actress',NULL,'[\"Agatha Raisin\"]'),(4056574,1051081,2,'actor',NULL,'[\"Dr Brendon Monk\"]'),(4056574,1328703,3,'actor',NULL,'[\"Roy Silver\"]'),(4056574,4736278,4,'actor',NULL,'[\"Danny Shine\"]'),(4056574,768249,5,'director',NULL,NULL),(4056574,1014429,6,'writer','based on the novel \"The Quiche of Death\" by',NULL),(4056574,362010,7,'writer','written by',NULL),(4056574,1787103,8,'producer','producer',NULL),(4056574,340003,9,'composer',NULL,NULL),(4056738,619585,10,'producer','producer',NULL),(4056738,227,1,'actress',NULL,'[\"Samantha\"]'),(4056738,276,2,'actor',NULL,'[\"Dr. Farell\"]'),(4056738,891786,3,'actress',NULL,'[\"Lacey\"]'),(4056738,569337,4,'actor',NULL,'[\"Matthew\"]'),(4056738,348197,5,'director',NULL,NULL),(4056738,465484,6,'writer','written by',NULL),(4056738,813301,7,'writer','written by',NULL),(4056738,1880561,8,'producer','producer',NULL),(4056738,368792,9,'producer','producer',NULL),(4060576,2355322,10,'cinematographer',NULL,NULL),(4060576,430,1,'actor',NULL,'[\"Colton West\"]'),(4060576,1604,2,'actress',NULL,'[\"Olivia West\"]'),(4060576,719606,3,'actor',NULL,'[\"Chris\"]'),(4060576,76167,4,'actor',NULL,'[\"Interrogator\"]'),(4060576,579079,5,'director',NULL,NULL),(4060576,1140089,6,'writer','written by',NULL),(4060576,4639862,7,'writer','written by',NULL),(4060576,2285209,8,'producer','producer',NULL),(4060576,725808,9,'composer',NULL,NULL),(4062536,1957540,10,'composer',NULL,NULL),(4062536,947338,1,'actor',NULL,'[\"Pat\"]'),(4062536,1782299,2,'actress',NULL,'[\"Amber\"]'),(4062536,790057,3,'actress',NULL,'[\"Sam\"]'),(4062536,1772,4,'actor',NULL,'[\"Darcy\"]'),(4062536,1099918,5,'director',NULL,NULL),(4062536,1965828,6,'producer','producer',NULL),(4062536,2098196,7,'producer','producer',NULL),(4062536,1507013,8,'producer','producer',NULL),(4062536,1298270,9,'composer',NULL,NULL),(4065552,855012,10,'producer','producer',NULL),(4065552,14247,1,'actor',NULL,'[\"Rokka\"]'),(4065552,2921197,2,'actor',NULL,'[\"Kariluoto\"]'),(4065552,1948103,3,'actor',NULL,'[\"Koskela\"]'),(4065552,1715025,4,'actor',NULL,'[\"Hietanen\"]'),(4065552,521803,5,'director',NULL,NULL),(4065552,513028,6,'writer','novels \"Tuntematon sotilas\", \"Sotaromaani\"',NULL),(4065552,1497250,7,'writer','screenplay',NULL),(4065552,973244,8,'producer','producer',NULL),(4065552,3461003,9,'producer','producer',NULL),(4069042,7393324,10,'composer',NULL,NULL),(4069042,5318036,1,'actress',NULL,'[\"Anna\"]'),(4069042,6800708,2,'actress',NULL,'[\"Melody\"]'),(4069042,6800707,3,'actor',NULL,'[\"Alastair\"]'),(4069042,6940704,4,'actress',NULL,'[\"Flatmate 2\"]'),(4069042,3293421,5,'director',NULL,NULL),(4069042,1924443,6,'writer',NULL,NULL),(4069042,5318010,7,'composer',NULL,NULL),(4069042,7393325,8,'composer',NULL,NULL),(4069042,7393322,9,'composer',NULL,NULL),(4073790,1818744,10,'composer',NULL,NULL),(4073790,3964350,1,'actress',NULL,'[\"Ruby Daly\"]'),(4073790,601553,2,'actress',NULL,'[\"Cate\"]'),(4073790,925966,3,'actor',NULL,'[\"President Gray\"]'),(4073790,6170168,4,'actor',NULL,'[\"Liam Stewart\"]'),(4073790,950775,5,'director',NULL,NULL),(4073790,1209925,6,'writer','screenplay by',NULL),(4073790,4428412,7,'writer','based upon the novel by',NULL),(4073790,1362282,8,'producer','producer',NULL),(4073790,506613,9,'producer','producer',NULL),(4074928,1967127,10,'cinematographer',NULL,NULL),(4074928,2772105,1,'actress',NULL,'[\"Naomi\"]'),(4074928,3433735,2,'actor',NULL,'[\"Marc Jarvis\"]'),(4074928,3114649,3,'actress',NULL,'[\"Elizabeth\"]'),(4074928,911395,4,'actor',NULL,'[\"West\"]'),(4074928,317834,5,'director',NULL,NULL),(4074928,1028742,6,'producer','producer',NULL),(4074928,3882588,7,'producer','producer',NULL),(4074928,896356,8,'producer','producer',NULL),(4074928,2227608,9,'composer',NULL,NULL),(4080768,2836875,10,'editor',NULL,NULL),(4080768,208426,1,'actress',NULL,'[\"Carole\"]'),(4080768,3495920,2,'actress',NULL,'[\"Delphine Benchiessa\"]'),(4080768,527852,3,'actress',NULL,'[\"Monique Benchiessa- la mère de Delphine\"]'),(4080768,174082,4,'actor',NULL,'[\"Maurice Benchiessa - le père de Delphine\"]'),(4080768,181117,5,'director',NULL,NULL),(4080768,689724,6,'writer',NULL,NULL),(4080768,1133968,7,'producer','producer',NULL),(4080768,1055564,8,'composer',NULL,NULL),(4080768,487700,9,'cinematographer',NULL,NULL),(4082644,4237592,10,'cinematographer',NULL,NULL),(4082644,700059,1,'actor',NULL,'[\"Jenkins\"]'),(4082644,5507967,2,'actress',NULL,'[\"Sian\"]'),(4082644,1544523,3,'actor',NULL,'[\"McDonald\"]'),(4082644,1378553,4,'actor',NULL,'[\"Steve Dennis\"]'),(4082644,1884065,5,'director',NULL,NULL),(4082644,6331625,6,'producer','producer',NULL),(4082644,518799,7,'producer','producer',NULL),(4082644,6313378,8,'composer',NULL,NULL),(4082644,6961996,9,'composer',NULL,NULL),(4084744,3051957,10,'producer','producer',NULL),(4084744,2099738,1,'actress',NULL,'[\"Lyudmila Pavlichenko\"]'),(4084744,1142921,2,'actor',NULL,'[\"Leonid Kitsenko\"]'),(4084744,890548,3,'actor',NULL,'[\"Makarov\"]'),(4084744,1649967,4,'actor',NULL,'[\"Boris\"]'),(4084744,596364,5,'director',NULL,NULL),(4084744,6815606,6,'writer',NULL,NULL),(4084744,6815608,7,'writer',NULL,NULL),(4084744,4859184,8,'writer',NULL,NULL),(4084744,6218684,9,'writer',NULL,NULL),(4085084,1780517,10,'editor',NULL,NULL),(4085084,774386,1,'actor',NULL,'[\"Vincent\"]'),(4085084,1208167,2,'actress',NULL,'[\"Jessie\"]'),(4085084,5524273,3,'actor',NULL,'[\"Denis\"]'),(4085084,7334568,4,'actor',NULL,'[\"Ali\"]'),(4085084,1356951,5,'director',NULL,NULL),(4085084,111379,6,'writer','in collaboration with',NULL),(4085084,1857335,7,'producer','producer',NULL),(4085084,6187995,8,'composer',NULL,NULL),(4085084,496055,9,'cinematographer',NULL,NULL),(4093680,2557473,10,'production_designer',NULL,NULL),(4093680,6822222,1,'actress',NULL,'[\"Stella\"]'),(4093680,1902099,2,'actress',NULL,'[\"Katja\"]'),(4093680,356625,3,'actress',NULL,'[\"Karin\"]'),(4093680,635419,4,'actor',NULL,'[\"Lasse\"]'),(4093680,1615371,5,'director',NULL,NULL),(4093680,2321850,6,'producer','producer',NULL),(4093680,4245021,7,'composer',NULL,NULL),(4093680,1590540,8,'cinematographer',NULL,NULL),(4093680,2408218,9,'editor',NULL,NULL),(4094724,1085924,10,'producer','producer',NULL),(4094724,342029,1,'actor',NULL,'[\"Leo Barnes\"]'),(4094724,593310,2,'actress',NULL,'[\"Senator Charlie Roan\"]'),(4094724,932112,3,'actor',NULL,'[\"Joe Dixon\"]'),(4094724,1928515,4,'actor',NULL,'[\"Marcos\"]'),(4094724,218621,5,'director',NULL,NULL),(4094724,881,6,'producer','producer',NULL),(4094724,89658,7,'producer','producer',NULL),(4094724,286320,8,'producer','producer',NULL),(4094724,298181,9,'producer','producer',NULL),(4104054,596495,10,'composer',NULL,NULL),(4104054,849214,1,'actor',NULL,'[\"Major Cunningham\"]'),(4104054,4095121,2,'actor',NULL,'[\"Lundt\"]'),(4104054,369854,3,'actor',NULL,'[\"Captain Meeks\"]'),(4104054,8193990,4,'actor',NULL,'[\"The Pigeon\"]'),(4104054,662529,5,'director',NULL,NULL),(4104054,566100,6,'writer','screenplay',NULL),(4104054,675126,7,'writer','based on characters created by',NULL),(4104054,188462,8,'writer','based on characters created by',NULL),(4104054,427827,9,'producer','producer',NULL),(4108134,504412,10,'actor',NULL,'[\"Professor Marcus Shaw\"]'),(4108134,924210,1,'actor',NULL,'[\"Danny\"]'),(4108134,5685205,2,'actor',NULL,'[\"Alex\"]'),(4108134,980,3,'actor',NULL,'[\"Scottie\"]'),(4108134,194152,4,'actress',NULL,'[\"Sara\"]'),(4108134,1602547,5,'writer','created by',NULL),(4108134,819087,6,'actress',NULL,'[\"Detective Taylor\"]'),(4108134,910040,7,'actress',NULL,'[\"Claire\"]'),(4108134,1086981,8,'actor',NULL,'[\"Pavel\"]'),(4108134,3355471,9,'actor',NULL,'[\"Danny\'s Lawyer\"]'),(4114744,12761107,10,'producer','co-producer',NULL),(4114744,4198135,1,'actress',NULL,'[\"Hatice\",\"Ayperi\"]'),(4114744,348347,2,'actor',NULL,'[\"Tarik\"]'),(4114744,2792064,3,'actor',NULL,'[\"Erhan\"]'),(4114744,406157,4,'actress',NULL,'[\"Yasli Ayperi\"]'),(4114744,1463981,5,'director',NULL,NULL),(4114744,11831302,6,'writer',NULL,NULL),(4114744,12426991,7,'writer','story',NULL),(4114744,4309251,8,'producer','producer',NULL),(4114744,1634779,9,'producer','producer',NULL),(4116284,4465847,10,'writer','screenplay by',NULL),(4116284,4715,1,'actor',NULL,'[\"Batman\",\"Bruce Wayne\"]'),(4116284,148418,2,'actor',NULL,'[\"Robin\",\"Dick Grayson\"]'),(4116284,206257,3,'actress',NULL,'[\"Batgirl\",\"Barbara Gordon\"]'),(4116284,146,4,'actor',NULL,'[\"Alfred Pennyworth\"]'),(4116284,3021,5,'director',NULL,NULL),(4116284,334381,6,'writer','screenplay by',NULL),(4116284,571344,7,'writer','screenplay by',NULL),(4116284,1273099,8,'writer','screenplay by',NULL),(4116284,2972864,9,'writer','screenplay by',NULL),(4120176,1376,1,'actress',NULL,'[\"Nathalie Chazeaux\"]'),(4120176,545838,2,'actor',NULL,'[\"Heinz\"]'),(4120176,1007411,3,'actor',NULL,'[\"Fabien\"]'),(4120176,778568,4,'actress',NULL,'[\"Yvette Lavastre\"]'),(4120176,361135,5,'director',NULL,NULL),(4120176,318570,6,'producer','producer',NULL),(4120176,3631,7,'cinematographer',NULL,NULL),(4120176,1520209,8,'editor',NULL,NULL),(4120176,1593894,9,'production_designer',NULL,NULL),(4123430,6133,10,'composer',NULL,NULL),(4123430,1519666,1,'actor',NULL,'[\"Newt Scamander\"]'),(4123430,2239702,2,'actress',NULL,'[\"Tina Goldstein\"]'),(4123430,283945,3,'actor',NULL,'[\"Jacob Kowalski\"]'),(4123430,136,4,'actor',NULL,'[\"Grindelwald\"]'),(4123430,946734,5,'director',NULL,NULL),(4123430,746830,6,'writer','written by',NULL),(4123430,382268,7,'producer','producer',NULL),(4123430,460141,8,'producer','producer',NULL),(4123430,927880,9,'producer','producer',NULL),(4123432,927880,10,'producer','producer',NULL),(4123432,1519666,1,'actor',NULL,'[\"Newt Scamander\"]'),(4123432,179,2,'actor',NULL,'[\"Albus Dumbledore\"]'),(4123432,3009232,3,'actor',NULL,'[\"Credence Barebone\"]'),(4123432,283945,4,'actor',NULL,'[\"Jacob Kowalski\"]'),(4123432,946734,5,'director',NULL,NULL),(4123432,746830,6,'writer','screenplay by',NULL),(4123432,460141,7,'writer','screenplay by',NULL),(4123432,382268,8,'producer','producer',NULL),(4123432,507815,9,'producer','producer',NULL),(4125300,3082170,10,'cinematographer',NULL,NULL),(4125300,1066974,1,'actress',NULL,'[\"Tetsuko Arisugawa (Alice)\"]'),(4125300,840551,2,'actress',NULL,'[\"Hana\"]'),(4125300,1354224,3,'actress',NULL,'[\"Kayo Arisugawa\"]'),(4125300,386217,4,'actor',NULL,'[\"Kuroyanagi Kenji\"]'),(4125300,412517,5,'director',NULL,NULL),(4125300,2055761,6,'producer','producer',NULL),(4125300,4810515,7,'producer','producer',NULL),(4125300,3910167,8,'producer','producer',NULL),(4125300,8195372,9,'producer','producer',NULL),(4126476,4799,10,'producer','producer',NULL),(4126476,6466214,1,'actress',NULL,'[\"Tessa Young\"]'),(4126476,2842005,2,'actor',NULL,'[\"Hardin Scott\"]'),(4126476,9982544,3,'actress',NULL,'[\"Steph\"]'),(4126476,4003553,4,'actor',NULL,'[\"Noah\"]'),(4126476,1788310,5,'director',NULL,NULL),(4126476,573185,6,'writer','screenplay by',NULL),(4126476,2309894,7,'writer','screenplay by',NULL),(4126476,79323,8,'writer','screenplay by',NULL),(4126476,6849771,9,'writer','based on the novel by',NULL),(4126568,5657902,10,'producer','producer',NULL),(4126568,3187567,1,'actor',NULL,'[\"Jeff Miller\"]'),(4126568,4263442,2,'actor',NULL,'[\"Josh Miller\"]'),(4126568,4728788,3,'actress',NULL,'[\"Megan Murphy\"]'),(4126568,5149187,4,'actor',NULL,'[\"Greg\"]'),(4126568,4726966,5,'director',NULL,NULL),(4126568,7072248,6,'writer','story by',NULL),(4126568,4677188,7,'producer','producer',NULL),(4126568,322811,8,'producer','producer',NULL),(4126568,3522169,9,'producer','producer',NULL),(4131800,269260,10,'writer','based on the television series created by',NULL),(4131800,1289434,1,'actress',NULL,'[\"Tempest Shadow\",\"Fizzlepop Berrytwist\"]'),(4131800,155693,2,'actress',NULL,'[\"Princess Skystar\"]'),(4131800,630,3,'actor',NULL,'[\"The Storm King\"]'),(4131800,671567,4,'actor',NULL,'[\"Grubber\"]'),(4131800,2149505,5,'director',NULL,NULL),(4131800,2436273,6,'writer','story by',NULL),(4131800,1298090,7,'writer','story by',NULL),(4131800,398763,8,'writer','screenplay by',NULL),(4131800,4232089,9,'writer','screenplay by',NULL),(4136084,6035,10,'composer',NULL,NULL),(4136084,658,1,'actress',NULL,'[\"Florence Foster Jenkins\"]'),(4136084,424,2,'actor',NULL,'[\"St Clair Bayfield\"]'),(4136084,374865,3,'actor',NULL,'[\"Cosmé McMoon\"]'),(4136084,272581,4,'actress',NULL,'[\"Kathleen\"]'),(4136084,1241,5,'director',NULL,NULL),(4136084,552842,6,'writer','written by',NULL),(4136084,12222824,7,'writer','written by',NULL),(4136084,474138,8,'producer','producer',NULL),(4136084,780870,9,'producer','producer',NULL),(4139124,413011,10,'composer',NULL,NULL),(4139124,1221047,1,'actor',NULL,'[\"Clarence Goobril\",\"Smoke Dresden\"]'),(4139124,1443502,2,'actor',NULL,'[\"Rell Williams\",\"Oil Dresden\"]'),(4139124,1840504,3,'actress',NULL,'[\"Hi-C\"]'),(4139124,541218,4,'actor',NULL,'[\"Cheddar\"]'),(4139124,1534595,5,'director',NULL,NULL),(4139124,4621803,6,'writer','written by',NULL),(4139124,1213782,7,'producer','producer',NULL),(4139124,1116986,8,'producer','producer',NULL),(4139124,2231417,9,'producer','producer',NULL),(4139588,330834,10,'producer','producer',NULL),(4139588,586568,1,'actor',NULL,'[\"Duncan Vizla\"]'),(4139588,1227814,2,'actress',NULL,'[\"Camille\"]'),(4139588,935395,3,'actress',NULL,'[\"Vivian\"]'),(4139588,6699375,4,'actress',NULL,'[\"Hilde\"]'),(4139588,959774,5,'director',NULL,NULL),(4139588,745343,6,'writer','screenplay by',NULL),(4139588,9853356,7,'writer','based on the Dark Horse graphic novel \"Polar: Came from the cold\" by',NULL),(4139588,13260492,8,'producer','producer',NULL),(4139588,93337,9,'producer','producer',NULL),(4139928,10350270,10,'editor','assistand editor',NULL),(4139928,2717565,1,'actor',NULL,'[\"Maula Jatt\"]'),(4139928,4493060,2,'actress',NULL,'[\"Mukkho Jatti\"]'),(4139928,3892419,3,'actress',NULL,'[\"Daaro Nattni\"]'),(4139928,4273857,4,'actor',NULL,'[\"Noori Natt\"]'),(4139928,2850440,5,'director',NULL,NULL),(4139928,11978,6,'writer','characters',NULL),(4139928,8698105,7,'producer','executive producer',NULL),(4139928,7421663,8,'producer','producer',NULL),(4139928,4592447,9,'composer',NULL,NULL),(4144190,5767,10,'cinematographer','director of photography',NULL),(4144190,1950086,1,'actress',NULL,'[\"Dawn Wiener\"]'),(4144190,7436998,2,'actor',NULL,'[\"Remi\"]'),(4144190,504832,3,'actor',NULL,'[\"Danny\"]'),(4144190,365,4,'actress',NULL,'[\"Dina\"]'),(4144190,1754,5,'director',NULL,NULL),(4144190,2691892,6,'producer','producer',NULL),(4144190,882927,7,'producer','producer',NULL),(4144190,489059,8,'composer',NULL,NULL),(4144190,1285596,9,'composer',NULL,NULL),(4144332,3546272,10,'composer',NULL,NULL),(4144332,3702160,1,'actress',NULL,'[\"Deidra Tanner\"]'),(4144332,3907105,2,'actress',NULL,'[\"Laney Tanner\"]'),(4144332,8279109,3,'actor',NULL,'[\"Jet Tanner\"]'),(4144332,630379,4,'actress',NULL,'[\"Marigold Tanner\"]'),(4144332,2978148,5,'director',NULL,NULL),(4144332,3441060,6,'writer','writer',NULL),(4144332,142134,7,'producer','producer',NULL),(4144332,595071,8,'producer','producer',NULL),(4144332,651366,9,'composer',NULL,NULL),(4145304,1384462,10,'editor',NULL,NULL),(4145304,1130627,1,'actress',NULL,'[\"Samantha Abbott\"]'),(4145304,2981082,2,'actor',NULL,'[\"John\"]'),(4145304,4713993,3,'actress',NULL,'[\"Jasmine\"]'),(4145304,1527,4,'actress',NULL,'[\"Carolyn\"]'),(4145304,1829290,5,'director',NULL,NULL),(4145304,4542300,6,'writer','writer',NULL),(4145304,1978398,7,'producer','producer',NULL),(4145304,1548770,8,'composer','composer',NULL),(4145304,2353188,9,'cinematographer',NULL,NULL),(4145324,3303482,10,'editor',NULL,NULL),(4145324,4806,1,'actress',NULL,'[\"Michelle Mulan\"]'),(4145324,4216406,2,'actor',NULL,'[\"Ryan Black\"]'),(4145324,4526291,3,'actress',NULL,'[\"Dara\"]'),(4145324,598282,4,'actor',NULL,'[\"Preston\"]'),(4145324,1714788,5,'director',NULL,NULL),(4145324,3226880,6,'writer','additional writing',NULL),(4145324,490375,7,'producer','producer',NULL),(4145324,1700105,8,'composer',NULL,NULL),(4145324,1149785,9,'cinematographer',NULL,NULL),(4150316,2057297,10,'editor',NULL,NULL),(4150316,799,1,'actor',NULL,'[\"Grandpa\"]'),(4150316,68166,2,'actor',NULL,'[\"Brody\"]'),(4150316,613748,3,'actor',NULL,'[\"Bob Purtle\",\"Kitchen Robot\"]'),(4150316,628236,4,'actor',NULL,'[\"Santa\"]'),(4150316,6981474,5,'director',NULL,NULL),(4150316,2754504,6,'writer',NULL,NULL),(4150316,635379,7,'producer','producer',NULL),(4150316,2494281,8,'producer','producer',NULL),(4150316,687497,9,'composer',NULL,NULL),(4153324,635103,10,'editor',NULL,NULL),(4153324,1935938,1,'actress',NULL,'[\"Minna Sundqvist\"]'),(4153324,442436,2,'actress',NULL,'[\"Katja\"]'),(4153324,1166638,3,'actor',NULL,'[\"Boris\"]'),(4153324,7774887,4,'actor',NULL,'[\"Christer Korsbäck\"]'),(4153324,2065321,5,'director',NULL,NULL),(4153324,2214994,6,'producer','producer',NULL),(4153324,1515685,7,'producer','producer',NULL),(4153324,1672707,8,'composer',NULL,NULL),(4153324,2225884,9,'cinematographer',NULL,NULL),(4154664,270559,10,'producer','producer',NULL),(4154664,488953,1,'actress',NULL,'[\"Carol Danvers\",\"Vers\",\"Captain Marvel\"]'),(4154664,168,2,'actor',NULL,'[\"Nick Fury\"]'),(4154664,578853,3,'actor',NULL,'[\"Talos\",\"Keller\"]'),(4154664,179,4,'actor',NULL,'[\"Yon-Rogg\"]'),(4154664,1349818,5,'director',NULL,NULL),(4154664,281396,6,'director',NULL,NULL),(4154664,4039044,7,'writer','screenplay by',NULL),(4154664,2270979,8,'writer','story by',NULL),(4154664,498834,9,'writer','story by',NULL),(4154756,456158,10,'writer','based on the Marvel comics by',NULL),(4154756,375,1,'actor',NULL,'[\"Tony Stark\",\"Iron Man\"]'),(4154756,1165110,2,'actor',NULL,'[\"Thor\"]'),(4154756,749263,3,'actor',NULL,'[\"Bruce Banner\",\"Hulk\"]'),(4154756,262635,4,'actor',NULL,'[\"Steve Rogers\",\"Captain America\"]'),(4154756,751577,5,'director',NULL,NULL),(4154756,751648,6,'director',NULL,NULL),(4154756,1321655,7,'writer','screenplay by',NULL),(4154756,1321656,8,'writer','screenplay by',NULL),(4154756,498278,9,'writer','based on the Marvel comics by',NULL),(4154796,456158,10,'writer','based on the Marvel comics by',NULL),(4154796,375,1,'actor',NULL,'[\"Tony Stark\",\"Iron Man\"]'),(4154796,262635,2,'actor',NULL,'[\"Steve Rogers\",\"Captain America\"]'),(4154796,749263,3,'actor',NULL,'[\"Bruce Banner\",\"Hulk\"]'),(4154796,1165110,4,'actor',NULL,'[\"Thor\"]'),(4154796,751577,5,'director',NULL,NULL),(4154796,751648,6,'director',NULL,NULL),(4154796,1321655,7,'writer','screenplay by',NULL),(4154796,1321656,8,'writer','screenplay by',NULL),(4154796,498278,9,'writer','based on the Marvel comics by',NULL),(4157510,3174513,10,'composer',NULL,NULL),(4157510,3170495,1,'actor',NULL,'[\"Vivek Pandit\"]'),(4157510,2692301,2,'actress',NULL,'[\"Shveta\"]'),(4157510,438496,3,'actor',NULL,'[\"Vishwanath Prabhu\"]'),(4157510,3451648,4,'actor',NULL,'[\"Amit\"]'),(4157510,5093086,5,'director',NULL,NULL),(4157510,6876620,6,'writer','writer',NULL),(4157510,3269642,7,'producer','producer',NULL),(4157510,3954547,8,'producer','producer',NULL),(4157510,1069446,9,'composer',NULL,NULL),(4158096,1124802,10,'cinematographer','director of photography',NULL),(4158096,1663205,1,'actor',NULL,'[\"Vernon\"]'),(4158096,488953,2,'actress',NULL,'[\"Justine\"]'),(4158096,2309517,3,'actor',NULL,'[\"Ord\"]'),(4158096,614165,4,'actor',NULL,'[\"Chris\"]'),(4158096,1296554,5,'director',NULL,NULL),(4158096,4207229,6,'writer','screenplay by',NULL),(4158096,823288,7,'producer','producer',NULL),(4158096,57856,8,'composer',NULL,NULL),(4158096,1367927,9,'composer',NULL,NULL),(4158876,1125431,10,'cinematographer','director of photography',NULL),(4158876,687146,1,'actor',NULL,'[\"David\"]'),(4158876,788340,2,'actress',NULL,'[\"Joanne\"]'),(4158876,925966,3,'actor',NULL,'[\"Norman\"]'),(4158876,2654829,4,'actress',NULL,'[\"Alexandra\"]'),(4158876,6287571,5,'director',NULL,NULL),(4158876,83851,6,'producer','producer',NULL),(4158876,4395,7,'producer','producer',NULL),(4158876,1133158,8,'producer','producer',NULL),(4158876,2341944,9,'composer',NULL,NULL),(4160708,1939549,10,'cinematographer','director of photography',NULL),(4160708,2332,1,'actor',NULL,'[\"The Blind Man\"]'),(4160708,3994408,2,'actress',NULL,'[\"Rocky\"]'),(4160708,1910255,3,'actor',NULL,'[\"Alex\"]'),(4160708,4683167,4,'actor',NULL,'[\"Money\"]'),(4160708,1793079,5,'director',NULL,NULL),(4160708,2140186,6,'writer','written by',NULL),(4160708,600,7,'producer','producer',NULL),(4160708,849964,8,'producer','producer',NULL),(4160708,63414,9,'composer',NULL,NULL),(4171032,3517154,1,'actress',NULL,'[\"Emily\"]'),(4171032,6888393,2,'actress',NULL,'[\"Emily Prime\"]'),(4171032,1846596,3,'actress',NULL,'[\"Simon\"]'),(4171032,381116,4,'director',NULL,NULL),(4171544,4680199,10,'composer',NULL,NULL),(4171544,1345685,1,'actor',NULL,'[\"Thomas\"]'),(4171544,4640846,2,'actor',NULL,'[\"Sied\"]'),(4171544,1644336,3,'actress',NULL,'[\"Freya\"]'),(4171544,1376997,4,'actor',NULL,'[\"Richard\"]'),(4171544,3281213,5,'director',NULL,NULL),(4171544,859049,6,'writer','characters',NULL),(4171544,2102207,7,'producer','producer',NULL),(4171544,4512566,8,'producer','producer',NULL),(4171544,722550,9,'producer','producer',NULL),(4172430,66244,10,'cinematographer','director of photography',NULL),(4172430,1024677,1,'actor',NULL,'[\"Jack Silva\"]'),(4172430,1032567,2,'actor',NULL,'[\"Kris \'Tanto\' Paronto\"]'),(4172430,197647,3,'actor',NULL,'[\"Tyrone \'Rone\' Woods\"]'),(4172430,219292,4,'actor',NULL,'[\"Dave \'Boon\' Benton\"]'),(4172430,881,5,'director',NULL,NULL),(4172430,2353561,6,'writer','screenplay',NULL),(4172430,4021083,7,'writer','book \"13 Hours\"',NULL),(4172430,831098,8,'producer','producer',NULL),(4172430,1154632,9,'composer',NULL,NULL),(4178092,1029112,10,'editor',NULL,NULL),(4178092,867,1,'actor',NULL,'[\"Simon\"]'),(4178092,356017,2,'actress',NULL,'[\"Robyn\"]'),(4178092,249291,3,'actor',NULL,'[\"Gordo\"]'),(4178092,2798112,4,'actress',NULL,'[\"Lucy\"]'),(4178092,89658,5,'producer','producer',NULL),(4178092,947344,6,'producer','producer',NULL),(4178092,3737483,7,'composer',NULL,NULL),(4178092,2450367,8,'composer',NULL,NULL),(4178092,1880996,9,'cinematographer',NULL,NULL),(4180032,1545296,10,'writer','screenplay by',NULL),(4180032,121026,1,'actress',NULL,'[\"Dr. Lauren Brunell\"]'),(4180032,640744,2,'actor',NULL,'[\"Andy Holliday\"]'),(4180032,683986,3,'actor',NULL,'[\"Henry Brunell\"]'),(4180032,3874997,4,'actress',NULL,'[\"Billie\"]'),(4180032,838289,5,'director',NULL,NULL),(4180032,770848,6,'writer','story by',NULL),(4180032,259821,7,'writer','story by',NULL),(4180032,55310,8,'writer','story by',NULL),(4180032,188500,9,'writer','story by',NULL),(4180560,953616,10,'composer',NULL,NULL),(4180560,291,1,'actress',NULL,'[\"Carol Walker\"]'),(4180560,99,2,'actress',NULL,'[\"Gillian Lieberman\"]'),(4180560,5031,3,'actress',NULL,'[\"Helen Halston\"]'),(4180560,388933,4,'actor',NULL,'[\"Daniel Lieberman\"]'),(4180560,161330,5,'director',NULL,NULL),(4180560,29125,6,'writer','screenplay by',NULL),(4180560,840015,7,'writer','based on the novel \'Whatever Makes You Happy\'',NULL),(4180560,4132650,8,'producer','producer',NULL),(4180560,776072,9,'producer','producer',NULL),(4183692,235948,10,'producer','producer',NULL),(4183692,6899488,1,'actor',NULL,'[\"Tony Nathan\"]'),(4183692,276,2,'actor',NULL,'[\"Hank\"]'),(4183692,685,3,'actor',NULL,'[\"Paul Bryant\"]'),(4183692,1367,4,'actor',NULL,'[\"Shorty\"]'),(4183692,3401779,5,'director',NULL,NULL),(4183692,2296528,6,'director',NULL,NULL),(4183692,8188756,7,'writer','book',NULL),(4183692,670266,8,'writer','written by',NULL),(4183692,8188757,9,'writer','book',NULL),(4191054,3946,10,'composer',NULL,NULL),(4191054,939697,1,'actress',NULL,'[\"Marianne\"]'),(4191054,445903,2,'actor',NULL,'[\"Sunny\"]'),(4191054,155693,3,'actress',NULL,'[\"Sugar Plum Fairy\"]'),(4191054,748973,4,'actress',NULL,'[\"Griselda\"]'),(4191054,3977,5,'director',NULL,NULL),(4191054,1183854,6,'writer','screenplay by',NULL),(4191054,575293,7,'writer','screenplay by',NULL),(4191054,184,8,'writer','story by',NULL),(4191054,588914,9,'producer','producer',NULL),(4191580,175423,10,'cinematographer',NULL,NULL),(4191580,258402,1,'actor',NULL,'[\"Carl Black\"]'),(4191580,1748489,2,'actress',NULL,'[\"Lorena\"]'),(4191580,5228245,3,'actor',NULL,'[\"Carl Jr.\"]'),(4191580,2620667,4,'actress',NULL,'[\"Allie\"]'),(4191580,1938064,5,'director',NULL,NULL),(4191580,1701420,6,'writer','written by',NULL),(4191580,1939331,7,'producer','producer',NULL),(4191580,570690,8,'producer','producer',NULL),(4191580,753526,9,'composer',NULL,NULL),(4191702,727307,10,'producer','producer',NULL),(4191702,152,1,'actor',NULL,'[\"Norman Oppenheimer\"]'),(4191702,38988,2,'actor',NULL,'[\"Micha Eshel\"]'),(4191702,790688,3,'actor',NULL,'[\"Phillip Cohen\"]'),(4191702,114,4,'actor',NULL,'[\"Rabbi Blumenthal\"]'),(4191702,147737,5,'director',NULL,NULL),(4191702,47419,6,'producer','producer',NULL),(4191702,1224078,7,'producer','producer',NULL),(4191702,541812,8,'producer','producer',NULL),(4191702,610219,9,'producer','producer',NULL),(4195368,1943705,10,'editor',NULL,NULL),(4195368,4134328,1,'actress',NULL,'[\"Sayaka Kudo\"]'),(4195368,5157050,2,'actress',NULL,'[\"Sayaka\'s friend Yui\"]'),(4195368,12886,3,'actor',NULL,'[\"Cram-school\'s president\"]'),(4195368,411682,4,'actor',NULL,'[\"Tsubota-Sensei\"]'),(4195368,2391552,5,'director',NULL,NULL),(4195368,368048,6,'writer','screenplay',NULL),(4195368,6835058,7,'writer','based on the novel by',NULL),(4195368,3990728,8,'composer',NULL,NULL),(4195368,5323427,9,'cinematographer',NULL,NULL),(4196450,2273444,10,'composer',NULL,NULL),(4196450,1676649,1,'actor',NULL,'[\"Nat Turner\"]'),(4196450,2309517,2,'actor',NULL,'[\"Samuel Turner\"]'),(4196450,542,3,'actress',NULL,'[\"Elizabeth Turner\"]'),(4196450,355097,4,'actor',NULL,'[\"Raymond Cobb\"]'),(4196450,7473774,5,'writer','story by',NULL),(4196450,4132650,6,'producer','producer',NULL),(4196450,317943,7,'producer','producer',NULL),(4196450,392008,8,'producer','producer',NULL),(4196450,1834530,9,'producer','producer',NULL),(4196776,1643824,10,'producer','producer',NULL),(4196776,354,1,'actor',NULL,'[\"Jason Bourne\"]'),(4196776,169,2,'actor',NULL,'[\"CIA Director Robert Dewey\"]'),(4196776,2539953,3,'actress',NULL,'[\"Heather Lee\"]'),(4196776,1993,4,'actor',NULL,'[\"Asset\"]'),(4196776,339030,5,'director',NULL,NULL),(4196776,2582,6,'writer','written by',NULL),(4196776,524924,7,'writer','based on characters created by',NULL),(4196776,329084,8,'producer','producer',NULL),(4196776,550881,9,'producer','producer',NULL),(4196848,813309,10,'producer','producer',NULL),(4196848,552,1,'actor',NULL,'[\"Henry Church\"]'),(4196848,1429380,2,'actress',NULL,'[\"Charlie\"]'),(4196848,1523,3,'actress',NULL,'[\"Marie\"]'),(4196848,1882152,4,'actor',NULL,'[\"Owen\"]'),(4196848,915,5,'director',NULL,NULL),(4196848,573185,6,'writer','written by',NULL),(4196848,2149164,7,'producer','producer',NULL),(4196848,4799,8,'producer','producer',NULL),(4196848,625540,9,'producer','producer',NULL),(4197642,2070021,10,'composer',NULL,NULL),(4197642,4881749,1,'actress',NULL,'[\"Mary\"]'),(4197642,5427601,2,'actress',NULL,'[\"Female Prison Guard\"]'),(4197642,566431,3,'actress',NULL,'[\"Suzanne\"]'),(4197642,107254,4,'actress',NULL,'[\"Nan\"]'),(4197642,1802381,5,'director',NULL,NULL),(4197642,2050907,6,'writer','written by',NULL),(4197642,2055297,7,'writer','play \"10 Dates with Mad Mary\"',NULL),(4197642,2278168,8,'producer','producer',NULL),(4197642,347384,9,'producer','producer',NULL),(4209788,1207404,10,'composer',NULL,NULL),(4209788,1567113,1,'actress',NULL,'[\"Molly Bloom\"]'),(4209788,252961,2,'actor',NULL,'[\"Charlie Jaffey\"]'),(4209788,126,3,'actor',NULL,'[\"Larry Bloom\"]'),(4209788,148418,4,'actor',NULL,'[\"Player X\"]'),(4209788,815070,5,'director',NULL,NULL),(4209788,6591098,6,'writer','based on the book by',NULL),(4209788,330428,7,'producer','producer',NULL),(4209788,5009883,8,'producer','producer',NULL),(4209788,1166871,9,'producer','producer',NULL),(4211044,2092886,1,'actress',NULL,'[\"Anna\"]'),(4211044,38690,2,'actress',NULL,'[\"Marion\"]'),(4211044,2073429,3,'actor',NULL,'[\"Brendan\"]'),(4211044,6555302,4,'actress',NULL,'[\"Fiona\"]'),(4211044,2074041,5,'director',NULL,NULL),(4211044,3034663,6,'producer','producer',NULL),(4211044,1302068,7,'cinematographer',NULL,NULL),(4211044,2509503,8,'production_designer',NULL,NULL),(4211680,6924005,1,'actress',NULL,NULL),(4211680,6924006,2,'actress',NULL,NULL),(4211680,4586621,3,'director',NULL,NULL),(4216934,818683,10,'producer','producer',NULL),(4216934,772609,1,'actress',NULL,'[\"Frau Müller\"]'),(4216934,230649,2,'actor',NULL,'[\"Wolf Heider\"]'),(4216934,257237,3,'actress',NULL,'[\"Jessica Höfel\"]'),(4216934,241222,4,'actor',NULL,'[\"Patrick Jeskow\"]'),(4216934,941811,5,'director',NULL,NULL),(4216934,6943463,6,'writer',NULL,NULL),(4216934,1139558,7,'writer',NULL,NULL),(4216934,2047699,8,'writer',NULL,NULL),(4216934,73316,9,'producer','producer',NULL),(4218572,1877,10,'composer',NULL,NULL),(4218572,205626,1,'actress',NULL,'[\"Veronica\"]'),(4218572,735442,2,'actress',NULL,'[\"Linda\"]'),(4218572,4456120,3,'actress',NULL,'[\"Alice\"]'),(4218572,2588606,4,'director',NULL,NULL),(4218572,5058839,5,'writer','screenplay by',NULL),(4218572,478852,6,'writer','based on \"Widows\" by',NULL),(4218572,2096617,7,'producer','producer',NULL),(4218572,586969,8,'producer','producer',NULL),(4218572,792431,9,'producer','producer',NULL),(4218696,1093951,1,'actor',NULL,'[\"Isaac\"]'),(4218696,1078479,2,'actor',NULL,'[\"Matthews\"]'),(4218696,1821298,3,'actor',NULL,'[\"Juba\"]'),(4218696,510731,4,'director',NULL,NULL),(4218696,3742281,5,'writer','written by',NULL),(4218696,1378004,6,'producer','producer',NULL),(4218696,1664042,7,'cinematographer',NULL,NULL),(4218696,2240723,8,'editor',NULL,NULL),(4218696,542802,9,'production_designer',NULL,NULL),(4225622,403397,10,'cinematographer','director of photography',NULL),(4225622,6237346,1,'actor',NULL,'[\"Cole\"]'),(4225622,3034977,2,'actress',NULL,'[\"Bee\"]'),(4225622,2064412,3,'actor',NULL,'[\"Max\"]'),(4225622,2443438,4,'actress',NULL,'[\"Sonya\"]'),(4225622,629334,5,'director',NULL,NULL),(4225622,3929259,6,'writer','written by',NULL),(4225622,1496779,7,'producer','producer',NULL),(4225622,899193,8,'producer','producer',NULL),(4225622,1884354,9,'composer',NULL,NULL),(4226388,3634536,10,'producer','producer',NULL),(4226388,4663937,1,'actress',NULL,'[\"Victoria\"]'),(4226388,1035643,2,'actor',NULL,'[\"Sonne\"]'),(4226388,4453291,3,'actor',NULL,'[\"Boxer\"]'),(4226388,2916919,4,'actor',NULL,'[\"Blinker\"]'),(4226388,771923,5,'director',NULL,NULL),(4226388,4302809,6,'writer','story',NULL),(4226388,5457972,7,'writer','story',NULL),(4226388,4201170,8,'producer','producer',NULL),(4226388,6936276,9,'producer','producer',NULL),(4235644,5003154,10,'writer','screenplay',NULL),(4235644,1727020,1,'actor',NULL,'[\"Additional Voices\"]'),(4235644,83170,2,'actor',NULL,'[\"L\'Uno\"]'),(4235644,1198959,3,'actor',NULL,'[\"Frederick Burnaby\"]'),(4235644,96651,4,'actor',NULL,'[\"Alexei Karamazov\"]'),(4235644,2606944,5,'director',NULL,NULL),(4235644,6376179,6,'writer','based on the novel by',NULL),(4235644,6943420,7,'writer','based on the novel by',NULL),(4235644,1392363,8,'writer','screenplay',NULL),(4235644,1823354,9,'writer','screenplay',NULL),(4238858,1838658,10,'cinematographer',NULL,NULL),(4238858,7513399,1,'actress',NULL,'[\"Toni\"]'),(4238858,7513400,2,'actress',NULL,'[\"Beezy\"]'),(4238858,7513401,3,'actor',NULL,'[\"Jermaine\"]'),(4238858,7839130,4,'actress',NULL,'[\"Maia\"]'),(4238858,2326407,5,'director',NULL,NULL),(4238858,5516767,6,'writer','story by',NULL),(4238858,2417783,7,'writer','story by',NULL),(4238858,3737483,8,'composer',NULL,NULL),(4238858,2450367,9,'composer',NULL,NULL),(4244994,1016966,10,'producer','producer',NULL),(4244994,354,1,'actor',NULL,'[\"Sir Jean de Carrouges\"]'),(4244994,3485845,2,'actor',NULL,'[\"Jacques Le Gris\"]'),(4244994,3069650,3,'actress',NULL,'[\"Marguerite de Carrouges\"]'),(4244994,910040,4,'actress',NULL,'[\"Nicole de Carrouges\"]'),(4244994,631,5,'director',NULL,NULL),(4244994,392237,6,'writer','screenplay by',NULL),(4244994,255,7,'writer','screenplay by',NULL),(4244994,2479100,8,'writer','based upon the book by',NULL),(4244994,289048,9,'producer','producer',NULL),(4244998,345116,10,'cinematographer','director of photography',NULL),(4244998,2240346,1,'actor',NULL,'[\"Keda\"]'),(4244998,1778512,2,'actor',NULL,'[\"Tau\"]'),(4244998,5105099,3,'actor',NULL,'[\"Sigma\"]'),(4244998,401638,4,'actor',NULL,'[\"Xi\"]'),(4244998,400436,5,'director',NULL,NULL),(4244998,4470029,6,'writer','screenplay by',NULL),(4244998,739868,7,'producer','producer',NULL),(4244998,213358,8,'composer',NULL,NULL),(4244998,824195,9,'composer',NULL,NULL),(4247682,2584117,1,'actress',NULL,'[\"Nancy\"]'),(4247682,5298237,2,'actress',NULL,'[\"Daniela\"]'),(4247682,4840973,3,'actress',NULL,'[\"Dead Woman\"]'),(4247682,5611803,4,'actress',NULL,'[\"Gem\"]'),(4247682,3332230,5,'producer','producer',NULL),(4247682,4952626,6,'producer','producer',NULL),(4247682,1715718,7,'composer',NULL,NULL),(4247682,842371,8,'cinematographer',NULL,NULL),(4247740,2637971,1,'actress',NULL,'[\"Erica Dunn\"]'),(4247740,6952259,2,'actor',NULL,'[\"Milton Dunn\"]'),(4247740,788578,3,'actress',NULL,'[\"Viki Dunn\"]'),(4247740,3690275,4,'actress',NULL,'[\"Eve Dunn\"]'),(4247740,2417204,5,'director',NULL,NULL),(4247740,1354576,6,'producer','producer',NULL),(4247740,2417959,7,'composer',NULL,NULL),(4247740,6952261,8,'composer',NULL,NULL),(4255304,4110183,10,'composer',NULL,NULL),(4255304,690803,1,'actor',NULL,'[\"Daniel Carter\"]'),(4255304,920564,2,'actor',NULL,'[\"Dr. Richard Powell\"]'),(4255304,2771798,3,'actress',NULL,'[\"Kim\"]'),(4255304,1182008,4,'actress',NULL,'[\"Allison Fraser\"]'),(4255304,2860882,5,'director',NULL,NULL),(4255304,2725627,6,'director',NULL,NULL),(4255304,5558225,7,'producer','producer',NULL),(4255304,1043587,8,'producer','producer',NULL),(4255304,6822247,9,'composer',NULL,NULL),(4257940,816817,10,'editor',NULL,NULL),(4257940,4753,1,'actress',NULL,'[\"Libby Moran\"]'),(4257940,241049,2,'actor',NULL,'[\"James O\'Connor\"]'),(4257940,4887,3,'actress',NULL,'[\"Aunt Jean\"]'),(4257940,7257831,4,'actress',NULL,'[\"Sunshine\"]'),(4257940,907328,5,'director',NULL,NULL),(4257940,6959883,6,'writer','novel',NULL),(4257940,2850112,7,'producer','producer',NULL),(4257940,2901358,8,'composer',NULL,NULL),(4257940,1723971,9,'cinematographer','director of photography',NULL),(4258698,782752,10,'production_designer',NULL,NULL),(4258698,1754366,1,'actress',NULL,'[\"Michelle Robinson\"]'),(4258698,4554036,2,'actor',NULL,'[\"Barack Obama\"]'),(4258698,68599,3,'actress',NULL,'[\"Marian Robinson\"]'),(4258698,887363,4,'actor',NULL,'[\"Fraser Robinson III\"]'),(4258698,1973681,5,'director',NULL,NULL),(4258698,854052,6,'producer','producer',NULL),(4258698,853200,7,'composer',NULL,NULL),(4258698,3156166,8,'cinematographer',NULL,NULL),(4258698,771472,9,'editor',NULL,NULL),(4259780,5506211,1,'actor',NULL,'[\"Gabriel\"]'),(4259780,5668454,2,'actor',NULL,'[\"Maurílio\"]'),(4259780,5668997,3,'director',NULL,NULL),(4262174,2011980,10,'cinematographer',NULL,NULL),(4262174,3871647,1,'actress',NULL,'[\"Anne Smith\"]'),(4262174,6552202,2,'actress',NULL,'[\"Sasha Basanez\"]'),(4262174,2062698,3,'actor',NULL,'[\"Clifton Martinez\"]'),(4262174,781899,4,'actress',NULL,'[\"Sharon Sacopulos\"]'),(4262174,2596636,5,'director',NULL,NULL),(4262174,1093570,6,'producer','producer',NULL),(4262174,1649636,7,'producer','producer',NULL),(4262174,3819444,8,'producer','producer',NULL),(4262174,1067825,9,'composer',NULL,NULL),(4262980,6760748,10,'producer','producer',NULL),(4262980,4056296,1,'actor',NULL,'[\"Rando Yaguchi\"]'),(4262980,847570,2,'actor',NULL,'[\"Hideki Akasaka\"]'),(4262980,1595000,3,'actress',NULL,'[\"Kayoko Ann Patterson\"]'),(4262980,652592,4,'actor',NULL,'[\"Prime Minister Seiji Okochi\"]'),(4262980,30417,5,'director',NULL,NULL),(4262980,383688,6,'director','co-director',NULL),(4262980,926075,7,'writer',NULL,NULL),(4262980,3870145,8,'producer','producer',NULL),(4262980,4956083,9,'producer','producer',NULL),(4263482,1082606,10,'producer','producer',NULL),(4263482,5896355,1,'actress',NULL,'[\"Thomasin\"]'),(4263482,408591,2,'actor',NULL,'[\"William\"]'),(4263482,225483,3,'actress',NULL,'[\"Katherine\"]'),(4263482,724995,4,'actor',NULL,'[\"Governor\"]'),(4263482,3211470,5,'director',NULL,NULL),(4263482,1764941,6,'producer','producer',NULL),(4263482,1185381,7,'producer','producer',NULL),(4263482,2106218,8,'producer','producer',NULL),(4263482,2095560,9,'producer','producer',NULL),(4264406,5662437,1,'actor',NULL,'[\"Actor\"]'),(4264406,392517,2,'director',NULL,NULL),(4264406,726442,3,'composer',NULL,NULL),(4264406,565323,4,'cinematographer',NULL,NULL),(4264406,1086151,5,'cinematographer',NULL,NULL),(4264406,2382856,6,'editor',NULL,NULL),(4265878,771034,10,'composer',NULL,NULL),(4265878,6783988,1,'actress',NULL,'[\"Dora\"]'),(4265878,771739,2,'actress',NULL,'[\"Kristin\"]'),(4265878,1955257,3,'actor',NULL,'[\"Peter\"]'),(4265878,1747674,4,'actor',NULL,'[\"Felix\"]'),(4265878,921262,5,'director',NULL,NULL),(4265878,7219957,6,'writer','play',NULL),(4265878,6966629,7,'writer',NULL,NULL),(4265878,462347,8,'producer','producer',NULL),(4265878,759848,9,'producer','producer',NULL),(4270492,218810,10,'actor',NULL,'[\"Chuck Rhoades, Sr.\"]'),(4270492,316079,1,'actor',NULL,'[\"Chuck Rhoades\"]'),(4270492,507073,2,'actor',NULL,'[\"Bobby Axelrod\"]'),(4270492,1745019,3,'actress',NULL,'[\"Wendy Rhoades\"]'),(4270492,182345,4,'actor',NULL,'[\"Mike \'Wags\' Wagner\"]'),(4270492,2718,5,'writer','created by',NULL),(4270492,505522,6,'writer','created by',NULL),(4270492,3376444,7,'writer','created by',NULL),(4270492,3568698,8,'actress',NULL,'[\"Kate Sacker\"]'),(4270492,4168755,9,'actor',NULL,'[\"Ben Kim\"]'),(4270516,1309722,10,'cinematographer',NULL,NULL),(4270516,5499,1,'actress',NULL,'[\"Elle\"]'),(4270516,3400186,2,'actress',NULL,'[\"Sage\"]'),(4270516,1315,3,'actress',NULL,'[\"Judy\"]'),(4270516,339460,4,'actress',NULL,'[\"Olivia\"]'),(4270516,919369,5,'director',NULL,NULL),(4270516,234806,6,'producer','producer',NULL),(4270516,2673579,7,'producer','producer',NULL),(4270516,583948,8,'producer','producer',NULL),(4270516,3669779,9,'composer',NULL,NULL),(4273292,7876251,10,'composer',NULL,NULL),(4273292,1735235,1,'actress',NULL,'[\"Shideh\"]'),(4273292,7321254,2,'actress',NULL,'[\"Dorsa\"]'),(4273292,2373989,3,'actor',NULL,'[\"Iraj\"]'),(4273292,4256281,4,'actor',NULL,'[\"Dr. Reza\"]'),(4273292,2035118,5,'director',NULL,NULL),(4273292,5001743,6,'producer','producer',NULL),(4273292,2020419,7,'producer','producer',NULL),(4273292,4347055,8,'producer','producer',NULL),(4273292,4011317,9,'composer',NULL,NULL),(4273562,1055596,10,'composer','main composer',NULL),(4273562,443562,1,'actor',NULL,'[\"Yugi Muto\",\"Yami Yugi\"]'),(4273562,1328859,2,'actor',NULL,'[\"Seto Kaiba\"]'),(4273562,969153,3,'actor',NULL,'[\"Tristan Taylor\"]'),(4273562,8755384,4,'actor',NULL,'[\"Kaiba Corp Engineer\"]'),(4273562,476663,5,'director',NULL,NULL),(4273562,1444457,6,'writer','creator',NULL),(4273562,8733387,7,'writer','script',NULL),(4273562,11943485,8,'producer','producer',NULL),(4273562,1243973,9,'composer',NULL,NULL),(4273800,413182,10,'producer','producer',NULL),(4273800,1519666,1,'actor',NULL,'[\"Charlie Cullen\"]'),(4273800,1567113,2,'actress',NULL,'[\"Amy Loughren\"]'),(4273800,3236205,3,'actress',NULL,'[\"Nurse 1\"]'),(4273800,2869419,4,'actor',NULL,'[\"Nurse 2\"]'),(4273800,2105585,5,'director',NULL,NULL),(4273800,5656572,6,'writer','based on the book by',NULL),(4273800,4880670,7,'writer','screenplay by',NULL),(4273800,4716,8,'producer','producer',NULL),(4273800,291542,9,'producer','producer',NULL),(4277264,522046,10,'composer',NULL,NULL),(4277264,9066973,1,'actor',NULL,'[\"Marwann\"]'),(4277264,4422007,2,'actress',NULL,'[\"Sygrid\"]'),(4277264,44073,3,'actress',NULL,'[\"Samia\"]'),(4277264,346363,4,'actor',NULL,'[\"Moncef\"]'),(4277264,2806105,5,'director',NULL,NULL),(4277264,3619993,6,'writer','screenplay',NULL),(4277264,766635,7,'writer','screenplay',NULL),(4277264,233295,8,'producer','producer',NULL),(4277264,2386524,9,'producer','producer',NULL),(4281724,3957052,1,'actress',NULL,'[\"Tara\"]'),(4281724,5394181,2,'actress',NULL,'[\"Victoria\"]'),(4281724,7476686,3,'actor',NULL,'[\"Art the Clown\"]'),(4281724,3313554,4,'actress',NULL,'[\"Dawn\"]'),(4281724,2093171,5,'director',NULL,NULL),(4281724,5910626,6,'producer','producer',NULL),(4281724,4058030,7,'producer','producer',NULL),(4281724,4626454,8,'composer',NULL,NULL),(4287320,508732,10,'cinematographer','director of photography',NULL),(4287320,914612,1,'actress',NULL,'[\"Mae\"]'),(4287320,158,2,'actor',NULL,'[\"Bailey\"]'),(4287320,3915784,3,'actor',NULL,'[\"Ty\"]'),(4287320,1294664,4,'actor',NULL,'[\"Mercer\"]'),(4287320,1242054,5,'director',NULL,NULL),(4287320,1101630,6,'writer','screenplay by',NULL),(4287320,106835,7,'producer','producer',NULL),(4287320,324556,8,'producer','producer',NULL),(4287320,384,9,'composer',NULL,NULL),(4291590,2714513,10,'producer','producer',NULL),(4291590,5517798,1,'actress',NULL,'[\"Nurse\"]'),(4291590,6996153,2,'actor',NULL,'[\"Nicolas\"]'),(4291590,3646923,3,'actress',NULL,'[\"Stella\"]'),(4291590,663139,4,'actress',NULL,'[\"La mère\"]'),(4291590,352968,5,'director',NULL,NULL),(4291590,1419321,6,'writer',NULL,NULL),(4291590,3563262,7,'writer','in collaboration with',NULL),(4291590,380178,8,'producer','producer',NULL),(4291590,3163166,9,'producer','producer',NULL),(4298958,352836,10,'composer',NULL,NULL),(4298958,452817,1,'actress',NULL,'[\"Tokue\"]'),(4298958,619185,2,'actor',NULL,'[\"Sentarô\"]'),(4298958,3887352,3,'actress',NULL,'[\"Wakana\"]'),(4298958,594684,4,'actress',NULL,'[\"Wakana\'s Mother\"]'),(4298958,442905,5,'director',NULL,NULL),(4298958,4464972,6,'writer','based on the novel by',NULL),(4298958,5508647,7,'producer','producer',NULL),(4298958,7717593,8,'producer','producer',NULL),(4298958,1980385,9,'producer','producer',NULL),(4298966,1860203,10,'producer','producer',NULL),(4298966,891786,1,'actress',NULL,'[\"Camille\"]'),(4298966,2155525,2,'actor',NULL,'[\"Will LaSalle\"]'),(4298966,5045014,3,'actress',NULL,'[\"Poppy\"]'),(4298966,1334,4,'actor',NULL,'[\"John LaSalle\"]'),(4298966,2572627,5,'director',NULL,NULL),(4298966,2716769,6,'writer','writer',NULL),(4298966,1292366,7,'producer','producer',NULL),(4298966,4190421,8,'producer','producer',NULL),(4298966,3995382,9,'producer','producer',NULL),(4299406,1247772,10,'producer','producer',NULL),(4299406,684840,1,'actress',NULL,'[\"Rosa\"]'),(4299406,658077,2,'actor',NULL,'[\"Mario\"]'),(4299406,5716139,3,'actress',NULL,'[\"Ana\"]'),(4299406,3260926,4,'actor',NULL,'[\"Duca\"]'),(4299406,2050522,5,'director',NULL,NULL),(4299406,1985797,6,'writer','screenplay',NULL),(4299406,1898009,7,'writer','screenplay',NULL),(4299406,2092942,8,'writer','based on play',NULL),(4299406,53070,9,'producer','producer',NULL),(4302938,547050,10,'composer',NULL,NULL),(4302938,234,1,'actress',NULL,'[\"Mother\"]'),(4302938,3280686,2,'actor',NULL,'[\"Kubo\"]'),(4302938,190,3,'actor',NULL,'[\"Beetle\"]'),(4302938,146,4,'actor',NULL,'[\"Moon King\"]'),(4302938,1325899,5,'director',NULL,NULL),(4302938,1199351,6,'writer','screenplay by',NULL),(4302938,2752098,7,'writer','screenplay by',NULL),(4302938,1306819,8,'writer','story by',NULL),(4302938,1750312,9,'producer','producer',NULL),(4305148,433580,10,'composer',NULL,NULL),(4305148,2142336,1,'actress',NULL,'[\"Sarah\"]'),(4305148,540441,2,'actress',NULL,'[\"Mindy\"]'),(4305148,7764877,3,'actress',NULL,'[\"Jessie (Age 3)\",\"Daughter\"]'),(4305148,1560977,4,'actor',NULL,'[\"Dean\",\"Husband\"]'),(4305148,811611,5,'director',NULL,NULL),(4305148,336486,6,'writer',NULL,NULL),(4305148,1230693,7,'producer','producer',NULL),(4305148,2483108,8,'producer','producer',NULL),(4305148,7011553,9,'producer','producer',NULL),(4308714,2094777,10,'editor',NULL,NULL),(4308714,3637755,1,'actress',NULL,'[\"Devon\"]'),(4308714,3729325,2,'actress',NULL,'[\"Jasmine\"]'),(4308714,6839059,3,'actress',NULL,'[\"Elle\"]'),(4308714,5934545,4,'actress',NULL,'[\"Jana\"]'),(4308714,2284440,5,'director',NULL,NULL),(4308714,2817515,6,'writer',NULL,NULL),(4308714,1976166,7,'producer','producer',NULL),(4308714,5614184,8,'composer',NULL,NULL),(4308714,2993564,9,'cinematographer',NULL,NULL),(4319698,3385682,10,'composer',NULL,NULL),(4319698,1173559,1,'actress',NULL,'[\"Headmistress (Lui Wai Hung)\"]'),(4319698,465503,2,'actor',NULL,'[\"Dong\"]'),(4319698,8424617,3,'actress',NULL,'[\"Ho Siu Suet (Siu Suet)\"]'),(4319698,8732504,4,'actress',NULL,'[\"Lo Ka Ka (Ka Ka)\"]'),(4319698,265303,5,'director',NULL,NULL),(4319698,3385156,6,'writer','screenplay',NULL),(4319698,150802,7,'producer','producer',NULL),(4319698,1622257,8,'producer','producer',NULL),(4319698,1234629,9,'producer','producer',NULL),(4322180,32524,1,'actor',NULL,NULL),(4322180,176109,2,'actress',NULL,'[\"Vera\"]'),(4322180,182904,3,'actress',NULL,'[\"Sig.ra Furchì\"]'),(4322180,211599,4,'actor',NULL,'[\"Don Sandro\"]'),(4322180,684842,5,'director',NULL,NULL),(4322180,6246343,6,'writer','book \"L\'età d\'oro - Il caso Véronique\"',NULL),(4322180,741824,7,'writer','screenwriter',NULL),(4322180,5169687,8,'writer','book \"L\'età d\'oro - Il caso Véronique\"',NULL),(4322180,1513733,9,'production_designer',NULL,NULL),(4326444,488625,10,'cinematographer',NULL,NULL),(4326444,840772,1,'actress',NULL,'[\"Julieta\"]'),(4326444,1246047,2,'actress',NULL,'[\"Julieta Joven\"]'),(4326444,1268637,3,'actor',NULL,'[\"Xoan\"]'),(4326444,2285844,4,'actress',NULL,'[\"Ava\"]'),(4326444,264,5,'director',NULL,NULL),(4326444,613084,6,'writer','basado en \"Destino\", \"Pronto\" y \"Silencio\" de',NULL),(4326444,21948,7,'producer','producer',NULL),(4326444,306088,8,'producer','producer',NULL),(4326444,407076,9,'composer',NULL,NULL),(4331970,2658031,10,'composer',NULL,NULL),(4331970,452161,1,'actress',NULL,'[\"Dr. Marianne Delille\"]'),(4331970,3197772,2,'actor',NULL,'[\"Damien Delille\"]'),(4331970,7035606,3,'actor',NULL,'[\"Thomas Chardoul\"]'),(4331970,520870,4,'actor',NULL,'[\"Nathan Delille\"]'),(4331970,29242,5,'director',NULL,NULL),(4331970,1780037,6,'writer','screenplay',NULL),(4331970,9284520,7,'writer','collaborating writer',NULL),(4331970,216635,8,'producer','producer',NULL),(4331970,592945,9,'producer','producer',NULL),(4341532,1827182,10,'cinematographer',NULL,NULL),(4341532,523180,1,'actor',NULL,'[\"Glenn Lauder\"]'),(4341532,992184,2,'actor',NULL,'[\"Mitch Adams\"]'),(4341532,1684869,3,'actor',NULL,'[\"Ryan Stone\"]'),(4341532,1240448,4,'actor',NULL,'[\"Jacob Reynolds\"]'),(4341532,34229,5,'director',NULL,NULL),(4341532,7880370,6,'producer','producer',NULL),(4341532,2286969,7,'producer','producer',NULL),(4341532,3254606,8,'producer','producer',NULL),(4341532,1373352,9,'composer',NULL,NULL),(4341582,373588,10,'composer',NULL,NULL),(4341582,8136461,1,'actress',NULL,'[\"Phiona Mutesi\"]'),(4341582,654648,2,'actor',NULL,'[\"Robert Katende\"]'),(4341582,2143282,3,'actress',NULL,'[\"Nakku Harriet\"]'),(4341582,8421695,4,'actor',NULL,'[\"Mugabi Brian\"]'),(4341582,619762,5,'director',NULL,NULL),(4341582,923980,6,'writer','screenplay by',NULL),(4341582,1885371,7,'writer','based on the ESPN Magazine article and book by',NULL),(4341582,137811,8,'producer','producer',NULL),(4341582,212990,9,'producer','producer',NULL),(4341864,1242141,10,'cinematographer',NULL,NULL),(4341864,25745,1,'actress',NULL,'[\"Amanda\"]'),(4341864,1242458,2,'actor',NULL,'[\"Javier\"]'),(4341864,134573,3,'actor',NULL,'[\"Marcos\"]'),(4341864,380139,4,'actor',NULL,'[\"Pedro\"]'),(4341864,1498570,5,'director',NULL,NULL),(4341864,1471503,6,'writer','screenplay by',NULL),(4341864,1945161,7,'producer','producer',NULL),(4341864,1378037,8,'producer','producer',NULL),(4341864,2020909,9,'composer',NULL,NULL),(4348012,5116939,10,'producer','producer',NULL),(4348012,3081796,1,'actor',NULL,'[\"Derek Cho\"]'),(4348012,3034977,2,'actress',NULL,'[\"Melanie Cross\"]'),(4348012,104526,3,'actor',NULL,'[\"John \'The Boss\' Towers\"]'),(4348012,157410,4,'actress',NULL,'[\"Kara \'The Siren\' Powell\"]'),(4348012,1362570,5,'director',NULL,NULL),(4348012,3325983,6,'writer','written by',NULL),(4348012,8035441,7,'producer','producer',NULL),(4348012,8047895,8,'producer','producer',NULL),(4348012,1646318,9,'producer','producer',NULL),(4357394,1834530,10,'producer','producer',NULL),(4357394,2140860,1,'actress',NULL,'[\"Julia\"]'),(4357394,4534098,2,'actor',NULL,'[\"Alex\"]'),(4357394,198,3,'actor',NULL,'[\"Tau\"]'),(4357394,3834777,4,'actor',NULL,'[\"Subject 2\"]'),(4357394,1730090,5,'director',NULL,NULL),(4357394,7054168,6,'writer','written by',NULL),(4357394,1652438,7,'producer','producer',NULL),(4357394,275286,8,'producer','producer',NULL),(4357394,4964008,9,'producer','producer',NULL),(4359416,70159,1,'actor',NULL,'[\"Jafar Panahi\"]'),(4359416,7326356,2,'self',NULL,'[\"Self\"]'),(4361050,89658,10,'producer','producer',NULL),(4361050,714147,1,'actress',NULL,'[\"Alice Zander\"]'),(4361050,5157662,2,'actress',NULL,'[\"Doris Zander\"]'),(4361050,2399383,3,'actress',NULL,'[\"Lina Zander\"]'),(4361050,1794,4,'actor',NULL,'[\"Father Tom\"]'),(4361050,1093039,5,'director',NULL,NULL),(4361050,3670452,6,'writer','written by',NULL),(4361050,1340000,7,'writer','based on characters created by',NULL),(4361050,925482,8,'writer','based on characters created by',NULL),(4361050,881,9,'producer','producer',NULL),(4364194,1400438,10,'producer','producer',NULL),(4364194,5789377,1,'actor',NULL,'[\"Zak\"]'),(4364194,682283,2,'actress',NULL,'[\"Rosemary\"]'),(4364194,424848,3,'actress',NULL,'[\"Eleanor\"]'),(4364194,1136,4,'actor',NULL,'[\"Carl\"]'),(4364194,2436566,5,'director',NULL,NULL),(4364194,1916835,6,'director',NULL,NULL),(4364194,74100,7,'producer','producer',NULL),(4364194,4043287,8,'producer','producer',NULL),(4364194,1784831,9,'producer','producer',NULL),(4366830,866038,10,'writer','adapted for television by',NULL),(4366830,2584600,1,'actress',NULL,'[\"Sandy Young\"]'),(4366830,3117836,2,'actor',NULL,'[\"Danny Zuko\"]'),(4366830,1227814,3,'actress',NULL,'[\"Betty Rizzo\"]'),(4366830,1551130,4,'actress',NULL,'[\"Marty Maraschino\"]'),(4366830,2371802,5,'director',NULL,NULL),(4366830,1541136,6,'director',NULL,NULL),(4366830,940125,7,'writer','screenplay by',NULL),(4366830,139591,8,'writer','adaptation by',NULL),(4366830,142636,9,'writer','adapted for television by',NULL),(4370784,22969,10,'producer','producer',NULL),(4370784,3650704,1,'actress',NULL,'[\"Mathilde Beaulieu\"]'),(4370784,125588,2,'actress',NULL,'[\"Maria\"]'),(4370784,474492,3,'actress',NULL,'[\"Mère Abesse\"]'),(4370784,531195,4,'actor',NULL,'[\"Samuel\"]'),(4370784,284774,5,'director',NULL,NULL),(4370784,2348263,6,'writer','scenario',NULL),(4370784,2462594,7,'writer','scenario',NULL),(4370784,94726,8,'writer','adaptation: dialogue',NULL),(4370784,562830,9,'writer','based on an original concept created by',NULL),(4382872,326411,10,'producer','producer',NULL),(4382872,246,1,'actor',NULL,'[\"Leonard\"]'),(4382872,1553725,2,'actor',NULL,'[\"Harry Turner\"]'),(4382872,2442289,3,'actress',NULL,'[\"Victoria\"]'),(4382872,665,4,'actor',NULL,'[\"Robertson\"]'),(4382872,1921345,5,'director',NULL,NULL),(4382872,7073779,6,'writer','written by',NULL),(4382872,2809844,7,'writer','written by',NULL),(4382872,256542,8,'producer','producer',NULL),(4382872,298915,9,'producer','producer',NULL),(4383594,2046077,10,'writer','written by',NULL),(4383594,228,1,'actor',NULL,'[\"Tom Brand\"]'),(4383594,4950,2,'actress',NULL,'[\"Lara Brand\"]'),(4383594,2064412,3,'actor',NULL,'[\"David Brand\"]'),(4383594,385644,4,'actress',NULL,'[\"Madison Camden\"]'),(4383594,1756,5,'director',NULL,NULL),(4383594,527095,6,'writer','written by',NULL),(4383594,20820,7,'writer','written by',NULL),(4383594,933128,8,'writer','written by',NULL),(4383594,5136172,9,'writer','written by',NULL),(4385888,1831620,10,'cinematographer','director of photography',NULL),(4385888,906,1,'actress',NULL,'[\"Dorothea Fields\"]'),(4385888,1102577,2,'actress',NULL,'[\"Julie Hamlin\"]'),(4385888,1950086,3,'actress',NULL,'[\"Abbie Porter\"]'),(4385888,1082,4,'actor',NULL,'[\"William\"]'),(4385888,590122,5,'director',NULL,NULL),(4385888,136904,6,'producer','producer',NULL),(4385888,2691892,7,'producer','producer',NULL),(4385888,1323058,8,'producer','producer',NULL),(4385888,2685,9,'composer',NULL,NULL),(4392438,423397,10,'cinematographer',NULL,NULL),(4392438,95053,1,'actress',NULL,'[\"Mère Augustine\"]'),(4392438,6482412,2,'actress',NULL,'[\"Alice\"]'),(4392438,491751,3,'actress',NULL,'[\"Soeur Lise\"]'),(4392438,86416,4,'actress',NULL,'[\"Soeur Claude\"]'),(4392438,690794,5,'director',NULL,NULL),(4392438,7798700,6,'writer','scenario',NULL),(4392438,480972,7,'producer','producer',NULL),(4392438,5940977,8,'producer','producer',NULL),(4392438,6042,9,'composer',NULL,NULL),(4392726,724495,10,'editor',NULL,NULL),(4392726,151827,1,'actress',NULL,'[\"Winnie Chang\"]'),(4392726,334,2,'actor',NULL,'[\"Ho Chung Ping\"]'),(4392726,150873,3,'actor',NULL,'[\"David Wang\"]'),(4392726,2325018,4,'actress',NULL,'[\"Sophie\"]'),(4392726,864775,5,'director',NULL,NULL),(4392726,2497357,6,'composer',NULL,NULL),(4392726,155624,7,'cinematographer','director of photography',NULL),(4392726,1880149,8,'cinematographer',NULL,NULL),(4392726,2698641,9,'editor','associate editor',NULL),(4392770,4062412,10,'production_designer',NULL,NULL),(4392770,4496875,1,'actress',NULL,'[\"Anna\"]'),(4392770,2624186,2,'actress',NULL,'[\"Beth\"]'),(4392770,1494818,3,'actor',NULL,'[\"Jesse\"]'),(4392770,1637961,4,'actor',NULL,'[\"Paul\"]'),(4392770,3046419,5,'director',NULL,NULL),(4392770,3882975,6,'producer','producer',NULL),(4392770,599573,7,'composer',NULL,NULL),(4392770,777491,8,'cinematographer',NULL,NULL),(4392770,1384462,9,'editor',NULL,NULL),(4396662,7084500,1,'actress',NULL,'[\"Liberty Smith\"]'),(4396662,6135945,2,'actress',NULL,'[\"Nikki Levine\"]'),(4396662,6784326,3,'actress',NULL,'[\"Yolanda Jones\"]'),(4396662,2304806,4,'actor',NULL,'[\"Reverend Smith\"]'),(4396662,4565198,5,'director',NULL,NULL),(4396662,6011302,6,'director','collaborating director',NULL),(4396662,1491100,7,'cinematographer','director of photography',NULL),(4396662,4292438,8,'production_designer',NULL,NULL),(4411596,381738,10,'editor',NULL,NULL),(4411596,1838,1,'actress',NULL,'[\"Rachel\"]'),(4411596,3510471,2,'actor',NULL,'[\"Philip\"]'),(4411596,334441,3,'actress',NULL,'[\"Louise\"]'),(4411596,322513,4,'actor',NULL,'[\"Kendall\"]'),(4411596,585011,5,'director',NULL,NULL),(4411596,238898,6,'writer','based on the novel by',NULL),(4411596,2941,7,'producer','producer',NULL),(4411596,2536586,8,'composer',NULL,NULL),(4411596,253279,9,'cinematographer',NULL,NULL),(4420110,9364231,10,'writer','inspired by the book \"My Invisible Sister\" by',NULL),(4420110,3688576,1,'actress',NULL,'[\"Cleo\"]'),(4420110,5514372,2,'actress',NULL,'[\"Molly\"]'),(4420110,3557613,3,'actor',NULL,'[\"George\"]'),(4420110,3907105,4,'actress',NULL,'[\"Nikki\"]'),(4420110,388505,5,'director',NULL,NULL),(4420110,1103326,6,'writer','teleplay by',NULL),(4420110,2785000,7,'writer','teleplay by',NULL),(4420110,1890301,8,'writer','television story by',NULL),(4420110,1898779,9,'writer','television story by',NULL),(4425152,430438,10,'cinematographer',NULL,NULL),(4425152,7288448,1,'actress',NULL,'[\"Kim\"]'),(4425152,7288449,2,'actor',NULL,'[\"Kim\"]'),(4425152,7288450,3,'actress',NULL,'[\"Momo\"]'),(4425152,7288451,4,'actor',NULL,'[\"Momo\"]'),(4425152,445129,5,'director',NULL,NULL),(4425152,8556317,6,'writer','novel',NULL),(4425152,1459591,7,'producer','producer',NULL),(4425152,1328463,8,'producer','producer',NULL),(4425152,7288459,9,'composer',NULL,NULL),(4425200,1177490,10,'composer',NULL,NULL),(4425200,206,1,'actor',NULL,'[\"John Wick\"]'),(4425200,1249052,2,'actor',NULL,'[\"Santino D\'Antonio\"]'),(4425200,574534,3,'actor',NULL,'[\"Winston\"]'),(4425200,3199307,4,'actress',NULL,'[\"Ares\"]'),(4425200,821432,5,'director',NULL,NULL),(4425200,4401003,6,'writer','written by',NULL),(4425200,412588,7,'producer','producer',NULL),(4425200,2443562,8,'producer','producer',NULL),(4425200,61045,9,'composer',NULL,NULL),(4426738,838837,10,'producer','producer',NULL),(4426738,334441,1,'actress',NULL,'[\"Laura\"]'),(4426738,790057,2,'actress',NULL,'[\"Tyler\"]'),(4426738,5446595,3,'actress',NULL,'[\"Jean\"]'),(4426738,4861736,4,'actor',NULL,'[\"Julian\"]'),(4426738,1170520,5,'director',NULL,NULL),(4426738,7106378,6,'writer','screenplay by',NULL),(4426738,2967675,7,'writer','story editor',NULL),(4426738,4971012,8,'producer','producer',NULL),(4426738,1737326,9,'producer','producer',NULL),(4428788,817508,10,'cinematographer',NULL,NULL),(4428788,296594,1,'actress',NULL,'[\"Marguerite Dumont\"]'),(4428788,545838,2,'actor',NULL,'[\"Georges Dumont\"]'),(4428788,268949,3,'actor',NULL,'[\"Atos Pezzini\"]'),(4428788,1817887,4,'actress',NULL,'[\"Hazel\"]'),(4428788,316306,5,'director',NULL,NULL),(4428788,738925,6,'writer','collaborating writer',NULL),(4428788,216635,7,'producer','producer',NULL),(4428788,592945,8,'producer','producer',NULL),(4428788,4043772,9,'composer',NULL,NULL),(4428814,460101,10,'editor',NULL,NULL),(4428814,512071,1,'actor',NULL,'[\"Thierry Taugourdeau\"]'),(4428814,7379140,2,'actress',NULL,'[\"La femme de Thierry\"]'),(4428814,7379141,3,'actor',NULL,'[\"Le fils de Thierry\"]'),(4428814,4826513,4,'actor',NULL,'[\"Le conseiller Pôle Emploi\"]'),(4428814,110300,5,'director',NULL,NULL),(4428814,329825,6,'writer','screenplay',NULL),(4428814,1709401,7,'producer','producer',NULL),(4428814,744384,8,'producer','producer',NULL),(4428814,7379173,9,'cinematographer',NULL,NULL),(4437640,1886746,1,'actor',NULL,'[\"Batman\"]'),(4437640,224565,2,'actor',NULL,'[\"Green Arrow\"]'),(4437640,295115,3,'actor',NULL,'[\"Nightwing\"]'),(4437640,772116,4,'actor',NULL,'[\"The Flash\"]'),(4437640,525665,5,'director',NULL,NULL),(4437640,1236620,6,'writer','written by',NULL),(4437640,4170,7,'writer','created by',NULL),(4437640,1258312,8,'composer',NULL,NULL),(4437640,454530,9,'editor',NULL,NULL),(4438848,28787,10,'composer',NULL,NULL),(4438848,736622,1,'actor',NULL,'[\"Mac Radner\"]'),(4438848,126284,2,'actress',NULL,'[\"Kelly Radner\"]'),(4438848,1374980,3,'actor',NULL,'[\"Teddy Sanders\"]'),(4438848,1631269,4,'actress',NULL,'[\"Shelby\"]'),(4438848,831557,5,'director',NULL,NULL),(4438848,1157527,6,'writer','written by',NULL),(4438848,1895993,7,'writer','written by',NULL),(4438848,1698571,8,'writer','written by',NULL),(4438848,4384917,9,'producer','producer',NULL),(4439120,6705698,10,'composer',NULL,NULL),(4439120,3980160,1,'actress',NULL,'[\"Mitsuko\"]'),(4439120,3380697,2,'actress',NULL,'[\"Keiko\"]'),(4439120,3940196,3,'actress',NULL,'[\"Izumi\"]'),(4439120,5155828,4,'actress',NULL,'[\"Aki\"]'),(4439120,814469,5,'director',NULL,NULL),(4439120,2179863,6,'writer','based on the original story by',NULL),(4439120,5808533,7,'producer','producer',NULL),(4439120,3607866,8,'producer','producer',NULL),(4439120,2518861,9,'producer','producer',NULL),(4443658,1053344,10,'producer','producer',NULL),(4443658,4609822,1,'actress',NULL,'[\"Ashley\"]'),(4443658,5920962,2,'actor',NULL,'[\"Luke\"]'),(4443658,4590837,3,'actor',NULL,'[\"Garrett\"]'),(4443658,6590527,4,'actor',NULL,'[\"Ricky\"]'),(4443658,2577199,5,'director',NULL,NULL),(4443658,4362639,6,'writer','story by',NULL),(4443658,2734583,7,'producer','producer',NULL),(4443658,2399592,8,'producer','producer',NULL),(4443658,3116043,9,'producer','producer',NULL),(4450396,2109290,10,'producer','producer',NULL),(4450396,152839,1,'actress',NULL,'[\"Sci-Twi\",\"Midnight Sparkle\",\"Twilight Sparkle\"]'),(4450396,1690630,2,'actress',NULL,'[\"Sunset Shimmer\",\"Sci-Twi - singing\"]'),(4450396,1868320,3,'actress',NULL,'[\"Rainbow Dash\",\"Applejack\"]'),(4450396,508877,4,'actress',NULL,'[\"Pinkie Pie\",\"Fluttershy\",\"Bon Bon\"]'),(4450396,2154278,5,'director',NULL,NULL),(4450396,2149505,6,'director','consulting director',NULL),(4450396,269260,7,'writer','characters',NULL),(4450396,1285303,8,'writer','written by',NULL),(4450396,9261564,9,'writer','creator',NULL),(4456850,591665,10,'cinematographer','director of photography',NULL),(4456850,4248775,1,'actress',NULL,'[\"Jenny Parker\"]'),(4456850,6259860,2,'actress',NULL,'[\"Lola Perez\"]'),(4456850,3385478,3,'actress',NULL,'[\"Emily Cooper\"]'),(4456850,6251401,4,'actress',NULL,'[\"Katy Cooper\"]'),(4456850,776271,5,'director',NULL,NULL),(4456850,667330,6,'writer','written by',NULL),(4456850,799562,7,'writer','Original Story',NULL),(4456850,932144,8,'producer','producer',NULL),(4456850,6099,9,'composer',NULL,NULL),(4465564,899553,10,'producer','producer',NULL),(4465564,424848,1,'actress',NULL,'[\"Anastasia Steele\"]'),(4465564,1946193,2,'actor',NULL,'[\"Christian Grey\"]'),(4465564,425053,3,'actor',NULL,'[\"Jack Hyde\"]'),(4465564,3037833,4,'actress',NULL,'[\"Kate Kavanagh\"]'),(4465564,1226,5,'director',NULL,NULL),(4465564,502727,6,'writer','screenplay by',NULL),(4465564,1093317,7,'writer','based on the novel by',NULL),(4465564,116232,8,'producer','producer',NULL),(4465564,6894,9,'producer','producer',NULL),(4466872,1461774,10,'composer','co-composer',NULL),(4466872,270449,1,'actor',NULL,'[\"François\"]'),(4466872,3727445,2,'actress',NULL,'[\"Marion\"]'),(4466872,53903,3,'actor',NULL,'[\"M. Déloyal\"]'),(4466872,1194748,4,'actress',NULL,'[\"Mona\"]'),(4466872,1864602,5,'director',NULL,NULL),(4466872,155009,6,'writer','play',NULL),(4466872,1771591,7,'writer','screenplay',NULL),(4466872,842918,8,'writer','screenplay',NULL),(4466872,515510,9,'producer','producer',NULL),(4466936,1190889,10,'composer',NULL,NULL),(4466936,76889,1,'actress',NULL,'[\"Machine\"]'),(4466936,180404,2,'actor',NULL,'[\"Machin\"]'),(4466936,2524823,3,'actress',NULL,'[\"Charlotte\"]'),(4466936,243620,4,'actor',NULL,'[\"Artus\"]'),(4466936,2056787,5,'writer','scenario',NULL),(4466936,3457034,6,'writer','collaboration',NULL),(4466936,286202,7,'producer','producer',NULL),(4466936,5378921,8,'producer','producer',NULL),(4466936,939359,9,'producer','producer',NULL),(4468634,1404741,10,'composer',NULL,NULL),(4468634,931329,1,'actress',NULL,'[\"Gina\"]'),(4468634,829576,2,'actress',NULL,'[\"Elizabeth Travis\"]'),(4468634,368,3,'actress',NULL,'[\"Laura\"]'),(4468634,1457,4,'actor',NULL,'[\"Ryan\"]'),(4468634,716980,5,'director',NULL,NULL),(4468634,1493594,6,'writer','based on stories by',NULL),(4468634,1965828,7,'producer','producer',NULL),(4468634,3346403,8,'producer','producer',NULL),(4468634,1507013,9,'producer','producer',NULL),(4468740,810337,10,'writer','additional material',NULL),(4468740,924210,1,'actor',NULL,'[\"Paddington\"]'),(4468740,424,2,'actor',NULL,'[\"Phoenix Buchanan\"]'),(4468740,95017,3,'actor',NULL,'[\"Henry Brown\"]'),(4468740,1020089,4,'actress',NULL,'[\"Mary Brown\"]'),(4468740,1653753,5,'director',NULL,NULL),(4468740,1375030,6,'writer','written by',NULL),(4468740,1286491,7,'writer','Paddington Bear created by',NULL),(4468740,123666,8,'writer','additional material',NULL),(4468740,1638619,9,'writer','additional material',NULL),(4472596,1313298,10,'production_designer',NULL,NULL),(4472596,3197574,1,'actress',NULL,'[\"Sarah\"]'),(4472596,4260661,2,'actress',NULL,'[\"Marley\"]'),(4472596,3851019,3,'actress',NULL,'[\"Emma\"]'),(4472596,3614878,4,'actress',NULL,'[\"Nicole\"]'),(4472596,934135,5,'director',NULL,NULL),(4472596,1054974,6,'writer',NULL,NULL),(4472596,324376,7,'producer','producer',NULL),(4472596,65687,8,'composer',NULL,NULL),(4472596,1046827,9,'editor',NULL,NULL),(4477292,7149730,1,'actor',NULL,'[\"Mike Webster\"]'),(4477292,7149731,2,'actor',NULL,'[\"Harry Knight\"]'),(4477292,1955368,3,'actor',NULL,'[\"Roy Kennedy\"]'),(4477292,8322900,4,'actor',NULL,'[\"Dave Bennett\"]'),(4477292,4873470,5,'director',NULL,NULL),(4477292,4873574,6,'director',NULL,NULL),(4477292,5738769,7,'composer','composer',NULL),(4477292,6097337,8,'composer',NULL,NULL),(4477292,6097338,9,'composer',NULL,NULL),(4477536,899553,10,'producer','producer',NULL),(4477536,424848,1,'actress',NULL,'[\"Anastasia Steele\"]'),(4477536,1946193,2,'actor',NULL,'[\"Christian Grey\"]'),(4477536,425053,3,'actor',NULL,'[\"Jack Hyde\"]'),(4477536,3037833,4,'actress',NULL,'[\"Kate Kavanagh\"]'),(4477536,1226,5,'director',NULL,NULL),(4477536,502727,6,'writer','screenplay by',NULL),(4477536,1093317,7,'writer','based on the novel by',NULL),(4477536,116232,8,'producer','producer',NULL),(4477536,6894,9,'producer','producer',NULL),(4481414,238698,10,'cinematographer','director of photography',NULL),(4481414,262635,1,'actor',NULL,'[\"Frank\"]'),(4481414,5085683,2,'actress',NULL,'[\"Mary\"]'),(4481414,242026,3,'actress',NULL,'[\"Evelyn\"]'),(4481414,818055,4,'actress',NULL,'[\"Roberta\"]'),(4481414,1989536,5,'director',NULL,NULL),(4481414,2368,6,'writer','written by',NULL),(4481414,169213,7,'producer','producer',NULL),(4481414,526412,8,'producer','producer',NULL),(4481414,1387379,9,'composer',NULL,NULL),(4485178,2166084,10,'cinematographer',NULL,NULL),(4485178,2864046,1,'actress',NULL,'[\"Sandrine\"]'),(4485178,767,2,'actor',NULL,'[\"Henri\"]'),(4485178,1229839,3,'actress',NULL,'[\"Martine\"]'),(4485178,135084,4,'actor',NULL,'[\"Pierre\"]'),(4485178,1327391,5,'director',NULL,NULL),(4485178,1244414,6,'writer','dialogue',NULL),(4485178,78712,7,'producer','producer',NULL),(4485178,271446,8,'producer','producer',NULL),(4485178,923915,9,'composer',NULL,NULL),(4489160,4058241,10,'production_designer',NULL,NULL),(4489160,1373129,1,'actress',NULL,'[\"Georgina Lorenzana\"]'),(4489160,2029519,2,'actor',NULL,'[\"Pong Dalupan\"]'),(4489160,1417880,3,'actor',NULL,'[\"Sir Albert\"]'),(4489160,3477347,4,'actor',NULL,'[\"Gino\"]'),(4489160,3184677,5,'director',NULL,NULL),(4489160,7388900,6,'writer','story',NULL),(4489160,2847585,7,'composer',NULL,NULL),(4489160,2688636,8,'cinematographer','director of photography',NULL),(4489160,407180,9,'editor',NULL,NULL),(4500922,1650412,10,'producer','producer',NULL),(4500922,3729721,1,'actor',NULL,'[\"Thomas\"]'),(4500922,3859624,2,'actor',NULL,'[\"Minho\"]'),(4500922,2546012,3,'actress',NULL,'[\"Teresa\"]'),(4500922,1032473,4,'actor',NULL,'[\"Newt\"]'),(4500922,1226871,5,'director',NULL,NULL),(4500922,2385905,6,'writer','screenplay by',NULL),(4500922,4212895,7,'writer','based upon the novel by',NULL),(4500922,2125212,8,'producer','producer',NULL),(4500922,324041,9,'producer','producer',NULL),(4501454,5593,10,'production_designer',NULL,NULL),(4501454,215,1,'actress',NULL,'[\"Marnie\"]'),(4501454,126284,2,'actress',NULL,'[\"Lori\"]'),(4501454,799777,3,'actor',NULL,'[\"Zipper\"]'),(4501454,4273797,4,'actor',NULL,'[\"Freddy\",\"Fredo\"]'),(4501454,1032521,5,'director',NULL,NULL),(4501454,2229726,6,'producer','producer',NULL),(4501454,2207081,7,'composer',NULL,NULL),(4501454,1954909,8,'cinematographer','director of photography',NULL),(4501454,2312458,9,'editor',NULL,NULL),(4503598,2838869,10,'editor',NULL,NULL),(4503598,92961,1,'actress',NULL,'[\"Emelie\"]'),(4503598,7182217,2,'actress',NULL,'[\"Sally Thompson\"]'),(4503598,6211008,3,'actor',NULL,'[\"Kitchen Staff\"]'),(4503598,5825804,4,'actress',NULL,'[\"Neighbor\"]'),(4503598,2836676,5,'director',NULL,NULL),(4503598,2878500,6,'writer','screenplay by',NULL),(4503598,2371958,7,'producer','producer',NULL),(4503598,609163,8,'composer',NULL,NULL),(4503598,4052377,9,'cinematographer','director of photography',NULL),(4513316,1918900,10,'cinematographer',NULL,NULL),(4513316,502425,1,'actress',NULL,'[\"Reverend Mother\"]'),(4513316,1274602,2,'actress',NULL,'[\"Sister Genevieve\"]'),(4513316,9844100,3,'actress',NULL,'[\"Sister Kate\"]'),(4513316,2263655,4,'actress',NULL,'[\"Sister Charlotte\"]'),(4513316,79448,5,'director',NULL,NULL),(4513316,761489,6,'producer','producer',NULL),(4513316,1488027,7,'producer','producer',NULL),(4513316,836548,8,'producer','producer',NULL),(4513316,8320569,9,'composer',NULL,NULL),(4513674,503429,10,'editor',NULL,NULL),(4513674,251986,1,'actor',NULL,'[\"Bobby\"]'),(4513674,829576,2,'actress',NULL,'[\"Vonnie\"]'),(4513674,136797,3,'actor',NULL,'[\"Phil Stern\"]'),(4513674,515116,4,'actress',NULL,'[\"Veronica\"]'),(4513674,95,5,'director',NULL,NULL),(4513674,36981,6,'producer','producer',NULL),(4513674,1008264,7,'producer','producer',NULL),(4513674,2304996,8,'producer','producer',NULL),(4513674,5886,9,'cinematographer',NULL,NULL),(4513678,1387379,10,'composer',NULL,NULL),(4513678,4689420,1,'actress',NULL,'[\"Callie\"]'),(4513678,748620,2,'actor',NULL,'[\"Grooberson\"]'),(4513678,6016511,3,'actor',NULL,'[\"Trevor\"]'),(4513678,5085683,4,'actress',NULL,'[\"Phoebe\"]'),(4513678,718646,5,'director',NULL,NULL),(4513678,1481493,6,'writer','written by',NULL),(4513678,101,7,'writer','based on \"Ghostbusters\" written by',NULL),(4513678,718645,8,'writer','based on the 1984 film by',NULL),(4513678,601,9,'writer','based on \"Ghostbusters\" written by',NULL),(4515684,2688233,10,'production_designer',NULL,NULL),(4515684,1766976,1,'actor',NULL,'[\"Costi\"]'),(4515684,7182476,2,'actor',NULL,'[\"Adrian\"]'),(4515684,7182477,3,'actor',NULL,'[\"Cornel\"]'),(4515684,52600,4,'actor',NULL,'[\"Vanzator\"]'),(4515684,1717949,5,'director',NULL,NULL),(4515684,2947104,6,'producer','producer',NULL),(4515684,876119,7,'cinematographer',NULL,NULL),(4515684,1718343,8,'editor',NULL,NULL),(4515684,262007,9,'production_designer',NULL,NULL),(4520364,2068037,10,'composer',NULL,NULL),(4520364,544718,1,'actress',NULL,'[\"Lee Weathers\"]'),(4520364,5896355,2,'actress',NULL,'[\"Morgan\"]'),(4520364,3310211,3,'actress',NULL,'[\"Dr. Amy Menser\"]'),(4520364,3307735,4,'actor',NULL,'[\"Ted Brenner\"]'),(4520364,779524,5,'director',NULL,NULL),(4520364,1868849,6,'writer','written by',NULL),(4520364,400240,7,'producer','producer',NULL),(4520364,769644,8,'producer','producer',NULL),(4520364,631,9,'producer','producer',NULL),(4520988,520188,10,'writer','story by',NULL),(4520988,68338,1,'actress',NULL,'[\"Anna\"]'),(4520988,579953,2,'actress',NULL,'[\"Elsa\"]'),(4520988,1265802,3,'actor',NULL,'[\"Olaf\"]'),(4520988,2676147,4,'actor',NULL,'[\"Kristoff\"]'),(4520988,118333,5,'director',NULL,NULL),(4520988,1601644,6,'director',NULL,NULL),(4520988,26153,7,'writer','story inspired by: \"The Snow Queen\" by',NULL),(4520988,809205,8,'writer','story by',NULL),(4520988,2844448,9,'writer','story by',NULL),(4530422,1011485,10,'composer',NULL,NULL),(4530422,5381254,1,'actor',NULL,'[\"PFC Edward Boyce\"]'),(4530422,751518,2,'actor',NULL,'[\"Cpl. Lewis Ford\"]'),(4530422,7230577,3,'actress',NULL,'[\"Chloe Laurent\"]'),(4530422,1561982,4,'actor',NULL,'[\"Captain Wafner\"]'),(4530422,1170339,5,'director',NULL,NULL),(4530422,712753,6,'writer','screenplay by',NULL),(4530422,1872664,7,'writer','screenplay by',NULL),(4530422,9190,8,'producer','producer',NULL),(4530422,6618222,9,'producer','producer',NULL),(4532826,2468967,10,'composer',NULL,NULL),(4532826,5473782,1,'actor',NULL,'[\"Robin of Loxley\"]'),(4532826,4937,2,'actor',NULL,'[\"Yahya\",\"John\"]'),(4532826,578853,3,'actor',NULL,'[\"Sheriff of Nottingham\"]'),(4532826,2016723,4,'actress',NULL,'[\"Marian\"]'),(4532826,1163264,5,'director',NULL,NULL),(4532826,9808366,6,'writer','screenplay by',NULL),(4532826,3598916,7,'writer','screenplay by',NULL),(4532826,2248832,8,'producer','producer',NULL),(4532826,138,9,'producer','producer',NULL),(4540710,2068037,10,'composer',NULL,NULL),(4540710,1567113,1,'actress',NULL,'[\"Madeline Elizabeth Sloane\"]'),(4540710,835016,2,'actor',NULL,'[\"Rodolfo Vittorio Schmidt\"]'),(4540710,1813221,3,'actress',NULL,'[\"Esme Manucharian\"]'),(4540710,836121,4,'actor',NULL,'[\"Pat Connors\"]'),(4540710,6960,5,'director',NULL,NULL),(4540710,7206640,6,'writer','written by',NULL),(4540710,1878845,7,'producer','producer',NULL),(4540710,858123,8,'producer','producer',NULL),(4540710,954437,9,'producer','producer',NULL),(4547056,1171917,10,'cinematographer',NULL,NULL),(4547056,6451469,1,'actress',NULL,'[\"Melanie\"]'),(4547056,6160535,2,'actor',NULL,'[\"Kieran Gallagher\"]'),(4547056,4625680,3,'actress',NULL,'[\"Devani\"]'),(4547056,175916,4,'actor',NULL,'[\"Sgt Eddie Parks\"]'),(4547056,1142073,5,'director',NULL,NULL),(4547056,1259998,6,'writer','written by',NULL),(4547056,1721465,7,'producer','producer',NULL),(4547056,483642,8,'producer','producer',NULL),(4547056,4423632,9,'composer','composer',NULL),(4547194,3733941,10,'producer','producer',NULL),(4547194,4068901,1,'actress',NULL,'[\"Barbara\"]'),(4547194,757855,2,'actress',NULL,'[\"Mrs. Mollé\"]'),(4547194,1782299,3,'actress',NULL,'[\"Karen\"]'),(4547194,3041653,4,'actress',NULL,'[\"Sophia\"]'),(4547194,2225334,5,'director',NULL,NULL),(4547194,2399856,6,'writer','screenplay by',NULL),(4547194,7212925,7,'writer','based on the Man of Action graphic novel \"I Kill Giants\" created by',NULL),(4547194,55431,8,'producer','producer',NULL),(4547194,1060,9,'producer','producer',NULL),(4550098,811761,10,'editor','film editor',NULL),(4550098,10736,1,'actress',NULL,'[\"Susan Morrow\"]'),(4550098,350453,2,'actor',NULL,'[\"Tony Hastings\",\"Edward Sheffield\"]'),(4550098,788335,3,'actor',NULL,'[\"Bobby Andes\"]'),(4550098,1093951,4,'actor',NULL,'[\"Ray Marcus\"]'),(4550098,1053530,5,'director',NULL,NULL),(4550098,7216022,6,'writer','novel \"Tony and Susan\"',NULL),(4550098,7011,7,'producer','producer',NULL),(4550098,466851,8,'composer',NULL,NULL),(4550098,568974,9,'cinematographer','director of photography',NULL),(4551882,989882,10,'cinematographer',NULL,NULL),(4551882,2531440,1,'actor',NULL,'[\"Dave\"]'),(4551882,5566667,2,'actress',NULL,'[\"Nathalie\"]'),(4551882,1482237,3,'actress',NULL,'[\"Isabelle\"]'),(4551882,2950059,4,'actor',NULL,'[\"Marc\"]'),(4551882,343898,5,'director',NULL,NULL),(4551882,730694,6,'producer','producer',NULL),(4551882,12881151,7,'composer',NULL,NULL),(4551882,8863626,8,'composer',NULL,NULL),(4551882,8863627,9,'composer',NULL,NULL),(4552196,48346,1,'actor',NULL,'[\"Wynn Seaward\"]'),(4552196,141997,2,'actress',NULL,'[\"Beth Seaward\"]'),(4552196,1674539,3,'actress',NULL,'[\"Emily\"]'),(4552196,2478108,4,'actress',NULL,'[\"Sandra\"]'),(4552196,1194448,5,'director',NULL,NULL),(4552196,6128314,6,'composer',NULL,NULL),(4552196,5489165,7,'cinematographer',NULL,NULL),(4552196,3840874,8,'editor',NULL,NULL),(4552196,7470813,9,'production_designer',NULL,NULL),(4555426,881703,10,'producer','producer',NULL),(4555426,198,1,'actor',NULL,'[\"Winston Churchill\"]'),(4555426,4141252,2,'actress',NULL,'[\"Elizabeth Layton\"]'),(4555426,218,3,'actress',NULL,'[\"Clemmie\"]'),(4555426,578853,4,'actor',NULL,'[\"King George VI\"]'),(4555426,942504,5,'director',NULL,NULL),(4555426,565026,6,'writer','screenplay by',NULL),(4555426,79677,7,'producer','producer',NULL),(4555426,115537,8,'producer','producer',NULL),(4555426,271479,9,'producer','producer',NULL),(4566758,1511627,10,'writer','suggested by: the narrative poem \"The Ballad of Mulan\"',NULL),(4566758,1703577,1,'actress',NULL,'[\"Mulan\"]'),(4566758,947447,2,'actor',NULL,'[\"Commander Tung\"]'),(4566758,84,3,'actress',NULL,'[\"Xianniang\"]'),(4566758,1472,4,'actor',NULL,'[\"Emperor\"]'),(4566758,138927,5,'director',NULL,NULL),(4566758,415425,6,'writer','screenplay by',NULL),(4566758,798646,7,'writer','screenplay by',NULL),(4566758,4168262,8,'writer','screenplay by',NULL),(4566758,7230194,9,'writer','screenplay by',NULL),(4569374,6788548,10,'production_designer',NULL,NULL),(4569374,2113653,1,'actor',NULL,'[\"Jake\"]'),(4569374,335073,2,'actor',NULL,'[\"Sparky\"]'),(4569374,3964,3,'actor',NULL,'[\"Kohler\"]'),(4569374,5632803,4,'actress',NULL,'[\"Anna\"]'),(4569374,5094464,5,'director',NULL,NULL),(4569374,3421138,6,'producer','executive producer',NULL),(4569374,2427110,7,'producer','producer',NULL),(4569374,5094294,8,'composer',NULL,NULL),(4569374,7735158,9,'production_designer',NULL,NULL),(4575576,2284377,10,'writer','screenplay by',NULL),(4575576,191,1,'actor',NULL,'[\"Christopher Robin\"]'),(4575576,2017943,2,'actress',NULL,'[\"Evelyn Robin\"]'),(4575576,6432607,3,'actress',NULL,'[\"Madeline Robin\"]'),(4575576,309693,4,'actor',NULL,'[\"Giles Winslow\"]'),(4575576,286975,5,'director',NULL,NULL),(4575576,590316,6,'writer','based on characters created by',NULL),(4575576,791615,7,'writer','based on characters created by',NULL),(4575576,3504405,8,'writer','screenplay by',NULL),(4575576,565336,9,'writer','screenplay by',NULL),(4576612,9365887,10,'composer',NULL,NULL),(4576612,4765550,1,'actor',NULL,'[\"Orel\"]'),(4576612,6237589,2,'actor',NULL,'[\"Gringe\"]'),(4576612,7718974,3,'actor',NULL,'[\"Bouteille\"]'),(4576612,7718975,4,'actor',NULL,'[\"Claude\"]'),(4576612,644393,5,'director',NULL,NULL),(4576612,613587,6,'writer','adaptation',NULL),(4576612,2462346,7,'producer','producer',NULL),(4576612,5163471,8,'producer','producer',NULL),(4576612,2964934,9,'producer','producer',NULL),(4593060,257481,10,'writer','based on the 1940 story adaptation by',NULL),(4593060,330687,1,'actor',NULL,'[\"Jiminy Cricket\"]'),(4593060,158,2,'actor',NULL,'[\"Geppetto\"]'),(4593060,9974256,3,'actor',NULL,'[\"Pinocchio\"]'),(4593060,942202,4,'actor',NULL,'[\"Signore Rizzi\"]'),(4593060,709,5,'director',NULL,NULL),(4593060,919363,6,'writer','screenplay by',NULL),(4593060,172830,7,'writer','based on \"The Adventures of Pinocchio\" by',NULL),(4593060,61284,8,'writer','based on the 1940 story adaptation by',NULL),(4593060,183183,9,'writer','based on the 1940 story adaptation by',NULL),(4594834,1350158,10,'editor',NULL,NULL),(4594834,134244,1,'actor',NULL,'[\"Chi-Raq\"]'),(4594834,3500582,2,'actress',NULL,'[\"Lysistrata\"]'),(4594834,648,3,'actor',NULL,'[\"Cyclops\"]'),(4594834,291,4,'actress',NULL,'[\"Miss Helen\"]'),(4594834,490,5,'director',NULL,NULL),(4594834,932551,6,'writer','written by',NULL),(4594834,34922,7,'writer','play \"Lysistrata\'',NULL),(4594834,5966,8,'composer',NULL,NULL),(4594834,508732,9,'cinematographer',NULL,NULL),(4595882,946486,10,'producer','producer',NULL),(4595882,565250,1,'actress',NULL,'[\"Lee Israel\"]'),(4595882,1290,2,'actor',NULL,'[\"Jack Hock\"]'),(4595882,920185,3,'actress',NULL,'[\"Anna\"]'),(4595882,1229520,4,'actor',NULL,'[\"Alan Schmidt\"]'),(4595882,1716636,5,'director',NULL,NULL),(4595882,392237,6,'writer','screenplay by',NULL),(4595882,1036221,7,'writer','screenplay by',NULL),(4595882,136904,8,'producer','producer',NULL),(4595882,2602846,9,'producer','producer',NULL),(4614584,1053988,10,'composer',NULL,NULL),(4614584,6259860,1,'actress',NULL,'[\"Cassie\"]'),(4614584,5954280,2,'actor',NULL,'[\"Luke\"]'),(4614584,7483475,3,'actor',NULL,'[\"Frankie\"]'),(4614584,2279247,4,'actor',NULL,'[\"Toby\"]'),(4614584,20491,5,'director',NULL,NULL),(4614584,2974419,6,'writer','written by',NULL),(4614584,1225921,7,'writer','written by',NULL),(4614584,465813,8,'producer','producer',NULL),(4614584,1573975,9,'producer','producer',NULL),(4621872,953128,10,'editor',NULL,NULL),(4621872,116254,1,'actress',NULL,'[\"Beatrice Morandini Valdirana\"]'),(4621872,708045,2,'actress',NULL,'[\"Donatella Morelli\"]'),(4621872,138701,3,'actress',NULL,'[\"Dottoressa Fiamma Zappa\"]'),(4621872,16371,4,'actor',NULL,'[\"Torrigiani dei Servizi Sociali\"]'),(4621872,899501,5,'director',NULL,NULL),(4621872,2180,6,'writer','screenplay',NULL),(4621872,1471794,7,'producer','producer',NULL),(4621872,899500,8,'composer',NULL,NULL),(4621872,705842,9,'cinematographer',NULL,NULL),(4622512,333747,10,'producer','producer',NULL),(4622512,1297015,1,'actress',NULL,'[\"Billie Jean King\"]'),(4622512,136797,2,'actor',NULL,'[\"Bobby Riggs\"]'),(4622512,2057859,3,'actress',NULL,'[\"Marilyn Barnett\"]'),(4622512,798971,4,'actress',NULL,'[\"Gladys Heldman\"]'),(4622512,206760,5,'director',NULL,NULL),(4622512,267512,6,'director',NULL,NULL),(4622512,64479,7,'writer','written by',NULL),(4622512,965,8,'producer','producer',NULL),(4622512,1384503,9,'producer','producer',NULL),(4624424,243005,10,'cinematographer',NULL,NULL),(4624424,1676221,1,'actor',NULL,'[\"Junior\"]'),(4624424,1764070,2,'actress',NULL,'[\"Tulip\"]'),(4624424,1288,3,'actor',NULL,'[\"Hunter\"]'),(4624424,98,4,'actress',NULL,'[\"Sarah Gardner\"]'),(4624424,831557,5,'director',NULL,NULL),(4624424,842339,6,'director',NULL,NULL),(4624424,506977,7,'producer','producer',NULL),(4624424,4582,8,'composer',NULL,NULL),(4624424,2217,9,'composer',NULL,NULL),(4627404,9091071,10,'composer',NULL,NULL),(4627404,1101677,1,'actor',NULL,'[\"Kimihiro Watanuki\"]'),(4627404,1328988,2,'actress',NULL,'[\"Mokona\"]'),(4627404,2173608,3,'actress',NULL,'[\"Maru\"]'),(4627404,1560345,4,'actress',NULL,'[\"Moro\"]'),(4627404,1598205,5,'director',NULL,NULL),(4627404,1220477,6,'writer','manga',NULL),(4627404,959985,7,'writer','screenplay',NULL),(4627404,2212512,8,'producer','producer',NULL),(4627404,5116794,9,'producer','producer',NULL),(4630562,3911,10,'composer',NULL,NULL),(4630562,4874,1,'actor',NULL,'[\"Dom\"]'),(4630562,5458,2,'actor',NULL,'[\"Deckard\"]'),(4630562,425005,3,'actor',NULL,'[\"Hobbs\"]'),(4630562,735442,4,'actress',NULL,'[\"Letty\"]'),(4630562,336620,5,'director',NULL,NULL),(4630562,860155,6,'writer','based on characters created by',NULL),(4630562,604555,7,'writer','written by',NULL),(4630562,288202,8,'producer','producer',NULL),(4630562,605775,9,'producer','producer',NULL),(4633694,588087,10,'producer','producer',NULL),(4633694,4271336,1,'actor',NULL,'[\"Miles Morales\"]'),(4633694,2159926,2,'actor',NULL,'[\"Peter B. Parker\"]'),(4633694,2794962,3,'actress',NULL,'[\"Gwen Stacy\"]'),(4633694,991810,4,'actor',NULL,'[\"Uncle Aaron\"]'),(4633694,2130108,5,'director',NULL,NULL),(4633694,709056,6,'director',NULL,NULL),(4633694,745247,7,'director',NULL,NULL),(4633694,520488,8,'writer','screenplay by',NULL),(4633694,32696,9,'producer','producer',NULL),(4644822,2952467,10,'actor',NULL,'[\"Dan Dixon\"]'),(4644822,4739686,1,'actress',NULL,'[\"Electra Woman\",\"Lori\"]'),(4644822,5177123,2,'actress',NULL,'[\"Dyna Girl\",\"Judy\"]'),(4644822,6953737,3,'actor',NULL,'[\"Frank Heflin\"]'),(4644822,4469146,4,'actor',NULL,'[\"Major Vaunt\"]'),(4644822,4181687,5,'actor',NULL,'[\"Captain Phaser\"]'),(4644822,1880647,6,'actress',NULL,'[\"Bernice\",\"Empress of Evil\"]'),(4644822,2126566,7,'actress',NULL,'[\"Silver Fox\"]'),(4644822,7113544,8,'actor',NULL,'[\"Joey the PA\"]'),(4644822,751076,9,'actor',NULL,'[\"Earshot\"]'),(4645330,6290,10,'composer',NULL,NULL),(4645330,1838,1,'actress',NULL,'[\"Deborah Lipstadt\"]'),(4645330,929489,2,'actor',NULL,'[\"Richard Rampton\"]'),(4645330,1758,3,'actor',NULL,'[\"David Irving\"]'),(4645330,778831,4,'actor',NULL,'[\"Anthony Julius\"]'),(4645330,413875,5,'director',NULL,NULL),(4645330,2182702,6,'writer','based on the book \"History on Trial: My Day in Court with a Holocaust Denier\" by',NULL),(4645330,2376,7,'writer','screenplay by',NULL),(4645330,287811,8,'producer','producer',NULL),(4645330,469929,9,'producer','producer',NULL),(4645368,439768,10,'producer','producer',NULL),(4645368,880484,1,'actor',NULL,'[\"Louis\"]'),(4645368,182839,2,'actress',NULL,'[\"Catherine\"]'),(4645368,2244205,3,'actress',NULL,'[\"Suzanne\"]'),(4645368,1993,4,'actor',NULL,'[\"Antoine\"]'),(4645368,230859,5,'director',NULL,NULL),(4645368,2689835,6,'writer','based on play by',NULL),(4645368,2411120,7,'producer','producer',NULL),(4645368,3119194,8,'producer','producer',NULL),(4645368,6199386,9,'producer','producer',NULL),(4648786,1799,10,'cinematographer','director of photography',NULL),(4648786,7248827,1,'actress',NULL,'[\"Harriet\",\"Minty\"]'),(4648786,1847117,2,'actress',NULL,'[\"Marie Buchanon\"]'),(4648786,1502434,3,'actor',NULL,'[\"William Still\"]'),(4648786,7153679,4,'actor',NULL,'[\"Gideon Brodess\"]'),(4648786,501435,5,'director',NULL,NULL),(4648786,397322,6,'writer','screenplay by',NULL),(4648786,153744,7,'producer','producer',NULL),(4648786,815610,8,'producer','producer',NULL),(4648786,5966,9,'composer',NULL,NULL),(4649416,859661,10,'production_designer',NULL,NULL),(4649416,253708,1,'actress',NULL,'[\"Cheryl\"]'),(4649416,4898,2,'actor',NULL,'[\"Malachi\"]'),(4649416,418,3,'actor',NULL,'[\"Walter\"]'),(4649416,594898,4,'actress',NULL,'[\"Aunt May\"]'),(4649416,847859,5,'director',NULL,NULL),(4649416,655510,6,'producer','producer',NULL),(4649416,1373352,7,'composer',NULL,NULL),(4649416,87460,8,'cinematographer','director of photography',NULL),(4649416,847258,9,'editor',NULL,NULL),(4649466,717230,10,'producer','producer',NULL),(4649466,5473782,1,'actor',NULL,'[\"Eggsy\"]'),(4649466,147,2,'actor',NULL,'[\"Harry Hart\"]'),(4649466,835016,3,'actor',NULL,'[\"Merlin\"]'),(4649466,1475594,4,'actor',NULL,'[\"Tequila\"]'),(4649466,891216,5,'director',NULL,NULL),(4649466,963359,6,'writer','written by',NULL),(4649466,2092839,7,'writer','based on the comic book \"The Secret Service\" by',NULL),(4649466,1733301,8,'writer','based on the comic book \"The Secret Service\" by',NULL),(4649466,92061,9,'producer','producer',NULL),(4651520,2681,10,'cinematographer','director of photography',NULL),(4651520,5109,1,'actress',NULL,'[\"Amy\"]'),(4651520,1063517,2,'actress',NULL,'[\"Carla\"]'),(4651520,68338,3,'actress',NULL,'[\"Kiki\"]'),(4651520,775,4,'actress',NULL,'[\"Gwendolyn\"]'),(4651520,524190,5,'director',NULL,NULL),(4651520,601859,6,'director',NULL,NULL),(4651520,1088848,7,'producer','producer',NULL),(4651520,865297,8,'producer','producer',NULL),(4651520,501999,9,'composer',NULL,NULL),(4652650,801005,10,'cinematographer','director of photography',NULL),(4652650,266824,1,'actress',NULL,'[\"Wendy\"]'),(4652650,1404408,2,'actress',NULL,'[\"Audrey\"]'),(4652650,1057,3,'actress',NULL,'[\"Scottie\"]'),(4652650,10010227,4,'self',NULL,'[\"Self\"]'),(4652650,506802,5,'director',NULL,NULL),(4652650,1486706,6,'writer','screenplay by',NULL),(4652650,1240783,7,'producer','producer',NULL),(4652650,239277,8,'producer','producer',NULL),(4652650,673137,9,'composer',NULL,NULL),(4666726,2208050,10,'cinematographer',NULL,NULL),(4666726,356017,1,'actress',NULL,'[\"Christine\"]'),(4666726,355910,2,'actor',NULL,'[\"George\"]'),(4666726,504832,3,'actor',NULL,'[\"Michael\"]'),(4666726,1978694,4,'actress',NULL,'[\"Jean\"]'),(4666726,1290515,5,'director',NULL,NULL),(4666726,2598028,6,'writer','written by',NULL),(4666726,2860460,7,'producer','producer',NULL),(4666726,3737483,8,'composer',NULL,NULL),(4666726,2450367,9,'composer',NULL,NULL),(4667788,4075562,10,'composer',NULL,NULL),(4667788,2043211,1,'actress',NULL,'[\"Marie\"]'),(4667788,597390,2,'actress',NULL,'[\"Satomi\"]'),(4667788,7311883,3,'actor',NULL,'[\"Nami\"]'),(4667788,7311884,4,'actor',NULL,'[\"Moshe\"]'),(4667788,246903,5,'director',NULL,NULL),(4667788,6791,6,'producer','producer',NULL),(4667788,7313277,7,'producer','producer',NULL),(4667788,7311885,8,'producer','producer',NULL),(4667788,902282,9,'producer','producer',NULL),(4669296,194365,10,'producer','producer',NULL),(4669296,191412,1,'actor',NULL,'[\"Euronymous\"]'),(4669296,1710309,2,'actor',NULL,'[\"Kristian \'Varg\' Vikernes\"]'),(4669296,5451410,3,'actor',NULL,'[\"Pelle \'Dead\' Ohlin\"]'),(4669296,3650037,4,'actress',NULL,'[\"Ann-Marit\"]'),(4669296,959774,5,'director',NULL,NULL),(4669296,536370,6,'writer','screenplay by',NULL),(4669296,3116483,7,'writer','inspired by \"Lords of Chaos\" written by',NULL),(4669296,7520458,8,'writer','inspired by \"Lords of Chaos\" written by',NULL),(4669296,2046575,9,'producer','producer',NULL),(4669788,4142,10,'cinematographer',NULL,NULL),(4669788,428065,1,'actress',NULL,'[\"Ruth Bader Ginsburg\"]'),(4669788,2309517,2,'actor',NULL,'[\"Martin Ginsburg\"]'),(4669788,857620,3,'actor',NULL,'[\"Mel Wulf\"]'),(4669788,1832,4,'actor',NULL,'[\"Erwin Griswold\"]'),(4669788,1460,5,'director',NULL,NULL),(4669788,1590589,6,'writer','written by',NULL),(4669788,181202,7,'producer','producer',NULL),(4669788,454908,8,'producer','producer',NULL),(4669788,2217,9,'composer',NULL,NULL),(4669986,764771,10,'producer','producer',NULL),(4669986,1550948,1,'actress',NULL,'[\"Mildred\"]'),(4669986,249291,2,'actor',NULL,'[\"Richard\"]'),(4669986,3286200,3,'actor',NULL,'[\"Virgil\"]'),(4669986,612583,4,'actor',NULL,'[\"Drag Race Driver\"]'),(4669986,2158772,5,'director',NULL,NULL),(4669986,1799233,6,'writer','based in part on the documentary \'The Loving Story\' by',NULL),(4669986,2561852,7,'producer','producer',NULL),(4669986,147,8,'producer','producer',NULL),(4669986,338320,9,'producer','producer',NULL),(4680182,4565370,10,'producer','producer',NULL),(4680182,4266,1,'actress',NULL,'[\"Gloria\"]'),(4680182,837177,2,'actor',NULL,'[\"Oscar\"]'),(4680182,3271473,3,'actor',NULL,'[\"Joel\"]'),(4680182,625789,4,'actor',NULL,'[\"Garth\"]'),(4680182,1443023,5,'director',NULL,NULL),(4680182,1291566,6,'producer','producer',NULL),(4680182,2303301,7,'producer','producer',NULL),(4680182,1749863,8,'producer','producer',NULL),(4680182,4149902,9,'producer','producer',NULL),(4680196,1780517,10,'editor',NULL,NULL),(4680196,204,1,'actress',NULL,'[\"Laura Barlow\"]'),(4680196,6675440,2,'actress',NULL,'[\"Kate Barlow\"]'),(4680196,758406,3,'actor',NULL,'[\"André Korben\"]'),(4680196,142972,4,'actress',NULL,'[\"Eva Saïd\"]'),(4680196,2294243,5,'director',NULL,NULL),(4680196,133028,6,'writer','screenplay',NULL),(4680196,1461686,7,'producer','producer',NULL),(4680196,2055749,8,'composer',NULL,NULL),(4680196,496055,9,'cinematographer',NULL,NULL),(4682266,6296,10,'composer',NULL,NULL),(4682266,3586035,1,'actress',NULL,'[\"Rahne Sinclair\"]'),(4682266,5896355,2,'actress',NULL,'[\"Illyana Rasputin\"]'),(4682266,6390427,3,'actor',NULL,'[\"Sam Guthrie\"]'),(4682266,103797,4,'actress',NULL,'[\"Dr. Reyes\"]'),(4682266,1837748,5,'director',NULL,NULL),(4682266,1029878,6,'writer','written by',NULL),(4682266,1334526,7,'producer','producer',NULL),(4682266,1651942,8,'producer','producer',NULL),(4682266,795682,9,'producer','producer',NULL),(4682708,1990586,10,'editor',NULL,NULL),(4682708,2084963,1,'actor',NULL,'[\"Mariano\"]'),(4682708,7785329,2,'actress',NULL,'[\"Fauna\"]'),(4682708,7931395,3,'actor',NULL,'[\"Lucio\"]'),(4682708,11073859,4,'actor',NULL,'[\"La cueva\"]'),(4682708,5495378,5,'director',NULL,NULL),(4682708,4415263,6,'producer','producer',NULL),(4682708,2952321,7,'producer','producer',NULL),(4682708,5236919,8,'composer',NULL,NULL),(4682708,5213043,9,'cinematographer',NULL,NULL),(4682786,837386,10,'producer','producer',NULL),(4682786,226,1,'actor',NULL,'[\"Howard\"]'),(4682786,1570,2,'actor',NULL,'[\"Whit\"]'),(4682786,701,3,'actress',NULL,'[\"Claire\"]'),(4682786,671567,4,'actor',NULL,'[\"Simon\"]'),(4682786,291205,5,'director',NULL,NULL),(4682786,1615610,6,'writer','written by',NULL),(4682786,106835,7,'producer','producer',NULL),(4682786,2251559,8,'producer','producer',NULL),(4682786,289694,9,'producer','producer',NULL),(4682804,702,10,'producer','producer',NULL),(4682804,204,1,'actress',NULL,'[\"Lucy Cola\"]'),(4682804,358316,2,'actor',NULL,'[\"Mark Goodwin\"]'),(4682804,5939164,3,'actress',NULL,'[\"Erin Eccles\"]'),(4682804,1405398,4,'actor',NULL,'[\"Drew Cola\"]'),(4682804,1279638,5,'director',NULL,NULL),(4682804,7325081,6,'writer','screenplay',NULL),(4682804,3253620,7,'writer','screenplay',NULL),(4682804,131625,8,'producer','producer',NULL),(4682804,660295,9,'producer','producer',NULL),(4685762,4320770,10,'composer',NULL,NULL),(4685762,8314228,1,'actress',NULL,'[\"Lily\"]'),(4685762,10656367,2,'actress',NULL,'[\"Lourdes\"]'),(4685762,4594069,3,'actress',NULL,'[\"Frankie\"]'),(4685762,7594279,4,'actress',NULL,'[\"Tabby\"]'),(4685762,1830380,5,'director',NULL,NULL),(4685762,276823,6,'writer','based on characters created by',NULL),(4685762,89658,7,'producer','producer',NULL),(4685762,279651,8,'producer','producer',NULL),(4685762,926824,9,'producer','producer',NULL),(4686844,4397668,10,'writer','additional material by',NULL),(4686844,114,1,'actor',NULL,'[\"Nikita Khrushchev\"]'),(4686844,750971,2,'actor',NULL,'[\"Lavrenti Beria\"]'),(4686844,1787,3,'actor',NULL,'[\"Georgy Malenkov\"]'),(4686844,2057859,4,'actress',NULL,'[\"Svetlana\"]'),(4686844,406334,5,'director',NULL,NULL),(4686844,1942997,6,'writer','based on the comic books by',NULL),(4686844,2934300,7,'writer','based on the comic books by',NULL),(4686844,773768,8,'writer','written by',NULL),(4686844,2254846,9,'writer','written by',NULL),(4687108,2431822,10,'producer','producer',NULL),(4687108,5315658,1,'actress',NULL,'[\"Becky\",\"sister\"]'),(4687108,10031930,2,'actor',NULL,'[\"Cal\",\"brother\"]'),(4687108,933940,3,'actor',NULL,'[\"Ross\",\"husband\"]'),(4687108,7819375,4,'actor',NULL,'[\"Tobin\",\"son\"]'),(4687108,622112,5,'director',NULL,NULL),(4687108,175,6,'writer','based on the novella by',NULL),(4687108,454872,7,'writer','based on the novella by',NULL),(4687108,387541,8,'producer','producer',NULL),(4687108,588612,9,'producer','producer',NULL),(4691166,848892,10,'director',NULL,NULL),(4691166,6679415,1,'actor',NULL,'[\"Round Villager (segment \\\"Cinema\\\")\"]'),(4691166,6790541,2,'actor',NULL,'[\"Slim Villager (segment \\\"Cinema\\\")\"]'),(4691166,7478662,3,'actress',NULL,'[\"Helper (segment \\\"The Flame\\\")\"]'),(4691166,300,4,'actress',NULL,'[\"Elle (segment \\\"Cinema\\\")\"]'),(4691166,3008853,5,'director',NULL,NULL),(4691166,451799,6,'director',NULL,NULL),(4691166,626090,7,'director',NULL,NULL),(4691166,4221135,8,'director',NULL,NULL),(4691166,2566810,9,'director',NULL,NULL),(4692234,2245654,10,'producer','producer',NULL),(4692234,2843100,1,'actress',NULL,'[\"Génio\",\"Vaca Estropiada\"]'),(4692234,7116214,2,'actor',NULL,'[\"Simão \'Sem Tripas\'\"]'),(4692234,190388,3,'actress',NULL,'[\"Juíza\"]'),(4692234,129435,4,'actor',NULL,'[\"Senhorio\"]'),(4692234,326937,5,'director',NULL,NULL),(4692234,1703853,6,'writer',NULL,NULL),(4692234,723114,7,'writer',NULL,NULL),(4692234,13611,8,'producer','producer',NULL),(4692234,2104095,9,'producer','producer',NULL),(4693358,3076907,10,'producer','producer',NULL),(4693358,2681284,1,'actress',NULL,'[\"Ren Amari\"]'),(4693358,4223899,2,'actor',NULL,'[\"Jared Amari\"]'),(4693358,696216,3,'actress',NULL,'[\"TDA Interviewer\"]'),(4693358,2433030,4,'actress',NULL,'[\"Cass\"]'),(4693358,2279930,5,'director',NULL,NULL),(4693358,2053837,6,'writer','based on the novel \"Solitaire\" by',NULL),(4693358,927074,7,'writer','screenplay by',NULL),(4693358,275548,8,'producer','producer',NULL),(4693358,1452967,9,'producer','producer',NULL),(4693588,11370684,10,'writer','based on the book \"Un roi clandestin \" by',NULL),(4693588,5052617,1,'actor',NULL,'[\"Fahim Mohammad\"]'),(4693588,367,2,'actor',NULL,'[\"Sylvain Charpentier\"]'),(4693588,10087171,3,'actor',NULL,'[\"Nura\"]'),(4693588,620964,4,'actress',NULL,'[\"Mathilde\"]'),(4693588,553237,5,'director',NULL,NULL),(4693588,3820524,6,'writer','scenario',NULL),(4693588,970861,7,'writer','scenario',NULL),(4693588,11019869,8,'writer','based on the book \"Un roi clandestin \" by',NULL),(4693588,11370683,9,'writer','based on the book \"Un roi clandestin \" by',NULL),(4695012,1755315,10,'editor',NULL,NULL),(4695012,249291,1,'actor',NULL,'[\"Paul\"]'),(4695012,3571592,2,'actor',NULL,'[\"Will\"]'),(4695012,252238,3,'actress',NULL,'[\"Sarah\"]'),(4695012,2142336,4,'actress',NULL,'[\"Kim\"]'),(4695012,4099092,5,'director',NULL,NULL),(4695012,3346661,6,'producer','producer',NULL),(4695012,1978398,7,'producer','producer',NULL),(4695012,4590024,8,'composer',NULL,NULL),(4695012,2588703,9,'cinematographer','director of photography',NULL),(4698584,3009559,10,'producer','producer',NULL),(4698584,305558,1,'actor',NULL,'[\"Óscar Peluchonneau\"]'),(4698584,323483,2,'actor',NULL,'[\"Pablo Neruda\"]'),(4698584,608187,3,'actress',NULL,'[\"Delia del Carril\"]'),(4698584,349427,4,'actor',NULL,'[\"Picasso\"]'),(4698584,1883257,5,'director',NULL,NULL),(4698584,5979724,6,'writer',NULL,NULL),(4698584,13964200,7,'writer','collaborating writer',NULL),(4698584,3873682,8,'producer','producer',NULL),(4698584,5531197,9,'producer','producer',NULL),(4698684,766872,10,'producer','producer',NULL),(4698684,554,1,'actor',NULL,'[\"Hec\"]'),(4698684,5421877,2,'actor',NULL,'[\"Ricky Baker\"]'),(4698684,853498,3,'actress',NULL,'[\"Bella Faulkner\"]'),(4698684,1344302,4,'actress',NULL,'[\"Paula Hall\"]'),(4698684,169806,5,'director',NULL,NULL),(4698684,190085,6,'writer','based on the book \"Wild Pork and Watercress\" written by',NULL),(4698684,1081550,7,'writer','additional writing',NULL),(4698684,2868859,8,'producer','producer',NULL),(4698684,634733,9,'producer','producer',NULL),(4699388,627411,10,'composer',NULL,NULL),(4699388,241121,1,'actor',NULL,'[\"Alexandre\"]'),(4699388,1812637,2,'actress',NULL,'[\"Diane Duchêne\"]'),(4699388,434806,3,'actor',NULL,'[\"Bruno Cassoni\"]'),(4699388,1137610,4,'actress',NULL,'[\"Coralie, l\'assistante de Diane et Bruno\"]'),(4699388,1016687,5,'director',NULL,NULL),(4699388,138759,6,'writer','original screenplay: Corazon de Leon',NULL),(4699388,897065,7,'writer','adaptation',NULL),(4699388,241489,8,'producer','producer',NULL),(4699388,6658264,9,'producer','producer',NULL),(4701182,6613,10,'producer','producer',NULL),(4701182,2794962,1,'actress',NULL,'[\"Charlie\"]'),(4701182,7449863,2,'actor',NULL,'[\"Memo\"]'),(4701182,1078479,3,'actor',NULL,'[\"Agent Burns\"]'),(4701182,6099602,4,'actor',NULL,'[\"Otis\"]'),(4701182,1325899,5,'director',NULL,NULL),(4701182,5429637,6,'writer','written by',NULL),(4701182,881,7,'producer','producer',NULL),(4701182,220892,8,'producer','producer',NULL),(4701182,225146,9,'producer','producer',NULL),(4701724,791185,10,'producer','producer',NULL),(4701724,1519666,1,'actor',NULL,'[\"Dug\"]'),(4701724,1089991,2,'actor',NULL,'[\"Lord Nooth\"]'),(4701724,3586035,3,'actress',NULL,'[\"Goona\"]'),(4701724,1758,4,'actor',NULL,'[\"Chief Bobnar\"]'),(4701724,661910,5,'director',NULL,NULL),(4701724,123666,6,'writer','screenplay by',NULL),(4701724,2664949,7,'writer','screenplay by',NULL),(4701724,1485380,8,'producer','producer',NULL),(4701724,520485,9,'producer','producer',NULL),(4703048,518937,10,'composer',NULL,NULL),(4703048,68260,1,'actor',NULL,'[\"Rusty Firmin\"]'),(4703048,835016,2,'actor',NULL,'[\"Max Vernon\"]'),(4703048,180411,3,'actress',NULL,'[\"Kate Adie\"]'),(4703048,789864,4,'actor',NULL,'[\"Dellow\"]'),(4703048,1089736,5,'director',NULL,NULL),(4703048,822101,6,'writer','written by',NULL),(4703048,7307076,7,'writer','story consultant',NULL),(4703048,1195574,8,'producer','producer',NULL),(4703048,6506066,9,'composer','composer',NULL),(4714032,7352418,10,'actor',NULL,'[\"Isaac Ravengorn\"]'),(4714032,7352420,1,'actor',NULL,'[\"Salim Nadir\"]'),(4714032,1942966,2,'actress',NULL,'[\"Megan Stryge\"]'),(4714032,7352419,3,'actress',NULL,'[\"Nyssa\"]'),(4714032,1164411,4,'actor',NULL,'[\"Alexander Torquemada\"]'),(4714032,7352416,5,'director',NULL,NULL),(4714032,7352417,6,'actress',NULL,'[\"Alytha Mercuri\"]'),(4714032,7352421,7,'actress',NULL,'[\"Leto Meridian\"]'),(4714032,7352423,8,'actor',NULL,'[\"Klaus Balrog\"]'),(4714032,7352424,9,'actress',NULL,'[\"Oramamé Alwami\"]'),(4714568,2414773,10,'editor',NULL,NULL),(4714568,7368158,1,'actor',NULL,'[\"Conor MacSweeney\"]'),(4714568,7368157,2,'actor',NULL,'[\"Jock Murphy\"]'),(4714568,2901230,3,'actress',NULL,'[\"Mairead MacSweeney\",\"Female News Anchor\"]'),(4714568,7098092,4,'actor',NULL,'[\"Sergeant Healy\"]'),(4714568,1244603,5,'director',NULL,NULL),(4714568,6224331,6,'writer','story editor',NULL),(4714568,2414228,7,'producer','producer',NULL),(4714568,1037342,8,'composer',NULL,NULL),(4714568,1162543,9,'cinematographer',NULL,NULL),(4714782,479352,10,'production_designer',NULL,NULL),(4714782,829576,1,'actress',NULL,'[\"Maureen\"]'),(4714782,1955257,2,'actor',NULL,'[\"Ingo\"]'),(4714782,3335498,3,'actress',NULL,'[\"Lara\"]'),(4714782,509264,4,'actor',NULL,'[\"Erwin\"]'),(4714782,801,5,'director',NULL,NULL),(4714782,318570,6,'producer','producer',NULL),(4714782,4117985,7,'composer',NULL,NULL),(4714782,494617,8,'cinematographer',NULL,NULL),(4714782,1520209,9,'editor',NULL,NULL),(4717402,4247366,10,'producer','producer',NULL),(4717402,4765550,1,'actor',NULL,'[\"Angelino\"]'),(4717402,6237589,2,'actor',NULL,'[\"Vinz\"]'),(4717402,5313788,3,'actor',NULL,'[\"Willy\"]'),(4717402,40545,4,'actor',NULL,'[\"Mister K\"]'),(4717402,632722,5,'director',NULL,NULL),(4717402,1640505,6,'director',NULL,NULL),(4717402,4481399,7,'writer','adaptation',NULL),(4717402,2842978,8,'writer','English adaptation',NULL),(4717402,4848863,9,'producer','producer',NULL),(4718770,8052678,10,'producer','producer',NULL),(4718770,996669,1,'actor',NULL,'[\"The Bouncer\"]'),(4718770,3232025,2,'actress',NULL,'[\"Addapearle\"]'),(4718770,2499064,3,'actress',NULL,'[\"Glinda the Good Witch of the South\"]'),(4718770,590196,4,'actress',NULL,'[\"Auntie Em\"]'),(4718770,224683,5,'director',NULL,NULL),(4718770,502497,6,'director',NULL,NULL),(4718770,114912,7,'writer','book of the musical \"The Wiz\"',NULL),(4718770,1213,8,'writer',NULL,NULL),(4718770,8252632,9,'writer','additional material for the musical \"The Wiz\"',NULL),(4720702,2000770,10,'producer','producer',NULL),(4720702,1176985,1,'actor',NULL,'[\"Stupe\"]'),(4720702,811242,2,'actress',NULL,'[\"Lucy\"]'),(4720702,2323845,3,'actress',NULL,'[\"Belinda\"]'),(4720702,2014044,4,'actor',NULL,'[\"JP\"]'),(4720702,5732579,5,'director',NULL,NULL),(4720702,5722382,6,'director',NULL,NULL),(4720702,198804,7,'writer','screenplay by',NULL),(4720702,1657200,8,'writer','screenplay by',NULL),(4720702,1924867,9,'producer','producer',NULL),(4729430,303922,10,'producer','producer',NULL),(4729430,5403,1,'actor',NULL,'[\"Jesper\"]'),(4729430,799777,2,'actor',NULL,'[\"Klaus\"]'),(4729430,429069,3,'actress',NULL,'[\"Alva\"]'),(4729430,766005,4,'actor',NULL,'[\"Mr. Ellingboe\"]'),(4729430,655053,5,'director',NULL,NULL),(4729430,3582089,6,'director','co-director',NULL),(4729430,2700235,7,'writer','screenplay by',NULL),(4729430,2082813,8,'writer','screenplay by',NULL),(4729430,273832,9,'producer','producer',NULL),(4729896,2087015,10,'editor',NULL,NULL),(4729896,8010991,1,'actress',NULL,'[\"Alex\"]'),(4729896,2037840,2,'actress',NULL,'[\"Doctor\"]'),(4729896,278239,3,'actress',NULL,'[\"Ivanna\"]'),(4729896,1853152,4,'actress',NULL,'[\"Luisa\"]'),(4729896,3782307,5,'director',NULL,NULL),(4729896,1095938,6,'producer','producer',NULL),(4729896,3905306,7,'producer','producer',NULL),(4729896,3779934,8,'composer',NULL,NULL),(4729896,3832805,9,'cinematographer',NULL,NULL),(4730986,2043592,10,'cinematographer',NULL,NULL),(4730986,4205963,1,'actress',NULL,'[\"Dounia\"]'),(4730986,7368024,2,'actress',NULL,'[\"Maimouna\"]'),(4730986,8152807,3,'actor',NULL,'[\"Djigui\"]'),(4730986,5621585,4,'actress',NULL,'[\"Rebecca\"]'),(4730986,3997700,5,'director',NULL,NULL),(4730986,4694441,6,'writer','adaptation',NULL),(4730986,4965683,7,'writer','screenplay',NULL),(4730986,3497731,8,'producer','producer',NULL),(4730986,7965891,9,'composer',NULL,NULL),(4731136,5648,10,'cinematographer','director of photography',NULL),(4731136,2851530,1,'actor',NULL,'[\"Lockhart\"]'),(4731136,5042,2,'actor',NULL,'[\"Volmer\"]'),(4731136,5301405,3,'actress',NULL,'[\"Hannah\"]'),(4731136,2166477,4,'actor',NULL,'[\"Enrico\"]'),(4731136,893659,5,'director',NULL,NULL),(4731136,1244808,6,'writer','screenplay by',NULL),(4731136,188396,7,'producer','producer',NULL),(4731136,586969,8,'producer','producer',NULL),(4731136,1818744,9,'composer',NULL,NULL),(4731504,2519331,10,'editor',NULL,NULL),(4731504,2990531,1,'actress',NULL,'[\"Joris\"]'),(4731504,973412,2,'actress',NULL,'[\"Julith\"]'),(4731504,1656118,3,'actress',NULL,'[\"Bakara\"]'),(4731504,2574881,4,'actor',NULL,'[\"Khan Karkass\"]'),(4731504,7368361,5,'director',NULL,NULL),(4731504,4247366,6,'director',NULL,NULL),(4731504,1718044,7,'writer','screenplay',NULL),(4731504,4848863,8,'producer','producer',NULL),(4731504,7589794,9,'composer','composer',NULL),(4733624,2231934,10,'producer','producer',NULL),(4733624,366389,1,'actor',NULL,'[\"Matt Logelin\"]'),(4733624,5569,2,'actress',NULL,'[\"Marion\"]'),(4733624,2577076,3,'actor',NULL,'[\"Jordan\"]'),(4733624,1986622,4,'actress',NULL,'[\"Swan\"]'),(4733624,919369,5,'director',NULL,NULL),(4733624,828342,6,'writer','screenplay by',NULL),(4733624,2710326,7,'writer','based upon the book \"Two Kisses for Maddy: A Memoir of Loss & Love\" by',NULL),(4733624,1583077,8,'producer','producer',NULL),(4733624,2125212,9,'producer','producer',NULL),(4738174,74445,10,'editor',NULL,NULL),(4738174,272173,1,'actor',NULL,'[\"Martin Ward\"]'),(4738174,399088,2,'actor',NULL,'[\"David Bouchard\"]'),(4738174,64669,3,'actor',NULL,'[\"Mike Dubois\"]'),(4738174,420937,4,'actor',NULL,'[\"Sylvio DiPietro\"]'),(4738174,221662,5,'director',NULL,NULL),(4738174,1570770,6,'producer','producer',NULL),(4738174,2251461,7,'producer','producer',NULL),(4738174,4000920,8,'composer',NULL,NULL),(4738174,686656,9,'cinematographer',NULL,NULL),(4738360,14916379,10,'cinematographer',NULL,NULL),(4738360,1939580,1,'actor',NULL,'[\"Skjervald\"]'),(4738360,1970465,2,'actor',NULL,'[\"Torstein\"]'),(4738360,6406428,3,'actor',NULL,'[\"Egil\"]'),(4738360,7364828,4,'actress',NULL,'[\"Inga\"]'),(4738360,310168,5,'director',NULL,NULL),(4738360,1747747,6,'writer',NULL,NULL),(4738360,321521,7,'producer','executive producer',NULL),(4738360,1626598,8,'producer','executive producer',NULL),(4738360,1482406,9,'composer',NULL,NULL),(4738802,4361690,10,'editor',NULL,NULL),(4738802,3783488,1,'actress',NULL,'[\"Polly\",\"Amy Cuthbert\"]'),(4738802,2590618,2,'actress',NULL,'[\"Tiana, a supermarket chick\"]'),(4738802,1638339,3,'actress',NULL,'[\"Patricia Clarke\"]'),(4738802,1263004,4,'actress',NULL,'[\"Mabel, a cinema patron\"]'),(4738802,3768714,5,'director',NULL,NULL),(4738802,3775129,6,'producer','producer',NULL),(4738802,2592085,7,'producer','producer',NULL),(4738802,3777031,8,'composer',NULL,NULL),(4738802,4222837,9,'cinematographer',NULL,NULL),(4746506,188262,10,'composer',NULL,NULL),(4746506,557609,1,'actor',NULL,'[\"Massimo\"]'),(4746506,67367,2,'actress',NULL,'[\"Elisa\"]'),(4746506,1926453,3,'actor',NULL,'[\"Padre di Massimo\"]'),(4746506,8595535,4,'actor',NULL,'[\"Massimo bambino\"]'),(4746506,69166,5,'director',NULL,NULL),(4746506,3789750,6,'writer','novel',NULL),(4746506,16837,7,'writer','screenplay',NULL),(4746506,763460,8,'writer','screenplay',NULL),(4746506,143128,9,'producer','producer',NULL),(4758646,1848253,10,'producer','producer',NULL),(4758646,93,1,'actor',NULL,'[\"Glen McMahon\"]'),(4758646,79418,2,'actor',NULL,'[\"Simon Ball\"]'),(4758646,1910274,3,'actor',NULL,'[\"Cory Staggart\"]'),(4758646,1710309,4,'actor',NULL,'[\"Willy Dunne\"]'),(4758646,2391575,5,'director',NULL,NULL),(4758646,368606,6,'writer','book \"The Operators\"',NULL),(4758646,117290,7,'producer','producer',NULL),(4758646,306890,8,'producer','producer',NULL),(4758646,1250070,9,'producer','producer',NULL),(4761112,5074967,10,'writer','book editor \"Guantánamo Diary\"',NULL),(4761112,2588665,1,'actor',NULL,'[\"Mohamedou Ould Slahi\"]'),(4761112,12366935,2,'actress',NULL,'[\"Mohamedou\'s Niece\"]'),(4761112,12366936,3,'actor',NULL,'[\"Groom at Wedding\"]'),(4761112,12366937,4,'actor',NULL,'[\"Wedding Guest\"]'),(4761112,531817,5,'director',NULL,NULL),(4761112,2224890,6,'writer','screenplay',NULL),(4761112,3239033,7,'writer','screenplay',NULL),(4761112,2126954,8,'writer','screenplay',NULL),(4761112,8877502,9,'writer','book \"Guantánamo Diary\"',NULL),(4765284,112189,10,'producer','producer',NULL),(4765284,447695,1,'actress',NULL,'[\"Beca\"]'),(4765284,2313103,2,'actress',NULL,'[\"Fat Amy\"]'),(4765284,811242,3,'actress',NULL,'[\"Chloe\"]'),(4765284,2319871,4,'actress',NULL,'[\"Aubrey\"]'),(4765284,2586324,5,'director',NULL,NULL),(4765284,134224,6,'writer','screenplay by',NULL),(4765284,925234,7,'writer','screenplay by',NULL),(4765284,3015467,8,'writer','based on the book by',NULL),(4765284,6969,9,'producer','producer',NULL),(4766604,530917,10,'producer','producer',NULL),(4766604,378698,1,'actor',NULL,'[\"Jörg Geissner\"]'),(4766604,100196,2,'actor',NULL,'[\"Panos\"]'),(4766604,1081566,3,'actor',NULL,'[\"Spyros\"]'),(4766604,883505,4,'actor',NULL,'[\"Ilias\"]'),(4766604,3866538,5,'director',NULL,NULL),(4766604,1688760,6,'writer','screenplay',NULL),(4766604,2222768,7,'writer','screenplay',NULL),(4766604,3288874,8,'producer','producer',NULL),(4766604,1157706,9,'producer','producer',NULL),(4767274,721614,10,'cinematographer',NULL,NULL),(4767274,4865040,1,'actress',NULL,'[\"Dolly Parton\"]'),(4767274,2185000,2,'actress',NULL,'[\"Avie Lee Parton\"]'),(4767274,5401,3,'actor',NULL,'[\"Robert Lee Parton\"]'),(4767274,574468,4,'actor',NULL,'[\"Rev. Jake Owens\"]'),(4767274,378893,5,'director',NULL,NULL),(4767274,519133,6,'writer','writer',NULL),(4767274,382731,7,'producer','producer',NULL),(4767274,6561,8,'composer',NULL,NULL),(4767274,499350,9,'composer',NULL,NULL),(4777008,52520,10,'writer','based on: characters from Disney\'s \"Sleeping Beauty\", story',NULL),(4777008,1401,1,'actress',NULL,'[\"Maleficent\"]'),(4777008,1102577,2,'actress',NULL,'[\"Aurora\"]'),(4777008,6170168,3,'actor',NULL,'[\"Prince Philip\"]'),(4777008,201,4,'actress',NULL,'[\"Queen Ingrith\"]'),(4777008,1461392,5,'director',NULL,NULL),(4777008,941314,6,'writer','written by',NULL),(4777008,1406764,7,'writer','written by',NULL),(4777008,2873116,8,'writer','written by',NULL),(4777008,674518,9,'writer','based on: characters from \"La Belle Au Bois Dormant\" written by',NULL),(4779026,3518288,10,'cinematographer',NULL,NULL),(4779026,7396608,1,'actor',NULL,'[\"Old Tyme Vampire\",\"Main Vampire\"]'),(4779026,7194563,2,'actor',NULL,'[\"Quincy Harker\"]'),(4779026,4756611,3,'actor',NULL,'[\"Charlie Harker\",\"Jonathan Harker\"]'),(4779026,3250385,4,'actor',NULL,'[\"Gerry Harker\",\"Henrietta Harker\"]'),(4779026,1286934,5,'director',NULL,NULL),(4779026,3344322,6,'writer','story',NULL),(4779026,2906862,7,'producer','producer',NULL),(4779026,2455594,8,'producer','producer',NULL),(4779026,3347023,9,'composer',NULL,NULL),(4779682,43007,10,'producer','producer',NULL),(4779682,5458,1,'actor',NULL,'[\"Jonas Taylor\"]'),(4779682,508356,2,'actress',NULL,'[\"Suyin\"]'),(4779682,933988,3,'actor',NULL,'[\"Morris\"]'),(4779682,193295,4,'actor',NULL,'[\"Mac\"]'),(4779682,5509,5,'director',NULL,NULL),(4779682,1212988,6,'writer','screenplay by',NULL),(4779682,388377,7,'writer','screenplay by',NULL),(4779682,388375,8,'writer','screenplay by',NULL),(4779682,22709,9,'writer','based on the novel \"Meg\" by',NULL),(4780834,7398892,1,'actress',NULL,'[\"Honey\"]'),(4780834,7398891,2,'actress',NULL,'[\"Jeanie\"]'),(4780834,7184199,3,'director',NULL,NULL),(4780834,2475668,4,'writer',NULL,NULL),(4780834,7398894,5,'composer',NULL,NULL),(4780834,3792374,6,'cinematographer',NULL,NULL),(4786282,818484,10,'cinematographer','director of photography',NULL),(4786282,1954240,1,'actress',NULL,'[\"Rebecca\"]'),(4786282,5145655,2,'actor',NULL,'[\"Martin\"]'),(4786282,4742,3,'actress',NULL,'[\"Sophie\"]'),(4786282,121605,4,'actor',NULL,'[\"Paul\"]'),(4786282,2497546,5,'director',NULL,NULL),(4786282,2104063,6,'writer','screenplay',NULL),(4786282,2302134,7,'producer','producer',NULL),(4786282,1490123,8,'producer','producer',NULL),(4786282,1818744,9,'composer',NULL,NULL),(4788934,910996,10,'composer',NULL,NULL),(4788934,7403141,1,'actor',NULL,'[\"Yu Lei\"]'),(4788934,1898126,2,'actor',NULL,'[\"The Health Inspector\"]'),(4788934,316,3,'actor',NULL,'[\"Rogman\"]'),(4788934,131067,4,'actress',NULL,'[\"Grandma Ru\"]'),(4788934,7403142,5,'director',NULL,NULL),(4788934,896139,6,'director','voice director',NULL),(4788934,249041,7,'writer','english script',NULL),(4788934,731619,8,'writer',NULL,NULL),(4788934,7403143,9,'producer','producer',NULL),(4794188,10506074,1,'actress',NULL,'[\"Takeko Nakano\"]'),(4794188,7408265,2,'actress',NULL,'[\"Young Takeko\"]'),(4794188,2144123,3,'actress',NULL,'[\"Kouko Nakano\"]'),(4794188,6724461,4,'actress',NULL,'[\"Yuko Nakano\"]'),(4794188,2251828,5,'director',NULL,NULL),(4794188,5483636,6,'writer','writer',NULL),(4794188,769561,7,'composer','composer',NULL),(4794188,905979,8,'composer','co-composer',NULL),(4794188,415599,9,'editor',NULL,NULL),(4795124,7037,10,'cinematographer','director of photography',NULL),(4795124,220240,1,'actor',NULL,'[\"Maximo\"]'),(4795124,161,2,'actress',NULL,'[\"Sara\"]'),(4795124,6004682,3,'actor',NULL,'[\"Hugo\"]'),(4795124,507,4,'actor',NULL,'[\"Rick\"]'),(4795124,547800,5,'director',NULL,NULL),(4795124,951686,6,'writer','written by',NULL),(4795124,7409040,7,'writer','written by',NULL),(4795124,643967,8,'producer','producer',NULL),(4795124,917208,9,'composer',NULL,NULL),(4798836,2616863,10,'cinematographer',NULL,NULL),(4798836,9353334,1,'actress',NULL,'[\"Young Anna\"]'),(4798836,5043629,2,'actress',NULL,'[\"Young Linda\"]'),(4798836,7598168,3,'actress',NULL,'[\"Anna Bludso\"]'),(4798836,3878725,4,'actor',NULL,'[\"Male NV6 Exec.\"]'),(4798836,2282177,5,'director',NULL,NULL),(4798836,3782182,6,'producer','producer',NULL),(4798836,3649782,7,'producer','producer',NULL),(4798836,2249488,8,'producer','producer',NULL),(4798836,3929283,9,'composer',NULL,NULL),(4799050,1831620,10,'cinematographer','director of photography',NULL),(4799050,424060,1,'actress',NULL,'[\"Jess\"]'),(4799050,571952,2,'actress',NULL,'[\"Kiwi\",\"Pippa\"]'),(4799050,2368789,3,'actress',NULL,'[\"Blair\"]'),(4799050,4477261,4,'actress',NULL,'[\"Frankie\"]'),(4799050,3622659,5,'director',NULL,NULL),(4799050,3625953,6,'writer','written by',NULL),(4799050,65899,7,'producer','producer',NULL),(4799050,866157,8,'producer','producer',NULL),(4799050,3825122,9,'composer','composer',NULL),(4800178,3403880,1,'actor',NULL,'[\"Bill Lahijani\"]'),(4800178,3011554,2,'actor',NULL,NULL),(4800178,1665181,3,'actor',NULL,NULL),(4800178,1887540,4,'actress',NULL,NULL),(4800178,1923452,5,'director',NULL,NULL),(4800178,4307673,6,'producer','producer',NULL),(4800178,5122164,7,'producer','producer',NULL),(4800178,4308958,8,'composer',NULL,NULL),(4800178,4295943,9,'composer',NULL,NULL),(4805316,2101924,10,'cinematographer',NULL,NULL),(4805316,1361530,1,'actor',NULL,'[\"Joseph Solomon\"]'),(4805316,1254152,2,'actress',NULL,'[\"Sophia\"]'),(4805316,3254323,3,'actress',NULL,'[\"Victoria\"]'),(4805316,399427,4,'actor',NULL,'[\"Neil Hughes\"]'),(4805316,2201016,5,'director',NULL,NULL),(4805316,172256,6,'producer','producer',NULL),(4805316,219613,7,'producer','producer',NULL),(4805316,1737326,8,'producer','producer',NULL),(4805316,1037342,9,'composer',NULL,NULL),(4807408,2272537,10,'producer','producer',NULL),(4807408,378245,1,'actress',NULL,'[\"Ann Atwater\"]'),(4807408,5377,2,'actor',NULL,'[\"C.P. Ellis\"]'),(4807408,1959501,3,'actor',NULL,'[\"Bill Riddick\"]'),(4807408,162,4,'actress',NULL,'[\"Mary Ellis\"]'),(4807408,84312,5,'director',NULL,NULL),(4807408,203448,6,'writer','inspired by true events chronicled in \'The Best of Enemies: Race and Redemption in the New South\' by',NULL),(4807408,73554,7,'producer','producer',NULL),(4807408,77043,8,'producer','producer',NULL),(4807408,1497,9,'producer','producer',NULL),(4807950,3747412,10,'cinematographer',NULL,NULL),(4807950,5648322,1,'actor',NULL,'[\"The Cherry\"]'),(4807950,1861625,2,'actress',NULL,'[\"Terry\'s Wife\"]'),(4807950,4747135,3,'actor',NULL,'[\"The Bouncer\"]'),(4807950,7546159,4,'actor',NULL,'[\"Michael\"]'),(4807950,4743469,5,'director',NULL,NULL),(4807950,3501514,6,'writer',NULL,NULL),(4807950,6850304,7,'producer','producer',NULL),(4807950,1304824,8,'composer',NULL,NULL),(4807950,3428119,9,'composer',NULL,NULL),(4823434,812702,10,'production_designer',NULL,NULL),(4823434,7426970,1,'actress',NULL,'[\"Estrella\"]'),(4823434,7426971,2,'actor',NULL,'[\"El Shine\"]'),(4823434,6644616,3,'actor',NULL,'[\"Morro\"]'),(4823434,7426973,4,'actor',NULL,'[\"Tucsi\"]'),(4823434,411517,5,'director',NULL,NULL),(4823434,1000616,6,'producer','producer',NULL),(4823434,3220493,7,'composer',NULL,NULL),(4823434,1455782,8,'cinematographer',NULL,NULL),(4823434,1955699,9,'editor',NULL,NULL),(4824302,4036280,10,'producer','producer',NULL),(4824302,98,1,'actress',NULL,'[\"Sandy\"]'),(4824302,5028,2,'actress',NULL,'[\"Jesse\"]'),(4824302,210,3,'actress',NULL,'[\"Miranda Collins\"]'),(4824302,837177,4,'actor',NULL,'[\"Bradley\"]'),(4824302,5190,5,'director',NULL,NULL),(4824302,462525,6,'writer','screenplay',NULL),(4824302,908024,7,'writer','screenplay',NULL),(4824302,385726,8,'writer','screenplay',NULL),(4824302,7427876,9,'writer','story',NULL),(4827558,2476429,10,'producer','producer',NULL),(4827558,1500155,1,'actor',NULL,'[\"Monte\"]'),(4827558,300,2,'actress',NULL,'[\"Dibs\"]'),(4827558,71275,3,'actor',NULL,'[\"Tcherny\"]'),(4827558,5301405,4,'actress',NULL,'[\"Boyse\"]'),(4827558,219136,5,'director',NULL,NULL),(4827558,267288,6,'writer','written by',NULL),(4827558,3563262,7,'writer','collaboration',NULL),(4827558,514817,8,'writer','additional writing',NULL),(4827558,7429362,9,'writer','additional writing by',NULL),(4831420,1149785,10,'cinematographer','director of photography',NULL),(4831420,5575,1,'actor',NULL,'[\"Fin Shepard\"]'),(4831420,5346,2,'actress',NULL,'[\"April Wexler\"]'),(4831420,1126641,3,'actress',NULL,'[\"Gemini\"]'),(4831420,512963,4,'actor',NULL,'[\"Matt Shepard\"]'),(4831420,3116,5,'director',NULL,NULL),(4831420,505736,6,'writer','written by',NULL),(4831420,490375,7,'producer','producer',NULL),(4831420,1700105,8,'composer',NULL,NULL),(4831420,725808,9,'composer',NULL,NULL),(4836736,2403492,10,'composer',NULL,NULL),(4836736,5245105,1,'actor',NULL,'[\"Felix Ferne\"]'),(4836736,2428319,2,'actor',NULL,'[\"Andy Lau\"]'),(4836736,5542761,3,'actor',NULL,'[\"Sam Conte\"]'),(4836736,5565313,4,'actor',NULL,'[\"Jake Riles\"]'),(4836736,128365,5,'director',NULL,NULL),(4836736,44016,6,'writer','created by',NULL),(4836736,1472983,7,'writer','written by',NULL),(4836736,2811448,8,'writer','written by',NULL),(4836736,1029497,9,'producer','producer',NULL),(4846232,2673579,10,'producer','producer',NULL),(4846232,1500155,1,'actor',NULL,'[\"Connie Nikas\"]'),(4846232,1509478,2,'actor',NULL,'[\"Nick Nikas\"]'),(4846232,492,3,'actress',NULL,'[\"Corey Ellman\"]'),(4846232,7350709,4,'actor',NULL,'[\"Ray\"]'),(4846232,1343394,5,'director',NULL,NULL),(4846232,2563482,6,'writer','written by',NULL),(4846232,2205351,7,'producer','producer',NULL),(4846232,3686688,8,'producer','producer',NULL),(4846232,234806,9,'producer','producer',NULL),(4846340,867768,10,'producer','producer',NULL),(4846340,378245,1,'actress',NULL,'[\"Katherine G. Johnson\"]'),(4846340,818055,2,'actress',NULL,'[\"Dorothy Vaughan\"]'),(4846340,1847117,3,'actress',NULL,'[\"Mary Jackson\"]'),(4846340,126,4,'actor',NULL,'[\"Al Harrison\"]'),(4846340,577647,5,'director',NULL,NULL),(4846340,2284377,6,'writer','screenplay by',NULL),(4846340,7446421,7,'writer','based on the book by',NULL),(4846340,1858656,8,'producer','producer',NULL),(4846340,317642,9,'producer','producer',NULL),(4853102,600872,10,'writer','based on the graphic novel written by',NULL),(4853102,175834,1,'actor',NULL,'[\"Batman\"]'),(4853102,434,2,'actor',NULL,'[\"The Joker\"]'),(4853102,152839,3,'actress',NULL,'[\"Barbara Gordon\",\"Batgirl\"]'),(4853102,936403,4,'actor',NULL,'[\"Commissioner Gordon\"]'),(4853102,515005,5,'director',NULL,NULL),(4853102,1568755,6,'writer','written by',NULL),(4853102,2082787,7,'writer','based on the graphic novel illustrated by',NULL),(4853102,4170,8,'writer','Batman created by',NULL),(4853102,277730,9,'writer','Batman created by',NULL),(4857264,1481660,10,'producer','producer',NULL),(4857264,1832584,1,'actor',NULL,'[\"Adrián Doria\"]'),(4857264,905676,2,'actress',NULL,'[\"Virginia Goodman\"]'),(4857264,180580,3,'actor',NULL,'[\"Tomás Garrido\"]'),(4857264,1036659,4,'actress',NULL,'[\"Laura Vidal\"]'),(4857264,1079062,5,'director',NULL,NULL),(4857264,1516346,6,'writer','collaborating writer',NULL),(4857264,303922,7,'producer','producer',NULL),(4857264,2541742,8,'producer','producer',NULL),(4857264,379408,9,'producer','producer',NULL),(4858280,7456758,1,'actor',NULL,NULL),(4858280,7456759,2,'actor',NULL,NULL),(4858280,7456760,3,'producer','producer',NULL),(4858280,7456761,4,'composer',NULL,NULL),(4858674,831568,10,'producer','producer',NULL),(4858674,8437490,1,'actress',NULL,'[\"Stargirl Caraway\"]'),(4858674,6311728,2,'actor',NULL,'[\"Leo Borlock\"]'),(4858674,2064,3,'actor',NULL,'[\"Archie\"]'),(4858674,380073,4,'actor',NULL,'[\"Mr. Robineau\"]'),(4858674,1257352,5,'director',NULL,NULL),(4858674,353929,6,'writer','screenplay by',NULL),(4858674,3527897,7,'writer','screenplay by',NULL),(4858674,1072425,8,'writer','based on the novel by',NULL),(4858674,1650412,9,'producer','producer',NULL),(4867110,2336135,1,'actor',NULL,'[\"James Singer\"]'),(4867110,3170207,2,'actor',NULL,'[\"Lance Black\"]'),(4867110,1997480,3,'actor',NULL,'[\"Daniel\"]'),(4867110,1869946,4,'actor',NULL,'[\"Wesley\"]'),(4867110,5274019,5,'director',NULL,NULL),(4867110,2982324,6,'composer',NULL,NULL),(4867110,3097960,7,'cinematographer','director of photography',NULL),(4867110,5213993,8,'editor',NULL,NULL),(4869556,7464064,1,'actor',NULL,NULL),(4869556,6683776,2,'actress',NULL,NULL),(4869556,7464062,3,'actress',NULL,NULL),(4869556,5131353,4,'actor',NULL,NULL),(4869556,1009754,5,'director',NULL,NULL),(4869556,1664033,6,'cinematographer','director of photography',NULL),(4869556,7464063,7,'actress',NULL,NULL),(4869556,6683774,8,'actor',NULL,NULL),(4870838,2180319,10,'writer','character created by: Black Mask',NULL),(4870838,641816,1,'actor',NULL,'[\"Batman\",\"Bruce Wayne\"]'),(4870838,2088803,2,'actress',NULL,'[\"Batwoman\",\"Katherine Kane\"]'),(4870838,4184666,3,'actor',NULL,'[\"Robin\",\"Damian Wayne\"]'),(4870838,536883,4,'actor',NULL,'[\"Nightwing\",\"Dick Grayson\"]'),(4870838,646515,5,'director',NULL,NULL),(4870838,218204,6,'writer','written by',NULL),(4870838,4170,7,'writer','character created by: Batman',NULL),(4870838,277730,8,'writer','character created by: Batman',NULL),(4870838,1198528,9,'writer','character created by: Black Mask',NULL),(4871980,1240838,10,'producer','producer',NULL),(4871980,2413125,1,'actor',NULL,'[\"Charlie\"]'),(4871980,144260,2,'actress',NULL,'[\"Eva\"]'),(4871980,1745736,3,'actress',NULL,'[\"Sherry\"]'),(4871980,1589825,4,'actress',NULL,'[\"Karen\"]'),(4871980,937306,5,'director',NULL,NULL),(4871980,1393214,6,'writer','screenplay by',NULL),(4871980,362544,7,'writer','screenplay by',NULL),(4871980,3276776,8,'writer','screenplay by',NULL),(4871980,2613812,9,'producer','producer',NULL),(4877122,236462,10,'composer',NULL,NULL),(4877122,2554352,1,'actor',NULL,'[\"Gene\"]'),(4877122,179479,2,'actor',NULL,'[\"Hi-5\"]'),(4877122,267506,3,'actress',NULL,'[\"Jailbreak\"]'),(4877122,748973,4,'actress',NULL,'[\"Smiler\"]'),(4877122,1902232,5,'director',NULL,NULL),(4877122,796928,6,'writer','screenplay by',NULL),(4877122,925234,7,'writer','screenplay by',NULL),(4877122,388971,8,'writer','additional screenplay material',NULL),(4877122,706904,9,'producer','producer',NULL),(4878482,389405,10,'producer','producer',NULL),(4878482,4359664,1,'actress',NULL,'[\"Willowdean\"]'),(4878482,98,2,'actress',NULL,'[\"Rosie\"]'),(4878482,3843467,3,'actress',NULL,'[\"Ellen\"]'),(4878482,8199669,4,'actress',NULL,'[\"Millie\"]'),(4878482,281945,5,'director',NULL,NULL),(4878482,353929,6,'writer','screenplay by',NULL),(4878482,7471342,7,'writer','based on the novel by',NULL),(4878482,8117399,8,'producer','producer',NULL),(4878482,1545611,9,'producer','producer',NULL),(4881806,189777,10,'producer','producer',NULL),(4881806,695435,1,'actor',NULL,'[\"Owen Grady\"]'),(4881806,397171,2,'actress',NULL,'[\"Claire Dearing\"]'),(4881806,1245863,3,'actor',NULL,'[\"Eli Mills\"]'),(4881806,6819854,4,'actor',NULL,'[\"Franklin Webb\"]'),(4881806,1291105,5,'director',NULL,NULL),(4881806,2081046,6,'writer','written by',NULL),(4881806,1119880,7,'writer','written by',NULL),(4881806,341,8,'writer','based on characters created by',NULL),(4881806,1428086,9,'producer','producer',NULL),(4895668,1181838,10,'composer',NULL,NULL),(4895668,519933,1,'actor',NULL,'[\"Jorge\"]'),(4895668,4178453,2,'actress',NULL,'[\"Susana\"]'),(4895668,8389249,3,'actor',NULL,'[\"Nelson\"]'),(4895668,710810,4,'actor',NULL,'[\"Vitinho\"]'),(4895668,554076,5,'director',NULL,NULL),(4895668,4437366,6,'writer','screenwriter',NULL),(4895668,37665,7,'producer','producer',NULL),(4895668,562462,8,'producer','producer',NULL),(4895668,2056383,9,'composer',NULL,NULL),(4895704,7243307,1,'actress',NULL,'[\"Claire\"]'),(4895704,7144123,2,'actress',NULL,'[\"Sophie\"]'),(4895704,7482227,3,'actress',NULL,'[\"Amanda\"]'),(4895704,1642873,4,'director',NULL,NULL),(4895704,2475668,5,'writer',NULL,NULL),(4895704,7184199,6,'producer','producer',NULL),(4895704,5717494,7,'composer',NULL,NULL),(4897214,3829564,1,'actress',NULL,'[\"Madeline\"]'),(4897214,5233340,2,'actress',NULL,'[\"Chloe\"]'),(4897214,6394461,3,'actor',NULL,'[\"Rich\"]'),(4899370,509176,10,'producer','producer',NULL),(4899370,544718,1,'actress',NULL,'[\"Megan Leavey\"]'),(4899370,1913125,2,'actor',NULL,'[\"Cpl. Matt Morales\"]'),(4899370,271657,3,'actor',NULL,'[\"Sergeant Andrew Dean\"]'),(4899370,925966,4,'actor',NULL,'[\"Bob\"]'),(4899370,1363250,5,'director',NULL,NULL),(4899370,336861,6,'writer','written by',NULL),(4899370,1754239,7,'writer','written by',NULL),(4899370,522645,8,'writer','written by',NULL),(4899370,7286250,9,'producer','producer',NULL),(4899406,1514227,10,'cinematographer',NULL,NULL),(4899406,2131960,1,'actor',NULL,'[\"Iremar\"]'),(4899406,2701325,2,'actress',NULL,'[\"Galega\"]'),(4899406,7502810,3,'actor',NULL,'[\"Mário\"]'),(4899406,83531,4,'actor',NULL,'[\"Fazendeiro\"]'),(4899406,3486709,5,'director',NULL,NULL),(4899406,1103123,6,'writer','collaborating writer',NULL),(4899406,3599723,7,'producer','producer',NULL),(4899406,4926209,8,'composer',NULL,NULL),(4899406,4786360,9,'composer',NULL,NULL),(4911940,3220493,10,'composer',NULL,NULL),(4911940,2655441,1,'actor',NULL,'[\"Maik Klingenberg\"]'),(4911940,8359918,2,'actress',NULL,'[\"Tatjana Cosic\"]'),(4911940,8825893,3,'actress',NULL,'[\"Natalie\"]'),(4911940,3387284,4,'actor',NULL,'[\"Kevin\"]'),(4911940,15359,5,'director',NULL,NULL),(4911940,7495619,6,'writer','novel',NULL),(4911940,7407118,7,'writer','screenplay',NULL),(4911940,6737,8,'writer','screenplay co-writer',NULL),(4911940,576438,9,'producer','producer',NULL),(4912910,1134771,10,'cinematographer','director of photography',NULL),(4912910,129,1,'actor',NULL,'[\"Ethan Hunt\"]'),(4912910,147147,2,'actor',NULL,'[\"August Walker\"]'),(4912910,609,3,'actor',NULL,'[\"Luther Stickell\"]'),(4912910,670408,4,'actor',NULL,'[\"Benji Dunn\"]'),(4912910,3160,5,'director',NULL,NULL),(4912910,312367,6,'writer','based on the television series created by',NULL),(4912910,9190,7,'producer','producer',NULL),(4912910,616735,8,'producer','producer',NULL),(4912910,1154632,9,'composer',NULL,NULL),(4913966,1490123,10,'producer','producer',NULL),(4913966,4802,1,'actress',NULL,'[\"Anna\"]'),(4913966,190441,2,'actor',NULL,'[\"Rafael\"]'),(4913966,892383,3,'actress',NULL,'[\"Patricia Alvarez\"]'),(4913966,1581544,4,'actress',NULL,'[\"La Llorona\"]'),(4913966,1980431,5,'director',NULL,NULL),(4913966,5657522,6,'writer','written by',NULL),(4913966,3037068,7,'writer','written by',NULL),(4913966,2477891,8,'producer','producer',NULL),(4913966,321631,9,'producer','producer',NULL),(4916630,3669779,10,'composer',NULL,NULL),(4916630,430107,1,'actor',NULL,'[\"Bryan Stevenson\"]'),(4916630,4937,2,'actor',NULL,'[\"Walter McMillian\"]'),(4916630,488953,3,'actress',NULL,'[\"Eva Ansley\"]'),(4916630,11324875,4,'actor',NULL,'[\"Charlie the Tree Expert\"]'),(4916630,2308774,5,'director',NULL,NULL),(4916630,6150131,6,'writer','written by',NULL),(4916630,1555164,7,'writer','based on the book by',NULL),(4916630,1852583,8,'producer','producer',NULL),(4916630,626696,9,'producer','producer',NULL),(4925292,1240085,10,'cinematographer','director of photography',NULL),(4925292,1519680,1,'actress',NULL,'[\"Lady Bird McPherson\"]'),(4925292,582418,2,'actress',NULL,'[\"Marion McPherson\"]'),(4925292,504832,3,'actor',NULL,'[\"Larry McPherson\"]'),(4925292,2348627,4,'actor',NULL,'[\"Danny O\'Neill\"]'),(4925292,1950086,5,'director',NULL,NULL),(4925292,4791912,6,'producer','producer',NULL),(4925292,642161,7,'producer','producer',NULL),(4925292,748784,8,'producer','producer',NULL),(4925292,109726,9,'composer',NULL,NULL),(4926026,3815987,10,'actor',NULL,'[\"Guido\"]'),(4926026,767,1,'actor',NULL,'[\"Victor\"]'),(4926026,1884723,2,'actor',NULL,'[\"Victor\"]'),(4926026,3232315,3,'actor',NULL,'[\"German Soldier\"]'),(4926026,238506,4,'actress',NULL,'[\"Jelena\"]'),(4926026,2337269,5,'director',NULL,NULL),(4926026,1743612,6,'producer','producer',NULL),(4926026,1004444,7,'composer',NULL,NULL),(4926026,310865,8,'actress',NULL,'[\"Yelena Dimitrieva\"]'),(4926026,1346273,9,'actor',NULL,'[\"Eduard\"]'),(4950110,2796537,10,'producer','producer',NULL),(4950110,4558567,1,'actress',NULL,'[\"Rachel Joy Scott\"]'),(4950110,3910031,2,'actor',NULL,'[\"Nathan Ballard\"]'),(4950110,4068476,3,'actor',NULL,'[\"Alex Dickerson\"]'),(4950110,3675178,4,'actress',NULL,'[\"Beth Nimmo\"]'),(4950110,61982,5,'director',NULL,NULL),(4950110,4433954,6,'writer',NULL,NULL),(4950110,7526793,7,'writer','screenwriter',NULL),(4950110,5664243,8,'writer',NULL,NULL),(4950110,4388537,9,'writer','screenplay',NULL),(4954522,1997580,10,'production_designer',NULL,NULL),(4954522,4469165,1,'actress',NULL,'[\"Justine\"]'),(4954522,5050688,2,'actress',NULL,'[\"Alexia\"]'),(4954522,3274096,3,'actor',NULL,'[\"Adrien\"]'),(4954522,524217,4,'actor',NULL,'[\"Le père\"]'),(4954522,4469445,5,'director',NULL,NULL),(4954522,1108946,6,'producer','producer',NULL),(4954522,1546919,7,'composer',NULL,NULL),(4954522,408249,8,'cinematographer',NULL,NULL),(4954522,1770774,9,'editor',NULL,NULL),(4954660,1082471,10,'producer','planner',NULL),(4954660,847439,1,'actress',NULL,'[\"Conan Edogawa\"]'),(4954660,945322,2,'actor',NULL,'[\"Shinichi Kudo\"]'),(4954660,906722,3,'actress',NULL,'[\"Ran Mori\"]'),(4954660,468711,4,'actor',NULL,'[\"Kogoro Mori\"]'),(4954660,2032664,5,'director',NULL,NULL),(4954660,1108327,6,'writer','creator',NULL),(4954660,1628160,7,'writer',NULL,NULL),(4954660,2270022,8,'producer','producer',NULL),(4954660,7573116,9,'producer','producer',NULL),(4956232,538620,1,'director',NULL,NULL),(4961380,7915369,10,'composer',NULL,NULL),(4961380,1801800,1,'actress',NULL,'[\"Hazel Davies\"]'),(4961380,3862641,2,'actress',NULL,'[\"Katherine Hudson\"]'),(4961380,5426873,3,'actor',NULL,'[\"Ade\"]'),(4961380,5669164,4,'actor',NULL,'[\"James\"]'),(4961380,3598892,5,'director',NULL,NULL),(4961380,4851409,6,'writer','screenplay',NULL),(4961380,4129532,7,'writer','story by',NULL),(4961380,7572158,8,'producer','producer',NULL),(4961380,5822258,9,'producer','executive producer',NULL),(4971344,225457,10,'producer','producer',NULL),(4971344,604,1,'actor',NULL,'[\"Eli Sisters\"]'),(4971344,1618,2,'actor',NULL,'[\"Charlie Sisters\"]'),(4971344,350453,3,'actor',NULL,'[\"John Morris\"]'),(4971344,1981893,4,'actor',NULL,'[\"Hermann Kermit Warm\"]'),(4971344,2191,5,'director',NULL,NULL),(4971344,81179,6,'writer','screenplay by',NULL),(4971344,3981109,7,'writer','based on the book by',NULL),(4971344,146434,8,'producer','producer',NULL),(4971344,6894,9,'producer','producer',NULL),(4972062,1622454,10,'editor',NULL,NULL),(4972062,1221047,1,'actor',NULL,'[\"Jack\"]'),(4972062,1843026,2,'actress',NULL,'[\"Samantha\"]'),(4972062,1898126,3,'actor',NULL,'[\"Miles\"]'),(4972062,1589811,4,'actor',NULL,'[\"Bill\"]'),(4972062,47419,5,'producer','producer',NULL),(4972062,1101712,6,'producer','producer',NULL),(4972062,1622973,7,'producer','producer',NULL),(4972062,2685,8,'composer',NULL,NULL),(4972062,2208050,9,'cinematographer','director of photography',NULL),(4972582,3002063,10,'editor',NULL,NULL),(4972582,564215,1,'actor',NULL,'[\"Dennis\",\"Patricia\",\"Hedwig\"]'),(4972582,5896355,2,'actress',NULL,'[\"Casey Cooke\"]'),(4972582,4726634,3,'actress',NULL,'[\"Claire Benoit\"]'),(4972582,4088627,4,'actress',NULL,'[\"Marcia\"]'),(4972582,796117,5,'director',NULL,NULL),(4972582,81514,6,'producer','producer',NULL),(4972582,89658,7,'producer','producer',NULL),(4972582,3602603,8,'composer',NULL,NULL),(4972582,1227638,9,'cinematographer','director of photography',NULL),(4975722,1615109,10,'composer',NULL,NULL),(4975722,991810,1,'actor',NULL,'[\"Juan\"]'),(4975722,365140,2,'actress',NULL,'[\"Paula\"]'),(4975722,5218990,3,'actor',NULL,'[\"Black\"]'),(4975722,7683379,4,'actor',NULL,'[\"Little\"]'),(4975722,1503575,5,'director',NULL,NULL),(4975722,4144120,6,'writer','story by',NULL),(4975722,306890,7,'producer','producer',NULL),(4975722,1250070,8,'producer','producer',NULL),(4975722,1532846,9,'producer','producer',NULL),(4979652,7869716,10,'producer','executive producer',NULL),(4979652,2468729,1,'actress',NULL,'[\"Lu Xiaoxing\"]'),(4979652,1971183,2,'actor',NULL,'[\"Lin Chong\"]'),(4979652,4592524,3,'actor',NULL,'[\"Lu Li\"]'),(4979652,3301868,4,'actor',NULL,'[\"Tang Zheng\"]'),(4979652,1017500,5,'director',NULL,NULL),(4979652,4461680,6,'writer','adapted screenplay',NULL),(4979652,4765142,7,'writer','adapted screenplay',NULL),(4979652,7008275,8,'producer','producer',NULL),(4979652,7187470,9,'producer','producer',NULL),(4981636,8032685,10,'writer','based on the book by',NULL),(4981636,3838034,1,'actor',NULL,'[\"Rafe\"]'),(4981636,334179,2,'actress',NULL,'[\"Jules\"]'),(4981636,6835961,3,'actress',NULL,'[\"Georgia\"]'),(4981636,198408,4,'actor',NULL,'[\"Principal Dwight\"]'),(4981636,139867,5,'director',NULL,NULL),(4981636,101302,6,'writer','screenplay by',NULL),(4981636,1376062,7,'writer','screenplay by',NULL),(4981636,1289517,8,'writer','screenplay by',NULL),(4981636,666248,9,'writer','based on the book by',NULL),(4986098,2271939,10,'producer','producer',NULL),(4986098,941777,1,'actor',NULL,'[\"Lt. Rick Janssen\"]'),(4986098,2279940,2,'actress',NULL,'[\"Dr. Abi Janssen\"]'),(4986098,929489,3,'actor',NULL,'[\"Prof. Martin Collingwood\"]'),(4986098,2936228,4,'actress',NULL,'[\"Dr. Freya Upton\"]'),(4986098,2569510,5,'director',NULL,NULL),(4986098,2750446,6,'writer','screenplay by',NULL),(4986098,3885069,7,'writer','story by',NULL),(4986098,1757754,8,'producer','producer',NULL),(4986098,1983985,9,'producer','producer',NULL),(4991512,1615109,10,'composer',NULL,NULL),(4991512,4360085,1,'actor',NULL,'[\"Danny\"]'),(4991512,2665105,2,'actress',NULL,'[\"Ellie\"]'),(4991512,3589654,3,'actor',NULL,'[\"Darren\"]'),(4991512,1898126,4,'actor',NULL,'[\"Scott\"]'),(4991512,1383301,5,'director',NULL,NULL),(4991512,2792768,6,'writer','story by',NULL),(4991512,40120,7,'producer','producer',NULL),(4991512,3346661,8,'producer','producer',NULL),(4991512,1978398,9,'producer','producer',NULL),(4991906,5208385,1,'actress',NULL,'[\"Jordan\"]'),(4991906,3993668,2,'actress',NULL,'[\"Penn Fisher\"]'),(4991906,4251674,3,'actress',NULL,'[\"Xo\"]'),(4991906,4575382,4,'actress',NULL,'[\"Jasmine Rawlings\"]'),(4991906,2660910,5,'director',NULL,NULL),(4991906,6585518,6,'cinematographer',NULL,NULL),(4991906,1896248,7,'actress',NULL,'[\"Billie Steinberg\"]'),(4995540,188729,10,'cinematographer','director of photography',NULL),(4995540,173,1,'actress',NULL,'[\"Lucille Ball\"]'),(4995540,849,2,'actor',NULL,'[\"Desi Arnaz\"]'),(4995540,799777,3,'actor',NULL,'[\"William Frawley\"]'),(4995540,3616206,4,'actress',NULL,'[\"Vivian Vance\"]'),(4995540,815070,5,'director',NULL,NULL),(4995540,85542,6,'producer','producer',NULL),(4995540,89820,7,'producer','producer',NULL),(4995540,5494,8,'producer','producer',NULL),(4995540,1207404,9,'composer',NULL,NULL),(4995790,1101332,10,'production_designer',NULL,NULL),(4995790,51903,1,'actor',NULL,'[\"Christian\"]'),(4995790,5253,2,'actress',NULL,'[\"Anne\"]'),(4995790,922035,3,'actor',NULL,'[\"Julian\"]'),(4995790,1024953,4,'actor',NULL,'[\"Oleg\"]'),(4995790,1128037,5,'director',NULL,NULL),(4995790,90350,6,'producer','producer',NULL),(4995790,1615036,7,'producer','producer',NULL),(4995790,1234876,8,'cinematographer',NULL,NULL),(4995790,1859287,9,'editor',NULL,NULL),(4998632,1329482,10,'producer','producer',NULL),(4998632,350453,1,'actor',NULL,'[\"Danny Sharp\"]'),(4998632,5584344,2,'actor',NULL,'[\"Will Sharp\"]'),(4998632,2555462,3,'actress',NULL,'[\"Cam Thompson\"]'),(4998632,226813,4,'actor',NULL,'[\"Captain Monroe\"]'),(4998632,881,5,'director',NULL,NULL),(4998632,1776338,6,'writer','screenplay by',NULL),(4998632,612664,7,'writer','based on the film \"Ambulancen\" written by',NULL),(4998632,1099296,8,'writer','based on the film \"Ambulancen\" written by',NULL),(4998632,117290,9,'producer','producer',NULL),(5001718,3234869,10,'composer',NULL,NULL),(5001718,3964350,1,'actress',NULL,'[\"Maddy\"]'),(5001718,3538718,2,'actor',NULL,'[\"Olly\"]'),(5001718,741242,3,'actress',NULL,'[\"Pauline\"]'),(5001718,478886,4,'actress',NULL,'[\"Carla\"]'),(5001718,4907810,5,'director',NULL,NULL),(5001718,328987,6,'writer','screenplay by',NULL),(5001718,7567554,7,'writer','based on the book by',NULL),(5001718,465813,8,'producer','producer',NULL),(5001718,1573975,9,'producer','producer',NULL),(5001754,70347,10,'composer',NULL,NULL),(5001754,597388,1,'actor',NULL,'[\"Joe Braven\"]'),(5001754,226813,2,'actor',NULL,'[\"Kassen\"]'),(5001754,1489978,3,'actress',NULL,'[\"Stephanie Braven\"]'),(5001754,2332,4,'actor',NULL,'[\"Linden Braven\"]'),(5001754,644204,5,'director',NULL,NULL),(5001754,6198803,6,'writer','screenplay by',NULL),(5001754,638748,7,'writer','story by',NULL),(5001754,1837043,8,'producer','producer',NULL),(5001754,1892926,9,'producer','producer',NULL),(5005684,2399862,10,'producer','producer',NULL),(5005684,3283923,1,'actress',NULL,'[\"Chanda Sahay\"]'),(5005684,8092862,2,'actress',NULL,'[\"Apeksha Sahay\",\"Appu\"]'),(5005684,665550,3,'actress',NULL,'[\"Dr. Diwan\"]'),(5005684,2690647,4,'actor',NULL,'[\"Principal Shrivastava\"]'),(5005684,6436658,5,'director',NULL,NULL),(5005684,4318159,6,'writer','story',NULL),(5005684,8081851,7,'writer','screenplay & dialogue',NULL),(5005684,8081852,8,'writer','screenplay & dialogue',NULL),(5005684,2100265,9,'producer','producer',NULL),(5012504,469384,10,'composer',NULL,NULL),(5012504,1261997,1,'actor',NULL,'[\"Superman\"]'),(5012504,609845,2,'actor',NULL,'[\"Batman\"]'),(5012504,1154161,3,'actress',NULL,'[\"Lois Lane\",\"Rama Kushna\"]'),(5012504,2642131,4,'actor',NULL,'[\"Damian\",\"Jimmy Olsen\"]'),(5012504,1602528,5,'director',NULL,NULL),(5012504,22688,6,'writer','written by',NULL),(5012504,3650771,7,'writer','based on the graphic novel by',NULL),(5012504,471172,8,'producer','producer',NULL),(5012504,3262328,9,'producer','producer',NULL),(5013056,189769,10,'production_designer',NULL,NULL),(5013056,7887725,1,'actor',NULL,'[\"Tommy\"]'),(5013056,4422686,2,'actor',NULL,'[\"George\"]'),(5013056,753314,3,'actor',NULL,'[\"Mr. Dawson\"]'),(5013056,362766,4,'actor',NULL,'[\"Farrier\"]'),(5013056,634240,5,'director',NULL,NULL),(5013056,858799,6,'producer','producer',NULL),(5013056,1877,7,'composer',NULL,NULL),(5013056,887227,8,'cinematographer','director of photography',NULL),(5013056,809059,9,'editor',NULL,NULL),(5016946,4262214,10,'editor',NULL,NULL),(5016946,2760330,1,'actor',NULL,'[\"Ned Roche\"]'),(5016946,641192,2,'actor',NULL,'[\"Donal Roche\"]'),(5016946,1074508,3,'actress',NULL,'[\"Natalie Roche\"]'),(5016946,4754741,4,'actor',NULL,'[\"Weasel\"]'),(5016946,2899940,5,'director',NULL,NULL),(5016946,1166724,6,'producer','producer',NULL),(5016946,909490,7,'producer','producer',NULL),(5016946,1120895,8,'composer',NULL,NULL),(5016946,2101924,9,'cinematographer',NULL,NULL),(5022298,10990529,10,'actor',NULL,'[\"Prince Shuo Gang\"]'),(5022298,2682046,1,'actor',NULL,'[\"Ka Suo\"]'),(5022298,3358781,2,'actor',NULL,'[\"Ying Kongshi\",\"Ying Kongshi (Yue Fei)\"]'),(5022298,5033448,3,'actress',NULL,'[\"Li Luo\"]'),(5022298,2391073,4,'actress',NULL,'[\"Yan Da\"]'),(5022298,1040499,5,'actress',NULL,'[\"Lian Ji\"]'),(5022298,7582935,6,'actor',NULL,'[\"Huang Tuo\",\"Huan Tuo\",\"Xing Juo, chief of Dreamers\' Land\"]'),(5022298,788405,7,'actor',NULL,'[\"Ice King\"]'),(5022298,1878739,8,'actor',NULL,'[\"Fire King\"]'),(5022298,327299,9,'actress',NULL,'[\"Ice Queen\"]'),(5022702,2340149,10,'production_designer',NULL,NULL),(5022702,302330,1,'actor',NULL,'[\"The Man\"]'),(5022702,2318089,2,'actress',NULL,'[\"Maddie\"]'),(5022702,873998,3,'actor',NULL,'[\"John\"]'),(5022702,1418096,4,'actress',NULL,'[\"Sarah\"]'),(5022702,1093039,5,'director',NULL,NULL),(5022702,89658,6,'producer','producer',NULL),(5022702,1006167,7,'producer','producer',NULL),(5022702,2435752,8,'composer',NULL,NULL),(5022702,460770,9,'cinematographer','director of photography',NULL),(5023260,1663329,10,'cinematographer',NULL,NULL),(5023260,511,1,'actress',NULL,'[\"Harriet\"]'),(5023260,1086543,2,'actress',NULL,'[\"Anne\"]'),(5023260,7975619,3,'actress',NULL,'[\"Brenda\"]'),(5023260,755603,4,'actor',NULL,'[\"Robin Sands\"]'),(5023260,671210,5,'director',NULL,NULL),(5023260,7897008,6,'writer','written by',NULL),(5023260,195136,7,'producer','producer',NULL),(5023260,533129,8,'producer','producer',NULL),(5023260,2568850,9,'composer',NULL,NULL),(5027774,339856,10,'editor','film editor',NULL),(5027774,531,1,'actress',NULL,'[\"Mildred\"]'),(5027774,437,2,'actor',NULL,'[\"Willoughby\"]'),(5027774,5377,3,'actor',NULL,'[\"Dixon\"]'),(5027774,2655177,4,'actor',NULL,'[\"Red Welby\"]'),(5027774,1732981,5,'director',NULL,NULL),(5027774,110357,6,'producer','producer',NULL),(5027774,194446,7,'producer','producer',NULL),(5027774,1980,8,'composer',NULL,NULL),(5027774,1023204,9,'cinematographer','director of photography',NULL),(5028340,3299,10,'composer',NULL,NULL),(5028340,1289434,1,'actress',NULL,'[\"Mary Poppins\"]'),(5028340,592135,2,'actor',NULL,'[\"Jack\"]'),(5028340,924210,3,'actor',NULL,'[\"Michael Banks\"]'),(5028340,607865,4,'actress',NULL,'[\"Jane Banks\"]'),(5028340,551128,5,'director',NULL,NULL),(5028340,871308,6,'writer','based upon the \"Mary Poppins\" stories by',NULL),(5028340,1341735,7,'writer','screen story by',NULL),(5028340,217896,8,'writer','screen story by',NULL),(5028340,686887,9,'producer','producer',NULL),(5033998,134578,10,'producer','producer',NULL),(5033998,829576,1,'actress',NULL,'[\"Sabina Wilson\"]'),(5033998,4305463,2,'actress',NULL,'[\"Elena Houghlin\"]'),(5033998,8212878,3,'actress',NULL,'[\"Jane Kano\"]'),(5033998,6969,4,'actress',NULL,'[\"Boz\"]'),(5033998,818746,5,'writer','story by',NULL),(5033998,1430632,6,'writer','story by',NULL),(5033998,324578,7,'writer','based on the television series created by',NULL),(5033998,730850,8,'writer','based on the television series created by',NULL),(5033998,1000411,9,'producer','producer',NULL),(5034474,2380,10,'composer',NULL,NULL),(5034474,735442,1,'actress',NULL,'[\"Frank Kitchen\"]'),(5034474,1724,2,'actor',NULL,'[\"Dr. Ralph Galen\"]'),(5034474,1439,3,'actor',NULL,'[\"Honest John\"]'),(5034474,3312826,4,'actress',NULL,'[\"Johnnie\"]'),(5034474,1353,5,'director',NULL,NULL),(5034474,357671,6,'writer','screenplay',NULL),(5034474,69963,7,'producer','producer',NULL),(5034474,434838,8,'producer','producer',NULL),(5034474,4752699,9,'producer','producer',NULL),(5034838,1440919,10,'writer','screenplay by',NULL),(5034838,2907,1,'actor',NULL,'[\"Nathan Lind\"]'),(5034838,5611121,2,'actress',NULL,'[\"Madison Russell\"]'),(5034838,356017,3,'actress',NULL,'[\"Ilene Andrews\"]'),(5034838,3109964,4,'actor',NULL,'[\"Bernie Hayes\"]'),(5034838,1417392,5,'director',NULL,NULL),(5034838,744429,6,'writer','story by',NULL),(5034838,1002424,7,'writer','story by',NULL),(5034838,1296461,8,'writer','story by',NULL),(5034838,3069408,9,'writer','screenplay by',NULL),(5039088,3531537,10,'production_designer',NULL,NULL),(5039088,4374278,1,'actor',NULL,'[\"Milo\"]'),(5039088,9992630,2,'actress',NULL,'[\"School Psychologist\"]'),(5039088,5651469,3,'actor',NULL,'[\"Corey\"]'),(5039088,7604939,4,'actor',NULL,'[\"Kevin\"]'),(5039088,6326494,5,'director',NULL,NULL),(5039088,495615,6,'producer','producer',NULL),(5039088,8075389,7,'composer',NULL,NULL),(5039088,1755508,8,'cinematographer',NULL,NULL),(5039088,3555921,9,'editor',NULL,NULL),(5052448,2947,10,'cinematographer','director of photography',NULL),(5052448,2257207,1,'actor',NULL,'[\"Chris Washington\"]'),(5052448,4129745,2,'actress',NULL,'[\"Rose Armitage\"]'),(5052448,925966,3,'actor',NULL,'[\"Dean Armitage\"]'),(5052448,1416,4,'actress',NULL,'[\"Missy Armitage\"]'),(5052448,1443502,5,'director',NULL,NULL),(5052448,89658,6,'producer','producer',NULL),(5052448,1197257,7,'producer','producer',NULL),(5052448,572014,8,'producer','producer',NULL),(5052448,8752173,9,'composer',NULL,NULL),(5057140,1965828,10,'producer','producer',NULL),(5057140,942482,1,'actor',NULL,'[\"Russell Core\"]'),(5057140,2907,2,'actor',NULL,'[\"Vernon Slone\"]'),(5057140,197647,3,'actor',NULL,'[\"Donald Marium\"]'),(5057140,2142336,4,'actress',NULL,'[\"Medora Slone\"]'),(5057140,1099918,5,'director',NULL,NULL),(5057140,86301,6,'writer','screenplay by',NULL),(5057140,8838215,7,'writer','based on the book by',NULL),(5057140,1652438,8,'producer','producer',NULL),(5057140,3552566,9,'producer','producer',NULL),(5059406,2684310,10,'composer',NULL,NULL),(5059406,2235721,1,'actress',NULL,'[\"Lily\"]'),(5059406,696038,2,'actress',NULL,'[\"Iris Blum\"]'),(5059406,837,3,'actor',NULL,'[\"Mr. Waxcap\"]'),(5059406,2377903,4,'actress',NULL,'[\"Polly\"]'),(5059406,674020,5,'director',NULL,NULL),(5059406,12339034,6,'producer','producer',NULL),(5059406,11749748,7,'producer','producer',NULL),(5059406,1865648,8,'producer','producer',NULL),(5059406,2788035,9,'producer','producer',NULL),(5073620,843938,10,'editor',NULL,NULL),(5073620,7621162,1,'actress',NULL,'[\"Dallas\"]'),(5073620,2087783,2,'actress',NULL,'[\"Jasmine\"]'),(5073620,2477204,3,'actor',NULL,'[\"Rile\"]'),(5073620,1534287,4,'actress',NULL,'[\"Joslyn\"]'),(5073620,611983,5,'director',NULL,NULL),(5073620,7621163,6,'writer','written by',NULL),(5073620,2741877,7,'producer','producer',NULL),(5073620,5469670,8,'composer',NULL,NULL),(5073620,2900004,9,'cinematographer','director of photography',NULL),(5073642,7304559,10,'producer','producer',NULL),(5073642,115,1,'actor',NULL,'[\"Nathan\"]'),(5073642,613,2,'actress',NULL,'[\"Theresa\"]'),(5073642,4699715,3,'actress',NULL,'[\"Lavinia Gardner\"]'),(5073642,3231931,4,'actor',NULL,'[\"Ward Phillips\"]'),(5073642,822582,5,'director',NULL,NULL),(5073642,522454,6,'writer','based on the short story \"The Colour out of Space\" by',NULL),(5073642,4214064,7,'writer','written by',NULL),(5073642,999525,8,'producer','producer',NULL),(5073642,1892220,9,'producer','producer',NULL),(5074352,3032965,10,'producer','producer',NULL),(5074352,451148,1,'actor',NULL,'[\"Mahavir Singh Phogat\"]'),(5074352,2799219,2,'actress',NULL,'[\"Daya Kaur\"]'),(5074352,760778,3,'actress',NULL,'[\"Geeta Phogat\"]'),(5074352,7621667,4,'actress',NULL,'[\"Babita Kumari\"]'),(5074352,4318159,5,'director',NULL,NULL),(5074352,6328029,6,'writer',NULL,NULL),(5074352,6328031,7,'writer',NULL,NULL),(5074352,6328030,8,'writer',NULL,NULL),(5074352,8661566,9,'writer','Dialogue Writer: Telugu',NULL),(5078204,3457034,10,'writer','dialogue',NULL),(5078204,1082477,1,'actor',NULL,'[\"Samuel\"]'),(5078204,993242,2,'actress',NULL,'[\"Kristin\"]'),(5078204,1531116,3,'actor',NULL,'[\"Bernie\"]'),(5078204,910180,4,'actor',NULL,'[\"Lowell\"]'),(5078204,312315,5,'director',NULL,NULL),(5078204,220240,6,'writer','based upon the feature film \"Instructions Not Included\" directed by',NULL),(5078204,331868,7,'writer','collaboration',NULL),(5078204,753820,8,'writer','original screenplay',NULL),(5078204,1761153,9,'writer','dialogue',NULL),(5083738,3717662,10,'producer','producer',NULL),(5083738,1469236,1,'actress',NULL,'[\"Queen Anne\"]'),(5083738,1297015,2,'actress',NULL,'[\"Abigail\"]'),(5083738,1838,3,'actress',NULL,'[\"Lady Sarah\"]'),(5083738,396558,4,'actor',NULL,'[\"Harley\"]'),(5083738,487166,5,'director',NULL,NULL),(5083738,7629302,6,'writer','written by',NULL),(5083738,1110111,7,'writer','written by',NULL),(5083738,218714,8,'producer','producer',NULL),(5083738,347384,9,'producer','producer',NULL),(5085924,1561059,10,'composer',NULL,NULL),(5085924,2525790,1,'actress',NULL,'[\"Anna\"]'),(5085924,374,2,'actor',NULL,'[\"Daddy\"]'),(5085924,239,3,'actress',NULL,'[\"Ellen Cooper\"]'),(5085924,3215533,4,'actor',NULL,'[\"Ray Cooper\"]'),(5085924,1562688,5,'director',NULL,NULL),(5085924,2325978,6,'writer','written by',NULL),(5085924,1488027,7,'producer','producer',NULL),(5085924,836548,8,'producer','producer',NULL),(5085924,5055646,9,'producer','producer',NULL),(5091548,4170,10,'writer','Batman created by',NULL),(5091548,206257,1,'actress',NULL,'[\"Wonder Woman\"]'),(5091548,330913,2,'actor',NULL,'[\"The Flash\",\"Barry Allen\"]'),(5091548,5245,3,'actor',NULL,'[\"Cyborg\"]'),(5091548,5278,4,'actor',NULL,'[\"Superman\",\"Clark Kent\"]'),(5091548,515005,5,'director',NULL,NULL),(5091548,3162615,6,'writer','screenplay by',NULL),(5091548,122334,7,'writer','screenplay by',NULL),(5091548,796950,8,'writer','Superman created by',NULL),(5091548,795975,9,'writer','Superman created by',NULL),(5095030,498278,10,'writer','based on the Marvel Comics by',NULL),(5095030,748620,1,'actor',NULL,'[\"Scott Lang\",\"Ant-Man\"]'),(5095030,1431940,2,'actress',NULL,'[\"Hope Van Dyne\",\"Wasp\"]'),(5095030,671567,3,'actor',NULL,'[\"Luis\"]'),(5095030,324658,4,'actor',NULL,'[\"Sonny Burch\"]'),(5095030,715636,5,'director',NULL,NULL),(5095030,571344,6,'writer','written by',NULL),(5095030,1273099,7,'writer','written by',NULL),(5095030,3029372,8,'writer','written by',NULL),(5095030,2592245,9,'writer','written by',NULL),(5096536,1347595,10,'producer','producer',NULL),(5096536,2588665,1,'actor',NULL,'[\"Thomas Rémige\"]'),(5096536,782561,2,'actress',NULL,'[\"Marianne\"]'),(5096536,234237,3,'actress',NULL,'[\"Claire Méjean\"]'),(5096536,99521,4,'actor',NULL,'[\"Docteur Pierre Révol\"]'),(5096536,1580395,5,'director',NULL,NULL),(5096536,3558108,6,'writer','novel',NULL),(5096536,851522,7,'writer','screenplay',NULL),(5096536,3851266,8,'producer','producer',NULL),(5096536,552909,9,'producer','producer',NULL),(5097410,3893,10,'editor',NULL,NULL),(5097410,447695,1,'actress',NULL,'[\"Noelle Kringle\"]'),(5097410,511,2,'actress',NULL,'[\"Elf Polly\"]'),(5097410,352778,3,'actor',NULL,'[\"Nick Kringle\"]'),(5097410,4667984,4,'actor',NULL,'[\"Jake Hapman\"]'),(5097410,492909,5,'director',NULL,NULL),(5097410,865297,6,'producer','producer',NULL),(5097410,6590639,7,'composer',NULL,NULL),(5097410,2753085,8,'composer',NULL,NULL),(5097410,5665,9,'cinematographer',NULL,NULL),(5104604,2262509,10,'producer','producer',NULL),(5104604,186505,1,'actor',NULL,'[\"Chief\"]'),(5104604,8659025,2,'actor',NULL,'[\"Atari\"]'),(5104604,1570,3,'actor',NULL,'[\"Rex\"]'),(5104604,837,4,'actor',NULL,'[\"King\"]'),(5104604,27572,5,'director',NULL,NULL),(5104604,178910,6,'writer','story by',NULL),(5104604,5403,7,'writer','story by',NULL),(5104604,1440081,8,'writer','story by',NULL),(5104604,206154,9,'producer','producer',NULL),(5105218,718573,10,'cinematographer',NULL,NULL),(5105218,3410278,1,'actress',NULL,'[\"Loubna\"]'),(5105218,6018249,2,'actor',NULL,'[\"Abou Ahmad\"]'),(5105218,7647102,3,'actress',NULL,'[\"Batoul\"]'),(5105218,3339509,4,'actor',NULL,'[\"Mokhtar\"]'),(5105218,1287232,5,'director',NULL,NULL),(5105218,577145,6,'producer','producer',NULL),(5105218,1871094,7,'producer','producer',NULL),(5105218,7647106,8,'producer','producer',NULL),(5105218,5251743,9,'composer',NULL,NULL),(5108870,866157,10,'producer','producer',NULL),(5108870,1467,1,'actor',NULL,'[\"Dr. Michael Morbius\"]'),(5108870,1741002,2,'actor',NULL,'[\"Milo\"]'),(5108870,5245722,3,'actress',NULL,'[\"Martine Bancroft\"]'),(5108870,364813,4,'actor',NULL,'[\"Dr. Emil Nicholas\"]'),(5108870,1174251,5,'director',NULL,NULL),(5108870,1948885,6,'writer','screen story by',NULL),(5108870,2332952,7,'writer','screen story by',NULL),(5108870,32696,8,'producer','producer',NULL),(5108870,287946,9,'producer','producer',NULL),(5109280,1004604,10,'writer','screenplay by',NULL),(5109280,4511652,1,'actress',NULL,'[\"Raya\"]'),(5109280,5377144,2,'actress',NULL,'[\"Sisu\"]'),(5109280,2110418,3,'actress',NULL,'[\"Namaari\"]'),(5109280,9865565,4,'actor',NULL,'[\"Boun\"]'),(5109280,2320658,5,'director',NULL,NULL),(5109280,2788015,6,'director',NULL,NULL),(5109280,2128363,7,'director','co-director',NULL),(5109280,727960,8,'director','co-director',NULL),(5109280,5945690,9,'writer','screenplay by',NULL),(5109784,582185,10,'production_designer',NULL,NULL),(5109784,2225369,1,'actress',NULL,'[\"Mother\"]'),(5109784,849,2,'actor',NULL,'[\"Him\"]'),(5109784,438,3,'actor',NULL,'[\"Man\"]'),(5109784,201,4,'actress',NULL,'[\"Woman\"]'),(5109784,4716,5,'director',NULL,NULL),(5109784,291542,6,'producer','producer',NULL),(5109784,359504,7,'producer','producer',NULL),(5109784,508732,8,'cinematographer','director of photography',NULL),(5109784,918733,9,'editor',NULL,NULL),(5113044,372329,10,'producer','producer',NULL),(5113044,136797,1,'actor',NULL,'[\"Gru\"]'),(5113044,1853544,2,'actor',NULL,'[\"The Minions\"]'),(5113044,273,3,'actor',NULL,'[\"Wild Knuckles\"]'),(5113044,378245,4,'actress',NULL,'[\"Belle Bottom\"]'),(5113044,49633,5,'director',NULL,NULL),(5113044,1556070,6,'director','co-director',NULL),(5113044,3646390,7,'director','co-director',NULL),(5113044,3821363,8,'writer','screenplay by',NULL),(5113044,528244,9,'writer','story by',NULL),(5117428,248595,10,'editor',NULL,NULL),(5117428,2976580,1,'actress',NULL,'[\"Rose-Lynn\"]'),(5117428,182588,2,'actor',NULL,'[\"Prison Officer 1\"]'),(5117428,10712277,3,'actress',NULL,'[\"Prison Officer 2\"]'),(5117428,1836085,4,'actress',NULL,'[\"Prison Officer 3\"]'),(5117428,2197777,5,'director',NULL,NULL),(5117428,2822756,6,'writer','written by',NULL),(5117428,1952700,7,'producer','producer',NULL),(5117428,1877758,8,'composer',NULL,NULL),(5117428,824417,9,'cinematographer',NULL,NULL),(5117670,579977,10,'cinematographer','director of photography',NULL),(5117670,179479,1,'actor',NULL,'[\"Peter Rabbit\"]'),(5117670,2417960,2,'actor',NULL,'[\"Mr. Tod\"]'),(5117670,1727304,3,'actor',NULL,'[\"Mr. Jeremy Fisher\",\"Mr. Thomas McGregor\"]'),(5117670,2397981,4,'actress',NULL,'[\"Mrs. Tiggy-Winkle\"]'),(5117670,323239,5,'director',NULL,NULL),(5117670,1464577,6,'writer','screen story by',NULL),(5117670,693229,7,'writer','based on the characters and tales of \"Peter Rabbit\" by',NULL),(5117670,620502,8,'producer','producer',NULL),(5117670,3825122,9,'composer',NULL,NULL),(5117876,410419,10,'cinematographer','director of photography',NULL),(5117876,4874651,1,'actress',NULL,'[\"Mal\"]'),(5117876,2624602,2,'actor',NULL,'[\"Carlos\"]'),(5117876,6259860,3,'actress',NULL,'[\"Evie\"]'),(5117876,1559927,4,'actor',NULL,'[\"Jay\"]'),(5117876,650905,5,'director',NULL,NULL),(5117876,663490,6,'writer','written by',NULL),(5117876,569210,7,'writer','written by',NULL),(5117876,932144,8,'producer','producer',NULL),(5117876,492714,9,'composer',NULL,NULL),(5121816,1884129,10,'producer','executive producer',NULL),(5121816,840754,1,'actress',NULL,'[\"Elena\"]'),(5121816,1832584,2,'actor',NULL,'[\"Nacho\"]'),(5121816,1197737,3,'actress',NULL,'[\"Trini\"]'),(5121816,209397,4,'actor',NULL,'[\"Sátur\"]'),(5121816,407067,5,'director',NULL,NULL),(5121816,346277,6,'writer',NULL,NULL),(5121816,3016653,7,'producer','executive producer',NULL),(5121816,303922,8,'producer','producer',NULL),(5121816,1481660,9,'producer','producer',NULL),(5140878,1131817,10,'cinematographer','director of photography',NULL),(5140878,1439,1,'actor',NULL,'[\"Samuel Mullins\"]'),(5140878,5343317,2,'actress',NULL,'[\"Bee\"]'),(5140878,1584,3,'actress',NULL,'[\"Esther Mullins\"]'),(5140878,339159,4,'actor',NULL,'[\"Victor Palmeri\"]'),(5140878,2497546,5,'director',NULL,NULL),(5140878,2477891,6,'writer','written by',NULL),(5140878,755911,7,'producer','producer',NULL),(5140878,1490123,8,'producer','producer',NULL),(5140878,1818744,9,'composer',NULL,NULL),(5142400,1121047,10,'editor',NULL,NULL),(5142400,7829921,1,'actress',NULL,'[\"Birdie\"]'),(5142400,189791,2,'actress',NULL,'[\"Mother Superior\"]'),(5142400,1720103,3,'actress',NULL,'[\"Sister Dolores\"]'),(5142400,6554923,4,'actress',NULL,'[\"Sister Prudy\"]'),(5142400,2031165,5,'director',NULL,NULL),(5142400,3294917,6,'writer',NULL,NULL),(5142400,2224008,7,'producer','producer',NULL),(5142400,4667582,8,'producer','producer',NULL),(5142400,6005430,9,'composer',NULL,NULL),(5143226,1645873,10,'composer',NULL,NULL),(5143226,1172901,1,'actress',NULL,'[\"Bree\"]'),(5143226,3498991,2,'actress',NULL,'[\"Jonna\"]'),(5143226,268007,3,'actress',NULL,'[\"Clara\"]'),(5143226,3581525,4,'actor',NULL,'[\"David\"]'),(5143226,1760759,5,'director',NULL,NULL),(5143226,2478416,6,'writer',NULL,NULL),(5143226,4719650,7,'producer','producer',NULL),(5143226,616794,8,'producer','producer',NULL),(5143226,3032116,9,'producer','producer',NULL),(5143586,826932,10,'editor',NULL,NULL),(5143586,1438258,1,'actress',NULL,'[\"Handan\",\"Wife\"]'),(5143586,3253475,2,'actor',NULL,'[\"Korhan\",\"Husband\"]'),(5143586,1779314,3,'actress',NULL,'[\"Sermin\",\"Aykut\'s wife\"]'),(5143586,5291274,4,'actor',NULL,'[\"Aykut\",\"Sermin\'s husband\"]'),(5143586,2368338,5,'director',NULL,NULL),(5143586,218530,6,'producer','producer',NULL),(5143586,3620786,7,'producer','producer',NULL),(5143586,2147481,8,'composer',NULL,NULL),(5143586,994020,9,'cinematographer','director of photography',NULL),(5144174,1166241,10,'producer','producer',NULL),(5144174,51509,1,'actor',NULL,'[\"Falk\"]'),(5144174,642444,2,'actress',NULL,'[\"Gretchen\"]'),(5144174,1218757,3,'actor',NULL,'[\"Raco\"]'),(5144174,689852,4,'actor',NULL,'[\"Whitlam\"]'),(5144174,175352,5,'director',NULL,NULL),(5144174,187912,6,'writer','screenplay by',NULL),(5144174,7681091,7,'writer','based on the book by',NULL),(5144174,1787259,8,'writer','additional writing by',NULL),(5144174,1103398,9,'producer','producer',NULL),(5151570,1802990,10,'producer','producer',NULL),(5151570,544334,1,'actress',NULL,'[\"Ada Harris\"]'),(5151570,1376,2,'actress',NULL,'[\"Claudine Colbert\"]'),(5151570,933727,3,'actor',NULL,'[\"Marquis de Chassagne\"]'),(5151570,4926180,4,'actress',NULL,'[\"Natasha\"]'),(5151570,3745,5,'director',NULL,NULL),(5151570,302904,6,'writer','based on the novel by',NULL),(5151570,142154,7,'writer','screenplay by',NULL),(5151570,860375,8,'writer','screenplay by',NULL),(5151570,381757,9,'writer','screenplay by',NULL),(5153952,323772,10,'editor',NULL,NULL),(5153952,828980,1,'actress',NULL,'[\"Helga\"]'),(5153952,562003,2,'actress',NULL,'[\"Beth\"]'),(5153952,2377903,3,'actress',NULL,'[\"Emily\"]'),(5153952,1089136,4,'actress',NULL,'[\"Traudi\"]'),(5153952,824638,5,'director',NULL,NULL),(5153952,110796,6,'producer','producer',NULL),(5153952,7698912,7,'producer','producer',NULL),(5153952,783621,8,'composer',NULL,NULL),(5153952,939884,9,'cinematographer',NULL,NULL),(5154288,5938033,10,'composer',NULL,NULL),(5154288,1546686,1,'actress',NULL,'[\"Ruth\"]'),(5154288,1360837,2,'actor',NULL,'[\"Mr. Zabek\"]'),(5154288,366846,3,'actress',NULL,'[\"Midwife\"]'),(5154288,4269084,4,'actor',NULL,'[\"DJ Dan\"]'),(5154288,2366365,5,'producer','producer',NULL),(5154288,7685985,6,'producer','executive producer',NULL),(5154288,803366,7,'producer','executive producer',NULL),(5154288,5873731,8,'composer',NULL,NULL),(5154288,5873732,9,'composer',NULL,NULL),(5155780,2450367,10,'composer',NULL,NULL),(5155780,602,1,'actor',NULL,'[\"Thomas\"]'),(5155780,5460,2,'actress',NULL,'[\"Interviewer\"]'),(5155780,5359238,3,'actor',NULL,'[\"Sound Recordist\"]'),(5155780,781981,4,'actor',NULL,'[\"Will\"]'),(5155780,1660595,5,'director',NULL,NULL),(5155780,1645301,6,'writer','written by',NULL),(5155780,650164,7,'producer','producer',NULL),(5155780,827726,8,'producer','producer',NULL),(5155780,3737483,9,'composer',NULL,NULL),(5157326,1007373,10,'cinematographer',NULL,NULL),(5157326,8025915,1,'actor',NULL,'[\"Meinhard\"]'),(5157326,8025916,2,'actor',NULL,'[\"Vincent\"]'),(5157326,8920557,3,'actor',NULL,'[\"Adrian\"]'),(5157326,8920559,4,'actress',NULL,'[\"Veneta\"]'),(5157326,1007136,5,'director',NULL,NULL),(5157326,11752,6,'producer','producer',NULL),(5157326,1548905,7,'producer','producer',NULL),(5157326,1464012,8,'producer','producer',NULL),(5157326,4752699,9,'producer','producer',NULL),(5160938,3222300,10,'cinematographer','director of photography',NULL),(5160938,1721,1,'actress',NULL,'[\"Lizzie Borden\"]'),(5160938,829576,2,'actress',NULL,'[\"Bridget Sullivan\"]'),(5160938,675114,3,'actor',NULL,'[\"Andrew Jennings\"]'),(5160938,789716,4,'actress',NULL,'[\"Abby Borden\"]'),(5160938,1646022,5,'director',NULL,NULL),(5160938,440777,6,'writer','written by',NULL),(5160938,221638,7,'producer','producer',NULL),(5160938,1989592,8,'producer','producer',NULL),(5160938,751642,9,'composer',NULL,NULL),(5164214,1752,10,'producer','producer',NULL),(5164214,113,1,'actress',NULL,'[\"Debbie Ocean\"]'),(5164214,949,2,'actress',NULL,'[\"Lou\"]'),(5164214,4266,3,'actress',NULL,'[\"Daphne Kluger\"]'),(5164214,1411676,4,'actress',NULL,'[\"Amita\"]'),(5164214,2657,5,'director',NULL,NULL),(5164214,6035700,6,'writer','screenplay by',NULL),(5164214,425138,7,'writer','based upon characters created by',NULL),(5164214,751207,8,'writer','based upon characters created by',NULL),(5164214,252382,9,'producer','producer',NULL),(5164432,324041,10,'producer','producer',NULL),(5164432,3538718,1,'actor',NULL,'[\"Simon\"]'),(5164432,4950,2,'actress',NULL,'[\"Emily\"]'),(5164432,241049,3,'actor',NULL,'[\"Jack\"]'),(5164432,7692698,4,'actress',NULL,'[\"Leah\"]'),(5164432,75528,5,'director',NULL,NULL),(5164432,7698350,6,'writer','based upon the novel \"Simon vs. the Homo Sapiens Agenda\" by',NULL),(5164432,74165,7,'writer','screenplay by',NULL),(5164432,4170842,8,'writer','screenplay by',NULL),(5164432,2125212,9,'producer','producer',NULL),(5164438,1818744,10,'composer',NULL,NULL),(5164438,565250,1,'actress',NULL,'[\"Lilly Maynard\"]'),(5164438,1483369,2,'actor',NULL,'[\"Jack Maynard\"]'),(5164438,177,3,'actor',NULL,'[\"Dr. Larry Fine\"]'),(5164438,648249,4,'actor',NULL,'[\"Travis Delp\"]'),(5164438,577647,5,'director',NULL,NULL),(5164438,1358798,6,'writer','written by',NULL),(5164438,11212108,7,'producer','producer',NULL),(5164438,703910,8,'producer','producer',NULL),(5164438,783346,9,'producer','producer',NULL),(5165344,7565661,10,'producer','producer',NULL),(5165344,474774,1,'actor',NULL,'[\"Rustom Pavri\"]'),(5165344,2299825,2,'actress',NULL,'[\"Cynthia Pavri\"]'),(5165344,1480555,3,'actor',NULL,'[\"Vikram Makhija\"]'),(5165344,3373271,4,'actress',NULL,'[\"Preety Makhija\"]'),(5165344,4819186,5,'director',NULL,NULL),(5165344,8254778,6,'writer',NULL,NULL),(5165344,8254774,7,'producer','producer',NULL),(5165344,6288598,8,'producer','producer',NULL),(5165344,1871564,9,'producer','producer',NULL),(5168192,606682,10,'editor',NULL,NULL),(5168192,424302,1,'actor',NULL,'[\"Daniel Blake\"]'),(5168192,4842197,2,'actress',NULL,'[\"Katie\"]'),(5168192,672922,3,'actress',NULL,'[\"Sheila\"]'),(5168192,7784671,4,'actress',NULL,'[\"Daisy\"]'),(5168192,516360,5,'director',NULL,NULL),(5168192,491956,6,'writer','screenplay',NULL),(5168192,639780,7,'producer','producer',NULL),(5168192,6070,8,'composer',NULL,NULL),(5168192,752811,9,'cinematographer',NULL,NULL),(5173166,1190888,10,'composer',NULL,NULL),(5173166,1709,1,'actor',NULL,'[\"Chris\"]'),(5173166,777788,2,'actor',NULL,'[\"Max\"]'),(5173166,378660,3,'actor',NULL,'[\"Tobias\"]'),(5173166,509583,4,'actor',NULL,'[\"Peter\"]'),(5173166,583,5,'director',NULL,NULL),(5173166,2945690,6,'writer','screenplay',NULL),(5173166,540598,7,'writer','novel \"The Nixon Recession Caper\"',NULL),(5173166,1124307,8,'producer','producer',NULL),(5173166,1260728,9,'producer','producer',NULL),(5175450,441097,10,'producer','producer',NULL),(5175450,553,1,'actor',NULL,'[\"Mark Felt\"]'),(5175450,178,2,'actress',NULL,'[\"Audrey Felt\"]'),(5175450,190744,3,'actor',NULL,'[\"L. Patrick Gray\"]'),(5175450,1282,4,'actor',NULL,'[\"Ed Miller\"]'),(5175450,1481618,5,'director',NULL,NULL),(5175450,1944541,6,'writer','based on the books by',NULL),(5175450,2207084,7,'writer','based on the books by',NULL),(5175450,124652,8,'producer','producer',NULL),(5175450,264857,9,'producer','producer',NULL),(5176252,2095418,10,'editor','teaser editor',NULL),(5176252,3475396,1,'actress',NULL,'[\"María\"]'),(5176252,1298582,2,'actress',NULL,'[\"Susana\"]'),(5176252,3177382,3,'actress',NULL,'[\"Milagros\"]'),(5176252,646010,4,'actress',NULL,'[\"Madre Bernarda\"]'),(5176252,1982169,5,'director',NULL,NULL),(5176252,2566876,6,'director',NULL,NULL),(5176252,492038,7,'producer','executive producer',NULL),(5176252,2272401,8,'composer',NULL,NULL),(5176252,1037658,9,'cinematographer',NULL,NULL),(5176580,5502209,10,'composer','composer',NULL),(5176580,788340,1,'actress',NULL,'[\"Emily Dickinson\"]'),(5176580,956146,2,'actress',NULL,'[\"Susan Dickinson\"]'),(5176580,1541272,3,'actress',NULL,'[\"Mabel Todd\"]'),(5176580,1443368,4,'actor',NULL,'[\"Col. Thomas Wentworth Higginson\"]'),(5176580,2112342,5,'director',NULL,NULL),(5176580,1779802,6,'producer','producer',NULL),(5176580,28220,7,'producer','producer',NULL),(5176580,3708135,8,'producer','producer',NULL),(5176580,4839053,9,'composer','composer',NULL),(5177088,4791912,10,'producer','producer',NULL),(5177088,2946516,1,'actress',NULL,'[\"Lisbeth Salander\"]'),(5177088,7917803,2,'actress',NULL,'[\"Young Lisbeth Salander\"]'),(5177088,345695,3,'actor',NULL,'[\"Mikael Blomkvist\"]'),(5177088,3147751,4,'actor',NULL,'[\"Ed Needham\"]'),(5177088,1793079,5,'director',NULL,NULL),(5177088,5409198,6,'writer','based on the novel by',NULL),(5177088,2297183,7,'writer','with characters introduced in the Millenium series by',NULL),(5177088,1951398,8,'writer','screenplay by',NULL),(5177088,1140275,9,'writer','screenplay by',NULL),(5181830,1836064,10,'editor',NULL,NULL),(5181830,7132577,1,'actress',NULL,'[\"Kat\"]'),(5181830,1221047,2,'actor',NULL,'[\"Wendell\"]'),(5181830,1443502,3,'actor',NULL,'[\"Wild\"]'),(5181830,291,4,'actress',NULL,'[\"Sister Helley\"]'),(5181830,783139,5,'director',NULL,NULL),(5181830,1626455,6,'writer','based on the book by',NULL),(5181830,1650412,7,'producer','producer',NULL),(5181830,6020,8,'composer',NULL,NULL),(5181830,2440000,9,'cinematographer',NULL,NULL),(5198068,1316072,10,'producer','producer',NULL),(5198068,4835867,1,'actress',NULL,'[\"Robyn Goodfellowe\"]'),(5198068,10524619,2,'actress',NULL,'[\"Mebh Óg MacTíre\"]'),(5198068,293,3,'actor',NULL,'[\"Bill Goodfellowe\"]'),(5198068,564402,4,'actor',NULL,'[\"Lord Protector\"]'),(5198068,1119079,5,'director',NULL,NULL),(5198068,2075487,6,'director',NULL,NULL),(5198068,3822528,7,'writer','screenplay',NULL),(5198068,165995,8,'writer','story and script consultant',NULL),(5198068,2847097,9,'producer','producer',NULL),(5208252,6035,10,'composer',NULL,NULL),(5208252,1209966,1,'actor',NULL,'[\"Peter Malkin\"]'),(5208252,1426,2,'actor',NULL,'[\"Adolph Eichmann\"]'),(5208252,491259,3,'actress',NULL,'[\"Hanna Elian\"]'),(5208252,2443797,4,'actor',NULL,'[\"Isser Harel\"]'),(5208252,919363,5,'director',NULL,NULL),(5208252,7736820,6,'writer','written by',NULL),(5208252,1757754,7,'producer','producer',NULL),(5208252,2271939,8,'producer','producer',NULL),(5208252,2221249,9,'producer','producer',NULL),(5221584,846301,10,'cinematographer',NULL,NULL),(5221584,968,1,'actress',NULL,'[\"Clara\"]'),(5221584,2701325,2,'actress',NULL,'[\"Ana Paula\"]'),(5221584,2046691,3,'actor',NULL,'[\"Roberval\"]'),(5221584,1658753,4,'actor',NULL,'[\"Diego\"]'),(5221584,2207625,5,'director',NULL,NULL),(5221584,69963,6,'producer','producer',NULL),(5221584,2201794,7,'producer','producer',NULL),(5221584,4752699,8,'producer','producer',NULL),(5221584,3087076,9,'cinematographer',NULL,NULL),(5247022,5670423,10,'composer',NULL,NULL),(5247022,3485845,1,'actor',NULL,'[\"Paterson\"]'),(5247022,267042,2,'actress',NULL,'[\"Laura\"]'),(5247022,8165340,3,'actor',NULL,'[\"Marvin\"]'),(5247022,542492,4,'actor',NULL,'[\"Donny\"]'),(5247022,464,5,'director',NULL,NULL),(5247022,931937,6,'writer','poem \"This Is Just To Say\"',NULL),(5247022,3143010,7,'writer','poems \"Love Poem\", \"Glow\", \"Poem\", and \"Pumpkin\"',NULL),(5247022,40120,8,'producer','producer',NULL),(5247022,2123941,9,'producer','producer',NULL),(5247704,1132563,10,'cinematographer',NULL,NULL),(5247704,2847812,1,'actor',NULL,'[\"Jean\"]'),(5247704,320759,2,'actress',NULL,'[\"Juliette\"]'),(5247704,2476624,3,'actor',NULL,'[\"Jérémie\"]'),(5247704,745694,4,'actor',NULL,'[\"Marcel\"]'),(5247704,458251,5,'director',NULL,NULL),(5247704,24887,6,'writer','screenplay',NULL),(5247704,506357,7,'producer','producer',NULL),(5247704,244445,8,'composer',NULL,NULL),(5247704,1293792,9,'composer',NULL,NULL),(5254640,1434850,10,'editor',NULL,NULL),(5254640,2095000,1,'actor',NULL,'[\"David Cho\"]'),(5254640,7775717,2,'actor',NULL,'[\"Jin Cho\"]'),(5254640,2077652,3,'actress',NULL,'[\"Soyoung Cho\"]'),(5254640,5448069,4,'actor',NULL,'[\"Young Korean Man\"]'),(5254640,3821224,5,'director',NULL,NULL),(5254640,34850,6,'producer','producer',NULL),(5254640,4025008,7,'producer','producer',NULL),(5254640,3361826,8,'producer','producer',NULL),(5254640,1684437,9,'producer','producer',NULL),(5265960,2994968,10,'composer',NULL,NULL),(5265960,8438062,1,'actress',NULL,'[\"Alejandra\",\"Wife\"]'),(5265960,2946760,2,'actor',NULL,'[\"Ángel\",\"Husband\"]'),(5265960,8438061,3,'actress',NULL,'[\"Verónica\",\"Fabián\'s girlfriend\"]'),(5265960,6004385,4,'actor',NULL,'[\"Fabián\",\"Alejandra\'s brother\"]'),(5265960,1661334,5,'director',NULL,NULL),(5265960,2157916,6,'writer',NULL,NULL),(5265960,2098201,7,'producer','producer',NULL),(5265960,1474983,8,'producer','producer',NULL),(5265960,1673285,9,'composer',NULL,NULL),(5274066,2776151,10,'composer',NULL,NULL),(5274066,2399914,1,'actress',NULL,'[\"Kelly Johnson\"]'),(5274066,7794622,2,'actress',NULL,'[\"Nicola\"]'),(5274066,7794623,3,'actress',NULL,'[\"Jess\"]'),(5274066,4825006,4,'actress',NULL,'[\"Ashley\"]'),(5274066,4825581,5,'director',NULL,NULL),(5274066,3992361,6,'writer','additional writing by',NULL),(5274066,4265471,7,'writer','additional writing by',NULL),(5274066,4265844,8,'writer','additional writing by',NULL),(5274066,2870049,9,'producer','producer',NULL),(5284414,496556,10,'producer','producer',NULL),(5284414,3329362,1,'actress',NULL,'[\"Miho Nishizumi\"]'),(5284414,4438173,2,'actress',NULL,'[\"Saori Takebe\"]'),(5284414,3501519,3,'actress',NULL,'[\"Hana Isuzu\"]'),(5284414,3186312,4,'actress',NULL,'[\"Yukari Akiyama\"]'),(5284414,1598205,5,'director',NULL,NULL),(5284414,3158487,6,'writer','original characters',NULL),(5284414,1027089,7,'writer','screenplay',NULL),(5284414,5500358,8,'producer','producer',NULL),(5284414,6894739,9,'producer','producer',NULL),(5285442,4620889,1,'director',NULL,NULL),(5291792,1317789,10,'editor',NULL,NULL),(5291792,502425,1,'actress',NULL,'[\"Joan Anderson\"]'),(5291792,1935086,2,'actress',NULL,'[\"Nicole Stevens\"]'),(5291792,1183149,3,'actor',NULL,'[\"Kevin Rivera\"]'),(5291792,2790055,4,'actor',NULL,'[\"Warden Borden\"]'),(5291792,172877,5,'director',NULL,NULL),(5291792,835299,6,'writer',NULL,NULL),(5291792,309684,7,'producer','producer',NULL),(5291792,1132022,8,'composer',NULL,NULL),(5291792,3276232,9,'cinematographer',NULL,NULL),(5294198,644897,1,'actress',NULL,'[\"Veronica\"]'),(5294198,162,2,'actress',NULL,'[\"Ashley\"]'),(5294198,224,3,'actress',NULL,'[\"Lisa\"]'),(5294198,384032,4,'actress',NULL,'[\"Aunt Charlie\"]'),(5294198,876287,5,'director',NULL,NULL),(5294198,4881565,6,'producer','producer',NULL),(5294198,628103,7,'producer','producer',NULL),(5294198,1387977,8,'cinematographer',NULL,NULL),(5294198,7492852,9,'production_designer',NULL,NULL),(5294550,6679051,10,'producer','producer',NULL),(5294550,931329,1,'actress',NULL,'[\"Gail Harris\"]'),(5294550,1626,2,'actor',NULL,'[\"J. Paul Getty\"]'),(5294550,242,3,'actor',NULL,'[\"Fletcher Chace\"]'),(5294550,244151,4,'actor',NULL,'[\"Cinquanta\"]'),(5294550,631,5,'director',NULL,NULL),(5294550,769227,6,'writer','written by',NULL),(5294550,669301,7,'writer','based on the book \'Painfully Rich: The Outrageous Fortune and Misfortunes of the Heirs of J. Paul Getty\' by',NULL),(5294550,163770,8,'producer','producer',NULL),(5294550,2795844,9,'producer','producer',NULL),(5296086,4364980,1,'actress',NULL,'[\"Her\"]'),(5296086,204208,2,'actress',NULL,'[\"Ariana\"]'),(5296086,1689640,3,'actress',NULL,'[\"Trish\"]'),(5296086,7812642,4,'actor',NULL,'[\"Julien\"]'),(5296086,2955551,5,'director',NULL,NULL),(5296086,3542676,6,'cinematographer',NULL,NULL),(5301662,588883,10,'composer',NULL,NULL),(5301662,1569276,1,'actor',NULL,'[\"Thurgood Marshall\"]'),(5301662,1265802,2,'actor',NULL,'[\"Sam Friedman\"]'),(5301662,5028,3,'actress',NULL,'[\"Eleanor Strubing\"]'),(5301662,1250791,4,'actor',NULL,'[\"Joseph Spell\"]'),(5301662,399737,5,'director',NULL,NULL),(5301662,7817658,6,'writer','written by',NULL),(5301662,1105617,7,'writer','written by',NULL),(5301662,762674,8,'producer','producer',NULL),(5301662,906048,9,'producer','producer',NULL),(5304992,164276,10,'cinematographer','director of photography',NULL),(5304992,3614913,1,'actress',NULL,'[\"Harper\"]'),(5304992,1412974,2,'actor',NULL,'[\"Charlie\"]'),(5304992,5154,3,'actress',NULL,'[\"Kirsten\"]'),(5304992,4875,4,'actor',NULL,'[\"Rick\"]'),(5304992,768957,5,'director',NULL,NULL),(5304992,4199289,6,'writer','written by',NULL),(5304992,75789,7,'producer','producer',NULL),(5304992,4312021,8,'producer','producer',NULL),(5304992,440017,9,'composer',NULL,NULL),(5308322,687427,10,'editor',NULL,NULL),(5308322,1557329,1,'actress',NULL,'[\"Tree Gelbman\"]'),(5308322,3441152,2,'actor',NULL,'[\"Carter Davis\"]'),(5308322,4384329,3,'actress',NULL,'[\"Lori Spengler\"]'),(5308322,2531628,4,'actor',NULL,'[\"Gregory Butler\"]'),(5308322,484907,5,'director',NULL,NULL),(5308322,1245146,6,'writer','written by',NULL),(5308322,89658,7,'producer','producer',NULL),(5308322,566970,8,'composer',NULL,NULL),(5308322,2947,9,'cinematographer','director of photography',NULL),(5311514,8823532,10,'producer','producer',NULL),(5311514,1126340,1,'actor',NULL,'[\"Taki Tachibana\"]'),(5311514,4759838,2,'actress',NULL,'[\"Mitsuha Miyamizu\"]'),(5311514,6954008,3,'actor',NULL,'[\"Katsuhiko Teshigawara\"]'),(5311514,2976492,4,'actress',NULL,'[\"Sayaka Natori\"]'),(5311514,1396121,5,'director',NULL,NULL),(5311514,1038805,6,'writer','english script',NULL),(5311514,5147232,7,'producer','producer',NULL),(5311514,3356206,8,'producer','chief executive producer',NULL),(5311514,2929057,9,'producer','producer',NULL),(5314190,813390,10,'editor',NULL,NULL),(5314190,503567,1,'actor',NULL,'[\"Robert Conroy\"]'),(5314190,307,2,'actress',NULL,'[\"Margaret\"]'),(5314190,367,3,'actor',NULL,'[\"Gaston Baptiste\"]'),(5314190,7793337,4,'actor',NULL,'[\"Olsen\",\"Shopkeeper\"]'),(5314190,4175844,5,'director',NULL,NULL),(5314190,831408,6,'writer',NULL,NULL),(5314190,7835801,7,'producer','producer',NULL),(5314190,1362292,8,'producer','producer',NULL),(5314190,236462,9,'composer',NULL,NULL),(5315212,100098,10,'producer','producer',NULL),(5315212,2313103,1,'actress',NULL,'[\"Stephanie\"]'),(5315212,3886028,2,'actress',NULL,'[\"Young Stephanie Conway\"]'),(5315212,4364610,3,'actress',NULL,'[\"Martha\"]'),(5315212,5463002,4,'actress',NULL,'[\"Young Martha Reiser\"]'),(5315212,1420377,5,'director',NULL,NULL),(5315212,3689973,6,'writer','screenplay by',NULL),(5315212,2435600,7,'writer','screenplay by',NULL),(5315212,1601147,8,'writer','screenplay by',NULL),(5315212,70454,9,'producer','producer',NULL),(5316540,2081236,10,'editor',NULL,NULL),(5316540,636426,1,'actress',NULL,'[\"Sam Carlson\"]'),(5316540,4563869,2,'actress',NULL,'[\"Zoe Tanner\"]'),(5316540,890055,3,'actress',NULL,'[\"Rima Hassine\"]'),(5316540,2151126,4,'actor',NULL,'[\"Conall Sinclair\"]'),(5316540,2351920,5,'director',NULL,NULL),(5316540,2374886,6,'writer',NULL,NULL),(5316540,1129502,7,'producer','producer',NULL),(5316540,2169909,8,'composer',NULL,NULL),(5316540,3559722,9,'cinematographer','director of photography',NULL),(5322012,697953,10,'editor',NULL,NULL),(5322012,1428821,1,'actress',NULL,'[\"Clare Shannon\"]'),(5322012,202,2,'actor',NULL,'[\"Jonathan Shannon\"]'),(5322012,3859624,3,'actor',NULL,'[\"Ryan Hui\"]'),(5322012,8190400,4,'actor',NULL,'[\"Paul Middlebrook\"]'),(5322012,502954,5,'director',NULL,NULL),(5322012,3011547,6,'writer','written by',NULL),(5322012,1602119,7,'producer','producer',NULL),(5322012,354453,8,'composer',NULL,NULL),(5322012,2684,9,'cinematographer','director of photography',NULL),(5322168,624481,10,'cinematographer',NULL,NULL),(5322168,1453,1,'actress',NULL,'[\"Rose\"]'),(5322168,724,2,'actress',NULL,'[\"Patty\"]'),(5322168,2032150,3,'actress',NULL,'[\"Allison\"]'),(5322168,8995126,4,'actor',NULL,'[\"Chris\"]'),(5322168,563039,5,'director',NULL,NULL),(5322168,5876959,6,'writer','screenplay by',NULL),(5322168,8766764,7,'writer','screenplay by',NULL),(5322168,560576,8,'producer','producer',NULL),(5322168,6080,9,'composer',NULL,NULL),(5323662,2488310,10,'producer','producer',NULL),(5323662,997115,1,'actor',NULL,'[\"Shôya Ishida\"]'),(5323662,2977461,2,'actress',NULL,'[\"Shoko Nishimiya\"]'),(5323662,2976492,3,'actress',NULL,'[\"Yuzuru Nishimiya\"]'),(5323662,2770525,4,'actor',NULL,'[\"Tomohiro Nagatsuka\"]'),(5323662,2210720,5,'director',NULL,NULL),(5323662,7835741,6,'writer','manga: \"Koe no katachi\"',NULL),(5323662,1027089,7,'writer','screenplay',NULL),(5323662,2116827,8,'writer','original author: \"Curry Rice\"',NULL),(5323662,2951215,9,'producer','producer',NULL),(5328952,718724,10,'cinematographer',NULL,NULL),(5328952,3401111,1,'actress',NULL,'[\"Zaynab\"]'),(5328952,818,2,'actress',NULL,'[\"Parveen\"]'),(5328952,3523269,3,'actress',NULL,'[\"Alma\"]'),(5328952,1883155,4,'actress',NULL,'[\"Jayde\"]'),(5328952,715781,5,'director',NULL,NULL),(5328952,232274,6,'writer',NULL,NULL),(5328952,7840062,7,'producer','producer',NULL),(5328952,1436937,8,'producer','producer',NULL),(5328952,897777,9,'composer',NULL,NULL),(5340300,1183873,10,'editor',NULL,NULL),(5340300,4055138,1,'actor',NULL,'[\"Charley\"]'),(5340300,1541272,2,'actress',NULL,'[\"Lynn\"]'),(5340300,1379938,3,'actor',NULL,'[\"Ray\"]'),(5340300,114,4,'actor',NULL,'[\"Del\"]'),(5340300,354091,5,'director',NULL,NULL),(5340300,2922439,6,'writer','based on the novel by',NULL),(5340300,2571063,7,'producer','producer',NULL),(5340300,1886083,8,'composer',NULL,NULL),(5340300,1454821,9,'cinematographer','director of photography',NULL),(5340882,3303482,10,'editor',NULL,NULL),(5340882,3198287,1,'actress',NULL,'[\"Lizzy\"]'),(5340882,5855663,2,'actor',NULL,'[\"Gage\"]'),(5340882,7426133,3,'actress',NULL,'[\"Thea\"]'),(5340882,2461013,4,'actress',NULL,'[\"Dr. Ellen Rogers\"]'),(5340882,2353045,5,'director',NULL,NULL),(5340882,1797032,6,'writer','screenplay by',NULL),(5340882,490375,7,'producer','producer',NULL),(5340882,1700105,8,'composer',NULL,NULL),(5340882,2260618,9,'cinematographer',NULL,NULL),(5348236,291999,10,'production_designer',NULL,NULL),(5348236,366,1,'actress',NULL,'[\"Béatrice Sobo\"]'),(5348236,296594,2,'actress',NULL,'[\"Claire Breton\"]'),(5348236,332709,3,'actor',NULL,'[\"Paul Baron\"]'),(5348236,6781043,4,'actor',NULL,'[\"Simon\"]'),(5348236,699095,5,'director',NULL,NULL),(5348236,216635,6,'producer','producer',NULL),(5348236,1055564,7,'composer',NULL,NULL),(5348236,134992,8,'cinematographer','director of photography',NULL),(5348236,1493372,9,'editor',NULL,NULL),(5348774,2654953,10,'editor',NULL,NULL),(5348774,2162912,1,'actor',NULL,'[\"Bauer Huber\"]'),(5348774,2043211,2,'actress',NULL,'[\"Birgit\"]'),(5348774,581536,3,'actor',NULL,'[\"Imker Meier\"]'),(5348774,797031,4,'actor',NULL,'[\"Franz Kramer\"]'),(5348774,3866538,5,'director',NULL,NULL),(5348774,7857257,6,'writer',NULL,NULL),(5348774,2911659,7,'producer','producer',NULL),(5348774,2967271,8,'composer',NULL,NULL),(5348774,1769527,9,'cinematographer',NULL,NULL),(5360232,1738956,10,'production_designer',NULL,NULL),(5360232,1711114,1,'actor',NULL,'[\"Seamus\"]'),(5360232,1842974,2,'actor',NULL,'[\"Nick\"]'),(5360232,2901344,3,'actress',NULL,'[\"Eliza\"]'),(5360232,258402,4,'actor',NULL,'[\"Cal\"]'),(5360232,445694,5,'producer','producer',NULL),(5360232,748851,6,'producer','producer',NULL),(5360232,938292,7,'composer',NULL,NULL),(5360232,767734,8,'cinematographer',NULL,NULL),(5360232,721718,9,'editor',NULL,NULL),(5362988,3948817,10,'producer','producer',NULL),(5362988,647634,1,'actress',NULL,'[\"Jane Banner\"]'),(5362988,719637,2,'actor',NULL,'[\"Cory Lambert\"]'),(5362988,1295,3,'actor',NULL,'[\"Ben\"]'),(5362988,2080328,4,'actress',NULL,'[\"Natalie\"]'),(5362988,792263,5,'director',NULL,NULL),(5362988,2240551,6,'producer','producer',NULL),(5362988,916,7,'producer','producer',NULL),(5362988,313531,8,'producer','producer',NULL),(5362988,412588,9,'producer','producer',NULL),(5363618,12168180,10,'producer','producer',NULL),(5363618,1981893,1,'actor',NULL,'[\"Ruben Stone\"]'),(5363618,4972453,2,'actress',NULL,'[\"Lou\"]'),(5363618,705152,3,'actor',NULL,'[\"Joe\"]'),(5363618,4248765,4,'actress',NULL,'[\"Diane\"]'),(5363618,2942187,5,'director',NULL,NULL),(5363618,3473150,6,'writer','screenplay by',NULL),(5363618,161834,7,'writer','story by',NULL),(5363618,5289961,8,'producer','producer',NULL),(5363618,3189181,9,'producer','producer',NULL),(5390504,6133,10,'composer',NULL,NULL),(5390504,3915784,1,'actor',NULL,'[\"Dismukes\"]'),(5390504,1107001,2,'actor',NULL,'[\"Greene\"]'),(5390504,4861346,3,'actor',NULL,'[\"Larry\"]'),(5390504,3632976,4,'actor',NULL,'[\"Fred\"]'),(5390504,941,5,'director',NULL,NULL),(5390504,1676793,6,'writer','written by',NULL),(5390504,3040960,7,'producer','producer',NULL),(5390504,2691892,8,'producer','producer',NULL),(5390504,933213,9,'producer','producer',NULL),(5397194,596360,10,'cinematographer',NULL,NULL),(5397194,654110,1,'actor',NULL,'[\"Sal Frieland\"]'),(5397194,6276553,2,'actress',NULL,'[\"Ima Aug\"]'),(5397194,6894585,3,'actor',NULL,'[\"Iri Aug\"]'),(5397194,4760889,4,'actor',NULL,'[\"Chen Sheng Lu\"]'),(5397194,629272,5,'director',NULL,NULL),(5397194,1358156,6,'producer','producer',NULL),(5397194,769645,7,'producer','producer',NULL),(5397194,800323,8,'producer','producer',NULL),(5397194,65100,9,'composer',NULL,NULL),(5427194,509176,10,'producer','producer',NULL),(5427194,166,1,'actress',NULL,'[\"Kathy Bresnahan\"]'),(5427194,3929195,2,'actress',NULL,'[\"Kelley Fliehler\"]'),(5427194,458,3,'actor',NULL,'[\"Ernie Found\"]'),(5427194,3912822,4,'actress',NULL,'[\"Caroline Found\"]'),(5427194,573732,5,'director',NULL,NULL),(5427194,169173,6,'writer','screenplay by',NULL),(5427194,5990921,7,'writer','screenplay by',NULL),(5427194,161891,8,'producer','producer',NULL),(5427194,973652,9,'producer','producer',NULL),(5433138,605775,10,'producer','producer',NULL),(5433138,4874,1,'actor',NULL,'[\"Dominic Toretto\"]'),(5433138,735442,2,'actress',NULL,'[\"Letty\"]'),(5433138,108287,3,'actress',NULL,'[\"Mia\"]'),(5433138,879085,4,'actor',NULL,'[\"Roman\"]'),(5433138,510912,5,'director',NULL,NULL),(5433138,143403,6,'writer','screenplay by',NULL),(5433138,2073574,7,'writer','story by',NULL),(5433138,860155,8,'writer','based on characters created by',NULL),(5433138,456929,9,'producer','producer',NULL),(5433140,456929,10,'producer','producer',NULL),(5433140,4874,1,'actor',NULL,'[\"Dominic Toretto\"]'),(5433140,735442,2,'actress',NULL,'[\"Letty\"]'),(5433140,5458,3,'actor',NULL,'[\"Shaw\"]'),(5433140,108287,4,'actress',NULL,'[\"Mia\"]'),(5433140,504642,5,'director',NULL,NULL),(5433140,2669197,6,'writer','screenplay by',NULL),(5433140,510912,7,'writer','screenplay by',NULL),(5433140,3916149,8,'writer','story by',NULL),(5433140,860155,9,'writer','based on characters created by',NULL),(5434870,3695539,10,'production_designer',NULL,NULL),(5434870,1789970,1,'actress',NULL,'[\"Colleen Lunsford\"]'),(5434870,639,2,'actress',NULL,'[\"Joani Lunsford\"]'),(5434870,1493163,3,'actor',NULL,'[\"Deli Guy\"]'),(5434870,361182,4,'actress',NULL,'[\"Homeless Woman\"]'),(5434870,1384462,5,'director',NULL,NULL),(5434870,1461281,6,'writer','story by',NULL),(5434870,1993413,7,'producer','executive producer',NULL),(5434870,916357,8,'producer','producer',NULL),(5434870,3018638,9,'composer',NULL,NULL),(5437928,1490949,10,'producer','producer',NULL),(5437928,461136,1,'actress',NULL,'[\"Colette\"]'),(5437928,789716,2,'actress',NULL,'[\"Sido\"]'),(5437928,922035,3,'actor',NULL,'[\"Willy\"]'),(5437928,700059,4,'actor',NULL,'[\"Jules\"]'),(5437928,922903,5,'director',NULL,NULL),(5437928,322144,6,'writer','screenplay by',NULL),(5437928,501947,7,'writer','screenplay by',NULL),(5437928,439563,8,'producer','producer',NULL),(5437928,463025,9,'producer','producer',NULL),(5439796,391794,10,'composer',NULL,NULL),(5439796,1475594,1,'actor',NULL,'[\"Jimmy Logan\"]'),(5439796,3485845,2,'actor',NULL,'[\"Clyde Logan\"]'),(5439796,185819,3,'actor',NULL,'[\"Joe Bang\"]'),(5439796,5008863,4,'actress',NULL,'[\"Sadie Logan\"]'),(5439796,1752,5,'director',NULL,NULL),(5439796,39583,6,'writer','written by',NULL),(5439796,1730221,7,'producer','producer',NULL),(5439796,414423,8,'producer','producer',NULL),(5439796,425741,9,'producer','producer',NULL),(5439812,4679434,10,'writer','story by',NULL),(5439812,3666749,1,'actress',NULL,'[\"Zola\"]'),(5439812,2142336,2,'actress',NULL,'[\"Stefani\"]'),(5439812,1002609,3,'actor',NULL,'[\"Derrek\"]'),(5439812,6359527,4,'actor',NULL,'[\"Sean\"]'),(5439812,1891632,5,'director',NULL,NULL),(5439812,4925405,6,'writer','screenplay by',NULL),(5439812,10935584,7,'writer','based on the tweets by',NULL),(5439812,6365846,8,'writer','based on the article \"Zola Tells All: The Real Story Behind the Greatest Stripper Saga Ever Tweeted\" by',NULL),(5439812,624157,9,'writer','story by',NULL),(5442430,1602154,10,'producer','producer',NULL),(5442430,350453,1,'actor',NULL,'[\"David Jordan\"]'),(5442430,272581,2,'actress',NULL,'[\"Miranda North\"]'),(5442430,5351,3,'actor',NULL,'[\"Rory Adams\"]'),(5442430,760796,4,'actor',NULL,'[\"Sho Murakami\"]'),(5442430,1174251,5,'director',NULL,NULL),(5442430,1014201,6,'writer','written by',NULL),(5442430,1116660,7,'writer','written by',NULL),(5442430,193268,8,'producer','producer',NULL),(5442430,1911103,9,'producer','producer',NULL),(5447082,4620889,1,'director',NULL,NULL),(5459794,1155956,1,'director',NULL,NULL),(5461944,1099128,10,'producer','producer',NULL),(5461944,2353862,1,'actor',NULL,'[\"Arjun\"]'),(5461944,2309517,2,'actor',NULL,'[\"David\"]'),(5461944,2258164,3,'actress',NULL,'[\"Zahra\"]'),(5461944,451600,4,'actor',NULL,'[\"Oberoi\"]'),(5461944,2285536,5,'director',NULL,NULL),(5461944,171722,6,'writer','written by',NULL),(5461944,300166,7,'producer','producer',NULL),(5461944,357861,8,'producer','producer',NULL),(5461944,412588,9,'producer','producer',NULL),(5462326,2003870,10,'editor',NULL,NULL),(5462326,115,1,'actor',NULL,'[\"Brent\"]'),(5462326,4757,2,'actress',NULL,'[\"Kendall\"]'),(5462326,3453476,3,'actress',NULL,'[\"Carly\"]'),(5462326,6236879,4,'actor',NULL,'[\"Josh\"]'),(5462326,962729,5,'director',NULL,NULL),(5462326,4043287,6,'producer','executive producer',NULL),(5462326,2591283,7,'producer','producer',NULL),(5462326,669050,8,'cinematographer',NULL,NULL),(5462326,2401009,9,'editor',NULL,NULL),(5462602,1125431,10,'cinematographer','director of photography',NULL),(5462602,3529685,1,'actor',NULL,'[\"Kumail\"]'),(5462602,1443740,2,'actress',NULL,'[\"Emily\"]'),(5462602,456,3,'actress',NULL,'[\"Beth\"]'),(5462602,5380,4,'actor',NULL,'[\"Terry\"]'),(5462602,795290,5,'director',NULL,NULL),(5462602,5077137,6,'writer','written by',NULL),(5462602,31976,7,'producer','producer',NULL),(5462602,578814,8,'producer','producer',NULL),(5462602,28787,9,'composer',NULL,NULL),(5463162,1334526,10,'producer','producer',NULL),(5463162,5351,1,'actor',NULL,'[\"Wade Wilson\",\"Deadpool\",\"Voice of Juggernaut\"]'),(5463162,982,2,'actor',NULL,'[\"Cable\"]'),(5463162,1072555,3,'actress',NULL,'[\"Vanessa\"]'),(5463162,5421877,4,'actor',NULL,'[\"Firefist\"]'),(5463162,500610,5,'director',NULL,NULL),(5463162,1014201,6,'writer','written by',NULL),(5463162,1116660,7,'writer','written by',NULL),(5463162,509580,8,'writer','based on the character created by',NULL),(5463162,1436760,9,'writer','based on the character created by',NULL),(5474644,1298182,10,'producer','producer',NULL),(5474644,152839,1,'actress',NULL,'[\"Twilight Sparkle\",\"Midnight Sparkle\"]'),(5474644,1690630,2,'actress',NULL,'[\"Sunset Shimmer\",\"Twilight Sparkle - singing\"]'),(5474644,1868320,3,'actress',NULL,'[\"Rainbow Dash\",\"Applejack\",\"Lyra Heartstrings\"]'),(5474644,508877,4,'actress',NULL,'[\"Pinkie Pie\",\"Fluttershy\",\"Bon Bon\"]'),(5474644,2154278,5,'director',NULL,NULL),(5474644,2995437,6,'writer','written by',NULL),(5474644,3976409,7,'writer','written by',NULL),(5474644,269260,8,'writer','characters',NULL),(5474644,9261564,9,'writer','creator',NULL),(5478478,1086687,10,'cinematographer',NULL,NULL),(5478478,791864,1,'actor',NULL,'[\"Wesley Quaid\"]'),(5478478,683253,2,'actress',NULL,'[\"Rosalee Quaid\"]'),(5478478,4768271,3,'actress',NULL,'[\"Lucy Quaid\"]'),(5478478,4767842,4,'actress',NULL,'[\"Sylvie Quaid\"]'),(5478478,178376,5,'director',NULL,NULL),(5478478,829329,6,'writer','based on the manuscript by',NULL),(5478478,4056338,7,'producer','producer',NULL),(5478478,971956,8,'producer','producer',NULL),(5478478,2068037,9,'composer',NULL,NULL),(5492808,5029837,10,'producer','producer',NULL),(5492808,3332465,1,'actor',NULL,'[\"Kojo\"]'),(5492808,666788,2,'actress',NULL,'[\"Lina\"]'),(5492808,3754607,3,'actress',NULL,'[\"Mother\"]'),(5492808,3753553,4,'actor',NULL,'[\"Father\"]'),(5492808,3523091,5,'director',NULL,NULL),(5492808,1242711,6,'writer','co-writer',NULL),(5492808,6681837,7,'producer','producer',NULL),(5492808,2414361,8,'producer','producer',NULL),(5492808,3676643,9,'producer','producer',NULL),(5493706,6272600,10,'writer','story editor',NULL),(5493706,71847,1,'actor',NULL,'[\"Frankenstein\"]'),(5493706,532,2,'actor',NULL,'[\"Chairman\"]'),(5493706,3304608,3,'actress',NULL,'[\"Annie Sullivan\"]'),(5493706,4742129,4,'actor',NULL,'[\"Jed Perfectus\"]'),(5493706,1058259,5,'director',NULL,NULL),(5493706,4714447,6,'writer','screenplay by',NULL),(5493706,858379,7,'writer','based on the screenplay by',NULL),(5493706,341458,8,'writer','based on the screenplay by',NULL),(5493706,577477,9,'writer','original story by',NULL),(5500218,881104,10,'cinematographer',NULL,NULL),(5500218,230,1,'actor',NULL,'[\"Joe\"]'),(5500218,9937520,2,'actor',NULL,'[\"Sam Cleary\"]'),(5500218,1561982,3,'actor',NULL,'[\"Cyrus\"]'),(5500218,4745601,4,'actress',NULL,'[\"Tiffany Cleary\"]'),(5500218,1170339,5,'director',NULL,NULL),(5500218,776885,6,'writer','written by',NULL),(5500218,2302240,7,'producer','producer',NULL),(5500218,454349,8,'composer',NULL,NULL),(5500218,1011485,9,'composer',NULL,NULL),(5503686,570912,10,'producer','producer',NULL),(5503686,2090422,1,'actress',NULL,'[\"Destiny\"]'),(5503686,182,2,'actress',NULL,'[\"Ramona\"]'),(5503686,5466,3,'actress',NULL,'[\"Elizabeth\"]'),(5503686,9724879,4,'actress',NULL,'[\"Justice\"]'),(5503686,1032521,5,'director',NULL,NULL),(5503686,5658722,6,'writer','inspired by the article published by New York Magazine entitled \"The Hustlers at Scores\" written by',NULL),(5503686,1819990,7,'producer','producer',NULL),(5503686,2071,8,'producer','producer',NULL),(5503686,326063,9,'producer','producer',NULL),(5511582,1156709,10,'actress',NULL,'[\"Emma Whitmore\"]'),(5511582,817844,1,'actress',NULL,'[\"Lucy Preston\"]'),(5511582,1782667,2,'actor',NULL,'[\"Wyatt Logan\"]'),(5511582,57217,3,'actor',NULL,'[\"Rufus Carlin\"]'),(5511582,430667,4,'actor',NULL,'[\"Connor Mason\"]'),(5511582,471392,5,'writer','created by',NULL),(5511582,752841,6,'writer','created by',NULL),(5511582,415529,7,'actress',NULL,'[\"Denise Christopher\"]'),(5511582,4707628,8,'actress',NULL,'[\"Jiya\"]'),(5511582,899681,9,'actor',NULL,'[\"Garcia Flynn\"]'),(5512872,3261686,10,'composer',NULL,NULL),(5512872,7956036,1,'actor',NULL,'[\"Jordan Jaye\"]'),(5512872,5152585,2,'actress',NULL,'[\"Emily Lowe\"]'),(5512872,2407761,3,'actress',NULL,'[\"Jessica\"]'),(5512872,806982,4,'actress',NULL,'[\"Mrs. Jaye\"]'),(5512872,2093933,5,'director',NULL,NULL),(5512872,198938,6,'writer','writer',NULL),(5512872,83035,7,'producer','producer',NULL),(5512872,8208372,8,'producer','producer',NULL),(5512872,7043518,9,'composer',NULL,NULL),(5516328,83559,10,'cinematographer','director of photography',NULL),(5516328,3890987,1,'actor',NULL,'[\"Young Goodman\"]'),(5516328,8609670,2,'actress',NULL,'[\"Mrs Goodman\"]'),(5516328,7963775,3,'actress',NULL,'[\"Esther Goodman\"]'),(5516328,384164,4,'actor',NULL,'[\"Mr Goodman\"]'),(5516328,246037,5,'director',NULL,NULL),(5516328,638762,6,'director',NULL,NULL),(5516328,349168,7,'producer','producer',NULL),(5516328,2095003,8,'producer','producer',NULL),(5516328,253313,9,'composer',NULL,NULL),(5519340,2867565,10,'composer',NULL,NULL),(5519340,226,1,'actor',NULL,'[\"Daryl Ward\"]'),(5519340,249291,2,'actor',NULL,'[\"Nick Jakoby\"]'),(5519340,636426,3,'actress',NULL,'[\"Leilah\"]'),(5519340,1183149,4,'actor',NULL,'[\"Kandomere\"]'),(5519340,43742,5,'director',NULL,NULL),(5519340,484840,6,'writer','written by',NULL),(5519340,628080,7,'producer','producer',NULL),(5519340,1848253,8,'producer','producer',NULL),(5519340,4105822,9,'producer','producer',NULL),(5521550,3967596,10,'editor',NULL,NULL),(5521550,4413917,1,'actress',NULL,'[\"Kate Fields\"]'),(5521550,3713920,2,'actor',NULL,'[\"Richard\",\"Raven\"]'),(5521550,3749211,3,'actress',NULL,'[\"Waitress\"]'),(5521550,4739686,4,'actress',NULL,'[\"Evie\"]'),(5521550,124089,5,'director',NULL,NULL),(5521550,1351557,6,'writer','screenplay by',NULL),(5521550,1389536,7,'producer','producer',NULL),(5521550,4118184,8,'composer',NULL,NULL),(5521550,2205106,9,'cinematographer',NULL,NULL),(5523010,290581,10,'producer','producer',NULL),(5523010,3237775,1,'actress',NULL,'[\"Clara\"]'),(5523010,461136,2,'actress',NULL,'[\"Sugar Plum\"]'),(5523010,151,3,'actor',NULL,'[\"Drosselmeyer\"]'),(5523010,545,4,'actress',NULL,'[\"Mother Ginger\"]'),(5523010,2120,5,'director',NULL,NULL),(5523010,2653,6,'director',NULL,NULL),(5523010,2060755,7,'writer','screen story and screenplay by',NULL),(5523010,6782,8,'writer','suggested by the short story \"The Nutcracker and the Mouse King\" written by',NULL),(5523010,677535,9,'writer','suggested by the \"Nutcracker Ballet\" by',NULL),(5526028,411050,1,'actor',NULL,'[\"Manabu Hara\"]'),(5526028,436778,2,'actor',NULL,'[\"Hikaru Kusakabe\"]'),(5526028,1261186,3,'actor',NULL,'[\"Rihito Sajo\"]'),(5526028,9272817,4,'actress',NULL,'[\"Mikipon\"]'),(5526028,2638876,5,'director',NULL,NULL),(5526028,8750616,6,'writer','manga',NULL),(5526028,6851864,7,'producer','producer',NULL),(5526028,1482000,8,'composer',NULL,NULL),(5526028,5002895,9,'cinematographer',NULL,NULL),(5536736,752811,10,'cinematographer','director of photography',NULL),(5536736,1191,1,'actor',NULL,'[\"Danny\"]'),(5536736,2665105,2,'actress',NULL,'[\"Eliza\"]'),(5536736,163,3,'actor',NULL,'[\"Harold\"]'),(5536736,555500,4,'actress',NULL,'[\"Jean\"]'),(5536736,876,5,'director',NULL,NULL),(5536736,4791912,6,'producer','producer',NULL),(5536736,748784,7,'producer','producer',NULL),(5536736,944803,8,'producer','producer',NULL),(5536736,5271,9,'composer',NULL,NULL),(5538078,8758264,1,'self',NULL,'[\"Self\"]'),(5538078,8735191,2,'self',NULL,'[\"Self\"]'),(5538078,1830532,3,'director',NULL,NULL),(5538078,1436564,4,'composer',NULL,NULL),(5538078,786785,5,'editor',NULL,NULL),(5539054,589217,10,'composer',NULL,NULL),(5539054,2254074,1,'actress',NULL,'[\"Holly Viola\"]'),(5539054,4296013,2,'actress',NULL,'[\"Alison Hewitt\"]'),(5539054,4973896,3,'actor',NULL,'[\"Tyler Hanson\"]'),(5539054,6594362,4,'actor',NULL,'[\"Gil\"]'),(5539054,2979453,5,'director',NULL,NULL),(5539054,1397787,6,'writer','written by',NULL),(5539054,2492480,7,'producer','producer',NULL),(5539054,1396390,8,'producer','producer',NULL),(5539054,5367,9,'producer','producer',NULL),(5540622,3439734,10,'editor',NULL,NULL),(5540622,2409479,1,'actress',NULL,'[\"Ellie\"]'),(5540622,5350,2,'actor',NULL,'[\"Owen\"]'),(5540622,1707018,3,'actress',NULL,'[\"Lo\"]'),(5540622,1331735,4,'actor',NULL,'[\"Jonathan\"]'),(5540622,505642,5,'director',NULL,NULL),(5540622,6558641,6,'writer',NULL,NULL),(5540622,516805,7,'composer',NULL,NULL),(5540622,8610958,8,'composer',NULL,NULL),(5540622,74735,9,'cinematographer',NULL,NULL),(5541240,4974188,10,'producer','producer',NULL),(5541240,2796058,1,'actress',NULL,'[\"Penny\"]'),(5541240,2934314,2,'actress',NULL,'[\"Ellen\"]'),(5541240,2660484,3,'actress',NULL,'[\"Margo\"]'),(5541240,3200920,4,'actress',NULL,'[\"Angel\"]'),(5541240,637497,5,'director',NULL,NULL),(5541240,6372355,6,'producer','producer',NULL),(5541240,193268,7,'producer','producer',NULL),(5541240,3713130,8,'producer','producer',NULL),(5541240,528724,9,'producer','producer',NULL),(5553782,1972447,1,'self',NULL,'[\"Self\"]'),(5553782,8000095,2,'self',NULL,'[\"Self\"]'),(5553782,2411867,3,'director','co-director',NULL),(5553782,798354,4,'director','co-director',NULL),(5563334,5859,10,'cinematographer',NULL,NULL),(5563334,545,1,'actress',NULL,'[\"Betty McLeish\"]'),(5563334,5212,2,'actor',NULL,'[\"Roy Courtnay\"]'),(5563334,869871,3,'actor',NULL,'[\"Stephen\"]'),(5563334,141697,4,'actor',NULL,'[\"Vincent\"]'),(5563334,174374,5,'director',NULL,NULL),(5563334,8006852,6,'writer','based on the novel by',NULL),(5563334,368774,7,'writer','screenplay by',NULL),(5563334,5249587,8,'producer','producer',NULL),(5563334,1980,9,'composer',NULL,NULL),(5563932,4640034,10,'composer',NULL,NULL),(5563932,602445,1,'actor',NULL,'[\"Narrator (UK & US)\"]'),(5563932,3867591,2,'actress',NULL,'[\"Ashima (UK & US)\"]'),(5563932,368225,3,'actor',NULL,'[\"Thomas (UK)\",\"Rheneas (UK & US)\"]'),(5563932,562008,4,'actor',NULL,'[\"Thomas (US)\"]'),(5563932,832770,5,'director',NULL,NULL),(5563932,43423,6,'writer','based on the railway series by',NULL),(5563932,20150,7,'writer','created by',NULL),(5563932,1061079,8,'writer','written by',NULL),(5563932,205241,9,'composer',NULL,NULL),(5571734,4963674,10,'producer','producer',NULL),(5571734,821,1,'actor',NULL,'[\"Deepak Sehgal\"]'),(5571734,3966456,2,'actress',NULL,'[\"Minal Arora\"]'),(5571734,4112854,3,'actress',NULL,'[\"Falak Ali\"]'),(5571734,8019376,4,'actress',NULL,'[\"Andrea\"]'),(5571734,2287772,5,'director',NULL,NULL),(5571734,1999473,6,'writer','story',NULL),(5571734,1937760,7,'writer','story',NULL),(5571734,12466397,8,'producer','producer',NULL),(5571734,11405540,9,'producer','producer',NULL),(5571754,775939,10,'cinematographer',NULL,NULL),(5571754,4750182,1,'actress',NULL,'[\"Lilith\"]'),(5571754,2400296,2,'actress',NULL,'[\"Greta Birnstein\"]'),(5571754,4371463,3,'actor',NULL,'[\"Samuel\"]'),(5571754,278373,4,'actor',NULL,'[\"Teufel\"]'),(5571754,678450,5,'director',NULL,NULL),(5571754,353964,6,'writer',NULL,NULL),(5571754,395541,7,'writer','novel',NULL),(5571754,5336683,8,'producer','producer',NULL),(5571754,3115937,9,'producer','producer',NULL),(5573580,3484914,1,'actress',NULL,'[\"Marie\"]'),(5573580,120575,2,'actress',NULL,'[\"Kristi\"]'),(5573580,2378491,3,'actor',NULL,'[\"Peter\"]'),(5573580,948475,4,'actor',NULL,'[\"Tom\"]'),(5573580,7155991,5,'director',NULL,NULL),(5573580,1785206,6,'producer','producer',NULL),(5573580,1647319,7,'cinematographer',NULL,NULL),(5573580,4094357,8,'editor',NULL,NULL),(5580036,1785999,10,'cinematographer','director of photography',NULL),(5580036,3053338,1,'actress',NULL,'[\"Tonya\"]'),(5580036,1659221,2,'actor',NULL,'[\"Jeff\"]'),(5580036,5049,3,'actress',NULL,'[\"LaVona\"]'),(5580036,629855,4,'actress',NULL,'[\"Diane Rawlinson\"]'),(5580036,318916,5,'director',NULL,NULL),(5580036,737216,6,'writer','written by',NULL),(5580036,3943537,7,'producer','producer',NULL),(5580036,4105822,8,'producer','producer',NULL),(5580036,621829,9,'composer',NULL,NULL),(5580266,854052,10,'producer','producer',NULL),(5580266,3964350,1,'actress',NULL,'[\"Starr Carter\"]'),(5580266,356021,2,'actress',NULL,'[\"Lisa Carter\"]'),(5580266,395203,3,'actor',NULL,'[\"Maverick \'Mav\' Carter\"]'),(5580266,1107001,4,'actor',NULL,'[\"King\"]'),(5580266,863387,5,'director',NULL,NULL),(5580266,920108,6,'writer','screenplay by',NULL),(5580266,8021571,7,'writer','based upon the novel by',NULL),(5580266,2125212,8,'producer','producer',NULL),(5580266,324041,9,'producer','producer',NULL),(5580390,938485,10,'editor','film editor',NULL),(5580390,1020089,1,'actress',NULL,'[\"Elisa Esposito\"]'),(5580390,818055,2,'actress',NULL,'[\"Zelda Fuller\"]'),(5580390,788335,3,'actor',NULL,'[\"Richard Strickland\"]'),(5580390,427964,4,'actor',NULL,'[\"Amphibian Man\"]'),(5580390,868219,5,'director',NULL,NULL),(5580390,961827,6,'writer','screenplay by',NULL),(5580390,197703,7,'producer','producer',NULL),(5580390,6035,8,'composer',NULL,NULL),(5580390,491565,9,'cinematographer','director of photography',NULL),(5592248,1558471,10,'composer',NULL,NULL),(5592248,173,1,'actress',NULL,'[\"Miss Martha\"]'),(5592248,379,2,'actress',NULL,'[\"Edwina\"]'),(5592248,1102577,3,'actress',NULL,'[\"Alicia\"]'),(5592248,268199,4,'actor',NULL,'[\"Corporal McBurney\"]'),(5592248,1068,5,'director',NULL,NULL),(5592248,191580,6,'writer','based on the novel by',NULL),(5592248,540816,7,'writer','and the screenplay by',NULL),(5592248,436894,8,'writer','and the screenplay by',NULL),(5592248,1323058,9,'producer','producer',NULL),(5595168,368073,10,'producer','producer',NULL),(5595168,666739,1,'actor',NULL,'[\"Nyx Ulric\"]'),(5595168,372176,2,'actress',NULL,'[\"Lunafreya Nox Fleuret\"]'),(5595168,293,3,'actor',NULL,'[\"Regis Lucis Caelum\"]'),(5595168,627667,4,'actor',NULL,'[\"Petra Fortis\"]'),(5595168,1481959,5,'director',NULL,NULL),(5595168,2048769,6,'writer','screenplay',NULL),(5595168,1081992,7,'writer','story',NULL),(5595168,3887796,8,'writer','story',NULL),(5595168,756983,9,'writer','series creator',NULL),(5598100,705108,10,'producer','producer',NULL),(5598100,5117871,1,'actor',NULL,'[\"Ben\"]'),(5598100,2245673,2,'actor',NULL,'[\"Farid\"]'),(5598100,4372913,3,'actor',NULL,'[\"Toussaint\"]'),(5598100,3023008,4,'actress',NULL,'[\"Samia\"]'),(5598100,8381788,5,'director',NULL,NULL),(5598100,2120560,6,'director',NULL,NULL),(5598100,8166889,7,'writer','screenplay',NULL),(5598100,22969,8,'producer','producer',NULL),(5598100,22971,9,'producer','producer',NULL),(5598192,259132,10,'actor',NULL,'[\"Kanehed\"]'),(5598192,724688,1,'actress',NULL,'[\"Hanna\"]'),(5598192,1717138,2,'actor',NULL,'[\"Christian\"]'),(5598192,470886,3,'actor',NULL,'[\"Björn\"]'),(5598192,682115,4,'actress',NULL,'[\"Dubravka\"]'),(5598192,6523716,5,'actress',NULL,'[\"Blanka\"]'),(5598192,1166542,6,'actor',NULL,'[\"Pawel\"]'),(5598192,2178084,7,'actor',NULL,'[\"Magnus\"]'),(5598192,3160438,8,'actor',NULL,'[\"Davor\"]'),(5598192,5112218,9,'actor',NULL,'[\"Bojan\"]'),(5606664,277342,10,'cinematographer','director of photography',NULL),(5606664,191,1,'actor',NULL,'[\"Dan Torrance\"]'),(5606664,272581,2,'actress',NULL,'[\"Rose the Hat\"]'),(5606664,7738797,3,'actress',NULL,'[\"Abra Stone\"]'),(5606664,193295,4,'actor',NULL,'[\"Billy Freeman\"]'),(5606664,1093039,5,'director',NULL,NULL),(5606664,175,6,'writer','based upon the novel by',NULL),(5606664,1153895,7,'producer','producer',NULL),(5606664,1006167,8,'producer','producer',NULL),(5606664,2435752,9,'composer',NULL,NULL),(5607714,1030033,10,'cinematographer',NULL,NULL),(5607714,3730253,1,'actress',NULL,'[\"Mária\",\"Doctor\"]'),(5607714,1573967,2,'actor',NULL,'[\"Endre\",\"Manager\"]'),(5607714,2757249,3,'actress',NULL,'[\"Klára\",\"psychologist\"]'),(5607714,1343442,4,'actor',NULL,'[\"Jenö\",\"HR manager\"]'),(5607714,258221,5,'director',NULL,NULL),(5607714,2509625,6,'producer','producer',NULL),(5607714,611274,7,'producer','producer',NULL),(5607714,2307733,8,'producer','producer',NULL),(5607714,1263096,9,'composer',NULL,NULL),(5610554,1461537,10,'producer','producer',NULL),(5610554,234,1,'actress',NULL,'[\"Marlo\"]'),(5610554,4496875,2,'actress',NULL,'[\"Tully\"]'),(5610554,515296,3,'actor',NULL,'[\"Drew\"]'),(5610554,8313926,4,'actor',NULL,'[\"Jonah\"]'),(5610554,718646,5,'director',NULL,NULL),(5610554,1959505,6,'writer','written by',NULL),(5610554,228690,7,'producer','producer',NULL),(5610554,2615685,8,'producer','producer',NULL),(5610554,317943,9,'producer','producer',NULL),(5613484,722153,10,'composer',NULL,NULL),(5613484,6129779,1,'actor',NULL,'[\"Stevie\"]'),(5613484,2239702,2,'actress',NULL,'[\"Dabney\"]'),(5613484,2348627,3,'actor',NULL,'[\"Ian\"]'),(5613484,7078703,4,'actor',NULL,'[\"Ray\"]'),(5613484,1706767,5,'director',NULL,NULL),(5613484,4791912,6,'producer','producer',NULL),(5613484,4056338,7,'producer','producer',NULL),(5613484,748784,8,'producer','producer',NULL),(5613484,944803,9,'producer','producer',NULL),(5619332,565250,1,'actress',NULL,'[\"Deanna\"]'),(5619332,909768,2,'actor',NULL,'[\"Dan\"]'),(5619332,1094137,3,'actress',NULL,'[\"Maddie\"]'),(5619332,1229520,4,'actor',NULL,'[\"Uber Driver\"]'),(5619332,376260,5,'producer','producer',NULL),(5619332,1135983,6,'composer',NULL,NULL),(5619332,531310,7,'cinematographer',NULL,NULL),(5619332,1630456,8,'editor',NULL,NULL),(5619332,809840,9,'production_designer',NULL,NULL),(5629964,2458745,10,'composer',NULL,NULL),(5629964,5640132,1,'actress',NULL,'[\"Young Anna\"]'),(5629964,5030959,2,'actor',NULL,'[\"Max\"]'),(5629964,8674075,3,'actress',NULL,'[\"Mary\"]'),(5629964,5238868,4,'actor',NULL,'[\"The Midnight Man\"]'),(5629964,953511,5,'director',NULL,NULL),(5629964,2414185,6,'writer','based on an original screenplay by',NULL),(5629964,66580,7,'producer','executive producer',NULL),(5629964,255891,8,'producer','producer',NULL),(5629964,2609442,9,'producer','producer',NULL),(5633706,849036,10,'actress',NULL,'[\"Fumiko\"]'),(5633706,1118632,1,'actor',NULL,'[\"Makio\"]'),(5633706,1030205,2,'actor',NULL,'[\"Rinko\"]'),(5633706,5282266,3,'actress',NULL,'[\"Yuka\"]'),(5633706,1065734,4,'actress',NULL,'[\"Naomi\"]'),(5633706,644688,5,'director',NULL,NULL),(5633706,3419959,6,'producer','producer',NULL),(5633706,5079467,7,'producer','producer',NULL),(5633706,9158817,8,'producer','producer',NULL),(5633706,1655689,9,'actress',NULL,'[\"Kanai\"]'),(5635086,943527,10,'editor','film editor',NULL),(5635086,4853066,1,'actor',NULL,'[\"Johnny Saxby\"]'),(5635086,2649764,2,'actor',NULL,'[\"Gheorghe Ionescu\"]'),(5635086,428121,3,'actress',NULL,'[\"Deirdre Saxby\"]'),(5635086,1324,4,'actor',NULL,'[\"Martin Saxby\"]'),(5635086,497274,5,'director',NULL,NULL),(5635086,5228823,6,'producer','producer',NULL),(5635086,2263260,7,'producer','producer',NULL),(5635086,10903961,8,'composer',NULL,NULL),(5635086,4452305,9,'cinematographer','director of photography',NULL),(5638642,1705911,10,'composer',NULL,NULL),(5638642,1245863,1,'actor',NULL,'[\"Luke\"]'),(5638642,2468782,2,'actor',NULL,'[\"Phil\"]'),(5638642,1674947,3,'actor',NULL,'[\"Hutch\"]'),(5638642,873744,4,'actor',NULL,'[\"Dom\"]'),(5638642,1410159,5,'director',NULL,NULL),(5638642,3620967,6,'writer','writer',NULL),(5638642,8072788,7,'writer','novel',NULL),(5638642,147080,8,'producer','producer',NULL),(5638642,392020,9,'producer','producer',NULL),(5639446,1298270,10,'composer',NULL,NULL),(5639446,5052065,1,'actor',NULL,'[\"Jonathan\",\"John\"]'),(5639446,4025229,2,'actress',NULL,'[\"Elena\"]'),(5639446,165101,3,'actress',NULL,'[\"Dr. Mina Nariman\"]'),(5639446,93589,4,'actor',NULL,'[\"Ross Craine\"]'),(5639446,1369715,5,'director',NULL,NULL),(5639446,2154927,6,'writer',NULL,NULL),(5639446,3226031,7,'writer',NULL,NULL),(5639446,1159655,8,'producer','producer',NULL),(5639446,3264795,9,'producer','producer',NULL),(5649108,1016966,10,'producer','producer',NULL),(5649108,4972453,1,'actress',NULL,'[\"Amanda\"]'),(5649108,5896355,2,'actress',NULL,'[\"Lily\"]'),(5649108,947338,3,'actor',NULL,'[\"Tim\"]'),(5649108,817027,4,'actor',NULL,'[\"Mark\"]'),(5649108,8083973,5,'director',NULL,NULL),(5649108,5653115,6,'producer','producer',NULL),(5649108,269542,7,'producer','producer',NULL),(5649108,711110,8,'producer','producer',NULL),(5649108,3644845,9,'producer','producer',NULL),(5649144,799139,10,'producer','producer',NULL),(5649144,7737419,1,'actress',NULL,'[\"Moonee\"]'),(5649144,8458915,2,'actress',NULL,'[\"Halley\"]'),(5649144,353,3,'actor',NULL,'[\"Bobby\"]'),(5649144,8912882,4,'actor',NULL,'[\"Scooty\"]'),(5649144,48918,5,'director',NULL,NULL),(5649144,2022341,6,'writer','written by',NULL),(5649144,157966,7,'producer','producer',NULL),(5649144,5653115,8,'producer','producer',NULL),(5649144,3644845,9,'producer','producer',NULL),(5651952,1136,1,'actor',NULL,'[\"Davenport Lear\"]'),(5651952,1309,2,'actor',NULL,'[\"Glenn Lear\"]'),(5651952,276,3,'actor',NULL,'[\"Tom Cornwall\"]'),(5651952,1425528,4,'actress',NULL,'[\"Regan Lear\"]'),(5651952,78762,5,'director',NULL,NULL),(5651952,646401,6,'producer','producer',NULL),(5651952,651366,7,'composer',NULL,NULL),(5651952,2770527,8,'editor',NULL,NULL),(5651952,1806923,9,'production_designer',NULL,NULL),(5657412,2840794,1,'self',NULL,'[\"Self\"]'),(5657412,520188,2,'self',NULL,'[\"Self\"]'),(5657412,528975,3,'self',NULL,'[\"Self\"]'),(5657412,1417725,4,'self',NULL,'[\"Self\"]'),(5657412,1772091,5,'director',NULL,NULL),(5657412,2409941,6,'producer','producer',NULL),(5657412,697014,7,'self',NULL,'[\"Self\"]'),(5657412,1733243,8,'self',NULL,'[\"Self\"]'),(5657412,1036221,9,'self',NULL,'[\"Self\"]'),(5657846,582111,10,'producer','producer',NULL),(5657846,2071,1,'actor',NULL,'[\"Brad\"]'),(5657846,242,2,'actor',NULL,'[\"Dusty\"]'),(5657846,154,3,'actor',NULL,'[\"Kurt\"]'),(5657846,1475,4,'actor',NULL,'[\"Don\"]'),(5657846,1890845,5,'director',NULL,NULL),(5657846,1898234,6,'writer','written by',NULL),(5657846,122602,7,'writer','based on characters created by',NULL),(5657846,376260,8,'producer','producer',NULL),(5657846,570912,9,'producer','producer',NULL),(5662932,760046,10,'composer',NULL,NULL),(5662932,1596350,1,'actor',NULL,'[\"Ramanna (Raman)\"]'),(5662932,5817249,2,'actor',NULL,'[\"Raghavan (Raghav)\"]'),(5662932,8179407,3,'actress',NULL,'[\"Simmy\"]'),(5662932,2535507,4,'actor',NULL,'[\"Loan Shark\"]'),(5662932,440604,5,'director',NULL,NULL),(5662932,3035236,6,'writer',NULL,NULL),(5662932,2134474,7,'producer','producer',NULL),(5662932,2985299,8,'producer','producer',NULL),(5662932,3939,9,'producer','producer',NULL),(5664684,691,10,'writer','original screenplay',NULL),(5664684,551908,1,'actress',NULL,'[\"Prudy Pingleton\"]'),(5664684,1737,2,'actor',NULL,'[\"Wilbur Turnblad\"]'),(5664684,4874651,3,'actress',NULL,'[\"Amber Von Tussle\"]'),(5664684,155693,4,'actress',NULL,'[\"Velma Von Tussle\"]'),(5664684,502497,5,'director',NULL,NULL),(5664684,1541136,6,'director',NULL,NULL),(5664684,1213,7,'writer','teleplay by',NULL),(5664684,1764916,8,'writer','book by',NULL),(5664684,576070,9,'writer','book by',NULL),(5665452,756211,10,'producer','producer',NULL),(5665452,607185,1,'actress',NULL,'[\"Marie\"]'),(5665452,5049,2,'actress',NULL,'[\"Rose Chipley\"]'),(5665452,2552034,3,'actress',NULL,'[\"Tally Petersen\"]'),(5665452,642145,4,'actor',NULL,'[\"Bob Garrity\"]'),(5665452,9675249,5,'writer','written by',NULL),(5665452,3374655,6,'producer','producer',NULL),(5665452,1209773,7,'producer','producer',NULL),(5665452,353012,8,'producer','producer',NULL),(5665452,3074201,9,'producer','producer',NULL),(5666304,998606,10,'editor',NULL,NULL),(5666304,1555340,1,'actress',NULL,'[\"Alessandra\"]'),(5666304,2002649,2,'actor',NULL,'[\"Massetto\"]'),(5666304,2177528,3,'actress',NULL,'[\"Sister Ginevra\"]'),(5666304,2201555,4,'actress',NULL,'[\"Fernanda\"]'),(5666304,1337885,5,'director',NULL,NULL),(5666304,90504,6,'writer','based on \"The Decameron\" by',NULL),(5666304,1989592,7,'producer','producer',NULL),(5666304,2475118,8,'composer',NULL,NULL),(5666304,1765623,9,'cinematographer','director of photography',NULL),(5675620,628120,10,'actress',NULL,'[\"Sarah Lieberman\"]'),(5675620,1256532,1,'actor',NULL,'[\"Frank Castle\"]'),(5675620,2362244,2,'actress',NULL,'[\"Dinah Madani\"]'),(5675620,1602660,3,'actor',NULL,'[\"Billy Russo\"]'),(5675620,2773505,4,'actor',NULL,'[\"Curtis Hoyle\"]'),(5675620,1208415,5,'writer','created by',NULL),(5675620,609114,6,'actor',NULL,'[\"David Lieberman\"]'),(5675620,2779018,7,'actress',NULL,'[\"Krista Dumont\"]'),(5675620,1577637,8,'actor',NULL,'[\"John Pilgrim\"]'),(5675620,7939956,9,'actress',NULL,'[\"Amy Bendix\",\"Rachel\"]'),(5687334,2691134,10,'editor',NULL,NULL),(5687334,308039,1,'actor',NULL,'[\"Jean-Luc Godard\"]'),(5687334,5237479,2,'actress',NULL,'[\"Anne Wiazemsky\"]'),(5687334,67367,3,'actress',NULL,'[\"Rosier\",\"Bamban\'s wife\"]'),(5687334,503919,4,'actor',NULL,'[\"Bamban\",\"Godard\'s friend\"]'),(5687334,371890,5,'director',NULL,NULL),(5687334,926723,6,'writer','adapted from the novel \"Un an après\" by',NULL),(5687334,5117075,7,'producer','producer',NULL),(5687334,3176551,8,'producer','producer',NULL),(5687334,771526,9,'cinematographer',NULL,NULL),(5688932,1845,10,'producer','producer',NULL),(5688932,3147751,1,'actor',NULL,'[\"Cassius Green\"]'),(5688932,1935086,2,'actress',NULL,'[\"Detroit\"]'),(5688932,1854664,3,'actor',NULL,'[\"Salvador\"]'),(5688932,1165044,4,'actor',NULL,'[\"Mr. _______\"]'),(5688932,1108556,5,'director',NULL,NULL),(5688932,1341146,6,'producer','producer',NULL),(5688932,5064943,7,'producer','producer',NULL),(5688932,2229798,8,'producer','producer',NULL),(5688932,1391438,9,'producer','producer',NULL),(5688996,1629321,10,'cinematographer','director of photography',NULL),(5688996,9912940,1,'actor',NULL,'[\"Personal Story\"]'),(5688996,9912941,2,'actor',NULL,'[\"Personal Story\"]'),(5688996,9912942,3,'actor',NULL,'[\"Personal Story\"]'),(5688996,9823370,4,'actor',NULL,'[\"Personal Story\"]'),(5688996,2574897,5,'director',NULL,NULL),(5688996,1510486,6,'producer','producer',NULL),(5688996,1774,7,'producer','producer',NULL),(5688996,2880194,8,'producer','producer',NULL),(5688996,489059,9,'composer',NULL,NULL),(5690360,792061,10,'producer','producer',NULL),(5690360,1428821,1,'actress',NULL,'[\"Wren\"]'),(5690360,5065920,2,'actress',NULL,'[\"Hallie\"]'),(5690360,3596959,3,'actress',NULL,'[\"Chloe\"]'),(5690360,2399383,4,'actress',NULL,'[\"Katie\"]'),(5690360,1234893,5,'director',NULL,NULL),(5690360,83547,6,'writer','written by',NULL),(5690360,6881486,7,'writer','based on a character by',NULL),(5690360,1329482,8,'producer','producer',NULL),(5690360,1159733,9,'producer','producer',NULL),(5690810,193501,10,'producer','producer',NULL),(5690810,5397459,1,'actress',NULL,'[\"Ophelia\"]'),(5690810,6731603,2,'actress',NULL,'[\"Young Ophelia\"]'),(5690810,9058955,3,'actor',NULL,'[\"Young Laertes\"]'),(5690810,662511,4,'actor',NULL,'[\"King Hamlet\"]'),(5690810,2113122,5,'director',NULL,NULL),(5690810,155069,6,'writer','screenplay',NULL),(5690810,8120239,7,'writer','novel',NULL),(5690810,636,8,'writer','play',NULL),(5690810,90394,9,'producer','producer',NULL),(5691670,4354653,10,'composer',NULL,NULL),(5691670,1940449,1,'actor',NULL,'[\"Sam\"]'),(5691670,2142336,2,'actress',NULL,'[\"Sarah\"]'),(5691670,333410,3,'actor',NULL,'[\"Bar Buddy\"]'),(5691670,5555747,4,'actress',NULL,'[\"Millicent Sevence\"]'),(5691670,1379002,5,'director',NULL,NULL),(5691670,70454,6,'producer','producer',NULL),(5691670,6894,7,'producer','producer',NULL),(5691670,1532846,8,'producer','producer',NULL),(5691670,1602270,9,'producer','producer',NULL),(5695764,2359097,1,'actress',NULL,'[\"Niloofar\"]'),(5695764,608214,2,'actor',NULL,'[\"Farhad\"]'),(5695764,3442970,3,'actor',NULL,'[\"Soheil\"]'),(5695764,2769372,4,'actress',NULL,'[\"Soudabeh\"]'),(5695764,994258,5,'director',NULL,NULL),(5695764,9215920,6,'composer',NULL,NULL),(5695764,45916,7,'cinematographer',NULL,NULL),(5695764,4325491,8,'editor',NULL,NULL),(5695764,7451938,9,'production_designer',NULL,NULL),(5697078,1940913,10,'production_designer',NULL,NULL),(5697078,680210,1,'actress',NULL,'[\"Serena\"]'),(5697078,1634823,2,'actress',NULL,'[\"Caroline\"]'),(5697078,4716731,3,'actress',NULL,'[\"Ellen\"]'),(5697078,8123837,4,'actor',NULL,'[\"Ethan\"]'),(5697078,3898553,5,'director',NULL,NULL),(5697078,7533256,6,'producer','producer',NULL),(5697078,2414,7,'composer',NULL,NULL),(5697078,2859347,8,'cinematographer',NULL,NULL),(5697078,1839456,9,'editor',NULL,NULL),(5697572,271479,10,'producer','producer',NULL),(5697572,179479,1,'actor',NULL,'[\"Bustopher Jones\"]'),(5697572,1132,2,'actress',NULL,'[\"Old Deuteronomy\"]'),(5697572,3716653,3,'actor',NULL,'[\"Rum Tum Tugger\"]'),(5697572,252961,4,'actor',NULL,'[\"Macavity\"]'),(5697572,393799,5,'director',NULL,NULL),(5697572,355822,6,'writer','screenplay by',NULL),(5697572,515908,7,'writer','based on the stage musical \"Cats\"',NULL),(5697572,253672,8,'writer','based on the poems poetry collection \"Old Possum\'s Books of Practical Cats\" by',NULL),(5697572,79677,9,'producer','producer',NULL),(5698320,1134771,10,'cinematographer',NULL,NULL),(5698320,2539953,1,'actress',NULL,'[\"Ines\"]'),(5698320,1200692,2,'actress',NULL,'[\"Emilie\"]'),(5698320,1648,3,'actress',NULL,'[\"Marina\"]'),(5698320,1097,4,'actor',NULL,'[\"Mr. Daren\"]'),(5698320,2272926,5,'director',NULL,NULL),(5698320,5244086,6,'producer','producer',NULL),(5698320,2214994,7,'producer','producer',NULL),(5698320,2112559,8,'producer','producer',NULL),(5698320,1202937,9,'composer',NULL,NULL),(5700672,2185967,10,'editor',NULL,NULL),(5700672,1508003,1,'actor',NULL,'[\"Seok-woo\"]'),(5700672,1869756,2,'actress',NULL,'[\"Seong-kyeong\"]'),(5700672,3011350,3,'actor',NULL,'[\"Sang-hwa\"]'),(5700672,1246724,4,'actress',NULL,'[\"Soo-an\"]'),(5700672,3613566,5,'director',NULL,NULL),(5700672,6711056,6,'writer',NULL,NULL),(5700672,4830845,7,'producer','producer',NULL),(5700672,1276066,8,'composer',NULL,NULL),(5700672,2893410,9,'cinematographer',NULL,NULL),(5709236,248595,10,'editor',NULL,NULL),(5709236,531808,1,'actress',NULL,'[\"Karin Parke\"]'),(5709236,3849670,2,'actress',NULL,'[\"Blue Colson\"]'),(5709236,938950,3,'actor',NULL,'[\"Shaun Li\"]'),(5709236,439642,4,'actor',NULL,'[\"Rasmus Sjolberg\"]'),(5709236,369949,5,'director',NULL,NULL),(5709236,111765,6,'writer','writer',NULL),(5709236,1700029,7,'producer','producer',NULL),(5709236,681040,8,'composer',NULL,NULL),(5709236,834012,9,'cinematographer',NULL,NULL),(5709536,3410237,1,'actress',NULL,'[\"Alethea Arnaquq-Baril\"]'),(5709536,8880852,2,'actor',NULL,'[\"Aaju Peter\"]'),(5709536,1442929,3,'producer','producer',NULL),(5709536,3022040,4,'composer',NULL,NULL),(5709536,4409238,5,'cinematographer',NULL,NULL),(5709536,2557842,6,'editor',NULL,NULL),(5710514,1298270,10,'composer',NULL,NULL),(5710514,1491,1,'actress',NULL,'[\"Ruth\"]'),(5710514,1953775,2,'actor',NULL,'[\"News Radio\"]'),(5710514,382644,3,'actress',NULL,'[\"Mrs. Hamble\"]'),(5710514,2861119,4,'actor',NULL,'[\"Mrs. Hamble\'s Son\"]'),(5710514,86301,5,'director',NULL,NULL),(5710514,4638146,6,'producer','producer',NULL),(5710514,1965828,7,'producer','producer',NULL),(5710514,3346403,8,'producer','producer',NULL),(5710514,1507013,9,'producer','producer',NULL),(5715874,1639516,10,'production_designer',NULL,NULL),(5715874,8467096,1,'actor',NULL,'[\"Dr. Larry Banks\"]'),(5715874,9300501,2,'actor',NULL,'[\"Ed Thompson (Hospital Director)\"]'),(5715874,131966,3,'actor',NULL,'[\"Matthew Williams\"]'),(5715874,3864163,4,'actress',NULL,'[\"Kim Murphy\"]'),(5715874,487166,5,'director',NULL,NULL),(5715874,3328207,6,'writer','written by',NULL),(5715874,347384,7,'producer','producer',NULL),(5715874,1531046,8,'cinematographer',NULL,NULL),(5715874,561430,9,'editor',NULL,NULL),(5719700,1225856,10,'editor',NULL,NULL),(5719700,702,1,'actress',NULL,'[\"Alice\"]'),(5719700,790688,2,'actor',NULL,'[\"Austen\"]'),(5719700,298,3,'actress',NULL,'[\"Lillian\"]'),(5719700,3754278,4,'actor',NULL,'[\"Harry\"]'),(5719700,583654,5,'director',NULL,NULL),(5719700,583600,6,'producer','producer',NULL),(5719700,7152630,7,'producer','producer',NULL),(5719700,2201,8,'composer',NULL,NULL),(5719700,5678,9,'cinematographer','director of photography',NULL),(5719748,787834,10,'producer','producer',NULL),(5719748,553,1,'actor',NULL,'[\"Nels Coxman\"]'),(5719748,368,2,'actress',NULL,'[\"Grace Coxman\"]'),(5719748,6183410,3,'actor',NULL,'[\"Kyle Coxman\"]'),(5719748,1002664,4,'actor',NULL,'[\"Speedo\"]'),(5719748,596407,5,'director',NULL,NULL),(5719748,2737558,6,'writer','screenplay by',NULL),(5719748,7344,7,'writer','based on the movie \'Kraftidioten\' written by',NULL),(5719748,321521,8,'producer','producer',NULL),(5719748,1626598,9,'producer','producer',NULL),(5723286,1957540,10,'composer',NULL,NULL),(5723286,342029,1,'actor',NULL,'[\"Wheelman\"]'),(5723286,2965079,2,'actress',NULL,'[\"Katie\"]'),(5723286,226813,3,'actor',NULL,'[\"Clayton\"]'),(5723286,924154,4,'actor',NULL,'[\"Motherfucker\"]'),(5723286,1423438,5,'director',NULL,NULL),(5723286,138620,6,'producer','producer',NULL),(5723286,2597264,7,'producer','producer',NULL),(5723286,1217426,8,'producer','producer',NULL),(5723286,1298270,9,'composer',NULL,NULL),(5723416,3779934,10,'composer',NULL,NULL),(5723416,675110,1,'actress',NULL,'[\"Gillian Laroux\"]'),(5723416,53443,2,'actor',NULL,'[\"Alex Grant\"]'),(5723416,3582727,3,'actress',NULL,'[\"Jessica Johnson\",\"Jessica 2.0\"]'),(5723416,1542545,4,'actor',NULL,'[\"Dr. Kuresh\"]'),(5723416,2623609,5,'director',NULL,NULL),(5723416,187793,6,'producer','producer',NULL),(5723416,4763678,7,'producer','producer',NULL),(5723416,2242829,8,'producer','executive producer',NULL),(5723416,3778080,9,'composer',NULL,NULL),(5726616,742651,10,'producer','producer',NULL),(5726616,3154303,1,'actor',NULL,'[\"Elio\"]'),(5726616,2309517,2,'actor',NULL,'[\"Oliver\"]'),(5726616,836121,3,'actor',NULL,'[\"Mr. Perlman\"]'),(5726616,142972,4,'actress',NULL,'[\"Annella Perlman\"]'),(5726616,345174,5,'director',NULL,NULL),(5726616,412465,6,'writer','screenplay by',NULL),(5726616,6056595,7,'writer','based on the novel by',NULL),(5726616,1899688,8,'producer','producer',NULL),(5726616,1150125,9,'producer','producer',NULL),(5727208,748784,10,'producer','producer',NULL),(5727208,1191,1,'actor',NULL,'[\"Howard Ratner\"]'),(5727208,9681752,2,'actress',NULL,'[\"Julia De Fiore\"]'),(5727208,579953,3,'actress',NULL,'[\"Dinah Ratner\"]'),(5727208,11243726,4,'actor',NULL,'[\"Wounded Miner\"]'),(5727208,1509478,5,'director',NULL,NULL),(5727208,1343394,6,'director',NULL,NULL),(5727208,2563482,7,'writer','written by',NULL),(5727208,2205351,8,'producer','producer',NULL),(5727208,4791912,9,'producer','producer',NULL),(5727282,252528,10,'composer',NULL,NULL),(5727282,345695,1,'actor',NULL,'[\"Björn Borg\"]'),(5727282,479471,2,'actor',NULL,'[\"John McEnroe\"]'),(5727282,1745,3,'actor',NULL,'[\"Lennart Bergelin\"]'),(5727282,637259,4,'actress',NULL,'[\"Mariana Simionescu\"]'),(5727282,2178458,5,'director',NULL,NULL),(5727282,2585445,6,'writer','written by',NULL),(5727282,3775833,7,'producer','producer',NULL),(5727282,1372450,8,'producer','producer',NULL),(5727282,1370485,9,'composer',NULL,NULL),(5737862,6018565,10,'composer',NULL,NULL),(5737862,2809577,1,'actress',NULL,'[\"Dana\"]'),(5737862,243231,2,'actor',NULL,'[\"Ben\"]'),(5737862,5362984,3,'actress',NULL,'[\"Ali\"]'),(5737862,1806,4,'actor',NULL,'[\"Alan\"]'),(5737862,3521871,5,'director',NULL,NULL),(5737862,3831085,6,'writer','story by',NULL),(5737862,1447175,7,'writer','story by',NULL),(5737862,4149902,8,'producer','producer',NULL),(5737862,698133,9,'producer','producer',NULL),(5739786,8152287,10,'actor',NULL,NULL),(5739786,94655,1,'actress',NULL,'[\"Juana Pereira\"]'),(5739786,948253,2,'actor',NULL,'[\"Don Diego\"]'),(5739786,52486,3,'actor',NULL,'[\"Abuelito Julian Pereira\"]'),(5739786,8152286,4,'actor',NULL,NULL),(5739786,120554,5,'actress',NULL,NULL),(5739786,8133513,6,'actor',NULL,NULL),(5739786,8158369,7,'actor',NULL,NULL),(5739786,1296233,8,'actor',NULL,'[\"Doctor\"]'),(5739786,8158370,9,'actress',NULL,NULL),(5740806,8703955,10,'producer','producer',NULL),(5740806,4273749,1,'actor',NULL,'[\"Jason\"]'),(5740806,5359536,2,'actress',NULL,'[\"Alice\"]'),(5740806,1199888,3,'actress',NULL,'[\"Dakota\"]'),(5740806,5471736,4,'actor',NULL,'[\"Benny\"]'),(5740806,2035204,5,'director',NULL,NULL),(5740806,2566244,6,'writer','based on a novel by',NULL),(5740806,2610501,7,'producer','producer',NULL),(5740806,1101381,8,'producer','producer',NULL),(5740806,166194,9,'producer','producer',NULL),(5742374,1034914,10,'producer','producer',NULL),(5742374,1618,1,'actor',NULL,'[\"Joe\"]'),(5742374,731286,2,'actress',NULL,'[\"Joe\'s Mother\"]'),(5742374,6191250,3,'actress',NULL,'[\"Nina Votto\"]'),(5742374,231283,4,'actor',NULL,'[\"John McCleary\"]'),(5742374,708903,5,'director',NULL,NULL),(5742374,24718,6,'writer','based on the book by',NULL),(5742374,2928126,7,'producer','producer',NULL),(5742374,146434,8,'producer','producer',NULL),(5742374,639780,9,'producer','producer',NULL),(5752360,513799,10,'cinematographer',NULL,NULL),(5752360,1579753,1,'actress',NULL,'[\"Julia\"]'),(5752360,1527905,2,'actor',NULL,'[\"Kevin\"]'),(5752360,2788156,3,'actress',NULL,'[\"Abby\"]'),(5752360,5198446,4,'actress',NULL,'[\"Zoe\"]'),(5752360,107366,5,'writer','written by',NULL),(5752360,3478361,6,'writer','based on the book by',NULL),(5752360,7152630,7,'producer','producer',NULL),(5752360,1988698,8,'producer','producer',NULL),(5752360,1132022,9,'composer',NULL,NULL),(5774060,867768,10,'producer','producer',NULL),(5774060,829576,1,'actress',NULL,'[\"Norah Price\"]'),(5774060,1993,2,'actor',NULL,'[\"Captain Lucien\"]'),(5774060,6974206,3,'actor',NULL,'[\"Rodrigo Nagenda\"]'),(5774060,2554352,4,'actor',NULL,'[\"Paul Abel\"]'),(5774060,1827931,5,'director',NULL,NULL),(5774060,3929259,6,'writer','screenplay by',NULL),(5774060,3092414,7,'writer','screenplay by',NULL),(5774060,1858656,8,'producer','producer',NULL),(5774060,4109247,9,'producer','producer',NULL),(5776858,862664,10,'editor',NULL,NULL),(5776858,3043279,1,'actress',NULL,'[\"Alma\"]'),(5776858,358,2,'actor',NULL,'[\"Reynolds Woodcock\"]'),(5776858,544334,3,'actress',NULL,'[\"Cyril\"]'),(5776858,4914253,4,'actress',NULL,'[\"London Housekeeper\"]'),(5776858,759,5,'director',NULL,NULL),(5776858,2691892,6,'producer','producer',NULL),(5776858,526917,7,'producer','producer',NULL),(5776858,783280,8,'producer','producer',NULL),(5776858,339351,9,'composer',NULL,NULL),(5783956,2259350,10,'producer','producer',NULL),(5783956,2796745,1,'actor',NULL,'[\"Noah\"]'),(5783956,1275259,2,'actress',NULL,'[\"Avery\"]'),(5783956,2645189,3,'actress',NULL,'[\"Carrie\"]'),(5783956,4392718,4,'actor',NULL,'[\"Max\"]'),(5783956,1847738,5,'director',NULL,NULL),(5783956,4465847,6,'writer','written by',NULL),(5783956,3082630,7,'producer','producer',NULL),(5783956,629334,8,'producer','producer',NULL),(5783956,1259504,9,'producer','producer',NULL),(5786040,8197336,10,'self',NULL,'[\"Self\"]'),(5786040,8197332,1,'self',NULL,'[\"Self\"]'),(5786040,8197333,2,'self',NULL,'[\"Self\"]'),(5786040,582853,3,'self',NULL,'[\"Self\"]'),(5786040,1215937,4,'self',NULL,'[\"Self\"]'),(5786040,78465,5,'director',NULL,NULL),(5786040,283936,6,'producer','producer',NULL),(5786040,327729,7,'producer','producer',NULL),(5786040,953421,8,'editor',NULL,NULL),(5786040,8197335,9,'self',NULL,'[\"Self\"]'),(5789664,5063015,10,'director',NULL,NULL),(5789664,3576960,1,'actress',NULL,'[\"Novella \'Selfi\' - Margo\"]'),(5789664,8200605,2,'actor',NULL,'[\"Novella \'Selfi\' - Aleksandr\"]'),(5789664,468271,3,'actor',NULL,'[\"Novella \'Selfi\' - Rieltor\"]'),(5789664,8200606,4,'actor',NULL,'[\"Novella \'Selfi\' - Muzhchina v tualete\"]'),(5789664,2294083,5,'director',NULL,NULL),(5789664,5167056,6,'director',NULL,NULL),(5789664,3437705,7,'director',NULL,NULL),(5789664,514852,8,'director',NULL,NULL),(5789664,623392,9,'director',NULL,NULL),(5791732,1449314,1,'actor',NULL,'[\"Karlheinz\"]'),(5791732,4888294,2,'actor',NULL,'[\"Herbert\"]'),(5791732,3233596,3,'actor',NULL,'[\"Jim Bob\"]'),(5791732,7768268,4,'actress',NULL,'[\"Sophia\"]'),(5791732,3232494,5,'director',NULL,NULL),(5791884,8337382,1,'actress',NULL,'[\"Marijana\"]'),(5791884,2418386,2,'actor',NULL,'[\"Zoran\"]'),(5791884,1122136,3,'actress',NULL,'[\"Vera\"]'),(5791884,121519,4,'actor',NULL,'[\"Lazo\"]'),(5791884,4080010,5,'director',NULL,NULL),(5791884,432935,6,'producer','producer',NULL),(5791884,1625646,7,'composer',NULL,NULL),(5791884,5622611,8,'cinematographer',NULL,NULL),(5791884,5493122,9,'editor',NULL,NULL),(5795086,2012439,10,'cinematographer',NULL,NULL),(5795086,3860305,1,'actress',NULL,'[\"Jill LeBeau\"]'),(5795086,2368789,2,'actress',NULL,'[\"Heather Anderson\"]'),(5795086,158626,3,'actor',NULL,'[\"Detective Edward Ahn\"]'),(5795086,2336966,4,'actress',NULL,'[\"Tracy\"]'),(5795086,1369800,5,'director',NULL,NULL),(5795086,1545197,6,'producer','producer',NULL),(5795086,2072976,7,'producer','producer',NULL),(5795086,1532846,8,'producer','producer',NULL),(5795086,1548770,9,'composer',NULL,NULL),(5814534,1124448,10,'writer','screenplay by',NULL),(5814534,3014031,1,'actress',NULL,'[\"Wendy\"]'),(5814534,11227603,2,'actor',NULL,'[\"Young Walter\",\"Pigeon Voice\"]'),(5814534,5143033,3,'actress',NULL,'[\"Unitee\"]'),(5814534,5337106,4,'actor',NULL,'[\"Yakuza #1\"]'),(5814534,2939767,5,'director',NULL,NULL),(5814534,702863,6,'director',NULL,NULL),(5814534,1909378,7,'writer','inspired by: the animated short film \"Pigeon: Impossible\" by',NULL),(5814534,1248357,8,'writer','screen story by',NULL),(5814534,178589,9,'writer','screenplay by',NULL),(5816374,1830380,1,'actress',NULL,'[\"Anna\"]'),(5816374,1269723,2,'actor',NULL,'[\"Ben\"]'),(5816374,35488,3,'actor',NULL,'[\"Dave\"]'),(5816374,261435,4,'actress',NULL,'[\"Shirley\"]'),(5816374,2315446,5,'producer','producer',NULL),(5816374,5860537,6,'composer',NULL,NULL),(5816374,1629321,7,'cinematographer',NULL,NULL),(5816374,2997472,8,'editor',NULL,NULL),(5816374,1981047,9,'production_designer',NULL,NULL),(5816682,452319,10,'producer','producer',NULL),(5816682,1132,1,'actress',NULL,'[\"Queen Victoria\"]'),(5816682,3170495,2,'actor',NULL,'[\"Abdul Karim\"]'),(5816682,683116,3,'actor',NULL,'[\"Sir Henry Ponsonby\"]'),(5816682,412850,4,'actress',NULL,'[\"Bertie, Prince of Wales\"]'),(5816682,1241,5,'director',NULL,NULL),(5816682,355822,6,'writer','screenplay by',NULL),(5816682,3952658,7,'writer','based on the book by',NULL),(5816682,79677,8,'producer','producer',NULL),(5816682,271479,9,'producer','producer',NULL),(5818818,919443,10,'editor',NULL,NULL),(5818818,3325981,1,'actress',NULL,'[\"Nora\"]'),(5818818,1918184,2,'actor',NULL,'[\"Hans\"]'),(5818818,105937,3,'actress',NULL,'[\"Theresa\"]'),(5818818,116409,4,'actress',NULL,'[\"Vroni\"]'),(5818818,1273344,5,'director',NULL,NULL),(5818818,387694,6,'producer','producer',NULL),(5818818,778111,7,'producer','producer',NULL),(5818818,283749,8,'composer',NULL,NULL),(5818818,442324,9,'cinematographer',NULL,NULL),(5822564,2425842,10,'composer',NULL,NULL),(5822564,565250,1,'actress',NULL,'[\"Kathy Brennan\"]'),(5822564,1840504,2,'actress',NULL,'[\"Ruby O\'Carroll\"]'),(5822564,5253,3,'actress',NULL,'[\"Claire Walsh\"]'),(5822564,1727304,4,'actor',NULL,'[\"Gabriel O\'Malley\"]'),(5822564,75696,5,'director',NULL,NULL),(5822564,8231176,6,'writer','based on the comic book series created for DC Vertigo by',NULL),(5822564,7873490,7,'writer','based on the comic book series created for DC Vertigo by',NULL),(5822564,6894,8,'producer','producer',NULL),(5822564,899553,9,'producer','producer',NULL),(5825186,12908457,10,'producer','planner',NULL),(5825186,1453891,1,'actor',NULL,'[\"Hajime Saito\"]'),(5825186,1591151,2,'actor',NULL,'[\"Additional Voices\"]'),(5825186,1364905,3,'actor',NULL,'[\"Heisuke Todo\"]'),(5825186,1480625,4,'actor',NULL,'[\"Additional Voices\"]'),(5825186,945717,5,'director',NULL,NULL),(5825186,12908458,6,'writer','screenplay',NULL),(5825186,5500358,7,'producer','producer',NULL),(5825186,8151551,8,'producer','producer',NULL),(5825186,2934722,9,'producer','producer',NULL),(5825380,503429,10,'editor',NULL,NULL),(5825380,5493,1,'actor',NULL,'[\"Mickey\"]'),(5825380,1017334,2,'actress',NULL,'[\"Carolina\"]'),(5825380,1478447,3,'actor',NULL,'[\"Boardwalk Vendor\"]'),(5825380,701,4,'actress',NULL,'[\"Ginny\"]'),(5825380,95,5,'director',NULL,NULL),(5825380,36963,6,'producer','producer',NULL),(5825380,36981,7,'producer','producer',NULL),(5825380,2304996,8,'producer','producer',NULL),(5825380,5886,9,'cinematographer',NULL,NULL),(5826432,3645308,10,'producer','producer',NULL),(5826432,3630119,1,'actor',NULL,'[\"Zurich\"]'),(5826432,4108791,2,'actor',NULL,'[\"Frank\"]'),(5826432,5125871,3,'actor',NULL,'[\"Square\"]'),(5826432,5569,4,'actress',NULL,'[\"Professor Hughes\"]'),(5826432,2618764,5,'director',NULL,NULL),(5826432,2304786,6,'writer',NULL,NULL),(5826432,19858,7,'producer','producer',NULL),(5826432,4132650,8,'producer','producer',NULL),(5826432,399737,9,'producer','producer',NULL),(5829040,2341944,10,'composer',NULL,NULL),(5829040,1051221,1,'actress',NULL,'[\"Emily\"]'),(5829040,1057,2,'actress',NULL,'[\"Kate\"]'),(5829040,3008608,3,'actress',NULL,'[\"Melanie\"]'),(5829040,788340,4,'actress',NULL,'[\"Jamie\"]'),(5829040,2370148,5,'director',NULL,NULL),(5829040,944856,6,'writer','written by',NULL),(5829040,5653115,7,'producer','producer',NULL),(5829040,3644845,8,'producer','producer',NULL),(5829040,1133158,9,'producer','producer',NULL),(5833412,4107666,1,'actress',NULL,'[\"Amanda\"]'),(5833412,5852657,2,'actress',NULL,'[\"Catherine\"]'),(5833412,8240767,3,'actress',NULL,'[\"Rebecca\"]'),(5833412,5275027,4,'actor',NULL,'[\"Man\"]'),(5833412,3091740,5,'director',NULL,NULL),(5833412,3092267,6,'writer','co-writer',NULL),(5833412,4796186,7,'cinematographer',NULL,NULL),(5833412,8240775,8,'production_designer',NULL,NULL),(5833846,501845,10,'actor',NULL,'[\"Olivier De La Marche\"]'),(5833846,1817887,1,'actress',NULL,'[\"Maria von Burgund\"]'),(5833846,1753704,2,'actor',NULL,'[\"Maximilian\"]'),(5833846,2162346,3,'actress',NULL,'[\"Margareta von York\"]'),(5833846,767,4,'actor',NULL,'[\"König Ludwig XI.\"]'),(5833846,7559701,5,'actress',NULL,'[\"Johanna von Hallewyn\"]'),(5833846,2652437,6,'actor',NULL,'[\"Wolfgang von Polheim\"]'),(5833846,1577101,7,'actor',NULL,'[\"Philippe de Commynes\"]'),(5833846,856500,8,'actress',NULL,'[\"Charlotte von Savoyen\"]'),(5833846,672422,9,'actor',NULL,'[\"Guillaume Hugonet\"]'),(5834262,553498,10,'composer',NULL,NULL),(5834262,149,1,'actress',NULL,'[\"The Nurse\"]'),(5834262,1154749,2,'actress',NULL,'[\"Nice\"]'),(5834262,1176985,3,'actor',NULL,'[\"Everest\"]'),(5834262,1250791,4,'actor',NULL,'[\"Waikiki\"]'),(5834262,1510800,5,'director',NULL,NULL),(5834262,4051169,6,'producer','producer',NULL),(5834262,180508,7,'producer','producer',NULL),(5834262,686887,8,'producer','producer',NULL),(5834262,2132113,9,'producer','producer',NULL),(5834660,482955,10,'editor',NULL,NULL),(5834660,3693538,1,'actress',NULL,'[\"Tara Webster\"]'),(5834660,5603176,2,'actor',NULL,'[\"Student George\"]'),(5834660,8378612,3,'actress',NULL,'[\"Student Emerald\"]'),(5834660,3014075,4,'actor',NULL,'[\"Student Max\"]'),(5834660,907835,5,'director',NULL,NULL),(5834660,1787259,6,'writer',NULL,NULL),(5834660,1860791,7,'producer','executive producer',NULL),(5834660,386595,8,'composer',NULL,NULL),(5834660,569845,9,'cinematographer',NULL,NULL),(5847768,9778386,10,'production_designer',NULL,NULL),(5847768,2759746,1,'actor',NULL,'[\"Yehia\"]'),(5847768,563740,2,'actress',NULL,'[\"Tante Hannan\"]'),(5847768,49235,3,'actor',NULL,'[\"Lutfi\"]'),(5847768,252677,4,'actress',NULL,'[\"Lina\"]'),(5847768,2275259,5,'director',NULL,NULL),(5847768,2331079,6,'producer','co-producer',NULL),(5847768,1324397,7,'producer','producer',NULL),(5847768,6382462,8,'composer',NULL,NULL),(5847768,3105232,9,'editor',NULL,NULL),(5848272,1192875,10,'producer','producer',NULL),(5848272,604,1,'actor',NULL,'[\"Ralph\"]'),(5848272,798971,2,'actress',NULL,'[\"Vanellope\"]'),(5848272,2933757,3,'actress',NULL,'[\"Shank\"]'),(5848272,378245,4,'actress',NULL,'[\"Yesss\"]'),(5848272,1601882,5,'director',NULL,NULL),(5848272,601781,6,'director',NULL,NULL),(5848272,962596,7,'writer','screenplay by',NULL),(5848272,714114,8,'writer','story by',NULL),(5848272,2888684,9,'writer','story by',NULL),(5859238,6556385,10,'producer','producer',NULL),(5859238,1765,1,'actor',NULL,'[\"Lucky\"]'),(5859238,186,2,'actor',NULL,'[\"Howard\"]'),(5859238,515296,3,'actor',NULL,'[\"Bobby Lawrence\"]'),(5859238,893,4,'actor',NULL,'[\"Dr. Christian Kneedler\"]'),(5859238,2253,5,'director',NULL,NULL),(5859238,1437606,6,'writer','screenplay',NULL),(5859238,1403599,7,'writer','screenplay',NULL),(5859238,66985,8,'producer','producer',NULL),(5859238,719491,9,'producer','producer',NULL),(5861756,4801206,10,'producer','producer',NULL),(5861756,13683,1,'actress',NULL,'[\"Constanza\"]'),(5861756,3967771,2,'actress',NULL,'[\"Beth\"]'),(5861756,8267733,3,'actress',NULL,'[\"Soledad\"]'),(5861756,4339325,4,'actor',NULL,'[\"Tony\"]'),(5861756,2345218,5,'director',NULL,NULL),(5861756,2370090,6,'writer','written by',NULL),(5861756,12201908,7,'writer','with',NULL),(5861756,1698390,8,'producer','producer',NULL),(5861756,3951410,9,'producer','producer',NULL),(5862312,744485,10,'cinematographer','director of photography',NULL),(5862312,8292247,1,'actress',NULL,'[\"Verónica\"]'),(5862312,2971548,2,'actress',NULL,'[\"Lucía\"]'),(5862312,8224582,3,'actress',NULL,'[\"Irene\"]'),(5862312,8292248,4,'actor',NULL,'[\"Antoñito\"]'),(5862312,687042,5,'director',NULL,NULL),(5862312,3281140,6,'writer','screenplay',NULL),(5862312,3678448,7,'writer','story editor',NULL),(5862312,492038,8,'producer','executive producer',NULL),(5862312,1079001,9,'composer',NULL,NULL),(5865326,837386,10,'producer','producer',NULL),(5865326,198,1,'actor',NULL,'[\"Jürgen Mossack\"]'),(5865326,104,2,'actor',NULL,'[\"Ramón Fonseca\"]'),(5865326,2973791,3,'actor',NULL,'[\"Hominid #1\"]'),(5865326,11046604,4,'actor',NULL,'[\"Hominid #2\"]'),(5865326,1752,5,'director',NULL,NULL),(5865326,7328716,6,'writer','book \"Secrecy World\"',NULL),(5865326,1994243,7,'writer','screenplay',NULL),(5865326,2302134,8,'producer','producer',NULL),(5865326,414423,9,'producer','producer',NULL),(5867800,8273416,10,'cinematographer',NULL,NULL),(5867800,9195417,1,'actress',NULL,'[\"Aruvi\"]'),(5867800,9557586,2,'actress',NULL,'[\"Shakil Waqaab\"]'),(5867800,9557587,3,'actor',NULL,'[\"Peter\"]'),(5867800,9557596,4,'actor',NULL,'[\"Aruvi\'s Brother Karuna\"]'),(5867800,8273413,5,'director',NULL,NULL),(5867800,4272786,6,'producer','producer',NULL),(5867800,3909481,7,'producer','producer',NULL),(5867800,7314443,8,'composer',NULL,NULL),(5867800,8273415,9,'composer',NULL,NULL),(5868326,5744125,1,'writer','created by',NULL),(5878326,1128216,1,'actor',NULL,'[\"Rick Whitehead\"]'),(5878326,4844269,2,'actor',NULL,'[\"Carlos\"]'),(5878326,3987336,3,'actress',NULL,'[\"Elizabeth Howard Grace\"]'),(5878326,3597657,4,'actor',NULL,'[\"Santa Christ\"]'),(5878326,2680357,5,'director',NULL,NULL),(5878326,1121649,6,'writer','screenplay by',NULL),(5878326,3894041,7,'composer',NULL,NULL),(5878326,4698410,8,'cinematographer','director of photography',NULL),(5878326,1799101,9,'production_designer',NULL,NULL),(5884052,846969,10,'writer','based on \"Pokémon\" created by',NULL),(5884052,5351,1,'actor',NULL,'[\"Detective Pikachu\"]'),(5884052,6819854,2,'actor',NULL,'[\"Tim Goodman\"]'),(5884052,1105980,3,'actress',NULL,'[\"Lucy Stevens\"]'),(5884052,631490,4,'actor',NULL,'[\"Howard Clifford\"]'),(5884052,1224299,5,'director',NULL,NULL),(5884052,2021624,6,'writer','screenplay by',NULL),(5884052,1658012,7,'writer','screenplay by',NULL),(5884052,2081046,8,'writer','screenplay by',NULL),(5884052,2270979,9,'writer','story by',NULL),(5886046,4980516,10,'composer',NULL,NULL),(5886046,5347988,1,'actress',NULL,'[\"Zoey Davis\"]'),(5886046,2383250,2,'actor',NULL,'[\"Ben Miller\"]'),(5886046,1337350,3,'actor',NULL,'[\"Jason Walker\"]'),(5886046,479527,4,'actor',NULL,'[\"Mike Nolan\"]'),(5886046,733263,5,'director',NULL,NULL),(5886046,776885,6,'writer','screenplay by',NULL),(5886046,3481322,7,'writer','screenplay by',NULL),(5886046,1506459,8,'producer','producer',NULL),(5886046,605775,9,'producer','producer',NULL),(5898034,8824422,10,'producer','producer',NULL),(5898034,220635,1,'actress',NULL,'[\"Draculaura\"]'),(5898034,606422,2,'actress',NULL,'[\"Frankie Stein\",\"Venus McFlytrap\"]'),(5898034,1086483,3,'actress',NULL,'[\"Clawdeen Wolf\",\"Cleo De Nile\"]'),(5898034,5000693,4,'actress',NULL,'[\"Lagoona Blue\",\"Reporter\"]'),(5898034,8302351,5,'director',NULL,NULL),(5898034,8330829,6,'director',NULL,NULL),(5898034,266255,7,'director','supervising director',NULL),(5898034,7040899,8,'writer',NULL,NULL),(5898034,4886346,9,'writer',NULL,NULL),(5908566,1659906,10,'editor',NULL,NULL),(5908566,628671,1,'actress',NULL,'[\"Lucia\"]'),(5908566,512054,2,'actress',NULL,'[\"Fernanda\"]'),(5908566,273297,3,'actress',NULL,'[\"Viviana\"]'),(5908566,1881231,4,'actress',NULL,'[\"Gloria\"]'),(5908566,1347151,5,'director',NULL,NULL),(5908566,960495,6,'writer',NULL,NULL),(5908566,2535350,7,'writer',NULL,NULL),(5908566,2539645,8,'producer','producer',NULL),(5908566,2606986,9,'cinematographer',NULL,NULL),(5914996,9664001,10,'producer','producer',NULL),(5914996,9311912,1,'actress',NULL,'[\"Human\"]'),(5914996,1365209,2,'actress',NULL,'[\"Think\"]'),(5914996,6369187,3,'actor',NULL,'[\"Warbeast\"]'),(5914996,6984560,4,'actor',NULL,'[\"Alei\"]'),(5914996,3966426,5,'director',NULL,NULL),(5914996,8317425,6,'writer','based on the novel by',NULL),(5914996,2438224,7,'writer',NULL,NULL),(5914996,2286030,8,'producer','producer',NULL),(5914996,496556,9,'producer','producer',NULL),(5918104,11558834,10,'production_designer',NULL,NULL),(5918104,134244,1,'actor',NULL,'[\"Tarzan Brixton\"]'),(5918104,3751979,2,'actor',NULL,'[\"Donovan \'Dada\' Davidson\"]'),(5918104,13480832,3,'actress',NULL,'[\"Peta-Gaye\"]'),(5918104,155,4,'actress',NULL,'[\"Loretta Brixton\"]'),(5918104,1059540,5,'producer','producer',NULL),(5918104,3550828,6,'producer','producer',NULL),(5918104,2536617,7,'cinematographer',NULL,NULL),(5918104,3692,8,'editor',NULL,NULL),(5918104,1242501,9,'editor',NULL,NULL),(5923962,1092981,10,'composer',NULL,NULL),(5923962,1328775,1,'actor',NULL,'[\"Masaru Katô\"]'),(5923962,4289479,2,'actress',NULL,'[\"Anzu Yamasaki\"]'),(5923962,1002746,3,'actor',NULL,'[\"Jôichirô Nishi\"]'),(5923962,2977461,4,'actress',NULL,'[\"Reika\"]'),(5923962,2405489,5,'director',NULL,NULL),(5923962,766226,6,'director',NULL,NULL),(5923962,645740,7,'writer','manga',NULL),(5923962,3648497,8,'writer','screenplay',NULL),(5923962,8579661,9,'producer','producer',NULL),(5929750,882927,10,'producer','producer',NULL),(5929750,161,1,'actress',NULL,'[\"Beatriz\"]'),(5929750,1475,2,'actor',NULL,'[\"Doug\"]'),(5929750,110168,3,'actress',NULL,'[\"Kathy\"]'),(5929750,243231,4,'actor',NULL,'[\"Alex\"]'),(5929750,37708,5,'director',NULL,NULL),(5929750,925234,6,'writer','written by',NULL),(5929750,317943,7,'producer','producer',NULL),(5929750,3065267,8,'producer','producer',NULL),(5929750,463025,9,'producer','producer',NULL),(5936578,8442822,10,'composer',NULL,NULL),(5936578,1139455,1,'actress',NULL,'[\"Joni\"]'),(5936578,3201429,2,'actress',NULL,'[\"Allie\"]'),(5936578,412404,3,'actress',NULL,'[\"Danny\"]'),(5936578,8344966,4,'actor',NULL,'[\"Andrew\"]'),(5936578,3884348,5,'director',NULL,NULL),(5936578,8337326,6,'writer','co-writer',NULL),(5936578,362844,7,'producer','producer',NULL),(5936578,3101955,8,'producer','producer',NULL),(5936578,8442821,9,'composer',NULL,NULL),(5941692,613870,10,'cinematographer',NULL,NULL),(5941692,1752221,1,'actress',NULL,'[\"Gloria\"]'),(5941692,215281,2,'actor',NULL,'[\"Makeup Supervisor\"]'),(5941692,10441873,3,'actress',NULL,'[\"Fashion Designer\"]'),(5941692,661087,4,'actress',NULL,'[\"MX Customs Officer\"]'),(5941692,362566,5,'director',NULL,NULL),(5941692,3722546,6,'writer','screenplay by',NULL),(5941692,190427,7,'producer','producer',NULL),(5941692,592746,8,'producer','producer',NULL),(5941692,373588,9,'composer',NULL,NULL),(5952138,2127991,10,'composer',NULL,NULL),(5952138,3920288,1,'actress',NULL,'[\"Merricat Blackwood\"]'),(5952138,1275259,2,'actress',NULL,'[\"Constance Blackwood\"]'),(5952138,417,3,'actor',NULL,'[\"Uncle Julian\"]'),(5952138,1659221,4,'actor',NULL,'[\"Charles Blackwood\"]'),(5952138,4945419,5,'director',NULL,NULL),(5952138,472600,6,'writer','screenplay by',NULL),(5952138,414047,7,'writer','based on the novel by',NULL),(5952138,1510486,8,'producer','producer',NULL),(5952138,593060,9,'producer','producer',NULL),(5954304,8549649,10,'writer','additional material',NULL),(5954304,6937255,1,'actor',NULL,'[\"Mykyta\"]'),(5954304,13862694,2,'actress',NULL,'[\"Rocky\"]'),(5954304,29048,3,'actor',NULL,'[\"Eddie\"]'),(5954304,685396,4,'actress',NULL,'[\"Witch\"]'),(5954304,3701958,5,'director',NULL,NULL),(5954304,382655,6,'writer','re-writes',NULL),(5954304,8351641,7,'writer','writer',NULL),(5954304,382614,8,'writer','re-writes',NULL),(5954304,76998,9,'writer','additional material',NULL),(5960374,9896403,10,'producer','producer',NULL),(5960374,204,1,'actress',NULL,'[\"Celeste\"]'),(5960374,179,2,'actor',NULL,'[\"The Manager\"]'),(5960374,5237479,3,'actress',NULL,'[\"Eleanor\"]'),(5960374,383,4,'actress',NULL,'[\"Josie the Publicist\"]'),(5960374,1227232,5,'director',NULL,NULL),(5960374,2178754,6,'writer','story by',NULL),(5960374,1486759,7,'producer','producer',NULL),(5960374,3065267,8,'producer','producer',NULL),(5960374,491054,9,'producer','producer',NULL),(5962210,2807321,10,'producer','producer',NULL),(5962210,2201555,1,'actress',NULL,'[\"Ingrid Thorburn\"]'),(5962210,647634,2,'actress',NULL,'[\"Taylor Sloane\"]'),(5962210,6578009,3,'actor',NULL,'[\"Dan Pinto\"]'),(5962210,751518,4,'actor',NULL,'[\"Ezra O\'Keefe\"]'),(5962210,818485,5,'director',NULL,NULL),(5962210,2434358,6,'writer','written by',NULL),(5962210,1510486,7,'producer','producer',NULL),(5962210,7624934,8,'producer','producer',NULL),(5962210,6338857,9,'producer','producer',NULL),(5971474,217896,10,'producer','producer',NULL),(5971474,1782991,1,'actress',NULL,'[\"Ariel\"]'),(5971474,5999355,2,'actor',NULL,'[\"Eric\"]'),(5971474,565250,3,'actress',NULL,'[\"Ursula\"]'),(5971474,849,4,'actor',NULL,'[\"King Triton\"]'),(5971474,551128,5,'director',NULL,NULL),(5971474,1341735,6,'writer','screenplay by',NULL),(5971474,26153,7,'writer','based on the story by',NULL),(5971474,615780,8,'writer','based on Disney\'s \"The Little Mermaid\" animation screenplay by',NULL),(5971474,166256,9,'writer','based on Disney\'s \"The Little Mermaid\" animation screenplay by',NULL),(5973032,2181392,10,'editor',NULL,NULL),(5973032,5657152,1,'actress',NULL,'[\"Kyôko Suzuki\"]'),(5973032,1353095,2,'actress',NULL,'[\"Noriko\"]'),(5973032,1024345,3,'actress',NULL,'[\"One Hundred\"]'),(5973032,4132435,4,'actress',NULL,'[\"Watanabe\"]'),(5973032,814469,5,'director',NULL,NULL),(5973032,5200483,6,'producer','producer',NULL),(5973032,5368418,7,'producer','producer',NULL),(5973032,6705698,8,'composer',NULL,NULL),(5973032,8530984,9,'cinematographer',NULL,NULL),(5973626,4170,10,'writer','character created by: Batman',NULL),(5973626,1842,1,'actor',NULL,'[\"Bruce Wayne\",\"Batman\"]'),(5973626,911431,2,'actor',NULL,'[\"Dick Grayson\",\"Robin\"]'),(5973626,628325,3,'actress',NULL,'[\"Catwoman\"]'),(5973626,74797,4,'actor',NULL,'[\"Announcer\",\"The Joker\"]'),(5973626,3262328,5,'director',NULL,NULL),(5973626,2398585,6,'writer','screenplay by',NULL),(5973626,1131680,7,'writer','screenplay by',NULL),(5973626,236546,8,'writer','based on the 1966 Batman series created by',NULL),(5973626,783913,9,'writer','television series',NULL),(5974388,5277357,10,'editor',NULL,NULL),(5974388,6562625,1,'actress',NULL,'[\"Leila Bakhr\"]'),(5974388,8369604,2,'actress',NULL,'[\"Salma\"]'),(5974388,8369605,3,'actress',NULL,'[\"Nour\"]'),(5974388,3218796,4,'actor',NULL,'[\"Ziad Hamdi\"]'),(5974388,4092213,5,'director',NULL,NULL),(5974388,1729095,6,'producer','producer',NULL),(5974388,8930454,7,'composer',NULL,NULL),(5974388,2286337,8,'cinematographer',NULL,NULL),(5974388,725325,9,'editor',NULL,NULL),(5980638,2365527,10,'production_designer',NULL,NULL),(5980638,4766571,1,'actor',NULL,'[\"Roger\"]'),(5980638,1881922,2,'actress',NULL,'[\"Kim\"]'),(5980638,1373275,3,'actress',NULL,'[\"Jan\"]'),(5980638,1161787,4,'actor',NULL,'[\"George McShane\"]'),(5980638,4774823,5,'director',NULL,NULL),(5980638,4420559,6,'producer','producer',NULL),(5980638,9086041,7,'composer',NULL,NULL),(5980638,3234631,8,'cinematographer',NULL,NULL),(5980638,901113,9,'editor',NULL,NULL),(5980798,102515,10,'cinematographer',NULL,NULL),(5980798,8644854,1,'actress',NULL,'[\"Félicité\"]'),(5980798,8644855,2,'actor',NULL,'[\"Samo\"]'),(5980798,8644856,3,'actor',NULL,'[\"Tabu\"]'),(5980798,8644857,4,'actress',NULL,'[\"Hortense\"]'),(5980798,327120,5,'director',NULL,NULL),(5980798,522151,6,'writer','collaboration',NULL),(5980798,956969,7,'writer','collaboration',NULL),(5980798,231661,8,'producer','producer',NULL),(5980798,1488202,9,'producer','producer',NULL),(5989218,1954909,10,'cinematographer','director of photography',NULL),(5989218,1209966,1,'actor',NULL,'[\"Will\"]'),(5989218,1312575,2,'actress',NULL,'[\"Abby\"]'),(5989218,906,3,'actress',NULL,'[\"Dr. Cait Morris\"]'),(5989218,1597,4,'actor',NULL,'[\"Irwin Dempsey\"]'),(5989218,1557594,5,'director',NULL,NULL),(5989218,2125212,6,'producer','producer',NULL),(5989218,324041,7,'producer','producer',NULL),(5989218,753083,8,'producer','producer',NULL),(5989218,989434,9,'composer',NULL,NULL),(5990342,1549338,10,'editor',NULL,NULL),(5990342,1790970,1,'actress',NULL,'[\"Jessica James\"]'),(5990342,1483369,2,'actor',NULL,'[\"Boone\"]'),(5990342,3147751,3,'actor',NULL,'[\"Damon\"]'),(5990342,3644706,4,'actress',NULL,'[\"Tasha\"]'),(5990342,1475479,5,'director',NULL,NULL),(5990342,164290,6,'producer','producer',NULL),(5990342,2801211,7,'producer','producer',NULL),(5990342,1548770,8,'composer',NULL,NULL),(5990342,1386280,9,'cinematographer',NULL,NULL),(5997830,4543356,1,'actress',NULL,'[\"Denise Minard\"]'),(5997830,4170739,2,'actress',NULL,'[\"Judith\"]'),(5997830,4579224,3,'actor',NULL,'[\"Margaret\"]'),(5997830,3308602,4,'composer',NULL,NULL),(5997830,6855102,5,'cinematographer',NULL,NULL),(5997830,2433868,6,'editor',NULL,NULL),(5997830,5915331,7,'production_designer',NULL,NULL),(5997830,5941801,8,'production_designer',NULL,NULL),(6000478,319673,10,'editor',NULL,NULL),(6000478,243,1,'actor',NULL,'[\"Roman J. Israel, Esq.\"]'),(6000478,268199,2,'actor',NULL,'[\"George Pierce\"]'),(6000478,252238,3,'actress',NULL,'[\"Maya Alston\"]'),(6000478,336171,4,'actress',NULL,'[\"Vernita Wells\"]'),(6000478,319659,5,'director',NULL,NULL),(6000478,85542,6,'producer','producer',NULL),(6000478,289048,7,'producer','producer',NULL),(6000478,6133,8,'composer',NULL,NULL),(6000478,5696,9,'cinematographer','director of photography',NULL),(6002232,238475,1,'actress',NULL,'[\"Miriam Besson\"]'),(6002232,1616970,2,'actor',NULL,'[\"Antoine Besson\"]'),(6002232,8390021,3,'actor',NULL,'[\"Julien Besson\"]'),(6002232,5509170,4,'actress',NULL,'[\"Joséphine Besson\"]'),(6002232,499488,5,'director',NULL,NULL),(6002232,308009,6,'producer','producer',NULL),(6002232,243818,7,'cinematographer',NULL,NULL),(6002232,2498855,8,'editor',NULL,NULL),(6002232,1738945,9,'production_designer',NULL,NULL),(6003368,725072,10,'cinematographer','director of photography',NULL),(6003368,6099602,1,'actor',NULL,'[\"Greg Heffley\"]'),(6003368,224,2,'actress',NULL,'[\"Susan Heffley\"]'),(6003368,779866,3,'actor',NULL,'[\"Frank Heffley\"]'),(6003368,3340182,4,'actor',NULL,'[\"Rodrick Heffley\"]'),(6003368,101047,5,'director',NULL,NULL),(6003368,2732149,6,'writer','screenplay by',NULL),(6003368,1749221,7,'producer','producer',NULL),(6003368,800922,8,'producer','producer',NULL),(6003368,790481,9,'composer',NULL,NULL),(6010628,2475118,10,'composer',NULL,NULL),(6010628,191,1,'actor',NULL,'[\"Cole\"]'),(6010628,2244205,2,'actress',NULL,'[\"Zoe\"]'),(6010628,3772243,3,'actor',NULL,'[\"Ash\"]'),(6010628,429069,4,'actress',NULL,'[\"Emma\"]'),(6010628,2035886,5,'director',NULL,NULL),(6010628,338575,6,'writer','screenplay by',NULL),(6010628,313593,7,'producer','producer',NULL),(6010628,2165590,8,'producer','producer',NULL),(6010628,1016966,9,'producer','producer',NULL),(6029106,8418516,10,'production_designer','additional production designer',NULL),(6029106,6653217,1,'actress',NULL,'[\"Audrey\"]'),(6029106,8409572,2,'actress',NULL,'[\"Lillian\"]'),(6029106,8409571,3,'actor',NULL,'[\"Fiona\"]'),(6029106,6533699,4,'actor',NULL,'[\"Bradley\"]'),(6029106,3351104,5,'director',NULL,NULL),(6029106,5665988,6,'writer','written by',NULL),(6029106,3466636,7,'producer','producer',NULL),(6029106,4487458,8,'cinematographer',NULL,NULL),(6029106,5071163,9,'production_designer',NULL,NULL),(6048922,960773,10,'editor',NULL,NULL),(6048922,158,1,'actor',NULL,'[\"Captain Krause\"]'),(6048922,223,2,'actress',NULL,'[\"Evelyn\"]'),(6048922,334318,3,'actor',NULL,'[\"Charlie Cole\"]'),(6048922,5090093,4,'actor',NULL,'[\"Lt. Nystrom\"]'),(6048922,773689,5,'director',NULL,NULL),(6048922,286163,6,'writer','based on the novel \"The Good Shepherd\" by',NULL),(6048922,324556,7,'producer','producer',NULL),(6048922,624201,8,'composer',NULL,NULL),(6048922,426224,9,'cinematographer','director of photography',NULL),(6048930,307776,10,'producer','producer',NULL),(6048930,5541,1,'actor',NULL,'[\"Rob Anderson\"]'),(6048930,356021,2,'actress',NULL,'[\"Megan\"]'),(6048930,371660,3,'actor',NULL,'[\"Reginald Swope\"]'),(6048930,2267820,4,'actor',NULL,'[\"Benny\"]'),(6048930,1639277,5,'director',NULL,NULL),(6048930,23315,6,'writer','screenplay',NULL),(6048930,461830,7,'writer','based on an original story by',NULL),(6048930,461835,8,'writer','based on an original story by',NULL),(6048930,1326627,9,'writer','screenplay',NULL),(6053438,1215565,10,'producer','producer',NULL),(6053438,160,1,'actor',NULL,'[\"Rev. Ernst Toller\"]'),(6053438,1086543,2,'actress',NULL,'[\"Mary Mensana\"]'),(6053438,147825,3,'actor',NULL,'[\"Rev. Joel Jeffers\"]'),(6053438,384751,4,'actress',NULL,'[\"Esther\"]'),(6053438,1707,5,'director',NULL,NULL),(6053438,82784,6,'producer','producer',NULL),(6053438,9175660,7,'producer','producer',NULL),(6053438,357861,8,'producer','producer',NULL),(6053438,3065267,9,'producer','producer',NULL),(6053440,1087791,10,'editor',NULL,NULL),(6053440,1342938,1,'actress',NULL,'[\"911 Operator\"]'),(6053440,6570557,2,'actress',NULL,'[\"Cyd Loughlin\"]'),(6053440,7540679,3,'actor',NULL,'[\"Soccer Coach\"]'),(6053440,1199547,4,'actor',NULL,'[\"Cyd\'s Dad\"]'),(6053440,3265508,5,'director',NULL,NULL),(6053440,5173968,6,'producer','producer',NULL),(6053440,5762924,7,'producer','line producer',NULL),(6053440,4051162,8,'composer',NULL,NULL),(6053440,1387977,9,'cinematographer','director of photography',NULL),(6061074,3258927,10,'cinematographer',NULL,NULL),(6061074,4235684,1,'actress',NULL,'[\"Mo\"]'),(6061074,5584344,2,'actor',NULL,'[\"Darrel\"]'),(6061074,231458,3,'actor',NULL,'[\"Coach Castile\"]'),(6061074,7851611,4,'actor',NULL,'[\"Omari\"]'),(6061074,3229507,5,'director',NULL,NULL),(6061074,3265287,6,'producer','producer',NULL),(6061074,2828636,7,'producer','producer',NULL),(6061074,4105822,8,'producer','producer',NULL),(6061074,2792551,9,'composer',NULL,NULL),(6062774,5908010,10,'composer',NULL,NULL),(6062774,9304766,1,'actress',NULL,'[\"Rambo\"]'),(6062774,11187715,2,'actor',NULL,'[\"Lobo\"]'),(6062774,9304769,3,'actress',NULL,'[\"Leidi\"]'),(6062774,7288990,4,'actress',NULL,'[\"Sueca\"]'),(6062774,1622258,5,'director',NULL,NULL),(6062774,2063526,6,'writer','screenplay',NULL),(6062774,258459,7,'producer','producer',NULL),(6062774,9451140,8,'producer','producer',NULL),(6062774,5874027,9,'producer','producer',NULL),(6063050,2355322,10,'cinematographer',NULL,NULL),(6063050,378245,1,'actress',NULL,'[\"Melinda\"]'),(6063050,72713,2,'actor',NULL,'[\"Robert\"]'),(6063050,2981170,3,'actress',NULL,'[\"Diana\"]'),(6063050,4564885,4,'actress',NULL,'[\"June\"]'),(6063050,1347153,5,'director',NULL,NULL),(6063050,1129570,6,'producer','producer',NULL),(6063050,3884187,7,'producer','producer',NULL),(6063050,1725195,8,'producer','producer',NULL),(6063050,501999,9,'composer',NULL,NULL),(6065988,842258,1,'self',NULL,'[\"Self\"]'),(6065988,6651847,2,'self',NULL,'[\"Self\"]'),(6065988,7074419,3,'self',NULL,'[\"Self\"]'),(6065988,1910975,4,'self',NULL,'[\"Self\"]'),(6065988,356917,5,'director',NULL,NULL),(6065988,8441593,6,'writer','story',NULL),(6065988,2422110,7,'composer',NULL,NULL),(6065988,2244288,8,'cinematographer',NULL,NULL),(6065988,2728924,9,'editor',NULL,NULL),(6069126,152728,10,'editor',NULL,NULL),(6069126,2605345,1,'actress',NULL,'[\"Tara\"]'),(6069126,1002641,2,'actor',NULL,'[\"Mark\"]'),(6069126,53384,3,'actress',NULL,'[\"Alison\"]'),(6069126,445715,4,'actress',NULL,'[\"Anna\"]'),(6069126,767289,5,'director',NULL,NULL),(6069126,373456,6,'producer','producer',NULL),(6069126,3641913,7,'composer',NULL,NULL),(6069126,8776380,8,'composer','composer',NULL),(6069126,1124802,9,'cinematographer',NULL,NULL),(6074542,9022931,10,'actress',NULL,'[\"Dead Woman\"]'),(6074542,949923,1,'actor',NULL,'[\"Gore\"]'),(6074542,8997361,2,'actress',NULL,'[\"Diane\"]'),(6074542,4812322,3,'actor',NULL,'[\"Berenger\"]'),(6074542,6794954,4,'actress',NULL,'[\"Eva\"]'),(6074542,6021232,5,'director',NULL,NULL),(6074542,1788067,6,'cinematographer','director of photography',NULL),(6074542,7107842,7,'actor',NULL,'[\"Thin Man\"]'),(6074542,5903887,8,'actor',NULL,'[\"Ferguson\",\"Guard\"]'),(6074542,8999685,9,'actor',NULL,'[\"Ignacio\"]'),(6078866,9447832,1,'actress',NULL,'[\"Soni\"]'),(6078866,6155343,2,'actress',NULL,'[\"Kalpana\"]'),(6078866,6366399,3,'actor',NULL,'[\"Naveen\"]'),(6078866,7477071,4,'actor',NULL,'[\"Sandeep\"]'),(6078866,6405127,5,'director',NULL,NULL),(6078866,6212335,6,'writer',NULL,NULL),(6078866,6405128,7,'producer','producer',NULL),(6078866,4391696,8,'cinematographer',NULL,NULL),(6078866,7058755,9,'production_designer',NULL,NULL),(6081670,5348485,10,'composer',NULL,NULL),(6081670,365317,1,'actor',NULL,'[\"Philip\"]'),(6081670,35605,2,'actor',NULL,'[\"Maurice\"]'),(6081670,5580482,3,'actor',NULL,'[\"Michael\'s Father\"]'),(6081670,5522886,4,'actor',NULL,'[\"Michael\'s Uncle\"]'),(6081670,1478358,5,'director',NULL,NULL),(6081670,2222628,6,'producer','producer',NULL),(6081670,2448068,7,'producer','producer',NULL),(6081670,429134,8,'producer','producer',NULL),(6081670,4234703,9,'producer','producer',NULL),(6095090,3742959,10,'composer','composer',NULL),(6095090,5030374,1,'actress',NULL,'[\"Nastya\"]'),(6095090,5088181,2,'actor',NULL,'[\"Vanya\"]'),(6095090,3539193,3,'actress',NULL,'[\"Liza\"]'),(6095090,3052061,4,'actor',NULL,'[\"Barin\"]'),(6095090,5276483,5,'director',NULL,NULL),(6095090,1912585,6,'producer','producer',NULL),(6095090,7902509,7,'producer','producer',NULL),(6095090,7138199,8,'producer','producer',NULL),(6095090,246984,9,'composer',NULL,NULL),(6096194,5317107,10,'production_designer',NULL,NULL),(6096194,68187,1,'actress',NULL,'[\"Millie\"]'),(6096194,5422737,2,'actress',NULL,'[\"Emma\"]'),(6096194,1480,3,'actress',NULL,'[\"Grandma Mildred\"]'),(6096194,2241512,4,'actor',NULL,'[\"Charlie\"]'),(6096194,2710958,5,'director',NULL,NULL),(6096194,4838214,6,'producer','producer',NULL),(6096194,1277945,7,'composer',NULL,NULL),(6096194,4343168,8,'cinematographer',NULL,NULL),(6096194,3287583,9,'editor',NULL,NULL),(6105098,2004404,10,'producer','producer',NULL),(6105098,2255973,1,'actor',NULL,'[\"Simba\"]'),(6105098,461498,2,'actress',NULL,'[\"Nala\"]'),(6105098,736622,3,'actor',NULL,'[\"Pumbaa\"]'),(6105098,252230,4,'actor',NULL,'[\"Scar\"]'),(6105098,269463,5,'director',NULL,NULL),(6105098,622288,6,'writer','screenplay by',NULL),(6105098,575293,7,'writer','based on \"The Lion King\" screenplay by',NULL),(6105098,731271,8,'writer','based on \"The Lion King\" screenplay by',NULL),(6105098,941314,9,'writer','based on \"The Lion King\" screenplay by',NULL),(6107548,164276,10,'cinematographer',NULL,NULL),(6107548,668,1,'actress',NULL,'[\"Katherine Newbury\"]'),(6107548,1411676,2,'actress',NULL,'[\"Molly Patel\"]'),(6107548,1475,3,'actor',NULL,'[\"Walter Lovell\"]'),(6107548,199215,4,'actor',NULL,'[\"Charlie Fain\"]'),(6107548,304091,5,'director',NULL,NULL),(6107548,2249752,6,'producer','producer',NULL),(6107548,1878845,7,'producer','producer',NULL),(6107548,458782,8,'producer','producer',NULL),(6107548,53427,9,'composer',NULL,NULL),(6108090,3032664,10,'composer',NULL,NULL),(6108090,7621668,1,'actress',NULL,'[\"Insia\"]'),(6108090,2016476,2,'actress',NULL,'[\"Najma\"]'),(6108090,2366974,3,'actor',NULL,'[\"Farookh\"]'),(6108090,451148,4,'actor',NULL,'[\"Shakti Kumar\"]'),(6108090,2378914,5,'director',NULL,NULL),(6108090,5328755,6,'producer','producer',NULL),(6108090,1444479,7,'producer','producer',NULL),(6108090,6130629,8,'producer','producer',NULL),(6108090,14038074,9,'composer','composer',NULL),(6108178,378593,10,'composer',NULL,NULL),(6108178,1838,1,'actress',NULL,'[\"Ronit Krushka\"]'),(6108178,1046097,2,'actress',NULL,'[\"Esti Kuperman\"]'),(6108178,5273,3,'actor',NULL,'[\"Dovid Kuperman\"]'),(6108178,504320,4,'actor',NULL,'[\"Rav Krushka\"]'),(6108178,133326,5,'director',NULL,NULL),(6108178,501947,6,'writer','written by',NULL),(6108178,4373281,7,'writer','based on the novel by',NULL),(6108178,347384,8,'producer','producer',NULL),(6108178,868872,9,'producer','producer',NULL),(6133130,921418,10,'editor',NULL,NULL),(6133130,1812656,1,'actor',NULL,'[\"William Moulton Marston\"]'),(6133130,356017,2,'actress',NULL,'[\"Elizabeth Marston\"]'),(6133130,2757333,3,'actress',NULL,'[\"Olive Byrne\"]'),(6133130,110168,4,'actress',NULL,'[\"Josette Frank\"]'),(6133130,1286340,5,'director',NULL,NULL),(6133130,1276349,6,'producer','producer',NULL),(6133130,714844,7,'producer','producer',NULL),(6133130,1995968,8,'composer',NULL,NULL),(6133130,2133093,9,'cinematographer','director of photography',NULL),(6133466,298181,10,'producer','producer',NULL),(6133466,5002057,1,'actor',NULL,'[\"Dmitri\"]'),(6133466,6280112,2,'actress',NULL,'[\"Nya\"]'),(6133466,4725341,3,'actor',NULL,'[\"Isaiah\"]'),(6133466,4996,4,'actor',NULL,'[\"Freddy\"]'),(6133466,2618764,5,'director',NULL,NULL),(6133466,218621,6,'writer','written by',NULL),(6133466,881,7,'producer','producer',NULL),(6133466,89658,8,'producer','producer',NULL),(6133466,286320,9,'producer','producer',NULL),(6139732,829152,10,'cinematographer','director of photography',NULL),(6139732,226,1,'actor',NULL,'[\"Genie\",\"Mariner\"]'),(6139732,4565815,2,'actor',NULL,'[\"Aladdin\"]'),(6139732,4305463,3,'actress',NULL,'[\"Jasmine\"]'),(6139732,3092471,4,'actor',NULL,'[\"Jafar\"]'),(6139732,5363,5,'director',NULL,NULL),(6139732,41864,6,'writer','screenplay by',NULL),(6139732,3043818,7,'producer','producer',NULL),(6139732,1469853,8,'producer','producer',NULL),(6139732,579678,9,'composer',NULL,NULL),(6140148,3235335,1,'actor',NULL,'[\"Gordie\"]'),(6140148,3654967,2,'actress',NULL,'[\"Robin\"]'),(6140148,3602711,3,'actor',NULL,'[\"Keaton\"]'),(6140148,1620930,4,'actor',NULL,'[\"Wayne\"]'),(6140148,4567963,5,'producer','producer',NULL),(6140148,5243330,6,'composer',NULL,NULL),(6140148,3774284,7,'cinematographer',NULL,NULL),(6140148,3468267,8,'editor',NULL,NULL),(6140148,8108856,9,'production_designer',NULL,NULL),(6141246,1888527,10,'composer',NULL,NULL),(6141246,428065,1,'actress',NULL,'[\"Amelia Wren\"]'),(6141246,1519666,2,'actor',NULL,'[\"James Glaisher\"]'),(6141246,2797744,3,'actor',NULL,'[\"John Trew\"]'),(6141246,1641,4,'actor',NULL,'[\"Pierre Rennes\"]'),(6141246,2197777,5,'director',NULL,NULL),(6141246,7914228,6,'writer','inspired by the book \'Falling Upwards\' by',NULL),(6141246,2113666,7,'writer','story by',NULL),(6141246,387674,8,'producer','producer',NULL),(6141246,509414,9,'producer','producer',NULL),(6142314,277730,10,'writer','character created by: Batman',NULL),(6142314,1842,1,'actor',NULL,'[\"Batman\",\"Bruce Wayne\"]'),(6142314,911431,2,'actor',NULL,'[\"Robin\",\"Dick Grayson\"]'),(6142314,638,3,'actor',NULL,'[\"Two-Face\",\"Harvey Dent\"]'),(6142314,628325,4,'actress',NULL,'[\"Catwoman\"]'),(6142314,3262328,5,'director',NULL,NULL),(6142314,2398585,6,'writer','written by',NULL),(6142314,1131680,7,'writer','written by',NULL),(6142314,236546,8,'writer','based on the 1966 Batman series created by',NULL),(6142314,4170,9,'writer','character created by: Batman',NULL),(6142496,1475594,10,'producer','producer',NULL),(6142496,3434305,1,'actress',NULL,'[\"Katie\"]'),(6142496,2002649,2,'actor',NULL,'[\"Seth\"]'),(6142496,9753992,3,'actress',NULL,'[\"Ella\"]'),(6142496,9753993,4,'actress',NULL,'[\"Ella\"]'),(6142496,2903680,5,'director',NULL,NULL),(6142496,1730221,6,'producer','producer',NULL),(6142496,1895871,7,'producer','producer',NULL),(6142496,2242817,8,'producer','producer',NULL),(6142496,2231934,9,'producer','producer',NULL),(6146586,412588,10,'producer','producer',NULL),(6146586,206,1,'actor',NULL,'[\"John Wick\"]'),(6146586,932,2,'actress',NULL,'[\"Sofia\"]'),(6146586,574534,3,'actor',NULL,'[\"Winston\"]'),(6146586,401,4,'actor',NULL,'[\"Bowery King\"]'),(6146586,821432,5,'director',NULL,NULL),(6146586,4401003,6,'writer','screenplay by',NULL),(6146586,8748334,7,'writer','screenplay by',NULL),(6146586,2384772,8,'writer','screenplay by',NULL),(6146586,9207,9,'writer','screenplay by',NULL),(6155172,8611957,1,'actress',NULL,'[\"Cleo\"]'),(6155172,211920,2,'actress',NULL,'[\"Sra. Sofía\"]'),(6155172,9948845,3,'actor',NULL,'[\"Toño\"]'),(6155172,9985727,4,'actor',NULL,'[\"Paco\"]'),(6155172,190859,5,'director',NULL,NULL),(6155172,2318256,6,'producer','producer',NULL),(6155172,2342288,7,'producer','producer',NULL),(6155172,2366329,8,'editor',NULL,NULL),(6155172,127429,9,'production_designer',NULL,NULL),(6160448,187018,10,'cinematographer','director of photography',NULL),(6160448,3485845,1,'actor',NULL,'[\"Jack\"]'),(6160448,1950086,2,'actress',NULL,'[\"Babette\"]'),(6160448,332,3,'actor',NULL,'[\"Murray\"]'),(6160448,14313990,4,'actress',NULL,'[\"College on the Hill\"]'),(6160448,876,5,'director',NULL,NULL),(6160448,1680347,6,'writer','based on the book by',NULL),(6160448,382268,7,'producer','producer',NULL),(6160448,3633993,8,'producer','producer',NULL),(6160448,384,9,'composer',NULL,NULL),(6162808,4380524,10,'editor',NULL,NULL),(6162808,1490183,1,'actor',NULL,'[\"The Engineer\"]'),(6162808,8405300,2,'actress',NULL,'[\"Kim\"]'),(6162808,4337810,3,'actor',NULL,'[\"Chris\"]'),(6162808,3225014,4,'actor',NULL,'[\"Thuy\"]'),(6162808,3614151,5,'director',NULL,NULL),(6162808,98842,6,'writer',NULL,NULL),(6162808,774744,7,'writer',NULL,NULL),(6162808,533583,8,'producer','producer',NULL),(6162808,1099162,9,'producer','producer',NULL),(6164698,3270271,1,'actress',NULL,'[\"Mika\"]'),(6164698,5322643,2,'actor',NULL,'[\"Tesfay\"]'),(6164698,8589104,3,'actress',NULL,'[\"Dafne\"]'),(6164698,6568133,4,'actress',NULL,'[\"Li\"]'),(6164698,481075,5,'producer','producer',NULL),(6164698,1281315,6,'producer','producer',NULL),(6164698,6475137,7,'composer',NULL,NULL),(6164698,3151817,8,'composer',NULL,NULL),(6164698,4815005,9,'cinematographer',NULL,NULL),(6169920,3102070,10,'producer','producer',NULL),(6169920,5506455,1,'actress',NULL,'[\"Mati\"]'),(6169920,720241,2,'actress',NULL,'[\"Mutter\"]'),(6169920,4276640,3,'actor',NULL,'[\"Vater\"]'),(6169920,9152292,4,'actress',NULL,'[\"Carla\"]'),(6169920,4982881,5,'director',NULL,NULL),(6169920,315430,6,'producer','producer',NULL),(6169920,321842,7,'producer','producer',NULL),(6169920,1207063,8,'producer','producer',NULL),(6169920,5505889,9,'producer','executive producer',NULL),(6182908,655053,10,'writer','based on the book \"Yeti Tracks\" by',NULL),(6182908,1475594,1,'actor',NULL,'[\"Migo\"]'),(6182908,179479,2,'actor',NULL,'[\"Percy\"]'),(6182908,3918035,3,'actress',NULL,'[\"Meechee\"]'),(6182908,996669,4,'actor',NULL,'[\"Stonekeeper\"]'),(6182908,456732,5,'director',NULL,NULL),(6182908,1134222,6,'director','co-director',NULL),(6182908,784771,7,'writer','screenplay by',NULL),(6182908,720135,8,'writer','screen story by',NULL),(6182908,275629,9,'writer','screen story by',NULL),(6185658,1043325,10,'writer','based on: the Barbie characters created by',NULL),(6185658,6949652,1,'actress',NULL,'[\"Barbie\"]'),(6185658,3703274,2,'actress',NULL,'[\"Teresa\",\"Countdown Clock\"]'),(6185658,1275101,3,'actress',NULL,'[\"Maia\",\"Renee\"]'),(6185658,229923,4,'actor',NULL,'[\"Cutie\",\"Video Game Narrator\"]'),(6185658,375876,5,'director',NULL,NULL),(6185658,2923,6,'director',NULL,NULL),(6185658,324713,7,'director','supervising director',NULL),(6185658,1039374,8,'writer','written by',NULL),(6185658,1765171,9,'writer','additional writing by',NULL),(6189022,5004893,10,'producer','producer',NULL),(6189022,124930,1,'actor',NULL,'[\"Mike Banning\"]'),(6189022,5520750,2,'actor',NULL,'[\"Travis Cole\"]'),(6189022,396812,3,'actor',NULL,'[\"Wade Jennings\"]'),(6189022,6875258,4,'actor',NULL,'[\"Bruno\"]'),(6189022,6846,5,'director',NULL,NULL),(6189022,436543,6,'writer','screenplay by',NULL),(6189022,3208946,7,'writer','screenplay by',NULL),(6189022,4950667,8,'writer','story by',NULL),(6189022,4951717,9,'writer','story by',NULL),(6194530,2895974,10,'editor',NULL,NULL),(6194530,8543451,1,'actress',NULL,'[\"Ava\"]'),(6194530,2662182,2,'actress',NULL,'[\"Maud\"]'),(6194530,8543452,3,'actor',NULL,'[\"Juan\"]'),(6194530,5256328,4,'actress',NULL,'[\"Jessica\"]'),(6194530,5674565,5,'director',NULL,NULL),(6194530,5243556,6,'writer','collaboration',NULL),(6194530,515201,7,'producer','producer',NULL),(6194530,3920683,8,'producer','executive producer',NULL),(6194530,3022040,9,'composer',NULL,NULL),(6197070,7872246,10,'producer','producer',NULL),(6197070,2489799,1,'actress',NULL,'[\"Corey\"]'),(6197070,1627768,2,'actor',NULL,'[\"Vascan\"]'),(6197070,259027,3,'actor',NULL,'[\"Lago\"]'),(6197070,1122053,4,'actress',NULL,'[\"Bald\"]'),(6197070,4475180,5,'director',NULL,NULL),(6197070,11592549,6,'director',NULL,NULL),(6197070,4475194,7,'director',NULL,NULL),(6197070,11592564,8,'writer','dialogue',NULL),(6197070,5278332,9,'producer','producer',NULL),(6204018,356310,10,'cinematographer',NULL,NULL),(6204018,22609,1,'actress',NULL,'[\"Ann Zacharias\"]'),(6204018,439642,2,'actor',NULL,'[\"Stikkan Andersson\"]'),(6204018,1717138,3,'actor',NULL,'[\"Ted Gärdestad\"]'),(6204018,8755930,4,'actress',NULL,'[\"Anni-Frid Lyngstad\"]'),(6204018,391502,5,'director',NULL,NULL),(6204018,286782,6,'producer','producer',NULL),(6204018,1597884,7,'producer','producer',NULL),(6204018,1081677,8,'composer',NULL,NULL),(6204018,1482406,9,'composer',NULL,NULL),(6205872,2397168,10,'producer','producer',NULL),(6205872,3747611,1,'actress',NULL,'[\"Lily\"]'),(6205872,8821143,2,'actress',NULL,'[\"Em\"]'),(6205872,4025229,3,'actress',NULL,'[\"Sarah\"]'),(6205872,6341515,4,'actress',NULL,'[\"Bex\"]'),(6205872,506094,5,'director',NULL,NULL),(6205872,1209773,6,'producer','producer',NULL),(6205872,317943,7,'producer','producer',NULL),(6205872,3951426,8,'producer','producer',NULL),(6205872,275286,9,'producer','producer',NULL),(6212478,6467361,10,'writer','Writer: additional writings',NULL),(6212478,9858131,1,'actor',NULL,'[\"The Real Spencer Reinhard\"]'),(6212478,9858130,2,'actor',NULL,'[\"The Real Warren Lipka\"]'),(6212478,9858133,3,'actor',NULL,'[\"The Real Eric Borsuk\"]'),(6212478,3130746,4,'actor',NULL,'[\"The Real Chas Allen\"]'),(6212478,1717925,5,'director',NULL,NULL),(6212478,1638619,6,'writer','additional material',NULL),(6212478,1661186,7,'writer','additional writing',NULL),(6212478,3191235,8,'writer','adaptation & translation',NULL),(6212478,4674670,9,'writer','additional material',NULL),(6212496,317195,10,'editor',NULL,NULL),(6212496,3644706,1,'actress',NULL,'[\"Emily Martin\"]'),(6212496,2326897,2,'actor',NULL,'[\"Eric Kline\"]'),(6212496,3138882,3,'actress',NULL,'[\"Celeste Jones\"]'),(6212496,4427331,4,'actress',NULL,'[\"Jen Morales\"]'),(6212496,164290,5,'producer','producer',NULL),(6212496,645068,6,'producer','producer',NULL),(6212496,2801211,7,'producer','producer',NULL),(6212496,1792454,8,'composer',NULL,NULL),(6212496,2353188,9,'cinematographer',NULL,NULL),(6214928,1095937,10,'editor',NULL,NULL),(6214928,5048,1,'actor',NULL,'[\"Wilfred James\"]'),(6214928,662504,2,'actress',NULL,'[\"Arlette James\"]'),(6214928,4415201,3,'actor',NULL,'[\"Henry James\"]'),(6214928,5305557,4,'actress',NULL,'[\"Shannon Cotterie\"]'),(6214928,1991847,5,'director',NULL,NULL),(6214928,175,6,'writer','novella',NULL),(6214928,1895871,7,'producer','producer',NULL),(6214928,666604,8,'composer',NULL,NULL),(6214928,1564639,9,'cinematographer','director of photography',NULL),(6217306,2158807,10,'cinematographer','director of photography',NULL),(6217306,1405398,1,'actor',NULL,'[\"Thomas Richardson\"]'),(6217306,253355,2,'actor',NULL,'[\"Charles\"]'),(6217306,383467,3,'actor',NULL,'[\"Frank\"]'),(6217306,2389463,4,'actor',NULL,'[\"Jeremy\"]'),(6217306,2153088,5,'director',NULL,NULL),(6217306,1167978,6,'producer','producer',NULL),(6217306,2727368,7,'producer','producer',NULL),(6217306,4390103,8,'composer',NULL,NULL),(6217306,3496107,9,'composer',NULL,NULL),(6249434,4561212,10,'composer',NULL,NULL),(6249434,3391702,1,'actress',NULL,'[\"Naomi\"]'),(6249434,267042,2,'actress',NULL,'[\"Mona\"]'),(6249434,3621561,3,'actor',NULL,'[\"Avner\"]'),(6249434,3561877,4,'actor',NULL,'[\"Naim Quassem\"]'),(6249434,726954,5,'director',NULL,NULL),(6249434,9951474,6,'writer','short story \"The Link\"',NULL),(6249434,111236,7,'producer','producer',NULL),(6249434,166436,8,'producer','producer',NULL),(6249434,248552,9,'producer','producer',NULL),(6257174,2801211,10,'producer','producer',NULL),(6257174,1631269,1,'actress',NULL,'[\"Cameron\"]'),(6257174,3069619,2,'actor',NULL,'[\"Pastor Crawford\"]'),(6257174,791723,3,'actress',NULL,'[\"Coley\"]'),(6257174,125013,4,'actress',NULL,'[\"Ruth\"]'),(6257174,3034178,5,'director',NULL,NULL),(6257174,2360311,6,'writer','screenplay',NULL),(6257174,8590036,7,'writer','novel',NULL),(6257174,164290,8,'producer','producer',NULL),(6257174,1709468,9,'producer','producer',NULL),(6258766,5390798,10,'composer',NULL,NULL),(6258766,5149400,1,'actress',NULL,'[\"Nojet\"]'),(6258766,9406221,2,'actor',NULL,'[\"Lex\"]'),(6258766,9406222,3,'actor',NULL,'[\"Chris\"]'),(6258766,722556,4,'actor',NULL,'[\"Mickey\"]'),(6258766,3168051,5,'director',NULL,NULL),(6258766,1490822,6,'director',NULL,NULL),(6258766,5621932,7,'producer','producer',NULL),(6258766,9416658,8,'composer',NULL,NULL),(6258766,2382272,9,'composer',NULL,NULL),(6259380,2849171,10,'production_designer',NULL,NULL),(6259380,558182,1,'actress',NULL,'[\"Mary Reed\"]'),(6259380,2064412,2,'actor',NULL,'[\"Connor Reed\"]'),(6259380,2818965,3,'actress',NULL,'[\"Receptionist\"]'),(6259380,63143,4,'actor',NULL,'[\"Big Joe\"]'),(6259380,3728712,5,'director',NULL,NULL),(6259380,2425790,6,'writer','screenplay by',NULL),(6259380,3219940,7,'composer',NULL,NULL),(6259380,3643519,8,'cinematographer','director of photography',NULL),(6259380,3510397,9,'editor',NULL,NULL),(6261136,5131788,10,'producer','producer',NULL),(6261136,1166576,1,'actor',NULL,'[\"Othello\"]'),(6261136,894613,2,'actor',NULL,'[\"Edik\"]'),(6261136,3374181,3,'actor',NULL,'[\"Maksimych\"]'),(6261136,1767872,4,'actress',NULL,'[\"Valentina\"]'),(6261136,6076218,5,'director',NULL,NULL),(6261136,5663444,6,'writer',NULL,NULL),(6261136,7352558,7,'writer',NULL,NULL),(6261136,3538768,8,'writer',NULL,NULL),(6261136,8594112,9,'writer',NULL,NULL),(6264654,1150863,10,'producer','producer',NULL),(6264654,5351,1,'actor',NULL,'[\"Guy\"]'),(6264654,3069650,2,'actress',NULL,'[\"Millie\",\"Molotovgirl\"]'),(6264654,169806,3,'actor',NULL,'[\"Antwan\"]'),(6264654,2577076,4,'actor',NULL,'[\"Buddy\"]'),(6264654,506613,5,'director',NULL,NULL),(6264654,1073238,6,'writer','screenplay by',NULL),(6264654,672015,7,'writer','screenplay by',NULL),(6264654,75528,8,'producer','producer',NULL),(6264654,2221807,9,'producer','producer',NULL),(6265828,3902730,10,'cinematographer','director of photography',NULL),(6265828,729,1,'actor',NULL,'[\"C\"]'),(6265828,1913734,2,'actress',NULL,'[\"M\"]'),(6265828,8141375,3,'actor',NULL,'[\"Little Boy\"]'),(6265828,5652167,4,'actress',NULL,'[\"Doctor\"]'),(6265828,1108007,5,'director',NULL,NULL),(6265828,2508774,6,'producer','producer',NULL),(6265828,2021909,7,'producer','producer',NULL),(6265828,1435934,8,'producer','producer',NULL),(6265828,5740235,9,'composer',NULL,NULL),(6266538,93,10,'producer','producer',NULL),(6266538,288,1,'actor',NULL,'[\"Dick Cheney\"]'),(6266538,10736,2,'actress',NULL,'[\"Lynne Cheney\"]'),(6266538,136797,3,'actor',NULL,'[\"Donald Rumsfeld\"]'),(6266538,5377,4,'actor',NULL,'[\"George W. Bush\"]'),(6266538,570912,5,'director',NULL,NULL),(6266538,2071,6,'producer','producer',NULL),(6266538,306890,7,'producer','producer',NULL),(6266538,1250070,8,'producer','producer',NULL),(6266538,582111,9,'producer','producer',NULL),(6275840,8302367,10,'cinematographer',NULL,NULL),(6275840,8606223,1,'actor',NULL,'[\"António\"]'),(6275840,6539302,2,'actor',NULL,'[\"Débora\"]'),(6275840,8606221,3,'actor',NULL,'[\"Johnny\"]'),(6275840,275553,4,'actor',NULL,'[\"João\"]'),(6275840,6121586,5,'director',NULL,NULL),(6275840,8606222,6,'producer','producer',NULL),(6275840,4045173,7,'producer','producer',NULL),(6275840,8606215,8,'producer','producer',NULL),(6275840,8447376,9,'composer',NULL,NULL),(6277462,1338587,10,'composer',NULL,NULL),(6277462,821,1,'actor',NULL,'[\"Guru\"]'),(6277462,1633541,2,'actor',NULL,'[\"Shiva\"]'),(6277462,1017633,3,'actress',NULL,'[\"Isha\"]'),(6277462,15459,4,'actor',NULL,'[\"Anish Shetty\"]'),(6277462,2209781,5,'director',NULL,NULL),(6277462,4990507,6,'writer','dialogue',NULL),(6277462,1248060,7,'producer','producer',NULL),(6277462,424103,8,'producer','producer',NULL),(6277462,7316454,9,'producer','producer',NULL),(6285944,3060479,10,'producer','producer',NULL),(6285944,1107001,1,'actor',NULL,'[\"Bernard Garrett\"]'),(6285944,168,2,'actor',NULL,'[\"Joe Morris\"]'),(6285944,396558,3,'actor',NULL,'[\"Matt Steiner\"]'),(6285944,505,4,'actress',NULL,'[\"Eunice Garrett\"]'),(6285944,1079776,5,'director',NULL,NULL),(6285944,6276982,6,'writer','screenplay by',NULL),(6285944,807901,7,'writer','screenplay by',NULL),(6285944,10186115,8,'writer','screenplay by',NULL),(6285944,437267,9,'writer','story by',NULL),(6292852,664020,10,'composer',NULL,NULL),(6292852,370015,1,'actor',NULL,'[\"Mother\"]'),(6292852,126284,2,'actress',NULL,'[\"Mother\"]'),(6292852,10163946,3,'actress',NULL,'[\"Infant\"]'),(6292852,10163947,4,'actress',NULL,'[\"Toddler\"]'),(6292852,3078140,5,'director',NULL,NULL),(6292852,2260759,6,'writer','screenplay by',NULL),(6292852,1098908,7,'producer','producer',NULL),(6292852,925524,8,'producer','producer',NULL),(6292852,2350062,9,'composer','composer',NULL),(6294226,6115201,10,'composer',NULL,NULL),(6294226,7232332,1,'actress',NULL,'[\"Nori\"]'),(6294226,2147876,2,'actress',NULL,'[\"Murphy\"]'),(6294226,2032193,3,'actor',NULL,'[\"Jin\"]'),(6294226,664061,4,'actor',NULL,'[\"Jake\"]'),(6294226,3808418,5,'director',NULL,NULL),(6294226,2300570,6,'writer','screenplay',NULL),(6294226,2242713,7,'writer','screenplay',NULL),(6294226,4251668,8,'producer','producer',NULL),(6294226,3510596,9,'producer','producer',NULL),(6294822,2354,10,'composer',NULL,NULL),(6294822,658,1,'actress',NULL,'[\"Kay Graham\"]'),(6294822,158,2,'actor',NULL,'[\"Ben Bradlee\"]'),(6294822,5299,3,'actress',NULL,'[\"Tony Bradlee\"]'),(6294822,644022,4,'actor',NULL,'[\"Ben Bagdikian\"]'),(6294822,229,5,'director',NULL,NULL),(6294822,2176283,6,'writer','written by',NULL),(6294822,1802857,7,'writer','written by',NULL),(6294822,1069736,8,'producer','producer',NULL),(6294822,1166871,9,'producer','producer',NULL),(6298780,725808,10,'composer',NULL,NULL),(6298780,5575,1,'actor',NULL,'[\"Fin\"]'),(6298780,5346,2,'actress',NULL,'[\"April\"]'),(6298780,2628561,3,'actress',NULL,'[\"Nova\"]'),(6298780,7811397,4,'actor',NULL,'[\"Gil\"]'),(6298780,3116,5,'director',NULL,NULL),(6298780,505736,6,'writer','based on characters created by',NULL),(6298780,1797032,7,'writer','written by',NULL),(6298780,490375,8,'producer','producer',NULL),(6298780,1700105,9,'composer',NULL,NULL),(6303866,9175586,10,'composer',NULL,NULL),(6303866,6170168,1,'actor',NULL,'[\"Frankie\"]'),(6303866,7187575,2,'actress',NULL,'[\"Simone\"]'),(6303866,388082,3,'actress',NULL,'[\"Donna\"]'),(6303866,400223,4,'actor',NULL,'[\"Joe\"]'),(6303866,2151374,5,'director',NULL,NULL),(6303866,5126852,6,'producer','producer',NULL),(6303866,2749806,7,'producer','producer',NULL),(6303866,1463905,8,'producer','producer',NULL),(6303866,583796,9,'producer','producer',NULL),(6304046,1256846,10,'editor',NULL,NULL),(6304046,4888033,1,'actress',NULL,'[\"Thelma\"]'),(6304046,8311678,2,'actress',NULL,'[\"Anja\"]'),(6304046,706152,3,'actor',NULL,'[\"Trond\"]'),(6304046,2717241,4,'actress',NULL,'[\"Unni\"]'),(6304046,1258686,5,'director',NULL,NULL),(6304046,1258777,6,'writer','screenplay',NULL),(6304046,733435,7,'producer','producer',NULL),(6304046,1492711,8,'composer',NULL,NULL),(6304046,1257420,9,'cinematographer',NULL,NULL),(6317656,1787259,10,'writer','additional writing by',NULL),(6317656,915208,1,'actress',NULL,'[\"Sam Bloom\"]'),(6317656,10881822,2,'actor',NULL,'[\"Noah Bloom\"]'),(6317656,511088,3,'actor',NULL,'[\"Cameron Bloom\"]'),(6317656,12270579,4,'actor',NULL,'[\"Young Noah\"]'),(6317656,1380395,5,'director',NULL,NULL),(6317656,3961014,6,'writer','written by',NULL),(6317656,187912,7,'writer','written by',NULL),(6317656,8632998,8,'writer','based on the book by',NULL),(6317656,1402259,9,'writer','based on the book by',NULL),(6320628,270559,10,'producer','producer',NULL),(6320628,4043618,1,'actor',NULL,'[\"Peter Parker\",\"Spider-Man\"]'),(6320628,168,2,'actor',NULL,'[\"Nick Fury\"]'),(6320628,350453,3,'actor',NULL,'[\"Quentin Beck\",\"Mysterio\"]'),(6320628,673,4,'actress',NULL,'[\"May Parker\"]'),(6320628,1218281,5,'director',NULL,NULL),(6320628,571344,6,'writer','written by',NULL),(6320628,1273099,7,'writer','written by',NULL),(6320628,498278,8,'writer','based on the Marvel comic book by',NULL),(6320628,228492,9,'writer','based on the Marvel comic book by',NULL),(6324278,186943,10,'cinematographer',NULL,NULL),(6324278,4032297,1,'actress',NULL,'[\"Yi\"]'),(6324278,5294965,2,'actor',NULL,'[\"Peng\"]'),(6324278,5529735,3,'actor',NULL,'[\"Jin\"]'),(6324278,1660488,4,'actor',NULL,'[\"Everest\"]'),(6324278,191717,5,'director',NULL,NULL),(6324278,1392282,6,'director','co-director',NULL),(6324278,1330174,7,'producer','producer',NULL),(6324278,1513657,8,'producer','producer',NULL),(6324278,340003,9,'composer',NULL,NULL),(6334354,711235,10,'editor',NULL,NULL),(6334354,3053338,1,'actress',NULL,'[\"Harley Quinn\"]'),(6334354,252961,2,'actor',NULL,'[\"Bloodsport\"]'),(6334354,1078479,3,'actor',NULL,'[\"Peacemaker\"]'),(6334354,1172478,4,'actor',NULL,'[\"Colonel Rick Flag\"]'),(6334354,348181,5,'director',NULL,NULL),(6334354,746273,6,'producer','producer',NULL),(6334354,755911,7,'producer','producer',NULL),(6334354,614373,8,'composer',NULL,NULL),(6334354,103956,9,'cinematographer','director of photography',NULL),(6336356,613528,10,'composer',NULL,NULL),(6336356,4954157,1,'actress',NULL,'[\"Mary\"]'),(6336356,1126340,2,'actor',NULL,'[\"Peter\"]'),(6336356,23858,3,'actress',NULL,'[\"Madam Mumblechook\"]'),(6336356,463201,4,'actor',NULL,'[\"Doctor Dee\"]'),(6336356,948488,5,'director',NULL,NULL),(6336356,829650,6,'writer','based on the novel \"The Little Broomstick\" by',NULL),(6336356,4940865,7,'writer','screenplay by',NULL),(6336356,2052679,8,'producer','producer',NULL),(6336356,5347659,9,'producer','producer',NULL),(6341832,544947,10,'producer','producer',NULL),(6341832,491259,1,'actress',NULL,'[\"Elizabeth \'Liz\' Hansen\"]'),(6341832,23832,2,'actor',NULL,'[\"M.I.L.O.\"]'),(6341832,956026,3,'actor',NULL,'[\"Léo Ferguson\"]'),(6341832,3529097,4,'actress',NULL,'[\"Alice Hansen\"]'),(6341832,14960,5,'director',NULL,NULL),(6341832,7959699,6,'writer',NULL,NULL),(6341832,1330234,7,'producer','producer',NULL),(6341832,5897824,8,'producer','producer',NULL),(6341832,505183,9,'producer','producer',NULL),(6342316,254193,10,'cinematographer',NULL,NULL),(6342316,4609822,1,'actress',NULL,'[\"Angie\",\"Brett\'s girlfriend\"]'),(6342316,2890541,2,'actor',NULL,'[\"Brett\",\"Dan\'s friend\"]'),(6342316,7592245,3,'actor',NULL,'[\"Dan\",\"husband\"]'),(6342316,1916003,4,'actress',NULL,'[\"Claire\",\"wife\"]'),(6342316,1169957,5,'director',NULL,NULL),(6342316,2441640,6,'producer','producer',NULL),(6342316,314713,7,'composer',NULL,NULL),(6342316,3367767,8,'composer',NULL,NULL),(6342316,5270593,9,'composer',NULL,NULL),(6343314,854772,10,'producer','producer',NULL),(6343314,430107,1,'actor',NULL,'[\"Adonis Johnson\"]'),(6343314,230,2,'actor',NULL,'[\"Rocky Balboa\"]'),(6343314,1935086,3,'actress',NULL,'[\"Bianca\"]'),(6343314,711118,4,'actress',NULL,'[\"Mary Anne Creed\"]'),(6343314,4023702,5,'director',NULL,NULL),(6343314,3541432,6,'writer','screenplay by',NULL),(6343314,672011,7,'writer','story by',NULL),(6343314,1854539,8,'writer','story by',NULL),(6343314,153587,9,'producer','producer',NULL),(6348138,1470929,10,'cinematographer','director of cinematography',NULL),(6348138,413168,1,'actor',NULL,'[\"Sir Lionel Frost\"]'),(6348138,909144,2,'actor',NULL,'[\"Mr. Lemuel Lint\"]'),(6348138,410,3,'actor',NULL,'[\"Lord Piggot-Dunceby\"]'),(6348138,524240,4,'actor',NULL,'[\"Mr. Collick\"]'),(6348138,2752098,5,'director',NULL,NULL),(6348138,4111213,6,'producer','producer',NULL),(6348138,1325899,7,'producer','producer',NULL),(6348138,1750312,8,'producer','producer',NULL),(6348138,1980,9,'composer',NULL,NULL),(6359956,1162777,10,'editor',NULL,NULL),(6359956,5109,1,'actress',NULL,'[\"Amy\"]'),(6359956,68338,2,'actress',NULL,'[\"Kiki\"]'),(6359956,1063517,3,'actress',NULL,'[\"Carla\"]'),(6359956,379596,4,'actor',NULL,'[\"Jessie\"]'),(6359956,524190,5,'director',NULL,NULL),(6359956,601859,6,'director',NULL,NULL),(6359956,865297,7,'producer','producer',NULL),(6359956,501999,8,'composer',NULL,NULL),(6359956,25465,9,'cinematographer','director of photography',NULL),(6387232,1945155,10,'editor',NULL,NULL),(6387232,2278896,1,'actress',NULL,'[\"Maggie\"]'),(6387232,3214649,2,'actor',NULL,'[\"Adrian\"]'),(6387232,94039,3,'actress',NULL,'[\"Beatrice\"]'),(6387232,47453,4,'actress',NULL,'[\"Sarah\"]'),(6387232,53228,5,'director',NULL,NULL),(6387232,24169,6,'writer','story',NULL),(6387232,470751,7,'producer','producer',NULL),(6387232,294520,8,'composer',NULL,NULL),(6387232,785150,9,'cinematographer',NULL,NULL),(6394270,2210479,10,'producer','producer',NULL),(6394270,234,1,'actress',NULL,'[\"Megyn Kelly\"]'),(6394270,173,2,'actress',NULL,'[\"Gretchen Carlson\"]'),(6394270,3053338,3,'actress',NULL,'[\"Kayla Pospisil\"]'),(6394270,1475,4,'actor',NULL,'[\"Roger Ailes\"]'),(6394270,5366,5,'director',NULL,NULL),(6394270,1017488,6,'writer','written by',NULL),(6394270,228690,7,'producer','producer',NULL),(6394270,317943,8,'producer','producer',NULL),(6394270,333747,9,'producer','producer',NULL),(6398184,810430,10,'cinematographer',NULL,NULL),(6398184,1304386,1,'actor',NULL,'[\"Major Chetwode\"]'),(6398184,5320024,2,'actor',NULL,'[\"Andy\"]'),(6398184,630149,3,'actress',NULL,'[\"Mrs. Patmore\"]'),(6398184,2904789,4,'actress',NULL,'[\"Daisy\"]'),(6398184,257554,5,'director',NULL,NULL),(6398184,271501,6,'writer','based on the television series created by',NULL),(6398184,623765,7,'producer','producer',NULL),(6398184,873983,8,'producer','producer',NULL),(6398184,526753,9,'composer',NULL,NULL),(6404896,1790682,1,'actor',NULL,'[\"John Constantine\",\"Constantine-Demons\"]'),(6404896,1400933,2,'actor',NULL,'[\"Chas Chandler\"]'),(6404896,1154161,3,'actress',NULL,'[\"Asa the Healer\",\"Trish\"]'),(6404896,1386659,4,'actress',NULL,'[\"Renee Chandler\"]'),(6404896,235960,5,'actor',NULL,'[\"Butler\"]'),(6404896,454064,6,'actress',NULL,'[\"Announcer\"]'),(6404896,2350,7,'actor',NULL,'[\"Beroul\"]'),(6412452,333747,10,'producer','producer',NULL),(6412452,625789,1,'actor',NULL,'[\"Buster Scruggs (segment \\\"The Ballad of Buster Scruggs\\\")\"]'),(6412452,914929,2,'actor',NULL,'[\"The Kid (segment \\\"The Ballad of Buster Scruggs\\\")\"]'),(6412452,317,3,'actor',NULL,'[\"Surly Joe (segment \\\"The Ballad of Buster Scruggs\\\")\"]'),(6412452,1180243,4,'actor',NULL,'[\"Curly Joe\'s Brother (segment \\\"The Ballad of Buster Scruggs\\\")\"]'),(6412452,1053,5,'director',NULL,NULL),(6412452,1054,6,'director',NULL,NULL),(6412452,518711,7,'writer','based on a story by',NULL),(6412452,925481,8,'writer','inspired by a story by',NULL),(6412452,2691892,9,'producer','producer',NULL),(6418778,277342,10,'cinematographer',NULL,NULL),(6418778,1813221,1,'actress',NULL,'[\"Ruth\"]'),(6418778,5501,2,'actress',NULL,'[\"Bo\"]'),(6418778,5181138,3,'actress',NULL,'[\"Lila\"]'),(6418778,657,4,'actor',NULL,'[\"Ellis\"]'),(6418778,1257352,5,'director',NULL,NULL),(6418778,3527897,6,'writer','written by',NULL),(6418778,509176,7,'producer','producer',NULL),(6418778,4403105,8,'producer','producer',NULL),(6418778,1387379,9,'composer',NULL,NULL),(6423776,323707,10,'cinematographer',NULL,NULL),(6423776,300,1,'actress',NULL,'[\"Isabelle\"]'),(6423776,64741,2,'actor',NULL,'[\"Vincent Briot\"]'),(6423776,1081573,3,'actor',NULL,'[\"Mathieu\"]'),(6423776,1929,4,'actress',NULL,'[\"Maxime\"]'),(6423776,219136,5,'director',NULL,NULL),(6423776,1400425,6,'writer','screenplay',NULL),(6423776,58638,7,'writer','original book',NULL),(6423776,216635,8,'producer','producer',NULL),(6423776,822928,9,'composer',NULL,NULL),(6428676,1888527,10,'composer',NULL,NULL),(6428676,6029853,1,'actress',NULL,'[\"Young June\"]'),(6428676,4950,2,'actress',NULL,'[\"Mom\"]'),(6428676,132637,3,'actor',NULL,'[\"Boomer\"]'),(6428676,860380,4,'actor',NULL,'[\"Gus\"]'),(6428676,113477,5,'director',NULL,NULL),(6428676,32227,6,'writer','screenplay by',NULL),(6428676,625858,7,'writer','screenplay by',NULL),(6428676,330565,8,'writer','story by',NULL),(6428676,356280,9,'producer','producer',NULL),(6432466,755254,10,'producer','producer',NULL),(6432466,6044874,1,'actress',NULL,'[\"Vivian\"]'),(6432466,8816423,2,'actress',NULL,'[\"Claudia\"]'),(6432466,4875229,3,'actress',NULL,'[\"Lucy\"]'),(6432466,9569934,4,'actor',NULL,'[\"Seth\"]'),(6432466,688132,5,'director',NULL,NULL),(6432466,8714831,6,'writer','based upon the novel by',NULL),(6432466,2309894,7,'writer','screenplay by',NULL),(6432466,3231710,8,'writer','screenplay by',NULL),(6432466,4424569,9,'producer','producer',NULL),(6433880,8731522,10,'producer','producer',NULL),(6433880,4457775,1,'actress',NULL,'[\"Anna Shepherd\"]'),(6433880,7617596,2,'actor',NULL,'[\"John\"]'),(6433880,6125416,3,'actress',NULL,'[\"Steph North\"]'),(6433880,3543860,4,'actor',NULL,'[\"Chris Wise\"]'),(6433880,3781554,5,'director',NULL,NULL),(6433880,4976087,6,'writer','written by',NULL),(6433880,2958492,7,'writer','written by',NULL),(6433880,3291594,8,'producer','producer',NULL),(6433880,4187994,9,'producer','producer',NULL),(6435258,2612256,1,'self',NULL,'[\"Self\"]'),(6435258,6324042,2,'self',NULL,'[\"Self\"]'),(6435258,10833194,3,'self',NULL,'[\"Self\"]'),(6435258,12406391,4,'self',NULL,'[\"Self\"]'),(6435258,5543184,5,'director',NULL,NULL),(6435258,2587380,6,'writer',NULL,NULL),(6435258,3243529,7,'producer','producer',NULL),(6435258,1165704,8,'producer','producer',NULL),(6435258,3929283,9,'composer',NULL,NULL),(6436726,919443,10,'editor',NULL,NULL),(6436726,330687,1,'actor',NULL,'[\"Tobias Ellis\"]'),(6436726,6974700,2,'actor',NULL,'[\"Vedat\"]'),(6436726,2521682,3,'actress',NULL,'[\"Gökce\"]'),(6436726,3492494,4,'actor',NULL,'[\"Michael Lutzmann\"]'),(6436726,2573530,5,'director',NULL,NULL),(6436726,1734747,6,'writer','co-written by',NULL),(6436726,3474579,7,'producer','producer',NULL),(6436726,1842600,8,'producer','producer',NULL),(6436726,4270520,9,'cinematographer',NULL,NULL),(6439020,1250449,10,'cinematographer',NULL,NULL),(6439020,2353862,1,'actor',NULL,'[\"David Copperfield\"]'),(6439020,491402,2,'actor',NULL,'[\"Mr Dick\"]'),(6439020,842770,3,'actress',NULL,'[\"Betsey Trotwood\"]'),(6439020,134922,4,'actor',NULL,'[\"Mr Micawber\"]'),(6439020,406334,5,'director',NULL,NULL),(6439020,1006581,6,'writer','screenplay',NULL),(6439020,2042,7,'writer','based on the novel by',NULL),(6439020,2941,8,'producer','producer',NULL),(6439020,3010524,9,'composer',NULL,NULL),(6441072,4563902,10,'composer',NULL,NULL),(6441072,1573797,1,'actor',NULL,'[\"Océanerosemarie\"]'),(6441072,1745743,2,'actress',NULL,'[\"Cécile Bertaud\"]'),(6441072,488477,3,'actress',NULL,'[\"Babouchka\"]'),(6441072,2771436,4,'actor',NULL,'[\"Ludo\"]'),(6441072,2290205,5,'director',NULL,NULL),(6441072,5563435,6,'writer','collaboration on screenplay',NULL),(6441072,9776608,7,'writer','collaboration on screenplay',NULL),(6441072,2462346,8,'producer','producer',NULL),(6441072,2964934,9,'producer','producer',NULL),(6450804,251050,10,'writer','story by',NULL),(6450804,157,1,'actress',NULL,'[\"Sarah Connor\"]'),(6450804,216,2,'actor',NULL,'[\"T-800\",\"Carl\"]'),(6450804,4496875,3,'actress',NULL,'[\"Grace\"]'),(6450804,721376,4,'actress',NULL,'[\"Dani Ramos\"]'),(6450804,1783265,5,'director',NULL,NULL),(6450804,275286,6,'writer','screenplay by',NULL),(6450804,1221634,7,'writer','screenplay by',NULL),(6450804,712753,8,'writer','screenplay by',NULL),(6450804,116,9,'writer','story by',NULL),(6466058,3569381,10,'cinematographer',NULL,NULL),(6466058,3158974,1,'actress',NULL,'[\"Janice\"]'),(6466058,3744610,2,'actress',NULL,'[\"Rose\"]'),(6466058,1511685,3,'actress',NULL,'[\"Donna\"]'),(6466058,1186061,4,'actress',NULL,'[\"Maggie\"]'),(6466058,1706140,5,'director',NULL,NULL),(6466058,2253666,6,'producer','producer',NULL),(6466058,1781488,7,'producer','producer',NULL),(6466058,6932318,8,'composer',NULL,NULL),(6466058,6932317,9,'composer',NULL,NULL),(6467266,674179,10,'editor',NULL,NULL),(6467266,190,1,'actor',NULL,'[\"Buster Moon\"]'),(6467266,702,2,'actress',NULL,'[\"Rosita\"]'),(6467266,424060,3,'actress',NULL,'[\"Ash\"]'),(6467266,1812991,4,'actress',NULL,'[\"Meena\"]'),(6467266,1134029,5,'director',NULL,NULL),(6467266,2888554,6,'director','co-director',NULL),(6467266,372329,7,'producer','producer',NULL),(6467266,577560,8,'producer','producer',NULL),(6467266,847926,9,'composer',NULL,NULL),(6467968,6013063,10,'producer','producer',NULL),(6467968,9792820,1,'actor',NULL,'[\"Social Anthropologist\"]'),(6467968,1383983,2,'actor',NULL,'[\"Manol\"]'),(6467968,52468,3,'actor',NULL,'[\"Kosta\"]'),(6467968,1091878,4,'actor',NULL,'[\"Vlado\"]'),(6467968,464526,5,'director',NULL,NULL),(6467968,8100358,6,'writer',NULL,NULL),(6467968,1075856,7,'producer','producer',NULL),(6467968,2167462,8,'producer','producer',NULL),(6467968,3876762,9,'producer','producer',NULL),(6472976,6630425,10,'composer',NULL,NULL),(6472976,4726634,1,'actress',NULL,'[\"Stella\"]'),(6472976,819850,2,'actor',NULL,'[\"Will\"]'),(6472976,2030779,3,'actor',NULL,'[\"Poe\"]'),(6472976,2554997,4,'actress',NULL,'[\"Barb\"]'),(6472976,1682573,5,'director',NULL,NULL),(6472976,5657522,6,'writer','written by',NULL),(6472976,3037068,7,'writer','written by',NULL),(6472976,776072,8,'producer','producer',NULL),(6472976,3911,9,'composer',NULL,NULL),(6475714,609265,10,'producer','producer',NULL),(6475714,170,1,'actress',NULL,'[\"Artemis\"]'),(6475714,1388074,2,'actor',NULL,'[\"Hunter\"]'),(6475714,579,3,'actor',NULL,'[\"The Admiral\"]'),(6475714,1939267,4,'actor',NULL,'[\"Lincoln\"]'),(6475714,27271,5,'director',NULL,NULL),(6475714,1724522,6,'writer','based upon Capcom\'s videogame \"Monster Hunter\" by',NULL),(6475714,73268,7,'producer','producer',NULL),(6475714,93337,8,'producer','producer',NULL),(6475714,474709,9,'producer','producer',NULL),(6476140,1317996,10,'editor',NULL,NULL),(6476140,190,1,'actor',NULL,'[\"Baker Dill\"]'),(6476140,4266,2,'actress',NULL,'[\"Karen Zariakas\"]'),(6476140,178,3,'actress',NULL,'[\"Constance\"]'),(6476140,164809,4,'actor',NULL,'[\"Frank Zariakas\"]'),(6476140,1140275,5,'director',NULL,NULL),(6476140,373456,6,'producer','producer',NULL),(6476140,788513,7,'producer','producer',NULL),(6476140,1818744,8,'composer',NULL,NULL),(6476140,355722,9,'cinematographer',NULL,NULL),(6485304,1791196,10,'editor',NULL,NULL),(6485304,632385,1,'actress',NULL,'[\"Lila\"]'),(6485304,4650038,2,'actress',NULL,'[\"Violeta\"]'),(6485304,255979,3,'actress',NULL,'[\"Blanca\"]'),(6485304,5131296,4,'actress',NULL,'[\"Marta\"]'),(6485304,4209430,5,'director',NULL,NULL),(6485304,492038,6,'producer','executive producer',NULL),(6485304,407076,7,'composer',NULL,NULL),(6485304,1880996,8,'cinematographer',NULL,NULL),(6485304,2095418,9,'editor','teaser editor',NULL),(6499752,2642924,10,'cinematographer','director of photography',NULL),(6499752,1334869,1,'actor',NULL,'[\"Grey Trace\"]'),(6499752,2177933,2,'actress',NULL,'[\"Asha Trace\"]'),(6499752,2114889,3,'actor',NULL,'[\"Jeff Handley\"]'),(6499752,1980534,4,'actress',NULL,'[\"Kara\"]'),(6499752,1191481,5,'director',NULL,NULL),(6499752,89658,6,'producer','producer',NULL),(6499752,238879,7,'producer','producer',NULL),(6499752,2271939,8,'producer','producer',NULL),(6499752,2396007,9,'composer',NULL,NULL),(6510332,6219,10,'composer',NULL,NULL),(6510332,1195539,1,'archive_footage',NULL,'[\"Self\"]'),(6510332,10032991,2,'archive_footage',NULL,'[\"Self\"]'),(6510332,12782134,3,'self',NULL,'[\"Self\"]'),(6510332,12782136,4,'self',NULL,'[\"Self\"]'),(6510332,94524,5,'director',NULL,NULL),(6510332,262167,6,'director','co-director',NULL),(6510332,2046101,7,'producer','producer',NULL),(6510332,1819135,8,'producer','producer',NULL),(6510332,1794018,9,'producer','producer',NULL),(6511932,1540099,10,'producer','producer',NULL),(6511932,190,1,'actor',NULL,'[\"Moondog\"]'),(6511932,4879,2,'actor',NULL,'[\"Lingerie\"]'),(6511932,279545,3,'actress',NULL,'[\"Minnie\"]'),(6511932,2901344,4,'actress',NULL,'[\"Heather\"]'),(6511932,5101,5,'director',NULL,NULL),(6511932,1661920,6,'producer','producer',NULL),(6511932,3923278,7,'producer','producer',NULL),(6511932,326512,8,'producer','producer',NULL),(6511932,971956,9,'producer','producer',NULL),(6513120,1899,10,'cinematographer','director of photography',NULL),(6513120,425005,1,'actor',NULL,'[\"Dwayne \'The Rock\' Johnson\"]'),(6513120,372176,2,'actress',NULL,'[\"Julia Knight\"]'),(6513120,681,3,'actor',NULL,'[\"Hutch\"]'),(6513120,6073955,4,'actress',NULL,'[\"Saraya Knight\"]'),(6513120,580351,5,'director',NULL,NULL),(6513120,1696098,6,'producer','producer',NULL),(6513120,525405,7,'producer','producer',NULL),(6513120,592746,8,'producer','producer',NULL),(6513120,2320164,9,'composer',NULL,NULL),(6522668,9801961,10,'composer',NULL,NULL),(6522668,1929018,1,'actor',NULL,'[\"Diamantino Matamouros\"]'),(6522668,8148648,2,'actress',NULL,'[\"Aisha Brito\"]'),(6522668,1335025,3,'actress',NULL,'[\"Sonia Matamouros\"]'),(6522668,1923623,4,'actress',NULL,'[\"Natasha Matamouros\"]'),(6522668,4085019,5,'director',NULL,NULL),(6522668,4116978,6,'director',NULL,NULL),(6522668,562462,7,'producer','producer',NULL),(6522668,1347595,8,'producer','producer',NULL),(6522668,3711108,9,'producer','line producer',NULL),(6524480,3031425,1,'actress',NULL,'[\"Peace\"]'),(6524480,1916189,2,'actress',NULL,'[\"Equal\"]'),(6524480,4337697,3,'actor',NULL,'[\"Isos\"]'),(6524480,8797209,4,'actor',NULL,'[\"Medical patient\"]'),(6524480,2676231,5,'director',NULL,NULL),(6524480,8775196,6,'writer','written by',NULL),(6524480,8775197,7,'producer','producer',NULL),(6524480,8797210,8,'composer',NULL,NULL),(6524480,8190502,9,'cinematographer',NULL,NULL),(6535880,5585238,10,'producer','producer',NULL),(6535880,3775423,1,'actress',NULL,'[\"Harper\"]'),(6535880,4311291,2,'actor',NULL,'[\"Nathan\"]'),(6535880,2055160,3,'actress',NULL,'[\"Bailey\"]'),(6535880,2255271,4,'actor',NULL,'[\"Evan\"]'),(6535880,1399714,5,'director',NULL,NULL),(6535880,1456816,6,'director',NULL,NULL),(6535880,3099952,7,'producer','producer',NULL),(6535880,307776,8,'producer','producer',NULL),(6535880,744834,9,'producer','producer',NULL),(6536944,6017944,10,'editor',NULL,NULL),(6536944,220635,1,'actress',NULL,'[\"Draculaura\"]'),(6536944,606422,2,'actress',NULL,'[\"Frankie\",\"Venus\"]'),(6536944,1086483,3,'actress',NULL,'[\"Clawdeen\",\"Cleo\"]'),(6536944,5000693,4,'actress',NULL,'[\"Lagoona\"]'),(6536944,266255,5,'director','supervising director',NULL),(6536944,3643746,6,'director',NULL,NULL),(6536944,2618934,7,'writer','written by',NULL),(6536944,1112550,8,'producer','producer',NULL),(6536944,3686526,9,'composer',NULL,NULL),(6539420,6657408,10,'actress',NULL,'[\"Nagwa\"]'),(6539420,439292,1,'actress',NULL,'[\"Shams\"]'),(6539420,4937378,2,'actor',NULL,'[\"Bahgat\"]'),(6539420,11847450,3,'actor',NULL,NULL),(6539420,4672269,4,'actress',NULL,'[\"Magy\"]'),(6539420,2115426,5,'director',NULL,NULL),(6539420,8785687,6,'writer',NULL,NULL),(6539420,4522027,7,'composer',NULL,NULL),(6539420,3618564,8,'cinematographer',NULL,NULL),(6539420,3777419,9,'editor',NULL,NULL),(6543652,2617994,10,'cinematographer',NULL,NULL),(6543652,2251846,1,'actress',NULL,'[\"Zula\"]'),(6543652,1682799,2,'actor',NULL,'[\"Wiktor\"]'),(6543652,844371,3,'actor',NULL,'[\"Kaczmarek\"]'),(6543652,474492,4,'actress',NULL,'[\"Irena\"]'),(6543652,667734,5,'director',NULL,NULL),(6543652,323196,6,'writer','screenplay',NULL),(6543652,2819873,7,'writer','screenplay with the collaboration of',NULL),(6543652,2038610,8,'producer','producer',NULL),(6543652,782036,9,'producer','producer',NULL),(6548966,12926500,10,'producer','producer',NULL),(6548966,4646711,1,'actor',NULL,'[\"King Animus\"]'),(6548966,1906130,2,'actor',NULL,'[\"Gajeel Redfox\"]'),(6548966,1435774,3,'actress',NULL,'[\"Lucy Heartfilia\"]'),(6548966,394679,4,'actress',NULL,'[\"Carla\"]'),(6548966,5895463,5,'director',NULL,NULL),(6548966,2539064,6,'writer','manga',NULL),(6548966,1316290,7,'writer','screenplay',NULL),(6548966,1628149,8,'producer','producer',NULL),(6548966,3284440,9,'producer','producer',NULL),(6565702,278475,10,'cinematographer',NULL,NULL),(6565702,564215,1,'actor',NULL,'[\"Professor Charles Xavier\"]'),(6565702,1055413,2,'actor',NULL,'[\"Erik Lehnsherr\",\"Magneto\"]'),(6565702,2225369,3,'actress',NULL,'[\"Raven\",\"Mystique\"]'),(6565702,396558,4,'actor',NULL,'[\"Hank McCoy\",\"Beast\"]'),(6565702,1334526,5,'director',NULL,NULL),(6565702,356745,6,'producer','producer',NULL),(6565702,404446,7,'producer','producer',NULL),(6565702,795682,8,'producer','producer',NULL),(6565702,1877,9,'composer',NULL,NULL),(6566576,2819401,10,'producer','producer',NULL),(6566576,2854112,1,'actress',NULL,'[\"Deena\"]'),(6566576,7326511,2,'actress',NULL,'[\"Samantha Fraser\"]'),(6566576,4652001,3,'actor',NULL,'[\"Josh\"]'),(6566576,10200499,4,'actress',NULL,'[\"Kate\"]'),(6566576,4074404,5,'director',NULL,NULL),(6566576,830419,6,'writer','based upon the Fear Street books by',NULL),(6566576,3189831,7,'writer','story by',NULL),(6566576,5177682,8,'writer','story by',NULL),(6566576,1858656,9,'producer','producer',NULL),(6587640,938645,10,'writer','screenplay by',NULL),(6587640,447695,1,'actress',NULL,'[\"Poppy\"]'),(6587640,5493,2,'actor',NULL,'[\"Branch\"]'),(6587640,3417385,3,'actress',NULL,'[\"Barb\"]'),(6587640,179479,4,'actor',NULL,'[\"Biggie\"]'),(6587640,230666,5,'director',NULL,NULL),(6587640,1019583,6,'director','co-director',NULL),(6587640,8743,7,'writer','screenplay by',NULL),(6587640,74184,8,'writer','screenplay by',NULL),(6587640,285379,9,'writer','screenplay by',NULL),(6590856,706744,10,'cinematographer',NULL,NULL),(6590856,1617631,1,'actress',NULL,'[\"Elpida\"]'),(6590856,1617338,2,'actor',NULL,'[\"Costas\"]'),(6590856,2853261,3,'actress',NULL,'[\"Eleftheria\"]'),(6590856,1476599,4,'actor',NULL,'[\"Doctor\"]'),(6590856,2247061,5,'director',NULL,NULL),(6590856,4662366,6,'writer','co-writer',NULL),(6590856,3883921,7,'producer','producer',NULL),(6590856,3957989,8,'producer','producer',NULL),(6590856,4477558,9,'composer',NULL,NULL),(6595896,5468610,10,'producer','producer',NULL),(6595896,411167,1,'actor',NULL,'[\"Narrator\",\"Professor Okido\"]'),(6595896,559551,2,'actress',NULL,'[\"Satoshi\"]'),(6595896,2516299,3,'actress',NULL,'[\"Ash Ketchum\",\"Delia Ketchum\"]'),(6595896,370677,4,'actress',NULL,'[\"Musashi\"]'),(6595896,951197,5,'director',NULL,NULL),(6595896,651184,6,'director','voice director',NULL),(6595896,795575,7,'writer',NULL,NULL),(6595896,846969,8,'writer','concept',NULL),(6595896,1316290,9,'writer','screenplay',NULL),(6628102,1780337,10,'cinematographer',NULL,NULL),(6628102,9486622,1,'actor',NULL,'[\"Sinan Karasu\"]'),(6628102,2139257,2,'actor',NULL,'[\"Idris Karasu\"]'),(6628102,947986,3,'actress',NULL,'[\"Asuman Karasu\"]'),(6628102,4304940,4,'actress',NULL,'[\"Hatice\"]'),(6628102,149196,5,'director',NULL,NULL),(6628102,946324,6,'writer',NULL,NULL),(6628102,9831079,7,'writer',NULL,NULL),(6628102,960222,8,'producer','producer',NULL),(6628102,947984,9,'producer','producer',NULL),(6628394,924222,10,'production_designer',NULL,NULL),(6628394,313,1,'actor',NULL,'[\"Father Daniel Flynn\",\"Dock O\'Kelly\"]'),(6628394,7248827,2,'actress',NULL,'[\"Darlene Sweet\"]'),(6628394,424848,3,'actress',NULL,'[\"Emily Summerspring\"]'),(6628394,358316,4,'actor',NULL,'[\"Laramie Seymour Sullivan\",\"Dwight Broadbeck\"]'),(6628394,1206844,5,'director',NULL,NULL),(6628394,1436246,6,'producer','producer',NULL),(6628394,315974,7,'composer',NULL,NULL),(6628394,568974,8,'cinematographer','director of photography',NULL),(6628394,489809,9,'editor',NULL,NULL),(6644200,1937,10,'composer',NULL,NULL),(6644200,1289434,1,'actress',NULL,'[\"Evelyn Abbott\"]'),(6644200,1024677,2,'actor',NULL,'[\"Lee Abbott\"]'),(6644200,8075925,3,'actress',NULL,'[\"Regan Abbott\"]'),(6644200,7415871,4,'actor',NULL,'[\"Marcus Abbott\"]'),(6644200,1456816,5,'writer','screenplay by',NULL),(6644200,1399714,6,'writer','screenplay by',NULL),(6644200,881,7,'producer','producer',NULL),(6644200,286320,8,'producer','producer',NULL),(6644200,298181,9,'producer','producer',NULL),(6663582,677021,10,'cinematographer',NULL,NULL),(6663582,857620,1,'actor',NULL,'[\"Drew\"]'),(6663582,571952,2,'actress',NULL,'[\"Morgan\"]'),(6663582,7529030,3,'actress',NULL,'[\"Little Girl\"]'),(6663582,5109,4,'actress',NULL,'[\"Audrey\"]'),(6663582,2573005,5,'director',NULL,NULL),(6663582,1503347,6,'writer','written by',NULL),(6663582,4976,7,'producer','producer',NULL),(6663582,400385,8,'producer','producer',NULL),(6663582,61045,9,'composer',NULL,NULL),(6663788,8857088,1,'actress',NULL,'[\"Rebecca\"]'),(6663788,8857089,2,'actress',NULL,'[\"Ellie\"]'),(6663788,8857090,3,'actor',NULL,'[\"Jonathan\"]'),(6663788,8857091,4,'actress',NULL,'[\"Trinity\"]'),(6663788,1998799,5,'director',NULL,NULL),(6663788,2128391,6,'composer',NULL,NULL),(6673612,1206265,10,'producer','producer',NULL),(6673612,375,1,'actor',NULL,'[\"Dr. John Dolittle\"]'),(6673612,104,2,'actor',NULL,'[\"King Rassouli\"]'),(6673612,790688,3,'actor',NULL,'[\"Dr. Blair Müdfly\"]'),(6673612,980,4,'actor',NULL,'[\"Lord Thomas Badgley\"]'),(6673612,300866,5,'director',NULL,NULL),(6673612,2287168,6,'writer','screenplay by',NULL),(6673612,3096061,7,'writer','screenplay by',NULL),(6673612,2411725,8,'writer','screen story by',NULL),(6673612,517452,9,'writer','character created by',NULL),(6678876,2376877,10,'actress',NULL,'[\"Chief of Police (Delegada)\"]'),(6678876,8864870,1,'actress',NULL,'[\"Sandra\"]'),(6678876,7663202,2,'actor',NULL,'[\"Jorge\"]'),(6678876,10179929,3,'actor',NULL,'[\"Wilson\"]'),(6678876,10179930,4,'actor',NULL,'[\"Rui\"]'),(6678876,1809189,5,'director',NULL,NULL),(6678876,1587565,6,'cinematographer',NULL,NULL),(6678876,182652,7,'editor',NULL,NULL),(6678876,10179932,8,'actor',NULL,'[\"Filé\"]'),(6678876,10179931,9,'actor',NULL,'[\"Giovana\"]'),(6708044,1481660,10,'producer','producer',NULL),(6708044,1346713,1,'actor',NULL,'[\"Fidel\"]'),(6708044,1197737,2,'actress',NULL,'[\"Virginia\"]'),(6708044,9067081,3,'actress',NULL,'[\"Maribel\"]'),(6708044,3138823,4,'actress',NULL,'[\"Eli\"]'),(6708044,173101,5,'director',NULL,NULL),(6708044,305864,6,'writer',NULL,NULL),(6708044,649875,7,'writer',NULL,NULL),(6708044,100559,8,'producer','executive producer',NULL),(6708044,303922,9,'producer','producer',NULL),(6710474,4139352,10,'producer','producer',NULL),(6710474,706,1,'actress',NULL,'[\"Evelyn Wang\"]'),(6710474,3513533,2,'actress',NULL,'[\"Joy Wang\",\"Jobu Tupaki\"]'),(6710474,130,3,'actress',NULL,'[\"Deirdre Beaubeirdre\"]'),(6710474,702841,4,'actor',NULL,'[\"Waymond Wang\"]'),(6710474,3453283,5,'director',NULL,NULL),(6710474,3215397,6,'director',NULL,NULL),(6710474,1692290,7,'producer','producer',NULL),(6710474,751577,8,'producer','producer',NULL),(6710474,751648,9,'producer','producer',NULL),(6718170,577560,10,'producer','producer',NULL),(6718170,695435,1,'actor',NULL,'[\"Mario\"]'),(6718170,5896355,2,'actress',NULL,'[\"Princess Peach\"]'),(6718170,206359,3,'actor',NULL,'[\"Luigi\"]'),(6718170,85312,4,'actor',NULL,'[\"Bowser\"]'),(6718170,1739338,5,'director',NULL,NULL),(6718170,2398585,6,'director',NULL,NULL),(6718170,2966857,7,'director','co-director',NULL),(6718170,6042133,8,'director','co-director',NULL),(6718170,3821363,9,'writer','written by',NULL),(6723592,189769,10,'production_designer',NULL,NULL),(6723592,913475,1,'actor',NULL,'[\"Protagonist\"]'),(6723592,1500155,2,'actor',NULL,'[\"Neil\"]'),(6723592,4456120,3,'actress',NULL,'[\"Kat\"]'),(6723592,1798449,4,'actor',NULL,'[\"Passenger\"]'),(6723592,634240,5,'director',NULL,NULL),(6723592,858799,6,'producer','producer',NULL),(6723592,3234869,7,'composer',NULL,NULL),(6723592,887227,8,'cinematographer','director of photography',NULL),(6723592,2352780,9,'editor',NULL,NULL),(6728096,1289716,10,'production_designer',NULL,NULL),(6728096,759819,1,'actress',NULL,'[\"Mel\"]'),(6728096,1101310,2,'actress',NULL,'[\"Jen\"]'),(6728096,2034752,3,'actor',NULL,'[\"Jordan\"]'),(6728096,3378435,4,'actress',NULL,'[\"Anna\"]'),(6728096,1673169,5,'producer','producer',NULL),(6728096,1189390,6,'producer','producer',NULL),(6728096,2868859,7,'producer','producer',NULL),(6728096,1442000,8,'cinematographer',NULL,NULL),(6728096,2305414,9,'editor',NULL,NULL),(6733874,2422454,10,'producer','producer',NULL),(6733874,1475594,1,'actor',NULL,'[\"George Washington\"]'),(6733874,1727621,2,'actor',NULL,'[\"Samuel Adams\"]'),(6733874,1601397,3,'actress',NULL,'[\"Thomas Edison\"]'),(6733874,1293885,4,'actor',NULL,'[\"Paul Revere\"]'),(6733874,860483,5,'director',NULL,NULL),(6733874,1709264,6,'writer','written by',NULL),(6733874,4611870,7,'producer','producer',NULL),(6733874,1730221,8,'producer','producer',NULL),(6733874,1291806,9,'producer','producer',NULL),(6738136,1593899,10,'editor',NULL,NULL),(6738136,4436761,1,'actress',NULL,'[\"Jen\"]'),(6738136,1822271,2,'actor',NULL,'[\"Richard\"]'),(6738136,173003,3,'actor',NULL,'[\"Stan\"]'),(6738136,1397399,4,'actor',NULL,'[\"Dimitri\"]'),(6738136,267287,5,'director',NULL,NULL),(6738136,3613406,6,'producer','producer',NULL),(6738136,1921681,7,'producer','producer',NULL),(6738136,2055749,8,'composer',NULL,NULL),(6738136,3746934,9,'cinematographer',NULL,NULL),(6739094,1348661,10,'producer','producer',NULL),(6739094,395777,1,'actor',NULL,'[\"Zim\"]'),(6739094,800737,2,'actor',NULL,'[\"GIR\",\"Bloaty\"]'),(6739094,75724,3,'actor',NULL,'[\"Dib Membrane\"]'),(6739094,153100,4,'actress',NULL,'[\"Gaz Membrane\"]'),(6739094,4828052,5,'director',NULL,NULL),(6739094,5485894,6,'director',NULL,NULL),(6739094,890679,7,'director',NULL,NULL),(6739094,1410190,8,'writer','story consultant',NULL),(6739094,874106,9,'writer','writing consultant',NULL),(6751668,393240,10,'cinematographer',NULL,NULL),(6751668,814280,1,'actor',NULL,'[\"Ki Taek\"]'),(6751668,1310525,2,'actor',NULL,'[\"Dong Ik\"]'),(6751668,1856097,3,'actress',NULL,'[\"Yeon Kyo\"]'),(6751668,6079248,4,'actor',NULL,'[\"Ki Woo\"]'),(6751668,94435,5,'director',NULL,NULL),(6751668,8243301,6,'writer','screenplay by',NULL),(6751668,10113618,7,'producer','producer',NULL),(6751668,11306825,8,'producer','producer',NULL),(6751668,8885840,9,'composer',NULL,NULL),(6772950,1853865,10,'composer',NULL,NULL),(6772950,1423955,1,'actress',NULL,'[\"Olivia Barron\"]'),(6772950,692677,2,'actor',NULL,'[\"Lucas Moreno\"]'),(6772950,6556997,3,'actress',NULL,'[\"Markie Cameron\"]'),(6772950,4861659,4,'actor',NULL,'[\"Brad Chang\"]'),(6772950,905592,5,'director',NULL,NULL),(6772950,718555,6,'writer','screenplay by',NULL),(6772950,3273842,7,'writer','screenplay by',NULL),(6772950,1496753,8,'writer','screenplay by',NULL),(6772950,89658,9,'producer','producer',NULL),(6776106,1203401,10,'production_designer',NULL,NULL),(6776106,8286241,1,'actress',NULL,'[\"Lára\"]'),(6776106,3447751,2,'actress',NULL,'[\"Adja\"]'),(6776106,8921027,3,'actor',NULL,'[\"Eldar\"]'),(6776106,6541199,4,'actor',NULL,'[\"Lawyer\"]'),(6776106,1750324,5,'director',NULL,NULL),(6776106,540283,6,'producer','producer',NULL),(6776106,7273771,7,'composer',NULL,NULL),(6776106,3947763,8,'cinematographer',NULL,NULL),(6776106,1064845,9,'editor',NULL,NULL),(6776462,4554791,10,'production_designer',NULL,NULL),(6776462,7416093,1,'actor',NULL,'[\"Reza\"]'),(6776462,6745900,2,'actress',NULL,'[\"Hadis\"]'),(6776462,3975594,3,'actress',NULL,'[\"Ziba\'s mother\"]'),(6776462,9018272,4,'actress',NULL,'[\"Tara\"]'),(6776462,1488024,5,'director',NULL,NULL),(6776462,946949,6,'composer',NULL,NULL),(6776462,4058512,7,'cinematographer',NULL,NULL),(6776462,610194,8,'editor',NULL,NULL),(6776462,6419650,9,'editor',NULL,NULL),(6781982,357453,10,'writer','written by',NULL),(6781982,366389,1,'actor',NULL,'[\"Teddy\"]'),(6781982,1840504,2,'actress',NULL,'[\"Carrie\"]'),(6781982,1443527,3,'actor',NULL,'[\"Mackenzie\"]'),(6781982,539082,4,'actor',NULL,'[\"Jaylen\"]'),(6781982,2700,5,'director',NULL,NULL),(6781982,5183398,6,'writer','written by',NULL),(6781982,1830312,7,'writer','written by',NULL),(6781982,4002545,8,'writer','written by',NULL),(6781982,831557,9,'writer','written by',NULL),(6791096,4565370,10,'producer','producer',NULL),(6791096,2154960,1,'actress',NULL,'[\"Renee Bennett\"]'),(6791096,931329,2,'actress',NULL,'[\"Avery LeClaire\"]'),(6791096,1589279,3,'actress',NULL,'[\"Mallory\"]'),(6791096,2584392,4,'actor',NULL,'[\"Grant Leclair\"]'),(6791096,463359,5,'director',NULL,NULL),(6791096,799050,6,'director',NULL,NULL),(6791096,1291566,7,'producer','producer',NULL),(6791096,629334,8,'producer','producer',NULL),(6791096,1913014,9,'producer','producer',NULL),(6791350,1921680,10,'writer','Mantis created by',NULL),(6791350,695435,1,'actor',NULL,'[\"Peter Quill\",\"Star-Lord\"]'),(6791350,1030244,2,'actor',NULL,'[\"The High Evolutionary\"]'),(6791350,177896,3,'actor',NULL,'[\"Rocket\"]'),(6791350,2962353,4,'actress',NULL,'[\"Mantis\"]'),(6791350,348181,5,'director',NULL,NULL),(6791350,4160687,6,'writer','Drax & Gamora created by',NULL),(6791350,498278,7,'writer','Groot created by',NULL),(6791350,1293367,8,'writer','Groot created by',NULL),(6791350,456158,9,'writer','Groot created by',NULL),(6802400,592746,10,'producer','producer',NULL),(6802400,552,1,'actor',NULL,'[\"Prince Akeem\",\"Clarence\",\"Saul\"]'),(6802400,2119,2,'actor',NULL,'[\"Semmi\",\"Morris\",\"Reverend Brown\"]'),(6802400,372191,3,'actress',NULL,'[\"Lisa\"]'),(6802400,1854664,4,'actor',NULL,'[\"Lavelle Junson\"]'),(6802400,108132,5,'director',NULL,NULL),(6802400,87904,6,'writer','story by',NULL),(6802400,790775,7,'writer','story by',NULL),(6802400,437597,8,'writer','story by',NULL),(6802400,1244069,9,'writer','screenplay by',NULL),(6803046,10508812,10,'composer',NULL,NULL),(6803046,2811823,1,'actress',NULL,'[\"Fay Crocker\"]'),(6803046,4270477,2,'actor',NULL,'[\"Everett Sloan\"]'),(6803046,188687,3,'actress',NULL,'[\"Mabel Blanche\"]'),(6803046,6295217,4,'actor',NULL,'[\"Billy\"]'),(6803046,9451696,5,'director',NULL,NULL),(6803046,10508535,6,'writer','teleplay by',NULL),(6803046,3228752,7,'producer','producer',NULL),(6803046,1628961,8,'producer','producer',NULL),(6803046,7077616,9,'composer',NULL,NULL),(6805302,3939297,10,'cinematographer',NULL,NULL),(6805302,35128,1,'actor',NULL,'[\"Pierre Chavanges\"]'),(6805302,320812,2,'actress',NULL,'[\"Pascale Chavanges\"]'),(6805302,133713,3,'actress',NULL,'[\"Mme Chavanges\"]'),(6805302,99521,4,'actor',NULL,'[\"Jamy\"]'),(6805302,4209268,5,'director',NULL,NULL),(6805302,2681915,6,'writer','scenario',NULL),(6805302,2751505,7,'producer','producer',NULL),(6805302,6095067,8,'producer','producer',NULL),(6805302,2289771,9,'composer',NULL,NULL),(6806448,61045,10,'composer',NULL,NULL),(6806448,425005,1,'actor',NULL,'[\"Hobbs\"]'),(6806448,5458,2,'actor',NULL,'[\"Shaw\"]'),(6806448,252961,3,'actor',NULL,'[\"Brixton\"]'),(6806448,3948952,4,'actress',NULL,'[\"Hattie\"]'),(6806448,500610,5,'director',NULL,NULL),(6806448,604555,6,'writer','screenplay by',NULL),(6806448,1510800,7,'writer','screenplay by',NULL),(6806448,860155,8,'writer','based on characters created by',NULL),(6806448,1205652,9,'producer','producer',NULL),(6811018,5572705,10,'composer',NULL,NULL),(6811018,6162831,1,'actor',NULL,'[\"Alex\"]'),(6811018,1740112,2,'actress',NULL,'[\"Mary\"]'),(6811018,9299964,3,'actor',NULL,'[\"Bedders\"]'),(6811018,6999211,4,'actor',NULL,'[\"Lance\"]'),(6811018,180428,5,'director',NULL,NULL),(6811018,79677,6,'producer','producer',NULL),(6811018,271479,7,'producer','producer',NULL),(6811018,661912,8,'producer','producer',NULL),(6811018,16332,9,'composer',NULL,NULL),(6814914,7346682,1,'actress',NULL,'[\"Djam\"]'),(6814914,8787,2,'actor',NULL,'[\"Kakourgos\"]'),(6814914,5632119,3,'actress',NULL,'[\"Avril\"]'),(6814914,4249741,4,'actor',NULL,'[\"Pano\"]'),(6814914,309697,5,'director',NULL,NULL),(6814914,1618579,6,'producer','producer',NULL),(6814914,315803,7,'cinematographer','director of photography',NULL),(6814914,201764,8,'editor',NULL,NULL),(6818880,9001128,10,'cinematographer',NULL,NULL),(6818880,3305952,1,'actor',NULL,'[\"Vasyl Petrovych Holoborodko\"]'),(6818880,4915252,2,'actor',NULL,'[\"Sergey Viktorovich Mukhin\"]'),(6818880,49182,3,'actor',NULL,'[\"Yuriy Ivanovich Chuiko\"]'),(6818880,9001131,4,'actress',NULL,'[\"Oksana Skovoroda\"]'),(6818880,1823244,5,'director',NULL,NULL),(6818880,3424736,6,'producer','producer',NULL),(6818880,3425277,7,'producer','producer',NULL),(6818880,2435496,8,'producer','producer',NULL),(6818880,6114277,9,'composer',NULL,NULL),(6823148,4752699,10,'producer','producer',NULL),(6823148,1812637,1,'actress',NULL,'[\"Benedetta\"]'),(6823148,1648,2,'actress',NULL,'[\"Soeur Felicita - abbesse\"]'),(6823148,7346682,3,'actress',NULL,'[\"Bartolomea\"]'),(6823148,933727,4,'actor',NULL,'[\"Le nonce\"]'),(6823148,682,5,'director',NULL,NULL),(6823148,83547,6,'writer','screenplay',NULL),(6823148,8949167,7,'writer','book \"Immodest Acts: The Life of a Lesbian Nun in Renaissance Italy\"',NULL),(6823148,94726,8,'writer','screenplay collaboration',NULL),(6823148,69963,9,'producer','producer',NULL),(6823368,1227638,10,'cinematographer',NULL,NULL),(6823368,564215,1,'actor',NULL,'[\"Patricia\",\"Dennis\",\"Hedwig\"]'),(6823368,246,2,'actor',NULL,'[\"David Dunn\"]'),(6823368,168,3,'actor',NULL,'[\"Elijah Price\"]'),(6823368,5896355,4,'actress',NULL,'[\"Casey Cooke\"]'),(6823368,796117,5,'director',NULL,NULL),(6823368,81514,6,'producer','producer',NULL),(6823368,89658,7,'producer','producer',NULL),(6823368,2248864,8,'producer','producer',NULL),(6823368,3602603,9,'composer',NULL,NULL),(6834916,11615694,10,'editor',NULL,NULL),(6834916,12078,1,'actor',NULL,'[\"Martin Baxter\"]'),(6834916,10159785,2,'actress',NULL,'[\"Tatyana\"]'),(6834916,8886237,3,'actress',NULL,'[\"Sasha Stepanenko\"]'),(6834916,4835867,4,'actress',NULL,'[\"Lisa Baxter\"]'),(6834916,1561185,5,'director',NULL,NULL),(6834916,4669546,6,'producer','producer',NULL),(6834916,3434775,7,'producer','producer',NULL),(6834916,7294678,8,'composer',NULL,NULL),(6834916,4512566,9,'cinematographer',NULL,NULL),(6841122,1269929,10,'editor',NULL,NULL),(6841122,2605345,1,'actress',NULL,'[\"Alice\"]'),(6841122,1813221,2,'actress',NULL,'[\"Vera\"]'),(6841122,934362,3,'actress',NULL,'[\"Older Alice\"]'),(6841122,183822,4,'actor',NULL,'[\"Mr Sullivan\"]'),(6841122,7328140,5,'director',NULL,NULL),(6841122,373456,6,'producer','producer',NULL),(6841122,1214083,7,'producer','producer',NULL),(6841122,2890617,8,'composer',NULL,NULL),(6841122,1124802,9,'cinematographer','director of photography',NULL),(6842126,1391438,10,'producer','producer',NULL),(6842126,10341835,1,'actor',NULL,'[\"Young Alistair Burke\"]'),(6842126,8923497,2,'actor',NULL,'[\"Conor Callahan\"]'),(6842126,2261921,3,'actress',NULL,'[\"Noreen Callahan\"]'),(6842126,10341836,4,'actress',NULL,'[\"Siobhan Callahan\"]'),(6842126,1054429,5,'director',NULL,NULL),(6842126,1193624,6,'producer','producer',NULL),(6842126,356201,7,'producer','producer',NULL),(6842126,528485,8,'producer','producer',NULL),(6842126,1427345,9,'producer','producer',NULL),(6856242,717230,10,'producer','producer',NULL),(6856242,146,1,'actor',NULL,'[\"Orlando Oxford\"]'),(6856242,2605345,2,'actress',NULL,'[\"Polly\"]'),(6856242,406975,3,'actor',NULL,'[\"Grigori Rasputin\"]'),(6856242,6170168,4,'actor',NULL,'[\"Conrad Oxford\"]'),(6856242,891216,5,'director',NULL,NULL),(6856242,2244980,6,'writer','screenplay by',NULL),(6856242,2092839,7,'writer','based on the comic book \"The Secret Service\" by',NULL),(6856242,1733301,8,'writer','based on the comic book \"The Secret Service\" by',NULL),(6856242,92061,9,'producer','producer',NULL),(6857112,1227638,10,'cinematographer','director of photography',NULL),(6857112,2143282,1,'actress',NULL,'[\"Adelaide Wilson\",\"Red\"]'),(6857112,6328300,2,'actor',NULL,'[\"Gabe Wilson\",\"Abraham\"]'),(6857112,5253,3,'actress',NULL,'[\"Kitty Tyler\",\"Dahlia\"]'),(6857112,1727367,4,'actor',NULL,'[\"Josh Tyler\",\"Tex\"]'),(6857112,1443502,5,'director',NULL,NULL),(6857112,89658,6,'producer','producer',NULL),(6857112,9827373,7,'producer','producer',NULL),(6857112,572014,8,'producer','producer',NULL),(6857112,8752173,9,'composer',NULL,NULL),(6857166,242491,10,'cinematographer','director of photography',NULL),(6857166,473,1,'actress',NULL,'[\"Diane\"]'),(6857166,404,2,'actress',NULL,'[\"Vivian\"]'),(6857166,298,3,'actress',NULL,'[\"Sharon\"]'),(6857166,5460,4,'actress',NULL,'[\"Carol\"]'),(6857166,2250139,5,'director',NULL,NULL),(6857166,799958,6,'writer','written by',NULL),(6857166,5653115,7,'producer','producer',NULL),(6857166,3644845,8,'producer','producer',NULL),(6857166,621829,9,'composer',NULL,NULL),(6857988,693833,10,'cinematographer',NULL,NULL),(6857988,252979,1,'actor',NULL,'[\"Damien\"]'),(6857988,1024314,2,'actress',NULL,'[\"Alexandra Lamour\"]'),(6857988,2016581,3,'actor',NULL,'[\"Christophe\"]'),(6857988,3226240,4,'actress',NULL,'[\"Sybille\"]'),(6857988,693844,5,'director',NULL,NULL),(6857988,1856891,6,'writer','collaborating writer',NULL),(6857988,2460996,7,'producer','producer',NULL),(6857988,4532920,8,'producer','producer',NULL),(6857988,2919157,9,'composer',NULL,NULL),(6859352,5436235,10,'production_designer',NULL,NULL),(6859352,356021,1,'actress',NULL,'[\"Lisa\"]'),(6859352,4726634,2,'actress',NULL,'[\"Maci\"]'),(6859352,3871647,3,'actress',NULL,'[\"Jennelle\"]'),(6859352,1074492,4,'actress',NULL,'[\"Taylor\"]'),(6859352,1216004,5,'director',NULL,NULL),(6859352,991229,6,'producer','producer',NULL),(6859352,4930589,7,'producer','producer',NULL),(6859352,3442,8,'cinematographer','director of photography',NULL),(6859352,804492,9,'editor',NULL,NULL),(6868216,931660,10,'cinematographer','director of photography',NULL),(6868216,734442,1,'actor',NULL,'[\"Shawn Spencer\"]'),(6868216,384211,2,'actor',NULL,'[\"Burton Guster\"]'),(6868216,648486,3,'actor',NULL,'[\"Carlton Lassiter\"]'),(6868216,493279,4,'actress',NULL,'[\"Juliet O\'Hara\"]'),(6868216,291692,5,'director',NULL,NULL),(6868216,155739,6,'producer','producer',NULL),(6868216,330430,7,'producer','producer',NULL),(6868216,1265485,8,'composer',NULL,NULL),(6868216,2296072,9,'composer',NULL,NULL),(6870750,327439,1,'actress',NULL,NULL),(6870750,380441,2,'actor',NULL,NULL),(6870750,8980932,3,'director',NULL,NULL),(6870750,8980933,4,'writer',NULL,NULL),(6870750,1324065,5,'producer','producer',NULL),(6870750,3361391,6,'composer',NULL,NULL),(6878306,616153,10,'producer','producer',NULL),(6878306,158,1,'actor',NULL,'[\"Captain Kidd\"]'),(6878306,8023748,2,'actress',NULL,'[\"Johanna\"]'),(6878306,40106,3,'actor',NULL,'[\"Cavalry Lieutenant\"]'),(6878306,6068870,4,'actor',NULL,'[\"Cavalry Rider\"]'),(6878306,339030,5,'director',NULL,NULL),(6878306,1729294,6,'writer','screenplay by',NULL),(6878306,422696,7,'writer','based upon the novel by',NULL),(6878306,324556,8,'producer','producer',NULL),(6878306,329084,9,'producer','producer',NULL),(6878820,109658,10,'cinematographer',NULL,NULL),(6878820,3676489,1,'actor',NULL,'[\"Zed\"]'),(6878820,4883197,2,'actress',NULL,'[\"Addison\"]'),(6878820,5251583,3,'actor',NULL,'[\"Bucky\"]'),(6878820,2069734,4,'actress',NULL,'[\"Eliza\"]'),(6878820,388505,5,'director',NULL,NULL),(6878820,2922750,6,'writer','written by',NULL),(6878820,1760850,7,'writer','written by',NULL),(6878820,659823,8,'producer','producer',NULL),(6878820,3392,9,'composer',NULL,NULL),(6889032,3742427,10,'cinematographer',NULL,NULL),(6889032,675409,1,'actor',NULL,'[\"Hasse P\"]'),(6889032,75087,2,'actress',NULL,'[\"Dyr-Gunilla\"]'),(6889032,3866005,3,'actress',NULL,'[\"Åsa Sjöman\"]'),(6889032,902059,4,'actor',NULL,'[\"Ivar Sjöman\"]'),(6889032,1229568,5,'director',NULL,NULL),(6889032,1229296,6,'director',NULL,NULL),(6889032,43593,7,'producer','producer',NULL),(6889032,3665235,8,'producer','producer',NULL),(6889032,845450,9,'producer','producer',NULL),(6892462,3028383,10,'producer','producer',NULL),(6892462,3588254,1,'actor',NULL,'[\"Farès\"]'),(6892462,254,2,'actress',NULL,'[\"Danny\"]'),(6892462,1993,3,'actor',NULL,'[\"Henri\"]'),(6892462,4205963,4,'actress',NULL,'[\"Lamya\"]'),(6892462,310615,5,'director',NULL,NULL),(6892462,4080102,6,'writer','adaptation',NULL),(6892462,4380548,7,'writer','adaptation',NULL),(6892462,1661920,8,'producer','producer',NULL),(6892462,3923278,9,'producer','producer',NULL),(6902332,2674932,10,'producer','producer',NULL),(6902332,935395,1,'actress',NULL,'[\"Sarah\"]'),(6902332,553,2,'actor',NULL,'[\"Jim\"]'),(6902332,1840708,3,'actress',NULL,'[\"Rosa\"]'),(6902332,704696,4,'actor',NULL,'[\"Mauricio Guerrero\"]'),(6902332,520749,5,'director',NULL,NULL),(6902332,2290706,6,'writer','written by',NULL),(6902332,3724288,7,'writer','written by',NULL),(6902332,1692073,8,'producer','producer',NULL),(6902332,2346199,9,'producer','producer',NULL),(6902676,162989,10,'cinematographer',NULL,NULL),(6902676,705356,1,'actor',NULL,'[\"Miles\"]'),(6902676,3034977,2,'actress',NULL,'[\"Nix\"]'),(6902676,219329,3,'actor',NULL,'[\"Riktor\"]'),(6902676,6812060,4,'actress',NULL,'[\"Nova\"]'),(6902676,3950520,5,'director',NULL,NULL),(6902676,962223,6,'producer','producer',NULL),(6902676,2094135,7,'producer','producer',NULL),(6902676,1765773,8,'producer','producer',NULL),(6902676,1190888,9,'composer',NULL,NULL),(6908274,5490847,10,'producer','producer',NULL),(6908274,1246047,1,'actress',NULL,'[\"Vera Roy\"]'),(6908274,3779182,2,'actor',NULL,'[\"Inspector Leyra\"]'),(6908274,349522,3,'actor',NULL,'[\"Ángel Prieto\"]'),(6908274,1486647,4,'actor',NULL,'[\"David Ortiz\"]'),(6908274,1079062,5,'director',NULL,NULL),(6908274,1516346,6,'writer',NULL,NULL),(6908274,303922,7,'producer','producer',NULL),(6908274,1481660,8,'producer','producer',NULL),(6908274,1666083,9,'producer','producer',NULL),(6911608,324556,10,'producer','producer',NULL),(6911608,4141252,1,'actress',NULL,'[\"Young Donna\"]'),(6911608,1086543,2,'actress',NULL,'[\"Sophie\"]'),(6911608,658,3,'actress',NULL,'[\"Donna\"]'),(6911608,333,4,'actress',NULL,'[\"Ruby Sheridan\"]'),(6911608,662530,5,'director',NULL,NULL),(6911608,193485,6,'writer','story by',NULL),(6911608,424735,7,'writer','story by',NULL),(6911608,187050,8,'writer','originally conceived by',NULL),(6911608,1755868,9,'writer','based on the songs of',NULL),(6918220,634204,10,'producer','producer',NULL),(6918220,1307409,1,'actor',NULL,'[\"Matthias Le Goff\"]'),(6918220,1839955,2,'actor',NULL,'[\"Jean\"]'),(6918220,1044641,3,'actor',NULL,'[\"Cédric\"]'),(6918220,3530343,4,'actor',NULL,'[\"Alex\"]'),(6918220,4355349,5,'director','co-director',NULL),(6918220,9009942,6,'director','co-director',NULL),(6918220,2310700,7,'writer','collaboration',NULL),(6918220,1135665,8,'producer','producer',NULL),(6918220,4746372,9,'producer','producer',NULL),(6920356,10660486,1,'actor',NULL,'[\"Radio Interviewer\"]'),(6920356,4108791,2,'actor',NULL,'[\"Phil\"]'),(6920356,1481829,3,'actor',NULL,'[\"Jack\"]'),(6920356,5141621,4,'actor',NULL,'[\"Frankie\"]'),(6920356,389712,5,'director',NULL,NULL),(6920356,771662,6,'producer','producer',NULL),(6920356,1351597,7,'cinematographer','director of photography',NULL),(6920356,1258908,8,'editor',NULL,NULL),(6920356,172850,9,'production_designer',NULL,NULL),(6921996,328759,10,'composer',NULL,NULL),(6921996,100,1,'actor',NULL,'[\"Johnny English\"]'),(6921996,587950,2,'actor',NULL,'[\"Bough\"]'),(6921996,1385871,3,'actress',NULL,'[\"Ophelia Bhuletova\"]'),(6921996,668,4,'actress',NULL,'[\"Prime Minister\"]'),(6921996,1256143,5,'director',NULL,NULL),(6921996,204030,6,'writer','screenplay by',NULL),(6921996,79677,7,'producer','producer',NULL),(6921996,163770,8,'producer','producer',NULL),(6921996,271479,9,'producer','producer',NULL),(6924650,937986,10,'editor',NULL,NULL),(6924650,4534098,1,'actor',NULL,'[\"Dick Best\"]'),(6924650,933940,2,'actor',NULL,'[\"Edwin Layton\"]'),(6924650,437,3,'actor',NULL,'[\"Chester W. Nimitz\"]'),(6924650,1812656,4,'actor',NULL,'[\"Wade McClusky\"]'),(6924650,386,5,'director',NULL,NULL),(6924650,7873659,6,'writer','written by',NULL),(6924650,460057,7,'producer','producer',NULL),(6924650,911173,8,'composer',NULL,NULL),(6924650,62373,9,'cinematographer',NULL,NULL),(6927152,4441340,10,'composer',NULL,NULL),(6927152,1593460,1,'actor',NULL,'[\"Lee Chung\"]'),(6927152,1981533,2,'actress',NULL,'[\"Concubine Jo (Guest star)\"]'),(6927152,6757627,3,'actor',NULL,'[\"Lee Jeong-rang\"]'),(6927152,417520,4,'actor',NULL,'[\"Minister Kim Ja-joon\"]'),(6927152,6530002,5,'director',NULL,NULL),(6927152,1369364,6,'writer',NULL,NULL),(6927152,2008414,7,'writer',NULL,NULL),(6927152,5434379,8,'writer',NULL,NULL),(6927152,4220250,9,'producer','producer',NULL),(6929642,9861461,10,'writer','tamil dialogue',NULL),(6929642,707425,1,'actor',NULL,'[\"Karikaalan\"]'),(6929642,7113,2,'actor',NULL,'[\"Haridev Abhayankar\"]'),(6929642,2284321,3,'actor',NULL,'[\"Vaaliyappa\"]'),(6929642,710545,4,'actress',NULL,'[\"Selvi\"]'),(6929642,3163794,5,'director',NULL,NULL),(6929642,3294070,6,'writer','dialogue',NULL),(6929642,4547509,7,'writer','hindi dialogue',NULL),(6929642,9861460,8,'writer','story',NULL),(6929642,9668238,9,'writer','telugu dialogue',NULL),(6966692,3929283,10,'composer',NULL,NULL),(6966692,1557,1,'actor',NULL,'[\"Tony Lip\"]'),(6966692,991810,2,'actor',NULL,'[\"Dr. Donald Shirley\"]'),(6966692,4802,3,'actress',NULL,'[\"Dolores\"]'),(6966692,1724319,4,'actor',NULL,'[\"Johnny Venere\"]'),(6966692,268380,5,'director',NULL,NULL),(6966692,885014,6,'writer','written by',NULL),(6966692,192942,7,'writer','written by',NULL),(6966692,121724,8,'producer','producer',NULL),(6966692,921853,9,'producer','producer',NULL),(6975598,4251668,10,'producer','producer',NULL),(6975598,79071,1,'actor',NULL,'[\"Hugh Dangler\"]'),(6975598,1051221,2,'actress',NULL,'[\"Babs Dangler\"]'),(6975598,2498781,3,'actress',NULL,'[\"Babysitter\"]'),(6975598,5412083,4,'actor',NULL,'[\"Jace Bigman\"]'),(6975598,179880,5,'director',NULL,NULL),(6975598,3936882,6,'writer',NULL,NULL),(6975598,1670774,7,'writer',NULL,NULL),(6975598,4525576,8,'writer',NULL,NULL),(6975598,1954285,9,'producer','producer',NULL),(6987770,9044236,10,'composer',NULL,NULL),(6987770,213,1,'actress',NULL,'[\"Lindsay\"]'),(6987770,206,2,'actor',NULL,'[\"Frank\"]'),(6987770,8329660,3,'actress',NULL,'[\"Bride\"]'),(6987770,9846826,4,'actor',NULL,'[\"Groom\"]'),(6987770,505741,5,'director',NULL,NULL),(6987770,2068038,6,'producer','producer',NULL),(6987770,429134,7,'producer','producer',NULL),(6987770,528930,8,'producer','producer',NULL),(6987770,743919,9,'composer',NULL,NULL),(6992978,1351597,10,'cinematographer','director of photography',NULL),(6992978,842770,1,'actress',NULL,'[\"Rosalind\"]'),(6992978,4944898,2,'actress',NULL,'[\"Julie (Harte)\"]'),(6992978,10488416,3,'actor',NULL,'[\"William\"]'),(6992978,8205905,4,'actress',NULL,'[\"Elisa\"]'),(6992978,389712,5,'director',NULL,NULL),(6992978,347384,6,'producer','producer',NULL),(6992978,1103466,7,'producer','producer',NULL),(6992978,4499999,8,'producer','producer',NULL),(6992978,771662,9,'producer','producer',NULL),(6998518,999525,10,'producer','producer',NULL),(6998518,115,1,'actor',NULL,'[\"Red Miller\"]'),(6998518,2057859,2,'actress',NULL,'[\"Mandy Bloom\"]'),(6998518,730070,3,'actor',NULL,'[\"Jeremiah Sand\"]'),(6998518,219329,4,'actor',NULL,'[\"Brother Swan\"]'),(6998518,181903,5,'director',NULL,NULL),(6998518,2507810,6,'writer','written by',NULL),(6998518,1085757,7,'writer','written by',NULL),(6998518,1924867,8,'producer','producer',NULL),(6998518,3763806,9,'producer','producer',NULL),(7008872,1880996,10,'cinematographer','director of photography',NULL),(7008872,2348627,1,'actor',NULL,'[\"Jared Eamons\"]'),(7008872,173,2,'actress',NULL,'[\"Nancy Eamons\"]'),(7008872,249291,3,'actor',NULL,'[\"Victor Sykes\"]'),(7008872,128,4,'actor',NULL,'[\"Marshall Eamons\"]'),(7008872,9060471,5,'writer','based on the memoir Boy Erased by',NULL),(7008872,326512,6,'producer','producer',NULL),(7008872,1097895,7,'producer','producer',NULL),(7008872,3737483,8,'composer',NULL,NULL),(7008872,2450367,9,'composer',NULL,NULL),(7014006,4047380,10,'composer',NULL,NULL),(7014006,3220568,1,'actress',NULL,'[\"Kayla Day\"]'),(7014006,357979,2,'actor',NULL,'[\"Mark Day\"]'),(7014006,3196216,3,'actress',NULL,'[\"Olivia\"]'),(7014006,3638077,4,'actor',NULL,'[\"Gabe\"]'),(7014006,3102998,5,'director',NULL,NULL),(7014006,4791912,6,'producer','producer',NULL),(7014006,748784,7,'producer','producer',NULL),(7014006,3846239,8,'producer','producer',NULL),(7014006,944803,9,'producer','producer',NULL),(7040874,6701,10,'cinematographer','director of photography',NULL),(7040874,447695,1,'actress',NULL,'[\"Stephanie Smothers\"]'),(7040874,515116,2,'actress',NULL,'[\"Emily Nelson\"]'),(7040874,6525901,3,'actor',NULL,'[\"Sean Townsend\"]'),(7040874,710330,4,'actor',NULL,'[\"Darren\"]'),(7040874,82450,5,'director',NULL,NULL),(7040874,9079127,6,'writer','based upon the novel by',NULL),(7040874,789366,7,'writer','screenplay by',NULL),(7040874,2295810,8,'producer','producer',NULL),(7040874,788640,9,'composer',NULL,NULL),(7069210,755911,10,'producer','producer',NULL),(7069210,933940,1,'actor',NULL,'[\"Ed Warren\"]'),(7069210,267812,2,'actress',NULL,'[\"Lorraine Warren\"]'),(7069210,4754741,3,'actor',NULL,'[\"Arne Cheyenne Johnson\"]'),(7069210,7511512,4,'actress',NULL,'[\"Debbie Glatzel\"]'),(7069210,1980431,5,'director',NULL,NULL),(7069210,424901,6,'writer','screenplay by',NULL),(7069210,1490123,7,'writer','story by',NULL),(7069210,370937,8,'writer','based on characters created by',NULL),(7069210,370928,9,'writer','based on characters created by',NULL),(7073710,5557932,1,'actress',NULL,'[\"Jackie\"]'),(7073710,20329,2,'actress',NULL,'[\"Jules\"]'),(7073710,532900,3,'actress',NULL,'[\"Sarah\"]'),(7073710,1585729,4,'actor',NULL,'[\"Daniel\"]'),(7073710,4017355,5,'director',NULL,NULL),(7073710,4410370,6,'producer','producer',NULL),(7073710,4811901,7,'producer','producer',NULL),(7073710,7906118,8,'producer','producer',NULL),(7073710,3718242,9,'cinematographer',NULL,NULL),(7074886,1387379,10,'composer',NULL,NULL),(7074886,413168,1,'actor',NULL,'[\"Gary Hart\"]'),(7074886,267812,2,'actress',NULL,'[\"Lee Hart\"]'),(7074886,799777,3,'actor',NULL,'[\"Bill Dixon\"]'),(7074886,1975628,4,'actor',NULL,'[\"Billy Shore\"]'),(7074886,718646,5,'director',NULL,NULL),(7074886,2741096,6,'writer','written by',NULL),(7074886,5966976,7,'writer','written by',NULL),(7074886,2615685,8,'producer','producer',NULL),(7074886,317943,9,'producer','producer',NULL),(7086706,666203,10,'writer','teleplay by',NULL),(7086706,1642290,1,'actress',NULL,'[\"Misty Calhoun\"]'),(7086706,2373827,2,'actor',NULL,'[\"Trent Slater\"]'),(7086706,4729,3,'actor',NULL,'[\"Carl Durant\"]'),(7086706,7523745,4,'actor',NULL,'[\"Aaron Ellroy\"]'),(7086706,779011,5,'director',NULL,NULL),(7086706,3300,6,'writer','based on characters created by',NULL),(7086706,694526,7,'writer','based on characters created by',NULL),(7086706,694638,8,'writer','based on characters created by',NULL),(7086706,118566,9,'writer','story by',NULL),(7097896,866157,10,'producer','producer',NULL),(7097896,362766,1,'actor',NULL,'[\"Eddie Brock\",\"Venom\"]'),(7097896,437,2,'actor',NULL,'[\"Cletus Kasady\",\"Carnage\"]'),(7097896,931329,3,'actress',NULL,'[\"Anne Weying\"]'),(7097896,365140,4,'actress',NULL,'[\"Frances Barrison\",\"Shriek\"]'),(7097896,785227,5,'director',NULL,NULL),(7097896,545150,6,'writer','screenplay by',NULL),(7097896,32696,7,'producer','producer',NULL),(7097896,404446,8,'producer','producer',NULL),(7097896,1166871,9,'producer','producer',NULL),(7098658,424103,10,'producer','producer',NULL),(7098658,1017633,1,'actress',NULL,'[\"Sehmat Khan\"]'),(7098658,5817249,2,'actor',NULL,'[\"Iqbal Syed\"]'),(7098658,438496,3,'actor',NULL,'[\"Hidayat Khan\"]'),(7098658,788918,4,'actor',NULL,'[\"Brig. Parvez Syed\"]'),(7098658,1126068,5,'director',NULL,NULL),(7098658,7415589,6,'writer','based on the book \'Calling Sehmat\' by',NULL),(7098658,1818188,7,'writer','screenplay',NULL),(7098658,3068550,8,'producer','producer',NULL),(7098658,424101,9,'producer','producer',NULL),(7125860,1532846,10,'producer','producer',NULL),(7125860,8460487,1,'actress',NULL,'[\"Tish Rivers\"]'),(7125860,4150847,2,'actor',NULL,'[\"Alonzo \'Fonny\' Hunt\"]'),(7125860,5093,3,'actress',NULL,'[\"Sharon Rivers\"]'),(7125860,3500582,4,'actress',NULL,'[\"Ernestine Rivers\"]'),(7125860,1503575,5,'director',NULL,NULL),(7125860,49924,6,'writer','based on the book by',NULL),(7125860,306890,7,'producer','producer',NULL),(7125860,1250070,8,'producer','producer',NULL),(7125860,2072976,9,'producer','producer',NULL),(7126948,746273,10,'producer','producer',NULL),(7126948,2933757,1,'actress',NULL,'[\"Diana Prince\"]'),(7126948,1517976,2,'actor',NULL,'[\"Steve Trevor\"]'),(7126948,1325419,3,'actress',NULL,'[\"Barbara Minerva\"]'),(7126948,50959,4,'actor',NULL,'[\"Maxwell Lord\"]'),(7126948,420941,5,'director',NULL,NULL),(7126948,424315,6,'writer','story by',NULL),(7126948,1709264,7,'writer','screenplay by',NULL),(7126948,551376,8,'writer','based on characters from DC Wonder Woman created by',NULL),(7126948,2331,9,'producer','producer',NULL),(7131622,512686,10,'production_designer',NULL,NULL),(7131622,138,1,'actor',NULL,'[\"Rick Dalton\"]'),(7131622,93,2,'actor',NULL,'[\"Cliff Booth\"]'),(7131622,3053338,3,'actress',NULL,'[\"Sharon Tate\"]'),(7131622,386472,4,'actor',NULL,'[\"Jay Sebring\"]'),(7131622,233,5,'director',NULL,NULL),(7131622,382268,6,'producer','producer',NULL),(7131622,570690,7,'producer','producer',NULL),(7131622,724744,8,'cinematographer','director of photography',NULL),(7131622,711235,9,'editor',NULL,NULL),(7131870,1310583,10,'producer','producer',NULL),(7131870,943104,1,'actor',NULL,'[\"Leng Feng\"]'),(7131870,342029,2,'actor',NULL,'[\"Big Daddy\"]'),(7131870,3018796,3,'actress',NULL,'[\"Rachel\"]'),(7131870,2518711,4,'actor',NULL,'[\"He Jianguo\"]'),(7131870,8127866,5,'writer','screenplay by',NULL),(7131870,3146222,6,'writer','screenplay by',NULL),(7131870,11840879,7,'writer',NULL,NULL),(7131870,8953713,8,'producer','producer',NULL),(7131870,9202914,9,'producer','producer',NULL),(7133686,9063133,10,'writer','story by',NULL),(7133686,1024677,1,'actor',NULL,'[\"Project 77\"]'),(7133686,2304722,2,'actress',NULL,'[\"Mai\"]'),(7133686,837177,3,'actor',NULL,'[\"Justin Pin\",\"Ares\"]'),(7133686,671567,4,'actor',NULL,'[\"Momo\"]'),(7133686,2788440,5,'director',NULL,NULL),(7133686,1666476,6,'director',NULL,NULL),(7133686,9063132,7,'writer','based on the comic \"7723\" by',NULL),(7133686,12883055,8,'writer','screenplay by',NULL),(7133686,2673784,9,'writer','additional screenplay material by',NULL),(7134096,90312,10,'cinematographer','director of photography',NULL),(7134096,515116,1,'actress',NULL,'[\"Stephanie Patrick\"]'),(7134096,104114,2,'actor',NULL,'[\"Eric Lehmans\"]'),(7134096,11042323,3,'actress',NULL,'[\"Sarah Patrick\"]'),(7134096,10410322,4,'actor',NULL,'[\"David Patrick\"]'),(7134096,1543747,5,'director',NULL,NULL),(7134096,3423316,6,'writer','based on the novel by',NULL),(7134096,110483,7,'producer','producer',NULL),(7134096,933865,8,'producer','producer',NULL),(7134096,2385360,9,'composer',NULL,NULL),(7134690,1894715,10,'producer','producer',NULL),(7134690,4608280,1,'actress',NULL,'[\"Maggie\"]'),(7134690,5391835,2,'actress',NULL,'[\"Hannah\"]'),(7134690,9036891,3,'actor',NULL,'[\"Luke\"]'),(7134690,7169972,4,'actor',NULL,'[\"Michael\"]'),(7134690,4644677,5,'director',NULL,NULL),(7134690,6996144,6,'writer','written by',NULL),(7134690,128499,7,'writer','story by',NULL),(7134690,7208402,8,'producer','producer',NULL),(7134690,5227903,9,'producer','producer',NULL),(7137380,1312760,10,'cinematographer','director of photography',NULL),(7137380,173,1,'actress',NULL,'[\"Erin Bell\"]'),(7137380,1527905,2,'actor',NULL,'[\"Silas\"]'),(7137380,1137209,3,'actress',NULL,'[\"Petra\"]'),(7137380,1659221,4,'actor',NULL,'[\"Chris\"]'),(7137380,476201,5,'director',NULL,NULL),(7137380,6534,6,'writer','written by',NULL),(7137380,542062,7,'writer','written by',NULL),(7137380,1757754,8,'producer','producer',NULL),(7137380,788640,9,'composer',NULL,NULL),(7146812,2217,10,'composer',NULL,NULL),(7146812,4043618,1,'actor',NULL,'[\"Ian Lightfoot\"]'),(7146812,695435,2,'actor',NULL,'[\"Barley Lightfoot\"]'),(7146812,506,3,'actress',NULL,'[\"Laurel Lightfoot\"]'),(7146812,818055,4,'actress',NULL,'[\"The Manticore\"]'),(7146812,768959,5,'director',NULL,NULL),(7146812,1291392,6,'writer','original story by',NULL),(7146812,3268751,7,'writer','original story by',NULL),(7146812,706032,8,'producer','producer',NULL),(7146812,4582,9,'composer',NULL,NULL),(7156222,688143,1,'actor',NULL,'[\"Le commissaire Buron\"]'),(7156222,2669103,2,'actor',NULL,'[\"Louis Fugain\"]'),(7156222,8988411,3,'actor',NULL,'[\"Philippe\"]'),(7156222,1326732,4,'actress',NULL,'[\"Fiona\"]'),(7156222,1189197,5,'director',NULL,NULL),(7156222,1744135,6,'producer','producer',NULL),(7156222,1700020,7,'producer','producer',NULL),(7156222,3741451,8,'composer',NULL,NULL),(7156222,4458207,9,'production_designer',NULL,NULL),(7158430,1548770,10,'composer',NULL,NULL),(7158430,644406,1,'actor',NULL,'[\"Frank Fisher\"]'),(7158430,4169922,2,'actress',NULL,'[\"Sam Fisher\"]'),(7158430,1100,3,'actress',NULL,'[\"Marianne Fisher\"]'),(7158430,1057,4,'actress',NULL,'[\"Leslie\"]'),(7158430,1417640,5,'director',NULL,NULL),(7158430,5303256,6,'writer',NULL,NULL),(7158430,83851,7,'producer','producer',NULL),(7158430,991229,8,'producer','producer',NULL),(7158430,4930589,9,'producer','producer',NULL),(7160070,7971543,10,'editor',NULL,NULL),(7160070,1978402,1,'actor',NULL,'[\"Gang-lim\"]'),(7160070,1028580,2,'actor',NULL,'[\"Kim Ja-hong\"]'),(7160070,2352559,3,'actor',NULL,'[\"Haewonmaek\"]'),(7160070,3676100,4,'actress',NULL,'[\"Lee Duk-choon\"]'),(7160070,1420683,5,'director',NULL,NULL),(7160070,9145536,6,'writer','story',NULL),(7160070,9571714,7,'producer','producer',NULL),(7160070,51917,8,'composer',NULL,NULL),(7160070,2303963,9,'cinematographer',NULL,NULL),(7167630,277730,10,'writer','Batman created by',NULL),(7167630,339304,1,'actor',NULL,'[\"Batman\",\"Bruce Wayne\"]'),(7167630,1358539,2,'actress',NULL,'[\"Selina Kyle\"]'),(7167630,184963,3,'actor',NULL,'[\"Father Callahan\",\"Additional Voices\"]'),(7167630,224007,4,'actor',NULL,'[\"Chief Bullock\",\"Big Bill Dust\",\"Additional Voices\"]'),(7167630,515005,5,'director',NULL,NULL),(7167630,471172,6,'writer','written by',NULL),(7167630,9150568,7,'writer','graphic novel: \"Gotham by Gaslight\"',NULL),(7167630,586005,8,'writer','graphic novel: \"Gotham by Gaslight\"',NULL),(7167630,4170,9,'writer','Batman created by',NULL),(7167658,3542504,10,'writer','character created by: Aquaman',NULL),(7167658,5278,1,'actor',NULL,'[\"Superman\"]'),(7167658,5381,2,'actress',NULL,'[\"Lois Lane\"]'),(7167658,933988,3,'actor',NULL,'[\"Lex Luthor\"]'),(7167658,206257,4,'actress',NULL,'[\"Wonder Woman\"]'),(7167658,4267562,5,'director',NULL,NULL),(7167658,515005,6,'director',NULL,NULL),(7167658,2284995,7,'writer','written by',NULL),(7167658,796950,8,'writer','character created by: Superman',NULL),(7167658,795975,9,'writer','character created by: Superman',NULL),(7167686,4170,10,'writer','created by: Batman',NULL),(7167686,5278,1,'actor',NULL,'[\"Superman\",\"Clark Kent\",\"Cyborg Superman\"]'),(7167686,5381,2,'actress',NULL,'[\"Lois Lane\"]'),(7167686,933988,3,'actor',NULL,'[\"Lex Luthor\"]'),(7167686,264579,4,'actor',NULL,'[\"Hank Henshaw\"]'),(7167686,515005,5,'director',NULL,NULL),(7167686,471172,6,'writer','written by',NULL),(7167686,2004812,7,'writer','written by',NULL),(7167686,796950,8,'writer','created by: Superman',NULL),(7167686,795975,9,'writer','created by: Superman',NULL),(7178640,3330,10,'editor',NULL,NULL),(7178640,565250,1,'actress',NULL,'[\"Carol\"]'),(7178640,179479,2,'actor',NULL,'[\"Voice of Superintelligence\",\"James Corden\"]'),(7178640,134072,3,'actor',NULL,'[\"George\"]'),(7178640,3109964,4,'actor',NULL,'[\"Dennis\"]'),(7178640,1229520,5,'director',NULL,NULL),(7178640,1133719,6,'writer','written by',NULL),(7178640,184620,7,'producer','producer',NULL),(7178640,1135983,8,'composer',NULL,NULL),(7178640,677021,9,'cinematographer',NULL,NULL),(7201830,198896,1,'actress',NULL,'[\"Marialicia\"]'),(7201830,9170232,2,'actor',NULL,'[\"Carlos\"]'),(7201830,9170234,3,'actor',NULL,NULL),(7201830,9170233,4,'actress',NULL,NULL),(7201830,760893,5,'director',NULL,NULL),(7201830,538980,6,'producer','producer',NULL),(7201830,2863655,7,'composer',NULL,NULL),(7201830,243701,8,'cinematographer','director of photography',NULL),(7212726,2260872,10,'writer','dialogue',NULL),(7212726,3828984,1,'actor',NULL,'[\"Inspector Sangram Bhalerao a.k.a \'Simmba\'\"]'),(7212726,9071083,2,'actress',NULL,'[\"Shagun Sathe\"]'),(7212726,1399243,3,'actor',NULL,'[\"Durva Yashwant Ranade\"]'),(7212726,709359,4,'actor',NULL,'[\"Head-Constable Nityanand Mohile\"]'),(7212726,1460159,5,'director',NULL,NULL),(7212726,700872,6,'writer','original story',NULL),(7212726,2056772,7,'writer','original story',NULL),(7212726,1182352,8,'writer','screenplay',NULL),(7212726,2678319,9,'writer','screenplay',NULL),(7212754,3633980,10,'editor',NULL,NULL),(7212754,2690647,1,'actor',NULL,'[\"Rahul Satyendra \'Sattu Bhaiya\' Tripathi\"]'),(7212754,45393,2,'actor',NULL,'[\"Batukeshwar \'Bittu\' Tiwari\"]'),(7212754,3822770,3,'actor',NULL,'[\"Alok Kumar Gupta\"]'),(7212754,760778,4,'actress',NULL,'[\"Pinky\"]'),(7212754,1397301,5,'director',NULL,NULL),(7212754,9389247,6,'writer','dialogue',NULL),(7212754,1024685,7,'producer','producer',NULL),(7212754,1338587,8,'composer',NULL,NULL),(7212754,7893080,9,'cinematographer',NULL,NULL),(7225144,9193095,1,'actress',NULL,'[\"Petra Keller\"]'),(7225144,9193091,2,'actress',NULL,'[\"Svenja Habermann\"]'),(7225144,8306717,3,'actress',NULL,'[\"Xenia Jurkowski\"]'),(7225144,5346962,4,'actress',NULL,'[\"Janine Winter\"]'),(7225144,6098952,5,'director',NULL,NULL),(7225144,4356189,6,'writer','film by',NULL),(7225144,9033567,7,'cinematographer',NULL,NULL),(7225144,2023296,8,'cinematographer',NULL,NULL),(7225144,9252410,9,'cinematographer',NULL,NULL),(7231342,850561,10,'editor',NULL,NULL),(7231342,5861077,1,'actor',NULL,'[\"Pierre-Paul Daoust\"]'),(7231342,4490302,2,'actress',NULL,'[\"Aspasie\",\"Camille Lafontaine\"]'),(7231342,320721,3,'actor',NULL,'[\"Sylvain \'The Brain\' Bigras\"]'),(7231342,1747867,4,'actor',NULL,'[\"Pete La Bauve\"]'),(7231342,780,5,'director',NULL,NULL),(7231342,730629,6,'producer','producer',NULL),(7231342,3379526,7,'composer',NULL,NULL),(7231342,10504454,8,'composer',NULL,NULL),(7231342,3901669,9,'cinematographer',NULL,NULL),(7236034,3430384,10,'composer','composer',NULL),(7236034,4350996,1,'actor',NULL,'[\"\'Boku\'\"]'),(7236034,5240345,2,'actress',NULL,'[\"Yamauchi Sakura\"]'),(7236034,4480120,3,'actress',NULL,'[\"Kyôko\"]'),(7236034,6793636,4,'actor',NULL,'[\"Takahiro\"]'),(7236034,9026707,5,'director',NULL,NULL),(7236034,8452852,6,'writer','novel',NULL),(7236034,5213224,7,'writer','adaptation: English version',NULL),(7236034,4441200,8,'producer','producer',NULL),(7236034,5992157,9,'producer','producer',NULL),(7237666,251010,10,'editor',NULL,NULL),(7237666,6064708,1,'actress',NULL,'[\"Piper Morley\"]'),(7237666,1199888,2,'actress',NULL,'[\"Isabella Walker\"]'),(7237666,6556496,3,'actress',NULL,'[\"Sophie Stephens\"]'),(7237666,3036914,4,'actress',NULL,'[\"Honor Liang\"]'),(7237666,1171959,5,'director',NULL,NULL),(7237666,2627176,6,'writer',NULL,NULL),(7237666,1989592,7,'producer','producer',NULL),(7237666,1120076,8,'composer',NULL,NULL),(7237666,2428677,9,'cinematographer',NULL,NULL),(7241926,3134870,10,'producer','producer',NULL),(7241926,101710,1,'actor',NULL,'[\"Older Charlie\"]'),(7241926,9216522,2,'actor',NULL,'[\"Charlie Weekes\"]'),(7241926,1593,3,'actress',NULL,'[\"Dr. Jean Markham\"]'),(7241926,10685524,4,'actor',NULL,'[\"John\"]'),(7241926,417708,5,'director',NULL,NULL),(7241926,6082614,6,'writer','screenplay by:',NULL),(7241926,1728213,7,'writer','screenplay by',NULL),(7241926,9318791,8,'writer','based on the novel by',NULL),(7241926,1457790,9,'producer','producer',NULL),(7242142,1701150,10,'editor',NULL,NULL),(7242142,4377526,1,'actor',NULL,'[\"Collin\"]'),(7242142,2592137,2,'actor',NULL,'[\"Miles\"]'),(7242142,1232470,3,'actress',NULL,'[\"Val\"]'),(7242142,5093499,4,'actress',NULL,'[\"Ashley\"]'),(7242142,2788015,5,'director',NULL,NULL),(7242142,2384784,6,'producer','producer',NULL),(7242142,2096462,7,'producer','producer',NULL),(7242142,1120076,8,'composer','composer',NULL),(7242142,62373,9,'cinematographer','director of photography',NULL),(7250378,1292424,10,'editor',NULL,NULL),(7250378,4773,1,'actress',NULL,'[\"Mary Page\"]'),(7250378,3435454,2,'actor',NULL,'[\"Statton Taylor\"]'),(7250378,427714,3,'actor',NULL,'[\"Kipper Jones\"]'),(7250378,1326440,4,'actor',NULL,'[\"Dec\"]'),(7250378,2349310,5,'director',NULL,NULL),(7250378,2617198,6,'writer',NULL,NULL),(7250378,6173,7,'composer',NULL,NULL),(7250378,807224,8,'cinematographer',NULL,NULL),(7250378,1255621,9,'editor',NULL,NULL),(7260048,1699268,10,'editor',NULL,NULL),(7260048,4908,1,'actress',NULL,'[\"Carol\"]'),(7260048,243231,2,'actor',NULL,'[\"Chris\"]'),(7260048,5355434,3,'actor',NULL,'[\"Matt\"]'),(7260048,3195983,4,'actress',NULL,'[\"Tara\"]'),(7260048,1119645,5,'director',NULL,NULL),(7260048,2400555,6,'producer','producer',NULL),(7260048,2094293,7,'producer','producer',NULL),(7260048,1913095,8,'composer',NULL,NULL),(7260048,2943141,9,'cinematographer',NULL,NULL),(7262882,947447,10,'producer','producer',NULL),(7262882,1018221,1,'actor',NULL,'[\"Cheung Tin Chi\"]'),(7262882,1176985,2,'actor',NULL,'[\"Davidson\"]'),(7262882,4718714,3,'actress',NULL,'[\"Julia\"]'),(7262882,706,4,'actress',NULL,'[\"Tso Ngan Kwan\"]'),(7262882,950759,5,'director',NULL,NULL),(7262882,2774833,6,'writer','screenplay by',NULL),(7262882,5335213,7,'writer','screenplay by',NULL),(7262882,3156280,8,'producer','producer',NULL),(7262882,2260417,9,'producer','producer',NULL),(7279188,1291213,10,'cinematographer','director of photography',NULL),(7279188,311995,1,'actress',NULL,'[\"Halla\",\"Ása\"]'),(7279188,797612,2,'actor',NULL,'[\"Sveinbjörn\"]'),(7279188,5823636,3,'actor',NULL,'[\"Juan Camillo\"]'),(7279188,2370664,4,'actor',NULL,'[\"Baldvin\"]'),(7279188,259574,5,'director',NULL,NULL),(7279188,251033,6,'writer','written by',NULL),(7279188,495668,7,'producer','producer',NULL),(7279188,806197,8,'producer','producer',NULL),(7279188,433601,9,'composer',NULL,NULL),(7280218,783621,10,'composer',NULL,NULL),(7280218,5983049,1,'actress',NULL,'[\"Lara Bauer\"]'),(7280218,8967844,2,'actress',NULL,'[\"Carmilla\"]'),(7280218,3565962,3,'actress',NULL,'[\"Miss Fontaine\"]'),(7280218,580014,4,'actor',NULL,'[\"Doctor Renquist\"]'),(7280218,1592495,5,'director',NULL,NULL),(7280218,3856607,6,'writer','additional material by',NULL),(7280218,494257,7,'writer','story by',NULL),(7280218,3434570,8,'producer','producer',NULL),(7280218,5857065,9,'producer','producer',NULL),(7282468,3028820,10,'composer',NULL,NULL),(7282468,2584860,1,'actor',NULL,'[\"Lee Jong-su\"]'),(7282468,3081796,2,'actor',NULL,'[\"Ben\"]'),(7282468,9311474,3,'actress',NULL,'[\"Shin Hae-mi\"]'),(7282468,9940627,4,'actress',NULL,'[\"Yeon-ju\"]'),(7282468,496969,5,'director',NULL,NULL),(7282468,7669131,6,'writer','screenplay by',NULL),(7282468,1633142,7,'writer','based on the short story \"Barn Burning\" by',NULL),(7282468,1297121,8,'producer','executive producer',NULL),(7282468,9311475,9,'producer','producer',NULL),(7286456,177896,10,'producer','producer',NULL),(7286456,1618,1,'actor',NULL,'[\"Arthur Fleck\"]'),(7286456,134,2,'actor',NULL,'[\"Murray Franklin\"]'),(7286456,5939164,3,'actress',NULL,'[\"Sophie Dumond\"]'),(7286456,175814,4,'actress',NULL,'[\"Penny Fleck\"]'),(7286456,680846,5,'director',NULL,NULL),(7286456,798788,6,'writer','written by',NULL),(7286456,4170,7,'writer','based on characters created by',NULL),(7286456,277730,8,'writer','based on characters created by',NULL),(7286456,1047603,9,'writer','based on characters created by',NULL),(7311036,3430744,10,'producer','producer',NULL),(7311036,907427,1,'actress',NULL,'[\"D.\"]'),(7311036,6569399,2,'actress',NULL,'[\"Karen\"]'),(7311036,9452466,3,'actor',NULL,'[\"Ramsey\"]'),(7311036,2858875,4,'actress',NULL,'[\"Lana\"]'),(7311036,2109956,5,'director',NULL,NULL),(7311036,3771071,6,'producer','producer',NULL),(7311036,2963912,7,'producer','producer',NULL),(7311036,5379748,8,'producer','producer',NULL),(7311036,1639089,9,'producer','producer',NULL),(7315484,483300,10,'producer','producer',NULL),(7315484,1804,1,'actor',NULL,'[\"Hugh Andrews\"]'),(7315484,2215143,2,'actress',NULL,'[\"Ally Andrews\"]'),(7315484,1584,3,'actress',NULL,'[\"Kelly Andrews\"]'),(7315484,873693,4,'actress',NULL,'[\"Lynn\"]'),(7315484,502954,5,'director',NULL,NULL),(7315484,1139317,6,'writer','screenplay by',NULL),(7315484,886749,7,'writer','screenplay by',NULL),(7315484,2423304,8,'writer','based on the novel by',NULL),(7315484,474709,9,'producer','producer',NULL),(7317324,3834687,10,'editor',NULL,NULL),(7317324,376716,1,'actress',NULL,'[\"Karen\"]'),(7317324,1130496,2,'actress',NULL,'[\"Tina\"]'),(7317324,59654,3,'actor',NULL,'[\"Don\",\"Karen\'s husband\"]'),(7317324,2319871,4,'actress',NULL,'[\"Kiki\",\"surrogate\"]'),(7317324,657734,5,'director',NULL,NULL),(7317324,1086113,6,'writer','written by',NULL),(7317324,2742617,7,'producer','producer',NULL),(7317324,4108585,8,'composer',NULL,NULL),(7317324,1928866,9,'cinematographer',NULL,NULL),(7322224,1101332,10,'production_designer',NULL,NULL),(7322224,7312850,1,'actor',NULL,'[\"Lewis\"]'),(7322224,6170168,2,'actor',NULL,'[\"Carl\"]'),(7322224,4528025,3,'actress',NULL,'[\"Yaya\"]'),(7322224,13739729,4,'actor',NULL,'[\"Driver\"]'),(7322224,1128037,5,'director',NULL,NULL),(7322224,90350,6,'producer','producer',NULL),(7322224,1615036,7,'producer','producer',NULL),(7322224,1234876,8,'cinematographer','director of photography',NULL),(7322224,3125234,9,'editor',NULL,NULL),(7329656,354453,10,'composer',NULL,NULL),(7329656,4563869,1,'actress',NULL,'[\"Mia\"]'),(7329656,1010724,2,'actress',NULL,'[\"Sasha\"]'),(7329656,2769343,3,'actress',NULL,'[\"Alexa\"]'),(7329656,1875985,4,'actress',NULL,'[\"Nicole\"]'),(7329656,1266897,5,'director',NULL,NULL),(7329656,2033094,6,'writer','written by',NULL),(7329656,2448068,7,'producer','producer',NULL),(7329656,429134,8,'producer','producer',NULL),(7329656,4234703,9,'producer','producer',NULL),(7335184,4787,10,'actress',NULL,'[\"Dottie Quinn\"]'),(7335184,46112,1,'actor',NULL,'[\"Joe Goldberg\"]'),(7335184,6442992,2,'actress',NULL,'[\"Love Quinn\"]'),(7335184,6616259,3,'actress',NULL,'[\"Marienne Bellamy\"]'),(7335184,1024107,4,'actress',NULL,'[\"Candace Stone\"]'),(7335184,75528,5,'writer','developed by',NULL),(7335184,1571148,6,'writer','developed by',NULL),(7335184,5634768,7,'actress',NULL,'[\"Guinevere Beck\"]'),(7335184,2492359,8,'actress',NULL,'[\"Kate Galvin\"]'),(7335184,8510480,9,'actor',NULL,'[\"Forty Quinn\"]'),(7341676,2781286,10,'editor',NULL,NULL),(7341676,9188905,1,'actress',NULL,'[\"OM Student\"]'),(7341676,9256273,2,'actor',NULL,'[\"OM Singer\"]'),(7341676,3156214,3,'actress',NULL,'[\"OM Student\",\"Singer\"]'),(7341676,2005420,4,'actress',NULL,'[\"OM Student\"]'),(7341676,4170739,5,'director',NULL,NULL),(7341676,8301530,6,'producer','producer',NULL),(7341676,6855102,7,'composer',NULL,NULL),(7341676,8106664,8,'cinematographer',NULL,NULL),(7341676,2433868,9,'editor',NULL,NULL),(7342204,9454922,10,'actress',NULL,'[\"Protester\"]'),(7342204,618520,1,'actress',NULL,'[\"Na Ok-boon\"]'),(7342204,2043703,2,'actor',NULL,'[\"Park Min-jae\"]'),(7342204,1059148,3,'actor',NULL,NULL),(7342204,9470536,4,'actress',NULL,'[\"Woman from Jinju\"]'),(7342204,453477,5,'director',NULL,NULL),(7342204,9822497,6,'writer',NULL,NULL),(7342204,359923,7,'producer','producer',NULL),(7342204,9418760,8,'producer','producer',NULL),(7342204,8244590,9,'actor',NULL,'[\"Court photographer\"]'),(7349662,89658,10,'producer','producer',NULL),(7349662,913475,1,'actor',NULL,'[\"Ron Stallworth\"]'),(7349662,3485845,2,'actor',NULL,'[\"Flip Zimmerman\"]'),(7349662,5637553,3,'actress',NULL,'[\"Patrice Dumas\"]'),(7349662,333410,4,'actor',NULL,'[\"David Duke\"]'),(7349662,490,5,'director',NULL,NULL),(7349662,4478735,6,'writer','written by',NULL),(7349662,5161275,7,'writer','written by',NULL),(7349662,932551,8,'writer','written by',NULL),(7349662,9259302,9,'writer','based on the book by',NULL),(7349950,1953833,10,'producer','producer',NULL),(7349950,1567113,1,'actress',NULL,'[\"Beverly Marsh\"]'),(7349950,564215,2,'actor',NULL,'[\"Bill Denbrough\"]'),(7349950,352778,3,'actor',NULL,'[\"Richie Tozier\"]'),(7349950,2248149,4,'actor',NULL,'[\"Mike Hanlon\"]'),(7349950,615592,5,'director',NULL,NULL),(7349950,175,6,'writer','based on the novel \"It\" by',NULL),(7349950,2477891,7,'writer','screenplay by',NULL),(7349950,498175,8,'producer','producer',NULL),(7349950,1469853,9,'producer','producer',NULL),(7365604,4403105,10,'producer','producer',NULL),(7365604,2400045,1,'actress',NULL,'[\"Elizabeth\"]'),(7365604,1227814,2,'actress',NULL,'[\"Tara\"]'),(7365604,1269723,3,'actor',NULL,'[\"Dax\"]'),(7365604,519456,4,'actress',NULL,'[\"Grace\"]'),(7365604,547800,5,'director',NULL,NULL),(7365604,5990921,6,'writer','screenplay by',NULL),(7365604,2288614,7,'writer','screenplay by',NULL),(7365604,509176,8,'producer','producer',NULL),(7365604,385268,9,'producer','producer',NULL),(7374948,5891,10,'cinematographer',NULL,NULL),(7374948,4399227,1,'actress',NULL,'[\"Sasha\"]'),(7374948,1320827,2,'actor',NULL,'[\"Marcus\"]'),(7374948,756839,3,'actor',NULL,'[\"Harry\"]'),(7374948,2345104,4,'actress',NULL,'[\"Veronica\"]'),(7374948,451274,5,'director',NULL,NULL),(7374948,1486706,6,'writer','written by',NULL),(7374948,1144042,7,'producer','producer',NULL),(7374948,6274516,8,'producer','producer',NULL),(7374948,28787,9,'composer',NULL,NULL),(7401540,3987336,10,'actress',NULL,'[\"Henrietta\"]'),(7401540,4393699,1,'actress',NULL,'[\"Emily\"]'),(7401540,3712942,2,'actress',NULL,'[\"Crystal\"]'),(7401540,4614329,3,'actress',NULL,'[\"Lana\"]'),(7401540,1121649,4,'actor',NULL,'[\"Vince\"]'),(7401540,2680357,5,'producer','producer',NULL),(7401540,6386826,6,'cinematographer',NULL,NULL),(7401540,3809533,7,'actor',NULL,'[\"Travis\"]'),(7401540,3766090,8,'actor',NULL,'[\"Rudy\"]'),(7401540,4844269,9,'actor',NULL,'[\"DJ Bobby\"]'),(7401588,1954909,10,'cinematographer','director of photography',NULL),(7401588,242,1,'actor',NULL,'[\"Pete\"]'),(7401588,126284,2,'actress',NULL,'[\"Ellie\"]'),(7401588,5097044,3,'actress',NULL,'[\"Lizzy\"]'),(7401588,4851894,4,'actor',NULL,'[\"Juan\"]'),(7401588,1890845,5,'director',NULL,NULL),(7401588,1898234,6,'writer','written by',NULL),(7401588,263010,7,'producer','producer',NULL),(7401588,506100,8,'producer','producer',NULL),(7401588,28787,9,'composer',NULL,NULL),(7405458,1372450,10,'producer','producer',NULL),(7405458,158,1,'actor',NULL,'[\"Otto\"]'),(7405458,3901455,2,'actress',NULL,'[\"Marisol\"]'),(7405458,5043859,3,'actress',NULL,'[\"Sonya\"]'),(7405458,3769182,4,'actor',NULL,'[\"Hardware Store Clerk\"]'),(7405458,286975,5,'director',NULL,NULL),(7405458,7554519,6,'writer','based on the novel \"En man som heter Ove\" by',NULL),(7405458,391502,7,'writer','based on the film \"A Man Called Ove\" by',NULL),(7405458,1341735,8,'writer','screenplay by',NULL),(7405458,324556,9,'producer','producer',NULL),(7411790,1155956,1,'director',NULL,NULL),(7424200,938379,10,'writer','based on characters created by',NULL),(7424200,996651,1,'actor',NULL,'[\"Beast Boy\"]'),(7424200,579914,2,'actor',NULL,'[\"Robin\"]'),(7424200,1146051,3,'actor',NULL,'[\"Cyborg\"]'),(7424200,152839,4,'actress',NULL,'[\"Raven\"]'),(7424200,1739338,5,'director',NULL,NULL),(7424200,5715866,6,'director',NULL,NULL),(7424200,2398585,7,'writer','written by',NULL),(7424200,796950,8,'writer','Superman created by',NULL),(7424200,795975,9,'writer','Superman created by',NULL),(7451284,277730,10,'writer','character created by: Batman',NULL),(7451284,945290,1,'actor',NULL,'[\"Batman\"]'),(7451284,847085,2,'actor',NULL,'[\"The Joker\"]'),(7451284,5665571,3,'actress',NULL,'[\"Catwoman\"]'),(7451284,1069584,4,'actress',NULL,'[\"Harley Quinn\"]'),(7451284,2459558,5,'director',NULL,NULL),(7451284,620040,6,'writer','screenplay',NULL),(7451284,1818154,7,'writer','English screenplay',NULL),(7451284,1547283,8,'writer','English screenplay',NULL),(7451284,4170,9,'writer','character created by: Batman',NULL),(7456310,864371,10,'production_designer',NULL,NULL),(7456310,7712734,1,'actress',NULL,'[\"Anna\"]'),(7456310,545,2,'actress',NULL,'[\"Olga\"]'),(7456310,1812656,3,'actor',NULL,'[\"Alex Tchenkov\"]'),(7456310,614165,4,'actor',NULL,'[\"Lenny Miller\"]'),(7456310,108,5,'director',NULL,NULL),(7456310,794626,6,'producer','producer',NULL),(7456310,785385,7,'composer',NULL,NULL),(7456310,5636,8,'cinematographer',NULL,NULL),(7456310,9545038,9,'editor',NULL,NULL),(7458762,183140,10,'cinematographer','director of photography',NULL),(7458762,2476624,1,'actor',NULL,'[\"Chanteraide\"]'),(7458762,1082477,2,'actor',NULL,'[\"D\'Orsi\"]'),(7458762,440913,3,'actor',NULL,'[\"ALFOST\"]'),(7458762,3024530,4,'actor',NULL,'[\"Grandchamp\"]'),(7458762,5494785,5,'director',NULL,NULL),(7458762,40927,6,'producer','producer',NULL),(7458762,1482301,7,'producer','producer',NULL),(7458762,2390477,8,'producer','producer',NULL),(7458762,354453,9,'composer',NULL,NULL),(7464188,1156431,10,'production_designer',NULL,NULL),(7464188,461746,1,'actress',NULL,'[\"Jill\"]'),(7464188,1399,2,'actress',NULL,'[\"Sheila\"]'),(7464188,1027986,3,'actor',NULL,'[\"Stash\"]'),(7464188,1361530,4,'actor',NULL,'[\"Clive\"]'),(7464188,3270827,5,'director',NULL,NULL),(7464188,823288,6,'producer','producer',NULL),(7464188,8586970,7,'composer',NULL,NULL),(7464188,1645832,8,'cinematographer',NULL,NULL),(7464188,2245768,9,'editor',NULL,NULL),(7466442,1777607,10,'composer',NULL,NULL),(7466442,71304,1,'actor',NULL,'[\"Bob Belcher\",\"Jimmy Jr.\",\"Bad Kuchi Kopi\"]'),(7466442,1102891,2,'actress',NULL,'[\"Louise Belcher\"]'),(7466442,2089814,3,'actor',NULL,'[\"Tina Belcher\"]'),(7466442,4064518,4,'actor',NULL,'[\"Linda Belcher\",\"Jocelyn\",\"Additional Voices\"]'),(7466442,98908,5,'director',NULL,NULL),(7466442,220615,6,'director',NULL,NULL),(7466442,2451853,7,'writer','screenplay by',NULL),(7466442,312919,8,'writer','story consultant',NULL),(7466442,2493260,9,'producer','producer',NULL),(7467476,9604750,1,'actor',NULL,'[\"Tyler\"]'),(7467476,9604751,2,'actor',NULL,'[\"Benjamin\"]'),(7467476,93566,3,'actress',NULL,'[\"The Woman\"]'),(7467476,4478405,4,'director',NULL,NULL),(7467476,4477744,5,'producer','producer',NULL),(7467476,5637080,6,'producer','producer',NULL),(7467476,3258667,7,'composer',NULL,NULL),(7467476,3665210,8,'cinematographer',NULL,NULL),(7468616,4802453,1,'actor',NULL,'[\"Sailor\"]'),(7468616,14685456,2,'actor',NULL,'[\"Captain\"]'),(7468616,1108384,3,'director',NULL,NULL),(7468616,1057727,4,'producer','producer',NULL),(7468616,6506066,5,'composer',NULL,NULL),(7468616,1451520,6,'cinematographer',NULL,NULL),(7468616,3569254,7,'editor',NULL,NULL),(7468616,1135398,8,'production_designer',NULL,NULL),(7479784,7166189,10,'editor',NULL,NULL),(7479784,401192,1,'actress',NULL,'[\"Madame Tang\"]'),(7479784,5374530,2,'actress',NULL,'[\"Tang Ning\"]'),(7479784,8847811,3,'actress',NULL,'[\"Tang Chen\"]'),(7479784,2023617,4,'actress',NULL,'[\"Speaker Wang\'s Wife\"]'),(7479784,3127578,5,'director',NULL,NULL),(7479784,6501450,6,'producer','producer',NULL),(7479784,9747141,7,'producer','producer',NULL),(7479784,3121257,8,'composer',NULL,NULL),(7479784,5387351,9,'cinematographer',NULL,NULL),(7485508,10397517,10,'actor',NULL,NULL),(7485508,9331937,1,'actress',NULL,'[\"Lola\"]'),(7485508,9331938,2,'actress',NULL,'[\"Carmen\"]'),(7485508,9629476,3,'actor',NULL,'[\"Paco\"]'),(7485508,9331940,4,'actress',NULL,'[\"Flor\"]'),(7485508,248401,5,'director',NULL,NULL),(7485508,6492240,6,'composer',NULL,NULL),(7485508,2224341,7,'cinematographer','director of photography',NULL),(7485508,1062901,8,'editor',NULL,NULL),(7485508,3660766,9,'actress',NULL,'[\"Paqui\"]'),(7488208,2937345,10,'producer','producer',NULL),(7488208,443855,1,'actor',NULL,'[\"Space Dog\",\"Rail Worker #3\"]'),(7488208,9964894,2,'actor',NULL,'[\"Young Fei Fei\"]'),(7488208,4597798,3,'actress',NULL,'[\"Mother\"]'),(7488208,158626,4,'actor',NULL,'[\"Father\"]'),(7488208,434969,5,'director','co-director',NULL),(7488208,920108,6,'writer','written by',NULL),(7488208,2364904,7,'writer','additional screenplay material by',NULL),(7488208,1226108,8,'writer','additional screenplay material by',NULL),(7488208,1513657,9,'producer','producer',NULL),(7488288,5495582,1,'actor',NULL,'[\"Aquiles\"]'),(7488288,2416847,2,'actress',NULL,'[\"Libby\"]'),(7488288,2237080,3,'actress',NULL,'[\"Terry\"]'),(7488288,9333156,4,'actor',NULL,'[\"Hector\"]'),(7488288,1515732,5,'director',NULL,NULL),(7488288,5959917,6,'director',NULL,NULL),(7488288,970118,7,'producer','producer',NULL),(7488288,5959919,8,'composer',NULL,NULL),(7504818,516880,10,'producer','producer',NULL),(7504818,6244013,1,'actor',NULL,'[\"Barney\"]'),(7504818,302108,2,'actor',NULL,'[\"Ron\"]'),(7504818,1159180,3,'actor',NULL,'[\"Graham\"]'),(7504818,1469236,4,'actress',NULL,'[\"Donka\"]'),(7504818,809877,5,'director',NULL,NULL),(7504818,2190815,6,'director',NULL,NULL),(7504818,3185614,7,'director','co-director',NULL),(7504818,63165,8,'writer','written by',NULL),(7504818,2604429,9,'producer','producer',NULL),(7510346,498175,10,'producer','producer',NULL),(7510346,4496875,1,'actress',NULL,'[\"Kate Mandell\"]'),(7510346,6016511,2,'actor',NULL,'[\"Miles Fairchild\"]'),(7510346,7737419,3,'actress',NULL,'[\"Flora Fairchild\"]'),(7510346,551649,4,'actress',NULL,'[\"Mrs. Grose\"]'),(7510346,797455,5,'director',NULL,NULL),(7510346,416556,6,'writer','based on the novel \"The Turn of the Screw\" by',NULL),(7510346,370937,7,'writer','screenplay by',NULL),(7510346,370928,8,'writer','screenplay by',NULL),(7510346,1303857,9,'producer','producer',NULL),(7521214,1556123,10,'director',NULL,NULL),(7521214,6326357,1,'actor',NULL,'[\"Mike (segment \\\"Cold Open\\\" )\",\"Mike Myers (segment \\\"Rad Chad\'s Horror Emporium\\\")\",\"Mike Myers ( segment \\\"Horror Hypothesis\\\"))\"]'),(7521214,4029074,2,'actress',NULL,'[\"Hannah (segment \\\"Cold Open\\\")\"]'),(7521214,8074709,3,'actress',NULL,'[\"Tess (segment \\\"Cold Open\\\")\"]'),(7521214,5756725,4,'actress',NULL,'[\"Wendy (segment \\\"Cold Open\\\")\"]'),(7521214,3105120,5,'director',NULL,NULL),(7521214,3260211,6,'director',NULL,NULL),(7521214,4044179,7,'director',NULL,NULL),(7521214,2035204,8,'director',NULL,NULL),(7521214,1323319,9,'director',NULL,NULL),(7527538,55432,10,'composer','composer',NULL),(7527538,130429,1,'actor',NULL,'[\"César\"]'),(7527538,10207,2,'actress',NULL,'[\"Ariana\"]'),(7527538,1945161,3,'actor',NULL,'[\"Gómez\"]'),(7527538,1322246,4,'actor',NULL,'[\"Javier\"]'),(7527538,1345585,5,'director',NULL,NULL),(7527538,2321796,6,'writer',NULL,NULL),(7527538,2101412,7,'writer','story',NULL),(7527538,349562,8,'producer','producer',NULL),(7527538,757661,9,'producer','producer',NULL),(7534068,63299,10,'composer',NULL,NULL),(7534068,1194748,1,'actress',NULL,'[\"Lieutenant Yvonne Santi\"]'),(7534068,2847812,2,'actor',NULL,'[\"Antoine Parent\"]'),(7534068,851582,3,'actress',NULL,'[\"Agnès Parent\"]'),(7534068,4044784,4,'actor',NULL,'[\"Louis\"]'),(7534068,759270,5,'director',NULL,NULL),(7534068,333818,6,'writer','screenplay',NULL),(7534068,2224444,7,'writer','screenplay',NULL),(7534068,552909,8,'producer','producer',NULL),(7534068,858196,9,'producer','producer',NULL),(7541160,1155956,1,'director',NULL,NULL),(7543930,1384878,10,'cinematographer',NULL,NULL),(7543930,452161,1,'actress',NULL,'[\"Karine\"]'),(7543930,500976,2,'actor',NULL,'[\"Jean\"]'),(7543930,1965,3,'actress',NULL,'[\"Alice\"]'),(7543930,2015893,4,'actress',NULL,'[\"Lydie\"]'),(7543930,380831,5,'director',NULL,NULL),(7543930,40927,6,'producer','producer',NULL),(7543930,9109803,7,'producer','producer',NULL),(7543930,2390477,8,'producer','producer',NULL),(7543930,3376331,9,'composer',NULL,NULL),(7545266,1213782,10,'producer','producer',NULL),(7545266,1840504,1,'actress',NULL,'[\"Mia Carter\"]'),(7545266,126284,2,'actress',NULL,'[\"Mel Paige\"]'),(7545266,161,3,'actress',NULL,'[\"Claire Luna\"]'),(7545266,4175221,4,'actor',NULL,'[\"Josh Tinker\"]'),(7545266,37708,5,'director',NULL,NULL),(7545266,2850785,6,'writer','story by',NULL),(7545266,1428311,7,'writer','story by',NULL),(7545266,1294678,8,'writer','story by',NULL),(7545266,263010,9,'producer','producer',NULL),(7545524,238698,10,'cinematographer','director of photography',NULL),(7545524,210,1,'actress',NULL,'[\"Holly Burns\"]'),(7545524,2348627,2,'actor',NULL,'[\"Ben Burns\"]'),(7545524,5524,3,'actor',NULL,'[\"Neal Beeby\"]'),(7545524,1105980,4,'actress',NULL,'[\"Ivy Burns\"]'),(7545524,373282,5,'director',NULL,NULL),(7545524,1749221,6,'producer','producer',NULL),(7545524,3267061,7,'producer','producer',NULL),(7545524,800922,8,'producer','producer',NULL),(7545524,385467,9,'composer',NULL,NULL),(7545566,674362,10,'producer','producer',NULL),(7545566,8401185,1,'actress',NULL,'[\"Camille\"]'),(7545566,8401187,2,'actress',NULL,'[\"Janay\"]'),(7545566,8401186,3,'actress',NULL,'[\"Kurt\"]'),(7545566,8401191,4,'actress',NULL,'[\"Ruby\"]'),(7545566,1145920,5,'director',NULL,NULL),(7545566,6260398,6,'writer','writer',NULL),(7545566,2323361,7,'writer','writer',NULL),(7545566,5699674,8,'producer','producer',NULL),(7545566,4456000,9,'producer','producer',NULL),(7547410,909904,10,'writer','based on the television series by: \"Dora the Explorer\"',NULL),(7547410,5097044,1,'actress',NULL,'[\"Dora\"]'),(7547410,220240,2,'actor',NULL,'[\"Alejandro\"]'),(7547410,671567,3,'actor',NULL,'[\"Cole\"]'),(7547410,519456,4,'actress',NULL,'[\"Elena\"]'),(7547410,90386,5,'director',NULL,NULL),(7547410,831557,6,'writer','screenplay by',NULL),(7547410,2816668,7,'writer','screenplay by',NULL),(7547410,1117226,8,'writer','story by',NULL),(7547410,317513,9,'writer','based on the television series by: \"Dora the Explorer\"',NULL),(7549996,83559,10,'cinematographer',NULL,NULL),(7549996,250,1,'actress',NULL,'[\"Judy Garland\"]'),(7549996,2976580,2,'actress',NULL,'[\"Rosalyn Wilder\"]'),(7549996,1587729,3,'actor',NULL,'[\"Mickey Deans\"]'),(7549996,1722,4,'actor',NULL,'[\"Sid Luft\"]'),(7549996,3734458,5,'director',NULL,NULL),(7549996,3976567,6,'writer','screenplay by',NULL),(7549996,1502455,7,'writer','based on the stageplay \"End of the Rainbow\" by',NULL),(7549996,5928339,8,'producer','producer',NULL),(7549996,1189,9,'composer',NULL,NULL),(7550014,1937,10,'composer',NULL,NULL),(7550014,10023988,1,'actress',NULL,'[\"Darby\"]'),(7550014,6639989,2,'actor',NULL,'[\"Ash\"]'),(7550014,3314705,3,'actor',NULL,'[\"Lars\"]'),(7550014,9176319,4,'actress',NULL,'[\"Jay\"]'),(7550014,2010936,5,'director',NULL,NULL),(7550014,3029372,6,'writer','screenplay by',NULL),(7550014,2592245,7,'writer','screenplay by',NULL),(7550014,3515096,8,'writer','based upon the novel by',NULL),(7550014,291082,9,'producer','producer',NULL),(7555072,2215969,10,'producer','producer',NULL),(7555072,11078666,1,'actress',NULL,'[\"Young Daffy\"]'),(7555072,11078667,2,'actress',NULL,'[\"Young Eugenia\"]'),(7555072,9400059,3,'actor',NULL,'[\"Solomon\"]'),(7555072,11078668,4,'actor',NULL,'[\"Young Macarius\"]'),(7555072,992370,5,'director',NULL,NULL),(7555072,963161,6,'writer','written by',NULL),(7555072,3872555,7,'writer','written by',NULL),(7555072,6497779,8,'writer','concept',NULL),(7555072,88414,9,'producer','producer',NULL),(7555774,1709401,10,'producer','producer',NULL),(7555774,512071,1,'actor',NULL,'[\"Laurent Amédéo\"]'),(7555774,9858585,2,'actress',NULL,'[\"Mélanie, syndicaliste CGT 1\"]'),(7555774,9858586,3,'actor',NULL,'[\"Borderie, directeur d\'établissement\"]'),(7555774,9858587,4,'actor',NULL,'[\"Directeur administratif et financier\"]'),(7555774,110300,5,'director',NULL,NULL),(7555774,3854689,6,'writer','collaboration',NULL),(7555774,329825,7,'writer','screenplay',NULL),(7555774,12886035,8,'writer','collaboration',NULL),(7555774,3592232,9,'writer','collaboration',NULL),(7556122,263010,10,'producer','producer',NULL),(7556122,234,1,'actress',NULL,'[\"Andy\"]'),(7556122,8460487,2,'actress',NULL,'[\"Nile\"]'),(7556122,774386,3,'actor',NULL,'[\"Booker\"]'),(7556122,3092471,4,'actor',NULL,'[\"Joe\"]'),(7556122,697656,5,'director',NULL,NULL),(7556122,1421638,6,'writer','screenplay by',NULL),(7556122,8030368,7,'writer','illustrated by',NULL),(7556122,228690,8,'producer','producer',NULL),(7556122,1911103,9,'producer','producer',NULL),(7557108,1576700,10,'editor',NULL,NULL),(7557108,6077056,1,'actress',NULL,'[\"Maud\"]'),(7557108,3556036,2,'actress',NULL,'[\"Nurse\"]'),(7557108,383,3,'actress',NULL,'[\"Amanda\"]'),(7557108,404648,4,'actor',NULL,'[\"Richard\"]'),(7557108,3819217,5,'director',NULL,NULL),(7557108,1095938,6,'producer','producer',NULL),(7557108,5064857,7,'producer','producer',NULL),(7557108,8179488,8,'composer',NULL,NULL),(7557108,2777389,9,'cinematographer','director of photography',NULL),(7594584,215861,10,'producer','producer',NULL),(7594584,1817740,1,'actress',NULL,'[\"Maria\"]'),(7594584,1454267,2,'actor',NULL,'[\"Kaleb\"]'),(7594584,1217338,3,'actor',NULL,'[\"Victor\"]'),(7594584,147367,4,'actor',NULL,'[\"Greg\"]'),(7594584,3417120,5,'director',NULL,NULL),(7594584,9397414,6,'writer','written by',NULL),(7594584,8721227,7,'writer','written by',NULL),(7594584,215842,8,'producer','producer',NULL),(7594584,2909291,9,'producer','producer',NULL),(7600716,1136185,10,'editor',NULL,NULL),(7600716,272,1,'actress',NULL,'[\"Caroline\"]'),(7600716,308039,2,'actor',NULL,'[\"François\"]'),(7600716,9860935,3,'actor',NULL,'[\"Kevin\"]'),(7600716,4297691,4,'actress',NULL,'[\"Lilah\"]'),(7600716,494069,5,'director',NULL,NULL),(7600716,218843,6,'writer','screenplay',NULL),(7600716,146434,7,'producer','producer',NULL),(7600716,6339,8,'composer',NULL,NULL),(7600716,2289580,9,'cinematographer',NULL,NULL),(7605074,11224439,10,'writer',NULL,NULL),(7605074,943104,1,'actor',NULL,'[\"Liu Peiqiang\"]'),(7605074,9524976,2,'actor',NULL,'[\"Liu Qi\"]'),(7605074,2974534,3,'actor',NULL,'[\"Wang Lei\"]'),(7605074,628806,4,'actor',NULL,'[\"Han Ziang\"]'),(7605074,4914792,5,'director',NULL,NULL),(7605074,4069148,6,'writer',NULL,NULL),(7605074,9400701,7,'writer',NULL,NULL),(7605074,9400700,8,'writer',NULL,NULL),(7605074,9400702,9,'writer',NULL,NULL),(7608418,785150,10,'cinematographer',NULL,NULL),(7608418,570860,1,'actress',NULL,'[\"Amber\"]'),(7608418,3858223,2,'actor',NULL,'[\"Prince Richard\"]'),(7608418,481,3,'actress',NULL,'[\"Queen Helena\"]'),(7608418,4835867,4,'actress',NULL,'[\"Princess Emily\"]'),(7608418,5618,5,'director',NULL,NULL),(7608418,6912381,6,'writer','written by',NULL),(7608418,1405911,7,'writer','story',NULL),(7608418,470751,8,'producer','producer',NULL),(7608418,1130536,9,'composer',NULL,NULL),(7615302,1250449,10,'cinematographer','director of photography',NULL),(7615302,1132,1,'actress',NULL,'[\"Joan\"]'),(7615302,5824400,2,'actress',NULL,'[\"Young Joan\"]'),(7615302,1304386,3,'actor',NULL,'[\"Max\"]'),(7615302,3433735,4,'actor',NULL,'[\"Leo\"]'),(7615302,638080,5,'director',NULL,NULL),(7615302,3002622,6,'writer','screenplay',NULL),(7615302,10405720,7,'writer','novel',NULL),(7615302,661406,8,'producer','producer',NULL),(7615302,6070,9,'composer',NULL,NULL),(7616148,1367927,10,'composer',NULL,NULL),(7616148,915208,1,'actress',NULL,'[\"Amy Edgar\"]'),(7616148,818055,2,'actress',NULL,'[\"Harriet Wilson\"]'),(7616148,5123156,3,'actor',NULL,'[\"Luce Edgar\"]'),(7616148,619,4,'actor',NULL,'[\"Peter Edgar\"]'),(7616148,1564809,5,'director',NULL,NULL),(7616148,6152442,6,'writer','screenplay by',NULL),(7616148,3093997,7,'producer','producer',NULL),(7616148,5197781,8,'producer','producer',NULL),(7616148,57856,9,'composer',NULL,NULL),(7634968,326092,10,'writer','based on \"What Women Want\" screenplay by',NULL),(7634968,378245,1,'actress',NULL,'[\"Ali Davis\"]'),(7634968,3968623,2,'actress',NULL,'[\"Kristen Ledlow\"]'),(7634968,3091777,3,'actor',NULL,'[\"Brandon Wallace\"]'),(7634968,1553725,4,'actor',NULL,'[\"Captain Fucktastic\"]'),(7634968,788202,5,'director',NULL,NULL),(7634968,1202276,6,'writer','screenplay by',NULL),(7634968,404752,7,'writer','screenplay by',NULL),(7634968,339733,8,'writer','screenplay by',NULL),(7634968,1944708,9,'writer','story by',NULL),(7636672,4592090,1,'actress',NULL,'[\"Frances\"]'),(7636672,959944,2,'actor',NULL,'[\"Michael\"]'),(7636672,9455420,3,'actor',NULL,'[\"Patrick\"]'),(7636672,269570,4,'actress',NULL,'[\"Big Mammy\"]'),(7636672,1288939,5,'director',NULL,NULL),(7636672,172256,6,'producer','producer',NULL),(7636672,632017,7,'producer','producer',NULL),(7636672,1737155,8,'cinematographer',NULL,NULL),(7636672,3806393,9,'editor',NULL,NULL),(7638348,795141,10,'composer',NULL,NULL),(7638348,342029,1,'actor',NULL,'[\"Roy Pulver\"]'),(7638348,154,2,'actor',NULL,'[\"Colonel Clive Ventor\"]'),(7638348,915208,3,'actress',NULL,'[\"Jemma Wells\"]'),(7638348,706,4,'actress',NULL,'[\"Dai Feng\"]'),(7638348,138620,5,'director',NULL,NULL),(7638348,2482939,6,'writer','screenplay by',NULL),(7638348,2282967,7,'writer','screenplay by',NULL),(7638348,256542,8,'producer','producer',NULL),(7638348,298915,9,'producer','producer',NULL),(7653254,1639516,10,'production_designer',NULL,NULL),(7653254,3485845,1,'actor',NULL,'[\"Charlie Barber\"]'),(7653254,424060,2,'actress',NULL,'[\"Nicole Barber\"]'),(7653254,5005121,3,'actress',NULL,'[\"Street Solicitor #1\"]'),(7653254,7309485,4,'actor',NULL,'[\"Henry Barber\"]'),(7653254,876,5,'director',NULL,NULL),(7653254,382268,6,'producer','producer',NULL),(7653254,5271,7,'composer',NULL,NULL),(7653254,752811,8,'cinematographer','director of photography',NULL),(7653254,2352780,9,'editor',NULL,NULL),(7657566,236462,10,'composer',NULL,NULL),(7657566,5290643,1,'actor',NULL,'[\"Bouc\"]'),(7657566,906,2,'actress',NULL,'[\"Euphemia Bouc\"]'),(7657566,110,3,'actor',NULL,'[\"Hercule Poirot\"]'),(7657566,1258970,4,'actor',NULL,'[\"Windlesham\"]'),(7657566,338169,5,'writer','screenplay by',NULL),(7657566,2005,6,'writer','based upon the novel by',NULL),(7657566,388788,7,'producer','producer',NULL),(7657566,631,8,'producer','producer',NULL),(7657566,1016966,9,'producer','producer',NULL),(7668870,3788293,10,'composer',NULL,NULL),(7668870,158626,1,'actor',NULL,'[\"David Kim\"]'),(7668870,5226,2,'actress',NULL,'[\"Detective Vick\"]'),(7668870,4334711,3,'actor',NULL,'[\"Peter\"]'),(7668870,8045046,4,'actress',NULL,'[\"Margot\"]'),(7668870,3792134,5,'director',NULL,NULL),(7668870,3539578,6,'writer','written by',NULL),(7668870,67457,7,'producer','producer',NULL),(7668870,5256327,8,'producer','producer',NULL),(7668870,2186596,9,'producer','producer',NULL),(7671064,862946,10,'cinematographer',NULL,NULL),(7671064,3255459,1,'actress',NULL,'[\"Brittany\"]'),(7671064,242177,2,'actress',NULL,'[\"Shannon\"]'),(7671064,1113773,3,'actor',NULL,'[\"Doctor Falloway\"]'),(7671064,5333857,4,'actress',NULL,'[\"Gretchen\"]'),(7671064,2375463,5,'director',NULL,NULL),(7671064,3250262,6,'producer','producer',NULL),(7671064,1497,7,'producer','producer',NULL),(7671064,2272537,8,'producer','producer',NULL),(7671064,2724306,9,'composer',NULL,NULL),(7689052,864308,10,'producer','producer',NULL),(7689052,5152585,1,'actress',NULL,'[\"Daphne\"]'),(7689052,4485886,2,'actress',NULL,'[\"Velma\"]'),(7689052,1404825,3,'actress',NULL,'[\"Carol\"]'),(7689052,826745,4,'actor',NULL,'[\"Nedley Blake\"]'),(7689052,1151780,5,'director',NULL,NULL),(7689052,4699932,6,'writer','written by',NULL),(7689052,7092177,7,'writer','written by',NULL),(7689052,1486961,8,'producer','producer',NULL),(7689052,453360,9,'producer','producer',NULL),(7689958,1805278,10,'editor',NULL,NULL),(7689958,404,1,'self',NULL,'[\"Self\"]'),(7689958,633271,2,'archive_footage',NULL,'[\"Self\"]'),(7689958,602,3,'self',NULL,'[\"Self - Actor\"]'),(7689958,687142,4,'self',NULL,'[\"Self - Stepdaughter\"]'),(7689958,480402,5,'director',NULL,NULL),(7689958,1290567,6,'producer','producer',NULL),(7689958,1911579,7,'producer','producer',NULL),(7689958,134508,8,'composer',NULL,NULL),(7689958,656895,9,'cinematographer','director of photography',NULL),(7698468,421192,10,'production_designer',NULL,NULL),(7698468,2353338,1,'actress',NULL,'[\"Virginia Hall\"]'),(7698468,1065664,2,'actress',NULL,'[\"Vera Atkins\"]'),(7698468,2331000,3,'actress',NULL,'[\"Noor Inayat Khan\"]'),(7698468,730070,4,'actor',NULL,'[\"Col. Maurice Buckmaster\"]'),(7698468,212990,5,'director',NULL,NULL),(7698468,9213404,6,'composer',NULL,NULL),(7698468,62373,7,'cinematographer','director of photography',NULL),(7698468,3857337,8,'cinematographer','director of photography: Budapest',NULL),(7698468,869375,9,'editor',NULL,NULL),(7703924,2228167,10,'producer','producer',NULL),(7703924,2254074,1,'actress',NULL,'[\"Arielle\"]'),(7703924,4889489,2,'actor',NULL,'[\"Dean\"]'),(7703924,3232025,3,'actress',NULL,'[\"Elle\"]'),(7703924,2104119,4,'actor',NULL,'[\"Kyle\"]'),(7703924,2093933,5,'director',NULL,NULL),(7703924,60885,6,'producer','producer',NULL),(7703924,2248924,7,'producer','producer',NULL),(7703924,3959928,8,'producer','producer',NULL),(7703924,4290530,9,'producer','producer',NULL),(7711764,2329727,10,'cinematographer',NULL,NULL),(7711764,3303822,1,'actress',NULL,'[\"Lauren\"]'),(7711764,571264,2,'actor',NULL,'[\"Oliver\"]'),(7711764,50437,3,'actor',NULL,'[\"Mr. Halsey\"]'),(7711764,3776906,4,'actress',NULL,'[\"Holly\"]'),(7711764,1497680,5,'director',NULL,NULL),(7711764,570079,6,'writer','story',NULL),(7711764,1151096,7,'writer','story',NULL),(7711764,7623217,8,'composer','composer',NULL),(7711764,7623216,9,'composer','composer',NULL),(7713068,4105822,10,'producer','producer',NULL),(7713068,3053338,1,'actress',NULL,'[\"Harley Quinn\"]'),(7713068,1609,2,'actress',NULL,'[\"Renee Montoya\"]'),(7713068,935541,3,'actress',NULL,'[\"Helena Bertinelli\",\"The Huntress\"]'),(7713068,810619,4,'actress',NULL,'[\"Dinah Lance\",\"Black Canary\"]'),(7713068,4014166,5,'director',NULL,NULL),(7713068,5429637,6,'writer','written by',NULL),(7713068,227704,7,'writer','Harley Quinn created by',NULL),(7713068,863622,8,'writer','Harley Quinn created by',NULL),(7713068,2502949,9,'producer','producer',NULL),(7715070,1471191,10,'writer','additional material',NULL),(7715070,7509185,1,'actor',NULL,'[\"Atti\"]'),(7715070,4454223,2,'actress',NULL,'[\"Orla\"]'),(7715070,296545,3,'actor',NULL,'[\"Arghus\"]'),(7715070,1064292,4,'actor',NULL,'[\"Emperor Nero\"]'),(7715070,109273,5,'director',NULL,NULL),(7715070,1026928,6,'writer','writer',NULL),(7715070,683346,7,'writer','writer',NULL),(7715070,147700,8,'writer','additional material',NULL),(7715070,726978,9,'writer','additional material',NULL),(7737528,56550,10,'composer',NULL,NULL),(7737528,935541,1,'actress',NULL,'[\"Kate\"]'),(7737528,437,2,'actor',NULL,'[\"Varrick\"]'),(7737528,11008562,3,'actress',NULL,'[\"Ani\"]'),(7737528,38355,4,'actor',NULL,'[\"Renji\"]'),(7737528,1031639,5,'director',NULL,NULL),(7737528,7073779,6,'writer','written by',NULL),(7737528,566555,7,'producer','producer',NULL),(7737528,627604,8,'producer','producer',NULL),(7737528,4105822,9,'producer','producer',NULL),(7737786,1384267,10,'composer',NULL,NULL),(7737786,124930,1,'actor',NULL,'[\"John Garrity\"]'),(7737786,1072555,2,'actress',NULL,'[\"Allison Garrity\"]'),(7737786,9819444,3,'actor',NULL,'[\"Nathan Garrity\"]'),(7737786,1277,4,'actor',NULL,'[\"Dale\"]'),(7737786,6846,5,'director',NULL,NULL),(7737786,2133655,6,'writer','written by',NULL),(7737786,412588,7,'producer','producer',NULL),(7737786,9807493,8,'producer','producer',NULL),(7737786,2229304,9,'producer','producer',NULL),(7740496,491565,10,'cinematographer','director of photography',NULL),(7740496,177896,1,'actor',NULL,'[\"Stanton Carlisle\"]'),(7740496,949,2,'actress',NULL,'[\"Dr. Lilith Ritter\"]'),(7740496,1057,3,'actress',NULL,'[\"Zeena the Seer\"]'),(7740496,353,4,'actor',NULL,'[\"Clem Hoatley\"]'),(7740496,868219,5,'director',NULL,NULL),(7740496,1965407,6,'writer','screenplay by',NULL),(7740496,340343,7,'writer','based on the novel by',NULL),(7740496,197703,8,'producer','producer',NULL),(7740496,1791103,9,'composer',NULL,NULL),(7745068,9990915,10,'producer','producer',NULL),(7745068,5693918,1,'actor',NULL,'[\"Izuku Midoriya\"]'),(7745068,1399925,2,'actor',NULL,'[\"All Might\"]'),(7745068,1541331,3,'actress',NULL,'[\"Melissa Shield\"]'),(7745068,2462004,4,'actor',NULL,'[\"Katsuki Bakugou\"]'),(7745068,2568279,5,'director',NULL,NULL),(7745068,9484837,6,'writer','manga',NULL),(7745068,475853,7,'writer','script writer',NULL),(7745068,3619235,8,'writer','screenplay assistance',NULL),(7745068,2890357,9,'producer','producer',NULL),(7745956,3066532,10,'actor',NULL,'[\"Swift Wind\"]'),(7745956,2948025,1,'actress',NULL,'[\"Adora\",\"She-Ra\",\"Young Adora\"]'),(7745956,3851090,2,'actor',NULL,'[\"Bow\"]'),(7745956,7232332,3,'actress',NULL,'[\"Glimmer\"]'),(7745956,1404488,4,'actress',NULL,'[\"Catra\",\"Young Catra\"]'),(7745956,6343559,5,'writer','developed for television by',NULL),(7745956,1929609,6,'actor',NULL,'[\"Hordak\",\"Horde Prime\",\"Clone\"]'),(7745956,2147876,7,'actress',NULL,'[\"Entrapta\",\"Octavia\"]'),(7745956,2274847,8,'actress',NULL,'[\"Scorpia\"]'),(7745956,5501,9,'actress',NULL,'[\"Shadow Weaver\",\"Light Spinner\"]'),(7752126,1558480,10,'composer',NULL,NULL),(7752126,6969,1,'actress',NULL,'[\"Tori Breyer\"]'),(7752126,219292,2,'actor',NULL,'[\"Kyle Breyer\"]'),(7752126,6676262,3,'actor',NULL,'[\"Brandon Breyer\"]'),(7752126,6561765,4,'actor',NULL,'[\"Royce\"]'),(7752126,946521,5,'director',NULL,NULL),(7752126,348160,6,'writer','written by',NULL),(7752126,348208,7,'writer','written by',NULL),(7752126,348181,8,'producer','producer',NULL),(7752126,5651981,9,'producer','producer',NULL),(7754902,9902965,1,'self',NULL,'[\"Self - the \'jumping horse\'\"]'),(7754902,1155956,2,'director',NULL,NULL),(7755856,4930589,10,'producer','producer',NULL),(7755856,2000954,1,'actress',NULL,'[\"April\"]'),(7755856,1882929,2,'actress',NULL,'[\"Clara\"]'),(7755856,819851,3,'actor',NULL,'[\"Nick\"]'),(7755856,6845927,4,'actor',NULL,'[\"Ben\"]'),(7755856,1848388,5,'director',NULL,NULL),(7755856,4054205,6,'writer','written by',NULL),(7755856,1275670,7,'producer','producer',NULL),(7755856,509176,8,'producer','producer',NULL),(7755856,3589124,9,'producer','producer',NULL),(7765404,935921,10,'actor',NULL,'[\"Bobby Luccetti\"]'),(7765404,2731980,1,'actress',NULL,'[\"Delilah \'Del\' Luccetti\"]'),(7765404,7603308,2,'actor',NULL,'[\"Wayne McCullough\"]'),(7765404,443911,3,'actor',NULL,'[\"Sergeant Stephen Geller\"]'),(7765404,1913063,4,'actor',NULL,'[\"Officer Jay Ganetti\"]'),(7765404,3178429,5,'writer','created by',NULL),(7765404,7324434,6,'actor',NULL,'[\"Orlando Hikes\"]'),(7765404,8861563,7,'actor',NULL,'[\"Carl Luccetti\",\"Brother Carl\"]'),(7765404,8861562,8,'actor',NULL,'[\"Teddy Luccetti\",\"Brother Teddy\"]'),(7765404,5282,9,'actor',NULL,'[\"Principal Tom Cole\"]'),(7768846,3506217,10,'editor',NULL,NULL),(7768846,3586347,1,'actor',NULL,'[\"Moses\"]'),(7768846,6737285,2,'actor',NULL,'[\"Kitch\"]'),(7768846,7113131,3,'actor',NULL,'[\"Mister\"]'),(7768846,2151806,4,'actor',NULL,'[\"Ossifer\"]'),(7768846,490,5,'director',NULL,NULL),(7768846,2224861,6,'director','collaborating director',NULL),(7768846,6685476,7,'writer','play written by',NULL),(7768846,238300,8,'composer',NULL,NULL),(7768846,1978735,9,'cinematographer',NULL,NULL),(7772582,2457439,10,'editor',NULL,NULL),(7772582,10620978,1,'actress',NULL,'[\"Autumn\"]'),(7772582,7867621,2,'actress',NULL,'[\"Skylar\"]'),(7772582,6829691,3,'actor',NULL,'[\"Jasper\"]'),(7772582,8665872,4,'actor',NULL,'[\"Elvis Impersonator\"]'),(7772582,2151374,5,'director',NULL,NULL),(7772582,2072976,6,'producer','producer',NULL),(7772582,1532846,7,'producer','producer',NULL),(7772582,3278613,8,'composer',NULL,NULL),(7772582,522173,9,'cinematographer',NULL,NULL),(7775622,4489275,10,'cinematographer','director of photography',NULL),(7775622,3658958,1,'self',NULL,'[\"Self\"]'),(7775622,2225545,2,'self',NULL,'[\"Self\"]'),(7775622,3011011,3,'self',NULL,'[\"Self\"]'),(7775622,7466099,4,'self',NULL,'[\"Self\"]'),(7775622,1888091,5,'director',NULL,NULL),(7775622,1634261,6,'producer','producer',NULL),(7775622,371010,7,'producer','producer',NULL),(7775622,1937,8,'composer',NULL,NULL),(7775622,2422752,9,'cinematographer','director of photography',NULL),(7781432,3156055,10,'cinematographer',NULL,NULL),(7781432,6976096,1,'actor',NULL,'[\"Bill\"]'),(7781432,5119729,2,'actress',NULL,'[\"Katie\"]'),(7781432,8075458,3,'actress',NULL,'[\"Jen\"]'),(7781432,317,4,'actor',NULL,'[\"Montgomery Dark\"]'),(7781432,1841530,5,'director',NULL,NULL),(7781432,3122001,6,'producer','producer',NULL),(7781432,2606744,7,'producer','producer',NULL),(7781432,7915626,8,'composer',NULL,NULL),(7781432,2538607,9,'cinematographer',NULL,NULL),(7784604,1850507,10,'cinematographer','director of photography',NULL),(7784604,1057,1,'actress',NULL,'[\"Annie\"]'),(7784604,8412536,2,'actress',NULL,'[\"Charlie\"]'),(7784604,321,3,'actor',NULL,'[\"Steve\"]'),(7784604,1842974,4,'actor',NULL,'[\"Peter\"]'),(7784604,4170048,5,'director',NULL,NULL),(7784604,289694,6,'producer','producer',NULL),(7784604,1185381,7,'producer','producer',NULL),(7784604,5052148,8,'producer','producer',NULL),(7784604,2715764,9,'composer',NULL,NULL),(7785128,9082107,10,'producer','producer',NULL),(7785128,5143532,1,'actress',NULL,'[\"Renge Miyauchi\"]'),(7785128,5390656,2,'actress',NULL,'[\"Hotaru Ichijou\"]'),(7785128,4785118,3,'actress',NULL,'[\"Natsumi Koshigaya\"]'),(7785128,2571848,4,'actress',NULL,'[\"Komari Koshigaya\"]'),(7785128,1450274,5,'director',NULL,NULL),(7785128,6014325,6,'writer','manga',NULL),(7785128,1027089,7,'writer',NULL,NULL),(7785128,10740307,8,'producer','producer',NULL),(7785128,2950763,9,'producer','producer',NULL),(7791048,1311373,10,'actor',NULL,'[\"Soldat (3)\"]'),(7791048,753982,1,'actress',NULL,'[\"Mor\"]'),(7791048,635419,2,'actor',NULL,'[\"Far\"]'),(7791048,9511067,3,'actor',NULL,'[\"Son\"]'),(7791048,27800,4,'actor',NULL,'[\"Soldat (1)\"]'),(7791048,418724,5,'director',NULL,NULL),(7791048,23940,6,'composer',NULL,NULL),(7791048,960270,7,'cinematographer',NULL,NULL),(7791048,528061,8,'editor',NULL,NULL),(7791048,3269544,9,'actor',NULL,'[\"Soldat (2)\"]'),(7798634,792061,10,'producer','producer',NULL),(7798634,3034977,1,'actress',NULL,'[\"Grace\"]'),(7798634,111013,2,'actor',NULL,'[\"Daniel\"]'),(7798634,1975628,3,'actor',NULL,'[\"Alex\"]'),(7798634,1089,4,'actor',NULL,'[\"Tony\"]'),(7798634,2366012,5,'director',NULL,NULL),(7798634,2419470,6,'director',NULL,NULL),(7798634,2361509,7,'writer','written by',NULL),(7798634,1459583,8,'writer','written by',NULL),(7798634,1329482,9,'producer','producer',NULL),(7816420,1155956,1,'actor',NULL,'[\"Man With Pick\"]'),(7825208,4102402,10,'composer',NULL,NULL),(7825208,1179580,1,'actor',NULL,'[\"Carlos Marighella\"]'),(7825208,300902,2,'actor',NULL,'[\"Lúcio\"]'),(7825208,890388,3,'actor',NULL,'[\"Branco\"]'),(7825208,1658753,4,'actor',NULL,'[\"Humberto\"]'),(7825208,609944,5,'director',NULL,NULL),(7825208,1806027,6,'writer','screenplay by',NULL),(7825208,5623843,7,'writer','based on the book \"Marighella: O Guerrilheiro que Incendiou o Mundo\" by',NULL),(7825208,53070,8,'producer','producer',NULL),(7825208,1247772,9,'producer','producer',NULL),(7838252,8048359,10,'writer','hindi dialogue',NULL),(7838252,5232139,1,'actor',NULL,'[\"Rocky\",\"Raja Krishnappa Bairya\"]'),(7838252,8635807,2,'actress',NULL,'[\"Reena\"]'),(7838252,10346132,3,'actor',NULL,'[\"Garuda\"]'),(7838252,10346131,4,'actress',NULL,'[\"Gangamma\",\"Rocky\'s Mother\"]'),(7838252,6073824,5,'director',NULL,NULL),(7838252,13762864,6,'writer','dialogue',NULL),(7838252,13064350,7,'writer','dialogue',NULL),(7838252,13880622,8,'writer','writer',NULL),(7838252,4547509,9,'writer','hindi dialogue',NULL),(7846844,1247503,10,'producer','producer',NULL),(7846844,5611121,1,'actress',NULL,'[\"Enola Holmes\"]'),(7846844,147147,2,'actor',NULL,'[\"Sherlock Holmes\"]'),(7846844,3510471,3,'actor',NULL,'[\"Mycroft Holmes\"]'),(7846844,307,4,'actress',NULL,'[\"Eudoria Holmes\"]'),(7846844,102873,5,'director',NULL,NULL),(7846844,2113666,6,'writer','screenplay by',NULL),(7846844,9540892,7,'writer','based upon the book \"The Case of the Missing Marquess: An Enola Holmes Mystery\" by',NULL),(7846844,236279,8,'writer','based on characters created by',NULL),(7846844,12178559,9,'producer','producer',NULL),(7853242,2992287,10,'composer',NULL,NULL),(7853242,5817249,1,'actor',NULL,'[\"Sanjay Chaturvedi\"]'),(7853242,7682496,2,'actress',NULL,'[\"Karina D\'Souza\"]'),(7853242,5441144,3,'actress',NULL,'[\"Rashi Khurana\"]'),(7853242,944834,4,'actor',NULL,'[\"Bhaskar Chaturvedi\"]'),(7853242,2945270,5,'director',NULL,NULL),(7853242,6902151,6,'writer','additional dialogue',NULL),(7853242,4853598,7,'writer','dialogue',NULL),(7853242,780098,8,'producer','producer',NULL),(7853242,9574660,9,'composer',NULL,NULL),(7869818,152839,10,'actress',NULL,'[\"Twilight Sparkle\",\"Princess Twilight Sparkle\"]'),(7869818,1868320,1,'actress',NULL,'[\"Applejack\",\"Rainbow Dash\",\"Nurse Redheart\"]'),(7869818,508877,2,'actress',NULL,'[\"Pinkie Pie\",\"Fluttershy\"]'),(7869818,1690630,3,'actress',NULL,'[\"Sunset Shimmer\",\"Twilight Sparkle - singing\"]'),(7869818,319308,4,'actress',NULL,'[\"Rarity\",\"Princess Luna\",\"Vice Principal Luna\"]'),(7869818,2154278,5,'director',NULL,NULL),(7869818,3111796,6,'director','co-director',NULL),(7869818,2553419,7,'writer','written by',NULL),(7869818,1298182,8,'producer','producer',NULL),(7869818,27584,9,'composer',NULL,NULL),(7873348,5346357,10,'composer',NULL,NULL),(7873348,4576371,1,'actress',NULL,'[\"Su\"]'),(7873348,6324745,2,'actor',NULL,'[\"Jack\"]'),(7873348,4161154,3,'actor',NULL,'[\"Raph\"]'),(7873348,4696553,4,'actor',NULL,'[\"Blake\"]'),(7873348,7742589,5,'director',NULL,NULL),(7873348,2856727,6,'director',NULL,NULL),(7873348,4979264,7,'producer','producer',NULL),(7873348,264359,8,'producer','producer',NULL),(7873348,846530,9,'producer','producer',NULL),(7875464,1779207,1,'actress',NULL,'[\"Cliente Mujer\"]'),(7875464,4100704,2,'actress',NULL,'[\"Chiquita\"]'),(7875464,9590579,3,'actress',NULL,'[\"Chela\"]'),(7875464,9913021,4,'actress',NULL,'[\"Mujer Cantante\"]'),(7875464,3308584,5,'director',NULL,NULL),(7875464,7809897,6,'producer','producer',NULL),(7875464,1362989,7,'cinematographer',NULL,NULL),(7875464,258459,8,'editor',NULL,NULL),(7875464,5125238,9,'production_designer',NULL,NULL),(7888964,2229508,10,'producer','producer',NULL),(7888964,644022,1,'actor',NULL,'[\"Hutch Mansell\"]'),(7888964,148516,2,'actor',NULL,'[\"Yulian Kuznetsov\"]'),(7888964,1567,3,'actress',NULL,'[\"Becca Mansell\"]'),(7888964,502,4,'actor',NULL,'[\"David Mansell\"]'),(7888964,5820154,5,'director',NULL,NULL),(7888964,4401003,6,'writer','written by',NULL),(7888964,2302240,7,'producer','producer',NULL),(7888964,500610,8,'producer','producer',NULL),(7888964,566555,9,'producer','producer',NULL),(7893992,2557473,10,'production_designer',NULL,NULL),(7893992,9566046,1,'actress',NULL,'[\"Aida\"]'),(7893992,9566047,2,'actress',NULL,'[\"Dana\"]'),(7893992,9566048,3,'actor',NULL,'[\"Musse\"]'),(7893992,9752887,4,'actress',NULL,'[\"Aidas moster\"]'),(7893992,3307527,5,'director',NULL,NULL),(7893992,2412370,6,'writer','writer',NULL),(7893992,1532039,7,'producer','producer',NULL),(7893992,1615896,8,'cinematographer',NULL,NULL),(7893992,2349281,9,'editor',NULL,NULL),(7902124,1061007,10,'editor',NULL,NULL),(7902124,5638960,1,'actress',NULL,'[\"Lola Wegenstein\"]'),(7902124,1514571,2,'actress',NULL,'[\"Conny Wegenstein\"]'),(7902124,405976,3,'actress',NULL,'[\"Elise\"]'),(7902124,1338409,4,'actress',NULL,'[\"Birgit\"]'),(7902124,1001232,5,'director',NULL,NULL),(7902124,1789794,6,'producer','producer',NULL),(7902124,637238,7,'producer','producer',NULL),(7902124,2413038,8,'composer',NULL,NULL),(7902124,1058728,9,'cinematographer','director of photography',NULL),(7905466,11928337,10,'self',NULL,'[\"Self - Seaforth Highlanders\"]'),(7905466,11924371,1,'self',NULL,'[\"Self - Bedfordshire Regiment\"]'),(7905466,11924372,2,'self',NULL,'[\"Self - Royal Naval Air Service\"]'),(7905466,11924373,3,'self',NULL,'[\"Self - The Duke of Cambridge\'s Own (Middlesex Regiment)\"]'),(7905466,11924374,4,'self',NULL,'[\"Self - British Army\"]'),(7905466,1392,5,'director',NULL,NULL),(7905466,1161680,6,'producer','producer',NULL),(7905466,1453819,7,'composer',NULL,NULL),(7905466,1288150,8,'editor',NULL,NULL),(7905466,11924375,9,'self',NULL,'[\"Self - East Yorkshire Regiment\"]'),(7909970,502097,10,'actor',NULL,'[\"Steve Rasmussen\"]'),(7909970,3239803,1,'actress',NULL,'[\"Marie Adler\"]'),(7909970,1057,2,'actress',NULL,'[\"Detective Grace Rasmussen\"]'),(7909970,923266,3,'actress',NULL,'[\"Detective Karen Duvall\"]'),(7909970,1917193,4,'actor',NULL,'[\"Chris McCarthy\"]'),(7909970,335666,5,'writer','showrunner',NULL),(7909970,149290,6,'writer','teleplay by',NULL),(7909970,2307279,7,'writer','teleplay by',NULL),(7909970,225460,8,'actress',NULL,'[\"RoseMarie\"]'),(7909970,487594,9,'actress',NULL,'[\"Mia\"]'),(7939766,3044268,10,'composer',NULL,NULL),(7939766,687146,1,'actor',NULL,'[\"Jake\"]'),(7939766,2976580,2,'actress',NULL,'[\"Young Woman\"]'),(7939766,1057,3,'actress',NULL,'[\"Mother\"]'),(7939766,667,4,'actor',NULL,'[\"Father\"]'),(7939766,442109,5,'director',NULL,NULL),(7939766,2914363,6,'writer','based on the book by',NULL),(7939766,1282412,7,'producer','producer',NULL),(7939766,106835,8,'producer','producer',NULL),(7939766,7011,9,'producer','producer',NULL),(7942742,998342,10,'cinematographer','director of photography',NULL),(7942742,5253,1,'actress',NULL,'[\"Becky Something\"]'),(7942742,5353321,2,'actress',NULL,'[\"Crassy Cassie\"]'),(7942742,1405398,3,'actor',NULL,'[\"\'Dirtbag\' Danny\"]'),(7942742,2936228,4,'actress',NULL,'[\"Marielle Hell\"]'),(7942742,3504405,5,'director',NULL,NULL),(7942742,674362,6,'producer','producer',NULL),(7942742,2860409,7,'producer','producer',NULL),(7942742,4865119,8,'producer','producer',NULL),(7942742,1548770,9,'composer',NULL,NULL),(7958736,2058108,10,'cinematographer',NULL,NULL),(7958736,818055,1,'actress',NULL,'[\"Sue Ann\"]'),(7958736,9537602,2,'actress',NULL,'[\"Maggie\"]'),(7958736,496,3,'actress',NULL,'[\"Erica\"]'),(7958736,3591790,4,'actress',NULL,'[\"Haley\"]'),(7958736,853238,5,'director',NULL,NULL),(7958736,3398282,6,'writer','written by',NULL),(7958736,89658,7,'producer','producer',NULL),(7958736,635835,8,'producer','producer',NULL),(7958736,2179463,9,'composer',NULL,NULL),(7959026,3709982,10,'producer','producer',NULL),(7959026,142,1,'actor',NULL,'[\"Earl Stone\"]'),(7959026,8423767,2,'actor',NULL,'[\"Farmhand #3\"]'),(7959026,1478076,3,'actor',NULL,'[\"Jose\"]'),(7959026,3169819,4,'actor',NULL,'[\"Farmhand #2\"]'),(7959026,1010405,5,'writer','written by',NULL),(7959026,10095627,6,'writer','inspired by the New York Times Magazine Article \"The Sinaloa Cartel\'s 90-Year Old Drug Mule\" by',NULL),(7959026,6679051,7,'producer','producer',NULL),(7959026,1664289,8,'producer','producer',NULL),(7959026,601954,9,'producer','producer',NULL),(7975244,1205652,10,'producer','producer',NULL),(7975244,425005,1,'actor',NULL,'[\"Bravestone\"]'),(7975244,85312,2,'actor',NULL,'[\"Oberon\"]'),(7975244,366389,3,'actor',NULL,'[\"Mouse\"]'),(7975244,2394794,4,'actress',NULL,'[\"Ruby\"]'),(7975244,440458,5,'director',NULL,NULL),(7975244,684374,6,'writer','written by',NULL),(7975244,3298,7,'writer','written by',NULL),(7975244,885575,8,'writer','based on the book \"Jumanji\" by',NULL),(7975244,1696098,9,'producer','producer',NULL),(7976208,1642445,10,'editor',NULL,NULL),(7976208,240381,1,'actress',NULL,'[\"Sharon Tate\"]'),(7976208,1057932,2,'actor',NULL,'[\"Jay Sebring\"]'),(7976208,1935905,3,'actress',NULL,'[\"Abigail Folger\"]'),(7976208,1437733,4,'actor',NULL,'[\"Wojciech Frykowski\"]'),(7976208,268107,5,'director',NULL,NULL),(7976208,3665102,6,'producer','producer',NULL),(7976208,2119938,7,'producer','producer',NULL),(7976208,10910825,8,'composer',NULL,NULL),(7976208,2728765,9,'cinematographer',NULL,NULL),(7979492,384092,10,'producer','producer',NULL),(7979492,9642493,1,'actress',NULL,'[\"Kim Possible\"]'),(7979492,4677867,2,'actor',NULL,'[\"Ron Stoppable\"]'),(7979492,6264728,3,'actress',NULL,'[\"Athena\"]'),(7979492,6267963,4,'actress',NULL,'[\"Shego\"]'),(7979492,513554,5,'director',NULL,NULL),(7979492,1437652,6,'director',NULL,NULL),(7979492,1038800,7,'writer','written by',NULL),(7979492,566407,8,'writer','written by',NULL),(7979492,774792,9,'writer','characters',NULL),(7979580,588087,10,'producer','producer',NULL),(7979580,3434305,1,'actress',NULL,'[\"Katie\",\"Dog Cop\"]'),(7979580,1144419,2,'actor',NULL,'[\"Rick\"]'),(7979580,748973,3,'actress',NULL,'[\"Linda\"]'),(7979580,5106831,4,'actor',NULL,'[\"Aaron\",\"Furbies\",\"Talking Dog\"]'),(7979580,6676487,5,'director','co-director',NULL),(7979580,1667980,6,'writer','story coordinator',NULL),(7979580,3229215,7,'writer','story consultant',NULL),(7979580,16957,8,'producer','producer',NULL),(7979580,520488,9,'producer','producer',NULL),(7983894,641169,10,'composer',NULL,NULL),(7983894,701,1,'actress',NULL,'[\"Mary\"]'),(7983894,1519680,2,'actress',NULL,'[\"Charlotte Murchison\"]'),(7983894,428121,3,'actress',NULL,'[\"Molly Anning\"]'),(7983894,4574630,4,'actor',NULL,'[\"Roderick Murchison\"]'),(7983894,497274,5,'director',NULL,NULL),(7983894,2096617,6,'producer','producer',NULL),(7983894,2154065,7,'producer','producer',NULL),(7983894,792431,8,'producer','producer',NULL),(7983894,2890617,9,'composer',NULL,NULL),(7984734,1082606,10,'producer','producer',NULL),(7984734,1500155,1,'actor',NULL,'[\"Thomas Howard\"]'),(7984734,353,2,'actor',NULL,'[\"Thomas Wake\"]'),(7984734,10840078,3,'actress',NULL,'[\"Mermaid\"]'),(7984734,11125041,4,'actor',NULL,'[\"Ephraim Winslow\"]'),(7984734,3211470,5,'director',NULL,NULL),(7984734,3220455,6,'writer','written by',NULL),(7984734,1323058,7,'producer','producer',NULL),(7984734,4702983,8,'producer','producer',NULL),(7984734,2095560,9,'producer','producer',NULL),(7984766,915192,10,'producer','producer',NULL),(7984766,6077951,1,'actor',NULL,'[\"Hotspur\"]'),(7984766,5994557,2,'actor',NULL,'[\"Scot Soldier\"]'),(7984766,1433660,3,'actor',NULL,'[\"Northumberland\"]'),(7984766,5361352,4,'actor',NULL,'[\"Cambridge\"]'),(7984766,2391575,5,'director',NULL,NULL),(7984766,249291,6,'writer','written by',NULL),(7984766,306890,7,'producer','producer',NULL),(7984766,1250070,8,'producer','producer',NULL),(7984766,93,9,'producer','producer',NULL),(7985692,613434,10,'producer','producer',NULL),(7985692,194,1,'actress',NULL,'[\"Theresa Young\"]'),(7985692,931329,2,'actress',NULL,'[\"Isabel Andersen\"]'),(7985692,1082,3,'actor',NULL,'[\"Oscar Carlson\"]'),(7985692,5362984,4,'actress',NULL,'[\"Grace Carlson\"]'),(7985692,294505,5,'director',NULL,NULL),(7985692,81540,6,'writer','original screenplay',NULL),(7985692,421314,7,'writer','original screenplay',NULL),(7985692,6775870,8,'producer','producer',NULL),(7985692,584382,9,'producer','producer',NULL),(7991608,2775581,10,'cinematographer','director of photography',NULL),(7991608,425005,1,'actor',NULL,'[\"John Hartley\"]'),(7991608,5351,2,'actor',NULL,'[\"Nolan Booth\"]'),(7991608,2933757,3,'actress',NULL,'[\"The Bishop\"]'),(7991608,5709125,4,'actress',NULL,'[\"Inspector Urvashi Das\"]'),(7991608,1098493,5,'director',NULL,NULL),(7991608,4927,6,'producer','producer',NULL),(7991608,1696098,7,'producer','producer',NULL),(7991608,1205652,8,'producer','producer',NULL),(7991608,413011,9,'composer',NULL,NULL),(8001346,241271,10,'cinematographer','director of photography',NULL),(8001346,2010,1,'actor',NULL,'[\"Astérix\"]'),(8001346,108478,2,'actor',NULL,'[\"Obélix\"]'),(8001346,3367478,3,'actor',NULL,'[\"Teleferix\"]'),(8001346,1594248,4,'actor',NULL,'[\"Oursenplus\",\"Huiledolix\",\"Blodimérix\"]'),(8001346,3088151,5,'director',NULL,NULL),(8001346,331453,6,'writer','from the works of',NULL),(8001346,879853,7,'writer','from the works of',NULL),(8001346,1079171,8,'producer','producer',NULL),(8001346,739151,9,'composer',NULL,NULL),(8009938,1053344,10,'producer','producer',NULL),(8009938,680667,1,'actor',NULL,'[\"Nathan Sinclair\"]'),(8009938,1451415,2,'actress',NULL,'[\"Jane Prescott\"]'),(8009938,853079,3,'actor',NULL,'[\"Captain Malone\"]'),(8009938,456130,4,'actor',NULL,'[\"Lydell Jackson\"]'),(8009938,1125745,5,'director',NULL,NULL),(8009938,2072667,6,'writer','screenplay by',NULL),(8009938,2379646,7,'producer','producer',NULL),(8009938,7040896,8,'producer','producer',NULL),(8009938,5557875,9,'producer','producer',NULL),(8010544,3125992,10,'actress',NULL,'[\"Haru Okumura\"]'),(8010544,2233310,1,'actor',NULL,'[\"Yusuke Kitagawa\"]'),(8010544,473873,2,'actress',NULL,'[\"Makoto Niijima\"]'),(8010544,2837894,3,'actor',NULL,'[\"Goro Akechi\"]'),(8010544,5489754,4,'actor',NULL,'[\"Ryuji Sakamoto\"]'),(8010544,4808080,5,'actress',NULL,'[\"Ann Takamaki\"]'),(8010544,1465001,6,'actor',NULL,'[\"Ryuji Sakamoto\"]'),(8010544,606422,7,'actress',NULL,'[\"Morgana\"]'),(8010544,649026,8,'actress',NULL,'[\"Morgana\"]'),(8010544,837523,9,'actor',NULL,'[\"Yusuke Kitagawa\"]'),(8019694,694874,10,'cinematographer','director of photography',NULL),(8019694,1376,1,'actress',NULL,'[\"Frankie\"]'),(8019694,6451469,2,'actress',NULL,'[\"Maya\"]'),(8019694,48159,3,'actor',NULL,'[\"Ian\"]'),(8019694,733172,4,'actress',NULL,'[\"Sylvia\"]'),(8019694,755158,5,'director',NULL,NULL),(8019694,951592,6,'writer','screenplay',NULL),(8019694,69963,7,'producer','producer',NULL),(8019694,4752699,8,'producer','producer',NULL),(8019694,385467,9,'composer',NULL,NULL),(8020896,9636805,1,'actor',NULL,'[\"Yu Cheng\"]'),(8020896,7832387,2,'actor',NULL,'[\"Wei Bu\"]'),(8020896,9112772,3,'actress',NULL,'[\"Huang Ling\"]'),(8020896,944449,4,'actor',NULL,'[\"Wang Jin\"]'),(8020896,9636804,5,'director',NULL,NULL),(8020896,9889952,6,'producer','producer',NULL),(8020896,9890028,7,'composer',NULL,NULL),(8020896,9889948,8,'cinematographer',NULL,NULL),(8020896,5917526,9,'production_designer',NULL,NULL),(8021928,186,1,'self',NULL,'[\"Self\"]'),(8022928,932144,10,'producer','producer',NULL),(8022928,4874651,1,'actress',NULL,'[\"Mal\"]'),(8022928,2624602,2,'actor',NULL,'[\"Carlos\"]'),(8022928,6259860,3,'actress',NULL,'[\"Evie\"]'),(8022928,1559927,4,'actor',NULL,'[\"Jay\"]'),(8022928,650905,5,'director',NULL,NULL),(8022928,569210,6,'writer','written by',NULL),(8022928,663490,7,'writer','written by',NULL),(8022928,3934099,8,'producer','producer',NULL),(8022928,869946,9,'producer','producer',NULL),(8031422,725808,10,'composer',NULL,NULL),(8031422,5575,1,'actor',NULL,'[\"Fin\"]'),(8031422,5346,2,'actress',NULL,'[\"April\"]'),(8031422,2628561,3,'actress',NULL,'[\"Nova\"]'),(8031422,295103,4,'actor',NULL,'[\"Bryan\"]'),(8031422,3116,5,'director',NULL,NULL),(8031422,505736,6,'writer','based on characters created by',NULL),(8031422,1797032,7,'writer','written by',NULL),(8031422,490375,8,'producer','producer',NULL),(8031422,1700105,9,'composer',NULL,NULL),(8041270,550881,10,'producer','producer',NULL),(8041270,695435,1,'actor',NULL,'[\"Owen Grady\"]'),(8041270,397171,2,'actress',NULL,'[\"Claire Dearing\"]'),(8041270,368,3,'actress',NULL,'[\"Ellie Sattler\"]'),(8041270,554,4,'actor',NULL,'[\"Alan Grant\"]'),(8041270,1119880,5,'director',NULL,NULL),(8041270,3045440,6,'writer','screenplay by',NULL),(8041270,2081046,7,'writer','story by',NULL),(8041270,341,8,'writer','based on characters created by',NULL),(8041270,189777,9,'producer','producer',NULL),(8041276,2341944,10,'composer',NULL,NULL),(8041276,2147876,1,'actress',NULL,'[\"Doctor Hagen\"]'),(8041276,243233,2,'actor',NULL,'[\"Michael\"]'),(8041276,5380,3,'actor',NULL,'[\"Andy\"]'),(8041276,653658,4,'actor',NULL,'[\"Master Liu\"]'),(8041276,1411972,5,'director',NULL,NULL),(8041276,1504431,6,'producer','producer',NULL),(8041276,6742493,7,'producer','producer',NULL),(8041276,243231,8,'producer','producer',NULL),(8041276,2400555,9,'producer','producer',NULL),(8075192,1109748,10,'cinematographer','director of photography',NULL),(8075192,1410940,1,'actor',NULL,'[\"Osamu Shibata\"]'),(8075192,2747232,2,'actress',NULL,'[\"Nobuyo Shibata\"]'),(8075192,452817,3,'actress',NULL,'[\"Hatsue Shibata\"]'),(8075192,3640154,4,'actress',NULL,'[\"Aki Shibata\"]'),(8075192,466153,5,'director',NULL,NULL),(8075192,3022813,6,'producer','producer',NULL),(8075192,1460332,7,'producer','producer',NULL),(8075192,2908128,8,'producer','producer',NULL),(8075192,396100,9,'composer',NULL,NULL),(8075260,2295810,10,'producer','producer',NULL),(8075260,1752221,1,'actress',NULL,'[\"Jenny Young\"]'),(8075260,3147751,2,'actor',NULL,'[\"Nate Davis\"]'),(8075260,811242,3,'actress',NULL,'[\"Blair Helms\"]'),(8075260,1986622,4,'actress',NULL,'[\"Erin Kennedy\"]'),(8075260,3066492,5,'director',NULL,NULL),(8075260,106835,6,'producer','producer',NULL),(8075260,5153276,7,'producer','producer',NULL),(8075260,82450,8,'producer','producer',NULL),(8075260,2581327,9,'producer','producer',NULL),(8079248,271479,10,'producer','producer',NULL),(8079248,2797744,1,'actor',NULL,'[\"Jack Malik\"]'),(8079248,4141252,2,'actress',NULL,'[\"Ellie Appleton\"]'),(8079248,1620545,3,'actress',NULL,'[\"Carol\"]'),(8079248,7966281,4,'actress',NULL,'[\"Lucy\"]'),(8079248,965,5,'director',NULL,NULL),(8079248,193485,6,'writer','screenplay',NULL),(8079248,58539,7,'writer','story',NULL),(8079248,68925,8,'producer','producer',NULL),(8079248,79677,9,'producer','producer',NULL),(8093700,5966,10,'composer',NULL,NULL),(8093700,205626,1,'actress',NULL,'[\"Nanisca\"]'),(8093700,9096847,2,'actress',NULL,'[\"Nawi\"]'),(8093700,2736476,3,'actress',NULL,'[\"Izogie\"]'),(8093700,5956547,4,'actress',NULL,'[\"Amenza\"]'),(8093700,697656,5,'director',NULL,NULL),(8093700,828342,6,'writer','screenplay by',NULL),(8093700,4742,7,'writer','story by',NULL),(8093700,776072,8,'producer','producer',NULL),(8093700,855132,9,'producer','producer',NULL),(8097030,1743277,10,'cinematographer','director of photography',NULL),(8097030,8823152,1,'actress',NULL,'[\"Meilin\",\"Panda Meilin\"]'),(8097030,644897,2,'actress',NULL,'[\"Ming\",\"Panda Ming\",\"Young Ming\"]'),(8097030,6205098,3,'actress',NULL,'[\"Miriam\"]'),(8097030,7490724,4,'actress',NULL,'[\"Abby\"]'),(8097030,7626019,5,'director',NULL,NULL),(8097030,3264196,6,'writer','story by',NULL),(8097030,4927551,7,'writer','story by',NULL),(8097030,172491,8,'producer','producer',NULL),(8097030,3234869,9,'composer',NULL,NULL),(8106534,1602154,10,'producer','producer',NULL),(8106534,5351,1,'actor',NULL,'[\"One\"]'),(8106534,491259,2,'actress',NULL,'[\"Two\"]'),(8106534,2636310,3,'actor',NULL,'[\"Three\"]'),(8106534,5228887,4,'actor',NULL,'[\"Four\"]'),(8106534,881,5,'director',NULL,NULL),(8106534,1116660,6,'writer','written by',NULL),(8106534,1014201,7,'writer','written by',NULL),(8106534,117290,8,'producer','producer',NULL),(8106534,1911103,9,'producer','producer',NULL),(8108164,6765,10,'producer','producer',NULL),(8108164,2128238,1,'actress',NULL,'[\"Sweety Chaudhary\"]'),(8108164,438463,2,'actor',NULL,'[\"Balbir Chaudhary\"]'),(8108164,3822770,3,'actor',NULL,'[\"Sahil Mirza\"]'),(8108164,4487,4,'actress',NULL,'[\"Chatro\"]'),(8108164,9664944,5,'director',NULL,NULL),(8108164,7430071,6,'writer','Screenplay',NULL),(8108164,937289,7,'writer','inspired by the novel by',NULL),(8108164,1386575,8,'writer','Dialogue Supervisor',NULL),(8108164,7923441,9,'writer','screenplay',NULL),(8108198,1930518,10,'writer','based on the story by',NULL),(8108198,7102,1,'actress',NULL,'[\"Simi Sinha\"]'),(8108198,4731677,2,'actor',NULL,'[\"Akash\"]'),(8108198,2331000,3,'actress',NULL,'[\"Sophie\"]'),(8108198,223521,4,'actor',NULL,'[\"Pramod Sinha\"]'),(8108198,1437189,5,'director',NULL,NULL),(8108198,4914249,6,'writer',NULL,NULL),(8108198,10091335,7,'writer',NULL,NULL),(8108198,9634132,8,'writer',NULL,NULL),(8108198,1381758,9,'writer',NULL,NULL),(8108206,3628396,10,'producer','producer',NULL),(8108206,3966456,1,'actress',NULL,'[\"Prakashi Tomar\"]'),(8108206,6277267,2,'actress',NULL,'[\"Chandro Tomar\"]'),(8108206,422552,3,'actor',NULL,'[\"Sarpanch Ratan Singh Tomar\"]'),(8108206,1277547,4,'actor',NULL,'[\"Dr. Yashpal\"]'),(8108206,1571874,5,'director',NULL,NULL),(8108206,8858219,6,'writer','Screenplay',NULL),(8108206,7251506,7,'writer','contributing writer',NULL),(8108206,6054966,8,'writer','dialogue',NULL),(8108206,440604,9,'producer','producer',NULL),(8110232,854403,10,'editor',NULL,NULL),(8110232,5273,1,'actor',NULL,'[\"Dickie Moltisanti\"]'),(8110232,1502434,2,'actor',NULL,'[\"Harold McBrayer\"]'),(8110232,1256532,3,'actor',NULL,'[\"Johnny Soprano\"]'),(8110232,267812,4,'actress',NULL,'[\"Livia Soprano\"]'),(8110232,851930,5,'director',NULL,NULL),(8110232,153740,6,'writer','written by',NULL),(8110232,465199,7,'writer','written by',NULL),(8110232,2776571,8,'producer','producer',NULL),(8110232,605190,9,'cinematographer','director of photography',NULL),(8110246,2684,10,'cinematographer',NULL,NULL),(8110246,4477836,1,'actor',NULL,'[\"Connor\"]'),(8110246,3300306,2,'actress',NULL,'[\"Gwen\"]'),(8110246,3236733,3,'actor',NULL,'[\"Avi\"]'),(8110246,2024927,4,'actor',NULL,'[\"Agent Carver\"]'),(8110246,2450024,5,'writer','written by',NULL),(8110246,4822554,6,'producer','producer',NULL),(8110246,79896,7,'producer','producer',NULL),(8110246,2411321,8,'producer','producer',NULL),(8110246,5194207,9,'composer',NULL,NULL),(8110640,2385,10,'producer','producer',NULL),(8110640,2933542,1,'actor',NULL,'[\"Locke\"]'),(8110640,1671147,2,'actress',NULL,'[\"Rya\"]'),(8110640,940158,3,'actor',NULL,'[\"Maddox\"]'),(8110640,355910,4,'actor',NULL,'[\"Holt\"]'),(8110640,585344,5,'director',NULL,NULL),(8110640,2309496,6,'writer','written by',NULL),(8110640,2205460,7,'writer','written by',NULL),(8110640,5696714,8,'producer','producer',NULL),(8110640,2271939,9,'producer','producer',NULL),(8110652,4354653,10,'composer',NULL,NULL),(8110652,3964350,1,'actress',NULL,'[\"Sophie\"]'),(8110652,7210025,2,'actress',NULL,'[\"Bee\"]'),(8110652,9684601,3,'actress',NULL,'[\"Jordan\"]'),(8110652,6976735,4,'actress',NULL,'[\"Alice\"]'),(8110652,717603,5,'director',NULL,NULL),(8110652,11972817,6,'writer','screenplay by',NULL),(8110652,9682332,7,'writer','based on a story by',NULL),(8110652,5580402,8,'producer','producer',NULL),(8110652,3065267,9,'producer','producer',NULL),(8114980,638748,10,'producer','producer',NULL),(8114980,115,1,'actor',NULL,'[\"The Janitor\"]'),(8114980,6376834,2,'actress',NULL,'[\"Liv\"]'),(8114980,335275,3,'actress',NULL,'[\"Sheriff Lund\"]'),(8114980,718680,4,'actor',NULL,'[\"Tex Macadoo\"]'),(8114980,507425,5,'director',NULL,NULL),(8114980,1474634,6,'writer','screenplay by',NULL),(8114980,186151,7,'producer','producer',NULL),(8114980,1854088,8,'producer','producer',NULL),(8114980,520401,9,'producer','producer',NULL),(8115900,1909785,10,'producer','producer',NULL),(8115900,5377,1,'actor',NULL,'[\"Wolf\"]'),(8115900,549505,2,'actor',NULL,'[\"Snake\"]'),(8115900,5377144,3,'actress',NULL,'[\"Tarantula\"]'),(8115900,732497,4,'actor',NULL,'[\"Shark\"]'),(8115900,2010048,5,'director',NULL,NULL),(8115900,85109,6,'writer','based on the books by',NULL),(8115900,1000113,7,'writer','screenplay by',NULL),(8115900,3229505,8,'writer','additional screenplay material by',NULL),(8115900,1417395,9,'writer','additional screenplay material by',NULL),(8133192,1155956,1,'director',NULL,NULL),(8143990,1179417,10,'cinematographer','director of photography',NULL),(8143990,420955,1,'actor',NULL,'[\"Robert\"]'),(8143990,700,2,'actress',NULL,'[\"Theresa\"]'),(8143990,939697,3,'actress',NULL,'[\"Old Dolio\"]'),(8143990,6970,4,'actress',NULL,'[\"Althea\"]'),(8143990,432380,5,'director',NULL,NULL),(8143990,306890,6,'producer','producer',NULL),(8143990,1323058,7,'producer','producer',NULL),(8143990,1250070,8,'producer','producer',NULL),(8143990,7888676,9,'composer',NULL,NULL),(8150814,506613,10,'producer','producer',NULL),(8150814,2193008,1,'actress',NULL,'[\"Makani Young\"]'),(8150814,6829691,2,'actor',NULL,'[\"Ollie Larsson\"]'),(8150814,3764562,3,'actress',NULL,'[\"Alex Crisp\"]'),(8150814,4499094,4,'actor',NULL,'[\"Zach Sandford\"]'),(8150814,2674307,5,'director',NULL,NULL),(8150814,9703734,6,'writer','based on the novel by',NULL),(8150814,2849655,7,'writer','screenplay by',NULL),(8150814,2752795,8,'producer','producer',NULL),(8150814,2950264,9,'producer','producer',NULL),(8151874,3926614,10,'composer',NULL,NULL),(8151874,479471,1,'actor',NULL,'[\"James\"]'),(8151874,2348627,2,'actor',NULL,'[\"Otis (22)\"]'),(8151874,7415871,3,'actor',NULL,'[\"Otis (12)\"]'),(8151874,2720892,4,'actor',NULL,'[\"Percy\"]'),(8151874,2776774,5,'director',NULL,NULL),(8151874,3951426,6,'producer','producer',NULL),(8151874,2271939,7,'producer','producer',NULL),(8151874,2293059,8,'producer','producer',NULL),(8151874,815610,9,'producer','producer',NULL),(8155288,3015807,10,'editor',NULL,NULL),(8155288,1557329,1,'actress',NULL,'[\"Tree Gelbman\"]'),(8155288,3441152,2,'actor',NULL,'[\"Carter Davis\"]'),(8155288,7059572,3,'actor',NULL,'[\"Ryan Phan\"]'),(8155288,4139037,4,'actor',NULL,'[\"Samar Ghosh\"]'),(8155288,484907,5,'director',NULL,NULL),(8155288,1245146,6,'writer','based on characters created by',NULL),(8155288,89658,7,'producer','producer',NULL),(8155288,566970,8,'composer',NULL,NULL),(8155288,2947,9,'cinematographer',NULL,NULL),(8169446,1083844,10,'cinematographer',NULL,NULL),(8169446,688132,1,'actress',NULL,'[\"Abby\"]'),(8169446,237222,2,'actress',NULL,'[\"Rebecca\"]'),(8169446,309430,3,'actress',NULL,'[\"Catherine\"]'),(8169446,748973,4,'actress',NULL,'[\"Naomi\"]'),(8169446,1560199,5,'writer','written by',NULL),(8169446,819225,6,'writer','written by',NULL),(8169446,755254,7,'producer','producer',NULL),(8169446,171123,8,'composer','composer',NULL),(8169446,578540,9,'composer',NULL,NULL),(8169552,10998463,10,'writer','collaborating writer',NULL),(8169552,9712997,1,'actress',NULL,'[\"Mônica\"]'),(8169552,7979939,2,'actor',NULL,'[\"Cebolinha\"]'),(8169552,9712999,3,'actress',NULL,'[\"Magali\"]'),(8169552,9712998,4,'actor',NULL,'[\"Cascão\"]'),(8169552,1179870,5,'director',NULL,NULL),(8169552,3530498,6,'writer','screenplay by',NULL),(8169552,9918681,7,'writer','novel',NULL),(8169552,9918682,8,'writer','novel',NULL),(8169552,211725,9,'writer','characters',NULL),(8178634,4827781,10,'producer','producer',NULL),(8178634,1694524,1,'actor',NULL,'[\"Komaram Bheem\"]'),(8178634,2776304,2,'actor',NULL,'[\"Alluri Sitarama Raju\"]'),(8178634,222426,3,'actor',NULL,'[\"Venkata Rama Raju\"]'),(8178634,1017633,4,'actress',NULL,'[\"Sita\"]'),(8178634,1442514,5,'director',NULL,NULL),(8178634,2353436,6,'writer','story',NULL),(8178634,7339980,7,'writer','dialogue',NULL),(8178634,4157919,8,'writer','tamil dialogue',NULL),(8178634,2355581,9,'producer','producer',NULL),(8179388,899193,10,'producer','producer',NULL),(8179388,5375420,1,'actor',NULL,'[\"Alex\"]'),(8179388,7195971,2,'actress',NULL,'[\"ZhenZhen\"]'),(8179388,4652001,3,'actor',NULL,'[\"Dariush\"]'),(8179388,9378786,4,'actor',NULL,'[\"Gabriel\"]'),(8179388,629334,5,'director',NULL,NULL),(8179388,826714,6,'writer','written by',NULL),(8179388,570706,7,'producer','producer',NULL),(8179388,5116939,8,'producer','producer',NULL),(8179388,813429,9,'producer','producer',NULL),(8201170,4164237,10,'cinematographer',NULL,NULL),(8201170,3170207,1,'actor',NULL,'[\"Brooks Rattigan\"]'),(8201170,1404824,2,'actress',NULL,'[\"Celia Lieberman\"]'),(8201170,4955720,3,'actor',NULL,'[\"Murph\"]'),(8201170,6161516,4,'actress',NULL,'[\"Shelby Pace\"]'),(8201170,625245,5,'director',NULL,NULL),(8201170,89237,6,'writer',NULL,NULL),(8201170,6590106,7,'writer',NULL,NULL),(8201170,1396390,8,'producer','producer',NULL),(8201170,866785,9,'producer','producer',NULL),(8206668,3782182,10,'producer','producer',NULL),(8206668,413168,1,'actor',NULL,'[\"Frank Tassone\"]'),(8206668,5380,2,'actor',NULL,'[\"Big Bob Spicer\"]'),(8206668,925578,3,'actress',NULL,'[\"Mary Ann\"]'),(8206668,5049,4,'actress',NULL,'[\"Pam Gluckin\"]'),(8206668,8083973,5,'director',NULL,NULL),(8206668,6782145,6,'writer','screenplay by',NULL),(8206668,4524237,7,'writer','based on the New York Magazine article \"The Bad Superintendent\" by',NULL),(8206668,1757754,8,'producer','producer',NULL),(8206668,2271939,9,'producer','producer',NULL),(8228288,3163166,10,'producer','co-producer',NULL),(8228288,1293644,1,'actor',NULL,'[\"Goreng\"]'),(8228288,1445349,2,'actor',NULL,'[\"Trimagasi\"]'),(8228288,760665,3,'actress',NULL,'[\"Imoguiri\"]'),(8228288,117763,4,'actor',NULL,'[\"Baharat\"]'),(8228288,2008067,5,'director',NULL,NULL),(8228288,1457642,6,'writer','screenplay by',NULL),(8228288,1038878,7,'writer','screenplay by',NULL),(8228288,380178,8,'producer','co-producer',NULL),(8228288,433355,9,'producer','executive producer',NULL),(8230872,1710843,10,'editor',NULL,NULL),(8230872,9746223,1,'actress',NULL,'[\"Rosie\"]'),(8230872,2979684,2,'actress',NULL,'[\"Áila\"]'),(8230872,9746224,3,'actor',NULL,'[\"Cat\"]'),(8230872,364458,4,'actress',NULL,'[\"Sophie\"]'),(8230872,1279669,5,'director',NULL,NULL),(8230872,3683717,6,'producer','producer',NULL),(8230872,1499782,7,'producer','producer',NULL),(8230872,2850448,8,'producer','producer',NULL),(8230872,1964040,9,'cinematographer',NULL,NULL),(8231668,3329028,10,'composer',NULL,NULL),(8231668,2955597,1,'actress',NULL,'[\"Andrea\"]'),(8231668,4364448,2,'actress',NULL,'[\"Casting Director\"]'),(8231668,2166469,3,'actor',NULL,'[\"Director\"]'),(8231668,3713920,4,'actor',NULL,'[\"Writer\"]'),(8231668,1260607,5,'director',NULL,NULL),(8231668,4460142,6,'producer','producer',NULL),(8231668,3971847,7,'producer','producer',NULL),(8231668,4930589,8,'producer','producer',NULL),(8231668,1973162,9,'producer','producer',NULL),(8236336,1752,10,'producer','producer',NULL),(8236336,3485845,1,'actor',NULL,'[\"Daniel Jones\"]'),(8236336,906,2,'actress',NULL,'[\"Senator Dianne Feinstein\"]'),(8236336,358316,3,'actor',NULL,'[\"Denis McDonough\"]'),(8236336,505971,4,'actor',NULL,'[\"John Brennan\"]'),(8236336,1994243,5,'director',NULL,NULL),(8236336,289048,6,'producer','producer',NULL),(8236336,3006960,7,'producer','producer',NULL),(8236336,2450477,8,'producer','producer',NULL),(8236336,649715,9,'producer','producer',NULL),(8242084,698133,10,'producer','producer',NULL),(8242084,1176985,1,'actor',NULL,'[\"JJ\"]'),(8242084,5668548,2,'actress',NULL,'[\"Sophie\"]'),(8242084,1406792,3,'actress',NULL,'[\"Kate\"]'),(8242084,1102891,4,'actress',NULL,'[\"Bobbi\"]'),(8242084,781842,5,'director',NULL,NULL),(8242084,388375,6,'writer','written by',NULL),(8242084,388377,7,'writer','written by',NULL),(8242084,70454,8,'producer','producer',NULL),(8242084,3156280,9,'producer','producer',NULL),(8244784,1138368,10,'cinematographer','director of photography',NULL),(8244784,2365811,1,'actress',NULL,'[\"Crystal\"]'),(8244784,5476,2,'actress',NULL,'[\"Athena\"]'),(8244784,54697,3,'actor',NULL,'[\"Staten Island\"]'),(8244784,245145,4,'actor',NULL,'[\"Don???\"]'),(8244784,957505,5,'director',NULL,NULL),(8244784,7226510,6,'writer','written by',NULL),(8244784,511541,7,'writer','written by',NULL),(8244784,89658,8,'producer','producer',NULL),(8244784,56550,9,'composer',NULL,NULL),(8246646,5822515,10,'editor',NULL,NULL),(8246646,4924,1,'actor',NULL,'[\"Victor Blackley\"]'),(8246646,616,2,'actor',NULL,'[\"Blake Mollenaux\"]'),(8246646,4848618,3,'actress',NULL,'[\"Vivian\"]'),(8246646,64155,4,'actor',NULL,'[\"Nick\"]'),(8246646,4992626,5,'producer','producer',NULL),(8246646,5854138,6,'producer','producer',NULL),(8246646,9967933,7,'composer',NULL,NULL),(8246646,1718236,8,'composer','composer',NULL),(8246646,658345,9,'cinematographer',NULL,NULL),(8267604,4752699,10,'producer','executive producer: KNM Films',NULL),(8267604,9862858,1,'actor',NULL,'[\"Zain\"]'),(8267604,9862859,2,'actress',NULL,'[\"Rahil\"]'),(8267604,9862860,3,'actor',NULL,'[\"Yonas\"]'),(8267604,10201625,4,'actress',NULL,'[\"Souad\"]'),(8267604,1701024,5,'director',NULL,NULL),(8267604,2764802,6,'writer','screenplay',NULL),(8267604,9878616,7,'writer','screenplay',NULL),(8267604,2759610,8,'writer','in collaboration with',NULL),(8267604,1848588,9,'writer','in collaboration with',NULL),(8286894,214105,10,'editor',NULL,NULL),(8286894,9776045,1,'actress',NULL,'[\"Kena Mwaura\"]'),(8286894,5567941,2,'actor',NULL,'[\"Blacksta\"]'),(8286894,4078325,3,'actress',NULL,'[\"Nduta\"]'),(8286894,5709904,4,'actor',NULL,'[\"Waireri\"]'),(8286894,1393967,5,'director',NULL,NULL),(8286894,3689536,6,'writer','written by',NULL),(8286894,10318996,7,'writer','short story \"Jambula Tree\"',NULL),(8286894,548699,8,'producer','producer',NULL),(8286894,4070137,9,'cinematographer',NULL,NULL),(8287690,5236342,10,'actress',NULL,'[\"Béatrice\"]'),(8287690,8543451,1,'actress',NULL,'[\"Charlotte\"]'),(8287690,6829691,2,'actor',NULL,'[\"Guillaume\"]'),(8287690,2954178,3,'actor',NULL,'[\"Maxime\"]'),(8287690,9430043,4,'actor',NULL,'[\"Nicolas\"]'),(8287690,3679540,5,'director',NULL,NULL),(8287690,1386177,6,'producer','producer',NULL),(8287690,1216045,7,'cinematographer',NULL,NULL),(8287690,98949,8,'editor',NULL,NULL),(8287690,6951861,9,'actor',NULL,'[\"Félix\"]'),(8299768,3659547,10,'producer','producer',NULL),(8299768,11457165,1,'actor',NULL,'[\"Singing Fisherman\"]'),(8299768,5553586,2,'actor',NULL,'[\"Singing Fisherman\"]'),(8299768,4930397,3,'actor',NULL,'[\"Singing Fisherman\"]'),(8299768,2440805,4,'actor',NULL,'[\"Singing Fisherman\"]'),(8299768,3014722,5,'director',NULL,NULL),(8299768,3437699,6,'director',NULL,NULL),(8299768,2513975,7,'producer','producer',NULL),(8299768,2593874,8,'producer','producer',NULL),(8299768,1463905,9,'producer','producer',NULL),(8323104,226505,10,'producer','producer',NULL),(8323104,6096118,1,'actress',NULL,'[\"Nancy\"]'),(8323104,6312506,2,'actress',NULL,'[\"George\"]'),(8323104,9891599,3,'actress',NULL,'[\"Bess\"]'),(8323104,1627969,4,'actress',NULL,'[\"Hannah\"]'),(8323104,2240,5,'director',NULL,NULL),(8323104,1936920,6,'writer','screenplay by',NULL),(8323104,2118749,7,'writer','screenplay by',NULL),(8323104,13182781,8,'writer','based on the novel by',NULL),(8323104,444696,9,'writer','based on the novel by',NULL),(8327492,6761683,10,'producer','producer',NULL),(8327492,2854393,1,'actor',NULL,'[\"Tito\"]'),(8327492,289545,2,'actress',NULL,'[\"Rosa\"]'),(8327492,618690,3,'actor',NULL,'[\"Dr. Rufos\"]'),(8327492,1813667,4,'actor',NULL,'[\"Alaor Souza\"]'),(8327492,3808311,5,'director',NULL,NULL),(8327492,7385657,6,'director',NULL,NULL),(8327492,825756,7,'director',NULL,NULL),(8327492,1900680,8,'writer','screenwriter',NULL),(8327492,2949998,9,'producer','producer',NULL),(8331988,5578607,1,'actress',NULL,'[\"Eve\"]'),(8331988,1875689,2,'actress',NULL,NULL),(8331988,1518068,3,'actress',NULL,'[\"Minitoy\"]'),(8331988,11163268,4,'actor',NULL,NULL),(8331988,3569165,5,'director',NULL,NULL),(8331988,9796962,6,'writer',NULL,NULL),(8331988,2703902,7,'producer','producer',NULL),(8331988,1920796,8,'cinematographer',NULL,NULL),(8331988,6335301,9,'editor',NULL,NULL),(8332772,360463,10,'composer',NULL,NULL),(8332772,3846080,1,'actress',NULL,'[\"Sachi\"]'),(8332772,5396138,2,'actor',NULL,'[\"Takashi\"]'),(8332772,6327727,3,'actor',NULL,'[\"Takahashi\"]'),(8332772,8816431,4,'actor',NULL,'[\"Miyake\"]'),(8332772,1142058,5,'director',NULL,NULL),(8332772,1633142,6,'writer','based on the short story',NULL),(8332772,2838016,7,'producer','producer',NULL),(8332772,2044558,8,'producer','producer',NULL),(8332772,9797682,9,'producer','producer',NULL),(8332922,1937,10,'composer',NULL,NULL),(8332922,1289434,1,'actress',NULL,'[\"Evelyn Abbott\"]'),(8332922,8075925,2,'actress',NULL,'[\"Regan Abbott\"]'),(8332922,614165,3,'actor',NULL,'[\"Emmett\"]'),(8332922,1024677,4,'actor',NULL,'[\"Lee Abbott\"]'),(8332922,1456816,5,'writer','based on characters created by',NULL),(8332922,1399714,6,'writer','based on characters created by',NULL),(8332922,881,7,'producer','producer',NULL),(8332922,286320,8,'producer','producer',NULL),(8332922,298181,9,'producer','producer',NULL),(8338076,614774,10,'composer',NULL,NULL),(8338076,995,1,'actress',NULL,'[\"Helen Wilson\"]'),(8338076,4852,2,'actress',NULL,'[\"Janet Poindexter\"]'),(8338076,222643,3,'actress',NULL,'[\"Sally Hanson\"]'),(8338076,268,4,'actress',NULL,'[\"Margot Clark\"]'),(8338076,501185,5,'director',NULL,NULL),(8338076,3798,6,'writer','screenplay by',NULL),(8338076,7341744,7,'writer','based on a story by',NULL),(8338076,77043,8,'producer','producer',NULL),(8338076,1622325,9,'producer','producer',NULL),(8350360,606294,10,'editor',NULL,NULL),(8350360,267812,1,'actress',NULL,'[\"Lorraine Warren\"]'),(8350360,933940,2,'actor',NULL,'[\"Ed Warren\"]'),(8350360,5085683,3,'actress',NULL,'[\"Judy Warren\"]'),(8350360,5589690,4,'actress',NULL,'[\"Mary Ellen\"]'),(8350360,2477891,5,'director',NULL,NULL),(8350360,1490123,6,'writer','story by',NULL),(8350360,755911,7,'producer','producer',NULL),(8350360,1177766,8,'composer',NULL,NULL),(8350360,2409153,9,'cinematographer','director of photography',NULL),(8356942,3016,10,'editor',NULL,NULL),(8356942,1567113,1,'actress',NULL,'[\"Mace\",\"Mason Browne\"]'),(8356942,4851,2,'actress',NULL,'[\"Graciela Rivera\"]'),(8356942,1549063,3,'actress',NULL,'[\"Lin Mi Sheng\"]'),(8356942,1208167,4,'actress',NULL,'[\"Marie Schmidt\"]'),(8356942,1334526,5,'director',NULL,NULL),(8356942,714246,6,'writer','screenplay by',NULL),(8356942,1163710,7,'producer','producer',NULL),(8356942,432725,8,'composer',NULL,NULL),(8356942,362165,9,'cinematographer','director of photography',NULL),(8359816,606682,10,'editor',NULL,NULL),(8359816,1106944,1,'actor',NULL,'[\"Ricky\"]'),(8359816,10214834,2,'actress',NULL,'[\"Abby\"]'),(8359816,10427036,3,'actor',NULL,'[\"Seb\"]'),(8359816,10427037,4,'actress',NULL,'[\"Liza Jane\"]'),(8359816,516360,5,'director',NULL,NULL),(8359816,491956,6,'writer','screenplay',NULL),(8359816,639780,7,'producer','producer',NULL),(8359816,6070,8,'composer',NULL,NULL),(8359816,752811,9,'cinematographer',NULL,NULL),(8359848,213424,10,'cinematographer',NULL,NULL),(8359848,1154749,1,'actress',NULL,'[\"Selva\"]'),(8359848,8273848,2,'actor',NULL,'[\"David\"]'),(8359848,9113893,3,'actress',NULL,'[\"Lou\"]'),(8359848,8156298,4,'actor',NULL,'[\"Daddy\"]'),(8359848,637615,5,'director',NULL,NULL),(8359848,1330234,6,'producer','producer',NULL),(8359848,334926,7,'producer','producer',NULL),(8359848,544947,8,'producer','producer',NULL),(8359848,917946,9,'producer','producer',NULL),(8361028,3096179,10,'producer','producer',NULL),(8361028,5483400,1,'actress',NULL,'[\"Alice\",\"Lola\"]'),(8361028,1113773,2,'actor',NULL,'[\"Tinker\"]'),(8361028,1828,3,'actress',NULL,'[\"Lynne\"]'),(8361028,4917921,4,'actor',NULL,'[\"Jordan\"]'),(8361028,3771823,5,'director',NULL,NULL),(8361028,9807731,6,'writer','written by',NULL),(8361028,3561100,7,'writer','story by',NULL),(8361028,6556385,8,'producer','producer',NULL),(8361028,3034451,9,'producer','producer',NULL),(8361552,1155956,1,'director',NULL,NULL),(8364368,3552671,10,'composer',NULL,NULL),(8364368,2546012,1,'actress',NULL,'[\"Haley\"]'),(8364368,1608,2,'actor',NULL,'[\"Dave\"]'),(8364368,6077056,3,'actress',NULL,'[\"Beth\"]'),(8364368,5105119,4,'actor',NULL,'[\"Wayne\"]'),(8364368,14960,5,'director',NULL,NULL),(8364368,1726531,6,'writer','written by',NULL),(8364368,1726912,7,'writer','written by',NULL),(8364368,1997836,8,'producer','producer',NULL),(8364368,600,9,'producer','producer',NULL),(8367814,1666163,10,'composer',NULL,NULL),(8367814,190,1,'actor',NULL,'[\"Michael Pearson\"]'),(8367814,402271,2,'actor',NULL,'[\"Ray\"]'),(8367814,1890784,3,'actress',NULL,'[\"Rosalind Pearson\"]'),(8367814,834989,4,'actor',NULL,'[\"Matthew\"]'),(8367814,5363,5,'director',NULL,NULL),(8367814,6842463,6,'writer','story by',NULL),(8367814,3044095,7,'writer','story by',NULL),(8367814,2580983,8,'writer','story editor',NULL),(8367814,1088848,9,'producer','producer',NULL),(8368406,2021435,10,'cinematographer','director of photography',NULL),(8368406,1782299,1,'actress',NULL,'[\"Gemma\"]'),(8368406,2488429,2,'actress',NULL,'[\"School Mom\"]'),(8368406,9450235,3,'actress',NULL,'[\"Molly\"]'),(8368406,251986,4,'actor',NULL,'[\"Tom\"]'),(8368406,2705923,5,'director',NULL,NULL),(8368406,1167599,6,'writer','written by',NULL),(8368406,565069,7,'producer','producer',NULL),(8368406,568107,8,'producer','producer',NULL),(8368406,253120,9,'composer',NULL,NULL),(8368408,785029,10,'cinematographer',NULL,NULL),(8368408,2394794,1,'actress',NULL,'[\"Sam\"]'),(8368408,372176,2,'actress',NULL,'[\"Scarlet\"]'),(8368408,1303,3,'actress',NULL,'[\"Madeleine\"]'),(8368408,706,4,'actress',NULL,'[\"Florence\"]'),(8368408,4142927,5,'director',NULL,NULL),(8368408,6975399,6,'writer','written by',NULL),(8368408,2670366,7,'producer','producer',NULL),(8368408,739868,8,'producer','producer',NULL),(8368408,253313,9,'composer',NULL,NULL),(8368512,1532744,10,'producer','producer',NULL),(8368512,1212722,1,'actor',NULL,'[\"Greville Wynne\"]'),(8368512,632457,2,'actor',NULL,'[\"Oleg Penkovsky\"]'),(8368512,3014031,3,'actress',NULL,'[\"Emily Donovan\"]'),(8368512,1078491,4,'actor',NULL,'[\"Nikita Khrushchev\"]'),(8368512,4315078,5,'director',NULL,NULL),(8368512,4468296,6,'writer','written by',NULL),(8368512,1267515,7,'producer','producer',NULL),(8368512,1989734,8,'producer','producer',NULL),(8368512,1878845,9,'producer','producer',NULL),(8375936,3148014,1,'actress',NULL,'[\"Vivica Stevens\",\"RoboWoman\"]'),(8375936,697169,2,'actress',NULL,'[\"Carlenee\"]'),(8375936,2316340,3,'actor',NULL,'[\"Jonathan\"]'),(8375936,636893,4,'actor',NULL,'[\"Dr. Michaels\"]'),(8375936,4341114,5,'director',NULL,NULL),(8375936,9060017,6,'writer',NULL,NULL),(8375936,9729124,7,'producer','producer',NULL),(8375936,9436710,8,'producer','producer',NULL),(8375936,1987002,9,'composer',NULL,NULL),(8385148,642869,10,'producer','producer',NULL),(8385148,5351,1,'actor',NULL,'[\"Michael Bryce\"]'),(8385148,168,2,'actor',NULL,'[\"Darius Kincaid\"]'),(8385148,161,3,'actress',NULL,'[\"Sonia Kincaid\"]'),(8385148,104,4,'actor',NULL,'[\"Aristotles Papadopolous\"]'),(8385148,400850,5,'director',NULL,NULL),(8385148,4468296,6,'writer','based on characters created by',NULL),(8385148,5024076,7,'writer','screenplay by',NULL),(8385148,4364857,8,'writer','screenplay by',NULL),(8385148,5004893,9,'producer','producer',NULL),(8385474,689780,10,'producer','producer',NULL),(8385474,1265802,1,'actor',NULL,'[\"Bailey\"]'),(8385474,598,2,'actor',NULL,'[\"Ethan\"]'),(8385474,3077071,3,'actress',NULL,'[\"CJ\"]'),(8385474,1339,4,'actress',NULL,'[\"Hannah\"]'),(8385474,541562,5,'director',NULL,NULL),(8385474,1240326,6,'writer','screenplay by',NULL),(8385474,585243,7,'writer','screenplay by',NULL),(8385474,285379,8,'writer','screenplay by',NULL),(8385474,938645,9,'writer','screenplay by',NULL),(8399288,341702,10,'producer','producer',NULL),(8399288,842770,1,'actress',NULL,'[\"Jessica Holland\"]'),(8399288,8013928,2,'actress',NULL,'[\"Karen Holland\"]'),(8399288,319843,3,'actor',NULL,'[\"Juan Ospina\"]'),(8399288,9248109,4,'actor',NULL,'[\"Mateo Ospina\"]'),(8399288,917405,5,'director',NULL,NULL),(8399288,3418734,6,'producer','producer',NULL),(8399288,4415263,7,'producer','producer',NULL),(8399288,575263,8,'producer','producer',NULL),(8399288,1444286,9,'producer','producer',NULL),(8399664,263237,10,'editor',NULL,NULL),(8399664,7340546,1,'actress',NULL,'[\"Milla\"]'),(8399664,9334013,2,'actress',NULL,'[\"Scarlett\"]'),(8399664,3108675,3,'actor',NULL,'[\"Moses\"]'),(8399664,9462632,4,'actress',NULL,'[\"Maria\"]'),(8399664,2221724,5,'director',NULL,NULL),(8399664,1514808,6,'writer','written by',NULL),(8399664,3866481,7,'producer','producer',NULL),(8399664,1265348,8,'composer',NULL,NULL),(8399664,1449568,9,'cinematographer','director of photography',NULL),(8400584,2179966,10,'producer','producer',NULL),(8400584,5517,1,'actress',NULL,'[\"Jenna\"]'),(8400584,5469428,2,'actor',NULL,'[\"Eric\"]'),(8400584,868659,3,'actress',NULL,'[\"Darcy\"]'),(8400584,1043164,4,'actress',NULL,'[\"Elodie\"]'),(8400584,667015,5,'director',NULL,NULL),(8400584,3109300,6,'writer','based on the book by',NULL),(8400584,2372991,7,'writer','screenplay by',NULL),(8400584,2249759,8,'producer','producer',NULL),(8400584,3126241,9,'producer','producer',NULL),(8404614,2425842,10,'composer',NULL,NULL),(8404614,596,1,'actor',NULL,'[\"Cardinal Jorge Mario Bergoglio\",\"Pope Francis\"]'),(8404614,164,2,'actor',NULL,'[\"Cardinal Joseph Aloisius Ratzinger\",\"Pope Benedict XVI.\"]'),(8404614,1375877,3,'actor',NULL,'[\"Younger Jorge Bergoglio\"]'),(8404614,323483,4,'actor',NULL,'[\"Cardinal Hummes\"]'),(8404614,576987,5,'director',NULL,NULL),(8404614,565026,6,'writer','written by',NULL),(8404614,3043818,7,'producer','producer',NULL),(8404614,1469853,8,'producer','producer',NULL),(8404614,780870,9,'producer','producer',NULL),(8425034,936044,10,'producer','producer',NULL),(8425034,4530936,1,'actress',NULL,'[\"Duke\"]'),(8425034,7414233,2,'actress',NULL,'[\"Laurel\"]'),(8425034,1499228,3,'actress',NULL,'[\"Izzy\"]'),(8425034,6484560,4,'actress',NULL,'[\"Roya\"]'),(8425034,5389756,5,'director',NULL,NULL),(8425034,7105194,6,'producer','producer',NULL),(8425034,6801028,7,'producer','producer',NULL),(8425034,8883631,8,'producer','producer',NULL),(8425034,8883632,9,'producer','producer',NULL),(8430598,2229059,10,'producer','producer',NULL),(8430598,5253,1,'actress',NULL,'[\"Shirley Jackson\"]'),(8430598,3747611,2,'actress',NULL,'[\"Rose Nemser\",\"Paula\"]'),(8430598,836121,3,'actor',NULL,'[\"Stanley Hyman\"]'),(8430598,503567,4,'actor',NULL,'[\"Fred Nemser\"]'),(8430598,2528451,5,'director',NULL,NULL),(8430598,6311892,6,'writer','screenplay by',NULL),(8430598,4957990,7,'writer','based on the book written by',NULL),(8430598,3065267,8,'producer','producer',NULL),(8430598,2551041,9,'producer','producer',NULL),(8456190,2566390,10,'writer','additional story material',NULL),(8456190,799777,1,'actor',NULL,'[\"Claggart\"]'),(8456190,185,2,'actor',NULL,'[\"Dolph\"]'),(8456190,1663205,3,'actor',NULL,'[\"Switch\"]'),(8456190,732436,4,'actor',NULL,'[\"HMMF Animal Handler\",\"Chum\"]'),(8456190,4248415,5,'director',NULL,NULL),(8456190,3568340,6,'director','co-director',NULL),(8456190,2095752,7,'writer','story by',NULL),(8456190,2095010,8,'writer','story by',NULL),(8456190,1798333,9,'writer','story by',NULL),(8456696,1199960,10,'composer',NULL,NULL),(8456696,1134612,1,'actor',NULL,'[\"Kenny\"]'),(8456696,86301,2,'actor',NULL,'[\"Harold McPherson\"]'),(8456696,925033,3,'actress',NULL,'[\"Minnie Kennedy\"]'),(8456696,362955,4,'actress',NULL,'[\"Sister Semple\"]'),(8456696,118419,5,'director',NULL,NULL),(8456696,5837900,6,'director',NULL,NULL),(8456696,6603079,7,'producer','producer',NULL),(8456696,5607294,8,'producer','producer',NULL),(8456696,2010702,9,'producer','producer',NULL),(8457260,9912452,1,'actor',NULL,NULL),(8457260,9912453,2,'actor',NULL,NULL),(8457260,9667982,3,'actor',NULL,NULL),(8457260,9667981,4,'director',NULL,NULL),(8459250,3206318,10,'production_designer',NULL,NULL),(8459250,9860935,1,'actor',NULL,'[\"Zachary\"]'),(8459250,9860936,2,'actress',NULL,'[\"Shéhérazade\"]'),(8459250,9860937,3,'actor',NULL,'[\"Ryad\"]'),(8459250,9860938,4,'actress',NULL,'[\"Sabrina\"]'),(8459250,3014863,5,'director',NULL,NULL),(8459250,1771591,6,'writer','written by',NULL),(8459250,2160922,7,'producer','producer',NULL),(8459250,5490381,8,'cinematographer',NULL,NULL),(8459250,3107843,9,'editor',NULL,NULL),(8461042,927898,10,'production_designer',NULL,NULL),(8461042,3817466,1,'actress',NULL,'[\"Mary\"]'),(8461042,6108575,2,'actress',NULL,'[\"Tammy Martin\"]'),(8461042,220888,3,'actor',NULL,'[\"Leonardo\"]'),(8461042,1569513,4,'actor',NULL,'[\"Tony\"]'),(8461042,3588,5,'director',NULL,NULL),(8461042,369249,6,'producer','producer',NULL),(8461042,77366,7,'cinematographer',NULL,NULL),(8461042,633971,8,'editor',NULL,NULL),(8461042,746016,9,'editor',NULL,NULL),(8479120,7569539,1,'actor',NULL,'[\"Mario\"]'),(8479120,9869491,2,'actress',NULL,'[\"Alicia\"]'),(8479120,5980345,3,'actress',NULL,'[\"Laura\"]'),(8479120,4846137,4,'actor',NULL,'[\"Sin\"]'),(8479120,9869492,5,'writer',NULL,NULL),(8479120,9869493,6,'composer',NULL,NULL),(8479120,7580514,7,'composer',NULL,NULL),(8479120,7569541,8,'cinematographer',NULL,NULL),(8484012,3592268,10,'production_designer',NULL,NULL),(8484012,549505,1,'actor',NULL,'[\"Mel\"]'),(8484012,4723712,2,'actor',NULL,'[\"Nathaniel\"]'),(8484012,1143861,3,'actress',NULL,'[\"Mary\"]'),(8484012,3255459,4,'actress',NULL,'[\"Cynthia\"]'),(8484012,1119645,5,'director',NULL,NULL),(8484012,3653190,6,'writer','written by',NULL),(8484012,2276927,7,'producer','producer',NULL),(8484012,2039784,8,'cinematographer',NULL,NULL),(8484012,2359061,9,'editor',NULL,NULL),(8499102,7167614,10,'composer',NULL,NULL),(8499102,10657198,1,'self',NULL,'[\"Self\"]'),(8499102,9987234,2,'self',NULL,'[\"Self\"]'),(8499102,12080457,3,'self',NULL,'[\"Self\"]'),(8499102,6079369,4,'actor',NULL,'[\"Nick Champa\"]'),(8499102,4372924,5,'director',NULL,NULL),(8499102,5289961,6,'producer','producer',NULL),(8499102,2762002,7,'producer','producer',NULL),(8499102,353012,8,'producer','producer',NULL),(8499102,8655850,9,'producer','producer',NULL),(8503618,2010670,10,'production_designer',NULL,NULL),(8503618,592135,1,'actor',NULL,'[\"Alexander Hamilton\"]'),(8503618,5623883,2,'actress',NULL,'[\"Eliza Hamilton\"]'),(8503618,1502434,3,'actor',NULL,'[\"Aaron Burr\"]'),(8503618,325989,4,'actress',NULL,'[\"Angelica Schuyler\"]'),(8503618,2371802,5,'director',NULL,NULL),(8503618,2375857,6,'writer','inspired by the book Alexander Hamilton by',NULL),(8503618,1733243,7,'producer','producer',NULL),(8503618,2336,8,'cinematographer','director of photography',NULL),(8503618,602885,9,'editor',NULL,NULL),(8508734,1132576,10,'producer','producer',NULL),(8508734,5444837,1,'actor',NULL,'[\"Bol Majur\"]'),(8508734,2148911,2,'actress',NULL,'[\"Rial Majur\"]'),(8508734,12022709,3,'actress',NULL,'[\"Nyagak\"]'),(8508734,1741002,4,'actor',NULL,'[\"Mark Essworth\"]'),(8508734,3676311,5,'director',NULL,NULL),(8508734,10265692,6,'writer','story',NULL),(8508734,4820299,7,'writer','story',NULL),(8508734,1999726,8,'producer','producer',NULL),(8508734,313144,9,'producer','producer',NULL),(8510350,2447772,10,'producer','producer',NULL),(8510350,5381,1,'actress',NULL,'[\"Danica Ross\"]'),(8510350,617141,2,'actress',NULL,'[\"Gypsy Neumieir\"]'),(8510350,3587674,3,'actress',NULL,'[\"Samantha \'Sam\' Craft\"]'),(8510350,4384329,4,'actress',NULL,'[\"Judi Ross\"]'),(8510350,2854747,5,'director',NULL,NULL),(8510350,1884371,6,'writer','original screenplay by',NULL),(8510350,313295,7,'writer','story by',NULL),(8510350,326411,8,'producer','producer',NULL),(8510350,5472785,9,'producer','producer',NULL),(8521718,5387,10,'producer','producer',NULL),(8521718,7363531,1,'actress',NULL,'[\"Billie Holiday\"]'),(8521718,5218990,2,'actor',NULL,'[\"Jimmy Fletcher\"]'),(8521718,1330560,3,'actor',NULL,'[\"Harry Anslinger\"]'),(8521718,5169,4,'actress',NULL,'[\"Tallulah Bankhead\"]'),(8521718,200005,5,'director',NULL,NULL),(8521718,663016,6,'writer','screenplay by',NULL),(8521718,2228635,7,'writer','based on the book \"Chasing the Scream\" by',NULL),(8521718,10588162,8,'producer','producer',NULL),(8521718,456929,9,'producer','producer',NULL),(8521876,2302134,10,'producer','producer',NULL),(8521876,4950,1,'actress',NULL,'[\"Allison Torres\"]'),(8521876,1183149,2,'actor',NULL,'[\"Carlos Torres\"]'),(8521876,4911194,3,'actress',NULL,'[\"Katie Torres\"]'),(8521876,8574700,4,'actor',NULL,'[\"Nando Torres\"]'),(8521876,37708,5,'director',NULL,NULL),(8521876,3675159,6,'writer','screen story by',NULL),(8521876,6676088,7,'writer','based on the book by',NULL),(8521876,6676089,8,'writer','based on the book by',NULL),(8521876,4652617,9,'producer','producer',NULL),(8522006,1458741,10,'cinematographer','director of photography',NULL),(8522006,829576,1,'actress',NULL,'[\"Abby\"]'),(8522006,4496875,2,'actress',NULL,'[\"Harper\"]'),(8522006,5460,3,'actress',NULL,'[\"Tipper\"]'),(8522006,1255,4,'actor',NULL,'[\"Ted\"]'),(8522006,245112,5,'director',NULL,NULL),(8522006,4364610,6,'writer','screenplay by',NULL),(8522006,2125212,7,'producer','producer',NULL),(8522006,2327099,8,'producer','producer',NULL),(8522006,4074194,9,'composer',NULL,NULL),(8579674,854991,10,'producer','producer',NULL),(8579674,2835616,1,'actor',NULL,'[\"Lance Corporal Blake\"]'),(8579674,1126657,2,'actor',NULL,'[\"Lance Corporal Schofield\"]'),(8579674,990547,3,'actor',NULL,'[\"Sergeant Sanders\"]'),(8579674,147,4,'actor',NULL,'[\"General Erinmore\"]'),(8579674,5222,5,'director',NULL,NULL),(8579674,4880670,6,'writer','written by',NULL),(8579674,365208,7,'producer','producer',NULL),(8579674,568223,8,'producer','producer',NULL),(8579674,1003922,9,'producer','producer',NULL),(8580274,169299,10,'cinematographer',NULL,NULL),(8580274,2071,1,'actor',NULL,'[\"Lars Erickssong\"]'),(8580274,1046097,2,'actress',NULL,'[\"Sigrit Ericksdóttir\"]'),(8580274,1405398,3,'actor',NULL,'[\"Alexander Lemtov\"]'),(8580274,675409,4,'actor',NULL,'[\"Victor Karlosson\"]'),(8580274,229694,5,'director',NULL,NULL),(8580274,824482,6,'writer','written by',NULL),(8580274,1819990,7,'producer','producer',NULL),(8580274,376260,8,'producer','producer',NULL),(8580274,651414,9,'composer','composer',NULL),(8588366,4620889,1,'director',NULL,NULL),(8592498,6591968,10,'production_designer',NULL,NULL),(8592498,8269956,1,'actor',NULL,'[\"Chris\"]'),(8592498,3041621,2,'actor',NULL,'[\"Adam\"]'),(8592498,7091896,3,'actor',NULL,'[\"Barrett\"]'),(8592498,1854497,4,'actor',NULL,'[\"V.V. Stubbs\"]'),(8592498,522234,5,'director',NULL,NULL),(8592498,9924187,6,'writer','story by',NULL),(8592498,6044084,7,'composer',NULL,NULL),(8592498,1751726,8,'composer',NULL,NULL),(8592498,4156013,9,'cinematographer',NULL,NULL),(8613070,1780517,10,'editor',NULL,NULL),(8613070,4374524,1,'actress',NULL,'[\"Marianne\"]'),(8613070,1194748,2,'actress',NULL,'[\"Héloïse\"]'),(8613070,4714676,3,'actress',NULL,'[\"Sophie\"]'),(8613070,420,4,'actress',NULL,'[\"La Comtesse\"]'),(8613070,1780037,5,'director',NULL,NULL),(8613070,1309676,6,'producer','producer',NULL),(8613070,1768243,7,'composer',NULL,NULL),(8613070,3941170,8,'composer',NULL,NULL),(8613070,1083857,9,'cinematographer',NULL,NULL),(8623904,5928339,10,'producer','producer',NULL),(8623904,10916154,1,'actress',NULL,'[\"Young Kate\"]'),(8623904,668,2,'actress',NULL,'[\"Petra\"]'),(8623904,410667,3,'actor',NULL,'[\"Ivan\"]'),(8623904,8838405,4,'actress',NULL,'[\"Young Marta\"]'),(8623904,82450,5,'director',NULL,NULL),(8623904,584117,6,'writer','song \"Last Christmas\"',NULL),(8623904,936353,7,'writer','story',NULL),(8623904,6507883,8,'writer','screenplay',NULL),(8623904,2295810,9,'producer','producer',NULL),(8633464,4517772,10,'producer','producer',NULL),(8633464,268199,1,'actor',NULL,'[\"Jake\"]'),(8633464,3853652,2,'actress',NULL,'[\"Kyra\"]'),(8633464,9317294,3,'actress',NULL,'[\"Mika\"]'),(8633464,5093708,4,'actor',NULL,'[\"Yang\"]'),(8633464,3226379,5,'director',NULL,NULL),(8633464,9984203,6,'writer','based on the short story \"Saying Goodbye to Yang\" from the book \"Children of the New World\" by',NULL),(8633464,2749806,7,'producer','producer',NULL),(8633464,438210,8,'producer','producer',NULL),(8633464,583796,9,'producer','producer',NULL),(8633478,4946908,10,'editor',NULL,NULL),(8633478,5299,1,'actress',NULL,'[\"Mother\",\"Diane\"]'),(8633478,6266674,2,'actress',NULL,'[\"Daughter\",\"Chloe\"]'),(8633478,3337639,3,'actress',NULL,'[\"Nurse\"]'),(8633478,372366,4,'actor',NULL,'[\"Mailman\"]'),(8633478,3792134,5,'director',NULL,NULL),(8633478,3539578,6,'writer','written by',NULL),(8633478,5256327,7,'producer','producer',NULL),(8633478,3788293,8,'composer',NULL,NULL),(8633478,1629321,9,'cinematographer','director of photography',NULL),(8633950,2082465,10,'composer',NULL,NULL),(8633950,10387711,1,'actress',NULL,'[\"Edith Piaf\"]'),(8633950,10387712,2,'actress',NULL,'[\"Marie-Josée Nat\"]'),(8633950,10387713,3,'actress',NULL,'[\"Simone Veil\"]'),(8633950,10387714,4,'actress',NULL,'[\"La Cicciolina\"]'),(8633950,3106028,5,'director',NULL,NULL),(8633950,2307373,6,'writer','collaboration',NULL),(8633950,2072520,7,'writer','based on the book',NULL),(8633950,4663869,8,'producer','producer',NULL),(8633950,243520,9,'producer','producer',NULL),(8637428,1196755,10,'producer','producer',NULL),(8637428,10289762,1,'actress',NULL,'[\"Nai Nai\"]'),(8637428,5377144,2,'actress',NULL,'[\"Billi\"]'),(8637428,5619620,3,'actress',NULL,'[\"Suze\"]'),(8637428,10691419,4,'actress',NULL,'[\"Little Nai Nai\"]'),(8637428,2304675,5,'director',NULL,NULL),(8637428,3951426,6,'producer','producer',NULL),(8637428,2283137,7,'producer','producer',NULL),(8637428,583948,8,'producer','producer',NULL),(8637428,764771,9,'producer','producer',NULL),(8655470,1183681,10,'cinematographer','director of photography',NULL),(8655470,1993,1,'actor',NULL,'[\"Bruno Haroche\"]'),(8655470,3024530,2,'actor',NULL,'[\"Malik\"]'),(8655470,898653,3,'actress',NULL,'[\"Hélène, la mère de Joseph\"]'),(8655470,10711801,4,'actor',NULL,'[\"Dylan\"]'),(8655470,619923,5,'director',NULL,NULL),(8655470,865918,6,'director',NULL,NULL),(8655470,1457753,7,'producer','producer',NULL),(8655470,370690,8,'producer','producer',NULL),(8655470,11015598,9,'composer',NULL,NULL),(8659948,11901152,10,'producer','producer',NULL),(8659948,6570716,1,'actress',NULL,'[\"Chika Takami\"]'),(8659948,7918125,2,'actress',NULL,'[\"Riko Sakurauchi\"]'),(8659948,8200231,3,'actress',NULL,'[\"Kanan Matsuura\"]'),(8659948,4571370,4,'actress',NULL,'[\"Dia Kurosawa\"]'),(8659948,2263726,5,'director',NULL,NULL),(8659948,946695,6,'writer','creator',NULL),(8659948,2840491,7,'writer','development',NULL),(8659948,2438224,8,'writer','screenplay',NULL),(8659948,7118506,9,'writer','adr script writer',NULL),(8669356,1206143,10,'composer',NULL,NULL),(8669356,9075831,1,'actress',NULL,'[\"Jeanne d\'Arc\"]'),(8669356,10977117,2,'actress',NULL,'[\"Madame Jacqueline\"]'),(8669356,10977118,3,'actress',NULL,'[\"Marie\"]'),(8669356,10977119,4,'actor',NULL,'[\"Monseigneur Regnauld de Chartres\"]'),(8669356,241622,5,'director',NULL,NULL),(8669356,6772473,6,'writer','based on the play Jeanne d\'Arc by',NULL),(8669356,98953,7,'producer','producer',NULL),(8669356,117593,8,'producer','producer',NULL),(8669356,581012,9,'producer','producer',NULL),(8695030,328557,10,'editor',NULL,NULL),(8695030,195,1,'actor',NULL,'[\"Chief Cliff Robertson\"]'),(8695030,3485845,2,'actor',NULL,'[\"Officer Ronnie Peterson\"]'),(8695030,842770,3,'actress',NULL,'[\"Zelda Winston\"]'),(8695030,1823,4,'actor',NULL,'[\"Hermit Bob\"]'),(8695030,464,5,'director',NULL,NULL),(8695030,40120,6,'producer','producer',NULL),(8695030,2123941,7,'producer','producer',NULL),(8695030,5670423,8,'composer',NULL,NULL),(8695030,5695,9,'cinematographer',NULL,NULL),(8707922,4386508,10,'producer','producer',NULL),(8707922,1275259,1,'actress',NULL,'[\"Emma Corrigan\"]'),(8707922,388382,2,'actor',NULL,'[\"Jack Harper\"]'),(8707922,4576371,3,'actress',NULL,'[\"Lissy\"]'),(8707922,6027977,4,'actor',NULL,'[\"Connor\"]'),(8707922,1435237,5,'director',NULL,NULL),(8707922,4050491,6,'writer','screenplay by',NULL),(8707922,1536494,7,'writer','based on the novel by',NULL),(8707922,3894454,8,'producer','producer',NULL),(8707922,3894387,9,'producer','producer',NULL),(8712750,3407311,10,'composer','composer',NULL),(8712750,4497336,1,'actress',NULL,'[\"Cassie\"]'),(8712750,335073,2,'actor',NULL,'[\"Greg\"]'),(8712750,370472,3,'actress',NULL,'[\"AMEE\"]'),(8712750,7354340,4,'actor',NULL,'[\"Liam\"]'),(8712750,1802267,5,'director',NULL,NULL),(8712750,878953,6,'writer','story by',NULL),(8712750,1595718,7,'writer','story by',NULL),(8712750,6447214,8,'writer','contributing writer',NULL),(8712750,1328566,9,'producer','producer',NULL),(8717590,152839,10,'actress',NULL,'[\"Twilight Sparkle\"]'),(8717590,1868320,1,'actress',NULL,'[\"Applejack\",\"Rainbow Dash\"]'),(8717590,508877,2,'actress',NULL,'[\"Pinkie Pie\",\"Fluttershy\"]'),(8717590,1690630,3,'actress',NULL,'[\"Sunset Shimmer\",\"Designer\",\"Twilight Sparkle - singing\"]'),(8717590,319308,4,'actress',NULL,'[\"Rarity\",\"Granny Smith\"]'),(8717590,2154278,5,'director',NULL,NULL),(8717590,3111796,6,'director','co-director',NULL),(8717590,2553419,7,'writer',NULL,NULL),(8717590,1298182,8,'producer','producer',NULL),(8717590,27584,9,'composer',NULL,NULL),(8718158,8844501,10,'producer','producer',NULL),(8718158,1423955,1,'actress',NULL,'[\"Lucy Hutton\"]'),(8718158,3271473,2,'actor',NULL,'[\"Joshua Templeman\"]'),(8718158,3093026,3,'actor',NULL,'[\"Danny\"]'),(8718158,415529,4,'actress',NULL,'[\"Helen\"]'),(8718158,4050491,5,'director',NULL,NULL),(8718158,3898253,6,'writer','screenplay by',NULL),(8718158,9982294,7,'writer','based on the novel by',NULL),(8718158,3894454,8,'producer','producer',NULL),(8718158,3894387,9,'producer','producer',NULL),(8721424,10200744,10,'producer','producer',NULL),(8721424,1940449,1,'actor',NULL,'[\"Jonathan Larson\"]'),(8721424,3381295,2,'actress',NULL,'[\"Susan\"]'),(8721424,1296587,3,'actor',NULL,'[\"Michael\"]'),(8721424,1227814,4,'actress',NULL,'[\"Karessa\"]'),(8721424,592135,5,'director',NULL,NULL),(8721424,4697007,6,'writer','screenplay by',NULL),(8721424,1170227,7,'writer','based on the musical by',NULL),(8721424,4976,8,'producer','producer',NULL),(8721424,165,9,'producer','producer',NULL),(8722346,3082630,10,'producer','producer',NULL),(8722346,2257207,1,'actor',NULL,'[\"Slim\"]'),(8722346,3853652,2,'actress',NULL,'[\"Queen\"]'),(8722346,940158,3,'actor',NULL,'[\"Uncle Earl\"]'),(8722346,1721,4,'actress',NULL,'[\"Mrs. Shepherd\"]'),(8722346,2027419,5,'director',NULL,NULL),(8722346,2913119,6,'writer','screenplay by',NULL),(8722346,294580,7,'writer','story by',NULL),(8722346,8330,8,'producer','producer',NULL),(8722346,6167714,9,'producer','producer',NULL),(8734872,27584,10,'composer',NULL,NULL),(8734872,1868320,1,'actress',NULL,'[\"Rainbow Dash\",\"Applejack\",\"Parrot\"]'),(8734872,508877,2,'actress',NULL,'[\"Pinkie Pie\",\"Fluttershy\"]'),(8734872,1690630,3,'actress',NULL,'[\"Sunset Shimmer\",\"Twilight Sparkle - singing\"]'),(8734872,319308,4,'actress',NULL,'[\"Rarity\"]'),(8734872,2154278,5,'director',NULL,NULL),(8734872,3111796,6,'director','co-director',NULL),(8734872,2553419,7,'writer','written by',NULL),(8734872,1298182,8,'producer','producer',NULL),(8734872,11202882,9,'producer','producer',NULL),(8743064,2515893,10,'editor',NULL,NULL),(8743064,5351647,1,'actress',NULL,'[\"C.J. Walker\"]'),(8743064,8391281,2,'actor',NULL,'[\"Sebastian Thomas\"]'),(8743064,4702342,3,'actor',NULL,'[\"Calvin Walker\"]'),(8743064,1750371,4,'actress',NULL,'[\"Phaedra\"]'),(8743064,4455533,5,'director',NULL,NULL),(8743064,8391271,6,'writer','co-writer',NULL),(8743064,490,7,'producer','producer',NULL),(8743064,8752173,8,'composer',NULL,NULL),(8743064,3960142,9,'cinematographer',NULL,NULL),(8745676,7495726,10,'producer','producer',NULL),(8745676,777788,1,'actor',NULL,'[\"Sven\"]'),(8745676,1846124,2,'actor',NULL,'[\"Ezzat Mardini\"]'),(8745676,2353331,3,'actor',NULL,'[\"Emad\"]'),(8745676,6997839,4,'actress',NULL,'[\"Sara Mardini\"]'),(8745676,2260751,5,'director',NULL,NULL),(8745676,2113666,6,'writer',NULL,NULL),(8745676,79677,7,'producer','producer',NULL),(8745676,170818,8,'producer','producer',NULL),(8745676,271479,9,'producer','producer',NULL),(8752440,1700167,10,'composer',NULL,NULL),(8752440,641816,1,'actor',NULL,'[\"Batman\"]'),(8752440,607185,2,'actress',NULL,'[\"Selina Kyle\"]'),(8752440,4184666,3,'actor',NULL,'[\"Damian Wayne\"]'),(8752440,1039235,4,'actress',NULL,'[\"Lady Shiva\"]'),(8752440,4982437,5,'director',NULL,NULL),(8752440,22688,6,'writer','written by',NULL),(8752440,517188,7,'writer','comic',NULL),(8752440,1504567,8,'writer','comic',NULL),(8752440,2276130,9,'producer','producer',NULL),(8758086,102278,10,'composer',NULL,NULL),(8758086,4427331,1,'actress',NULL,'[\"Marina Hess\"]'),(8758086,3994184,2,'actor',NULL,'[\"Will Nylund\"]'),(8758086,3156758,3,'actress',NULL,'[\"Alice Hess\"]'),(8758086,1563349,4,'actress',NULL,'[\"Lily Bellows\"]'),(8758086,1625382,5,'director',NULL,NULL),(8758086,1093570,6,'producer','producer',NULL),(8758086,6556385,7,'producer','producer',NULL),(8758086,3034451,8,'producer','producer',NULL),(8758086,3096179,9,'producer','producer',NULL),(8760708,564556,10,'cinematographer','director of photography',NULL),(8760708,4129745,1,'actress',NULL,'[\"Gemma\"]'),(8760708,8627157,2,'actress',NULL,'[\"Cady\"]'),(8760708,5307044,3,'actor',NULL,'[\"David\"]'),(8760708,13143634,4,'actress',NULL,'[\"M3gan\"]'),(8760708,2067421,5,'director',NULL,NULL),(8760708,4868455,6,'writer','screenplay by',NULL),(8760708,1490123,7,'writer','story by',NULL),(8760708,89658,8,'producer','producer',NULL),(8760708,3785390,9,'composer',NULL,NULL),(8760724,367218,1,'actor',NULL,'[\"Brett Baxter\"]'),(8760724,326702,2,'actor',NULL,'[\"Father Dingleberry\"]'),(8760724,5208499,3,'actor',NULL,'[\"Real Estate Guy\"]'),(8760724,414405,4,'actor',NULL,'[\"Brother Baxter\"]'),(8760724,6262759,5,'composer',NULL,NULL),(8772262,2730909,10,'editor',NULL,NULL),(8772262,6073955,1,'actress',NULL,'[\"Dani\"]'),(8772262,2930503,2,'actor',NULL,'[\"Christian\"]'),(8772262,9859585,3,'actor',NULL,'[\"Pelle\"]'),(8772262,2860379,4,'actor',NULL,'[\"Josh\"]'),(8772262,4170048,5,'director',NULL,NULL),(8772262,5244086,6,'producer','producer',NULL),(8772262,1185381,7,'producer','producer',NULL),(8772262,6438644,8,'composer',NULL,NULL),(8772262,1850507,9,'cinematographer','director of photography',NULL),(8781414,3870772,10,'cinematographer',NULL,NULL),(8781414,386472,1,'actor',NULL,'[\"Dad\"]'),(8781414,1136,2,'actor',NULL,'[\"Grandpa\"]'),(8781414,661825,3,'actress',NULL,'[\"Agent Ray\"]'),(8781414,1468739,4,'actress',NULL,'[\"Mom\"]'),(8781414,513554,5,'director',NULL,NULL),(8781414,1437652,6,'director',NULL,NULL),(8781414,6015793,7,'producer','producer',NULL),(8781414,1288904,8,'producer','producer',NULL),(8781414,944000,9,'composer',NULL,NULL),(8784956,566970,10,'composer',NULL,NULL),(8784956,1567113,1,'actress',NULL,'[\"Ava\"]'),(8784956,518,2,'actor',NULL,'[\"Duke\"]'),(8784956,996669,3,'actor',NULL,'[\"Michael\"]'),(8784956,133,4,'actress',NULL,'[\"Bobbi\"]'),(8784956,853238,5,'director',NULL,NULL),(8784956,628563,6,'writer','written by',NULL),(8784956,1163710,7,'producer','producer',NULL),(8784956,1291566,8,'producer','producer',NULL),(8784956,4565370,9,'producer','producer',NULL),(8816194,3444417,10,'producer','producer',NULL),(8816194,704,1,'actor',NULL,'[\"Norval Greenwood\"]'),(8816194,565569,2,'actor',NULL,'[\"Gordon\"]'),(8816194,933435,3,'actor',NULL,'[\"Ronald Plum\"]'),(8816194,759819,4,'actress',NULL,'[\"Gladys\"]'),(8816194,863807,5,'director',NULL,NULL),(8816194,1361864,6,'writer','story by',NULL),(8816194,1764941,7,'producer','producer',NULL),(8816194,1545093,8,'producer','producer',NULL),(8816194,4638146,9,'producer','producer',NULL),(8847712,2262509,10,'producer','producer',NULL),(8847712,1125,1,'actor',NULL,'[\"Moses Rosenthaler\"]'),(8847712,4778,2,'actor',NULL,'[\"Julian Cadazio\"]'),(8847712,842770,3,'actress',NULL,'[\"J.K.L. Berensen\"]'),(8847712,2244205,4,'actress',NULL,'[\"Simone\"]'),(8847712,27572,5,'director',NULL,NULL),(8847712,178910,6,'writer','story by',NULL),(8847712,2450453,7,'writer','story by',NULL),(8847712,5403,8,'writer','story by',NULL),(8847712,206154,9,'producer','producer',NULL),(8850222,2185967,10,'editor',NULL,NULL),(8850222,1504868,1,'actor',NULL,'[\"Jung Seok\"]'),(8850222,3640854,2,'actor',NULL,'[\"Captain Seo\"]'),(8850222,1255001,3,'actress',NULL,'[\"Jung Seok\'s sister\"]'),(8850222,497630,4,'actress',NULL,'[\"Min Jung\"]'),(8850222,3613566,5,'director',NULL,NULL),(8850222,11826878,6,'writer',NULL,NULL),(8850222,4830845,7,'producer','producer',NULL),(8850222,3028820,8,'composer',NULL,NULL),(8850222,2893410,9,'cinematographer',NULL,NULL),(8851148,303446,10,'cinematographer',NULL,NULL),(8851148,1428821,1,'actress',NULL,'[\"Tessa\"]'),(8851148,6563873,2,'actor',NULL,'[\"Skylar\"]'),(8851148,225332,3,'actress',NULL,'[\"Vickie\"]'),(8851148,651159,4,'actor',NULL,'[\"Mel\"]'),(8851148,1242062,5,'director',NULL,NULL),(8851148,458884,6,'writer','written by',NULL),(8851148,107509,7,'producer','producer',NULL),(8851148,212997,8,'producer','producer',NULL),(8851148,13304160,9,'composer',NULL,NULL),(8855960,5662879,10,'production_designer',NULL,NULL),(8855960,4007200,1,'actor',NULL,'[\"Todd\"]'),(8855960,3818748,2,'actress',NULL,'[\"Rory\"]'),(8855960,7879299,3,'actress',NULL,'[\"Meg\"]'),(8855960,8510480,4,'actor',NULL,'[\"Ryder\"]'),(8855960,9137077,5,'producer','producer',NULL),(8855960,3819444,6,'producer','producer',NULL),(8855960,7824203,7,'composer',NULL,NULL),(8855960,2088215,8,'cinematographer',NULL,NULL),(8855960,3981774,9,'editor',NULL,NULL),(8856090,1861631,10,'editor',NULL,NULL),(8856090,3016089,1,'actress',NULL,'[\"Rachel Gurner\"]'),(8856090,4852033,2,'actress',NULL,'[\"Celia\"]'),(8856090,7066292,3,'actress',NULL,'[\"Dodge Gurner\"]'),(8856090,5082529,4,'actress',NULL,'[\"Jackie Gurner\"]'),(8856090,4065767,5,'producer','producer',NULL),(8856090,2570727,6,'producer','producer',NULL),(8856090,4280221,7,'producer','producer',NULL),(8856090,6996469,8,'composer',NULL,NULL),(8856090,4382556,9,'cinematographer',NULL,NULL),(8856470,795575,10,'writer','original script by',NULL),(8856470,2516299,1,'actress',NULL,'[\"Ash Ketchum\"]'),(8856470,337751,2,'actor',NULL,'[\"Mewtwo\"]'),(8856470,1075459,3,'actor',NULL,'[\"Brock\"]'),(8856470,1690044,4,'actress',NULL,'[\"Jessie\",\"Misty\",\"Bulbasaur\"]'),(8856470,1012102,5,'director',NULL,NULL),(8856470,4114096,6,'director',NULL,NULL),(8856470,951197,7,'director',NULL,NULL),(8856470,651184,8,'director','voice director',NULL),(8856470,846969,9,'writer','original creator: Pokémon',NULL),(8858104,2480,10,'producer','producer',NULL),(8858104,2255973,1,'actor',NULL,'[\"Deni Maroon\"]'),(8858104,1982597,2,'actress',NULL,'[\"Kofi Novia\"]'),(8858104,4004793,3,'actress',NULL,'[\"Yara Love\"]'),(8858104,1996829,4,'actor',NULL,'[\"Red Cargo\"]'),(8858104,2033604,5,'director',NULL,NULL),(8858104,8420549,6,'writer','story by',NULL),(8858104,8802062,7,'writer','story by',NULL),(8858104,8440165,8,'writer','story by',NULL),(8858104,7256256,9,'writer','story by',NULL),(8892756,10071984,10,'actor',NULL,'[\"Lena\"]'),(8892756,10071976,1,'actress',NULL,'[\"Emily Ahrens\"]'),(8892756,10071978,2,'actress',NULL,'[\"Kira\"]'),(8892756,10071979,3,'actress',NULL,'[\"Samira\"]'),(8892756,10073748,4,'actress',NULL,'[\"Maxime Neville\"]'),(8892756,6098952,5,'director',NULL,NULL),(8892756,4356189,6,'writer',NULL,NULL),(8892756,3029076,7,'producer','producer',NULL),(8892756,9033567,8,'cinematographer',NULL,NULL),(8892756,10076495,9,'actress',NULL,'[\"Sybill\"]'),(8893974,2910622,10,'composer',NULL,NULL),(8893974,1935086,1,'actress',NULL,'[\"Irene\"]'),(8893974,1550948,2,'actress',NULL,'[\"Clare\"]'),(8893974,2428245,3,'actor',NULL,'[\"Brian\"]'),(8893974,131966,4,'actor',NULL,'[\"Hugh\"]'),(8893974,356017,5,'director',NULL,NULL),(8893974,10072373,6,'writer','based on the novel by',NULL),(8893974,1341146,7,'producer','producer',NULL),(8893974,3250262,8,'producer','producer',NULL),(8893974,1845,9,'producer','producer',NULL),(8900098,1286846,10,'production_designer',NULL,NULL),(8900098,10120272,1,'actress',NULL,'[\"Joana\"]'),(8900098,3480557,2,'actress',NULL,'[\"Ana\"]'),(8900098,316394,3,'actress',NULL,'[\"Lucia\"]'),(8900098,9581901,4,'actor',NULL,'[\"Luis\"]'),(8900098,145540,5,'director',NULL,NULL),(8900098,131168,6,'producer','executive producer',NULL),(8900098,758574,7,'producer','producer',NULL),(8900098,664941,8,'cinematographer',NULL,NULL),(8900098,350726,9,'editor',NULL,NULL),(8932338,5878393,10,'producer','producer',NULL),(8932338,2319359,1,'actress',NULL,'[\"Maricielo\"]'),(8932338,815529,2,'actor',NULL,'[\"Salvador\"]'),(8932338,953188,3,'actress',NULL,'[\"Leonor\"]'),(8932338,7330969,4,'actor',NULL,'[\"Juancito\"]'),(8932338,4649050,5,'director',NULL,NULL),(8932338,10090627,6,'writer',NULL,NULL),(8932338,1545566,7,'writer','written by',NULL),(8932338,5878394,8,'writer',NULL,NULL),(8932338,2383584,9,'writer',NULL,NULL),(8936646,321218,10,'producer','producer',NULL),(8936646,1165110,1,'actor',NULL,'[\"Tyler Rake\"]'),(8936646,11523062,2,'actor',NULL,'[\"Rake\'s Son\"]'),(8936646,11523063,3,'actor',NULL,'[\"Rake\'s Son\"]'),(8936646,7287299,4,'actor',NULL,'[\"Ovi Mahajan\"]'),(8936646,1092087,5,'director',NULL,NULL),(8936646,751648,6,'writer','screenplay by',NULL),(8936646,3133666,7,'writer','based on the graphic novel \"Ciudad\" by',NULL),(8936646,751577,8,'writer','from a story by',NULL),(8936646,11461720,9,'writer','with illustrations by',NULL),(8946378,186477,10,'production_designer',NULL,NULL),(8946378,185819,1,'actor',NULL,'[\"Benoit Blanc\"]'),(8946378,262635,2,'actor',NULL,'[\"Ransom Drysdale\"]'),(8946378,1869101,3,'actress',NULL,'[\"Marta Cabrera\"]'),(8946378,130,4,'actress',NULL,'[\"Linda Drysdale\"]'),(8946378,426059,5,'director',NULL,NULL),(8946378,74851,6,'producer','producer',NULL),(8946378,1791103,7,'composer',NULL,NULL),(8946378,6911,8,'cinematographer','director of photography',NULL),(8946378,3032,9,'editor','film editor',NULL),(8949056,3260616,10,'composer',NULL,NULL),(8949056,3034501,1,'actress',NULL,'[\"Alice\"]'),(8949056,3985937,2,'actor',NULL,'[\"Father Murphy\"]'),(8949056,4402890,3,'actor',NULL,'[\"Chris\"]'),(8949056,5590588,4,'actress',NULL,'[\"Laura\"]'),(8949056,3505289,5,'director',NULL,NULL),(8949056,173384,6,'producer','producer',NULL),(8949056,4054458,7,'producer','producer',NULL),(8949056,8447708,8,'producer','producer',NULL),(8949056,2095560,9,'producer','producer',NULL),(8954732,588824,10,'producer','producer',NULL),(8954732,1227814,1,'actress',NULL,'[\"Stacy De Novo\",\"Lady Margaret\"]'),(8954732,4112253,2,'actor',NULL,'[\"Edward\"]'),(8954732,2964642,3,'actor',NULL,'[\"Kevin\"]'),(8954732,10238213,4,'actress',NULL,'[\"Olivia\"]'),(8954732,737517,5,'director',NULL,NULL),(8954732,76820,6,'writer','written by',NULL),(8954732,2997602,7,'writer','written by',NULL),(8954732,13352773,8,'producer','producer',NULL),(8954732,470751,9,'producer','producer',NULL),(8962124,1156818,10,'actor',NULL,'[\"Antoine Lambert\"]'),(8962124,2934314,1,'actress',NULL,'[\"Emily Cooper\"]'),(8962124,503800,2,'actress',NULL,'[\"Sylvie Grateau\"]'),(8962124,3594940,3,'actress',NULL,'[\"Mindy Chen\"]'),(8962124,8740446,4,'actor',NULL,'[\"Julien\"]'),(8962124,823015,5,'writer','created by',NULL),(8962124,2708109,6,'actor',NULL,'[\"Luc\"]'),(8962124,5575725,7,'actor',NULL,'[\"Gabriel\"]'),(8962124,4253884,8,'actress',NULL,'[\"Camille\"]'),(8962124,1620741,9,'actor',NULL,'[\"Alfie\"]'),(9000224,1798283,10,'composer',NULL,NULL),(9000224,3400186,1,'actress',NULL,'[\"Jane\"]'),(9000224,390789,2,'actor',NULL,'[\"Driver\"]'),(9000224,3314975,3,'actor',NULL,'[\"Male Assistant 2\"]'),(9000224,3812814,4,'actor',NULL,'[\"Executive 3\"]'),(9000224,3317268,5,'director',NULL,NULL),(9000224,199079,6,'producer','producer',NULL),(9000224,2278951,7,'producer','producer',NULL),(9000224,531337,8,'producer','producer',NULL),(9000224,770005,9,'producer','producer',NULL),(9016016,2668904,10,'producer','executive producer',NULL),(9016016,3643779,1,'actress',NULL,'[\"Bridget\"]'),(9016016,10130595,2,'actress',NULL,'[\"Frances\"]'),(9016016,2725075,3,'actress',NULL,'[\"Maya\"]'),(9016016,1040934,4,'actress',NULL,'[\"Annie\"]'),(9016016,3930165,5,'director',NULL,NULL),(9016016,2676421,6,'producer','producer',NULL),(9016016,186655,7,'producer','executive producer',NULL),(9016016,445160,8,'producer','executive producer',NULL),(9016016,7032189,9,'producer','executive producer',NULL),(9021234,969202,10,'composer',NULL,NULL),(9021234,284,1,'actor',NULL,'[\"Sam Barnes\"]'),(9021234,838911,2,'actor',NULL,'[\"Young Sam \'Shooter\' Green\"]'),(9021234,1489978,3,'actress',NULL,'[\"Susan Tilwicky\"]'),(9021234,3880523,4,'actor',NULL,'[\"Tommy Tilwicky\"]'),(9021234,3636519,5,'director',NULL,NULL),(9021234,1046566,6,'writer','written by',NULL),(9021234,794687,7,'writer','written by',NULL),(9021234,1088868,8,'producer','producer',NULL),(9021234,4155198,9,'producer','producer',NULL),(9024106,498920,10,'producer','executive producer',NULL),(9024106,5123098,1,'actress',NULL,'[\"Abby\"]'),(9024106,5618577,2,'actor',NULL,'[\"Doug\"]'),(9024106,478750,3,'actress',NULL,'[\"Cheryl\"]'),(9024106,5237225,4,'actor',NULL,'[\"Shawn\"]'),(9024106,465484,5,'director',NULL,NULL),(9024106,813301,6,'director',NULL,NULL),(9024106,7432792,7,'writer','based on the book \"Unplanned\" by',NULL),(9024106,2445956,8,'producer','producer',NULL),(9024106,7839151,9,'producer','producer',NULL),(9032400,270559,10,'producer','producer',NULL),(9032400,2110418,1,'actress',NULL,'[\"Sersi\"]'),(9032400,534635,2,'actor',NULL,'[\"Ikaris\"]'),(9032400,1401,3,'actress',NULL,'[\"Thena\"]'),(9032400,161,4,'actress',NULL,'[\"Ajak\"]'),(9032400,2125482,5,'director',NULL,NULL),(9032400,1522597,6,'writer','screenplay by',NULL),(9032400,2535716,7,'writer','screenplay by',NULL),(9032400,3303922,8,'writer','screenplay by',NULL),(9032400,456158,9,'writer','based on the Marvel comics by',NULL),(9054192,4541029,10,'cinematographer','director of photography',NULL),(9054192,68338,1,'actress',NULL,'[\"Connie\"]'),(9054192,4624730,2,'actress',NULL,'[\"JoJo\"]'),(9054192,3236159,3,'actor',NULL,'[\"Ken\"]'),(9054192,4737223,4,'actress',NULL,'[\"Tempe Tina\"]'),(9054192,2704505,5,'director',NULL,NULL),(9054192,2700559,6,'director',NULL,NULL),(9054192,1261078,7,'producer','producer',NULL),(9054192,2880194,8,'producer','producer',NULL),(9054192,5260672,9,'composer',NULL,NULL),(9059704,5628950,10,'composer',NULL,NULL),(9059704,736622,1,'actor',NULL,'[\"Herschel Greenbaum\",\"Ben Greenbaum\"]'),(9059704,3512758,2,'actress',NULL,'[\"Sarah Greenbaum\"]'),(9059704,6127780,3,'actress',NULL,'[\"Clara\"]'),(9059704,2513282,4,'actor',NULL,'[\"Christian\"]'),(9059704,1060930,5,'director',NULL,NULL),(9059704,2919995,6,'writer','screenplay by',NULL),(9059704,1698571,7,'producer','producer',NULL),(9059704,4384917,8,'producer','producer',NULL),(9059704,315974,9,'composer',NULL,NULL),(9059760,3783700,10,'actor',NULL,'[\"Eric\"]'),(9059760,8958770,1,'actor',NULL,'[\"Connell\"]'),(9059760,8402992,2,'actress',NULL,'[\"Marianne\"]'),(9059760,5708540,3,'actor',NULL,'[\"Niall\"]'),(9059760,570083,4,'actress',NULL,'[\"Denise\"]'),(9059760,2497366,5,'actress',NULL,'[\"Lorraine\"]'),(9059760,8984706,6,'actor',NULL,'[\"Alan\"]'),(9059760,6911859,7,'actress',NULL,'[\"Peggy\"]'),(9059760,10695425,8,'actress',NULL,'[\"Joanna\"]'),(9059760,3438835,9,'actor',NULL,'[\"Rob\"]'),(9072352,2729344,10,'producer','producer',NULL),(9072352,627505,1,'actress',NULL,'[\"Edna\"]'),(9072352,607865,2,'actress',NULL,'[\"Kay\"]'),(9072352,2757333,3,'actress',NULL,'[\"Sam\"]'),(9072352,1113003,4,'actor',NULL,'[\"Constable Mike Adler\"]'),(9072352,4013000,5,'director',NULL,NULL),(9072352,2021376,6,'writer','written by',NULL),(9072352,350453,7,'producer','producer',NULL),(9072352,1889450,8,'producer','producer',NULL),(9072352,3120328,9,'producer','producer',NULL),(9075008,457443,10,'cinematographer',NULL,NULL),(9075008,25774,1,'actress',NULL,'[\"Gesche Gottfried\"]'),(9075008,1295171,2,'actress',NULL,'[\"Cato Böhmer\"]'),(9075008,332027,3,'actor',NULL,'[\"Senator Droste\"]'),(9075008,417785,4,'actor',NULL,'[\"Kapitän Ehlers\"]'),(9075008,10162345,5,'director',NULL,NULL),(9075008,10162346,6,'writer','writer',NULL),(9075008,4358047,7,'writer','writer',NULL),(9075008,10166219,8,'producer','producer',NULL),(9075008,706992,9,'composer',NULL,NULL),(9086228,2271939,10,'producer','producer',NULL),(9086228,6096118,1,'actress',NULL,'[\"Gretel\"]'),(9086228,10356694,2,'actor',NULL,'[\"Hansel\"]'),(9086228,481,3,'actress',NULL,'[\"Witch\"]'),(9086228,2681284,4,'actress',NULL,'[\"Witch\"]'),(9086228,674020,5,'director',NULL,NULL),(9086228,3304186,6,'writer','written by',NULL),(9086228,342278,7,'writer','fairy tale: \"Hansel and Gretel\"',NULL),(9086228,342303,8,'writer','fairy tale: \"Hansel and Gretel\"',NULL),(9086228,1757754,9,'producer','producer',NULL),(9100054,385467,10,'composer',NULL,NULL),(9100054,1469236,1,'actress',NULL,'[\"Leda\"]'),(9100054,2976580,2,'actress',NULL,'[\"Young Leda\"]'),(9100054,424848,3,'actress',NULL,'[\"Nina\"]'),(9100054,438,4,'actor',NULL,'[\"Lyle\"]'),(9100054,350454,5,'director',NULL,NULL),(9100054,273919,6,'writer','based on the novel by',NULL),(9100054,4074500,7,'producer','producer',NULL),(9100054,3094496,8,'producer','producer',NULL),(9100054,2732734,9,'producer','producer',NULL),(9109492,4545,10,'cinematographer',NULL,NULL),(9109492,2186865,1,'actress',NULL,'[\"Jenny\"]'),(9109492,300589,2,'actress',NULL,'[\"Pauline\"]'),(9109492,302330,3,'actor',NULL,'[\"Juan\"]'),(9109492,3860305,4,'actress',NULL,'[\"Yvonne\"]'),(9109492,155069,5,'director',NULL,NULL),(9109492,3220117,6,'writer','novel American Woman',NULL),(9109492,1114974,7,'producer','producer',NULL),(9109492,781839,8,'producer','producer',NULL),(9109492,53427,9,'composer',NULL,NULL),(9114286,5478123,10,'producer','producer',NULL),(9114286,4004793,1,'actress',NULL,'[\"Shuri\"]'),(9114286,2143282,2,'actress',NULL,'[\"Nakia\"]'),(9114286,1775091,3,'actress',NULL,'[\"Okoye\"]'),(9114286,6328300,4,'actor',NULL,'[\"M\'Baku\"]'),(9114286,3363032,5,'director',NULL,NULL),(9114286,1963288,6,'writer','screenplay by',NULL),(9114286,498278,7,'writer','created by: Black Panther',NULL),(9114286,456158,8,'writer','created by: Black Panther',NULL),(9114286,270559,9,'producer','producer',NULL),(9115530,698133,10,'producer','producer',NULL),(9115530,1567113,1,'actress',NULL,'[\"Tammy Faye Bakker\"]'),(9115530,1940449,2,'actor',NULL,'[\"Jim Bakker\"]'),(9115530,427728,3,'actress',NULL,'[\"Rachel Grover\"]'),(9115530,352,4,'actor',NULL,'[\"Jerry Falwell\"]'),(9115530,795290,5,'director',NULL,NULL),(9115530,47259,6,'writer','based on the documentary by',NULL),(9115530,53190,7,'writer','based on the documentary by',NULL),(9115530,843281,8,'writer','written by',NULL),(9115530,1163710,9,'producer','producer',NULL),(9116358,1315809,10,'producer','producer',NULL),(9116358,72829,1,'actor',NULL,'[\"Varys Truss\",\"Additional Voices\"]'),(9116358,89707,2,'actor',NULL,'[\"Ignis Ex\"]'),(9116358,97765,3,'actor',NULL,'[\"Lio Fotia\"]'),(9116358,153100,4,'actress',NULL,'[\"Biar Colossus\",\"Additional Voices\"]'),(9116358,408043,5,'director',NULL,NULL),(9116358,620040,6,'writer','original work',NULL),(9116358,5476638,7,'writer','adr script writer',NULL),(9116358,3682080,8,'producer','producer',NULL),(9116358,11086888,9,'producer','producer',NULL),(9130508,1819732,10,'producer','producer',NULL),(9130508,4043618,1,'actor',NULL,'[\"Cherry\"]'),(9130508,2731980,2,'actress',NULL,'[\"Emily\"]'),(9130508,2930503,3,'actor',NULL,'[\"Pills & Coke\"]'),(9130508,5569442,4,'actor',NULL,'[\"James Lightfoot\"]'),(9130508,751577,5,'director',NULL,NULL),(9130508,751648,6,'director',NULL,NULL),(9130508,962600,7,'writer','screenplay by',NULL),(9130508,2713351,8,'writer','screenplay by',NULL),(9130508,10191280,9,'writer','based on the novel by',NULL),(9138170,4952579,10,'editor',NULL,NULL),(9138170,461746,1,'actress',NULL,'[\"Helga\"]'),(9138170,171674,2,'actor',NULL,'[\"Boris\"]'),(9138170,5011084,3,'actor',NULL,'[\"Omar\"]'),(9138170,6100047,4,'actor',NULL,'[\"Farhad\"]'),(9138170,5277246,5,'director',NULL,NULL),(9138170,5489616,6,'producer','producer',NULL),(9138170,483642,7,'producer','producer',NULL),(9138170,2684869,8,'composer',NULL,NULL),(9138170,2153952,9,'cinematographer',NULL,NULL),(9146058,3607,10,'composer',NULL,NULL),(9146058,116254,1,'actress',NULL,'[\"Giulia Tedeschi\"]'),(9146058,7535164,2,'actor',NULL,'[\"Ciccio Italia detto il Poeta\"]'),(9146058,170892,3,'actor',NULL,'[\"Peppe\"]'),(9146058,502813,4,'actor',NULL,'[\"Cosimo\"]'),(9146058,130691,5,'director',NULL,NULL),(9146058,11739419,6,'writer','novel',NULL),(9146058,953222,7,'writer','screenplay',NULL),(9146058,524669,8,'producer','producer',NULL),(9146058,524670,9,'producer','producer',NULL),(9148706,385467,10,'composer',NULL,NULL),(9148706,461136,1,'actress',NULL,'[\"Sally Alexander\"]'),(9148706,1813221,2,'actress',NULL,'[\"Jennifer Hosten - Miss Grenada\"]'),(9148706,2976580,3,'actress',NULL,'[\"Jo Robinson\"]'),(9148706,1427,4,'actor',NULL,'[\"Bob Hope\"]'),(9148706,1339400,5,'director',NULL,NULL),(9148706,292451,6,'writer','screenplay by',NULL),(9148706,960711,7,'writer','screenplay by',NULL),(9148706,1280262,8,'producer','producer',NULL),(9148706,923635,9,'producer','producer',NULL),(9174578,8509566,10,'actor',NULL,'[\"New York Times Journalist #1\"]'),(9174578,855039,1,'actor',NULL,'[\"Phileas Fogg\"]'),(9174578,1035622,2,'actor',NULL,'[\"Passepartout\"]'),(9174578,2914059,3,'actress',NULL,'[\"Abigail \'Fix\' Fortescue\"]'),(9174578,914327,4,'actor',NULL,'[\"Bernard Fortescue\"]'),(9174578,894523,5,'writer','adapted from the novel',NULL),(9174578,838287,6,'actor',NULL,'[\"Nyle Bellamy\"]'),(9174578,1854537,7,'actor',NULL,'[\"Roberts\"]'),(9174578,1340424,8,'actor',NULL,'[\"Thomas Kneedling\"]'),(9174578,792807,9,'actor',NULL,'[\"Samuel Fallentin\"]'),(9184592,114344,10,'actor',NULL,'[\"Rahul Sharma\"]'),(9184592,10925386,1,'actor',NULL,'[\"Dru Sharma\"]'),(9184592,10925785,2,'actor',NULL,'[\"Kal Sharma\"]'),(9184592,10925786,3,'actress',NULL,'[\"Rose Aquino\"]'),(9184592,4783752,4,'actress',NULL,'[\"Kymara\"]'),(9184592,10903036,5,'actress',NULL,'[\"Gemma Khouri\"]'),(9184592,10925787,6,'actor',NULL,'[\"Jacob\"]'),(9184592,10731989,7,'actress',NULL,'[\"Dadi\"]'),(9184592,9195543,8,'actress',NULL,'[\"Vidya Sharma\"]'),(9184592,8467740,9,'actress',NULL,'[\"Regan Holcroft\"]'),(9185206,692016,10,'producer','producer',NULL),(9185206,5338858,1,'actress',NULL,'[\"Margaret Simon\"]'),(9185206,1046097,2,'actress',NULL,'[\"Barbara Simon\"]'),(9185206,870,3,'actress',NULL,'[\"Sylvia Simon\"]'),(9185206,1509478,4,'actor',NULL,'[\"Herb Simon\"]'),(9185206,2609807,5,'director',NULL,NULL),(9185206,89755,6,'writer','based on the book by',NULL),(9185206,30572,7,'producer','producer',NULL),(9185206,111857,8,'producer','producer',NULL),(9185206,985,9,'producer','producer',NULL),(9201720,1940746,10,'composer',NULL,NULL),(9201720,2240997,1,'actor',NULL,'[\"Kabir Bakshi\"]'),(9201720,9289456,2,'actress',NULL,'[\"Kioni\"]'),(9201720,5288006,3,'actress',NULL,'[\"Shivaani\"]'),(9201720,1378478,4,'actor',NULL,'[\"Paddy\"]'),(9201720,4317471,5,'director',NULL,NULL),(9201720,9776962,6,'writer','story by',NULL),(9201720,2025717,7,'writer','story by',NULL),(9201720,9051938,8,'producer','producer',NULL),(9201720,2298027,9,'producer','producer',NULL),(9203694,1321548,10,'producer','producer',NULL),(9203694,447695,1,'actress',NULL,'[\"Zoe Levenson\"]'),(9203694,196654,2,'actor',NULL,'[\"David Kim\"]'),(9203694,3875456,3,'actor',NULL,'[\"Michael Adams\"]'),(9203694,1057,4,'actress',NULL,'[\"Marina Barnett\"]'),(9203694,1020835,5,'director',NULL,NULL),(9203694,5204253,6,'writer','written by',NULL),(9203694,3474579,7,'producer','producer',NULL),(9203694,1842600,8,'producer','producer',NULL),(9203694,2668976,9,'producer','producer',NULL),(9204204,2037553,10,'producer','producer',NULL),(9204204,2387806,1,'actress',NULL,'[\"Alice\"]'),(9204204,924210,2,'actor',NULL,'[\"Chris\"]'),(9204204,289098,3,'actress',NULL,'[\"Bella\"]'),(9204204,5598573,4,'actor',NULL,'[\"Joe\"]'),(9204204,369618,5,'director',NULL,NULL),(9204204,2017718,6,'writer','written by',NULL),(9204204,90350,7,'producer','producer',NULL),(9204204,265724,8,'producer','producer',NULL),(9204204,345116,9,'producer','producer',NULL),(9214832,194446,10,'producer','producer',NULL),(9214832,5896355,1,'actress',NULL,'[\"Emma Woodhouse\"]'),(9214832,1926865,2,'actor',NULL,'[\"Mr. Knightley\"]'),(9214832,5301405,3,'actress',NULL,'[\"Harriet Smith\"]'),(9214832,4853066,4,'actor',NULL,'[\"Mr. Elton\"]'),(9214832,2127315,5,'director',NULL,NULL),(9214832,7414254,6,'writer','screenplay by',NULL),(9214832,807,7,'writer','based on the novel by',NULL),(9214832,79677,8,'producer','producer',NULL),(9214832,110357,9,'producer','producer',NULL),(9217514,9184951,10,'editor',NULL,NULL),(9217514,8720979,1,'actress',NULL,'[\"Cadence\"]'),(9217514,10183085,2,'actress',NULL,'[\"Dominique\"]'),(9217514,4455751,3,'actress',NULL,'[\"Lily\"]'),(9217514,10230425,4,'actor',NULL,'[\"Jojo\"]'),(9217514,7343028,5,'director',NULL,NULL),(9217514,9227539,6,'producer','producer',NULL),(9217514,9400205,7,'composer',NULL,NULL),(9217514,7275822,8,'composer',NULL,NULL),(9217514,6020480,9,'cinematographer',NULL,NULL),(9224288,10774016,10,'producer','producer',NULL),(9224288,1940449,1,'actor',NULL,'[\"Link\"]'),(9224288,1638321,2,'actress',NULL,'[\"Frankie\"]'),(9224288,1822659,3,'actor',NULL,'[\"Jake\"]'),(9224288,4996082,4,'actress',NULL,'[\"Patsy\"]'),(9224288,178886,5,'director',NULL,NULL),(9224288,1814341,6,'writer','screenplay by',NULL),(9224288,4015825,7,'producer','producer',NULL),(9224288,1757754,8,'producer','producer',NULL),(9224288,2886189,9,'producer','producer',NULL),(9239816,8691274,1,'actress',NULL,'[\"Molly\"]'),(9239816,10242239,2,'actress',NULL,'[\"Julia\"]'),(9239816,8123233,3,'actress',NULL,'[\"Sadie\"]'),(9239816,10241910,4,'actor',NULL,'[\"Brian\"]'),(9239816,5244299,5,'director',NULL,NULL),(9239816,6129753,6,'producer','producer',NULL),(9239816,4448822,7,'producer','producer',NULL),(9239816,7281541,8,'composer',NULL,NULL),(9243804,1161683,10,'producer','producer',NULL),(9243804,2353862,1,'actor',NULL,'[\"Gawain\"]'),(9243804,2539953,2,'actress',NULL,'[\"Essel\",\"The Lady\"]'),(9243804,249291,3,'actor',NULL,'[\"The Lord\"]'),(9243804,2004,4,'actress',NULL,'[\"Mother\"]'),(9243804,1108007,5,'director',NULL,NULL),(9243804,13211290,6,'writer','based on the poem by',NULL),(9243804,2021909,7,'producer','producer',NULL),(9243804,2593874,8,'producer','producer',NULL),(9243804,1435934,9,'producer','producer',NULL),(9243946,11190,10,'cinematographer','director of photography',NULL),(9243946,666739,1,'actor',NULL,'[\"Jesse\"]'),(9243946,52186,2,'actor',NULL,'[\"Mike\"]'),(9243946,2804503,3,'actor',NULL,'[\"Badger\"]'),(9243946,1889973,4,'actor',NULL,'[\"Skinny Pete\"]'),(9243946,319213,5,'director',NULL,NULL),(9243946,2214628,6,'producer','producer',NULL),(9243946,425741,7,'producer','producer',NULL),(9243946,627917,8,'producer','producer',NULL),(9243946,1726663,9,'composer',NULL,NULL),(9252508,582171,10,'composer',NULL,NULL),(9252508,6433012,1,'actress',NULL,'[\"Jodi Kreyman\"]'),(9252508,3838034,2,'actor',NULL,'[\"Jack Dunkleman\"]'),(9252508,4248775,3,'actress',NULL,'[\"Harper Kreyman\"]'),(9252508,5514372,4,'actress',NULL,'[\"Liz\"]'),(9252508,1971220,5,'director',NULL,NULL),(9252508,1625872,6,'writer','written by',NULL),(9252508,1590364,7,'producer','producer',NULL),(9252508,629334,8,'producer','producer',NULL),(9252508,899193,9,'producer','producer',NULL),(9274670,343210,10,'editor',NULL,NULL),(9274670,5442,1,'actress',NULL,'[\"Kim\"]'),(9274670,301,2,'actress',NULL,'[\"Jess\"]'),(9274670,162,3,'actress',NULL,'[\"Tammy\"]'),(9274670,1100839,4,'actress',NULL,'[\"Maddy\"]'),(9274670,1761263,5,'director',NULL,NULL),(9274670,10225360,6,'writer','story by',NULL),(9274670,3086207,7,'producer','executive producer',NULL),(9274670,6565504,8,'composer',NULL,NULL),(9274670,556965,9,'cinematographer','director of photography',NULL),(9286908,3019943,10,'producer','producer',NULL),(9286908,10854148,1,'actor',NULL,'[\"Young Gutjuk\"]'),(9286908,10854149,2,'actor',NULL,'[\"Ngungki\"]'),(9286908,10854150,3,'actor',NULL,'[\"Young Baywara\"]'),(9286908,10854151,4,'actor',NULL,'[\"Station Hand, Fred\"]'),(9286908,426263,5,'director',NULL,NULL),(9286908,25720,6,'writer','writer',NULL),(9286908,1951644,7,'producer','producer',NULL),(9286908,10789215,8,'producer','producer',NULL),(9286908,587184,9,'producer','producer',NULL),(9288046,6183,10,'composer',NULL,NULL),(9288046,881631,1,'actor',NULL,'[\"Jacob Holland\"]'),(9288046,9485683,2,'actress',NULL,'[\"Maisie\"]'),(9288046,364813,3,'actor',NULL,'[\"Captain Crow\"]'),(9288046,1399,4,'actress',NULL,'[\"Sarah Sharpe\"]'),(9288046,930261,5,'director',NULL,NULL),(9288046,2803507,6,'writer','screenplay by',NULL),(9288046,8311902,7,'writer','story supervisor',NULL),(9288046,3231728,8,'writer','story consultant',NULL),(9288046,3155373,9,'producer','producer',NULL),(9288776,999118,10,'producer','producer',NULL),(9288776,2836674,1,'actor',NULL,'[\"Chang Pan\"]'),(9288776,4272259,2,'actor',NULL,'[\"Little General\"]'),(9288776,1315809,3,'actress',NULL,'[\"Blanca\"]'),(9288776,519642,4,'actress',NULL,'[\"Auntie\"]'),(9288776,5332002,5,'director',NULL,NULL),(9288776,4368529,6,'director',NULL,NULL),(9288776,10387016,7,'writer','written by',NULL),(9288776,10285596,8,'writer','story consultant',NULL),(9288776,4816311,9,'producer','producer',NULL),(9288822,1103466,10,'producer','producer',NULL),(9288822,6073955,1,'actress',NULL,'[\"Lib Wright\"]'),(9288822,121895,2,'actor',NULL,'[\"Will Byrne\"]'),(9288822,10765335,3,'actress',NULL,'[\"Anna O\'Donnell\"]'),(9288822,4862056,4,'actress',NULL,'[\"Kitty O\'Donnell\"]'),(9288822,133326,5,'director',NULL,NULL),(9288822,1480980,6,'writer','written by',NULL),(9288822,2690539,7,'writer','written by',NULL),(9288822,347384,8,'producer','producer',NULL),(9288822,397998,9,'producer','producer',NULL),(9308382,2972954,10,'cinematographer','director of photography',NULL),(9308382,424848,1,'actress',NULL,'[\"Maggie Sherwoode\"]'),(9308382,743896,2,'actress',NULL,'[\"Grace Davis\"]'),(9308382,5123156,3,'actor',NULL,'[\"David Cliff\"]'),(9308382,597,4,'actor',NULL,'[\"Max\"]'),(9308382,304091,5,'director',NULL,NULL),(9308382,5958525,6,'writer','written by',NULL),(9308382,79677,7,'producer','producer',NULL),(9308382,271479,8,'producer','producer',NULL),(9308382,4074194,9,'composer',NULL,NULL),(9354842,1396390,10,'producer','producer',NULL),(9354842,7093076,1,'actress',NULL,'[\"Lara Jean\"]'),(9354842,3170207,2,'actor',NULL,'[\"Peter\"]'),(9354842,3332894,3,'actor',NULL,'[\"John Ambrose\"]'),(9354842,8264172,4,'actress',NULL,'[\"Kitty\"]'),(9354842,277342,5,'director',NULL,NULL),(9354842,2531261,6,'writer','screenplay by',NULL),(9354842,328987,7,'writer','screenplay by',NULL),(9354842,6614229,8,'writer','based on the novel by',NULL),(9354842,4915003,9,'writer','collaborating writer',NULL),(9357050,2524192,10,'composer',NULL,NULL),(9357050,4805317,1,'actor',NULL,'[\"Evan Hansen\"]'),(9357050,194,2,'actress',NULL,'[\"Heidi Hansen\"]'),(9357050,3239803,3,'actress',NULL,'[\"Zoe Murphy\"]'),(9357050,10736,4,'actress',NULL,'[\"Cynthia Murphy\"]'),(9357050,154716,5,'director',NULL,NULL),(9357050,4697007,6,'writer','screenplay by',NULL),(9357050,686887,7,'producer','producer',NULL),(9357050,2132113,8,'producer','producer',NULL),(9357050,2537947,9,'composer',NULL,NULL),(9358120,8248695,10,'cinematographer',NULL,NULL),(9358120,5245242,1,'actor',NULL,'[\"Hikari\"]'),(9358120,10292298,2,'actor',NULL,'[\"Takemura\"]'),(9358120,6472360,3,'actor',NULL,'[\"Ishi\"]'),(9358120,10292299,4,'actress',NULL,'[\"Ikuko\"]'),(9358120,3643224,5,'director',NULL,NULL),(9358120,3538974,6,'producer','producer',NULL),(9358120,4305072,7,'producer','producer',NULL),(9358120,1991941,8,'producer','producer',NULL),(9358120,8248699,9,'producer','producer',NULL),(9362722,1709264,10,'writer','written by',NULL),(9362722,4271336,1,'actor',NULL,'[\"Miles Morales\"]'),(9362722,2794962,2,'actress',NULL,'[\"Gwen Stacy\"]'),(9362722,3109964,3,'actor',NULL,'[\"Jeff Morales\"]'),(9362722,904967,4,'actress',NULL,'[\"Rio Morales\"]'),(9362722,1690966,5,'director',NULL,NULL),(9362722,5358492,6,'director',NULL,NULL),(9362722,1042511,7,'director',NULL,NULL),(9362722,520488,8,'writer','written by',NULL),(9362722,588087,9,'writer','written by',NULL),(9362930,1850507,10,'cinematographer','director of photography',NULL),(9362930,4927704,1,'actor',NULL,'[\"Jaime Reyes\"]'),(9362930,1367490,2,'actress',NULL,'[\"Jenny Kord\"]'),(9362930,3121384,3,'actress',NULL,'[\"Khaji-Da\"]'),(9362930,17343,4,'actor',NULL,'[\"Alberto Reyes\"]'),(9362930,3924049,5,'director',NULL,NULL),(9362930,3722546,6,'writer','written by',NULL),(9362930,2303301,7,'producer','producer',NULL),(9362930,725444,8,'producer','producer',NULL),(9362930,6438644,9,'composer',NULL,NULL),(9376612,270559,10,'producer','producer',NULL),(9376612,4855517,1,'actor',NULL,'[\"Shaun\",\"Shang-Chi\"]'),(9376612,5377144,2,'actress',NULL,'[\"Katy\"]'),(9376612,504897,3,'actor',NULL,'[\"Xu Wenwu\"]'),(9376612,1426,4,'actor',NULL,'[\"Trevor Slattery\"]'),(9376612,2308774,5,'director',NULL,NULL),(9376612,1709264,6,'writer','screenplay by',NULL),(9376612,6150131,7,'writer','screenplay by',NULL),(9376612,1921680,8,'writer','Shang-Chi created by',NULL),(9376612,4160687,9,'writer','Shang-Chi created by',NULL),(9381998,1186027,10,'editor',NULL,NULL),(9381998,1080214,1,'actor',NULL,'[\"Wade\"]'),(9381998,1094112,2,'actress',NULL,'[\"Agatha\"]'),(9381998,3019183,3,'actress',NULL,'[\"Daphne\"]'),(9381998,10305133,4,'actress',NULL,'[\"Rosalind\"]'),(9381998,516384,5,'director',NULL,NULL),(9381998,3666261,6,'writer','written by',NULL),(9381998,933091,7,'producer','producer',NULL),(9381998,3597963,8,'composer',NULL,NULL),(9381998,254210,9,'cinematographer','director of photography',NULL),(9389998,4157919,10,'writer','tamil dialogue',NULL),(9389998,1084853,1,'actor',NULL,'[\"Pushpa Raj\"]'),(9389998,1335704,2,'actor',NULL,'[\"Bhanwar Singh Shekhawat IPS\"]'),(9389998,8612305,3,'actress',NULL,'[\"Srivalli\"]'),(9389998,10153699,4,'actor',NULL,'[\"Kesava\"]'),(9389998,1335875,5,'director',NULL,NULL),(9389998,9489622,6,'writer','dialogue',NULL),(9389998,8221259,7,'writer','additional screenplay',NULL),(9389998,13345531,8,'writer','additional dialogue',NULL),(9389998,13222819,9,'writer','hindi dialogue',NULL),(9411972,2217,10,'composer',NULL,NULL),(9411972,8402992,1,'actress',NULL,'[\"Kya Clark\"]'),(9411972,4973896,2,'actor',NULL,'[\"Tate Walker\"]'),(9411972,6170168,3,'actor',NULL,'[\"Chase Andrews\"]'),(9411972,657,4,'actor',NULL,'[\"Tom Milton\"]'),(9411972,3229507,5,'director',NULL,NULL),(9411972,3380457,6,'writer','based upon the novel by',NULL),(9411972,3599054,7,'writer','screenplay by',NULL),(9411972,506502,8,'producer','producer',NULL),(9411972,702,9,'producer','producer',NULL),(9412268,7146301,10,'editor',NULL,NULL),(9412268,1787887,1,'actress',NULL,'[\"Hai Phuong\"]'),(9412268,10942842,2,'actress',NULL,'[\"Mai\"]'),(9412268,10315055,3,'actor',NULL,'[\"Captain Vu Trong Luong\"]'),(9412268,6394612,4,'actor',NULL,'[\"Truc\"]'),(9412268,2616669,5,'director',NULL,NULL),(9412268,7495413,6,'writer',NULL,NULL),(9412268,12327540,7,'writer',NULL,NULL),(9412268,14422288,8,'producer','producer',NULL),(9412268,1865921,9,'cinematographer',NULL,NULL),(9418878,1304787,10,'cinematographer',NULL,NULL),(9418878,5920943,1,'actress',NULL,'[\"Reyhan\"]'),(9418878,4357116,2,'actress',NULL,'[\"Nurhan\"]'),(9418878,10150207,3,'actress',NULL,'[\"Havva\"]'),(9418878,7126592,4,'actor',NULL,'[\"Veysel\"]'),(9418878,1625220,5,'director',NULL,NULL),(9418878,947984,6,'producer','producer',NULL),(9418878,1626972,7,'producer','producer',NULL),(9418878,10317348,8,'composer',NULL,NULL),(9418878,10317349,9,'composer',NULL,NULL),(9419834,233199,10,'composer',NULL,NULL),(9419834,814259,1,'actress',NULL,'[\"Jennifer Williams\"]'),(9419834,1036181,2,'actor',NULL,'[\"Russell\"]'),(9419834,371660,3,'actor',NULL,'[\"Detective Frank Page\"]'),(9419834,1008709,4,'actress',NULL,'[\"Nurse Masters\"]'),(9419834,838289,5,'director',NULL,NULL),(9419834,1482634,6,'writer','written by',NULL),(9419834,56072,7,'producer','producer',NULL),(9419834,2367823,8,'producer','co-producer',NULL),(9419834,770848,9,'producer','producer',NULL),(9419884,384,10,'composer',NULL,NULL),(9419884,1212722,1,'actor',NULL,'[\"Doctor Stephen Strange\"]'),(9419884,647634,2,'actress',NULL,'[\"Wanda Maximoff\",\"The Scarlet Witch\"]'),(9419884,252230,3,'actor',NULL,'[\"Baron Mordo\"]'),(9419884,938950,4,'actor',NULL,'[\"Wong\"]'),(9419884,600,5,'director',NULL,NULL),(9419884,5642271,6,'writer','written by',NULL),(9419884,498278,7,'writer','created by: Doctor Strange',NULL),(9419884,228492,8,'writer','created by: Doctor Strange',NULL),(9419884,270559,9,'producer','producer',NULL),(9421570,9273762,10,'producer','producer',NULL),(9421570,350453,1,'actor',NULL,'[\"Joe Baylor\"]'),(9421570,2142336,2,'actress',NULL,'[\"Emily Lighton\"]'),(9421570,765597,3,'actor',NULL,'[\"Henry Fisher\"]'),(9421570,896292,4,'actress',NULL,'[\"SGT. Denise Wade\"]'),(9421570,298807,5,'director',NULL,NULL),(9421570,4446305,6,'writer','screenplay by',NULL),(9421570,7546166,7,'writer','based on the motion picture \"Den Skyldige\" written by',NULL),(9421570,3764055,8,'writer','based on the motion picture \"Den Skyldige\" written by',NULL),(9421570,11850618,9,'producer','producer',NULL),(9426210,5321876,10,'producer','producer',NULL),(9426210,10321662,1,'actor',NULL,'[\"Morishima Hodaka\"]'),(9426210,10030720,2,'actress',NULL,'[\"Amano Hina\"]'),(9426210,4836118,3,'actress',NULL,'[\"Natsumi Suga\"]'),(9426210,10498321,4,'actress',NULL,'[\"Amano Nagi\"]'),(9426210,1396121,5,'director',NULL,NULL),(9426210,5147232,6,'producer','producer',NULL),(9426210,4384370,7,'producer','producer',NULL),(9426210,3356206,8,'producer','co-executive producer',NULL),(9426210,2929057,9,'producer','producer',NULL),(9484998,2424790,10,'producer','producer',NULL),(9484998,1676221,1,'actor',NULL,'[\"Nyles\"]'),(9484998,2129662,2,'actress',NULL,'[\"Sarah\"]'),(9484998,799777,3,'actor',NULL,'[\"Roy\"]'),(9484998,1251,4,'actor',NULL,'[\"Howard\"]'),(9484998,3817317,5,'director',NULL,NULL),(9484998,4460791,6,'writer','screenplay by',NULL),(9484998,11212108,7,'producer','producer',NULL),(9484998,1676223,8,'producer','producer',NULL),(9484998,783346,9,'producer','producer',NULL),(9486226,2906578,10,'actor',NULL,'[\"Òscar\"]'),(9486226,4170579,1,'actress',NULL,'[\"Anna\"]'),(9486226,1155977,2,'actress',NULL,'[\"La Terrats\"]'),(9486226,10348419,3,'actress',NULL,'[\"Berta\"]'),(9486226,10348418,4,'actress',NULL,'[\"Emma\"]'),(9486226,2164125,5,'writer','development coordinator',NULL),(9486226,7874369,6,'actress',NULL,'[\"Laila\"]'),(9486226,8962949,7,'actress',NULL,'[\"Raquel\"]'),(9486226,6904578,8,'actress',NULL,'[\"Lorena\"]'),(9486226,2399032,9,'actress',NULL,'[\"Flor\"]'),(9507276,9150832,10,'producer','producer',NULL),(9507276,312656,1,'actor',NULL,'[\"Kurt von Rudersdorf\"]'),(9507276,7124125,2,'actor',NULL,'[\"Matheus Johann Weiss\"]'),(9507276,354490,3,'actor',NULL,'[\"Pierre Michel de Lugo\"]'),(9507276,2977461,4,'actress',NULL,'[\"Visha\"]'),(9507276,4805576,5,'director',NULL,NULL),(9507276,8728577,6,'writer','novels',NULL),(9507276,5176177,7,'writer','screenplay',NULL),(9507276,13024228,8,'writer','comic',NULL),(9507276,5997114,9,'producer','producer',NULL),(9522080,352834,10,'producer','producer',NULL),(9522080,6891947,1,'actress',NULL,'[\"Nedjma\"]'),(9522080,10363321,2,'actress',NULL,'[\"Wassila\"]'),(9522080,10363322,3,'actress',NULL,'[\"Samira\"]'),(9522080,6875292,4,'actor',NULL,'[\"Mehdi\"]'),(9522080,2972328,5,'director',NULL,NULL),(9522080,8166889,6,'writer','collaboration',NULL),(9522080,4961092,7,'producer','producer',NULL),(9522080,1164755,8,'producer','producer',NULL),(9522080,2027509,9,'producer','producer',NULL),(9572534,1038667,10,'cinematographer',NULL,NULL),(9572534,4364610,1,'actress',NULL,'[\"Melanie\"]'),(9572534,4161838,2,'actress',NULL,'[\"Danny\"]'),(9572534,2274369,3,'actress',NULL,'[\"Brenda\"]'),(9572534,3082341,4,'actor',NULL,'[\"Greg\"]'),(9572534,2043336,5,'director',NULL,NULL),(9572534,3318603,6,'writer','written by',NULL),(9572534,3250292,7,'writer','written by',NULL),(9572534,6123691,8,'producer','producer',NULL),(9572534,6263504,9,'composer',NULL,NULL),(9583840,494093,10,'cinematographer',NULL,NULL),(9583840,8505639,1,'actress',NULL,'[\"Nicole\"]'),(9583840,5199313,2,'actress',NULL,'[\"Veronica\"]'),(9583840,8446720,3,'actress',NULL,'[\"Amber\"]'),(9583840,12285851,4,'actress',NULL,'[\"Sara\"]'),(9583840,2344778,5,'director',NULL,NULL),(9583840,3032955,6,'producer','producer',NULL),(9583840,693668,7,'producer','producer',NULL),(9583840,6691132,8,'producer','producer',NULL),(9583840,858203,9,'composer',NULL,NULL),(9602378,5434945,1,'actress',NULL,'[\"Jenna\"]'),(9602378,4289089,2,'actress',NULL,'[\"Mia\"]'),(9602378,5553989,3,'actress',NULL,'[\"Yuka\"]'),(9602378,4583574,4,'actress',NULL,'[\"Kate\"]'),(9602378,138238,5,'director',NULL,NULL),(9602378,10432476,6,'composer',NULL,NULL),(9602378,1976572,7,'cinematographer',NULL,NULL),(9602378,3059225,8,'editor',NULL,NULL),(9602378,5571753,9,'production_designer',NULL,NULL),(9603212,357835,10,'editor','film editor',NULL),(9603212,129,1,'actor',NULL,'[\"Ethan Hunt\"]'),(9603212,2017943,2,'actress',NULL,'[\"Grace\"]'),(9603212,609,3,'actor',NULL,'[\"Luther Stickell\"]'),(9603212,670408,4,'actor',NULL,'[\"Benji Dunn\"]'),(9603212,3160,5,'director',NULL,NULL),(9603212,312367,6,'writer','based on the television series created by',NULL),(9603212,420701,7,'writer','written by',NULL),(9603212,1154632,8,'composer',NULL,NULL),(9603212,846535,9,'cinematographer','director of photography',NULL),(9617456,10408302,1,'self',NULL,'[\"Self\"]'),(9617456,10884379,2,'self',NULL,'[\"Self\"]'),(9617456,10850823,3,'self',NULL,'[\"Self\"]'),(9617456,13418482,4,'self',NULL,'[\"Self\"]'),(9617456,3117666,5,'director',NULL,NULL),(9617456,220831,6,'composer',NULL,NULL),(9617456,4881144,7,'editor',NULL,NULL),(9617456,1580828,8,'editor',NULL,NULL),(9620288,5696,10,'cinematographer','director of photography',NULL),(9620288,226,1,'actor',NULL,'[\"Richard Williams\"]'),(9620288,254712,2,'actress',NULL,'[\"Oracene \'Brandy\' Williams\"]'),(9620288,1256532,3,'actor',NULL,'[\"Rick Macci\"]'),(9620288,5181138,4,'actress',NULL,'[\"Venus Williams\"]'),(9620288,3232264,5,'director',NULL,NULL),(9620288,1598140,6,'writer','written by',NULL),(9620288,2807321,7,'producer','producer',NULL),(9620288,2809465,8,'producer','producer',NULL),(9620288,3929283,9,'composer',NULL,NULL),(9620292,3053338,10,'producer','producer',NULL),(9620292,1659547,1,'actress',NULL,'[\"Cassandra\"]'),(9620292,3102998,2,'actor',NULL,'[\"Ryan\"]'),(9620292,1555340,3,'actress',NULL,'[\"Madison\"]'),(9620292,317,4,'actor',NULL,'[\"Stanley\"]'),(9620292,2193504,5,'director',NULL,NULL),(9620292,3943537,6,'producer','producer',NULL),(9620292,1878845,7,'producer','producer',NULL),(9620292,4516779,8,'producer','producer',NULL),(9620292,3560755,9,'producer','producer',NULL),(9624766,1031048,10,'cinematographer','director of photography',NULL),(9624766,3857692,1,'actor',NULL,'[\"Jake\"]'),(9624766,115,2,'actor',NULL,'[\"Wylie\"]'),(9624766,12083010,3,'actor',NULL,'[\"Fisherman\"]'),(9624766,12083011,4,'actress',NULL,'[\"Fisherman\'s Wife\"]'),(9624766,517768,5,'director',NULL,NULL),(9624766,569808,6,'writer','screenplay by',NULL),(9624766,52774,7,'producer','producer',NULL),(9624766,1562709,8,'producer','producer',NULL),(9624766,233818,9,'composer',NULL,NULL),(9632590,5046363,10,'production_designer',NULL,NULL),(9632590,10413970,1,'actress',NULL,'[\"Naïma\"]'),(9632590,6756914,2,'actress',NULL,'[\"Sofia\"]'),(9632590,536095,3,'actor',NULL,'[\"Philippe\"]'),(9632590,519933,4,'actor',NULL,'[\"Andres\"]'),(9632590,2294243,5,'director',NULL,NULL),(9632590,1768202,6,'writer','collaboration',NULL),(9632590,1461686,7,'producer','producer',NULL),(9632590,496055,8,'cinematographer',NULL,NULL),(9632590,1579970,9,'editor',NULL,NULL),(9639470,1888527,10,'composer',NULL,NULL),(9639470,5057169,1,'actress',NULL,'[\"Eloise\"]'),(9639470,5896355,2,'actress',NULL,'[\"Sandie\"]'),(9639470,1741002,3,'actor',NULL,'[\"Jack\"]'),(9639470,1671,4,'actress',NULL,'[\"Ms. Collins\"]'),(9639470,942367,5,'director',NULL,NULL),(9639470,4880670,6,'writer','screenplay by',NULL),(9639470,79677,7,'producer','producer',NULL),(9639470,271479,8,'producer','producer',NULL),(9639470,661912,9,'producer','producer',NULL),(9670282,3501111,10,'cinematographer',NULL,NULL),(9670282,7356818,1,'actress',NULL,'[\"Brooke Sullivan\"]'),(9670282,1905956,2,'actor',NULL,'[\"Randy Hock\"]'),(9670282,4436837,3,'actor',NULL,'[\"Toronto\"]'),(9670282,4225090,4,'actress',NULL,'[\"Jezel\"]'),(9670282,2353045,5,'director',NULL,NULL),(9670282,1797032,6,'writer','screenplay',NULL),(9670282,490375,7,'producer','producer',NULL),(9670282,1700105,8,'composer',NULL,NULL),(9670282,725808,9,'composer',NULL,NULL),(9683478,89750,10,'editor',NULL,NULL),(9683478,2301427,1,'actress',NULL,'[\"Ellie Chu\"]'),(9683478,8159701,2,'actor',NULL,'[\"Paul Munsky\"]'),(9683478,8467055,3,'actress',NULL,'[\"Aster Flores\"]'),(9683478,4402890,4,'actor',NULL,'[\"Trig Carson\"]'),(9683478,1226108,5,'director',NULL,NULL),(9683478,106445,6,'producer','producer',NULL),(9683478,106835,7,'producer','producer',NULL),(9683478,762863,8,'composer',NULL,NULL),(9683478,2860079,9,'cinematographer','director of photography',NULL),(9686708,144203,10,'editor',NULL,NULL),(9686708,203457,1,'actor',NULL,'[\"Scott Carlin\"]'),(9686708,2525790,2,'actress',NULL,'[\"Kelsey\"]'),(9686708,6618353,3,'actor',NULL,'[\"Oscar\"]'),(9686708,7868231,4,'actor',NULL,'[\"Richie\"]'),(9686708,31976,5,'director',NULL,NULL),(9686708,3461468,6,'writer','written by',NULL),(9686708,578814,7,'producer','producer',NULL),(9686708,28787,8,'composer',NULL,NULL),(9686708,5696,9,'cinematographer','director of photography',NULL),(9691136,566555,10,'producer','producer',NULL),(9691136,1631269,1,'actress',NULL,'[\"Maude Garrett\"]'),(9691136,3538718,2,'actor',NULL,'[\"Stu Beckell\"]'),(9691136,3872230,3,'actor',NULL,'[\"Anton Williams\"]'),(9691136,4973896,4,'actor',NULL,'[\"Walter Quaid\"]'),(9691136,1755396,5,'director',NULL,NULL),(9691136,484840,6,'writer','written by',NULL),(9691136,1757754,7,'producer','producer',NULL),(9691136,962223,8,'producer','producer',NULL),(9691136,2271939,9,'producer','producer',NULL),(9701940,2819401,10,'producer','producer',NULL),(9701940,5584750,1,'actress',NULL,'[\"Ziggy Berman\"]'),(9701940,6185683,2,'actress',NULL,'[\"Cindy Berman\"]'),(9701940,1364532,3,'actress',NULL,'[\"Alice\"]'),(9701940,8450134,4,'actor',NULL,'[\"Tommy Slater\"]'),(9701940,4074404,5,'director',NULL,NULL),(9701940,5599654,6,'writer','screenplay by',NULL),(9701940,5177682,7,'writer','story by',NULL),(9701940,830419,8,'writer','based upon the Fear Street books by',NULL),(9701940,1858656,9,'producer','producer',NULL),(9701942,1858656,10,'producer','producer',NULL),(9701942,2854112,1,'actress',NULL,'[\"Sarah Fier\",\"Deena\"]'),(9701942,2842232,2,'actor',NULL,'[\"Solomon Goode\",\"Nick Goode\"]'),(9701942,1843026,3,'actress',NULL,'[\"Adult Ziggy\",\"C. Berman\"]'),(9701942,7326511,4,'actress',NULL,'[\"Hannah Miller\",\"Samantha Fraser\"]'),(9701942,4074404,5,'director',NULL,NULL),(9701942,5177682,6,'writer','written by',NULL),(9701942,4418668,7,'writer','written by',NULL),(9701942,830419,8,'writer','based upon the \"Fear Street\" books by',NULL),(9701942,10489571,9,'producer','producer',NULL),(9714030,2234719,10,'cinematographer',NULL,NULL),(9714030,2244205,1,'actress',NULL,'[\"France de Meurs\"]'),(9714030,3226240,2,'actress',NULL,'[\"Lou\"]'),(9714030,1483904,3,'actor',NULL,'[\"Fred de Meurs\"]'),(9714030,6874234,4,'actor',NULL,'[\"Charles Castro\"]'),(9714030,241622,5,'director',NULL,NULL),(9714030,98953,6,'producer','producer',NULL),(9714030,117593,7,'producer','producer',NULL),(9714030,581012,8,'producer','producer',NULL),(9714030,1206143,9,'composer',NULL,NULL),(9729768,1453510,10,'cinematographer',NULL,NULL),(9729768,372023,1,'actress',NULL,'[\"June\"]'),(9729768,440286,2,'actress',NULL,'[\"Ginny\"]'),(9729768,193135,3,'actor',NULL,'[\"Devon\"]'),(9729768,2093075,4,'actress',NULL,'[\"Ness\"]'),(9729768,4142695,5,'director',NULL,NULL),(9729768,1037158,6,'producer','producer',NULL),(9729768,1452967,7,'producer','producer',NULL),(9729768,1574823,8,'producer','producer',NULL),(9729768,330090,9,'composer',NULL,NULL),(9731598,299982,10,'editor',NULL,NULL),(9731598,2813994,1,'actor',NULL,'[\"Bobby\"]'),(9731598,1682832,2,'actor',NULL,'[\"Aaron\"]'),(9731598,1502218,3,'actor',NULL,'[\"Henry\"]'),(9731598,5851871,4,'actor',NULL,'[\"Wanda\"]'),(9731598,831557,5,'director',NULL,NULL),(9731598,31976,6,'producer','producer',NULL),(9731598,1153581,7,'producer','producer',NULL),(9731598,3299,8,'composer',NULL,NULL),(9731598,1060930,9,'cinematographer','director of photography',NULL),(9737798,5502027,10,'composer','composer',NULL),(9737798,3768173,1,'actor',NULL,'[\"Andre\"]'),(9737798,1282623,2,'actress',NULL,'[\"Sandrine\"]'),(9737798,10457412,3,'actress',NULL,'[\"Mia\"]'),(9737798,5501677,4,'actress',NULL,'[\"Lola\"]'),(9737798,1301190,5,'director',NULL,NULL),(9737798,1825205,6,'writer','screenplay',NULL),(9737798,10457413,7,'writer','book',NULL),(9737798,11979752,8,'writer','book',NULL),(9737798,717029,9,'producer','producer',NULL),(9738716,463025,10,'producer','producer',NULL),(9738716,2239702,1,'actress',NULL,'[\"Abigail\"]'),(9738716,3948952,2,'actress',NULL,'[\"Tallie\"]'),(9738716,729,3,'actor',NULL,'[\"Dyer\"]'),(9738716,3571592,4,'actor',NULL,'[\"Finney\"]'),(9738716,2178754,5,'director',NULL,NULL),(9738716,361069,6,'writer','screenplay by',NULL),(9738716,4621611,7,'writer','screenplay by',NULL),(9738716,2514034,8,'producer','producer',NULL),(9738716,3065267,9,'producer','producer',NULL),(9741310,2600377,10,'editor',NULL,NULL),(9741310,7015080,1,'actress',NULL,'[\"Libby McClean\"]'),(9741310,2452384,2,'actor',NULL,'[\"Craig\"]'),(9741310,6449080,3,'actress',NULL,'[\"Shruti\"]'),(9741310,5783517,4,'actor',NULL,'[\"Lord\"]'),(9741310,1090216,5,'director',NULL,NULL),(9741310,327066,6,'writer','screenplay by',NULL),(9741310,350742,7,'producer','producer',NULL),(9741310,2741509,8,'composer',NULL,NULL),(9741310,1163137,9,'cinematographer',NULL,NULL),(9764362,570912,10,'producer','producer',NULL),(9764362,146,1,'actor',NULL,'[\"Chef Slowik\"]'),(9764362,5896355,2,'actress',NULL,'[\"Margot\"]'),(9764362,396558,3,'actor',NULL,'[\"Tyler\"]'),(9764362,2186865,4,'actress',NULL,'[\"Elsa\"]'),(9764362,617042,5,'director',NULL,NULL),(9764362,2219721,6,'writer','written by',NULL),(9764362,4301557,7,'writer','written by',NULL),(9764362,2071,8,'producer','producer',NULL),(9764362,4105261,9,'producer','producer',NULL),(9765226,8862419,10,'production_designer',NULL,NULL),(9765226,3206118,1,'actress',NULL,'[\"Hannah\"]'),(9765226,682583,2,'actress',NULL,'[\"Joyce\"]'),(9765226,3359122,3,'actress',NULL,'[\"Brooklyn\"]'),(9765226,3376453,4,'actor',NULL,'[\"Teddy\"]'),(9765226,7215870,5,'director',NULL,NULL),(9765226,186655,6,'producer','executive producer',NULL),(9765226,5971246,7,'producer','producer',NULL),(9765226,3234826,8,'cinematographer',NULL,NULL),(9765226,6470031,9,'editor',NULL,NULL),(9766166,8280950,10,'composer',NULL,NULL),(9766166,3676489,1,'actor',NULL,'[\"Zed\"]'),(9766166,4883197,2,'actress',NULL,'[\"Addison\"]'),(9766166,5251583,3,'actor',NULL,'[\"Bucky\"]'),(9766166,2069734,4,'actress',NULL,'[\"Eliza\"]'),(9766166,388505,5,'director',NULL,NULL),(9766166,2922750,6,'writer','based on characters created by',NULL),(9766166,1760850,7,'writer','based on characters created by',NULL),(9766166,659823,8,'producer','producer',NULL),(9766166,3392,9,'composer',NULL,NULL),(9770150,251801,10,'composer',NULL,NULL),(9770150,531,1,'actress',NULL,'[\"Fern\"]'),(9770150,657,2,'actor',NULL,'[\"Dave\"]'),(9770150,9584508,3,'actress',NULL,'[\"Linda\"]'),(9770150,11894469,4,'actor',NULL,'[\"Gay\"]'),(9770150,2125482,5,'director',NULL,NULL),(9770150,9572798,6,'writer','based on the book by',NULL),(9770150,2571693,7,'producer','producer',NULL),(9770150,1885766,8,'producer','producer',NULL),(9770150,817379,9,'producer','producer',NULL),(9775360,277730,10,'writer','Batman created by',NULL),(9775360,1684869,1,'actor',NULL,'[\"Batman\",\"Joker\"]'),(9775360,1082823,2,'actor',NULL,'[\"Leonardo\"]'),(9775360,2023050,3,'actor',NULL,'[\"Raphael\"]'),(9775360,3324982,4,'actor',NULL,'[\"Michelangelo\"]'),(9775360,4267562,5,'director',NULL,NULL),(9775360,3831411,6,'writer','written by',NULL),(9775360,8073097,7,'writer','based on the comic book by',NULL),(9775360,10472587,8,'writer','based on the comic book by',NULL),(9775360,4170,9,'writer','Batman created by',NULL),(9777666,275286,10,'producer','producer',NULL),(9777666,695435,1,'actor',NULL,'[\"Dan Forester\"]'),(9777666,2088803,2,'actress',NULL,'[\"Colonel Muri Forester\"]'),(9777666,799777,3,'actor',NULL,'[\"James Forester\"]'),(9777666,2365811,4,'actress',NULL,'[\"Emmy Forester\"]'),(9777666,3021,5,'director',NULL,NULL),(9777666,3916149,6,'writer','written by',NULL),(9777666,198467,7,'producer','producer',NULL),(9777666,1911103,8,'producer','producer',NULL),(9777666,1602154,9,'producer','producer',NULL),(9783600,363986,10,'producer','producer',NULL),(9783600,1165110,1,'actor',NULL,'[\"Abnesti\"]'),(9783600,1886602,2,'actor',NULL,'[\"Jeff\"]'),(9783600,810619,3,'actress',NULL,'[\"Lizzy\"]'),(9783600,11807845,4,'actor',NULL,'[\"Verlaine\"]'),(9783600,2676052,5,'director',NULL,NULL),(9783600,2808422,6,'writer','based on the short story \"Escape from Spiderhead\" by',NULL),(9783600,1014201,7,'writer','screenplay by',NULL),(9783600,1116660,8,'writer','screenplay by',NULL),(9783600,1454175,9,'producer','producer',NULL),(9784708,481990,10,'writer','based on characters created by',NULL),(9784708,2355635,1,'actor',NULL,'[\"Leo\",\"Janitor Man\"]'),(9784708,589077,2,'actor',NULL,'[\"Raph\"]'),(9784708,807506,3,'actor',NULL,'[\"Mikey\"]'),(9784708,3091777,4,'actor',NULL,'[\"Donnie\"]'),(9784708,1635570,5,'director',NULL,NULL),(9784708,2778420,6,'director',NULL,NULL),(9784708,1333980,7,'writer','screenplay by',NULL),(9784708,1337894,8,'writer','screenplay by',NULL),(9784708,247653,9,'writer','based on characters created by',NULL),(9784798,2229798,10,'producer','producer',NULL),(9784798,3147751,1,'actor',NULL,'[\"Bill O\'Neal\"]'),(9784798,2257207,2,'actor',NULL,'[\"Fred Hampton\"]'),(9784798,687146,3,'actor',NULL,'[\"Roy Mitchell\"]'),(9784798,6195774,4,'actress',NULL,'[\"Deborah Johnson\"]'),(9784798,3489851,5,'director',NULL,NULL),(9784798,77768,6,'writer','story by',NULL),(9784798,3584219,7,'writer','story by',NULL),(9784798,5695570,8,'writer','story by',NULL),(9784798,3363032,9,'producer','producer',NULL),(9806192,10909656,10,'production_designer',NULL,NULL),(9806192,7079932,1,'actor',NULL,'[\"Naoufel\"]'),(9806192,4973460,2,'actress',NULL,'[\"Gabrielle\"]'),(9806192,1253936,3,'actor',NULL,'[\"Gigi\"]'),(9806192,11127862,4,'actor',NULL,'[\"Naoufel enfant\"]'),(9806192,3021346,5,'director',NULL,NULL),(9806192,491011,6,'writer','adaptation and dialogue',NULL),(9806192,238941,7,'producer','producer',NULL),(9806192,1776887,8,'composer',NULL,NULL),(9806192,1928263,9,'editor',NULL,NULL),(9812474,6227084,10,'producer','producer',NULL),(9812474,636426,1,'actress',NULL,'[\"Maria\"]'),(9812474,350273,2,'actor',NULL,'[\"Ingvar\"]'),(9812474,1155349,3,'actor',NULL,'[\"Pétur\"]'),(9812474,797614,4,'actor',NULL,'[\"Man on Television\"]'),(9812474,5762091,5,'director',NULL,NULL),(9812474,797604,6,'writer','writer',NULL),(9812474,349050,7,'producer','producer',NULL),(9812474,471662,8,'producer','producer',NULL),(9812474,2629897,9,'producer','producer',NULL),(9820556,9005000,10,'cinematographer',NULL,NULL),(9820556,4181215,1,'actor',NULL,'[\"Noah Coral\"]'),(9820556,246,2,'actor',NULL,'[\"Clay\"]'),(9820556,629697,3,'actress',NULL,'[\"Dr. Susan Chambers\"]'),(9820556,3879121,4,'actress',NULL,'[\"Hayley Adams\"]'),(9820556,2986811,5,'director',NULL,NULL),(9820556,4864836,6,'writer','written by',NULL),(9820556,1143429,7,'writer','written by',NULL),(9820556,1290481,8,'producer','producer',NULL),(9820556,1557950,9,'composer',NULL,NULL),(9843470,1029303,10,'composer',NULL,NULL),(9843470,57776,1,'actress',NULL,'[\"María\"]'),(9843470,10505245,2,'actress',NULL,'[\"Cipriana\"]'),(9843470,6674968,3,'actor',NULL,'[\"Benito\"]'),(9843470,2119319,4,'actress',NULL,'[\"Josefa\"]'),(9843470,3407885,5,'director',NULL,NULL),(9843470,555909,6,'writer','screenplay by',NULL),(9843470,4145551,7,'producer','executive producer',NULL),(9843470,2039749,8,'producer','executive producer',NULL),(9843470,1975459,9,'producer','producer',NULL),(9844522,3553141,10,'writer','story by',NULL),(9844522,5347988,1,'actress',NULL,'[\"Zoey Davis\"]'),(9844522,2383250,2,'actor',NULL,'[\"Ben Miller\"]'),(9844522,2832695,3,'actress',NULL,'[\"Amanda Harper\"]'),(9844522,5710414,4,'actor',NULL,'[\"Nathan\"]'),(9844522,733263,5,'director',NULL,NULL),(9844522,4816650,6,'writer','screenplay by',NULL),(9844522,3481322,7,'writer','screenplay by',NULL),(9844522,3739595,8,'writer','screenplay by',NULL),(9844522,3349927,9,'writer','screenplay by',NULL),(9866072,403397,10,'cinematographer',NULL,NULL),(9866072,731075,1,'actress',NULL,'[\"Sloane\"]'),(9866072,3478396,2,'actor',NULL,'[\"Jackson\"]'),(9866072,155693,3,'actress',NULL,'[\"Aunt Susan\"]'),(9866072,4920,4,'actress',NULL,'[\"Elaine\"]'),(9866072,925870,5,'director',NULL,NULL),(9866072,667330,6,'writer','written by',NULL),(9866072,629334,7,'producer','producer',NULL),(9866072,899193,8,'producer','producer',NULL),(9866072,1310825,9,'composer',NULL,NULL),(9893250,1397781,10,'cinematographer','director of photography',NULL),(9893250,683253,1,'actress',NULL,'[\"Marla Grayson\"]'),(9893250,227759,2,'actor',NULL,'[\"Roman Lunyov\"]'),(9893250,2555462,3,'actress',NULL,'[\"Fran\"]'),(9893250,1848,4,'actress',NULL,'[\"Jennifer Peterson\"]'),(9893250,2128335,5,'director',NULL,NULL),(9893250,5715332,6,'producer','producer',NULL),(9893250,3267061,7,'producer','producer',NULL),(9893250,4212466,8,'producer','producer',NULL),(9893250,2169909,9,'composer',NULL,NULL),(9900092,7221028,10,'actress',NULL,'[\"The Biddy\"]'),(9900092,6883785,1,'actress',NULL,'[\"Raelle Collar\"]'),(9900092,5625184,2,'actress',NULL,'[\"Scylla Ramshorn\"]'),(9900092,2351246,3,'actress',NULL,'[\"Anacostia Quartermain\"]'),(9900092,7571075,4,'actress',NULL,'[\"Tally Craven\"]'),(9900092,2436744,5,'writer','created by',NULL),(9900092,9805545,6,'actress',NULL,'[\"Abigail Bellweather\"]'),(9900092,1869872,7,'actress',NULL,'[\"Sarah Alder\",\"Sarah Adler\"]'),(9900092,5292130,8,'actor',NULL,'[\"Adil\"]'),(9900092,521723,9,'actress',NULL,'[\"Petra Bellweather\"]'),(9902160,2570742,10,'composer',NULL,NULL),(9902160,9450235,1,'actress',NULL,'[\"Molly\"]'),(9902160,7434342,2,'actress',NULL,'[\"Sandra\"]'),(9902160,9007992,3,'actress',NULL,'[\"Emma\"]'),(9902160,2988542,4,'actor',NULL,'[\"Gary\"]'),(9902160,1630273,5,'director',NULL,NULL),(9902160,132696,6,'writer','written by',NULL),(9902160,1241354,7,'producer','producer',NULL),(9902160,347384,8,'producer','producer',NULL),(9902160,1279721,9,'producer','producer',NULL); +/*!40000 ALTER TABLE `MoviesPeople` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `People` +-- + +DROP TABLE IF EXISTS `People`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `People` ( + `personId` bigint DEFAULT NULL, + `primaryName` text, + `birthYear` bigint DEFAULT NULL, + `deathYear` bigint DEFAULT NULL, + KEY `ix_People_personId` (`personId`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `People` +-- + +LOCK TABLES `People` WRITE; +/*!40000 ALTER TABLE `People` DISABLE KEYS */; +INSERT INTO `People` VALUES (1,'Fred Astaire',1899,1987),(2,'Lauren Bacall',1924,2014),(3,'Brigitte Bardot',1934,NULL),(4,'John Belushi',1949,1982),(5,'Ingmar Bergman',1918,2007),(6,'Ingrid Bergman',1915,1982),(7,'Humphrey Bogart',1899,1957),(8,'Marlon Brando',1924,2004),(9,'Richard Burton',1925,1984),(10,'James Cagney',1899,1986),(11,'Gary Cooper',1901,1961),(12,'Bette Davis',1908,1989),(13,'Doris Day',1922,2019),(14,'Olivia de Havilland',1916,2020),(15,'James Dean',1931,1955),(16,'Georges Delerue',1925,1992),(17,'Marlene Dietrich',1901,1992),(18,'Kirk Douglas',1916,2020),(19,'Federico Fellini',1920,1993),(20,'Henry Fonda',1905,1982),(21,'Joan Fontaine',1917,2013),(22,'Clark Gable',1901,1960),(23,'Judy Garland',1922,1969),(24,'John Gielgud',1904,2000),(25,'Jerry Goldsmith',1929,2004),(26,'Cary Grant',1904,1986),(27,'Alec Guinness',1914,2000),(28,'Rita Hayworth',1918,1987),(30,'Audrey Hepburn',1929,1993),(31,'Katharine Hepburn',1907,2003),(32,'Charlton Heston',1923,2008),(33,'Alfred Hitchcock',1899,1980),(34,'William Holden',1918,1981),(35,'James Horner',1953,2015),(36,'Buster Keaton',1895,1966),(37,'Gene Kelly',1912,1996),(38,'Grace Kelly',1929,1982),(39,'Deborah Kerr',1921,2007),(40,'Stanley Kubrick',1928,1999),(41,'Akira Kurosawa',1910,1998),(42,'Alan Ladd',1913,1964),(43,'Veronica Lake',1922,1973),(44,'Burt Lancaster',1913,1994),(45,'Bruce Lee',1940,1973),(46,'Vivien Leigh',1913,1967),(47,'Sophia Loren',1934,NULL),(48,'Peter Lorre',1904,1964),(49,'Henry Mancini',1924,1994),(50,'Groucho Marx',1890,1977),(51,'James Mason',1909,1984),(52,'Marcello Mastroianni',1924,1996),(53,'Robert Mitchum',1917,1997),(54,'Marilyn Monroe',1926,1962),(55,'Alfred Newman',1900,1970),(56,'Paul Newman',1925,2008),(57,'David Niven',1910,1983),(58,'Maureen O\'Hara',1920,2015),(59,'Laurence Olivier',1907,1989),(60,'Gregory Peck',1916,2003),(61,'Tyrone Power',1914,1958),(62,'Elvis Presley',1935,1977),(63,'Anthony Quinn',1915,2001),(64,'Edward G. Robinson',1893,1973),(65,'Nino Rota',1911,1979),(66,'Jane Russell',1921,2011),(67,'Miklós Rózsa',1907,1995),(68,'Randolph Scott',1898,1987),(69,'Frank Sinatra',1915,1998),(70,'Max Steiner',1888,1971),(71,'James Stewart',1908,1997),(72,'Elizabeth Taylor',1932,2011),(73,'Shirley Temple',1928,2014),(74,'Gene Tierney',1920,1991),(75,'Spencer Tracy',1900,1967),(76,'François Truffaut',1932,1984),(77,'Franz Waxman',1906,1967),(78,'John Wayne',1907,1979),(79,'Raquel Welch',1940,2023),(80,'Orson Welles',1915,1985),(81,'Natalie Wood',1938,1981),(82,'Victor Young',1899,1956),(84,'Gong Li',1965,NULL),(86,'Louis de Funès',1914,1983),(90,'Armin Mueller-Stahl',1930,NULL),(91,'Gérard Pirès',1942,NULL),(92,'John Cleese',1939,NULL),(93,'Brad Pitt',1963,NULL),(95,'Woody Allen',1935,NULL),(96,'Gillian Anderson',1968,NULL),(97,'Pamela Anderson',1967,NULL),(98,'Jennifer Aniston',1969,NULL),(99,'Patricia Arquette',1968,NULL),(100,'Rowan Atkinson',1955,NULL),(101,'Dan Aykroyd',1952,NULL),(102,'Kevin Bacon',1958,NULL),(103,'Fairuza Balk',1974,NULL),(104,'Antonio Banderas',1960,NULL),(105,'Adrienne Barbeau',1945,NULL),(106,'Drew Barrymore',1975,NULL),(107,'Kim Basinger',1953,NULL),(108,'Luc Besson',1959,NULL),(109,'Yasmine Bleeth',1968,NULL),(110,'Kenneth Branagh',1960,NULL),(111,'Matthew Broderick',1962,NULL),(112,'Pierce Brosnan',1953,NULL),(113,'Sandra Bullock',1964,NULL),(114,'Steve Buscemi',1957,NULL),(115,'Nicolas Cage',1964,NULL),(116,'James Cameron',1954,NULL),(117,'Neve Campbell',1973,NULL),(118,'John Carpenter',1948,NULL),(119,'Tia Carrere',NULL,NULL),(120,'Jim Carrey',1962,NULL),(121,'Phoebe Cates',1963,NULL),(122,'Charles Chaplin',1889,1977),(123,'George Clooney',1961,NULL),(124,'Jennifer Connelly',1970,NULL),(125,'Sean Connery',1930,2020),(126,'Kevin Costner',1955,NULL),(127,'Wes Craven',1939,2015),(128,'Russell Crowe',1964,NULL),(129,'Tom Cruise',1962,NULL),(130,'Jamie Lee Curtis',1958,NULL),(131,'John Cusack',1966,NULL),(132,'Claire Danes',1979,NULL),(133,'Geena Davis',1956,NULL),(134,'Robert De Niro',1943,NULL),(136,'Johnny Depp',1963,NULL),(137,'Bo Derek',1956,NULL),(138,'Leonardo DiCaprio',1974,NULL),(139,'Cameron Diaz',1972,NULL),(140,'Michael Douglas',1944,NULL),(141,'David Duchovny',1960,NULL),(142,'Clint Eastwood',1930,NULL),(143,'Erika Eleniak',1969,NULL),(144,'Cary Elwes',1962,NULL),(145,'Sherilyn Fenn',1965,NULL),(146,'Ralph Fiennes',1962,NULL),(147,'Colin Firth',1960,NULL),(148,'Harrison Ford',1942,NULL),(149,'Jodie Foster',1962,NULL),(150,'Michael J. Fox',1961,NULL),(151,'Morgan Freeman',1937,NULL),(152,'Richard Gere',1949,NULL),(153,'Gina Gershon',1962,NULL),(154,'Mel Gibson',1956,NULL),(155,'Whoopi Goldberg',1955,NULL),(156,'Jeff Goldblum',1952,NULL),(157,'Linda Hamilton',1956,NULL),(158,'Tom Hanks',1956,NULL),(159,'Teri Hatcher',1964,NULL),(160,'Ethan Hawke',1970,NULL),(161,'Salma Hayek',1966,NULL),(162,'Anne Heche',1969,2022),(163,'Dustin Hoffman',1937,NULL),(164,'Anthony Hopkins',1937,NULL),(165,'Ron Howard',1954,NULL),(166,'Helen Hunt',1963,NULL),(167,'Elizabeth Hurley',1965,NULL),(168,'Samuel L. Jackson',1948,NULL),(169,'Tommy Lee Jones',1946,NULL),(170,'Milla Jovovich',1975,NULL),(171,'Ashley Judd',1968,NULL),(172,'Harvey Keitel',1939,NULL),(173,'Nicole Kidman',1967,NULL),(174,'Val Kilmer',1959,NULL),(175,'Stephen King',1947,NULL),(176,'Nastassja Kinski',1961,NULL),(177,'Kevin Kline',1947,NULL),(178,'Diane Lane',1965,NULL),(179,'Jude Law',1972,NULL),(180,'David Lean',1908,1991),(181,'Heather Locklear',1961,NULL),(182,'Jennifer Lopez',1969,NULL),(183,'Traci Lords',1968,NULL),(184,'George Lucas',1944,NULL),(185,'Dolph Lundgren',1957,NULL),(186,'David Lynch',1946,NULL),(187,'Madonna',1958,NULL),(188,'Steve Martin',1945,NULL),(190,'Matthew McConaughey',1969,NULL),(191,'Ewan McGregor',1971,NULL),(192,'Alyssa Milano',1972,NULL),(193,'Demi Moore',1962,NULL),(194,'Julianne Moore',1960,NULL),(195,'Bill Murray',1950,NULL),(196,'Mike Myers',1963,NULL),(197,'Jack Nicholson',1937,NULL),(198,'Gary Oldman',1958,NULL),(199,'Al Pacino',1940,NULL),(200,'Bill Paxton',1955,2017),(201,'Michelle Pfeiffer',1958,NULL),(202,'Ryan Phillippe',1974,NULL),(203,'River Phoenix',1970,1993),(204,'Natalie Portman',1981,NULL),(205,'Parker Posey',1968,NULL),(206,'Keanu Reeves',1964,NULL),(207,'Christina Ricci',1980,NULL),(208,'Molly Ringwald',1968,NULL),(209,'Tim Robbins',1958,NULL),(210,'Julia Roberts',1967,NULL),(211,'Mimi Rogers',1956,NULL),(212,'Meg Ryan',1961,NULL),(213,'Winona Ryder',1971,NULL),(214,'Mia Sara',1967,NULL),(215,'Susan Sarandon',1946,NULL),(216,'Arnold Schwarzenegger',1947,NULL),(217,'Martin Scorsese',1942,NULL),(218,'Kristin Scott Thomas',1960,NULL),(219,'Steven Seagal',1952,NULL),(221,'Charlie Sheen',1965,NULL),(222,'Brooke Shields',1965,NULL),(223,'Elisabeth Shue',1963,NULL),(224,'Alicia Silverstone',1976,NULL),(225,'Christian Slater',1969,NULL),(226,'Will Smith',1968,NULL),(227,'Mira Sorvino',1967,NULL),(228,'Kevin Spacey',1959,NULL),(229,'Steven Spielberg',1946,NULL),(230,'Sylvester Stallone',1946,NULL),(231,'Oliver Stone',1946,NULL),(232,'Sharon Stone',1958,NULL),(233,'Quentin Tarantino',1963,NULL),(234,'Charlize Theron',1975,NULL),(235,'Uma Thurman',1970,NULL),(236,'Jennifer Tilly',1958,NULL),(237,'John Travolta',1954,NULL),(239,'Liv Tyler',1977,NULL),(240,'Skeet Ulrich',1970,NULL),(241,'Jean-Claude Van Damme',1960,NULL),(242,'Mark Wahlberg',1971,NULL),(243,'Denzel Washington',1954,NULL),(244,'Sigourney Weaver',1949,NULL),(245,'Robin Williams',1951,2014),(246,'Bruce Willis',1955,NULL),(247,'John Woo',1946,NULL),(248,'Edward D. Wood Jr.',1924,1978),(249,'James Woods',1947,NULL),(250,'Renée Zellweger',1969,NULL),(251,'Timothy Dowling',1973,NULL),(252,'Robert Ellis',1892,1974),(254,'Isabelle Adjani',1955,NULL),(255,'Ben Affleck',1972,NULL),(256,'Jenny Agutter',1952,NULL),(257,'Alan Alda',1936,NULL),(260,'Joan Allen',1956,NULL),(261,'Karen Allen',1951,NULL),(262,'Nancy Allen',1950,NULL),(263,'Kirstie Alley',1951,2022),(264,'Pedro Almodóvar',1949,NULL),(265,'Robert Altman',1925,2006),(266,'Ursula Andress',1936,NULL),(267,'Julie Andrews',1935,NULL),(268,'Ann-Margret',1941,NULL),(269,'Jean-Jacques Annaud',1943,NULL),(270,'Gabrielle Anwar',1970,NULL),(271,'Anne Archer',1947,NULL),(272,'Fanny Ardant',1949,NULL),(273,'Alan Arkin',1934,2023),(274,'David Arquette',1971,NULL),(275,'Rosanna Arquette',1959,NULL),(276,'Sean Astin',1971,NULL),(277,'Richard Attenborough',1923,2014),(278,'Pernilla August',1958,NULL),(279,'Hank Azaria',1964,NULL),(281,'Scott Baio',1960,NULL),(282,'Scott Bairstow',1970,NULL),(284,'Adam Baldwin',1962,NULL),(285,'Alec Baldwin',1958,NULL),(286,'Stephen Baldwin',1966,NULL),(287,'William Baldwin',1963,NULL),(288,'Christian Bale',1974,NULL),(289,'Ellen Barkin',1954,NULL),(290,'John Barry',1933,2011),(291,'Angela Bassett',1958,NULL),(293,'Sean Bean',1959,NULL),(294,'Amanda Bearse',1958,NULL),(295,'Kate Beckinsale',1973,NULL),(296,'Robert Beltran',1953,NULL),(297,'Tom Berenger',1949,NULL),(298,'Candice Bergen',1946,NULL),(299,'Michael Biehn',1956,NULL),(300,'Juliette Binoche',1964,NULL),(301,'Thora Birch',1982,NULL),(302,'Jacqueline Bisset',1944,NULL),(303,'Honor Blackman',1925,2020),(304,'Linda Blair',1959,NULL),(305,'Mel Blanc',1908,1989),(306,'Brian Blessed',1936,NULL),(307,'Helena Bonham Carter',1966,NULL),(308,'Ernest Borgnine',1917,2012),(309,'David Bowie',1947,2016),(310,'Bruce Boxleitner',1950,NULL),(312,'Amy Brenneman',1964,NULL),(313,'Jeff Bridges',1949,NULL),(314,'Charles Bronson',1921,2003),(315,'Louise Brooks',1906,1985),(316,'Mel Brooks',1926,NULL),(317,'Clancy Brown',1959,NULL),(318,'Tim Burton',1958,NULL),(319,'Yancy Butler',1970,NULL),(320,'Luis Buñuel',1900,1983),(321,'Gabriel Byrne',1950,NULL),(322,'Emmanuelle Béart',1963,NULL),(323,'Michael Caine',1933,NULL),(326,'Kim Cattrall',1956,NULL),(327,'Lacey Chabert',1982,NULL),(328,'Richard Chamberlain',1934,NULL),(329,'Jackie Chan',1954,NULL),(330,'Stockard Channing',1944,NULL),(331,'Chevy Chase',1943,NULL),(332,'Don Cheadle',1964,NULL),(333,'Cher',1946,NULL),(334,'Chow Yun-Fat',1955,NULL),(335,'Glenn Close',1947,NULL),(336,'James Coburn',1928,2002),(337,'Rachael Leigh Cook',1979,NULL),(338,'Francis Ford Coppola',1939,NULL),(339,'Roger Corman',1926,NULL),(341,'Michael Crichton',1942,2008),(342,'James Cromwell',1940,NULL),(343,'David Cronenberg',1943,NULL),(344,'Denise Crosby',NULL,NULL),(345,'Billy Crystal',1948,NULL),(346,'Macaulay Culkin',1980,NULL),(347,'Tim Curry',1946,NULL),(348,'Tony Curtis',1925,2010),(349,'Joan Cusack',1962,NULL),(350,'Beverly D\'Angelo',1951,NULL),(352,'Vincent D\'Onofrio',1959,NULL),(353,'Willem Dafoe',1955,NULL),(354,'Matt Damon',1970,NULL),(356,'Sybil Danning',NULL,NULL),(357,'Lolita Davidovich',1961,NULL),(358,'Daniel Day-Lewis',1957,NULL),(360,'Rebecca De Mornay',1959,NULL),(361,'Brian De Palma',1940,NULL),(362,'Danny DeVito',1944,NULL),(363,'Loren Dean',1969,NULL),(364,'Sandra Dee',1942,2005),(365,'Julie Delpy',1969,NULL),(366,'Catherine Deneuve',1943,NULL),(367,'Gérard Depardieu',1948,NULL),(368,'Laura Dern',1967,NULL),(369,'Matt Dillon',1964,NULL),(370,'Walt Disney',1901,1966),(372,'Amanda Donohoe',1962,NULL),(374,'Brad Dourif',1950,NULL),(375,'Robert Downey Jr.',1965,NULL),(377,'Richard Dreyfuss',1947,NULL),(378,'Minnie Driver',1970,NULL),(379,'Kirsten Dunst',1982,NULL),(380,'Robert Duvall',1931,NULL),(381,'Anthony Edwards',1962,NULL),(382,'Atom Egoyan',1960,NULL),(383,'Jennifer Ehle',1969,NULL),(384,'Danny Elfman',1953,NULL),(385,'Sam Elliott',1944,NULL),(386,'Roland Emmerich',1955,NULL),(387,'Robert Englund',1947,NULL),(388,'R. Lee Ermey',1944,2018),(389,'Emilio Estevez',1962,NULL),(390,'Joe Eszterhas',1944,NULL),(391,'Rupert Everett',1959,NULL),(393,'Peter Falk',1927,2011),(394,'Chris Farley',1964,1997),(395,'Terry Farrell',1963,NULL),(396,'Farrah Fawcett',1947,2009),(397,'Corey Feldman',1971,NULL),(398,'Sally Field',1946,NULL),(399,'David Fincher',1962,NULL),(400,'Linda Fiorentino',1958,NULL),(401,'Laurence Fishburne',1961,NULL),(402,'Carrie Fisher',1956,2016),(403,'Bridget Fonda',1964,NULL),(404,'Jane Fonda',1937,NULL),(406,'John Ford',1894,1973),(407,'Vivica A. Fox',1964,NULL),(408,'Jonathan Frakes',1952,NULL),(409,'Brendan Fraser',1968,NULL),(410,'Stephen Fry',1957,NULL),(411,'Edward Furlong',1977,NULL),(412,'Andy Garcia',1956,NULL),(413,'Janeane Garofalo',1964,NULL),(414,'Teri Garr',1947,NULL),(415,'Jami Gertz',1965,NULL),(416,'Terry Gilliam',1940,NULL),(417,'Crispin Glover',1964,NULL),(418,'Danny Glover',1946,NULL),(419,'Jean-Luc Godard',1930,2022),(420,'Valeria Golino',1965,NULL),(421,'Cuba Gooding Jr.',1968,NULL),(422,'John Goodman',1952,NULL),(424,'Hugh Grant',1960,NULL),(425,'Peter Greenaway',1942,NULL),(426,'Jennifer Grey',1960,NULL),(427,'Pam Grier',1949,NULL),(428,'D.W. Griffith',1875,1948),(429,'Melanie Griffith',1957,NULL),(430,'Steve Guttenberg',1958,NULL),(431,'Taylor Hackford',1944,NULL),(432,'Gene Hackman',1930,NULL),(433,'Corey Haim',1971,2010),(434,'Mark Hamill',NULL,NULL),(435,'Daryl Hannah',1960,NULL),(436,'Curtis Hanson',1945,2016),(437,'Woody Harrelson',1961,NULL),(438,'Ed Harris',1950,NULL),(439,'Neil Patrick Harris',1973,NULL),(441,'Noah Hathaway',1971,NULL),(442,'Rutger Hauer',1944,2019),(443,'Goldie Hawn',1945,NULL),(444,'Glenne Headly',1955,2017),(445,'Dan Hedaya',1940,NULL),(446,'Mariel Hemingway',1961,NULL),(447,'Marilu Henner',1952,NULL),(448,'Lance Henriksen',1940,NULL),(449,'Natasha Henstridge',1974,NULL),(450,'Philip Seymour Hoffman',1967,2014),(451,'Gaby Hoffmann',1982,NULL),(452,'Lauren Holly',1963,NULL),(453,'Ian Holm',1931,2020),(454,'Dennis Hopper',1936,2010),(455,'John Hughes',1950,2009),(456,'Holly Hunter',1958,NULL),(457,'John Hurt',1940,2017),(458,'William Hurt',1950,2022),(459,'Timothy Hutton',1960,NULL),(460,'Jeremy Irons',1948,NULL),(461,'Michael Ironside',1950,NULL),(462,'Kate Jackson',1948,NULL),(463,'Famke Janssen',1964,NULL),(464,'Jim Jarmusch',1953,NULL),(466,'Jean-Pierre Jeunet',1953,NULL),(467,'Don Johnson',1949,NULL),(468,'Lynn-Holly Johnson',1958,NULL),(469,'James Earl Jones',1931,NULL),(470,'Jeffrey Jones',1946,NULL),(471,'Raul Julia',1940,1994),(472,'Boris Karloff',1887,1969),(473,'Diane Keaton',1946,NULL),(474,'Michael Keaton',1951,NULL),(475,'Patsy Kensit',1968,NULL),(476,'Sally Kirkland',1941,NULL),(478,'Tawny Kitaen',1961,2021),(480,'Elias Koteas',1961,NULL),(481,'Alice Krige',1954,NULL),(482,'Sylvia Kristel',1952,2012),(483,'Christopher Lambert',1957,NULL),(484,'John Landis',1950,NULL),(485,'Fritz Lang',1890,1976),(486,'Heather Langenkamp',1964,NULL),(487,'Ang Lee',1954,NULL),(488,'Brandon Lee',1965,1993),(489,'Christopher Lee',1922,2015),(490,'Spike Lee',1957,NULL),(491,'John Leguizamo',1960,NULL),(492,'Jennifer Jason Leigh',1962,NULL),(493,'Jack Lemmon',1925,2001),(494,'Robert Sean Leonard',1969,NULL),(495,'Téa Leoni',1966,NULL),(496,'Juliette Lewis',1973,NULL),(497,'Jennifer Lien',1974,NULL),(498,'Matthew Lillard',1970,NULL),(499,'Bai Ling',NULL,NULL),(500,'Richard Linklater',1960,NULL),(501,'Ray Liotta',1954,2022),(502,'Christopher Lloyd',1938,NULL),(504,'Amy Locane',1971,NULL),(505,'Nia Long',1970,NULL),(506,'Julia Louis-Dreyfus',1961,NULL),(507,'Rob Lowe',1964,NULL),(508,'Carey Lowell',1961,NULL),(509,'Bela Lugosi',1882,1956),(510,'Andie MacDowell',1958,NULL),(511,'Shirley MacLaine',1934,NULL),(512,'Elle Macpherson',1964,NULL),(513,'William H. Macy',1950,NULL),(514,'Michael Madsen',1957,NULL),(515,'Virginia Madsen',1961,NULL),(517,'Terrence Malick',1943,NULL),(518,'John Malkovich',1953,NULL),(519,'David Mamet',1947,NULL),(520,'Michael Mann',1943,NULL),(521,'Sophie Marceau',1966,NULL),(522,'Vanessa Marcil',1968,NULL),(523,'Julianna Margulies',1966,NULL),(524,'Mary Stuart Masterson',1966,NULL),(525,'Heather Matarazzo',1982,NULL),(526,'Samantha Mathis',1970,NULL),(527,'Walter Matthau',1920,2000),(528,'Mathilda May',1965,NULL),(529,'Debi Mazar',1964,NULL),(530,'Andrew McCarthy',1962,NULL),(531,'Frances McDormand',1957,NULL),(532,'Malcolm McDowell',1943,NULL),(534,'Kelly McGillis',1957,NULL),(535,'Rose McGowan',1973,NULL),(537,'Steve McQueen',1930,1980),(538,'Colm Meaney',1953,NULL),(539,'Dina Meyer',1968,NULL),(540,'Russ Meyer',1922,2004),(541,'Bette Midler',1945,NULL),(542,'Penelope Ann Miller',1964,NULL),(543,'Sal Mineo',1939,1976),(545,'Helen Mirren',1945,NULL),(546,'Matthew Modine',1959,NULL),(547,'Alfred Molina',1953,NULL),(549,'Roger Moore',1927,2017),(550,'Kate Mulgrew',1955,NULL),(551,'Dermot Mulroney',1963,NULL),(552,'Eddie Murphy',1961,NULL),(553,'Liam Neeson',1952,NULL),(554,'Sam Neill',1947,NULL),(555,'Judd Nelson',1959,NULL),(556,'Olivia Newton-John',1948,2022),(557,'Brigitte Nielsen',1963,NULL),(558,'Leslie Nielsen',1926,2010),(559,'Leonard Nimoy',1931,2015),(560,'Nick Nolte',1941,NULL),(562,'Jeremy Northam',1961,NULL),(563,'Chris O\'Donnell',1970,NULL),(564,'Peter O\'Toole',1932,2013),(565,'Lena Olin',1955,NULL),(566,'Julia Ormond',1965,NULL),(567,'George Orwell',1903,1950),(568,'Frank Oz',1944,NULL),(569,'Gwyneth Paltrow',1972,NULL),(570,'Alan Parker',1944,2020),(571,'Mary-Louise Parker',1964,NULL),(572,'Sarah Jessica Parker',1965,NULL),(573,'Dolly Parton',1946,NULL),(574,'Jason Patric',1966,NULL),(575,'Alexandra Paul',1963,NULL),(576,'Sean Penn',1960,NULL),(577,'George Peppard',1928,1994),(578,'Anthony Perkins',1932,1992),(579,'Ron Perlman',1950,NULL),(581,'Joseph L. Mankiewicz',1909,1993),(582,'Joe Pesci',1943,NULL),(583,'Wolfgang Petersen',1941,2022),(584,'Amanda Peterson',1971,2015),(586,'Jada Pinkett Smith',1971,NULL),(587,'Donald Pleasence',1919,1995),(588,'Martha Plimpton',1970,NULL),(589,'Eve Plumb',1958,NULL),(590,'Edgar Allan Poe',1809,1849),(591,'Roman Polanski',1933,NULL),(592,'Pete Postlethwaite',1946,2011),(593,'Kelly Preston',1962,2020),(594,'Jason Priestley',1969,NULL),(596,'Jonathan Pryce',1947,NULL),(597,'Bill Pullman',1953,NULL),(598,'Dennis Quaid',1954,NULL),(599,'Kathleen Quinlan',1954,NULL),(600,'Sam Raimi',1959,NULL),(601,'Harold Ramis',1944,2014),(602,'Robert Redford',1936,NULL),(603,'Vanessa Redgrave',1937,NULL),(604,'John C. Reilly',1965,NULL),(605,'Brad Renfro',1982,2008),(606,'Jean Reno',1948,NULL),(607,'Paul Reubens',1952,2023),(608,'Burt Reynolds',1936,2018),(609,'Ving Rhames',1959,NULL),(610,'Giovanni Ribisi',1974,NULL),(612,'Denise Richards',1971,NULL),(613,'Joely Richardson',1965,NULL),(614,'Alan Rickman',1946,2016),(615,'John Ritter',1948,2003),(616,'Eric Roberts',1956,NULL),(617,'Tanya Roberts',1949,2021),(618,'Isabella Rossellini',1952,NULL),(619,'Tim Roth',1961,NULL),(620,'Mickey Rourke',1952,NULL),(621,'Kurt Russell',1951,NULL),(622,'Theresa Russell',1957,NULL),(623,'Rene Russo',1954,NULL),(624,'Laura San Giacomo',1961,NULL),(626,'John Sayles',1950,NULL),(627,'Greta Scacchi',1960,NULL),(628,'Johnathon Schaech',1969,NULL),(629,'Claudia Schiffer',1970,NULL),(630,'Liev Schreiber',1967,NULL),(631,'Ridley Scott',1937,NULL),(632,'Jerry Seinfeld',1954,NULL),(633,'Tom Selleck',1945,NULL),(634,'Peter Sellers',1925,1980),(635,'Yahoo Serious',1953,NULL),(636,'William Shakespeare',1564,1616),(637,'Tupac Shakur',1971,1996),(638,'William Shatner',1931,NULL),(639,'Ally Sheedy',1962,NULL),(640,'Martin Sheen',1940,NULL),(641,'Gary Sinise',1955,NULL),(643,'Tom Skerritt',1933,NULL),(644,'Helen Slater',1963,NULL),(646,'Jaclyn Smith',1945,NULL),(648,'Wesley Snipes',1962,NULL),(649,'Paul Sorvino',1939,2022),(650,'Talisa Soto',1967,NULL),(651,'Sissy Spacek',1949,NULL),(652,'James Spader',1960,NULL),(653,'Brent Spiner',1949,NULL),(654,'Terence Stamp',1938,NULL),(655,'Eric Stoltz',1961,NULL),(656,'Madeleine Stowe',1958,NULL),(657,'David Strathairn',1949,NULL),(658,'Meryl Streep',1949,NULL),(659,'Barbra Streisand',1942,NULL),(660,'Tami Stronach',1972,NULL),(661,'Donald Sutherland',1935,NULL),(662,'Kiefer Sutherland',1966,NULL),(663,'Dominique Swain',1980,NULL),(664,'Patrick Swayze',1952,2009),(665,'D.B. Sweeney',NULL,NULL),(666,'Lili Taylor',1967,NULL),(667,'David Thewlis',1963,NULL),(668,'Emma Thompson',1959,NULL),(669,'Fred Thompson',1942,2015),(670,'Lea Thompson',1961,NULL),(671,'Billy Bob Thornton',1955,NULL),(672,'Meg Tilly',1960,NULL),(673,'Marisa Tomei',1964,NULL),(674,'Tamlyn Tomita',1966,NULL),(675,'Jeanne Tripplehorn',1963,NULL),(676,'Chris Tucker',1971,NULL),(677,'Robin Tunney',1972,NULL),(678,'Kathleen Turner',1954,NULL),(679,'Deborah Kara Unger',1966,NULL),(680,'Casper Van Dien',1968,NULL),(681,'Vince Vaughn',1970,NULL),(682,'Paul Verhoeven',1938,NULL),(683,'Gore Vidal',1925,2012),(685,'Jon Voight',1938,NULL),(686,'Christopher Walken',1943,NULL),(687,'J.T. Walsh',1943,1998),(688,'Sela Ward',1956,NULL),(689,'Julie Warner',1965,NULL),(690,'Lesley Ann Warren',1946,NULL),(691,'John Waters',1946,NULL),(693,'Peter Weller',1947,NULL),(694,'Wim Wenders',1945,NULL),(695,'Joanne Whalley',1961,NULL),(696,'Wil Wheaton',1972,NULL),(697,'Billy Wilder',1906,2002),(698,'Gene Wilder',1933,2016),(699,'Michael Wincott',1958,NULL),(700,'Debra Winger',1955,NULL),(701,'Kate Winslet',1975,NULL),(702,'Reese Witherspoon',1976,NULL),(703,'BD Wong',1960,NULL),(704,'Elijah Wood',1981,NULL),(705,'Robin Wright',1966,NULL),(706,'Michelle Yeoh',1962,NULL),(707,'Sean Young',1959,NULL),(708,'Billy Zane',1966,NULL),(709,'Robert Zemeckis',1952,NULL),(710,'David Raksin',1912,2004),(717,'Kareem Abdul-Jabbar',1947,NULL),(718,'Ian Abercrombie',1934,2012),(719,'F. Murray Abraham',1939,NULL),(720,'Jim Abrahams',1944,NULL),(721,'Victoria Abril',1959,NULL),(722,'Joss Ackland',1928,NULL),(724,'Brooke Adams',1949,NULL),(725,'Joey Lauren Adams',1968,NULL),(726,'Maud Adams',1945,NULL),(727,'Percy Adlon',1935,NULL),(728,'Mario Adorf',1930,NULL),(729,'Casey Affleck',1975,NULL),(730,'John Agar',1921,2002),(731,'Brian Aherne',1902,1986),(732,'Danny Aiello',1933,2019),(733,'Anouk Aimée',1932,NULL),(734,'Eddie Albert',1906,2005),(735,'Brian Aldiss',1925,2017),(736,'Robert Aldrich',1918,1983),(737,'Jane Alexander',1939,NULL),(739,'Debbie Allen',1950,NULL),(740,'Irwin Allen',1916,1991),(741,'Tim Allen',1953,NULL),(742,'June Allyson',1917,2006),(743,'Néstor Almendros',1930,1992),(744,'Maria Conchita Alonso',1957,NULL),(746,'Trini Alvarado',1967,NULL),(747,'Don Ameche',1908,1993),(749,'Mädchen Amick',1970,NULL),(750,'Jon Amiel',1948,NULL),(752,'Judith Anderson',1897,1992),(755,'Lindsay Anderson',1923,1994),(756,'Loni Anderson',1945,NULL),(757,'Melissa Sue Anderson',1962,NULL),(758,'Melody Anderson',1955,NULL),(759,'Paul Thomas Anderson',1970,NULL),(761,'Bibi Andersson',1935,2019),(762,'Anthony Andrews',1948,NULL),(763,'Dana Andrews',1909,1992),(767,'Jean-Hugues Anglade',1955,NULL),(768,'Francesca Annis',1945,NULL),(770,'David Anspaugh',1946,NULL),(771,'Lysette Anthony',1963,NULL),(774,'Michelangelo Antonioni',1912,2007),(775,'Christina Applegate',1971,NULL),(776,'Michael Apted',1941,2021),(777,'Gregg Araki',1959,NULL),(778,'Alfonso Arau',1932,NULL),(780,'Denys Arcand',1941,NULL),(781,'Eve Arden',1908,1990),(782,'Asia Argento',1975,NULL),(783,'Dario Argento',1940,NULL),(786,'George Armitage',1942,NULL),(787,'Bess Armstrong',1953,NULL),(788,'Gillian Armstrong',1950,NULL),(790,'James Arness',1923,2011),(791,'Jack Arnold',1912,1992),(792,'Tom Arnold',1959,NULL),(793,'Alexis Arquette',1969,2016),(794,'Lewis Arquette',1935,2001),(795,'Jean Arthur',1900,1991),(796,'Dana Ashbrook',1967,NULL),(797,'Hal Ashby',1929,1988),(798,'Linden Ashby',1960,NULL),(799,'Edward Asner',1929,2021),(800,'Armand Assante',1949,NULL),(801,'Olivier Assayas',1955,NULL),(802,'Mary Astor',1906,1987),(803,'Christopher Atkins',1961,NULL),(804,'Stéphane Audran',1932,2018),(805,'Claudine Auger',1941,2019),(806,'Bille August',1948,NULL),(807,'Jane Austen',1775,1817),(809,'Daniel Auteuil',1950,NULL),(811,'Frankie Avalon',1940,NULL),(812,'Roger Avary',1965,NULL),(814,'John G. Avildsen',1935,2017),(816,'Jon Avnet',1949,NULL),(817,'Lew Ayres',1908,1996),(818,'Shabana Azmi',1950,NULL),(819,'Barbara Bach',1946,NULL),(820,'Burt Bacharach',1928,2023),(821,'Amitabh Bachchan',1942,NULL),(822,'Jim Backus',1913,1989),(823,'Angelo Badalamenti',1937,2022),(824,'John Badham',1939,NULL),(829,'Stuart Baird',1947,NULL),(832,'Diane Baker',1938,NULL),(833,'Joe Don Baker',1936,NULL),(834,'Kathy Baker',1950,NULL),(835,'Ralph Bakshi',1938,NULL),(836,'Scott Bakula',1954,NULL),(837,'Bob Balaban',1945,NULL),(838,'Daniel Baldwin',1960,NULL),(839,'Ina Balin',1937,1990),(840,'Lucille Ball',1911,1989),(841,'Michael Ballhaus',1935,2017),(842,'Martin Balsam',1919,1996),(843,'Anne Bancroft',1931,2005),(845,'Tallulah Bankhead',1902,1968),(846,'Ian Bannen',1928,1999),(848,'Olivia Barash',NULL,NULL),(849,'Javier Bardem',1969,NULL),(850,'Clive Barker',1952,NULL),(851,'Lex Barker',1919,1973),(852,'Jean-Marc Barr',1960,NULL),(853,'Bruno Barreto',1955,NULL),(855,'Raymond J. Barry',1939,NULL),(856,'Ethel Barrymore',1879,1959),(858,'John Barrymore',1882,1942),(859,'Lionel Barrymore',1878,1954),(860,'Paul Bartel',1938,2000),(861,'Freddie Bartholomew',1924,1992),(862,'Robin Bartlett',1951,NULL),(863,'Billy Barty',1924,2000),(864,'Mikhail Baryshnikov',1948,NULL),(867,'Jason Bateman',1969,NULL),(868,'Justine Bateman',1966,NULL),(869,'Alan Bates',1934,2003),(870,'Kathy Bates',1948,NULL),(872,'Patrick Bauchau',NULL,NULL),(873,'Belinda Bauer',1950,NULL),(874,'Steven Bauer',1956,NULL),(875,'L. Frank Baum',1856,1919),(876,'Noah Baumbach',1969,NULL),(877,'Lamberto Bava',1944,NULL),(878,'Mario Bava',1914,1980),(879,'Anne Baxter',1923,1985),(880,'Meredith Baxter',1947,NULL),(881,'Michael Bay',1965,NULL),(882,'Nathalie Baye',1948,NULL),(883,'Stephanie Beacham',1947,NULL),(884,'Jennifer Beals',1963,NULL),(885,'Ned Beatty',1937,2021),(886,'Warren Beatty',1937,NULL),(887,'Harold Becker',1928,NULL),(888,'Meret Becker',1969,NULL),(889,'Bonnie Bedelia',1948,NULL),(891,'Wallace Beery',1885,1949),(892,'Jason Beghe',1960,NULL),(893,'Ed Begley Jr.',1949,NULL),(894,'Jean-Jacques Beineix',1946,2022),(895,'Barbara Bel Geddes',1922,2005),(896,'Harry Belafonte',1927,2023),(897,'Ralph Bellamy',1904,1991),(899,'Monica Bellucci',1964,NULL),(901,'Jean-Paul Belmondo',1933,2021),(902,'Jim Belushi',1954,NULL),(903,'Brian Benben',1956,NULL),(904,'William Bendix',1906,1964),(905,'Roberto Benigni',1952,NULL),(906,'Annette Bening',1958,NULL),(907,'Richard Benjamin',1938,NULL),(908,'David Bennent',1966,NULL),(909,'Constance Bennett',1904,1965),(910,'Joan Bennett',1910,1990),(911,'Nigel Bennett',1949,NULL),(912,'Jack Benny',1894,1974),(913,'Robby Benson',1956,NULL),(914,'Robert Benton',1932,NULL),(915,'Bruce Beresford',1940,NULL),(916,'Peter Berg',1964,NULL),(917,'Polly Bergen',1930,2014),(919,'Senta Berger',1941,NULL),(920,'Patrick Bergin',1951,NULL),(921,'Andrew Bergman',1945,NULL),(922,'Sandahl Bergman',1951,NULL),(923,'Busby Berkeley',1895,1976),(924,'Elizabeth Berkley',1972,NULL),(925,'Steven Berkoff',1937,NULL),(926,'Milton Berle',1908,2002),(928,'Sandra Bernhard',1955,NULL),(929,'Corbin Bernsen',1954,NULL),(930,'Elmer Bernstein',1922,2004),(931,'Elizabeth Berridge',1962,NULL),(932,'Halle Berry',1966,NULL),(934,'Bernardo Bertolucci',1941,2018),(935,'Bibi Besch',1942,1996),(937,'Richard Beymer',1939,NULL),(938,'Daniela Bianchi',1942,NULL),(939,'Adrian Biddle',1952,2005),(941,'Kathryn Bigelow',1951,NULL),(942,'Theodore Bikel',1924,2015),(944,'Antonia Bird',1951,2013),(945,'Jane Birkin',1946,2023),(947,'Karen Black',1939,2013),(948,'Shane Black',1961,NULL),(949,'Cate Blanchett',1969,NULL),(950,'Brenda Blethyn',1946,NULL),(951,'Joan Blondell',1906,1979),(952,'Hart Bochner',1956,NULL),(953,'Peter Bogdanovich',1939,2022),(955,'Ward Bond',1903,1960),(956,'Lisa Bonet',1967,NULL),(957,'Jan de Bont',1943,NULL),(958,'John Boorman',1933,NULL),(959,'Powers Boothe',1948,2017),(960,'Barry Bostwick',1945,NULL),(961,'Timothy Bottoms',1951,NULL),(962,'Carole Bouquet',1957,NULL),(963,'Stephen Boyd',1931,1977),(964,'Charles Boyer',1899,1978),(965,'Danny Boyle',1956,NULL),(966,'Lorraine Bracco',1954,NULL),(967,'Eric Braeden',1941,NULL),(968,'Sonia Braga',1950,NULL),(970,'Jonathan Brandis',1976,2003),(971,'Nicoletta Braschi',1960,NULL),(972,'Tinto Brass',1933,NULL),(973,'Benjamin Bratt',1963,NULL),(974,'Walter Brennan',1894,1974),(975,'Robert Bresson',1901,1999),(976,'Martin Brest',1951,NULL),(977,'Beau Bridges',1941,NULL),(978,'Lloyd Bridges',1913,1998),(979,'Wilford Brimley',1934,2020),(980,'Jim Broadbent',1949,NULL),(981,'James Brolin',1940,NULL),(982,'Josh Brolin',1968,NULL),(983,'Albert Brooks',1947,NULL),(984,'Avery Brooks',1948,NULL),(985,'James L. Brooks',1940,NULL),(986,'Bryan Brown',1947,NULL),(987,'Jim Brown',1936,2023),(988,'Jerry Bruckheimer',1943,NULL),(989,'Yul Brynner',1920,1985),(991,'Geneviève Bujold',1942,NULL),(992,'Billie Burke',1884,1970),(993,'Carol Burnett',1933,NULL),(994,'Raymond Burr',1917,1993),(995,'Ellen Burstyn',1932,NULL),(996,'LeVar Burton',1957,NULL),(997,'Gary Busey',1944,NULL),(998,'Jake Busey',1971,NULL),(999,'Red Buttons',1919,2006),(1001,'James Caan',1940,2022),(1002,'Dean Cain',1966,NULL),(1003,'Simon Callow',1949,NULL),(1004,'Billy Campbell',1959,NULL),(1005,'Jane Campion',1954,NULL),(1006,'John Candy',1950,1994),(1007,'Dyan Cannon',1937,NULL),(1008,'Frank Capra',1897,1991),(1009,'Kate Capshaw',1953,NULL),(1010,'Capucine',1928,1990),(1011,'Irene Cara',1959,2022),(1012,'Claudia Cardinale',1938,NULL),(1014,'Mariah Carey',1969,NULL),(1015,'Robert Carlyle',1961,NULL),(1016,'David Carradine',1936,2009),(1017,'John Carradine',1906,1988),(1018,'Keith Carradine',1949,NULL),(1019,'Robert Carradine',1954,NULL),(1020,'Katrin Cartlidge',1961,2002),(1021,'Veronica Cartwright',1949,NULL),(1022,'Dana Carvey',1955,NULL),(1023,'John Cassavetes',1929,1989),(1024,'Nick Cassavetes',1959,NULL),(1025,'Seymour Cassel',1935,2019),(1026,'Joanna Cassidy',NULL,NULL),(1028,'Maxwell Caulfield',1959,NULL),(1029,'Jim Caviezel',1968,NULL),(1030,'John Cazale',1935,1978),(1031,'Claude Chabrol',1930,2010),(1032,'Marilyn Chambers',1952,2009),(1033,'Lon Chaney Jr.',1906,1973),(1034,'Rosalind Chao',NULL,NULL),(1035,'Ben Chaplin',1970,NULL),(1036,'Geraldine Chaplin',1944,NULL),(1037,'Graham Chapman',1941,1989),(1038,'Josh Charles',1971,NULL),(1040,'Joan Chen',1961,NULL),(1041,'Maggie Cheung',1964,NULL),(1042,'Lois Chiles',1947,NULL),(1043,'Anna Chlumsky',1980,NULL),(1044,'Rae Dawn Chong',1961,NULL),(1045,'Tommy Chong',1938,NULL),(1046,'Julie Christie',1940,NULL),(1047,'Michael Cimino',1939,2016),(1049,'Jill Clayburgh',1944,2010),(1050,'Montgomery Clift',1920,1966),(1053,'Ethan Coen',1957,NULL),(1054,'Joel Coen',1954,NULL),(1055,'Claudette Colbert',1903,1996),(1056,'Dabney Coleman',1932,NULL),(1057,'Toni Collette',1972,NULL),(1058,'Joan Collins',1933,NULL),(1059,'Robbie Coltrane',1950,2022),(1060,'Chris Columbus',1958,NULL),(1062,'Jeffrey Combs',1954,NULL),(1063,'Jeff Conaway',1950,2011),(1065,'Harry Connick Jr.',1967,NULL),(1067,'Jackie Coogan',1914,1984),(1068,'Sofia Coppola',1971,NULL),(1069,'Bud Cort',1948,NULL),(1072,'Joseph Cotten',1905,1994),(1073,'Courteney Cox',1964,NULL),(1074,'Ronny Cox',1938,NULL),(1075,'Peter Coyote',1941,NULL),(1076,'Joan Crawford',1906,1977),(1077,'Richard Crenna',1926,2003),(1078,'Bing Crosby',1903,1977),(1079,'Scatman Crothers',1910,1986),(1080,'Lindsay Crouse',1948,NULL),(1081,'Cameron Crowe',1957,NULL),(1082,'Billy Crudup',1968,NULL),(1083,'Jon Cryer',1965,NULL),(1084,'Ice Cube',1969,NULL),(1085,'Kieran Culkin',1982,NULL),(1086,'Alan Cumming',1965,NULL),(1087,'Lee Curreri',1961,NULL),(1088,'Peter Cushing',1913,1994),(1089,'Henry Czerny',1959,NULL),(1090,'Joe D\'Amato',1936,1999),(1092,'Mark Dacascos',1964,NULL),(1093,'John Dahl',1956,NULL),(1094,'Roald Dahl',1916,1990),(1095,'Béatrice Dalle',1964,NULL),(1096,'Timothy Dalton',1946,NULL),(1097,'Charles Dance',1946,NULL),(1098,'Rodney Dangerfield',1921,2004),(1099,'Jeff Daniels',1955,NULL),(1100,'Blythe Danner',1943,NULL),(1101,'Ted Danson',1947,NULL),(1102,'Joe Dante',1946,NULL),(1103,'Tony Danza',1951,NULL),(1104,'Frank Darabont',1959,NULL),(1105,'Linda Darnell',1923,1965),(1107,'Stacey Dash',1967,NULL),(1108,'Robert Davi',1951,NULL),(1109,'Jaye Davidson',1968,NULL),(1110,'Embeth Davidtz',1965,NULL),(1111,'Jeremy Davies',1969,NULL),(1112,'Andrew Davis',1946,NULL),(1113,'Brad Davis',1949,1991),(1114,'Judy Davis',1955,NULL),(1115,'Ossie Davis',1917,2005),(1116,'Warwick Davis',1970,NULL),(1117,'Bruce Davison',1946,NULL),(1118,'Pam Dawber',1951,NULL),(1119,'Yvonne De Carlo',1922,2007),(1120,'Vittorio De Sica',1901,1974),(1121,'Brandon De Wilde',1942,1972),(1122,'Ellen DeGeneres',1958,NULL),(1123,'Dom DeLuise',1933,2009),(1124,'Cecil B. DeMille',1881,1959),(1125,'Benicio Del Toro',1967,NULL),(1127,'Dana Delany',NULL,NULL),(1128,'Alain Delon',1935,NULL),(1129,'Jonathan Demme',1944,2017),(1130,'Ted Demme',1963,2002),(1131,'Patrick Dempsey',1966,NULL),(1132,'Judi Dench',1934,NULL),(1133,'Brian Dennehy',1938,2020),(1135,'John Derek',1926,1998),(1136,'Bruce Dern',1936,NULL),(1137,'William Devane',1939,NULL),(1138,'Susan Dey',1952,NULL),(1140,'Philip K. Dick',1928,1982),(1141,'Angie Dickinson',1931,NULL),(1142,'Uschi Digard',1948,NULL),(1143,'Kevin Dillon',1965,NULL),(1145,'Divine',1945,1988),(1147,'Shannen Doherty',1971,NULL),(1149,'Richard Donner',1930,2021),(1150,'James Doohan',1920,2005),(1151,'Stephen Dorff',1973,NULL),(1152,'Illeana Douglas',1961,NULL),(1153,'Lesley-Anne Down',1954,NULL),(1156,'Olympia Dukakis',1931,2021),(1157,'Patty Duke',1946,2016),(1158,'Keir Dullea',1936,NULL),(1159,'Faye Dunaway',1941,NULL),(1162,'Griffin Dunne',1955,NULL),(1164,'Charles Durning',1923,2012),(1165,'Charles S. Dutton',1951,NULL),(1166,'James Duval',1972,NULL),(1167,'Shelley Duvall',1949,NULL),(1168,'Bob Dylan',1941,NULL),(1169,'George Dzundza',1945,NULL),(1170,'Roger Ebert',1942,2013),(1171,'Buddy Ebsen',1908,2003),(1172,'Christopher Eccleston',1964,NULL),(1173,'Aaron Eckhart',1968,NULL),(1174,'Barbara Eden',NULL,NULL),(1175,'Blake Edwards',1922,2010),(1176,'Nicole Eggert',1972,NULL),(1177,'Chris Eigeman',1965,NULL),(1178,'Sergei Eisenstein',1898,1948),(1179,'Anita Ekberg',1931,2015),(1180,'Britt Ekland',1942,NULL),(1181,'Jack Elam',1920,2003),(1182,'Carmen Electra',1972,NULL),(1184,'Jenna Elfman',1971,NULL),(1185,'Hector Elizondo',1936,NULL),(1186,'Denholm Elliott',1922,1992),(1187,'Noah Emmerich',1965,NULL),(1188,'Nora Ephron',1941,2012),(1189,'Gabriel Yared',1949,NULL),(1191,'Adam Sandler',1966,NULL),(1193,'Shelley Fabares',1944,NULL),(1194,'Jeff Fahey',1952,NULL),(1195,'Douglas Fairbanks Jr.',1909,2000),(1196,'Douglas Fairbanks',1883,1939),(1197,'Anna Falchi',1972,NULL),(1198,'Debrah Farentino',1959,NULL),(1200,'Gary Farmer',1953,NULL),(1201,'Mia Farrow',1945,NULL),(1202,'Rainer Werner Fassbinder',1945,1982),(1203,'William Faulkner',1897,1962),(1204,'Marty Feldman',1934,1982),(1205,'Norman Fell',1924,1998),(1206,'Abel Ferrara',1951,NULL),(1207,'José Ferrer',1912,1992),(1208,'Miguel Ferrer',1955,2017),(1209,'William Fichtner',1956,NULL),(1210,'Chelsea Field',1957,NULL),(1211,'W.C. Fields',1880,1946),(1212,'Joseph Fiennes',1970,NULL),(1213,'Harvey Fierstein',1954,NULL),(1214,'Mike Figgis',1948,NULL),(1215,'Albert Finney',1936,2019),(1216,'Tara Fitzgerald',1967,NULL),(1217,'Fionnula Flanagan',1941,NULL),(1218,'Sean Patrick Flanery',1965,NULL),(1219,'Gary Fleder',1965,NULL),(1220,'Ian Fleming',1908,1964),(1221,'Louise Fletcher',1934,2022),(1222,'Calista Flockhart',1964,NULL),(1223,'Lara Flynn Boyle',1970,NULL),(1224,'Errol Flynn',1909,1959),(1226,'James Foley',1953,NULL),(1227,'Megan Follows',1968,NULL),(1228,'Peter Fonda',1940,2019),(1229,'Glenn Ford',1916,2006),(1231,'Claire Forlani',1971,NULL),(1232,'Milos Forman',1932,2018),(1233,'Robert Forster',1941,2019),(1234,'John Forsythe',1918,2010),(1235,'William Forsythe',1955,NULL),(1236,'Meg Foster',1948,NULL),(1238,'Jesús Franco',1930,2013),(1239,'John Frankenheimer',1930,2002),(1240,'Dennis Franz',1944,NULL),(1241,'Stephen Frears',1941,NULL),(1242,'Matt Frewer',1958,NULL),(1243,'William Friedkin',1935,2023),(1244,'Sadie Frost',1965,NULL),(1246,'Dan Futterman',1967,NULL),(1247,'Eva Gabor',1919,1995),(1249,'Monique Gabrielle',1962,NULL),(1250,'Charlotte Gainsbourg',1971,NULL),(1251,'Peter Gallagher',1955,NULL),(1252,'Vincent Gallo',1961,NULL),(1254,'James Gandolfini',1961,2013),(1255,'Victor Garber',1949,NULL),(1256,'Greta Garbo',1905,1990),(1257,'Ava Gardner',1922,1990),(1258,'James Garner',1928,2014),(1260,'John Gavin',1931,2018),(1261,'Rebecca Gayheart',1971,NULL),(1262,'Ben Gazzara',1930,2012),(1263,'Jason Gedrick',1965,NULL),(1264,'Sarah Michelle Gellar',1977,NULL),(1265,'Susan George',1950,NULL),(1266,'Gil Gerard',1943,NULL),(1267,'Balthazar Getty',1975,NULL),(1268,'Estelle Getty',1923,2008),(1269,'Cynthia Gibb',1963,NULL),(1270,'Brian Gibson',1944,2004),(1272,'Annabeth Gish',1971,NULL),(1273,'Lillian Gish',1893,1993),(1274,'Paul Michael Glaser',1943,NULL),(1275,'Philip Glass',1937,NULL),(1276,'Jackie Gleason',1916,1987),(1277,'Scott Glenn',1939,NULL),(1278,'John Glover',1944,NULL),(1279,'William Goldman',1931,2018),(1281,'Bobcat Goldthwait',1962,NULL),(1282,'Tony Goldwyn',1960,NULL),(1283,'Louis Gossett Jr.',1936,NULL),(1284,'Michael Gough',1916,2011),(1285,'Elliott Gould',1938,NULL),(1286,'Elizabeth Gracen',1961,NULL),(1287,'Heather Graham',1970,NULL),(1288,'Kelsey Grammer',1955,NULL),(1289,'Stewart Granger',1913,1993),(1290,'Richard E. Grant',1957,NULL),(1291,'Rupert Graves',1963,NULL),(1292,'Erin Gray',1950,NULL),(1293,'Seth Green',1974,NULL),(1294,'Graham Greene',1904,1991),(1295,'Graham Greene',1952,NULL),(1296,'Lorne Greene',1915,1987),(1297,'Joel Grey',1932,NULL),(1299,'Thomas Ian Griffith',1962,NULL),(1300,'John Grisham',1955,NULL),(1301,'Charles Grodin',1935,2021),(1302,'Christopher Guest',1948,NULL),(1303,'Carla Gugino',1971,NULL),(1305,'Lukas Haas',1976,NULL),(1306,'Larry Hagman',1931,2012),(1309,'Anthony Michael Hall',1968,NULL),(1310,'Kevin Peter Hall',1955,1991),(1311,'Philip Baker Hall',1931,2022),(1312,'Geri Horner',1972,NULL),(1313,'George Hamilton',1939,NULL),(1314,'John Hannah',1962,NULL),(1315,'Marcia Gay Harden',1959,NULL),(1316,'Oliver Hardy',1892,1957),(1317,'Renny Harlin',1959,NULL),(1318,'Jean Harlow',1911,1937),(1319,'Mark Harmon',1951,NULL),(1321,'Richard Harris',1930,2002),(1322,'Rex Harrison',1908,1990),(1323,'Debbie Harry',1945,NULL),(1324,'Ian Hart',1964,NULL),(1325,'Hal Hartley',1959,NULL),(1326,'Josh Hartnett',1978,NULL),(1327,'David Hasselhoff',1952,NULL),(1328,'Howard Hawks',1896,1977),(1329,'Nigel Hawthorne',1929,2001),(1330,'Sterling Hayden',1916,1986),(1331,'Todd Haynes',1961,NULL),(1332,'Robert Hays',1947,NULL),(1333,'Susan Hayward',1917,1975),(1334,'John Heard',1946,2017),(1335,'Tippi Hedren',1930,NULL),(1336,'Van Heflin',1908,1971),(1337,'Katherine Heigl',1978,NULL),(1338,'Brian Helgeland',NULL,NULL),(1339,'Marg Helgenberger',1958,NULL),(1340,'Katherine Helmond',1929,2019),(1343,'Carrie Henn',1976,NULL),(1344,'Gregg Henry',1952,NULL),(1345,'Jim Henson',1936,1990),(1346,'Edward Herrmann',1943,2014),(1347,'Barbara Hershey',1948,NULL),(1348,'Werner Herzog',1942,NULL),(1349,'Jennifer Love Hewitt',1979,NULL),(1350,'Benny Hill',1924,1992),(1351,'George Roy Hill',1921,2002),(1352,'Terence Hill',1939,NULL),(1353,'Walter Hill',1942,NULL),(1354,'Ciarán Hinds',1953,NULL),(1355,'Michael Hoffman',1956,NULL),(1357,'Paul Hogan',1939,NULL),(1358,'Hal Holbrook',1925,2021),(1359,'Sterling Holloway',1905,1992),(1361,'Tobe Hooper',1943,2017),(1362,'Bob Hope',1903,2003),(1363,'Jane Horrocks',1964,NULL),(1364,'Bob Hoskins',1942,2014),(1365,'Whitney Houston',1963,2012),(1366,'Leslie Howard',1893,1943),(1367,'C. Thomas Howell',1966,NULL),(1368,'Ernie Hudson',1945,NULL),(1369,'Rock Hudson',1925,1985),(1370,'Finola Hughes',1959,NULL),(1371,'Tom Hulce',1953,NULL),(1372,'Bonnie Hunt',1961,NULL),(1373,'Linda Hunt',1945,NULL),(1374,'Jeffrey Hunter',1926,1969),(1375,'Kim Hunter',1922,2002),(1376,'Isabelle Huppert',1953,NULL),(1377,'Olivia Hussey',1951,NULL),(1378,'Anjelica Huston',1951,NULL),(1379,'John Huston',1906,1987),(1380,'Jim Hutton',1934,1979),(1381,'Lauren Hutton',1943,NULL),(1382,'Peter Hyams',1943,NULL),(1383,'David Hyde Pierce',1959,NULL),(1384,'Ice-T',1958,NULL),(1385,'Eric Idle',1943,NULL),(1386,'Natalie Imbruglia',1975,NULL),(1388,'Amy Irving',1953,NULL),(1389,'Chris Isaak',1956,NULL),(1390,'Janet Jackson',1966,NULL),(1391,'Michael Jackson',1958,2009),(1392,'Peter Jackson',1961,NULL),(1393,'Irène Jacob',1966,NULL),(1394,'Derek Jacobi',1938,NULL),(1395,'Richard Jaeckel',1926,1997),(1396,'Mick Jagger',1943,NULL),(1397,'Brion James',1945,1999),(1398,'Jenna Jameson',1974,NULL),(1399,'Marianne Jean-Baptiste',1967,NULL),(1400,'Michelle Johnson',1965,NULL),(1401,'Angelina Jolie',1975,NULL),(1402,'Terry Jones',1942,2020),(1403,'Neil Jordan',1950,NULL),(1404,'Madeline Kahn',1942,1999),(1405,'Janusz Kaminski',1959,NULL),(1406,'Carol Kane',1952,NULL),(1408,'Shekhar Kapur',1945,NULL),(1409,'Tchéky Karyo',1953,NULL),(1410,'Lawrence Kasdan',1949,NULL),(1413,'Julie Kavner',1950,NULL),(1414,'Danny Kaye',1911,1987),(1415,'Elia Kazan',1909,2003),(1416,'Catherine Keener',1959,NULL),(1417,'Brian Keith',1921,1997),(1418,'David Keith',1954,NULL),(1419,'Sally Kellerman',1937,2022),(1420,'DeForest Kelley',1920,1999),(1421,'George Kennedy',1925,2016),(1423,'Richard Kiel',1939,2014),(1424,'Udo Kier',NULL,NULL),(1425,'Krzysztof Kieslowski',1941,1996),(1426,'Ben Kingsley',1943,NULL),(1427,'Greg Kinnear',1963,NULL),(1428,'Klaus Kinski',1926,1991),(1429,'Takeshi Kitano',1947,NULL),(1431,'Wayne Knight',1955,NULL),(1432,'Charlie Korsmo',1978,NULL),(1433,'Yaphet Kotto',1939,2021),(1434,'Kris Kristofferson',1936,NULL),(1435,'Lisa Kudrow',1963,NULL),(1436,'Swoosie Kurtz',1944,NULL),(1437,'Emir Kusturica',1954,NULL),(1438,'Neil LaBute',1963,NULL),(1439,'Anthony LaPaglia',1959,NULL),(1440,'Cheryl Ladd',1951,NULL),(1441,'Christine Lahti',1950,NULL),(1442,'Ricki Lake',1968,NULL),(1443,'Hedy Lamarr',1914,2000),(1444,'Lorenzo Lamas',1958,NULL),(1445,'Martin Landau',1928,2017),(1447,'Nathan Lane',1956,NULL),(1448,'Jessica Lange',1949,NULL),(1449,'Frank Langella',1938,NULL),(1450,'Angela Lansbury',1925,2022),(1451,'Queen Latifah',1970,NULL),(1452,'Charles Laughton',1899,1962),(1453,'Piper Laurie',1932,NULL),(1454,'Martin Lawrence',1965,NULL),(1455,'Matt LeBlanc',1967,NULL),(1456,'Kelly LeBrock',1960,NULL),(1457,'James Le Gros',1962,NULL),(1458,'Cloris Leachman',1926,2021),(1459,'Denis Leary',1957,NULL),(1460,'Mimi Leder',1952,NULL),(1461,'Virginie Ledoyen',1976,NULL),(1462,'Jason Scott Lee',1966,NULL),(1463,'Janet Leigh',1927,2004),(1465,'Elmore Leonard',1925,2013),(1466,'Sergio Leone',1929,1989),(1467,'Jared Leto',1971,NULL),(1469,'Barry Levinson',1942,NULL),(1470,'Charlotte Lewis',1967,NULL),(1471,'Jerry Lewis',1926,2017),(1472,'Jet Li',1963,NULL),(1473,'Laura Linney',1964,NULL),(1474,'Tom Lister Jr.',1958,2020),(1475,'John Lithgow',1945,NULL),(1476,'Cleavon Little',1939,1992),(1477,'Robyn Lively',1972,NULL),(1478,'June Lockhart',1925,NULL),(1479,'Carole Lombard',1908,1942),(1480,'Shelley Long',1949,NULL),(1483,'Linda Lovelace',1949,2002),(1484,'Jon Lovitz',1957,NULL),(1485,'Myrna Loy',1905,1993),(1486,'Sidney Lumet',1924,2011),(1487,'John Lynch',1961,NULL),(1488,'Kelly Lynch',1959,NULL),(1490,'Adrian Lyne',1941,NULL),(1491,'Melanie Lynskey',1977,NULL),(1492,'Kyle MacLachlan',1959,NULL),(1493,'Peter MacNicol',1954,NULL),(1494,'Ralph Macchio',1961,NULL),(1495,'Patrick Macnee',1922,2015),(1496,'Amy Madigan',1950,NULL),(1497,'Tobey Maguire',1975,NULL),(1498,'John Mahoney',1940,2018),(1499,'Tina Majorino',1985,NULL),(1500,'Karl Malden',1912,2009),(1501,'Louis Malle',1932,1995),(1502,'Luis Mandoki',1954,NULL),(1504,'Marilyn Manson',1969,NULL),(1505,'Joe Mantegna',1947,NULL),(1506,'Jane March',1973,NULL),(1507,'Cheech Marin',1946,NULL),(1508,'Penny Marshall',1943,2018),(1509,'Dean Martin',1917,1995),(1510,'Strother Martin',1919,1980),(1511,'Lee Marvin',1924,1987),(1512,'Mary Elizabeth Mastrantonio',1958,NULL),(1513,'Tim Matheson',1947,NULL),(1514,'Victor Mature',1913,1999),(1515,'Joseph Mazzello',1983,NULL),(1517,'Catherine McCormack',1972,NULL),(1518,'Dylan McDermott',1961,NULL),(1520,'Christopher McDonald',1955,NULL),(1521,'Mary McDonnell',1952,NULL),(1522,'Roddy McDowall',1928,1998),(1523,'Natascha McElhone',1969,NULL),(1524,'Paul McGann',1959,NULL),(1525,'John C. McGinley',1959,NULL),(1526,'Patrick McGoohan',1928,2009),(1527,'Elizabeth McGovern',1961,NULL),(1528,'Don McKellar',1963,NULL),(1530,'William McNamara',NULL,NULL),(1531,'Kristy McNichol',1962,NULL),(1532,'John McTiernan',1951,NULL),(1533,'Meat Loaf',1947,2022),(1534,'Michelle Meyrink',1962,NULL),(1536,'Toshirô Mifune',1920,1997),(1537,'Ray Milland',1907,1986),(1538,'Jonny Lee Miller',1972,NULL),(1539,'Hayley Mills',1946,NULL),(1541,'Kylie Minogue',1968,NULL),(1542,'Jay Mohr',1970,NULL),(1543,'Gretchen Mol',1972,NULL),(1544,'Ricardo Montalban',1920,2009),(1545,'Dudley Moore',1935,2002),(1546,'Mary Tyler Moore',1936,2017),(1547,'Agnes Moorehead',1900,1974),(1548,'Rick Moranis',1953,NULL),(1549,'Rita Moreno',1931,NULL),(1550,'Cathy Moriarty',1960,NULL),(1552,'Pat Morita',1932,2005),(1553,'Ennio Morricone',1928,2020),(1555,'Rob Morrow',1962,NULL),(1556,'David Morse',1953,NULL),(1557,'Viggo Mortensen',1958,NULL),(1559,'Audie Murphy',1924,1971),(1560,'Ornella Muti',1955,NULL),(1562,'Kathy Najimy',1957,NULL),(1563,'Kitten Natividad',1948,2022),(1565,'Mike Newell',1942,NULL),(1566,'Mike Nichols',1931,2014),(1567,'Connie Nielsen',1965,NULL),(1569,'Chuck Norris',1940,NULL),(1570,'Edward Norton',1969,NULL),(1571,'Kim Novak',1933,NULL),(1572,'Danny Nucci',1968,NULL),(1573,'Catherine O\'Hara',1954,NULL),(1574,'Michael O\'Keefe',1955,NULL),(1575,'Tatum O\'Neal',1963,NULL),(1576,'Heather O\'Rourke',1975,1988),(1577,'Maureen O\'Sullivan',1911,1998),(1578,'Annette O\'Toole',1952,NULL),(1579,'Edward James Olmos',1947,NULL),(1580,'Ashley Olsen',1986,NULL),(1581,'Mary-Kate Olsen',1986,NULL),(1583,'Jerry Orbach',1935,2004),(1584,'Miranda Otto',1967,NULL),(1586,'Joanna Pacula',1957,NULL),(1587,'Alan J. Pakula',1928,1998),(1588,'Jack Palance',1919,2006),(1589,'Michael Palin',1943,NULL),(1590,'Chazz Palminteri',1952,NULL),(1592,'Joe Pantoliano',1951,NULL),(1593,'Anna Paquin',1982,NULL),(1594,'Anne Parillaud',1960,NULL),(1595,'Michael Paré',1958,NULL),(1596,'Pier Paolo Pasolini',1922,1975),(1597,'Mandy Patinkin',1952,NULL),(1598,'Robert Patrick',1958,NULL),(1599,'Will Patton',1954,NULL),(1600,'Adrian Paul',1959,NULL),(1601,'David Paymer',1954,NULL),(1602,'Guy Pearce',1967,NULL),(1603,'Sam Peckinpah',1925,1984),(1604,'Nia Peeples',1961,NULL),(1605,'Amanda Peet',1972,NULL),(1606,'Chris Penn',1965,2006),(1607,'Sydney Penny',1971,NULL),(1608,'Barry Pepper',1970,NULL),(1609,'Rosie Perez',1964,NULL),(1610,'Elizabeth Perkins',1960,NULL),(1612,'Matthew Perry',1969,NULL),(1613,'Bernadette Peters',1948,NULL),(1614,'Lori Petty',1963,NULL),(1615,'Elizabeth Peña',1959,2014),(1616,'Mekhi Phifer',1974,NULL),(1617,'Lou Diamond Phillips',1962,NULL),(1618,'Joaquin Phoenix',1974,NULL),(1620,'Slim Pickens',1919,1983),(1622,'Danny Pintauro',1976,NULL),(1623,'Maria Pitillo',1966,NULL),(1624,'Oliver Platt',1960,NULL),(1625,'Amanda Plummer',1957,NULL),(1626,'Christopher Plummer',1929,2021),(1627,'Sidney Poitier',1927,2022),(1628,'Sydney Pollack',1934,2008),(1629,'Kevin Pollak',1957,NULL),(1631,'Sarah Polley',1979,NULL),(1632,'Teri Polo',1969,NULL),(1633,'Annie Potts',1952,NULL),(1634,'CCH Pounder',1952,NULL),(1635,'William Powell',1892,1984),(1636,'Priscilla Presley',1945,NULL),(1637,'Vincent Price',1911,1993),(1638,'Jürgen Prochnow',1941,NULL),(1639,'Alex Proyas',1963,NULL),(1640,'Richard Pryor',1940,2005),(1641,'Vincent Perez',1964,NULL),(1642,'Randy Quaid',1950,NULL),(1644,'Aidan Quinn',1959,NULL),(1647,'Claude Rains',1889,1967),(1648,'Charlotte Rampling',1946,NULL),(1649,'Anne Ramsey',1929,1988),(1650,'Michael Rapaport',1970,NULL),(1651,'Basil Rathbone',1892,1967),(1652,'John Ratzenberger',1947,NULL),(1653,'Stephen Rea',1946,NULL),(1654,'Ronald Reagan',1911,2004),(1655,'Lynn Redgrave',1943,2010),(1656,'Donna Reed',1921,1986),(1657,'Oliver Reed',1938,1999),(1659,'Christopher Reeve',1952,2004),(1660,'George Reeves',1914,1959),(1661,'Rob Reiner',1947,NULL),(1662,'Judge Reinhold',NULL,NULL),(1663,'Paul Reiser',1956,NULL),(1664,'James Remar',1953,NULL),(1665,'Lee Remick',1935,1991),(1666,'Debbie Reynolds',1932,2016),(1667,'Jonathan Rhys Meyers',1977,NULL),(1669,'Miranda Richardson',1958,NULL),(1670,'Natasha Richardson',1963,2009),(1671,'Diana Rigg',1938,2020),(1673,'Jason Robards',1922,2000),(1674,'Chris Rock',1965,NULL),(1675,'Robert Rodriguez',1968,NULL),(1676,'Nicolas Roeg',1928,2018),(1677,'Ginger Rogers',1911,1995),(1678,'Roy Rogers',1911,1998),(1679,'Mark Rolston',1956,NULL),(1680,'Robert Romanus',1956,NULL),(1681,'George A. Romero',1940,2017),(1682,'Mickey Rooney',1920,2014),(1683,'Roseanne Barr',1952,NULL),(1684,'Katharine Ross',1940,NULL),(1685,'Rick Rossovich',1957,NULL),(1686,'Cynthia Rothrock',1957,NULL),(1687,'Gena Rowlands',1930,NULL),(1688,'Alan Ruck',1956,NULL),(1689,'Mercedes Ruehl',1948,NULL),(1691,'Geoffrey Rush',1951,NULL),(1692,'Ken Russell',1927,2011),(1693,'Eva Marie Saint',1924,NULL),(1695,'George Sanders',1906,1972),(1696,'Julian Sands',1958,2023),(1697,'Chris Sarandon',1942,NULL),(1698,'John Savage',NULL,NULL),(1699,'Telly Savalas',1922,1994),(1700,'Nancy Savoca',1959,NULL),(1701,'Devon Sawa',1978,NULL),(1702,'Roy Scheider',1932,2008),(1703,'Maximilian Schell',1930,2014),(1705,'Rob Schneider',1963,NULL),(1706,'Michael Schoeffling',1960,NULL),(1707,'Paul Schrader',1946,NULL),(1708,'Joel Schumacher',1939,2020),(1709,'Til Schweiger',1963,NULL),(1710,'David Schwimmer',1966,NULL),(1711,'Annabella Sciorra',1960,NULL),(1713,'Izabella Scorupco',1970,NULL),(1714,'Campbell Scott',1961,NULL),(1715,'George C. Scott',1927,1999),(1716,'Tony Scott',1944,2012),(1717,'Kyle Secor',1957,NULL),(1718,'Kyra Sedgwick',1965,NULL),(1719,'George Segal',1934,2021),(1721,'Chloë Sevigny',NULL,NULL),(1722,'Rufus Sewell',1967,NULL),(1723,'Tom Shadyac',1958,NULL),(1724,'Tony Shalhoub',1953,NULL),(1725,'Omar Sharif',1932,2015),(1726,'Helen Shaver',1951,NULL),(1727,'Robert Shaw',1927,1978),(1728,'Wallace Shawn',1943,NULL),(1729,'Craig Sheffer',1960,NULL),(1730,'Deborah Shelton',1948,NULL),(1731,'Sam Shepard',1943,2017),(1732,'Cybill Shepherd',1950,NULL),(1733,'Nicollette Sheridan',1963,NULL),(1735,'Talia Shire',1946,NULL),(1736,'Pauly Shore',1968,NULL),(1737,'Martin Short',1950,NULL),(1738,'Jonathan Silverman',1966,NULL),(1739,'Jean Simmons',1929,2010),(1740,'O.J. Simpson',1947,NULL),(1741,'Bryan Singer',1965,NULL),(1744,'Tom Sizemore',1961,2023),(1745,'Stellan Skarsgård',1951,NULL),(1746,'Ione Skye',1970,NULL),(1747,'Charles Martin Smith',1953,NULL),(1748,'Kurtwood Smith',1943,NULL),(1749,'Maggie Smith',1934,NULL),(1750,'Madolyn Smith Osborne',1957,NULL),(1751,'Jimmy Smits',1955,NULL),(1752,'Steven Soderbergh',1963,NULL),(1753,'P.J. Soles',1950,NULL),(1754,'Todd Solondz',1959,NULL),(1756,'Barry Sonnenfeld',1953,NULL),(1757,'Kevin Sorbo',1958,NULL),(1758,'Timothy Spall',1957,NULL),(1759,'Vincent Spano',NULL,NULL),(1760,'Tori Spelling',1973,NULL),(1762,'Jill St. John',1940,NULL),(1763,'Nick Stahl',1979,NULL),(1764,'John Stamos',1963,NULL),(1765,'Harry Dean Stanton',1926,2017),(1766,'Barbara Stanwyck',1907,1990),(1767,'Imelda Staunton',1956,NULL),(1768,'Rod Steiger',1925,2002),(1770,'Fisher Stevens',1963,NULL),(1771,'Stella Stevens',1938,2023),(1772,'Patrick Stewart',1940,NULL),(1773,'David Ogden Stiers',1942,2018),(1774,'Ben Stiller',1965,NULL),(1775,'Whit Stillman',1952,NULL),(1777,'Dean Stockwell',1936,2021),(1778,'Matt Stone',1971,NULL),(1779,'Tom Stoppard',1937,NULL),(1780,'Peter Stormare',1953,NULL),(1781,'Julie Strain',1962,2021),(1783,'Sally Struthers',1947,NULL),(1784,'Gloria Stuart',1910,2010),(1785,'Kristy Swanson',1969,NULL),(1787,'Jeffrey Tambor',1944,NULL),(1788,'Jessica Tandy',1909,1994),(1789,'Andrei Tarkovsky',1932,1986),(1790,'Sharon Tate',1943,1969),(1791,'Robert Taylor',1911,1969),(1792,'Rod Taylor',1930,2015),(1794,'Henry Thomas',1971,NULL),(1795,'Jonathan Taylor Thomas',1981,NULL),(1796,'Richard Thomas',1951,NULL),(1797,'Rachel Ticotin',1958,NULL),(1798,'Kevin Tighe',1944,NULL),(1799,'John Toll',1952,NULL),(1800,'Rip Torn',1931,2019),(1801,'Robert Towne',1934,NULL),(1802,'Nancy Travis',1961,NULL),(1803,'Danny Trejo',1944,NULL),(1804,'Stanley Tucci',1960,NULL),(1805,'Lana Turner',1921,1995),(1806,'John Turturro',1957,NULL),(1807,'Cicely Tyson',1924,2021),(1808,'Tracey Ullman',1959,NULL),(1809,'Jay Underwood',1968,NULL),(1810,'Robert Urich',1946,2002),(1811,'Peter Ustinov',1921,2004),(1812,'Lee Van Cleef',1925,1989),(1813,'Dick Van Dyke',1925,NULL),(1814,'Gus Van Sant',1952,NULL),(1815,'Jim Varney',1949,2000),(1816,'Robert Vaughn',1932,2016),(1817,'Reginald VelJohnson',1952,NULL),(1820,'Abe Vigoda',1921,2016),(1821,'Jan-Michael Vincent',1944,2019),(1822,'Robert Wagner',1930,NULL),(1823,'Tom Waits',1949,NULL),(1825,'Andrew Kevin Walker',1964,NULL),(1826,'M. Emmet Walsh',1935,NULL),(1827,'Ray Walston',1914,2001),(1828,'Melora Walters',1960,NULL),(1829,'Rachel Ward',1957,NULL),(1831,'David Warner',1941,2022),(1832,'Sam Waterston',1940,NULL),(1833,'Emily Watson',1967,NULL),(1834,'Damon Wayans',1960,NULL),(1835,'Carl Weathers',1948,NULL),(1836,'Steven Weber',1961,NULL),(1837,'Peter Weir',1944,NULL),(1838,'Rachel Weisz',1970,NULL),(1839,'Tuesday Weld',1943,NULL),(1840,'Ming-Na Wen',1963,NULL),(1841,'George Wendt',1948,NULL),(1842,'Adam West',1928,2017),(1843,'James Whale',1889,1957),(1844,'Frank Whaley',1963,NULL),(1845,'Forest Whitaker',1961,NULL),(1847,'Richard Widmark',1914,2008),(1848,'Dianne Wiest',1946,NULL),(1850,'Billy Dee Williams',1937,NULL),(1851,'JoBeth Williams',1948,NULL),(1852,'Treat Williams',1951,2023),(1853,'Vanessa Williams',1963,NULL),(1854,'Rita Wilson',1956,NULL),(1855,'Tom Wilson',1959,NULL),(1856,'Oprah Winfrey',1954,NULL),(1857,'Henry Winkler',1945,NULL),(1858,'Mare Winningham',1959,NULL),(1859,'Shelley Winters',1920,2006),(1860,'Alicia Witt',1975,NULL),(1862,'Mary Woronov',1943,NULL),(1864,'Noah Wyle',1971,NULL),(1865,'Amy Yasbeck',1962,NULL),(1868,'Michael York',1942,NULL),(1870,'Robert Young',1907,1998),(1872,'Steve Zahn',1967,NULL),(1873,'Steven Zaillian',1953,NULL),(1874,'Franco Zeffirelli',1923,2019),(1876,'Catherine Zeta-Jones',1969,NULL),(1877,'Hans Zimmer',1957,NULL),(1878,'David Zucker',1947,NULL),(1879,'Daphne Zuniga',1962,NULL),(1880,'Edward Zwick',1952,NULL),(1881,'Maryam d\'Abo',1960,NULL),(1882,'Olivia d\'Abo',1969,NULL),(1884,'Max von Sydow',1929,2020),(1885,'Lars von Trier',1956,NULL),(1887,'Paul Brickman',1949,NULL),(1889,'Charles Hawtrey',1914,1988),(1891,'Anthony Higgins',1947,NULL),(1895,'Glenn Miller',1904,1944),(1897,'John M. Davis',NULL,NULL),(1899,'Remi Adefarasin',1948,NULL),(1901,'Chantal Akerman',1950,2015),(1902,'Edward Albert',1951,2006),(1903,'Norma Aleandro',1936,NULL),(1904,'Corey Allen',1934,2010),(1907,'Eric Ambler',1909,1998),(1908,'Gilbert M. \'Broncho Billy\' Anderson',1880,1971),(1914,'Adam Ant',1954,NULL),(1915,'Emile Ardolino',1943,1993),(1916,'Arletty',1898,1992),(1918,'Louis Armstrong',1901,1971),(1919,'Peggy Ashcroft',1907,1991),(1920,'Isaac Asimov',1920,1992),(1921,'Paul Attanasio',1959,NULL),(1922,'Jean-Pierre Aumont',1911,2001),(1923,'Margaret Avery',1944,NULL),(1924,'Hoyt Axton',1938,1999),(1926,'Joan Baez',1941,NULL),(1928,'Roy Ward Baker',1916,2010),(1929,'Josiane Balasko',1950,NULL),(1931,'Binnie Barnes',1903,1998),(1932,'Richard Barthelmess',1895,1963),(1935,'Noah Beery',1882,1946),(1937,'Marco Beltrami',1966,NULL),(1938,'Richard Belzer',1944,2023),(1940,'Peter Benchley',1940,2006),(1943,'Marisa Berenson',1947,NULL),(1944,'Edgar Bergen',1903,1978),(1945,'Claude Berri',1934,2009),(1948,'Charles Bickford',1891,1967),(1949,'Andrew Birkin',1945,NULL),(1950,'Steve Bisley',1951,NULL),(1951,'Björk',1965,NULL),(1952,'Rubén Blades',1948,NULL),(1953,'Moritz Bleibtreu',1971,NULL),(1954,'Claire Bloom',1931,NULL),(1958,'Dirk Bogarde',1921,1999),(1960,'Romane Bohringer',1973,NULL),(1961,'Ray Bolger',1904,1987),(1962,'Lizzie Borden',1958,NULL),(1963,'Jesse Borrego',1962,NULL),(1965,'Élodie Bouchez',1973,NULL),(1966,'Clara Bow',1905,1965),(1967,'Peter Boyle',1935,2006),(1969,'Ray Bradbury',1920,2012),(1970,'Klaus Maria Brandauer',1943,NULL),(1971,'Ewen Bremner',1972,NULL),(1972,'Richard Briers',1934,2013),(1975,'Roscoe Lee Browne',1922,2007),(1976,'Horst Buchholz',1933,2003),(1977,'Charles Bukowski',1920,1994),(1978,'Emma Bunton',1976,NULL),(1979,'Tom Burlinson',1956,NULL),(1980,'Carter Burwell',1954,NULL),(1981,'Spring Byington',1886,1971),(1982,'Sebastian Cabot',1918,1977),(1983,'Rory Calhoun',1922,1999),(1986,'Truman Capote',1924,1984),(1987,'Tantoo Cardinal',1950,NULL),(1988,'Marc Caro',1956,NULL),(1989,'Leslie Caron',1931,NULL),(1990,'Elpidia Carrillo',1961,NULL),(1991,'Leo G. Carroll',1886,1972),(1992,'Johnny Carson',1925,2005),(1993,'Vincent Cassel',1966,NULL),(1994,'Michael Caton-Jones',1957,NULL),(1995,'George Chakiris',1932,NULL),(1997,'Patricia Charbonneau',1959,NULL),(1998,'Cyd Charisse',1922,2008),(1999,'Maury Chaykin',1949,2010),(2000,'Leslie Cheung',1956,2003),(2001,'Maurice Chevalier',1888,1972),(2002,'Shin\'ichi Chiba',1939,2021),(2004,'Sarita Choudhury',1966,NULL),(2005,'Agatha Christie',1890,1976),(2006,'Thomas Haden Church',1960,NULL),(2007,'Tom Clancy',1947,2013),(2008,'Eric Clapton',1945,NULL),(2009,'Arthur C. Clarke',1917,2008),(2010,'Christian Clavier',1952,NULL),(2011,'Lee J. Cobb',1911,1976),(2013,'Charles Coburn',1877,1961),(2017,'Richard Conte',1910,1975),(2018,'Tom Conti',1941,NULL),(2020,'Costa-Gavras',1933,NULL),(2021,'Noël Coward',1899,1973),(2022,'Jeanne Crain',1925,2003),(2023,'Matt Craven',1956,NULL),(2024,'Broderick Crawford',1911,1986),(2025,'Hume Cronyn',1911,2003),(2026,'Mary Crosby',1959,NULL),(2027,'Ben Cross',1947,2020),(2030,'George Cukor',1899,1983),(2031,'Michael Curtiz',1886,1962),(2032,'Roger Daltrey',1944,NULL),(2033,'Tyne Daly',1946,NULL),(2034,'Jane Darwell',1879,1967),(2037,'Cliff De Young',1945,NULL),(2038,'Gloria DeHaven',1925,2016),(2039,'Ruby Dee',1922,2014),(2041,'Dean Devlin',1962,NULL),(2042,'Charles Dickens',1812,1870),(2043,'Madhuri Dixit',1967,NULL),(2044,'Roger Donaldson',1945,NULL),(2045,'Stanley Donen',1924,2019),(2046,'Brian Donlevy',1901,1972),(2047,'Diana Dors',1931,1984),(2048,'Melvyn Douglas',1901,1981),(2050,'Irene Dunne',1898,1990),(2051,'Jimmy Durante',1893,1980),(2053,'Dan Duryea',1907,1968),(2056,'Christine Ebersole',1953,NULL),(2057,'Richard Edson',1954,NULL),(2060,'Lisa Eilbacher',1956,NULL),(2062,'Kathryn Erbe',1965,NULL),(2063,'Leif Erickson',1911,1986),(2064,'Giancarlo Esposito',1958,NULL),(2068,'Frances Farmer',1913,1970),(2070,'Richard Farnsworth',1920,2000),(2071,'Will Ferrell',1967,NULL),(2072,'Mel Ferrer',1917,2008),(2073,'Lou Ferrigno',1951,NULL),(2075,'Peter Finch',1916,1977),(2076,'Jason Flemyng',1966,NULL),(2077,'Dexter Fletcher',1966,NULL),(2078,'Frederic Forrest',1936,2023),(2079,'Steve Forrest',1925,2013),(2080,'Bob Fosse',1927,1987),(2081,'Edward Fox',1937,NULL),(2083,'Carl Franklin',1949,NULL),(2084,'Brenda Fricker',1945,NULL),(2085,'Gert Fröbe',1913,1988),(2086,'Lucio Fulci',1927,1996),(2087,'Samuel Fuller',1912,1997),(2088,'Annette Funicello',1942,2013),(2089,'Sidney J. Furie',1933,NULL),(2090,'Zach Galligan',1964,NULL),(2091,'Michael Gambon',1940,NULL),(2092,'John Garfield',1913,1952),(2093,'Greer Garson',1904,1996),(2094,'Vittorio Gassman',1922,2000),(2095,'Will Geer',1902,1978),(2096,'Judy Geeson',1948,NULL),(2097,'Bob Geldof',1951,NULL),(2098,'Laura Gemser',1950,NULL),(2100,'Marie Gillain',1975,NULL),(2101,'Robin Givens',1964,NULL),(2102,'Sharon Gless',1943,NULL),(2103,'Julian Glover',1935,NULL),(2104,'Paulette Goddard',1910,1990),(2105,'Judith Godrèche',1972,NULL),(2106,'Ruth Gordon',1896,1985),(2107,'Betty Grable',1916,1973),(2108,'Gloria Grahame',1923,1981),(2110,'Rodney A. Grant',1959,NULL),(2113,'Sydney Greenstreet',1879,1954),(2114,'Kim Greist',1958,NULL),(2118,'Alan Hale',1892,1950),(2119,'Arsenio Hall',1956,NULL),(2120,'Lasse Hallström',1946,NULL),(2122,'Harry Hamlin',1951,NULL),(2127,'Mariska Hargitay',1964,NULL),(2129,'Gregory Harrison',1950,NULL),(2131,'Laurence Harvey',1928,1973),(2132,'Amy Heckerling',NULL,NULL),(2133,'Ernest Hemingway',1899,1961),(2134,'Paul Henreid',1908,1992),(2136,'Bernard Herrmann',1911,1975),(2137,'Arthur Hiller',1923,2016),(2138,'Gregory Hines',1946,2003),(2139,'Judd Hirsch',1935,NULL),(2140,'Agnieszka Holland',1948,NULL),(2141,'Celeste Holm',1917,2012),(2142,'Sandrine Holt',NULL,NULL),(2143,'Edward Everett Horton',1886,1970),(2144,'John Houseman',1902,1988),(2145,'Trevor Howard',1913,1988),(2146,'James Wong Howe',1899,1976),(2147,'Tab Hunter',1931,2018),(2148,'Mary Beth Hurt',1946,NULL),(2149,'Betty Hutton',1921,2007),(2153,'Jack Cardiff',1914,2009),(2154,'Alfred Abel',1879,1937),(2155,'Edward M. Abroms',1935,2018),(2159,'Alejandro Agresti',1961,NULL),(2162,'Henri Alekan',1909,2001),(2164,'Irving Allen',1905,1987),(2165,'Marc Allégret',1900,1973),(2166,'John A. Alonzo',1934,2001),(2168,'Willeke van Ammelrooy',1944,NULL),(2170,'Ashok Amritraj',1957,NULL),(2173,'Laurie Anderson',1947,NULL),(2174,'Yves Angelo',1956,NULL),(2175,'Ken Annakin',1914,2009),(2178,'Alexandre Arcady',1947,NULL),(2179,'George Archainbaud',1890,1959),(2180,'Francesca Archibugi',1960,NULL),(2185,'Malcolm Arnold',1921,2006),(2187,'Giorgos Arvanitis',1941,NULL),(2188,'Dorothy Arzner',1897,1979),(2191,'Jacques Audiard',1952,NULL),(2192,'Michel Audiard',1920,1985),(2193,'Claude Autant-Lara',1901,2000),(2194,'Pupi Avati',1938,NULL),(2196,'Gabriel Axel',1918,2014),(2197,'William Axt',1888,1959),(2198,'Charles Aznavour',1924,2018),(2199,'Hector Babenco',1946,2016),(2201,'John Debney',1956,NULL),(2202,'Roy Webb',1888,1982),(2206,'Kevin Brownlow',1938,NULL),(2211,'Christopher DeFaria',1959,NULL),(2216,'Yves Robert',1920,2002),(2217,'Mychael Danna',1958,NULL),(2218,'Claude Miller',1942,2012),(2226,'Misha Segal',1943,NULL),(2227,'John Frizzell',1966,NULL),(2228,'Nicholas Musuraca',1892,1975),(2230,'Carlos Gallardo',NULL,NULL),(2231,'Gian Maria Volontè',1933,1994),(2233,'Erich von Stroheim',1885,1957),(2239,'Prince',1958,2016),(2240,'Katt Shea',NULL,NULL),(2246,'Harry Van Gorkum',NULL,NULL),(2252,'David A. Armstrong',NULL,NULL),(2253,'John Carroll Lynch',1963,NULL),(2279,'Chuck McClelland',NULL,NULL),(2283,'Rodney Taylor',NULL,NULL),(2285,'Pat O\'Brien',1899,1983),(2288,'Elliott Goldkind',1964,NULL),(2290,'Loren Avedon',1962,NULL),(2301,'Carl Davis',1936,2023),(2302,'James Bernard',1925,2001),(2303,'Trevor Jones',1949,NULL),(2304,'Laurence Rosenthal',1926,NULL),(2305,'Patrick Williams',1939,2018),(2317,'Alice Duer Miller',1874,1942),(2318,'John Foster',NULL,NULL),(2320,'Fred Murphy',1942,NULL),(2323,'Stephen McNutt',NULL,NULL),(2331,'Stephen Jones',NULL,NULL),(2332,'Stephen Lang',1952,NULL),(2333,'Robert Estrin',1942,NULL),(2335,'Brahm Wenger',NULL,NULL),(2336,'Declan Quinn',1957,NULL),(2338,'Jack Clayton',1921,1995),(2339,'Allen Coulter',NULL,NULL),(2340,'Stuart Gordon',1947,2020),(2343,'Adrian G. Griffiths',1964,NULL),(2344,'Tom Judson',1960,NULL),(2346,'Harry Marker',1899,1990),(2350,'Jim Meskimen',NULL,NULL),(2353,'Thomas Newman',1955,NULL),(2354,'John Williams',1932,NULL),(2359,'Katy Wallin',NULL,NULL),(2364,'Dante Basco',1975,NULL),(2366,'Christopher Young',NULL,NULL),(2368,'Tom Flynn',NULL,NULL),(2369,'John Williams',1903,1983),(2370,'J.A.C. Redford',1953,NULL),(2376,'David Hare',1947,NULL),(2377,'Stephen Semel',NULL,NULL),(2380,'Giorgio Moroder',1940,NULL),(2385,'Linda Moran',NULL,NULL),(2388,'Patrick J. Doody',NULL,NULL),(2391,'Dwayne Adway',1969,NULL),(2396,'Scott Shaw',NULL,NULL),(2397,'Andrew Z. Davis',NULL,NULL),(2399,'Alik Sakharov',1959,NULL),(2413,'David Jackson',NULL,NULL),(2414,'Paul Chihara',1938,NULL),(2417,'Daniel Pyne',NULL,NULL),(2431,'Nicholas Tabarrok',NULL,NULL),(2436,'Shannon Elizabeth',1973,NULL),(2459,'T.C. Christensen',NULL,NULL),(2470,'M. David Mullen',1962,NULL),(2480,'Carmen Cuba',NULL,NULL),(2493,'Simon Bowles',NULL,NULL),(2496,'Christoph Kanter',NULL,NULL),(2500,'Tom McArdle',NULL,NULL),(2502,'Yvann Thibaudeau',1973,NULL),(2526,'Robert Zappia',NULL,NULL),(2529,'Brian A. Kates',1972,NULL),(2530,'Kelly Wagner',1972,NULL),(2535,'Jasper Randall',1974,NULL),(2536,'Emmy Rossum',1986,NULL),(2542,'Terry O. Morse',1906,1984),(2545,'Preston Sturges',1898,1959),(2546,'Mena Suvari',1979,NULL),(2553,'Alexis Magagni-Seely',NULL,NULL),(2557,'Vanja Cernjul',1968,NULL),(2565,'Laine Megaw',NULL,NULL),(2569,'Carl Koch',1892,1963),(2572,'Christopher Alender',1977,NULL),(2576,'Walter Fasano',1970,NULL),(2582,'Christopher Rouse',1958,NULL),(2603,'Ian B. Wile',1971,NULL),(2614,'Peter Levy',NULL,NULL),(2616,'Anita Loos',1889,1981),(2626,'Lee Holdridge',NULL,NULL),(2627,'Monty Berman',1913,2006),(2638,'Robert F. Phillips',NULL,NULL),(2640,'Norman Orenstein',NULL,NULL),(2644,'Brian Berdan',NULL,NULL),(2653,'Joe Johnston',1950,NULL),(2656,'Benedikt Brydern',NULL,NULL),(2657,'Gary Ross',1956,NULL),(2658,'Michael Gibbs',1937,NULL),(2659,'Les Weldon',NULL,NULL),(2668,'George \'Buck\' Flower',1937,2004),(2675,'Robert Kuhn',NULL,NULL),(2677,'Nathalie Alonso Casale',1970,NULL),(2681,'Jim Denault',1960,NULL),(2684,'Michael Galbraith',NULL,NULL),(2685,'Roger Neill',1963,NULL),(2700,'Malcolm D. Lee',1970,NULL),(2706,'David L. Bertman',NULL,NULL),(2711,'Michael Doherty',NULL,NULL),(2717,'Robert C. Jones',1936,2021),(2718,'Brian Koppelman',1966,NULL),(2727,'Ludwig van Beethoven',1770,1827),(2728,'Juan José Campanella',1959,NULL),(2733,'Marc Grossman',NULL,NULL),(2747,'Mark Sanger',1974,NULL),(2749,'Michael Nankin',1955,NULL),(2759,'Ernesto Gastaldi',1934,NULL),(2769,'Romy Schneider',1938,1982),(2776,'Johnny Hallyday',1943,2017),(2789,'Matt Mayer',NULL,NULL),(2796,'Ofer Inov',NULL,NULL),(2797,'Ricardo Franco',1949,1998),(2809,'Brian Capener',NULL,NULL),(2814,'Christopher Leone',NULL,NULL),(2817,'Soledad Miranda',1943,1970),(2828,'Mark Sanders',NULL,NULL),(2835,'Adam Bernstein',1960,NULL),(2841,'Jamie Kirkpatrick',NULL,NULL),(2843,'Steve Rosenzweig',NULL,NULL),(2854,'Jens Schlosser',1954,NULL),(2864,'Michael Markowitz',1961,NULL),(2875,'Freddie Young',1902,1998),(2886,'Robert J. Walsh',1947,2018),(2887,'Alan Myerson',1936,NULL),(2888,'Stephen Blackehart',NULL,NULL),(2889,'Michael Albanese',NULL,NULL),(2892,'Wally Pfister',1961,NULL),(2897,'Ann Todd',1907,1993),(2907,'Alexander Skarsgård',1976,NULL),(2915,'Erwin Hillier',1911,2005),(2923,'Ezekiel Norton',1970,NULL),(2925,'Isaac Sehayek',NULL,NULL),(2926,'Enrique Chediak',1967,NULL),(2934,'Normand Corbeil',1956,2013),(2935,'Moe Howard',1897,1975),(2941,'Kevin Loader',1956,NULL),(2947,'Toby Oliver',NULL,NULL),(2956,'Barry Gibb',1946,NULL),(2969,'Dina Lipton',NULL,NULL),(2980,'Shirley Walker',1945,2006),(2982,'Victoria Arch',NULL,NULL),(2983,'Stephen Peters',1947,NULL),(2989,'Andrew Stevens',1955,NULL),(2994,'Kevin McCarthy',1914,2010),(2999,'Richard S. Wright',NULL,NULL),(3011,'Dariusz Wolski',1956,NULL),(3016,'John Gilbert',NULL,NULL),(3021,'Chris McKay',1973,NULL),(3022,'Lee Rose',NULL,NULL),(3030,'Rosa Maria Sardà',1941,2020),(3031,'Caroline Thompson',1956,NULL),(3032,'Bob Ducsay',NULL,NULL),(3044,'Michael Jordan',1963,NULL),(3046,'Andrew Parke',NULL,NULL),(3061,'Alan Dinehart',1918,1992),(3062,'Alan Dinehart',1889,1944),(3069,'James DuMont',1965,NULL),(3073,'Arno',1949,2022),(3078,'Roger Cross',NULL,NULL),(3080,'Rachel Talalay',1958,NULL),(3082,'Bailey Chase',1972,NULL),(3088,'Chris Noonan',1952,NULL),(3102,'Job ter Burg',NULL,NULL),(3110,'Cesar Romero',1907,1994),(3116,'Anthony C. Ferrante',NULL,NULL),(3117,'Ken Wheat',1950,NULL),(3123,'Dolores del Rio',1904,1983),(3132,'Andre Morgan',NULL,NULL),(3138,'Nicholas Josef von Sternberg',1951,NULL),(3140,'David Klein',1972,NULL),(3141,'Alan Bennett',1934,NULL),(3144,'Walter Coblenz',1928,2022),(3151,'Melissa Kent',NULL,NULL),(3160,'Christopher McQuarrie',1968,NULL),(3164,'John Brownlow',NULL,NULL),(3196,'Ueli Christen',1962,NULL),(3198,'Jerome Bixby',1923,1998),(3199,'Leon Fromkess',1901,1977),(3201,'Tim Sullivan',1958,NULL),(3205,'Steve Gainer',1962,NULL),(3225,'Ed Begley',1901,1970),(3226,'Kenji Mizoguchi',1898,1956),(3231,'Larry Bock',NULL,NULL),(3238,'Amy Beth Silver',NULL,NULL),(3244,'Jordi Mollà',1968,NULL),(3275,'Mark L. Rosen',1947,2012),(3281,'Richard Horowitz',1949,NULL),(3294,'Warren Skeels',1975,NULL),(3298,'Scott Rosenberg',1963,NULL),(3299,'Marc Shaiman',1959,NULL),(3300,'Duncan Kennedy',NULL,NULL),(3304,'Andrew Rosen',NULL,NULL),(3318,'Howard Duff',1913,1990),(3330,'Tia Nolan',NULL,NULL),(3337,'Karlheinz Böhm',1928,2014),(3339,'Herbert Marshall',1890,1966),(3342,'E. Bennett Walsh',NULL,NULL),(3343,'Rob Schmidt',1965,NULL),(3355,'Christopher Monger',1950,NULL),(3367,'Peter Bernstein',1951,NULL),(3371,'Wedigo von Schultzendorff',1945,NULL),(3372,'Chris Seager',1949,NULL),(3377,'Harry Langdon',1884,1944),(3388,'Brian Pearson',1967,NULL),(3392,'George S. Clinton',1947,NULL),(3394,'Lawrence Sher',1970,NULL),(3403,'Timothy Bond',1942,NULL),(3407,'Thomas Mann',1875,1955),(3408,'Chris Marker',1921,2012),(3413,'Peter Benison',NULL,NULL),(3417,'David Arnold',1962,NULL),(3418,'Rob Cohen',1949,NULL),(3423,'Peter MacDonald',1939,NULL),(3424,'Hank Mann',1887,1971),(3433,'Carl Theodor Dreyer',1889,1968),(3437,'Judy Cairo',NULL,NULL),(3441,'Michele Conroy',1966,NULL),(3442,'Matthias Grunsky',1971,NULL),(3446,'Jonathan Brown',1970,NULL),(3452,'Richard Crudo',NULL,NULL),(3458,'Steven R. Monroe',1964,NULL),(3464,'Bernt Amadeus Capra',1941,NULL),(3470,'Jack Haigis',NULL,NULL),(3471,'Richard Wagner',1813,1883),(3483,'Sarah Flack',NULL,NULL),(3490,'Ludwig Berger',1892,1969),(3501,'Jamie Gillis',1943,2010),(3502,'Stephen Graziano',1954,NULL),(3503,'Ross A. Maehl',1938,NULL),(3506,'James Mangold',1963,NULL),(3508,'Michel Blanc',1952,NULL),(3512,'Mark Putnam',NULL,NULL),(3515,'Ralph Winter',NULL,NULL),(3518,'Richard Comeau',1960,NULL),(3526,'Peter Golub',1952,NULL),(3529,'Dan Harris',1979,NULL),(3542,'Philippe Rousselot',1945,NULL),(3544,'Christopher Ball',NULL,NULL),(3546,'Charles Rosher',1885,1974),(3552,'Stephen Goldblatt',1945,NULL),(3557,'Richard J. Lewis',NULL,NULL),(3561,'Mick Erausquin',NULL,NULL),(3574,'Maurice Jarre',1924,2009),(3575,'Doug Abel',NULL,NULL),(3579,'Magda Schneider',1909,1996),(3585,'Gustav Knuth',1901,1987),(3588,'Craig Pryce',NULL,NULL),(3593,'Fred Zinnemann',1907,1997),(3604,'David Connell',1955,NULL),(3606,'Philippe de Broca',1933,2004),(3607,'Nicola Piovani',1946,NULL),(3620,'Kevin Smith',1970,NULL),(3631,'Denis Lenoir',1949,NULL),(3638,'F.W. Murnau',1888,1931),(3659,'Phedon Papamichael',1962,NULL),(3662,'Graham Yost',1959,NULL),(3668,'Brian Benison',NULL,NULL),(3676,'C. Courtney Joyner',NULL,NULL),(3679,'Kate Reid',1930,1993),(3681,'Suzanne Colvin',NULL,NULL),(3686,'John L. Demps Jr.',NULL,NULL),(3692,'Erik C. Andersen',NULL,NULL),(3697,'Florian Henckel von Donnersmarck',1973,NULL),(3703,'Eric Strand',NULL,NULL),(3710,'Charles William Breen',1953,2018),(3712,'Anastas N. Michos',NULL,NULL),(3720,'David Womark',NULL,NULL),(3739,'Randy Carter',NULL,NULL),(3741,'Robin Driscoll',NULL,NULL),(3745,'Anthony Fabian',NULL,NULL),(3759,'Ed Marx',NULL,NULL),(3786,'Marc Singer',NULL,NULL),(3794,'Ryszard Bugajski',1943,2019),(3798,'Donald Martin',NULL,NULL),(3802,'Uta Briesewitz',NULL,NULL),(3813,'Liselotte Pulver',1929,NULL),(3817,'Michael Clarke Duncan',1957,2012),(3819,'Kevin Kelly Brown',NULL,NULL),(3825,'Andrew Neiderman',1940,NULL),(3828,'Martin Pope',1961,NULL),(3833,'James D. Solomon',NULL,NULL),(3836,'Michael Powell',1905,1990),(3861,'David Jensen',1952,NULL),(3864,'Michael S. Murphey',NULL,NULL),(3870,'Marilyn Ghigliotti',NULL,NULL),(3888,'J.A. Steel',1969,NULL),(3893,'Hughes Winborne',NULL,NULL),(3895,'Ramon Novarro',1899,1968),(3900,'José Luis Alcaine',1938,NULL),(3909,'Michael Lonsdale',1931,2020),(3910,'Travis Fine',1968,NULL),(3911,'Brian Tyler',1972,NULL),(3920,'Michael Ellis',NULL,NULL),(3939,'Vikramaditya Motwane',1976,NULL),(3941,'David Winning',NULL,NULL),(3944,'Ian James Corlett',1962,NULL),(3946,'Marius De Vries',1961,NULL),(3953,'Matthew Huffman',NULL,NULL),(3964,'Frank C. Turner',1951,NULL),(3972,'Ryan Shore',1974,NULL),(3975,'Jeff Stephenson',NULL,NULL),(3977,'Gary Rydstrom',1959,NULL),(3978,'Andrew Deutsch',NULL,NULL),(3983,'Andy Roberts',1946,NULL),(3993,'Toby Jaffe',NULL,NULL),(4001,'Mark Archer',1973,NULL),(4012,'Simon Emanuel',NULL,NULL),(4033,'Diego Quemada-Diez',NULL,NULL),(4043,'George Zaloom',NULL,NULL),(4051,'Brian Cox',1946,NULL),(4056,'Andrew Stanton',1965,NULL),(4062,'François Dagenais',NULL,NULL),(4070,'Niall Byrne',NULL,NULL),(4087,'Howard Bernstein',1966,NULL),(4088,'László Kovács',1933,2007),(4089,'Matthew Irving',NULL,NULL),(4090,'Eric Alan Edwards',1953,NULL),(4111,'Mark Frost',1953,NULL),(4121,'Mikael Salomon',NULL,NULL),(4122,'Robert Bolt',1924,1995),(4124,'Laurent Herbiet',1961,NULL),(4132,'Jill Footlick',NULL,NULL),(4142,'Michael Grady',NULL,NULL),(4149,'Bo Svenson',1941,NULL),(4161,'Mark Roper',1958,NULL),(4162,'Patti Podesta',NULL,NULL),(4170,'Bob Kane',1915,1998),(4195,'Gabriel Figueroa',1907,1997),(4205,'John Frick',NULL,NULL),(4214,'Bey Logan',1963,NULL),(4215,'Mark Lombardo',1949,NULL),(4217,'André Øvredal',NULL,NULL),(4228,'Elmo Weber',NULL,NULL),(4229,'Adam Greenberg',1937,NULL),(4234,'Alfonso Gomez-Rejon',NULL,NULL),(4241,'Donald E. Thorin',1934,2016),(4244,'Jacques Tati',1907,1982),(4266,'Anne Hathaway',1982,NULL),(4267,'Xavier Grobet',1964,NULL),(4272,'Paul Hipp',1963,NULL),(4282,'Anne Francis',1930,2011),(4286,'Clifton Collins Jr.',1970,NULL),(4287,'Alex Thomson',1929,2007),(4290,'Margaret Booth',1898,2002),(4301,'Alexandra Adi',1971,NULL),(4302,'Ken Kelsch',NULL,NULL),(4303,'Gavin Hood',1963,NULL),(4306,'George Miller',1945,NULL),(4307,'Shane Salerno',1972,NULL),(4309,'Shirley Knight',1936,2020),(4310,'Larry Fine',1902,1975),(4311,'Danny B. Harvey',NULL,NULL),(4321,'Henning Lohner',1961,NULL),(4330,'David Rawlins',1935,NULL),(4332,'Robert B. Weide',NULL,NULL),(4334,'Rekha',1954,NULL),(4335,'Hrithik Roshan',1974,NULL),(4336,'Tristan Oliver',NULL,NULL),(4341,'Diane Kirman',NULL,NULL),(4344,'Michael Barrett',1970,NULL),(4345,'Richard A. Roth',1940,2017),(4347,'Alain Goldman',NULL,NULL),(4349,'Kam Heskin',1973,NULL),(4360,'Attila Szalay',1961,NULL),(4365,'Fred Williamson',1938,NULL),(4366,'Tom Wolfe',1930,2018),(4368,'Stanley Myers',1933,1993),(4372,'Gary Graver',1938,2006),(4375,'John Dykstra',1947,NULL),(4376,'Franka Potente',1974,NULL),(4383,'Michael Kamen',1948,2003),(4384,'Wojciech Kilar',1932,2013),(4395,'Adam Scott',1973,NULL),(4401,'Steven M. Stern',1967,NULL),(4402,'Dan Wool',NULL,NULL),(4410,'Mark Neveldine',NULL,NULL),(4412,'Ed Solomon',1960,NULL),(4415,'Louis Irving',1950,2016),(4418,'Kajol',1974,NULL),(4423,'Gerry Robert Byrne',NULL,NULL),(4435,'Rajesh Khanna',1942,2012),(4437,'Sridevi',1963,2018),(4453,'Arthur Cohn',1927,NULL),(4458,'Peter Heller',NULL,NULL),(4462,'Jean-Louis Trintignant',1930,2022),(4464,'Heinz Rühmann',1902,1994),(4478,'Victor Goss',NULL,NULL),(4479,'K.V. Mahadevan',1918,2001),(4486,'Bruno Ganz',1941,2019),(4487,'Juhi Chawla',1967,NULL),(4488,'Rick King',NULL,NULL),(4496,'Van Johnson',1916,2008),(4499,'David Reynolds',NULL,NULL),(4517,'Jason Alexander',1959,NULL),(4527,'Daniel J. Heffner',1956,NULL),(4529,'Sarah Cawley',NULL,NULL),(4531,'Mario Serandrei',1907,1966),(4545,'Gregory Middleton',NULL,NULL),(4555,'Walter Murch',1943,NULL),(4569,'Sanjay Dutt',1959,NULL),(4573,'Paul Landres',1912,2001),(4579,'Vidyasagar',1963,NULL),(4581,'Harry Gregson-Williams',NULL,NULL),(4582,'Jeff Danna',1964,NULL),(4591,'John Fasano',1961,2014),(4592,'Robert Israel',1963,NULL),(4596,'Steve Binder',1932,NULL),(4600,'Alberto Basail',1938,2000),(4611,'Sandy Collora',1968,NULL),(4616,'John \'Bud\' Cardos',1929,2020),(4625,'Daniel Gélin',1921,2002),(4637,'Harry Keramidas',1940,NULL),(4647,'Carroll Baker',1931,NULL),(4650,'Marisa Paredes',1946,NULL),(4653,'Ann Carli',NULL,NULL),(4654,'Nicolas Gessner',1931,NULL),(4666,'Learan Kahanov',NULL,NULL),(4668,'Kevin Cooney',1945,NULL),(4675,'Phil Alden Robinson',1950,NULL),(4678,'Paul Maibaum',NULL,NULL),(4679,'Serge Colbert',1967,NULL),(4691,'Aaliyah',1979,2001),(4692,'Mark Addy',1964,NULL),(4693,'Lou Adler',1933,NULL),(4694,'Christina Aguilera',1980,NULL),(4695,'Jessica Alba',1981,NULL),(4710,'Naveen Andrews',1969,NULL),(4711,'Marc Anthony',1968,NULL),(4715,'Will Arnett',1970,NULL),(4716,'Darren Aronofsky',1969,NULL),(4724,'Christine Baranski',1952,NULL),(4729,'Michael Beach',1963,NULL),(4730,'Orson Bean',1928,2020),(4731,'Garcelle Beauvais',1966,NULL),(4735,'James Van Der Beek',1977,NULL),(4736,'Jason Behr',1973,NULL),(4738,'Catherine Bell',1968,NULL),(4741,'Camilla Belle',1986,NULL),(4742,'Maria Bello',1967,NULL),(4743,'Gil Bellows',1967,NULL),(4744,'Lawrence Bender',1957,NULL),(4747,'Wes Bentley',1978,NULL),(4748,'Julie Benz',1972,NULL),(4749,'Emily Bergl',1975,NULL),(4753,'Leslie Bibb',1973,NULL),(4754,'Jessica Biel',1982,NULL),(4755,'Jason Biggs',1978,NULL),(4757,'Selma Blair',1972,NULL),(4761,'Rachel Blanchard',NULL,NULL),(4763,'Mary J. Blige',1971,NULL),(4767,'Joseph Bologna',1934,2017),(4769,'Pat Boone',1934,NULL),(4770,'David Boreanaz',1969,NULL),(4771,'Da Brat',1974,NULL),(4773,'Lisa Brenner',NULL,NULL),(4777,'Erin Brockovich-Ellis',1960,NULL),(4778,'Adrien Brody',1973,NULL),(4782,'Kimberly J. Brown',1984,NULL),(4785,'Delta Burke',1956,NULL),(4786,'Brooke Burns',1978,NULL),(4787,'Saffron Burrows',1972,NULL),(4789,'Amanda Bynes',1986,NULL),(4790,'Scott Caan',1976,NULL),(4791,'Linda Lee Cadwell',1945,NULL),(4793,'Monica Calhoun',1971,NULL),(4794,'Glen Campbell',1936,2017),(4795,'Jessica Campbell',1982,2020),(4797,'Bruno Campos',1973,NULL),(4798,'Stephen J. Cannell',1941,2010),(4799,'Mark Canton',1949,NULL),(4800,'Jessica Capshaw',1976,NULL),(4802,'Linda Cardellini',1975,NULL),(4805,'Adam Carolla',1964,NULL),(4806,'Charisma Carpenter',NULL,NULL),(4810,'Chris Carter',1956,NULL),(4812,'Lynda Carter',1951,NULL),(4813,'Nancy Cartwright',1957,NULL),(4815,'Christine Cavanaugh',1963,2014),(4816,'Lumi Cavazos',1968,NULL),(4820,'Morris Chestnut',1969,NULL),(4821,'Michael Chiklis',1963,NULL),(4822,'Melanie C',1974,NULL),(4825,'Emmanuelle Chriqui',1975,NULL),(4829,'Spencer Treat Clark',1987,NULL),(4831,'Natalie Cole',1950,2015),(4834,'Stephen Collins',1947,NULL),(4838,'Martha Coolidge',1946,NULL),(4841,'Stewart Copeland',1952,NULL),(4842,'Billy Corgan',1967,NULL),(4846,'Marisa Coughlan',1974,NULL),(4847,'Walter Cronkite',1916,2009),(4851,'Penélope Cruz',1974,NULL),(4852,'Jane Curtin',1947,NULL),(4854,'Billy Ray Cyrus',1961,NULL),(4857,'Tim Daly',1956,NULL),(4858,'Patrika Darbo',1948,NULL),(4862,'Kristin Davis',1965,NULL),(4866,'Amanda De Cadenet',1972,NULL),(4867,'James DeBello',1980,NULL),(4873,'Andy Dick',1965,NULL),(4874,'Vin Diesel',1967,NULL),(4875,'Taye Diggs',1971,NULL),(4879,'Snoop Dogg',1971,NULL),(4880,'Micky Dolenz',1945,NULL),(4883,'Tate Donovan',1963,NULL),(4886,'Bill Duke',1943,NULL),(4887,'Nora Dunn',1952,NULL),(4892,'Kenneth \'Babyface\' Edmonds',1959,NULL),(4893,'Hallie Eisenberg',1992,NULL),(4896,'Eminem',1972,NULL),(4898,'Omar Epps',1973,NULL),(4902,'Melissa Etheridge',1961,NULL),(4906,'Peter Facinelli',1973,NULL),(4908,'Edie Falco',1963,NULL),(4912,'Oded Fehr',1970,NULL),(4920,'Frances Fisher',1952,NULL),(4922,'Schuyler Fisk',1982,NULL),(4924,'Michael Flatley',1958,NULL),(4927,'Beau Flynn',1970,NULL),(4929,'David Foley',1963,NULL),(4936,'Ben Foster',1980,NULL),(4937,'Jamie Foxx',1967,NULL),(4941,'Soleil Moon Frye',1976,NULL),(4949,'Troy Garity',1973,NULL),(4950,'Jennifer Garner',1972,NULL),(4951,'Brad Garrett',1960,NULL),(4959,'Thomas Gibson',NULL,NULL),(4963,'Peri Gilpin',1961,NULL),(4965,'Adam Goldberg',1970,NULL),(4966,'Bill Goldberg',1966,NULL),(4976,'Brian Grazer',1951,NULL),(4978,'Adrian Grenier',1976,NULL),(4979,'David Alan Grier',1956,NULL),(4980,'Kathy Griffin',1960,NULL),(4981,'Matt Groening',1954,NULL),(4982,'Jasmine Guy',1962,NULL),(4983,'Buddy Hackett',1924,2003),(4986,'LisaGay Hamilton',1964,NULL),(4988,'Colin Hanks',1977,NULL),(4989,'Alyson Hannigan',1974,NULL),(4990,'Angie Harmon',1972,NULL),(4993,'Desmond Harrington',1976,NULL),(4996,'Steve Harris',1965,NULL),(4997,'Melissa Joan Hart',1976,NULL),(4999,'Shawn Hatosy',1975,NULL),(5002,'Isaac Hayes',1942,2008),(5003,'Sean Hayes',1970,NULL),(5004,'Patricia Heaton',1958,NULL),(5006,'Elaine Hendrix',1970,NULL),(5007,'Jill Hennessy',1968,NULL),(5008,'Brian Henson',1963,NULL),(5009,'Laura Harring',1964,NULL),(5013,'Iben Hjejle',1971,NULL),(5016,'Alexandra Holden',1977,NULL),(5017,'Katie Holmes',1978,NULL),(5019,'Bo Hopkins',1938,2022),(5020,'Josh Hopkins',1970,NULL),(5022,'Peter Horton',NULL,NULL),(5023,'Djimon Hounsou',1964,NULL),(5024,'Terrence Howard',1969,NULL),(5025,'Traylor Howard',1966,NULL),(5026,'Kelly Hu',1968,NULL),(5028,'Kate Hudson',1979,NULL),(5031,'Felicity Huffman',1962,NULL),(5033,'Sammo Kam-Bo Hung',1952,NULL),(5036,'Gale Anne Hurd',1955,NULL),(5042,'Jason Isaacs',1963,NULL),(5044,'Jonathan Jackson',1982,NULL),(5045,'Joshua Jackson',1978,NULL),(5048,'Thomas Jane',1969,NULL),(5049,'Allison Janney',1959,NULL),(5052,'Michael Jeter',1952,2003),(5053,'Joan Jett',1958,NULL),(5055,'Billy Joel',1949,NULL),(5056,'Elton John',1947,NULL),(5057,'Amy Jo Johnson',1970,NULL),(5062,'Chuck Jones',1912,2002),(5063,'Grace Jones',1948,NULL),(5064,'January Jones',1978,NULL),(5065,'Quincy Jones',1933,NULL),(5068,'Vinnie Jones',1965,NULL),(5069,'Spike Jonze',1969,NULL),(5076,'Jeffrey Katzenberg',1950,NULL),(5077,'James Keach',1947,NULL),(5078,'Stacy Keach',1941,NULL),(5081,'Mary Page Keller',1961,NULL),(5082,'David E. Kelley',1956,NULL),(5085,'Jamie Kennedy',1970,NULL),(5086,'Kathleen Kennedy',1953,NULL),(5093,'Regina King',1971,NULL),(5094,'Alex Kingston',1963,NULL),(5095,'Justin Kirk',1969,NULL),(5098,'Chris Klein',1979,NULL),(5101,'Harmony Korine',1973,NULL),(5105,'Jane Krakowski',1968,NULL),(5109,'Mila Kunis',1983,NULL),(5110,'Ashton Kutcher',1978,NULL),(5112,'LL Cool J',1968,NULL),(5116,'Mary Lambert',1951,NULL),(5120,'Wallace Langham',1965,NULL),(5121,'Sherry Lansing',1944,NULL),(5123,'Ali Larter',1976,NULL),(5124,'John Lasseter',1957,NULL),(5125,'Sanaa Lathan',1971,NULL),(5128,'Lucy Lawless',1968,NULL),(5129,'Joey Lawrence',1976,NULL),(5132,'Heath Ledger',1979,2008),(5134,'Jason Lee',1970,NULL),(5139,'Mike Leigh',1943,NULL),(5141,'Sean Lennon',1975,NULL),(5143,'Jay Leno',1950,NULL),(5148,'Delroy Lindo',1952,NULL),(5151,'Jonathan Lipnicki',1990,NULL),(5152,'Peggy Lipton',1946,2019),(5154,'Lucy Liu',1968,NULL),(5156,'Eric Lloyd',1986,NULL),(5157,'Jake Lloyd',1989,NULL),(5159,'Tone Loc',1966,NULL),(5162,'Robert Loggia',1930,2015),(5164,'Lyle Lovett',1957,NULL),(5167,'Lorna Luft',1952,NULL),(5169,'Natasha Lyonne',1979,NULL),(5170,'Bernie Mac',1957,2008),(5171,'Angus Macfadyen',1963,NULL),(5175,'Bill Maher',1956,NULL),(5176,'Wendie Malick',1950,NULL),(5177,'Howie Mandel',1955,NULL),(5179,'Camryn Manheim',1961,NULL),(5182,'Leslie Mann',1972,NULL),(5188,'James Marsden',1973,NULL),(5189,'Jason Marsden',1975,NULL),(5190,'Garry Marshall',1934,2016),(5192,'Kellie Martin',1975,NULL),(5194,'Danny Masterson',1976,NULL),(5196,'Paul Mazursky',1930,2014),(5197,'Des McAnuff',1952,NULL),(5200,'Paul McCartney',1942,NULL),(5203,'Mary McCormack',1969,NULL),(5209,'Mark McGrath',1968,NULL),(5210,'Tim McGraw',1967,NULL),(5212,'Ian McKellen',1939,NULL),(5216,'Janet McTeer',1961,NULL),(5219,'Mike Medavoy',1941,NULL),(5220,'Tamara Mello',1976,NULL),(5221,'Christopher Meloni',1961,NULL),(5222,'Sam Mendes',1965,NULL),(5226,'Debra Messing',1968,NULL),(5227,'Breckin Meyer',1974,NULL),(5231,'Dash Mihok',1974,NULL),(5232,'Izabella Miko',1981,NULL),(5234,'Donna Mills',1940,NULL),(5236,'Juliet Mills',1941,NULL),(5237,'Anthony Minghella',1954,2008),(5238,'Beverley Mitchell',1981,NULL),(5239,'Kel Mitchell',1978,NULL),(5240,'Moby',1965,NULL),(5243,'Meredith Monroe',NULL,NULL),(5244,'Fernanda Montenegro',1929,NULL),(5245,'Shemar Moore',1970,NULL),(5251,'Carrie-Anne Moss',1967,NULL),(5253,'Elisabeth Moss',1982,NULL),(5255,'Tamera Mowry-Housley',1978,NULL),(5256,'Bridget Moynahan',1971,NULL),(5258,'Patrick Muldoon',1968,NULL),(5259,'Megan Mullally',1958,NULL),(5260,'Frankie Muniz',1985,NULL),(5261,'Brittany Murphy',1977,2009),(5265,'Kevin Nealon',1953,NULL),(5266,'Craig T. Nelson',1944,NULL),(5268,'Willie Nelson',1933,NULL),(5269,'Corin Nemec',1971,NULL),(5271,'Randy Newman',1943,NULL),(5272,'Thomas Ian Nicholas',1980,NULL),(5273,'Alessandro Nivola',1972,NULL),(5275,'Brandy Norwood',1979,NULL),(5278,'Jerry O\'Connell',1974,NULL),(5279,'Carroll O\'Connor',1924,2001),(5280,'Rosie O\'Donnell',1962,NULL),(5282,'Mike O\'Malley',1966,NULL),(5283,'Jacqueline Obradors',NULL,NULL),(5286,'Haley Joel Osment',1988,NULL),(5292,'Erik Palladino',1968,NULL),(5295,'Trey Parker',1969,NULL),(5299,'Sarah Paulson',1974,NULL),(5300,'Allen Payne',1968,NULL),(5301,'Amanda Pays',1959,NULL),(5303,'Kimberly Peirce',1967,NULL),(5304,'Michael Penn',1958,NULL),(5305,'Piper Perabo',1976,NULL),(5306,'Pauley Perrette',1969,NULL),(5307,'Jon Peters',1945,NULL),(5308,'Cassandra Peterson',1951,NULL),(5311,'Busy Philipps',1979,NULL),(5312,'Gina Philips',1970,NULL),(5313,'Bijou Phillips',1980,NULL),(5315,'Jeremy Piven',1965,NULL),(5316,'Mary Kay Place',1947,NULL),(5318,'Carly Pope',NULL,NULL),(5320,'Paulina Porizkova',1965,NULL),(5321,'Monica Potter',1971,NULL),(5322,'Sarah-Jane Potts',1976,NULL),(5326,'Jaime Pressly',1977,NULL),(5327,'Freddie Prinze Jr.',1976,NULL),(5337,'Theresa Randle',1964,NULL),(5342,'Norman Reedus',1969,NULL),(5345,'Robert Rehme',1935,NULL),(5346,'Tara Reid',1975,NULL),(5347,'Tim Reid',1944,NULL),(5348,'Carl Reiner',1922,2020),(5349,'Gloria Reuben',1964,NULL),(5350,'Simon Rex',1974,NULL),(5351,'Ryan Reynolds',1976,NULL),(5352,'Caroline Rhea',1964,NULL),(5358,'Tim Rice',1944,NULL),(5363,'Guy Ritchie',1968,NULL),(5366,'Jay Roach',1957,NULL),(5367,'Brian Robbins',1963,NULL),(5368,'Doris Roberts',1925,2016),(5370,'Kathleen Robertson',1973,NULL),(5371,'Robbie Robertson',1943,2023),(5375,'Lela Rochon',1964,NULL),(5377,'Sam Rockwell',1968,NULL),(5380,'Ray Romano',1957,NULL),(5381,'Rebecca Romijn',1972,NULL),(5384,'Diana Ross',1944,NULL),(5386,'Cecilia Roth',1956,NULL),(5387,'Joe Roth',1948,NULL),(5388,'Brad Rowe',1970,NULL),(5390,'Patricia Rozema',1958,NULL),(5392,'Keri Russell',1976,NULL),(5401,'Ricky Schroder',1970,NULL),(5403,'Jason Schwartzman',1980,NULL),(5404,'Rusty Schwimmer',NULL,NULL),(5405,'Seann William Scott',1976,NULL),(5406,'William Lee Scott',1973,NULL),(5408,'Katey Sagal',1954,NULL),(5412,'Jane Seymour',1951,NULL),(5414,'Robert Shapiro',NULL,NULL),(5417,'Lin Shaye',1943,NULL),(5420,'Marley Shelton',1974,NULL),(5421,'Ron Shelton',1945,NULL),(5422,'Hilary Shepard',1959,NULL),(5428,'Joel Silver',1952,NULL),(5431,'Henry Simmons',NULL,NULL),(5433,'Jessica Simpson',1980,NULL),(5434,'Nancy Sinatra',1940,NULL),(5435,'Sinbad',1956,NULL),(5436,'John Singleton',1968,2019),(5437,'Sisqó',1978,NULL),(5438,'Jeremy Sisto',1974,NULL),(5442,'Amy Smart',1976,NULL),(5443,'Jean Smart',1951,NULL),(5445,'Kerr Smith',1972,NULL),(5447,'Leelee Sobieski',1983,NULL),(5448,'Marla Sokoloff',1980,NULL),(5450,'David Spade',1964,NULL),(5453,'Britney Spears',1981,NULL),(5454,'Scott Speedman',1975,NULL),(5455,'Aaron Spelling',1923,2006),(5457,'Dina Spybey-Waters',NULL,NULL),(5458,'Jason Statham',1967,NULL),(5460,'Mary Steenburgen',1953,NULL),(5466,'Julia Stiles',1981,NULL),(5467,'Jerry Stiller',1927,2020),(5468,'Michael Stipe',1960,NULL),(5474,'Nicole Sullivan',1970,NULL),(5476,'Hilary Swank',1974,NULL),(5478,'Larenz Tate',1975,NULL),(5481,'Victoria Tennant',1950,NULL),(5491,'Maura Tierney',1965,NULL),(5493,'Justin Timberlake',1981,NULL),(5494,'Steve Tisch',1949,NULL),(5495,'David Tom',1978,NULL),(5497,'Nicholle Tom',NULL,NULL),(5499,'Lily Tomlin',1939,NULL),(5501,'Lorraine Toussaint',1960,NULL),(5502,'Michelle Trachtenberg',1985,NULL),(5508,'Janine Turner',1962,NULL),(5509,'Jon Turteltaub',1963,NULL),(5512,'Mike Tyson',1966,NULL),(5513,'Alanna Ubach',1975,NULL),(5516,'Blair Underwood',1964,NULL),(5517,'Gabrielle Union',1972,NULL),(5519,'Wilmer Valderrama',1980,NULL),(5520,'Amber Valletta',1974,NULL),(5522,'Mario Van Peebles',1957,NULL),(5524,'Courtney B. Vance',1960,NULL),(5527,'Sofía Vergara',1972,NULL),(5529,'Lisa Vidal',1965,NULL),(5531,'Donnie Wahlberg',1969,NULL),(5533,'Maitland Ward',1977,NULL),(5535,'Estella Warren',1978,NULL),(5538,'Barry Watson',1974,NULL),(5540,'Keenen Ivory Wayans',1958,NULL),(5541,'Marlon Wayans',1972,NULL),(5544,'Harvey Weinstein',1952,NULL),(5545,'Jerry Weintraub',1937,2015),(5548,'Joel West',1975,NULL),(5549,'Haskell Wexler',1922,2015),(5550,'Bryan White',1974,NULL),(5551,'Lynn Whitfield',1953,NULL),(5552,'Kym Whitley',1962,NULL),(5557,'Edy Williams',1941,NULL),(5559,'Kelli Williams',1970,NULL),(5561,'Luke Wilson',1971,NULL),(5562,'Owen Wilson',1968,NULL),(5563,'Irwin Winkler',1931,NULL),(5565,'Jonathan Winters',1925,2013),(5568,'Russell Wong',1963,NULL),(5569,'Alfre Woodard',1952,NULL),(5571,'Lisa Zane',NULL,NULL),(5572,'Lili Fini Zanuck',1954,NULL),(5573,'Richard D. Zanuck',1934,2012),(5575,'Ian Ziering',1964,NULL),(5576,'Drea de Matteo',1972,NULL),(5577,'Portia de Rossi',1973,NULL),(5579,'Christy Carlson Romano',1984,NULL),(5592,'Chris Castaldi',NULL,NULL),(5593,'Chris L. Spellman',NULL,NULL),(5602,'Pierre Gill',NULL,NULL),(5606,'Maurice LaMarche',1958,NULL),(5610,'James Steven Sadwith',1952,NULL),(5618,'Alex Zamm',NULL,NULL),(5630,'Thomas E. Ackerman',1948,NULL),(5631,'José F. Aguayo',1911,1999),(5633,'John Alcott',1930,1986),(5635,'Lucien N. Andriot',1892,1979),(5636,'Thierry Arbogast',1957,NULL),(5638,'Ricardo Aronovich',1930,NULL),(5644,'Lucien Ballard',1904,1988),(5645,'Enzo Barboni',1922,2002),(5647,'Andrzej Bartkowiak',1950,NULL),(5648,'Bojan Bazelli',1957,NULL),(5649,'Affonso Beato',1941,NULL),(5652,'Manuel Berenguer',1913,1999),(5653,'Giovanni Bergamini',NULL,NULL),(5655,'Renato Berta',1945,NULL),(5657,'Joseph F. Biroc',1903,1996),(5658,'G.W. Bitzer',1872,1944),(5659,'Ralf D. Bode',1941,2001),(5661,'Norbert Brodine',1896,1970),(5662,'Léonce-Henri Burel',1892,1977),(5663,'Hans Burmann',1937,NULL),(5664,'Stephen H. Burum',1939,NULL),(5665,'Russell Carpenter',1950,NULL),(5666,'Christopher Challis',1919,2012),(5667,'Caroline Champetier',1954,NULL),(5668,'Wilfrid M. Cline',1903,1976),(5669,'Ghislain Cloquet',1924,1981),(5670,'William H. Clothier',1903,1996),(5671,'Alfio Contini',1927,2020),(5673,'Stanley Cortez',1908,1997),(5675,'Jordan Cronenweth',1935,1996),(5676,'Edward Cronjager',1904,1960),(5677,'Floyd Crosby',1899,1985),(5678,'Dean Cundey',1946,NULL),(5679,'Allen Daviau',1942,2020),(5681,'Pasqualino De Santis',1927,1996),(5683,'Roger Deakins',1949,NULL),(5684,'Henri Decaë',1915,1987),(5686,'Tonino Delli Colli',1922,2005),(5687,'Peter Deming',NULL,NULL),(5688,'Carlo Di Palma',1925,2004),(5689,'Gianni Di Venanzo',1920,1966),(5690,'William K.L. Dickson',1860,1935),(5695,'Frederick Elmes',1946,NULL),(5696,'Robert Elswit',1950,NULL),(5698,'Walther van den Ende',1947,NULL),(5701,'Daniel L. Fapp',1904,1986),(5702,'Vincent J. Farrar',1905,1950),(5703,'Don E. FauntLeRoy',1953,NULL),(5705,'Gunnar Fischer',1910,2011),(5706,'George J. Folsey',1898,1988),(5709,'Robert Fraisse',1940,NULL),(5710,'William A. Fraker',1923,2010),(5711,'Freddie Francis',1917,2007),(5712,'Ellsworth Fredericks',1904,1993),(5713,'Karl Freund',1890,1969),(5714,'Tak Fujimoto',1939,NULL),(5715,'Ronald Víctor García',NULL,NULL),(5716,'Lee Garmes',1898,1978),(5719,'Merritt B. Gerstad',1900,1974),(5720,'Alfred Gilks',1891,1970),(5721,'Blasco Giurato',1941,2022),(5723,'Pierre-William Glenn',1943,NULL),(5726,'Jack N. Green',1946,NULL),(5727,'Mutz Greenbaum',1896,1968),(5729,'Loyal Griggs',1906,1978),(5732,'David Gurfinkel',1938,NULL),(5734,'Conrad L. Hall',1926,2003),(5735,'Ernest Haller',1896,1970),(5737,'Russell Harlan',1903,1974),(5738,'Byron Haskin',1899,1984),(5739,'Bernd Heinl',1947,NULL),(5740,'Otto Heller',1896,1970),(5741,'Sidney Hickox',1895,1982),(5742,'Jack Hildyard',1908,1990),(5743,'Winton C. Hoch',1905,1979),(5744,'Slawomir Idziak',1945,NULL),(5745,'Silvano Ippoliti',1923,1994),(5747,'Fred Jackman Jr.',1913,1982),(5748,'Julius Jaenzon',1885,1961),(5749,'Jeffrey Jur',1955,NULL),(5751,'Jürgen Jürges',1940,NULL),(5752,'Ernst W. Kalinke',1918,1992),(5755,'Victor J. Kemper',1927,NULL),(5756,'Bruno de Keyzer',1949,2019),(5757,'Benjamin H. Kline',1894,1974),(5758,'Fred J. Koenekamp',1922,2017),(5759,'Lajos Koltai',1946,NULL),(5761,'Robert Krasker',1913,1981),(5762,'Milton R. Krasner',1904,1988),(5765,'Luigi Kuveiller',1927,2013),(5766,'Joseph LaShelle',1900,1989),(5767,'Edward Lachman',1948,NULL),(5768,'Ernest Laszlo',1898,1984),(5769,'Philip H. Lathrop',1912,1995),(5770,'Marcel Le Picard',1887,1952),(5771,'Franz Xaver Lederle',1931,NULL),(5772,'Matthew F. Leonetti',1941,NULL),(5773,'Dennis C. Lewiston',1934,2014),(5774,'Pierre Lhomme',1930,2019),(5776,'Karl Walter Lindenlaub',1957,NULL),(5777,'Dietrich Lohmann',1943,1997),(5779,'William Lubtchansky',1937,2010),(5780,'Igor Luther',1942,2020),(5781,'Bernard Lutic',1943,2000),(5782,'Chester A. Lyons',1885,1936),(5785,'Jack A. Marta',1903,1991),(5789,'Rudolph Maté',1898,1964),(5790,'Alfredo Mayo',NULL,NULL),(5791,'Donald McAlpine',1934,NULL),(5792,'Ted D. McCord',1900,1976),(5793,'Phil Meheux',1941,NULL),(5794,'William C. Mellor',1903,1963),(5797,'Russell Metty',1906,1978),(5798,'Pierre Mignot',1944,NULL),(5800,'Victor Milner',1893,1972),(5801,'Douglas Milsome',1939,NULL),(5803,'Hal Mohr',1894,1974),(5804,'Bruno Mondi',1903,1991),(5805,'Donald M. Morgan',1932,NULL),(5806,'Ira H. Morgan',1889,1959),(5807,'Oswald Morris',1915,2014),(5808,'Reginald H. Morris',1918,2004),(5810,'Robby Müller',1940,2018),(5811,'Armando Nannuzzi',1925,2001),(5814,'Bruno Nuytten',1945,NULL),(5815,'Sven Nykvist',1922,2006),(5816,'Miroslav Ondrícek',1934,2015),(5817,'Arthur J. Ornitz',1916,1985),(5824,'Phil Parmet',1942,NULL),(5826,'C.M. Pennington-Richards',1911,2005),(5831,'Larry Pizer',1925,2008),(5832,'Franz Planer',1894,1963),(5833,'Gábor Pogány',1915,1999),(5834,'Gene Polito',1918,2010),(5835,'Sol Polito',1892,1960),(5836,'Dick Pope',1947,NULL),(5838,'Georges Périnal',1897,1965),(5839,'Elemér Ragályi',1939,2023),(5840,'Ray Rennahan',1896,1980),(5842,'Gayne Rescher',1924,2008),(5844,'Günther Rittau',1893,1971),(5845,'Owen Roizman',1936,2023),(5846,'Gernot Roll',1939,2020),(5847,'Phil Rosen',1888,1951),(5848,'Charles Rosher Jr.',1935,2015),(5849,'Harold Rosson',1895,1988),(5850,'Giuseppe Rotunno',1923,2021),(5851,'Juan Ruiz Anchía',1949,NULL),(5852,'John L. Russell',1905,1967),(5853,'Joseph Ruttenberg',1889,1983),(5856,'Theo van de Sande',1947,NULL),(5858,'Henning Schellerup',1928,2000),(5859,'Tobias A. Schliessler',1958,NULL),(5860,'Jörg Schmidt-Reitwein',1939,NULL),(5862,'Hans Schneeberger',1895,1971),(5864,'Charles Edgar Schoenbaum',1893,1951),(5865,'Fred Schuler',1940,NULL),(5867,'Eugen Schüfftan',1893,1977),(5868,'John Seale',1942,NULL),(5870,'John F. Seitz',1892,1979),(5871,'Dean Semler',1943,NULL),(5872,'Leon Shamroy',1901,1974),(5875,'Newton Thomas Sigel',1955,NULL),(5876,'Sandi Sissel',1949,NULL),(5877,'William V. Skall',1897,1976),(5878,'Douglas Slocombe',1913,2016),(5879,'Witold Sobocinski',1929,2018),(5880,'Leonard J. South',1913,2006),(5881,'Mike Southon',NULL,NULL),(5883,'Dante Spinotti',1943,NULL),(5886,'Vittorio Storaro',1940,NULL),(5887,'Archie Stout',1886,1973),(5888,'Harry Stradling Jr.',1925,2017),(5889,'Harry Stradling Sr.',1901,1970),(5891,'Tim Suhrstedt',1948,NULL),(5892,'Robert Surtees',1906,1985),(5893,'Peter Suschitzky',1941,NULL),(5895,'Edmond Séchan',1919,2002),(5896,'Philip Tannura',1897,1973),(5897,'David Tattersall',1960,NULL),(5898,'Ted Tetzlaff',1903,1995),(5901,'Armand Thirard',1899,1973),(5904,'Gregg Toland',1904,1948),(5905,'Aldo Tonti',1910,1988),(5906,'Roland Totheroh',1890,1967),(5907,'Luciano Tovoli',1936,NULL),(5909,'Brian Tufano',1939,2023),(5910,'Geoffrey Unsworth',1914,1978),(5911,'Jost Vacano',1934,NULL),(5913,'James Van Trees',1890,1973),(5915,'René Verzier',1934,NULL),(5916,'Sacha Vierny',1919,2001),(5919,'Mario Vulpiani',NULL,NULL),(5922,'Fritz Arno Wagner',1894,1958),(5923,'Ric Waite',1933,2012),(5924,'Harry Waxman',1912,1984),(5929,'Oliver Wood',1942,2023),(5930,'Bruce Worrall',NULL,NULL),(5931,'Alvin Wyckoff',1877,1957),(5932,'Reginald H. Wyer',1901,1970),(5933,'Steve Yaconelli',1941,2003),(5934,'Robert D. Yeoman',1951,NULL),(5935,'Bernard Zitzermann',1942,2018),(5936,'Vilmos Zsigmond',1930,2016),(5937,'Sergio D\'Offizi',1934,NULL),(5941,'Richard Addinsell',1904,1977),(5944,'William Alwyn',1905,1985),(5945,'Daniele Amfitheatrof',1901,1983),(5947,'George Antheil',1900,1959),(5948,'Jorge Arriagada',1943,NULL),(5949,'Eduard Artemyev',1937,2022),(5950,'Miguel Asins Arbó',1916,1996),(5952,'Georges Auric',1899,1983),(5953,'Luis Bacalov',1933,2017),(5956,'George Bassman',1914,1997),(5957,'Walter Baumgartner',1904,1997),(5958,'Les Baxter',1922,1996),(5959,'Giuseppe Becce',1877,1973),(5961,'Richard Rodney Bennett',1936,2012),(5963,'Nick Bicât',1949,NULL),(5964,'Georges Bizet',1838,1875),(5965,'Stanley Black',1913,2002),(5966,'Terence Blanchard',1962,NULL),(5968,'Werner Bochmann',1900,1993),(5970,'Bernardo Bonezzi',1964,2012),(5972,'Simon Boswell',1956,NULL),(5975,'Goran Bregovic',1950,NULL),(5976,'Bruce Broughton',1945,NULL),(5977,'Leo Brouwer',1939,NULL),(5979,'Robert F. Brunner',1938,2009),(5980,'George Bruns',1914,1983),(5982,'Roy Budd',1947,1993),(5985,'Ralph Burns',1922,2001),(5987,'David Buttolph',1902,1983),(5989,'Martin Böttcher',1927,2019),(5990,'John Cacavas',1930,2014),(5995,'Fiorenzo Carpi',1918,1997),(5996,'Gustavo César Carrión',NULL,NULL),(5999,'Gary Chang',1953,NULL),(6000,'Saul Chaplin',1912,1997),(6001,'Jay Chattaway',1946,NULL),(6005,'Salil Choudhury',1923,1995),(6007,'Alessandro Cicognini',1906,1995),(6009,'Chuck Cirino',NULL,NULL),(6010,'Stanley Clarke',1951,NULL),(6012,'Elia Cmiral',NULL,NULL),(6013,'Bob Cobert',1924,2020),(6014,'Michel Colombier',1939,2004),(6015,'Bill Conti',1942,NULL),(6016,'Michael Convertino',1952,NULL),(6017,'Carlo Maria Cordio',NULL,NULL),(6019,'Vladimir Cosma',1940,NULL),(6020,'Bruno Coulais',1954,NULL),(6022,'Hoyt Curtin',1922,2000),(6023,'John Dankworth',1927,2010),(6025,'Mason Daring',1949,NULL),(6026,'Guido De Angelis',1944,NULL),(6027,'Maurizio De Angelis',1947,NULL),(6028,'Francesco De Masi',1930,2005),(6030,'Frank De Vol',1911,1999),(6031,'Barry De Vorzon',1934,NULL),(6032,'Dick DeBenedictis',1935,NULL),(6034,'Éric Demarsan',1938,NULL),(6035,'Alexandre Desplat',1961,NULL),(6037,'Adolph Deutsch',1897,1980),(6040,'Robert Emmett Dolan',1908,1972),(6041,'Klaus Doldinger',1936,NULL),(6042,'François Dompierre',1943,NULL),(6043,'Pino Donaggio',1941,NULL),(6045,'Steve Dorff',1949,NULL),(6047,'John Du Prez',1946,NULL),(6050,'Anne Dudley',1956,NULL),(6051,'Antoine Duhamel',1925,2014),(6052,'George Duning',1908,2000),(6055,'Randy Edelman',1947,NULL),(6056,'Cliff Eidelman',1964,NULL),(6059,'Stephen Endelman',1962,NULL),(6061,'Brian Eno',1948,NULL),(6065,'Bent Fabricius-Bjerre',1924,2020),(6068,'Louis Febre',NULL,NULL),(6070,'George Fenton',1949,NULL),(6071,'Allyn Ferguson',1924,2010),(6074,'Cy Feuer',1911,2006),(6075,'Brad Fiedel',1951,NULL),(6076,'Jerry Fielding',1922,1980),(6077,'Robert Folk',NULL,NULL),(6078,'Louis Forbes',1902,1981),(6080,'David Michael Frank',1948,NULL),(6081,'Christopher Franke',1953,NULL),(6082,'Benjamin Frankel',1906,1973),(6085,'Arthur Freed',1894,1973),(6086,'Gerald Fried',1928,2023),(6087,'Hugo Friedhofer',1901,1981),(6088,'Fabio Frizzi',1951,NULL),(6089,'Dominic Frontiere',1931,2017),(6090,'Giovanni Fusco',1906,1968),(6091,'Szabolcs Fényes',1912,1986),(6092,'Serge Gainsbourg',1928,1991),(6093,'Douglas Gamley',1924,1998),(6094,'Antón García Abril',1933,2021),(6099,'Richard Gibbs',1955,NULL),(6102,'Goblin',NULL,NULL),(6104,'Ernest Gold',1921,1999),(6105,'Billy Goldenberg',1936,2020),(6106,'Elliot Goldenthal',1954,NULL),(6107,'Joel Goldsmith',1957,2012),(6108,'Miles Goodman',1949,1996),(6109,'Ron Goodwin',1925,2003),(6112,'Ron Grainer',1922,1981),(6115,'Dave Grusin',1934,NULL),(6116,'Christopher Gunning',1944,2023),(6118,'Manos Hatzidakis',1925,1994),(6121,'Marvin Hamlisch',1944,2012),(6122,'Jan Hammer',1948,NULL),(6123,'W. Franke Harling',1887,1958),(6124,'Richard Harvey',1953,NULL),(6126,'Neal Hefti',1922,2008),(6128,'Werner R. Heymann',1896,1961),(6129,'Michael Hoenig',1952,NULL),(6130,'Friedrich Hollaender',1896,1976),(6131,'Arthur Honegger',1892,1955),(6132,'Kenyon Hopkins',1912,1983),(6133,'James Newton Howard',1951,NULL),(6135,'Jacques Ibert',1890,1962),(6136,'Akira Ifukube',1914,2006),(6137,'Ilaiyaraaja',1943,NULL),(6141,'Björn Isfält',1942,1997),(6142,'Mark Isham',1951,NULL),(6143,'Pierre Jansen',1930,2015),(6144,'Maurice Jaubert',1900,1940),(6145,'Laurie Johnson',1927,NULL),(6147,'Bronislau Kaper',1902,1983),(6148,'Sol Kaplan',1919,1990),(6150,'Fred Karlin',1936,2004),(6153,'Jerome Kern',1885,1945),(6155,'Jürgen Knieper',1941,NULL),(6156,'Krzysztof Komeda',1931,1969),(6157,'Erich Wolfgang Korngold',1897,1957),(6158,'Joseph Kosma',1905,1969),(6159,'Raoul Kraushaar',1908,2001),(6161,'Richard LaSalle',1918,2015),(6162,'Francis Lai',1932,2018),(6164,'Angelo Francesco Lavagnino',1909,1987),(6166,'Michel Legrand',1932,2019),(6168,'John Lennon',1940,1980),(6169,'Sylvester Levay',NULL,NULL),(6171,'Daniel Licht',1957,2017),(6173,'Joseph LoDuca',1958,NULL),(6177,'Michel Magne',1930,1984),(6180,'Isidro B. Maiztegui',1905,1996),(6181,'Hans-Martin Majewski',1911,1997),(6182,'Anu Malik',1960,NULL),(6183,'Mark Mancina',1957,NULL),(6184,'Johnny Mandel',1925,2020),(6185,'Harry Manfredini',1943,NULL),(6186,'Hummie Mann',NULL,NULL),(6188,'John Massari',1957,NULL),(6189,'Brian May',1934,1997),(6191,'Toshirô Mayuzumi',1929,1997),(6193,'Joel McNeely',1959,NULL),(6195,'Gil Mellé',1931,2004),(6200,'Franco Micalizzi',1939,NULL),(6201,'Paul Misraki',1908,1998),(6203,'Cyril J. Mockridge',1896,1979),(6204,'Fred Mollin',NULL,NULL),(6205,'Mark Mothersbaugh',1950,NULL),(6208,'Fred Myrow',1939,1999),(6209,'Mario Nascimbene',1913,2002),(6213,'Lionel Newman',1916,1989),(6214,'Bruno Nicolai',1926,1991),(6215,'Lennie Niehaus',1929,2020),(6217,'Jack Nitzsche',1937,2000),(6218,'Alex North',1910,1991),(6219,'Michael Nyman',1944,NULL),(6221,'Riz Ortolani',1926,2014),(6223,'Jean-Claude Petit',1943,NULL),(6224,'Barrington Pheloung',1954,2019),(6225,'Stu Phillips',1929,NULL),(6227,'Piero Piccioni',1921,2004),(6228,'Franco Piersanti',1950,NULL),(6229,'Nicholas Pike',1955,NULL),(6230,'Terry Plumeri',1944,2016),(6231,'Basil Poledouris',1945,2006),(6233,'Michel Portal',1935,NULL),(6234,'Cole Porter',1891,1964),(6235,'Rachel Portman',1960,NULL),(6237,'Zbigniew Preisner',1955,NULL),(6238,'André Previn',1929,2019),(6240,'Anton Profes',1896,1976),(6246,'A.R. Rahman',1967,NULL),(6249,'Satyajit Ray',1921,1992),(6250,'Joe Renzetti',NULL,NULL),(6251,'Graeme Revell',1955,NULL),(6252,'Hugo Riesenfeld',1879,1939),(6254,'J. Peter Robinson',1945,NULL),(6256,'Richard Rodgers',1902,1979),(6257,'Heinz Roemheld',1901,1985),(6258,'Jeff Rona',NULL,NULL),(6260,'Leonard Rosenman',1924,2008),(6262,'François de Roubaix',1939,1975),(6264,'Michel Rubini',NULL,NULL),(6265,'Arthur B. Rubinstein',1938,2018),(6267,'Carlo Rustichelli',1916,2004),(6268,'Craig Safan',1948,NULL),(6270,'Hans J. Salter',1896,1994),(6271,'Philippe Sarde',1948,NULL),(6275,'Paul Sawtell',1906,1971),(6277,'Lalo Schifrin',1932,NULL),(6280,'Franz Schubert',1797,1828),(6286,'Bert Shefter',1904,1999),(6288,'David Shire',1937,NULL),(6290,'Howard Shore',1946,NULL),(6293,'Alan Silvestri',1950,NULL),(6294,'Claudio Simonetti',1952,NULL),(6296,'Mark Snow',1946,NULL),(6299,'Herman Stein',1915,2007),(6300,'Ronald Stein',1930,1988),(6302,'Leith Stevens',1909,1970),(6303,'George Stoll',1902,1985),(6307,'Herbert Stothart',1885,1949),(6308,'Oscar Straus',1870,1954),(6312,'Jule Styne',1905,1994),(6313,'Harry Sukman',1912,1984),(6315,'Jean-Marie Sénia',1947,NULL),(6316,'Tôru Takemitsu',1930,1996),(6318,'Pyotr Ilyich Tchaikovsky',1840,1893),(6319,'Mikis Theodorakis',1925,2021),(6320,'Maurice Thiriet',1906,1972),(6323,'Dimitri Tiomkin',1894,1979),(6324,'Ernst Toch',1887,1964),(6325,'Armando Trovajoli',1917,2013),(6330,'Georges Van Parys',1902,1971),(6331,'Vangelis',1943,2022),(6336,'W.G. Snuffy Walden',1950,NULL),(6337,'Oliver Wallace',1887,1963),(6338,'William Walton',1902,1983),(6339,'Stephen Warbeck',1953,NULL),(6341,'Debbie Wiseman',1963,NULL),(6342,'Jean Yatove',1903,1978),(6343,'Lee Zahler',1893,1947),(6344,'Paul Zaza',1952,NULL),(6347,'June Chadwick',1951,NULL),(6351,'Julie Caitlin Brown',1961,NULL),(6359,'Jeremy Presner',NULL,NULL),(6367,'Jennie Muskett',NULL,NULL),(6388,'David O. Selznick',1902,1965),(6400,'Scott Kennedy',NULL,NULL),(6408,'John J. Campbell',1950,2019),(6428,'Arlene Dahl',1925,2021),(6438,'George Saunders',1959,NULL),(6442,'Richard Robbins',1940,2012),(6444,'Patrice Lucien Cochet',1968,NULL),(6445,'Éric Rohmer',1920,2010),(6452,'Stanley Kramer',1913,2001),(6471,'Elsa Lanchester',1902,1986),(6476,'Paul McGuigan',1963,NULL),(6487,'Jim Sheridan',1949,NULL),(6498,'Majid Majidi',1959,NULL),(6509,'Rodrigo Prieto',1965,NULL),(6516,'Chris Terrio',1976,NULL),(6534,'Phil Hay',NULL,NULL),(6540,'Michael D. Margulies',1936,NULL),(6544,'Ian Ellis',NULL,NULL),(6554,'Rodrigo García',1959,NULL),(6560,'Sarah Levy',NULL,NULL),(6561,'Velton Ray Bunch',1948,NULL),(6570,'Russell Boyd',1944,NULL),(6573,'Philippe Leroy',1930,NULL),(6582,'Alessandro Pesci',1960,NULL),(6592,'Trudi Callon',NULL,NULL),(6597,'John Penotti',NULL,NULL),(6610,'Donal Logue',1966,NULL),(6613,'Don Murphy',1966,NULL),(6621,'Jean-Charles Tacchella',1925,NULL),(6624,'Bill Anderson',NULL,NULL),(6625,'Steve Barron',1956,NULL),(6633,'Tom Houghton',1947,2023),(6663,'Enrique Murciano',1973,NULL),(6669,'William Sadler',1950,NULL),(6683,'Vince Jolivette',1971,NULL),(6685,'Gerry Lively',NULL,NULL),(6689,'Preity G Zinta',1975,NULL),(6692,'Rachael Crawford',1969,NULL),(6701,'John Schwartzman',1960,NULL),(6702,'Ana Belén',1951,NULL),(6713,'Rachael Harris',1968,NULL),(6716,'Seth Walther',NULL,NULL),(6721,'Susan May Pratt',1974,NULL),(6733,'Catalaine Knell',NULL,NULL),(6734,'Alain Corneau',1943,2010),(6737,'Hark Bohm',1939,NULL),(6740,'Uwe Bohm',1962,2022),(6741,'Marie Déa',1912,1992),(6762,'Saeed Jaffrey',1929,2015),(6763,'Jackie Shroff',1957,NULL),(6765,'Vidhu Vinod Chopra',1952,NULL),(6774,'Joshua Sinclair',1953,NULL),(6777,'John Axelrad',NULL,NULL),(6780,'Denis Maloney',NULL,NULL),(6782,'E.T.A. Hoffmann',1776,1822),(6787,'Sam Irvin',1956,NULL),(6790,'Jonathan D. Krane',1952,2016),(6791,'Benjamin Herrmann',1971,NULL),(6795,'Salman Khan',1965,NULL),(6800,'Sandy Dennis',1937,1992),(6801,'Antoine Monot Jr.',1975,NULL),(6807,'Michèle Morgan',1920,2016),(6809,'Stephen Tolkin',NULL,NULL),(6837,'Bill Melendez',1916,2008),(6845,'Sally Potter',1949,NULL),(6846,'Ric Roman Waugh',NULL,NULL),(6851,'Madeleine Blaustein',1960,2008),(6853,'Tim Hunter',1947,NULL),(6854,'Roger Spottiswoode',1945,NULL),(6865,'Hanno Lentz',1965,NULL),(6872,'Sergio Donati',1933,NULL),(6873,'Peter Samuelson',NULL,NULL),(6874,'Julie Davis',1969,NULL),(6875,'Arnon Manor',NULL,NULL),(6888,'Tom Noonan',1951,NULL),(6889,'Herbert Ross',1927,2001),(6890,'Paul Scofield',1922,2008),(6893,'John Vernon',1932,2005),(6894,'Michael De Luca',1965,NULL),(6902,'Richard D\'Ovidio',NULL,NULL),(6904,'Tony Gilroy',1956,NULL),(6905,'Christoph Müller',1964,NULL),(6911,'Steve Yedlin',1975,NULL),(6916,'Michael Ritchie',1938,2001),(6918,'Christopher Gosch',NULL,NULL),(6933,'Nadine Muse',NULL,NULL),(6939,'Richard Berry',1950,NULL),(6943,'Charles Lamont',1895,1993),(6952,'Alexia Landeau',NULL,NULL),(6954,'Pierre Schoendoerffer',1928,2012),(6955,'Lewis Schoenbrun',NULL,NULL),(6956,'Jesse Vint',1940,NULL),(6958,'Jonathan Tucker',1982,NULL),(6959,'Dan Ireland',1949,2016),(6960,'John Madden',1949,NULL),(6969,'Elizabeth Banks',1974,NULL),(6970,'Patricia Belcher',1954,NULL),(6971,'Irene Blecua',NULL,NULL),(6994,'Pascal Judelewicz',NULL,NULL),(6997,'Peter M. Lenkov',1964,NULL),(7011,'Robert Salerno',NULL,NULL),(7014,'Anne-Dominique Toussaint',1959,NULL),(7023,'José Luis López Vázquez',1922,2009),(7029,'Trey Callaway',NULL,NULL),(7037,'John Bailey',1942,NULL),(7042,'Herbert Lom',1917,2012),(7045,'Scott Wiper',1970,NULL),(7055,'Lawrence Taub',NULL,NULL),(7069,'Pierre Richard',1934,NULL),(7075,'Jon Bernstein',NULL,NULL),(7079,'James Greer',1971,NULL),(7082,'John Stockwell',1961,NULL),(7091,'Gabe Sachs',NULL,NULL),(7098,'Paul Hubschmid',1917,2001),(7102,'Tabu',1970,NULL),(7113,'Nana Patekar',1951,NULL),(7124,'Suhasini',1961,NULL),(7127,'Keith Moon',1946,1978),(7128,'Louis Morneau',NULL,NULL),(7136,'Michael Sloane',NULL,NULL),(7139,'Hark Tsui',1950,NULL),(7140,'Stanley Weiser',NULL,NULL),(7141,'Walter Werzowa',1960,NULL),(7144,'Santosh Sivan',1964,NULL),(7154,'Stephen Marcus',1962,NULL),(7155,'Lynda Boyd',1965,NULL),(7156,'Ortwin Freyermuth',NULL,NULL),(7158,'Niels Mueller',1961,NULL),(7171,'Dan Molina',NULL,NULL),(7175,'Alain Dahan',1942,1992),(7178,'Walter Lassally',1926,2017),(7181,'Yash Chopra',1932,2012),(7182,'Alex Cox',1954,NULL),(7186,'Arthur Miller',1915,2005),(7193,'Richie Keen',NULL,NULL),(7217,'Jack Carson',1910,1963),(7218,'Tom Conway',1904,1967),(7219,'Donald Cook',1901,1961),(7220,'Ricardo Cortez',1900,1977),(7222,'Paul Douglas',1907,1959),(7224,'Eleanor Powell',1912,1982),(7225,'Jane Powell',1929,2021),(7229,'Hertha Thiele',1908,1984),(7233,'Bryce Zabel',NULL,NULL),(7236,'Claude Waringo',NULL,NULL),(7237,'Leonor Varela',1972,NULL),(7317,'Aage Aaberge',NULL,NULL),(7344,'Kim Fupz Aakeson',1958,NULL),(7491,'Bonnie Aarons',1960,NULL),(7539,'John Aasen',1890,1938),(7554,'AAV Creative Unit',NULL,NULL),(7609,'Pere Abadal',NULL,NULL),(7625,'A.C. Abadie',1878,1950),(7646,'Frank Abagnale Jr.',1948,NULL),(7648,'George Abagnalo',NULL,NULL),(7672,'Eduard Abalov',1927,1987),(7707,'Nati Abascal',1943,NULL),(7711,'Silvia Abascal',1979,NULL),(7746,'Diego Abatantuono',1955,NULL),(7773,'Korhan Abay',1954,NULL),(7785,'Refet Abazi',1964,NULL),(7811,'Gassan Abbas',NULL,NULL),(7814,'Hiam Abbass',1960,NULL),(7825,'Rizz Abbasi',NULL,NULL),(7831,'Allison Abbate',1965,NULL),(7896,'David Abbitt',NULL,NULL),(7940,'Bruce Abbott',1954,NULL),(7941,'Bud Abbott',1895,1974),(7958,'Diahnne Abbott',1945,NULL),(7966,'Elliot Abbott',NULL,NULL),(7973,'George Abbott',1887,1995),(7995,'John Abbott',1905,1996),(8036,'Paul Abbott',1960,NULL),(8053,'Scott Abbott',NULL,NULL),(8055,'Shepard Abbott',NULL,NULL),(8079,'Karim Abbou',1968,NULL),(8090,'Dino Abbrescia',1966,NULL),(8096,'Michèle Abbé-Vannier',NULL,NULL),(8280,'Achmed Abdullah',1881,1945),(8330,'Pamela Abdy',NULL,NULL),(8352,'Noriyuki Abe',1961,NULL),(8356,'Kôbô Abe',1924,1993),(8367,'Naoyuki Abe',NULL,NULL),(8369,'Sadao Abe',1970,NULL),(8375,'Shûji Abe',NULL,NULL),(8379,'Tak W. Abe',NULL,NULL),(8382,'Teruaki Abe',NULL,NULL),(8384,'Tôru Abe',1917,1993),(8399,'Eliette Abecassis',1969,NULL),(8416,'Hossein Abedini',NULL,NULL),(8441,'David Abel',1883,1973),(8496,'Walter Abel',1898,1987),(8533,'Alistair Abell',NULL,NULL),(8640,'Betty Aberlin',1942,NULL),(8731,'Nasar Abich Jr.',NULL,NULL),(8743,'Jonathan Aibel',NULL,NULL),(8787,'Simon Abkarian',1962,NULL),(8859,'Cheryl Abood',NULL,NULL),(8875,'Rabih Abou-Khalil',NULL,NULL),(8892,'Romi Aboulafia',1984,NULL),(8894,'Amir AboulEla',NULL,NULL),(8926,'Brad Abraham',NULL,NULL),(8935,'Dustin Lee Abraham',NULL,NULL),(8937,'Eric Abraham',NULL,NULL),(8953,'Marc Abraham',NULL,NULL),(9016,'Jon Abrahams',1977,NULL),(9029,'Peter Abrahams',1947,NULL),(9036,'Fredrik Abrahamsen',1967,NULL),(9106,'Jack Abramoff',1958,NULL),(9107,'Robert Abramoff',NULL,NULL),(9119,'Vitali Abramov',1936,NULL),(9142,'Michel Abramowicz',1950,NULL),(9161,'Barry Abrams',1944,2009),(9183,'Ian Abrams',NULL,NULL),(9190,'J.J. Abrams',1966,NULL),(9207,'Marc Abrams',NULL,NULL),(9222,'Peter Abrams',NULL,NULL),(9272,'Richard Gilbert Abramson',NULL,NULL),(9287,'Aluizio Abranches',NULL,NULL),(9463,'Hany Abu-Assad',1961,NULL),(9494,'André Abujamra',1965,NULL),(9530,'Alon Aboutboul',1965,NULL),(9540,'AC/DC',NULL,NULL),(9629,'Stefano Accorsi',1971,NULL),(9716,'Kirk Acevedo',1971,NULL),(9743,'Jon Acevski',NULL,NULL),(9766,'Marcel Achard',1899,1974),(9806,'James Acheson',NULL,NULL),(9918,'Amy Acker',1976,NULL),(9919,'Antony Acker',NULL,NULL),(9942,'Shane Acker',NULL,NULL),(9943,'Sharon Acker',1935,2023),(10004,'Peter Ackerman',NULL,NULL),(10012,'Robert Allan Ackerman',1944,2022),(10060,'Noreen Ackland',1921,2013),(10063,'Rodney Ackland',1908,1991),(10075,'Jensen Ackles',1978,NULL),(10096,'Barry Ackroyd',1954,NULL),(10128,'David Acomba',1944,NULL),(10134,'Art Acord',1890,1931),(10139,'Lance Acord',1964,NULL),(10169,'Carlos Acosta',1973,NULL),(10207,'Juana Acosta',1976,NULL),(10338,'Jason \'Wee Man\' Acuña',1973,NULL),(10349,'Wanda Acuna',1966,NULL),(10402,'Yumi Adachi',1981,NULL),(10434,'Gilbert Adair',1944,2011),(10471,'Sandra Adair',1952,NULL),(10544,'Jean-François Adam',1938,1980),(10553,'Ken Adam',1921,2016),(10574,'Peter R. Adam',1957,NULL),(10696,'Ales Adamovich',1927,1994),(10736,'Amy Adams',1974,NULL),(10781,'Brandon Quintin Adams',1979,NULL),(10818,'Catlin Adams',1950,NULL),(10850,'Cleve F. Adams',1884,1949),(10878,'Dave Adams',NULL,NULL),(10915,'Don Adams',1923,2005),(10930,'Douglas Adams',1952,2001),(10963,'Evan Adams',1966,NULL),(10987,'Gerald Drayson Adams',1900,1988),(11038,'Jane Adams',1965,NULL),(11086,'John K. Adams',NULL,NULL),(11104,'Julian Adams',NULL,NULL),(11105,'Julie Adams',1926,2019),(11148,'Lillian Adams',1922,2011),(11190,'Marshall Adams',NULL,NULL),(11244,'Nick Adams',1931,1968),(11254,'Patch Adams',1945,NULL),(11293,'Richard Adams',1920,2016),(11343,'Samuel Hopkins Adams',1871,1958),(11354,'Shea Adams',NULL,NULL),(11407,'Tony Adams',1953,2005),(11430,'Warren Adams',1916,1995),(11451,'Will Adamsdale',1974,NULL),(11470,'Andrew Adamson',1966,NULL),(11582,'Anton Adasinsky',1959,NULL),(11623,'Charles Addams',1912,1988),(11625,'Dawn Addams',1930,1985),(11639,'Lisa Addario',NULL,NULL),(11657,'Giovanni Addessi',NULL,NULL),(11665,'Robert Addie',1960,2003),(11688,'Keith Addis',NULL,NULL),(11709,'John Addison',1920,1998),(11741,'Wesley Addy',1913,1996),(11752,'Maren Ade',1976,NULL),(11758,'Tunde Adebimpe',1975,NULL),(11792,'Jan Adele',1936,2000),(11803,'Jean-Claude Adelin',1958,NULL),(11850,'Tevin Adelman',NULL,NULL),(11867,'Gary Adelson',1953,NULL),(11910,'Pierre Adenot',NULL,NULL),(11929,'Gisela Aderhold',1972,NULL),(11937,'Daniel Ades',1932,1992),(11948,'Georges Adet',1894,1979),(11967,'Kamala Adhikari',NULL,NULL),(11978,'Nasir Adib',NULL,NULL),(12033,'Martín Adjemián',1932,2006),(12055,'Eric Adkins',NULL,NULL),(12078,'Scott Adkins',1976,NULL),(12081,'Trace Adkins',1962,NULL),(12114,'Brian Adler',NULL,NULL),(12117,'Buddy Adler',1909,1960),(12137,'Duane Adler',NULL,NULL),(12148,'Felix Adler',1884,1963),(12155,'Gilbert Adler',1946,NULL),(12178,'Jerry Adler',1929,NULL),(12182,'Jim Adler',NULL,NULL),(12204,'Luther Adler',1903,1984),(12206,'Mark Adler',NULL,NULL),(12239,'Sarah Adler',NULL,NULL),(12280,'Eleonore Adlon',1941,NULL),(12281,'Felix O. Adlon',1967,NULL),(12289,'Stephen Adly Guirgis',NULL,NULL),(12358,'Kristina Adolphson',1937,NULL),(12389,'Guido Adorni',NULL,NULL),(12395,'Renée Adorée',1898,1933),(12398,'Razaaq Adoti',NULL,NULL),(12433,'Caroline Adrian',NULL,NULL),(12441,'Iris Adrian',1912,1994),(12443,'Jan Sterling',1921,2004),(12451,'Max Adrian',1903,1973),(12496,'Gilles Adrien',NULL,NULL),(12523,'Scott Adsit',1965,NULL),(12524,'Frank Adu',1937,2018),(12634,'Aeschylus',NULL,NULL),(12700,'Mindy Affrime',NULL,NULL),(12810,'Nina Agadzhanova',1889,1974),(12834,'Rami Agami',NULL,NULL),(12886,'Morio Agata',1948,NULL),(12938,'James Agee',1909,1955),(13037,'Shohreh Aghdashloo',1952,NULL),(13075,'Keith Agius',1963,NULL),(13221,'Philippe Agostini',1910,2001),(13234,'David Agosto',NULL,NULL),(13313,'Teodoro Corrà',1934,1996),(13396,'Sergio Aguero',NULL,NULL),(13583,'Michael Aguilar',NULL,NULL),(13611,'Sandro Aguilar',1974,NULL),(13637,'Juan Miguel Aguilera',NULL,NULL),(13683,'Carmen Aguirre',NULL,NULL),(13707,'Javier Agirre',NULL,NULL),(13761,'Javier Aguirresarobe',1948,NULL),(13828,'Lawrence Ah-Mon',1949,NULL),(13833,'Ah-Lei Gua',1944,NULL),(13842,'Abolfazl Ahankhah',NULL,NULL),(13844,'Mehrdad Ahankhah',NULL,NULL),(13869,'Charlie Ahearn',NULL,NULL),(13878,'Joe Ahearne',1963,NULL),(13889,'Lloyd Ahern II',1942,NULL),(13914,'Lloyd Ahern Sr.',1905,1983),(13932,'Michael Aherne',NULL,NULL),(13972,'Mac Ahlberg',1931,2012),(13996,'Eve Ahlert',NULL,NULL),(14062,'Börje Ahlstedt',1939,NULL),(14101,'Maher Ahmad',NULL,NULL),(14123,'Mohammad Ahmadi',NULL,NULL),(14215,'Ahn Nae-sang',1964,NULL),(14217,'Philip Ahn',1905,1978),(14247,'Eero Aho',1968,NULL),(14251,'Juhani Aho',1861,1921),(14297,'Richard Ahren',NULL,NULL),(14300,'Staffan Ahrenberg',1957,NULL),(14326,'Lynn Ahrens',1948,NULL),(14358,'Arthur W. Ahrweiler',1951,NULL),(14420,'Tomoko Ai',1954,NULL),(14426,'Óscar Aibar',NULL,NULL),(14557,'Rikako Aikawa',1967,NULL),(14582,'Liam Aiken',1990,NULL),(14606,'Luke Aikman',1983,NULL),(14650,'Jean-Claude Aimini',NULL,NULL),(14694,'Karim Aïnouz',1966,NULL),(14697,'Chris Ainscough',NULL,NULL),(14703,'Marian Ainslee',1896,1966),(14714,'Scott Ainslie',NULL,NULL),(14785,'Juliet Giglio',NULL,NULL),(14800,'Mireille Darc',1938,2017),(14808,'Conchita Airoldi',NULL,NULL),(14825,'Ramiro Civita',NULL,NULL),(14873,'Harvey Atkin',1942,2017),(14874,'Iain Aitken',NULL,NULL),(14960,'Alexandre Aja',1978,NULL),(14981,'Florijan Ajdini',NULL,NULL),(15128,'Miyoko Akaza',1944,NULL),(15130,'Demet Akbag',1960,NULL),(15149,'Jacques Akchoti',1956,NULL),(15196,'Malin Akerman',1978,NULL),(15199,'Andra Akers',1943,2002),(15223,'Donna Akersten',NULL,NULL),(15242,'Fatemeh Cherag Akhar',NULL,NULL),(15254,'Akhenaton',1968,NULL),(15295,'Zoya Akhtar',1972,NULL),(15310,'Aki Takejô',1947,2022),(15316,'Masayuki Akieda',NULL,NULL),(15327,'Mara Brock Akil',1970,NULL),(15328,'Salim Akil',1964,NULL),(15332,'Akimi Yoshida',NULL,NULL),(15359,'Fatih Akin',1973,NULL),(15370,'Philip Akin',1950,NULL),(15382,'Adewale Akinnuoye-Agbaje',1967,NULL),(15399,'Zoe Akins',1886,1958),(15425,'Katsuhito Akiyama',1950,NULL),(15443,'Malek Akkad',NULL,NULL),(15459,'Nagarjuna Akkineni',1959,NULL),(15528,'Necati Akpinar',1962,NULL),(15573,'Albert Akst',1899,1958),(15611,'Ryûnosuke Akutagawa',1892,1927),(15673,'Al Vicente',NULL,NULL),(15677,'Hudhail Al-Amir',NULL,NULL),(15760,'Eugenio Alabiso',1937,NULL),(15777,'Nick Alachiotis',NULL,NULL),(15784,'Züli Aladag',1968,NULL),(15801,'Aladar Laszlo',1896,1958),(15865,'Zak Santiago',NULL,NULL),(15899,'Robert Alan Aurthur',1922,1978),(15913,'Devon Alan',1991,NULL),(15957,'Lissi Alandh',1930,2008),(15961,'Bernard Alane',1948,NULL),(16092,'Faruk Alatan',NULL,NULL),(16105,'Gustavo Alatriste',1922,2006),(16139,'Robert Alazraki',1944,NULL),(16141,'Carlos Alazraqui',1962,NULL),(16183,'Maria Alba',1910,1996),(16263,'Antonio Albanese',1964,NULL),(16286,'Andrea Albani',1960,1994),(16295,'Romano Albani',1945,NULL),(16317,'Fernande Albany',1889,1966),(16332,'Damon Albarn',1968,NULL),(16361,'Edward Albee',1928,2016),(16365,'Josh Albee',1959,NULL),(16370,'Mark Albela',NULL,NULL),(16371,'Sergio Albelli',1965,NULL),(16444,'Helge Albers',NULL,NULL),(16473,'Arthur Albert',1946,NULL),(16475,'Barbara Albert',1970,NULL),(16479,'Cari-Esta Albert',NULL,NULL),(16534,'Katherine Albert',1902,1970),(16584,'Ross Albert',NULL,NULL),(16603,'Trevor Albert',NULL,NULL),(16628,'Barbara Alberti',1943,NULL),(16662,'Maryse Alberti',1954,NULL),(16776,'Jack Albertson',1907,1981),(16837,'Edoardo Albinati',1956,NULL),(16850,'Jens Albinus',1965,NULL),(16852,'Francesc Albiol',1957,NULL),(16882,'Giulio Albonico',NULL,NULL),(16895,'Graham Alborough',NULL,NULL),(16957,'Kurt Albrecht',NULL,NULL),(17013,'Hardie Albright',1903,1975),(17020,'Joey Albright',NULL,NULL),(17030,'Lola Albright',1924,2017),(17058,'Larry Y. Albucher',1939,NULL),(17223,'Diego Alchimede',NULL,NULL),(17235,'Bob Alcivar',1938,NULL),(17237,'José Luis Alcobendas',NULL,NULL),(17274,'Luis Alcoriza',1918,1992),(17301,'Louisa May Alcott',1832,1888),(17305,'Todd Alcott',1961,NULL),(17343,'Damián Alcázar',1953,NULL),(17358,'Ángel Alcázar',1955,2013),(17376,'Robert Alda',1914,1986),(17447,'Steven Melching',1968,NULL),(17450,'Charles Bernstein',1943,NULL),(17491,'Norman Alden',1924,2012),(17519,'Don Alder',NULL,NULL),(17577,'Christine Alderson',NULL,NULL),(17596,'John Alderton',1940,NULL),(17620,'William Porter',1947,2019),(17661,'Bess Streeter Aldrich',1881,1954),(17690,'Matthew Aldrich',NULL,NULL),(17699,'Scott Aldrich',NULL,NULL),(17703,'William Aldrich',1944,2006),(17855,'Julio Alejandro',1906,1995),(17893,'Grigoriy Aleksandrov',1903,1983),(17914,'Marina Aleksandrova',1982,NULL),(18079,'Vera Alentova',1942,NULL),(18093,'Christian Alers',1922,2019),(18139,'Raymond Alessandrini',1948,NULL),(18234,'Adriana Alexander',NULL,NULL),(18268,'B.J. Alexander',NULL,NULL),(18271,'Barbara Niven',NULL,NULL),(18357,'David Alexander',NULL,NULL),(18358,'David Alexander',NULL,NULL),(18359,'David Alexander',NULL,NULL),(18470,'J. Grubb Alexander',1887,1932),(18497,'Jeff Alexander',1910,1989),(18515,'John Alexander',NULL,NULL),(18573,'Les Alexander',NULL,NULL),(18583,'Lloyd Alexander',1924,2007),(18630,'Michele Alexander',NULL,NULL),(18698,'Rita Alexander',NULL,NULL),(18735,'Scott Alexander',1963,NULL),(18755,'Stan Alexander',NULL,NULL),(18777,'Terry Alexander',1947,NULL),(18824,'Danielle Alexandra',NULL,NULL),(18936,'Alexis Alexanian',1962,NULL),(18963,'Sherman Alexie',1966,NULL),(18966,'Dennis Alexio',1959,NULL),(19079,'Luis Alfaro',NULL,NULL),(19242,'Daniel Alfredson',1959,NULL),(19247,'Tomas Alfredson',1965,NULL),(19282,'James Algar',1912,1998),(19341,'Daniel Algrant',1959,NULL),(19346,'Nelson Algren',1909,1981),(19415,'Dureyshevar',NULL,NULL),(19464,'Muzaffar Ali',1944,NULL),(19507,'Wajid Ali',1967,2020),(19528,'Hrant Alianak',1950,NULL),(19530,'Carlo Alianello',1901,1981),(19563,'Mario Alicata',1918,1966),(19706,'Joan Alison',1901,1992),(19858,'Stephanie Allain',1959,NULL),(19876,'Yves Allaire',NULL,NULL),(19885,'Roger Allam',1953,NULL),(19886,'Eric Allaman',1959,NULL),(19922,'Elizabeth Allan',1910,1990),(20022,'Ted Allan',1916,1995),(20023,'Ted Allan',1910,1993),(20041,'William Alland',1916,1997),(20065,'Tony Allard',NULL,NULL),(20145,'Louise Allbritton',1920,1979),(20150,'Britt Allcroft',1943,NULL),(20180,'Allegoo',NULL,NULL),(20239,'Adrianne Allen',1907,1993),(20264,'Andrew James Allen',1987,NULL),(20313,'William Allen Castleman',1922,2006),(20329,'Brittany Allen',1986,NULL),(20431,'David E. Allen',1962,NULL),(20441,'Dede Allen',1923,2010),(20489,'Elise Allen',NULL,NULL),(20491,'Elizabeth Allen Rosenbaum',NULL,NULL),(20522,'Fred Allen',1896,1955),(20626,'Janis Allen',NULL,NULL),(20653,'Jim Allen',1926,1999),(20739,'Krista Allen',NULL,NULL),(20751,'Laura Allen',1974,NULL),(20765,'Lewis Allen',1905,2000),(20767,'Lewis M. Allen',1922,2003),(20820,'Matt Allen',NULL,NULL),(20897,'Penelope Allen',NULL,NULL),(20901,'Peter Allen',NULL,NULL),(20906,'Peter Allen',NULL,NULL),(20918,'R.S. Allen',1924,1981),(21065,'Stanford C. Allen',NULL,NULL),(21100,'Tessa Allen',1996,NULL),(21132,'Tyrees Allen',1954,NULL),(21196,'Isabel Allende',1942,NULL),(21249,'Roger Allers',NULL,NULL),(21329,'Sara Allgood',1880,1950),(21363,'Michael Allin',1944,NULL),(21436,'Forrest Allison',NULL,NULL),(21504,'Ray Allister',NULL,NULL),(21600,'Bruce Allpress',1930,2020),(21644,'Eric Allum',NULL,NULL),(21645,'Kerstii Allum',NULL,NULL),(21655,'Pernilla Allwin',1970,NULL),(21656,'Wayne Allwine',1947,2009),(21667,'Astrid Allwyn',1905,1978),(21687,'William Allyn',1927,1999),(21747,'Maryiam Palvin Almani',NULL,NULL),(21823,'Cleia Almeida',1982,NULL),(21835,'Joaquim de Almeida',1957,NULL),(21899,'Michael Almereyda',1959,NULL),(21948,'Agustín Almodóvar',1955,NULL),(21961,'Alan Almond',NULL,NULL),(21977,'Peter O. Almond',NULL,NULL),(22029,'Sándor Almási',1975,NULL),(22034,'Éva Almássy Albert',1948,NULL),(22053,'Mary Aloe',NULL,NULL),(22061,'Sebastian Aloi',1972,NULL),(22085,'Giaime Alonge',1968,NULL),(22112,'Alejandro Ulloa',1926,2004),(22134,'Anabel Alonso',1964,NULL),(22161,'Daniella Alonso',NULL,NULL),(22196,'Will More',1949,2017),(22264,'Rafael Alonso',1920,1998),(22285,'Victoria Alonso',1965,NULL),(22306,'Laz Alonso',1974,NULL),(22390,'Edward L. Alperson',1895,1969),(22397,'Craig Alpert',NULL,NULL),(22540,'Russ T. Alsobrook',1946,NULL),(22609,'Hanna Alström',1981,NULL),(22688,'Ernie Altbacker',NULL,NULL),(22709,'Steve Alten',1959,NULL),(22741,'Jeremy Alter',NULL,NULL),(22764,'Ernesto Alterio',1970,NULL),(22765,'Héctor Alterio',1929,NULL),(22821,'Elena Altieri',1910,1997),(22828,'Kevin Altieri',NULL,NULL),(22883,'Bruce Altman',1955,NULL),(22903,'John Altman',1949,NULL),(22913,'Mark A. Altman',NULL,NULL),(22939,'Stephen Altman',1956,NULL),(22969,'Eric Altmayer',NULL,NULL),(22971,'Nicolas Altmayer',NULL,NULL),(23003,'John Alton',1901,1996),(23260,'George Alvarez',1960,NULL),(23296,'Matias Alvarez',NULL,NULL),(23297,'Matt Alvarez',NULL,NULL),(23315,'Rick Alvarez',NULL,NULL),(23341,'Fabienne Alvarez-Giro',NULL,NULL),(23355,'Christian Alvart',1974,NULL),(23395,'Charles Alverson',1935,2020),(23398,'Timothy Alverson',1964,NULL),(23469,'Joe Alves',1936,NULL),(23615,'Peter Alwazzan',NULL,NULL),(23662,'Nicole Alysia',NULL,NULL),(23668,'Lyle Alzado',1949,1992),(23715,'Shigeru Amachi',1931,1985),(23832,'Mathieu Amalric',1965,NULL),(23858,'Yûki Amami',1967,NULL),(23862,'Hideyo Amamoto',1926,2003),(23894,'Betty Amann',1905,1990),(23917,'Mayumi Amano',NULL,NULL),(23923,'Yoshitaka Amano',1952,NULL),(23924,'Yuri Amano',1966,NULL),(23929,'Charles Band',1951,NULL),(23940,'Armand Amar',1953,NULL),(24013,'Suzana Amaral',1932,2020),(24123,'Michel Amathieu',NULL,NULL),(24127,'Edmondo Amati',1920,1992),(24155,'Giuseppe Amato',1899,1964),(24169,'Mark Amato',1965,NULL),(24388,'David Ambrose',1943,NULL),(24404,'Lauren Ambrose',1978,NULL),(24406,'Marc Ambrose',NULL,NULL),(24589,'Mario Amendola',1910,1993),(24593,'Tony Amendola',1951,NULL),(24622,'Alejandro Amenábar',1972,NULL),(24669,'Adrienne Ames',1903,1947),(24718,'Jonathan Ames',NULL,NULL),(24758,'Winthrop Ames',1870,1937),(24782,'Carlos Amezcua',1953,NULL),(24825,'Vanio Amici',1947,NULL),(24847,'Sergio Amidei',1904,1981),(24853,'Denys Amiel',1884,1977),(24856,'Jack Amiel',NULL,NULL),(24884,'Ángel Amigo',NULL,NULL),(24887,'Santiago Amigorena',1962,NULL),(24894,'Jean Meckert',1910,1995),(24909,'Mark Amin',NULL,NULL),(24912,'Shimit Amin',NULL,NULL),(24925,'Hossein Amini',1966,NULL),(24931,'Marianne Aminoff',1916,1984),(25006,'Kingsley Amis',1922,1995),(25052,'Niccolò Ammaniti',1966,NULL),(25165,'Marcel Amont',1929,2023),(25355,'John Amplas',1949,NULL),(25371,'David Amram',1930,NULL),(25465,'Mitchell Amundsen',1958,NULL),(25483,'Eva Amurri',1985,NULL),(25497,'George Amy',1903,1986),(25523,'Amédée',1923,1985),(25534,'Jean-Pierre Améris',1961,NULL),(25538,'Patxi Amezcua',NULL,NULL),(25720,'Chris Anastassiades',NULL,NULL),(25745,'Elena Anaya',1975,NULL),(25774,'Suzan Anbeh',1970,NULL),(25823,'Dominic Anciano',1959,NULL),(25843,'Cecile Anckarswärd',1942,NULL),(25858,'Joseph Ancore Jr.',NULL,NULL),(25954,'Jacqueline Andere',1938,NULL),(25978,'Allison Anders',1954,NULL),(25997,'Donna Anders',1936,NULL),(26011,'Glenn Anders',1889,1981),(26035,'Luana Anders',1938,1996),(26039,'Merry Anders',1934,2012),(26106,'Bridgette Andersen',1975,1997),(26153,'Hans Christian Andersen',1805,1875),(26187,'Kasper Tuxen',1977,NULL),(26285,'Shedrack Anderson III',1977,NULL),(26364,'Anthony Anderson',1970,NULL),(26419,'Bill Anderson',1911,1997),(26442,'Brad Anderson',1964,NULL),(26483,'Carl Anderson',1945,2004),(26533,'Cletus Anderson',1938,2007),(26563,'Daphne Anderson',1922,2013),(26565,'Darla K. Anderson',1968,NULL),(26639,'Doris Anderson',1897,1971),(26671,'Elizabeth Anderson',NULL,NULL),(26687,'Erich Anderson',NULL,NULL),(26701,'Ester Anderson',1943,NULL),(26755,'Gerry Anderson',1929,2012),(26789,'Harry Anderson',1952,2018),(26803,'Hesper Anderson',1934,2018),(26829,'Jace Anderson',NULL,NULL),(26849,'James H. Anderson',1902,1960),(26853,'Jamie Anderson',1946,NULL),(26862,'Jane Anderson',1954,NULL),(26879,'Jeff Anderson',1970,NULL),(26924,'Joe Anderson',1961,NULL),(26997,'Kathryn Anderson',NULL,NULL),(27011,'Ken Anderson',1909,1993),(27032,'Kimberly Calhoun Boling',1968,NULL),(27092,'Lisa Arrindell',NULL,NULL),(27115,'M.A. Andersen',1893,1958),(27120,'Marc Anderson',NULL,NULL),(27173,'Maxwell Anderson',1888,1959),(27178,'Melissa Lee Anderson',NULL,NULL),(27183,'Michael Anderson',1920,2018),(27271,'Paul W.S. Anderson',1965,NULL),(27276,'Paul Anderson',NULL,NULL),(27287,'Peter Anderson',NULL,NULL),(27294,'Philip W. Anderson',1915,1980),(27303,'Raffaëla Anderson',1976,NULL),(27323,'Richard Anderson',1926,2017),(27355,'Robert Anderson',1917,2009),(27459,'Stephen J. Anderson',1970,NULL),(27463,'Sterling Anderson',NULL,NULL),(27465,'Stephen Milburn Anderson',1947,2015),(27487,'Sylvia Anderson',1927,2016),(27488,'Sylvia Anderson',NULL,NULL),(27493,'Tarin Anderson',NULL,NULL),(27572,'Wes Anderson',1969,NULL),(27582,'William M. Anderson',1948,NULL),(27584,'William Anderson',NULL,NULL),(27630,'Benny Andersson',1946,NULL),(27683,'Harriet Andersson',1932,NULL),(27800,'Peter Andersson',1953,NULL),(27815,'Roy Andersson',1943,NULL),(27832,'Stig Anderson',1931,1997),(27942,'Masanobu Andô',1975,NULL),(27943,'Masashi Andô',1969,NULL),(27948,'Roberto Andò',1959,NULL),(28067,'Júlio Andrade',1976,NULL),(28197,'Pascal Andreacchio',NULL,NULL),(28220,'Casper Andreas',1972,NULL),(28249,'Kirsten Andreasen',1898,1983),(28275,'Per Andréasson',NULL,NULL),(28293,'Ingrid Andree',1931,NULL),(28303,'Mircea Andreescu',1939,NULL),(28352,'Andrej Andrejew',1887,1967),(28560,'Ann Andrews',1890,1986),(28602,'Charlton Andrews',1878,1939),(28608,'Christopher Andrews',NULL,NULL),(28636,'Del Andrews',1894,1942),(28647,'Edward Andrews',1914,1985),(28690,'Jason Andrews',NULL,NULL),(28739,'Laverne Andrews',1911,1967),(28764,'Mark Andrews',1968,NULL),(28782,'Maxene Andrews',1916,1995),(28787,'Michael Andrews',NULL,NULL),(28892,'Virginia C. Andrews',1923,1986),(29025,'David Andriole',1964,NULL),(29048,'Viktor Andrienko',1959,NULL),(29125,'Mark Andrus',NULL,NULL),(29203,'Jean André',1916,1980),(29242,'André Téchiné',1943,NULL),(29244,'Victor André',NULL,NULL),(29268,'Frédéric Andréi',1959,NULL),(29278,'Ángel de Andrés López',1951,2016),(29305,'Juana Andueza',1949,NULL),(29330,'Nozomi Andô',1982,NULL),(29391,'Michelle Ang',1983,NULL),(29400,'Michael Angarano',1987,NULL),(29445,'Dan Angel',NULL,NULL),(29500,'The Angel',NULL,NULL),(29502,'Vanessa Angel',1966,NULL),(29542,'Pio Angeletti',1929,2020),(29562,'Ray Angelic',NULL,NULL),(29644,'Theo Angell',1962,NULL),(29962,'Álex Angulo',1953,2014),(30018,'Edna Anhalt',1914,1987),(30019,'Edward Anhalt',1914,2000),(30046,'Marie-Ange Aniès',NULL,NULL),(30166,'Evelyn Ankers',1918,1985),(30251,'Amina Annabi',1962,NULL),(30253,'Graham Annable',NULL,NULL),(30336,'Andrey Annenskiy',1983,NULL),(30383,'Vito Annichiarico',1934,2022),(30404,'Julia Chantrey',NULL,NULL),(30417,'Hideaki Anno',1960,NULL),(30432,'Annu Mari',1948,NULL),(30478,'Jean Anouilh',1910,1987),(30516,'Michael Ansara',1922,2013),(30572,'Julie Ansell',NULL,NULL),(30615,'Tony Anselmo',1960,NULL),(30651,'Joe Ansolabehere',1959,NULL),(30663,'Jay Anson',1921,1980),(30681,'Sólveig Anspach',1960,2015),(30735,'Nimród Antal',1973,NULL),(30751,'Jacqueline Antaramian',NULL,NULL),(30786,'Paul Anthelme',1851,1914),(30823,'Anna Anthony',1971,NULL),(30838,'Carl Anthony',1932,2021),(30851,'Dave Anthony',NULL,NULL),(31026,'Tony Anthony',1937,NULL),(31033,'Walter Anthony',1872,1945),(31045,'Anthrax',NULL,NULL),(31078,'Steve Antin',1958,NULL),(31162,'Benz Antoine',NULL,NULL),(31193,'Craig Anton',1962,NULL),(31214,'Matthew Anton',1964,NULL),(31222,'Rachel Anton',NULL,NULL),(31350,'Alfredo Antonini',1901,1983),(31407,'Tony Oliver',1958,NULL),(31446,'Aleksandr Antonov',1898,1962),(31553,'John Antrobus',1933,NULL),(31612,'Eduardo Antuña',NULL,NULL),(31697,'Tariq Anwar',1945,NULL),(31719,'Kyôko Anzai',1934,2002),(31758,'Cosmo Anzilotti',NULL,NULL),(31785,'Anémone',1950,2019),(31832,'Tomio Aoki',1923,2004),(31835,'Yasunao Aoki',NULL,NULL),(31844,'Takeshi Aono',1936,2012),(31867,'Kader Aoun',1971,NULL),(31881,'Kazuya Aoyama',NULL,NULL),(31890,'Yoshihiko Aoyama',1943,NULL),(31976,'Judd Apatow',1967,NULL),(32001,'Andreas Apergis',NULL,NULL),(32035,'Tina Apicella',1946,NULL),(32042,'Blanca Apilánez',NULL,NULL),(32227,'Josh Appelbaum',NULL,NULL),(32310,'Catherine Apple',1963,NULL),(32314,'Jeff Apple',1954,NULL),(32334,'Leah Applebaum',NULL,NULL),(32359,'George Appleby',NULL,1999),(32399,'Phyllis Applegate',1930,2023),(32403,'Royce D. Applegate',1939,2003),(32417,'Mary Appleseth',1956,1998),(32501,'John Aprea',1941,NULL),(32524,'Adriano Aprà',1940,NULL),(32557,'Ronnie Apteker',1967,NULL),(32645,'Marçal Aquino',1958,NULL),(32685,'Yuriy Arabov',1954,NULL),(32696,'Avi Arad',1948,NULL),(32737,'Carlos Aragón',NULL,NULL),(32800,'Lilia Aragón',1938,2021),(32890,'Kae Araki',1966,NULL),(32916,'Vojislav Aralica',NULL,NULL),(32925,'Shinji Aramaki',1960,NULL),(32955,'Hugo Arana',1943,2020),(33005,'Vicente Aranda',1926,2015),(33096,'Daniel Aranyó',1973,NULL),(33152,'Arata Iura',1974,NULL),(33153,'David Arata',NULL,NULL),(33159,'Jenny Arata',1959,NULL),(33163,'Masao Arata',NULL,NULL),(33169,'Ubaldo Arata',1895,1947),(33187,'Rossana Arau',NULL,NULL),(33261,'Mario Araya',NULL,NULL),(33338,'Jochen Arbeit',NULL,NULL),(33389,'Pascale Arbillot',1970,NULL),(33490,'Franco Arcalli',1929,1978),(33578,'Jeff Arch',1954,NULL),(33596,'Louise Archambault',1970,NULL),(33658,'Ernest Archer',1910,1990),(33780,'William Archibald',1917,1970),(33870,'Gianluca Arcopinto',1959,NULL),(33986,'Jane Arden',1927,1982),(34058,'Daniel Ardilley',NULL,NULL),(34079,'Pierre Arditi',1944,NULL),(34147,'Mimí Ardú',1956,NULL),(34229,'Keith Arem',1969,NULL),(34267,'Jacqueline Arenal',NULL,NULL),(34309,'Geoffrey Arend',1978,NULL),(34370,'Francisco Arenzana',NULL,NULL),(34378,'Paulo Ares',NULL,NULL),(34390,'Niels Arestrup',1949,NULL),(34483,'Claudio Argento',1943,NULL),(34490,'Salvatore Argento',1914,1987),(34492,'Carmen Argenziano',1943,2019),(34531,'Don Argott',NULL,NULL),(34592,'John Argyle',1911,1962),(34712,'Michael Arias',NULL,NULL),(34733,'Yancey Arias',NULL,NULL),(34791,'Jacqueline Pinol',NULL,NULL),(34843,'Kinryû Arimoto',1940,2019),(34850,'David Ariniello',NULL,NULL),(34885,'Takanori Arisawa',1951,2005),(34922,'Aristophanes',NULL,NULL),(35060,'Adam Arkin',1956,NULL),(35087,'Robert Arkins',NULL,NULL),(35097,'Lou Arkoff',1950,NULL),(35098,'Samuel Z. Arkoff',1918,2001),(35106,'Allan Arkush',1948,NULL),(35128,'Swann Arlaud',1981,NULL),(35146,'Alice Arlen',1940,2016),(35159,'Richard Arlen',1899,1976),(35184,'Justine Shapiro',1964,NULL),(35186,'Arthur E. Arling',1906,1991),(35199,'Leslie Arliss',1901,1987),(35208,'Giorgio Arlorio',1929,2019),(35462,'Neil Armfield',1955,NULL),(35465,'Neda Armian',NULL,NULL),(35467,'Armida',1911,1989),(35488,'Fred Armisen',1966,NULL),(35514,'Richard Armitage',1971,NULL),(35552,'Paul Armont',1874,1943),(35605,'Alun Armstrong',1946,NULL),(35613,'Anthony Armstrong',1897,1976),(35661,'Craig Armstrong',1959,NULL),(35664,'Curtis Armstrong',1953,NULL),(35749,'Jerome Armstrong',NULL,NULL),(35784,'Karl Armstrong',NULL,NULL),(35866,'R.G. Armstrong',1917,2012),(35877,'Robert Armstrong',1890,1973),(35899,'Samuel Armstrong',1893,1976),(35905,'Scot Armstrong',1970,NULL),(35925,'Todd Armstrong',1937,1992),(35993,'Simon Arnal',NULL,NULL),(35998,'Stefano Arnaldi',NULL,NULL),(36052,'Fabián Arnaud',NULL,NULL),(36120,'Adelheid Arndt',1952,NULL),(36144,'Jürgen Arndt',1932,NULL),(36155,'Stefan Arndt',1961,NULL),(36223,'Ed Arneson',NULL,NULL),(36298,'Carlos Arniches',1866,1943),(36309,'Alice Arno',1946,NULL),(36349,'Andrea Arnold',1961,NULL),(36366,'Bonnie Arnold',NULL,NULL),(36427,'Edward Arnold',1890,1956),(36459,'Gertrud Arnold',1873,1931),(36507,'John Arnold',1889,1964),(36545,'Mags Arnold',1968,NULL),(36582,'Newt Arnold',1922,2000),(36634,'Steve Arnold',NULL,NULL),(36641,'Susan Arnold',NULL,NULL),(36670,'William Arnold',NULL,NULL),(36714,'David Arnott',1963,NULL),(36734,'Françoise Arnoul',1931,2021),(36917,'Maria Arnold',1947,NULL),(36962,'Eric Aronson',NULL,NULL),(36963,'Erika Aronson',NULL,NULL),(36978,'Judie Aronson',NULL,NULL),(36981,'Letty Aronson',1943,NULL),(37019,'Malaika Arora',1973,NULL),(37097,'Giovanni Arpino',1927,1987),(37197,'Richard D. Arredondo',NULL,NULL),(37238,'Karin Arrhenius',NULL,NULL),(37247,'Guillermo Arriaga',1958,NULL),(37410,'Karina Arroyave',NULL,NULL),(37491,'Emmanuelle Arsan',1932,2005),(37539,'Vladimir Arsenev',1872,1930),(37575,'Thomas Arslan',1962,NULL),(37665,'François d\'Artemare',1966,NULL),(37708,'Miguel Arteta',1965,NULL),(37721,'Charles Arthur Berg',1970,NULL),(37734,'Art Arthur',1911,1985),(37735,'Bea Arthur',1922,2009),(37816,'Robert Arthur',1925,2008),(37818,'Robert Arthur',1909,1986),(37853,'Wren Arthur',NULL,NULL),(37870,'Philippe Arthuys',1928,2010),(37894,'Bernard Artigues',NULL,NULL),(37977,'Germaine Artus',NULL,NULL),(38002,'Ami Artzi',NULL,NULL),(38258,'Ana Paula Arósio',1975,NULL),(38266,'Ali Asad',1961,NULL),(38319,'Morio Asaka',1967,NULL),(38335,'Yoshitaka Asama',1940,NULL),(38355,'Tadanobu Asano',1973,NULL),(38401,'Yoshimi Asatoshi',NULL,NULL),(38419,'Stuart Asbjornsen',NULL,NULL),(38432,'Kelly Asbury',1960,2020),(38449,'Ariane Ascaride',1954,NULL),(38502,'Kenny Ascher',1944,NULL),(38518,'Michael Aschner',NULL,NULL),(38572,'Neus Asensi',1965,NULL),(38585,'Miguel Asensio Llamas',1967,NULL),(38595,'Nikolay Aseev',1889,1963),(38639,'Jerome Ash',1892,1953),(38650,'Leslie Ash',1960,NULL),(38660,'Rod Ash',NULL,NULL),(38673,'William Ash',1977,NULL),(38680,'Ashanti',1980,NULL),(38690,'Lorraine Ashbourne',1961,NULL),(38837,'Henri La Barthe',1887,1963),(38869,'Jack Asher',1916,1991),(38870,'Jane Asher',1946,NULL),(38895,'Robert Asher',1915,1979),(38901,'Tova Ascher',NULL,NULL),(38906,'William Asher',1921,2012),(38914,'Renée Asherson',1915,2014),(38918,'Kate Ashfield',1972,NULL),(38976,'Gary Ashiya',1966,NULL),(38978,'Akiko Ashizawa',NULL,NULL),(38988,'Lior Ashkenazi',NULL,NULL),(39051,'Elizabeth Ashley',1939,NULL),(39066,'Jennifer Ashley',1949,NULL),(39068,'John Ashley',1934,1997),(39074,'Karan Ashley',1975,NULL),(39137,'Blake Ashman',NULL,NULL),(39141,'Howard Ashman',1950,1991),(39148,'Aaron Ashmore',1979,NULL),(39162,'Shawn Ashmore',1979,NULL),(39200,'David Ashton',1941,NULL),(39202,'Donald M. Ashton',1919,2004),(39226,'John Ashton',1948,NULL),(39328,'Piers Ashworth',NULL,NULL),(39435,'Luke Askew',1932,2012),(39463,'Ali N. Askin',1962,NULL),(39468,'Peter Askin',1940,NULL),(39544,'Bub Asman',1949,NULL),(39551,'William L. Asman',NULL,NULL),(39583,'Jules Asner',1968,NULL),(39591,'Kumiko Asô',1978,NULL),(39607,'Anna Asp',1946,NULL),(39706,'Mariano Asquerino',1889,1957),(39707,'María Asquerino',1925,2013),(39792,'Georges Asselin',NULL,NULL),(39834,'Tamara Asseyev',1943,NULL),(39856,'Giba Assis Brasil',1957,NULL),(39903,'Eric Assous',1956,2020),(39911,'António Assunção',1945,1998),(39916,'Fábio Assunção',1971,NULL),(39949,'Stephanie Astalos-Jones',NULL,NULL),(39958,'Shay Astar',1981,NULL),(39967,'Adriana Asti',1931,NULL),(39978,'Tatiana Astengo',1967,NULL),(39989,'Nils Asther',1897,1981),(40005,'Lionnel Astier',NULL,NULL),(40014,'John Astin',1930,NULL),(40015,'Mackenzie Astin',1973,NULL),(40022,'Tom J. Astle',1960,NULL),(40098,'Patti Astor',NULL,NULL),(40106,'Tom Astor',NULL,NULL),(40120,'Joshua Astrachan',NULL,NULL),(40148,'Evan Astrowsky',NULL,NULL),(40217,'Tim Atack',NULL,NULL),(40313,'Ömer Atay',1969,NULL),(40328,'Doug Atchison',NULL,NULL),(40358,'Larry Aten',NULL,NULL),(40374,'Roscoe Ates',1895,1962),(40460,'Howard Atherton',1947,NULL),(40472,'William Atherton',NULL,NULL),(40545,'Féodor Atkine',1948,NULL),(40562,'Chet Atkins',1924,2001),(40564,'Chris Atkins',1976,NULL),(40586,'Eileen Atkins',1934,NULL),(40591,'Essence Atkins',1972,NULL),(40630,'Mark Atkins',NULL,NULL),(40643,'Peter Atkins',1955,NULL),(40662,'Tom Atkins',1935,NULL),(40709,'Dorothy Atkinson',1966,NULL),(40739,'Jayne Atkinson',1959,NULL),(40797,'Scott Atkinson',1966,2021),(40916,'Yûharu Atsuta',1905,1992),(40927,'Alain Attal',NULL,NULL),(40933,'Henri Attal',1936,2003),(40939,'Yvan Attal',1965,NULL),(41029,'Edward Atterton',1962,NULL),(41066,'Antonella Attili',1963,NULL),(41165,'Roy Atwell',1878,1962),(41172,'Lionel Atwill',1885,1946),(41194,'Margaret Atwood',1939,NULL),(41239,'Man Sze Au',NULL,NULL),(41246,'Shiu Lin Au',NULL,NULL),(41280,'Remy Auberjonois',1974,NULL),(41281,'Rene Auberjonois',1940,2019),(41300,'Jean-Louis Aubert',1954,NULL),(41311,'Pierre Aubert',NULL,NULL),(41323,'Yves Aubert',NULL,NULL),(41334,'Stéphane Aubier',1964,NULL),(41355,'Tony Aubin',1907,1981),(41393,'David Aubrey',NULL,NULL),(41405,'James Aubrey',1947,2010),(41447,'Kim Aubry',NULL,NULL),(41474,'Frédéric Auburtin',1962,NULL),(41509,'Michel Auclair',1922,1988),(41561,'Marie-Josée Audiard',NULL,NULL),(41598,'Eleanor Audley',1905,1991),(41602,'Maxine Audley',1923,1992),(41652,'Jean M. Auel',1936,NULL),(41681,'Mischa Auer',1905,1967),(41756,'Patrick Auffay',NULL,NULL),(41765,'Dorothy Aufiero',NULL,NULL),(41835,'Thomas Augsberger',NULL,NULL),(41864,'John August',1970,NULL),(41875,'Robert August',1945,NULL),(41898,'Aïlo Auguste-Judith',NULL,NULL),(41932,'Mark Rydell',1929,NULL),(41991,'Jennifer Augé',NULL,NULL),(42006,'Scott Aukerman',1970,NULL),(42010,'David Aukin',1942,NULL),(42104,'Michel Aumont',1936,2019),(42138,'Jim Aupperle',NULL,NULL),(42159,'Jean Aurel',1925,1996),(42172,'Marcus Aurelius',NULL,NULL),(42179,'Jean Aurenche',1904,1992),(42191,'Eberhard Auriga',NULL,NULL),(42213,'Dominique Aury',1907,1998),(42266,'Stefan Aust',1946,NULL),(42317,'Albert Austin',1882,1953),(42472,'Michael Austin',NULL,NULL),(42496,'Phyllis Konstam',1907,1976),(42516,'Shay Austin',NULL,NULL),(42520,'Stephanie Austin',NULL,NULL),(42524,'Steve Austin',1964,NULL),(42552,'William Austin',1884,1975),(42553,'William Austin',1903,1993),(42679,'Lydie Auvray',1956,NULL),(42796,'Peter Avanzino',NULL,NULL),(42849,'Howard Avedis',1927,2017),(42882,'Elizabeth Avellan',1960,NULL),(42884,'Joe Mari Avellana',1941,2011),(42992,'Scott Aversano',1970,NULL),(42998,'Lloyd Avery II',1969,2005),(43007,'Belle Avery',NULL,NULL),(43055,'Linda Avery',NULL,NULL),(43069,'Paul Avery',NULL,NULL),(43107,'Ran Aviad',NULL,NULL),(43138,'Gordon Avil',1899,1970),(43170,'Angel Aviles',NULL,NULL),(43233,'Oren Aviv',1961,NULL),(43258,'Jacob Avnet',1983,NULL),(43334,'Robert J. Avrech',1950,NULL),(43347,'Philippe Avril',1954,NULL),(43398,'Chikage Awashima',1924,2012),(43423,'Wilbert Awdry',1911,1997),(43453,'Eddie Axberg',1947,NULL),(43480,'George Axelrod',1922,2003),(43486,'Jonathan Axelrod',1949,NULL),(43509,'Einar Axelsson',1895,1971),(43593,'Renée Axö',NULL,NULL),(43662,'Charlotte Ayanna',1976,NULL),(43686,'Andres Aybar',NULL,NULL),(43697,'Alan Ayckbourn',1939,NULL),(43704,'Nicki Aycox',1975,2022),(43705,'Kader Ayd',1976,NULL),(43742,'David Ayer',1968,NULL),(43806,'Roy Ayers',1940,NULL),(43855,'Reiko Aylesworth',1972,NULL),(43946,'George Ayoub',NULL,NULL),(43982,'Gerald Ayres',1936,2018),(43994,'Leah Ayres',1957,NULL),(44016,'Tony Ayres',1961,NULL),(44064,'Suresh Ayyar',1957,2016),(44073,'Lubna Azabal',1973,NULL),(44156,'Rafael Azcona',1926,2008),(44196,'Emanuel Azenberg',1934,NULL),(44235,'Gilberto Azevedo',NULL,NULL),(44343,'Tanvi Azmi',1963,NULL),(44363,'Irving Azoff',NULL,NULL),(44391,'Jean-Luc Azoulay',1947,NULL),(44411,'Juan Miguel Azpiroz',NULL,NULL),(44465,'Yasuhiko Higashi',NULL,NULL),(44535,'Sabine Azéma',1949,NULL),(44545,'Pierre Aïm',1959,NULL),(44577,'Agnès B.',1941,NULL),(44630,'Fritz Baader',1939,2018),(44762,'Obba Babatundé',1951,NULL),(44796,'Raj Babbar',1952,NULL),(44803,'Jamie Babbit',1970,NULL),(44810,'Natalie Babbitt',1932,2016),(44831,'Dwight V. Babcock',1909,1979),(44859,'Todd Babcock',1969,NULL),(44865,'Fabienne Babe',1962,NULL),(45180,'Jimmy Santiago Baca',NULL,NULL),(45202,'Joaquín Baca-Asay',1969,NULL),(45204,'Jules Bacal',1934,2019),(45209,'Michael Bacall',1973,NULL),(45301,'Danilo Bach',1944,NULL),(45341,'Peter Bach',NULL,NULL),(45379,'Dian Bachar',1970,NULL),(45393,'Abhishek Bachchan',1976,NULL),(45404,'Jean Bachelet',1894,1977),(45406,'Pierre Bachelet',1944,2005),(45429,'Gabriela Bacher',NULL,NULL),(45438,'William A. Bacher',1897,1965),(45461,'Alicja Bachleda',1983,NULL),(45489,'Þorsteinn Bachmann',1965,NULL),(45549,'Doro Bachrach',NULL,NULL),(45584,'Steve Bacic',1965,NULL),(45643,'Melanie Backer',NULL,NULL),(45660,'Michael Backes',1955,NULL),(45754,'Olga Baclanova',1893,1974),(45800,'Lloyd Bacon',1889,1955),(45813,'Nick Bacon',NULL,NULL),(45870,'Jean-Pierre Bacri',1951,2021),(45916,'Bahram Badakshani',NULL,NULL),(45920,'Jean Badal',1927,2015),(45927,'Bill Badalato',NULL,NULL),(45938,'Nicola Badalucco',1929,2015),(45954,'Wally Badarou',1955,NULL),(45968,'Hermione Baddeley',1906,1986),(46004,'Klaus Badelt',1967,NULL),(46020,'Sue Baden-Powell',NULL,NULL),(46033,'Diedrich Bader',1966,NULL),(46082,'Clarence G. Badger',1880,1964),(46093,'Phillip Badger',NULL,NULL),(46112,'Penn Badgley',1986,NULL),(46133,'Laurence Badie',1928,NULL),(46168,'Kenneth M. Badish',NULL,NULL),(46256,'Livio Badurina',1965,NULL),(46277,'Bae Doona',1979,NULL),(46294,'Rebecca Baehler',NULL,NULL),(46326,'Bill Baer',NULL,NULL),(46347,'Edouard Baer',1966,NULL),(46367,'Matthew Baer',NULL,NULL),(46408,'Norman Baert',1968,NULL),(46412,'David Baerwald',1960,NULL),(46424,'Veerle Baetens',1978,NULL),(46469,'Paloma Baeza',1975,NULL),(46484,'Christopher Baffa',1965,NULL),(46524,'Anthony Bagarozzi',NULL,NULL),(46559,'Ross Bagdasarian Jr.',1949,NULL),(46564,'Ross Bagdasarian',1919,1972),(46575,'Vladas Bagdonas',1949,NULL),(46590,'Ian Bagg',1969,NULL),(46667,'Abdolrahman Bagheri',NULL,NULL),(46750,'Alison Bagnall',NULL,NULL),(46770,'Vernel Bagneris',1949,NULL),(46779,'Enid Bagnold',1889,1981),(46805,'Rob Bagshaw',NULL,NULL),(46867,'Maziar Bahari',NULL,NULL),(46969,'Zahra Bahrami',NULL,NULL),(46991,'Samir Bahzan',NULL,NULL),(46993,'Ann Bridgewater',NULL,NULL),(47076,'Steven Baigelman',NULL,NULL),(47094,'Charles Bail',1935,2020),(47155,'Bill Bailey',1965,NULL),(47248,'Eion Bailey',1976,NULL),(47259,'Fenton Bailey',NULL,NULL),(47264,'Frederick Bailey',1946,NULL),(47265,'G.W. Bailey',1944,NULL),(47268,'Enzo Bulgarelli',NULL,NULL),(47392,'Marion Bailey',1951,NULL),(47419,'Miranda Bailey',1977,NULL),(47436,'Patrick Bailey',NULL,NULL),(47440,'Pearl Bailey',1918,1990),(47453,'Rhea Bailey',1983,NULL),(47489,'Sean Bailey',1970,NULL),(47558,'Bob Bailin',NULL,NULL),(47575,'Paule Baillargeon',1945,NULL),(47645,'Pascale Bailly',1959,NULL),(47685,'Barnet Bain',NULL,NULL),(47786,'John Baines',1909,1962),(47787,'Julie Baines',1957,NULL),(47800,'Beulah Bains',1905,1930),(47810,'Fay Bainter',1893,1968),(47887,'Karen Baird',NULL,NULL),(47896,'Maggie Baird',1959,NULL),(47916,'Robert L. Baird',NULL,NULL),(47919,'Roy Baird',1933,2010),(47962,'Chieko Baishô',1941,NULL),(47963,'Mitsuko Baishô',1946,NULL),(47977,'Rick Baitz',NULL,NULL),(47999,'Aseem Bajaj',1977,NULL),(48075,'Manoj Bajpayee',1969,NULL),(48101,'Frans Bak',1958,NULL),(48159,'Ariyon Bakare',1971,NULL),(48169,'Nick Bakay',1959,NULL),(48227,'Angela Baker',NULL,NULL),(48250,'Becky Ann Baker',1953,NULL),(48260,'Betsy Baker',1955,NULL),(48273,'Blanche Baker',1956,NULL),(48276,'Bob Baker',1939,2021),(48288,'Brandon Baker',1985,NULL),(48301,'Buddy Baker',1918,2002),(48346,'Colin Baker',1943,NULL),(48389,'Dee Bradley Baker',1962,NULL),(48414,'Dylan Baker',1959,NULL),(48468,'George Baker',1931,2011),(48491,'Graham Baker',1938,NULL),(48511,'Herbert Baker',1920,1983),(48512,'Hettie Grey Baker',1881,1957),(48524,'Ian Baker',1947,NULL),(48554,'Jay Baker',1961,NULL),(48589,'Joe Baker',1928,2001),(48653,'Kenny Baker',1912,1985),(48687,'Leigh-Allyn Baker',1972,NULL),(48741,'Mark H. Baker',NULL,NULL),(48744,'Martin G. Baker',NULL,NULL),(48790,'Nancy Baker',NULL,NULL),(48798,'Nellie Bly Baker',1893,1984),(48875,'Robert S. Baker',1916,2009),(48881,'Ron Baker',NULL,NULL),(48918,'Sean Baker',1971,NULL),(48932,'Simon Baker',1969,NULL),(48939,'Stanley Baker',1928,1976),(48973,'Tim Baker',NULL,NULL),(48983,'Tom Baker',1940,1982),(49026,'Zene Baker',NULL,NULL),(49055,'William Bakewell',1908,1993),(49069,'Vladlen Bakhnov',1924,1994),(49086,'Afshin Khorshid Bakhtiari',NULL,NULL),(49182,'Stanislav Boklan',1960,NULL),(49235,'Mohammad Bakri',1953,NULL),(49294,'Vincent Bal',1971,NULL),(49302,'Rani Bala',NULL,1956),(49313,'Liane Balaban',1980,NULL),(49320,'Nick Balaban',NULL,NULL),(49335,'K. Balachander',1930,2014),(49371,'Jaume Balagueró',1968,NULL),(49462,'Béla Balázs',1884,1949),(49559,'Leonora Balcarce',1978,NULL),(49587,'Nigel Balchin',1908,1970),(49592,'Marius Vaysberg',1971,NULL),(49608,'Michael Balcon',1896,1977),(49623,'Dave Bald Eagle',1919,2016),(49633,'Kyle Balda',1971,NULL),(49689,'John Baldecchi',NULL,NULL),(49721,'John L. Balderston',1889,1954),(49728,'Ferdinando Baldi',1917,2007),(49833,'Armenia Balducci',1937,2022),(49853,'A. Michael Baldwin',1963,NULL),(49888,'Declan Baldwin',1960,NULL),(49898,'Earl Baldwin',1901,1970),(49903,'Faith Baldwin',1893,1978),(49920,'Howard Baldwin',NULL,NULL),(49924,'James Baldwin',1924,1987),(49945,'Karen Elise Baldwin',1964,NULL),(49975,'Peter Baldwin',1931,2017),(49987,'Robert M. Baldwin',1933,NULL),(50097,'Paul Bales',NULL,NULL),(50156,'Eric Balfour',1977,NULL),(50175,'Michael Balfry',NULL,NULL),(50183,'Sophie Balhetchet',NULL,NULL),(50210,'Jeanne Balibar',1968,NULL),(50264,'Eszter Balint',1966,NULL),(50276,'Jeff Balis',1975,NULL),(50332,'Alan Ball',1957,NULL),(50337,'Angeline Ball',1969,NULL),(50398,'John Ball',1911,1988),(50421,'Lori Ball',NULL,NULL),(50437,'Nicholas Ball',1946,NULL),(50458,'Sam Ball',1973,NULL),(50472,'Steve Ball',NULL,NULL),(50482,'Vincent Ball',1923,NULL),(50541,'Jason Ballantine',1970,NULL),(50597,'Carroll Ballard',1937,NULL),(50618,'J.G. Ballard',1930,2009),(50676,'Terry Ballard',1935,NULL),(50722,'Matthew Ballen',1975,NULL),(50737,'Edoardo Ballerini',NULL,NULL),(50749,'Juan José Ballesta',1987,NULL),(50778,'Belén Ballesteros',NULL,NULL),(50787,'Elena Ballesteros',1981,NULL),(50832,'Florian Ballhaus',1965,NULL),(50959,'Pedro Pascal',1975,NULL),(50975,'Timothy Balme',NULL,NULL),(50983,'Jean-François Balmer',1946,NULL),(51096,'Alan Balsam',1950,1992),(51116,'Humbert Balsan',1954,2005),(51172,'Jean-Jacques Tarbès',NULL,NULL),(51212,'Traci Balthazor',NULL,NULL),(51281,'Jacques Balutin',1936,NULL),(51282,'Aleksandr Baluev',1958,NULL),(51396,'George Bamber',NULL,NULL),(51447,'Bill Bambridge',1892,1950),(51469,'Maria Bamford',1970,NULL),(51509,'Eric Bana',1968,NULL),(51559,'Mike Banas',1968,2022),(51628,'George Bancroft',1882,1956),(51643,'Tony Bancroft',1967,NULL),(51649,'Albert Band',1924,2002),(51659,'Richard Band',1953,NULL),(51748,'Helen Bandis',1964,NULL),(51808,'Bibhutibhushan Bandyopadhyay',1894,1950),(51856,'Victor Banerjee',1946,NULL),(51903,'Claes Bang',1967,NULL),(51916,'Joy Bang',1945,NULL),(51917,'Jun-seok Bang',1970,2022),(51931,'Arne Bang-Hansen',1911,1990),(51939,'Thomas Bangalter',1975,NULL),(51994,'Russ Banham',1955,NULL),(52023,'Donatas Banionis',1924,2014),(52044,'Melody Bank',NULL,NULL),(52108,'Brian Banks',1955,NULL),(52186,'Jonathan Banks',1947,NULL),(52202,'Lenore Banks',1931,2020),(52203,'Leslie Banks',1890,1952),(52209,'Lynne Reid Banks',1929,NULL),(52218,'Morwenna Banks',1961,NULL),(52329,'Haradhan Bannerjee',1926,2013),(52333,'Kanu Bannerjee',1905,1983),(52334,'Karuna Bannerjee',1919,2001),(52343,'Subir Banerjee',NULL,NULL),(52410,'Reggie Bannister',1945,NULL),(52419,'Yoshimitsu Banno',1931,2017),(52468,'Vasil Banov',1946,NULL),(52486,'Rafael Banquells',1917,1990),(52520,'Milt Banta',1922,1959),(52532,'Ashok Banthia',NULL,NULL),(52581,'John Banville',1945,NULL),(52600,'Radu Bânzaru',1968,NULL),(52722,'Shlomo Bar-Aba',1950,NULL),(52754,'Iris Bahr',NULL,NULL),(52774,'Martin J. Barab',NULL,NULL),(52797,'Jeffrey T. Barabe',NULL,NULL),(52849,'Nino Baragli',1925,2013),(52944,'Jack Baran',NULL,NULL),(52964,'Steve Barancik',1961,NULL),(52993,'Aleksandr Baranov',1955,NULL),(53028,'Philip Barantini',1980,NULL),(53070,'Andrea Barata Ribeiro',NULL,NULL),(53184,'Angelo Barbagallo',NULL,NULL),(53190,'Randy Barbato',NULL,NULL),(53228,'Ernie Barbarash',NULL,NULL),(53230,'Luca Barbareschi',1956,NULL),(53267,'Bob Barbash',1919,1995),(53290,'Armand Barbault',NULL,NULL),(53329,'Todd Barbee',NULL,NULL),(53344,'Adam Barber',NULL,NULL),(53352,'Billy Barber',NULL,NULL),(53384,'Frances Barber',1958,NULL),(53388,'Gary Barber',1957,NULL),(53427,'Lesley Barber',1968,NULL),(53443,'Nigel Barber',NULL,NULL),(53448,'Paul Barber',1951,NULL),(53462,'Samuel Barber',1910,1981),(53484,'Joseph Barbera',1911,2006),(53493,'Neal Barbera',1944,NULL),(53573,'Bruno Barbey',1941,2020),(53616,'George Barbier',1865,1945),(53658,'Gato Barbieri',1932,2016),(53672,'Pablo Barbieri Carrera',1971,NULL),(53716,'Marco Barboni',1952,NULL),(53903,'Marc Barbé',1961,NULL),(53935,'Franck Barcellini',1920,2012),(54020,'Barry Barclay',1944,2008),(54060,'Joan Barclay',1914,2002),(54087,'Roger Barclay',NULL,NULL),(54180,'Josef Bardanashvili',1948,NULL),(54218,'Juan Bardem',NULL,NULL),(54219,'Juan Antonio Bardem',1922,2002),(54224,'Pilar Bardem',1939,2021),(54234,'Kerry Barden',1969,NULL),(54344,'Grant Bardsley',NULL,NULL),(54358,'Aleksi Bardy',1970,NULL),(54397,'Arija Bareikis',1966,NULL),(54439,'Wouter Barendrecht',1965,2009),(54504,'Kasper Barfoed',1972,NULL),(54667,'Pierre Barillet',1923,2019),(54689,'Norah Baring',1905,1985),(54697,'Ike Barinholtz',1977,NULL),(54712,'Keith Barish',1944,NULL),(54713,'Leora Barish',NULL,NULL),(54908,'Jean Barker',1919,NULL),(54922,'Judith Barker',1943,NULL),(54954,'Mike Barker',1965,NULL),(55050,'Paul Barkin',NULL,NULL),(55261,'Lou Barlow',1966,NULL),(55274,'Ray Barlow',NULL,NULL),(55304,'Ira Barmak',NULL,NULL),(55310,'Jeffrey Barmash',1957,NULL),(55407,'Nick Barnard',NULL,NULL),(55431,'Michael Barnathan',NULL,NULL),(55432,'Jimmy Barnatán',1981,NULL),(55541,'Chris Barnes',1938,2009),(55549,'Christopher Daniel Barnes',1972,NULL),(55604,'George Barnes',1892,1953),(55607,'George Barnes',1880,1951),(55645,'Joanna Barnes',1934,2022),(55649,'John Barnes',NULL,NULL),(55656,'Joslyn Barnes',NULL,NULL),(55658,'Julian Barnes',1946,NULL),(55661,'Justus D. Barnes',1862,1946),(55682,'Louise Barnes',1974,NULL),(55693,'Margaret Ayer Barnes',1886,1967),(55717,'Nicky Kentish Barnes',NULL,NULL),(55726,'Peter Barnes',1931,2004),(55797,'T. Roy Barnes',1880,1937),(55848,'Arlene Barnett',NULL,NULL),(55909,'James Barnett',NULL,NULL),(55920,'Joan Barnett',1945,2020),(55922,'John Barnett',1945,NULL),(55928,'Jonnie Barnett',NULL,NULL),(55937,'Kevin Barnett',NULL,NULL),(55975,'S.H. Barnett',1908,1988),(56002,'Alan Barnette',NULL,NULL),(56030,'Matthew Barney',1967,NULL),(56072,'Barry Barnholtz',NULL,NULL),(56086,'Luc Barnier',1954,2012),(56186,'Boris Baromykin',1941,NULL),(56187,'Sacha Baron Cohen',1971,NULL),(56205,'Caroline Baron',NULL,NULL),(56217,'Harold Pinter',1930,2008),(56236,'Fred Baron',NULL,NULL),(56283,'Michael Lee Baron',NULL,NULL),(56319,'Suzanne Baron',1927,1995),(56434,'Benoît Barouh',NULL,NULL),(56477,'Byron Barr',1917,1966),(56492,'Douglas Barr',1949,NULL),(56498,'Emily Almond Barr',1982,NULL),(56532,'Kathleen Barr',1967,NULL),(56550,'Nathan Barr',NULL,NULL),(56593,'Gianfranco Barra',1940,NULL),(56697,'Martine Barraqué',NULL,NULL),(56719,'Robert Barrat',1889,1970),(56720,'Sophie Barrat',NULL,NULL),(56725,'Christophe Barratier',1963,NULL),(56761,'Jean-Louis Barrault',1910,1994),(56763,'Marie-Christine Barrault',1944,NULL),(56768,'Gérard Barray',1931,NULL),(56770,'Adriana Barraza',1956,NULL),(56885,'Gerardo Barrera',NULL,NULL),(57025,'Lucy Barreto',NULL,NULL),(57121,'Edith Barrett',1907,1977),(57157,'James Lee Barrett',1929,1989),(57187,'K.K. Barrett',NULL,NULL),(57217,'Malcolm Barrett',1980,NULL),(57221,'Mark Barrett',NULL,NULL),(57321,'Bill Barretta',1964,NULL),(57363,'Barbara Barrie',1931,NULL),(57368,'Chris Barrie',1960,NULL),(57370,'Colin Barrie',NULL,NULL),(57381,'J.M. Barrie',1860,1937),(57398,'Michael Barrie',NULL,NULL),(57428,'Maurice Barrier',1932,2020),(57450,'Anthony Barrile',NULL,NULL),(57456,'Barry Barringer',1888,1938),(57567,'Chuck Barris',1929,2017),(57592,'Seth Barrish',1959,NULL),(57623,'Ghislain Barrois',NULL,NULL),(57655,'David Barron',1954,NULL),(57664,'Ferrell Barron',1970,NULL),(57704,'Paul D. Barron',1949,NULL),(57729,'Todd Barron',NULL,NULL),(57733,'Zelda Barron',1929,2006),(57735,'Jennifer Barrons',NULL,NULL),(57774,'Miguel Barros',NULL,NULL),(57776,'Nerea Barros',1981,NULL),(57819,'Mariano Barroso',1959,NULL),(57835,'David-Christophe Barrot',NULL,NULL),(57842,'Olivier Baroux',1964,NULL),(57856,'Geoff Barrow',1971,NULL),(57970,'Dave Barry',1947,NULL),(58001,'Gene Barry',1919,2009),(58021,'J. Barry Herron',1935,2014),(58029,'Jason Barry',1972,NULL),(58039,'Joan Barry',1903,1989),(58045,'John Barry',1935,1979),(58129,'Philip Barry',1896,1949),(58178,'Todd Barry',1964,NULL),(58181,'Tony Barry',1941,2022),(58279,'Judith Barsi',1978,1988),(58286,'Odile Barski',1946,NULL),(58290,'Vladimir Barskiy',1866,1936),(58294,'Brett Barsky',1981,NULL),(58302,'Peter Barsocchini',NULL,NULL),(58342,'Grazyna Barszczewska',1947,NULL),(58369,'Lionel Bart',1930,1999),(58372,'Roger Bart',1962,NULL),(58418,'Steve Bartek',1952,NULL),(58442,'Phillip J. Bartell',NULL,NULL),(58458,'Carl Bartels',NULL,NULL),(58532,'Eddie Barth',1931,2010),(58539,'Jack Barth',NULL,NULL),(58581,'Justin Bartha',1978,NULL),(58598,'Kurt Barthel',1931,2014),(58638,'Roland Barthes',1915,1980),(58772,'Alison Bartlett',NULL,NULL),(58783,'Bonnie Bartlett',1929,NULL),(58786,'Cal Bartlett',1935,NULL),(58826,'Hall Bartlett',1922,1993),(58829,'Helen Buck Bartlett',1959,NULL),(58933,'John S. Bartley',NULL,NULL),(59001,'Adolfo Bartoli',NULL,NULL),(59026,'Elio Bartolini',1922,2006),(59030,'Luigi Bartolini',1892,1963),(59106,'Charles Barton',1902,1981),(59121,'Dee Barton',1937,2001),(59215,'Mischa Barton',1986,NULL),(59218,'Nick Barton',NULL,NULL),(59228,'Peter Barton',1956,NULL),(59242,'Roger Barton',NULL,NULL),(59342,'J. Joachim Bartsch',1903,1965),(59374,'Jack Barty',1888,1942),(59382,'Geof Bartz',1943,NULL),(59431,'Jay Baruchel',1982,NULL),(59483,'Tony Barwick',1934,1993),(59493,'Hal Barwood',1940,NULL),(59544,'Yoram Barzilai',1951,NULL),(59550,'Pippo Barzizza',1902,1994),(59553,'Ben Barzman',1910,1989),(59570,'Laurent Barès',NULL,NULL),(59654,'David Alan Basche',1968,NULL),(59721,'Leila Basen',NULL,NULL),(59800,'Aleksandr Bashirov',1955,NULL),(59847,'Oleg Basilashvili',1934,NULL),(59934,'James Baskett',1904,1948),(59946,'Elya Baskin',1950,NULL),(59971,'Antoine Basler',1966,NULL),(59974,'Marianne Basler',1964,NULL),(60015,'Rudy Basquez',NULL,NULL),(60023,'Alfie Bass',1916,1987),(60072,'Jules Bass',1935,2022),(60103,'Ron Bass',1942,NULL),(60138,'Giuseppe Bassan',NULL,NULL),(60145,'Giorgio Bassani',1916,2000),(60221,'Linda Bassett',1950,NULL),(60228,'Nick Bassett',NULL,NULL),(60317,'Robert Bassler',1903,1975),(60378,'William Bast',1931,2015),(60459,'Rene Bastian',NULL,NULL),(60561,'Steve Bastoni',1966,NULL),(60631,'Miroslaw Baszak',NULL,NULL),(60692,'Aleksey Batalov',1928,2017),(60705,'Beatriz Batarda',1974,NULL),(60715,'Pierre Batcheff',1907,1932),(60724,'George R. Batcheller',1892,1938),(60742,'Joy Batchelor',1914,1991),(60760,'Janet Scott Batchler',NULL,NULL),(60761,'Lee Batchler',1950,NULL),(60765,'Adrian Bate',NULL,NULL),(60822,'Suzanne Bateman',NULL,NULL),(60871,'Carolyn Bates',NULL,NULL),(60885,'Colin Bates',NULL,NULL),(60889,'Dan Bates',NULL,NULL),(60914,'H.E. Bates',1905,1974),(60915,'Harry Bates',1900,1981),(60931,'Jeanne Bates',1918,2007),(60988,'Michael Bates',1920,1978),(61003,'Paul Bates',1958,NULL),(61012,'Ralph Bates',1940,1991),(61045,'Tyler Bates',1965,NULL),(61088,'Neelesha Barthel',1977,NULL),(61116,'Aurora Bautista',1925,2012),(61192,'Bedrich Batka',1922,1994),(61284,'Aurelius Battaglia',1910,1984),(61295,'Gianlorenzo Battaglia',NULL,NULL),(61309,'Rik Battaglia',1927,2015),(61337,'Joe Batteer',NULL,NULL),(61437,'Lloyd Battista',1937,NULL),(61452,'Mario Battistel',NULL,NULL),(61458,'Sandrine Battistella',NULL,NULL),(61474,'Battista Lena',1960,NULL),(61484,'Giuseppe Battiston',1968,NULL),(61486,'Catherine Battistone',1947,NULL),(61633,'Franck Bauchard',NULL,NULL),(61669,'Laurent Baudens',1975,NULL),(61777,'Chris Bauer',1966,NULL),(61784,'David Bauer',1917,1973),(61792,'Godfrey Ho',1948,NULL),(61829,'Hans Bauer',NULL,NULL),(61853,'Jean Bauer',NULL,NULL),(61865,'Joseph Bauer',NULL,NULL),(61877,'Kristin Bauer',NULL,NULL),(61952,'Wolf Bauer',1950,NULL),(61982,'Brian Baugh',NULL,NULL),(62010,'Eric Baugin',NULL,NULL),(62070,'Bruce Baum',1951,NULL),(62071,'Carol Baum',NULL,NULL),(62126,'Roger S. Baum',NULL,NULL),(62136,'Thomas Baum',NULL,NULL),(62139,'Vicki Baum',1888,1960),(62149,'Beau Bauman',NULL,NULL),(62177,'Michael Bauman',NULL,NULL),(62185,'Ted Bauman',NULL,NULL),(62215,'Gerd Baumann',1967,NULL),(62328,'Alan Baumgarten',1957,NULL),(62332,'Craig Baumgarten',1949,NULL),(62340,'Marietta von Hausswolff von Baumgarten',NULL,NULL),(62362,'Karl Baumgartner',1949,2014),(62369,'Michèle Baumgartner',1953,1985),(62370,'Monika Baumgartner',1951,NULL),(62373,'Robby Baumgartner',1962,NULL),(62430,'Lilo Baur',1958,NULL),(62492,'Christian Baute',1971,NULL),(62593,'José Baviera',1906,1981),(62644,'Craig R. Baxley',NULL,NULL),(62658,'George Baxt',1923,2003),(62667,'Alan Baxter',1908,1976),(62738,'Max Brand',1893,1944),(62828,'Warner Baxter',1889,1951),(62844,'Frances Bay',1919,2011),(63027,'Terence Bayler',1930,2016),(63051,'Eva Bayley',1853,1934),(63086,'Blanche Bayliss',1878,1951),(63127,'Stephen Bayly',1942,NULL),(63143,'Lawrence Bayne',1960,NULL),(63165,'Peter Baynham',NULL,NULL),(63266,'Tina Baz',1970,NULL),(63299,'Camille Bazbaz',NULL,NULL),(63414,'Roque Baños',1968,NULL),(63440,'Adam Beach',1972,NULL),(63459,'Edward L. Beach',1918,2002),(63470,'Jeffery Beach',NULL,NULL),(63473,'Jim Beach',1942,NULL),(63511,'Wayne Beach',NULL,NULL),(63566,'Peter S. Beagle',1939,NULL),(63571,'Kate Beahan',1974,NULL),(63583,'John Beaird',1953,1993),(63601,'Cindy Beal',NULL,NULL),(63618,'Jeff Beal',1963,NULL),(63643,'Edith Bouvier Beale',1895,1977),(63739,'David Beames',NULL,NULL),(63769,'Charlie Bean',1970,NULL),(63800,'Noah Bean',NULL,NULL),(63815,'Steve Bean',1960,2019),(63819,'Douglas Carter Beane',NULL,NULL),(63838,'Edgar Bear Runner',NULL,NULL),(63953,'James Goldman',1927,1998),(63973,'Chris Boardman',1954,NULL),(64057,'William S. Beasley',NULL,NULL),(64062,'Eric L. Beason',NULL,NULL),(64106,'Jesse Beaton',NULL,NULL),(64155,'Ian Beattie',1965,NULL),(64179,'Scott Beattie',NULL,NULL),(64181,'Stuart Beattie',NULL,NULL),(64290,'Christophe Beaucarne',1965,NULL),(64293,'Annie Beauchamp',NULL,NULL),(64382,'Marc Beaudet',1919,1978),(64415,'William Beaudine',1892,1970),(64433,'Michelle Beaudoin',1975,NULL),(64444,'Pete Beaudreau',NULL,NULL),(64455,'Michel Beaudry',NULL,NULL),(64479,'Simon Beaufoy',1967,NULL),(64492,'Bruno Beaugé',NULL,NULL),(64497,'Marguerite Renoir',1906,1987),(64503,'Jérôme Beaujour',NULL,NULL),(64510,'Benoit Beaulieu',NULL,NULL),(64546,'Trace Beaulieu',1958,NULL),(64555,'Nicholas Beauman',NULL,NULL),(64556,'Phil Beauman',NULL,NULL),(64559,'Beaumarchais',1732,1799),(64579,'Charles Beaumont',1929,1967),(64600,'Harry Beaumont',1888,1966),(64607,'Kathryn Beaumont',1938,NULL),(64651,'André-Line Beauparlant',NULL,NULL),(64669,'Marc Beaupré',NULL,NULL),(64676,'Georges de Beauregard',1920,1984),(64741,'Xavier Beauvois',1967,NULL),(64940,'Pernille Bech Christensen',1959,NULL),(65007,'Demián Bichir',1963,NULL),(65078,'Béatrix Beck',1914,2008),(65100,'Christophe Beck',1968,NULL),(65183,'John Beck',1943,NULL),(65184,'John Beck',1909,1993),(65206,'Kimberly Beck',1956,NULL),(65235,'Michael Beck',1949,NULL),(65259,'Reginald Beck',1902,1992),(65284,'Steve Beck',NULL,NULL),(65352,'Belinda Becker',NULL,NULL),(65376,'Christian Becker',1972,NULL),(65408,'Frank Becker',NULL,NULL),(65418,'Gerry Becker',1951,2019),(65442,'Jacques Becker',1906,1960),(65449,'Jean Becker',1933,NULL),(65493,'Kuno Becker',1978,NULL),(65510,'Louis Becker',NULL,NULL),(65583,'Sharon Becker',NULL,NULL),(65608,'Walt Becker',1968,NULL),(65615,'Wolfgang Becker',1954,NULL),(65616,'Étienne Becker',1936,1995),(65639,'Sidney Beckerman',1920,2008),(65687,'Hal Beckett',NULL,NULL),(65690,'Jack Beckett',NULL,NULL),(65716,'Samuel Beckett',1906,1989),(65781,'Adam Beckman',NULL,NULL),(65806,'John Beckman',1950,NULL),(65847,'Michael Frost Beckner',1963,NULL),(65899,'Dave Becky',NULL,NULL),(65942,'Irene Bedard',1967,NULL),(65980,'Frank Beddor',NULL,NULL),(66016,'Michael Bederman',NULL,NULL),(66028,'Brian Bedford',1935,2016),(66047,'Richard Bedford',NULL,NULL),(66055,'Terry Bedford',1943,NULL),(66063,'Bobby Bedi',1956,NULL),(66079,'Marc Bedia',NULL,NULL),(66080,'Ramzy Bedia',1972,NULL),(66144,'Gerry Bednob',NULL,NULL),(66159,'Guy Bedos',1934,2020),(66244,'Dion Beebe',1968,NULL),(66373,'Herman Beeftink',1953,NULL),(66439,'Greg Beeman',1962,NULL),(66463,'Yada Beener',NULL,NULL),(66519,'Maurice Beerblock',1930,1998),(66530,'Betsy Beers',NULL,NULL),(66580,'Jeff Beesley',NULL,NULL),(66586,'Max Beesley',1971,NULL),(66607,'Paul Beeson',1921,2001),(66644,'Geoffrey Beevers',1941,NULL),(66764,'Michael Begler',NULL,NULL),(66818,'Chad Beguelin',NULL,NULL),(66836,'Jeff Begun',NULL,NULL),(66851,'Jackie Filgo',NULL,NULL),(66854,'Paudge Behan',NULL,NULL),(66939,'Marc Behm',1925,2007),(66946,'Harry Behn',1898,1973),(66949,'Noel Behn',1928,1998),(66951,'Peter Behn',1934,NULL),(66963,'Dietmar Behnke',NULL,NULL),(66985,'Ira Steven Behr',1953,NULL),(67049,'Bernard Behrens',1926,2012),(67103,'S.N. Behrman',1893,1973),(67112,'Don Behrns',1938,NULL),(67135,'Albert Beich',1919,1996),(67166,'Frédéric Beigbeder',1965,NULL),(67235,'Ulrike Beimpold',1965,NULL),(67270,'Joe Beirne',NULL,NULL),(67308,'Ian Hay',1876,1952),(67367,'Bérénice Bejo',1976,NULL),(67408,'Jeroen Beker',1966,NULL),(67457,'Timur Bekmambetov',1961,NULL),(67514,'Josyane Gibert',1940,NULL),(67521,'Baya Belal',NULL,NULL),(67618,'Sergi Belbel',1963,NULL),(67619,'Stephen Belber',1967,NULL),(67634,'Charles Belcher',1872,1943),(67643,'Joe Belcher',1928,2006),(67676,'Charles Belden',1904,1954),(67754,'Lisa Ann Beley',1975,NULL),(67789,'Jordan Belfort',1962,NULL),(67801,'Arnold Belgard',1907,1967),(67943,'Areski Belkacem',NULL,NULL),(68008,'Alan Edward Bell',NULL,NULL),(68042,'Ashley Bell',1986,NULL),(68081,'Brian Bell',1975,NULL),(68126,'Daniel Bell',NULL,NULL),(68132,'Dave Bell',1932,2016),(68150,'Dexter Bell',NULL,NULL),(68166,'Drake Bell',1986,NULL),(68183,'Elisa Bell',1965,NULL),(68187,'Emma Bell',1986,NULL),(68211,'Garry Bell',NULL,NULL),(68260,'Jamie Bell',1986,NULL),(68304,'Jonathan Dale Bell',NULL,NULL),(68328,'Keith Bell',NULL,NULL),(68338,'Kristen Bell',1980,NULL),(68501,'Ross Grayson Bell',NULL,NULL),(68551,'Tobin Bell',1942,NULL),(68580,'Wayne Bell',NULL,NULL),(68587,'William Brent Bell',NULL,NULL),(68599,'Vanessa Bell Calloway',1957,NULL),(68643,'Belladonna',1981,NULL),(68662,'John Bellairs',1938,1991),(68684,'Bruce Bellamy',NULL,NULL),(68705,'Madge Bellamy',1899,1990),(68877,'Marty Beller',NULL,NULL),(68925,'Bernard Bellew',NULL,NULL),(68935,'Nellie Bellflower',1946,NULL),(68999,'Andrew Belling',1945,NULL),(69001,'Davina Belling',1940,NULL),(69063,'Bob Bellion',1961,NULL),(69079,'Troian Bellisario',1985,NULL),(69166,'Marco Bellocchio',1939,NULL),(69197,'Roger Bellon',1953,NULL),(69209,'Carlos Belloso',1963,NULL),(69282,'Peter Bellwood',NULL,NULL),(69310,'Alain Belmondo',1931,NULL),(69410,'Edmund Beloin',1910,1992),(69417,'Henri Belolo',1936,2019),(69483,'Valeriya Belova',1938,NULL),(69547,'Jerry Belson',1938,2006),(69549,'Kristine Belson',NULL,NULL),(69798,'Leslie Belzberg',1953,NULL),(69833,'María Luisa Bemberg',1922,1995),(69840,'Ludwig Bemelmans',1898,1962),(69893,'Tarak Ben Ammar',1949,NULL),(69963,'Saïd Ben Saïd',1966,NULL),(69964,'Fatma Ben Saïdane',1949,NULL),(70148,'Margot Benacerraf',1926,NULL),(70152,'Tonino Benacquista',1961,NULL),(70159,'Jafar Panahi',1960,NULL),(70216,'John Paul Fedele',NULL,NULL),(70232,'Pat Benatar',1953,NULL),(70238,'Rick Benattar',NULL,NULL),(70300,'Georges Benayoun',NULL,NULL),(70347,'Ohad Benchetrit',NULL,NULL),(70351,'Nitsa Benchetrit',NULL,NULL),(70361,'Robert Benchley',1889,1945),(70368,'Steve Bencich',NULL,NULL),(70380,'Alessandro Bencivenni',1954,NULL),(70387,'Ferenc Bencze',1924,1990),(70436,'Steve Bendelack',NULL,NULL),(70443,'Aimee Bender',NULL,NULL),(70454,'Chris Bender',1971,NULL),(70460,'Dominik Bender',1957,2023),(70474,'Jack Bender',1949,NULL),(70498,'Michael Bender',1946,1997),(70500,'Mike Bender',1975,NULL),(70511,'Russ Bender',1910,1969),(70566,'Jessica Bendinger',1966,NULL),(70592,'Mia Bendixsen',NULL,NULL),(70631,'Henning Bendtsen',1925,2011),(70660,'Barbara Benedek',NULL,NULL),(70670,'Laslo Benedek',1905,1992),(70672,'Miklós Benedek',1946,NULL),(70688,'Benedetto Benedetti',NULL,NULL),(70757,'Brooks Benedict',1896,1968),(70767,'Dirk Benedict',1945,NULL),(70801,'Paul Benedict',1938,2008),(70810,'Rob Benedict',NULL,NULL),(70822,'Terry Benedict',NULL,NULL),(70922,'Thomas Benesch',NULL,NULL),(70932,'Josep Maria Benet i Jornet',1940,2020),(70948,'Stephen Vincent Benet',1898,1943),(71014,'Vassal Benford',NULL,NULL),(71059,'Hubertus Bengsch',1952,NULL),(71070,'Ulrika Bengts',1962,NULL),(71084,'Frans G. Bengtsson',1894,1954),(71114,'Jean Benguigui',1944,NULL),(71116,'Valérie Benguigui',1961,2013),(71239,'Claire Benito',NULL,NULL),(71250,'Mario de Benito',1958,NULL),(71257,'Timy Benito',NULL,NULL),(71260,'Albert Benitz',1904,1979),(71275,'André 3000',1975,NULL),(71280,'Arthur Benjamin',1893,1960),(71304,'H. Jon Benjamin',1966,NULL),(71345,'Paul Benjamin',1938,2019),(71363,'Stuart Benjamin',NULL,NULL),(71379,'Caroline Benjo',NULL,NULL),(71380,'Leif Benjour',1945,NULL),(71417,'Tom Benko',NULL,NULL),(71452,'Robert Benmussa',NULL,NULL),(71501,'Anne Bennent',1963,NULL),(71502,'Heinz Bennent',1921,2011),(71564,'Peter Bennett-Jones',1955,NULL),(71585,'Andrew Bennett',NULL,NULL),(71636,'Bruce Bennett',1906,2007),(71657,'Charles Bennett',1899,1995),(71682,'Compton Bennett',1900,1974),(71696,'Dave Bennett',NULL,2022),(71744,'Eloïse Bennett',NULL,NULL),(71758,'Frank Bennett',1890,1957),(71777,'Geoff Bennett',NULL,NULL),(71790,'Harve Bennett',1930,2015),(71818,'Jeff Bennett',1962,NULL),(71824,'Jill Bennett',1931,1990),(71825,'Jill Bennett',NULL,NULL),(71838,'John Bennett',1928,2005),(71847,'Manu Bennett',1969,NULL),(71879,'Laurence Bennett',NULL,NULL),(71970,'Parker Bennett',NULL,NULL),(72032,'Ronan Bennett',1956,NULL),(72112,'Wallace C. Bennett',NULL,NULL),(72124,'Zachary Bennett',1980,NULL),(72186,'Ishia Bennison',1949,NULL),(72301,'Georges Benoît',1883,1942),(72424,'Guy Bensley',NULL,NULL),(72435,'Amber Benson',1977,NULL),(72449,'Brian Benson',NULL,NULL),(72483,'Elizabeth Benson',1926,NULL),(72533,'Jodi Benson',1961,NULL),(72578,'Martin Benson',1918,2010),(72600,'Ned Benson',1977,NULL),(72602,'Nils Benson',NULL,NULL),(72610,'Perry Benson',1961,NULL),(72638,'Ryan C. Benson',NULL,NULL),(72639,'Sally Benson',1897,1972),(72713,'Lyriq Bent',NULL,NULL),(72829,'John Eric Bentley',1969,NULL),(72872,'Thomas Bentley',1884,1966),(72902,'Barbi Benton',1950,NULL),(72913,'Daniel Benton',1952,NULL),(72934,'Jerome Benton',1962,NULL),(72949,'Mark Benton',1965,NULL),(72971,'Susanne Benton',1948,NULL),(73026,'David Benullo',NULL,NULL),(73053,'Leonardo Benvenuti',1923,2000),(73088,'Michael Benyaer',NULL,NULL),(73134,'Simona Benzakein',NULL,NULL),(73137,'Daniel Benzali',1950,NULL),(73160,'Eric Benét',1966,NULL),(73172,'César Benítez',1957,NULL),(73203,'Jonathan Bepler',NULL,NULL),(73239,'George Beranger',1893,1973),(73268,'Dennis Berardi',NULL,NULL),(73272,'Mauro Berardi',1943,NULL),(73316,'Oliver Berben',1971,NULL),(73322,'Alain Berbérian',1953,2017),(73384,'Emmanuelle Bercot',1967,NULL),(73388,'Eric Bercovici',1933,2014),(73394,'Leonardo Bercovici',1908,1995),(73399,'Reuben Bercovitch',1923,2020),(73414,'Françoise Berd',1923,2001),(73488,'Géza Bereményi',1946,NULL),(73490,'Michael Berenbaum',1962,NULL),(73504,'Dan Berendsen',1963,NULL),(73551,'Craig Berenson',1959,NULL),(73554,'Matt Berenson',NULL,NULL),(73571,'Stephen Beresford',1972,NULL),(73612,'Simon Beresford',NULL,NULL),(73688,'Alec Berg',NULL,NULL),(73722,'Caroline Berg',1957,NULL),(73766,'Gretchen J. Berg',1971,NULL),(73827,'Sabine Berg',1958,NULL),(73850,'Michael Berg',NULL,NULL),(73875,'Quirin Berg',1978,NULL),(74073,'Waldemar Bergendahl',1933,2022),(74100,'Albert Berger',NULL,NULL),(74125,'William Berger',1928,1993),(74141,'Christian Berger',1945,NULL),(74163,'Edward Berger',1970,NULL),(74165,'Elizabeth Berger',1985,NULL),(74168,'Éric Berger',1969,NULL),(74184,'Glenn Berger',NULL,NULL),(74217,'Jan Berger',1970,NULL),(74303,'Nicole Berger',1934,1967),(74311,'Pablo Berger',1963,NULL),(74318,'Peter E. Berger',1944,2011),(74367,'Sidney Berger',1935,2013),(74383,'Thomas Berger',1924,2014),(74426,'Bibo Bergeron',NULL,NULL),(74445,'Jean-François Bergeron',NULL,NULL),(74488,'Paul Mayeda Berges',1968,NULL),(74547,'Thommy Berggren',1937,NULL),(74591,'José Berghmans',1921,1992),(74719,'Per Berglund',1939,NULL),(74735,'Alexander Bergman',1985,NULL),(74784,'Harold Bergman',1919,2019),(74788,'Henry Bergman',1868,1946),(74797,'Jeff Bergman',1960,NULL),(74834,'Mary Kay Bergman',1961,1999),(74851,'Ram Bergman',NULL,NULL),(74880,'Yael Bergman',1972,NULL),(74897,'Erik Bergmann',NULL,NULL),(74918,'Martin Bergman',NULL,NULL),(74980,'Erik Bergquist',NULL,NULL),(74996,'Gila Bergqvist',1968,NULL),(75010,'Stig Bergqvist',1962,NULL),(75015,'Eric Bergren',1954,2016),(75044,'Eleanor Bergstein',1938,NULL),(75087,'Helena Bergström',1964,NULL),(75150,'Joel Bergvall',NULL,NULL),(75163,'Francine Bergé',1938,NULL),(75244,'Gabriel Beristain',1949,NULL),(75276,'Michael Berk',NULL,NULL),(75303,'Ed Berke',NULL,NULL),(75324,'Anthony Berkeley',1893,1971),(75326,'Ballard Berkeley',1904,1988),(75344,'Martin Berkeley',1904,1979),(75351,'Reginald Berkeley',1881,1935),(75359,'Xander Berkeley',1955,NULL),(75528,'Greg Berlanti',1972,NULL),(75530,'David Berlatsky',1933,2018),(75551,'André Berley',1880,1936),(75626,'Alain Berliner',1963,NULL),(75645,'Roshelle Berliner',NULL,NULL),(75650,'Charles Berling',1958,NULL),(75688,'Charles Berlitz',1914,2003),(75696,'Andrea Berloff',NULL,NULL),(75706,'Silvio Berlusconi',1936,2023),(75710,'François Berléand',1952,NULL),(75724,'Andy Berman',1968,NULL),(75727,'Barry Berman',1957,NULL),(75732,'Bruce Berman',1952,NULL),(75762,'Gail Berman',1956,NULL),(75778,'Jessica Huppert Berman',NULL,NULL),(75789,'Juliet Berman',NULL,NULL),(75801,'Lester Berman',NULL,NULL),(75825,'Pandro S. Berman',1905,1996),(75828,'Richard C. Berman',NULL,NULL),(75834,'Rick Berman',1945,NULL),(75843,'Sabina Berman',1955,NULL),(75849,'Shari Springer Berman',1963,NULL),(75857,'Susan Berman',NULL,NULL),(75859,'Ted Berman',1919,2001),(75961,'Sven-Olof Bern',1919,1971),(76111,'Georges Bernanos',1888,1948),(76162,'Tom Nolan',1948,NULL),(76166,'Carlo Bernard',NULL,NULL),(76167,'Carlos Bernard',1962,NULL),(76204,'Ed Bernard',1939,NULL),(76231,'Guy Bernard',1907,1979),(76248,'Jacques Bernard',1929,NULL),(76251,'Jason Bernard',1938,1996),(76259,'Jean-Michel Bernard',1961,NULL),(76289,'Judd Bernard',1927,2022),(76310,'Marie Bernard',NULL,NULL),(76350,'Paul Bernard',1898,1958),(76412,'Peter Schink',NULL,NULL),(76444,'Barry Bernardi',NULL,NULL),(76555,'Carlo Bernasconi',1943,2001),(76602,'Paul Bernbaum',1957,NULL),(76618,'Edward Bernds',1905,2000),(76653,'Josef Berne',1904,1964),(76670,'Alexander Berner',1966,NULL),(76679,'Dieter Berner',1944,NULL),(76681,'Fred Berner',NULL,NULL),(76703,'Ted Berner',NULL,NULL),(76718,'Chopper Bernet',1963,NULL),(76748,'Harvey Bernhard',1924,2014),(76779,'Curtis Bernhardt',1899,1981),(76791,'Kevin Bernhardt',NULL,NULL),(76800,'Sarah Bernhardt',1844,1923),(76810,'Alain Bernheim',1922,2009),(76814,'Emmanuèle Bernheim',1955,2017),(76820,'Robin Bernheim',NULL,NULL),(76877,'Kristian Bernier',1968,NULL),(76889,'Mélanie Bernier',1985,NULL),(76933,'Bleuette Bernon',1878,1937),(76988,'Al Bernstein',1950,NULL),(76998,'Anne D. Bernstein',1961,2022),(77000,'Armyan Bernstein',1947,NULL),(77002,'Assaf Bernstein',NULL,NULL),(77007,'Bill Bernstein',NULL,NULL),(77012,'Carl Bernstein',1944,NULL),(77043,'Fred Bernstein',NULL,NULL),(77052,'Gregory Bernstein',1955,NULL),(77062,'Jack Bernstein',NULL,NULL),(77080,'Jonathan Bernstein',NULL,NULL),(77086,'Leonard Bernstein',1918,1990),(77094,'Marcos Bernstein',1970,NULL),(77110,'Nancy Bernstein',1960,2015),(77127,'Robert Bernstein',NULL,NULL),(77149,'Steven Bernstein',NULL,NULL),(77159,'Walter Bernstein',1919,2021),(77171,'Eric Bernt',NULL,NULL),(77220,'Arthur Bernède',1871,1937),(77269,'Douglas Berquist',NULL,NULL),(77320,'George Berrell',1849,1933),(77365,'Gillian Berrie',1967,NULL),(77366,'John Berrie',NULL,NULL),(77397,'Elizabeth Berrington',1970,NULL),(77446,'Paul Berrow',NULL,NULL),(77468,'Adam Berry',NULL,NULL),(77523,'Dale Berry',1928,2011),(77527,'David Berry',1943,2016),(77551,'Glen Berry',1978,NULL),(77587,'John Berry',1917,1999),(77598,'Jules Berry',1883,1951),(77622,'Marilou Berry',1983,NULL),(77630,'Mellissa Berry',NULL,NULL),(77669,'Sam Berry',NULL,NULL),(77670,'Sarah Berry',1960,NULL),(77681,'Sudesh Berry',1960,NULL),(77692,'Vincent Berry',1987,NULL),(77715,'Dorothée Berryman',1948,NULL),(77720,'Michael Berryman',1948,NULL),(77768,'Will Berson',NULL,NULL),(77855,'Adele Bertei',NULL,NULL),(77926,'Susan Berthel-Ying',NULL,NULL),(77944,'Anders W. Berthelsen',1969,NULL),(78097,'Françoise Bertin',1925,2014),(78109,'Roland Bertin',1930,NULL),(78139,'Michael Bertl',1963,NULL),(78155,'Juliet Berto',1947,1990),(78203,'Christopher Bertolini',NULL,NULL),(78224,'John Bertolli',NULL,NULL),(78232,'Giovanni Bertolucci',1940,2005),(78233,'Giuseppe Bertolucci',1947,2012),(78307,'Elisabeth Bertram',1902,1999),(78326,'Marius Bertram',NULL,NULL),(78442,'Marguerite Bertsch',1889,1967),(78452,'Valeria Bertuccelli',1969,NULL),(78464,'Jean-Louis Bertuccelli',1942,2014),(78465,'Julie Bertuccelli',1968,NULL),(78473,'Paul Hertzberg',NULL,NULL),(78514,'André Bervil',1905,1972),(78517,'Gene Bervoets',1956,NULL),(78657,'James Beshears',NULL,NULL),(78698,'Michael Besman',NULL,NULL),(78704,'Éric Besnard',1964,NULL),(78706,'Jean-Pierre Besnard',NULL,NULL),(78712,'Dominique Besnehard',1954,NULL),(78735,'Lynne Bespflug',NULL,NULL),(78762,'Carl Bessai',NULL,NULL),(78804,'Stuart M. Besser',NULL,NULL),(78806,'Eugenie Besserer',1868,1934),(78811,'Jean-Marie Besset',NULL,NULL),(78813,'Serge Besset',NULL,NULL),(78827,'Alvah Bessie',1904,1985),(78868,'René Besson',NULL,NULL),(78897,'Ben Best',1974,2021),(78923,'Edna Best',1900,1974),(78940,'James Best',1926,2015),(78943,'Janeen Damian',NULL,NULL),(78984,'Peter Best',1943,NULL),(79001,'Thom Best',NULL,NULL),(79065,'Mariela Besuievsky',NULL,NULL),(79071,'Quinn Beswick',1987,NULL),(79256,'Minoru Betsuyaku',1937,2020),(79263,'Marco Betta',1964,NULL),(79273,'Paul Bettany',1971,NULL),(79286,'Karl Bette',1916,2006),(79323,'Tom Betterton',NULL,NULL),(79341,'Laura Betti',1927,2004),(79353,'Val Bettin',1923,2021),(79374,'Angela Bettis',1973,NULL),(79399,'Franca Bettoia',1936,NULL),(79418,'Daniel Betts',1970,NULL),(79437,'Harry Betts',NULL,NULL),(79448,'Maggie Betts',NULL,NULL),(79471,'Jonathan R. Betuel',1949,NULL),(79475,'Carl Betz',1921,1978),(79506,'Just Betzer',1944,2003),(79513,'Christina von Blanc',NULL,NULL),(79552,'Céline Beugnot',NULL,NULL),(79567,'Avril Beukes',NULL,NULL),(79578,'Antoinette Beumer',1962,NULL),(79629,'Philippe Beuzen',NULL,NULL),(79638,'Hilary Bevan Jones',NULL,NULL),(79651,'Daisy Bevan',1992,NULL),(79654,'Donald Bevan',1920,2013),(79677,'Tim Bevan',1957,NULL),(79715,'Ryan Beveridge',NULL,NULL),(79797,'Frank Bevis',1907,2003),(79846,'Nathan Bexton',1977,NULL),(79879,'Kent Beyda',1953,NULL),(79890,'Alexander Beyer',1973,NULL),(79894,'Brad Beyer',1973,NULL),(79896,'Carl Beyer',1964,NULL),(79982,'John Beymer',NULL,NULL),(80013,'Gérard Beytout',1930,1990),(80020,'Didier Bezace',1946,2020),(80035,'René Bezard',NULL,NULL),(80049,'Yasiin Bey',1973,NULL),(80120,'Thomas Bezucha',1964,NULL),(80220,'Sanjay Leela Bhansali',1963,NULL),(80233,'Radha Bharadwaj',NULL,NULL),(80235,'Vishal Bhardwaj',1965,NULL),(80259,'Girish Bhargava',1941,2017),(80276,'Sanjeev Bhaskar',1963,NULL),(80325,'Pravin Bhatt',NULL,NULL),(80490,'Peter Biagi',1963,NULL),(80521,'Gwen Bialic',NULL,NULL),(80609,'Gogò Bianchi',NULL,NULL),(80755,'Oreste Biancoli',1897,1971),(80868,'Herbert J. Biberman',1900,1971),(80930,'Edward Biby',1886,1952),(80995,'Daniel Bickel',1961,NULL),(81046,'Laura Bickford',1962,NULL),(81060,'Grace Cary Bickley',NULL,NULL),(81070,'Andrew Bicknell',NULL,NULL),(81081,'Jenny Bicks',1963,NULL),(81133,'Adrienne Biddle',1971,NULL),(81175,'Jean-Luc Bideau',1940,NULL),(81179,'Thomas Bidegain',1968,NULL),(81189,'Ann Biderman',1951,NULL),(81279,'Rick Bieber',NULL,NULL),(81305,'Alfons Biedermann',NULL,NULL),(81361,'Edward Peil Sr.',1883,1958),(81433,'Fabián Bielinsky',1959,2006),(81493,'Andy Bienen',NULL,NULL),(81495,'Dagmar Biener',1946,NULL),(81514,'Marc Bienstock',NULL,NULL),(81540,'Susanne Bier',1960,NULL),(81560,'Ramon Bieri',1929,2001),(81572,'Craig Bierko',1964,NULL),(81597,'Rudolf Biermann',1958,NULL),(81644,'Sascha Biesi',1973,NULL),(81661,'Jean-Claude Biette',1942,2003),(81702,'Claudio Bigagli',1955,NULL),(81723,'Luca Bigazzi',1958,NULL),(81730,'Daniel Bigel',NULL,NULL),(81751,'Lynn Kouf',NULL,NULL),(81759,'Bam Bam Bigelow',1961,2007),(81788,'Earl Derr Biggers',1884,1933),(81794,'W. Watts Biggers',1927,2013),(81801,'Sean Biggerstaff',1983,NULL),(81841,'Douglass Biggs',1903,1968),(81852,'Julian Biggs',1920,1972),(81875,'Jim Bigham',NULL,NULL),(82008,'André Bijelic',NULL,NULL),(82012,'Gordon Bijelonic',NULL,NULL),(82058,'Anat Bikel',NULL,NULL),(82094,'Enki Bilal',1951,NULL),(82104,'Vinnie Bilancio',NULL,NULL),(82162,'Jill Bilcock',1948,NULL),(82211,'Haluk Bilginer',1954,NULL),(82300,'Tony Bill',1940,NULL),(82366,'Anna Biller',NULL,NULL),(82419,'Riccardo Billi',1906,1982),(82450,'Paul Feig',1962,NULL),(82507,'Beau Billingslea',1944,NULL),(82517,'John Billingsley',1960,NULL),(82526,'Peter Billingsley',1971,NULL),(82636,'Emmanuel Bilodeau',1964,NULL),(82676,'Bruce Bilson',1928,NULL),(82677,'Danny Bilson',1956,NULL),(82748,'Charles Binamé',1949,NULL),(82759,'Maeve Binchy',1940,2012),(82772,'Carl Binder',NULL,NULL),(82784,'Jack Binder',NULL,NULL),(82797,'Mark Binder',NULL,NULL),(82802,'Mike Binder',1958,NULL),(82839,'Scott Bindley',NULL,NULL),(82884,'Herman Bing',1889,1947),(82893,'Steve Bing',1965,2020),(82894,'Tracey Bing',NULL,NULL),(82981,'Alfredo Bini',1926,2010),(82994,'Joe Bini',1963,NULL),(83035,'Gary Binkow',1962,NULL),(83125,'Claude Binyon',1905,1978),(83170,'Pietro Biondi',1939,NULL),(83279,'Patricia Birch',1934,NULL),(83281,'Peter Birch',NULL,2017),(83326,'Harry Birckmayer',1963,NULL),(83340,'Andrew Bird',1956,NULL),(83348,'Brad Bird',1957,NULL),(83349,'Brian Bird',NULL,NULL),(83382,'Ivan Bird',NULL,NULL),(83408,'Matthew Bird',NULL,NULL),(83531,'Roberto Birindelli',NULL,NULL),(83532,'Leo Birinsky',1884,1951),(83547,'David Birke',NULL,NULL),(83555,'Anders Birkeland',1953,NULL),(83559,'Ole Bratt Birkeland',NULL,NULL),(83564,'Lauren Birkell',1976,NULL),(83588,'Michael Birkett',1929,2015),(83590,'Paul A. Birkett',NULL,NULL),(83605,'David Birkin',1977,NULL),(83655,'Gil Birmingham',1953,NULL),(83656,'Hilary Birmingham',NULL,NULL),(83658,'John Birmingham',NULL,NULL),(83671,'Amy Birnbaum',1975,NULL),(83688,'Michael Birnbaum',NULL,NULL),(83696,'Roger Birnbaum',NULL,NULL),(83709,'David Birney',1939,2022),(83714,'Reed Birney',1954,NULL),(83723,'Donald H. Birnkrant',1932,NULL),(83742,'Lajos Biró',1880,1948),(83751,'Stéphanie Anne Weber Biron',1976,NULL),(83777,'Taner Birsel',1959,NULL),(83795,'Eva Birthistle',1974,NULL),(83803,'Harrison Birtwistle',1934,2022),(83851,'Sam Bisbee',NULL,NULL),(84019,'Dan Bishop',NULL,NULL),(84059,'Gregg Bishop',1974,NULL),(84086,'Joey Bishop',1918,2007),(84090,'John Bishop',1929,2006),(84107,'Kevin Bishop',1980,NULL),(84167,'Phillan Bishop',1948,1991),(84241,'Claudio Bisio',1957,NULL),(84244,'Sergio Bizzio',1956,NULL),(84267,'Val Bisoglio',1926,2021),(84304,'Jim Bissell',1951,NULL),(84312,'Robin Bissell',1968,NULL),(84334,'Buzz Bissinger',1954,NULL),(84426,'Danielle Bisutti',1976,NULL),(84430,'Erwin Biswanger',1896,1970),(84443,'Seema Biswas',1965,NULL),(84492,'Charles L. Bitsch',1931,2016),(84598,'Rick Bitzelberger',NULL,NULL),(84642,'Bill Bixby',1934,1993),(84655,'Franco Bixio',NULL,NULL),(84658,'David Bixler',NULL,NULL),(84663,'Jay Bixsen',NULL,NULL),(84695,'Peter Biziou',1944,NULL),(84759,'Predrag Bjelac',1962,NULL),(84917,'Halvar Björk',1928,2000),(84950,'Irina Björklund',1973,NULL),(85038,'Gunnar Björnstrand',1909,1986),(85109,'Aaron Blabey',NULL,NULL),(85156,'Alexander Black',1859,1940),(85257,'Dustin Lance Black',1974,NULL),(85261,'Edward Black',1900,1948),(85278,'Gabriel Black',NULL,NULL),(85288,'George R. Black',NULL,NULL),(85312,'Jack Black',1969,NULL),(85353,'John D.F. Black',1932,2018),(85400,'Lewis Black',1948,NULL),(85407,'Lucas Black',1982,NULL),(85433,'Michael Black',NULL,NULL),(85438,'Michael Ian Black',1971,NULL),(85542,'Todd Black',1960,NULL),(85612,'Ken Blackburn',1935,NULL),(85636,'Richard Blackburn',NULL,NULL),(85685,'Richard Blackford',1954,NULL),(85718,'Kaja Blackley',NULL,NULL),(85732,'Damon \'Grease\' Blackman',NULL,NULL),(85736,'Dirk Blackman',NULL,NULL),(85751,'Joan Blackman',1938,NULL),(85782,'Sidney Blackmer',1895,1973),(85804,'Peter Blackmore',1909,1984),(85823,'Stephen Blackpool',NULL,NULL),(85865,'J. Stuart Blackton',1875,1941),(85889,'Chris Blackwell',1937,NULL),(85997,'Vas Blackwood',1962,NULL),(86014,'Richard Blade',1956,NULL),(86111,'Ellen Blain',NULL,NULL),(86176,'Vivian Blaine',1921,1995),(86180,'Sue Blainey',NULL,NULL),(86194,'April Blair',NULL,NULL),(86198,'Betsy Blair',1923,2009),(86205,'Bre Blair',1980,NULL),(86250,'Gavin Blair',1961,NULL),(86268,'Janet Blair',1921,2007),(86293,'Lee Blair',1911,1993),(86301,'Macon Blair',1974,NULL),(86304,'Mary Blair',1911,1978),(86324,'Paul Blair',NULL,NULL),(86379,'Joseph Blaire',NULL,NULL),(86396,'Isabelle Blais',1975,NULL),(86414,'Sylvain Blais',NULL,NULL),(86416,'Valérie Blais',NULL,NULL),(86430,'William Blaisdell',1865,1931),(86431,'Aaron Blaise',1968,NULL),(86491,'Bill Blake',NULL,NULL),(86553,'Geoffrey Blake',1962,NULL),(86574,'Howard Blake',1938,NULL),(86609,'Josh Blake',1975,NULL),(86613,'Juliet Blake',NULL,NULL),(86658,'Michael Blake',1945,2015),(86690,'Perry Andelin Blake',NULL,NULL),(86697,'Rachael Blake',1971,NULL),(86773,'Tom Blakeley',1916,1984),(86780,'Colin Blakely',1930,1987),(86794,'John Blakeley',NULL,NULL),(86806,'Susan Blakely',1948,NULL),(86865,'Claudie Blakley',1973,NULL),(86867,'Ronee Blakley',1945,NULL),(86883,'Jolene Blalock',1975,NULL),(86912,'Alain-Michel Blanc',NULL,NULL),(86924,'Dominique Blanc',1956,NULL),(86955,'Nicolas Blanc',NULL,NULL),(86998,'Ken Blancato',1945,2021),(87017,'Dominique Blanchar',1927,2018),(87109,'Tammy Blanchard',1976,NULL),(87249,'Eduardo Blanco',1958,NULL),(87308,'Pablo Blanco',NULL,NULL),(87324,'Rita Blanco',1963,NULL),(87460,'Larry Blanford',NULL,NULL),(87467,'Folmar Blangsted',1904,1982),(87491,'Dorothée Blanck',1934,2016),(87513,'Lowell D. Blank',NULL,NULL),(87533,'Henry Blanke',1901,1981),(87552,'Beverley Blankenship',NULL,NULL),(87575,'Betsy Blankett Milicevic',NULL,NULL),(87581,'Michael Blankfort',1907,1982),(87595,'Jamie Blanks',NULL,NULL),(87646,'Philippe Blasband',1964,NULL),(87658,'Vicente Blasco Ibáñez',1867,1928),(87715,'Ernest Blasi',NULL,NULL),(87805,'Joseph Blatchley',1948,NULL),(87807,'Assen Blatechki',1971,NULL),(87828,'Daniel H. Blatt',1937,2013),(87842,'Stuart Blatt',NULL,NULL),(87861,'William Peter Blatty',1928,2017),(87904,'Barry W. Blaustein',1955,NULL),(87906,'Julian Blaustein',1913,1995),(87918,'Christopher Blauvelt',1970,NULL),(88060,'Lord James Blears',1923,2016),(88097,'Corey Blechman',NULL,NULL),(88098,'Jonah Blechman',NULL,NULL),(88121,'Jeff Bleckner',1943,NULL),(88127,'Alexis Bledel',1981,NULL),(88161,'Robert Blees',1918,2015),(88173,'Ehud Bleiberg',NULL,NULL),(88214,'Jérôme Bleitrach',NULL,NULL),(88245,'Jan Blenkin',NULL,NULL),(88285,'Billy Bletcher',1894,1979),(88298,'Corbin Bleu',1989,NULL),(88324,'Michael Blevins',1960,NULL),(88340,'David E. Blewitt',1928,2010),(88346,'Carla Bley',1936,NULL),(88373,'John Blick',1945,NULL),(88383,'Bettina Blickwede',1966,NULL),(88385,'Hedvig Blidberg',1954,NULL),(88396,'Bernard Blier',1916,1989),(88397,'Bertrand Blier',1939,NULL),(88414,'Rosemary Blight',NULL,NULL),(88423,'Jean-Philippe Blime',NULL,NULL),(88471,'B.F. Blinn',1872,1941),(88479,'William Blinn',1937,2020),(88536,'Thomas A. Bliss',1952,NULL),(88602,'Bertram Bloch',1892,1987),(88645,'Robert Bloch',1917,1994),(88662,'Lawrence G. Blochman',1900,1975),(88670,'Alfred Block',1897,1949),(88676,'Axel Block',1947,NULL),(88692,'Bruce A. Block',NULL,NULL),(88700,'Corey Block',NULL,NULL),(88726,'Irving Block',1910,1986),(88745,'Larry Block',1942,2012),(88747,'Lawrence Block',1938,NULL),(88748,'Libbie Block',1910,1972),(88756,'Peter Block',NULL,NULL),(88769,'Susan Block',NULL,NULL),(88770,'Suziey Block',1978,NULL),(88780,'David Blocker',1955,NULL),(88793,'Michael Blodgett',1939,2007),(88798,'Gregor Bloéb',1968,NULL),(88833,'Jennifer Blohm',NULL,NULL),(88858,'Marnie Blok',1962,NULL),(88955,'Neill Blomkamp',1979,NULL),(89033,'Régis Blondeau',NULL,NULL),(89058,'Tony Curtis Blondell',NULL,NULL),(89141,'Brian Bloom',1970,NULL),(89162,'Frederick Vroom',1857,1942),(89169,'Harold Jack Bloom',1924,1999),(89182,'John Bloom',1935,NULL),(89217,'Orlando Bloom',1977,NULL),(89231,'Scott Bloom',1973,NULL),(89237,'Steve Bloom',NULL,NULL),(89244,'Verna Bloom',1938,2019),(89247,'William Bloom',1915,1983),(89255,'Michael Bloomberg',1942,NULL),(89280,'Mike Bloomfield',1943,1981),(89314,'Eric Blore',1887,1959),(89333,'Patrick Blossier',1949,NULL),(89337,'Blossom Toes',NULL,NULL),(89348,'Roberts Blossom',1924,2011),(89408,'Lisa Blount',1957,2010),(89454,'Susan Blu',1948,NULL),(89456,'Marc Blucas',1972,NULL),(89459,'Richard Bluck',NULL,NULL),(89485,'Callum Blue',1977,NULL),(89502,'Albert Pyun',1953,2022),(89614,'Alex Blum',NULL,NULL),(89622,'Bill Blum',NULL,NULL),(89634,'Deborah Blum',NULL,NULL),(89637,'Edwin Blum',1906,1995),(89658,'Jason Blum',1969,NULL),(89676,'Len Blum',1951,NULL),(89685,'Mark Blum',1950,2020),(89707,'Steve Blum',1960,NULL),(89720,'Trevor Blumas',1984,NULL),(89742,'Stuart Blumberg',1969,NULL),(89750,'Ian Blume',NULL,NULL),(89755,'Judy Blume',1938,NULL),(89756,'Lawrence Blume',1963,NULL),(89760,'Renate Blume',1944,NULL),(89805,'Andy Blumenthal',NULL,NULL),(89820,'Jason Blumenthal',NULL,NULL),(89824,'John Blumenthal',NULL,NULL),(89838,'Richard Blumenthal',1905,1962),(89851,'Yann Philippe Blumers',NULL,NULL),(89884,'John Blundell',NULL,NULL),(89926,'Douglas Blush',NULL,NULL),(89937,'Lothaire Bluteau',1957,NULL),(89940,'Don Bluth',1937,NULL),(90007,'John G. Blystone',1892,1938),(90008,'Stanley Blystone',1894,1956),(90041,'Janus Blythe',1951,NULL),(90058,'Sydney Blythe',1885,NULL),(90066,'Reggie Rock Bythewood',1965,NULL),(90076,'Zdenek Bláha',1925,1978),(90151,'Jeffrey Boam',1946,2000),(90187,'Eleanor Boardman',1898,1991),(90199,'Paul Harris Boardman',NULL,NULL),(90204,'True Boardman',1880,1918),(90213,'Al Boasberg',1892,1937),(90225,'Michael Boatman',1964,NULL),(90292,'Roger M. Bobb',1967,NULL),(90309,'Russell Bobbitt',NULL,NULL),(90312,'Sean Bobbitt',1958,NULL),(90321,'Anne Bobby',1967,NULL),(90350,'Philippe Bober',NULL,NULL),(90386,'James Bobin',1972,NULL),(90394,'Daniel Bobker',NULL,NULL),(90434,'Ivan Bobrov',1904,1952),(90454,'Peter Bobrow',NULL,NULL),(90469,'Barbora Bobulova',1974,NULL),(90504,'Giovanni Boccaccio',1313,1375),(90614,'Michelle Bochner Spitz',NULL,NULL),(90618,'Sally Bochner',NULL,NULL),(90674,'Rainer Bock',1954,NULL),(90776,'Mag Bodard',1916,2019),(90799,'Michael Boddicker',1953,NULL),(90840,'DeWitt Bodeen',1908,1988),(90867,'Kristina Boden',NULL,NULL),(90956,'Martin Bodin',1903,1976),(91035,'Kim Bodnia',1965,NULL),(91072,'Gyula Bodrogi',1934,NULL),(91076,'Sergei Bodrov',1948,NULL),(91200,'David Boehm',1893,1962),(91213,'Sydney Boehm',1908,1990),(91250,'Todd Boekelheide',NULL,NULL),(91281,'Paleis van Boem',NULL,NULL),(91322,'Maike Boerdam',1976,NULL),(91402,'Francis Boespflug',1948,2018),(91430,'Budd Boetticher',1916,2001),(91461,'Jean Boffety',1925,1988),(91463,'Robert Boffety',NULL,NULL),(91502,'Lucienne Bogaert',1892,1983),(91575,'Paul Bogart',1919,2012),(91579,'Timothy Scott Bogart',NULL,NULL),(91583,'Ed Bogas',1942,NULL),(91602,'Zachary Weintraub',NULL,NULL),(91650,'Jon Bogdanove',1958,NULL),(91673,'Louise Stratten',1968,NULL),(91686,'Hagen Bogdanski',1965,NULL),(91768,'Gail Boggs',NULL,NULL),(91772,'Haskell B. Boggs',1909,2003),(91841,'Dunja Sepcic',NULL,NULL),(91980,'Fred Bohanan',1907,1980),(92006,'Roger Bohbot',NULL,NULL),(92015,'Endre Bohem',1901,1990),(92018,'Leslie Bohem',1951,NULL),(92042,'Sandra Bohle',NULL,NULL),(92054,'Jonas Bohlin',NULL,NULL),(92061,'Adam Bohling',NULL,NULL),(92063,'Don Bohlinger',NULL,NULL),(92135,'Folker Bohnet',1937,2020),(92184,'Richard Bohringer',1942,NULL),(92216,'Big Boi',1975,NULL),(92265,'Nathalie Boileau',NULL,NULL),(92267,'Pierre Boileau',1906,1989),(92268,'Thomas Narcejac',1908,1998),(92290,'Curt Bois',1901,1991),(92316,'Valérie Boisgel',1946,2014),(92330,'Michel Boisrond',1921,2002),(92362,'Julien Boisselier',1970,NULL),(92384,'Noëlle Boisson',1944,NULL),(92422,'Peter Boita',1924,1997),(92436,'Camillo Boito',1836,1914),(92444,'Julien Boivent',NULL,NULL),(92497,'Claus Boje',1958,2023),(92575,'Oliver Bokelberg',1964,NULL),(92578,'Jon Bokenkamp',NULL,NULL),(92592,'Pierre Bokma',1955,NULL),(92632,'Carlos Bolado',1964,NULL),(92658,'Bridget Boland',1913,1988),(92683,'Mary Boland',1882,1965),(92688,'Patrick Boland',NULL,NULL),(92693,'Russell Boland',NULL,NULL),(92774,'Philip Bolden',1995,NULL),(92776,'Cal Bolder',1931,2005),(92830,'Jonathan Bolduc',NULL,NULL),(92839,'Nicolas Bolduc',1973,NULL),(92868,'John Bolen',1953,NULL),(92900,'John Boles',1895,1969),(92915,'Richard Boleslawski',1889,1937),(92961,'Sarah Bolger',1991,NULL),(93030,'Florinda Bolkan',1941,NULL),(93051,'Uwe Boll',1965,NULL),(93081,'Icíar Bollaín',1967,NULL),(93088,'Jean-Claude Bolle-Reddat',1949,NULL),(93098,'Roger Bollen',1941,2015),(93147,'Tiffany Bolling',1947,NULL),(93151,'Alun Bollinger',1948,NULL),(93244,'Ugo Bologna',1917,1998),(93271,'Craig Bolotin',1954,NULL),(93328,'Tedi Sarafian',1966,NULL),(93337,'Jeremy Bolt',1965,NULL),(93386,'Delle Bolton',1947,2022),(93397,'Guy Bolton',1884,1979),(93456,'Whitney Bolton',1900,1969),(93472,'Jean Bolvary',NULL,NULL),(93499,'Chris Bolzli',NULL,NULL),(93501,'Adriano Bolzoni',1919,2005),(93540,'Scott Bomar',NULL,NULL),(93560,'Mark Bomback',1971,NULL),(93566,'Louise Bombardier',1953,NULL),(93582,'Lorenzo Bombicci',NULL,NULL),(93589,'Matt Bomer',1977,NULL),(93610,'Jean-Louis Bompoint',1960,NULL),(93678,'Paolo Bonacelli',1937,NULL),(93748,'Gregory J. Bonann',1952,NULL),(93751,'Mauro Bonanni',NULL,NULL),(93769,'Fortunio Bonanova',1895,1969),(93854,'Andrei Boncea',1972,NULL),(93904,'Christopher Bond',1945,NULL),(93927,'Edward Bond',1934,NULL),(93934,'Fredrik Bond',NULL,NULL),(93937,'Gary Bond',1940,1995),(93946,'Jack Bond',1937,NULL),(93988,'Lilian Bond',1908,1991),(94039,'Samantha Bond',1961,NULL),(94048,'Sudie Bond',1923,1984),(94080,'Fedor Bondarchuk',1967,NULL),(94081,'Natalya Bondarchuk',1950,NULL),(94083,'Sergey Bondarchuk',1920,1994),(94095,'Vladimir Bondarenko',NULL,NULL),(94135,'Beulah Bondi',1889,1981),(94217,'John T. Bone',1947,2019),(94222,'Margery Bone',NULL,NULL),(94274,'Bertrand Bonello',1968,NULL),(94288,'Peter Bonerz',1938,NULL),(94435,'Bong Joon Ho',1969,NULL),(94445,'Pascal Bongard',NULL,NULL),(94471,'Frank Bongiorno',NULL,2020),(94502,'Crispin Bonham-Carter',1969,NULL),(94524,'Ian Bonhôte',NULL,NULL),(94526,'Alessio Boni',1966,NULL),(94552,'Eric Bonicatto',NULL,NULL),(94558,'Vittorio Bonicelli',1919,1994),(94565,'Fabio Bonifacci',1962,NULL),(94625,'Jesús Bonilla',1955,NULL),(94655,'Roxanna Bonilla-Giannini',NULL,NULL),(94659,'Andrew Bonime',1948,NULL),(94663,'Claude Bonin',NULL,NULL),(94693,'Marco Bonini',1972,NULL),(94706,'Paul Bonis',1940,2015),(94726,'Pascal Bonitzer',1946,NULL),(94789,'Sandrine Bonnaire',1967,NULL),(94850,'Mathilde Bonnefoy',1972,NULL),(94924,'Priscilla Bonner',1899,1996),(94986,'Stéphane Bonnet',NULL,NULL),(94993,'Valérie Bonneton',1970,NULL),(95017,'Hugh Bonneville',1963,NULL),(95029,'Lawrence A. Bonney',NULL,NULL),(95053,'Céline Bonnier',1965,NULL),(95089,'Françoise Bonnot',1939,2018),(95093,'Monique Bonnot',NULL,NULL),(95122,'Sonny Bono',1935,1998),(95166,'Sergio Bonotti',NULL,NULL),(95272,'Michael Bonvillain',NULL,NULL),(95326,'Paul Boocock',1964,NULL),(95374,'Brad Booker',1971,NULL),(95460,'Ed Boon',1964,NULL),(95478,'Mark Boone Junior',1955,NULL),(95522,'Randy Boone',1942,NULL),(95524,'Richard Boone',1917,1981),(95561,'Mika Boorem',NULL,NULL),(95574,'Katrine Boorman',1960,NULL),(95579,'Telsche Boorman',1959,1996),(95641,'Anthony Booth',1931,2017),(95665,'Connie Booth',1940,NULL),(95718,'James Booth',1927,2005),(95725,'Jim Booth',1945,1994),(95741,'Karin Booth',1916,2003),(95746,'Kristin Booth',1974,NULL),(95751,'Lindy Booth',NULL,NULL),(95757,'Martin Booth',1944,2004),(95827,'Larry Boothby',NULL,NULL),(95878,'Emanuel Booz',NULL,NULL),(95983,'István Borbás',1954,NULL),(96025,'Donald P. Borchers',1956,NULL),(96115,'Bill Borden',NULL,NULL),(96143,'Lynn Borden',1937,2015),(96176,'W.K. Border',NULL,NULL),(96182,'Raymond Borderie',1897,1982),(96266,'Marc Bordure',NULL,NULL),(96294,'Annik Borel',1948,NULL),(96319,'Christopher Borrelli',NULL,NULL),(96501,'Nelly Borgeaud',1931,2004),(96559,'Graciela Borges',1941,NULL),(96608,'Yamil Borges',1958,NULL),(96637,'Paul Borghese',NULL,NULL),(96651,'Giorgio Borghetti',1971,NULL),(96737,'Hilda Borgström',1871,1953),(96772,'Bobby Boriello',NULL,NULL),(96836,'Aleksandr Borisov',1927,2017),(96859,'Natalia Borisova',1941,2013),(96965,'Attila Borlan',1968,NULL),(96995,'Arthur Borman',1966,NULL),(97000,'Mark Borman',NULL,NULL),(97001,'Moritz Borman',1955,NULL),(97079,'Ole Bornedal',1959,NULL),(97132,'Charles Bornstein',NULL,NULL),(97214,'Stuart Boros',NULL,NULL),(97259,'Walerian Borowczyk',1923,2006),(97504,'Alex Borstein',1971,NULL),(97517,'Derrick Borte',NULL,NULL),(97544,'Michael Bortman',NULL,NULL),(97548,'Aída Bortnik',1938,2013),(97580,'Cristiano Bortone',1968,NULL),(97619,'Zsuzsanna Borvendég',1972,NULL),(97625,'Jean-Marc Bory',1934,2001),(97648,'Frank Borzage',1894,1962),(97674,'Burny Bos',1944,NULL),(97702,'Tamara Bos',1967,NULL),(97717,'Simon Bosanquet',NULL,NULL),(97753,'David Bosch',NULL,NULL),(97765,'Johnny Yong Bosch',1976,NULL),(97785,'Rose Bosch',NULL,NULL),(97817,'Giulia Boschi',1962,NULL),(97842,'Philip Bosco',1930,2018),(97882,'Modhu Bose',1900,1969),(97918,'Romeo Bosetti',1879,1948),(98020,'Harlan Bosmajian',NULL,NULL),(98153,'Pablo Bossi',NULL,NULL),(98174,'Ezio Bosso',1971,2020),(98204,'Pierre Bost',1901,1975),(98224,'Kathryn Bostic',NULL,NULL),(98233,'Michael Bostick',NULL,NULL),(98316,'Eugenia Bostwick-Singer',NULL,NULL),(98353,'Merideth Boswell',NULL,NULL),(98376,'Hobart Bosworth',1867,1943),(98378,'Kate Bosworth',1983,NULL),(98390,'Oldrich Bosák',1922,1996),(98393,'Lucia Bosè',1931,2020),(98395,'Miguel Bosé',1956,NULL),(98400,'Rick Bota',NULL,NULL),(98424,'Wade Boteler',1888,1943),(98550,'Sandra Botica',1963,NULL),(98559,'Perry Botkin Jr.',1933,2021),(98597,'Sara Botsford',1951,NULL),(98622,'Emil Botta',1911,1977),(98639,'Caroline Bottaro',NULL,NULL),(98661,'Donatella Botti',NULL,NULL),(98712,'Phyllis Bottome',1884,1963),(98733,'Joseph Bottoms',1954,NULL),(98734,'Sam Bottoms',1955,2008),(98793,'Sami Bouajila',1966,NULL),(98842,'Alain Boublil',1941,NULL),(98901,'Jean-Guy Bouchard',NULL,NULL),(98908,'Loren Bouchard',1970,NULL),(98919,'Michel Marc Bouchard',1958,NULL),(98943,'Sylvie Bouchard',NULL,NULL),(98949,'Mathieu Bouchard-Malo',NULL,NULL),(98953,'Rachid Bouchareb',1959,NULL),(99054,'Barbara Bouchet',1943,NULL),(99099,'Claudine Bouché',1925,2014),(99134,'Jacques Boudet',NULL,NULL),(99174,'Chafia Boudraa',1930,2022),(99203,'Pierre Boudreau',NULL,NULL),(99278,'Michael Boughen',NULL,NULL),(99366,'Jean Bouise',1929,1989),(99429,'Daniel Boulanger',1922,2014),(99521,'Bouli Lanners',1965,NULL),(99541,'Pierre Boulle',1912,1994),(99545,'Darryl Boulley',1980,NULL),(99589,'John Boulting',1913,1985),(99592,'Roy Boulting',1913,2001),(99599,'Davis Boulton',1911,1989),(99613,'Tracey Boulton',NULL,NULL),(99677,'Michel Bouquet',1925,2022),(99725,'Adrienne Bourbeau',1939,NULL),(99748,'Frédéric Bourboulon',NULL,NULL),(99749,'Véronique Bourboulon',NULL,NULL),(99753,'Ludovic Bource',NULL,NULL),(99828,'Didier Bourdon',1959,NULL),(99841,'Gilles Bourdos',1963,NULL),(99953,'Elizabeth Bourgine',1957,NULL),(99961,'Jean Bourgoin',1913,1991),(99984,'Serge Bourguignon',1928,NULL),(100027,'David Bourla',NULL,NULL),(100080,'Mel Bourne',1923,2003),(100098,'Timothy M. Bourne',1954,NULL),(100171,'Antoine Bourseiller',1930,2013),(100186,'Bourvil',1917,1970),(100196,'Adam Bousdoukos',1974,NULL),(100200,'Morris Bousel',1907,1980),(100205,'Joy Boushel',1959,NULL),(100326,'Kate Boutilier',NULL,NULL),(100365,'Laurent Boutonnat',1961,NULL),(100372,'Tom Boutross',1928,1998),(100440,'Jean-Pierre Bouvier',1948,NULL),(100453,'Vincent-Marie Bouvot',NULL,NULL),(100493,'Sarah Bouyain',NULL,NULL),(100551,'Dan Bova',NULL,NULL),(100556,'Raoul Bova',1971,NULL),(100559,'Fernando Bovaira',NULL,NULL),(100595,'Strawn Bovee',NULL,NULL),(100597,'Andrew Bovell',1962,NULL),(100603,'Judith Bovenberg',NULL,NULL),(100628,'Charlotte Bøving',1964,NULL),(100650,'Frédéric Bovis',1959,NULL),(100736,'Mark Bowden',1951,NULL),(100764,'John Bowe',1950,NULL),(100765,'John Bowe',1964,NULL),(100792,'Andrea Bowen',1990,NULL),(100793,'Andrew Bowen',NULL,NULL),(100810,'Catherine Drinker Bowen',1897,1973),(100862,'John Bowen',1924,2019),(100866,'Julie Bowen',1970,NULL),(100889,'Michael Bowen',1953,NULL),(100928,'T.R. Bowen',1942,NULL),(101047,'David Bowers',NULL,NULL),(101055,'George Bowers',1944,2012),(101096,'Richard Bowers',NULL,NULL),(101115,'William Bowers',1916,1987),(101130,'Ed Bowes',NULL,NULL),(101198,'Grant Bowler',1968,NULL),(101242,'Lauren Bowles',1970,NULL),(101247,'Paul Bowles',1910,1999),(101302,'Chris Bowman',NULL,NULL),(101350,'Lee Bowman',1914,1979),(101385,'Rob Bowman',1960,NULL),(101400,'Stuart Bowman',NULL,NULL),(101466,'Willard Bowsky',1907,1944),(101483,'William Boyer',NULL,NULL),(101489,'Betty E. Box',1915,1999),(101501,'John Box',1920,2005),(101504,'Muriel Box',1905,1991),(101508,'Steve Box',1967,NULL),(101511,'Sydney Box',1907,1983),(101526,'Barbara Boxer',1940,NULL),(101563,'Goûchy Boy',NULL,NULL),(101604,'Sully Boyar',1923,2001),(101625,'Brandon Boyce',NULL,NULL),(101639,'Frank Cottrell Boyce',1961,NULL),(101668,'Todd Boyce',1961,NULL),(101710,'Billy Boyd',1968,NULL),(101712,'Bob Boyd',NULL,NULL),(101741,'David Boyd',NULL,NULL),(101756,'Edward Boyd',1916,1989),(101799,'Jenna Boyd',1993,NULL),(101801,'F.X. Toole',1930,2002),(101908,'Sarah Boyd',NULL,NULL),(101918,'Sissy Boyd',NULL,NULL),(101921,'Steven J. Boyd',NULL,NULL),(101956,'William Boyd',1952,NULL),(101964,'Eric Boyd-Perkins',1917,2014),(101970,'Victoria Boydell',NULL,NULL),(101991,'Philippa Boyens',NULL,NULL),(101992,'Phyllis Boyens',1947,2009),(102021,'Claire Boyer',NULL,NULL),(102030,'François Boyer',1920,2003),(102122,'Robert L. Boyett',NULL,NULL),(102167,'Malcolm Stuart Boylan',1897,1967),(102175,'Sarain Boylan',NULL,NULL),(102214,'Charles P. Boyle',1892,1968),(102270,'John W. Boyle',1891,1959),(102278,'Kazimir Boyle',1976,NULL),(102288,'Lisa Boyle',1964,NULL),(102316,'Peter Boyle',1946,NULL),(102325,'Robert Boyle',NULL,NULL),(102327,'Robert F. Boyle',1909,2010),(102339,'T. Coraghessan Boyle',1948,NULL),(102371,'Marc Boyman',NULL,NULL),(102380,'Lisa Jai',NULL,NULL),(102434,'Steve Boyum',1952,NULL),(102508,'Ron Bozman',NULL,NULL),(102515,'Céline Bozon',NULL,NULL),(102536,'Reizl Bozyk',1914,1993),(102547,'Bruno Bozzetto',1938,NULL),(102624,'Kurt Brabbee',NULL,NULL),(102643,'Charles Brabin',1882,1957),(102646,'John Brabourne',1924,2005),(102673,'Teda Bracci',1946,NULL),(102714,'Richard Bracewell',1969,NULL),(102718,'Sidney Bracey',1877,1942),(102722,'Gérard Brach',1927,2006),(102746,'Jesús Bracho',NULL,NULL),(102751,'Julio Bracho',NULL,NULL),(102758,'Frank Bracht',1910,1985),(102779,'Kisha Brackel',NULL,NULL),(102787,'Eddie Bracken',1915,2002),(102801,'Richard Bracken',1930,2021),(102818,'Charles Brackett',1892,1969),(102824,'Leigh Brackett',1915,1978),(102873,'Harry Bradbeer',NULL,NULL),(102903,'Malcolm Bradbury',1932,2000),(102927,'Martin Braddock',NULL,1980),(102929,'Reb Braddock',1965,NULL),(103038,'Jesse Bradford',1979,NULL),(103071,'Richard Bradford',1934,2016),(103084,'Sue Dwiggins',1914,2011),(103187,'Dan Bradley',NULL,NULL),(103193,'David Bradley',1953,NULL),(103195,'David Bradley',1942,NULL),(103208,'Doug Bradley',1954,NULL),(103299,'Justin Bradley',1985,NULL),(103357,'Omar N. Bradley',1893,1981),(103364,'Paul Bradley',1956,NULL),(103404,'Stephen Bradley',NULL,NULL),(103457,'Michael Bradsell',1933,NULL),(103468,'Booker Bradshaw',1940,2003),(103470,'Carl Bradshaw',NULL,NULL),(103473,'Cathryn Bradshaw',NULL,NULL),(103475,'Charles Bradshaw',1907,1980),(103488,'George Bradshaw',1909,1973),(103537,'Terry Bradshaw',1948,NULL),(103567,'Alice Brady',1892,1939),(103593,'Christopher Brady',1967,NULL),(103595,'Colin Brady',NULL,NULL),(103655,'Jordan Brady',1964,NULL),(103683,'Matthew R. Brady',NULL,NULL),(103699,'Orla Brady',NULL,NULL),(103702,'Pam Brady',NULL,NULL),(103722,'Scott Brady',1924,1985),(103731,'Susan Brady',1966,NULL),(103744,'Tom Brady',NULL,NULL),(103783,'Adam J. Braff',NULL,NULL),(103785,'Zach Braff',1975,NULL),(103797,'Alice Braga',1983,NULL),(103804,'Brannon Braga',1965,NULL),(103828,'Mario Brega',1923,1994),(103891,'Billy Bragg',1957,NULL),(103905,'Melvyn Bragg',1939,NULL),(103932,'Emil Braginskiy',1921,1998),(103956,'Henry Braham',1965,NULL),(103958,'Lionel Braham',1879,1947),(103980,'Simone Brahmann',1961,NULL),(104075,'E.R. Braithwaite',1912,2016),(104088,'Philippa Braithwaite',NULL,NULL),(104114,'Richard Brake',NULL,NULL),(104129,'Robert Brakey',1970,NULL),(104132,'Stan Brakhage',1933,2003),(104193,'Marco Brambilla',1960,NULL),(104274,'Richard Brams',1927,2021),(104329,'Vitaliano Brancati',1907,1954),(104333,'Chris Brancato',1962,NULL),(104335,'John Brancato',1958,NULL),(104355,'Houston Branch',1899,1968),(104391,'Jacques Branchu',NULL,NULL),(104392,'Armando Brancia',1917,1997),(104418,'Paulo Branco',1950,NULL),(104447,'Christianna Brand',1907,1988),(104456,'Abdullah Ibrahim',1934,NULL),(104503,'Millen Brand',1906,1980),(104507,'Neville Brand',1920,1992),(104526,'Steven Brand',1969,NULL),(104572,'Marc Brandel',1919,1994),(104701,'Michael Brandman',NULL,NULL),(104707,'Gary Brandner',1930,2013),(104720,'Jocelyn Brando',1919,2005),(104728,'Rikki Brando',NULL,NULL),(104783,'Maryann Brandon',NULL,NULL),(104787,'Michael Brandon',1945,NULL),(104809,'Luis Brandoni',1940,NULL),(104854,'Jerrold T. Brandt Jr.',NULL,NULL),(104973,'Michael Brandt',1968,NULL),(104989,'Rainer Brandt',1936,NULL),(105001,'Spike Brandt',1961,NULL),(105011,'Victor Brandt',1942,NULL),(105019,'Anita Brandt Burgoyne',NULL,NULL),(105169,'Ash Brannon',1969,NULL),(105226,'Jeff Branson',1977,NULL),(105234,'Susan Branson',NULL,NULL),(105263,'Peter Brant',1947,NULL),(105280,'Betsy Brantley',1955,NULL),(105308,'Ulf Brantås',1957,NULL),(105346,'Gianluigi Braschi',1963,2008),(105475,'Claude Brasseur',1936,2020),(105482,'Pierre Brasseur',1905,1972),(105585,'Caliope Brattlestreet',1944,2019),(105672,'Andre Braugher',1962,NULL),(105693,'Michel Brault',1928,2013),(105794,'Josh Braun',NULL,NULL),(105881,'Zev Braun',1928,2019),(105886,'Pierre Braunberger',1905,1990),(105899,'Artur Brauner',1918,2019),(105900,'Asher Brauner',1946,2021),(105931,'Andrew Braunsberg',1942,NULL),(105937,'Rachel Braunschweig',1968,NULL),(105945,'George G. Braunstein',1947,NULL),(105946,'Howard Braunstein',NULL,NULL),(106010,'Amy Braverman',1984,NULL),(106230,'Kevin Bray',NULL,NULL),(106338,'Ben Brazier',1980,NULL),(106373,'Mark Brazill',1962,NULL),(106374,'Wendy Brazington',NULL,NULL),(106387,'Rossano Brazzi',1916,1994),(106394,'Frank Braña',1934,2012),(106445,'Blair Breard',NULL,NULL),(106455,'Berkeley Breathed',1957,NULL),(106456,'Paddy Breathnach',1964,NULL),(106505,'Irving Brecher',1914,2008),(106534,'Jonathan Breck',1965,NULL),(106539,'Peter Breck',1929,2012),(106549,'Laura Breckenridge',1983,NULL),(106563,'Andy Breckman',1955,NULL),(106608,'Elwood Bredell',1902,1969),(106713,'Joseph Breen',NULL,NULL),(106785,'Edmund Breese',1871,1936),(106810,'Alexandre Breffort',1901,1971),(106835,'Anthony Bregman',NULL,NULL),(106840,'Martin Bregman',1926,2018),(106841,'Michael Bregman',NULL,NULL),(106842,'Neil Bregman',1954,NULL),(106866,'Brian J. Breheny',NULL,NULL),(106895,'Márcia Breia',1944,NULL),(106922,'Joseph Carl Breil',1870,1926),(106924,'Catherine Breillat',1948,NULL),(106937,'Fred Breinersdorfer',1946,NULL),(106969,'Al Breitenbach',NULL,NULL),(106982,'Dennis Dreith',1948,NULL),(107035,'Jacques Brel',1929,1978),(107044,'Nancy Brelis',NULL,NULL),(107045,'Tia Brelis',NULL,NULL),(107055,'Rudolf Waldemar Brem',1948,2016),(107082,'Lucille Bremer',1917,1996),(107150,'David Brendel',NULL,NULL),(107165,'Alex Brendemühl',1972,NULL),(107183,'Nicholas Brendon',1971,NULL),(107231,'Greg Brenman',NULL,NULL),(107254,'Barbara Brennan',NULL,NULL),(107261,'Brid Brennan',1955,NULL),(107281,'Eileen Brennan',1932,2013),(107302,'Ian Brennan',1978,NULL),(107366,'Neal Brennan',NULL,NULL),(107380,'Peter Brennan',NULL,NULL),(107406,'Stephen Brennan',NULL,NULL),(107447,'Albert Brenner',1926,2022),(107463,'David Brenner',1962,2022),(107486,'Jules Brenner',1934,NULL),(107493,'Marie Brenner',1949,NULL),(107509,'Robbie Brenner',NULL,NULL),(107510,'Robert J. Bronner',1907,1969),(107570,'Doris Brent',NULL,NULL),(107574,'Evelyn Brent',1899,1975),(107575,'George Brent',1904,1979),(107631,'Edmund Breon',1882,1953),(107646,'Stuart Brereton',NULL,NULL),(107655,'Vinko Bresan',1964,NULL),(107724,'Jerry Bresler',1908,1977),(107734,'Howard Breslin',1912,1964),(107748,'Spencer Breslin',1992,NULL),(107756,'Lou Breslow',1900,1987),(107760,'James Bresnahan',NULL,NULL),(107774,'Eric Bress',NULL,NULL),(107795,'Felix Bressart',1892,1949),(107855,'Melissa Bretherton',NULL,NULL),(107945,'Jason Brett',NULL,NULL),(107954,'Jonathan Brett',NULL,NULL),(108028,'Jim Breuer',1967,NULL),(108041,'Torsten Breuer',NULL,NULL),(108068,'Laurence Breuls',NULL,NULL),(108069,'Paul Breuls',NULL,NULL),(108094,'Eric Brevig',1957,NULL),(108108,'George Emerson Brewer Jr.',1899,1968),(108132,'Craig Brewer',1971,NULL),(108150,'Gene Brewer',1937,NULL),(108273,'Mike Werb',NULL,NULL),(108287,'Jordana Brewster',1980,NULL),(108295,'Paget Brewster',1969,NULL),(108315,'Maia Brewton',1977,NULL),(108353,'Ales Brezina',1965,NULL),(108368,'Larry Brezner',1942,2015),(108400,'Jean-Claude Brialy',1933,2007),(108406,'David Brian',1914,1993),(108447,'Manon Briand',1964,NULL),(108455,'Carlo Briani',1955,NULL),(108470,'Shane Briant',1946,2021),(108478,'Guillaume Briat',1966,NULL),(108511,'Fanny Brice',1891,1951),(108523,'Pierre Brice',1929,2015),(108525,'Ron Brice',NULL,NULL),(108579,'George Bricker',1898,1955),(108585,'Randy Bricker',NULL,NULL),(108595,'Paul Brickhill',1916,1991),(108600,'Justin Brickle',NULL,NULL),(108613,'Marshall Brickman',1939,NULL),(108618,'Tim Bricknell',NULL,NULL),(108619,'Howard M. Brickner',NULL,NULL),(108629,'Wendy Greene Bricmont',NULL,NULL),(108703,'Sean Bridgers',1968,NULL),(108707,'Alan Bridges',1927,2013),(108745,'James Bridges',1936,1993),(108758,'Jordan Bridges',1973,NULL),(108782,'Rand Bridges',1942,2023),(108832,'David Bridie',NULL,NULL),(108833,'James Bridie',1888,1951),(108939,'Lucy Briers',1967,NULL),(108988,'Alessandro Parenzo',1944,NULL),(109010,'Chris Briggs',NULL,NULL),(109076,'Raymond Briggs',1934,2022),(109092,'Tony Briggs',NULL,NULL),(109118,'Harold Brighouse',1882,1958),(109148,'John Bright',1908,1989),(109165,'Matthew Bright',1952,NULL),(109192,'Susie Bright',1958,NULL),(109201,'Adam Brightman',1961,NULL),(109205,'Homer Brightman',1901,1988),(109208,'Sarah Brightman',1960,NULL),(109265,'Lilla Brignone',1913,1984),(109267,'Irena Brignull',NULL,NULL),(109273,'Dominic Brigstocke',NULL,NULL),(109277,'Paolo Briguglia',1974,NULL),(109300,'John Briley',1925,2019),(109359,'Steven Brill',1962,NULL),(109366,'Pierre-Luc Brillant',1978,NULL),(109393,'Frédéric Brillion',NULL,NULL),(109432,'David Brin',1950,NULL),(109484,'Michael Brindley',NULL,NULL),(109517,'Mark Bringelson',1957,NULL),(109532,'Myron Brinig',1896,1991),(109574,'Wim van den Brink',1909,1991),(109578,'Chris Brinker',1970,2013),(109587,'Ron L. Brinkerhoff',NULL,NULL),(109658,'Robert Brinkmann',1961,NULL),(109713,'Ralph W. Brinton',1895,1975),(109726,'Jon Brion',1963,NULL),(109771,'Syd Brisbane',NULL,NULL),(109773,'David Brisbin',1952,NULL),(109785,'Brent Briscoe',1961,2017),(109858,'Mort Briskin',1913,2000),(109884,'Gérard Brisseau',NULL,NULL),(109900,'Frederick Brisson',1912,1984),(110042,'Michl Britsch',NULL,NULL),(110083,'Charlotte Brittain',NULL,NULL),(110133,'Gerry O\'Hara',1924,2023),(110159,'Barbara Britton',1919,1980),(110168,'Connie Britton',1967,NULL),(110219,'Pamela Britton',1923,1974),(110259,'Peter Heinrich Brix',1955,NULL),(110293,'Gaëtan Brizzi',1951,NULL),(110294,'Paul Brizzi',1951,NULL),(110300,'Stéphane Brizé',1966,NULL),(110324,'Bridget Brno',1979,2020),(110334,'Nicolas Bro',1972,NULL),(110357,'Graham Broadbent',NULL,NULL),(110385,'James Brodhead',1932,2012),(110420,'Jeff Broadstreet',1954,NULL),(110463,'Michelle de Broca',1926,2017),(110480,'Peter Brocco',1903,1992),(110482,'Albert R. Broccoli',1909,1996),(110483,'Barbara Broccoli',1960,NULL),(110496,'Martine Brochard',1944,NULL),(110507,'Anne Brochet',1966,NULL),(110519,'Don Brochu',NULL,NULL),(110591,'Jeremy Brock',1959,NULL),(110640,'Timothy Brock',1963,NULL),(110771,'Al Brodax',1926,2016),(110778,'Kevin Brodbin',1964,NULL),(110796,'David Broder',1964,NULL),(110803,'Beth Broderick',1959,NULL),(110813,'Helen Broderick',1891,1959),(110814,'James Broderick',1927,1982),(110821,'John C. Broderick',1942,2001),(110893,'Don Brodie',1904,2001),(110922,'V.S. Brodie',NULL,NULL),(110958,'Oscar Brodney',1907,2008),(111013,'Adam Brody',1979,NULL),(111021,'Bruce Brody',NULL,NULL),(111084,'Marek Brodzki',1960,NULL),(111105,'John van den Broek',1895,1918),(111130,'H. Lyman Broening',1892,1983),(111181,'Isidoro Broggi',NULL,NULL),(111225,'Cary Brokaw',NULL,NULL),(111236,'Bettina Brokemper',NULL,NULL),(111274,'Shane Brolly',1970,NULL),(111275,'Cindy E. Brolsma',NULL,NULL),(111332,'Harry Bromley Davenport',1950,NULL),(111369,'Jacek Bromski',1946,NULL),(111372,'Lisa Bromwell',NULL,NULL),(111376,'Eleanor Bron',1938,NULL),(111379,'Jean-Stéphane Bron',1969,NULL),(111393,'Jacques-Henri Bronckart',NULL,NULL),(111429,'Ellen Bronfman',1969,NULL),(111524,'Lisa Marie Bronson',NULL,NULL),(111566,'Samuel Bronston',1908,1994),(111576,'Charlotte Brontë',1816,1855),(111577,'Emily Brontë',1818,1848),(111610,'Claudio Brook',1927,1995),(111612,'Clive Brook',1887,1974),(111639,'Kelly Brook',1979,NULL),(111649,'Michael Brook',1952,NULL),(111656,'Peter Brook',1925,2022),(111702,'Hillary Brooke',1914,1999),(111756,'Tim Brooke-Taylor',1940,2020),(111757,'Moira Brooker',1957,NULL),(111765,'Charlie Brooker',1971,NULL),(111769,'Greg Brooker',NULL,NULL),(111777,'Richard Brooker',1954,2013),(111845,'Adam Brooks',1956,NULL),(111846,'Aimee Brooks',1974,NULL),(111857,'Amy Brooks',1971,NULL),(111926,'Conrad Brooks',1931,2017),(111996,'George W. Brooks',NULL,NULL),(112014,'Hazel Brooks',1924,2002),(112043,'Jason Brooks',1966,NULL),(112046,'Jean Brooks',1915,1963),(112085,'Katherine Brooks',1976,NULL),(112150,'Max Brooks',1972,NULL),(112189,'Paul Brooks',1959,NULL),(112211,'Ray Brooks',1939,NULL),(112218,'Richard Brooks',1912,1992),(112239,'Sammy Brooks',1891,1951),(112253,'Stanley M. Brooks',NULL,NULL),(112319,'Steve Brooksbank',NULL,NULL),(112335,'David Brookwell',1961,NULL),(112395,'Edward Brophy',1895,1960),(112411,'Richard Brophy',1916,2009),(112456,'Peter Brosens',1962,NULL),(112459,'Aline Brosh McKenna',1967,NULL),(112498,'Eric Bross',NULL,NULL),(112501,'Jonathan Bross',NULL,NULL),(112606,'Stuart Brotman',1966,2011),(112618,'Tamar Brott',NULL,NULL),(112666,'Peter Broughan',NULL,NULL),(112668,'Hilary Brougher',NULL,NULL),(112702,'Pip Broughton',NULL,NULL),(112871,'Ben Browder',1962,NULL),(112896,'Mitchell Brower',1926,2016),(112897,'Otto Brower',1895,1946),(112932,'Neil Brown Jr.',1980,NULL),(112977,'Alex Brown',NULL,NULL),(113005,'Amanda Brown',NULL,NULL),(113084,'Barry Alexander Brown',1960,NULL),(113126,'Billy Brown',NULL,NULL),(113158,'Brianna Brown',NULL,NULL),(113164,'Bruce Brown',1937,2017),(113244,'Chris Brown',NULL,NULL),(113272,'Christy Brown',1932,1981),(113284,'Clarence Brown',1890,1987),(113360,'David Brown',1916,2010),(113477,'Dylan Brown',NULL,NULL),(113497,'Edward R. Brown',NULL,NULL),(113500,'Effie Brown',NULL,NULL),(113505,'Eleonora Brown',1948,NULL),(113583,'G. Mac Brown',1957,NULL),(113595,'Garrett M. Brown',1948,NULL),(113689,'Harry Brown',1917,1986),(113693,'Harry Joe Brown',1890,1972),(113769,'James Brown',1920,1992),(113794,'Jared F. Brown',NULL,NULL),(113818,'Jeffrey Brown',NULL,NULL),(113831,'Jerry Brown',1938,NULL),(113872,'Joe David Brown',1915,1976),(113873,'Joe E. Brown',1891,1973),(113902,'Johnny Mack Brown',1904,1974),(113935,'Julie Brown',1954,NULL),(114051,'Larry Brown',1951,2004),(114080,'Leigh Brown',1939,1998),(114083,'Len Brown',NULL,NULL),(114095,'Lew Brown',1893,1958),(114177,'Marcus Lyle Brown',1970,NULL),(114197,'Mark Brown',NULL,NULL),(114213,'Martin Brown',NULL,NULL),(114226,'Matt Brown',NULL,NULL),(114256,'Mel B',1975,NULL),(114266,'Melville W. Brown',1887,1938),(114272,'Michael Brown',NULL,NULL),(114285,'Michael Henry Brown',NULL,NULL),(114324,'Murray Brown',1937,NULL),(114344,'Nicholas Brown',NULL,NULL),(114363,'O. Nicholas Brown',1939,NULL),(114370,'Ollie E. Brown',1953,NULL),(114386,'Pamela Brown',1917,1975),(114399,'Paul Brown',NULL,NULL),(114401,'Paul Brown',NULL,NULL),(114422,'Peter Brown',1935,2016),(114460,'Ralph Brown',1957,NULL),(114487,'Reb Brown',1948,NULL),(114522,'Rita Mae Brown',1944,NULL),(114532,'Rob Brown',1984,NULL),(114533,'Robert Brown',1921,2003),(114556,'Robert Latham Brown',NULL,NULL),(114578,'Roger Aaron Brown',1949,NULL),(114602,'Rowland Brown',1897,1963),(114615,'Russell Vann Brown',NULL,NULL),(114616,'Ruth Brown',1928,2006),(114637,'Sara Suzanne Brown',NULL,NULL),(114728,'Steven C. Brown',NULL,NULL),(114742,'Susan Brown',1946,NULL),(114787,'Thomas Wilson Brown',1972,NULL),(114805,'Tom Brown',1913,1990),(114847,'Vanessa Brown',1928,1999),(114868,'W. Earl Brown',1963,NULL),(114912,'William F. Brown',1928,2019),(114948,'Arthur Browne Jr.',1923,2006),(114982,'Coral Browne',1913,1991),(115008,'Irene Browne',1896,1965),(115073,'Ronald W. Browne',1927,2011),(115097,'Wynyard Browne',1911,1964),(115114,'Janet Brownell',NULL,NULL),(115161,'Emily Browning',1988,NULL),(115185,'Kirk Browning',1921,2008),(115192,'Michael Browning',NULL,NULL),(115218,'Tod Browning',1880,1962),(115224,'John Brownjohn',NULL,NULL),(115236,'Mongo Brownlee',1971,NULL),(115310,'William Broyles Jr.',1944,NULL),(115328,'Jirí Brozek',1947,NULL),(115379,'Debbie Brubaker',NULL,NULL),(115384,'James D. Brubaker',1937,2023),(115402,'Christina Brucato',NULL,NULL),(115431,'J. Campbell Bruce',1906,1996),(115482,'George Bruce',1898,1974),(115486,'Glenn A. Bruce',NULL,NULL),(115504,'Jean Bruce',1921,1963),(115524,'Kate Bruce',1860,1946),(115537,'Lisa Bruce',NULL,NULL),(115558,'Nigel Bruce',1895,1953),(115597,'Virginia Bruce',1910,1982),(115657,'Raymond Leopold Bruckberger',1907,1998),(115668,'Bonnie Bruckheimer',1944,NULL),(115669,'Clyde Bruckman',1894,1955),(115671,'Agnes Bruckner',1985,NULL),(115685,'Pascal Bruckner',NULL,NULL),(115730,'Patrick Bruel',1959,NULL),(115764,'Pieter Jan Brugge',1956,NULL),(115800,'Gian Paolo Brugnoli',NULL,NULL),(115892,'Claude Brulé',1925,2012),(115969,'Richard S. Brummer',1924,2022),(115979,'John Brumpton',NULL,NULL),(116040,'Natja Brunckhorst',1966,NULL),(116062,'Reinhard Brundig',NULL,NULL),(116091,'Philippe Bruneau',1938,2012),(116113,'André G. Brunelin',NULL,NULL),(116145,'James Bruner',NULL,NULL),(116193,'Laurent Brunet',NULL,NULL),(116232,'Dana Brunetti',1973,NULL),(116251,'Jean de Brunhoff',1899,1937),(116252,'Laurent de Brunhoff',1925,NULL),(116254,'Valeria Bruni Tedeschi',1964,NULL),(116263,'Francesco Bruni',1961,NULL),(116348,'Alexander Yves Brunner',1973,NULL),(116358,'Bob Brunner',1934,2012),(116369,'Didier Brunner',NULL,NULL),(116409,'Sibylle Brunner',1939,NULL),(116426,'Nancy Brunning',1971,2019),(116465,'Dylan Bruno',1972,NULL),(116497,'John Bruno',NULL,NULL),(116511,'Massimiliano Bruno',1970,NULL),(116663,'Franco Brusati',1922,1993),(116670,'Antonino Bruschetta',1962,NULL),(116693,'Katharine Brush',1902,1952),(116737,'Cory Brusseau',1975,NULL),(116743,'Herman Brusselmans',1957,NULL),(116748,'Thomas Brussig',1965,NULL),(116861,'Joanna Bruzdowicz',1943,2021),(116932,'Dora Bryan',1923,2014),(116961,'John Bryan',1911,1969),(116999,'Peter Bryan',1919,1972),(117009,'Sabrina Bryan',1984,NULL),(117018,'Vincent Bryan',1878,1937),(117022,'Zachery Ty Bryan',1981,NULL),(117028,'John Bryans',1942,1989),(117035,'Adam Bryant',NULL,NULL),(117068,'Chris Bryant',1936,2008),(117070,'Clara Bryant',1985,NULL),(117081,'Damon Bryant',NULL,NULL),(117092,'Edward Bryant',1945,2017),(117146,'Joy Bryant',1974,NULL),(117194,'Nana Bryant',1888,1955),(117206,'Peter Bryant',1959,NULL),(117230,'Sheri Bryant',NULL,NULL),(117275,'Alex Bryce',1905,1961),(117290,'Ian Bryce',NULL,NULL),(117339,'Rob Brydon',1965,NULL),(117354,'Lisa Bryer',1957,NULL),(117374,'Greg Bryk',1972,NULL),(117381,'Eigil Bryld',1971,NULL),(117390,'Barbara Brylska',1941,NULL),(117412,'Hugh Keays-Byrne',1947,2020),(117445,'Bill Bryson',1951,NULL),(117530,'Brasse Brännström',1945,2014),(117538,'Mona Bräuer',1961,NULL),(117556,'Hallvard Bræin',1965,NULL),(117593,'Jean Bréhat',NULL,NULL),(117599,'Romain Brémond',NULL,NULL),(117600,'Thomas Brémond',NULL,NULL),(117670,'Wolf-Dietrich Brücker',1945,NULL),(117686,'Willi Brückner',NULL,NULL),(117692,'Nicolai Brüel',1965,NULL),(117709,'Daniel Brühl',1978,NULL),(117741,'BT',1970,NULL),(117754,'Anupap Buachand',NULL,NULL),(117763,'Emilio Buale',1972,NULL),(117779,'Pasquale Buba',1946,2018),(117818,'Alvin K. Bubis',NULL,NULL),(117885,'Flavio Bucci',1947,2020),(117911,'Carlo Buccirosso',1954,NULL),(117955,'John Buchan',1875,1940),(117956,'John Buchan',NULL,NULL),(118050,'Michael Buchanan',NULL,2008),(118079,'Simone Buchanan',1968,NULL),(118135,'Anita Bucher',NULL,NULL),(118164,'Lothar G. Buchheim',1918,2007),(118214,'Harold Buchman',1912,1990),(118224,'Peter Buchman',1967,NULL),(118227,'Sidney Buchman',1902,1975),(118249,'Tobias Büchner',1968,NULL),(118290,'Art Buchwald',1925,2007),(118333,'Chris Buck',1958,NULL),(118345,'Detlev Buck',1962,NULL),(118348,'Douglas Buck',NULL,NULL),(118419,'Samantha Buck',NULL,NULL),(118420,'Scott Buck',NULL,NULL),(118566,'Hans Rodionoff',NULL,NULL),(118569,'Andrew Buckley',NULL,NULL),(118605,'Gavin Buckley',NULL,NULL),(118617,'James Buckley',1987,NULL),(118649,'Kristen Buckley',NULL,NULL),(118658,'Martina Buckley',NULL,NULL),(118720,'Phil Buckman',1969,NULL),(118729,'Paul Buckmaster',1946,2017),(118758,'Robert Buckner',1906,1989),(118893,'Dénes Buday',1890,1963),(118912,'Harold Budd',1936,2020),(118983,'Tom Budge',1982,NULL),(119279,'Gottfried August Bürger',1747,1794),(119322,'Conrad Buff IV',1948,NULL),(119376,'Pierre Buffin',NULL,NULL),(119405,'Takashi Bufford',1952,NULL),(119409,'Ray Buffum',1904,1980),(119419,'Jacques Bufnoir',NULL,NULL),(119438,'Celso Bugallo',1947,NULL),(119542,'Jeff Buhai',NULL,NULL),(119633,'Michael Buie',NULL,NULL),(119785,'Bobby Bukowski',1953,NULL),(119804,'Ania Bukstein',1982,NULL),(119888,'Mikhail A. Bulgakov',1891,1940),(119946,'Alexander Bulkley',NULL,NULL),(119988,'Peter Bull',1912,1984),(120111,'Amelia Bullmore',1964,NULL),(120128,'Angela Bullock',NULL,NULL),(120152,'Harvey Bullock',1921,2006),(120309,'Rodger Bumpass',1951,NULL),(120317,'Henry Bumstead',1915,2006),(120327,'Alan Bunce',NULL,NULL),(120491,'Robert Bunker',NULL,NULL),(120494,'Robert Z\'Dar',1950,2015),(120517,'Avis Bunnage',1923,1990),(120554,'Carmen Bunster',1918,2012),(120575,'Lisa Bunting',NULL,NULL),(120648,'Cara Buono',NULL,NULL),(120658,'Victor Buono',1938,1982),(120667,'Paolo Buonvino',1968,NULL),(120729,'Aleksandr Buravskiy',NULL,NULL),(120790,'Curtis Burch',NULL,NULL),(120816,'Ron Burch',NULL,NULL),(120837,'Peter Burchard',1921,2004),(120869,'Andrea Burchill',NULL,NULL),(120918,'Bob Burden',1952,NULL),(120969,'Eugene Burdick',1918,1965),(120987,'Ray Burdis',1958,NULL),(121026,'Candace Cameron Bure',1976,NULL),(121117,'Mark Burg',1959,NULL),(121178,'Aaron Berger',NULL,NULL),(121254,'Alan Burgess',1915,1998),(121256,'Anthony Burgess',1917,1993),(121281,'Don Burgess',1956,NULL),(121313,'Julie Burgess',NULL,NULL),(121402,'Alana Sanko',NULL,NULL),(121430,'Kenneth Burgomaster',NULL,NULL),(121431,'Geoffrey Burgon',1941,2010),(121519,'Zlatko Buric',1953,NULL),(121559,'Robert John Burke',1960,NULL),(121568,'Gary Jude Burkart',NULL,NULL),(121605,'Billy Burke',1966,NULL),(121620,'Carlease Burke',1955,NULL),(121715,'James Lee Burke',1936,NULL),(121724,'Jim Burke',NULL,NULL),(121753,'Kathleen Burke',1913,1980),(121755,'Kathy Burke',1964,NULL),(121789,'Martyn Burke',1952,NULL),(121826,'Paul Burke',1926,2009),(121885,'Thomas Burke',1886,1945),(121895,'Tom Burke',1981,NULL),(121944,'James S. Burkett',1895,1970),(122007,'Jonathan Burkhart',NULL,NULL),(122058,'Willis Burks II',1935,2010),(122079,'Robert Burks',1909,1968),(122095,'Vladimir Burlakov',1987,NULL),(122127,'Raymond Burlet',NULL,NULL),(122140,'Mark A. Burley',NULL,NULL),(122167,'Ivan Burlyaev',1976,NULL),(122168,'Nikolay Burlyaev',1946,NULL),(122184,'Daniel Burman',1973,NULL),(122214,'Wolfgang Burmann',1940,NULL),(122216,'Abbas Alibhai Burmawalla',NULL,NULL),(122217,'Mastan Alibhai Burmawalla',NULL,NULL),(122238,'Leo Burmester',1944,2007),(122334,'Alan Burnett',1949,NULL),(122335,'Allison Burnett',1958,NULL),(122364,'Frances Hodgson Burnett',1849,1924),(122382,'John F. Burnett',NULL,NULL),(122411,'Matt Burnett',NULL,NULL),(122417,'Murray Burnett',1910,1997),(122427,'Rob Burnett',1962,NULL),(122439,'T Bone Burnett',1948,NULL),(122446,'W.R. Burnett',1899,1982),(122466,'Olivia Burnette',1977,NULL),(122484,'Sheila Burnford',1918,1984),(122511,'Mark Burnham',NULL,NULL),(122602,'Brian Burns',NULL,NULL),(122634,'David Burns',1901,1971),(122653,'Edward Burns',1968,NULL),(122698,'Jack Burns',1933,2020),(122703,'James C. Burns',1959,NULL),(122716,'Jere Burns',1954,NULL),(122740,'Keith Brian Burns',NULL,NULL),(122741,'Ken Burns',1953,NULL),(122780,'Mark Burns',1936,2007),(122782,'Marilyn Burns',1949,2014),(122787,'Mark R. Burns',NULL,NULL),(122800,'Michael Burns',1958,NULL),(122809,'Milly Burns',NULL,NULL),(122859,'Robert E. Burns',1892,1955),(122886,'Steve Burns',1973,NULL),(122899,'Tim Burns',NULL,NULL),(122950,'Jim Burnstein',NULL,NULL),(123009,'Jeff Burr',1963,NULL),(123013,'Kristin Burr',NULL,NULL),(123090,'Sheila Burrell',1922,2011),(123092,'Ty Burrell',1967,NULL),(123102,'Hedy Burress',1973,NULL),(123135,'Timothy Burrill',1931,NULL),(123139,'Chad Burris',NULL,NULL),(123174,'Bryan Burrough',1961,NULL),(123194,'Edgar Rice Burroughs',1875,1950),(123201,'Jackie Burroughs',1939,2010),(123221,'William S. Burroughs',1914,1997),(123242,'Abe Burrows',1910,1985),(123313,'Bob Burrus',1938,2007),(123379,'Nanette Burstein',1970,NULL),(123394,'Thomas Burstyn',1954,NULL),(123480,'Laurent Burtin',NULL,NULL),(123481,'Ulrich Burtin',NULL,NULL),(123521,'Bernard W. Burton',1898,1991),(123548,'Clarence Burton',1882,1933),(123553,'Corey Burton',1955,NULL),(123587,'Geoff Burton',1946,NULL),(123629,'Joseph Burton',NULL,NULL),(123630,'Julian Burton',1932,2006),(123632,'Kate Burton',1957,NULL),(123648,'Laura Burton',NULL,NULL),(123661,'Maria Burton',NULL,NULL),(123664,'Mark Burton',NULL,NULL),(123666,'Mark Burton',NULL,NULL),(123674,'Michael Burton',NULL,NULL),(123680,'Norman Burton',1923,2003),(123761,'W.A. Burton',NULL,NULL),(123779,'Clemency Burton-Hill',1981,NULL),(123785,'Ben Burtt',1948,NULL),(123896,'Gerald Busby',1935,NULL),(123984,'Inga Busch',1968,NULL),(123994,'Mae Busch',1891,1946),(124000,'Michael Busch',NULL,NULL),(124002,'Niven Busch',1903,1991),(124079,'Timothy Busfield',1957,NULL),(124089,'Andrew Bush',NULL,NULL),(124100,'Billy Green Bush',1935,NULL),(124107,'Chuck Bush',1961,NULL),(124112,'Dan Bush',NULL,NULL),(124117,'Dick Bush',1931,1997),(124133,'George W. Bush',1946,NULL),(124208,'Sophia Bush',1982,NULL),(124224,'Leslie Bush-Fekete',1896,1971),(124239,'David L. Bushell',NULL,NULL),(124244,'Jeffrey Bushell',NULL,NULL),(124279,'Francis X. Bushman',1883,1966),(124299,'Candace Bushnell',1958,NULL),(124304,'Graham Bushnell',NULL,NULL),(124312,'Scott Bushnell',1937,2006),(124333,'Akosua Busia',1966,NULL),(124441,'Marcelo Busse',NULL,NULL),(124481,'Pascale Bussières',1968,NULL),(124482,'Raymond Bussières',1907,1982),(124652,'Marc Butan',NULL,NULL),(124700,'Oliver Butcher',NULL,NULL),(124832,'Bill Butler',1921,2023),(124833,'Bill Butler',1933,2017),(124877,'David Butler',1894,1979),(124889,'Daws Butler',1916,1988),(124918,'Frank Butler',1890,1967),(124930,'Gerard Butler',1969,NULL),(124947,'Hugo Butler',1914,1968),(125013,'Kerry Butler',1971,NULL),(125060,'Michael Butler',1941,NULL),(125061,'Michael Butler',1926,2022),(125111,'Robert Butler',1927,NULL),(125123,'Roy Butler',NULL,NULL),(125186,'Hendel Butoy',1958,NULL),(125325,'Charles Butterworth',1896,1946),(125328,'Donna Butterworth',1956,2018),(125336,'Jez Butterworth',1969,NULL),(125367,'Jörg Buttgereit',1963,NULL),(125419,'Matthew Button',1970,NULL),(125475,'Norbert Leo Butz',1967,NULL),(125540,'Margherita Buy',1962,NULL),(125588,'Agata Buzek',1976,NULL),(125627,'Lando Buzzanca',1935,2022),(125632,'Rita Buzzar',NULL,NULL),(125635,'Dino Buzzati',1906,1972),(125636,'Edward Buzzell',1895,1985),(125698,'Floyd Byars',NULL,NULL),(125730,'Mikhail Bychkov',1950,2022),(125748,'Zuzana Bydzovská',1961,NULL),(125753,'Ed Bye',1955,NULL),(125762,'Matti Bye',1966,NULL),(125803,'Bobby Farrelly',1958,NULL),(125809,'Frank Byers',NULL,NULL),(125821,'Joy Byers',1934,2017),(125824,'Kate Byers',NULL,NULL),(125930,'Eric Byler',1972,NULL),(126004,'Dan Byrd',1985,NULL),(126035,'Joseph Byrd',NULL,NULL),(126096,'James Ward Byrkit',NULL,NULL),(126128,'Bobby Byrne',1932,2017),(126154,'David Byrne',1952,NULL),(126210,'Johnny Byrne',1935,2008),(126250,'Michael Byrne',1943,NULL),(126284,'Rose Byrne',1979,NULL),(126402,'Kathleen Byron',1921,2009),(126430,'Walter Byron',1899,1972),(126440,'John Byrum',1947,NULL),(126500,'Won-mi Byun',NULL,NULL),(126536,'András Bágya',1911,1992),(126564,'Zsuzsa Bánki',1921,1998),(126585,'György Bárdy',1921,2013),(126642,'Tom Bähler',1943,NULL),(126653,'Willi Bär',NULL,NULL),(126669,'Marie Bäumer',1969,NULL),(126743,'Catherine Bégin',1939,2013),(126825,'Yves Bélanger',1960,NULL),(126878,'Laurent Bénégui',1959,NULL),(126889,'Henri Bérard',NULL,NULL),(126909,'Ilona Béres',1942,NULL),(126948,'Miklós Bíró',1933,2015),(126960,'José Bódalo',1916,1985),(126969,'Erika Bók',NULL,NULL),(127009,'Bettina Böhler',1960,NULL),(127102,'Enikö Börcsök',1968,2021),(127168,'Fritz Böttger',1902,1981),(127294,'Wolfgang Büld',1952,NULL),(127373,'Louis C.K.',1967,NULL),(127389,'Martin E. Caan',NULL,NULL),(127392,'Ronnie Caan',1945,NULL),(127403,'Fermín Cabal',1948,NULL),(127429,'Eugenio Caballero',1972,NULL),(127438,'Joe Caballero',NULL,NULL),(127541,'Pierre Cabaud',NULL,NULL),(127562,'Stéphane Cabel',NULL,NULL),(127604,'Críspulo Cabezas',1981,NULL),(127677,'Bruce Cabot',1904,1972),(127690,'Meg Cabot',1967,NULL),(127693,'Susan Cabot',1927,1986),(127788,'Guillermo Cabrera Infante',1929,2005),(127917,'José Ignacio Cabrujas',1937,1995),(127988,'Kurt Caceres',NULL,NULL),(128050,'Michael Cacoyannis',1922,2011),(128135,'Selina Cadell',1953,NULL),(128325,'Fitch Cady',NULL,NULL),(128332,'Jerome Cady',1903,1948),(128337,'Patrick Cady',NULL,NULL),(128345,'Jae-Hyun Cho',1965,NULL),(128360,'Adolph Caesar',1933,1986),(128365,'David Caesar',1963,NULL),(128377,'Sid Caesar',1922,2014),(128414,'Jean Caffeine',1960,NULL),(128499,'Ben Cagan',NULL,NULL),(128538,'John Cagle',NULL,NULL),(128581,'William Cagney',1905,1988),(128657,'Erin Cahill',NULL,NULL),(128680,'Laura Cahill',NULL,NULL),(128687,'M. Cahill',NULL,NULL),(128709,'Daniel T. Cahn',1957,NULL),(128711,'Dann Cahn',1923,2012),(128715,'Edward L. Cahn',1899,1963),(128724,'Philip Cahn',1894,1984),(128845,'Alan Caillou',1914,2006),(128858,'Paul Caimi',NULL,NULL),(128874,'Bill Cain',NULL,NULL),(128883,'Christopher Cain',1943,NULL),(128906,'James M. Cain',1892,1977),(128997,'Jeffrey Caine',1944,NULL),(129193,'Joseph Michael Cala',1932,NULL),(129278,'Clara Calamai',1909,1998),(129281,'Marco Calamandrei',NULL,NULL),(129310,'Philippe Caland',NULL,NULL),(129321,'Peter Calandra',NULL,NULL),(129435,'Pedro Caldas',1958,NULL),(129445,'Todd Caldecott',1969,NULL),(129484,'Paul D. Calder',NULL,NULL),(129538,'Paul Calderon',1959,NULL),(129573,'Andrea Calderwood',1965,NULL),(129721,'H.H. Caldwell',1873,1939),(129749,'L. Scott Caldwell',1950,NULL),(129765,'Michael Caldwell',NULL,NULL),(129772,'Orville Caldwell',1896,1967),(129827,'Ruth Caleb',1942,NULL),(129879,'Calexico',NULL,NULL),(129894,'Louis Calhern',1895,1956),(129941,'Ryan Calhoun',1980,NULL),(129955,'Joseph Cali',1950,NULL),(130065,'Darrell Calker',1905,1964),(130085,'Brandon Call',1976,NULL),(130194,'Gene Callahan',1923,1990),(130196,'George Callahan',1902,1989),(130210,'James T. Callahan',1930,2007),(130253,'Shane Callahan',NULL,NULL),(130282,'K Callan',NULL,NULL),(130286,'Michael Callan',1935,2022),(130356,'Liz Callaway',1961,NULL),(130369,'Thomas L. Callaway',NULL,NULL),(130407,'Joseph Calleia',1897,1975),(130415,'José María Calleja',NULL,NULL),(130429,'Luis Callejo',1970,NULL),(130492,'John Calley',1930,2011),(130506,'Dominique Galliéni',NULL,NULL),(130554,'Antonio Calloni',1961,NULL),(130572,'Cab Calloway',1907,1994),(130691,'Mimmo Calopresti',1955,NULL),(130725,'Orestes Calpini',1911,1974),(130740,'Donald Calthrop',1888,1940),(130760,'Antonio Calvache',NULL,NULL),(130773,'Joseph Calvelli',1920,1983),(130814,'John Calvert',NULL,NULL),(130829,'Phyllis Calvert',1915,2002),(130846,'Maurizio Calvesi',1954,NULL),(130890,'John Calvin',1947,NULL),(130962,'Luis Calvo',NULL,NULL),(131067,'Blanca Camacho',1956,NULL),(131104,'Luis Camacho',1970,NULL),(131117,'Mark Camacho',1964,NULL),(131168,'Gisela Camara',NULL,NULL),(131235,'Christian Camargo',1971,NULL),(131288,'Fabienne Féret',NULL,NULL),(131301,'Valentine Camax',1883,1978),(131311,'Jacqueline Cambas',NULL,NULL),(131333,'Donn Cambern',1929,2023),(131373,'Paco Cambres',NULL,2013),(131399,'Rozina Cambos',1951,2012),(131460,'Mario Camerini',1895,1981),(131534,'Craig Cameron',NULL,NULL),(131565,'Earl Cameron',1917,2020),(131597,'Donald G. Payne',1924,2018),(131615,'Jeff Cameron',1932,1985),(131624,'John Cameron',1944,NULL),(131625,'John Cameron',NULL,NULL),(131647,'Kirk Cameron',1970,NULL),(131661,'Lorne Cameron',NULL,NULL),(131700,'Paul Cameron',NULL,NULL),(131702,'Peter Cameron',1959,NULL),(131713,'Rod Cameron',1910,1983),(131750,'Walter Cameron',1872,1942),(131781,'Jaime Camil',1973,NULL),(131811,'Terry Camilleri',1949,NULL),(131840,'Augusto Caminito',1939,2020),(131947,'Alessandro Camon',1963,NULL),(131966,'Bill Camp',1964,NULL),(131969,'Brandon Camp',1971,NULL),(131974,'Colleen Camp',1953,NULL),(131985,'Hamilton Camp',1934,2005),(131987,'Hy Pyke',1935,2006),(132103,'Joseph Campanella',1924,2018),(132168,'John W. Campbell Jr.',1910,1971),(132180,'Alan Campbell',1904,1963),(132257,'Bruce Campbell',1958,NULL),(132258,'Bruce Campbell',1932,1996),(132285,'Charles C. Campbell',1968,NULL),(132300,'Christa Campbell',1972,NULL),(132301,'Christian Campbell',1972,NULL),(132375,'David Campbell',1948,NULL),(132409,'Douglas Campbell',1922,2009),(132427,'Eddie Campbell',1955,NULL),(132441,'Emma Campbell',NULL,NULL),(132444,'Eric Campbell',1880,1917),(132537,'James B. Campbell',1946,NULL),(132610,'Julia Campbell',NULL,NULL),(132631,'Ken Campbell',1941,2008),(132637,'Ken Hudson Campbell',1962,NULL),(132685,'Luenell',1959,NULL),(132695,'Malcolm Campbell',NULL,NULL),(132696,'Malcolm Campbell',1973,NULL),(132709,'Martin Campbell',1943,NULL),(132757,'Nicholas Campbell',1952,NULL),(132786,'Phil Campbell',1961,NULL),(132788,'Philippa Campbell',NULL,NULL),(132793,'Ramsey Campbell',1946,NULL),(132930,'William Campbell',1923,2011),(132955,'Frank Campeau',1864,1943),(133028,'Robin Campillo',1962,NULL),(133044,'Anna Campion',1952,NULL),(133048,'Clifford Campion',NULL,NULL),(133049,'Cris Campion',1966,NULL),(133326,'Sebastián Lelio',1974,NULL),(133357,'Eduardo Campoy',1955,NULL),(133426,'Mario Camus',1935,2021),(133453,'Can',NULL,NULL),(133531,'José Canalejas',1925,2015),(133561,'Cuca Canals',NULL,NULL),(133566,'Maria Canals-Barrera',1966,NULL),(133591,'Volker Canaris',1942,2012),(133611,'Jeff Canavan',NULL,NULL),(133627,'W.H. Canaway',1925,1988),(133676,'Kelly Candaele',1954,NULL),(133713,'Isabelle Candelier',1963,NULL),(133763,'Takis Candilis',NULL,NULL),(133899,'Guillaume Canet',1973,NULL),(133981,'João Canijo',1957,NULL),(134043,'Denis Cannan',1919,2011),(134072,'Bobby Cannavale',1970,NULL),(134073,'Enzo Cannavale',1928,2011),(134124,'Victor Canning',1911,1986),(134164,'Bruce Cannon',NULL,NULL),(134176,'Danny Cannon',1968,NULL),(134191,'Edward Cannon',NULL,NULL),(134201,'J.D. Cannon',1922,2005),(134224,'Kay Cannon',1974,NULL),(134230,'Lowell Cannon',NULL,NULL),(134244,'Nick Cannon',1980,NULL),(134252,'Raymond Cannon',1892,1977),(134253,'Reuben Cannon',1946,NULL),(134269,'Steve Staley',1969,NULL),(134396,'Hans Canosa',NULL,NULL),(134493,'Giorgio Cantarini',1992,NULL),(134503,'Saara Cantell',1968,NULL),(134508,'Paul Cantelon',1965,NULL),(134573,'Néstor Cantillana',1975,NULL),(134578,'Elizabeth Cantillon',NULL,NULL),(134594,'Cantinflas',1911,1993),(134618,'Marilyne Canto',1961,NULL),(134635,'Neil Canton',1948,NULL),(134642,'Eric Cantona',1966,NULL),(134720,'Matt Cantrell',NULL,NULL),(134811,'Erik Canuel',1961,NULL),(134862,'Cuifen Cao',1944,NULL),(134871,'Jiuping Cao',NULL,NULL),(134884,'Yu Cao',1910,1996),(134922,'Peter Capaldi',1958,NULL),(134954,'Ernesto Caparrós',1907,1992),(134992,'Yves Cape',1960,NULL),(135084,'Laurent Capelluto',1971,NULL),(135102,'Virginia Capers',1925,2004),(135114,'Nicholas Capetanakis',NULL,NULL),(135117,'Leon Capetanos',NULL,NULL),(135141,'Frank A. Cappello',NULL,NULL),(135184,'Duane Capizzi',NULL,NULL),(135221,'Lizzy Caplan',1982,NULL),(135235,'Sarah Caplan',NULL,NULL),(135268,'Lee Caplin',NULL,NULL),(135296,'Jim Capobianco',1969,NULL),(135404,'Cristiana Capotondi',1980,NULL),(135489,'Loredana Nusciak',1942,2006),(135524,'Marco Cappetta',1963,NULL),(135542,'Claudio Capponi',NULL,NULL),(135584,'Francis Capra',1983,NULL),(135585,'Freddy Rodríguez',NULL,NULL),(135586,'Fritjof Capra',1939,NULL),(135610,'Tony Caprari',NULL,NULL),(135622,'Ahna Capri',1944,2010),(135666,'Debora Caprioglio',1968,NULL),(135708,'Talaat Captan',NULL,NULL),(135843,'Phil Caracas',NULL,NULL),(135847,'Joseph M. Caracciolo Jr.',NULL,NULL),(135895,'Chase Masterson',NULL,NULL),(135942,'Robert Caramico',1932,1997),(136012,'Tyke Caravelli',NULL,NULL),(136021,'Leos Carax',1960,NULL),(136057,'Luis Carballar',NULL,NULL),(136093,'Brian Carbee',NULL,NULL),(136133,'David Carbonara',NULL,NULL),(136147,'Antony Carbone',1925,2020),(136254,'Laetitia Carcano',NULL,NULL),(136260,'Philippe Carcassonne',1955,NULL),(136262,'Lorenzo Carcaterra',1954,NULL),(136298,'Orson Scott Card',1951,NULL),(136399,'Steve Cardenas',1974,NULL),(136440,'Lori Cardille',1954,NULL),(136550,'Sam Cardon',NULL,NULL),(136572,'Manolo Cardona',1977,NULL),(136574,'Mario Cardona',NULL,NULL),(136592,'J.S. Cardone',1946,NULL),(136601,'Carolyn Cardonna',NULL,NULL),(136603,'Patricia Cardoso',NULL,NULL),(136665,'Louise Cardoso',1954,NULL),(136690,'Pedro Cardoso',1962,NULL),(136707,'Anthony Cardoza',1930,2015),(136737,'Mark Patrick Carducci',1954,1997),(136754,'Herbert Cardwell',1940,1979),(136775,'Peter Care',1953,NULL),(136789,'Roger Carel',1927,2020),(136794,'Lianella Carell',1927,2000),(136797,'Steve Carell',1962,NULL),(136806,'Joann Carelli',NULL,NULL),(136886,'Arthur Edmund Carewe',1884,1937),(136897,'Amy Carey',NULL,NULL),(136904,'Anne Carey',NULL,NULL),(136950,'Ernestine Gilbreth Carey',1908,2006),(136983,'Joyce Carey',1898,1993),(136994,'Macdonald Carey',1913,1994),(137004,'Michele Carey',1942,2018),(137020,'Peter Carey',1943,NULL),(137023,'Philip Carey',1925,2009),(137028,'Richenda Carey',1948,NULL),(137046,'Timothy Carey',1929,1994),(137063,'Edward C. Carfagno',1907,1996),(137075,'Jill Cargerman',NULL,NULL),(137124,'Anthony Carras',1920,2007),(137228,'Christian Carion',1963,NULL),(137230,'Len Cariou',1939,NULL),(137324,'Lars-Owe Carlberg',1923,1988),(137365,'Catherine Carlen',NULL,NULL),(137459,'Robert Carli',NULL,NULL),(137503,'Ed Carlin',1932,1996),(137506,'George Carlin',1937,2008),(137524,'Lynn Carlin',1938,NULL),(137534,'Paul Carlin',1968,NULL),(137548,'Rob Carliner',NULL,NULL),(137559,'Carlo Carlini',1929,NULL),(137573,'Lewis John Carlino',1932,2020),(137575,'Hillary Carlip',1956,NULL),(137592,'Anne Carlisle',1956,NULL),(137601,'Bruce Carlisle',1922,1980),(137627,'Jodi Carlisle',1960,NULL),(137634,'Kitty Carlisle',1910,2007),(137793,'Wendy Carlos',1939,NULL),(137808,'Margit Carlqvist',1932,NULL),(137811,'John B. Carls',NULL,NULL),(137907,'Erica Carlson',1981,NULL),(137963,'Lea Carlson',NULL,NULL),(137999,'Richard Carlson',1912,1977),(138034,'Trent Carlson',NULL,NULL),(138040,'Veronica Carlson',1944,2022),(138122,'Robyn Carlsson',1979,NULL),(138192,'Hope Marie Carlton',1966,NULL),(138194,'Clayton Moore',1914,1999),(138223,'Rex Carlton',1915,1968),(138233,'Kevin Seymour',1958,2014),(138238,'Wendy Jo Carlton',NULL,NULL),(138287,'Phyllis Carlyle',1942,2022),(138319,'Kona Carmack',1976,NULL),(138327,'Michael Carman',NULL,NULL),(138371,'Tonantzin Carmelo',NULL,NULL),(138386,'Jewel Carmen',1897,1984),(138388,'Julie Carmen',NULL,NULL),(138405,'Jean Carmet',1920,1994),(138428,'Ian Carmichael',1920,2010),(138460,'Stokely Carmichael',1941,1998),(138502,'Don Carmody',1951,NULL),(138549,'Joaquín Carmona',NULL,NULL),(138609,'Ted Nicolaou',1949,NULL),(138620,'Joe Carnahan',1969,NULL),(138676,'João Emanuel Carneiro',1970,NULL),(138700,'Francesco Carnelutti',1936,2015),(138701,'Valentina Carnelutti',1973,NULL),(138706,'Charles Robert Carner',1957,NULL),(138721,'Eduardo Carneros',NULL,NULL),(138759,'Marcos Carnevale',1963,NULL),(138770,'Art Carney',1918,2003),(138809,'John Carney',1972,NULL),(138885,'Morris Carnovsky',1897,1992),(138893,'Marcel Carné',1906,1996),(138917,'Juan Carlos Caro',NULL,NULL),(138918,'Julio Caro',NULL,NULL),(138927,'Niki Caro',1966,NULL),(138987,'Martine Carol',1920,1967),(139111,'Glenn Gordon Caron',1954,NULL),(139203,'Denis Carot',NULL,NULL),(139218,'AJ Carothers',1931,2007),(139220,'Christopher H. Carothers',NULL,NULL),(139234,'Tom Carouso',NULL,NULL),(139252,'Michael Carp',NULL,NULL),(139319,'Don Carpenter',1931,1995),(139321,'Edward Childs Carpenter',1872,1950),(139356,'Horace B. Carpenter',1875,1945),(139383,'Johnny Carpenter',1914,2003),(139388,'Joseph A. Carpenter',NULL,NULL),(139461,'Stephen Carpenter',NULL,NULL),(139527,'Luigi Carpentieri',1919,1987),(139591,'Allan Carr',1937,1999),(139605,'Neal Marshall Stevens',NULL,NULL),(139714,'Harry Carr',1877,1936),(139758,'John K. Carr',NULL,NULL),(139764,'Julie Carr',NULL,NULL),(139792,'Marian Carr',1925,2003),(139867,'Steve Carr',NULL,NULL),(139900,'Neva Carr-Glynn',1908,1975),(139905,'Joan Carr-Wiggin',NULL,NULL),(140011,'Bill Carraro',NULL,NULL),(140017,'Robert Primes',1940,NULL),(140196,'Carlos Carrera',1962,NULL),(140257,'Michael Carreras',1927,1994),(140267,'Fernando Carrere',1910,1998),(140316,'Florence Delay',1941,NULL),(140443,'Douglas Carrigan',NULL,NULL),(140572,'James Carrington',NULL,NULL),(140588,'Robert Carrington',1928,NULL),(140617,'Gareth Carrivick',1957,2010),(140643,'Jean-Claude Carrière',1931,2021),(140649,'Mathieu Carrière',1950,NULL),(140826,'Gordon Carroll',1928,2005),(140829,'Gregory Carroll',NULL,NULL),(140836,'J. Larry Carroll',1946,NULL),(140860,'Jim Carroll',1949,2009),(140889,'Lane Carroll',NULL,2019),(140902,'Lewis Carroll',1832,1898),(140914,'Madeleine Carroll',1906,1987),(140946,'Pat Carroll',1927,2022),(140958,'Richard Carroll',1898,1959),(140971,'Roland Carroll',1954,NULL),(140987,'Sidney Carroll',1913,1988),(141085,'Milton Carruth',1899,1972),(141089,'William C. Carruth',NULL,NULL),(141114,'Julius Carry',1952,2008),(141127,'Emmanuel Carrère',1957,NULL),(141133,'Stanislas Carré de Malberg',NULL,NULL),(141140,'Isabelle Carré',1971,NULL),(141147,'Léon Carré',NULL,NULL),(141167,'Gastone Carsetti',NULL,NULL),(141222,'David Carson',NULL,NULL),(141255,'Jean Carson',1923,2005),(141281,'L.M. Kit Carson',1941,2014),(141380,'Margit Carstensen',1940,2023),(141418,'Marcelia Cartaxo',1963,NULL),(141450,'Alex Carter',1964,NULL),(141462,'Angela Carter',1940,1992),(141608,'Ellis W. Carter',1906,1964),(141617,'Finn Carter',1960,NULL),(141620,'Forrest Carter',1925,1979),(141637,'Gina Carter',NULL,NULL),(141677,'James L. Carter',NULL,NULL),(141697,'Jim Carter',1948,NULL),(141699,'Jimmy Carter',1924,NULL),(141713,'John Carter',1922,2018),(141734,'Joseph Carter',1912,1984),(141766,'Kristopher Carter',1972,NULL),(141843,'Natalie Carter',1955,NULL),(141918,'Rubin \'Hurricane\' Carter',1937,2014),(141931,'Sarah Carter',1980,NULL),(141956,'Terry Carter',1928,NULL),(141961,'Thomas Carter',1953,NULL),(141997,'Anna Carteret',1942,NULL),(142104,'Étienne Carton de Grammont',NULL,NULL),(142134,'Susan Cartsonis',NULL,NULL),(142154,'Carroll Cartwright',NULL,NULL),(142179,'Jim Cartwright',1958,NULL),(142286,'D.J. Caruso',1965,NULL),(142301,'Fred C. Caruso',NULL,NULL),(142318,'Margherita Caruso',1950,NULL),(142404,'Cucha Carvalheiro',1948,NULL),(142453,'José Carvalho',NULL,NULL),(142543,'Caroline Carver',1976,NULL),(142577,'Raymond Carver',1938,1988),(142587,'Steve Carver',1945,2021),(142636,'Robert Cary',1968,NULL),(142639,'Tristram Cary',1925,2008),(142675,'Denise de Casabianca',1931,2020),(142704,'Gisèle Casadesus',1914,2017),(142799,'Toni Casala',1964,NULL),(142849,'Carla Giulia Casalini',NULL,NULL),(142899,'Denise Casano',NULL,NULL),(142964,'Àlex Casanovas',1964,NULL),(142972,'Amira Casar',1971,NULL),(143007,'Guy Casaril',1933,1996),(143018,'María Casares',1922,1996),(143032,'Ariel Casas',NULL,NULL),(143128,'Beppe Caschetto',NULL,NULL),(143129,'David Casci',NULL,NULL),(143187,'Caroline Case',NULL,NULL),(143188,'Carroll Case',1908,1978),(143252,'Regina Casé',1954,NULL),(143281,'Alberto Casella',1891,1957),(143314,'Adriana Caselotti',1916,1997),(143352,'Carles Cases',1958,NULL),(143378,'Bernie Casey',1939,2017),(143403,'Daniel Casey',1981,NULL),(143513,'Patricia Casey',1936,NULL),(143558,'Warren Casey',1935,1988),(143574,'Bubbles Cash',NULL,NULL),(143596,'Jim Cash',1941,2000),(143599,'Johnny Cash',1932,2003),(143635,'Del Casher',1937,NULL),(143636,'Jesus Castanos',NULL,NULL),(143686,'Maria Pia Casilio',1935,2012),(143743,'Stefania Casini',1948,NULL),(143829,'Ragnvald Caspari',NULL,NULL),(143836,'Tina Caspary',1970,NULL),(143837,'Vera Caspary',1899,1987),(143900,'Henry Cass',1903,1989),(143922,'Ronald Cass',1923,2006),(143935,'Desiree Casado',1985,NULL),(143939,'Guymon Casady',NULL,NULL),(144018,'Xan Cassavetes',1965,NULL),(144025,'Patrick Cassavetti',1950,NULL),(144039,'Cécile Cassel',1982,NULL),(144045,'Jean-Pierre Cassel',1932,2007),(144053,'Sandra Peabody',1948,NULL),(144107,'Cassen',1928,1991),(144119,'Andrew Cassese',1972,NULL),(144133,'Gabriel Casseus',1972,NULL),(144187,'Elaine Cassidy',1979,NULL),(144203,'Jay Cassidy',NULL,NULL),(144234,'Patrick Cassidy',NULL,NULL),(144236,'Patrick Cassidy',1973,NULL),(144260,'Cassie Ventura',1986,NULL),(144297,'Martine Cassinelli',NULL,NULL),(144320,'John Cassisi',1962,NULL),(144368,'Emanuele Cassuto',1916,1994),(144470,'Mário Castanheira',NULL,NULL),(144657,'Dan Castellaneta',1957,NULL),(144677,'Renato Castellani',1913,1985),(144758,'Enzo G. Castellari',1938,NULL),(144785,'Jean-Christophe Castelli',NULL,NULL),(144812,'Sergio Castellitto',1953,NULL),(144841,'Teddy Castellucci',NULL,NULL),(144875,'Nino Castelnuovo',1936,2021),(144966,'Ángela Castilla',1959,NULL),(145049,'Enrique Castillo',1949,NULL),(145117,'Kathi Castillo',NULL,NULL),(145207,'Óscar Castillo',NULL,NULL),(145284,'John Castle',1940,NULL),(145309,'Nick Castle',1947,NULL),(145321,'Roy Castle',1932,1994),(145336,'William Castle',1914,1977),(145530,'Emmanuelle Castro',NULL,NULL),(145540,'Flávia Castro',NULL,NULL),(145781,'Robert Caswell',1946,2006),(145840,'Pasquale Catalano',1966,NULL),(145863,'Giorgio Cataldi',NULL,NULL),(145880,'Patrick Catalifo',NULL,NULL),(145915,'Alex Catalán',NULL,NULL),(146033,'Víctor Andrés Catena',1925,2009),(146097,'James Carter Cathcart',1954,NULL),(146120,'Ed Cathell III',NULL,NULL),(146185,'Walter Catlett',1889,1960),(146264,'Michael Caton',1943,NULL),(146341,'Peter Cattaneo',1964,NULL),(146386,'Max Catto',1907,1992),(146424,'Jean Cau',1925,1993),(146430,'Pascal Caubère',NULL,NULL),(146434,'Pascal Caucheteux',NULL,NULL),(146517,'Ada Tauler',NULL,NULL),(146536,'Emma Caulfield Ford',NULL,NULL),(146681,'Cathy Cavadini',NULL,NULL),(146692,'Guy Cavagnac',1934,2022),(146709,'Alberto Cavalcanti',1897,1982),(146760,'Alain Cavalier',1931,NULL),(146868,'Robert Cavallo',NULL,NULL),(146889,'Susan Cavan',NULL,NULL),(146903,'Megan Cavanagh',1960,NULL),(146915,'Tom Cavanagh',1963,NULL),(146950,'Timothy Patrick Cavanaugh',1964,NULL),(146958,'Kenneth Cavander',1933,NULL),(146960,'Liliana Cavani',1933,NULL),(146991,'Fred Cavayé',NULL,NULL),(147016,'Grace Cave',NULL,NULL),(147022,'Nick Cave',1957,NULL),(147070,'Glen Cavender',1883,1962),(147080,'Jonathan Cavendish',NULL,NULL),(147092,'Leslie Caveny',NULL,NULL),(147119,'Frank Cavett',1905,1973),(147147,'Henry Cavill',1983,NULL),(147158,'André Cayatte',1909,1989),(147248,'Joseph Cawthorn',1868,1949),(147250,'Alec Cawthorne',NULL,NULL),(147251,'Ann Cawthorne',NULL,NULL),(147292,'Eric Cayla',NULL,NULL),(147308,'Fernando Cayo',1968,NULL),(147349,'David J. Cazalet',1922,1986),(147356,'Felipe Cazals',1937,2021),(147367,'Ronnie Lazaro',1957,NULL),(147397,'Jean Cazes',NULL,NULL),(147416,'Lila Cazès',NULL,2017),(147442,'María Cañete',NULL,1966),(147502,'Rafael Ceballos',NULL,NULL),(147561,'Daniel Ceccaldi',1927,2003),(147575,'Luigi Ceccarelli',1953,NULL),(147582,'Sandra Ceccarelli',1967,NULL),(147599,'Suso Cecchi D\'Amico',1914,2010),(147601,'Mario Cecchi Gori',1920,1993),(147602,'Rita Rusic',NULL,NULL),(147603,'Vittorio Cecchi Gori',1942,NULL),(147605,'Carlo Cecchi',1939,NULL),(147689,'Derek Cecil',1973,NULL),(147700,'Kevin Cecil',1969,NULL),(147737,'Joseph Cedar',1968,NULL),(147767,'Jakob Cedergren',1973,NULL),(147794,'Giuseppe Cederna',1957,NULL),(147825,'Cedric The Entertainer',1964,NULL),(147911,'Camilo José Cela',1916,2002),(147974,'Claudia Celedón',1966,NULL),(148041,'Adolfo Celi',1922,1986),(148081,'Teco Celio',1952,NULL),(148116,'Simon Cellan Jones',NULL,NULL),(148161,'Maria Elena Cellino',NULL,NULL),(148339,'Maurizio Centini',NULL,NULL),(148382,'Angie Cepeda',1974,NULL),(148387,'Laura Cepeda',1953,NULL),(148395,'Branka Ceperac',1931,2012),(148418,'Michael Cera',1988,NULL),(148437,'Vincenzo Cerami',1940,2013),(148489,'Janus Cercone',NULL,NULL),(148516,'Aleksey Serebryakov',1964,NULL),(148535,'Michael Cerenzie',1970,NULL),(148554,'Enrique Cerezo',NULL,NULL),(148581,'Jitka Cerhová',1947,NULL),(148783,'Lionello Cerri',NULL,NULL),(148808,'Mike Cerrone',1957,NULL),(148859,'Miguel de Cervantes y Saavedra',1547,1616),(148964,'Michael Cerveris',1960,NULL),(148970,'Tonino Cervi',1929,2002),(148992,'José Manuel Cervino',1940,NULL),(148999,'Tony Cervone',1966,NULL),(149091,'Marie Cesková',NULL,NULL),(149196,'Nuri Bilge Ceylan',1959,NULL),(149218,'Chafûrin',1961,NULL),(149222,'Louis Cha',1924,2018),(149223,'Seoung-Jae Cha',NULL,NULL),(149260,'Alain Chabat',1958,NULL),(149290,'Michael Chabon',1963,NULL),(149305,'Gregg Chabot',1969,NULL),(149347,'Matthieu Chabrol',1956,NULL),(149417,'Juan Chacón',1919,1985),(149441,'Sheeba Chaddha',1972,NULL),(149446,'Gurinder Chadha',1960,NULL),(149447,'Amar Chadha-Patel',NULL,NULL),(149453,'Milan Chadima',1974,NULL),(149491,'Justin Chadwick',1968,NULL),(149493,'Lee Chadwick',NULL,NULL),(149548,'Don Chaffey',1917,1990),(149556,'Ceán Chaffin',1957,NULL),(149563,'Stokely Chaffin',NULL,NULL),(149669,'Ilene Chaiken',1957,NULL),(149671,'Jennifer Chaiken',NULL,NULL),(149750,'Mark Chait',NULL,NULL),(149760,'Sam Chaiton',NULL,NULL),(149845,'Alok Chakravarty',NULL,NULL),(149910,'Kathleen Chalfant',1945,NULL),(149942,'Garry Chalk',1952,NULL),(149975,'Rudy Challenger',1928,2012),(150043,'Ted Chalmers',NULL,NULL),(150102,'Benoît Chamaillard',NULL,NULL),(150193,'Matthew Chamberlain',NULL,NULL),(150219,'Wilt Chamberlain',1936,1999),(150330,'Faune Chambers Watkins',1976,NULL),(150362,'Justin Chambers',1970,NULL),(150462,'Whitman Chambers',1896,1968),(150553,'Chankit Chamnivikaipong',NULL,NULL),(150602,'Connie Champagne',NULL,NULL),(150619,'Lyne Champagne',NULL,NULL),(150707,'Gregg Champion',1956,NULL),(150712,'John C. Champion',1923,1994),(150718,'Marge Champion',1919,2020),(150728,'Pierre Champion',NULL,NULL),(150770,'Lothar Chamski',NULL,NULL),(150802,'Benny Chan',1961,2020),(150804,'Betty Chan',NULL,NULL),(150820,'Chan Chang',NULL,NULL),(150832,'Chi-Ying Chan',NULL,NULL),(150858,'David Chan',NULL,NULL),(150862,'Dennis Chan',1949,NULL),(150873,'Eason Chan',1974,NULL),(150888,'Fei-Lit Chan',1940,2021),(150894,'Frankie Chan',1951,NULL),(150897,'Fruit Chan',1959,NULL),(150906,'Gordon Chan',1960,NULL),(150916,'Hing-Ka Chan',NULL,NULL),(150926,'Jacqueline Chan',1939,NULL),(150929,'Janet Chun',NULL,NULL),(150940,'Chao-jung Chen',1968,NULL),(150945,'Kwong-Hung Joe Chan',NULL,NULL),(150952,'Jordan Chan',1967,NULL),(150977,'Kin Chung Chan',NULL,NULL),(150989,'Kwong Wing Chan',1967,NULL),(151013,'Man-Keung Chan',NULL,NULL),(151068,'Philip Chan',1945,NULL),(151072,'Pui-Wah Chan',1949,2017),(151113,'Susan Chan',NULL,NULL),(151163,'Wilson Chan',NULL,NULL),(151169,'Han-Chen Wang',NULL,NULL),(151175,'Ye-cheng Chan',NULL,NULL),(151176,'Yi-kan Chan',NULL,NULL),(151250,'Anna Chancellor',1965,NULL),(151257,'Jack Chancer',NULL,NULL),(151303,'Michel Chanderli',NULL,NULL),(151310,'Harry Chandlee',1882,1956),(151358,'Elizabeth Chandler',NULL,NULL),(151362,'Evan Chandler',1944,2009),(151377,'Helen Chandler',1906,1965),(151419,'Kyle Chandler',1965,NULL),(151434,'Michael Chandler',NULL,NULL),(151452,'Raymond Chandler',1888,1959),(151519,'Bansi Chandragupta',1924,1981),(151540,'Jay Chandrasekhar',1968,NULL),(151606,'Lon Chaney',1883,1930),(151653,'Cheh Chang',1923,2002),(151654,'Chang Chen',1976,NULL),(151680,'Danny Chang',NULL,NULL),(151690,'Eileen Chang',1920,1995),(151714,'Raymond Chang',NULL,NULL),(151780,'Mia Chang',NULL,NULL),(151827,'Sylvia Chang',1953,NULL),(151835,'Terence Chang',NULL,NULL),(151858,'William Chang',NULL,NULL),(151919,'Carol Channing',1921,2019),(151925,'Simon Channing Williams',1945,2009),(151949,'Roy Chanslor',1899,1964),(152031,'Philippe Chany',NULL,NULL),(152035,'Delphine Chanéac',1978,NULL),(152059,'Vic Chao',NULL,NULL),(152061,'Winston Chao',1960,NULL),(152082,'Damian Chapa',1963,NULL),(152162,'Doug Chapin',1950,NULL),(152204,'Tom Chapin',1948,NULL),(152255,'Paul Chaplin',1955,NULL),(152261,'Sydney Chaplin',1926,2009),(152312,'Brenda Chapman',1962,NULL),(152361,'Edward Chapman',1901,1977),(152396,'Jan Chapman',1950,NULL),(152401,'Jay Chapman',NULL,NULL),(152443,'Leigh Chapman',1939,2014),(152464,'Mark Lindsay Chapman',1954,NULL),(152466,'Matthew Chapman',NULL,NULL),(152469,'Michael Chapman',1935,2020),(152521,'Sean Chapman',1961,NULL),(152545,'Vera Chapman',1898,1996),(152571,'Jérôme Chappatte',NULL,NULL),(152638,'Dave Chappelle',1973,NULL),(152640,'Joe Chappelle',NULL,NULL),(152683,'Dominique Chapuis',1948,2001),(152713,'Chara',1968,NULL),(152728,'David Charap',1965,NULL),(152788,'Patricia Charbonnet',NULL,NULL),(152831,'Mehdi Charef',1952,NULL),(152834,'Erik Charell',1895,1974),(152839,'Tara Strong',1973,NULL),(152844,'Benoît Charest',1964,NULL),(152868,'Cynthia Charette',NULL,NULL),(153051,'Jane Charles',NULL,NULL),(153064,'John Charles',1940,NULL),(153078,'Larry Charles',1956,NULL),(153100,'Melissa Fahn',1967,NULL),(153124,'Ray Charles',1930,2004),(153182,'Ian Charleson',1949,1990),(153198,'Bruno Charlesworth',NULL,NULL),(153263,'César Charlone',1958,NULL),(153265,'Alexandre Charlot',NULL,NULL),(153377,'Martin Charnin',1934,2019),(153384,'Sara B. Cooper',NULL,NULL),(153398,'Ruth Charny',NULL,NULL),(153444,'Mark Charpentier',NULL,NULL),(153457,'Fernand Charpin',1887,1944),(153493,'Jacques Charrier',1936,NULL),(153507,'Christian Charrière',1940,2005),(153508,'Henri Charrière',1906,1973),(153552,'Rodney Charters',1948,NULL),(153587,'William Chartoff',1963,NULL),(153589,'Melanie Chartoff',1948,NULL),(153590,'Robert Chartoff',1933,2015),(153686,'Annazette Chase',1941,NULL),(153698,'Borden Chase',1900,1971),(153713,'Charley Chase',1893,1940),(153719,'Cheryl Chase',1958,NULL),(153733,'Courtney Chase',1988,NULL),(153738,'Daveigh Chase',1990,NULL),(153740,'David Chase',1945,NULL),(153744,'Debra Martin Chase',1956,NULL),(153754,'Eric Chase',NULL,NULL),(153774,'Jacob Chase',1986,NULL),(153779,'Jeff Chase',1968,NULL),(153808,'Mary Chase',1906,1981),(153817,'Peter Chase',NULL,NULL),(153832,'Stanley Chase',1927,2014),(153845,'Thomas Chase',1949,NULL),(153877,'Liza Chasin',NULL,NULL),(153883,'David Chaskin',NULL,NULL),(153892,'Julia Chasman',NULL,NULL),(153893,'Steven Chasman',NULL,NULL),(153944,'Don Chastain',1935,2002),(153974,'Lee Chatametikool',NULL,NULL),(154001,'Hélène Chatelain',1935,2020),(154055,'Étienne Chatiliez',1952,NULL),(154071,'Glenndon Chatman',1986,NULL),(154155,'Santi Chatterjee',NULL,NULL),(154158,'Sharat Chandra Chaterjee',1876,1938),(154164,'Soumitra Chatterjee',1935,2020),(154183,'Ruth Chatterton',1892,1961),(154195,'Charlotte Chatton',NULL,NULL),(154243,'The Chau Ngo',1977,NULL),(154312,'Pascal Chaumeil',1961,2015),(154385,'Philippe de Chauveron',1965,NULL),(154412,'Lilyan Chauvin',1925,2008),(154438,'Louis Chavance',1907,1979),(154439,'Pascale Chavance',NULL,NULL),(154464,'Antonio Chavarrías',1956,NULL),(154632,'Ricardo Chavira',1971,NULL),(154665,'Paddy Chayefsky',1923,1981),(154716,'Stephen Chbosky',1970,NULL),(154726,'Stephanie Che',1974,NULL),(154804,'Andrea Checchi',1916,1974),(154819,'Jeremiah S. Chechik',1955,NULL),(154877,'Douglas Cheek',NULL,NULL),(154924,'Ted Cheesman',1902,1964),(154940,'John Cheever',1912,1982),(155009,'Anton Chekhov',1860,1904),(155011,'Michael Chekhov',1891,1955),(155069,'Semi Chellas',NULL,NULL),(155093,'Peter Chelsom',1956,NULL),(155136,'Marie Cheminal',NULL,NULL),(155163,'Po-Wen Chen',1953,NULL),(155179,'Chi-Hwa Chen',NULL,NULL),(155203,'Daoming Chen',1955,NULL),(155211,'Edison Chen',1980,NULL),(155212,'Edmund Chen',1961,NULL),(155280,'Kaige Chen',1952,NULL),(155295,'Kuo-Fu Chen',1958,NULL),(155328,'Ming-chang Chen',NULL,NULL),(155349,'Qi Gang Chen',NULL,NULL),(155363,'Sheng-Chang Chen',NULL,NULL),(155365,'Shiang-chyi Chen',1969,NULL),(155392,'Tiger Hu Chen',1975,NULL),(155449,'Yung-Yu Chen',NULL,NULL),(155477,'Jack Chenault',1888,1925),(155528,'Yarrow Cheney',1973,NULL),(155531,'Cheng Ah',1949,NULL),(155562,'Ekin Cheng',1967,NULL),(155593,'Lawrence Cheng',1954,NULL),(155598,'Jingle Ma',1957,NULL),(155599,'Mark Cheng',1964,NULL),(155607,'Pei-Pei Cheng',1946,NULL),(155624,'Siu-Keung Cheng',1952,NULL),(155642,'Siu-Tung Ching',1953,NULL),(155693,'Kristin Chenoweth',1968,NULL),(155715,'Sai-Cheong Wong',NULL,NULL),(155739,'Chris Cheramie',NULL,NULL),(155863,'Marco Cherqui',NULL,NULL),(155926,'Joel Chernoff',1950,2001),(155942,'Jeffrey Chernov',NULL,NULL),(155961,'Michael S. Chernuchin',1954,NULL),(155963,'Sonia Chernus',1909,1990),(155990,'Valentin Chernykh',1935,2012),(156038,'Roger Cherrill',1926,1983),(156039,'Virginia Cherrill',1908,1996),(156066,'Don Cherry',1936,1995),(156134,'Jack Chertok',1906,1995),(156207,'Lewis Chesler',NULL,NULL),(156283,'Chris Chesser',1948,2023),(156314,'Craig Chester',1965,NULL),(156320,'Hal E. Chester',1921,2012),(156345,'Vanessa Chester',1984,NULL),(156432,'Tung Cho \'Joe\' Cheung',NULL,NULL),(156457,'Wing Yin Cheung',1984,NULL),(156475,'George Cheung',1949,NULL),(156484,'Jacky Cheung',1961,NULL),(156496,'Ka-Fai Cheung',NULL,NULL),(156512,'Kuo-Hsiang Lin',NULL,NULL),(156519,'Chin-Chiang Ma',NULL,NULL),(156522,'Man Cheung',1967,NULL),(156547,'Radium Cheung',NULL,NULL),(156588,'Vince Cheung',NULL,NULL),(156617,'Anne Chevalier',1912,1977),(156709,'Randy Cheveldave',NULL,NULL),(156739,'Richard Chevolleau',1966,NULL),(156767,'Rémy Chevrin',1963,NULL),(156801,'Kim Chew',1921,2007),(156803,'Laureen Chew',NULL,NULL),(156816,'Richard Chew',1940,NULL),(156819,'Sukee Chew',NULL,NULL),(156858,'Shefali Shah',1972,NULL),(156871,'Chi-Ngai Lee',NULL,NULL),(156873,'Anna Chi',NULL,NULL),(156906,'Marco Mak',NULL,NULL),(156928,'Minoru Chiaki',1917,1999),(156939,'Bruce Chianese',NULL,NULL),(156940,'Dominic Chianese',1931,NULL),(156955,'David Chiang',1947,NULL),(156963,'Hsing-Lung Chiang',1928,NULL),(156982,'Sheng Chiang',1951,1991),(157067,'Walter Chiari',1924,1991),(157096,'Debra Chiate',NULL,NULL),(157098,'Laura Chiatti',1982,NULL),(157142,'Yoshinori Chiba',NULL,NULL),(157313,'Karin Chien',NULL,NULL),(157351,'Philippe Chiffre',1958,NULL),(157363,'Kôichi Chigira',1959,NULL),(157368,'Andrea Chignoli',NULL,NULL),(157408,'Shinya Inoue',NULL,NULL),(157410,'Caroline Chikezie',NULL,NULL),(157463,'Julia Child',1912,2004),(157536,'Helen Childress',1969,NULL),(157575,'Martin Childs',1954,NULL),(157607,'Linden Chiles',1933,2013),(157692,'Marco Chimenz',NULL,NULL),(157771,'May Chin',1965,NULL),(157785,'Siu-Ho Chin',1963,NULL),(157787,'Stephen Chin',NULL,NULL),(157796,'Tsai Chin',1933,NULL),(157805,'Elaine Jin',1954,NULL),(157905,'Kieu Chinh',1937,NULL),(157915,'Nick Chinlund',1961,NULL),(157966,'Kevin Chinoy',NULL,NULL),(158006,'Charles Chiodo',1952,NULL),(158008,'Edward Chiodo',NULL,NULL),(158014,'Stephen Chiodo',1954,NULL),(158026,'Carlo Chionetti',NULL,NULL),(158306,'David Chisum',1971,NULL),(158323,'Ugo Chiti',1943,NULL),(158360,'Alison Chitty',1948,NULL),(158393,'Fu-Sheng Chiu',NULL,NULL),(158543,'Sergey Chliyants',1961,NULL),(158582,'Tadeusz Chmielewski',1927,2016),(158626,'John Cho',1972,NULL),(158632,'Margaret Cho',1968,NULL),(158654,'Sung-woo Jo',NULL,NULL),(158671,'Debra Herman',NULL,NULL),(158737,'Edward Chodorov',1904,1988),(158738,'Jerome Chodorov',1911,2004),(158749,'Michele S. Chodos',NULL,NULL),(158763,'Kang-hee Choi',1977,NULL),(158802,'Edmund Choi',NULL,NULL),(158846,'Kenneth Choi',NULL,NULL),(158856,'Choi Min-sik',1962,NULL),(158857,'Ming-liang Tsai',1957,NULL),(158872,'Sung Fai Choi',NULL,NULL),(158883,'Young-hwan Choi',1971,NULL),(158885,'Yong-bae Choi',NULL,NULL),(158905,'Louis-Ronan Choisy',1977,NULL),(158966,'Lisa Cholodenko',1964,NULL),(158971,'Pierre Cholot',NULL,NULL),(158984,'Sylvain Chomet',1963,NULL),(158989,'Robert Chomiak',NULL,NULL),(159007,'Marvin J. Chomsky',1929,2022),(159008,'Noam Chomsky',1928,NULL),(159015,'Segundo de Chomón',1871,1929),(159039,'Felix Chong',1968,NULL),(159109,'Yoshiaki Kawajiri',1950,NULL),(159147,'Aditya Chopra',1971,NULL),(159167,'Uday Chopra',1973,NULL),(159258,'Cyril Cusack',1910,1993),(159262,'Pierre Chosson',1959,NULL),(159312,'Claude Choublier',1930,1984),(159318,'Laurent Chouchan',NULL,NULL),(159443,'Chris Chow',NULL,NULL),(159470,'Chow Keung',NULL,NULL),(159494,'Raymond Chow',1927,2018),(159507,'Stephen Chow',1962,NULL),(159513,'Valerie Chow',1970,NULL),(159698,'Peter Christelis',1959,NULL),(159725,'Benjamin Christensen',1879,1959),(159734,'Bo Christensen',1937,2020),(159770,'Elisabeth Christensen',1855,1923),(159776,'Erika Christensen',1982,NULL),(159789,'Hayden Christensen',1981,NULL),(159802,'Jesper Christensen',1948,NULL),(159835,'Lars Saabye Christensen',1953,NULL),(159867,'Nicolaj Kopernikus',1967,NULL),(159892,'Ronnie Christensen',NULL,NULL),(159900,'Shawn Christensen',NULL,NULL),(159922,'Tove Christensen',1973,NULL),(159976,'Elisa Galvé',1922,2000),(159980,'André Christian',NULL,1991),(160004,'Claudia Christian',NULL,NULL),(160026,'H.R. Christian',NULL,NULL),(160046,'Linda Christian',1923,2011),(160049,'Luci Christian',1973,NULL),(160085,'Shawn Christian',1965,NULL),(160108,'Christian-Jaque',1904,1994),(160126,'Rich Christiano',1956,NULL),(160129,'Rudolph Christians',1869,1921),(160157,'Christian E. Christiansen',1972,NULL),(160272,'Kostas Christides',NULL,NULL),(160287,'Audrey Christie',1912,1989),(160391,'Pierre Christin',1938,NULL),(160452,'Eric Christmas',1916,2000),(160550,'Dennis Christopher',1950,NULL),(160602,'Mark Christopher',1963,NULL),(160680,'Ann Christy',1905,1987),(160752,'Henryk Chroscicki',1919,2000),(160823,'Emily Chu',1960,NULL),(160831,'Hou Pou Chu',NULL,NULL),(160840,'Jon M. Chu',1979,NULL),(160843,'Ke Chu',NULL,NULL),(160846,'Kong Chu',NULL,NULL),(160865,'Norman Chu',1955,NULL),(160883,'T\'ien-wen Chu',1956,NULL),(160892,'Vanesia Chu',NULL,NULL),(160930,'Susan Chuang',NULL,NULL),(160935,'Daniel Chuba',NULL,NULL),(160941,'Caldecot Chubb',1950,NULL),(160942,'Ken Chubb',NULL,NULL),(160945,'Paul Chubb',1949,2002),(160952,'Lyndon Chubbuck',1954,2021),(160985,'Simon Chuckster',NULL,NULL),(161003,'Dick Chudnow',1944,NULL),(161020,'Catherine Hun',NULL,NULL),(161045,'Bo-Chu Chui',NULL,NULL),(161046,'Delphine Chuillot',NULL,NULL),(161055,'Grigoriy Chukhray',1921,2001),(161132,'Claudie Chung Jan',NULL,NULL),(161133,'Jeon Do-yeon',1973,NULL),(161152,'Oxide Chun Pang',1965,NULL),(161193,'Cherie Chung',1960,NULL),(161198,'Christy Chung',1970,NULL),(161200,'Chung-hoon Chung',1970,NULL),(161204,'Danny Chung',NULL,NULL),(161205,'David Chung',NULL,NULL),(161230,'Hu-pin Chung',NULL,NULL),(161232,'Ida F.O. Chung',NULL,NULL),(161285,'Peter Chung',1961,NULL),(161330,'Cindy Chupack',NULL,NULL),(161436,'Jack Churchill',NULL,NULL),(161443,'Joan Churchill',NULL,NULL),(161451,'Marguerite Churchill',1910,2000),(161497,'Lisa Zeno Churgin',1955,NULL),(161515,'Iris Churn',NULL,NULL),(161530,'Barry Chusid',NULL,NULL),(161615,'Vera Chytilová',1929,2014),(161621,'Jaime Chávarri',1943,NULL),(161636,'Chuy Chávez',NULL,NULL),(161712,'Pierre-Laurent Chénieux',NULL,NULL),(161717,'Patrice Chéreau',1944,2013),(161796,'Fabio Cianchetti',1952,NULL),(161834,'Derek Cianfrance',1974,NULL),(161889,'Francesca Ciardi',NULL,NULL),(161891,'Mark Ciardi',NULL,NULL),(162072,'Marina Cicogna',1934,NULL),(162085,'Roberto Cicutto',1948,NULL),(162117,'Grzegorz Ciechowski',1957,2001),(162198,'Ali Cifteci',1963,NULL),(162274,'Santo Cilauro',1962,NULL),(162283,'Diane Cilento',1932,2011),(162317,'Francesca Cima',NULL,NULL),(162320,'Tomás Cimadevilla',1968,NULL),(162326,'Tano Cimarosa',1922,2008),(162361,'Leonardo Cimino',1917,2012),(162391,'Maria Cina',1969,NULL),(162493,'Roberto Cinquini',1924,1965),(162535,'Caco Ciocler',1971,NULL),(162541,'Charles Cioffi',1935,NULL),(162543,'Louis Cioffi',NULL,NULL),(162557,'Augusta Ciolli',1901,1967),(162668,'Daniele Ciprì',1962,NULL),(162752,'Patrick Cirillo',NULL,NULL),(162873,'Ismaila Cissé',NULL,NULL),(162878,'Souleymane Cissé',1940,NULL),(162888,'Raymond Cistheri',NULL,NULL),(162911,'Roberto Citran',1955,NULL),(162948,'Franco Citti',1935,2016),(162952,'Sergio Citti',1933,2005),(162989,'Stefan Ciupek',1976,NULL),(162992,'Richard Ciupka',1950,NULL),(163049,'Max CiVon',NULL,NULL),(163095,'Francis Leroi',1942,2002),(163136,'David Claessen',1959,NULL),(163229,'René Clair',1898,1981),(163257,'Ina Claire',1893,1985),(163375,'Michael Clancy',NULL,NULL),(163493,'Diane Clare',1938,2013),(163572,'Peter Claridge',NULL,NULL),(163616,'Adam Clark',1970,NULL),(163617,'Al Clark',1902,1971),(163618,'Al Clark',NULL,NULL),(163632,'Alfred Clark',1873,1950),(163659,'Anthony Clark',1964,NULL),(163706,'Bob Clark',1939,2007),(163725,'Brett Baxter Clark',NULL,NULL),(163736,'Bruce D. Clark',1945,NULL),(163748,'Candy Clark',1947,NULL),(163770,'Chris Clark',NULL,NULL),(163771,'Chris Clark',1946,NULL),(163797,'Curtis Clark',1946,NULL),(163923,'Estelle Clark',1898,1982),(163939,'Fred Clark',1914,1968),(163955,'Gary Clark',1962,NULL),(163984,'Graham Clarke',NULL,NULL),(163988,'Clark Gregg',1962,NULL),(163990,'Greydon Clark',1943,NULL),(164037,'James Kenelm Clarke',1941,2020),(164044,'James B. Clark',1908,2000),(164053,'Jane Clark',NULL,NULL),(164063,'Jason Clark',NULL,NULL),(164083,'Jim Clark',1931,2016),(164181,'Kyle A. Clark',NULL,NULL),(164187,'Larry Clark',1943,NULL),(164203,'Les Clark',1907,1979),(164276,'Matthew Clark',NULL,NULL),(164290,'Michael B. Clark',NULL,NULL),(164339,'Oliver Clark',1939,NULL),(164444,'Ron Clark',1933,NULL),(164540,'Susan Clark',1943,NULL),(164626,'Steve Clark-Hall',NULL,NULL),(164639,'Alan Clarke',1935,1990),(164680,'Caitlin Clarke',1952,2004),(164682,'Cam Clarke',1957,NULL),(164689,'Cecil Clarke',1916,1985),(164690,'Charles G. Clarke',1899,1983),(164721,'Dan Clarke',NULL,NULL),(164737,'Donald Henderson Clarke',1887,1958),(164764,'Gage Clarke',1900,1964),(164809,'Jason Clarke',1969,NULL),(164851,'Keith R. Clarke',NULL,NULL),(164883,'Mae Clarke',1910,1992),(164891,'Margi Clarke',1954,NULL),(164898,'Mary Ruth Clarke',1959,NULL),(164918,'Melinda Clarke',1969,NULL),(164929,'Noel Clarke',1975,NULL),(164975,'Robin Clarke',1942,NULL),(165049,'Warren Clarke',1947,2014),(165078,'Cindy Clarkson',NULL,NULL),(165096,'Lana Clarkson',1962,2003),(165101,'Patricia Clarkson',1959,NULL),(165134,'Charles Clary',1873,1931),(165197,'Robert Clatworthy',1911,1992),(165223,'Charles Claudel',NULL,NULL),(165227,'Paul Claudel',1868,1955),(165263,'Paul Claudon',1919,2002),(165290,'Richard Claus',1950,NULL),(165326,'Murmel Clausen',1973,NULL),(165361,'Jakob Claussen',1961,NULL),(165401,'Garance Clavel',1973,NULL),(165412,'James Clavell',1921,1994),(165419,'Juan Carlos Claver',1964,NULL),(165470,'Elliott J. Clawson',1883,1942),(165472,'Tim Clawson',1960,NULL),(165507,'Charlotte Huggins',NULL,NULL),(165531,'Jennifer Clay',NULL,NULL),(165534,'Jim Clay',1948,NULL),(165540,'Lee Clay',NULL,NULL),(165551,'Nicholas Clay',1946,2000),(165573,'Shannon Clay',NULL,NULL),(165602,'Doug Claybourne',1947,NULL),(165616,'Phil Claydon',1976,NULL),(165679,'Curtiss Clayton',NULL,NULL),(165749,'Merry Clayton',1948,NULL),(165823,'Beverly Cleary',1916,2021),(165881,'Emma Cleasby',NULL,NULL),(165906,'Thomas McKelvey Cleaver',NULL,NULL),(165918,'Hervey M. Cleckley',1903,1984),(165961,'Terence A. Clegg',1937,NULL),(165987,'John Cleland',1710,1789),(165995,'Jericca Cleland',NULL,NULL),(166000,'Jimmy Clem',1932,2017),(166018,'Brian Clemens',1931,2015),(166045,'Paul Clemens',1958,NULL),(166058,'William Clemens',1905,1980),(166061,'Christian Clemenson',1958,NULL),(166069,'Charles Clement',1914,1990),(166074,'Dick Clement',1937,NULL),(166194,'Anne Clements',1976,NULL),(166221,'Edward Clements',NULL,NULL),(166224,'Flo Clements',1892,NULL),(166256,'Ron Clements',1953,NULL),(166307,'Larry Clemmons',1906,1988),(166359,'David Clennon',1943,NULL),(166380,'François Clerc',NULL,NULL),(166405,'Gianfranco Clerici',1941,NULL),(166436,'Antoine de Clermont-Tonnerre',1941,NULL),(166439,'Martine de Clermont-Tonnerre',NULL,NULL),(166446,'Denys Clerval',1934,2016),(166452,'Corinne Cléry',1950,NULL),(166498,'Rick Cleveland',NULL,NULL),(166551,'Eric Cleworth',1920,1999),(166559,'Clara Cleymans',1989,NULL),(166588,'H. Cooper Cliffe',1862,1939),(166622,'Frank Clifford',1898,1976),(166625,'Graeme Clifford',1942,NULL),(166641,'Jeffrey Clifford',NULL,NULL),(166647,'John Clifford',1918,2010),(166651,'Kathleen Clifford',1887,1962),(166767,'Patrick J. Clifton',NULL,NULL),(166787,'Sanford R. Climan',NULL,NULL),(166836,'Edward F. Cline',1891,1961),(166972,'Colin Clive',1900,1937),(167028,'Kristen Cloke',1968,NULL),(167032,'Gustav von Seyffertitz',1863,1943),(167041,'Rosemary Clooney',1928,2002),(167056,'Arthur Cloquet',1954,NULL),(167168,'April Clough',1953,NULL),(167195,'Robert Clouse',1928,1997),(167197,'Charlie Clouser',1963,NULL),(167202,'J. Storer Clouston',1870,1944),(167241,'Henri-Georges Clouzot',1907,1977),(167243,'Véra Clouzot',1913,1960),(167280,'Daniel Clowes',1961,NULL),(167340,'Martin Clunes',1961,NULL),(167342,'Michelle Clunie',1969,NULL),(167346,'Geneviève Cluny',1928,NULL),(167388,'François Cluzet',1955,NULL),(167407,'June Clyde',1909,1987),(167496,'René Clément',1913,1996),(167501,'Suzanne Clément',1969,NULL),(167613,'Anne V. Coates',1925,2018),(167641,'John Coates',1927,2012),(167649,'Kim Coates',1958,NULL),(167708,'David Coatsworth',NULL,NULL),(167712,'Coba',NULL,NULL),(167767,'Humphrey Cobb',1899,1944),(167795,'Melissa Cobb',NULL,NULL),(167850,'Bill Cobbs',1934,NULL),(167917,'James Coblentz',NULL,NULL),(167938,'Eva Cobo',1967,NULL),(167966,'Juan Cobos',NULL,NULL),(167986,'Arthur Coburn',NULL,NULL),(168035,'Chuck Connors',1921,1992),(168064,'Marco Cocci',1974,NULL),(168215,'Steve Cochran',1917,1965),(168262,'Rory Cochrane',1972,NULL),(168285,'Andrew Cockburn',1947,NULL),(168298,'Leslie Cockburn',1952,NULL),(168324,'Gary Cockrell',1932,2018),(168356,'Francis M. Cockrell',1906,1987),(168379,'Jay Cocks',1944,NULL),(168413,'Jean Cocteau',1889,1963),(168430,'John Coda',NULL,NULL),(168437,'Juan Carlos Codazzi',NULL,NULL),(168439,'Matt Codd',NULL,NULL),(168549,'David Codron',NULL,NULL),(168641,'Fred Coe',1914,1979),(168642,'George Coe',1929,2015),(168723,'Paulo Coelho',1947,NULL),(168746,'Vicente Coello',1915,2006),(168753,'Chris Coen',NULL,NULL),(168759,'Franklin Coen',1912,1990),(168829,'Lenore J. Coffee',1896,1984),(168849,'Charlie Coffey',NULL,NULL),(168877,'Joseph F. Coffey',1915,2000),(168892,'Scott Coffey',1964,NULL),(168939,'Tristram Coffin',1909,1990),(169172,'Adrianna A.J. Cohen',NULL,NULL),(169173,'David Aaron Cohen',NULL,NULL),(169180,'Alan R. Cohen',1964,NULL),(169213,'Andy Cohen',NULL,NULL),(169218,'Ari Cohen',NULL,NULL),(169231,'Barney Cohen',NULL,NULL),(169256,'Bobby Cohen',NULL,NULL),(169260,'Bruce Cohen',NULL,NULL),(169299,'Danny Cohen',NULL,NULL),(169300,'Daniel Cohen',NULL,NULL),(169302,'Danny Cohen',NULL,NULL),(169308,'David Cohen',NULL,NULL),(169325,'David Steven Cohen',NULL,NULL),(169326,'David X. Cohen',1966,NULL),(169344,'Edward Colman',1905,1995),(169355,'Emanuel Cohen',1892,1977),(169420,'Harry Cohen',1954,NULL),(169432,'Herman Cohen',1925,2002),(169438,'Howard R. Cohen',1942,1999),(169480,'Jeff Cohen',1974,NULL),(169505,'Joel Cohen',NULL,NULL),(169509,'Jon Cohen',NULL,NULL),(169515,'Jonathan Cohen',NULL,NULL),(169522,'Joseph Newton Cohen',NULL,NULL),(169540,'Larry Cohen',1936,2019),(169548,'Lawrence D. Cohen',NULL,NULL),(169549,'Lawrence J. Cohen',1935,2017),(169555,'Lester Cohen',NULL,NULL),(169556,'Lester Cohen',1901,1963),(169565,'Lynn Cohen',1933,2020),(169595,'Martin G. Cohn',1893,1953),(169605,'Maury M. Cohen',1913,1979),(169733,'Rudy Cohen',NULL,NULL),(169806,'Taika Waititi',1975,NULL),(169871,'Émile Cohl',1857,1938),(169879,'Alfred A. Cohn',1880,1951),(169883,'Art Cohn',1909,1958),(169896,'Elie Cohn',NULL,NULL),(169902,'Harry Cohn',1891,1958),(169906,'Jack Cohn',1889,1956),(169931,'Michael Cohn',NULL,NULL),(169934,'Mindy Cohn',1966,NULL),(169936,'Nik Cohn',1946,NULL),(169982,'Lucy Cohu',1968,NULL),(169989,'Vanessa Coifman',NULL,NULL),(170030,'Jorge Coira',1971,NULL),(170039,'Stephen Coit',1920,2005),(170043,'Isabel Coixet',1960,NULL),(170068,'Peter Coke',1913,2008),(170082,'Paul Coker Jr.',1929,2022),(170130,'Hugo Colace',1953,NULL),(170160,'Gene Colan',1926,2011),(170168,'Giorgio Colangeli',1949,NULL),(170186,'Enrico Colantoni',1963,NULL),(170306,'Stephen Colbert',1964,NULL),(170354,'Fabrizio De Angelis',1940,NULL),(170462,'Brandon Cole',NULL,NULL),(170550,'Gary Cole',1956,NULL),(170578,'Jacqulin Cole',1947,2003),(170660,'Lester Cole',1904,1985),(170719,'Nigel Cole',1959,NULL),(170788,'Stan Cole',NULL,NULL),(170809,'Ted Cole',1971,NULL),(170818,'Tim Cole',NULL,NULL),(170892,'Francesco Colella',1974,NULL),(170901,'Adam Coleman Howard',NULL,NULL),(170923,'Ann Coleman',NULL,NULL),(170937,'Ben Colman',1907,1988),(170952,'Brady Coleman',NULL,NULL),(170976,'Charlotte Coleman',1968,2001),(170990,'Cy Coleman',1929,2004),(171046,'Graeme Coleman',NULL,NULL),(171052,'Holliston Coleman',1992,NULL),(171059,'Jack Coleman',1958,NULL),(171123,'Lisa Coleman',1960,NULL),(171165,'Monica Coleman',NULL,NULL),(171187,'Renée Coleman',1962,NULL),(171253,'Warren Coleman',NULL,NULL),(171326,'Michael Coles',1934,2005),(171348,'Robert F. Colesberry',1946,2004),(171372,'Colette',1873,1954),(171428,'Eileen Colgan',1934,2014),(171435,'Michael Colgan',NULL,NULL),(171462,'Chantal Colibert',NULL,NULL),(171473,'Paul Colichman',NULL,NULL),(171474,'Lewis Colick',1951,NULL),(171493,'Dominique Colin',NULL,NULL),(171499,'Grégoire Colin',1975,NULL),(171528,'Pierre Colin-Thibert',NULL,NULL),(171550,'Bernadine Colish',NULL,NULL),(171562,'Giuseppe Colizzi',1925,1978),(171583,'Ivonne Coll',1947,NULL),(171608,'Alessandro Colla',NULL,NULL),(171619,'Richard A. Colla',1936,NULL),(171630,'Adrià Collado',1972,NULL),(171651,'Bill Collage',NULL,NULL),(171662,'Luis Collar',NULL,NULL),(171674,'Kenneth Collard',NULL,NULL),(171718,'Michael Colleary',NULL,NULL),(171722,'John Collee',NULL,NULL),(171754,'Christopher Collet',1968,NULL),(171771,'Paul Collet',NULL,NULL),(171780,'Sara Colleton',NULL,NULL),(171811,'Yann Collette',1956,NULL),(171824,'Don Pedro Colley',1938,2017),(171829,'Kenneth Colley',1937,NULL),(171873,'William Collier Jr.',1902,1987),(171887,'Constance Collier',1878,1955),(171903,'Eugene Collier',NULL,NULL),(171924,'John Collier',1901,1980),(171983,'Joe Colligan',1956,NULL),(172004,'Françoise Collin',1937,NULL),(172018,'Marc Collin',NULL,NULL),(172048,'Patricia Collinge',1892,1974),(172130,'Andy Collins',1961,NULL),(172141,'Anthony Collins',1893,1963),(172215,'Chris Collins',1962,2014),(172246,'Dale Collins',1897,1956),(172256,'David Collins',NULL,NULL),(172287,'Eddie Collins',1883,1940),(172318,'G. Pat Collins',1895,1959),(172333,'Greg Collins',1952,NULL),(172335,'Guy Collins',NULL,NULL),(172472,'Lauren Collins',NULL,NULL),(172491,'Lindsey Collins',NULL,NULL),(172523,'Max Allan Collins',1948,NULL),(172557,'Misha Collins',1974,NULL),(172598,'Paul Collins',1937,NULL),(172604,'Pauline Collins',1940,NULL),(172614,'RJ Collins',NULL,NULL),(172628,'Richard Collins',1914,2013),(172636,'Rickey D\'Shon Collins',1984,NULL),(172646,'Roberta Collins',1944,2008),(172660,'Russell Collins',1897,1965),(172714,'Todd Collins',NULL,NULL),(172772,'Peter Collinson',1936,1980),(172795,'Jack T. Collis',1923,1998),(172812,'Wilson Collison',1893,1941),(172818,'Peter Lyons Collister',1956,NULL),(172826,'Luigi Cozzi',1947,NULL),(172830,'Carlo Collodi',1826,1890),(172850,'Stéphane Collonge',1970,NULL),(172875,'June Collyer',1904,1968),(172877,'Laurie Collyer',1967,NULL),(172903,'Ronald Colman',1891,1958),(172989,'Laetitia Colombani',1976,NULL),(173003,'Vincent Colombe',NULL,NULL),(173080,'Harry Colomby',1929,2021),(173101,'Fernando Colomo',1946,NULL),(173207,'Carl Colpaert',1963,NULL),(173212,'Louisa Colpeyn',1918,2015),(173303,'John Colton',1887,1946),(173354,'Coluche',1944,1986),(173384,'Eleanor Columbus',1989,NULL),(173416,'Pinto Colvig',1892,1967),(173433,'Eric Colvin',NULL,NULL),(173476,'Thom Colwell',1959,NULL),(173541,'Etienne Comar',NULL,NULL),(173549,'Jaime Comas Gil',1936,2021),(173644,'Frederick Combs',1935,1992),(173679,'Betty Comden',1917,2006),(173724,'Cristina Comencini',1956,NULL),(173735,'Anjanette Comer',1939,NULL),(173806,'Lance Comfort',1908,1966),(173827,'Dorothy Comingore',1913,1971),(173916,'Jean-Louis Comolli',1941,2022),(173953,'Nina Companeez',1937,2015),(173993,'Betty Compson',1897,1974),(173997,'Maurice Compte',NULL,NULL),(174021,'Scout Taylor-Compton',1989,NULL),(174060,'Matt Compton',NULL,NULL),(174082,'Jean-Henri Compère',1960,NULL),(174302,'Marie-Sohna Condé',NULL,NULL),(174322,'Robert Conder',1952,NULL),(174374,'Bill Condon',1955,NULL),(174403,'Kerry Condon',1983,NULL),(174410,'Richard Condon',1915,1996),(174673,'Heather Conkie',NULL,NULL),(174682,'Chester Conklin',1886,1971),(174723,'Chris Conkling',1949,NULL),(174749,'Chris Conlee',1967,NULL),(174789,'Lige Conley',1897,1937),(174806,'Wayne Conley',NULL,NULL),(174807,'Roy Conli',1971,NULL),(174823,'Richard Conlin',1905,1989),(174840,'Gerry Conlon',1954,2014),(174903,'Nicole Conn',1959,NULL),(174909,'Shelley Conn',1976,NULL),(174934,'Shane Connaughton',1947,NULL),(175028,'Richard Connell',1893,1949),(175036,'Thelma Connell',1912,1976),(175068,'Erwin Connelly',1878,1931),(175080,'Joe Connelly',1917,2003),(175091,'Marc Connelly',1890,1980),(175093,'Michael Connelly',1956,NULL),(175194,'Barry Conners',1883,1933),(175239,'Frank Conniff',1956,NULL),(175262,'Billy Connolly',1942,NULL),(175300,'Jon Connolly',1941,2021),(175305,'Kevin Connolly',1974,NULL),(175333,'Myles Connolly',1897,1964),(175352,'Robert Connolly',1967,NULL),(175369,'Walter Connolly',1887,1940),(175423,'John T. Connor',NULL,NULL),(175427,'Kenneth Connor',1918,1993),(175473,'William M. Connor',NULL,NULL),(175485,'Carol Connors',1952,NULL),(175538,'Richard Connors',NULL,NULL),(175560,'Terence Conoley',1919,2016),(175633,'David Conrad',1967,NULL),(175662,'Jack Conrad',NULL,NULL),(175676,'Joseph Conrad',1857,1924),(175704,'Mikel Conrad',1919,1982),(175722,'Scott Conrad',NULL,NULL),(175726,'Steve Conrad',1968,NULL),(175730,'David Worth',1940,NULL),(175768,'Christine Conradt',NULL,NULL),(175775,'Kerry Conran',1964,NULL),(175788,'Hans Conried',1917,1982),(175804,'David Conroy',1937,NULL),(175814,'Frances Conroy',1953,NULL),(175820,'Jack Conroy',1944,2019),(175826,'Jarlath Conroy',1944,NULL),(175829,'John Conroy',1969,NULL),(175834,'Kevin Conroy',1955,2022),(175877,'Will Conroy',NULL,NULL),(175908,'John W. Considine Jr.',1898,1961),(175916,'Paddy Considine',1973,NULL),(175924,'Alberto Consiglio',1902,1973),(175931,'Anne Consigny',1963,NULL),(175985,'Nathan Constance',1979,NULL),(176008,'Jacques Constant',1907,1981),(176035,'George Constantin',1933,1994),(176036,'Jean Constantin',1923,1997),(176039,'Michel Constantin',1924,2003),(176061,'Eddie Constantine',1913,1993),(176073,'Michael Constantine',1927,2021),(176109,'Eugenia Costantini',NULL,NULL),(176197,'Umberto Contarello',1958,NULL),(176323,'Carlos Conti',NULL,NULL),(176420,'Sandro Continenza',1920,1996),(176448,'James A. Contner',1947,NULL),(176497,'Ernie Contreras',NULL,NULL),(176604,'Fabio Conversi',NULL,NULL),(176689,'Gerry Conway',1952,NULL),(176699,'Jack Conway',1887,1952),(176707,'Jeremy Conway',NULL,NULL),(176713,'John W. Conway',1888,1928),(176759,'Paul Conway',NULL,NULL),(176773,'Russ Conway',1913,2009),(176839,'Ry Cooder',1947,NULL),(176851,'Robert Coogan',1924,1978),(176861,'Keith Coogan',1970,NULL),(176869,'Steve Coogan',1965,NULL),(176882,'A.J. Cook',1978,NULL),(176905,'Barry Cook',1958,NULL),(176971,'Clyde Cook',1891,1984),(176981,'Dane Cook',1972,NULL),(177015,'Donovan Cook',NULL,NULL),(177018,'Douglas Cook',1959,2015),(177020,'Drake Cook',NULL,NULL),(177034,'Fielder Cook',1923,2003),(177146,'Kenneth Cook',1929,1987),(177157,'Laurie Cook',NULL,NULL),(177170,'Lorna Cook',NULL,NULL),(177228,'Peter Cook',1937,1995),(177234,'Philip J. Cook',NULL,NULL),(177304,'T.S. Cook',1947,2013),(177336,'Whitfield Cook',1909,2003),(177348,'Xavier Cook',NULL,NULL),(177396,'Christian Cooke',1987,NULL),(177438,'Jennifer Cooke',1964,NULL),(177466,'Malcolm Cooke',1929,2008),(177504,'Tricia Cooke',1965,NULL),(177532,'Jon Cooksey',NULL,NULL),(177621,'Sean Cooley',NULL,NULL),(177637,'Greg Coolidge',1972,NULL),(177639,'Jennifer Coolidge',1961,NULL),(177707,'Melanie Coombs',1969,NULL),(177769,'Michael Cooney',1967,NULL),(177813,'Denys N. Coop',1920,1981),(177836,'Adam Cooper',NULL,NULL),(177861,'Arthur E. Cooper',NULL,NULL),(177875,'Barry Michael Cooper',NULL,NULL),(177896,'Bradley Cooper',1975,NULL),(177933,'Chris Cooper',1951,NULL),(177934,'Sy Gomberg',1918,2001),(177942,'Christopher Cooper',NULL,NULL),(178066,'Gladys Cooper',1888,1971),(178114,'Jackie Cooper',1922,2011),(178126,'James Fenimore Cooper',1789,1851),(178144,'Jeremy Cooper',1980,NULL),(178260,'Merian C. Cooper',1893,1973),(178270,'Miriam Cooper',1891,1976),(178276,'Natalie Cooper',1937,2004),(178305,'Peter Cooper',NULL,NULL),(178338,'Robert C. Cooper',1968,NULL),(178341,'Bob Cooper',NULL,NULL),(178373,'Saul Cooper',NULL,NULL),(178376,'Scott Cooper',1970,NULL),(178505,'Greg Coote',1942,2014),(178509,'Robert Coote',1909,1982),(178589,'Brad Copeland',NULL,NULL),(178604,'Greg Copeland',NULL,NULL),(178690,'Juan Carlos Copes',1931,2021),(178716,'Aaron Copland',1900,1990),(178731,'Geoffrey Copleston',1921,1998),(178769,'Rick Copp',1964,NULL),(178785,'Alec Coppel',1907,1972),(178838,'Jennifer Copping',NULL,NULL),(178840,'Martin Copping',NULL,NULL),(178874,'Carmine Coppola',1910,1991),(178875,'Chris Coppola',NULL,NULL),(178886,'Gia Coppola',1987,NULL),(178910,'Roman Coppola',1965,NULL),(178979,'John Coquillon',1930,1987),(178992,'Antonio Cora',NULL,NULL),(178997,'Frank Coraci',1966,NULL),(179023,'Coralie Trinh Thi',1976,NULL),(179069,'José Corbacho',1965,NULL),(179126,'Blake Corbet',NULL,NULL),(179132,'Bill Corbett',1960,NULL),(179151,'Gretchen Corbett',1945,NULL),(179163,'James J. Corbett',1866,1933),(179173,'John Corbett',1961,NULL),(179203,'Toby Corbett',NULL,NULL),(179221,'Anton Corbijn',1955,NULL),(179224,'Barry Corbin',1940,NULL),(179258,'Tristan Corbière',1845,1875),(179278,'Bruno Corbucci',1931,1996),(179281,'Sergio Corbucci',1926,1990),(179289,'Ellen Corby',1911,1999),(179408,'Mara Corday',1930,NULL),(179411,'Paula Corday',1920,1992),(179451,'Cathleen Cordell',1915,1997),(179479,'James Corden',1978,NULL),(179534,'Mariana Cordero',NULL,NULL),(179542,'Sebastián Cordero',1972,NULL),(179549,'Richard Cordery',1950,NULL),(179680,'Allan Corduner',1950,NULL),(179690,'Raymond Cordy',1898,1956),(179697,'Ericson Core',NULL,NULL),(179749,'Michael Corenblith',1951,NULL),(179776,'Dorian Corey',1937,1993),(179819,'Wendell Corey',1914,1968),(179825,'John Corfield',1893,1953),(179830,'Caris Corfman',1955,2007),(179851,'Laurence Coriat',NULL,NULL),(179858,'John Corigliano',1938,NULL),(179880,'Nick Corirossi',1987,NULL),(179896,'John Cork',NULL,NULL),(179924,'Rafael Corkidi',1930,2013),(179960,'Annie Corley',NULL,NULL),(179966,'Darian Corley',NULL,NULL),(179968,'David L. Corley',NULL,NULL),(179971,'Jerry Corley',NULL,NULL),(179993,'Bartlett Cormack',1898,1942),(179994,'Robert Cormack',1909,1952),(180011,'Avery Corman',1935,NULL),(180022,'Julie Corman',1942,NULL),(180075,'Claudio Cormio',NULL,NULL),(180077,'Eugène Cormon',1811,1903),(180168,'Gerard Cornelisse',NULL,NULL),(180182,'Curt Cornelius',NULL,NULL),(180257,'John Cornell',1941,2021),(180366,'Stuart Cornfeld',1952,2020),(180390,'Jonathan Cornick',NULL,NULL),(180399,'Edouard Corniglion-Molinier',NULL,NULL),(180404,'Clovis Cornillac',1967,NULL),(180411,'Abbie Cornish',1982,NULL),(180428,'Joe Cornish',1968,NULL),(180452,'Robert Cornthwaite',1917,2006),(180454,'Aurora Cornu',1931,2021),(180489,'Charlotte Cornwell',1949,2021),(180506,'Sarah Cornwell',NULL,NULL),(180508,'Stephen Cornwell',NULL,NULL),(180530,'Pepón Coromina',1946,1987),(180580,'Jose Coronado',1957,NULL),(180639,'Andrea Corr',1974,NULL),(180664,'Orlando Corradi',1940,2018),(180735,'Bo Corre',NULL,NULL),(180837,'Arieta Corrêa',1977,NULL),(180891,'Charles Correll',1944,2004),(180900,'Mady Correll',1907,1981),(180902,'Richard Correll',1948,NULL),(180912,'Michael Corrente',1959,NULL),(180985,'Kieran Corrigan',NULL,NULL),(180987,'Lloyd Corrigan',1900,1969),(181006,'Sara Corrigan',NULL,NULL),(181019,'John William Corrington',1932,1988),(181020,'Joyce Hooper Corrington',1936,NULL),(181032,'Michel Corriveau',NULL,NULL),(181107,'Tilde Corsi',NULL,NULL),(181117,'Catherine Corsini',1956,NULL),(181122,'Silvana Corsini',1941,NULL),(181149,'John W. Corso',1929,2019),(181185,'Ben Court',NULL,NULL),(181202,'Robert W. Cort',NULL,NULL),(181300,'Rita Cortese',1949,NULL),(181305,'Valentina Cortese',1923,2019),(181420,'Antonio Cesare Corti',NULL,NULL),(181425,'Jesse Corti',1955,NULL),(181497,'Julio Cortázar',1914,1984),(181579,'Rodrigo Cortés',1973,NULL),(181650,'Hank Corwin',NULL,NULL),(181658,'Norman Corwin',1910,2011),(181731,'Christopher Cosby',NULL,NULL),(181740,'Dac Coscarelli',NULL,NULL),(181741,'Don Coscarelli',1954,NULL),(181742,'Kate Coscarelli',1927,1999),(181753,'Marcello Coscia',NULL,NULL),(181767,'Steve Cosens',NULL,NULL),(181836,'John Cosgrove',NULL,NULL),(181867,'Renée Cosima',1922,1981),(181902,'George P. Cosmatos',1941,2005),(181903,'Panos Cosmatos',NULL,NULL),(181920,'James Cosmo',1948,NULL),(181924,'Jean Cosmos',1923,2014),(181928,'Francis Cosne',1916,1984),(182026,'Pancho Cossío',1894,1970),(182211,'Juan Costa',NULL,NULL),(182250,'Mary Costa',1930,NULL),(182275,'Pedro Costa',1941,2016),(182345,'David Costabile',1967,NULL),(182363,'Tom Costain',1971,NULL),(182449,'Julie Costanzo',NULL,NULL),(182454,'Maurizio Costanzo',1938,2023),(182459,'Saverio Costanzo',1975,NULL),(182472,'Celia D. Costas',NULL,NULL),(182536,'Diosa Costello',1913,2013),(182537,'Dolores Costello',1903,1979),(182557,'Helene Costello',1906,1957),(182579,'Lou Costello',1906,1959),(182588,'Matt Costello',NULL,NULL),(182652,'Fernando Coster',NULL,NULL),(182666,'Nikolaj Coster-Waldau',1970,NULL),(182688,'George Costigan',1947,NULL),(182689,'James Costigan',1926,2007),(182694,'Andrew M. Costikyan',1922,2012),(182724,'Oscar L. Costo',1953,NULL),(182839,'Marion Cotillard',1975,NULL),(182873,'Manny Coto',NULL,2023),(182884,'Anne-Marie Cotret',1930,NULL),(182891,'Ivan Cotroneo',1968,NULL),(182904,'Elena Cotta',1931,NULL),(182922,'Camille Cotte',NULL,NULL),(182945,'Victor de Cottens',1862,1956),(182946,'Fanny Cottençon',1957,NULL),(182995,'Ralph Cotterill',1932,NULL),(183016,'Jean Cottin',NULL,NULL),(183140,'Pierre Cottereau',NULL,NULL),(183170,'Mickey Cottrell',NULL,NULL),(183172,'Pierre Cottrell',1945,2015),(183183,'William Cottrell',1906,1995),(183419,'Delphine Coulin',NULL,NULL),(183421,'Muriel Coulin',NULL,NULL),(183428,'Jérôme Coullet',NULL,NULL),(183459,'George Coulouris',1903,1989),(183464,'Bernie Coulson',1965,NULL),(183469,'Christian Coulson',1978,NULL),(183533,'Michael Coulter',1952,NULL),(183573,'Richard Council',1947,NULL),(183580,'Judy Counihan',NULL,NULL),(183609,'Countryman',1946,2016),(183629,'Jayne County',1947,NULL),(183668,'Julien Courbey',1976,NULL),(183671,'Nicole Courcel',1931,2016),(183675,'Richard Courcet',NULL,NULL),(183686,'Emmanuel Courcol',NULL,NULL),(183750,'Alyson Court',1973,NULL),(183764,'Hazel Court',1926,2008),(183822,'Tom Courtenay',1937,NULL),(183823,'William Courtenay',1875,1933),(183857,'Jerome Courtland',1926,2012),(183921,'James Jude Courtney',1957,NULL),(183926,'Jeni Courtney',NULL,NULL),(183947,'Peter Courtney',1867,1896),(184058,'Jean Cousineau',1937,2013),(184085,'Christian Cousins',1983,NULL),(184100,'John Cousins',1907,NULL),(184102,'Joseph Cousins',1983,NULL),(184170,'Raoul Coutard',1924,2016),(184241,'Mia Couto',1955,NULL),(184284,'Bernard Couture',NULL,NULL),(184308,'Andrés Couturier',1977,NULL),(184392,'Martin Kove',1947,NULL),(184445,'Allen Covert',1964,NULL),(184597,'Lester Cowan',1906,1990),(184605,'Michael Cowan',1965,NULL),(184617,'Richard Cowan',NULL,NULL),(184620,'Rob Cowan',NULL,NULL),(184748,'David Cowgill',1960,NULL),(184770,'Robin Cowie',NULL,NULL),(184840,'Bruce Cowling',1919,1986),(184893,'Alan Cox',1970,NULL),(184898,'Alfred Cox',1925,2005),(184947,'C. Jay Cox',1962,NULL),(184963,'Chris Cox',NULL,NULL),(184965,'Christina Cox',1971,NULL),(185055,'Jack E. Cox',1896,1960),(185084,'Jim Cox',NULL,NULL),(185088,'Joel Cox',1942,NULL),(185107,'Julie Cox',1973,NULL),(185163,'Michael Graham Cox',1938,1995),(185168,'Mitchell Cox',NULL,NULL),(185210,'Richard Cox',1948,NULL),(185215,'Rick Cox',NULL,NULL),(185239,'Sam Cox',NULL,NULL),(185271,'Tom Cox',NULL,NULL),(185272,'Tony Cox',1958,NULL),(185274,'Veanne Cox',1963,NULL),(185280,'Vivian Cox',1915,2009),(185309,'Lucinda Coxon',1962,NULL),(185354,'Brendan Coyle',1963,NULL),(185404,'Richard Coyle',1972,NULL),(185417,'Bill Coyne',1967,2011),(185428,'James Coyne',NULL,NULL),(185431,'Jonny Coyne',NULL,NULL),(185475,'Cylk Cozart',1957,NULL),(185568,'Buster Crabbe',1908,1983),(185583,'James Crabe',1931,1989),(185644,'Kaelynn Craddick',NULL,NULL),(185677,'Ian Crafford',1944,NULL),(185819,'Daniel Craig',1968,NULL),(185848,'Eli Craig',1972,NULL),(185867,'H.A.L. Craig',1921,1978),(185934,'Laurie Craig',NULL,NULL),(185954,'Michael Craig',1929,NULL),(185976,'Peter Craig',NULL,NULL),(186030,'Thomas Craig',1962,NULL),(186045,'Anthony Dexter',1913,2001),(186048,'Wendy Craig',1934,NULL),(186056,'Geoff Craigen',NULL,NULL),(186091,'William Crain',1949,NULL),(186118,'Mildred Cram',1889,1985),(186141,'David Cramer',1953,NULL),(186151,'Grant Cramer',1961,NULL),(186160,'Joey Cramer',1973,NULL),(186172,'Marc Cramer',1918,1988),(186180,'Michael Cramer',1930,2000),(186225,'Barbara Crampton',1958,NULL),(186274,'Robert O. Crandall',1898,1981),(186276,'Roland Crandall',1892,1972),(186315,'Brandon Crane',1976,NULL),(186355,'Harry Crane',1914,1999),(186411,'Peter Crane',1948,NULL),(186452,'Heather Craney',1971,NULL),(186469,'Kenneth Cranham',1944,NULL),(186477,'David Crank',NULL,NULL),(186505,'Bryan Cranston',1956,NULL),(186508,'Helga Cranston',1921,2013),(186525,'Stefan Cantz',1956,NULL),(186600,'Frank Craven',1875,1945),(186602,'Garth Craven',1939,2023),(186655,'Pierce Cravens',1986,NULL),(186677,'Lorella Cravotta',1958,NULL),(186683,'Robert Crawford Jr.',1944,NULL),(186686,'Bob Crawford Sr.',NULL,NULL),(186700,'Anne Crawford',1920,1956),(186717,'Caprice Crawford',1971,NULL),(186726,'Christina Crawford',1939,NULL),(186728,'Clayne Crawford',1978,NULL),(186733,'Curtis Crawford',NULL,NULL),(186761,'Ellen Crawford',1951,NULL),(186769,'Francis Marion Crawford',1854,1909),(186832,'Joanna Crawford',1942,NULL),(186903,'Michael Crawford',1942,NULL),(186943,'Robert Edward Crawford',NULL,NULL),(186949,'Ron Crawford',1936,NULL),(186988,'Wayne Crawford',1947,2016),(187010,'Helen Crawley',NULL,NULL),(187018,'Lol Crawley',1974,NULL),(187044,'Jacob Craycroft',NULL,NULL),(187050,'Judy Craymer',NULL,NULL),(187091,'Patrick Creadon',1967,NULL),(187224,'Charlie Creed-Miles',1972,NULL),(187252,'Leanna Creel',1970,NULL),(187256,'James Ashmore Creelman',1894,1941),(187410,'Michelle Crenshaw',NULL,NULL),(187470,'Lorenzo Crespi',1971,NULL),(187546,'Xavier Crespo',NULL,NULL),(187582,'James Cresson',1934,2004),(187593,'John Cresswell',NULL,NULL),(187618,'Carlo Cresto-Dina',NULL,NULL),(187693,'Florence Crewe-Jones',1876,1940),(187719,'Terry Crews',1968,NULL),(187724,'Wendy Crewson',1956,NULL),(187740,'Emanuele Crialese',1965,NULL),(187754,'Bernard Cribbins',1928,2022),(187769,'Charles Crichton',1910,1999),(187793,'Paula Crickard',NULL,NULL),(187912,'Harry Cripps',NULL,NULL),(187981,'Donald Crisp',1882,1974),(187998,'Quentin Crisp',1908,1999),(188053,'Franco Cristaldi',1924,1992),(188084,'Carla Cristi',NULL,NULL),(188096,'Dhia Cristiani',1921,1977),(188165,'Michael Cristofer',1945,NULL),(188243,'Jennifer Crittenden',1969,NULL),(188262,'Carlo Crivelli',1953,NULL),(188274,'Thomas J. Crizer',1888,1963),(188349,'Carter Crocker',NULL,NULL),(188357,'Harry Crocker',1893,1958),(188396,'David Crockett',NULL,NULL),(188419,'Lucy Herndon Crockett',NULL,NULL),(188450,'Al Croft',1926,2013),(188462,'David Croft',1922,2011),(188500,'Barbara Fixx',NULL,NULL),(188521,'Emma-Kate Croghan',1972,NULL),(188576,'Henri Crolla',1920,1960),(188580,'Ken Cromar',NULL,NULL),(188592,'Jonathan Crombie',1966,2015),(188669,'John Cromwell',1886,1979),(188673,'Richard Cromwell',1910,1960),(188687,'Gail Cronauer',NULL,NULL),(188722,'Brandon Cronenberg',1980,NULL),(188729,'Jeff Cronenweth',1962,NULL),(188733,'Karen Croner',NULL,NULL),(188743,'A.J. Cronin',1896,1981),(188832,'Jay Cronley',1943,2017),(188888,'Nathan Crooker',1980,NULL),(188949,'Alison Crosbie',NULL,NULL),(188986,'Gary Crosby',1933,1995),(189034,'Percy Crosby',1891,1964),(189076,'Alan Crosland',1894,1936),(189096,'Gérard Crosnier',NULL,NULL),(189105,'Alison Cross',NULL,NULL),(189117,'Beverley Cross',1931,1998),(189138,'Daniel Cross',NULL,NULL),(189144,'David Cross',1964,NULL),(189200,'Joseph Cross',1986,NULL),(189232,'Neil Cross',NULL,NULL),(189243,'Phil Cross',NULL,NULL),(189248,'Pippa Cross',1956,NULL),(189272,'Shauna Cross',NULL,NULL),(189278,'T.J. Cross',NULL,NULL),(189301,'Denis Crossan',NULL,NULL),(189496,'Russel Crouse',1893,1966),(189519,'Mary Crow Dog',1954,2013),(189561,'Graham Crowden',1922,2010),(189596,'Mark Crowdy',NULL,NULL),(189610,'Christopher Crowe',1948,NULL),(189684,'Josephine Crowell',1859,1932),(189713,'Carrie Crowley',1964,NULL),(189758,'Mart Crowley',1935,2020),(189769,'Nathan Crowley',1966,NULL),(189777,'Patrick Crowley',NULL,NULL),(189791,'Suzan Crowley',NULL,NULL),(189798,'Alfred W. Crown',1910,1984),(189887,'Marie-Josée Croze',1970,NULL),(189979,'Jim Cruickshank',NULL,NULL),(190030,'Wayne Cruseturner',1937,2015),(190065,'Oliver Crumes Jr.',1972,NULL),(190072,'Robin Crumley',NULL,NULL),(190085,'Barry Crump',1935,1996),(190206,'Abigail Cruttenden',1968,NULL),(190208,'Greg Cruttwell',1960,NULL),(190388,'Luísa Cruz',1962,NULL),(190389,'Mae Czarina Cruz',NULL,NULL),(190427,'Pablo Cruz',NULL,NULL),(190441,'Raymond Cruz',1961,NULL),(190607,'Pierre Crépô',NULL,NULL),(190703,'Igor Chernevich',1966,NULL),(190744,'Marton Csokas',1966,NULL),(190771,'Gyula Csortos',1883,1945),(190780,'Gabor Csupo',1952,NULL),(190800,'Sándor Csányi',1975,NULL),(190834,'Luis Cuadrado',1934,1980),(190859,'Alfonso Cuarón',1961,NULL),(190860,'Carlos Cuarón',1966,NULL),(190861,'Jonás Cuarón',1981,NULL),(190930,'Allan Cubitt',NULL,NULL),(190988,'Nicolas Cuche',NULL,NULL),(191044,'Michael Cudlitz',1964,NULL),(191109,'José Luis Cuerda',1947,2020),(191138,'Gerald Cuesta',NULL,NULL),(191147,'Michael Cuesta',1963,NULL),(191178,'Antonio Cuevas',1948,2016),(191275,'Chaoming Cui',NULL,NULL),(191358,'Rod Culbertson',1950,NULL),(191392,'Jean-Marc Culiersi',NULL,NULL),(191412,'Rory Culkin',1989,NULL),(191502,'Mark Cullen',NULL,NULL),(191523,'Robb Cullen',1970,NULL),(191547,'Johnston McCulley',1883,1958),(191580,'Thomas Cullinan',1919,1995),(191633,'John Cullum',1930,NULL),(191636,'Kaitlin Cullum',1986,NULL),(191685,'Robert Culp',1930,2010),(191712,'R.J. Cutler',1962,NULL),(191717,'Jill Culton',NULL,NULL),(191745,'Roland Culver',1900,1984),(191818,'Dorothy Cumming',1894,1983),(191874,'Dave Cummings',NULL,NULL),(191896,'Howard Cummings',NULL,NULL),(191897,'Hugh Cummings',1891,1953),(191899,'Irving Cummings',1888,1959),(191901,'Jack Cummings',1905,1989),(191906,'Jim Cummings',1952,NULL),(191944,'Quinn Cummings',1967,NULL),(191950,'Robert Cummings',1910,1990),(191956,'Ruth Cummings',1894,1984),(192033,'Peggy Cummins',1925,2017),(192066,'Cunayou',NULL,NULL),(192090,'Rusty Cundieff',1960,NULL),(192128,'Carlos Cunha',NULL,NULL),(192227,'Alex Cunningham',NULL,NULL),(192253,'Carolynne Cunningham',NULL,NULL),(192325,'Jack Cunningham',1882,1941),(192356,'John W. Cunningham',1915,2002),(192377,'Liam Cunningham',1961,NULL),(192384,'Lowell Cunningham',1959,NULL),(192409,'Noel Cunningham',NULL,NULL),(192416,'Patrick Cunningham',NULL,NULL),(192446,'Sean S. Cunningham',1941,NULL),(192478,'Kat Coiro',1979,NULL),(192490,'Alain Cuny',1908,1994),(192505,'Kaley Cuoco',1985,NULL),(192514,'Douglas J. Cuomo',1958,NULL),(192587,'Verónica Cura',NULL,NULL),(192608,'Mike Curb',1944,NULL),(192612,'Bill Curbishley',1942,NULL),(192687,'Joe Curiale',NULL,NULL),(192770,'Chris Curling',NULL,NULL),(192779,'Tim Curnen',NULL,NULL),(192845,'John Curran',1960,NULL),(192889,'Tony Curran',1969,NULL),(192933,'Andrew Currie',NULL,NULL),(192942,'Brian Hayes Currie',1961,NULL),(192947,'Cherie Currie',1959,NULL),(192958,'Finlay Currie',1878,1968),(192984,'Paul Currie',NULL,NULL),(193009,'Barbara Turner',1936,2016),(193015,'Richard C. Currier',1892,1984),(193061,'Christopher Curry',1948,NULL),(193066,'Don \'D.C.\' Curry',1961,NULL),(193135,'Stephen Curry',1976,NULL),(193175,'Angelo Curti',1959,NULL),(193224,'Valerie Curtin',1941,NULL),(193232,'Alan Curtis',1909,1953),(193268,'Bonnie Curtis',NULL,NULL),(193274,'Bruce Curtis',NULL,NULL),(193295,'Cliff Curtis',1968,NULL),(193303,'Dan Curtis',1927,2006),(193325,'Douglas Curtis',1947,NULL),(193344,'Grant Curtis',NULL,NULL),(193370,'Jamie Curtis',NULL,NULL),(193377,'Jeff Curtis',NULL,NULL),(193387,'Joey Curtis',1973,NULL),(193394,'John A. Curtis',NULL,NULL),(193411,'Ken Curtis',1916,1991),(193421,'Liane Curtis',1965,NULL),(193454,'Michael Curtis',NULL,NULL),(193466,'Nathaniel Curtis',1909,1983),(193474,'Patrick Curtis',1939,2022),(193485,'Richard Curtis',1956,NULL),(193501,'Sarah Curtis',NULL,NULL),(193508,'Simon Curtis',1960,NULL),(193524,'Thomas Curtis',1991,NULL),(193533,'Bernard Schwartz',1917,2003),(193534,'Tracy Curtis',NULL,NULL),(193549,'Yvette Curtis',NULL,NULL),(193554,'Vondie Curtis-Hall',1950,NULL),(193562,'Edward Curtiss',1898,1970),(193567,'Mark Curtiss',1951,2004),(193568,'Ray Curtiss',1896,1965),(193579,'Tuncel Kurtiz',1936,2013),(193599,'Richard Curson Smith',NULL,NULL),(193615,'Stephen Curwick',1960,NULL),(193617,'James Oliver Curwood',1878,1927),(193631,'Aria Noelle Curzon',1987,NULL),(193661,'Sinéad Cusack',1948,NULL),(193681,'Carlton Cuse',1959,NULL),(193693,'Catherine Chisholm Cushing',1874,1952),(193696,'Jack Cushing',NULL,NULL),(193720,'Karen Cushman',1941,NULL),(193738,'Henry Ian Cusick',NULL,NULL),(193846,'Elisha Cuthbert',1982,NULL),(193850,'Johnny Cuthbert',NULL,NULL),(193854,'Neil Cuthbert',1951,NULL),(193868,'Iain Cuthbertson',1930,2009),(193876,'Elizabeth Cuthrell',NULL,NULL),(193883,'Mimmo Cuticchio',NULL,NULL),(194018,'Jack Cutting',1908,1988),(194036,'Patricia Cutts',1926,1974),(194125,'Svetlana Cvetko',NULL,NULL),(194143,'Zoran Cvijanovic',1958,NULL),(194152,'Zrinka Cvitesic',1979,NULL),(194234,'Charles Cyphers',1939,NULL),(194274,'Catherine Cyran',1962,2022),(194356,'Stefan Czapsky',1950,NULL),(194365,'Jim Czarnecki',NULL,NULL),(194446,'Peter Czernin',NULL,NULL),(194474,'Rudolf Czettel',1953,NULL),(194572,'Javier Cámara',1967,NULL),(194595,'Celiana Cárdenas',NULL,NULL),(194672,'Yveline Céry',NULL,NULL),(194788,'Michel Côté',1950,2023),(194866,'Jill D\'Agnenica',NULL,NULL),(194900,'Nicholas D\'Agosto',1980,NULL),(194945,'Jehanne d\'Alcy',1865,1956),(194950,'Paul D\'Ales',NULL,NULL),(195022,'Jan D\'Alquen',NULL,NULL),(195049,'Tony D\'Amario',1960,2005),(195083,'Dario D\'Ambrosi',1958,NULL),(195091,'Enzo D\'Ambrosio',1931,NULL),(195098,'Marco D\'Ambrosio',NULL,NULL),(195136,'Kirk D\'Amico',NULL,NULL),(195148,'Masolino D\'Amico',1939,NULL),(195224,'John D\'Andrea',NULL,NULL),(195259,'Carr D\'Angelo',NULL,NULL),(195358,'Philip D\'Antoni',1929,2018),(195383,'John D\'Aquino',1958,NULL),(195396,'Eric d\'Arbeloff',NULL,NULL),(195422,'Alexander D\'Arcy',1908,1996),(195438,'Jake D\'Arcy',1945,2015),(195439,'James D\'Arcy',1975,NULL),(195460,'Roy D\'Arcy',1894,1969),(195476,'Chris D\'Arienzo',1972,NULL),(195496,'Harry d\'Abbadie d\'Arrast',1897,1968),(195549,'Joe D\'Augustine',NULL,NULL),(195617,'Moreno De Bartoli',1975,NULL),(195618,'Jean d\'Eaubonne',1903,1971),(195621,'Paola D\'Egidio',NULL,NULL),(195705,'Elise D\'Haene',NULL,NULL),(195803,'Jacques D\'Ovidio',NULL,NULL),(195838,'Beverly D\'Onofrio',1950,NULL),(195883,'Jean d\'Ormesson',1925,2017),(195888,'Fifi D\'Orsay',1904,1983),(195950,'Leon D\'Usseau',1885,1963),(195956,'Jean d\'Yd',1880,1964),(196119,'Don DaGradi',1911,1991),(196247,'Howard Da Silva',1909,1986),(196362,'Jean-Loup Dabadie',1938,2020),(196375,'Parvin Dabas',1974,NULL),(196496,'Yurii Dachev',NULL,NULL),(196513,'Natasha Dack',NULL,NULL),(196536,'Morton DaCosta',1914,1989),(196598,'Stephen Dade',1909,1975),(196654,'Daniel Dae Kim',NULL,NULL),(196762,'Jensen Daggett',1969,NULL),(196814,'Phil Dagort',1957,NULL),(196816,'Josette Day',1914,1978),(196820,'Lil Dagover',1887,1980),(196840,'Guy Dagul',NULL,NULL),(196860,'Olivier Dahan',1967,NULL),(196928,'Henrik Dahl',1964,NULL),(196930,'Jens Dahl',1961,NULL),(196932,'Julie Margaret Hogben',NULL,NULL),(196946,'Liccy Dahl',1938,NULL),(196992,'Eva Dahlbeck',1920,2008),(197067,'Jeff Dahlgren',NULL,NULL),(197164,'Alexandra Dahlström',1984,NULL),(197275,'Michel Daigle',1945,2015),(197340,'Laurent Dailland',1956,NULL),(197350,'Blair Daily',NULL,NULL),(197354,'Elizabeth Daily',1961,NULL),(197379,'Masaaki Daimon',NULL,NULL),(197624,'Dominique Dalcan',NULL,NULL),(197636,'Stephen Daldry',1960,NULL),(197647,'James Badge Dale',1978,NULL),(197703,'J. Miles Dale',NULL,NULL),(197715,'Jim Dale',1935,NULL),(197767,'Phil Dale',NULL,NULL),(197855,'John Francis Daley',1985,NULL),(197883,'Robert Daley',NULL,2016),(197940,'Helen Dallimore',1971,NULL),(197950,'Marcel Dalio',1899,1983),(197982,'John Dall',1920,1971),(198072,'Joe Dallesandro',1948,NULL),(198202,'Ian Dalrymple',1903,1989),(198241,'Audrey Dalton',1934,NULL),(198398,'Jean-Jacques Grünenwald',1911,1982),(198408,'Andy Daly',NULL,NULL),(198434,'Fiona Daly',NULL,NULL),(198459,'John Daly',1955,NULL),(198467,'Jules Daly',NULL,NULL),(198472,'Lance Daly',NULL,NULL),(198507,'Sean Daly',NULL,NULL),(198557,'Salvador Dalí',1904,1989),(198696,'Terry Dame',NULL,NULL),(198755,'Michael Damian',1962,NULL),(198757,'Oliver Damian',1969,NULL),(198765,'Damiano Damiani',1922,2013),(198790,'Gerard Damiano',1928,2008),(198804,'Nick Damici',NULL,NULL),(198887,'Friedrich Dammann',1901,1969),(198896,'Claudia Dammert',1949,2017),(198912,'Lars Damoiseaux',NULL,NULL),(198925,'Gabriel Damon',1976,NULL),(198938,'Lamar Damon',NULL,NULL),(198941,'Mark Damon',1933,NULL),(198967,'Gerald Damovsky',1956,NULL),(198983,'Christian Damsgaard',1968,NULL),(198991,'Mel Damski',1946,NULL),(199001,'Marin Damyanov',NULL,NULL),(199006,'Linh-Dan Pham',1974,NULL),(199029,'Reiko Dan',1935,2003),(199049,'Bill Dana',1924,2017),(199079,'P. Jennifer Dana',NULL,NULL),(199114,'Stephanie Danan',NULL,NULL),(199118,'Malcolm Danare',1962,NULL),(199131,'Betsy Danbury',NULL,NULL),(199186,'Liz Danciger',NULL,NULL),(199188,'Georges Dancigers',1908,1993),(199190,'Óscar Dancigers',1902,1976),(199215,'Hugh Dancy',1975,NULL),(199242,'Renato Dandi',1931,NULL),(199268,'Dorothy Dandridge',1922,1965),(199304,'Clemence Dane',1888,1965),(199312,'Eric Dane',1972,NULL),(199325,'Lawrence Dane',1937,2022),(199381,'Georgiy Daneliya',1930,2019),(199495,'Maxwell McCabe-Lokos',1978,NULL),(199590,'Brittany Daniel',1976,NULL),(199611,'Don Daniel',NULL,NULL),(199618,'Emma Danieli',1936,1998),(199663,'Jennifer Daniel',1936,2017),(199664,'Jessica Daniel',NULL,NULL),(199679,'Lee Daniel',1962,NULL),(199687,'Marek Daniel',1971,NULL),(199722,'Rod Daniel',1942,2016),(199730,'Sarah Daniel',NULL,NULL),(199733,'Sean Daniel',1951,NULL),(199774,'Isa Danieli',1937,NULL),(199787,'Henry Daniell',1894,1963),(199841,'Bebe Daniels',1901,1971),(199842,'Ben Daniels',1964,NULL),(200005,'Lee Daniels',1959,NULL),(200012,'Anthony La Penna',1918,2011),(200057,'Phil Daniels',1958,NULL),(200068,'Richard Daniels',1864,1939),(200122,'William Daniels',1927,NULL),(200125,'William H. Daniels',1901,1970),(200164,'Shell Danielson',1962,NULL),(200166,'Wade W. Danielson',NULL,NULL),(200246,'Ignat Daniltsev',1962,NULL),(200313,'Rick Danko',1943,1999),(200351,'Patty Dann',1953,NULL),(200366,'Frederic Dannay',1905,1982),(200380,'Brian Dannelly',NULL,NULL),(200402,'Matt Danner',1981,NULL),(200452,'Paul Dano',1984,NULL),(200455,'Royal Dano',1922,1994),(200473,'Marcello Danon',1920,1997),(200474,'Moshe Danon',1960,NULL),(200476,'Raymond Danon',1930,2018),(200488,'Cesare Danova',1926,1992),(200546,'Henrik Danstrup',NULL,NULL),(200585,'Carl Dante',1950,NULL),(200600,'Nicholas Dante',1941,1991),(200601,'Peter Dante',1968,NULL),(200648,'Sylvie Pialat',1960,NULL),(200671,'Richard Christian Danus',NULL,NULL),(200702,'Dany Boon',1966,NULL),(200758,'Allen Danziger',1942,NULL),(200788,'Samuel Danési',NULL,NULL),(200812,'Gérard Daoudal',NULL,NULL),(200930,'Ismail Darbar',1964,NULL),(200950,'François Darbon',1915,1998),(200956,'John Darbonne',1971,NULL),(200981,'Kim Darby',1947,NULL),(201005,'Denise Darcel',1925,2011),(201009,'Janine Darcey',1917,1993),(201061,'Kieran Darcy-Smith',1965,NULL),(201094,'Jean-Pierre Dardenne',1951,NULL),(201095,'Luc Dardenne',1954,NULL),(201151,'Florence Darel',1968,NULL),(201183,'Georges Dargaud',1911,1990),(201187,'Attila Dargay',1927,2009),(201193,'Mireille Dargent',1951,NULL),(201288,'Jenny Dark',NULL,NULL),(201304,'Gregory Poirier',1961,NULL),(201319,'Éva Darlan',1948,NULL),(201375,'Joan Darling',1935,NULL),(201405,'Scott Darling',1898,1951),(201437,'Linda Darlow',NULL,NULL),(201462,'Gérard Darmon',1948,NULL),(201509,'Eric Darnell',1961,NULL),(201543,'Christoph Darnstädt',1960,NULL),(201626,'James Darren',1936,NULL),(201638,'Danielle Darrieux',1917,2017),(201669,'Jean-Pierre Darroussin',1953,NULL),(201695,'Oliver Darrow',1958,NULL),(201727,'Iris Rainer',1944,NULL),(201764,'Monique Dartonne',NULL,NULL),(201787,'Teddy Darvas',1925,2009),(201802,'Mohammad Reza Darvishi',1955,NULL),(201819,'Lucy Darwin',NULL,NULL),(201833,'René Dary',1905,1974),(201857,'Ricardo Darín',1957,NULL),(201903,'Nandita Das',1969,NULL),(201942,'Peter Dasent',NULL,NULL),(201969,'Julie Dash',1952,NULL),(202073,'Marcel Dassault',1892,1986),(202088,'Jules Dassin',1911,2008),(202102,'Ali Reza Zarrindast',NULL,NULL),(202119,'Parzaan Dastur',1991,NULL),(202120,'Jean Dasté',1904,1994),(202131,'Alex Datcher',1962,NULL),(202203,'Brigitta Dau',NULL,NULL),(202209,'Ewald Daub',1889,1946),(202221,'Diana Daubeney',1937,2001),(202262,'Jordi Dauder',1938,2011),(202367,'Anatole Dauman',1925,1998),(202425,'Ken Daurio',1971,NULL),(202505,'Andrée Davanture',1933,2014),(202555,'André Daven',1900,1981),(202603,'Jack Davenport',1973,NULL),(202616,'Keith Davenport',1966,NULL),(202638,'Nigel Davenport',1928,2013),(202681,'Delmer Daves',1904,1977),(202697,'Annette Davey',NULL,NULL),(202704,'Bruce Davey',NULL,NULL),(202753,'Shaun Davey',1948,NULL),(202795,'Wayne David Parker',NULL,NULL),(202849,'Clifford David',1928,2017),(202870,'Eleanor David',1955,NULL),(202966,'Keith David',1956,NULL),(202970,'Larry David',1947,NULL),(202982,'Lorena David',NULL,NULL),(202999,'Mark David',NULL,NULL),(203008,'Michael David',1930,1999),(203049,'Ricardo M. David',NULL,NULL),(203062,'Saul David',1921,1996),(203118,'Neil Davidge',NULL,NULL),(203183,'Lisa Davidowitz',NULL,NULL),(203246,'Boaz Davidson',1943,NULL),(203254,'Bruria Davidson',NULL,NULL),(203275,'Clive Davidson',NULL,NULL),(203296,'Diana Davidson',1929,2011),(203417,'Lionel Davidson',1922,2009),(203448,'Osha Gray Davidson',NULL,NULL),(203452,'Paul Davidson',1867,1927),(203457,'Pete Davidson',1993,NULL),(203475,'Robyn Davidson',NULL,NULL),(203508,'Tommy Davidson',1963,NULL),(203563,'Alan Davies',1966,NULL),(203577,'Andrew Davies',1936,NULL),(203688,'Eileen Davies',NULL,NULL),(203710,'Freeman A. Davies',1945,NULL),(203762,'Iva Davies',1955,NULL),(203768,'Jackson Davies',1950,NULL),(203801,'Karl Davies',1982,NULL),(203836,'Marion Davies',1897,1961),(203850,'Matthew Davies',NULL,NULL),(203903,'Peter Maxwell Davies',1934,2016),(203905,'Phil Davies',NULL,NULL),(203958,'Rudi Davies',1965,NULL),(203959,'Rupert Davies',1916,1976),(203993,'Terence Davies',1945,NULL),(204000,'Tod Davies',1955,NULL),(204016,'Valentine Davies',1905,1961),(204030,'William Davies',NULL,NULL),(204037,'Zoe Davis',1872,1961),(204171,'Angela Davis',1944,NULL),(204208,'Barrow Davis-Tolot',NULL,NULL),(204216,'Battle Davis',1952,1994),(204313,'Carlos Davis',1948,NULL),(204353,'Chip Davis',1947,NULL),(204456,'Deborah Dean Davis',NULL,NULL),(204470,'Derna Wylde',NULL,NULL),(204471,'Desmond Davis',1926,2021),(204485,'Don Davis',1957,NULL),(204487,'Don Davis',NULL,NULL),(204552,'Edwin Davis',1928,2008),(204567,'Elliot Davis',1948,NULL),(204583,'Essie Davis',1970,NULL),(204608,'Frank Davis',1897,1984),(204628,'Garth Davis',1974,NULL),(204639,'George Davis',1889,1965),(204651,'Gerry Davis',1930,1991),(204678,'Hadley Davis',NULL,NULL),(204706,'Hope Davis',1964,NULL),(204771,'Jason Davis',1984,2020),(204791,'Jf Davis',NULL,NULL),(204824,'Jim Davis',1909,1981),(204825,'Jim Davis',1945,NULL),(204843,'Joan Davis',1912,1961),(204862,'John Davis',1954,NULL),(204863,'John Davis',NULL,NULL),(204884,'John A. Davis',1961,NULL),(204901,'Jonathan Davis',1971,NULL),(204946,'Kaye Davis',NULL,NULL),(204987,'Kira Davis',NULL,NULL),(205063,'Lucy Davis',1973,NULL),(205065,'Luther Davis',1916,2008),(205070,'Madelyn Davis',1921,2011),(205127,'Matthew Davis',1978,NULL),(205157,'Michael Davis',1961,NULL),(205179,'Michael Rees Davis',NULL,NULL),(205192,'Mildred Davis',1901,1969),(205241,'Oliver Davis',NULL,NULL),(205244,'Owen Davis',1874,1956),(205287,'Peter S. Davis',1941,2021),(205289,'Phil Davis',1953,NULL),(205295,'Phyllis Davis',1940,2013),(205307,'Randolph Davis',NULL,NULL),(205327,'Richard Davis',NULL,NULL),(205373,'Rochelle Davis',1980,NULL),(205377,'Roderick Davis',NULL,NULL),(205380,'Roger Davis',1939,NULL),(205423,'Sammi Davis',1964,NULL),(205510,'Stephen Davis',NULL,NULL),(205541,'Tammy Davis',NULL,NULL),(205542,'Tamra Davis',1962,NULL),(205545,'Taryn Davis',1985,NULL),(205569,'Tom Davis',1952,2012),(205626,'Viola Davis',1965,NULL),(205635,'Wal Davis',NULL,NULL),(205657,'William B. Davis',1938,NULL),(205713,'Doug Davison',NULL,NULL),(205727,'Jon Davison',1949,NULL),(205772,'Ken Davitian',1953,NULL),(205793,'Ninetto Davoli',1948,NULL),(205802,'Joone',NULL,NULL),(205811,'Baki Davrak',1971,NULL),(205815,'Dominique Davray',1919,1998),(205828,'Mohammad Davudi',NULL,NULL),(205863,'Anatoli Davydov',NULL,NULL),(205890,'Marjorie Daw',1902,1979),(205972,'Johnny Dawkins',NULL,NULL),(205986,'J. Searle Dawley',1877,1949),(206109,'deco dawson',1978,NULL),(206154,'Jeremy Dawson',NULL,NULL),(206175,'Kim Dawson',NULL,NULL),(206225,'Paul Dawson',NULL,NULL),(206238,'Ralph Dawson',1897,1962),(206247,'Robert Dawson',NULL,NULL),(206257,'Rosario Dawson',1979,NULL),(206290,'Vicky Dawson',1961,NULL),(206317,'Micheline Dax',1924,2014),(206341,'Annette Day',1947,NULL),(206359,'Charlie Day',1976,NULL),(206365,'Cora Lee Day',1914,1996),(206376,'Dennis Day',1916,1988),(206409,'Gerry Day',1922,2013),(206478,'Laraine Day',1920,2007),(206496,'Marceline Day',1908,2000),(206510,'Matt Day',1971,NULL),(206528,'Morris Day',1957,NULL),(206535,'Olivier Day',NULL,NULL),(206556,'Richard Day',NULL,NULL),(206560,'Robert Day',1922,2017),(206635,'Anne Day-Jones',NULL,NULL),(206753,'Gregory Dayton',NULL,NULL),(206760,'Jonathan Dayton',1957,NULL),(207117,'Maria De Aragon',1942,NULL),(207185,'Lex de Azevedo',1943,NULL),(207203,'Jean De Baer',NULL,NULL),(207218,'Isaach De Bankolé',1957,NULL),(207219,'Brenda de Banzie',1909,1981),(207305,'Jeanne-Marie Leprince de Beaumont',1711,1780),(207401,'Piero De Bernardi',1926,2010),(207413,'Austin De Besche',NULL,NULL),(207498,'Nicole de Boer',1970,NULL),(207532,'John de Borman',1954,NULL),(207551,'Carlo De Boutiny',1965,2017),(207559,'Jimmy de Brabant',NULL,NULL),(207637,'Nigel De Brulier',1877,1948),(207691,'Iain De Caestecker',1987,NULL),(207772,'Lucio De Caro',1922,2008),(207891,'Gonzalo de Castro',1963,NULL),(207968,'Alba De Cespedes',1911,1997),(208005,'Clare Knight',NULL,NULL),(208051,'Pierre De Clercq',NULL,NULL),(208086,'Ennio De Concini',1923,2008),(208111,'Frederick De Cordova',1910,2001),(208150,'Fabrice de Costil',NULL,NULL),(208341,'Bianca De Felippes',NULL,NULL),(208342,'Frank De Felitta',1921,2016),(208350,'Sandro De Feo',1905,1968),(208370,'Eduardo De Filippo',1900,1984),(208375,'Peppino De Filippo',1903,1980),(208381,'Barbara De Fina',NULL,NULL),(208426,'Cécile de France',1975,NULL),(208495,'Deborah Belford de Furia',NULL,NULL),(208605,'Fred De Gorter',NULL,NULL),(208614,'Jackson De Govia',1941,NULL),(208637,'Ricardo de Gracia',1972,NULL),(208674,'Julio De Grazia',1929,1989),(208701,'Andrew de Groot',1957,NULL),(208735,'Philippe De Grossouvre',NULL,NULL),(208775,'Michael De Guzman',NULL,NULL),(208850,'Consuelo De Haviland',NULL,NULL),(208854,'Rolf de Heer',1951,NULL),(208878,'Guy-Manuel De Homem-Christo',1974,NULL),(208880,'Tom De Hoog',NULL,NULL),(208923,'Steve De Jarnatt',NULL,NULL),(208924,'Bill de Jarnette',1926,1996),(209030,'Marc de Jonge',1949,1996),(209113,'Richard de Klerk',1984,NULL),(209136,'Alix de Konopka',NULL,NULL),(209154,'Eric De Kuyper',1942,NULL),(209189,'Raven De La Croix',1947,NULL),(209249,'Joel de la Fuente',1969,NULL),(209250,'Leonardo De La Fuente',NULL,NULL),(209281,'Beatriz de la Gándara',NULL,NULL),(209289,'Paz de la Huerta',1984,NULL),(209303,'Luis de la Madrid',NULL,NULL),(209326,'Kevin de la Noy',NULL,NULL),(209364,'Kiko de la Rica',1965,NULL),(209397,'Secun de la Rosa',1969,NULL),(209404,'Rodrigo de la Serna',1976,NULL),(209413,'Dale De La Torre',NULL,NULL),(209428,'Frances de la Tour',1944,NULL),(209435,'Daniel de la Vega',1972,NULL),(209566,'Aurelio De Laurentiis',1949,NULL),(209569,'Dino De Laurentiis',1919,2010),(209577,'Luigi De Laurentiis',1917,1992),(209581,'Raffaella De Laurentiis',1954,NULL),(209589,'Ray DeLaurentis',1958,NULL),(209649,'Christopher De Leon',1956,NULL),(209684,'Roberto De Leonardis',1913,1984),(209773,'Donald De Line',NULL,NULL),(209801,'Patricia Llaca',1975,NULL),(209815,'Anthony De Longis',1950,NULL),(209865,'Nancy De Los Santos-Reza',NULL,NULL),(209870,'Kristine de Loup',NULL,NULL),(209918,'Rudy De Luca',NULL,NULL),(209988,'Jean de Letraz',1897,1954),(210089,'Marlow De Mardt',NULL,NULL),(210116,'Derrick De Marney',1906,1978),(210151,'Pino De Martino',NULL,NULL),(210218,'Maria de Medeiros',1965,NULL),(210221,'Nieve de Medina',1962,NULL),(210290,'Paul De Meo',1953,2018),(210320,'Kirk DeMicco',1969,NULL),(210322,'Tulio Demicheli',1914,1992),(210323,'Adriano De Micheli',1934,NULL),(210587,'Le Vicomte de Noailles',1891,1981),(210599,'Antonio De Noriega',NULL,NULL),(210767,'Luis de Pablo',1930,2021),(210811,'Jean Rollin',1938,2010),(210816,'Alessio de Paola',NULL,NULL),(210867,'Suzanne De Passe',1946,NULL),(210941,'Miranda de Pencier',1968,NULL),(211063,'Thomas De Quincey',1785,1859),(211087,'Emilie de Ravin',1981,NULL),(211089,'Armando De Razza',1955,NULL),(211144,'Libero De Rienzo',1977,2021),(211160,'Massimo De Rita',1935,2013),(211193,'Everett De Roche',1946,2014),(211346,'Nick De Ruiz',1871,1959),(211381,'Marquis de Sade',1740,1814),(211459,'Giuseppe De Santis',1917,1997),(211477,'Silvana De Santis',NULL,NULL),(211526,'Lorraine De Selle',1951,NULL),(211565,'Christian De Sica',1951,NULL),(211577,'David De Silva',1941,NULL),(211599,'Pietro De Silva',1954,NULL),(211725,'Mauricio de Sousa',1935,NULL),(211726,'Melissa De Sousa',NULL,NULL),(211767,'Edward de Souza',1932,NULL),(211823,'Steven E. de Souza',1947,NULL),(211920,'Marina de Tavira',1974,NULL),(211922,'Anthony Steffen',1930,2004),(211956,'Guillaume de Tonquédec',1966,NULL),(211964,'André De Toth',1913,2002),(212046,'Tasha de Vasconcelos',1966,NULL),(212139,'Debbie DeVilla',NULL,NULL),(212179,'Louise de Vilmorin',1902,1969),(212234,'Carl de Vogt',1885,1970),(212238,'David De Volpi',NULL,NULL),(212246,'Christopher De Vore',NULL,NULL),(212297,'Joost de Vries',NULL,NULL),(212324,'Allan De Waal',1938,2012),(212355,'Hans de Weers',NULL,NULL),(212421,'Alice De Winton',1870,1943),(212423,'Tom Dewispelaere',1976,NULL),(212453,'Jack De Wolf',1950,2016),(212499,'Tony de Zarraga',1925,2001),(212563,'Adam Deacon',1983,NULL),(212567,'Brian Deacon',1949,NULL),(212644,'Borden Deal',1922,1985),(212674,'Bill Dean',1921,2000),(212695,'Allison Dean',NULL,NULL),(212832,'Swizz Beatz',1978,NULL),(212847,'Laura Dean',1963,NULL),(212868,'Margaret M. Dean',NULL,NULL),(212933,'Rod Dean',NULL,NULL),(212990,'Lydia Dean Pilcher',NULL,NULL),(212997,'Andrew Deane',NULL,NULL),(213017,'Geoff Deane',NULL,NULL),(213019,'Hamilton Deane',1879,1958),(213034,'Lezlie Deane',1964,NULL),(213100,'William Dear',1944,NULL),(213116,'Nick Dear',1955,NULL),(213127,'Matt Dearborn',1958,NULL),(213136,'Basil Dearden',1911,1971),(213139,'James Dearden',1949,NULL),(213140,'Julia Dearden',NULL,NULL),(213164,'R.E. Dearing',1893,1968),(213234,'Frank Deasy',1959,2009),(213239,'Seamus Deasy',NULL,NULL),(213339,'Jackie Debatin',1970,NULL),(213354,'Jamel Debbouze',1975,NULL),(213358,'Joseph S. DeBeasi',1960,NULL),(213374,'Kristine DeBell',1954,NULL),(213424,'Benoît Debie',NULL,NULL),(213433,'Jonathan Debin',NULL,NULL),(213450,'Dean DeBlois',1970,NULL),(213482,'Marcia DeBonis',1960,NULL),(213548,'Marie-Aimée Debril',NULL,NULL),(213579,'Krzesimir Debski',1953,NULL),(213581,'Jean Debucourt',1894,1958),(213583,'Cathy DeBuono',1970,NULL),(213642,'Dan DeCarlo',1919,2001),(213648,'Mark DeCarlo',1969,NULL),(213795,'Erin Deck',NULL,NULL),(213912,'Jan Decleir',1946,NULL),(213932,'Denise DeClue',NULL,NULL),(213948,'Guy Decomble',1910,1964),(213964,'Jan Decorte',1950,NULL),(213983,'David DeCoteau',1962,NULL),(214036,'Ed Decter',1959,NULL),(214038,'Cécile Decugis',1934,2017),(214039,'John DeCuir Jr.',1941,NULL),(214088,'Yann Dedet',NULL,NULL),(214105,'Isabelle Dedieu',NULL,NULL),(214137,'Christopher Dedrick',1947,2010),(214156,'Buffy Dee',1923,1995),(214168,'Frances Dee',1909,2004),(214229,'Susan Doukas',NULL,NULL),(214255,'Alison Deegan',NULL,NULL),(214302,'Justin Deeley',1986,NULL),(214303,'Michael Deeley',1932,NULL),(214311,'Andrew Deemer',1972,NULL),(214320,'Andy De Emmony',NULL,NULL),(214438,'Khodabakhsh Defaei',NULL,NULL),(214483,'Gary DePew',NULL,NULL),(214518,'Daniel Defoe',1660,1731),(214729,'Pia Degermark',1949,NULL),(214747,'Gina Degirolamo',NULL,NULL),(214766,'Piera Degli Esposti',1938,2021),(214874,'Keiko Deguchi',1962,NULL),(214889,'Bob Degus',NULL,NULL),(214925,'Carter DeHaven',1932,NULL),(214960,'Bahram Dehghani',1954,NULL),(214989,'Paul Dehn',1912,1976),(215050,'Len Deighton',1929,NULL),(215123,'Donna Deitch',1945,NULL),(215130,'Ian Deitchman',NULL,NULL),(215260,'Albert Dekker',1905,1968),(215269,'Fred Dekker',1959,NULL),(215281,'Thomas Dekker',1987,NULL),(215299,'Steven S. DeKnight',NULL,NULL),(215327,'Pablo G. del Amo',1927,2004),(215357,'José Luis del Barro',NULL,NULL),(215450,'María del Carmen Martínez Román',NULL,NULL),(215455,'Ronnie Del Carmen',1959,NULL),(215487,'Kate del Castillo',1972,NULL),(215535,'Cino Del Duca',1899,1967),(215606,'Alicia del Lago',1935,2015),(215682,'Matthew Del Negro',1972,NULL),(215683,'Del Negro',1929,2015),(215769,'Deborah Del Prete',NULL,NULL),(215811,'Pedro del Rey',1931,NULL),(215842,'Vincent Del Rosario III',NULL,NULL),(215851,'Linda Del Rosario',NULL,NULL),(215853,'Mel Mendoza-Del Rosario',NULL,NULL),(215861,'Veronique Del Rosario-Corpus',NULL,NULL),(215877,'Roy Del Ruth',1893,1961),(215878,'Thomas Del Ruth',1942,NULL),(216059,'Eric DelaBarre',1965,NULL),(216066,'Charles Delac',1885,1965),(216142,'Agnès Delahaie',1920,2003),(216177,'Suzy Delair',1917,2020),(216214,'Camille Delamarre',1979,NULL),(216340,'Shelagh Delaney',1938,2011),(216451,'Jacques Delaporte',NULL,NULL),(216632,'Bruno Delbonnel',1957,NULL),(216635,'Olivier Delbosc',1968,NULL),(216651,'Denis Delcampe',NULL,NULL),(216769,'Bénédicte Delesalle',NULL,NULL),(217005,'Luis María Delgado',1926,2007),(217051,'Pastora Delgado',NULL,NULL),(217120,'Benoît Delhomme',1961,NULL),(217137,'Joe Delia',NULL,NULL),(217154,'Miguel Delibes',1920,2010),(217221,'Grey Griffin',1973,NULL),(217231,'Debra De Liso',1956,NULL),(217251,'Tony O\'Dell',1960,NULL),(217258,'Enzo Dell\'Aquila',NULL,NULL),(217260,'Ottaviano Dell\'Acqua',1954,NULL),(217386,'David Della Rocco',1952,NULL),(217466,'Carlo Delle Piane',1936,2019),(217524,'Sébastien Delloye',NULL,NULL),(217568,'Viña Delmar',1903,1990),(217677,'Nathalie Delon',1941,2021),(217735,'Danièle Delorme',1926,2015),(217752,'Donna DeLory',1964,NULL),(217798,'Robert Delpire',1926,2017),(217817,'Albert Delpy',1940,NULL),(217822,'Richard DeManincor',NULL,NULL),(217865,'Joseph Delteil',1894,1978),(217868,'Marine Delterme',NULL,NULL),(217896,'John DeLuca',NULL,NULL),(217931,'Anne Delugg',1922,2002),(217933,'Milton Delugg',1918,2015),(217938,'Peter DeLuise',1966,NULL),(217959,'Hervé de Luze',1949,NULL),(218022,'Benoît Delépine',1958,NULL),(218029,'Nick DeMaggio',1890,1981),(218080,'Lee Demarbre',1972,NULL),(218100,'Kathy DeMarco',NULL,NULL),(218131,'William Demarest',1892,1983),(218204,'J.M. DeMatteis',1953,NULL),(218259,'Christi Dembrowski',1960,NULL),(218342,'Gloria Demers',NULL,NULL),(218450,'Paul Demeyer',NULL,NULL),(218460,'Gary DeMichele',NULL,NULL),(218530,'Sevil Demirci',1966,NULL),(218621,'James DeMonaco',1969,NULL),(218626,'Albert DeMond',1901,1973),(218633,'Catherine Demongeot',1950,NULL),(218714,'Ceci Dempsey',NULL,NULL),(218760,'Rick Dempsey',NULL,NULL),(218778,'Austin Dempster',1921,1975),(218787,'Hugh Dempster',1900,1987),(218810,'Jeffrey DeMunn',1947,NULL),(218840,'Jacques Demy',1931,1990),(218843,'Mathieu Demy',1972,NULL),(218849,'Aleksandr Demyanenko',1937,1999),(218891,'Edward O. Denault',1924,2010),(218923,'Daniela Denby-Ashe',1978,NULL),(219021,'Rodolfo Denevi',1937,NULL),(219043,'Fred Denger',1920,1983),(219045,'Teng-Kuei Yang',1938,2012),(219062,'Maurice Denham',1909,2002),(219068,'Reginald Denham',1894,1983),(219136,'Claire Denis',1946,NULL),(219166,'Maria Denis',1916,2004),(219206,'Alexis Denisof',1966,NULL),(219208,'Tony Denison',1949,NULL),(219265,'Jacques Denjean',1929,1995),(219292,'David Denman',NULL,NULL),(219329,'Ned Dennehy',1965,NULL),(219332,'Barbara Dennek',NULL,NULL),(219336,'Barry Dennen',1938,2017),(219342,'Charles Denner',1926,1995),(219396,'Richard Denning',1914,1998),(219456,'Gill Dennis',1941,2015),(219532,'Patrick Dennis',1921,1976),(219550,'Dennis Edwards',NULL,NULL),(219576,'Winifred Dennis',1903,1971),(219613,'Tim Dennison',NULL,NULL),(219654,'Jon S. Denny',NULL,NULL),(219666,'Reginald Denny',1891,1967),(219670,'Roger Q. Denny',NULL,NULL),(219673,'Scott Denny',NULL,NULL),(219720,'Pen Densham',1947,NULL),(219729,'Janet Densmore',NULL,NULL),(219821,'Christa Denton',1972,NULL),(219835,'James Denton',1963,NULL),(219939,'Danny Denzongpa',1948,NULL),(219946,'Ramesh Deo',1929,2022),(219959,'Ruggero Deodato',1939,2022),(219965,'Roderick Deogrades',NULL,NULL),(219990,'Kassie Wesley DePaiva',1961,NULL),(220013,'Alain Depardieu',1945,NULL),(220016,'Guillaume Depardieu',1971,2008),(220017,'Julie Depardieu',1973,NULL),(220045,'Greg DePaul',NULL,NULL),(220133,'Rolf Liccini',1940,2010),(220149,'Thérèse DePrez',1965,2017),(220183,'Émilie Dequenne',1981,NULL),(220207,'Roberto Pregadio',1928,2010),(220227,'Jacques Deray',1929,2003),(220240,'Eugenio Derbez',1962,NULL),(220262,'Delia Derbyshire',1937,2001),(220274,'Denis Dercourt',1964,NULL),(220383,'Arpad DeRiso',1909,1983),(220388,'Joe DeRita',1909,1993),(220435,'Alan DerMarderosian',NULL,NULL),(220448,'Edouard Dermithe',1925,1995),(220450,'Maeve Dermody',1985,NULL),(220460,'Germaine Dermoz',1888,1966),(220465,'Jonathan Dern',NULL,NULL),(220495,'Georges Derocles',NULL,NULL),(220496,'Thierry Derocles',NULL,NULL),(220521,'Bob DeRosa',NULL,NULL),(220533,'Tony DeRosa-Grund',NULL,NULL),(220600,'Scott Derrickson',1966,NULL),(220615,'Bernard Derriman',NULL,NULL),(220635,'Debi Derryberry',1960,NULL),(220641,'Alan Dershowitz',1938,NULL),(220656,'Edward DeRuiter',NULL,NULL),(220729,'János Derzsi',1954,NULL),(220774,'Arnaud des Pallières',1961,NULL),(220831,'Nainita Desai',NULL,NULL),(220852,'Jean Desailly',1920,2008),(220865,'Joe DeSalvo',NULL,NULL),(220888,'Daniel DeSanto',NULL,NULL),(220892,'Tom DeSanto',NULL,NULL),(220918,'Alain Dessauvage',NULL,NULL),(220956,'Daniel Descamps',NULL,NULL),(220976,'Alex Descas',1958,NULL),(220997,'Hubert Deschamps',1923,1998),(221042,'Caleb Deschanel',1944,NULL),(221043,'Emily Deschanel',1976,NULL),(221046,'Zooey Deschanel',1980,NULL),(221133,'Mike de Seve',NULL,NULL),(221169,'Josée Deshaies',NULL,NULL),(221265,'Tom DeSimone',1939,NULL),(221407,'Laurent Desmet',NULL,NULL),(221497,'Georges Desmouceaux',NULL,NULL),(221527,'Ivan Desny',1922,2002),(221528,'Victor Desny',1906,1979),(221591,'Virginie Despentes',1969,NULL),(221613,'Raphaëlle Desplechin',NULL,NULL),(221615,'Despo Diamantidou',1916,2004),(221631,'Nada Despotovich',1967,NULL),(221638,'Naomi Despres',NULL,NULL),(221662,'Alain Desrochers',NULL,NULL),(221745,'Natalie Dessay',1965,NULL),(221754,'Natalie Desselle Reid',1967,2020),(221805,'Lorenzo DeStefano',NULL,NULL),(221841,'Bob Destri Hilgenberg',1955,NULL),(221865,'Buddy G. DeSylva',1895,1950),(221902,'Amanda Detmer',1971,NULL),(221971,'Chad Detwiller',NULL,NULL),(221995,'Jay Deuby',NULL,NULL),(222043,'Howard Deutch',1950,NULL),(222048,'Ira Deutchman',NULL,NULL),(222079,'Helen Deutsch',1906,1992),(222084,'Kurt Deutsch',1966,NULL),(222094,'Nikolaus Dutsch',NULL,NULL),(222104,'Stephen Deutsch',1946,NULL),(222113,'Drafi Deutscher',1946,2006),(222138,'Nandana Sen',1967,NULL),(222150,'Prabhu Deva',1973,NULL),(222313,'Stuart Devenie',NULL,NULL),(222354,'Devereaux Jennings',1884,1952),(222365,'Maurice Devereaux',NULL,NULL),(222399,'Robert Devereux',NULL,NULL),(222426,'Ajay Devgn',1969,NULL),(222447,'Chunibala Devi',1872,1955),(222489,'Seeta Devi',1912,1983),(222519,'André Devigny',1916,1999),(222533,'Catherine Deville',NULL,NULL),(222584,'D.V. DeVincentis',NULL,NULL),(222589,'Isabelle Devinck',NULL,NULL),(222591,'Devine',NULL,NULL),(222596,'Andy Devine',1905,1977),(222600,'Brenda Devine',1949,2009),(222615,'Dennis Devine',NULL,NULL),(222627,'George Devine',1910,1966),(222643,'Loretta Devine',1949,NULL),(222676,'Zanne Devine',NULL,NULL),(222884,'Fred C. Devonald',NULL,NULL),(222890,'Paula Devonshire',NULL,NULL),(222904,'Gary DeVore',1941,1997),(222922,'Emmanuelle Devos',1964,NULL),(222973,'Jon DeVries',1947,NULL),(223033,'Patrick Dewaere',1947,1982),(223041,'Kevin DeWalt',NULL,NULL),(223051,'Aubrey Dewar',NULL,1988),(223056,'Frank DeWar',1907,1969),(223070,'Amandine Dewasmes',NULL,NULL),(223157,'Colleen Dewhurst',1924,1991),(223221,'Louis DeWitt',1905,1992),(223250,'Patrick Dewolf',1950,NULL),(223290,'Brad Dexter',1917,2002),(223296,'Elliott Dexter',1879,1941),(223316,'Mark Dexter',1973,NULL),(223320,'Peter Dexter',1943,NULL),(223326,'Rosemary Dexter',1944,2010),(223330,'Von Dexter',1912,1996),(223359,'Tom Dey',1965,NULL),(223383,'Rolf Deyhle',1938,2014),(223386,'Florian Deyle',1973,NULL),(223395,'Annie DeYoung',NULL,NULL),(223403,'Bernard Deyriès',NULL,NULL),(223456,'Tamás Deák',1928,NULL),(223499,'Ayesha Dharker',1977,NULL),(223518,'Caroline Dhavernas',1978,NULL),(223521,'Anil Dhawan',1947,NULL),(223526,'Sabrina Dhawan',NULL,NULL),(223737,'Pia Di Ciaula',NULL,NULL),(223738,'Bobby Di Cicco',1954,NULL),(223804,'Alan DiFiore',NULL,NULL),(223924,'Gianni Di Gregorio',1949,NULL),(223953,'Dalila Di Lazzaro',1953,NULL),(223964,'Fernando Di Leo',1932,2003),(224007,'John DiMaggio',1968,NULL),(224145,'Denise Di Novi',1956,NULL),(224157,'Dario Di Palma',1932,2004),(224187,'Gerald Di Pego',1941,NULL),(224331,'Andrea Di Stefano',1972,NULL),(224345,'Tito Di Stefano',NULL,NULL),(224366,'Janine Ditullio',NULL,NULL),(224426,'Alice Diabo',NULL,2002),(224537,'Moshe Diamant',1946,NULL),(224565,'Chris Diamantopoulos',1975,NULL),(224606,'David Diamond',NULL,NULL),(224628,'Harold Diamond',NULL,NULL),(224634,'I.A.L. Diamond',1920,1988),(224683,'Matthew Diamond',NULL,NULL),(224822,'Omou Diarra',NULL,NULL),(224927,'Willem Dias',NULL,NULL),(225118,'Luigi Diberti',1939,NULL),(225146,'Lorenzo di Bonaventura',1957,NULL),(225235,'Kevin DiCicco',NULL,NULL),(225257,'Eddie Dick',NULL,NULL),(225269,'Kirby Dick',1952,NULL),(225283,'R.A. Dick',1898,1979),(225323,'Chris Dickens',NULL,NULL),(225328,'Janine Dickins',NULL,NULL),(225332,'Kim Dickens',1965,NULL),(225389,'Ged Dickersin',NULL,NULL),(225416,'Ernest R. Dickerson',1951,NULL),(225457,'Alison Dickey',NULL,NULL),(225460,'Dale Dickey',1961,NULL),(225463,'James Dickey',1923,1997),(225483,'Kate Dickie',1971,NULL),(225512,'Desmond Dickinson',1902,1986),(225555,'Thorold Dickinson',1903,1984),(225565,'Andrew Dickler',NULL,NULL),(225614,'Andrew Dickson',1945,NULL),(225621,'Billy Dickson',NULL,NULL),(225679,'Kwesi Dickson',1967,NULL),(225710,'Philip Dickson',NULL,NULL),(225746,'Vince DiCola',NULL,NULL),(225767,'Dawn Didawick',1941,NULL),(225784,'Denis Diderot',1713,1784),(225818,'Tony DiDio',NULL,NULL),(225820,'Joan Didion',1934,2021),(225868,'Enrico Dieckmann',NULL,NULL),(225869,'Katherine Dieckmann',NULL,NULL),(225899,'Frédéric Diefenthal',1968,NULL),(225942,'William Diehl',1924,2006),(226136,'Christine Diersch',1943,NULL),(226189,'William Dieterle',1893,1972),(226191,'Samuel Dietert',1961,NULL),(226200,'Helmut Dietl',1944,2015),(226244,'Erwin C. Dietrich',1930,2018),(226322,'Corina Dietz',1953,NULL),(226337,'Jack Dietz',1901,1969),(226383,'Nade Dieu',1973,NULL),(226387,'Albert Dieudonné',1889,1976),(226415,'Manny Diez',NULL,NULL),(226421,'Matthew Diezel',NULL,NULL),(226446,'Anton Diffring',1916,1989),(226505,'Chip Diggins',NULL,NULL),(226538,'John Dighton',1909,1989),(226544,'Louis DiGiaimo',1938,2015),(226547,'David DiGilio',NULL,NULL),(226558,'Chris DiGiovanni',NULL,NULL),(226693,'Loek Dikker',1944,NULL),(226778,'Bill Dill',NULL,NULL),(226784,'Deena Dill',NULL,NULL),(226813,'Garret Dillahunt',NULL,NULL),(226817,'Frank Dillane',1991,NULL),(226820,'Stephen Dillane',1957,NULL),(226863,'Flint Dille',1955,NULL),(226888,'Phyllis Diller',1897,1972),(226889,'Robert Dillon',1932,NULL),(226947,'Bradford Dillman',1930,2018),(227039,'Melinda Dillon',1939,2023),(227047,'P.J. Dillon',NULL,NULL),(227187,'David Schmoeller',1947,NULL),(227481,'Howard Dimsdale',1914,1991),(227517,'Catherine DiNapoli',NULL,NULL),(227540,'Mark Dindal',1960,NULL),(227571,'Mel Dinelli',1912,1991),(227576,'Paul Dinello',1962,NULL),(227591,'Gordon Dines',1911,1982),(227598,'Karen Blixen',1885,1962),(227647,'John Dullaghan',1930,2009),(227669,'Ernie Dingo',1956,NULL),(227693,'Henry Dinhofer',NULL,NULL),(227695,'Patrice Dinhut',NULL,NULL),(227704,'Paul Dini',NULL,NULL),(227759,'Peter Dinklage',1969,NULL),(227842,'Andrew Dintenfass',NULL,NULL),(227867,'Thunderbird Dinwiddie',1973,NULL),(227870,'Randy T. Dinzler',NULL,NULL),(227875,'Ronnie James Dio',1942,2010),(228027,'Mbissine Thérèse Diop',NULL,NULL),(228147,'Mark A.Z. Dippé',1956,NULL),(228226,'Douglas Dirkson',1943,NULL),(228262,'Mark DiSalle',NULL,NULL),(228264,'J.D. Disalvatore',1966,2017),(228286,'Patrick Disanto',NULL,NULL),(228324,'Catherine Disher',1960,NULL),(228327,'Karen Disher',NULL,NULL),(228358,'Dermot Diskin',NULL,NULL),(228400,'Tim Disney',NULL,NULL),(228492,'Steve Ditko',1927,2018),(228537,'Hans-Jürgen Dittberner',1945,NULL),(228542,'Christian Ditter',NULL,NULL),(228633,'William Diver',NULL,NULL),(228678,'Andrew Divoff',1955,NULL),(228690,'A.J. Dix',NULL,NULL),(228715,'Richard Dix',1893,1949),(228746,'Thomas Dixon Jr.',1864,1946),(228776,'Campbell Dixon',1895,1960),(228850,'Humphrey Dixon',1944,NULL),(228895,'Ken Dixon',NULL,NULL),(228908,'Leslie Dixon',NULL,NULL),(228970,'Christopher Wood',1935,2015),(229026,'Jasmin Dizdar',1961,NULL),(229062,'Aïssa Djabri',1952,NULL),(229084,'Omid Djalili',1965,NULL),(229106,'André Djaoui',1943,NULL),(229172,'Philippe Djian',1949,NULL),(229248,'Zoran Djordjevic',NULL,NULL),(229422,'DMX',1970,2021),(229424,'Edward Dmytryk',1908,1999),(229498,'Thi Hai Yen Do',NULL,NULL),(229561,'Anne Doat',1936,NULL),(229564,'Aurelle Doazan',1966,NULL),(229569,'Péter Dobai',1944,NULL),(229644,'Lem Dobbs',1958,NULL),(229694,'David Dobkin',1969,NULL),(229809,'Fyodor Dobronravov',1921,2014),(229858,'Natalya Dobrunova',NULL,NULL),(229914,'Kevin James Dobson',1952,NULL),(229923,'Michael Dobson',1966,NULL),(229928,'Paul Dobson',1969,NULL),(229930,'Peter Dobson',1964,NULL),(229939,'Tamara Dobson',1947,2006),(229943,'Vernon Dobtcheff',1934,NULL),(229957,'Kata Dobó',1974,NULL),(229994,'Peter Docker',NULL,NULL),(230032,'Pete Docter',1968,NULL),(230039,'E.L. Doctorow',1931,2015),(230045,'Anthony Dod Mantle',1955,NULL),(230069,'Derek Dodd',NULL,NULL),(230109,'Philip Dodd',NULL,NULL),(230196,'David Dodge',1910,1974),(230257,'Tracey Dodokin',NULL,NULL),(230306,'Neal Dodson',1978,NULL),(230315,'Alex Doduk',NULL,NULL),(230335,'John Doe',1953,NULL),(230357,'Frances Doel',NULL,NULL),(230422,'David Doernberg',NULL,2012),(230426,'Chris Doerner',NULL,NULL),(230462,'Neel Doff',1858,1942),(230514,'Liana Dognini',NULL,NULL),(230521,'Nicole Dogué',NULL,NULL),(230547,'Christopher Doherty',NULL,NULL),(230649,'Justus von Dohnányi',1960,NULL),(230655,'Jason Dohring',1982,NULL),(230666,'Walt Dohrn',1970,NULL),(230669,'Davis Doi',NULL,NULL),(230693,'Lexa Doig',NULL,NULL),(230697,'Lou Doillon',1982,NULL),(230752,'Brendan Dolan',NULL,NULL),(230859,'Xavier Dolan',1989,NULL),(230934,'Guy Doleman',1923,1996),(230990,'Irina Dolganova',1949,NULL),(231085,'Birgit Doll',1958,2015),(231098,'Dora Doll',1922,2015),(231152,'Helle Dolleris',1965,NULL),(231190,'Bob Dolman',1949,NULL),(231222,'DJ Dolores',NULL,NULL),(231231,'Adolph Hallis',1896,1987),(231248,'Willy Holt',1921,2007),(231283,'John Doman',1945,NULL),(231319,'Arielle Dombasle',1953,NULL),(231346,'Andrea Domburg',1923,1997),(231409,'Faith Domergue',1924,1999),(231436,'Dagmara Dominczyk',1976,NULL),(231452,'Antoine Saint-John',1940,1990),(231458,'Colman Domingo',1969,NULL),(231596,'Andrew Dominik',1967,NULL),(231639,'Jeannine Dominy',NULL,NULL),(231652,'Solveig Dommartin',1961,2007),(231661,'Arnaud Dommerc',NULL,NULL),(231946,'Heather Donahue',1974,NULL),(232049,'Simon Donald',NULL,NULL),(232083,'Christopher Donaldson',NULL,NULL),(232087,'David Donaldson',NULL,NULL),(232194,'Peter Donat',1928,2018),(232196,'Robert Donat',1905,1958),(232223,'Ermanno Donati',1920,1979),(232246,'Roberto Donati',NULL,NULL),(232274,'Lisa Dash Donato',NULL,NULL),(232319,'Robert Donavan',NULL,NULL),(232357,'Jean-Claude Donda',NULL,NULL),(232364,'John Dondertman',NULL,NULL),(232414,'Chad Donella',1978,NULL),(232433,'Joshua Donen',1955,NULL),(232442,'Jeremy Doner',NULL,NULL),(232527,'Walter Doniger',1917,2011),(232540,'Jacques Doniol-Valcroze',1920,1989),(232561,'John C. Donkin',NULL,NULL),(232589,'Roger Donley',1922,1995),(232627,'Bernard-Pierre Donnadieu',1949,2010),(232655,'Jeff Donnell',1921,1988),(232703,'Donal Donnelly',1931,2010),(232776,'Thomas Dean Donnelly',NULL,NULL),(232787,'Elfie Donnelly',1950,NULL),(232795,'Clive Donner',1926,2010),(232800,'Jack Donner',1928,2019),(232807,'Jörn Donner',1933,2020),(232858,'Mary Agnes Donoghue',NULL,NULL),(232924,'Walter Donohue',NULL,NULL),(233014,'King Donovan',1918,1987),(233026,'Martin Donovan',1950,NULL),(233027,'Martin Donovan',NULL,NULL),(233078,'Brett Donowho',NULL,NULL),(233112,'Fabrizio Donvito',NULL,NULL),(233123,'Valérie Donzelli',1973,NULL),(233145,'Alison Doody',1966,NULL),(233180,'Trish Doolan',NULL,NULL),(233199,'Jim Dooley',1976,NULL),(233209,'Paul Dooley',1928,NULL),(233233,'John Doolittle',1947,NULL),(233295,'Jérôme Dopffer',NULL,NULL),(233304,'Mike Dopud',1968,NULL),(233306,'Robert DoQui',1934,2008),(233312,'Karin Dor',1938,2017),(233315,'Milan Dor',1947,NULL),(233347,'Doraiswamy',NULL,NULL),(233352,'Ann Doran',1911,2000),(233353,'Barbara Doran',NULL,NULL),(233375,'James Doran',1923,2009),(233386,'Lindsay Doran',1948,NULL),(233544,'Alfred Dorfer',1961,NULL),(233557,'Ariel Dorfman',1942,NULL),(233561,'Cliff Dorfman',NULL,NULL),(233562,'David Dorfman',1993,NULL),(233563,'David Dorfman',NULL,NULL),(233585,'Jacques Dorfmann',1945,NULL),(233587,'Robert Dorfmann',1912,1999),(233604,'Sandro Dori',1938,2021),(233608,'Alejandro Doria',1936,2009),(233753,'Françoise Dorléac',1942,1967),(233757,'Jaco Van Dormael',1957,NULL),(233758,'Pierre van Dormael',1952,2008),(233774,'Laurence Dorman',NULL,NULL),(233791,'Felix Dormann',1870,1928),(233818,'Adam Dorn',NULL,NULL),(233827,'Dody Dorn',1955,NULL),(233828,'Dolores Dorn',1933,2019),(233856,'Philip Dorn',1901,1975),(234193,'Stanislav Dorsic',1943,NULL),(234196,'Nathaniel Dorsky',1943,NULL),(234237,'Anne Dorval',1960,NULL),(234371,'Kriss Dosanjh',NULL,NULL),(234500,'Alain Dostie',1943,NULL),(234502,'Fyodor Dostoevsky',1821,1881),(234541,'Roy Dotrice',1923,2017),(234579,'Els Dottermans',1964,NULL),(234581,'Attilio Dottesio',1909,1989),(234668,'Portia Doubleday',1988,NULL),(234692,'Catherine Doucet',1875,1958),(234725,'Bob Doucette',NULL,NULL),(234767,'Van Doude',1926,2018),(234781,'Edouard Douek',NULL,NULL),(234791,'Doug E. Doug',1970,NULL),(234806,'Terry Dougas',1977,NULL),(234837,'Don Dougherty',NULL,NULL),(235031,'Donna Douglas',1932,2015),(235040,'Eric Douglas',1958,2004),(235066,'Gordon Douglas',1907,1993),(235093,'James Douglas',1929,2016),(235127,'Johnny Douglas',1920,2003),(235143,'Kirk Douglas',NULL,NULL),(235160,'Lloyd C. Douglas',1877,1951),(235167,'Macgregor Douglas',NULL,NULL),(235209,'Peter Douglas',1955,NULL),(235242,'Douglas Santiago',NULL,NULL),(235243,'Sarah Douglas',1952,NULL),(235345,'Yoriko Dôguchi',1965,NULL),(235389,'Jean Doumanian',1936,NULL),(235453,'Didier Doussin',NULL,NULL),(235502,'Olivier Douyère',NULL,NULL),(235652,'Ann Dowd',1956,NULL),(235683,'Nancy Dowd',1945,NULL),(235684,'Ned Dowd',1950,NULL),(235719,'John Erick Dowdle',1972,NULL),(235782,'Freda Dowie',1928,2019),(235948,'Kevin Downes',NULL,NULL),(235960,'Robin Atkin Downes',1976,NULL),(235978,'Brian Downey',1944,NULL),(236026,'Mike Downey',NULL,NULL),(236050,'Jenny Downham',NULL,NULL),(236065,'Michael Downie',NULL,NULL),(236130,'Sara Downing',1979,NULL),(236157,'Cathy Downs',1926,1976),(236187,'Jason Downs',1973,NULL),(236226,'Michael Dowse',1973,NULL),(236279,'Arthur Conan Doyle',1859,1930),(236313,'Christopher Doyle',1952,NULL),(236329,'David Doyle',1929,1997),(236405,'Julian Doyle',1942,NULL),(236462,'Patrick Doyle',1953,NULL),(236474,'Peter Doyle',NULL,NULL),(236486,'Roddy Doyle',1958,NULL),(236495,'Shawn Doyle',NULL,NULL),(236519,'Brian Doyle-Murray',1945,NULL),(236546,'William Dozier',1908,1991),(236549,'Marie-Hélène Dozo',NULL,NULL),(236592,'Garth H. Drabinsky',1948,NULL),(236700,'Bert L. Dragin',NULL,NULL),(236711,'Billy Drago',1945,2019),(236729,'Srdjan Dragojevic',1963,NULL),(236740,'Carmen Dragon',1914,1984),(236756,'Jessica Dragonette',1900,1980),(236819,'Victor Drai',1947,NULL),(236835,'John Drainie',1916,1966),(236841,'Doug Draizin',NULL,NULL),(236866,'Charles Drake',1917,1994),(236873,'Claudia Drake',1918,1997),(236881,'Dennis Drake',NULL,NULL),(236884,'Diane Drake',NULL,NULL),(236903,'Frances Drake',1912,2000),(236930,'Jim Drake',1944,2022),(236944,'Joseph Drake',NULL,NULL),(236952,'Larry Drake',1950,2016),(236966,'Matt Drake',NULL,NULL),(237033,'William Absalom Drake',1899,1965),(237041,'George Drakoulias',NULL,NULL),(237065,'Ashley Eckstein',1981,NULL),(237106,'Elena Drapeko',1948,NULL),(237109,'Alex Draper',NULL,NULL),(237124,'Courtnee Draper',1985,NULL),(237134,'Fred Draper',1923,1999),(237164,'Polly Draper',1955,NULL),(237170,'Robert Draper',NULL,NULL),(237200,'Laura Drasbæk',1974,NULL),(237210,'Giorgio Draskovic',NULL,NULL),(237222,'Rachel Dratch',1966,NULL),(237225,'Jay Dratler',1911,1968),(237236,'Danny Draven',NULL,NULL),(237237,'Jamie Draven',1979,NULL),(237292,'Anthony Drazan',1955,NULL),(237543,'Hal Dresner',1937,2023),(237548,'Michael Dress',1935,1975),(237571,'Louise Dresser',1878,1965),(237595,'Lieux Dressler',1930,2018),(237597,'Marie Dressler',1868,1934),(237608,'Jean-Marie Dreujou',NULL,NULL),(237655,'Ellen Drew',1914,2003),(237693,'Mrs. Sidney Drew',1890,1925),(237711,'Sarah Drew',1980,NULL),(237713,'Sidney Drew',1863,1919),(237740,'Devin Douglas Drewitz',1989,NULL),(237747,'Tadeusz Drewno',1939,2016),(237779,'Jorge Drexler',1964,NULL),(237819,'Michael Dreyer',NULL,NULL),(237836,'Jean-Paul Le Chanois',1909,1985),(237899,'Simone Drieu',NULL,NULL),(237944,'Katja Dringenberg',1961,NULL),(237985,'Bobby Driscoll',1937,1968),(238018,'Ian Driscoll',NULL,NULL),(238057,'Shawn Driscoll',NULL,NULL),(238135,'Oliver Driver',1974,NULL),(238138,'Sara Driver',1955,NULL),(238247,'Noam Dromi',NULL,NULL),(238256,'Kevin Droney',1948,NULL),(238300,'Howard Drossin',1965,NULL),(238385,'Pierre Drouot',1943,NULL),(238445,'Joanne Dru',1922,1996),(238475,'Léa Drucker',1972,NULL),(238489,'Rossella Drudi',NULL,NULL),(238506,'Dinara Drukarova',1976,NULL),(238510,'Michael Druker',NULL,NULL),(238538,'Lindsy Drummer',NULL,NULL),(238546,'Brian Drummond',1969,NULL),(238585,'Randy Drummond',NULL,NULL),(238619,'Allen Drury',1918,1998),(238635,'Karen Drury',1958,NULL),(238668,'Ann Druyan',1949,NULL),(238698,'Stuart Dryburgh',1952,NULL),(238757,'Derek Drymon',1968,NULL),(238830,'Nellis Du Biel',1958,NULL),(238841,'Don Mancini',1963,NULL),(238844,'Philip R. Du Bois',1892,NULL),(238848,'Victor Du Bois',NULL,NULL),(238865,'Frederik Du Chau',1965,NULL),(238878,'Georges Du Fresne',1984,NULL),(238879,'Kylie Du Fresne',NULL,NULL),(238893,'Du Lu Wang',1909,1977),(238898,'Daphne Du Maurier',1907,1989),(238941,'Marc Du Pontavice',NULL,NULL),(238956,'Le Clanché du Rand',1942,NULL),(239032,'Diane Duane',1952,NULL),(239216,'Diego Dubcovsky',NULL,NULL),(239221,'Desmond Dube',1969,NULL),(239267,'Lillete Dubey',1953,NULL),(239277,'Daniel Dubiecki',1977,NULL),(239281,'Wanda Dubiel',1974,NULL),(239299,'Jennifer Dubin',NULL,NULL),(239447,'Marie Dubois',1937,2014),(239513,'Paulette Dubost',1910,2011),(239532,'Paul Dubov',1918,1979),(239586,'Danièle Dubroux',1947,NULL),(239653,'Andre Dubus',1936,1999),(239656,'Marie-Sophie Dubus',NULL,NULL),(239660,'Jacques Duby',1922,2012),(239680,'Hélène Duc',1917,2014),(239729,'Kristi Ducati',NULL,NULL),(239735,'Eduardo Ducay',NULL,NULL),(239739,'Nico Ducci',NULL,NULL),(239760,'Jean Duceppe',1923,1990),(239816,'Michel Duchaussoy',1938,2012),(239967,'Andrew Ducote',1986,NULL),(240054,'James Glenn Dudelson',NULL,NULL),(240059,'Klaus Dudenhöfer',1924,2008),(240196,'Michael Dudok de Wit',1953,NULL),(240309,'Sophie Duez',1962,NULL),(240318,'Lola Dueñas',1971,NULL),(240338,'Guy Dufaux',1943,NULL),(240359,'Anne-Marie Duff',1970,NULL),(240380,'Haylie Duff',1985,NULL),(240381,'Hilary Duff',1987,NULL),(240417,'Warren Duff',1904,1973),(240439,'Peter Duffell',1922,2017),(240476,'J. Patrick Duffner',NULL,NULL),(240524,'Dorothy Duffy',NULL,NULL),(240627,'Troy Duffy',1971,NULL),(240638,'Jacques Dufilho',1914,2005),(240720,'Valérie Leblanc',NULL,NULL),(240762,'William Dufty',1916,2002),(240797,'Dennis Dugan',1946,NULL),(240891,'Bryan Duggan',NULL,NULL),(240934,'Pat Duggan',1905,1987),(240967,'Florence Garland',1962,NULL),(240973,'Jacques Dugied',1926,2005),(240987,'Martine Dugowson',1958,NULL),(240995,'Christian Duguay',1957,NULL),(241049,'Josh Duhamel',1972,NULL),(241090,'John Duigan',1949,NULL),(241121,'Jean Dujardin',1972,NULL),(241173,'Clark Duke',NULL,NULL),(241174,'Daryl Duke',1929,2006),(241208,'Robin Duke',1954,NULL),(241222,'Ken Duken',1979,NULL),(241232,'David Dukes',1945,2000),(241271,'David Dulac',NULL,NULL),(241273,'Germaine Dulac',1882,1942),(241374,'Jim Dultz',NULL,NULL),(241399,'Andrew Durham',NULL,NULL),(241413,'Philippe Dumarçay',NULL,NULL),(241414,'Alexandre Dumas fils',1824,1895),(241416,'Alexandre Dumas',1802,1870),(241483,'Roger Dumas',1897,1951),(241484,'Roger Dumas',1932,2016),(241489,'Sidonie Dumas',1967,NULL),(241523,'Douglass Dumbrille',1889,1974),(241539,'Jacy King',NULL,NULL),(241600,'Greg Dummett',NULL,NULL),(241622,'Bruno Dumont',1958,NULL),(241663,'José Dumont',1950,NULL),(241694,'Sky du Mont',1947,NULL),(241748,'Dennis Dun',1952,NULL),(241753,'Dun Tan',1957,NULL),(241759,'Deanna Dunagan',1940,NULL),(241795,'Don Carlos Dunaway',NULL,NULL),(241870,'Rockmond Dunbar',1973,NULL),(241881,'Duncan',1959,NULL),(241885,'Alastair Duncan',1958,NULL),(241909,'Ben Duncan',NULL,NULL),(241949,'David Duncan',1913,1999),(241988,'James C. Duncan',NULL,NULL),(242010,'Kenne Duncan',1902,1972),(242026,'Lindsay Duncan',1950,NULL),(242028,'Lois Duncan',1934,2016),(242059,'Patrick Sheane Duncan',1947,NULL),(242084,'Robert Duncan',NULL,NULL),(242098,'Sandy Duncan',1946,NULL),(242126,'Trevor Duncan',1924,2005),(242155,'Jean-Benoît Dunckel',1969,NULL),(242172,'David Dundas',1945,NULL),(242177,'Jennifer Dundas',1971,NULL),(242210,'Ninian Dunnett',NULL,NULL),(242253,'Sebastian Dungan',1972,NULL),(242266,'Christine Dunham',NULL,NULL),(242271,'Duwayne Dunham',1952,NULL),(242290,'Robert Dunham',1931,2001),(242295,'Stephen Dunham',1964,2012),(242381,'David M. Dunlap',NULL,NULL),(242382,'Dawn Dunlap',1964,NULL),(242406,'Paul Dunlap',1919,2010),(242485,'Louis Dunmyre',1885,NULL),(242491,'Andrew Dunn',NULL,NULL),(242656,'Kevin Dunn',1956,NULL),(242707,'Nell Dunn',1936,NULL),(242743,'Robert Dunn',1978,NULL),(242756,'Ryan Dunn',1977,2011),(242850,'Finley Peter Dunne',1903,1991),(242869,'John Gregory Dunne',1932,2003),(242886,'Murphy Dunne',1942,NULL),(242897,'Philip Dunne',1908,1992),(242903,'Robin Dunne',1976,NULL),(242938,'Decla Dunning',1909,1984),(242945,'George Dunning',1920,1979),(242949,'John Dunning',1927,2011),(242950,'John D. Dunning',1916,1991),(242972,'Mildred Dunnock',1901,1991),(243005,'Simon Dunsdon',NULL,NULL),(243109,'Cheryl Dunye',1966,NULL),(243175,'Anny Duperey',1947,NULL),(243231,'Jay Duplass',1973,NULL),(243233,'Mark Duplass',1976,NULL),(243238,'Emmanuelle Duplay',NULL,NULL),(243323,'Miss DuPont',1894,1973),(243339,'Renelde Dupont',NULL,NULL),(243340,'René Dupont',1929,NULL),(243348,'Vincent Dupont',NULL,NULL),(243355,'Albert Dupontel',1964,NULL),(243454,'June Duprez',1918,1984),(243484,'Paris Duprée',1950,2011),(243520,'Philippe Dupuis-Mendel',NULL,NULL),(243620,'Philippe Duquesne',1965,NULL),(243701,'Juan Durán',1981,NULL),(243806,'Kevin Durand',1974,NULL),(243818,'Nathalie Durand',NULL,NULL),(243837,'Christopher Durang',1949,NULL),(243842,'Giustino Durano',1923,2002),(243890,'Anita Durante',1897,1994),(243921,'Marguerite Duras',1914,1996),(243943,'Justin R. Durban',1977,NULL),(243969,'Jesyca C. Durchin',NULL,NULL),(243983,'Richard Durden',1944,NULL),(244019,'Marc Duret',1957,NULL),(244058,'Brook Durham',NULL,NULL),(244110,'Todd Durham',NULL,NULL),(244151,'Romain Duris',1974,NULL),(244270,'Dick Durock',1937,2009),(244321,'Jason Durr',1967,NULL),(244445,'Loïc Dury',NULL,NULL),(244451,'Wojciech Duryasz',1940,NULL),(244620,'Phil Dusenberry',1936,2007),(244630,'Eliza Dushku',1980,NULL),(244633,'Joe Dusic',NULL,NULL),(244670,'Philippe Dussart',1928,2013),(244684,'Nancy Dussault',1936,NULL),(244707,'André Dussollier',1946,NULL),(244764,'Annette Dutertre',1961,NULL),(244850,'Jacques Dutronc',1943,NULL),(244887,'Bimal Dutta',NULL,NULL),(244891,'Dulal Dutta',1925,2010),(244903,'Sanjib Datta',NULL,NULL),(244911,'Joe Duttine',1970,NULL),(244989,'Benoît Duval',1881,NULL),(245076,'Patrick Duval',1953,NULL),(245112,'Clea DuVall',1977,NULL),(245145,'Wayne Duvall',1958,NULL),(245164,'Nicolas Duvauchelle',1980,NULL),(245178,'Albert Duverger',NULL,NULL),(245213,'Julien Duvivier',1896,1967),(245235,'Frank Dux',NULL,NULL),(245240,'Pierre Dux',1908,1990),(245299,'Russ Dvonch',NULL,NULL),(245304,'Ann Dvorak',1911,1979),(245356,'Peter Dvorsky',1948,2019),(245367,'Vladislav Dvorzhetskiy',1939,1978),(245385,'Allan Dwan',1885,1981),(245435,'Laurence Dworet',NULL,NULL),(245473,'Audrey Dwyer',NULL,NULL),(245493,'Finola Dwyer',1963,NULL),(245507,'Karyn Dwyer',1975,2018),(245536,'Ruth Dwyer',1898,1978),(245554,'Roger Dwyre',NULL,NULL),(245579,'Franklin Dyall',1870,1950),(245596,'Guy Hendrix Dyas',1968,NULL),(245683,'Anne Dyer',NULL,NULL),(245705,'Danny Dyer',1977,NULL),(245744,'John Dyer',NULL,NULL),(245791,'Stephen Dyer',1965,NULL),(245876,'Matthew Dyktynski',NULL,NULL),(245888,'Jesse Dylan',1966,NULL),(245913,'Janusz Dymek',1938,NULL),(245988,'Trine Dyrholm',1972,NULL),(246037,'Jeremy Dyson',1966,NULL),(246185,'Piotr Dzieciol',1950,NULL),(246189,'Marian Dziedziel',1947,NULL),(246196,'Arié Dzierlatka',1933,2015),(246205,'André Dziezuk',NULL,NULL),(246224,'Anulka Dziubinska',1950,NULL),(246362,'Grégori Derangère',1971,NULL),(246386,'Mélissa Désormeaux-Poulin',NULL,NULL),(246404,'Luc Déry',NULL,NULL),(246503,'Agustín Díaz Yanes',1950,NULL),(246545,'Chico Díaz',1959,NULL),(246585,'Guillermo Diaz',1975,NULL),(246612,'Jorge Diaz',NULL,NULL),(246686,'Melonie Diaz',1984,NULL),(246738,'Romeo Díaz',NULL,NULL),(246849,'Frank Döhmann',1956,NULL),(246903,'Doris Dörrie',1955,NULL),(246984,'Halfdan E',1965,NULL),(247031,'Nicholas Eadie',1958,NULL),(247123,'Bill Eagles',NULL,NULL),(247243,'Jim Earl',NULL,NULL),(247451,'Earth Wind & Fire',NULL,NULL),(247460,'Brian Easdale',1909,1995),(247524,'Guy East',NULL,NULL),(247532,'Jeff East',1957,NULL),(247577,'Gregg Easterbrook',NULL,NULL),(247579,'Leslie Easterbrook',1949,NULL),(247594,'Chris Easterly',1975,NULL),(247628,'Carole Eastman',1934,2004),(247642,'George Eastman',1942,NULL),(247653,'Kevin Eastman',1962,NULL),(247659,'Marilyn Eastman',1933,2021),(247672,'Rodney Eastman',1967,NULL),(247691,'Robert Easton',1930,2011),(247762,'Kyle Eastwood',1968,NULL),(247787,'Andrew Eaton',1960,NULL),(247881,'Shirley Eaton',1937,NULL),(247885,'Timothy Eaton',NULL,NULL),(247933,'Shoji Ehara',NULL,NULL),(247939,'Fred Ebb',1928,2004),(247954,'Dagmar Ebbesen',1891,1954),(247977,'John Ebden',NULL,NULL),(248054,'Thom Eberhardt',1947,NULL),(248082,'Oliver Eberle',NULL,NULL),(248161,'Walter Ebert',1907,NULL),(248178,'Christopher Eberts',NULL,NULL),(248180,'Jake Eberts',1941,2012),(248203,'Blandine Ebinger',1899,1993),(248248,'Douglas J. Eboch',1967,NULL),(248254,'Eriq Ebouaney',1967,NULL),(248291,'Maude Eburne',1875,1960),(248334,'Ted Eccles',1955,NULL),(248364,'Juan Echanove',1961,NULL),(248401,'Arantxa Echevarría',NULL,NULL),(248408,'Emilio Echevarría',NULL,NULL),(248461,'Megalyn Echikunwoke',NULL,NULL),(248495,'Gary Eck',NULL,NULL),(248552,'Michael Eckelt',NULL,NULL),(248595,'Mark Eckersley',NULL,NULL),(248600,'Andrea Eckert',1958,NULL),(248680,'Gwen Eckhaus',1960,NULL),(248692,'Steven Eckholdt',1961,NULL),(248740,'George Eckstein',1928,2009),(248767,'Umberto Eco',1932,2016),(248785,'Michael Economou',1928,2020),(248786,'Nicolas Economou',1953,1993),(248890,'Helen Jerome Eddy',1897,1990),(248904,'Nelson Eddy',1901,1967),(248913,'Sonya Eddy',1967,2022),(248942,'Uli Edel',1947,NULL),(248944,'Jana Edelbaum',1965,NULL),(248997,'Pawel Edelman',1958,NULL),(249041,'Dan Edelstein',NULL,NULL),(249050,'Neal Edelstein',NULL,NULL),(249133,'Mark Edward Edens',NULL,NULL),(249134,'Michael Edens',1951,2021),(249136,'Roger Edens',1905,1970),(249186,'Arthur Edeson',1891,1970),(249189,'Fredrik Edfeldt',1972,NULL),(249291,'Joel Edgerton',1974,NULL),(249379,'Thomas A. Edison',1847,1931),(249421,'Ben Edlund',1968,NULL),(249525,'Tracey E. Edmonds',1967,NULL),(249526,'Walter D. Edmonds',1903,1998),(249550,'Sarah Edmondson',1977,NULL),(249557,'Greg Edmonson',NULL,NULL),(249622,'Beatie Edney',1962,NULL),(249682,'Margaret Edson',NULL,NULL),(249735,'Allan Edwall',1924,1997),(249882,'Cheryl Edwards',NULL,NULL),(249897,'Cory Edwards',1968,NULL),(249962,'Edward Edwards',NULL,NULL),(250046,'Hugh Edwards',1951,NULL),(250053,'J. Gordon Edwards',1867,1925),(250172,'Linda Edwards',NULL,NULL),(250360,'Sherman Edwards',1919,1981),(250366,'Snitz Edwards',1868,1937),(250368,'Stacy Edwards',1965,NULL),(250373,'Stephen Edwards',1972,NULL),(250395,'Ted Edwards',1884,1945),(250410,'Todd Edwards',1971,NULL),(250436,'Vince Edwards',1928,1996),(250532,'Bobby Eerhart',1947,NULL),(250643,'Aeryk Egan',1978,NULL),(250680,'James Egan',NULL,NULL),(250724,'Richard Egan',1921,1987),(250735,'Sam Egan',1948,NULL),(250743,'Susan Egan',1970,NULL),(250755,'Shin\'ya Egawa',NULL,NULL),(250774,'Julie Ege',1943,2008),(250790,'Aud Egede-Nissen',1893,1974),(250813,'Nikolaj Egelund',1968,NULL),(250867,'David Eggby',1950,NULL),(250958,'Maren Eggert',1974,NULL),(250964,'Mártha Eggerth',1912,2013),(250995,'Ralph Eggleston',1965,2022),(251010,'Peggy Eghbalian',NULL,NULL),(251021,'José Ángel Egido',1951,NULL),(251033,'Ólafur Egilsson',1977,NULL),(251050,'Charles H. Eglee',1951,NULL),(251139,'Yôsuke Eguchi',1967,NULL),(251158,'Julieta Egurrola',NULL,NULL),(251305,'Bo Ehrhardt',1963,NULL),(251328,'Kerry Ehrin',NULL,NULL),(251363,'Jon Ehrlich',NULL,NULL),(251367,'Karl Ehrlich',1896,1962),(251432,'Lia Eibenschütz',1899,1985),(251502,'Manfred Eicher',1943,NULL),(251516,'Bernhard Eichhorn',1904,1980),(251526,'Karoline Eichhorn',1965,NULL),(251536,'Bernd Eichinger',1949,2011),(251550,'Glenn Eichler',NULL,NULL),(251593,'Bob Eick',NULL,NULL),(251632,'Philippe Eidel',1956,2018),(251678,'David Eigenberg',1964,NULL),(251736,'David Eilenberg',NULL,NULL),(251774,'Fernando Eimbcke',1970,NULL),(251801,'Ludovico Einaudi',1955,NULL),(251809,'Scott Einbinder',NULL,NULL),(251812,'Simon Eine',1936,2020),(251849,'Richard Einhorn',1952,NULL),(251935,'Robert Eisele',NULL,NULL),(251945,'Mihály Eisemann',1898,1966),(251948,'Andrew S. Eisen',NULL,NULL),(251964,'Robert S. Eisen',1924,1986),(251986,'Jesse Eisenberg',1983,NULL),(252006,'Susan Eisenberg',1964,NULL),(252046,'Rafael Eisenman',NULL,NULL),(252065,'Bernard Eisenschitz',NULL,NULL),(252067,'Debra Eisenstadt',NULL,NULL),(252100,'Jo Eisinger',1909,1991),(252111,'Anthony Eisley',1925,2003),(252135,'Breck Eisner',1970,NULL),(252140,'Eric Eisner',NULL,NULL),(252155,'Philip Eisner',NULL,NULL),(252162,'Will Eisner',1917,2005),(252230,'Chiwetel Ejiofor',1977,NULL),(252238,'Carmen Ejogo',1973,NULL),(252299,'Lars Ekborg',1926,1969),(252321,'Allan Ekelund',1918,2009),(252345,'Bengt Ekerot',1920,1971),(252382,'Susan Ekins',1959,NULL),(252528,'Jon Ekstrand',1976,NULL),(252677,'Darina Al Joundi',NULL,NULL),(252728,'Khaled Nabawy',1966,NULL),(252832,'Nicholas Kadi',1952,NULL),(252961,'Idris Elba',1972,NULL),(252970,'Diana Elbaum',NULL,NULL),(252979,'Vincent Elbaz',1971,NULL),(252992,'Ed Elbert',NULL,NULL),(253018,'Pascal Elbé',1967,NULL),(253035,'Ron Eldard',1965,NULL),(253068,'Judyann Elder',1948,NULL),(253106,'Kevin Alyn Elders',NULL,NULL),(253120,'Kristian Eidnes Andersen',NULL,NULL),(253214,'Laurice Elehwany',NULL,NULL),(253216,'Karra Elejalde',1960,NULL),(253279,'Mike Eley',NULL,NULL),(253292,'Martin Elfand',1937,NULL),(253301,'Konrad Elfers',1919,1996),(253311,'David Elfick',1944,NULL),(253313,'Haim Frank Ilfman',1970,NULL),(253323,'Harry Elfont',NULL,NULL),(253355,'Richard Elfyn',NULL,NULL),(253415,'Bob Elia',NULL,NULL),(253428,'Caroline Eliacheff',NULL,NULL),(253486,'Jonathan Elias',1956,NULL),(253498,'Michael Elias',NULL,NULL),(253528,'Dorothy Elias-Fahn',1962,NULL),(253624,'Jed Elinoff',NULL,NULL),(253672,'T.S. Eliot',1888,1965),(253705,'Christine Elise',1965,NULL),(253708,'Kimberly Elise',1967,NULL),(253727,'Serge Elissalde',1962,NULL),(253759,'John Elizalde',1925,2013),(253813,'Ronit Elkabetz',1964,2016),(253844,'Rachel Elkind',1939,NULL),(253865,'Hillard Elkins',1929,2010),(253899,'Tom Elkins',NULL,NULL),(253902,'Boris Elkis',1973,NULL),(254085,'Tom Ellery',NULL,NULL),(254118,'Yvonne Elliman',1951,NULL),(254120,'Doug Ellin',1968,NULL),(254153,'Duke Ellington',1899,1974),(254154,'E.A. Ellington',NULL,1975),(254178,'Adam Elliot',1972,NULL),(254193,'Bonnie Elliott',NULL,NULL),(254210,'Damien Elliott',1972,NULL),(254213,'David Elliot',NULL,NULL),(254217,'Dean Elliott',1917,1999),(254243,'Jane Elliot',1947,NULL),(254288,'Michael Elliot',NULL,NULL),(254291,'Mike Elliott',NULL,NULL),(254332,'Su Elliot',1950,NULL),(254362,'Alison Elliott',1970,NULL),(254383,'Bill Elliott',NULL,NULL),(254402,'Chris Elliott',1960,NULL),(254477,'Jack Elliott',1927,2001),(254488,'Janice Elliott',1931,1995),(254580,'Paul Elliott',NULL,NULL),(254616,'Ross Elliott',1917,1999),(254632,'Stephan Elliott',1964,NULL),(254645,'Ted Elliott',1961,NULL),(254670,'William Elliott',1934,1983),(254690,'Hans Rameau',1901,1980),(254712,'Aunjanue Ellis-Taylor',1969,NULL),(254735,'Bret Easton Ellis',1964,NULL),(254760,'Chris Ellis',1956,NULL),(254786,'David R. Ellis',1952,2013),(254803,'Don Ellis',1934,1978),(254872,'Howard Ellis',NULL,NULL),(254886,'James Ellis',NULL,NULL),(254927,'Juliet Ellis',NULL,NULL),(255030,'Peter B. Ellis',NULL,NULL),(255145,'Warren Ellis',NULL,NULL),(255156,'Art Ellison',1899,1994),(255175,'Chase Ellison',1993,NULL),(255196,'Harlan Ellison',1934,2018),(255199,'James Ellison',1910,1993),(255264,'Richard Ellmann',1918,1987),(255278,'James Ellroy',1948,NULL),(255296,'Carl Ellsworth',NULL,NULL),(255330,'Greg Ellwand',NULL,NULL),(255334,'Alison Ellwood',1961,NULL),(255353,'Lisa Ellzey',NULL,NULL),(255360,'Stéphane Elmadjian',NULL,NULL),(255362,'Gad Elmaleh',1971,NULL),(255375,'Lawrence Elman',1965,NULL),(255440,'Suzy Elmiger',NULL,NULL),(255475,'Eric Elmosnino',1964,NULL),(255544,'Xabier Elorriaga',1944,NULL),(255563,'Jean-Claude Eloy',1938,NULL),(255613,'Jon Else',NULL,NULL),(255678,'Hannelore Elsner',1942,2019),(255842,'Gonzalo Elvira Alvarez',NULL,NULL),(255891,'Cassian Elwes',1959,NULL),(255900,'Roger Elwin',1950,NULL),(255946,'Kevin Elyot',1951,2014),(255979,'Carme Elias',1951,NULL),(256075,'Ouassini Embarek',NULL,NULL),(256079,'Matt Ember',1961,NULL),(256121,'Ethan Embry',1978,NULL),(256134,'Matthias Emcke',1963,NULL),(256189,'Caleb Emerson',1976,NULL),(256216,'Hope Emerson',1897,1960),(256219,'Jim Emerson',1957,NULL),(256221,'John Emerson',1874,1956),(256228,'Karrie Emerson',1959,NULL),(256283,'Brent Emery',NULL,NULL),(256289,'Dick Emery',1915,1983),(256298,'Gilbert Emery',1875,1945),(256305,'John Emery',1905,1964),(256312,'Katherine Emery',1906,1980),(256343,'Ross Emery',NULL,NULL),(256361,'David Emge',1946,NULL),(256399,'Daniel Emilfork',1924,2006),(256467,'Jacques Emmanuel',1920,1998),(256475,'François Emmanuelli',NULL,NULL),(256497,'Toby Emmerich',1963,NULL),(256532,'E.V.H. Emmett',1902,1971),(256542,'Randall Emmett',1971,NULL),(256599,'Linda Emond',1959,NULL),(256609,'Tôru Emori',1944,NULL),(256658,'Tameka Empson',1977,NULL),(256707,'Kyôko Enami',1942,2018),(256722,'John Enbom',1968,NULL),(256756,'Luis S. Enciso',1930,NULL),(256764,'Annina Enckell',1957,NULL),(256779,'Michael Ende',1929,1995),(256818,'Robert Enders',1919,2007),(256831,'Cy Endfield',1914,1995),(256861,'Ken\'ichi Endô',1961,NULL),(256862,'Kôji Endô',1964,NULL),(256870,'Shûsaku Endô',1923,1996),(256880,'Guy Endore',1900,1970),(256890,'Lena Endre',1955,NULL),(256896,'Sigve Endresen',1953,NULL),(256918,'Kumiko Endô',1978,NULL),(256960,'Harry Enfield',1961,NULL),(256983,'John Eng',NULL,NULL),(257077,'Georgia Engel',1948,2019),(257102,'Judith Engel',1969,NULL),(257143,'Samuel G. Engel',1904,1984),(257171,'Amy Engelberg',NULL,NULL),(257177,'Wendy Engelberg',NULL,NULL),(257209,'Jack Engelhard',1940,NULL),(257237,'Anke Engelke',1965,NULL),(257258,'Robert Engelman',NULL,NULL),(257259,'Tom Engelman',NULL,NULL),(257306,'Robert Engels',NULL,NULL),(257323,'Linda Engelsiepen',NULL,NULL),(257333,'Trevor Engelson',1976,NULL),(257417,'Bryan England',NULL,NULL),(257424,'Dave England',1969,NULL),(257481,'Otto Englander',1906,1969),(257513,'Ryan Engle',1979,NULL),(257554,'Michael Engler',NULL,NULL),(257606,'Diane English',1948,NULL),(257646,'Jonathan English',NULL,NULL),(257698,'George Englund',1926,2017),(257752,'Charles Engstrom',NULL,NULL),(257866,'Adolphe d\'Ennery',1811,1899),(257923,'Lampton Enochs',NULL,NULL),(257939,'Yôji Enokido',1963,NULL),(257969,'Mireille Enos',1975,NULL),(257991,'Jérôme Enrico',NULL,NULL),(257992,'Robert Enrico',1931,2001),(258015,'Ray Enright',1896,1965),(258059,'Thom Enriquez',NULL,NULL),(258098,'Max Enscoe',NULL,NULL),(258127,'Eve Ensler',1953,NULL),(258172,'Geoffrey Enthoven',1974,NULL),(258195,'Julie Entwisle',NULL,NULL),(258200,'John Entwistle',1944,2002),(258221,'Ildikó Enyedi',1955,NULL),(258272,'Károly Eperjes',1954,NULL),(258286,'Delia Ephron',1944,NULL),(258288,'Henry Ephron',1911,1992),(258290,'Phoebe Ephron',1914,1971),(258346,'Jeannie Epper',1941,NULL),(258370,'Tom Epperson',NULL,NULL),(258388,'Louis Eppolito',1948,2019),(258390,'Jack Epps Jr.',1949,NULL),(258402,'Mike Epps',1970,NULL),(258418,'Adam Jay Epstein',NULL,NULL),(258420,'Alex Epstein',1963,NULL),(258424,'Anne Goursaud',NULL,NULL),(258431,'Brad Epstein',NULL,NULL),(258459,'Fernando Epstein',1969,NULL),(258480,'Jerome Epstein',1922,1991),(258493,'Julius J. Epstein',1909,2000),(258525,'Philip G. Epstein',1909,1952),(258531,'Rob Epstein',1955,NULL),(258627,'Greg Erb',NULL,NULL),(258732,'Reha Erdem',1960,NULL),(258775,'Leo Erdody',1888,1949),(258777,'Richard Erdoes',1912,2008),(258784,'Yilmaz Erdogan',1967,NULL),(258908,'Ayhan Ergürsel',1961,2019),(258977,'Víctor Erice',1940,NULL),(259003,'Leon Ericksen',1937,2007),(259027,'Christian Erickson',NULL,NULL),(259132,'Jacob Ericksson',1967,NULL),(259152,'John Ericson',1926,2020),(259259,'Jacob Eriksen',1944,1991),(259317,'Bjorn Eriksson',NULL,NULL),(259435,'Lilay Huser',1958,NULL),(259445,'Tom Erisman',1954,NULL),(259506,'Jacques Herlin',1927,2014),(259567,'Martin Erlichman',1929,NULL),(259574,'Benedikt Erlingsson',1969,NULL),(259589,'John Erman',1935,2021),(259689,'Donald W. Ernst',1934,2023),(259712,'Konstantin Ernst',1961,NULL),(259722,'Max Ernst',1891,1976),(259724,'Ole Ernst',1940,2013),(259762,'Tommi Eronen',1968,NULL),(259821,'George Erschbamer',1954,NULL),(259831,'Homayoun Ershadi',1947,NULL),(259838,'Chester Erskine',1903,1986),(259984,'Bill Erwin',1914,2010),(260224,'Arlen Escarpeta',NULL,NULL),(260239,'Bernard Eschassériaux',1924,2010),(260244,'Eberhard Esche',1933,2006),(260322,'José Escobar',1908,1994),(260389,'Jean-Yves Escoffier',1950,2003),(260402,'José Luis Escolar',1960,NULL),(260449,'Cuca Escribano',1973,NULL),(260556,'Amir Esfandiari',NULL,NULL),(260557,'Mohammad Esfandiari',NULL,NULL),(260675,'John Eskow',NULL,NULL),(260728,'Jill Esmond',1908,1990),(260800,'Moctesuma Esparza',1949,NULL),(260871,'Dwain Esper',1893,1982),(260884,'Núria Espert',1935,NULL),(261133,'Anthony Esposito',NULL,NULL),(261170,'Jennifer Esposito',1973,NULL),(261176,'John Esposito',NULL,NULL),(261294,'Laura Esquivel',1950,NULL),(261400,'Harry Essex',1910,1997),(261435,'Susie Essman',1955,NULL),(261455,'Howard Estabrook',1884,1978),(261629,'Danishka Esterhazy',NULL,NULL),(261663,'Larry Estes',NULL,NULL),(261724,'Joe Estevez',1946,NULL),(261795,'Carlos Estrada',1927,2001),(261884,'Nonato Estrela',NULL,NULL),(261911,'Robin Estridge',1920,2002),(261914,'Allen Estrin',NULL,NULL),(261968,'Makiko Esumi',1966,NULL),(261977,'Károly Esztergályos',1941,NULL),(262007,'Arantxa Etcheverria',NULL,NULL),(262026,'Eric Etebari',NULL,NULL),(262052,'Dan Etheridge',NULL,NULL),(262080,'Alphonse Ethier',1874,1943),(262167,'Peter Ettedgui',NULL,NULL),(262210,'Lukas Ettlin',1975,NULL),(262272,'Shari Eubank',1947,NULL),(262325,'Jeffrey Eugenides',1960,NULL),(262368,'Dale Eunson',1904,2002),(262374,'Wesley Eure',1951,NULL),(262381,'Euripides',NULL,NULL),(262509,'Charles Evans Jr.',NULL,NULL),(262521,'Alice Evans',NULL,NULL),(262543,'Art Evans',1942,NULL),(262595,'Bruce A. Evans',1946,NULL),(262622,'Charles Evans',1926,2007),(262635,'Chris Evans',1981,NULL),(262647,'Clifford Evans',1912,1985),(262678,'David Evans',NULL,NULL),(262693,'David Mickey Evans',1962,NULL),(262702,'Deborah Evans',NULL,NULL),(262725,'Edith Evans',1888,1976),(262775,'Gene Evans',1922,1998),(262915,'Jon Evans',NULL,NULL),(262935,'Kate Evans',NULL,NULL),(262968,'Lee Evans',1964,NULL),(262986,'Lissa Evans',NULL,NULL),(263004,'Madge Evans',1909,1981),(263009,'Marc Evans',1963,NULL),(263010,'Marc Evans',NULL,NULL),(263052,'Maurice Evans',1901,1989),(263172,'Robert Evans',1930,2019),(263236,'Stephen Evans',1946,NULL),(263237,'Stephen Evans',NULL,NULL),(263372,'Bernard Evein',1929,2006),(263393,'Judith Evelyn',1909,1967),(263395,'Mrs. Evelyn',NULL,NULL),(263518,'Gimel Everett',1951,2011),(263591,'Rex Everhart',1920,2000),(263594,'Ananda Everingham',1982,NULL),(263645,'Jason Evers',1922,2005),(263652,'Jörg Evers',1950,2023),(263691,'Corinna Everson',1958,NULL),(263739,'Ron Eveslage',NULL,NULL),(263740,'Steve Evets',1960,NULL),(263759,'Briana Evigan',1986,NULL),(263839,'Patrick Ewald',NULL,NULL),(263867,'William Ewart',NULL,NULL),(263885,'Tom Ewell',1909,1994),(263941,'Barbara Ewing',1939,NULL),(263988,'Marty P. Ewing',NULL,NULL),(263989,'Michael Ewing',NULL,NULL),(264088,'Clive Exton',1930,2007),(264132,'Tom Eyen',1940,1991),(264154,'Edda Björg Eyjólfsdóttir',NULL,NULL),(264187,'Thea Eymèsz',1927,2015),(264220,'Chris Eyre',1969,NULL),(264236,'Richard Eyre',1943,NULL),(264245,'Ricky Eyres',NULL,NULL),(264303,'Moeko Ezawa',1939,2022),(264330,'Maynard Eziashi',1965,NULL),(264338,'Carlos Ezquerra',1947,2018),(264359,'Adi Ezroni',1978,NULL),(264411,'Lady Pink',NULL,NULL),(264480,'George Faber',1960,NULL),(264489,'Jallo Faber',1971,NULL),(264506,'Matthew Faber',1973,2020),(264520,'Steve Faber',NULL,NULL),(264554,'Françoise Fabian',1933,NULL),(264579,'Patrick Fabian',NULL,NULL),(264660,'Nanette Fabray',1920,2018),(264679,'Jean-Marc Fabre',1964,NULL),(264692,'Saturnin Fabre',1884,1961),(264762,'Aldo Fabrizi',1905,1990),(264770,'Franco Fabrizi',1916,1995),(264857,'Giannina Facio',1955,NULL),(264878,'Nicholas Factor',NULL,NULL),(265009,'Bob Fagan',NULL,NULL),(265067,'Bill Fagerbakke',1957,NULL),(265091,'Huguette Faget',1922,2016),(265192,'Mary-Anne Fahey',1956,NULL),(265283,'Muriel Fahrion',NULL,NULL),(265303,'Adrian Kwan',NULL,NULL),(265361,'J.W. Fails',NULL,NULL),(265363,'Peter Faiman',1944,NULL),(265416,'Jeff Eden Fair',NULL,NULL),(265418,'Jody Fair',1934,NULL),(265469,'Gladys Fairbanks',1892,1958),(265492,'Craig Fairbrass',1964,NULL),(265535,'William Fairchild',1918,2000),(265563,'Diana Fairfax',1927,2019),(265572,'Marion Fairfax',1875,1970),(265596,'Lyn Fairhurst',1921,2001),(265637,'Michael Fairman',1934,NULL),(265668,'Donald Faison',1974,NULL),(265670,'Frankie Faison',1949,NULL),(265717,'Marianne Faithfull',1946,NULL),(265724,'Bertrand Faivre',NULL,NULL),(265792,'Shichirô Fukazawa',1914,1987),(265852,'Philippe Falardeau',1968,NULL),(265944,'Tracy Falco',NULL,NULL),(265989,'Pietro Falcone',NULL,NULL),(266023,'Roderick Taylor',NULL,NULL),(266029,'Maria Falconetti',1892,1946),(266113,'Stefano Falivene',NULL,NULL),(266162,'Lance Falk',NULL,NULL),(266166,'Lee Falk',1911,1999),(266170,'Lisanne Falk',NULL,NULL),(266184,'Pamela Falk',NULL,NULL),(266186,'Penelope Falk',NULL,NULL),(266239,'Paul Falkenberg',1903,1986),(266255,'Jun Falkenstein',1969,NULL),(266302,'Jim Fall',NULL,NULL),(266377,'Lawrence Jordan',1961,NULL),(266409,'David Fallon',NULL,NULL),(266422,'Jimmy Fallon',1974,NULL),(266430,'Michael Fallon',NULL,NULL),(266441,'Siobhan Fallon Hogan',1961,NULL),(266536,'Harold Faltermeyer',1952,NULL),(266622,'Rick Famuyiwa',1973,NULL),(266635,'Fhi Fan',NULL,NULL),(266646,'Kung-Wing Fan',NULL,NULL),(266658,'Siu-Wong Fan',1973,NULL),(266673,'Barry Fanaro',NULL,NULL),(266684,'Hampton Fancher',1938,NULL),(266777,'Stefen Fangmeier',1960,NULL),(266813,'Michael P. Flannigan',NULL,NULL),(266824,'Dakota Fanning',1994,NULL),(266890,'Ennio Fantastichini',1955,2018),(266899,'John Fante',1909,1983),(266954,'Alessio Fantozzi',NULL,NULL),(266966,'Stephanie Lai',NULL,NULL),(266995,'Stephanie Faracy',1952,NULL),(267018,'Ladislas Farago',1906,1980),(267020,'Francis Edward Faragoh',1895,1966),(267022,'Sándor Faragó',1899,1957),(267026,'Katinka Faragó',1936,NULL),(267042,'Golshifteh Farahani',1983,NULL),(267077,'Mojgan Faramarzi',NULL,NULL),(267115,'Hossain Farazmand',NULL,NULL),(267232,'James Farentino',1938,2012),(267279,'Antonio Fargas',1946,NULL),(267287,'Coralie Fargeat',NULL,NULL),(267288,'Jean-Pol Fargeau',NULL,NULL),(267301,'Marco Fargnoli',NULL,NULL),(267302,'Steven Fargnoli',1949,2001),(267399,'Maurício Farias',1960,NULL),(267449,'Carolyn Farina',NULL,NULL),(267497,'Julian Farino',NULL,NULL),(267504,'Alexander Faris',1921,2015),(267506,'Anna Faris',1976,NULL),(267511,'Sean Faris',1982,NULL),(267512,'Valerie Faris',1958,NULL),(267537,'Joseph Jefferson Farjeon',1883,1955),(267565,'Ferenc Farkas',1905,2000),(267586,'Linda Faye Farkas',NULL,NULL),(267645,'Guy Farley',1963,NULL),(267650,'Jim Farley',1882,1947),(267695,'Leonard Farlinger',NULL,NULL),(267715,'Bahman Farmanara',1941,NULL),(267724,'Bill Farmer',1952,NULL),(267785,'Mylène Farmer',1961,NULL),(267805,'Todd Farmer',1968,NULL),(267812,'Vera Farmiga',1973,NULL),(267838,'Alberto Farnese',1926,1996),(267868,'Joseph Farnham',1884,1931),(267912,'William Farnum',1876,1953),(267913,'Dorothy Farnum',1900,1970),(267943,'Harun Farocki',1944,2014),(268007,'Diane Farr',1969,NULL),(268051,'Ned Farr',NULL,NULL),(268052,'Patricia Farr',1913,1948),(268107,'Daniel Farrands',1969,NULL),(268119,'David Farrar',1908,1995),(268179,'Barry Farrell',NULL,NULL),(268199,'Colin Farrell',1976,NULL),(268225,'Glenda Farrell',1904,1971),(268230,'Henry Farrell',1920,2006),(268286,'Mike Farrell',1939,NULL),(268294,'Neil Farrell',1956,NULL),(268297,'Nicholas Farrell',1955,NULL),(268331,'Sharon Farrell',1940,2023),(268350,'Timothy Farrell',1922,1989),(268380,'Peter Farrelly',1956,NULL),(268468,'John Farris',1936,NULL),(268488,'Amir Farrokh Hashemian',NULL,NULL),(268513,'John Farrow',1904,1963),(268543,'Dominique Farrugia',1962,NULL),(268616,'Suzanne Farwell',NULL,NULL),(268628,'Joëy Faré',NULL,NULL),(268685,'Mike Fash',1940,NULL),(268741,'David Mucci Fassett',NULL,NULL),(268742,'Jay Fassett',1889,1973),(268770,'Alvin L. Fast',NULL,NULL),(268779,'Howard Fast',1914,2003),(268945,'Aleksandr Fatyushin',1951,2003),(268949,'Michel Fau',1964,NULL),(268988,'René Fauchois',1882,1962),(269006,'Étienne Fauduet',NULL,NULL),(269127,'Sebastian Faulks',1953,NULL),(269141,'Jason Faunt',1974,NULL),(269168,'Christian Faure',NULL,NULL),(269197,'Renée Faure',1918,2005),(269226,'Mark Fauser',NULL,NULL),(269260,'Lauren Faust',1974,NULL),(269265,'Martin Faust',1886,1943),(269420,'Leonardo Favio',1938,2012),(269442,'Brett Favre',1969,NULL),(269463,'Jon Favreau',1966,NULL),(269502,'John Fawcett',1968,NULL),(269542,'Nat Faxon',1975,NULL),(269570,'Hilda Fay',1973,NULL),(269623,'William Jerome Fay',1909,1968),(269662,'Frances Faye',1912,1991),(269683,'Scott Faye',NULL,NULL),(269689,'Dodi Fayed',1955,1997),(269751,'Adrienne Fazan',1906,1986),(269831,'Paul Faßnacht',1949,NULL),(269841,'László feLugossy',1947,NULL),(269860,'Jim Fealy',NULL,NULL),(269879,'Kenneth Fearing',1902,1961),(269936,'Feather',NULL,NULL),(269940,'Jacqueline Feather',NULL,NULL),(269992,'Christian Fechner',1944,2008),(270096,'Paul Federbush',NULL,NULL),(270098,'Avi Federgreen',NULL,NULL),(270119,'Luciano Federico',NULL,NULL),(270147,'Birgitte Federspiel',1925,2005),(270263,'Brian Fee',1975,NULL),(270359,'Shane Connor',NULL,NULL),(270415,'Friedrich Feher',1889,1950),(270449,'François Fehner',NULL,NULL),(270458,'Rudi Fehr',1911,1999),(270470,'Trevor Fehrman',1981,NULL),(270486,'György Fehér',1939,2002),(270502,'Mu Fei',1906,1951),(270508,'Fei Zhao',1961,NULL),(270546,'Halley Feiffer',1984,NULL),(270547,'Jules Feiffer',1929,NULL),(270549,'Erik Feig',NULL,NULL),(270559,'Kevin Feige',1973,NULL),(270568,'Brenda Feigen',NULL,NULL),(270618,'Gerald Feil',1933,2021),(270625,'JJ Feild',1978,NULL),(270645,'David C. Fein',NULL,NULL),(270678,'Nina Feinberg',NULL,NULL),(270760,'Jeffrey Fierson',1976,NULL),(270761,'Bruce Feirstein',1956,NULL),(270765,'Felix E. Feist',1910,1965),(270766,'Frances Feist',1903,1981),(270806,'Buzz Feitshans IV',1959,NULL),(270808,'Fred R. Feitshans Jr.',1909,1987),(270809,'Buzz Feitshans',1937,NULL),(270822,'Daniela Fejerman',NULL,NULL),(270828,'Lyudmila Feyginova',NULL,NULL),(270830,'Raphael Fejtö',1974,NULL),(270835,'Judit Fejér',NULL,NULL),(270841,'Steve Feke',NULL,NULL),(271012,'Charles K. Feldman',1904,1968),(271022,'Dennis Feldman',NULL,NULL),(271026,'Edward S. Feldman',1929,2020),(271061,'Jonathan Marc Feldman',NULL,NULL),(271064,'José Edgar Feldman',NULL,NULL),(271098,'Randy Feldman',NULL,NULL),(271156,'Barbara Feldon',1933,NULL),(271165,'Tovah Feldshuh',1952,NULL),(271167,'Al Feldstein',1925,2014),(271246,'Jean-Loup Felicioli',NULL,NULL),(271338,'Paul A. Felix',NULL,NULL),(271402,'Sam Fell',NULL,NULL),(271408,'Mohamed Fellag',1950,NULL),(271432,'Catherine Feller',1939,NULL),(271446,'Michel Feller',NULL,NULL),(271474,'Todd Fellman',NULL,NULL),(271479,'Eric Fellner',1959,NULL),(271495,'Roger Fellous',1919,2006),(271501,'Julian Fellowes',1949,NULL),(271515,'Edith Fellows',1923,2011),(271544,'Hansjörg Felmy',1931,2007),(271605,'Ivo Felt',1968,NULL),(271641,'Earl Felton',1909,1972),(271644,'Greg Felton',NULL,NULL),(271657,'Tom Felton',1987,NULL),(271658,'Verna Felton',1890,1966),(271694,'Paco Femenia',NULL,NULL),(271770,'Carol Fenelon',NULL,NULL),(271799,'Feng Hsu',1950,NULL),(271815,'Xiaogang Feng',1958,NULL),(271831,'Michael Fengler',1940,NULL),(271854,'Pablo F. Fenjves',1956,NULL),(271882,'Suzanne Fenn',NULL,NULL),(271890,'Albert Fennell',1920,1988),(271940,'John Fenner',1951,NULL),(272026,'Bernie Fenton',1921,2001),(272045,'Frank Fenton',1903,1971),(272059,'Leslie Fenton',1902,1978),(272086,'Simon Fenton',1976,NULL),(272090,'Thomas Fenton',NULL,NULL),(272128,'Peggy Thompson',1907,1987),(272140,'Éva Fenyvessy',1911,2009),(272173,'Colm Feore',1958,NULL),(272209,'Edna Ferber',1885,1968),(272213,'Lawrence Ferber',1969,NULL),(272224,'Heino Ferch',1963,NULL),(272252,'Peter Ferdinando',NULL,NULL),(272295,'Adam Ferency',1951,NULL),(272324,'Spike Feresten',NULL,NULL),(272401,'Craig Ferguson',1962,NULL),(272432,'Frank Ferguson',1906,1978),(272471,'Jay Ferguson',1947,NULL),(272479,'Jesse Tyler Ferguson',1975,NULL),(272511,'Larry Ferguson',1940,NULL),(272521,'Lynn Ferguson',1965,NULL),(272536,'Matthew Ferguson',1973,NULL),(272568,'Norman Ferguson',1902,1957),(272581,'Rebecca Ferguson',1983,NULL),(272601,'Sarah Ferguson',1959,NULL),(272605,'Scott Ferguson',NULL,NULL),(272649,'Karen Fergusson',NULL,NULL),(272677,'Sabrina Ferilli',1964,NULL),(272686,'Anouk Ferjac',1932,NULL),(272704,'Guy Ferland',1966,NULL),(272706,'Jodelle Ferland',1994,NULL),(272749,'Michel Fermaud',1921,2007),(272767,'Robert Fern',1942,2022),(272857,'João Fernandes',1939,NULL),(272948,'Craig Fernandez',NULL,NULL),(273033,'Peter Fernandez',1927,2010),(273061,'Wilhelmenia Fernandez',1949,NULL),(273127,'Charlene Fernetz',1960,NULL),(273178,'Fernando Fernán Gómez',1921,2007),(273239,'Baltasar Fernández Cué',1878,1966),(273259,'Felipe Fernández del Paso',1966,NULL),(273273,'Wenceslao Fernández Flórez',1884,1964),(273297,'Rossana Fernández Maldonado',1977,NULL),(273304,'Miguel Fernández Mila',NULL,2011),(273327,'Julio Fernández',1947,NULL),(273335,'Ángel Fernández Santos',1934,2004),(273414,'Benjamín Fernández',NULL,NULL),(273464,'Eduard Fernández',1964,NULL),(273795,'Ángel Luis Fernández',1947,NULL),(273812,'Pascal Ferone',NULL,NULL),(273832,'Gustavo Ferrada',NULL,NULL),(273863,'Pascale Ferran',1960,NULL),(273880,'Jean Hamon',NULL,NULL),(273904,'Giancarlo Ferrando',1939,2020),(273919,'Elena Ferrante',1943,NULL),(273925,'Lainie Frasier',1956,NULL),(273959,'Consuelo Ferrara',NULL,NULL),(273980,'Giuseppe Ferrara',1932,2016),(273988,'Juan Ferrara',1943,NULL),(274008,'Stéphane Ferrara',1956,NULL),(274162,'Danièle Ferraro',NULL,NULL),(274262,'Laurence Ferreira Barbosa',1958,NULL),(274371,'Louis Ferreira',1966,NULL),(274559,'Heidi Ferrer',1970,2021),(274574,'José Luis Ferrer',NULL,NULL),(274668,'Aleshka Ferrero',NULL,NULL),(274676,'Jesús Ferrero',NULL,NULL),(274704,'Veronica Ferres',1965,NULL),(274721,'Dante Ferretti',1943,NULL),(274729,'Robert A. Ferretti',NULL,NULL),(274754,'Elda Ferri',NULL,NULL),(274830,'Matty Ferrigno',1925,2003),(274833,'Victoria Ferrigno',NULL,NULL),(274842,'Chad Ferrin',1973,NULL),(274853,'Franco Ferrini',1944,NULL),(274905,'Michael Ferris',1961,NULL),(274913,'Pam Ferris',1948,NULL),(274923,'Walter Ferris',1882,1965),(274949,'Martine Ferrière',1926,2012),(274968,'Carlos Ferro',NULL,NULL),(275044,'Ismaël Ferroukhi',1962,NULL),(275081,'Jean Ferry',1906,1974),(275213,'Gabriele Ferzetti',1925,2015),(275234,'Dan E. Fesman',NULL,NULL),(275244,'Larry Fessenden',1963,NULL),(275250,'Javier Fesser',1964,NULL),(275260,'Michel Fessler',NULL,NULL),(275264,'Joachim Fest',1926,2006),(275269,'Pasquale Festa Campanile',1927,1986),(275277,'Shana Feste',1976,NULL),(275284,'Robert Festinger',NULL,NULL),(275286,'David S. Goyer',1965,NULL),(275312,'Jan Fethke',1903,1980),(275347,'Peter Fetterman',1948,NULL),(275417,'Mark Feuerstein',1971,NULL),(275418,'Jeff Feuerzeig',NULL,NULL),(275428,'Edwige Feuillère',1907,1998),(275475,'Cort Fey',NULL,NULL),(275486,'Tina Fey',1970,NULL),(275494,'Jacques Feyder',1885,1948),(275509,'Richard Feynman',1918,1988),(275548,'Tommaso Fiacchino',NULL,NULL),(275553,'João Fiadeiro',NULL,NULL),(275629,'Glenn Ficarra',NULL,NULL),(275638,'Frédéric Fichefet',NULL,NULL),(275651,'Niv Fichman',1958,NULL),(275698,'Andy Fickman',1963,NULL),(275835,'John Fiedler',1925,2005),(275836,'John Fiedler',NULL,NULL),(275897,'Betty Field',1916,1973),(275913,'David Field',NULL,NULL),(276012,'Patrick Field',NULL,NULL),(276019,'Rachel Field',1894,1942),(276039,'S.S. Field',NULL,NULL),(276059,'Ted Field',1953,NULL),(276062,'Todd Field',NULL,NULL),(276065,'Virginia Field',1917,1992),(276101,'Mary Beth Fielder',NULL,NULL),(276144,'Helen Fielding',1958,NULL),(276145,'Henry Fielding',1707,1754),(276160,'Miss Fielding',NULL,NULL),(276169,'Tom Holland',1943,NULL),(276178,'Adam Fields',NULL,NULL),(276196,'Benny Fields',1894,1959),(276227,'Dorothy Fields',1905,1974),(276238,'Freddie Fields',1923,2007),(276248,'Greg Fields',1955,2002),(276253,'Holly Fields',1976,NULL),(276284,'Joseph Fields',1895,1966),(276293,'Kathy Fields',1947,NULL),(276349,'Shane Meadows',1972,NULL),(276353,'Simon Fields',1955,NULL),(276368,'Verna Fields',1918,1982),(276385,'Gregg Fienberg',NULL,NULL),(276399,'Ranulph Fiennes',1944,NULL),(276404,'Andrew Fierberg',NULL,NULL),(276405,'Steven Fierberg',NULL,NULL),(276466,'Jacques Fieschi',1948,NULL),(276541,'Christopher Figg',1957,NULL),(276738,'Rona Figueroa',1972,NULL),(276803,'Vilko Filac',1950,2008),(276821,'Jason Filardi',NULL,NULL),(276823,'Peter Filardi',1962,NULL),(276882,'Jeff Filgo',NULL,NULL),(277116,'Fab Filippo',1973,NULL),(277204,'Jonathan Filley',NULL,NULL),(277213,'Nathan Fillion',1971,NULL),(277217,'Danielle Fillios',NULL,NULL),(277333,'Hal Fimberg',1907,1974),(277337,'Wain Fimeri',NULL,NULL),(277342,'Michael Fimognari',NULL,NULL),(277391,'Buck Finch',NULL,NULL),(277393,'Charles Finch',1962,NULL),(277424,'Jon Finch',1942,2012),(277451,'Scot Finch',1940,2005),(277511,'Joseph Finder',1958,NULL),(277525,'Deborah Findlay',1947,NULL),(277590,'Anne Fine',1947,NULL),(277612,'Harry Fine',1912,1997),(277643,'Morton S. Fine',1916,1991),(277655,'Russell Lee Fine',NULL,NULL),(277700,'Sarah Dawn Finer',1981,NULL),(277704,'Wendy Finerman',1961,NULL),(277722,'David Finfer',1942,2023),(277727,'Sticky Fingaz',1973,NULL),(277730,'Bill Finger',1914,1974),(277759,'Anthony Fingleton',NULL,NULL),(277807,'Harry Julian Fink',1923,2001),(277838,'Margaret Fink',1933,NULL),(277840,'Martin Fink',NULL,NULL),(277874,'Abem Finkel',1889,1948),(277896,'Penney Finkelman Cox',1951,NULL),(277925,'William M. Finkelstein',1952,NULL),(277943,'Fred F. Finklehoffe',1910,1977),(277946,'Ken Finkleman',1946,NULL),(277974,'Fiona Finlay',NULL,NULL),(277975,'Frank Finlay',1926,2016),(278048,'Joe Finley',NULL,NULL),(278073,'William Finley',1940,2012),(278128,'Jon Finn',NULL,NULL),(278178,'Tim Finn',1952,NULL),(278181,'Will Finn',1958,NULL),(278228,'Michael Finnell',NULL,NULL),(278239,'Siobhan Finneran',1966,NULL),(278275,'Gavin Finney',NULL,NULL),(278277,'Jack Finney',1911,1995),(278326,'Augusto Finocchi',NULL,NULL),(278373,'Samuel Finzi',1966,NULL),(278440,'Giovanni Fiore Coltellacci',NULL,NULL),(278447,'Robert Fiore',NULL,NULL),(278475,'Mauro Fiore',1964,NULL),(278503,'Giuseppe Fiorello',1969,NULL),(278540,'Mario Fioretti',1924,2008),(278646,'Eddie Firestone',1920,2007),(278735,'Sam Firstenberg',1950,NULL),(278747,'Julian Firth',1960,NULL),(278759,'Tim Firth',1964,NULL),(278767,'Andrew Fiscella',1966,NULL),(278792,'Harry Fischbeck',1879,1968),(278969,'Jan Fischer',1947,2011),(278979,'Jenna Fischer',1974,NULL),(279036,'Madeleine Fischer',1935,2020),(279064,'Neal Fischer',NULL,NULL),(279225,'Richard Fischoff',NULL,NULL),(279302,'Robert L. Fish',1912,1981),(279314,'Tricia Fish',NULL,NULL),(279376,'Antwone Fisher',1959,NULL),(279412,'Chad Fischer',NULL,NULL),(279441,'Darren Paul Fisher',NULL,NULL),(279518,'Gerry Fisher',1926,2014),(279545,'Isla Fisher',1976,NULL),(279557,'Jasen Fisher',1980,NULL),(279576,'Jim Fisher',NULL,NULL),(279580,'Sukey Fisher',NULL,NULL),(279651,'Lucy Fisher',NULL,NULL),(279702,'Miles Fisher',1983,NULL),(279720,'Noel Fisher',1984,NULL),(279729,'Paul Fisher',NULL,NULL),(279786,'Shug Fisher',1907,1984),(279807,'Terence Fisher',1904,1980),(279830,'Vardis Fisher',1895,1968),(279842,'Simon Fisher-Turner',1954,NULL),(279926,'Jack Fisk',1945,NULL),(280178,'Barry Fitzgerald',1888,1961),(280179,'Benedict Fitzgerald',1949,NULL),(280199,'Christopher Fitzgerald',1972,NULL),(280223,'Edith Fitzgerald',1889,1968),(280230,'Erin Fitzgerald',NULL,NULL),(280234,'F. Scott Fitzgerald',1896,1940),(280242,'Geraldine Fitzgerald',1913,2005),(280245,'Glenn Fitzgerald',1971,NULL),(280333,'Michael Fitzgerald',NULL,NULL),(280396,'Thom Fitzgerald',1968,NULL),(280416,'Ian Fitzgibbon',1962,NULL),(280432,'Lewin Fitzhamon',1869,1961),(280447,'Louise Fitzhugh',1928,1974),(280463,'George Fitzmaurice',1885,1940),(280521,'Gabrielle Fitzpatrick',1967,NULL),(280559,'Leo Fitzpatrick',1978,NULL),(280569,'Michael Fitzpatrick',NULL,NULL),(280707,'Paul Fix',1901,1983),(280745,'Stefan Fjeldmark',1964,NULL),(280814,'Jennifer Flackett',NULL,NULL),(280817,'Diane Flacks',NULL,NULL),(280840,'Fannie Flagg',1944,NULL),(280878,'Frances H. Flaherty',1883,1972),(280886,'Joe Flaherty',1941,NULL),(280901,'Paul Flaherty',1945,NULL),(280904,'Robert J. Flaherty',1884,1951),(280919,'Ennio Flaiano',1910,1972),(280955,'Didier Flamand',1947,NULL),(280961,'Georges Flamant',1903,1990),(281088,'Richard Flanagan',NULL,NULL),(281107,'Tommy Flanagan',1965,NULL),(281130,'Ed Flanders',1934,1995),(281266,'Vidar Flataukan',1975,NULL),(281306,'Gustave Flaubert',1821,1880),(281311,'Seth Flaum',NULL,NULL),(281331,'Martin Flavin',1883,1967),(281359,'Flea',1962,NULL),(281381,'Fred Fleck',1892,1961),(281396,'Ryan Fleck',1976,NULL),(281411,'Gregory Fleeman',1949,2022),(281424,'James Fleet',1952,NULL),(281453,'Susan Fleetwood',1944,1995),(281486,'Charles Fleischer',1950,NULL),(281487,'Dave Fleischer',1894,1979),(281502,'Max Fleischer',1883,1972),(281507,'Richard Fleischer',1916,2006),(281508,'Ruben Fleischer',1974,NULL),(281556,'Walter Reisch',1903,1983),(281567,'Joseph Fleisler',1897,NULL),(281592,'R. Lee Fleming Jr.',NULL,NULL),(281598,'Andrew Fleming',1965,NULL),(281686,'Ian Fleming',1888,1969),(281693,'Jaqueline Fleming',1977,NULL),(281738,'Fiamma Maglione',NULL,2003),(281766,'Rhonda Fleming',1923,2020),(281800,'Tim Fleming',NULL,NULL),(281808,'Victor Fleming',1889,1949),(281866,'Robert Flemyng',1912,1995),(281868,'Harold Flender',1924,1975),(281869,'Rodman Flender',NULL,NULL),(281945,'Anne Fletcher',1966,NULL),(281956,'Brendan Fletcher',1981,NULL),(282001,'Freddie Fletcher',1950,NULL),(282027,'Jack Fletcher',NULL,NULL),(282061,'Lucille Fletcher',1912,2000),(282064,'Mandie Fletcher',1954,NULL),(282105,'Ruth Fletcher',1967,NULL),(282291,'Theodore J. Flicker',1930,2014),(282364,'Denny Martin Flinn',1947,2007),(282435,'Jay C. Flippen',1899,1971),(282530,'Suzanne Flon',1918,2005),(282560,'Kevin Flood',NULL,NULL),(282582,'Ian Flooks',NULL,NULL),(282708,'Isaac Florentine',NULL,NULL),(282936,'Rosario Flores',1963,NULL),(282954,'Ursula Flores',NULL,NULL),(282984,'Robert Florey',1900,1979),(283133,'Richard Flournoy',1901,1967),(283148,'Gilly Flower',1908,2001),(283409,'Barbara Flynn',1948,NULL),(283478,'James Flynn',1965,2023),(283492,'Jerome Flynn',1963,NULL),(283499,'Joe Flynn',1924,1974),(283500,'John Flynn',1932,2007),(283565,'Miriam Flynn',1951,NULL),(283655,'Brendan Flynt',NULL,NULL),(283687,'Harry Flöter',NULL,NULL),(283749,'Annette Focks',1964,NULL),(283780,'Ladislas Fodor',1898,1978),(283792,'Jens Christian Fodstad',NULL,NULL),(283815,'Maxime Foerste',1991,NULL),(283816,'Anna Foerster',NULL,NULL),(283835,'Goffredo Fofi',1937,NULL),(283888,'Eric Fogel',1969,NULL),(283907,'Andrew Fogelson',NULL,NULL),(283910,'Per Anders Fogelström',1917,1998),(283936,'Yaël Fogiel',NULL,NULL),(283942,'James Fogle',1936,2012),(283945,'Dan Fogler',1976,NULL),(283977,'Roy Fogwell',1901,1982),(283997,'Marina Foïs',1970,NULL),(284001,'Claude Foisy',NULL,NULL),(284059,'Eduard Folch',NULL,NULL),(284070,'Meta Louise Foldager Sørensen',1974,NULL),(284078,'Pierre Földes',NULL,NULL),(284129,'Ellen Foley',1951,NULL),(284158,'Jeremy Foley',NULL,NULL),(284239,'Jesús R. Folgar',NULL,NULL),(284302,'The Folkloristas',NULL,NULL),(284308,'Sheree Folkson',NULL,NULL),(284369,'Ari Folman',1962,NULL),(284382,'Andrea Folprecht',NULL,NULL),(284390,'George Folsey Jr.',NULL,NULL),(284503,'Marcello Fondato',1924,2008),(284524,'Naomi Foner',1946,NULL),(284538,'Benson Fong',1916,1987),(284577,'Julie Fong',NULL,NULL),(284583,'Larry Fong',NULL,NULL),(284592,'Mona Fong',1934,2017),(284623,'Jean-François Fonlupt',NULL,NULL),(284638,'Angelino Fons',1936,2011),(284765,'Teresa Font',NULL,NULL),(284774,'Anne Fontaine',1959,NULL),(284780,'Brigitte Fontaine',1939,NULL),(284822,'Jeffrey Stone',1926,2012),(284853,'Paul Fontaine',NULL,NULL),(284858,'Robert Fontaine',1924,1973),(284938,'Patrick Fontana',NULL,NULL),(284974,'Geneviève Fontanel',1936,2018),(285090,'Frédéric Fonteyne',1968,NULL),(285126,'Lloyd Fonvielle',1950,2015),(285135,'Dolores Fonzi',1978,NULL),(285188,'Geoffrey Foot',1915,2010),(285210,'Horton Foote',1916,2009),(285218,'John Taintor Foote',1881,1950),(285232,'Sherman Foote',NULL,NULL),(285264,'Dick Foran',1910,1979),(285302,'Bryan Forbes',1926,2013),(285361,'Kathryn Forbes',1908,1966),(285379,'Maya Forbes',1968,NULL),(285503,'Anitra Ford',1942,NULL),(285610,'Derek Ford',1932,1995),(285617,'Donald Ford',1926,1991),(285643,'Francis Ford',1881,1953),(285683,'Howard J. Ford',1973,NULL),(285701,'Jeffrey Ford',NULL,NULL),(285721,'Josephine Ford',NULL,NULL),(285768,'Maria Ford',NULL,NULL),(285795,'Mick Ford',1952,NULL),(285818,'Paul Ford',1901,1976),(285857,'Roger Ford',NULL,NULL),(285913,'Trent Ford',1979,NULL),(285922,'Wallace Ford',1898,1966),(286010,'Ken Foree',1948,NULL),(286025,'Carl Foreman',1914,1984),(286030,'David Foreman',NULL,NULL),(286033,'Deborah Foreman',1962,NULL),(286048,'John Foreman',1925,1992),(286085,'Malgorzata Foremniak',1967,NULL),(286121,'Jean-Claude Forest',1930,1998),(286163,'C.S. Forester',1899,1966),(286170,'Juliet Forester',NULL,NULL),(286202,'Pierre Forette',NULL,NULL),(286245,'Maud Forget',1982,NULL),(286320,'Andrew Form',1969,NULL),(286335,'David Forman',NULL,NULL),(286578,'José María Forqué',1923,1995),(286579,'Verónica Forqué',1955,2021),(286611,'Christine Forrest',NULL,NULL),(286715,'Brent Forrester',1967,NULL),(286734,'Larry Forrester',1924,1988),(286782,'Cecilia Forsberg',NULL,NULL),(286790,'Eric Forsberg',1959,NULL),(286843,'Malte Forssell',1959,NULL),(286850,'Keith Forsey',1948,NULL),(286873,'Bengt Forslund',1932,NULL),(286926,'Mark Forstater',1943,NULL),(286950,'E.M. Forster',1879,1970),(286975,'Marc Forster',1969,NULL),(286976,'Margaret Forster',1938,2016),(287025,'Bill Forsyth',1946,NULL),(287046,'Frederick Forsyth',1938,NULL),(287080,'Christine Peters',1969,NULL),(287124,'Garrett Fort',1900,1945),(287147,'Christian Forte',1969,NULL),(287149,'Deborah Forte',NULL,NULL),(287161,'John Forte',NULL,NULL),(287164,'Kate Forte',1953,NULL),(287168,'Marlene Forte',1961,NULL),(287182,'Will Forte',1970,NULL),(287279,'Robert Fortier',1926,2005),(287501,'Roberto Forza',1957,NULL),(287637,'Brigitte Fossey',1946,NULL),(287638,'Dian Fossey',1932,1985),(287669,'Alan Dean Foster',1946,NULL),(287687,'Barry Foster',1927,2002),(287757,'David Foster',1949,NULL),(287759,'David Foster',1929,2019),(287811,'Gary Foster',1961,NULL),(287836,'Harve Foster',1907,1962),(287837,'Harvey Shain',NULL,NULL),(287898,'Jon Foster',1984,NULL),(287905,'Julia Foster',1943,NULL),(287931,'Lewis R. Foster',1898,1974),(287946,'Lucas Foster',NULL,NULL),(288003,'Preston Foster',1900,1970),(288038,'Ruth Foster',1920,2012),(288119,'William C. Foster',1880,1923),(288202,'Michael Fottrell',NULL,NULL),(288271,'Hélène de Fougerolles',1973,NULL),(288344,'Giorgos Foundas',1924,2010),(288439,'Jean-Claude Fourneau',NULL,NULL),(288552,'Yves Fournier',NULL,NULL),(288635,'Gene Fowler Jr.',1917,1998),(288670,'Bruce Fowler',1947,NULL),(288706,'Gene Fowler',1890,1960),(288719,'Hugh S. Fowler',1912,1975),(288727,'James Wiley Fowler',NULL,NULL),(288761,'Marjorie Fowler',1920,2003),(288830,'Douglas Fowley',1911,1998),(288886,'Billy Fox',NULL,NULL),(288913,'Charles Fox',1940,NULL),(288944,'David Fox',1941,2021),(288976,'Emilia Fox',1974,NULL),(288996,'Frederick Louis Fox',1902,1981),(289038,'James Fox',1939,NULL),(289048,'Jennifer Fox',NULL,NULL),(289098,'Kerry Fox',1966,NULL),(289100,'Kevin Fox',1968,NULL),(289130,'Maggie Fox',1963,2022),(289142,'Matthew Fox',1966,NULL),(289183,'Paul Fox',NULL,NULL),(289219,'Robbie Fox',NULL,NULL),(289221,'Robert Fox',1952,NULL),(289295,'Virginia Fox',1902,1982),(289297,'Wallace Fox',1895,1958),(289316,'Cyrinda Foxe',1952,2002),(289343,'Robert Foxworth',1941,NULL),(289381,'Bryan Foy',1896,1977),(289429,'Matt Foyer',NULL,NULL),(289450,'Arnoldo Foà',1916,2014),(289458,'Gro Fraas',NULL,NULL),(289545,'Denise Fraga',1965,NULL),(289576,'Claudio Fragasso',1951,NULL),(289591,'Lisa Fragner',NULL,NULL),(289656,'James Frain',1968,NULL),(289694,'Kevin Scott Frakes',1978,NULL),(289696,'Randall Frakes',NULL,NULL),(289708,'Oscar Fraley',1914,1994),(289737,'Janet Frame',1924,2004),(289795,'C.V. France',1868,1949),(289833,'Michael France',1962,2013),(289840,'Rolla France',1910,NULL),(289932,'Micheline Francey',1919,1969),(289994,'Pascal Franchot',1962,NULL),(290000,'Adolfo Franci',1895,1954),(290047,'Anthony Franciosa',1928,2006),(290050,'Massimo Franciosa',1924,1998),(290075,'Andrew Francis',1985,NULL),(290086,'Arlene Francis',1907,2001),(290087,'Barbara Francis',NULL,NULL),(290118,'Coleman Francis',1919,1973),(290271,'Noel Francis',1906,1959),(290358,'Richard Francis-Bruce',1948,NULL),(290371,'Pietro Francisci',1906,1977),(290395,'Michael Terr',1899,1987),(290431,'Helga Franck',1933,1963),(290475,'Don Francks',1932,2016),(290556,'James Franco',1978,NULL),(290581,'Larry Franco',1949,NULL),(290786,'Ronald Frangipane',1944,2020),(290802,'Georges Franju',1912,1987),(290809,'Harriet Frank Jr.',1923,2020),(290863,'Bruno Frank',1887,1945),(290900,'Debra Frank',NULL,NULL),(290931,'Fredric M. Frank',1911,1977),(290955,'Horst Frank',1929,1999),(290969,'Jason David Frank',1973,2022),(291034,'Marvin Frank',NULL,NULL),(291035,'Melvin Frank',1913,1988),(291046,'Pat Frank',1907,1964),(291054,'Peter C. Frank',NULL,NULL),(291078,'Sandy Frank',1929,NULL),(291082,'Scott Frank',1960,NULL),(291201,'Cyril Frankel',1921,2017),(291205,'David Frankel',1959,NULL),(291253,'Al Franken',1951,NULL),(291289,'Paul Frankeur',1905,1974),(291293,'Peter Frankfurt',NULL,NULL),(291387,'Chester M. Franklin',1890,1954),(291404,'Diane Franklin',1962,NULL),(291442,'Howard Franklin',NULL,NULL),(291449,'Jeff Franklin',1955,NULL),(291463,'John Franklin',1959,NULL),(291504,'Miles Franklin',1879,1954),(291512,'Pamela Franklin',1950,NULL),(291542,'Scott Franklin',NULL,NULL),(291548,'Sidney Franklin',1893,1972),(291587,'Irwin Franklyn',1904,1966),(291598,'William Franklyn',1925,2006),(291622,'M.J. Frankovich',1909,1992),(291676,'Michael Franks',1944,NULL),(291692,'Steve Franks',NULL,NULL),(291839,'Joy Franz',1941,NULL),(291905,'David Franzoni',1947,NULL),(291909,'Marco Franzoso',1965,NULL),(291918,'Peter Franzén',1971,NULL),(291975,'Guy-Claude François',1940,2014),(291997,'François Sylvestre',NULL,NULL),(291999,'Thierry François',NULL,NULL),(292024,'Roger Frappier',1945,NULL),(292129,'George MacDonald Fraser',1925,2008),(292132,'Greig Fraser',1975,NULL),(292140,'Hugh Fraser',1945,NULL),(292159,'John Fraser',1931,2020),(292182,'Laura Fraser',1975,NULL),(292211,'Paul Fraser',1973,NULL),(292226,'Ronald Fraser',1930,1997),(292250,'Tom Fraser',NULL,NULL),(292338,'Franco Fraticelli',1928,2012),(292419,'James Frawley',1936,2019),(292451,'Rebecca Frayn',1962,NULL),(292471,'Jane Frazee',1915,1985),(292482,'Robert Frazen',NULL,NULL),(292528,'Mark Frazer',NULL,NULL),(292537,'Robert Frazer',1891,1944),(292565,'Charles Frazier',1950,NULL),(292647,'Rachel Winter',NULL,NULL),(292689,'Mark Frechette',1947,1975),(292711,'Bill Freda',NULL,NULL),(292720,'Riccardo Freda',1909,1999),(292735,'Fab 5 Freddy',1959,NULL),(292822,'Vicki Frederick',1949,NULL),(292841,'Dean Fredericks',1924,1999),(292864,'Neal Fredericks',1969,2004),(292875,'Gray Frederickson',1937,2022),(293009,'Anna Fredriksson',NULL,NULL),(293081,'Mark S. Freeborn',NULL,NULL),(293139,'Alan Freedland',NULL,NULL),(293168,'David Freedman',NULL,NULL),(293190,'Jack E. Freedman',NULL,NULL),(293231,'Robert L. Freedman',NULL,NULL),(293260,'Thornton Freeland',1898,1987),(293346,'Damita Jo Freeman',1953,NULL),(293352,'David Freeman',NULL,NULL),(293366,'Devery Freeman',1913,2005),(293388,'Everett Freeman',1911,1991),(293391,'Fred Freeman',NULL,NULL),(293422,'J.E. Freeman',1946,2014),(293435,'Jeff Freeman',NULL,NULL),(293444,'Joan Freeman',1942,NULL),(293445,'Joan Freeman',NULL,NULL),(293446,'Joel Freeman',1922,2018),(293455,'Jonathan Freeman',1950,NULL),(293456,'Jonathan Freeman',NULL,NULL),(293480,'Leonard Freeman',1920,1974),(293509,'Martin Freeman',1971,NULL),(293513,'Matt Freeman',NULL,NULL),(293533,'Morgan J. Freeman',1969,NULL),(293550,'Paul Freeman',1943,NULL),(293551,'Paul Freeman',NULL,NULL),(293659,'Paul Frees',1920,1986),(293688,'Matt Harris-Freeth',NULL,NULL),(293707,'Hugo Fregonese',1908,1987),(293739,'Sami Frey',1937,NULL),(293750,'Fred Freiberger',1915,2003),(293804,'Robert Stoltenberg',1965,NULL),(293889,'Stéphane Freiss',1960,NULL),(293903,'Hugh Freytag',NULL,NULL),(293981,'Alisa Freyndlikh',1934,NULL),(294058,'Charles K. French',1860,1952),(294070,'Delphine French',NULL,NULL),(294140,'Margaret French',1945,NULL),(294195,'Ron French',NULL,NULL),(294224,'Tina French',NULL,NULL),(294229,'Victor French',1934,1989),(294243,'Charles Frend',1909,1977),(294266,'Eugene Frenke',1895,1984),(294293,'Guido Frenzel',NULL,NULL),(294352,'Rob Fresco',NULL,NULL),(294354,'Robert M. Fresco',1930,2014),(294379,'Juan Carlos Fresnadillo',1967,NULL),(294382,'Pierre Fresnay',1897,1975),(294431,'Esther Freud',1963,NULL),(294440,'Judy Freudberg',1949,2012),(294457,'Thor Freudenthal',1972,NULL),(294483,'Jay Freund',NULL,NULL),(294503,'Ute Freund',NULL,NULL),(294505,'Bart Freundlich',1970,NULL),(294520,'Terry Frewer',NULL,NULL),(294554,'Diana Frey',1944,NULL),(294580,'James Frey',1969,NULL),(294600,'Leonard Frey',1938,1988),(294654,'Denis Freyd',NULL,NULL),(294739,'Johan Friberg',NULL,NULL),(294813,'Florian Fricke',1944,2001),(294825,'Ron Fricke',NULL,NULL),(294837,'Joseph Frickert',NULL,NULL),(294842,'András Fricsay Kali Son',1942,NULL),(294847,'Jonathan Frid',1924,2012),(294882,'Åke Fridell',1919,1985),(294892,'Gertrud Fridh',1921,1984),(294975,'Robert N. Fried',NULL,NULL),(294984,'Sophie Rois',1961,NULL),(294997,'Jason Friedberg',1970,NULL),(295007,'Rick Friedberg',1944,NULL),(295016,'Christoph Friedel',NULL,NULL),(295030,'Richard Friedenberg',NULL,NULL),(295053,'David Friedkin',1912,1976),(295073,'Thomas Peter Friedl',NULL,NULL),(295103,'Judah Friedlander',1969,NULL),(295105,'Lee Friedlander',NULL,NULL),(295107,'Liz Friedlander',1970,NULL),(295115,'Will Friedle',1976,NULL),(295165,'Brent V. Friedman',1962,NULL),(295171,'Bruce Jay Friedman',1930,2020),(295182,'Dana Friedman',NULL,NULL),(295195,'David Friedman',1950,NULL),(295216,'Gabriel Friedman',1974,NULL),(295223,'Hank Friedmann',NULL,NULL),(295243,'Jeffrey Friedman',NULL,NULL),(295264,'Josh Friedman',NULL,NULL),(295271,'Ken Friedman',NULL,NULL),(295281,'Lewis Friedman',NULL,NULL),(295283,'Lin Friedman',NULL,NULL),(295288,'Lizzie Friedman',NULL,NULL),(295296,'Mark Friedman',NULL,NULL),(295302,'Matt Friedman',NULL,NULL),(295305,'Mel Friedman',NULL,NULL),(295334,'Peter Friedman',1949,NULL),(295357,'Ron Friedman',1932,NULL),(295375,'Stephen J. Friedman',1937,1996),(295393,'Vladimir Friedman',1959,NULL),(295429,'Georg Friedrich',1966,NULL),(295484,'Anna Friel',1976,NULL),(295486,'Brian Friel',1929,2015),(295506,'Colin Friels',1952,NULL),(295560,'David T. Friendly',1956,NULL),(295588,'Bill Fries',1928,2022),(295594,'Charles W. Fries',1928,2021),(295648,'Gil Friesen',1937,2012),(295711,'Norman Priggen',1924,1999),(295740,'Jarl Friis-Mikkelsen',1951,NULL),(295786,'Ketti Frings',1909,1981),(295823,'Arno Frisch',1975,NULL),(295900,'Niclas Frisk',NULL,NULL),(295947,'Fred Frith',1949,NULL),(296131,'John Frizzell',NULL,2016),(296135,'Lou Frizzell',1920,1979),(296144,'Friðrik Þór Friðriksson',1953,NULL),(296154,'Nikolaj Frobenius',1965,NULL),(296193,'Carl Froelich',1875,1953),(296198,'Sam Froelich',1965,NULL),(296207,'George Froeschel',1891,1979),(296216,'Jean-Pierre Frogerais',1893,1980),(296217,'Henry Frogers',NULL,NULL),(296219,'Joanne Froggatt',1980,NULL),(296243,'Clayton Frohman',NULL,NULL),(296255,'Jim Frohna',NULL,NULL),(296362,'Hans Fromm',1961,NULL),(296501,'Harvey Frost',NULL,NULL),(296508,'Jacqueline B. Frost',NULL,NULL),(296545,'Nick Frost',1972,NULL),(296546,'Nika Futterman',1969,NULL),(296594,'Catherine Frot',1956,NULL),(296596,'Dominique Frot',1957,NULL),(296614,'Toby Froud',1984,NULL),(296636,'Lisa Fruchtman',NULL,NULL),(296641,'Uri Fruchtmann',1955,NULL),(296651,'William Fruet',1933,NULL),(296735,'Carla Fry',1961,2002),(296785,'Rosalie K. Fry',NULL,NULL),(296807,'Jesse Fryckman',NULL,NULL),(296827,'Marc Frydman',1958,NULL),(296859,'Dwight Frye',1899,1943),(296861,'E. Max Frye',1956,NULL),(296902,'William Frye',1921,2017),(296917,'Robert Fryer',1920,2000),(296926,'Jonas Frykberg',NULL,NULL),(296984,'Luc Fréché',NULL,NULL),(296996,'Lucien Frégis',1904,1979),(297004,'Thierry Frémont',1962,NULL),(297015,'Carmen Frías',1938,2019),(297054,'Gustav Fröhlich',1902,1987),(297064,'Pea Fröhlich',1943,NULL),(297083,'Ewa Fröling',1952,NULL),(297085,'Susan Froemke',NULL,NULL),(297167,'Yuriko Fuchizaki',1968,NULL),(297182,'Carol Fuchs',NULL,NULL),(297190,'Daniel Fuchs',1909,1993),(297202,'Eytan Fox',1964,NULL),(297209,'Fred Fuchs',1954,NULL),(297229,'Jason Fuchs',1986,NULL),(297545,'Katherine Fugate',1962,NULL),(297578,'Patrick Fugit',1982,NULL),(297620,'Martin Fuhrer',1956,NULL),(297626,'Chris Fuhrman',1960,1991),(297686,'Tatsuya Fuji',1941,NULL),(297692,'Fuji-Yama',NULL,NULL),(297722,'Ryôhei Fujii',NULL,NULL),(297741,'Yû Fujiki',1931,2005),(297754,'Jun Fujimaki',1936,NULL),(297772,'Sanezumi Fujimoto',1910,1979),(297783,'Yuka Fujimoto',1985,NULL),(297788,'Shiho Fujimura',1939,NULL),(297800,'Hiroshi Fujioka',1946,NULL),(297805,'Takuya Fujioka',1930,2006),(297843,'Susumu Fujita',1912,1991),(297846,'Toshiya Fujita',1932,1997),(297847,'Toshiko Fujita',1950,2018),(297858,'Ayako Fujitani',1979,NULL),(297869,'Kamatari Fujiwara',1905,1985),(297884,'Tadashi Fujiwara',NULL,NULL),(297885,'Tatsuya Fujiwara',1982,NULL),(297893,'Kôji Fujiyama',NULL,NULL),(297895,'Naomi Fujiyama',1958,NULL),(297896,'Yôko Fujiyama',1941,2022),(297906,'Kyôko Fukada',1982,NULL),(297931,'Toshihide Fukano',1966,NULL),(297934,'Kenta Fukasaku',1972,NULL),(297935,'Kinji Fukasaku',1930,2003),(297938,'Eri Fukatsu',1973,NULL),(297946,'Hiroshi Fukazawa',NULL,NULL),(297947,'Kazuo Fukazawa',NULL,NULL),(297956,'Mitsuru Fukikoshi',1965,NULL),(297974,'Jun Fukuda',1923,2000),(297993,'Yoshiyuki Fukuda',NULL,NULL),(298016,'Shin\'ichi Fukumitsu',NULL,NULL),(298027,'Takehiko Fukunaga',1918,1979),(298040,'Masami Fukushima',NULL,NULL),(298043,'Satoshi Fukushima',NULL,NULL),(298048,'Masaharu Fukuyama',1969,NULL),(298080,'Ludwig Fulda',1862,1939),(298121,'Fuli Wang',1949,NULL),(298147,'Julian Fullalove',NULL,NULL),(298181,'Brad Fuller',1965,NULL),(298188,'Bryan Fuller',1969,NULL),(298191,'Charles Fuller',1939,2022),(298202,'Dale Fuller',1885,1948),(298215,'Dolores Fuller',1923,2011),(298279,'Kim Fuller',NULL,NULL),(298281,'Kurt Fuller',1953,NULL),(298282,'Lance Fuller',1928,2001),(298427,'Randy Fullmer',1950,2023),(298576,'Eiji Funakoshi',1923,2007),(298592,'Akiko Funatsu',NULL,NULL),(298600,'Hans Funck',1953,2014),(298676,'Min-Hun Fung',NULL,NULL),(298691,'Stephen Fung',1974,NULL),(298807,'Antoine Fuqua',1965,NULL),(298859,'John Furey',NULL,NULL),(298889,'Giacomo Furia',1925,2015),(298891,'John Furia',1929,2009),(298900,'Jonathan Furie',1961,2009),(298915,'George Furla',1960,NULL),(299014,'Yvonne Furneaux',1926,NULL),(299026,'Betty Furness',1916,1994),(299028,'Deborra-Lee Furness',1955,NULL),(299050,'David Furnish',1962,NULL),(299077,'Chris Furrh',1974,NULL),(299078,'Joaquín Furriel',1974,NULL),(299097,'Roger K. Furse',1903,1972),(299115,'Nathan Furst',1978,NULL),(299120,'Sean Furst',NULL,NULL),(299122,'Stephen Furst',1954,2017),(299134,'Jorge Furtado',1959,NULL),(299154,'Jules Furthman',1888,1966),(299192,'Toshio Furukawa',1946,NULL),(299206,'Kengo Furusawa',NULL,NULL),(299228,'Tôru Furuya',1953,NULL),(299301,'John Fusco',NULL,NULL),(299329,'Eri Fuse',1962,NULL),(299343,'Akira Fushimi',1900,1970),(299563,'Tim Fywell',1951,NULL),(299578,'Manolo Fábregas',1921,1996),(299586,'Zoltán Fábri',1917,1994),(299603,'Claudio Fäh',NULL,NULL),(299611,'Agnetha Fältskog',1950,NULL),(299621,'Max Färberböck',1950,NULL),(299623,'Heikki Färm',NULL,NULL),(299642,'José Antonio Félez',NULL,NULL),(299662,'Nicole Félix',1942,NULL),(299663,'Zoé Félix',1976,NULL),(299677,'René Féret',1945,2015),(299723,'Torsten Föllinger',1922,2010),(299777,'Beni Führer',NULL,1935),(299811,'Benno Fürmann',1972,NULL),(299827,'Sigge Fürst',1905,1984),(299924,'Sasson Gabay',NULL,NULL),(299982,'Daniel Gabbe',NULL,NULL),(299990,'Laura Gabbert',NULL,NULL),(299998,'Edoardo Gabbriellini',1975,NULL),(300010,'Martin Gabel',1912,1986),(300015,'Shainee Gabel',1969,NULL),(300064,'Jean Gabin',1904,1976),(300067,'Nicolas Gabion',NULL,NULL),(300083,'Christopher Gable',1940,1998),(300111,'Deboragh Gabler',NULL,NULL),(300166,'Mike Gabrawy',1969,NULL),(300174,'Levan Gabriadze',1969,NULL),(300175,'Revaz Gabriadze',1936,2021),(300229,'Igor Gabriel',NULL,NULL),(300265,'Mike Gabriel',1954,NULL),(300272,'Peter Gabriel',1950,NULL),(300282,'Ruth Gabriel',1975,NULL),(300388,'Gabriel Gabrio',1887,1946),(300580,'Stéphane Tchalgadjieff',NULL,NULL),(300589,'Sarah Gadon',1987,NULL),(300712,'Jim Gaffigan',1966,NULL),(300760,'Sheila Gaffney',NULL,NULL),(300800,'Christos N. Gage',1971,NULL),(300833,'Patricia Gage',1940,2010),(300866,'Stephen Gaghan',1965,NULL),(300880,'Daniele Gaglianone',1966,NULL),(300902,'Bruno Gagliasso',1982,NULL),(300944,'Alain Gagnol',1967,NULL),(300991,'Jacques Gagnon',NULL,NULL),(301126,'Måns Gahrton',NULL,NULL),(301145,'Leonid Gaidai',1923,1993),(301157,'Diane Gaidry',1964,2019),(301174,'Pascal Gaigne',1958,NULL),(301224,'Roger Gaillard',1893,1970),(301239,'Jacques Gaillard',1928,NULL),(301274,'Neil Gaiman',1960,NULL),(301305,'Boyd Gaines',1953,NULL),(301310,'Charles Gaines',1942,NULL),(301348,'Richard Gaines',1904,1975),(301362,'William M. Gaines',1922,1992),(301381,'Courtney Gains',1965,NULL),(301382,'Herbert W. Gains',NULL,NULL),(301390,'René Gainville',1931,2014),(301416,'Gerald Gaiser',1931,2003),(301426,'Vladimir Gaitan',1947,2020),(301515,'Janusz Gajos',1939,NULL),(301556,'Michel Galabru',1922,2016),(301592,'Kathryn F. Galan',NULL,NULL),(301704,'Michael Galasso',1949,2009),(301715,'Frank Galati',1943,2023),(301735,'Cristián Galaz',NULL,NULL),(301785,'Cristina Galbó',1950,NULL),(301788,'Jordi Galceran',1964,NULL),(301826,'Bob Gale',1951,NULL),(301834,'David Gale',1936,1991),(301835,'David Gale',NULL,NULL),(301839,'Ed Gale',1963,NULL),(301893,'Paul Gale',NULL,NULL),(301959,'Johnny Galecki',1975,NULL),(301961,'Henrik Galeen',1881,1949),(302027,'Timothy Galfas',1924,2013),(302077,'Vittorio Galiano',NULL,NULL),(302105,'Anna Galiena',1949,NULL),(302108,'Zach Galifianakis',1969,NULL),(302127,'Mitchell Galin',NULL,NULL),(302293,'Joe Gall',NULL,NULL),(302330,'John Gallagher Jr.',1984,NULL),(302368,'Donald Gallaher',1895,1961),(302442,'Maureen Gallagher',NULL,NULL),(302466,'Patrick Gallagher',1968,NULL),(302480,'Richard \'Skeets\' Gallagher',1891,1955),(302636,'Sergi Gallardo',NULL,NULL),(302704,'Gina Gallego',1955,NULL),(302778,'Joel Gallen',NULL,NULL),(302780,'Florian Gallenberger',1972,NULL),(302815,'Giovanna Galletti',1916,1992),(302904,'Paul Gallico',1897,1976),(302916,'Guillaume Gallienne',1972,NULL),(302983,'J. Clarke Gallivan',NULL,NULL),(303010,'Bradley Gallo',NULL,NULL),(303013,'Carla Gallo',1975,NULL),(303031,'Fred T. Gallo',1944,2023),(303032,'George Gallo',1956,NULL),(303034,'Gina Gallo',NULL,NULL),(303108,'Roland Gallois',NULL,NULL),(303335,'John Galsworthy',1867,1933),(303348,'Nigel Galt',1953,NULL),(303442,'Anna Galvin',1969,NULL),(303446,'Brendan Galvin',NULL,NULL),(303462,'Michael M.B. Galvin',1970,NULL),(303574,'Mapi Galán',1962,NULL),(303607,'Dagoberto Gama',NULL,NULL),(303754,'Richard Gambino',NULL,NULL),(303775,'David Gamble',1955,NULL),(303792,'Julian Gamble',NULL,NULL),(303799,'Kevin Gamble',1973,NULL),(303922,'Mercedes Gamero',NULL,NULL),(303930,'Kenneth Gamet',1903,1971),(303973,'Moa Gammel',1980,NULL),(303981,'Robin Gammell',1936,NULL),(303983,'Thomas Gammeltoft',1963,NULL),(304091,'Nisha Ganatra',NULL,NULL),(304098,'Abel Gance',1889,1981),(304119,'Damian Ganczewski',NULL,NULL),(304261,'Gemini Ganesan',1919,2005),(304262,'Shivaji Ganesan',1928,2001),(304265,'Delhi Ganesh',1944,NULL),(304321,'Paul Gangelin',1898,1961),(304372,'Rose Ganguzza',NULL,NULL),(304398,'Sidney Ganis',1940,NULL),(304418,'Ernest K. Gann',1910,1991),(304432,'Bobs Gannaway',1965,NULL),(304521,'Christophe Gans',1960,NULL),(304541,'Dennis Gansel',1973,NULL),(304574,'Martin Gant',1951,NULL),(304644,'Peter Gantzler',1958,NULL),(304665,'Lowell Ganz',1948,NULL),(304673,'Tony Ganz',NULL,NULL),(304701,'Enman Gao',NULL,NULL),(304747,'Lola Gaos',1921,1993),(304770,'Alaska',1963,NULL),(304801,'Romola Garai',1982,NULL),(304830,'Robert Ben Garant',1970,NULL),(304838,'Georgiy Garanyan',1934,2010),(304840,'Dániel Garas',1973,NULL),(304887,'Néstor Garay',1931,2003),(304921,'Sam Garbarski',1948,NULL),(305017,'Liz Garbus',1970,NULL),(305081,'Adam Garcia',1973,NULL),(305083,'Aimee Garcia',NULL,NULL),(305087,'Al Ernest Garcia',1887,1938),(305272,'JoAnna Garcia Swisher',1979,NULL),(305296,'José Garcia',1966,NULL),(305324,'María Luisa García',1956,NULL),(305362,'Marcio Garcia',1970,NULL),(305365,'Nanou Garcia',NULL,NULL),(305368,'Nicole Garcia',1946,NULL),(305372,'Patrice Garcia',NULL,NULL),(305405,'Risa Bramon Garcia',1956,NULL),(305426,'Russell Garcia',1916,2011),(305488,'Henri Garcin',1928,2022),(305519,'Paula Garcés',NULL,NULL),(305557,'Luis García Berlanga',1921,2010),(305558,'Gael García Bernal',1978,NULL),(305563,'Adrian Garcia Bogliano',1980,NULL),(305564,'Ramiro García Bogliano',1975,NULL),(305568,'José María García Briz',NULL,NULL),(305623,'Santiago García de Leániz',1963,NULL),(305725,'Jesús García Leoz',1904,1953),(305802,'Rosario García Ortega',1911,1994),(305825,'José Luis García-Pérez',1972,NULL),(305864,'Yolanda García Serrano',1958,NULL),(306088,'Esther García',1956,NULL),(306201,'Jorge Garcia',1973,NULL),(306204,'Jorge García',NULL,NULL),(306313,'Lupe García',NULL,NULL),(306357,'Martina García',1981,NULL),(306473,'Roel A. García',NULL,NULL),(306696,'Vincent Gardenia',1920,1992),(306755,'Greg Gardiner',NULL,NULL),(306786,'Reginald Gardiner',1903,1980),(306831,'Arthur Gardner',1910,2014),(306890,'Dede Gardner',NULL,NULL),(306947,'Helen Gardner',1884,1968),(307012,'Kenny Gardner',1913,2002),(307070,'Pierce Gardner',1951,NULL),(307097,'Salo Gardner',1936,2018),(307147,'Éva Gárdos',1950,NULL),(307255,'Allen Garfield',1939,2020),(307257,'Brian Garfield',1939,2018),(307260,'David Garfield',1943,1994),(307311,'Louis Garfinkle',1928,2005),(307316,'Art Garfunkel',1941,NULL),(307326,'William Gargan',1905,1979),(307430,'Emmanuel Garijo',NULL,NULL),(307471,'Jack Gariss',1920,1985),(307490,'Gabriel Garko',1972,NULL),(307497,'Alex Garland',1970,NULL),(307498,'Alison Garland',NULL,NULL),(307500,'Beverly Garland',1926,2008),(307531,'Jeff Garlin',1962,NULL),(307559,'Patrick Garland',1935,2013),(307561,'Robert Garland',1937,2020),(307621,'Ralph Garman',1964,NULL),(307628,'Sergey Garmash',1958,NULL),(307667,'Constance Garneau',NULL,1998),(307681,'Alice Garner',1969,NULL),(307726,'Kelli Garner',1984,NULL),(307750,'Peggy Ann Garner',1932,1984),(307776,'Todd Garner',NULL,NULL),(307819,'Tay Garnett',1894,1977),(307821,'Tony Garnett',1936,2020),(307975,'Shauna Garr',NULL,NULL),(307995,'Ivo Garrani',1924,2015),(308009,'Alexandre Gavras',1969,NULL),(308039,'Louis Garrel',1983,NULL),(308081,'Betty Garrett',1919,2011),(308177,'Oliver H.P. Garrett',1894,1952),(308178,'Otis Garrett',1905,1941),(308211,'Stephen Garrett',1957,NULL),(308225,'W.O. Garrett',NULL,2022),(308233,'Andrés Garretón',1956,NULL),(308236,'Fabio Garriba',1944,2016),(308243,'David Garrick',1717,1779),(308289,'Francesc Garrido',NULL,NULL),(308299,'Joaquín Garrido',1952,NULL),(308376,'Mick Garris',1951,NULL),(308426,'Jim Garrison',1921,1992),(308451,'Pat Garrison',NULL,NULL),(308488,'Joseph T. Garrity',NULL,NULL),(308498,'Sean Garrity',NULL,NULL),(308502,'Victor Garrivier',1931,2004),(308520,'Matteo Garrone',1968,NULL),(308523,'Riccardo Garrone',1926,2016),(308524,'Sergio Garrone',1925,NULL),(308525,'Andrew W. Garroni',NULL,NULL),(308587,'Arline Garson',1927,2016),(308594,'Henry Garson',1912,2003),(308604,'Robert Carson',1909,1983),(308606,'Willie Garson',1964,2021),(308651,'Chris Gartin',1968,NULL),(308672,'Alex Gartner',NULL,NULL),(308838,'Kate Garwood',1978,NULL),(308877,'Jerome Gary',NULL,NULL),(308882,'Lorraine Gary',1937,NULL),(309019,'Antonio Gasalla',1941,NULL),(309027,'Jordi Gasull',1966,NULL),(309039,'Pierre Gascar',1916,1997),(309107,'Tatsuya Gashûin',1950,NULL),(309117,'Waclaw Gasiorowski',1869,1939),(309130,'Charles L. Gaskill',1870,1943),(309160,'Giorgio Gaslini',1929,2014),(309212,'Pierre Gaspard-Huit',1917,2017),(309307,'Kyle Gass',1960,NULL),(309348,'Alessandro Gassmann',1965,NULL),(309357,'Dennis Gassner',1948,NULL),(309369,'Charles Gassot',NULL,NULL),(309404,'Johanna Gastdorf',1959,NULL),(309423,'Nicolas Gaster',1946,NULL),(309430,'Ana Gasteyer',1967,NULL),(309510,'Marina Gatell',1979,NULL),(309516,'Frederick Gately',1909,1988),(309557,'Eleanor Gates',1875,1951),(309567,'Harvey Gates',1889,1948),(309588,'Larry Gates',1915,1996),(309605,'Michael Phenicie',NULL,NULL),(309633,'Tudor Gates',1930,2007),(309679,'María Eva Gatica',NULL,NULL),(309684,'Jen Gatien',1974,NULL),(309691,'John Gatins',NULL,NULL),(309693,'Mark Gatiss',1966,NULL),(309697,'Tony Gatlif',1948,NULL),(309746,'Michael Gatt',NULL,NULL),(309800,'Marcello Gatti',1924,2013),(309806,'Soledad Gatti-Pascual',1972,NULL),(309874,'Christian Gaubert',1944,NULL),(309945,'Maxim Gaudette',1974,NULL),(309948,'André Gaudier',NULL,NULL),(309974,'Tony Gaudio',1883,1951),(309979,'Massimo Gaudioso',1958,NULL),(309996,'Émile Gaudreault',1964,NULL),(310087,'Peter Gaulke',NULL,NULL),(310168,'Nils Gaup',1955,NULL),(310177,'Stéphanie Gaurier',1971,NULL),(310180,'Nicolas Gaurin',NULL,NULL),(310225,'Marcus Gautesen',NULL,NULL),(310248,'Dan Gauthier',1963,NULL),(310295,'Martin Gauthier',NULL,NULL),(310319,'Susan Gauthier',1959,NULL),(310341,'Eric Gautier',1961,NULL),(310370,'Dick Gautier',1931,2017),(310422,'Salim Gauwloos',1968,NULL),(310459,'Luisa Gavasa',1951,NULL),(310481,'Jean Gaven',1922,2014),(310532,'Erica Gavin',1947,NULL),(310586,'Emilio Gavira',1964,NULL),(310615,'Romain Gavras',1981,NULL),(310673,'Sarah Gavron',NULL,NULL),(310775,'John Gay',1924,2017),(310797,'Norman Gay',NULL,NULL),(310813,'James Gay-Rees',NULL,NULL),(310865,'Julie Gayet',1972,NULL),(310898,'Monica Gayle',NULL,NULL),(310920,'Michael Gaylin',NULL,NULL),(310960,'George Gaynes',1917,2016),(310966,'Ari Graynor',1983,NULL),(310980,'Janet Gaynor',1906,1984),(310989,'Mitzi Gaynor',1931,NULL),(311020,'Joe Gayton',NULL,2023),(311024,'Tony Gayton',1959,NULL),(311081,'Christopher Gaze',1952,NULL),(311155,'Michael V. Gazzo',1923,1995),(311185,'Josseline Gaël',1917,1995),(311212,'You Ge',1957,NULL),(311240,'Luella Gear',1897,1980),(311316,'Jack Geasland',NULL,NULL),(311348,'Stefan Gebelhoff',1964,NULL),(311374,'Fred Gebhardt',1925,1972),(311435,'Curt Geda',NULL,NULL),(311449,'Axel Geddes',NULL,NULL),(311473,'Jeff Geddis',1975,NULL),(311476,'Martina Gedeck',1961,NULL),(311488,'Giordano Gederlini',1971,NULL),(311508,'Jeffrey Lau',NULL,NULL),(311691,'David Geffen',1943,NULL),(311700,'Shira Geffen',1971,NULL),(311720,'Marina Gefter',NULL,NULL),(311790,'Jean Gehret',1900,1956),(311903,'Franz Geiger',1921,2011),(311912,'Kirk Geiger',1969,NULL),(311995,'Halldóra Geirharðsdóttir',1968,NULL),(312031,'Elliot Geisinger',1927,2022),(312059,'Robert Michael Geisler',NULL,NULL),(312076,'Tony Geiss',1924,2011),(312078,'Hans W. Geissendörfer',1941,NULL),(312083,'Dieter Geissler',1939,NULL),(312173,'David Gelb',1983,NULL),(312200,'Arnie Gelbart',NULL,NULL),(312205,'Larry Gelbart',1928,2009),(312217,'Jordan Gelber',NULL,NULL),(312238,'Clarence Geldert',1865,1935),(312292,'James Gelfand',NULL,NULL),(312297,'Alan Gelfant',1957,NULL),(312315,'Hugo Gélin',1980,NULL),(312367,'Bruce Geller',1930,1978),(312475,'Larry Gelman',1930,2021),(312481,'Woody Gelman',1915,1978),(312483,'Vittorio Gelmetti',1926,1992),(312510,'Erwin Gelsey',1900,1988),(312523,'Michael Gelting',NULL,NULL),(312575,'Giuliano Gemma',1938,2013),(312587,'Ruth Gemmell',1967,NULL),(312641,'Denise Gence',1924,2011),(312656,'Tesshô Genda',1948,NULL),(312707,'Pierre Gendron',1896,1956),(312742,'Francesc Gener',NULL,NULL),(312783,'Émile Genest',1921,2003),(312792,'Jean Genet',1910,1986),(312796,'Michael Genet',1958,NULL),(312836,'Pål Gengenbach',1943,2019),(312890,'Leo Genn',1905,1978),(312919,'Tony Gennaro',1975,NULL),(312926,'Pascal Gennesseaux',NULL,NULL),(313012,'Holly Gent',NULL,NULL),(313144,'Martin Gentles',NULL,NULL),(313227,'Henrik Ruben Genz',1959,NULL),(313295,'Ted Geoghegan',1979,NULL),(313381,'Chief Dan George',1899,1981),(313387,'Christopher George',1931,1983),(313434,'George W. George',1920,2007),(313438,'Gladys George',1900,1954),(313443,'Götz George',1938,2016),(313457,'Jacqueline George',NULL,NULL),(313469,'Jean George',1919,2012),(313519,'Lynda Day George',1944,NULL),(313531,'Matthew George',NULL,NULL),(313532,'Maude George',1888,1963),(313534,'Melissa George',1976,NULL),(313570,'Peter George',1924,1966),(313593,'Robert George',NULL,NULL),(313609,'Sergio George',NULL,NULL),(313623,'Terry George',1952,NULL),(313702,'Tom Georgeson',1937,NULL),(313814,'Gaston Georis',NULL,NULL),(313884,'Maurice Geraghty',1908,1987),(313888,'Thomas J. Geraghty',1883,1945),(313927,'Gary Gerani',NULL,NULL),(314088,'Bill Gerber',NULL,NULL),(314153,'Steve Gerber',1947,2008),(314214,'Don Gere',NULL,NULL),(314246,'Alexander Gerens',1901,1979),(314305,'Tom Gerhardt',1957,NULL),(314358,'Claudia Gerini',1971,NULL),(314480,'Paul Germain',1959,NULL),(314485,'Raoul Germain',NULL,NULL),(314514,'Lauren German',1978,NULL),(314524,'Greg Germann',1958,NULL),(314584,'Pietro Germi',1914,1974),(314590,'Nane Germon',1909,2001),(314611,'Tygo Gernandt',1974,NULL),(314665,'Chris Gerolmo',NULL,NULL),(314671,'Clyde Geronimi',1901,1989),(314698,'Candé Gerrard',NULL,NULL),(314700,'Douglas Gerrard',1891,1950),(314706,'Henry W. Gerrard',1899,1934),(314713,'Lisa Gerrard',1961,NULL),(314777,'Kurt Gerron',1897,1944),(314788,'Vance Gerry',1929,2005),(314826,'Leonard Gershe',1922,2002),(314831,'Burton Gershfield',NULL,NULL),(314856,'Theodore Gershuny',1933,2007),(314858,'Jerry Gershwin',1926,1997),(314867,'Betty Lou Gerson',1914,1999),(314870,'Daniel Gerson',1966,2016),(314949,'Tim Gerstmar',NULL,NULL),(314971,'Howard Gertler',NULL,NULL),(314976,'Jordan Gertner',1973,NULL),(314993,'Maury Gertsman',1907,1999),(315001,'Paul Gertz',NULL,NULL),(315010,'Helge Gerull',NULL,NULL),(315041,'Ricky Gervais',1961,NULL),(315058,'Carlo Gervasi',NULL,2005),(315060,'Frank Gervasi',NULL,NULL),(315065,'Sacha Gervasi',1966,NULL),(315180,'Frans van Gestel',NULL,NULL),(315195,'Károly Gesztesi',1963,2020),(315205,'Robert Getchell',1936,2017),(315236,'Malcolm Gets',1964,NULL),(315288,'John Getz',1946,NULL),(315324,'Karl Geurs',1948,2022),(315430,'Nikolaus Geyrhalter',1972,NULL),(315476,'Ebrahim Ghafori',NULL,NULL),(315640,'Luminita Gheorghiu',1949,2021),(315721,'Fernando Ghia',1935,2005),(315760,'Abdel Ahmed Ghili',NULL,NULL),(315767,'Massimo Ghini',1954,NULL),(315803,'Patrick Ghiringhelli',NULL,NULL),(315871,'Smaran Ghosal',NULL,2008),(315974,'Michael Giacchino',1967,NULL),(315984,'Fosco Giachetti',1900,1974),(316002,'Francis Giacobetti',NULL,NULL),(316037,'Alejandro Giacomán',1964,NULL),(316078,'Marcus Giamatti',1961,NULL),(316079,'Paul Giamatti',1967,NULL),(316087,'Guido Giambartolomei',1921,2013),(316282,'Ettore Giannini',1912,1990),(316284,'Giancarlo Giannini',1942,NULL),(316306,'Xavier Giannoli',1970,NULL),(316363,'Roberto Gianviti',1924,2001),(316394,'Eliane Giardini',1953,NULL),(316406,'Jack Giarraputo',NULL,NULL),(316417,'Daniel Giat',1955,NULL),(316421,'Ian Michael Giatti',1977,NULL),(316447,'Andrea Gibb',NULL,NULL),(316455,'Donald Gibb',1954,NULL),(316465,'Maurice Gibb',1949,2003),(316514,'Lewis Grassic Gibbon',1901,1935),(316599,'Stella Gibbons',1902,1989),(316626,'Antony Gibbs',1925,2016),(316629,'Barbara Gibbs',NULL,NULL),(316681,'Jeremy Gibbs',1955,NULL),(316701,'Mary Gibbs',1996,NULL),(316740,'Tammy Gibbs',NULL,NULL),(316774,'Jennifer Gibgot',NULL,NULL),(316795,'Alex Gibney',1953,NULL),(316805,'Rebecca Gibney',1964,NULL),(316807,'Sheridan Gibney',1903,1988),(316830,'Alan Gibson',1938,1987),(316833,'Alex Gibson',NULL,NULL),(316888,'Channing Gibson',NULL,NULL),(316933,'Debbie Gibson',1970,NULL),(316945,'Donal Gibson',1958,NULL),(317004,'J. Kathleen Gibson',NULL,NULL),(317102,'Mark Gibson',NULL,NULL),(317140,'Paul Gibson',NULL,NULL),(317163,'Robert Gibson',NULL,NULL),(317189,'Sue Gibson',1952,2016),(317195,'Terel Gibson',NULL,NULL),(317210,'W.A. Gibson',1870,1929),(317212,'Walter B. Gibson',1897,1985),(317216,'Will Gibson',1966,2007),(317217,'William Gibson',1914,2008),(317243,'The Great Gidayû',1958,NULL),(317254,'Nelson Gidding',1919,2004),(317279,'Raynold Gideon',NULL,NULL),(317286,'Karina Gidi',NULL,NULL),(317302,'Irit Gidron',1953,NULL),(317340,'Therese Giehse',1898,1975),(317368,'Adam Gierasch',NULL,NULL),(317385,'Frank Giering',1971,2010),(317450,'Dr. Seuss',1904,1991),(317485,'Adam Giffard',1934,2010),(317487,'Ellen Hovde',1925,2023),(317493,'Keith Giffen',1952,NULL),(317510,'Barry Gifford',1946,NULL),(317513,'Chris Gifford',1959,NULL),(317519,'Frances Gifford',1920,1994),(317634,'Keith Giglio',NULL,NULL),(317642,'Donna Gigliotti',1955,NULL),(317650,'Marie Gignac',NULL,NULL),(317725,'Ariadna Gil',1969,NULL),(317834,'Mateo Gil',1972,NULL),(317927,'Lesley Taplin',1946,2009),(317943,'Aaron L. Gilbert',NULL,NULL),(317956,'Marcus Gilbert',1958,NULL),(317970,'Billy Gilbert',1894,1971),(317978,'Brad M. Gilbert',NULL,NULL),(317981,'Brian Gilbert',1960,NULL),(317982,'Bruce Gilbert',1947,NULL),(318105,'John Gilbert',1897,1936),(318150,'Lewis Gilbert',1920,2018),(318201,'Peter Gilbert',1957,NULL),(318240,'Stanford Gilbert',NULL,NULL),(318326,'Frank B. Gilbreth Jr.',1911,2001),(318336,'Alison Gilby',NULL,NULL),(318354,'Jane Gilchrist',NULL,NULL),(318406,'Colin Gilder',NULL,NULL),(318409,'Sean Gilder',1964,NULL),(318429,'David Giler',1943,2020),(318446,'David Giles',NULL,NULL),(318522,'Gwynne Gilford',1946,NULL),(318570,'Charles Gillibert',1977,NULL),(318580,'Michael Gilio',NULL,NULL),(318639,'Chris Gill',NULL,NULL),(318647,'David Gill',1928,1997),(318666,'Glover Gill',NULL,NULL),(318703,'Michel Gill',1960,NULL),(318795,'Stuart Gillard',1950,NULL),(318821,'Aidan Gillen',1968,NULL),(318832,'Jeff Gillen',1942,1995),(318884,'Liz Giles',NULL,NULL),(318916,'Craig Gillespie',1967,NULL),(318947,'Jim Gillespie',NULL,NULL),(318981,'William Gillespie',1894,1938),(319069,'William Gillette',1853,1937),(319094,'Amy Gilliam',1978,NULL),(319146,'Leslie Gilliat',1917,2013),(319148,'Sidney Gilliat',1908,1994),(319171,'Daniel Gillies',1976,NULL),(319213,'Vince Gilligan',1967,NULL),(319241,'John Gilling',1912,1984),(319266,'Alec Gillis',1959,NULL),(319308,'Tabitha St. Germain',1964,NULL),(319315,'Robert T. Gillis',NULL,NULL),(319357,'Margalo Gillmore',1897,1986),(319431,'Dorothy Gilman',1923,2012),(319462,'Sam Gilman',1915,1985),(319501,'William S. Gilmore',NULL,NULL),(319507,'Cindy Gilmore',1936,NULL),(319532,'Helen Gilmore',1872,1936),(319574,'Stuart Gilmore',1909,1971),(319619,'Bettina Gilois',1961,2020),(319654,'Paul Gilreath',NULL,NULL),(319659,'Dan Gilroy',1959,NULL),(319666,'Grace Gilroy',NULL,NULL),(319667,'Henry Gilroy',1976,NULL),(319673,'John Gilroy',1959,NULL),(319680,'Tom Gilroy',NULL,NULL),(319698,'Jessalyn Gilsig',1971,NULL),(319793,'Antonio Gimeno',NULL,NULL),(319834,'Teresa Gimpera',1936,NULL),(319843,'Daniel Giménez Cacho',1961,NULL),(319885,'Xavi Giménez',1970,NULL),(320006,'Hermione Gingold',1897,1987),(320051,'Jeff Ginn',1953,2016),(320091,'Allen Ginsberg',1926,1997),(320180,'Robert Ginty',1948,2009),(320209,'Vahina Giocante',1981,NULL),(320250,'Marcello Giombini',1928,2003),(320274,'Jean Giono',1895,1970),(320285,'Marco Tullio Giordana',1950,NULL),(320291,'Aldo Giordani',1914,1992),(320342,'Mario Giordano',1963,NULL),(320510,'José Giovanni',1923,2004),(320513,'Marita Giovanni',NULL,NULL),(320516,'Paul Giovanni',1933,1990),(320553,'George Gipe',1933,1986),(320564,'Fred Gipson',1908,1973),(320588,'Bob Giraldi',1939,NULL),(320630,'André Girard',NULL,NULL),(320647,'Danièle Girard',NULL,NULL),(320660,'François Girard',1963,NULL),(320667,'Hélène Girard',NULL,NULL),(320670,'Ilann Girard',NULL,NULL),(320721,'Rémy Girard',1950,NULL),(320727,'Suzanne Girard',1953,NULL),(320758,'Michèle Girardon',1938,1975),(320759,'Ana Girardot',1988,NULL),(320760,'Annie Girardot',1931,2011),(320762,'Hippolyte Girardot',1955,NULL),(320808,'Bernard Giraudeau',1947,2010),(320812,'Sara Giraudeau',1985,NULL),(320824,'Jean Giraudoux',1882,1944),(320852,'William Girdler',1947,1978),(320868,'Jacques-Rémy Girerd',NULL,NULL),(320981,'Marcello Girosi',1902,1965),(320988,'Massimo Girotti',1918,2003),(321017,'Jacqueline Giroux',NULL,NULL),(321088,'Dorothy Gish',1898,1968),(321114,'Antonio Gismondo',NULL,NULL),(321159,'Amos Gitai',1950,NULL),(321218,'Eric Gitter',NULL,NULL),(321228,'Harry Gittes',1936,2017),(321294,'Aldo Giuffrè',1924,2010),(321333,'Nicola Giuliano',1966,NULL),(321353,'Giampiero Giunti',NULL,NULL),(321363,'Tudor Giurgiu',1972,NULL),(321403,'Stéphane Giusti',1964,NULL),(321521,'Finn Gjerdrum',1961,NULL),(321554,'Olivier Glaas',NULL,NULL),(321621,'Richard N. Gladstein',1961,NULL),(321631,'Emile Gladstone',NULL,NULL),(321739,'Stephen Glantz',NULL,NULL),(321757,'Norbert Glanzberg',1910,2001),(321764,'Anton Glanzelius',1974,NULL),(321779,'Uschi Glas',1944,NULL),(321800,'Fiona Glascott',1982,NULL),(321842,'Markus Glaser',NULL,NULL),(321891,'Kubec Glasmon',1897,1938),(322002,'Ron Glass',1945,2016),(322045,'Barry Glasser',NULL,NULL),(322064,'Phillip Glasser',1978,NULL),(322106,'Jonathan Glassner',NULL,NULL),(322128,'Lesli Linka Glatter',1953,NULL),(322144,'Richard Glatzer',1952,2015),(322159,'Dana E. Glauberman',NULL,NULL),(322163,'Frank Glaubrecht',1943,NULL),(322165,'Robert Glaudini',NULL,NULL),(322204,'Baptiste Glaymann',NULL,NULL),(322227,'Benjamin Glazer',1887,1956),(322242,'Jonathan Glazer',1965,NULL),(322248,'Mitch Glazer',1953,NULL),(322256,'Tom Glazer',1914,2003),(322263,'Sidney Glazier',1916,2002),(322299,'James Gleason',1882,1959),(322306,'Joanna Gleason',1950,NULL),(322366,'Nicholas Gleaves',1969,NULL),(322368,'Francis Glebas',1953,NULL),(322407,'Brendan Gleeson',1955,NULL),(322467,'Tom Gleisner',NULL,NULL),(322513,'Iain Glen',1961,NULL),(322515,'John Glen',1932,NULL),(322591,'Diana Glenn',NULL,NULL),(322602,'Gordon Glenn',NULL,NULL),(322684,'Nick Glennie-Smith',1951,NULL),(322688,'Bert Glennon',1893,1967),(322691,'Gordon Glennon',NULL,1979),(322694,'James Glennon',1942,2006),(322706,'Peter Glenville',1913,1996),(322802,'Jonathan Glickman',1969,NULL),(322811,'Rana Joy Glickman',NULL,NULL),(322839,'Greg Glienna',1963,NULL),(322879,'Bartek Gliniak',1973,NULL),(322895,'Wienczyslaw Glinski',1921,2008),(322946,'Yoram Globus',1943,NULL),(322977,'Nebojsa Glogovac',1969,2018),(323065,'Liz Glotzer',NULL,NULL),(323075,'Richard C. Glouner',1931,1998),(323093,'Brian Glover',1934,1997),(323174,'Savion Glover',1973,NULL),(323196,'Janusz Glowacki',1938,2017),(323239,'Will Gluck',NULL,NULL),(323325,'Elinor Glyn',1864,1943),(323344,'Carlin Glynn',1940,2023),(323483,'Luis Gnecco',1962,NULL),(323558,'Krisztina Goda',1970,NULL),(323569,'A.R. Gobbett',NULL,NULL),(323576,'Hilda Gobbi',1913,1988),(323610,'John Goberman',NULL,NULL),(323661,'Gary Goch',NULL,2009),(323707,'Agnès Godard',1951,NULL),(323708,'Alain Godard',NULL,NULL),(323752,'Stephen Godchaux',NULL,NULL),(323772,'Daniel Goddard',NULL,NULL),(323787,'Gary Goddard',1954,NULL),(323859,'Ezra Godden',NULL,NULL),(323869,'Rumer Godden',1907,1998),(323885,'Patrick Godeau',NULL,NULL),(323886,'Philippe Godeau',NULL,NULL),(323941,'Serge Godet',NULL,NULL),(323945,'John Godey',1912,2006),(323950,'Bogumil Godfrejów',1976,NULL),(324009,'Patrick Godfrey',1933,NULL),(324041,'Wyck Godfrey',NULL,NULL),(324073,'Nicolas Godin',1969,NULL),(324122,'Jeff Gourson',1946,NULL),(324142,'Jill Godmilow',1943,NULL),(324184,'Lucio Godoy',1958,NULL),(324216,'Christopher Godsick',NULL,NULL),(324231,'Alexander Godunov',1949,1995),(324244,'Frank Godwin',1917,2012),(324274,'Vladimír Godár',1956,NULL),(324300,'Heiner Goebbels',1952,NULL),(324376,'Jamie Goehring',NULL,NULL),(324397,'Dave Goelz',1946,NULL),(324409,'Bárbara Goenaga',1983,NULL),(324462,'Angela Goethals',1977,NULL),(324473,'Johann Wolfgang von Goethe',1749,1832),(324499,'Augustus Goetz',1897,1957),(324501,'Carl Goetz',1862,1932),(324506,'Curt Goetz',1888,1960),(324516,'Henrike Goetz',NULL,NULL),(324521,'Kevin Goetz',NULL,NULL),(324537,'Ruth Goetz',1908,2001),(324544,'William Goetz',1903,1969),(324556,'Gary Goetzman',1952,NULL),(324574,'Gina G. Goff',NULL,NULL),(324578,'Ivan Goff',1910,1999),(324597,'Rusty Goffe',1948,NULL),(324658,'Walton Goggins',1971,NULL),(324672,'Michael Lee Gogin',NULL,NULL),(324690,'Nikolay Gogol',1809,1852),(324713,'Michael Goguen',NULL,NULL),(324747,'George Guhl',1875,1943),(324763,'Ilinca Goia',1969,NULL),(324770,'Gonzalo Goicoechea',1952,2009),(324790,'Joanna Going',1963,NULL),(324871,'Gila Golan',1940,NULL),(324875,'Menahem Golan',1929,2014),(324901,'Nicolás Goldbart',NULL,NULL),(324907,'Frederic Golchan',NULL,NULL),(324975,'Gary Gold',1967,NULL),(325050,'Murray Gold',1969,NULL),(325128,'Sandra Goldbacher',1960,NULL),(325135,'Willis Goldbeck',1898,1979),(325151,'Barry Goldberg',NULL,NULL),(325175,'Daniel Goldberg',1949,2023),(325181,'Darren Goldberg',NULL,NULL),(325196,'Eric Goldberg',1955,NULL),(325204,'Gary David Goldberg',1944,2013),(325214,'Harris Goldberg',1972,NULL),(325221,'Iddo Goldberg',1975,NULL),(325252,'Leonard Goldberg',1934,2019),(325261,'Marshall Goldberg',NULL,NULL),(325267,'Mel Goldberg',1922,2015),(325271,'Michael Goldberg',1959,2014),(325288,'Paula Goldberg',NULL,NULL),(325350,'Arthur Goldblatt',NULL,NULL),(325358,'Mark Goldblatt',NULL,NULL),(325382,'Norman D. Golden II',1984,NULL),(325390,'Annie Golden',1951,NULL),(325455,'Kit Golden',NULL,NULL),(325497,'Stephanie Golden',1975,NULL),(325533,'Michael Goldenberg',1965,NULL),(325543,'Simon Goldenberg',NULL,NULL),(325549,'William Goldenberg',1959,NULL),(325562,'Herbert Golder',NULL,NULL),(325589,'Phillip M. Goldfarb',1940,2022),(325597,'Debra Goldfield',NULL,NULL),(325623,'Charlie Goldhammer',NULL,NULL),(325653,'Daniel Goldin',NULL,NULL),(325662,'Joshua Goldin',NULL,NULL),(325665,'Marilyn Goldin',NULL,NULL),(325717,'William Golding',1911,1993),(325743,'Bo Goldman',1932,2023),(325755,'Clint Goldman',NULL,NULL),(325762,'David Goldman',NULL,NULL),(325776,'Gary Goldman',1944,NULL),(325778,'Gary Goldman',1953,NULL),(325799,'Jean-Jacques Goldman',1951,NULL),(325825,'Lawrence L. Goldman',1907,1990),(325858,'Mia Goldman',1954,NULL),(325877,'Paul Goldman',NULL,NULL),(325886,'Philippe Goldmann',NULL,NULL),(325903,'Scott Goldman',NULL,NULL),(325927,'Bernie Goldmann',NULL,NULL),(325989,'Renée Elise Goldsberry',1971,NULL),(326017,'Gilbert de Goldschmidt',1925,2010),(326040,'Akiva Goldsman',1962,NULL),(326063,'Elaine Goldsmith-Thomas',NULL,NULL),(326070,'George Goldsmith',NULL,NULL),(326074,'Gwen Goldsmith',NULL,NULL),(326092,'Josh Goldsmith',1970,NULL),(326107,'Martin Goldsmith',1913,1994),(326118,'Olivia Goldsmith',1949,2004),(326166,'Andrés Goldstein',NULL,NULL),(326214,'Gary W. Goldstein',NULL,NULL),(326246,'Jonathan Goldstein',1968,NULL),(326247,'Josh Goldstein',NULL,NULL),(326252,'Julie Goldstein',NULL,NULL),(326350,'Robert A. Goldston',1928,2017),(326364,'John Goldstone',1943,NULL),(326368,'Nat C. Goldstone',1903,1966),(326370,'Phil Goldstone',1893,1963),(326371,'Richard Goldstone',1912,2007),(326402,'John L. Goldwater',1916,1999),(326406,'Richard Goldwater',1936,2007),(326411,'Adam Goldworm',1978,NULL),(326412,'Samuel Goldwyn Jr.',1926,2015),(326415,'John Goldwyn',1958,NULL),(326418,'Samuel Goldwyn',1879,1974),(326448,'Ebrahim Golestan',1922,2023),(326450,'Richard Starzak',1959,NULL),(326479,'David Golia',NULL,NULL),(326496,'Norman Golightly',1972,NULL),(326497,'Osvaldo Golijov',1960,NULL),(326505,'Sveinung Golimo',1975,NULL),(326512,'Steve Golin',1955,2019),(326624,'Anne Golon',1921,2017),(326625,'Serge Golon',1903,1972),(326632,'Andrew Golov',NULL,NULL),(326702,'Isaac Golub',1969,2023),(326734,'Bryan Goluboff',NULL,NULL),(326740,'Srdan Golubovic',1972,NULL),(326751,'Yekaterina Golubeva',1966,2011),(326814,'Ed Gombert',1951,NULL),(326833,'Giorgio Gomelsky',1934,2016),(326937,'Miguel Gomes',1972,NULL),(326988,'Carlos Gómez',NULL,NULL),(327020,'Ian Gomez',1964,NULL),(327064,'Nick Gomez',1963,NULL),(327066,'Patricia Gomez',NULL,NULL),(327104,'Ryûtarô Gomi',1933,2013),(327120,'Alain Gomis',1972,NULL),(327150,'Mikhail Gomorov',1898,1981),(327211,'Jess Gonchor',1962,NULL),(327273,'Michel Gondry',1963,NULL),(327299,'Beibi Gong',NULL,NULL),(327439,'Leonor González Mina',NULL,NULL),(327649,'Conrad M. Gonzalez',1949,2022),(327659,'Eddie Gonzalez',NULL,NULL),(327729,'Laetitia Gonzalez',NULL,NULL),(327779,'Rick Gonzalez',1979,NULL),(327944,'Alejandro G. Iñárritu',1963,NULL),(327957,'Enrique González Macho',1947,NULL),(328076,'Carlos González',NULL,NULL),(328097,'Cesáreo González',1903,1968),(328098,'Chalo González',1925,2020),(328190,'Gregorio González',1974,NULL),(328251,'Joseph Julián González',NULL,NULL),(328400,'Nuria González',1962,NULL),(328557,'Affonso Gonçalves',1967,NULL),(328690,'Jack Good',1931,2017),(328709,'Meagan Good',1981,NULL),(328738,'Timothy A. Good',1974,NULL),(328751,'Caroline Goodall',1959,NULL),(328759,'Howard Goodall',1958,NULL),(328765,'Louise Goodall',1962,NULL),(328828,'Matthew Goode',1978,NULL),(328910,'Marie Goodhart',NULL,NULL),(328912,'Shari Goodhartz',NULL,NULL),(328934,'Robert Goodier',1916,2016),(328938,'Peggy Goodin',1923,1983),(328959,'David Goodis',1917,1967),(328966,'Saul A. Goodkind',1896,1962),(328987,'J. Mills Goodloe',1966,NULL),(329023,'Brian Goodman',1963,NULL),(329047,'David A. Goodman',1962,NULL),(329051,'David Zelag Goodman',1930,2011),(329060,'Dody Goodman',1914,2008),(329074,'Gary M. Goodman',NULL,NULL),(329084,'Gregory Goodman',1959,NULL),(329094,'Henry Goodman',1950,NULL),(329213,'Bob Goodman',NULL,NULL),(329224,'Samantha Goodman',NULL,NULL),(329304,'Frances Goodrich',1890,1984),(329339,'Thomas Goodridge',NULL,NULL),(329390,'Margaret Goodspeed',NULL,NULL),(329427,'Angela Goodwin',1925,2016),(329433,'Bill Goodwin',1910,1958),(329447,'Doris Kearns Goodwin',1943,NULL),(329467,'Harold Goodwin',1902,1987),(329481,'Ginnifer Goodwin',1978,NULL),(329486,'Jim Goodwin',NULL,NULL),(329507,'Laurel Goodwin',1942,2022),(329517,'Michael Goodwin',NULL,NULL),(329538,'Raven Goodwin',1992,NULL),(329544,'Richard N. Goodwin',1931,2018),(329545,'Richard Goodwin',1934,NULL),(329588,'Laila Goody',1971,NULL),(329640,'Michael A. Goorjian',1971,NULL),(329650,'Nicholaus Goossen',NULL,NULL),(329679,'Ray Goossens',1924,1998),(329751,'Alain Goraguer',1931,2023),(329753,'Tom Gorai',NULL,NULL),(329755,'Chris Gorak',1969,NULL),(329760,'Robert Guralnick',NULL,NULL),(329825,'Olivier Gorce',NULL,NULL),(329876,'Barbara Gordon',1956,NULL),(329879,'Scott Spencer Gorden',NULL,NULL),(329896,'David Gordian',NULL,NULL),(329947,'John Gordon Sinclair',1962,NULL),(329966,'Alex Gordon',1922,2003),(329993,'Anita Gordon',1929,2015),(330024,'Bernard Gordon',1918,2007),(330048,'Brian Gordon',NULL,NULL),(330077,'Charles Gordon',1947,2020),(330090,'Christopher Gordon',NULL,NULL),(330106,'Dan Gordon',1902,1969),(330108,'Dan Gordon',NULL,NULL),(330140,'Dennie Gordon',1953,NULL),(330150,'Don Gordon',1926,2017),(330198,'Gale Gordon',1906,1995),(330200,'Gavin Gordon',1901,1983),(330227,'Gordon Gordon',1906,2002),(330265,'Huntley Gordon',1887,1956),(330270,'Juan Gordon',NULL,NULL),(330335,'Jonathan Gordon',NULL,NULL),(330347,'Josh Gordon',NULL,NULL),(330360,'Keith Gordon',1961,NULL),(330371,'Kim Gordon',1953,NULL),(330379,'Lawrence Gordon',1936,NULL),(330380,'Larry Flash Jenkins',1955,2019),(330388,'Leo Gordon',1922,2000),(330390,'Leon Gordon',1891,1960),(330428,'Mark Gordon',1956,NULL),(330430,'Gordon Mark',NULL,NULL),(330435,'Mary Gordon',1882,1963),(330451,'Melvin Gordon',NULL,NULL),(330456,'Michael Gordon',1909,1993),(330468,'Mildred Gordon',1905,1979),(330517,'Peter Gordon',1932,NULL),(330518,'Peter Gordon',1951,NULL),(330545,'Richard Gordon',1925,2011),(330560,'Robert Gordon',NULL,NULL),(330565,'Robert Gordon',NULL,NULL),(330601,'Serena Gordon',1963,NULL),(330619,'Steve Gordon',1938,1982),(330687,'Joseph Gordon-Levitt',1981,NULL),(330704,'Graham Gordy',NULL,NULL),(330731,'Christopher Gore',1944,1988),(330759,'Michael Gore',1951,NULL),(330782,'Henryk Mikolaj Górecki',1933,2010),(330830,'Fridrikh Gorenshteyn',1932,2002),(330834,'Hartley Gorenstein',1966,NULL),(330856,'Jill Gorey',NULL,NULL),(330864,'Gillian Gorfil',NULL,NULL),(330901,'Adam Gorgoni',1963,NULL),(330913,'Christopher Gorham',1974,NULL),(330961,'Marius Goring',1912,1998),(331027,'Billy Gorlt',NULL,NULL),(331054,'Cliff Gorman',1936,2002),(331079,'James Gorman',1961,NULL),(331186,'Karen Lynn Gorney',1945,NULL),(331193,'Michael Gornick',NULL,NULL),(331296,'Marleen Gorris',1948,NULL),(331374,'Marjoe Gortner',1944,NULL),(331379,'Brad Gorton',1974,NULL),(331443,'Jeremy Gosch',NULL,NULL),(331453,'René Goscinny',1926,1977),(331514,'Paula Gosling',1939,NULL),(331516,'Ryan Gosling',1980,NULL),(331532,'Raja Gosnell',1958,NULL),(331563,'David Goss',NULL,NULL),(331577,'Luke Goss',1968,NULL),(331599,'Jean-René Gossart',NULL,NULL),(331683,'Gherardo Gossi',NULL,NULL),(331775,'Fritz Gottfurcht',1901,1973),(331810,'Morton Gottlieb',1921,2009),(331834,'Toshio Gotô',NULL,NULL),(331868,'Igor Gotesman',NULL,NULL),(331907,'Howard Gottfried',1923,2017),(331944,'Alex Gottlieb',1906,1988),(331956,'Carl Gottlieb',1938,NULL),(331988,'Linda Gottlieb',NULL,NULL),(331989,'Lisa Gottlieb',NULL,NULL),(331998,'Michael Gottlieb',1945,2014),(332027,'Christoph Gottschalch',1969,NULL),(332045,'Louis F. Gottschalk',1864,1934),(332052,'Thomas Gottschalk',1950,NULL),(332069,'Lee Gottsegen',NULL,NULL),(332080,'Christoph Gottwald',1954,NULL),(332087,'Mark Gottwald',NULL,NULL),(332146,'Elizabeth Goudge',1900,1984),(332148,'Col Goudie',1961,NULL),(332184,'Alfred Gough',1967,NULL),(332308,'Andy Gould',NULL,NULL),(332333,'Chester Gould',1900,1985),(332390,'Harold Gould',1923,2010),(332392,'Heywood Gould',1942,NULL),(332417,'Dardano Sacchetti',1944,NULL),(332447,'Melissa Gould',NULL,NULL),(332449,'Michael Gould',1961,NULL),(332467,'Peter Gould',NULL,NULL),(332531,'Alfred J. Goulding',1884,1972),(332539,'Edmund Goulding',1891,1959),(332545,'Jon P. Goulding',NULL,NULL),(332562,'Alain Goulem',1966,NULL),(332587,'Robert Goulet',1933,2007),(332647,'Romain Goupil',1951,NULL),(332659,'Manuela Gourary',NULL,NULL),(332709,'Olivier Gourmet',1963,NULL),(332752,'Christopher Goutman',1952,NULL),(332801,'Christine Gouze-Rénal',1914,2002),(332906,'John Gow',NULL,NULL),(332950,'Ashutosh Gowariker',1964,NULL),(332998,'Gibson Gowland',1877,1951),(333033,'Shyam Goel',NULL,NULL),(333043,'Manuel J. Goyanes',1913,1983),(333076,'Joe Goyette',NULL,NULL),(333123,'Christine Gozlan',1958,NULL),(333128,'Paolo Gozlino',1924,1992),(333132,'Naoe Gôzu',NULL,NULL),(333143,'Patricia Gozzi',1950,NULL),(333239,'Marita Grabiak',NULL,NULL),(333297,'Paul Grabowsky',NULL,NULL),(333315,'Alison Grace',NULL,NULL),(333317,'Anna Grace',NULL,NULL),(333376,'Michelle Grace',1968,NULL),(333410,'Topher Grace',1978,NULL),(333466,'Sancho Gracia',1936,2012),(333471,'Angel Gracia',NULL,NULL),(333513,'Ed Graczyk',NULL,NULL),(333523,'Tzahi Grad',1962,NULL),(333600,'James Grady',1949,NULL),(333638,'Susan Graef',NULL,NULL),(333701,'David Graf',1950,2001),(333747,'Robert Graf',1964,NULL),(333778,'Ilene Graff',1949,NULL),(333804,'Todd Graff',1959,NULL),(333818,'Benoît Graffin',1966,NULL),(333920,'Barbara Graham',1923,1955),(333949,'Bruce Graham',NULL,NULL),(334040,'Fred Graham',1908,1979),(334057,'Gerrit Graham',1949,NULL),(334138,'John R. Graham',NULL,NULL),(334150,'Julie Graham',1965,NULL),(334159,'Kat Graham',1989,NULL),(334179,'Lauren Graham',1967,NULL),(334234,'Morland Graham',1891,1949),(334262,'Richard Graham',1960,NULL),(334283,'Ronny Graham',1919,1999),(334301,'Sean Graham',1920,NULL),(334318,'Stephen Graham',1973,NULL),(334324,'Stuart Graham',1967,NULL),(334337,'Tracie Graham-Rice',NULL,NULL),(334353,'William A. Graham',1926,2013),(334357,'Winston Graham',1910,2003),(334370,'Kenneth Grahame',1859,1932),(334381,'Seth Grahame-Smith',1976,NULL),(334438,'Gawn Grainger',1937,NULL),(334441,'Holliday Grainger',1988,NULL),(334457,'Michael Grais',1948,NULL),(334603,'Alexander Granach',1893,1945),(334671,'Steve Granat',NULL,NULL),(334746,'Dale Grand',NULL,NULL),(334747,'Dominique Grand',NULL,NULL),(334773,'Sylvain Grand',NULL,NULL),(334787,'Michael Grandage',1962,NULL),(334849,'Alain Grandgerard',NULL,NULL),(334873,'Ethel Grandin',1894,1988),(334880,'Temple Grandin',1947,NULL),(334882,'Darío Grandinetti',1959,NULL),(334894,'Carlos Grandjean',NULL,NULL),(334924,'Patrick Grandperret',1946,2019),(334926,'Richard Grandpierre',NULL,NULL),(334986,'Bert Granet',1910,2002),(335022,'Carlos Grangel',NULL,NULL),(335048,'Farley Granger',1925,2011),(335073,'Philip Granger',1964,NULL),(335096,'Jean-Christophe Grangé',1961,NULL),(335098,'Lena Granhagen',1938,NULL),(335138,'Debra Granik',1963,NULL),(335210,'Helene Granqvist',NULL,NULL),(335264,'Arthur Grant',1915,1972),(335275,'Beth Grant',NULL,NULL),(335283,'Brian Grant',1950,NULL),(335337,'Darren Grant',NULL,NULL),(335400,'Garrett Grant',NULL,NULL),(335455,'James Edward Grant',1905,1966),(335471,'John Grant',1891,1955),(335497,'Kathryn Grant',1933,NULL),(335517,'Lawrence Grant',1870,1952),(335519,'Lee Grant',1925,NULL),(335576,'Moray Grant',1917,1977),(335577,'Morton Grant',1903,1980),(335592,'Oliver \'Power\' Grant',NULL,NULL),(335605,'Peter Grant',1955,NULL),(335643,'Schuyler Grant',1971,NULL),(335666,'Susannah Grant',1963,NULL),(335715,'Lucy Grantham',1951,NULL),(335748,'Bonita Granville',1923,1988),(335788,'Charley Grapewin',1869,1956),(335799,'Stéphane Grappelli',1908,1997),(335801,'Sarah Grappin',1978,NULL),(335831,'Mauri Grashin',1901,1991),(335848,'Günter Grass',1927,2015),(335875,'Helmut Grasser',1961,NULL),(335951,'Stephan Grossmann',1971,NULL),(335968,'Sal Grasso',NULL,NULL),(336057,'Albin Grau',1884,1971),(336076,'Jorge Grau',1930,2018),(336125,'Ona Grauer',1975,NULL),(336145,'Jeffrey Graup',NULL,NULL),(336161,'Regula Grauwiller',1970,NULL),(336171,'Lynda Gravatt',NULL,NULL),(336260,'Chris Graves',NULL,NULL),(336337,'Peter D. Graves',NULL,NULL),(336339,'Ralph Graves',1900,1977),(336341,'Peter Musgrave',1931,2018),(336345,'Robert Graves',1895,1985),(336377,'George Gravett',NULL,NULL),(336434,'Allan Gray',1904,1973),(336472,'Beverly Gray',NULL,NULL),(336474,'Billy Gray',1938,NULL),(336486,'Bradley Rust Gray',1971,NULL),(336500,'Carole Gray',1938,NULL),(336509,'Charles Gray',1928,2000),(336531,'Coleen Gray',1922,2015),(336582,'Dorian Gray',1928,2011),(336620,'F. Gary Gray',1969,NULL),(336668,'Gordon Gray',NULL,NULL),(336675,'Harold Gray',1894,1968),(336683,'Hunter Gray',NULL,NULL),(336695,'James Gray',1969,NULL),(336701,'Mamie Gummer',1983,NULL),(336726,'John Gray',NULL,NULL),(336770,'Lawrence Gray',1898,1970),(336807,'Marianne Gray',NULL,NULL),(336819,'Matt Gray',1967,NULL),(336831,'Mike Gray',1935,2013),(336861,'Pamela Gray',NULL,NULL),(336960,'Spalding Gray',1941,2004),(336978,'Thomas K. Gray',NULL,NULL),(336984,'Thomas J. Gray',1888,1924),(337003,'Vivean Gray',1924,2016),(337008,'William Gray',NULL,NULL),(337113,'Kathryn Grayson',1922,2010),(337284,'Wendy Grean',NULL,NULL),(337287,'Patti Greaney',NULL,NULL),(337313,'Richard Greatrex',1947,NULL),(337432,'Buddy Greco',1926,2017),(337493,'Michael P. Greco',NULL,NULL),(337541,'Paul Gégauff',1922,1983),(337544,'Michael Greer',1943,2002),(337582,'Adolph Green',1914,2002),(337586,'Alfred E. Green',1889,1960),(337669,'Bruce Green',NULL,NULL),(337676,'Brunson Green',NULL,NULL),(337730,'Cliff Green',1934,2020),(337731,'Clifford Green',NULL,NULL),(337751,'Dan Green',1975,NULL),(337773,'David Gordon Green',1975,NULL),(337825,'Ellen Green',NULL,NULL),(337837,'F.L. Green',1902,1953),(337885,'Guy Green',1913,2005),(337894,'Harry Green',1892,1958),(337898,'Philip Green',1911,1982),(337906,'Hilton A. Green',1929,2013),(337914,'Howard J. Green',1893,1965),(337944,'Janet Green',1908,1993),(337976,'Jill Green',NULL,NULL),(338018,'Joseph Green',1928,1999),(338032,'Justin C. Green',1978,NULL),(338126,'Marika Green',1943,NULL),(338169,'Michael Green',1973,NULL),(338191,'Mitzi Green',1920,1969),(338210,'Nigel Green',1924,1972),(338242,'Peter N. Green',1970,NULL),(338253,'Rebecca Green',1978,NULL),(338292,'Robson Green',1964,NULL),(338313,'Sidney Green',1928,1999),(338320,'Sarah Green',NULL,NULL),(338379,'Tom Green',1852,1942),(338381,'Tom Green',1971,NULL),(338396,'Walon Green',1936,NULL),(338513,'Gerald B. Greenberg',1936,2017),(338537,'Jonathan Greenberg',NULL,NULL),(338557,'Matt Greenberg',NULL,NULL),(338575,'Richard Greenberg',NULL,NULL),(338576,'Rob Greenberg',NULL,NULL),(338577,'Robbie Greenberg',1947,NULL),(338591,'Stanley R. Greenberg',1927,2002),(338625,'Shon Greenblatt',1967,NULL),(338633,'Dan Greenburg',1936,NULL),(338696,'Callum Greene',1971,NULL),(338707,'Clarence Greene',1913,1995),(338714,'Danford B. Greene',1928,2015),(338719,'David Greene',1921,2003),(338726,'David Greene',NULL,NULL),(338746,'Ellen Greene',1951,NULL),(338751,'Eve Greene',1906,1997),(338796,'Joe Greene',1915,1986),(338867,'Michael Greene',1933,2020),(338886,'Peter Greene',1965,NULL),(338950,'Ward Greene',1892,1956),(339004,'Luke Greenfield',1972,NULL),(339010,'Matthew Greenfield',NULL,NULL),(339011,'Max Greenfield',1980,NULL),(339030,'Paul Greengrass',1955,NULL),(339043,'Matt Greenhalgh',NULL,NULL),(339046,'Peter Greenhalgh',NULL,2015),(339086,'Robert Greenhut',1942,NULL),(339159,'Brad Greenquist',1959,NULL),(339171,'Alan Greenspan',NULL,NULL),(339245,'Maggie Greenwald',1955,NULL),(339254,'Robert Greenwald',1945,NULL),(339260,'Ted Greenwald',NULL,NULL),(339304,'Bruce Greenwood',1956,NULL),(339307,'Charlotte Greenwood',1890,1977),(339326,'Edwin Greenwood',1895,1939),(339343,'Joan Greenwood',1921,1987),(339351,'Jonny Greenwood',1971,NULL),(339452,'Jane Greer',1924,2001),(339460,'Judy Greer',1975,NULL),(339470,'Liza Greer',1963,NULL),(339482,'Richard Greer',1928,NULL),(339562,'Bradley Gregg',NULL,NULL),(339621,'Pascal Greggory',1954,NULL),(339657,'Horst Wendlandt',1922,2002),(339669,'Nora Gregor',1901,1949),(339704,'Mario Grigorov',NULL,NULL),(339713,'Eduardo de Gregorio',1942,2012),(339733,'Alex Gregory',NULL,NULL),(339737,'Andre Gregory',1934,NULL),(339745,'Benji Gregory',1978,NULL),(339834,'James Gregory',1911,2002),(339856,'Jon Gregory',1944,2021),(339874,'Laura Gregory',1957,NULL),(339889,'Mary Gregory',1927,2018),(339920,'Paul Gregory',1920,2015),(339925,'Philippa Gregory',1954,NULL),(339995,'Richard Gregson',1930,2019),(340003,'Rupert Gregson-Williams',1967,NULL),(340052,'David Greig',1969,NULL),(340088,'Fritz Greiner',1879,1933),(340112,'Alan Greisman',1947,NULL),(340190,'Frédéric Grendel',1924,2001),(340199,'Bernard Grenet',1943,NULL),(340260,'Zach Grenier',NULL,NULL),(340284,'Macha Grenon',1968,NULL),(340317,'Alejandra Grepi',1962,NULL),(340343,'William Lindsay Gresham',1909,1962),(340436,'Kevin Greutert',NULL,NULL),(340456,'Tim Greve',NULL,NULL),(340485,'Kevin Grevioux',1962,NULL),(340490,'Arvinder Greywal',NULL,2020),(340514,'Anne Grey',1907,1987),(340522,'Brad Grey',1957,2017),(340551,'Denise Grey',1896,1996),(340580,'Harry Grey',1901,1980),(340599,'John Grey',1885,1964),(340674,'Rudolph Grey',NULL,NULL),(340719,'Zane Grey',1872,1939),(340720,'Zena Grey',1988,NULL),(340795,'Bernard Gribble',1927,2004),(340797,'David Gribble',1946,NULL),(340799,'Harry Wagstaff Gribble',1896,1981),(340864,'Frank Griebe',1964,NULL),(340894,'Sergio Grieco',1917,1982),(340926,'Helmut Griem',1932,2004),(340973,'Jon Gries',1957,NULL),(341040,'Neil Grieve',NULL,NULL),(341055,'Joe Grifasi',1944,NULL),(341071,'Maurice Griffe',1921,2013),(341081,'Gary Griffin',1938,1996),(341097,'Simone Griffeth',1950,NULL),(341110,'Angela Griffin',1976,NULL),(341134,'Carlton Griffin',1893,1940),(341152,'Dan Griffin',1971,NULL),(341174,'Douglas M. Griffin',1966,NULL),(341176,'Eddie Griffin',1968,NULL),(341178,'Eleanore Griffin',1904,1995),(341210,'Hayden Griffin',1943,2013),(341260,'Josephine Griffin',1928,2005),(341301,'Martha Griffin',NULL,NULL),(341372,'Ted Griffin',1970,NULL),(341377,'Tim Griffin',NULL,NULL),(341384,'Tom Griffin',NULL,NULL),(341389,'Tony Griffin',1959,NULL),(341431,'Andy Griffith',1926,2012),(341458,'Charles B. Griffith',1930,2007),(341472,'David Griffith',1948,NULL),(341476,'Don Griffith',1918,1987),(341486,'Edward H. Griffith',1888,1975),(341518,'Hugh Griffith',1912,1980),(341526,'James Griffith',1916,1993),(341554,'Katherine Griffith',1876,1921),(341558,'Kenneth Griffith',1921,2006),(341562,'Kristin Griffith',1953,NULL),(341632,'Emma Griffiths Malin',1980,NULL),(341673,'Fred Griffiths',1912,1994),(341702,'Keith Griffiths',1947,NULL),(341710,'Linda Griffiths',1953,2014),(341737,'Rachel Griffiths',1968,NULL),(341743,'Richard Griffiths',1947,2013),(341767,'Trevor Griffiths',1935,NULL),(341772,'Paul Griffiths-Davies',NULL,NULL),(341948,'Elena Morozova',1973,NULL),(342029,'Frank Grillo',NULL,NULL),(342045,'Michael Grillo',NULL,NULL),(342090,'Alberto Grimaldi',1925,2021),(342151,'Nicole Grimaudo',1980,NULL),(342156,'Paul Grimault',1905,1994),(342176,'Pierre Grimblat',1922,2016),(342241,'Scott Grimes',1971,NULL),(342267,'Daniel Grimm',NULL,NULL),(342278,'Jacob Grimm',1785,1863),(342303,'Wilhelm Grimm',1786,1859),(342393,'Anouk Grinberg',1963,NULL),(342399,'Greg Grunberg',1966,NULL),(342430,'Nicole Paradis Grindle',NULL,NULL),(342458,'Nikolay Grinko',1920,1989),(342488,'Rupert Grint',1988,NULL),(342505,'Maria Gripe',1923,2007),(342523,'Nicholas Grippo',1938,2003),(342617,'Tony Grisoni',1952,NULL),(342708,'Steven Grives',1951,NULL),(342732,'George Grizzard',1928,2007),(342737,'Juan Grizzle',NULL,NULL),(342788,'Lati Grobman',1971,NULL),(342841,'Daniel Grodnik',NULL,NULL),(342881,'Harry Groener',1951,NULL),(342931,'Clare Grogan',1962,NULL),(343019,'Clarens Grollmann',1968,NULL),(343082,'Marc-André Grondin',1984,NULL),(343165,'Winston Groom',1943,2020),(343210,'Lisa Grootenboer',1961,NULL),(343222,'David Gropman',1952,NULL),(343228,'Milton Herbert Gropper',1896,1955),(343260,'Ulu Grosbard',1929,2012),(343266,'Andreas Grosch',1949,NULL),(343320,'Andrew Gross',1969,NULL),(343325,'Arye Gross',NULL,NULL),(343342,'Charles Gross Jr.',1914,1958),(343343,'Charles Gross',1934,NULL),(343378,'Guy Gross',NULL,NULL),(343390,'Jeff Gross',NULL,NULL),(343399,'Jerry Gross',1940,2002),(343403,'Joel Gross',NULL,NULL),(343419,'Larry Gross',1953,NULL),(343444,'Mary Gross',1953,NULL),(343446,'Matthew Gross',NULL,NULL),(343447,'Michael Gross',1947,NULL),(343453,'Michael C. Gross',1945,2015),(343472,'Paul Gross',1959,NULL),(343481,'Roland Gross',1909,1989),(343525,'Robert Grossbach',NULL,NULL),(343532,'Jack Grossberg',1927,2001),(343543,'Christina Große',1970,NULL),(343547,'Nina Grosse',1958,NULL),(343570,'Norman J. Grossfeld',1963,NULL),(343713,'Seth Grossman',1975,NULL),(343728,'Vasiliy Grossman',1905,1964),(343797,'Carol Holman Grosvenor',NULL,NULL),(343799,'Charles Grosvenor',NULL,NULL),(343844,'Jacob Groth',1951,NULL),(343846,'Jeff Groth',NULL,NULL),(343857,'Sylvester Groth',1958,NULL),(343898,'Daniel Grou',1967,NULL),(343903,'Jonás Trueba',1981,NULL),(343935,'Larry Groupé',1957,NULL),(344010,'Deborah Grover',NULL,NULL),(344171,'Jean Gruault',1924,2015),(344181,'Davis Grubb',1919,1980),(344188,'Robert Grubb',1950,NULL),(344246,'Frank Gruber',1904,1969),(344259,'J. Mackye Gruber',NULL,NULL),(344382,'Henri Gruel',1923,2007),(344391,'Margaret Gruen',NULL,NULL),(344402,'Louis Gruenberg',1883,1964),(344408,'Eric Gruendemann',NULL,NULL),(344435,'Ioan Gruffudd',1973,NULL),(344467,'Jean-Claude Grumberg',1939,NULL),(344496,'Adrian Grunberg',NULL,NULL),(344612,'Malte Grunert',1967,NULL),(344620,'Gabriel Grunfeld',NULL,NULL),(344657,'Peter Grunwald',NULL,NULL),(344710,'Michael Gruskoff',1935,NULL),(344734,'Karolina Gruszka',1980,NULL),(344738,'Alexander Gruszynski',1950,NULL),(344761,'Jerzy Gruza',1932,2020),(344798,'Halina Gryglaszewska',1917,2010),(344847,'Cezary Grzesiuk',1963,NULL),(344899,'Jean-Pierre Grédy',1920,2022),(344932,'Laurent Grévill',1961,NULL),(344963,'Herbert Grönemeyer',1956,NULL),(344973,'Philip Gröning',1959,NULL),(344985,'Anders Grönros',1953,NULL),(345014,'Launy Grøndahl',NULL,NULL),(345046,'Klaus-Michael Grüber',1941,2008),(345116,'Martin Gschlacht',1969,NULL),(345144,'Pao-Ming Ku',1950,2022),(345146,'Changwei Gu',1957,NULL),(345150,'Joseph Koo',1931,2023),(345174,'Luca Guadagnino',1971,NULL),(345279,'Vince Guaraldi',1928,1976),(345291,'Bea Guard',NULL,NULL),(345294,'Charles Guard',NULL,NULL),(345295,'Christopher Guard',1953,NULL),(345307,'Thomas Guard',NULL,NULL),(345359,'John Guare',1938,NULL),(345409,'José Luis Guarner',1937,1993),(345488,'Paul Guay',NULL,NULL),(345491,'Richard Guay',NULL,NULL),(345536,'Nikolay Gubenko',1941,2020),(345542,'Peter Guber',1942,NULL),(345549,'Román Gubern',1934,NULL),(345550,'Oscar Gubernati',NULL,NULL),(345615,'Christian Gudegast',1970,NULL),(345637,'Mac Gudgeon',1949,2023),(345674,'Lars Gudmestad',1969,NULL),(345695,'Sverrir Gudnason',1978,NULL),(345741,'Sonia Guedes',1932,2019),(345743,'Tiago Guedes',1971,NULL),(345991,'Andrea Guerra',1961,NULL),(345999,'Blanca Guerra',1953,NULL),(346027,'Jackie Guerra',1965,NULL),(346087,'Ruy Guerra',1931,NULL),(346096,'Tonino Guerra',1920,2012),(346270,'Álvaro Guerrero',NULL,NULL),(346277,'Jorge Guerricaechevarría',1965,NULL),(346306,'Stéphan Guérin-Tillié',1972,NULL),(346315,'Orso Maria Guerrini',1942,NULL),(346363,'Samir Guesmi',1967,NULL),(346395,'Don Guest',1934,2010),(346407,'Judith Guest',1936,NULL),(346411,'Lance Guest',1960,NULL),(346415,'Nicholas Guest',NULL,NULL),(346436,'Val Guest',1911,2006),(346466,'Ernesto \'Che\' Guevara',1928,1967),(346510,'Makhouredia Gueye',NULL,NULL),(346532,'Burnett Guffey',1905,1983),(346534,'Alain Guffroy',NULL,NULL),(346535,'Pierre Guffroy',1926,2010),(346537,'Madeleine Gug',1913,1971),(346550,'Davis Guggenheim',1963,NULL),(346607,'Biski Gugushe',1969,NULL),(346653,'Adrien Borel',NULL,NULL),(346677,'Camille Guichard',NULL,NULL),(346751,'Paola Guidi',NULL,NULL),(346756,'Don Guidice',1932,2010),(346761,'Elda Guidinetti',NULL,NULL),(346790,'Laurentina Guidotti',NULL,NULL),(346804,'Robert Guidry',NULL,NULL),(346962,'Miguel Guilherme',1958,NULL),(347029,'Guillaume Malandrin',NULL,NULL),(347039,'Robert Guillaume',1927,2017),(347045,'Frances Vernor Guille',NULL,NULL),(347069,'Sophie Guillemin',1977,NULL),(347071,'Agnès Guillemot',1931,2005),(347086,'John Guillermin',1925,2015),(347149,'Sienna Guillory',1975,NULL),(347188,'Jan Guillou',1944,NULL),(347218,'Fernando Guillén',1932,2013),(347257,'Paul Guimard',1921,2004),(347384,'Ed Guiney',NULL,NULL),(347443,'Kate Guinzburg',1957,2017),(347447,'Jean Guinée',NULL,NULL),(347451,'Fred Guiol',1898,1964),(347465,'David A. Stewart',1952,NULL),(347492,'Alain Guiraudie',1964,NULL),(347509,'Tom Guiry',1981,NULL),(347541,'Henri Guisol',1904,1994),(347546,'Goundo Guissé',NULL,NULL),(347605,'Madeleine Guitty',1870,1936),(347656,'Clu Gulager',1928,2022),(347732,'Jim Gulian',NULL,NULL),(347775,'Caio Gullane',NULL,NULL),(347776,'Fabiano Gullane',NULL,NULL),(347797,'Sean Gullette',1968,NULL),(347858,'David Gulpilil',1953,2021),(347882,'Buda Gulyás',1949,NULL),(347899,'Gulzar',1934,NULL),(348039,'Natalya Gundareva',1948,2005),(348151,'Andrew Gunn',1969,NULL),(348152,'Anna Gunn',1968,NULL),(348155,'Bill Gunn',1929,1989),(348160,'Brian Gunn',NULL,NULL),(348175,'Gilbert Gunn',1905,1967),(348181,'James Gunn',1966,NULL),(348186,'Janet Gunn',1961,NULL),(348197,'Jon Gunn',1973,NULL),(348199,'Judy Gunn',1915,1991),(348208,'Mark Gunn',NULL,NULL),(348214,'Moses Gunn',1929,1993),(348276,'Þröstur Leó Gunnarsson',1961,NULL),(348347,'Mehmet Günsür',1975,NULL),(348348,'Archibald Clavering Gunter',1847,1907),(348363,'Robert Gunter',NULL,NULL),(348409,'Bob Gunton',1945,NULL),(348483,'Pinaki Sengupta',NULL,NULL),(348568,'Stipe Gurdulic',1925,2006),(348604,'Pierre Gurgo-Salice',1894,1974),(348612,'Paul R. Gurian',NULL,NULL),(348640,'Andrew Gurland',1971,NULL),(348748,'Kick Gurry',1978,NULL),(348873,'Carles Gusi',1953,NULL),(348888,'Aleksey Guskov',1958,NULL),(348993,'Mark Gustafson',NULL,NULL),(349023,'Gittan Gustafsson',1924,2003),(349050,'Piodor Gustafsson',1962,NULL),(349052,'Robert Gustafsson',1964,NULL),(349168,'Robin Gutch',NULL,NULL),(349177,'Edward A. Gutentag',1958,NULL),(349183,'Lawrence Guterman',NULL,NULL),(349204,'Manfred Guthe',1946,2023),(349207,'Steven Gutheinz',NULL,NULL),(349238,'A.B. Guthrie Jr.',1901,1991),(349241,'Arlo Guthrie',1947,NULL),(349246,'Carl E. Guthrie',1905,1967),(349259,'Eric Guthrie',NULL,NULL),(349310,'Tyrone Guthrie',1900,1971),(349356,'Frank Gutiérrez',NULL,NULL),(349406,'Sebastian Gutierrez',1974,NULL),(349427,'Emilio Gutiérrez Caba',1942,NULL),(349428,'Irene Gutiérrez Caba',1929,1995),(349493,'Elsa María Gutiérrez',NULL,NULL),(349522,'Javier Gutiérrez',1971,NULL),(349562,'María Luisa Gutiérrez',1973,NULL),(349611,'Zaide Silvia Gutiérrez',1959,NULL),(349654,'Michael Gutmann',1956,NULL),(349663,'Kristen Gutoskie',1988,NULL),(349667,'Gene Gutowski',1925,2016),(349720,'Diane Gutterud',NULL,NULL),(349776,'Bertil Guve',1970,NULL),(349777,'Ozan Güven',1975,NULL),(349785,'Alice Guy',1873,1968),(349881,'Murphy Guyer',1952,NULL),(349935,'Paul Guyot',NULL,NULL),(349966,'Eddie Guzelian',1976,NULL),(350011,'Pato Guzman',1933,1991),(350046,'Delfina Guzmán',1928,NULL),(350079,'Luis Guzmán',1956,NULL),(350125,'Caterina Guzzanti',1976,NULL),(350196,'Georges Géret',1924,1996),(350225,'Jean-Pierre Guérin',1940,NULL),(350250,'Georges Guétary',1915,1997),(350273,'Hilmir Snær Guðnason',1969,NULL),(350324,'Edmund Gwenn',1877,1959),(350328,'Tadeusz Gwiazdowski',1918,1983),(350335,'Robert Gwilym',1956,NULL),(350380,'Michael C. Gwynne',1942,NULL),(350451,'Linda Zilliacus',1977,NULL),(350453,'Jake Gyllenhaal',1980,NULL),(350454,'Maggie Gyllenhaal',1977,NULL),(350551,'János Gyuriska',1972,NULL),(350595,'András Gyürki',1947,NULL),(350603,'Miklós Gábor',1919,1998),(350619,'László Gálffi',1952,NULL),(350642,'János Gálvölgyi',1948,NULL),(350662,'Géza Gárdonyi',1863,1922),(350726,'François Gédigier',NULL,NULL),(350742,'Anne-Marie Gélinas',NULL,NULL),(350758,'József Gémes',1939,2013),(350765,'André Génovès',1941,2012),(350823,'Jérôme Géronimi',NULL,NULL),(350884,'Ernesto Gómez Cruz',1933,NULL),(351006,'Andrés Vicente Gómez',1943,NULL),(351016,'Antxón Gómez',NULL,NULL),(351029,'Carmelo Gómez',1962,NULL),(351042,'Consuelo Gómez',NULL,NULL),(351104,'Iñaki Gómez Sarasola',NULL,NULL),(351133,'José Luis Gómez',1940,NULL),(351329,'Jerzy Goscik',1934,2003),(351401,'Marie Göranzon',1942,NULL),(351486,'Sigi Rothemund',1944,NULL),(351495,'István Göz',1949,NULL),(351498,'Ali Olcay Gözkaya',1970,NULL),(351627,'Dietmar Güntsche',1968,NULL),(351710,'Ha Ji-Won',1978,NULL),(351772,'Trent Haaga',NULL,NULL),(351919,'Charles S. Haas',1952,NULL),(351929,'Derek Haas',1970,NULL),(352058,'Klaus Haase',NULL,NULL),(352138,'Michael Habeck',1944,2011),(352229,'Steve Haberman',NULL,NULL),(352232,'Jenõ Hábermann',1949,NULL),(352267,'Nuri Habib',1919,NULL),(352278,'Matthias Habich',1940,NULL),(352302,'Michael Haboush',1969,NULL),(352320,'Heather Hach',NULL,NULL),(352325,'Joëlle Hache',NULL,NULL),(352374,'Olivia Hack',1983,NULL),(352379,'Shelley Hack',1947,NULL),(352391,'Alexander Hacke',1965,NULL),(352394,'A.W. Hackel',1882,1959),(352402,'Carla Hacken',1961,NULL),(352443,'Albert Hackett',1900,1995),(352466,'Joan Hackett',1934,1983),(352471,'Jonathan Hackett',NULL,NULL),(352489,'Michael Hackett',NULL,NULL),(352493,'Pat Hackett',NULL,NULL),(352524,'David Hackl',NULL,NULL),(352528,'Karlheinz Hackl',1949,2014),(352600,'Kentarô Haneda',1949,2007),(352695,'Jimmy Hadder',NULL,NULL),(352703,'Heinrich Hadding',1972,NULL),(352774,'Sara Haden',1898,1981),(352778,'Bill Hader',1978,NULL),(352780,'Josef Hader',1962,NULL),(352820,'Samuel Hadida',1953,2018),(352834,'Belkacem Hadjadj',NULL,NULL),(352835,'Brahim Hadjadj',NULL,NULL),(352836,'David Hadjadj',NULL,NULL),(352855,'Nickolay Hadjiminev',NULL,NULL),(352901,'Kenneth Hadley',NULL,NULL),(352905,'Michael Hadley',NULL,NULL),(352921,'Mark Hadlow',1957,NULL),(352968,'Lucile Hadzihalilovic',1961,NULL),(352980,'Christine Haebler',NULL,NULL),(353010,'Anette Haellmigk',NULL,NULL),(353012,'Bert Hamelinck',1968,NULL),(353074,'Veronika Jenet',NULL,NULL),(353091,'Oswald Hafenrichter',1899,1973),(353137,'Andrew Hafitz',NULL,NULL),(353142,'Nayeem Hafizka',NULL,NULL),(353180,'David Haft',1923,2008),(353183,'Jeremy Haft',1972,NULL),(353187,'Steven Haft',NULL,NULL),(353243,'Molly Hagan',1961,NULL),(353248,'Shana Hagan',NULL,NULL),(353351,'Martin Hagemann',NULL,NULL),(353405,'Jean Hagen',1923,1977),(353414,'Julius Hagen',1884,1940),(353448,'Ross Hagen',1938,2011),(353527,'Richard Hagerman',NULL,NULL),(353546,'Julie Hagerty',1955,NULL),(353563,'D. Gregor Hagey',NULL,NULL),(353584,'H. Rider Haggard',1856,1925),(353614,'Captain Haggerty',1931,2006),(353630,'Dylan Haggerty',1969,NULL),(353673,'Paul Haggis',1953,NULL),(353702,'Ken Hagino',NULL,NULL),(353714,'Ken\'ichi Hagiwara',1950,2019),(353715,'Kenji Hagiwara',NULL,NULL),(353717,'Masato Hagiwara',1971,NULL),(353813,'Juliette Hagopian',NULL,NULL),(353893,'Don Hahn',1955,NULL),(353916,'Jess Hahn',1921,1998),(353929,'Kristin Hahn',1969,NULL),(353963,'Rob Hahn',NULL,NULL),(353964,'Rochus Hahn',1960,NULL),(353970,'Steven Hahn',NULL,NULL),(353991,'Christoph Hahnheiser',1962,NULL),(354008,'Chung-Man Yee',NULL,NULL),(354011,'Longo Hai',NULL,NULL),(354024,'Charles Haid',1943,NULL),(354069,'David Haig',1955,NULL),(354075,'Iranui Haig',NULL,NULL),(354085,'Sid Haig',1939,2019),(354091,'Andrew Haigh',NULL,NULL),(354117,'George Haight',1905,1984),(354120,'Michael Haight',NULL,NULL),(354150,'Arthur Hailey',1920,2004),(354198,'Jeanette Hain',1969,NULL),(354229,'Bert Haines',1896,1991),(354245,'Francis Haines',1957,NULL),(354279,'Randa Haines',1945,NULL),(354317,'William Wister Haines',1908,1989),(354325,'Marcelle Hainia',1896,1968),(354327,'Celia Haining',NULL,NULL),(354413,'Jacques Haitkin',1950,2023),(354453,'tomandandy',NULL,NULL),(354474,'Ivan Hajek',NULL,NULL),(354479,'Ron Hajak',1951,2011),(354484,'Malgorzata Hajewska',1965,NULL),(354486,'Haji',1946,2013),(354490,'Takaya Hashi',1952,NULL),(354508,'Mitra Hajjar',1977,NULL),(354518,'Stephen Hajnal',NULL,NULL),(354560,'Yoshihiko Hakamada',1973,NULL),(354602,'André Hakim',1915,1980),(354611,'Gaston Hakim',NULL,NULL),(354623,'Raymond Hakim',1909,1980),(354624,'Robert Hakim',1907,1992),(354677,'Jean Halain',1920,2000),(354691,'John Halas',1912,1995),(354693,'Linda Halaska',NULL,NULL),(354713,'Bella Halben',1957,NULL),(354774,'Birgitte Hald',1964,NULL),(354878,'Creighton Hale',1889,1965),(354913,'Georgia Hale',1900,1985),(354916,'Grace Hayle',1888,1963),(354918,'Gregg Hale',NULL,NULL),(354942,'John Hale',1926,NULL),(355024,'Tony Hale',1970,NULL),(355048,'Brigitte Hales',NULL,NULL),(355051,'Gordon Hales',1916,1994),(355054,'Jonathan Hales',1937,NULL),(355077,'Alex Haley',1921,1992),(355097,'Jackie Earle Haley',1961,NULL),(355147,'Lianne Halfon',1953,NULL),(355181,'H.B. Halicki',1940,1989),(355213,'Jean-François Halin',1961,NULL),(355261,'Trevor Dudley Smith',1920,1995),(355284,'Alexander Hall',1894,1968),(355285,'Alex Hall',NULL,NULL),(355331,'Barbara A. Hall',NULL,NULL),(355363,'Brian Hall',1937,1997),(355379,'Bug Hall',1985,NULL),(355434,'Conrad W. Hall',1958,NULL),(355440,'Craig Hall',NULL,NULL),(355502,'Dolly Hall',1960,NULL),(355621,'Grayson Hall',1922,1985),(355681,'James Norman Hall',1887,1951),(355699,'Jason Hall',1972,NULL),(355722,'Jess Hall',1971,NULL),(355775,'Karen Lee Hall',NULL,NULL),(355790,'Kenneth J. Hall',1958,NULL),(355806,'Klay Hall',1958,NULL),(355822,'Lee Hall',1966,NULL),(355910,'Michael C. Hall',1971,NULL),(355964,'Oakley Hall',1920,2008),(355973,'Parnell Hall',NULL,NULL),(355983,'Paul Hall',NULL,NULL),(356004,'Porter Hall',1888,1953),(356017,'Rebecca Hall',1982,NULL),(356021,'Regina Hall',1970,NULL),(356075,'Sam Hall',1921,2014),(356159,'Thurston Hall',1882,1958),(356201,'Walter S. Hall',NULL,NULL),(356227,'Willis Hall',1929,2005),(356268,'John Hallam',1941,2006),(356280,'Kendra Haaland',1959,NULL),(356284,'Jane Hallaren',1940,NULL),(356310,'Göran Hallberg',1959,NULL),(356539,'Brett Halliday',1904,1977),(356590,'Lori Hallier',1959,NULL),(356625,'Annika Hallin',1968,NULL),(356745,'Todd Hallowell',NULL,NULL),(356781,'Malou Hallström',1941,2005),(356917,'Daniel Halperin',NULL,NULL),(356922,'Edward Halperin',1898,1981),(356927,'Mark Halperin',1965,NULL),(356931,'Victor Halperin',1895,1983),(356998,'Daria Halprin',1948,NULL),(357000,'Philip Halprin',NULL,NULL),(357018,'Christian Halsey Solomon',1961,NULL),(357020,'Brett Halsey',1933,NULL),(357023,'Colleen Halsey',NULL,NULL),(357041,'Richard Halsey',NULL,NULL),(357074,'Dan Halsted',1962,NULL),(357176,'Brad Halvorson',NULL,NULL),(357192,'Gábor Halász',1957,NULL),(357200,'Péter Halász',1943,2006),(357230,'Sung-Won Hahm',NULL,NULL),(357240,'Mie Hama',1943,NULL),(357260,'Maha Hamada',NULL,NULL),(357269,'Takeshi Hamada',NULL,NULL),(357278,'Yûji Hamada',NULL,NULL),(357281,'Ron Hamady',NULL,NULL),(357297,'Yûko Hama',NULL,NULL),(357310,'Yoshiyasu Hamamura',NULL,NULL),(357327,'Evelyn Hamann',1942,2007),(357355,'Hiroshi Hamasaki',1959,NULL),(357421,'Gerry Hambling',1926,2013),(357453,'John Hamburg',1970,NULL),(357464,'David Hamburger',NULL,NULL),(357584,'Bent Hamer',1956,NULL),(357607,'Robert Hamer',1911,1963),(357671,'Denis Hamill',NULL,NULL),(357703,'Anna Hamilton Phelan',NULL,NULL),(357725,'Andy Hamilton',1954,NULL),(357783,'Chico Hamilton',1921,2013),(357795,'Cosmo Hamilton',1870,1942),(357810,'David Hamilton',NULL,NULL),(357824,'Donald Hamilton',1916,2006),(357835,'Eddie Hamilton',NULL,NULL),(357838,'Emily Hamilton',1974,NULL),(357861,'Gary Hamilton',NULL,NULL),(357871,'George H. Hamilton',NULL,NULL),(357891,'Guy Hamilton',1922,2016),(357895,'Hamish Hamilton',1966,NULL),(357979,'Josh Hamilton',1969,NULL),(357986,'Julie Hamilton',NULL,NULL),(358069,'Murray Hamilton',1923,1986),(358076,'Neil Hamilton',1899,1984),(358093,'Patricia Hamilton',1937,2023),(358096,'Patrick Hamilton',1904,1962),(358139,'Roy Hamilton',NULL,NULL),(358172,'Steve Hamilton',NULL,NULL),(358175,'Strathford Hamilton',1952,NULL),(358180,'Suzanna Hamilton',1960,NULL),(358184,'Tanya Hamilton',NULL,NULL),(358213,'William Hamilton',1893,1942),(358228,'Michael Hamilton-Wright',NULL,NULL),(358300,'Michael Hamlyn',1955,NULL),(358316,'Jon Hamm',1971,NULL),(358334,'Sam Hamm',1955,NULL),(358390,'Gustaf Hammarsten',1967,NULL),(358418,'Jan Hammenecker',1968,NULL),(358478,'Lisa Hammer',1967,NULL),(358510,'Victor Hammer',1957,NULL),(358530,'Rumle Hammerich',1954,NULL),(358564,'Oscar Hammerstein II',1895,1960),(358568,'Jane-Howard Hammerstein',1934,2022),(358591,'Dashiell Hammett',1894,1961),(358632,'Ken Hammon',NULL,NULL),(358710,'John Hammond',1942,NULL),(358774,'Roz Hammond',NULL,NULL),(358842,'Robert Hamner',1928,1996),(358877,'Andras Hamori',1953,NULL),(358899,'Walter Hampden',1879,1955),(358922,'Emily Hampshire',1979,NULL),(358932,'Chris Hampson',NULL,NULL),(358960,'Christopher Hampton',1946,NULL),(358989,'Grayce Hampton',1876,1963),(358996,'James Hampton',1936,2021),(359000,'Janice Hampton',NULL,NULL),(359026,'Michael Hampton',NULL,NULL),(359034,'Orville H. Hampton',1917,1997),(359100,'Jane Hamsher',1959,NULL),(359147,'Bong Soo Han',1933,2007),(359189,'Sanping Han',NULL,NULL),(359256,'Blanche Hanalis',1915,1992),(359322,'Kevin Hanchard',1974,NULL),(359372,'Herbie Hancock',1940,NULL),(359386,'John D. Hancock',1939,NULL),(359387,'John Lee Hancock',1956,NULL),(359398,'Martin Hancock',1973,NULL),(359456,'Danelle Hand',NULL,NULL),(359457,'David Hand',1900,1986),(359504,'Ari Handel',NULL,NULL),(359552,'Tracy Handfuss',NULL,NULL),(359563,'Peter Handke',1942,NULL),(359584,'Marc Handler',NULL,NULL),(359610,'Jim Handley',1914,2003),(359634,'Henk Handloegten',1968,NULL),(359734,'Michael Haneke',1942,NULL),(359815,'Helene Hanff',1916,1997),(359871,'Davos Hanich',NULL,NULL),(359894,'Roger Hanin',1925,2015),(359923,'Daniel Hank',NULL,NULL),(360062,'Brent Hanley',1970,NULL),(360065,'Chris Hanley',1953,NULL),(360066,'Clifford Hanley',1922,1999),(360067,'Daniel P. Hanley',1955,NULL),(360081,'Jenny Hanley',1947,NULL),(360106,'Roberta Hanley',1957,NULL),(360144,'Mark Hanlon',NULL,NULL),(360173,'Denis Hann',NULL,NULL),(360200,'Elizabeth Hanna',1953,NULL),(360213,'Kathleen Hanna',1968,NULL),(360221,'Mark Hanna',1917,2003),(360253,'William Hanna',1910,2001),(360346,'Peter Hannan',1941,NULL),(360358,'Charles Hannawalt',1910,1973),(360389,'Nicholas Hannen',1881,1972),(360442,'Teresa Hannigan',NULL,NULL),(360463,'Yoshihiro Hanno',NULL,NULL),(360481,'Mathew Karedas',NULL,NULL),(360598,'Glen Hansard',1970,NULL),(360605,'Lorraine Hansberry',1930,1965),(360743,'Daniel Hansen',NULL,NULL),(360766,'Ed Hansen',1937,2005),(360779,'Erik Hansen',NULL,NULL),(360810,'Gregory Hansen',NULL,NULL),(360889,'Joachim Hansen',1930,2007),(361069,'Ron Hansen',NULL,NULL),(361119,'Valda Hansen',1932,1993),(361135,'Mia Hansen-Løve',1981,NULL),(361143,'Seth Hanser',NULL,NULL),(361182,'Rhonda Hansome',NULL,NULL),(361210,'Charlie Hanson',NULL,NULL),(361319,'Lars Hanson',1886,1965),(361593,'Magda Hap',1940,2008),(361660,'Chisako Hara',1936,NULL),(361683,'Masato Hara',1931,2021),(361697,'Setsuko Hara',1920,2015),(361701,'Tôru Hara',1935,NULL),(361724,'Itoko Harada',NULL,NULL),(361753,'Tomoyo Harada',1967,NULL),(361757,'Yoshio Harada',1940,2011),(361765,'Tomoo Haraguchi',NULL,NULL),(361819,'Jens Harant',1973,NULL),(361823,'Haya Harareet',1931,2021),(361837,'Robert Harari',1906,1978),(361859,'Mici Haraszti',1882,1964),(361864,'Paul Harather',1965,NULL),(361877,'Otto A. Harbach',1873,1963),(361882,'Carl Harbaugh',1886,1960),(361912,'Aaron Harberts',1973,NULL),(362010,'Stewart Harcourt',NULL,NULL),(362096,'Jacques Harden',1925,1992),(362148,'Crofton Hardester',NULL,NULL),(362165,'Tim Maurice-Jones',NULL,NULL),(362220,'Ian Hardin',1970,NULL),(362249,'Ty Hardin',1930,2017),(362268,'Michael Harding',NULL,NULL),(362274,'Bertita Harding',1902,1971),(362361,'Lyn Harding',1867,1952),(362429,'Kadeem Hardison',1965,NULL),(362438,'Hans Hardt-Hardtloff',1906,1974),(362457,'Karl Hardman',1927,2007),(362544,'Gary Hardwick',NULL,NULL),(362566,'Catherine Hardwicke',1955,NULL),(362567,'Cedric Hardwicke',1893,1964),(362643,'George Hardy',1954,NULL),(362647,'Gérard Hardy',1950,NULL),(362675,'John Hardy',NULL,NULL),(362708,'Mashaune Hardy',NULL,NULL),(362736,'Robin Hardy',1929,2016),(362762,'Thomas Hardy',1840,1928),(362766,'Tom Hardy',1977,NULL),(362844,'Amir Harel',NULL,NULL),(362847,'Gadi Harel',1971,NULL),(362854,'Philippe Harel',1956,NULL),(362955,'Amy Hargreaves',NULL,NULL),(362959,'Christine Hargreaves',1939,1984),(362992,'Marion Hargrove',1919,2003),(363066,'Kiyoyuki Yanada',1965,2022),(363094,'Reg Harkema',NULL,NULL),(363117,'Susannah Harker',1965,NULL),(363167,'Jimmi Harkishin',1965,NULL),(363226,'Noah Harlan',1975,NULL),(363259,'John Harle',1956,NULL),(363316,'Leigh Harline',1907,1969),(363326,'Robert Harling',1951,NULL),(363414,'Hugh Harman',1903,1982),(363492,'David P. Harmon',1918,2001),(363553,'Robert Harmon',NULL,NULL),(363563,'Sidney Harmon',1907,1988),(363615,'Raimund Harmstorf',1939,1998),(363699,'Elisabeth Harnois',1979,NULL),(363780,'Kenneth Harp',1924,2009),(363888,'Jessica Harper',1949,NULL),(363899,'Kenneth Harper',1913,1998),(363958,'Sam Harper',NULL,NULL),(363986,'Tommy Harper',NULL,NULL),(363999,'Virgil L. Harper',NULL,NULL),(364028,'Thorbjørn Harr',1974,NULL),(364045,'Verna Harrah',1944,2012),(364066,'Rewa Harre',NULL,NULL),(364068,'Jackée Harry',1956,NULL),(364143,'Heinrich Harrer',1912,2006),(364170,'Andy Harries',1954,NULL),(364203,'William Harrigan',1886,1966),(364204,'Paul Harrill',NULL,NULL),(364217,'Tom Harriman',NULL,NULL),(364307,'Laura Harrington',1958,NULL),(364348,'Richard Harrington',1975,NULL),(364455,'Barbara Harris',1935,2018),(364458,'Barbara Eve Harris',NULL,NULL),(364463,'Baxter Harris',1940,NULL),(364490,'Brad Harris',1933,2017),(364509,'Burtt Harris',1933,NULL),(364600,'David Harris',1946,2023),(364680,'Estelle Harris',1928,2022),(364748,'Harriet Sansom Harris',1955,NULL),(364757,'Harry B. Harris',1880,NULL),(364781,'Bruklin Harris',NULL,NULL),(364787,'J. Todd Harris',1959,NULL),(364789,'Jack Harris',1905,1971),(364805,'James B. Harris',1928,NULL),(364813,'Jared Harris',NULL,NULL),(364825,'Jeff Harris',1935,2004),(364835,'Jenn Harris',NULL,NULL),(364862,'Joanne Harris',1964,NULL),(364873,'Joel Chandler Harris',1848,1908),(364890,'Johnny Harris',1973,NULL),(364899,'Joe Harris',NULL,NULL),(364915,'Julie Harris',1925,2013),(364977,'Laura Harris',1976,NULL),(365001,'Leslie Harris',NULL,NULL),(365035,'Lynette Harris',1954,NULL),(365036,'Lynn Harris',1967,NULL),(365070,'Mark R. Harris',NULL,NULL),(365121,'Mildred Harris',1901,1944),(365140,'Naomie Harris',1976,NULL),(365153,'Niki Haris',1962,NULL),(365174,'Paul Harris',NULL,NULL),(365201,'Phil Harris',1904,1995),(365208,'Pippa Harris',1967,NULL),(365222,'Ray Harris',1884,1971),(365239,'Richard A. Harris',1934,NULL),(365249,'Robert Harris',1957,NULL),(365293,'Sam Harris',1961,NULL),(365317,'Sean Harris',1966,NULL),(365355,'Stuart Harris',1945,NULL),(365383,'Thomas Harris',1940,NULL),(365390,'Timothy Harris',1946,NULL),(365408,'Trent Harris',1952,NULL),(365417,'Vernon Harris',1905,1999),(365445,'Wood Harris',1969,NULL),(365450,'Zelda Harris',1985,NULL),(365478,'Anne Harrison',NULL,NULL),(365496,'Ronnie Shark',1947,1991),(365507,'C. William Harrison',1913,1994),(365518,'Cathryn Harrison',1959,2018),(365532,'Craig Harrison',1942,NULL),(365600,'George Harrison',1943,2001),(365621,'Harry Harrison',1925,2012),(365623,'Harvey Harrison',1944,NULL),(365659,'Jim Harrison',1937,2016),(365661,'Joan Harrison',1907,1994),(365666,'John Harrison',NULL,NULL),(365812,'Philip Harrison',1936,NULL),(365826,'Randy Harrison',1977,NULL),(365835,'Richard Harrison',1935,NULL),(365882,'Stephen Harrison',1908,1987),(365893,'Susan Harrison',1938,2019),(365988,'Jamie Harrold',NULL,NULL),(366004,'Mary Harron',1953,NULL),(366008,'Robert Harron',1893,1920),(366063,'Ray Harryhausen',1920,2013),(366106,'Margo Harshman',1986,NULL),(366247,'Dolores Hart',1938,NULL),(366253,'Dorothy Hart',1922,2004),(366337,'James V. Hart',1947,NULL),(366363,'John Hart',NULL,NULL),(366375,'Josephine Hart',1942,2011),(366389,'Kevin Hart',1979,NULL),(366414,'Lorenz Hart',1895,1943),(366422,'Malcolm Hart',1931,NULL),(366454,'Moss Hart',1904,1961),(366466,'Pamela Hart',NULL,NULL),(366509,'Roxanne Hart',1952,NULL),(366525,'Stacy Hart',1979,NULL),(366536,'Sunshine Hart',1886,1930),(366578,'Walter Hart',1906,1973),(366667,'Leslie Zemeckis',NULL,NULL),(366708,'Robert Hartford-Davis',1923,1977),(366760,'Thomas M. Harting',NULL,NULL),(366812,'Clayton Hartley',NULL,NULL),(366846,'Jo Hartley',1972,NULL),(366880,'Richard Hartley',1944,NULL),(366894,'Ted Hartley',1924,NULL),(366946,'Elizabeth Hartman',1943,1987),(366948,'Ena Hartman',1935,NULL),(366989,'Leonard Hartman',NULL,NULL),(367005,'Phil Hartman',1948,1998),(367060,'Edmund L. Hartmann',1911,2003),(367156,'William Hartnell',1908,1975),(367176,'Joshua Harto',1979,NULL),(367218,'Mike Hartsfield',1969,NULL),(367286,'Jane Hartwell',NULL,NULL),(367322,'Wolf C. Hartwig',1919,2017),(367431,'Anthony Harvey',1930,2017),(367496,'Don Harvey',1960,NULL),(367516,'Forrester Harvey',1884,1945),(367538,'Grant Harvey',1966,NULL),(367547,'Herk Harvey',1924,1996),(367630,'Marshall Harvey',NULL,NULL),(367647,'Mick Harvey',1958,NULL),(367703,'Rupert Harvey',NULL,NULL),(367724,'Steve Harvey',1957,NULL),(367733,'Tim Harvey',1936,NULL),(367761,'Derek Harvie',1971,NULL),(367802,'Bo Harwood',1946,2022),(367814,'H.M. Harwood',1874,1959),(367820,'Johanna Harwood',1930,NULL),(367838,'Ronald Harwood',1934,2020),(367867,'Adi Hasak',NULL,NULL),(367895,'Patrick Hasburgh',NULL,NULL),(367943,'Naoko Hasegawa',NULL,NULL),(367955,'Yasuo Hasegawa',NULL,NULL),(367990,'Walter Hasenclever',1890,1940),(368007,'Gustav Hasford',1947,1993),(368048,'Hiroshi Hashimoto',NULL,NULL),(368051,'Izô Hashimoto',1954,NULL),(368057,'Koji Hashimoto',1936,2005),(368069,'Richard Hashimoto',NULL,NULL),(368073,'Shinji Hashimoto',NULL,NULL),(368074,'Shinobu Hashimoto',1918,2018),(368225,'John Hasler',1974,NULL),(368248,'Paul Haslinger',1962,NULL),(368355,'Verónica Hassan',NULL,NULL),(368359,'Hassan Hassandoost',1958,NULL),(368394,'O.E. Hasse',1903,1978),(368397,'Danny Hassel',1967,NULL),(368472,'Marilyn Hassett',1947,NULL),(368477,'Dan Hassid',1961,NULL),(368478,'Kirk Hassig',1950,2011),(368482,'Anne Louise Hassing',1967,NULL),(368499,'Jürg Hassler',NULL,NULL),(368606,'Michael Hastings',1980,2013),(368646,'Vibeke Hastrup',1958,NULL),(368674,'Masami Hata',1942,NULL),(368675,'Masanori Hata',1935,2023),(368689,'Leila Hatami',1972,NULL),(368694,'Tatsuro Hatanaka',NULL,NULL),(368719,'Eric Hatch',1901,1973),(368745,'Richard Hatch',1945,2017),(368774,'Jeffrey Hatcher',NULL,NULL),(368792,'Elizabeth Hatcher-Travis',NULL,NULL),(368807,'Eunice Hatchitt',NULL,NULL),(368818,'Richard Hatem',1966,NULL),(368836,'Hurd Hatfield',1917,1998),(368871,'Henry Hathaway',1898,1985),(368906,'Bob Hathcock',1944,NULL),(368943,'Marvin Hatley',1905,1986),(368969,'Kotoe Hatsui',1929,1990),(368971,'Eriko Hatsune',1982,NULL),(368979,'Hideaki Hatta',NULL,NULL),(368981,'Kayo Hatta',1958,2005),(368982,'Mari Hatta',NULL,NULL),(368990,'Rohini Hattangadi',1955,NULL),(369058,'Raymond Hatton',1887,1971),(369081,'Tsugio Hattori',NULL,NULL),(369142,'Lawrence Hauben',1931,1985),(369193,'Gert Haucke',1929,2008),(369201,'Didier Haudepin',1951,NULL),(369249,'Jennifer Haufler',NULL,NULL),(369326,'Dag Johan Haugerud',1964,NULL),(369357,'Vicky Haughton',NULL,NULL),(369368,'William Haugse',NULL,NULL),(369412,'Péter Haumann',1941,2022),(369424,'Lindsey Haun',NULL,NULL),(369442,'Stefan Haupt',1961,NULL),(369443,'Ullrich Haupt',1887,1931),(369448,'Andrew Hauptman',1969,NULL),(369458,'Gerhart Hauptmann',1862,1946),(369492,'Jeffrey Hause',NULL,NULL),(369513,'Cole Hauser',1975,NULL),(369556,'Robert B. Hauser',1919,1994),(369561,'Stephen Hauser',NULL,NULL),(369564,'Thomas Hauser',NULL,NULL),(369567,'Wings Hauser',1947,NULL),(369592,'Michael Hausman',1935,NULL),(369618,'Jessica Hausner',1972,NULL),(369675,'Chris Hauty',NULL,NULL),(369686,'Leander Haußmann',1959,NULL),(369743,'Anthony Havelock-Allan',1904,2003),(369770,'Edward Havens',1967,NULL),(369814,'Nigel Havers',1951,NULL),(369841,'Jean C. Havez',1872,1925),(369854,'Andrew Havill',1965,NULL),(369879,'Gene Havlick',1894,1959),(369918,'Alex Haw',NULL,NULL),(369949,'James Hawes',NULL,NULL),(369954,'Keeley Hawes',1976,NULL),(370015,'Luke Hawker',1980,NULL),(370035,'John Hawkes',1959,NULL),(370114,'Diana Hawkins',1938,NULL),(370144,'Jack Hawkins',1910,1973),(370181,'Martin Hawkins',NULL,NULL),(370221,'Screamin\' Jay Hawkins',1929,2000),(370258,'James Hawkinson',1962,NULL),(370286,'Jean Hawkshaw',NULL,NULL),(370312,'Cameron Hawley',1905,1969),(370383,'Gwen Haworth',1972,NULL),(370448,'Lee Haxall',NULL,NULL),(370472,'Bonnie Hay',NULL,NULL),(370564,'Sessue Hayakawa',1886,1973),(370573,'Yûzô Hayakawa',1925,2010),(370574,'Masao Hayama',1925,NULL),(370582,'Show Hayami',1958,NULL),(370593,'Fumio Hayasaka',1914,1955),(370615,'Fumiko Hayashi',1903,1951),(370618,'Hikaru Hayashi',1931,2012),(370621,'Hiroshi Hayashi',1905,1971),(370652,'Ryûzô Hayashi',1943,2014),(370666,'Yoichi Hayashi',1942,NULL),(370672,'Yutaka Hayashi',1947,NULL),(370677,'Megumi Hayashibara',1967,NULL),(370690,'Serge Hayat',1962,NULL),(370697,'Ernest Haycox',1899,1950),(370700,'John Haycraft',NULL,NULL),(370769,'Linda Hayden',1953,NULL),(370821,'Richard Haydn',1905,1985),(370848,'Helen Haye',1874,1957),(370865,'Nicolas Hayer',1898,1978),(370883,'Alfred Hayes',1911,1985),(370886,'Allison Hayes',1930,1977),(370907,'Billy Hayes',1947,NULL),(370928,'Carey W. Hayes',1961,NULL),(370937,'Chad Hayes',NULL,NULL),(370954,'Cliff Hayes',1951,NULL),(371010,'Evan Hayes',1978,NULL),(371038,'Harold T.P. Hayes',NULL,NULL),(371051,'Steve Hayes',1931,NULL),(371065,'Jeffrey M. Hayes',1953,2021),(371088,'John Michael Hayes',1919,2008),(371122,'Peter Lind Hayes',1915,1998),(371156,'Melvyn Hayes',1935,NULL),(371193,'Raphael Hayes',1915,2010),(371235,'Steve L. Hayes',NULL,NULL),(371249,'Terry Hayes',1951,NULL),(371342,'David Hayman',1948,NULL),(371348,'James Hayman',1953,NULL),(371364,'Stephanie Hayman',NULL,NULL),(371376,'Dick Haymes',1918,1980),(371660,'Dennis Haysbert',1954,NULL),(371664,'James Hayslip',NULL,NULL),(371665,'Le Ly Hayslip',NULL,NULL),(371684,'David Hayter',1969,NULL),(371687,'James Hayter',1907,1983),(371735,'Debra Hayward',NULL,NULL),(371755,'Jimmy Hayward',NULL,NULL),(371762,'Justin Hayward',1946,NULL),(371775,'Louis Hayward',1909,1985),(371824,'Chris Haywood',1948,NULL),(371852,'Annette Haywood-Carter',NULL,NULL),(371890,'Michel Hazanavicius',1967,NULL),(371891,'Serge Hazanavicius',1963,NULL),(371907,'Lawrence Hazard',1897,1959),(371955,'Stuart Hazeldine',1971,NULL),(372021,'Jane Hazlegrove',1968,NULL),(372023,'Noni Hazlehurst',1953,NULL),(372040,'Lee Hazlewood',1929,2007),(372078,'Saifei He',1964,NULL),(372099,'Xiaohe Lü',NULL,NULL),(372112,'Adam Head',1970,NULL),(372117,'Anthony Head',1954,NULL),(372124,'David Head',NULL,NULL),(372176,'Lena Headey',1973,NULL),(372190,'Mark Headley',NULL,NULL),(372191,'Shari Headley',1964,NULL),(372213,'Gareth Heal',NULL,NULL),(372222,'Josh Heald',1977,NULL),(372329,'Janet Healy',NULL,NULL),(372351,'Mary Healy',1918,2015),(372366,'Pat Healy',NULL,NULL),(372384,'Ted Healy',1896,1937),(372649,'Gordon Heath',1918,1991),(372659,'Jennifer Heath',1955,NULL),(372677,'Laurence Heath',1928,2007),(372773,'Dennis Heaton',NULL,NULL),(372796,'Audrey Kelly',NULL,NULL),(372874,'Jean-Phillippe Hebert',NULL,NULL),(372877,'Julie Hébert',NULL,NULL),(372910,'María Victoria Hebrero',NULL,NULL),(372934,'Gianni Hecht Lucari',1922,1998),(372935,'Albie Hecht',NULL,NULL),(372942,'Ben Hecht',1894,1964),(372959,'Harold Hecht',1907,1985),(372968,'Marlen Hecht',NULL,NULL),(373012,'Eileen Heckart',1919,2001),(373105,'Nick Hector',NULL,NULL),(373151,'Andy Hedden',1957,2012),(373154,'Rob Hedden',1954,NULL),(373158,'Tom Hedden',NULL,NULL),(373282,'Peter Hedges',1962,NULL),(373289,'El Hedi ben Salem',1936,1976),(373314,'David Hedison',1927,2019),(373320,'Thomas Hedley Jr.',NULL,NULL),(373324,'Jack Hedley',1929,2021),(373429,'T. Hee',1911,1988),(373456,'Guy Heeley',NULL,NULL),(373497,'Astrid Heeren',1940,NULL),(373511,'Victor Heerman',1893,1977),(373571,'Kevin Heffernan',1968,NULL),(373588,'Alex Heffes',1971,NULL),(373723,'John Hegeman',NULL,NULL),(373773,'O.P. Heggie',1877,1936),(373812,'Stephen Hegyes',1967,NULL),(373816,'Barnabás Hegyi',1914,1966),(373829,'Kristina Ceyton',NULL,NULL),(373871,'Graham Heid',1909,1976),(374002,'Veit Heiduschka',1938,NULL),(374006,'Grethe Hejer',1926,2021),(374048,'Matthijs van Heijningen Jr.',NULL,NULL),(374084,'Carol Heikkinen',1966,NULL),(374112,'Reinhold Heil',1954,NULL),(374123,'Adelaide Heilbron',1892,1974),(374186,'Elayne Heilveil',1948,NULL),(374189,'Alan Heim',1936,NULL),(374194,'Carrie Kei Heim',1973,NULL),(374268,'Jo Heims',1930,1978),(374295,'Steve Hein',NULL,NULL),(374302,'Allan Heinberg',1967,NULL),(374423,'Robert A. Heinlein',1907,1988),(374453,'André Heinrich',1923,2014),(374460,'Chris Heinrich',NULL,NULL),(374511,'Rick Heinrichs',NULL,NULL),(374560,'Andres Heinz',NULL,NULL),(374569,'Gerhard Heinz',1927,NULL),(374610,'Thomas Heinze',1964,NULL),(374658,'William Heise',1847,1910),(374663,'Benjamin Heisenberg',1974,NULL),(374682,'Kari Heiskanen',1955,NULL),(374685,'Maria Heiskanen',1970,NULL),(374702,'Stuart Heisler',1896,1979),(374707,'Carol Heiss',1940,NULL),(374734,'Michael Heiter',1951,NULL),(374799,'Nada Hejna',1906,1994),(374842,'Maria von Heland',1965,NULL),(374865,'Simon Helberg',1980,NULL),(374901,'Alexander Held',1958,NULL),(374919,'Martin Held',1908,1992),(374935,'Wolfgang Held',NULL,NULL),(374949,'Johan Heldenbergh',1967,NULL),(375033,'Michael A. Helfant',NULL,NULL),(375043,'Ian Helfer',NULL,NULL),(375086,'Jón Karl Helgason',NULL,NULL),(375167,'Erik Hell',1911,1973),(375176,'Richard Hell',1949,NULL),(375224,'Olle Hellbom',1925,1982),(375235,'Jukka Helle',NULL,NULL),(375285,'Bruno Heller',1960,NULL),(375322,'Gábor Heller',NULL,NULL),(375342,'Joseph Heller',1923,1999),(375353,'Liz Heller',NULL,NULL),(375355,'Lukas Heller',1930,1988),(375370,'Paul M. Heller',1927,2020),(375383,'Rosilyn Heller',NULL,NULL),(375398,'Zoë Heller',1965,NULL),(375402,'Paul Hellerman',NULL,NULL),(375446,'Mark Hellinger',1903,1947),(375477,'Jerome Hellman',1928,2021),(375484,'Lillian Hellman',1905,1984),(375500,'Sam Hellman',1885,1950),(375604,'Andrew Helm',NULL,NULL),(375606,'Anne Helm',1938,NULL),(375609,'Brigitte Helm',1906,1996),(375629,'Levon Helm',1940,2012),(375658,'Geoffrey Helman',1930,2019),(375738,'Tom Helmore',1904,1995),(375778,'Jack Helmuth',1974,NULL),(375818,'Robert Helpmann',1909,1986),(375860,'Benjamin Helstad',1987,NULL),(375876,'Conrad Helten',NULL,NULL),(375990,'Mahmoud Hemida',1953,NULL),(375991,'Hanna Hemilä',NULL,NULL),(376006,'Anthony Hemingway',NULL,NULL),(376025,'Polly Hemingway',1946,NULL),(376101,'David Hemmings',1941,2003),(376179,'David Hempstead',1909,1983),(376215,'Józef Hen',1923,NULL),(376221,'Joseph Henabery',1888,1976),(376260,'Chris Henchy',1964,NULL),(376264,'Paul Henckels',1885,1967),(376265,'Jan Hencz',1946,2010),(376267,'Thomas Hencz',NULL,NULL),(376274,'Lynn Hendee',NULL,NULL),(376405,'Don Henderson',1931,1997),(376416,'Duncan Henderson',1949,2022),(376481,'Jo Henderson',1934,1988),(376498,'Judy Henderson',NULL,NULL),(376540,'Martin Henderson',1974,NULL),(376562,'Nina Henderson Moore',NULL,NULL),(376575,'Ray Henderson',1896,1970),(376602,'Shirley Henderson',1965,NULL),(376610,'Stephen McKinley Henderson',1949,NULL),(376655,'Daniel Hendler',1976,NULL),(376664,'Stewart Hendler',1978,NULL),(376716,'Christina Hendricks',1975,NULL),(376860,'Maryke Hendrikse',1979,NULL),(376915,'Ian Hendry',1931,1984),(376983,'Janet Henfrey',1935,NULL),(377012,'Sonja Henie',1912,1969),(377034,'Brad William Henke',1966,2022),(377066,'Kim Henkel',1946,NULL),(377088,'Hilary Henkin',1952,NULL),(377106,'Barry Shabaka Henley',1954,NULL),(377269,'Noreen Hennessey',NULL,NULL),(377333,'André Hennicke',1958,NULL),(377336,'Aksel Hennie',1975,NULL),(377348,'Helge Hennig',NULL,NULL),(377417,'Paul Henning',1911,2005),(377431,'William Henning',NULL,NULL),(377454,'David Hennings',NULL,NULL),(377534,'Bertina Henrichs',NULL,NULL),(377543,'Richard P. Henrick',1949,NULL),(377571,'Irén Henrik',1937,NULL),(377606,'Scott Henriksen',NULL,NULL),(377631,'Krister Henriksson',1946,NULL),(377674,'James Henriques',NULL,NULL),(377750,'Buck Henry',1930,2020),(377766,'Charlotte Henry',1914,1980),(377792,'R. Lance Hill',1943,NULL),(377836,'Gilles Henry',NULL,NULL),(377875,'Joan Henry',1914,2000),(377877,'Joe Henry',1960,NULL),(377882,'Judith Henry',1968,NULL),(377888,'Justin Henry',1971,NULL),(377905,'Linda Henry',1963,NULL),(377958,'O. Henry',1862,1910),(377959,'Oliver Henry',NULL,NULL),(377973,'Pierre Henry',1927,2017),(378016,'Tim Henry',1944,NULL),(378028,'William Henry',NULL,NULL),(378132,'John Henshaw',1951,NULL),(378144,'Jonathan Hensleigh',1959,NULL),(378157,'J. Miyoko Hensley',NULL,NULL),(378161,'John Hensley',NULL,NULL),(378175,'Shuler Hensley',1967,NULL),(378178,'Steven Hensley',NULL,NULL),(378194,'Christian Henson',1971,NULL),(378219,'Jon Henson',NULL,NULL),(378229,'Lisa Henson',1960,NULL),(378245,'Taraji P. Henson',1970,NULL),(378255,'Diana Henstell',1936,2017),(378283,'David Hentschel',NULL,NULL),(378342,'Dee Hepburn',1961,NULL),(378364,'Paul Hepker',NULL,NULL),(378408,'Cecil M. Hepworth',1873,1953),(378431,'Heinz Herald',1890,1964),(378478,'Bobby Herbeck',1945,NULL),(378541,'Frank Herbert',1920,1986),(378591,'Mark Herbert',NULL,NULL),(378593,'Matthew Herbert',NULL,NULL),(378612,'Percy Herbert',1920,1992),(378660,'Michael Herbig',1968,NULL),(378698,'Christoph Maria Herbst',1966,NULL),(378773,'Geza Herczeg',1888,1954),(378800,'Richard Herd',1932,2020),(378870,'Paula Heredia',NULL,NULL),(378880,'Wilson Jermaine Heredia',1971,NULL),(378893,'Stephen Herek',1958,NULL),(378932,'Karoline Herfurth',1984,NULL),(378947,'Joseph Hergesheimer',1880,1954),(378960,'Hergé',1907,1983),(379044,'Richard Herley',1950,NULL),(379051,'Ed Herlihy',1909,1999),(379052,'James Leo Herlihy',1927,1993),(379056,'Tim Herlihy',1966,NULL),(379090,'Ace Herman',1913,1971),(379114,'David Herman',1967,NULL),(379154,'Jerry Herman',1931,2019),(379179,'Mark Herman',1954,NULL),(379198,'Norman T. Herman',1924,2015),(379200,'Paul Herman',1946,2022),(379237,'Charles Herman-Wurmfeld',1966,NULL),(379258,'Irm Hermann',1942,2020),(379266,'Kai Hermann',NULL,NULL),(379294,'Willi Herrmann',1893,1968),(379339,'John J. Hermansen',1970,NULL),(379391,'Cirio H. Santiago',1936,2008),(379408,'Sandra Hermida',1972,NULL),(379409,'Tania Hermida',NULL,NULL),(379418,'Beatrice Herminie',NULL,NULL),(379486,'Assunção Hernandes',NULL,NULL),(379596,'Jay Hernandez',1978,NULL),(379747,'Barbara Herndon',NULL,NULL),(379759,'Venable Herndon',1927,1999),(379773,'Felix Herngren',1967,NULL),(379807,'José Miguel Hernán',1931,2018),(379855,'Ángel Hernández Zoido',NULL,NULL),(380022,'Juan Carlos Hernández',NULL,NULL),(380073,'Maximiliano Hernández',1973,NULL),(380139,'Sergio Hernández',1945,NULL),(380178,'Ángeles Hernández',NULL,NULL),(380225,'Wolfgang Herold',NULL,NULL),(380282,'Michael Herr',1940,2016),(380419,'Hayden Herrera',NULL,NULL),(380441,'Jorge Herrera',NULL,NULL),(380547,'Gerardo Herrero',1953,NULL),(380628,'Mark Herrier',1954,NULL),(380632,'Damon Herriman',1970,NULL),(380670,'Pembroke J. Herring',1930,2020),(380705,'Rowdy Herrington',1951,NULL),(380764,'Peter Herrmann',1954,NULL),(380777,'Ulrich Herrmann',NULL,NULL),(380819,'William Blake Herron',NULL,NULL),(380826,'Dodine Herry',NULL,NULL),(380827,'Florent Herry',NULL,NULL),(380831,'Jeanne Herry',1978,NULL),(380884,'Dan Hersey',NULL,NULL),(380898,'Andrew Hersh',NULL,NULL),(380957,'Joel Hershman',1958,NULL),(380961,'Lynn Hershman-Leeson',1941,NULL),(380965,'Jean Hersholt',1886,1956),(380977,'Patricia Herskovic',NULL,NULL),(380980,'Marshall Herskovitz',1952,NULL),(381043,'Louis Herthum',1956,NULL),(381047,'Mike Herting',NULL,NULL),(381090,'Jean-Jacques Hertz',NULL,NULL),(381110,'Michael Hertzberg',1937,NULL),(381116,'Don Hertzfeldt',1976,NULL),(381128,'Paul Hertzog',NULL,NULL),(381152,'Harry Hervey',1900,1951),(381221,'Adam Herz',1972,NULL),(381230,'Michael Herz',1949,NULL),(381245,'Ilona Herzberg',NULL,NULL),(381272,'Jim Herzfeld',NULL,NULL),(381273,'John Herzfeld',1947,NULL),(381289,'Norbert Herzner',NULL,NULL),(381342,'Hannah Herzsprung',1981,NULL),(381388,'Kit Hesketh-Harvey',1957,2023),(381413,'Peter Heslop',NULL,NULL),(381416,'Grant Heslov',1963,NULL),(381450,'David Hess',1936,2011),(381478,'Jared Hess',1979,NULL),(381511,'Nigel Hess',1953,NULL),(381524,'Sandra Hess',NULL,NULL),(381538,'Wolfgang Hess',1937,2016),(381606,'Howard Hesseman',1940,2022),(381626,'Amine Allah Hessine',NULL,NULL),(381675,'Holly Hester',NULL,NULL),(381738,'Kristina Hetherington',NULL,NULL),(381757,'Olivia Hetreed',NULL,NULL),(381784,'Tony Hettinger',NULL,NULL),(381817,'Vinton Heuck',NULL,NULL),(381868,'Richard Heus',NULL,NULL),(381870,'Paolo Heusch',1924,1982),(381963,'Boo Hewerdine',NULL,NULL),(381976,'Dorothy Hewett',1923,2002),(382012,'Caroline Hewitt',NULL,NULL),(382019,'David L. Hewitt',1939,NULL),(382054,'Jon Hewitt',1959,NULL),(382072,'Peter Hewitt',1962,NULL),(382110,'David Hewlett',1968,NULL),(382114,'Jamie Hewlett',1968,NULL),(382227,'Douglas Heyes',1919,1993),(382263,'Barton Heyman',1937,1996),(382268,'David Heyman',1961,NULL),(382278,'Norma Heyman',1937,NULL),(382317,'Christian Heyne',1960,NULL),(382321,'Jan Peter Heyne',1948,2021),(382362,'Kerry Heysen',1945,NULL),(382391,'Anne Heywood',1931,NULL),(382402,'Jean Heywood',1921,2019),(382411,'Pat Heywood',1931,NULL),(382437,'Carl Hiaasen',1953,NULL),(382503,'Edward Hibbert',1955,NULL),(382505,'Guy Hibbert',1950,NULL),(382512,'Stephen Hibbert',1960,NULL),(382516,'Sally Hibbin',1953,NULL),(382548,'Winston Hibler',1910,1976),(382562,'Robert Hichens',1864,1950),(382566,'Doris Hick',1966,NULL),(382573,'Homer H. Hickam Jr.',1943,NULL),(382584,'George Hickenlooper',1963,2010),(382614,'Dennys McCoy',NULL,NULL),(382632,'John Benjamin Hickey',1963,NULL),(382644,'Marilyn Faith Hickey',NULL,NULL),(382652,'Michael Hickey',NULL,NULL),(382655,'Pamela Hickey',NULL,NULL),(382674,'Todd Hickey',NULL,NULL),(382676,'William Hickey',1927,1997),(382718,'Darryl Hickman',1931,NULL),(382722,'Dwayne Hickman',1934,2022),(382731,'Hudson Hickman',NULL,NULL),(382776,'Anthony Hickox',1959,NULL),(382781,'Emma E. Hickox',1964,NULL),(382786,'S. Bryan Hickox',NULL,NULL),(382791,'Adam Hicks',1992,NULL),(382799,'Barbara Hicks',1924,2013),(382819,'Catherine Hicks',1951,NULL),(382830,'Dan Hicks',1951,2020),(382833,'Daren Hicks',NULL,NULL),(382855,'Greg Hicks',NULL,NULL),(382913,'Marshall Hicks',NULL,NULL),(382943,'Regina Y. Hicks',NULL,NULL),(382956,'Scott Hicks',1953,NULL),(382975,'Tommy Redmond Hicks',1962,NULL),(382997,'Julie Hickson',NULL,NULL),(383016,'Yasuhito Hida',1964,NULL),(383022,'Noriko Hidaka',1962,NULL),(383024,'Shigeaki Hidaka',NULL,NULL),(383093,'Tokie Hidari',1947,NULL),(383094,'Tonpei Hidari',1937,2018),(383163,'Liane Hielscher',1935,2000),(383258,'Keigo Higashino',1958,NULL),(383261,'Chieko Higashiyama',1890,1980),(383275,'Mary Jane Higby',1915,1986),(383285,'P. Dirk Higdon',NULL,NULL),(383304,'Howard Higgin',1891,1938),(383318,'George Higgins',1917,2005),(383343,'Bryn Higgins',NULL,NULL),(383354,'Clare Higgins',1955,NULL),(383359,'Colin Higgins',1941,1988),(383370,'David Higgins',NULL,NULL),(383371,'David Anthony Higgins',1961,NULL),(383389,'George V. Higgins',1939,1999),(383422,'John Michael Higgins',1963,NULL),(383429,'Kenneth Higgins',1919,2008),(383449,'Michael Higgins',1920,2008),(383462,'Monk Higgins',1936,1986),(383467,'Paul Higgins',1964,NULL),(383533,'Torri Higginson',1969,NULL),(383588,'Michael Higham',1970,NULL),(383603,'Freddie Highmore',1992,NULL),(383604,'Patricia Highsmith',1921,1995),(383605,'Avi Nesher',1952,NULL),(383653,'Jeff Higinbotham',NULL,NULL),(383669,'Frances Higson',1970,NULL),(383688,'Shinji Higuchi',1965,NULL),(383692,'Higuchinsky',1969,NULL),(383707,'Aoi Hiiragi',1962,NULL),(383708,'Rumi Hiiragi',1987,NULL),(383751,'Stanley Hilaire',NULL,NULL),(383837,'Frank Hildebrand',NULL,NULL),(383926,'Mark Hildreth',1978,NULL),(383958,'Tony Hiles',NULL,NULL),(384020,'Albert Fay Hill',1925,2014),(384032,'Amy Hill',1953,NULL),(384050,'Arthur Hill',1922,2006),(384060,'Bernard Hill',1944,NULL),(384092,'Bridget Hill',NULL,NULL),(384162,'Dana Hill',1964,1996),(384164,'Daniel Hill',1956,NULL),(384185,'Debra Hill',1950,2005),(384190,'Dennis M. Hill',NULL,NULL),(384210,'Dudley Hill',1880,1960),(384211,'Dulé Hill',1975,NULL),(384276,'George W. Hill',1895,1934),(384294,'Grant Hill',NULL,NULL),(384335,'Jack Hill',1933,NULL),(384342,'James Hill',1919,1994),(384343,'James Hill',1916,2001),(384398,'John Hill',NULL,NULL),(384472,'Leonard Hill',1947,2016),(384494,'Marianna Hill',1942,NULL),(384605,'Rick Hill',1953,NULL),(384700,'Stuart Hill',NULL,NULL),(384702,'Susan Hill',1942,NULL),(384722,'Tim Hill',1958,NULL),(384751,'Victoria Hill',1971,NULL),(384787,'Marcel Hillaire',1908,1988),(384825,'John Hillcoat',1961,NULL),(384852,'Lennert Hillege',1978,NULL),(384864,'Stephen Hillenburg',1961,2018),(384908,'Wendy Hiller',1912,2003),(384916,'John Hillerman',1932,2017),(385010,'Candace Hilligoss',1935,NULL),(385012,'Katherine Hilliker',1885,1965),(385026,'Ellen Hillingsø',1967,NULL),(385029,'Ali Hillis',1978,NULL),(385139,'Richard Hills',1926,1996),(385171,'Lambert Hillyer',1889,1969),(385180,'Hilmar Örn Hilmarsson',1958,NULL),(385227,'Arthur Hilton',1897,1979),(385264,'James Hilton',1900,1954),(385268,'Jennifer Monroe',NULL,NULL),(385296,'Paris Hilton',1981,NULL),(385311,'Stephen Hilton',NULL,NULL),(385346,'Nichole Hiltz',1978,NULL),(385381,'Karin Himboldt',1920,2005),(385392,'Howard Himelstein',NULL,NULL),(385430,'David Himmelstein',NULL,NULL),(385442,'Kathryn Himoff',NULL,NULL),(385443,'Shin\'ichi Himori',1907,1959),(385467,'Dickon Hinchliffe',NULL,NULL),(385573,'Anthony Hinds',1922,2013),(385616,'Rupert Hine',1947,2020),(385630,'Anthony Hines',NULL,NULL),(385632,'Barry Hines',1939,2016),(385644,'Cheryl Hines',1965,NULL),(385653,'David Hines',NULL,NULL),(385674,'Grainger Hines',NULL,NULL),(385720,'Suzanne Hines',NULL,NULL),(385725,'Timothy Hines',1960,NULL),(385726,'Tom Hines',1969,NULL),(385757,'Pat Hingle',1924,2009),(385777,'Jenny Hinkey',NULL,NULL),(385809,'Tommy Hinkley',1960,NULL),(385820,'Derrick Hinman',NULL,NULL),(385936,'Léo Hinstin',NULL,NULL),(386023,'S.E. Hinton',1948,NULL),(386066,'Michael Hinz',1939,2008),(386100,'S. William Hinzman',1936,2012),(386113,'Barbro Hiort af Ornäs',1921,2015),(386117,'Kim Hiorthøy',NULL,NULL),(386179,'Mikijirô Hira',1933,2016),(386198,'Akira Hirai',NULL,NULL),(386217,'Sei Hiraizumi',1944,NULL),(386227,'Masahiro Hirakubo',NULL,NULL),(386246,'Rajkumar Hirani',1962,NULL),(386265,'Masaaki Hirao',1937,2017),(386279,'Susumu Hirasawa',1954,NULL),(386281,'Shizuo Hirase',NULL,NULL),(386284,'Akihiko Hirata',1927,1984),(386286,'Hiroaki Hirata',1963,NULL),(386295,'Mikihiko Hirata',NULL,NULL),(386343,'Brooks Hyers',NULL,NULL),(386372,'Hiroaki Hiro',NULL,NULL),(386382,'Ryûichi Hiroki',1954,NULL),(386384,'Hiroki Shibata',NULL,NULL),(386386,'Hiromi Seki',NULL,NULL),(386403,'Kenjirô Hirose',NULL,NULL),(386414,'Ryôko Hirosue',1980,NULL),(386426,'Kazuo Hirotsu',1891,1968),(386443,'Tina Hirsch',1943,NULL),(386472,'Emile Hirsch',1985,NULL),(386501,'Julien Hirsch',1964,NULL),(386532,'Paul Hirsch',1945,NULL),(386542,'Robert Hirsch',1925,2017),(386556,'Wilbert Hirsch',1961,NULL),(386570,'Oliver Hirschbiegel',1957,NULL),(386583,'Gerald Hirschfeld',1921,2017),(386595,'David Hirschfelder',NULL,NULL),(386640,'Tree Adams',NULL,NULL),(386650,'Michael Hirsh',NULL,NULL),(386651,'Michael Hirsh',NULL,NULL),(386694,'Michael Hirst',1952,NULL),(386727,'Dagmar Hirtz',1941,NULL),(386730,'Ryo Hiruma',NULL,NULL),(386749,'Joe Hisaishi',1950,NULL),(386750,'Eijirô Hisaita',1898,1976),(386752,'Aya Hisakawa',1968,NULL),(386805,'Yuriko Hishimi',1947,NULL),(386900,'Dolores Hitchens',1907,1973),(386951,'Junko Hitomi',1955,NULL),(386973,'Carl K. Hittleman',1907,1999),(386979,'Hitu',NULL,NULL),(386991,'Rupert Hitzig',1938,NULL),(387000,'George Hively',1889,1950),(387001,'George Hively',1933,2006),(387002,'Jack Hively',1910,1995),(387025,'Ken Hixon',NULL,NULL),(387132,'William Hjortsberg',1941,2017),(387192,'Vladimír Hlavatý',1905,1992),(387198,'John Hlavin',NULL,NULL),(387354,'Meng-Hua Ho',1923,2009),(387426,'Christopher Hoag',NULL,NULL),(387432,'Judith Hoag',1963,NULL),(387449,'Ellsworth Hoagland',1903,1972),(387536,'Lillian Hoban',1925,1998),(387539,'Russell Hoban',1925,2011),(387541,'Steven Hoban',NULL,NULL),(387646,'Amy Hobby',NULL,NULL),(387674,'David Hoberman',NULL,NULL),(387694,'Lukas Hobi',NULL,NULL),(387706,'Gregory Hoblit',1944,NULL),(387740,'Laura Z. Hobson',1900,1986),(387753,'Valerie Hobson',1917,1998),(387764,'Danijel Hocevar',1965,NULL),(387773,'Danny Hoch',1970,NULL),(387827,'Rolf Hochhuth',1931,2020),(387828,'Christoph Hochhäusler',1972,NULL),(387914,'Jan Hockey',NULL,NULL),(387916,'Stephan Hockey',NULL,NULL),(387987,'Kane Hodder',1955,NULL),(388009,'Terry Hodel',NULL,NULL),(388038,'Aldis Hodge',1986,NULL),(388061,'Douglas Hodge',1960,NULL),(388064,'Edwin Hodge',1985,NULL),(388076,'John Hodge',1964,NULL),(388082,'Kate Hodge',1966,NULL),(388092,'Patricia Hodge',1946,NULL),(388122,'Edwin Hodgeman',1935,NULL),(388130,'Adrian Hodges',1957,NULL),(388132,'Andrew Hodges',NULL,NULL),(388166,'Horace Hodges',1863,1951),(388198,'Mike Hodges',1932,2022),(388227,'David Hodgin',1955,1995),(388233,'Eric Hodgins',1899,1971),(388262,'Brian Hodgson',1938,NULL),(388273,'Joel Hodgson',1960,NULL),(388293,'Pierre Hodgson',NULL,NULL),(388303,'John Hodiak',1914,1955),(388317,'David Hodo',1947,NULL),(388349,'J.L. Hodson',1891,1956),(388367,'Hoi Mang',NULL,NULL),(388375,'Erich Hoeber',NULL,NULL),(388377,'Jon Hoeber',NULL,NULL),(388382,'Tyler Hoechlin',1987,NULL),(388424,'Gudo Hoegel',1948,NULL),(388473,'Geir Vegar Hoel',1973,2021),(388502,'Hans Hoemburg',NULL,NULL),(388505,'Paul Hoen',NULL,NULL),(388507,'Jeremy Hoenack',NULL,NULL),(388554,'Arthur Hoerl',1891,1968),(388615,'Dennis Hoey',1893,1960),(388629,'Michael A. Hoey',1934,2014),(388743,'Monckton Hoffe',1880,1951),(388755,'Samuel Hoffenstein',1890,1947),(388772,'William Hoffer',NULL,NULL),(388788,'Judy Hofflund',NULL,NULL),(388805,'Alice Hoffman',1952,NULL),(388817,'Antony Hoffman',NULL,NULL),(388840,'Chad Hoffman',1955,NULL),(388841,'Charles Hoffman',1911,1972),(388898,'Gregg Hoffman',1963,2005),(388933,'Jake Hoffman',1981,NULL),(388956,'Jerzy Hoffman',1932,NULL),(388971,'John Hoffman',NULL,NULL),(389002,'Leonard Hoffman',1913,1969),(389058,'Philip Hoffman',1954,NULL),(389072,'Robert Hoffman',NULL,NULL),(389109,'Thom Hoffman',1957,NULL),(389155,'Carl Hoffmann',1885,1947),(389259,'Sabine Hoffman',NULL,NULL),(389285,'Florian Hoffmeister',1970,NULL),(389386,'Nico Hofmann',1959,NULL),(389405,'Trish Hofmann',NULL,NULL),(389414,'Genevieve Hofmeyr',NULL,NULL),(389424,'Marco Hofschneider',1969,NULL),(389425,'René Hofschneider',1960,NULL),(389463,'Maria Hofstätter',1964,NULL),(389495,'Brett Hogan',1960,NULL),(389514,'David Hogan',NULL,NULL),(389516,'Dick Hogan',1917,1995),(389580,'Michael Hogan',1893,1977),(389591,'P.J. Hogan',1962,NULL),(389602,'Percy Hogan',NULL,NULL),(389621,'Stephen Hogan',NULL,NULL),(389712,'Joanna Hogg',1960,NULL),(389767,'Jeffrey C. Hogue',NULL,NULL),(389821,'Frank Hohimer',1923,2005),(389830,'Brian Hohlfeld',1957,NULL),(389880,'Mai Hosho',1977,NULL),(389966,'Min-ho Kyeong',NULL,NULL),(389996,'Joachim Holbek',1957,NULL),(390141,'David Nicholls',1966,NULL),(390192,'Gloria Holden',1903,1991),(390229,'Laurie Holden',1969,NULL),(390258,'Rebecca Holden',NULL,NULL),(390285,'Kris Holden-Ried',1973,NULL),(390290,'Carlton Holder',NULL,NULL),(390402,'William J. Hole Jr.',1918,1990),(390435,'Adam Holender',1937,NULL),(390507,'Billie Holiday',1915,1959),(390537,'Kees Holierhoek',1941,NULL),(390604,'Antony Holland',1920,2015),(390708,'Isabelle Holland',1920,2002),(390789,'Owen Holland',NULL,NULL),(390822,'Savage Steve Holland',1960,NULL),(390867,'Andrew Hollander',NULL,NULL),(390903,'Tom Hollander',1967,NULL),(390912,'Skip Hollandsworth',1957,NULL),(390915,'Lloyd Hollar',1935,NULL),(390969,'Chris Knudson',1969,NULL),(390970,'Leslie Holleran',NULL,NULL),(391062,'Judy Holliday',1921,1965),(391132,'Cliff Hollingsworth',NULL,NULL),(391196,'Jeffrey Lee Hollis',1967,NULL),(391274,'Laurel Holloman',1971,NULL),(391326,'Josh Holloway',1969,NULL),(391344,'Matt Holloway',NULL,NULL),(391361,'Stanley Holloway',1890,1982),(391430,'Tom Hollyman',1919,2009),(391431,'Norman Hollyn',1952,2019),(391474,'Astrid Holm',1893,1961),(391502,'Hannes Holm',1962,NULL),(391506,'Henrietta Holm',NULL,NULL),(391667,'Dan Holmberg',1944,NULL),(391712,'Christina Holme',NULL,NULL),(391738,'Adrian Holmes',1974,NULL),(391750,'Ben Holmes',1890,1943),(391762,'Brittany Ashton Holmes',1989,NULL),(391763,'Brown Holmes',1907,1974),(391784,'Christopher Holmes',NULL,NULL),(391789,'Darren T. Holmes',NULL,NULL),(391794,'David Holmes',1969,NULL),(391820,'Emily Holmes',1977,NULL),(391860,'Jack W. Holmes',1904,1978),(391899,'John W. Holmes',1917,2001),(391996,'Peggy Holmes',NULL,NULL),(392000,'Peter Honess',1946,NULL),(392008,'Preston L. Holmes',1949,NULL),(392020,'Richard Holmes',1963,NULL),(392035,'Rupert Holmes',1947,NULL),(392073,'Tina Holmes',1973,NULL),(392125,'Mike Holmgren',1948,NULL),(392228,'Karen Holness',NULL,NULL),(392237,'Nicole Holofcener',1960,NULL),(392288,'Karin van Holst Pellekaan',1955,NULL),(392294,'Carsten Holst',1967,NULL),(392319,'Marius Holst',1965,NULL),(392392,'Charlene Holt',1928,1996),(392442,'Jack Holt',1888,1951),(392447,'Jany Holt',1909,2005),(392517,'Sarah Holt',NULL,NULL),(392529,'Tim Holt',1919,1973),(392625,'Mark Holton',1958,NULL),(392644,'Bryce Holtshousen',NULL,NULL),(392648,'Lou Holtz Jr.',NULL,NULL),(392692,'Robert Holtzman',NULL,NULL),(392705,'Miroslav Holub',1915,1999),(392714,'Eva Holubová',1959,NULL),(392744,'Mac Holyoke',NULL,NULL),(392774,'Max Holzboer',1899,NULL),(392788,'Erika Holzer',1935,NULL),(392810,'Conrad Holzgang',1932,2018),(392833,'Allan Holzman',1946,NULL),(392913,'Lluís Homar',1957,NULL),(392942,'William Douglas-Home',1912,1992),(392955,'Homer',NULL,NULL),(393028,'Oscar Homolka',1898,1978),(393029,'Marie Homolkova',NULL,NULL),(393094,'Ishirô Honda',1911,1993),(393109,'Takako Honda',1972,NULL),(393125,'Marcus Hondro',NULL,NULL),(393157,'Honey',NULL,NULL),(393222,'James Hong',1929,NULL),(393240,'Hong Kyung-pyo',NULL,NULL),(393250,'Kuang Ni',1935,2022),(393254,'Hong Sang-soo',1960,NULL),(393289,'Akiyoshi Hongo',NULL,NULL),(393291,'Kôjirô Hongô',1938,2013),(393351,'Chiyoko Honma',1945,NULL),(393365,'Yoko Honna',1979,NULL),(393385,'Roger Honorat',NULL,NULL),(393394,'Christophe Honoré',1970,NULL),(393445,'Brendan Hood',NULL,NULL),(393495,'Kevin Hood',NULL,NULL),(393517,'Sean Hood',1966,NULL),(393535,'Randeep Hooda',1976,NULL),(393591,'Harry Hook',1960,NULL),(393661,'Kevin Hooks',1958,NULL),(393714,'Brandon Hooper',NULL,NULL),(393780,'Nellee Hooper',NULL,NULL),(393781,'Nicholas Hooper',NULL,NULL),(393799,'Tom Hooper',1972,NULL),(393842,'Trula Hoosier',NULL,NULL),(393848,'Peter Hooten',1950,NULL),(393922,'Richard Hoover',NULL,NULL),(393949,'Anthony Hope',1863,1933),(394012,'Leslie Hope',1965,NULL),(394032,'Nathan Hope',NULL,NULL),(394034,'Nicholas Hope',1958,NULL),(394046,'Ted Hope',1962,NULL),(394199,'Joel Hopkins',1970,NULL),(394200,'John Hopkins',1931,1998),(394212,'Karen Leigh Hopkins',NULL,NULL),(394244,'Miriam Hopkins',1902,1972),(394251,'Nikita Hopkins',1991,NULL),(394267,'Robert E. Hopkins',1886,1966),(394280,'Stephen Hopkins',NULL,NULL),(394286,'Telma Hopkins',1948,NULL),(394404,'Hal Hopper',1912,1970),(394479,'Avery Hopwood',1882,1928),(394494,'John Hora',1940,2021),(394519,'Ann Marie Horan',NULL,NULL),(394547,'Roy Horan',NULL,2021),(394564,'William Horberg',NULL,NULL),(394588,'Michael Hordern',1911,1995),(394601,'Jitka Horejsi',NULL,NULL),(394652,'Junko Hori',NULL,NULL),(394653,'Katsunosuke Hori',NULL,NULL),(394658,'Shinji Hori',NULL,NULL),(394676,'Kei Horie',1978,NULL),(394679,'Yui Horie',1976,NULL),(394690,'Ryô Horikawa',1958,NULL),(394728,'Senji Horiuchi',NULL,NULL),(394756,'Olivier Horlait',NULL,NULL),(394774,'Arthur T. Horman',1905,1964),(394776,'Sherry Hormann',1960,NULL),(394841,'Hans Horn',NULL,NULL),(394862,'Karen Horn',NULL,NULL),(394889,'Michelle Horn',1987,NULL),(394911,'Robert Horn',NULL,NULL),(394924,'Trevor Horn',1949,NULL),(394944,'Jeffrey Hornaday',1956,NULL),(394954,'Scott Hornbacher',NULL,NULL),(394967,'Arthur Hornblow Jr.',1893,1976),(394984,'Nick Hornby',1957,NULL),(395004,'David Horne',1898,1970),(395067,'Victoria Horne',1911,2003),(395170,'Roy Horniman',1872,1930),(395193,'Bruce Hornsby',1954,NULL),(395203,'Russell Hornsby',1974,NULL),(395216,'E.W. Hornung',1866,1921),(395262,'Israel Horovitz',1939,2020),(395267,'Rachael Horovitz',NULL,NULL),(395271,'Adam Horowitz',NULL,NULL),(395489,'Eric Horsted',1965,NULL),(395531,'Silvio Horta',1974,2020),(395541,'Hortense Ullrich',NULL,NULL),(395777,'Richard Steven Horvitz',1966,NULL),(395814,'Putyi Horváth',1953,NULL),(395818,'Sándor Horváth',1932,2012),(395819,'Teri Horváth',1929,2009),(395902,'Hans-Dieter Hosalla',1919,1995),(395924,'David Hoselton',NULL,NULL),(395926,'Marc Hosemann',1970,NULL),(395940,'Chikako Hosokawa',1905,1976),(395953,'Yuriko Hoshi',1943,2018),(396013,'Basil Hoskins',1929,2005),(396017,'Dan Hoskins',NULL,NULL),(396043,'Winfield Hoskins',1905,1961),(396071,'Suad Husni',1943,2001),(396074,'Mamoru Hosoda',1967,NULL),(396075,'Masahiro Hosoda',NULL,NULL),(396078,'Seigo Hosogoe',NULL,NULL),(396100,'Haruomi Hosono',1947,NULL),(396106,'Tatsuo Hosoya',NULL,NULL),(396125,'Nina Hoss',1975,NULL),(396136,'Robert Hossein',1927,2020),(396159,'Luis Hostalot',1951,NULL),(396212,'Yukijirô Hotaru',1951,NULL),(396230,'Tracy Hotchner',1950,NULL),(396253,'Yoshie Hotta',1918,1998),(396284,'Hsiao-Hsien Hou',1947,NULL),(396285,'Margaret Hou',NULL,NULL),(396290,'Yong Hou',NULL,NULL),(396327,'Byron Houck',1891,1969),(396378,'Harry Houdini',1874,1926),(396381,'Eric Houdion',NULL,NULL),(396391,'Michel Houellebecq',1956,NULL),(396421,'John Hough',1941,NULL),(396449,'Don Houghton',1930,1991),(396453,'Johnny Houghton',NULL,NULL),(396455,'Katharine Houghton',1945,NULL),(396515,'Lisa Houle',NULL,NULL),(396558,'Nicholas Hoult',1989,NULL),(396684,'Lynda House',1949,NULL),(396720,'David B. Householter',1961,NULL),(396734,'Phyllis Housen',NULL,NULL),(396796,'Allan Houston',1971,NULL),(396812,'Danny Huston',1962,NULL),(396817,'Dianne Houston',1954,NULL),(396819,'Donald Houston',1923,1991),(396876,'Norman Houston',1887,1958),(396884,'Robert Houston',1955,NULL),(396886,'Robin Houston',NULL,NULL),(396924,'Carice van Houten',1976,NULL),(396951,'Rob Houwer',1937,NULL),(396992,'Anders Hove',1956,NULL),(396998,'Adrian Hoven',1922,1981),(397022,'Sonya Levien',1888,1960),(397102,'Alan Howard',1937,2015),(397109,'Andrea Howard',1947,NULL),(397126,'Arthur Howard',NULL,NULL),(397170,'Bruce Howard',1925,2012),(397171,'Bryce Dallas Howard',1981,NULL),(397174,'Byron Howard',1968,NULL),(397175,'Cal Howard',1911,1993),(397212,'Clint Howard',1959,NULL),(397232,'David Howard',NULL,NULL),(397271,'Eldon Howard',NULL,NULL),(397284,'Esther Howard',1892,1965),(397306,'Garth Pillsbury',1938,NULL),(397322,'Gregory Allen Howard',1952,2023),(397374,'Jeffrey Howard',NULL,NULL),(397377,'Jeffrey M. Howard',NULL,NULL),(397397,'John Howard',1913,1995),(397405,'John C. Howard',1930,1983),(397411,'Paul Rudnick',1957,NULL),(397427,'Kathleen Howard',1884,1956),(397432,'Ken Howard',1944,2016),(397441,'Kevyn Major Howard',NULL,NULL),(397445,'Kyle Howard',1978,NULL),(397492,'Max Howard',1952,NULL),(397513,'Mr. Howard',NULL,NULL),(397574,'Robert E. Howard',1906,1936),(397580,'Ronald Howard',1918,1996),(397599,'Shawn Michael Howard',1969,NULL),(397608,'Sidney Howard',1891,1939),(397678,'William K. Howard',1893,1954),(397697,'Alan Howarth',1948,NULL),(397715,'Jennifer Howarth',NULL,NULL),(397721,'Kevin Howarth',NULL,NULL),(397788,'Brian Howe',1957,NULL),(397834,'J.A. Howe',1889,1962),(397907,'Wally Howe',1876,1957),(397928,'Anthony Howell',1971,NULL),(397940,'Kanin Howell',1981,NULL),(397987,'Jean Howell',1927,1996),(397998,'Juliette Howell',NULL,NULL),(398141,'Sally Ann Howes',1930,2021),(398167,'Niven Howie',NULL,NULL),(398174,'Jana Howington',NULL,NULL),(398185,'Peter Howitt',1957,NULL),(398222,'John Howlett',1940,2019),(398244,'John Howley',1949,2014),(398258,'Gary Howsam',NULL,NULL),(398286,'Perry Howze',NULL,NULL),(398287,'Randy Howze',NULL,NULL),(398335,'Maysie Hoy',1949,NULL),(398343,'William Hoy',1955,NULL),(398426,'Jaime de Hoyos',NULL,NULL),(398464,'Harry O. Hoyt',1885,1961),(398466,'John Hoyt',1905,1991),(398469,'Judie Hoyt',NULL,NULL),(398518,'Bohumil Hrabal',1914,1997),(398555,'Ágnes Hranitzky',1945,NULL),(398681,'Frantisek Hrubín',1910,1971),(398760,'Siu-Lung Leung',1948,NULL),(398763,'Rita Hsiao',NULL,NULL),(398782,'Hsieh Wang',1930,2016),(398832,'Kong Hsu',NULL,NULL),(398836,'Li-Kong Hsu',1943,NULL),(398843,'Paul Hsu',NULL,NULL),(398861,'Hung Poon',NULL,NULL),(398871,'David Wu',NULL,NULL),(398911,'Wai Lap Wu',1937,NULL),(399003,'Jianxin Huang',1954,NULL),(399007,'Jeong-lee Hwang',1944,NULL),(399037,'Roger Huang',1968,NULL),(399055,'Wen-Ying Huang',NULL,NULL),(399064,'Yijun Huang',NULL,NULL),(399065,'Ying Wong',1956,1991),(399069,'Wing-Hang Wong',NULL,NULL),(399074,'James Wong',1940,2004),(399088,'Patrick Huard',1969,NULL),(399131,'Sibylle Hubatschek-Rahn',NULL,NULL),(399143,'Amy Leigh Hubbard',NULL,NULL),(399146,'Brian Rigney Hubbard',NULL,NULL),(399203,'Lucien Hubbard',1888,1971),(399216,'Philip Hubbard',1873,1931),(399217,'Pieter Hubbard',NULL,NULL),(399252,'Chris Hubbell',1946,NULL),(399275,'Gil Hubbs',NULL,NULL),(399424,'Sébastien Huberdeau',1979,NULL),(399427,'Mark Huberman',NULL,NULL),(399486,'Roger Hubert',1903,1964),(399523,'Ray Hubley',NULL,NULL),(399524,'John Hubley',1914,1977),(399541,'Frank Hübner',NULL,NULL),(399589,'Gary Huckabay',NULL,NULL),(399630,'Menhaj Huda',1967,NULL),(399663,'David Huddleston',1930,2016),(399677,'Ollie Huddleston',NULL,NULL),(399679,'Russ Huddleston',NULL,NULL),(399737,'Reginald Hudlin',1961,NULL),(399738,'Warrington Hudlin',1952,NULL),(399746,'Rob Hudnut',NULL,NULL),(399772,'Angus Hudson',1964,NULL),(399791,'Brett Hudson',1953,NULL),(399839,'Gary Hudson',1956,NULL),(399853,'Hugh Hudson',1936,2023),(399870,'John Hudson',1919,1996),(399940,'Peter Hudson',NULL,NULL),(399955,'Rochelle Hudson',1916,1972),(399981,'Toni Hudson',1960,NULL),(399990,'William Hudson',NULL,NULL),(400022,'Manfred Hübler',NULL,NULL),(400062,'Richard Yuen',NULL,NULL),(400117,'Matthias Hues',1959,NULL),(400152,'Cristina Huete',NULL,NULL),(400170,'Ralf Huettner',1954,NULL),(400223,'Neal Huff',1966,NULL),(400236,'Clair Huffaker',1926,1990),(400240,'Mark Huffam',NULL,NULL),(400252,'Michael Huffington',1947,NULL),(400277,'Jon Huffman',NULL,NULL),(400312,'Steven Hufsteter',NULL,NULL),(400385,'Erica Huggins',NULL,NULL),(400390,'Jere Huggins',NULL,NULL),(400403,'Roy Huggins',1914,2002),(400436,'Albert Hughes',1972,NULL),(400441,'Allen Hughes',1972,NULL),(400464,'Barnard Hughes',1915,2006),(400486,'Bronwen Hughes',NULL,NULL),(400542,'David A. Hughes',1960,NULL),(400568,'Dorothy B. Hughes',1904,1993),(400591,'Eric Hughes',NULL,NULL),(400731,'Ken Hughes',1922,2001),(400763,'Lloyd Hughes',1897,1958),(400794,'Mary Beth Hughes',1919,1995),(400816,'Miko Hughes',1986,NULL),(400850,'Patrick Hughes',NULL,NULL),(400914,'Russell S. Hughes',1910,1958),(400954,'Ted Hughes',1930,1998),(400957,'Terri Hughes Burton',NULL,NULL),(400958,'Terry Hughes',1940,NULL),(400998,'Wendy Hughes',1952,2014),(401048,'Adèle Hugo',1830,1915),(401066,'Michel Hugo',1930,2010),(401076,'Victor Hugo',1802,1885),(401123,'Marthe Huguet',NULL,NULL),(401176,'Ann Hui',1947,NULL),(401180,'Clarence Hui',NULL,NULL),(401192,'Kara Wai',1960,NULL),(401203,'Raman Hui',1963,NULL),(401204,'Ricky Hui',1946,2011),(401239,'William Bradford Huie',1910,1986),(401264,'Michiel Huisman',1981,NULL),(401269,'Steve Huison',1963,NULL),(401286,'Ferenc Hujber',1974,NULL),(401368,'Gladys Hulette',1896,1991),(401393,'Sally Hulke',1939,NULL),(401434,'Henry Hull',1890,1977),(401478,'Warren Hull',1903,1974),(401520,'Kathryn Hulme',1900,1981),(401584,'Nancy Hult Ganis',NULL,NULL),(401638,'Jens Hultén',1963,NULL),(401654,'Daniel Humair',1938,NULL),(401680,'H. Bruce Humberstone',1901,1984),(401682,'Nigel Humberstone',NULL,NULL),(401713,'Robert Humble',1924,2008),(401727,'Alan Hume',1924,2010),(401738,'Cyril Hume',1900,1966),(401742,'Edward Hume',1936,2023),(401804,'Paul Humfress',NULL,NULL),(401848,'Richard K. Hummel',NULL,NULL),(401865,'Gudny Hummelvoll',NULL,NULL),(401872,'Julia Hummer',1980,NULL),(401960,'Ted Humphrey',NULL,NULL),(402016,'Nina Humphreys',NULL,NULL),(402024,'Robert Humphreys',NULL,NULL),(402032,'Barry Humphries',1934,2023),(402039,'Dave Humphries',1944,2001),(402165,'John Huneck',NULL,NULL),(402175,'Catherine Yan Hung',1971,NULL),(402271,'Charlie Hunnam',1980,NULL),(402277,'Arthur Hunnicutt',1910,1979),(402281,'Gayle Hunnicutt',1943,2023),(402408,'David Hunt',NULL,NULL),(402478,'J. Roy Hunt',1884,1972),(402554,'Marsha Hunt',1917,2022),(402556,'Marsha A. Hunt',1946,NULL),(402558,'Martita Hunt',1900,1969),(402563,'Pixote Hunt',NULL,NULL),(402596,'Peter H. Hunt',1938,2020),(402597,'Peter R. Hunt',1925,2002),(402599,'Phil Hunt',NULL,NULL),(402611,'Richard Hunt',1951,1992),(402730,'Bill Hunter',1940,2011),(402763,'Clark Hunter',1958,NULL),(402804,'Elizabeth Hunter',NULL,NULL),(402805,'Evan Hunter',1926,2005),(402842,'Ian Hunter',1900,1975),(402848,'Ian McLellan Hunter',1915,1991),(402870,'Jay Hunter',NULL,NULL),(402950,'Martin Hunter',NULL,NULL),(403022,'Ross Hunter',1920,1996),(403038,'Simon Hunter',1969,NULL),(403065,'Thomas Hunter',1932,2017),(403134,'Sam Huntington',1982,NULL),(403223,'Michelle Hunziker',1977,NULL),(403230,'Xin Huo',1980,NULL),(403258,'W. Mott Hupfel III',NULL,NULL),(403288,'Gottfried Huppertz',1887,1937),(403346,'Georg Hurdalek',1908,1980),(403397,'Shane Hurlbut',1964,NULL),(403398,'William Hurlbut',1878,1957),(403481,'Owen Hurley',NULL,NULL),(403526,'Philip Hurn',1953,NULL),(403541,'Nick Hurran',1959,NULL),(403577,'Andy Hurst',NULL,NULL),(403595,'Fannie Hurst',1889,1968),(403628,'Michael Hurst',1957,NULL),(403629,'Michael Hurst',1973,NULL),(403630,'Michelle Hurst',NULL,NULL),(403648,'Robert Hurst',NULL,NULL),(403652,'Ryan Hurst',1976,NULL),(403678,'Zora Neale Hurston',1891,1960),(403811,'Victor Hurwitz',1932,1973),(403830,'Ann Husaini',NULL,NULL),(403926,'Matthew Robert Kelly',1972,NULL),(403984,'Zakir Hussain',1951,NULL),(404014,'Waris Hussein',1938,NULL),(404046,'Ruth Hussey',1911,2005),(404062,'Albert Husson',1912,1978),(404067,'Eva Husson',1977,NULL),(404091,'Francis Huster',1947,NULL),(404093,'Marie-Pierre Huster',NULL,NULL),(404157,'Virginia Huston',1925,1981),(404158,'Walter Huston',1883,1950),(404181,'Nicholas Hutak',NULL,NULL),(404188,'Willie Hutch',1944,2005),(404232,'Geoffrey Hutchings',1939,2010),(404269,'Eleanor Hutchins',NULL,NULL),(404298,'Will Hutchins',1930,NULL),(404307,'Anna Hutchison',1986,NULL),(404317,'Brenda I. Hutchinson',NULL,NULL),(404332,'Derek Hutchinson',NULL,NULL),(404427,'Brian Hutchison',NULL,NULL),(404446,'Hutch Parker',1963,NULL),(404483,'Hanno Huth',1953,NULL),(404505,'Tamás Hutlassa',NULL,NULL),(404509,'Jon Hutman',NULL,NULL),(404510,'Mark Hutman',NULL,NULL),(404527,'Gillian L. Hutshing',NULL,NULL),(404528,'Joe Hutshing',NULL,NULL),(404561,'William Hutt',1920,2007),(404606,'Brian G. Hutton',1929,2014),(404648,'Marcus Hutton',NULL,NULL),(404665,'Robert Hutton',1920,1994),(404698,'Terry Huud',NULL,NULL),(404702,'Tonny Huurdeman',1922,1991),(404717,'Aldous Huxley',1894,1963),(404752,'Peter Huyck',NULL,NULL),(404754,'Willard Huyck',1945,NULL),(404802,'Sergiu Huzum',1933,NULL),(404870,'Lucia Hwong',NULL,NULL),(404885,'Leila Hyams',1905,1977),(404896,'Tor Hyams',NULL,NULL),(404931,'Paul Hyett',NULL,NULL),(404954,'Catherine Ryan Hyde',1955,NULL),(404978,'Glenn Hyde',NULL,NULL),(404985,'Jacquelyn Hyde',1931,1992),(404991,'John W. Hyde',1941,NULL),(404993,'Jonathan Hyde',1948,NULL),(405028,'Tracy Hyde',1959,NULL),(405033,'Alex Hyde-White',1959,NULL),(405035,'Wilfrid Hyde-White',1903,1991),(405054,'Martha Hyer',1924,2014),(405103,'Sarah Hyland',1990,NULL),(405111,'Scott Hylands',1943,NULL),(405156,'Bernard H. Hyman',1897,1942),(405163,'Dick Hyman',1927,NULL),(405184,'Kenneth Hyman',1928,NULL),(405190,'Marc Hyman',NULL,NULL),(405211,'Chantal Hymans',NULL,NULL),(405286,'Michael Hynson',1942,NULL),(405289,'Mako Hyôdô',1962,NULL),(405310,'Joyce Hyser',1957,NULL),(405336,'Nicholas Hytner',1956,NULL),(405407,'Miroslav Hájek',1919,1993),(405450,'Peter Hägerstrand',NULL,NULL),(405501,'Marita Hällfors',1963,NULL),(405588,'Anna-Leena Härkönen',1965,NULL),(405632,'Mikael Håfström',1960,NULL),(405695,'Paul Hébert',1924,2017),(405758,'Claude Héroux',1942,NULL),(405759,'Denis Héroux',1940,2015),(405809,'Ursula Höf',NULL,NULL),(405934,'Franz Höllering',1896,1968),(405937,'Heinz Hölscher',1925,2021),(405974,'Christiane Hörbiger',1938,2022),(405976,'Mavie Hörbiger',1979,NULL),(406032,'Peter Høeg',1957,NULL),(406053,'Trond Høines',NULL,NULL),(406157,'Hümeyra',1947,NULL),(406228,'Jeremy Iacone',NULL,NULL),(406241,'John Iacovelli',1959,2023),(406334,'Armando Iannucci',1963,NULL),(406451,'Esteban Ibarretxe',NULL,NULL),(406452,'Javier Ibarretxe',1961,2014),(406471,'Arthur Ibbetson',1922,1997),(406585,'Henrik Ibsen',1828,1906),(406592,'Masatô Ibu',1949,NULL),(406601,'Geibei Ibushiya',NULL,NULL),(406654,'Narciso Ibáñez Serrador',1935,2019),(406655,'Claude Ibéria',NULL,NULL),(406700,'Etsuko Ichihara',1936,2019),(406725,'Kiichi Ichikawa',1922,2006),(406772,'Takashige Ichise',1961,NULL),(406808,'Yoshikata Yoda',1909,1991),(406836,'Masato Ide',1920,1989),(406841,'Toshirô Ide',1910,1988),(406866,'Michael Aki',NULL,NULL),(406975,'Rhys Ifans',1967,NULL),(407025,'Tomoyuki Igarashi',NULL,NULL),(407030,'Hisashi Igawa',1936,NULL),(407033,'Togo Igawa',1946,NULL),(407061,'Eloy de la Iglesia',1944,2006),(407067,'Álex de la Iglesia',1965,NULL),(407076,'Alberto Iglesias',1955,NULL),(407180,'Marya Ignacio',NULL,NULL),(407284,'Ángel Iguácel',NULL,NULL),(407286,'James Iha',1968,NULL),(407296,'Tsuyoshi Ihara',1963,NULL),(407329,'Chôko Iida',1897,1972),(407332,'Jôji Iida',NULL,NULL),(407372,'Mayumi Izuka',1977,NULL),(407411,'Ryô Ikebe',1918,2010),(407412,'Shinichirô Ikebe',1943,NULL),(407456,'Tadao Ikeda',NULL,NULL),(407462,'Tetsuya Ikeda',NULL,NULL),(407474,'Kaneo Ikegami',1923,2007),(407475,'Kimiko Ikegami',1959,NULL),(407498,'Bridget Ikin',NULL,NULL),(407514,'Chizuru Ikewaki',1981,NULL),(407552,'Kunihiko Ikuhara',1964,NULL),(407562,'Etsuko Ikuta',1947,2018),(407615,'Robert Iler',1985,NULL),(407717,'W. Peter Iliff',1957,NULL),(407859,'György Illés',1914,2006),(407992,'Im Sang-soo',1962,NULL),(408000,'Chiaki Imada',1923,2006),(408030,'Miki Imai',1963,NULL),(408039,'Tsuyoshi Imai',NULL,NULL),(408042,'Yuka Imai',NULL,NULL),(408043,'Hiroyuki Imaishi',NULL,NULL),(408076,'Shôhei Imamura',1926,2006),(408196,'Tony Imi',1937,2010),(408234,'Sabrina Impacciatore',1968,NULL),(408238,'Gianfelice Imparato',1956,NULL),(408248,'Dirk Impens',NULL,NULL),(408249,'Ruben Impens',NULL,NULL),(408254,'Michele Imperato',NULL,NULL),(408259,'Bill Imperial',NULL,NULL),(408284,'Michael Imperioli',1966,NULL),(408309,'Celia Imrie',1952,NULL),(408328,'Jung-Ok In',NULL,NULL),(408436,'Thomas H. Ince',1880,1924),(408453,'Josu Inchaustegui',NULL,NULL),(408476,'Rafael Inclán',1941,NULL),(408488,'Agenore Incrocci',1919,2005),(408498,'Jonas Inde',1967,NULL),(408586,'Frieda Inescort',1901,1976),(408591,'Ralph Ineson',1969,NULL),(408681,'Don Ingalls',1918,2014),(408683,'Jonathan Ingalls',NULL,NULL),(408691,'Tom Ingalls',NULL,NULL),(408711,'Joe Inge',1910,1965),(408718,'William Inge',1913,1973),(408748,'Sylvia Ingemarsson',1949,NULL),(408771,'Jess Ingerslev',1947,2014),(408813,'Barrie Ingham',1932,2015),(408834,'John Ingle',1928,2012),(408933,'J.H. Ingraham',1809,1860),(409036,'Terry Ingram',NULL,NULL),(409069,'Boris Ingster',1903,1978),(409186,'Scott Innes',1966,NULL),(409258,'Toshirô Inomata',NULL,NULL),(409274,'Fumio Inoue',NULL,NULL),(409275,'Go Inoue',NULL,NULL),(409279,'Hiroaki Inoue',NULL,NULL),(409287,'Kazuhiko Inoue',1954,NULL),(409296,'Makio Inoue',1938,2019),(409368,'The Insects',NULL,NULL),(409392,'Dave Insley',NULL,NULL),(409479,'John Inwood',NULL,NULL),(409568,'Aureliu Ionescu',1938,NULL),(409666,'Jimmy Iovine',1953,NULL),(409675,'Caroline Ip',NULL,NULL),(409677,'Deannie Ip',1947,NULL),(409820,'Enrique Irazoqui',1944,2020),(409851,'Charles Ireland',1961,2008),(409869,'John Ireland',1914,1992),(409942,'Mateo Iribarren',NULL,NULL),(409960,'Takako Irie',1911,1995),(409981,'Luis Iriondo',1931,2017),(410013,'Tina Irissari',NULL,NULL),(410065,'Daniel Iron',NULL,NULL),(410127,'Britt Irvin',1984,NULL),(410139,'John Irvin',1940,NULL),(410171,'Chris Jericho',1970,NULL),(410216,'Robin Irvine',1901,1933),(410237,'Brian Irving',NULL,NULL),(410271,'George Irving',1874,1961),(410288,'John Irving',1942,NULL),(410308,'Matt Irving',NULL,NULL),(410331,'Washington Irving',1783,1859),(410344,'Ashley Irwin',NULL,NULL),(410419,'Mark Irwin',1950,NULL),(410436,'Pat Irwin',NULL,NULL),(410490,'Frank K. Isaac',NULL,NULL),(410494,'James Isaac',1960,2012),(410516,'Sandy Isaac',NULL,NULL),(410521,'Levie Isaacks',1946,NULL),(410535,'Bud S. Isaacs',1925,1999),(410596,'Walter Isaacson',1952,NULL),(410622,'Katharine Isabelle',1981,NULL),(410667,'Boris Isakovic',1966,NULL),(410694,'Ulla Isaksson',1916,2000),(410756,'José Isbert',1886,1966),(410769,'Robert Iscove',1947,NULL),(410773,'Mario Iscovich',1949,NULL),(410805,'Gerald I. Isenberg',1940,NULL),(410832,'Yûsuke Iseya',1976,NULL),(410877,'Christopher Isherwood',1904,1986),(410893,'Brittany Ishibashi',NULL,NULL),(410903,'Ryo Ishibashi',1956,NULL),(410907,'Akira Ishida',1967,NULL),(410929,'Moriyoshi Ishida',NULL,NULL),(410942,'Yuriko Ishida',1969,NULL),(410945,'Toshirô Ishidô',1932,2011),(410951,'Yûma Ishigaki',1982,NULL),(410958,'Kazuo Ishiguro',1954,NULL),(410968,'Akira Ishihama',1935,2022),(410975,'Makoto Ishihara',NULL,NULL),(410984,'Takashi Ishihara',1960,NULL),(411002,'Katsuhito Ishii',1966,NULL),(411028,'Tomiko Ishii',1935,NULL),(411050,'Hideo Ishikawa',1969,NULL),(411054,'Hiroshi Ishikawa',1937,NULL),(411060,'Kinichi Ishikawa',NULL,NULL),(411070,'Mitsuhisa Ishikawa',1958,NULL),(411097,'Hiroya Ishimaru',1946,NULL),(411127,'Shotaro Ishinomori',1938,1998),(411130,'Eiko Ishioka',1938,2012),(411167,'Unshô Ishizuka',1951,2018),(411208,'Rudolf Ising',1903,1992),(411229,'Mai Iskander',NULL,NULL),(411388,'Norihiro Isoda',NULL,NULL),(411416,'Tara Ison',NULL,NULL),(411444,'Bob Israel',NULL,NULL),(411459,'Jeff Israel',NULL,NULL),(411477,'Neal Israel',1945,NULL),(411517,'Issa López',NULL,NULL),(411569,'Klára Issová',1979,NULL),(411581,'Maia Morgenstern',1962,NULL),(411631,'Jûzô Itami',1933,1997),(411682,'Atsushi Itô',1983,NULL),(411683,'Ayumi Ito',NULL,NULL),(411694,'Hiroko Itô',NULL,NULL),(411702,'Junji Ito',1963,NULL),(411725,'Misaki Itô',1977,NULL),(411726,'Motohiko Itô',NULL,NULL),(411734,'Ryoji Ito',NULL,NULL),(411769,'Yumi Itô',1941,2016),(411770,'Yûnosuke Itô',1919,1980),(411778,'Hideo Itô',NULL,NULL),(411790,'Shigesato Itoi',1948,NULL),(411797,'Hisao Itoya',1908,1997),(411826,'José Iturbi',1895,1980),(411853,'Eberhard Itzenplitz',1926,2012),(411872,'Kazunori Itô',1954,NULL),(411879,'Miki Itô',1962,NULL),(411881,'Senji Itô',NULL,NULL),(411903,'Marcel Iures',1951,NULL),(411942,'Alexander Dumreicher-Ivanceanu',NULL,NULL),(411980,'Mark Ivanir',1968,NULL),(412045,'I. Ivanov',NULL,NULL),(412096,'Vlad Ivanov',1969,NULL),(412180,'Luis Ivars',NULL,NULL),(412204,'Vladimir Ivashov',1939,1995),(412245,'Daniel Ivernel',1918,1999),(412251,'Robert Ivers',1934,2003),(412282,'Morten Iversen',NULL,NULL),(412322,'Burl Ives',1909,1995),(412328,'David Ives',1950,NULL),(412374,'Dana Ivey',1941,NULL),(412382,'Judith Ivey',1951,NULL),(412404,'Dana Ivgy',1982,NULL),(412465,'James Ivory',1928,NULL),(412470,'William Ivory',1964,NULL),(412492,'Tom Neyman',1935,2016),(412515,'Kaneo Iwai',NULL,NULL),(412517,'Shunji Iwai',1963,NULL),(412537,'Ryô Iwamatsu',1952,NULL),(412585,'Junko Iwao',1970,NULL),(412588,'Basil Iwanyk',1970,NULL),(412615,'Shima Iwashita',1941,NULL),(412628,'Mitsuo Iwata',1967,NULL),(412650,'Ub Iwerks',1901,1971),(412669,'Ken Iyadomi',NULL,NULL),(412748,'Teresa Izewska',1933,1982),(412803,'Anna Iztaru',NULL,NULL),(412827,'Taku Izumi',NULL,NULL),(412850,'Eddie Izzard',1962,NULL),(412901,'T.J. Lowther',1986,NULL),(413011,'Steve Jablonsky',1970,NULL),(413013,'Michael Jablow',NULL,NULL),(413051,'Antoine Jaccoud',NULL,NULL),(413168,'Hugh Jackman',1968,NULL),(413182,'Michael Jackman',NULL,NULL),(413208,'James Jacks',1947,2014),(413238,'Natalie Mendoza',1978,NULL),(413258,'Alison Jackson',NULL,NULL),(413271,'Anne Jackson',1925,2016),(413352,'Charles R. Jackson',1903,1968),(413359,'Chequita Jackson',NULL,NULL),(413389,'Courtney Jackson',NULL,NULL),(413459,'Donald G. Jackson',1943,2003),(413465,'Douglas Jackson',1938,NULL),(413519,'Felix Jackson',1902,1992),(413528,'Freda Jackson',1907,1990),(413547,'George Jackson',1958,2000),(413559,'Glenda Jackson',1936,2023),(413561,'Gordon Jackson',1923,1990),(413711,'Joseph Jackson',1894,1932),(413821,'Marion Jackson',1879,1962),(413826,'Ron Kurz',1940,2020),(413842,'Mary Jackson',NULL,NULL),(413875,'Mick Jackson',1943,NULL),(413970,'Richard Jackson',NULL,NULL),(413996,'Roger Jackson',1958,NULL),(414029,'Sarah Jackson',NULL,NULL),(414047,'Shirley Jackson',1916,1965),(414117,'Tracey Jackson',NULL,NULL),(414130,'Victoria Jackson',1959,NULL),(414144,'Wilfred Jackson',1906,1988),(414157,'Armetta Jackson-Hamlett',NULL,NULL),(414185,'Catherine Jacob',1956,NULL),(414279,'Lou Jacobi',1913,2009),(414324,'Allison Jacobs',NULL,NULL),(414325,'Andre Jacobs',NULL,NULL),(414336,'Arthur P. Jacobs',1922,1973),(414337,'Azazel Jacobs',1972,NULL),(414405,'Evan Jacobs',NULL,NULL),(414423,'Gregory Jacobs',NULL,NULL),(414448,'Jim Jacobs',1942,NULL),(414498,'Katie Jacobs',NULL,NULL),(414504,'Kristy Jacobs Maslin',NULL,NULL),(414551,'Michael Jacobs',1955,NULL),(414554,'Michael Dean Jacobs',1958,2020),(414570,'Olu Jacobs',1942,NULL),(414601,'Rick Jacobs',NULL,NULL),(414608,'Robert Nelson Jacobs',NULL,NULL),(414633,'Seaman Jacobs',1912,2008),(414673,'William Jacobs',1887,1953),(414728,'Jannicke Systad Jacobsen',NULL,NULL),(414734,'John M. Jacobsen',1944,NULL),(414795,'Andrew Jacobson',NULL,NULL),(414825,'Egon Jacobsohn',1895,NULL),(414885,'Leopold Jacobson',1878,1943),(414893,'Mark Jacobson',1948,NULL),(414910,'Rick Jacobson',NULL,NULL),(414930,'Tom Jacobson',NULL,NULL),(414965,'Ulla Jacobsson',1929,1982),(414989,'Hans Jacoby',1904,1963),(415004,'Michael Jacoby',1898,1970),(415150,'Hattie Jacques',1922,1980),(415167,'Norbert Jacques',1880,1954),(415225,'Marc Jacquier',NULL,NULL),(415245,'Benoît Jacquot',1947,NULL),(415266,'Caroline Jaczko',NULL,NULL),(415272,'Farzad Jadat',NULL,NULL),(415333,'Just Jaeckin',1940,2022),(415351,'Denny Jaeger',NULL,NULL),(415353,'Elizabeth A. Jaeger',NULL,NULL),(415409,'Arthur Jafa',1960,NULL),(415412,'Nafise Jafar-Mohammadi',NULL,NULL),(415425,'Rick Jaffa',1956,NULL),(415445,'Gib Jaffe',NULL,NULL),(415448,'Herb Jaffe',1921,1991),(415468,'Michael Jaffe',NULL,NULL),(415476,'Nicole Jaffe',1941,NULL),(415488,'Sam Jaffe',1891,1984),(415494,'Stanley R. Jaffe',1940,NULL),(415498,'Steven-Charles Jaffe',1951,NULL),(415529,'Sakina Jaffrey',1962,NULL),(415591,'Dean Jagger',1903,1991),(415599,'Paul Jagger',NULL,NULL),(415663,'Kayvan Jahanshahi',NULL,NULL),(415714,'Thomas Jahn',1965,NULL),(415720,'Håkan Jahnberg',1903,1970),(415733,'Gerburg Jahnke',1955,NULL),(415745,'Randall Jahnson',NULL,NULL),(415890,'T.D. Jakes',1957,NULL),(415932,'Peeter Jakobi',1940,2014),(415979,'Don Jakoby',NULL,NULL),(416039,'Alain Jakubowicz',NULL,NULL),(416077,'Farida Jalal',1949,NULL),(416130,'Pierre Jallaud',1922,2006),(416164,'Kia Jam',1970,NULL),(416203,'Xavier Jamaux',1968,NULL),(416228,'Sidney James',1913,1976),(416290,'Barney James',NULL,NULL),(416297,'Benedict James',1871,1957),(416378,'Clifton James',1920,2017),(416381,'Colton James',1988,NULL),(416393,'Daniel James',1911,1988),(416404,'David James Lewis',1976,NULL),(416408,'David P.I. James',NULL,NULL),(416524,'Geraldine James',1950,NULL),(416556,'Henry James',1843,1916),(416596,'Jesse James',1989,NULL),(416644,'Joséphine James',NULL,NULL),(416673,'Kevin James',1965,NULL),(416694,'Lennie James',1965,NULL),(416699,'Liam James',1996,NULL),(416721,'M.R. James',1862,1936),(416739,'Mark James',1963,NULL),(416802,'Olga James',1929,NULL),(416807,'P.D. James',1920,2014),(416824,'Peter James',1947,NULL),(416856,'James Read',1953,NULL),(416861,'Rian James',1899,1953),(416869,'Aphex Twin',1971,NULL),(417012,'Walter James',1882,1946),(417017,'Wharton James',1873,1943),(417054,'Jerry Jameson',1934,NULL),(417126,'Kathy Jamieson',1957,NULL),(417202,'Peter Jamison',1944,2010),(417291,'Varou Jan',NULL,NULL),(417301,'Janakaraj',NULL,NULL),(417322,'Julie Janata',NULL,NULL),(417361,'Tadeusz Janczar',1926,1997),(417370,'Krystyna Janda',1952,NULL),(417403,'James Jandrisch',NULL,NULL),(417520,'Jang Dong-Gun',1972,NULL),(417526,'Hang-Seon Jang',1947,NULL),(417553,'Lane Janger',1966,NULL),(417708,'Annabel Jankel',1955,NULL),(417716,'Tom Jankiewicz',1963,2013),(417724,'Alexander Janko',NULL,NULL),(417785,'Roland Jankowsky',1968,NULL),(417794,'Michael Patrick Jann',1970,NULL),(417806,'Tony C. Jannelli',1950,NULL),(417824,'Leon Janney',1917,1980),(417830,'Joseph Janni',1916,1994),(417837,'Emil Jannings',1884,1950),(417840,'Janis Farley',1965,NULL),(417845,'Véronique Jannot',1957,NULL),(417903,'Michael Janover',1946,NULL),(417917,'Hans Janowitz',1890,1954),(417924,'Anna Yanovskaya',1971,NULL),(417940,'Alaric Jans',1949,NULL),(417970,'Cas Jansen',1977,NULL),(418011,'Janus Billeskov Jansen',1951,NULL),(418070,'Susan Estelle Jansen',NULL,NULL),(418131,'Victor Janson',1884,1960),(418309,'Tove Jansson',1914,2001),(418321,'Karen Janszen',NULL,NULL),(418440,'Iva Janzurová',1941,NULL),(418441,'Jana Janzurová',NULL,NULL),(418450,'Agnès Jaoui',1964,NULL),(418469,'Sébastien Japrisot',1931,2003),(418470,'Camille Japy',1968,NULL),(418590,'Stephen P. Jarchow',NULL,NULL),(418621,'Frédéric Jardin',1968,NULL),(418625,'Pascal Jardin',1934,1980),(418702,'Ondrej Jariabek',1908,1987),(418724,'Stefan Jarl',1941,NULL),(418727,'Magnus Jarlbo',1960,NULL),(418746,'Derek Jarman',1942,1994),(418772,'Jack Jarmuth',NULL,NULL),(418809,'Karen Jaroneski',NULL,NULL),(418877,'John Jarratt',1951,NULL),(418883,'Kevin Jarre',1954,2011),(418904,'John Jarrell',NULL,NULL),(418911,'Jerry Jarrett',1918,2001),(418972,'Paul Jarrico',1915,1997),(418982,'Julian Jarrold',1960,NULL),(418986,'Charles Jarrott',1927,2011),(419169,'Jon Jashni',NULL,NULL),(419248,'David Jason',1940,NULL),(419256,'Harvey Jason',1940,NULL),(419265,'Leigh Jason',1904,1979),(419363,'Christina Jastrzembska',1948,NULL),(419383,'Benoit Jaubert',NULL,NULL),(419403,'Janyse Jaud',1969,NULL),(419436,'Clayton Jauncey',NULL,NULL),(419470,'Bertrand Javal',1926,1987),(419473,'Maia Javan',NULL,NULL),(419486,'David Javerbaum',NULL,NULL),(419522,'Vladimír Javorský',1962,NULL),(419645,'Tony Jay',1933,2006),(419650,'Jay-Z',1969,NULL),(419747,'Billy Jayne',NULL,NULL),(419779,'Peter Jaysen',NULL,NULL),(419785,'Michael Jayston',1935,NULL),(419830,'Al Jean',1961,NULL),(419838,'Christiane Jean',1959,NULL),(419884,'Vadim Jean',1963,NULL),(419982,'Ursula Jeans',1906,1973),(419986,'Henri Jeanson',1900,1970),(420044,'Helmut Jedele',1920,2012),(420065,'Kalina Jedrusik',1931,1991),(420112,'John Jeffcoat',NULL,NULL),(420121,'Annalee Jefferies',1954,NULL),(420170,'Herbert Jefferson Jr.',1946,NULL),(420266,'Barbara Jefford',1930,2020),(420282,'Betty Jeffrey',NULL,NULL),(420291,'Howard Jeffrey',1934,1988),(420326,'Tracey Jeffrey',NULL,NULL),(420383,'Lionel Jeffries',1926,2010),(420422,'Christine Jeffs',1963,NULL),(420448,'Dado Jehan',1964,NULL),(420471,'Avraham B. Yehoshua',1936,2022),(420545,'Anne-Marie Jelinek',1935,2000),(420548,'Elfriede Jelinek',1946,NULL),(420572,'Manfred O. Jelinski',NULL,NULL),(420590,'Ann Jellicoe',1927,2017),(420596,'Moe Jelline',NULL,NULL),(420679,'David Jonas',NULL,NULL),(420701,'Erik Jendresen',NULL,NULL),(420746,'Guy Jenkin',1955,NULL),(420765,'Allen Jenkins',1900,1974),(420838,'Eric Jenkins',NULL,NULL),(420845,'Geoffrey Jenkins',NULL,NULL),(420846,'George Jenkins',1908,2007),(420898,'Ken Jenkins',1940,NULL),(420923,'Megs Jenkins',1917,1998),(420937,'Noam Jenkins',NULL,NULL),(420941,'Patty Jenkins',1971,NULL),(420953,'Rebecca Jenkins',1959,NULL),(420955,'Richard Jenkins',1947,NULL),(420982,'Tamara Jenkins',1962,NULL),(421017,'Michael Jenkinson',NULL,NULL),(421044,'Michael Jenn',1959,NULL),(421079,'Bart Jennett',NULL,NULL),(421084,'Jim Jennewein',NULL,NULL),(421105,'Alex Jennings',1957,NULL),(421126,'Christina Jennings',NULL,NULL),(421127,'Claire Jennings',NULL,NULL),(421128,'Claudia Jennings',1949,1979),(421157,'Gordon Jennings',1896,1953),(421165,'Humphrey Jennings',1907,1950),(421192,'Kim Jennings',NULL,NULL),(421218,'Maxine Jennings',1909,1991),(421255,'Talbot Jennings',1894,1985),(421314,'Anders Thomas Jensen',1972,NULL),(421332,'Ashley Jensen',1969,NULL),(421386,'Cleo Jensen',1921,2006),(421528,'Johnny E. Jensen',NULL,NULL),(421575,'Lars Bo Jensen',NULL,NULL),(421608,'Matthew Jensen',NULL,NULL),(421639,'Peter Aalbæk Jensen',1956,NULL),(421709,'Todd Jensen',NULL,NULL),(421776,'Vicky Jenson',NULL,NULL),(421780,'Geir Jenssen',1962,NULL),(421799,'Julia Jentsch',1978,NULL),(421816,'Sang-yun Jeon',NULL,NULL),(421822,'Ken Jeong',1969,NULL),(421825,'Seong-san Jeong',NULL,NULL),(421862,'Selwyn Jepson',1899,1989),(421894,'James Jeremias',NULL,NULL),(421948,'Jerico Stone',NULL,NULL),(421949,'Ebony Jerido',NULL,NULL),(422015,'Edwin Jerome',1885,1959),(422017,'Helen Jerome',1883,1966),(422151,'Otto Jespersen',1954,NULL),(422161,'Bill Jesse',1942,1990),(422185,'Patricia Jessel',1920,1968),(422205,'Sebastian Jessen',1986,NULL),(422234,'Paul Jesson',1946,NULL),(422343,'Sue Jett',NULL,NULL),(422382,'Jack Jevne',1892,1972),(422436,'Isabel Jewell',1907,1972),(422484,'Norman Jewison',1926,NULL),(422552,'Prakash Jha',1952,NULL),(422558,'Karishma Jhalani',NULL,NULL),(422588,'Ronny Jhutti',1973,NULL),(422605,'Zhangke Jia',1970,NULL),(422696,'Paulette Jiles',NULL,NULL),(422710,'Penn Jillette',1955,NULL),(422791,'Neal Jimenez',1960,2022),(422866,'Carlos Jiménez Mabarak',1916,1994),(422948,'Héctor Jiménez',1973,NULL),(422972,'José Luis Jiménez',1900,1978),(423084,'Shih-Chieh King',1951,NULL),(423101,'Miki Jinbo',1960,NULL),(423122,'Minoru Jingo',NULL,NULL),(423134,'Dan Jinks',NULL,NULL),(423148,'Hiroaki Jinno',1962,NULL),(423191,'Christine Jirku',1945,2017),(423280,'Jo Yeong-wook',1962,NULL),(423332,'Clotilde Joano',1932,1974),(423333,'Phil Joanou',1961,NULL),(423364,'Sheridan Jobbins',NULL,NULL),(423397,'Daniel Jobin',1949,NULL),(423401,'Peter Jobin',1944,2018),(423422,'Dickie Jobson',NULL,2008),(423524,'Alejandro Jodorowsky',1929,NULL),(423526,'Brontis Jodorowsky',1962,NULL),(423532,'Steve Jodrell',NULL,NULL),(423578,'Robert McLane',1944,1992),(423618,'Charles H. Joffe',1929,2008),(423623,'Mark Joffe',1956,NULL),(423626,'Rowan Joffe',1972,NULL),(423632,'Jon Joffin',1963,NULL),(423646,'Roland Joffé',1945,NULL),(423663,'Tomisaburô Wakayama',1929,1992),(423765,'Arthur Johansen',NULL,NULL),(423774,'David Johansen',1950,NULL),(423966,'Jan Johansson',1931,1968),(423975,'Joi Johannsson',1971,NULL),(423979,'Jørgen Johansson',1960,NULL),(424035,'Paul Johansson',1964,NULL),(424060,'Scarlett Johansson',1984,NULL),(424101,'Hiroo Johar',NULL,NULL),(424103,'Karan Johar',1972,NULL),(424105,'Yash Johar',1929,2004),(424118,'John 5',1971,NULL),(424155,'Domenick John',NULL,NULL),(424216,'Johnny Knoxville',1971,NULL),(424302,'Dave Johns',NULL,NULL),(424315,'Geoff Johns',1973,NULL),(424318,'Glynis Johns',1923,NULL),(424338,'Lauren W. Johns',1988,NULL),(424345,'Mervyn Johns',1899,1992),(424370,'Tracy Camilla Johns',1963,NULL),(424453,'Adam Johnson',NULL,NULL),(424481,'Alexz Johnson',1986,NULL),(424489,'Allyson C. Johnson',1959,NULL),(424499,'Andray Johnson',1961,NULL),(424519,'Ariyan A. Johnson',1971,NULL),(424534,'Ashley Johnson',1983,NULL),(424565,'Ben Johnson',1918,1996),(424635,'Brad Johnson',1959,2022),(424660,'Bridget Johnson',NULL,NULL),(424663,'Broderick Johnson',NULL,NULL),(424684,'Bryce Johnson',1977,NULL),(424688,'Buddy Johnson',NULL,NULL),(424710,'Carl Johnson',NULL,NULL),(424735,'Catherine Johnson',1957,NULL),(424743,'Celia Johnson',1908,1982),(424759,'Chas. Floyd Johnson',1941,NULL),(424800,'Clark Johnson',NULL,NULL),(424848,'Dakota Johnson',1989,NULL),(424900,'David Johnson',1954,NULL),(424901,'David Leslie Johnson-McGoldrick',NULL,NULL),(424956,'Diane Johnson',1934,NULL),(424999,'Douglas S. Johnson',NULL,NULL),(425005,'Dwayne Johnson',1972,NULL),(425053,'Eric Johnson',1979,NULL),(425061,'Eric Vale',1974,NULL),(425138,'George Clayton Johnson',1929,2015),(425266,'J.J. Johnson',1924,2001),(425328,'Jed Johnson',1948,1996),(425456,'Julian Johnson',1885,1965),(425512,'Kay Johnson',1904,1975),(425540,'Kenneth Johnson',1942,NULL),(425581,'Kristine Johnson',NULL,NULL),(425610,'Laura Johnson',1957,NULL),(425676,'LouAnne Johnson',NULL,NULL),(425711,'Malcolm Johnson',1904,1976),(425741,'Mark Johnson',1945,NULL),(425756,'Mark Steven Johnson',NULL,NULL),(425843,'Mike Johnson',NULL,NULL),(425854,'Millard Johnson',1871,NULL),(425894,'Niall Johnson',1965,NULL),(425913,'Nunnally Johnson',1897,1977),(425916,'Olof Johnson',NULL,NULL),(425944,'Pat E. Johnson',1939,NULL),(425957,'Patrick Read Johnson',NULL,NULL),(426038,'Rebecca Johnson',NULL,NULL),(426059,'Rian Johnson',1973,NULL),(426062,'Richard Johnson',1927,2015),(426089,'Rita Johnson',1913,1965),(426120,'Rodney Johnson',NULL,NULL),(426134,'Ron Johnson',NULL,NULL),(426161,'Ryan Johnson',1979,NULL),(426224,'Shelly Johnson',NULL,NULL),(426256,'Stanley E. Johnson',1913,1992),(426263,'Stephen Johnson',NULL,NULL),(426287,'Susan Johnson',NULL,NULL),(426333,'Tim Johnson',NULL,NULL),(426355,'Toni Ann Johnson',1968,NULL),(426359,'Tony Johnson',1918,2009),(426363,'Tor Johnson',1903,1971),(426365,'Traci Paige Johnson',1969,NULL),(426440,'Bill Johnson',NULL,NULL),(426500,'Kurt Johnstad',NULL,NULL),(426514,'Adrian Johnston',1961,NULL),(426539,'Becky Johnston',NULL,NULL),(426710,'Julanne Johnston',1900,1988),(426917,'Iain Johnstone',1943,2023),(426953,'Will B. Johnstone',1881,1944),(427058,'Petri Jokiranta',NULL,NULL),(427066,'Mirjana Jokovic',1967,NULL),(427068,'Dusan Joksimovic',1963,NULL),(427136,'Pierre Jolivet',1952,NULL),(427156,'Elizabeth Jolley',1923,2007),(427231,'Al Jolson',1886,1950),(427305,'George Jonas',1935,2016),(427314,'Jennifer Jonas',NULL,NULL),(427379,'Kristoffer Joner',1972,NULL),(427452,'Allan Jones',1907,1992),(427468,'Amy Holden Jones',1953,NULL),(427484,'Angela Jones',NULL,NULL),(427503,'Anthony Michael Jones',NULL,NULL),(427538,'Barbarao',NULL,NULL),(427580,'Bill Jones',1976,NULL),(427595,'Robert Jones',NULL,NULL),(427638,'Bridget Jones',1964,NULL),(427654,'Bryan Jones',NULL,NULL),(427700,'Carolyn Jones',1930,1983),(427714,'Celyn Jones',1979,NULL),(427728,'Cherry Jones',1956,NULL),(427821,'D.F. Jones',1918,1981),(427827,'Damian Jones',1964,NULL),(427831,'Dan Jones',NULL,NULL),(427880,'David Hugh Jones',1934,2008),(427888,'Davy Jones',1945,2012),(427894,'Dean Jones',1931,2015),(427934,'Dickie Jones',1927,2014),(427964,'Doug Jones',1960,NULL),(427977,'Duane Jones',1937,1988),(427993,'Earl Richey Jones',NULL,NULL),(428025,'Ella Jones',1989,NULL),(428031,'Elton Jones',NULL,NULL),(428056,'Evan Jones',1927,2023),(428065,'Felicity Jones',1983,NULL),(428086,'Freddie Jones',1927,2019),(428121,'Gemma Jones',1942,NULL),(428143,'Gillian Jones',1947,NULL),(428175,'Griffith Jones',1909,2007),(428197,'Harold Wayne Jones',NULL,NULL),(428201,'Hatty Jones',1988,NULL),(428244,'Ian Jones',NULL,NULL),(428296,'James Jones',1921,1977),(428325,'Jay Anthony Jones',1962,NULL),(428354,'Jennifer Jones',1919,2009),(428372,'Jerry Jones',1927,2012),(428382,'Jill Marie Jones',1975,NULL),(428394,'Jocelyn Jones',NULL,NULL),(428448,'Jon Jones',NULL,NULL),(428483,'Julian Jones',1959,NULL),(428549,'Ken Jones',1927,1988),(428572,'Albert Zugsmith',1910,1993),(428600,'Kirk Jones',1964,NULL),(428618,'L.Q. Jones',1927,2022),(428630,'Laura Jones',1951,NULL),(428655,'Leslie Jones',NULL,NULL),(428656,'Leslie Jones',1967,NULL),(428699,'Loretha C. Jones',NULL,NULL),(428751,'Mark Jones',1953,NULL),(428765,'Mark Lewis Jones',1964,NULL),(428873,'Mike Jones',1971,NULL),(428897,'Morgan Jones',NULL,NULL),(428923,'Nathan Jones',1969,NULL),(428963,'Orlando Jones',1968,NULL),(428965,'Osheen Jones',NULL,NULL),(428987,'Paul Jones',1901,1968),(429058,'Ralph Jones',NULL,NULL),(429063,'Randy Jones',1952,NULL),(429069,'Rashida Jones',1976,NULL),(429078,'Raymond F. Jones',1915,1994),(429122,'Rickie Lee Jones',1954,NULL),(429129,'Robbie Jones',1977,NULL),(429134,'Robert Jones',NULL,NULL),(429168,'Ron Jones',1940,NULL),(429171,'Ron Cephas Jones',1957,2023),(429191,'Russ Jones',1942,NULL),(429207,'Sam J. Jones',1954,NULL),(429250,'Shirley Jones',1934,NULL),(429292,'Steven Jones',NULL,NULL),(429293,'Steven A. Jones',NULL,NULL),(429350,'Tim Jones',1971,NULL),(429363,'Toby Jones',1966,NULL),(429506,'Betsy Jones-Moreland',1930,2006),(429517,'Ate de Jong',1953,NULL),(429617,'Thierry Jonquet',1954,2009),(429741,'Carl Joos',NULL,NULL),(429774,'Vanessa Jopp',1971,NULL),(429842,'Bert Jordan',1887,1983),(429923,'Dorothy Jordan',1906,1988),(430107,'Michael B. Jordan',1987,NULL),(430131,'Paul Jordan',NULL,NULL),(430151,'Richard Jordan',1937,1993),(430438,'Ragna Jorming',1975,NULL),(430460,'Victor Jory',1902,1982),(430535,'Allen Joseph',1919,2012),(430538,'Albrecht Joseph',1901,1991),(430629,'Karole Rocher',1974,NULL),(430650,'Massoud Joseph',NULL,NULL),(430667,'Paterson Joseph',1964,NULL),(430687,'Robert L. Joseph',1923,2002),(430742,'Barry Josephson',NULL,NULL),(430746,'Erland Josephson',1923,2012),(430756,'Julien Josephson',1881,1959),(430763,'Matthew Josephson',1899,1978),(430773,'Françoise Joset',NULL,NULL),(430785,'Abhijat Joshi',1969,NULL),(430817,'Sharman Joshi',1979,NULL),(430846,'Milko Josifov',NULL,NULL),(430870,'Allyn Joslyn',1901,1981),(430904,'Barry Jossen',NULL,NULL),(430944,'Darwin Joston',1937,1998),(431025,'Jacques Jouanneau',1926,2011),(431083,'Alain Jouffroy',1928,2015),(431139,'Louis Jourdan',1921,2015),(431172,'Duane Journey',NULL,NULL),(431212,'Louis Jouvet',1887,1951),(431332,'Arly Jover',NULL,NULL),(431438,'Mark Joy',1950,NULL),(431451,'Robert Joy',1951,NULL),(431484,'Alice Joyce',1890,1955),(431502,'Brenda Joyce',1917,2009),(431622,'William Joyce',1957,NULL),(431641,'Odette Joyeux',1914,2000),(431665,'Steve Joyner',NULL,NULL),(431791,'Laurence Juber',1952,NULL),(431817,'Jeff Judah',NULL,NULL),(431837,'Edward Judd',1932,2009),(431861,'Melanie Judd',NULL,NULL),(431889,'Arline Judge',1912,1974),(431895,'Christopher Judge',1964,NULL),(431918,'Mike Judge',1962,NULL),(431922,'F.J. McCormick',1890,1947),(431929,'Tony Judge',NULL,NULL),(431956,'Eric Judor',1969,NULL),(432007,'Curd Jürgens',1915,1982),(432013,'Heather Juergensen',1970,NULL),(432040,'Gérard Jugnot',1951,NULL),(432055,'Alexandra Juhasz',NULL,NULL),(432075,'Jerry Juhl',1938,2005),(432119,'Robert Juillard',1906,1982),(432143,'Christen Jul',1887,1955),(432216,'Rupert Julian',1879,1943),(432228,'Alessandro Juliani',1975,NULL),(432257,'Christophe Julien',1972,NULL),(432273,'Max Julien',1933,2022),(432331,'Karl Júlíusson',NULL,NULL),(432375,'Karin Julsrud',NULL,NULL),(432380,'Miranda July',1974,NULL),(432382,'David Julyan',NULL,NULL),(432428,'Jun Ji-hyun',1981,NULL),(432482,'Ray June',1895,1958),(432553,'Julio Jung',1942,NULL),(432591,'Jung Suh',1972,NULL),(432601,'Jung Woo-sung',1973,NULL),(432613,'Alfred Junge',1886,1964),(432616,'Daniel Junge',NULL,NULL),(432622,'Traudl Junge',1920,2002),(432625,'Paul Junger Witt',1941,2018),(432627,'Gil Junger',NULL,NULL),(432631,'Sebastian Junger',1962,NULL),(432653,'Max Jungk',1872,1937),(432657,'Eric Jungmann',1981,NULL),(432702,'Fred Junck',NULL,NULL),(432721,'Hans Junkermann',1872,1943),(432723,'Eberhard Junkersdorf',1938,NULL),(432725,'Tom Holkenborg',1967,NULL),(432753,'Caio Junqueira',1976,2019),(432827,'Katy Jurado',1924,2002),(432846,'Nathan Juran',1907,2002),(432926,'Albert Jurgenson',1929,2002),(432935,'Ankica Juric Tilic',1965,NULL),(433021,'Martin Jurow',1911,2004),(433056,'Jorge Zuhair Jury',NULL,NULL),(433059,'Pavel Jurácek',1935,1989),(433132,'Norton Juster',1929,2021),(433150,'James Robertson Justice',1907,1975),(433179,'Ed Justin',NULL,NULL),(433188,'John Justin',1917,2002),(433200,'Susan Justin',NULL,NULL),(433267,'Claude Jutra',1930,1986),(433274,'Paul Jutras',NULL,NULL),(433339,'Nancy Juvonen',1967,NULL),(433355,'Carlos Juárez',1967,NULL),(433384,'John Jympson',1930,2003),(433392,'Jyotika',1978,NULL),(433474,'Viola Jäger',NULL,NULL),(433495,'Ernst-Hugo Järegård',1928,1998),(433512,'Stig Järrel',1910,1998),(433520,'Sakke Järvenpää',NULL,NULL),(433525,'Jüri Järvet',1919,1995),(433560,'Corinne Jénart',NULL,NULL),(433578,'Barði Jóhannsson',NULL,NULL),(433580,'Jóhann Jóhannsson',1969,2018),(433584,'Mór Jókai',1825,1904),(433587,'Olafur Jónasson',NULL,NULL),(433588,'Óskar Jónasson',1963,NULL),(433593,'Pálína Jónsdóttir',1968,NULL),(433601,'Davíð Þór Jónsson',1965,NULL),(433646,'Lars Jönsson',1961,NULL),(433653,'Reidar Jönsson',1944,NULL),(433692,'Ann Eleonora Jørgensen',1965,NULL),(433697,'Bodil Jørgensen',1961,NULL),(433763,'Theodór Júlíusson',1949,NULL),(433816,'Fritz Jüptner-Jonstorff',1908,1993),(433967,'Jeppe Kaas',1966,NULL),(434097,'Gyula Kabos',1887,1941),(434120,'Hajime Kaburagi',NULL,NULL),(434168,'Kris Kachikis',NULL,NULL),(434222,'Jan A.P. Kaczmarek',1953,NULL),(434393,'Tsuguhiko Kadokawa',NULL,NULL),(434395,'Eiko Kadono',1935,NULL),(434400,'Emmanuel Kadosh',NULL,NULL),(434444,'Hakeem Kae-Kazim',NULL,NULL),(434525,'Franz Kafka',1883,1924),(434528,'John H. Kafka',1902,1974),(434563,'David Kagen',1948,NULL),(434565,'Diane Kagan',1935,NULL),(434593,'Kyôko Kagawa',1931,NULL),(434596,'Teruyuki Kagawa',1965,NULL),(434616,'Kallan Kagan',NULL,NULL),(434712,'John Kani',1942,NULL),(434759,'Wolf Kahler',1940,NULL),(434763,'Steffen Kahles',NULL,NULL),(434806,'Cédric Kahn',1966,NULL),(434835,'Gordon Kahn',1902,1962),(434838,'Harvey Kahn',NULL,NULL),(434854,'Jeff Kahn',NULL,NULL),(434879,'Marco Khan',NULL,NULL),(434922,'Sheldon Kahn',NULL,NULL),(434969,'John Kahrs',NULL,NULL),(434988,'Kit-Wai Kai',NULL,NULL),(434996,'Naoki Kai',NULL,NULL),(435137,'Christoph Kaiser',1964,NULL),(435200,'Oldrich Kaiser',1955,NULL),(435218,'Terry Kiser',1939,NULL),(435250,'Elizabeth Kaitan',1960,NULL),(435289,'Aleksandr Kaydanovskiy',1946,1995),(435296,'Kengo Kaji',NULL,NULL),(435299,'Meiko Kaji',1947,NULL),(435312,'Masaki Kajishima',NULL,NULL),(435317,'Yuki Kajiura',1965,NULL),(435323,'Bianca Kajlich',1977,NULL),(435372,'Shûichi Kakesu',1957,NULL),(435393,'Hideki Kakinuma',NULL,NULL),(435413,'Takashi Kako',1947,NULL),(435435,'Hiroyuki Kakudo',NULL,NULL),(435446,'Masaru Kakutani',NULL,NULL),(435457,'Jean-Claude Kalache',NULL,NULL),(435525,'Panagiotis Kalatzopoulos',NULL,NULL),(435534,'Mahmoud Kalari',1951,NULL),(435559,'Brian S. Kalata',1964,NULL),(435563,'Mikhail Kalatozov',1903,1973),(435606,'Lee Kalcheim',1938,NULL),(435701,'Michael Kalesniko',1961,NULL),(435726,'Jean-Pierre Kalfon',1938,NULL),(435788,'Tom Kalin',NULL,NULL),(435849,'Vanda Kalinová',NULL,NULL),(435894,'Ron Kalish',1942,NULL),(435983,'Helena Kallenbäck',1944,NULL),(436095,'Bert Kalmar',1884,1947),(436164,'Laeta Kalogridis',1965,NULL),(436228,'Tim Kaltenecker',NULL,NULL),(436284,'Scott Kalvert',1964,2014),(436314,'Kaan Kalyon',NULL,NULL),(436316,'Igor Kalyonov',1967,NULL),(436346,'Milton Kam',NULL,NULL),(436348,'Peter Kam',1961,NULL),(436422,'Luciano Rossi',1934,2005),(436473,'Hiroshi Kamayatsu',1939,2017),(436475,'Karl Kamb',1903,1988),(436543,'Robert Mark Kamen',1947,NULL),(436639,'Tsunehiko Kamijô',1940,NULL),(436655,'Kazuo Kamimura',1940,1986),(436684,'Susana Kamini',NULL,NULL),(436687,'Didier Kaminka',1943,NULL),(436770,'Tatsumi Kumashiro',1927,1995),(436776,'Akira Kamiya',1946,NULL),(436778,'Hiroshi Kamiya',1975,NULL),(436780,'Makoto Kamiya',NULL,NULL),(436784,'Kenji Kamiyama',1966,NULL),(436835,'Felix Kammerer',1995,NULL),(436851,'Jim Kammerud',1960,NULL),(436878,'Zoltán Kamondi',1960,2016),(436894,'Irene Kamp',1910,1985),(436899,'Mischa Kamp',1970,NULL),(436950,'Steven Kampmann',1947,NULL),(436960,'John Kamps',NULL,NULL),(437151,'Giya Kancheli',1935,2019),(437176,'Takashi Kanda',1918,1986),(437189,'Aben Kandel',1897,1993),(437199,'Paul Kandel',1951,NULL),(437249,'J.H. Wyman',1967,NULL),(437267,'Brad Kane',1973,NULL),(437276,'Candace Kane',NULL,NULL),(437283,'Christian Kane',1972,NULL),(437304,'Eddie Kane',1889,1969),(437325,'Irene Kane',1924,2013),(437391,'Mary Kane',NULL,NULL),(437393,'Michael Kane',1922,2020),(437454,'Tom Kane',1962,NULL),(437490,'Rolfe Kanefsky',1969,NULL),(437511,'Ken Kaneko',1976,NULL),(437520,'Nobuo Kaneko',1923,1995),(437526,'Shûsuke Kaneko',1955,NULL),(437573,'Haruyo Kanesaku',NULL,NULL),(437580,'Takeshi Kaneshiro',1973,NULL),(437596,'Jeff Kanew',1944,NULL),(437597,'Justin Kanew',NULL,NULL),(437646,'Sung Kang',1972,NULL),(437709,'Marek Kanievska',1948,NULL),(437716,'Fay Kanin',1917,2013),(437717,'Garson Kanin',1912,1999),(437720,'Michael Kanin',1910,1993),(437816,'Miho Kanno',1977,NULL),(437819,'Yôko Kanno',1964,NULL),(437900,'Hal Kanter',1918,2011),(437901,'Igo Kantor',1930,2019),(437914,'Marin Kanter',1960,NULL),(437933,'Marcos Kantis',NULL,NULL),(437969,'MacKinlay Kantor',1904,1977),(438090,'Asif Kapadia',1972,NULL),(438092,'Dimple Kapadia',1957,NULL),(438201,'Betty Kaplan',NULL,NULL),(438210,'Caroline Kaplan',NULL,NULL),(438219,'Cynthia Kaplan',NULL,NULL),(438226,'Deborah Kaplan',1970,NULL),(438235,'Eric Kaplan',NULL,NULL),(438260,'J. Stein Kaplan',NULL,NULL),(438279,'Jonathan Kaplan',1947,NULL),(438303,'Louise J. Kaplan',NULL,NULL),(438332,'Mike Kaplan',NULL,NULL),(438379,'Susan Kaplan',NULL,NULL),(438394,'Yvette Kaplan',1955,NULL),(438449,'Mitchell Kapner',NULL,NULL),(438463,'Anil Kapoor',1956,NULL),(438471,'Ekta Kapoor',1975,NULL),(438496,'Rajit Kapoor',1960,NULL),(438506,'Shobha Kapoor',NULL,NULL),(438585,'Valérie Kaprisky',1962,NULL),(438700,'Denize Karabuda',1962,NULL),(438757,'Njeri Karago',1960,NULL),(438780,'Jana Karaivanova',1961,NULL),(438785,'Nele Karajlic',1962,NULL),(438905,'Mirjana Karanovic',1957,NULL),(438918,'Tamer Karawan',NULL,NULL),(438989,'Larry Karaszewski',1961,NULL),(439002,'Nikos Karathanos',NULL,NULL),(439003,'Thanassis Karathanos',NULL,NULL),(439037,'Ivana Karbanová',1944,NULL),(439111,'Sándor Kardos',1944,NULL),(439219,'Fred Karger',1916,1979),(439292,'Nilli Karim',1974,NULL),(439307,'Babak Karimi',1960,NULL),(439308,'Hassan Agha Karimi',NULL,NULL),(439312,'Niki Karimi',1971,NULL),(439334,'Rita Karin',1919,1993),(439344,'Anna Karina',1940,2019),(439466,'Olga Karlatos',1945,NULL),(439482,'John Karlen',1933,2020),(439499,'Ben Karlin',NULL,NULL),(439546,'Elma Karlowa',1932,1994),(439563,'Elizabeth Karlsen',NULL,NULL),(439597,'Phil Karlson',1908,1985),(439642,'Jonas Karlsson',1971,NULL),(439663,'Mikael Karlsson',1975,NULL),(439739,'Janice Karman',1954,NULL),(439767,'Marin Karmitz',1938,NULL),(439768,'Nathanaël Karmitz',1978,NULL),(439784,'Girish Karnad',1938,2019),(439844,'Tom Karnowski',NULL,NULL),(439850,'Roscoe Karns',1891,1970),(439883,'Sigurd Mikal Karoliussen',1969,NULL),(439918,'Beverly Karp',1930,2003),(439959,'Charles Korvin',1907,1998),(440017,'Laura Karpman',NULL,NULL),(440075,'Mabel Karr',1934,2001),(440140,'Andrew S. Karsch',NULL,NULL),(440171,'Eric Karson',NULL,NULL),(440229,'Vincent Kartheiser',1979,NULL),(440271,'M. Karunanidhi',1924,2018),(440286,'Claudia Karvan',1972,NULL),(440344,'Mike Karz',NULL,NULL),(440368,'Ton Kas',1959,NULL),(440381,'Reiko Kasahara',1945,NULL),(440383,'Ryôzô Kasahara',1912,2002),(440384,'Yoshihiro Kasahara',NULL,NULL),(440407,'Norimichi Kasamatsu',NULL,NULL),(440408,'Yasuhiro Kasamatsu',NULL,NULL),(440413,'Kees Kasander',1955,NULL),(440415,'Lawrence Kasanoff',1959,NULL),(440458,'Jake Kasdan',1974,NULL),(440459,'Jonathan Kasdan',1979,NULL),(440476,'Michael Kase',NULL,NULL),(440487,'Casey Kasem',1932,2014),(440505,'Karl Kases',1951,NULL),(440556,'Kenn Kashima',NULL,NULL),(440581,'Gohki Kashiyama',NULL,NULL),(440604,'Anurag Kashyap',1972,NULL),(440641,'Laura Kasischke',1961,NULL),(440673,'Harmon Kaslow',1962,NULL),(440777,'Bryce Kass',NULL,NULL),(440797,'Roger Kass',NULL,NULL),(440830,'Mario Kassar',1951,NULL),(440860,'Mark Kassen',1971,NULL),(440913,'Mathieu Kassovitz',1967,NULL),(440936,'Erick Kastel',NULL,NULL),(440980,'Leonard Kastle',1929,2011),(440990,'Elliott Kastner',1930,2010),(440997,'John Kastner',NULL,NULL),(441088,'Elizabeth Kata',1912,1998),(441090,'Sunao Katabuchi',1960,NULL),(441097,'Anthony Katagas',NULL,NULL),(441098,'Hairi Katagiri',1963,NULL),(441176,'Kazuyoshi Katayama',1959,NULL),(441194,'Vahé Katcha',1928,2003),(441287,'Branka Katic',1970,NULL),(441300,'Jason Katims',NULL,NULL),(441301,'Michael Katims',NULL,NULL),(441351,'Gô Katô',1938,2018),(441394,'Shunzô Katô',NULL,NULL),(441401,'Tokiko Katô',NULL,NULL),(441501,'Milton Katselas',1933,2008),(441526,'Shintarô Katsu',1931,1997),(441528,'Nobuyuki Katsube',1938,NULL),(441534,'Masako Katsuki',1958,NULL),(441548,'Masanobu Katsumura',1963,NULL),(441554,'Chiho Katsura',NULL,2020),(441574,'Yôko Katsuragi',1930,2007),(441588,'Nicky Katt',1970,NULL),(441592,'Chris Kattan',1970,NULL),(441656,'Claudia Katz',NULL,NULL),(441711,'Fred Katz',1919,2013),(441713,'Gail Katz',NULL,NULL),(441717,'Virginia Katz',NULL,NULL),(441718,'Gloria Katz',1942,2018),(441735,'Jason Katz',NULL,NULL),(441747,'Jonathan Katz',1946,NULL),(441750,'Jordan Katz',1960,NULL),(441792,'Martin Katz',1961,NULL),(441794,'Marty Katz',NULL,NULL),(441814,'Omri Katz',1976,NULL),(441815,'Pamela Katz',1958,NULL),(441819,'Peter Katz',NULL,NULL),(441828,'Robert Katz',1933,2010),(441830,'Robert Katz',NULL,NULL),(441831,'Robert Katz',1943,2022),(441834,'Robin Katz',NULL,NULL),(441839,'Ross Katz',1971,NULL),(441863,'Stephen M. Katz',NULL,NULL),(441914,'Lee H. Katzin',1935,2002),(441925,'Gabriel Katzka',1931,1990),(441947,'Sam Katzman',1901,1973),(441964,'Haruhiko Katô',1975,NULL),(441985,'Emilio Kauderer',1950,NULL),(442066,'Adam Kaufman',NULL,NULL),(442075,'Allan Kaufman',NULL,NULL),(442079,'Amy Kaufman',NULL,NULL),(442100,'Boris Kaufman',1906,1980),(442109,'Charlie Kaufman',1958,NULL),(442124,'David M. Kaufman',NULL,NULL),(442151,'George S. Kaufman',1889,1961),(442190,'Ken Kaufman',1963,NULL),(442207,'Lloyd Kaufman',1945,NULL),(442227,'Mikhail Kaufman',1897,1980),(442228,'Millard Kaufman',1917,2009),(442239,'Peter Kaufman',1960,NULL),(442241,'Philip Kaufman',1936,NULL),(442253,'Sam Kaufman',1885,1972),(442304,'Christine Kaufmann',1945,2017),(442324,'Judith Kaufmann',1962,NULL),(442337,'Morten Kaufmann',1963,NULL),(442381,'Tero Kaukomaa',NULL,NULL),(442436,'Lo Kauppi',1970,NULL),(442445,'Ramanjeet Kaur',NULL,NULL),(442454,'Aki Kaurismäki',1957,NULL),(442455,'Mika Kaurismäki',1955,NULL),(442456,'Gina Kaus',1894,1985),(442512,'Caroline Kava',1949,NULL),(442551,'H.T. Kavanagh',1876,1933),(442606,'Kevin Kavanaugh',NULL,NULL),(442622,'Rick Kavanian',1971,NULL),(442708,'Momoko Kôchi',1932,1998),(442709,'Tamio Kawaji',1938,2018),(442725,'Angayuqaq Oscar Kawagley',1934,2011),(442736,'Matsutarô Kawaguchi',1899,1985),(442766,'Kenji Kawai',1957,NULL),(442777,'Shin\'ya Kawai',NULL,NULL),(442786,'Jennifer Kawaja',NULL,NULL),(442808,'Tomoko Kawakami',1970,2011),(442900,'Tomoko Kawasaki',NULL,NULL),(442904,'Hiroyuki Kawase',1964,NULL),(442905,'Naomi Kawase',1969,NULL),(442952,'Taro Kawazu',NULL,NULL),(443000,'Beatrice Kay',1907,1986),(443004,'Billy Kay',1985,NULL),(443033,'Edward J. Kay',1898,1973),(443056,'Gordon Kay',1916,2005),(443153,'Peter Kay',1973,NULL),(443181,'Stephen Kay',1963,NULL),(443191,'Sylvia Kay',1936,2019),(443227,'Shigeru Kayama',1904,1975),(443232,'Yûzô Kayama',1937,NULL),(443238,'Narumi Kayashima',1942,NULL),(443252,'Alexi Kaye Campbell',NULL,NULL),(443268,'Caren Kaye',1951,NULL),(443286,'David Kaye',1964,NULL),(443366,'Nora Kaye',1920,1987),(443411,'Tony Kaye',1952,NULL),(443476,'Susanna Kaysen',1948,NULL),(443482,'Charles Kayser',1878,1966),(443505,'Clay Kaytis',1973,NULL),(443509,'Iemasa Kayumi',1932,2014),(443562,'Shunsuke Kazama',1983,NULL),(443577,'Lainie Kazan',1942,NULL),(443582,'Nicholas Kazan',1945,NULL),(443599,'Howard G. Kazanjian',1942,NULL),(443611,'Nikos Kazantzakis',1883,1957),(443613,'Stavros Kazantzidis',1964,NULL),(443706,'Stephen Kazmierski',NULL,NULL),(443730,'Tim Kazurinsky',1950,NULL),(443733,'Kazuyuki Sogabe',1948,2006),(443737,'Behzad Kazzazi',NULL,NULL),(443829,'Basil Keane',NULL,NULL),(443832,'Brian Keane',NULL,NULL),(443855,'Glen Keane',1954,NULL),(443856,'James Keane',1952,NULL),(443866,'John E. Keane',1952,NULL),(443891,'Robert Emmett Keane',1883,1981),(443911,'Stephen Kearin',1962,NULL),(443985,'Billy Kearns',1923,1992),(444096,'David Keating',1960,NULL),(444113,'Johnny Keating',1927,2015),(444122,'Larry Keating',1899,1963),(444156,'Zoe Keating',NULL,NULL),(444169,'Camille Keaton',1947,NULL),(444172,'Joe Keaton',1867,1946),(444196,'Richard Keats',1964,NULL),(444198,'Steven Keats',1945,1994),(444223,'Arielle Kebbel',1985,NULL),(444244,'Abdellatif Kechiche',1960,NULL),(444248,'Salim Kechiouche',1979,NULL),(444284,'László Kecskés',1929,2011),(444294,'Richard Keddie',NULL,NULL),(444321,'Lila Kedrova',1918,2000),(444324,'Maged El-Kidwani',1967,NULL),(444328,'Dorota Kedzierzawska',1957,NULL),(444476,'Howard Keel',1919,2004),(444481,'John A. Keel',1930,2009),(444517,'Ken Keeler',1961,NULL),(444528,'Ruby Keeler',1909,1993),(444562,'Greg Keelor',1954,NULL),(444575,'Colette Keen',NULL,NULL),(444584,'Geoffrey Keen',1916,2005),(444621,'Monica Keena',1979,NULL),(444653,'Joe Keenan',1958,NULL),(444687,'Will Keenan',NULL,NULL),(444696,'Mildred Wirt Benson',1905,2002),(444706,'Day Keene',1904,1969),(444740,'Tom Keene',1896,1963),(444752,'Elizabeth Keener',1966,NULL),(444786,'Tom Kenny',1962,NULL),(444832,'Matt Keeslar',1972,NULL),(444870,'Jon Keeyes',1969,NULL),(444916,'Karen Kehela Sherwood',1965,NULL),(444955,'Jack Kehoe',1934,2020),(445033,'William Keighley',1889,1984),(445087,'Garrison Keillor',1942,NULL),(445102,'Claire Keim',1975,NULL),(445123,'Eberhard Keindorff',1902,1975),(445129,'Alexandra-Therese Keining',NULL,NULL),(445139,'Andrew Keir',1926,1997),(445140,'Andy Keir',NULL,NULL),(445160,'Ian Keiser',NULL,NULL),(445185,'Balla Moussa Keita',NULL,NULL),(445246,'Ian Keith',1899,1960),(445276,'Michael Keith',NULL,NULL),(445290,'Robert Keith',1890,1966),(445389,'Peter Kelamis',1967,NULL),(445471,'Michael Kelk',NULL,NULL),(445484,'Joseph Kell',1960,NULL),(445496,'Laura A. Kellam',NULL,NULL),(445502,'Clarence Budington Kelland',1881,1964),(445523,'Cecil Kellaway',1890,1973),(445628,'Frank P. Keller',1913,1977),(445650,'Harry Keller',1913,1987),(445656,'Helen Keller',1880,1968),(445657,'Hiram Keller',1944,1997),(445669,'Jason Keller',1968,NULL),(445681,'Joel Keller',NULL,NULL),(445694,'Ken H. Keller',NULL,NULL),(445715,'Marthe Keller',1945,NULL),(445766,'Sheldon Keller',1923,2008),(445903,'Elijah Kelley',1986,NULL),(445934,'John T. Kelley',1921,1972),(445992,'Sheila Kelley',1963,NULL),(446009,'W. Wallace Kelley',1902,1982),(446015,'William Kelley',1929,2003),(446060,'Barnet Kellman',NULL,NULL),(446124,'Marjorie Kellogg',1922,2005),(446129,'Ray Kellogg',1905,1976),(446132,'Virginia Kellogg',1907,1981),(446168,'Alexandra Kelly',1970,NULL),(446189,'Anthony Paul Kelly',1897,1932),(446210,'Bill Kelly',NULL,NULL),(446298,'Daniel Hugh Kelly',1952,NULL),(446303,'David Kelly',1929,2012),(446308,'David P. Kelly',NULL,NULL),(446314,'David Patrick Kelly',1951,NULL),(446319,'Dean Lennox Kelly',1975,NULL),(446409,'Glen Kelly',NULL,NULL),(446465,'Jean Louisa Kelly',1972,NULL),(446485,'Jim Kelly',1946,2013),(446668,'Michael Kelly',NULL,NULL),(446672,'Michael Kelly',1969,NULL),(446702,'Moira Kelly',1968,NULL),(446715,'Nancy Kelly',1921,1995),(446746,'Pat Kelly',NULL,NULL),(446761,'Patrick Smith Kelly',NULL,NULL),(446763,'Patsy Kelly',1910,1981),(446769,'Paul Kelly',1899,1956),(446805,'RaéVen Kelly',1985,NULL),(446819,'Richard Kelly',1975,NULL),(446867,'Shane F. Kelly',NULL,NULL),(446932,'Trudy Kelly',NULL,NULL),(446935,'Victoria Kelly',1973,NULL),(447071,'Edmond Kelso',1910,1969),(447190,'John Kemeny',1925,2012),(447256,'Anthony Kemp',1954,NULL),(447260,'Barry Kemp',1949,NULL),(447290,'Gary Kemp',1959,NULL),(447305,'Jeremy Kemp',1935,2019),(447312,'Julian Kemp',NULL,NULL),(447314,'Júlíus Kemp',1967,NULL),(447396,'Arthur Kempel',1945,2004),(447425,'Steven Kemper',NULL,NULL),(447469,'Ralph Kemplen',1912,2004),(447499,'Rachel Kempson',1910,2003),(447504,'Victor Kempster',NULL,NULL),(447515,'Josef Kemr',1922,1995),(447583,'David Kendall',1957,NULL),(447597,'Henry Kendall',1897,1962),(447648,'Suzy Kendall',1937,NULL),(447652,'Tony Kendall',1936,2009),(447695,'Anna Kendrick',1985,NULL),(447745,'Thomas Keneally',1935,NULL),(447775,'Leah Koenig',1929,NULL),(447785,'Ella Kenion',1969,NULL),(447807,'Ruth Kenley-Letts',NULL,NULL),(447838,'Larry Kennar',NULL,NULL),(447913,'Arthur Kennedy',1914,1990),(447944,'Burt Kennedy',1922,2001),(447945,'Byron Kennedy',1949,1983),(447984,'Darren Kennedy',NULL,NULL),(448033,'Florynce Kennedy',1916,2000),(448088,'Jane Kennedy',1964,NULL),(448163,'Kristina Kennedy',NULL,NULL),(448188,'Ludovic Kennedy',1919,2009),(448194,'M.L. Kennedy',NULL,NULL),(448204,'Maria Doyle Kennedy',1964,NULL),(448208,'Mark Kennedy',NULL,NULL),(448224,'Merna Kennedy',1908,1944),(448256,'Neil Kennedy',NULL,NULL),(448301,'Robert Kennedy',NULL,NULL),(448388,'William P. Kennedy',1936,2020),(448392,'Troy Kennedy Martin',1932,2009),(448457,'Bill Kenney',NULL,NULL),(448469,'Douglas Kenney',1946,1980),(448483,'June Kenney',1933,2021),(448568,'Francis Kenny',NULL,NULL),(448655,'April Kent',1935,1998),(448661,'Barbara Kent',1907,2011),(448682,'Charles Kent',1852,1923),(448712,'Diana Kent',NULL,NULL),(448757,'James Kent',NULL,NULL),(448768,'Jennifer Kent',1969,NULL),(448809,'Mollie Kent',NULL,NULL),(448839,'Robert E. Kent',1911,1984),(448843,'Rolfe Kent',1963,NULL),(448867,'Ted J. Kent',1901,1986),(448895,'Tommy Kenter',1950,NULL),(448900,'Chris Kentis',NULL,NULL),(448915,'Erle C. Kenton',1896,1980),(448939,'Allan Kenward',1907,2001),(448953,'Duncan Kenworthy',1949,NULL),(448981,'Charles Kenyon',1880,1961),(448985,'Curtis Kenyon',1912,2003),(449038,'Alexia Keogh',NULL,NULL),(449087,'Paul Koestner',NULL,NULL),(449129,'Brad Koepenick',1961,NULL),(449190,'Frank Keraudren',NULL,NULL),(449191,'Jean Keraudy',1920,2001),(449197,'Samia Kerbash',NULL,NULL),(449222,'Bill Kerby',NULL,NULL),(449255,'Jean-Marc Kerdelhué',1953,2013),(449276,'Éva Kerekes',1966,NULL),(449316,'Etgar Keret',1967,NULL),(449323,'Yannick Kergoat',NULL,NULL),(449394,'Liliane de Kermadec',1928,2020),(449404,'Robert Kerman',1947,2018),(449431,'András Kern',1948,NULL),(449444,'David Kern',NULL,NULL),(449466,'Joey Kern',1976,NULL),(449493,'Robert Kern',1885,1972),(449549,'Jordan Kerner',NULL,NULL),(449571,'Jennifer Kernke',NULL,NULL),(449576,'Sarah Kernochan',1947,NULL),(449624,'Nina V. Kerova',NULL,NULL),(449625,'Zora Kerova',1950,NULL),(449652,'Bill Kerr',1922,2014),(449734,'John Kerr',1931,2013),(449749,'Ken Kerr',NULL,NULL),(449820,'William Kerr',NULL,NULL),(449863,'Justin Kerrigan',1974,NULL),(449908,'Norman Kerry',1894,1956),(449969,'Noreen Kershaw',1950,NULL),(449984,'Irvin Kershner',1923,2010),(450005,'Myron Kerstein',NULL,NULL),(450116,'Brian Kerwin',1949,NULL),(450123,'James Kerwin',NULL,NULL),(450125,'Jill Kerwin',NULL,NULL),(450181,'Ken Kesey',1935,2001),(450193,'Aleen Keshishian',1968,NULL),(450194,'Alek Keshishian',1964,NULL),(450212,'Heikki Keskinen',NULL,NULL),(450262,'Joseph Kessel',1898,1979),(450267,'Robert Kessel',NULL,NULL),(450269,'Sam Kessel',1989,NULL),(450275,'Josh Kesselman',NULL,NULL),(450277,'Wendy Kesselman',1940,NULL),(450279,'Joseph Kesselring',1902,1967),(450302,'Andrea Kessler',NULL,NULL),(450347,'Jordan Kessler',NULL,NULL),(450375,'Quin Kessler',NULL,NULL),(450387,'Stephen Kessler',NULL,NULL),(450405,'David Kesson',1898,1967),(450414,'Sara Kestelman',1944,NULL),(450543,'Larry Ketron',NULL,NULL),(450646,'Kwok-Man Keung',NULL,NULL),(450670,'Scott Kevan',1972,NULL),(450774,'Ted Key',1912,2008),(450797,'Daniel Keyes',1927,2014),(450810,'Evelyn Keyes',1916,2008),(450862,'Anthony Nelson Keys',1911,1985),(450961,'Tony Kgoroge',NULL,NULL),(450975,'Konstantin Khabenskiy',1972,NULL),(451006,'Chirine El Khadem',NULL,NULL),(451045,'Sarita Khajuria',1974,2003),(451076,'Franck Khalfoun',NULL,NULL),(451122,'Chulpan Khamatova',1975,NULL),(451148,'Aamir Khan',1965,NULL),(451170,'Arbaaz Khan',1967,NULL),(451215,'Gauri Khan',1970,NULL),(451234,'Irrfan Khan',1967,2020),(451274,'Nahnatchka Khan',1973,NULL),(451307,'Saif Ali Khan',1970,NULL),(451321,'Shah Rukh Khan',1965,NULL),(451326,'Sohail Khan',1969,NULL),(451342,'Yaseen Khan',NULL,NULL),(451351,'Ayub Khan-Din',1961,NULL),(451371,'Mina Mohammad Khani',NULL,NULL),(451376,'Arsinée Khanjian',1958,NULL),(451396,'Vinod Khanna',1946,2017),(451541,'Khayyam',1927,2019),(451544,'Malek Jahan Khazai',1949,NULL),(451600,'Anupam Kher',1955,NULL),(451601,'Kirron Kher',1952,NULL),(451606,'Mostafa Kherghehpoosh',NULL,NULL),(451689,'Edward Khmara',NULL,NULL),(451787,'Darius Khondji',1955,NULL),(451799,'Eric Khoo',1965,NULL),(451884,'Callie Khouri',1957,NULL),(452009,'Leleti Khumalo',1970,NULL),(452045,'Marlen Khutsiev',1925,2019),(452050,'Vasili Khvatov',NULL,NULL),(452102,'Abbas Kiarostami',1940,2016),(452103,'Bahman Kiarostami',1978,NULL),(452123,'Gary B. Kibbe',1941,2020),(452128,'Guy Kibbee',1882,1956),(452153,'Morgan Kibby',NULL,NULL),(452161,'Sandrine Kiberlain',1968,NULL),(452217,'Tomoko Kida',NULL,NULL),(452235,'David Kidd',NULL,NULL),(452288,'Margot Kidder',1948,2018),(452305,'Ric Kidney',NULL,NULL),(452319,'Beeban Kidron',1961,NULL),(452607,'Fritz Kiersch',1951,NULL),(452632,'Ellwood Kieser',1929,2000),(452654,'Jan Kiesser',NULL,NULL),(452684,'Kaleena Kiff',1974,NULL),(452748,'Rya Kihlstedt',1970,NULL),(452753,'Albert Kihn',1932,1974),(452817,'Kirin Kiki',1943,2018),(452832,'Gilbert Kikoïne',NULL,NULL),(452853,'Shunsuke Kikuchi',1931,2021),(452860,'Rinko Kikuchi',1981,NULL),(452878,'Ryûzô Kikushima',1914,1989),(452929,'Craig Kilborn',1962,NULL),(452932,'Fanny Kilbourne',1890,1961),(452953,'Terry Kilburn',1926,NULL),(452963,'Q\'orianka Kilcher',1990,NULL),(453006,'Richard Kiley',1922,1999),(453083,'Bakhyt Kilibayev',1958,NULL),(453091,'Jon Kilik',1956,NULL),(453198,'Jack Killifer',1898,1956),(453248,'Buzz Kilman',1944,NULL),(453270,'Clare Kilner',NULL,NULL),(453273,'Kevin Kilner',1958,NULL),(453311,'Tom Kilpatrick',1898,1962),(453344,'Lilly Kilvert',1950,NULL),(453360,'Amy S. Kim',1973,NULL),(453385,'Kim Chang-wan',1954,NULL),(453442,'Eun-Jeong Kim',1967,NULL),(453447,'Evan C. Kim',1953,NULL),(453448,'Kim Kap-su',1957,NULL),(453469,'Hong-jip Kim',NULL,NULL),(453472,'Kim Hee-ra',NULL,NULL),(453477,'Hyun-seok Kim',1972,NULL),(453479,'Hyun Kim',NULL,NULL),(453489,'Ill-Young Kim',1973,NULL),(453492,'Jacqueline Kim',NULL,NULL),(453518,'Jee-woon Kim',1964,NULL),(453574,'Ki-chul Kim',NULL,NULL),(453579,'Kim Ki-young',1919,1998),(453589,'Gyu-ri Kim',1979,NULL),(453605,'Kim Mi-kyung',1960,NULL),(453609,'Min-Jung Kim',1982,NULL),(453612,'Gyu-ri Kim',1979,NULL),(453617,'Moo-Ryoung Kim',NULL,NULL),(453705,'Kim Tae-woo',1971,NULL),(453707,'Kim Tae-yong',1969,NULL),(453747,'Yu-seok Kim',1967,NULL),(453808,'Jeffrey L. Kimball',1943,NULL),(453832,'Ward Kimball',1914,2002),(453885,'Lawrence Kimble',1904,1977),(453918,'John Kimbrough',NULL,NULL),(453981,'Adam Kimmel',1960,NULL),(453987,'Bruce Kimmel',1947,NULL),(453994,'Jimmy Kimmel',1967,NULL),(454004,'Sidney Kimmel',NULL,NULL),(454011,'Dana Kimmell',1959,NULL),(454028,'Anthony Kimmins',1901,1964),(454064,'Rachel Kimsey',1978,NULL),(454118,'Takeo Kimura',1918,2010),(454119,'Takeshi Kimura',1912,1988),(454120,'Takuya Kimura',1972,NULL),(454123,'Toshie Kimura',NULL,NULL),(454128,'Yoshino Kimura',1976,NULL),(454236,'Richard Kind',1956,NULL),(454242,'Todd King',NULL,NULL),(454306,'Andy Kindler',1956,NULL),(454349,'Kevin Kiner',1958,NULL),(454371,'King Edward VII',1841,1910),(454415,'Adrienne King',1955,NULL),(454511,'John Bradford King',1967,NULL),(454521,'Brian King',NULL,NULL),(454530,'Bruce A. King',NULL,NULL),(454535,'Burton L. King',1877,1944),(454558,'Charles King',1889,1944),(454569,'Charmion King',1925,2007),(454573,'Chloe King',1966,NULL),(454646,'Dell King',NULL,NULL),(454716,'Frank King',1913,1989),(454752,'Graham King',1961,NULL),(454771,'Henry King',1886,1982),(454783,'I. Marlene King',1962,NULL),(454809,'Jaime King',1979,NULL),(454872,'Joe Hill',1972,NULL),(454887,'John King',NULL,NULL),(454908,'Jonathan King',NULL,NULL),(454979,'Larry L. King',1929,2012),(455010,'Loretta King',1917,2007),(455028,'Mabel King',1932,1999),(455061,'Maurice King',1914,1977),(455066,'Meredith King',NULL,NULL),(455078,'Michael Patrick King',1954,NULL),(455098,'Ta Chiang Wu',NULL,NULL),(455133,'Perry King',1948,NULL),(455207,'Robert King',NULL,NULL),(455214,'Robert Lee King',NULL,NULL),(455234,'Rory King',NULL,NULL),(455244,'Rufus King',1893,1966),(455253,'Sandy King',1952,NULL),(455271,'Sherwood King',1904,1981),(455394,'Zalman King',1942,2012),(455397,'Magdalen King-Hall',1904,1971),(455404,'Dick King-Smith',1922,2011),(455497,'Robin Kingsland',NULL,NULL),(455510,'Dorothy Kingsley',1909,1997),(455521,'Gershon Kingsley',1922,2019),(455535,'Martin Kingsley',1925,1997),(455659,'Chad Crawford Kinkle',NULL,NULL),(455663,'Laurence Kinlan',1983,NULL),(455687,'Melanie Kinnaman',1953,NULL),(455688,'Melinda Kinnaman',1971,NULL),(455702,'Roy Kinnear',1934,1988),(455741,'Jack Kinney',1909,1992),(455767,'Terry Kinney',1954,NULL),(455780,'Tom Kinninmont',NULL,NULL),(455785,'Ronald Kinnoch',1910,1995),(455836,'Chûji Kinoshita',1916,2018),(455839,'Keisuke Kinoshita',1912,1998),(455845,'Robert Kinoshita',1914,2014),(455875,'W.P. Kinsella',1935,2016),(456017,'Rudyard Kipling',1865,1936),(456025,'Leonid Kipnis',1899,1968),(456077,'Güven Kiraç',1968,NULL),(456124,'Bruno Kirby',1949,2006),(456130,'Christopher Kirby',NULL,NULL),(456158,'Jack Kirby',1917,1994),(456231,'Terrence Kirby',NULL,NULL),(456286,'Otto Kirchhoff',1954,NULL),(456353,'George Kirgo',1926,2004),(456417,'Harumi Kiritachi',1942,NULL),(456487,'Richard P. Powell',1908,1999),(456509,'Lee Kirk',NULL,NULL),(456533,'Phyllis Kirk',1927,2006),(456565,'Tommy Kirk',1941,2021),(456615,'Kathleen Kirkham',1895,1961),(456631,'Boyd Kirkland',1950,2011),(456646,'Jack Kirkland',1900,1969),(456712,'David Paul Kirkpatrick',NULL,NULL),(456725,'Jo Kirkpatrick',NULL,NULL),(456732,'Karey Kirkpatrick',1964,NULL),(456788,'James Kirkwood Jr.',1924,1989),(456801,'Gene Kirkwood',1945,NULL),(456859,'Philipp Kirsamer',NULL,NULL),(456929,'Jeff Kirschenbaum',NULL,NULL),(456943,'Alexis Kirschner',1980,NULL),(456946,'David Kirschner',1955,NULL),(456974,'Justin Krish',NULL,NULL),(456997,'Jacques Kirsner',NULL,NULL),(457016,'Lincoln Kirstein',1907,1996),(457062,'Dervla Kirwan',1971,NULL),(457090,'Ken Kirzinger',1959,NULL),(457213,'Yûji Kishi',1970,NULL),(457219,'Kyôko Kishida',1930,2006),(457223,'Shin Kishida',1939,1982),(457229,'Kayoko Kishimoto',1960,NULL),(457443,'Thomas Kist',NULL,NULL),(457483,'Akemi Kita',1940,NULL),(457495,'Takeo Kita',NULL,NULL),(457565,'Ryûhei Kitamura',1969,NULL),(457592,'Yoshinori Kitase',NULL,NULL),(457598,'David Kitay',1961,NULL),(457609,'Akira Kitazaki',NULL,NULL),(457655,'Michael Kitchen',1948,NULL),(457715,'A. Kitman Ho',1950,NULL),(457725,'Martin Kitrosser',1949,NULL),(457736,'Edward Kitsis',NULL,NULL),(457738,'Craig Kitson',NULL,NULL),(457755,'Eartha Kitt',1927,2008),(457757,'Sam Kitt',NULL,NULL),(457886,'Alar Kivilo',1953,NULL),(457954,'Sôji Kiyokawa',1903,1984),(457970,'R.J. Kizer',1952,NULL),(457999,'Kristbjörg Kjeld',1935,NULL),(458033,'Alf Kjellin',1920,1988),(458034,'Kristina Kjellin',1970,NULL),(458045,'Peder Kjellsby',NULL,NULL),(458064,'Bodil Kjer',1917,2003),(458126,'Sergio Montanari',1937,NULL),(458228,'Robert Klane',1941,2023),(458251,'Cédric Klapisch',1961,NULL),(458274,'Nick Klar',NULL,NULL),(458302,'Eléonore Klarwein',1963,NULL),(458312,'Arlene Klasky',1949,NULL),(458318,'David Klass',NULL,NULL),(458322,'Judy Klass',NULL,NULL),(458325,'Myleene Klass',1978,NULL),(458430,'Rainer Klausmann',1949,NULL),(458439,'Howard Klausner',1960,NULL),(458441,'Josh Klausner',NULL,NULL),(458460,'Burghart Klaußner',1949,NULL),(458461,'Andrew Klavan',1954,NULL),(458482,'David Klawans',NULL,NULL),(458566,'Jeff Kleeman',NULL,NULL),(458764,'Greg Klein',NULL,NULL),(458782,'Howard Klein',NULL,NULL),(458825,'Jody Klein',1963,NULL),(458826,'Joe Klein',1946,NULL),(458830,'John Klein',NULL,NULL),(458860,'Larry Klein',NULL,NULL),(458884,'Marc Klein',NULL,NULL),(458964,'Saar Klein',1967,NULL),(459017,'William Klein',1926,2022),(459030,'Rudolf Klein-Rogge',1885,1955),(459032,'Willy A. Kleinau',1907,1957),(459036,'Philip K. Kleinbart',NULL,NULL),(459038,'Alan Kleinberg',NULL,NULL),(459067,'Harry Kleiner',1916,2007),(459170,'Randal Kleiser',1946,NULL),(459216,'Otto Klement',1891,1983),(459255,'John Klempner',1898,1972),(459268,'Walter Klenhard',NULL,NULL),(459299,'Ladislav Klepal',1937,2002),(459517,'Johnny Klimek',1962,NULL),(459529,'Viktor Klimenko',1942,NULL),(459552,'Elem Klimov',1933,2003),(459660,'Richard H. Kline',1926,2018),(459663,'Robert Kline',NULL,NULL),(459706,'Heidi Kling',1962,NULL),(459771,'Michael Klinger',1920,1989),(459806,'Lynzee Klingman',1943,NULL),(459852,'Jason Kliot',1963,NULL),(459907,'Miljen Kreka Kljakovic',1950,NULL),(460008,'Karen Klopfenstein',1971,NULL),(460057,'Harald Kloser',1956,NULL),(460058,'Edward Klosinski',1943,2008),(460071,'Thomas Kloss',1956,NULL),(460074,'Pierre Klossowski',1905,2001),(460101,'Anne Klotz',NULL,NULL),(460109,'Georges Klotz',1926,2015),(460114,'Joe Klotz',NULL,NULL),(460139,'Jane Klove',NULL,NULL),(460141,'Steve Kloves',1960,NULL),(460146,'Jorgen Klubien',NULL,NULL),(460190,'P.F. Kluge',1942,NULL),(460200,'Jeffrey Kluger',NULL,NULL),(460201,'Martin Kluger',1948,2021),(460206,'Brian Klugman',1975,NULL),(460254,'Jan Klusák',1934,NULL),(460338,'Tibor Klöpfler',1953,NULL),(460451,'Catherine Knapman',NULL,NULL),(460454,'Steve Knapman',NULL,NULL),(460458,'Ann Austen',NULL,NULL),(460475,'Douglas Knapp',1949,2020),(460578,'Herbert Knaup',1956,NULL),(460600,'Nigel Kneale',1922,2006),(460632,'Allan Knee',NULL,NULL),(460651,'Hildegard Knef',1925,2002),(460667,'Seymour Kneitel',1908,1964),(460694,'Robert Knepper',1959,NULL),(460710,'Rebecca Kneubuhl',NULL,NULL),(460711,'John Kneubuhl',1920,1992),(460770,'James Kniest',NULL,NULL),(460795,'Andrew Knight',NULL,NULL),(460846,'Christopher W. Knight',NULL,NULL),(460874,'Esmond Knight',1906,1987),(461025,'Nic Knight',1981,NULL),(461070,'Sandra Knight',1939,NULL),(461072,'Sarah Knight',NULL,NULL),(461095,'Ted Knight',1923,1986),(461129,'Wyatt Knight',1955,2011),(461136,'Keira Knightley',1985,NULL),(461210,'Roman Knizka',1970,NULL),(461306,'John Knoll',1962,NULL),(461324,'Ohad Knoller',1976,NULL),(461341,'Patricia Louisianna Knop',1940,2019),(461348,'Edwin H. Knopf',1899,1981),(461360,'Mark Knopfler',1949,NULL),(461409,'Andrew Knott',1979,NULL),(461425,'Frederick Knott',1916,2002),(461438,'Lydia Knott',1866,1955),(461446,'Robert Knott',NULL,NULL),(461455,'Don Knotts',1924,2006),(461486,'Nicholas D. Knowland',1941,NULL),(461497,'Bernard Knowles',1900,1975),(461498,'Beyoncé',1981,NULL),(461533,'John Knowles',1926,2001),(461549,'Patric Knowles',1911,1995),(461592,'Adam Knox',NULL,NULL),(461594,'Alexander Knox',1907,1995),(461615,'Doris Nolan',1916,1998),(461694,'Kim Knuckey',NULL,NULL),(461743,'Poul Knudsen',1889,1974),(461746,'Sidse Babett Knudsen',NULL,NULL),(461772,'Frederic Knudtson',1906,1964),(461774,'Michael N. Knue',NULL,NULL),(461830,'Mårten Knutsson',1972,NULL),(461835,'Torkel Knutsson',1960,NULL),(461862,'Aleksandr Knyazhinskiy',1936,1996),(461887,'Chiu-Lam Ko',NULL,NULL),(461905,'Im-Pyo Ko',NULL,NULL),(461914,'Mun-kai Ko',NULL,NULL),(461922,'Sing-Pui O',NULL,NULL),(461981,'Ai Kobayashi',1973,NULL),(461983,'Akiji Kobayashi',1930,1996),(461990,'Asei Kobayashi',1932,2021),(462013,'Keiju Kobayashi',1923,2010),(462017,'Kiyoshi Kobayashi',1933,2022),(462030,'Masaki Kobayashi',1916,1996),(462033,'Masao Kobayashi',NULL,NULL),(462042,'Nenji Kobayashi',1943,NULL),(462050,'Satomi Kobayashi',1965,NULL),(462058,'Shinichiro Kobayashi',NULL,NULL),(462064,'Takeshi Kobayashi',1959,NULL),(462073,'Toshiko Kobayashi',1932,2016),(462076,'Tsuneo Kobayashi',NULL,NULL),(462085,'Yukiko Kobayashi',1946,NULL),(462111,'Arthur Kober',1900,1975),(462164,'Flip Kobler',NULL,NULL),(462181,'Akio Kobori',NULL,NULL),(462193,'Richard Kobritz',1939,NULL),(462242,'Hawk Koch',1945,NULL),(462288,'Douglas Koch',NULL,NULL),(462319,'Herman Koch',1953,NULL),(462321,'Howard Koch',1901,1995),(462322,'Howard W. Koch',1916,2001),(462347,'Karin Koch',NULL,NULL),(462367,'Marianne Koch',1931,NULL),(462370,'Mark W. Koch',NULL,NULL),(462407,'Sebastian Koch',1962,NULL),(462525,'Anya Kochoff',1969,NULL),(462673,'Boris Kodjoe',1973,NULL),(462712,'David Koechner',1962,NULL),(462732,'Bonnie Koehler',NULL,NULL),(462837,'Laird Koenig',1927,2023),(462849,'Raymond Koenig',NULL,NULL),(462867,'Neil Koenigsberg',1942,NULL),(462895,'David Koepp',1963,NULL),(462926,'Florian Koerner von Gustorf',1963,NULL),(463025,'Pamela Koffler',NULL,NULL),(463060,'James Koford',NULL,NULL),(463124,'Jay Kogen',1963,NULL),(463130,'Imogen Kogge',1957,NULL),(463188,'Kenji Kohashi',1979,NULL),(463201,'Fumiyo Kohinata',1954,NULL),(463279,'Jon Kohler',NULL,NULL),(463305,'Wolfgang Kohlhaase',1931,2022),(463316,'Kunal Kohli',1970,NULL),(463317,'Madan Mohan',1924,1975),(463325,'Malcolm Kohll',1953,NULL),(463334,'Fred Kohlmar',1905,1969),(463359,'Abby Kohn',1971,NULL),(463405,'Nate Kohn',NULL,NULL),(463410,'Robin Kohn',NULL,NULL),(463430,'Frederick Kohner',1905,1986),(463435,'Susan Kohner',1936,NULL),(463440,'Erich Kröhnke',1907,NULL),(463473,'Greg Kohs',NULL,NULL),(463492,'Jean-Pierre Kohut-Svelko',1946,NULL),(463506,'Takashi Koide',NULL,NULL),(463521,'Kazuo Koike',1936,2019),(463582,'Hiroyoshi Koiwai',NULL,NULL),(463589,'Hajime Koizumi',NULL,NULL),(463590,'Hiroshi Koizumi',1926,2015),(463592,'Kyôko Koizumi',1966,NULL),(463618,'Goseki Kojima',1928,2000),(463649,'Nikola Kojo',1967,NULL),(463655,'Vasili Kojucharov',NULL,NULL),(463674,'Vincent Kok',1965,NULL),(463714,'Kenneth Kokin',NULL,NULL),(463814,'Aya Kokumai',1971,NULL),(463828,'Kevin Kolack',1969,NULL),(463844,'Evzen Kolar',1950,2017),(464115,'Eran Kolirin',1973,NULL),(464170,'Reinhard Kolldehoff',1914,1995),(464286,'Eva Kolodner',NULL,NULL),(464417,'Róbert Koltai',1943,NULL),(464522,'Jacek Koman',1956,NULL),(464526,'Stephan Komandarev',1966,NULL),(464548,'Todd Komarnicki',NULL,NULL),(464608,'Shigeru Komatsuzaki',NULL,NULL),(464767,'Manuel Komroff',1890,1974),(464804,'Satoshi Kon',1963,2010),(464810,'Chiaki Konaka',1961,NULL),(464846,'Andrey Konchalovskiy',1937,NULL),(464855,'Christoph Koncz',NULL,NULL),(464857,'Gábor Koncz',1938,NULL),(464911,'Yoshifumi Kondô',1950,1998),(464924,'Robbie Kondor',NULL,NULL),(464934,'Alexandra Kondracke',1970,NULL),(465067,'William Kong',NULL,NULL),(465160,'Katsuyuki Konishi',1973,NULL),(465199,'Lawrence Konner',NULL,NULL),(465253,'Kelli Konop',NULL,NULL),(465269,'Karin Konoval',1961,NULL),(465298,'Cathy Konrad',NULL,NULL),(465340,'Josi W. Konski',NULL,NULL),(465458,'Jeffrey Konvitz',1944,NULL),(465480,'Michael Konyves',NULL,NULL),(465484,'Chuck Konzelman',1960,NULL),(465503,'Louis Koo',1970,NULL),(465531,'Kôji Nanbara',1927,2001),(465532,'Kôji Takahashi',1935,NULL),(465580,'Edmond L. Koons',1933,2015),(465588,'Dean R. Koontz',1945,NULL),(465629,'Richard Kooris',1944,NULL),(465728,'Bernie Kopell',1933,NULL),(465740,'Eric Kopeloff',NULL,NULL),(465741,'Kevin Kopelow',1963,NULL),(465744,'Anne Kopelson',NULL,NULL),(465745,'Arnold Kopelson',1935,2018),(465789,'Karen Kopins',1958,NULL),(465792,'Arthur Kopit',1937,2021),(465800,'David Koplan',NULL,NULL),(465813,'Elysa Koplovitz Dutton',NULL,NULL),(465841,'Hermann Kopp',1954,NULL),(465859,'Rudolph G. Kopp',1887,1972),(465941,'Andreas Kopriva',NULL,NULL),(465959,'Michael Kopsa',1956,2022),(466099,'Alexander Korda',1893,1956),(466113,'Zoltan Korda',1895,1961),(466122,'Howard Korder',1957,NULL),(466153,'Hirokazu Koreeda',1962,NULL),(466175,'Steve Koren',NULL,NULL),(466181,'Rosanne Korenberg',NULL,NULL),(466190,'Marina Koreneva',NULL,NULL),(466216,'Rachel Koretsky',NULL,NULL),(466238,'György Korga',NULL,NULL),(466327,'Harvey Korman',1927,2008),(466345,'Mihály Kormos',NULL,NULL),(466349,'Baltasar Kormákur',1966,NULL),(466473,'Randy Kornfield',NULL,NULL),(466636,'Tommi Korpela',1968,NULL),(466776,'Fritz Kortner',1892,1970),(466805,'Mark Korven',NULL,NULL),(466851,'Abel Korzeniowski',1972,NULL),(466861,'Dina Korzun',1971,NULL),(466863,'Andrzej Korzynski',1940,2022),(466925,'Scott Kosar',1963,NULL),(466962,'Carl-Friedrich Koschnick',1949,NULL),(467017,'Dover Koshashvili',1966,NULL),(467083,'Geyer Kosinski',NULL,NULL),(467085,'Jerzy Kosinski',1933,1991),(467219,'Lukasz Kosmicki',1968,NULL),(467225,'Peter Kosminsky',1956,NULL),(467255,'Andrew A. Kosove',NULL,NULL),(467257,'Jasmine Kosovic',NULL,NULL),(467396,'Henry Koster',1905,1988),(467482,'John Kostmayer',NULL,NULL),(467558,'Jûrôta Kosugi',1957,NULL),(467569,'Kôsuke Mukai',1977,NULL),(467646,'Ted Kotcheff',1931,NULL),(467664,'Apollonia Kotero',1959,NULL),(467761,'Rein Kotov',1965,NULL),(467889,'William Kotzwinkle',1943,NULL),(467916,'Alexandre Koubitzky',NULL,1937),(467942,'Jim Kouf',1951,NULL),(467977,'Oren Koules',1961,NULL),(467978,'Stephanie Koules',NULL,NULL),(468003,'Hubert Koundé',1970,NULL),(468007,'Jan Kounen',1964,NULL),(468080,'Wendy Kout',NULL,NULL),(468130,'Sotigui Kouyaté',1936,2010),(468169,'Dusan Kovacevic',1948,NULL),(468222,'Nancy Kovack',1935,NULL),(468271,'Arkadiy Koval',1958,NULL),(468335,'Igor Kovalyov',1954,NULL),(468407,'Ron Kovic',1946,NULL),(468479,'István Kovács',1944,NULL),(468511,'Vanda Kovács',1971,NULL),(468549,'William R. Kowalchuk Jr.',1943,NULL),(468651,'Wladyslaw Kowalski',1936,2017),(468659,'Terra Vnesa',NULL,NULL),(468684,'Waldemar Kownacki',1949,NULL),(468708,'Mami Koyama',1955,NULL),(468710,'Nobuo Koyama',NULL,NULL),(468711,'Rikiya Koyama',1963,NULL),(468715,'Takao Koyama',1948,NULL),(468729,'Takehito Koyasu',1965,NULL),(468746,'Koyuki',1976,NULL),(468772,'Harley Jane Kozak',1957,NULL),(468957,'Linda Kozlowski',1958,NULL),(468997,'Michael Kozoll',NULL,NULL),(469050,'László Kozák',1913,1997),(469073,'Joseph Kpobly',NULL,NULL),(469083,'Maria Kraakman',1975,NULL),(469103,'Jeroen Krabbé',1944,NULL),(469104,'Tim Krabbé',1943,NULL),(469145,'Joe Kraemer',NULL,NULL),(469166,'John W. Krafft',1888,1958),(469234,'Robert Kraft',NULL,NULL),(469242,'William Kraft',1923,2022),(469254,'Thomas Krag',1959,NULL),(469313,'Julian Krainin',NULL,NULL),(469329,'Eduard Krajewski',NULL,NULL),(469380,'Ivan Král',1948,2020),(469384,'Robert J. Kral',1967,NULL),(469398,'Petar Kralj',1941,2011),(469434,'Saveliy Kramarov',1934,1995),(469552,'Jeffrey Kramer',1945,NULL),(469553,'Jeremy Kramer',NULL,NULL),(469571,'Josh Kramer',1956,NULL),(469594,'Larry Kramer',1935,2020),(469650,'Robert Kramer',1939,1999),(469656,'Rony Kramer',NULL,NULL),(469668,'Stacy Kramer',NULL,NULL),(469694,'Wayne Kramer',1965,NULL),(469725,'Josh Kramon',NULL,NULL),(469734,'Anthony Kramreither',1926,1993),(469765,'Jon Kranhouse',NULL,NULL),(469813,'Tony Krantz',NULL,NULL),(469823,'Fran Kranz',1981,NULL),(469877,'Yury Krasavin',1953,NULL),(469915,'Norman Krasna',1909,1984),(469929,'Russ Krasnoff',NULL,NULL),(469955,'Lemon Krasny',NULL,NULL),(470002,'Józef Ignacy Kraszewski',1812,1887),(470004,'László Krasznahorkai',1954,NULL),(470012,'Richard C. Kratina',1928,1999),(470081,'Lars Kraume',1973,NULL),(470118,'François Kraus',NULL,NULL),(470175,'Anja Kruse',1956,NULL),(470323,'Ron Krauss',1970,NULL),(470328,'Werner Krauss',1884,1959),(470338,'Danny Krausz',1958,NULL),(470347,'Stéphane Krausz',NULL,NULL),(470385,'Aleksey Kravchenko',1969,NULL),(470402,'Ilya Kravchunovsky',1898,1957),(470420,'Robert Kravis',NULL,NULL),(470699,'Gusti Kreissl',1904,1986),(470727,'Tomas Krejci',NULL,NULL),(470751,'Amy Krell',NULL,NULL),(470869,'Jan Krenz',1926,2020),(470886,'Magnus Krepper',1967,NULL),(470927,'Carl Kress',NULL,NULL),(470929,'Eric Kress',1962,NULL),(470932,'Harold F. Kress',1913,1999),(470941,'Nathan Kress',1992,NULL),(470981,'Thomas Kretschmann',1962,NULL),(471014,'Herbert Kretzmer',1925,2020),(471044,'Adam Kreutner',NULL,NULL),(471097,'Brad Krevoy',NULL,NULL),(471137,'Gretchen Krich',NULL,NULL),(471172,'James Krieg',NULL,NULL),(471217,'Stu Krieger',1952,NULL),(471247,'Helena Kriel',NULL,NULL),(471253,'Ulrike Kriener',1954,NULL),(471298,'Peter Krikes',NULL,NULL),(471317,'Hedy Krilla',1899,1984),(471341,'Milton Krims',1904,1988),(471386,'Steven Kriozere',1968,NULL),(471392,'Eric Kripke',1974,NULL),(471406,'Johannes Krisch',1966,NULL),(471420,'John Krish',1923,2016),(471487,'R. Krishnan',1909,1997),(471549,'Marta Kristen',1945,NULL),(471576,'Preben Kristensen',1953,NULL),(471597,'Jamie Kristian',1981,NULL),(471598,'Povl Kristian',1964,NULL),(471601,'Anders Baasmo',1976,NULL),(471610,'Henning Kristiansen',1927,2006),(471622,'Stian Kristiansen',NULL,NULL),(471636,'Charlie Kristiansson',NULL,NULL),(471639,'Leif Kristiansson',NULL,NULL),(471662,'Hrönn Kristinsdóttir',NULL,NULL),(471811,'Kim Krizan',1961,NULL),(471854,'Berry Kroeger',1912,1991),(471897,'Marty Krofft',1937,NULL),(471898,'Sid Krofft',1929,NULL),(471972,'Doug Krohn',1952,NULL),(472059,'Leonard C. Kroll',1933,2005),(472100,'Jerzy Kromolowski',1953,NULL),(472213,'Jeremy Joe Kronsberg',1937,NULL),(472234,'Margaretha Krook',1925,2001),(472256,'Scott Kroopf',NULL,NULL),(472323,'Barry Krost',1938,NULL),(472386,'Bill Kroyer',NULL,NULL),(472495,'Lisa Krueger',1961,NULL),(472518,'Tom Krueger',NULL,NULL),(472567,'Ehren Kruger',1972,NULL),(472590,'Jules Kruger',1891,1959),(472600,'Mark Kruger',NULL,NULL),(472603,'Otto Kruger',1885,1974),(472695,'Ester Krumbachová',1923,1996),(472756,'Mara Krupp',1935,NULL),(472761,'Mark Antony Krupa',NULL,NULL),(472762,'Olek Krupa',1947,NULL),(472816,'Jack Kruschen',1922,2002),(472855,'Line Kruse',1975,NULL),(472866,'Nancy Kruse',1965,NULL),(472891,'Michelle Krusiec',1974,NULL),(472989,'Stepan Krylov',1910,1998),(473041,'Nikolay Kryuchkov',1911,1994),(473134,'Hanns Kräly',1884,1950),(473228,'Hardy Krüger',1928,2022),(473252,'Mike Krüger',1951,NULL),(473314,'Feng Ku',1930,NULL),(473329,'Shawn Ku',NULL,NULL),(473530,'Akira Kubo',1936,NULL),(473577,'Yôsuke Kubozuka',1979,NULL),(473588,'Vivian Kubrick',1960,NULL),(473621,'Jaroslav Kucera',1929,1991),(473653,'Elena Kucharik',NULL,NULL),(473696,'Alwin H. Küchler',1965,NULL),(473802,'Yûki Kudô',1971,NULL),(473814,'Lenn Kudrjawizki',1975,NULL),(473873,'Cherami Leigh',1988,NULL),(473941,'Dan Kuenster',NULL,NULL),(473984,'Yoshiko Kuga',1931,NULL),(473997,'Sara Kugelmass',NULL,NULL),(474092,'Drazen Kuhn',1965,NULL),(474131,'Toni Kuhn',1942,NULL),(474138,'Michael Kuhn',NULL,NULL),(474166,'Tom Kuhn',NULL,NULL),(474176,'Vlokkie Gordon',NULL,NULL),(474233,'Pieter Kuijpers',1968,NULL),(474308,'Linda Kuk',NULL,NULL),(474374,'Bernie Kukoff',NULL,NULL),(474398,'Nagesh Kukunoor',1967,NULL),(474492,'Agata Kulesza',1971,NULL),(474520,'Vladimir Kulich',NULL,NULL),(474649,'Jarl Kulle',1927,1997),(474697,'Cassandra Kulukundis',1971,NULL),(474709,'Robert Kulzer',NULL,NULL),(474731,'Miyuki Matsuda',1961,NULL),(474734,'Yôko Kumagai',NULL,NULL),(474774,'Akshay Kumar',1967,NULL),(474948,'Naoto Kumazawa',1967,NULL),(474955,'Roger Kumble',1966,NULL),(475020,'Jani Kumpulainen',NULL,NULL),(475129,'Grace Lynn Kung',NULL,NULL),(475157,'Cal Kuniholm',1948,2008),(475165,'Jun Kunimura',1955,NULL),(475338,'Tamo Kunz',1972,NULL),(475365,'Nina Kunzendorf',1971,NULL),(475411,'Sakari Kuosmanen',1956,NULL),(475423,'Claire Kupchak',NULL,NULL),(475470,'Margarete Kupfer',1881,1953),(475542,'Koreyoshi Kurahara',1927,2002),(475578,'Ellen Kuras',1959,NULL),(475610,'Leonid Kuravlyov',1936,2022),(475650,'Ted Kurdyla',NULL,NULL),(475659,'Hanif Kureishi',1954,NULL),(475746,'Toyomichi Kurita',1950,NULL),(475752,'Chiaki Kuriyama',1984,NULL),(475823,'Harry Kurnitz',1908,1968),(475843,'Kiyomi Kuroda',NULL,NULL),(475845,'Yoshio Kuroda',1936,NULL),(475852,'Yoshiyuki Kuroda',1928,NULL),(475853,'Yôsuke Kuroda',1968,NULL),(475863,'Yoshitami Kuroiwa',NULL,NULL),(475878,'Hitomi Kuroki',1960,NULL),(475888,'Ken Kuronuma',NULL,NULL),(475902,'Hisao Kurosawa',1945,NULL),(475905,'Kiyoshi Kurosawa',1955,NULL),(475907,'Mitsuru Kurosawa',NULL,NULL),(475910,'Toshio Kurosawa',1944,NULL),(475957,'Jane Kurson',NULL,NULL),(475988,'Akbar Kurtha',NULL,NULL),(476030,'Gary Kurtz',1940,2018),(476064,'Alex Kurtzman',1973,NULL),(476065,'Andrew Kurtzman',NULL,NULL),(476071,'Robert Kurtzman',1964,NULL),(476123,'Diane Kurys',1948,NULL),(476187,'Gorô Kusakabe',NULL,NULL),(476201,'Karyn Kusama',1968,NULL),(476223,'Takeshi Kusao',1965,NULL),(476291,'Donald Kushner',NULL,NULL),(476378,'Dylan Kussman',1971,NULL),(476419,'Hiroshi Kusuda',NULL,2008),(476484,'Kay E. Kuter',1925,2003),(476565,'Henry Kuttner',1915,1958),(476663,'Satoshi Kuwabara',NULL,NULL),(476678,'Houko Kuwashima',1975,NULL),(476679,'Kong Kuwata',1961,NULL),(476680,'Ryôtarô Kuwata',NULL,NULL),(476900,'Fran Rubel Kuzui',NULL,NULL),(476901,'Kaz Kuzui',NULL,NULL),(476906,'Mimi Kuzyk',1952,NULL),(477035,'Corey Yuen',1951,NULL),(477088,'Nancy Kwan',1939,NULL),(477095,'Pun-Leung Kwan',NULL,NULL),(477102,'Stanley Kwan',1957,NULL),(477108,'Teddy Robin Kwan',1945,NULL),(477127,'Ryan Kwanten',1976,NULL),(477129,'Ken Kwapis',1957,NULL),(477158,'James Y. Kwei',NULL,NULL),(477174,'Katarzyna Kwiatkowska',1974,NULL),(477193,'Richard Kwietniowski',1957,NULL),(477209,'Aaron Kwok',1965,NULL),(477213,'Chi-Kin Kwok',NULL,NULL),(477231,'Phillip Chung-Fung Kwok',1951,NULL),(477238,'Tim Kwok',NULL,NULL),(477253,'Gina Kwon',NULL,NULL),(477274,'Chi-Leung Kwong',NULL,NULL),(477279,'Joseph Kwong',NULL,NULL),(477341,'Nancy Kyes',1949,NULL),(477370,'Christopher Kyle',NULL,NULL),(477404,'Sissela Kyle',1957,NULL),(477426,'Milan Kymlicka',1936,2008),(477449,'Hisako Kyôda',1935,NULL),(477515,'Hans Kyser',1882,1940),(477553,'Machiko Kyô',1924,2019),(477585,'Gábor Kálomista',1964,NULL),(477596,'Sigvaldi J. Kárason',1973,NULL),(477696,'Erich Kästner',1899,1974),(477702,'Helmut Käutner',1908,1980),(477810,'Juliane Köhler',1965,NULL),(477814,'Manfred R. Köhler',1927,1991),(477823,'Ulrich Köhler',1969,NULL),(477836,'Basak Köklükaya',1974,NULL),(477859,'Rainer Kölmel',1947,NULL),(478105,'Harald Kügler',NULL,NULL),(478172,'Karsten Kiilerich',1955,NULL),(478176,'Harry Kümel',1940,NULL),(478240,'Ruedi Küttel',NULL,NULL),(478241,'Iiro Küttner',1966,NULL),(478263,'Louis L\'Amour',1908,1988),(478291,'Madeleine L\'Engle',1918,2007),(478327,'Jean L\'Hôte',1929,1985),(478383,'Arthur La Bern',1909,1990),(478441,'Gregory La Cava',1892,1952),(478479,'Paul La Cour',1902,1956),(478548,'Madame de La Fayette',1634,1693),(478579,'Georges de La Fouchardière',1874,1946),(478588,'Ian La Frenais',1937,NULL),(478701,'Andrew G. La Marca',1954,2011),(478717,'Alain de la Mata',NULL,NULL),(478750,'Robia Scott',1970,NULL),(478799,'Alexandre de La Patellière',1971,NULL),(478834,'Gina La Piana',NULL,NULL),(478852,'Lynda La Plante',1943,NULL),(478886,'Ana de la Reguera',1977,NULL),(478934,'Pierre Drieu La Rochelle',1893,1945),(478996,'Rita La Roy',1901,1993),(479070,'Peter La Terriere',NULL,NULL),(479164,'Lucille La Verne',1872,1945),(479291,'Jean Labadie',NULL,NULL),(479351,'André S. Labarthe',1931,2018),(479352,'François-Renaud Labarthe',NULL,NULL),(479354,'Jules Labarthe',NULL,NULL),(479425,'Junior LaBeija',NULL,NULL),(479471,'Shia LaBeouf',1986,NULL),(479475,'Caridad de Laberdesque',NULL,NULL),(479514,'Eugène Labiche',1815,1888),(479527,'Tyler Labine',1978,NULL),(479530,'David Labiosa',1961,NULL),(479608,'Emmanuelle Laborit',1971,NULL),(479612,'Matthew Labyorteaux',1966,NULL),(479626,'Elina Labourdette',1919,2014),(479628,'Dominique Labourier',1943,NULL),(479637,'Slavko Labovic',1962,NULL),(479666,'Honey Labrador',NULL,NULL),(479753,'Marián Labuda',1944,2018),(479757,'Iya Labunka',NULL,NULL),(479772,'Henri Labussière',1921,2008),(479803,'Daniel Lacambre',NULL,NULL),(479810,'Stephan Lacant',1972,NULL),(479895,'Thiago Lacerda',1978,NULL),(479923,'Franklin Lacey',1917,1988),(480023,'Andreas La Chenardière',1980,NULL),(480048,'Mort Lachman',1918,2009),(480068,'Gregg Lachow',NULL,NULL),(480099,'Stephen Lack',1946,NULL),(480130,'William T. Lackey',1896,1974),(480134,'Mitch Lackie',NULL,NULL),(480166,'Choderlos de Laclos',1741,1803),(480217,'Jay Lacopo',1963,NULL),(480235,'Christian Lacoste',NULL,NULL),(480308,'Ghalya Lacroix',NULL,NULL),(480349,'Rob LaDuca',1956,NULL),(480402,'Susan Lacy',NULL,NULL),(480440,'Alan Ladd Jr.',1937,2022),(480448,'Bernice Ladd',NULL,NULL),(480456,'Fred Ladd',1927,2021),(480465,'Jordan Ladd',1975,NULL),(480483,'Cassidy Ladden',1986,NULL),(480564,'Nicole Ladmiral',1930,1958),(480673,'Carl Laemmle Jr.',1908,1979),(480677,'Ernst Laemmle',1900,1950),(480775,'Adam LeFevre',1950,NULL),(480804,'Kevin Lafferty',NULL,NULL),(480843,'John Lafia',1957,2020),(480850,'Laurent Lafitte',1973,NULL),(480869,'Art LaFleur',1943,2021),(480879,'Jean LaFleur',NULL,NULL),(480894,'Stéphane Lafleur',NULL,NULL),(480942,'Bernadette Lafont',1938,2013),(480972,'Lyse Lafontaine',NULL,NULL),(481001,'Carmen Laforet',1921,2004),(481075,'Rebecka Lafrenz',1969,NULL),(481097,'Frédéric Lagache',NULL,NULL),(481185,'Natália Lage',1978,NULL),(481248,'Selma Lagerlöf',1858,1940),(481401,'Jacques Lagrange',NULL,NULL),(481418,'Richard LaGravenese',1959,NULL),(481464,'Enrique Laguna',NULL,NULL),(481610,'Farid Lahouassa',1959,NULL),(481618,'Bert Lahr',1895,1967),(481699,'Joseph Lai',NULL,NULL),(481709,'Leon Lai',1966,NULL),(481738,'Yiu-Fai Lai',NULL,NULL),(481766,'William R. Laidlaw',1907,1988),(481910,'John Laing',NULL,NULL),(481923,'Phyllis Laing',NULL,NULL),(481966,'Jenny Laird',1912,2001),(481990,'Peter Laird',1954,NULL),(481996,'Nick Laird-Clowes',1957,NULL),(482081,'Santiago Lajusticia',1967,NULL),(482141,'Don Lake',1956,NULL),(482193,'Stuart N. Lake',1889,1964),(482311,'Archie Lal',NULL,NULL),(482473,'Mick Lally',1945,2010),(482486,'Frank LaLoggia',1954,NULL),(482532,'Serge Lalou',NULL,NULL),(482537,'René Laloux',1929,2004),(482559,'Ardy Lam',NULL,NULL),(482560,'Angie Lam',1965,NULL),(482580,'Ching-Ying Lam',1952,1997),(482628,'Ka-Tung Lam',1967,NULL),(482681,'Ringo Lam',1955,2018),(482695,'Suet Lam',1964,NULL),(482697,'Siu-Lam Tang',NULL,NULL),(482706,'Wah-Chuen Lam',NULL,NULL),(482780,'Ross LaManna',NULL,NULL),(482955,'Geoff Lamb',NULL,NULL),(483005,'Rick Lamb',NULL,NULL),(483047,'Adam Lamberg',1984,NULL),(483069,'Anne-Louise Lambert',1955,NULL),(483101,'Constant Lambert',1905,1951),(483149,'Gavin Lambert',1924,2005),(483187,'Jerry Lambert',1958,NULL),(483192,'Jody Lambert',NULL,NULL),(483200,'Jonathan Lambert',1973,NULL),(483286,'Rae Lambert',NULL,NULL),(483290,'Robert K. Lambert',NULL,NULL),(483300,'Scott Lambert',NULL,NULL),(483441,'Alana H. Lambros',NULL,NULL),(483451,'Julien Lambroschini',NULL,NULL),(483508,'Lise Lamétrie',1955,NULL),(483540,'Donn Lamkin',NULL,NULL),(483578,'Kelly Lammers',NULL,NULL),(483641,'Adele Lamont',1931,2005),(483642,'Angus Lamont',NULL,NULL),(483766,'Jake LaMotta',1922,2017),(483788,'Jean-Marie Lamour',NULL,NULL),(483876,'Zohra Lampert',1937,NULL),(483882,'Marc Lamphear',NULL,NULL),(483945,'Günter Lamprecht',1930,2022),(483968,'Mary Lampson',NULL,NULL),(484029,'Raymond Lamy',1903,1982),(484104,'Sarah Lancashire',1964,NULL),(484108,'Andrew Lancaster',NULL,NULL),(484111,'Bill Lancaster',1947,1997),(484123,'David Lancaster',NULL,NULL),(484189,'Karen Lancaume',1973,2005),(484249,'Roger Lanser',NULL,NULL),(484266,'John Lanchbery',1923,2003),(484376,'Alfredo Landa',1933,2013),(484439,'David Landau',1879,1935),(484457,'Jon Landau',1960,NULL),(484475,'Neil Landau',NULL,NULL),(484479,'Richard H. Landau',1914,1993),(484498,'Joe Landauer',NULL,NULL),(484504,'Vincent Landay',NULL,NULL),(484541,'Amy Landecker',1969,NULL),(484606,'Claudia Lander-Duke',NULL,NULL),(484620,'Federico Landeros',NULL,NULL),(484635,'Hal Landers',1928,1991),(484678,'Michael Landes',NULL,NULL),(484716,'Janet Landgard',1947,NULL),(484737,'Inge Landgut',1922,1986),(484748,'Elissa Landi',1904,1948),(484829,'Jessie Royce Landis',1896,1972),(484840,'Max Landis',1985,NULL),(484879,'Jeffery Scott Lando',1969,NULL),(484901,'Michael Landon Jr.',NULL,NULL),(484907,'Christopher Landon',1975,NULL),(484929,'Laurene Landon',NULL,NULL),(484933,'Margaret Landon',1903,1993),(484981,'Sylvie Landra',NULL,NULL),(485085,'Mike Landry',NULL,NULL),(485161,'Heinz Landsmann',1886,NULL),(485229,'Andrew Lane',1951,NULL),(485243,'Betty J. Lane',NULL,NULL),(485273,'Charles Lane',1953,NULL),(485298,'David Lane',1940,NULL),(485349,'George W. Lane',1877,1935),(485388,'Jocelyn Lane',1937,NULL),(485439,'Lola Lane',1906,1981),(485509,'Priscilla Lane',1915,1995),(485528,'Rob Lane',NULL,NULL),(485553,'Sharyn Leavitt',1949,2005),(485569,'Steven A. Lane',NULL,NULL),(485637,'Eric Laneuville',1952,NULL),(485640,'Lanier Laney',NULL,NULL),(485647,'Sidney Lanfield',1898,1972),(485702,'Charles Lang',1902,1998),(485718,'Daniel Lang',NULL,NULL),(485766,'Helen Lang',1951,1994),(485788,'Jim Lang',1950,NULL),(485806,'June Lang',1917,2005),(485807,'k.d. lang',1961,NULL),(485878,'Perry Lang',1959,NULL),(485894,'Robert Lang',1934,2004),(485904,'Samantha Lang',1967,NULL),(485917,'Stephen J. Lang',NULL,NULL),(485943,'Walter Lang',1896,1972),(485950,'Sihung Lung',1930,2002),(485972,'Christine Langan',NULL,NULL),(486007,'Doug Langdale',1969,NULL),(486057,'Sue Ane Langdon',1936,NULL),(486068,'Allison Lange',1978,NULL),(486075,'Arthur Lange',1889,1956),(486127,'Harry Lange',1930,2008),(486136,'Hope Lange',1933,2003),(486150,'Johnny Lange',1905,2006),(486171,'Monique Lange',1926,1996),(486174,'Niklaus Lange',1974,NULL),(486228,'George Langelaan',1908,1969),(486244,'Todd W. Langen',NULL,NULL),(486277,'A.J. Langer',1974,NULL),(486311,'Martin Langer',1959,NULL),(486524,'John Langley',1943,2021),(486538,'Noel Langley',1911,1980),(486611,'Yves Langlois',1945,NULL),(486627,'Thomas Langmann',1971,NULL),(486639,'Marina Langner',1954,NULL),(486644,'Jan Eirik Langoen',NULL,NULL),(486700,'Jacobo Langsner',NULL,2020),(486728,'Brooke Langton',1970,NULL),(486742,'Paul Langton',1913,1980),(486748,'Simon Langton',1941,NULL),(486749,'Viktoria Langton',NULL,NULL),(486773,'Douglas Langway',1970,2022),(486824,'Kate Lanier',NULL,NULL),(486839,'Susan Lanier',NULL,NULL),(486976,'Reggie Lanning',1893,1965),(487067,'Joe R. Lansdale',1951,NULL),(487166,'Yorgos Lanthimos',1973,NULL),(487190,'Robert Lantos',1949,NULL),(487237,'Walter Lantz',1899,1994),(487254,'Gérard Lanvin',1950,NULL),(487320,'Christophe Lanzenberg',NULL,NULL),(487429,'Melanie LaPatin',NULL,NULL),(487505,'Howard Lapides',1950,2019),(487553,'Ivan Lapikov',1922,1993),(487567,'James Lapine',1949,NULL),(487582,'Stan Lapinski',NULL,NULL),(487594,'Liza Lapira',1981,NULL),(487692,'Stéphane Lapointe',1971,NULL),(487700,'Jeanne Lapoirie',NULL,NULL),(487748,'Catherine Lapoujade',NULL,NULL),(487884,'Alexandra Maria Lara',1978,NULL),(487917,'Joe Lara',1962,2021),(488019,'Annick Larboulette',NULL,NULL),(488024,'John Larch',1914,2005),(488053,'Ursina Lardi',1970,NULL),(488057,'Ring Lardner Jr.',1915,2000),(488267,'Bryan Larkin',1979,NULL),(488289,'James Larkin',NULL,NULL),(488295,'John Francis Larkin',1901,1965),(488306,'Linda Larkin',1970,NULL),(488318,'Peter S. Larkin',1926,2019),(488377,'Stevan Larner',1930,2005),(488477,'Michèle Laroque',1960,NULL),(488493,'J. LaRose',1972,NULL),(488574,'José Ramón Larraz',1929,2013),(488613,'Antonio Larreta',1922,2015),(488623,'Arnaud Larrieu',1966,NULL),(488625,'Jean-Claude Larrieu',NULL,NULL),(488626,'Jean-Marie Larrieu',1965,NULL),(488644,'Tito Larriva',NULL,NULL),(488672,'Larry',1927,2003),(488897,'Samuel James Larsen',NULL,NULL),(488899,'Shana Larsen',NULL,NULL),(488917,'Thomas Bo Larsen',1963,NULL),(488953,'Brie Larson',1989,NULL),(488981,'Eric Larson',1905,1988),(488991,'Glen A. Larson',1937,2014),(489010,'Jill Larson',1947,NULL),(489059,'Nathan Larson',1970,NULL),(489240,'Malin Morgan',1970,NULL),(489309,'Éric Lartigau',1964,NULL),(489311,'Gérard Lartigau',1942,2014),(489320,'Jean Lartéguy',1920,2011),(489397,'Xavier Lasa',NULL,NULL),(489437,'Alex Lasarenko',1963,2020),(489453,'Casey La Scala',1967,NULL),(489464,'Andre Lascaris',NULL,NULL),(489487,'George Lascu',NULL,NULL),(489504,'Dieter Laser',1942,2020),(489620,'Alex Lasker',NULL,NULL),(489623,'Lawrence Lasker',1949,NULL),(489637,'Serge Laski',NULL,NULL),(489678,'Jacek Laskus',1951,NULL),(489679,'Jesse Lasky Jr.',1910,1988),(489713,'Hana Laslo',1953,NULL),(489725,'Andra Lasmanis',1957,NULL),(489809,'Lisa Lassek',NULL,NULL),(489837,'Louise Lasser',1939,NULL),(489857,'Sarah Lassez',NULL,NULL),(489858,'Rolf Lassgård',1955,NULL),(489876,'James Lassiter',NULL,NULL),(489901,'Bob Last',NULL,NULL),(489967,'Alexander Laszlo',1895,1970),(489970,'Andrew Laszlo',1926,2011),(489995,'Marcin Latallo',1967,NULL),(490014,'Irina Lachina',1972,NULL),(490052,'Eddie Lateste',1929,NULL),(490053,'Willy Lateste',1930,1967),(490063,'Alan Latham',NULL,NULL),(490103,'Louise Latham',1922,2018),(490127,'Bobbi Jo Lathan',1951,NULL),(490147,'Nick Lathouris',NULL,NULL),(490348,'Alyce LaTourelle',1970,NULL),(490375,'David Michael Latt',1966,NULL),(490417,'Greg Latter',NULL,NULL),(490477,'Ellen Latzen',1980,NULL),(490486,'Moon-Tong Lau',NULL,NULL),(490487,'Andrew Lau',1960,NULL),(490489,'Andy Lau',1961,NULL),(490492,'Tony Liu',1952,NULL),(490500,'Carina Lau',1964,NULL),(490513,'Ching Wan Lau',1964,NULL),(490521,'Damian Lau',1949,NULL),(490551,'Hung-Chuen Lau',NULL,NULL),(490573,'Kar-Yung Lau',NULL,NULL),(490582,'Laura Lau',1963,NULL),(490597,'Pauline Lau',NULL,NULL),(490605,'Ricky Lau',1949,NULL),(490640,'William Lau',NULL,NULL),(490657,'Lindy Laub',NULL,NULL),(490672,'Rolph Laube',NULL,NULL),(490702,'Chantal Lauby',1948,NULL),(490708,'Liubomiras Laucevicius',1950,NULL),(490734,'Philippe Laudenbach',1936,NULL),(490817,'Paul Laufer',NULL,NULL),(490950,'Frank Launder',1906,1997),(490958,'Dale Launer',1952,NULL),(490980,'Cyndi Lauper',1953,NULL),(491011,'Guillaume Laurant',1961,NULL),(491048,'Stan Laurel',1890,1965),(491054,'Andrew Lauren',1969,NULL),(491076,'S.K. Lauren',1893,1979),(491082,'Val Lauren',NULL,NULL),(491090,'Ashley Laurence',1966,NULL),(491101,'Douglas Laurence',1918,2012),(491190,'James Laurenson',1940,NULL),(491229,'Gilles Laurent',NULL,NULL),(491230,'Guy Laurent',NULL,NULL),(491238,'Jacqueline Laurent',1918,2009),(491240,'Jacques Laurent',1919,2000),(491259,'Mélanie Laurent',1983,NULL),(491271,'Pierre Laurent',NULL,NULL),(491275,'Rémi Laurent',1957,1989),(491306,'Arthur Laurents',1917,2011),(491402,'Hugh Laurie',1959,NULL),(491406,'John Laurie',1897,1980),(491422,'Charlotte Laurier',1966,NULL),(491565,'Dan Laustsen',1954,NULL),(491590,'Ed Lauter',1938,2013),(491596,'Heiner Lauterbach',1953,NULL),(491671,'Gérard Lauzier',1932,2008),(491722,'Philippe Lavalette',NULL,NULL),(491735,'David Lavallee',NULL,NULL),(491751,'Diane Lavallée',1955,NULL),(491763,'Dominique Lavanant',1944,NULL),(491774,'Yves Lavandier',1959,NULL),(491777,'Denis Lavant',1961,NULL),(491792,'Christopher LaVasseur',NULL,NULL),(491852,'Arnold Laven',1922,2009),(491911,'Mathieu Laverdière',NULL,NULL),(491956,'Paul Laverty',1957,NULL),(491976,'Ron Lavery',NULL,NULL),(492002,'Daliah Lavi',1942,2017),(492006,'Gabriele Lavia',1942,NULL),(492038,'Enrique López Lavigne',NULL,NULL),(492215,'George LaVoo',NULL,NULL),(492305,'Chi-Leung Law',NULL,NULL),(492315,'Dennis Law',NULL,NULL),(492342,'John Phillip Law',1937,2008),(492373,'Phyllida Law',1932,NULL),(492409,'Wing-Fai Law',NULL,NULL),(492444,'Peter Lawford',1923,1984),(492553,'Joseph Lawlor',NULL,NULL),(492620,'Andrew Lawrence',1988,NULL),(492626,'Anthony Lawrence',1928,NULL),(492631,'Barbara Lawrence',1930,2013),(492649,'Bruno Lawrence',1941,1995),(492657,'Carolyn Lawrence',1967,NULL),(492692,'D.H. Lawrence',1885,1930),(492714,'David Lawrence',NULL,NULL),(492747,'Elliot Lawrence',1925,2021),(492765,'Abigail Clayton',NULL,NULL),(492823,'Jerome Lawrence',1915,2004),(492854,'Josephine Lawrence',1892,1978),(492909,'Marc Lawrence',1959,NULL),(492924,'Mark Christopher Lawrence',1964,NULL),(492932,'Matthew Lawrence',1980,NULL),(492994,'Robert Lawrence',NULL,NULL),(493013,'Scott Lawrence',1963,NULL),(493038,'Steven C. Lawrence',NULL,NULL),(493071,'Vincent Lawrence',1889,1946),(493072,'Viola Lawrence',1894,1973),(493127,'Maury Laws',1923,2019),(493130,'Nick Laws',1958,NULL),(493200,'Denis Lawson',1947,NULL),(493225,'Guy Lawson',NULL,NULL),(493251,'John Howard Lawson',1894,1977),(493257,'Josh Lawson',1981,NULL),(493279,'Maggie Lawson',NULL,NULL),(493339,'Tony Lawson',1944,NULL),(493347,'Wilfrid Lawson',1900,1966),(493353,'Charles Lawton Jr.',1904,1965),(493369,'J.F. Lawton',1960,NULL),(493439,'James Laxton',1981,NULL),(493441,'Richard Laxton',NULL,NULL),(493508,'Claude Laydu',1927,2011),(493521,'Ana Layevska',1982,NULL),(493548,'Cooper Layne',NULL,NULL),(493594,'Alain Layrac',1965,NULL),(493645,'Vernon Layton',1941,NULL),(493662,'Andrew Lazar',1966,NULL),(493668,'Dorina Lazar',1940,NULL),(493677,'John Lazar',1946,NULL),(493684,'Paul Lazar',NULL,NULL),(493699,'Justin Lazard',1967,NULL),(493784,'Simo Lazarov',1948,NULL),(493842,'Tom Lazarus',1942,NULL),(493855,'Ken LaZebnik',1954,NULL),(493857,'Philip LaZebnik',1953,NULL),(493872,'George Lazenby',1939,NULL),(493874,'David Lazer',NULL,NULL),(494066,'Isild Le Besco',1982,NULL),(494069,'Maïwenn',1976,NULL),(494078,'Samuel Le Bihan',1965,NULL),(494093,'Michael LeBlanc',1974,NULL),(494138,'Auguste Le Breton',1913,1999),(494161,'Renée Le Calm',1918,2019),(494170,'John le Carré',1931,2020),(494179,'Charles Le Clainche',NULL,NULL),(494257,'Sheridan Le Fanu',1814,1873),(494355,'Philippe Le Guay',1956,NULL),(494372,'Ursula K. Le Guin',1929,2018),(494378,'Alain Le Henry',NULL,NULL),(494386,'René Le Hénaff',1901,2005),(494432,'Paul Le Mat',1945,NULL),(494435,'Alan Le May',1899,1964),(494504,'Anne Le Ny',1962,NULL),(494512,'Stéphane Le Parc',NULL,NULL),(494549,'Nicholas Le Prevost',1947,NULL),(494617,'Yorick Le Saux',1968,NULL),(494693,'Hiep Thi Le',1971,2017),(494861,'Roger Murray-Leach',1943,NULL),(494863,'Rosemary Leach',1935,2017),(494885,'Philip Leacock',1917,1990),(494910,'Graham Leader',NULL,NULL),(494933,'Paul Leadon',NULL,NULL),(494999,'Michael Leahy',1963,NULL),(495075,'Leandra Leal',1982,NULL),(495229,'Michael Learned',1939,NULL),(495259,'Helen Leary',1900,1989),(495270,'Nolan Leary',1889,1987),(495319,'Stephen Leather',NULL,NULL),(495378,'Charles Leavitt',NULL,NULL),(495402,'Sam Leavitt',1904,1984),(495461,'William LeBaron',1883,1958),(495470,'Joséphine Lebas-Joly',NULL,NULL),(495568,'Pepper LaBeija',1948,2003),(495605,'Chris Lebenzon',NULL,NULL),(495615,'Susan Leber',NULL,NULL),(495634,'Pavel Lebeshev',1940,2003),(495668,'Carine Leblanc',NULL,NULL),(495728,'Maurice Leblanc',1864,1941),(495790,'Sophie Leblond',NULL,NULL),(495799,'Laurence Leboeuf',1985,NULL),(495863,'Fredric Lebow',NULL,NULL),(495920,'Julie LeBreton',1975,NULL),(496046,'Christian Lerch',1966,NULL),(496055,'George Lechaptois',NULL,NULL),(496185,'Ginette Leclerc',1912,1992),(496284,'Claude Lecomte',1931,2008),(496312,'Patrice Leconte',1947,NULL),(496327,'Guy Lecorne',NULL,NULL),(496468,'Charles Lederer',1911,1976),(496473,'Francis Lederer',1899,2000),(496556,'John Ledford',NULL,NULL),(496617,'Jacques Ledoux',1921,1988),(496628,'Patrice Ledoux',NULL,NULL),(496645,'Jean Ledrut',1902,1982),(496742,'Ping Bin Lee',1954,NULL),(496746,'J. Lee Thompson',1914,2002),(496752,'Daniel Lee',NULL,NULL),(496771,'Alan David Lee',NULL,NULL),(496775,'Alberto Lee',NULL,NULL),(496811,'Anita Lee',NULL,NULL),(496819,'Anna Lee',1913,2004),(496856,'Belinda Lee',1935,1961),(496866,'Bernard Lee',1908,1981),(496881,'Bill Lee',1928,2023),(496932,'Lee Byung-hun',1970,NULL),(496933,'Byung-woo Lee',1965,NULL),(496935,'C.Y. Lee',1915,2018),(496969,'Lee Chang-dong',1954,NULL),(497010,'Choon-yeon Lee',NULL,NULL),(497046,'Cinqué Lee',1966,NULL),(497083,'Damon Lee',1969,NULL),(497097,'Danny Lee',1952,NULL),(497140,'Dennis Lee',1939,NULL),(497209,'Edna L. Lee',1890,1964),(497231,'Erica Li',NULL,NULL),(497248,'Eun Soo Lee',NULL,NULL),(497274,'Francis Lee',1969,NULL),(497314,'Gerald Lee',NULL,NULL),(497333,'Grace Lee',NULL,NULL),(497346,'Gypsy Rose Lee',1911,1970),(497369,'Harper Lee',1926,2016),(497374,'Harry Lee',NULL,NULL),(497383,'Lee Hye-yeong',1962,NULL),(497455,'Lieh Lee',1958,NULL),(497458,'James Lee',1923,2002),(497485,'Jason Lee',1968,NULL),(497522,'Jesse Lee Soffer',1984,NULL),(497528,'Jieho Lee',1973,NULL),(497578,'Joie Lee',1962,NULL),(497630,'Lee Jung-hyun',1980,NULL),(497631,'Lee Jung-jae',1972,NULL),(497642,'Kang-sheng Lee',1968,NULL),(497662,'Kelly Lee',NULL,NULL),(497738,'Leonard Lee',1903,1964),(497757,'Li-Chun Lee',1952,NULL),(497758,'Lik-Chi Lee',1961,NULL),(497762,'Pik-Wah Lee',NULL,NULL),(497804,'Manfred Lee',1905,1971),(497828,'Mark Lee',NULL,NULL),(497920,'Moon Lee',1965,NULL),(497929,'Mu-yeong Lee',1962,NULL),(497961,'Norman Lee',1898,1964),(497966,'Oliver Lee',1985,NULL),(498007,'Peggy Lee',1920,2002),(498008,'Peggy Lee',NULL,NULL),(498064,'Raymond Lee',NULL,NULL),(498103,'Robbie Lee',1954,NULL),(498126,'Robert E. Lee',1918,1994),(498133,'Robert N. Lee',1890,1964),(498151,'Roger Lee',NULL,NULL),(498174,'Rowland V. Lee',1891,1975),(498175,'Roy Lee',1969,NULL),(498212,'Sang-il Lee',1974,NULL),(498231,'Seung-jae Lee',NULL,NULL),(498247,'Sheryl Lee',1967,NULL),(498271,'Sook-Yin Lee',NULL,NULL),(498275,'Sophie Lee',1968,NULL),(498278,'Stan Lee',1922,2018),(498291,'Steven A. Lee',NULL,NULL),(498429,'Waise Lee',1959,NULL),(498449,'Will Yun Lee',NULL,NULL),(498471,'Yu-Tang Li',NULL,NULL),(498472,'Lee Yeong-ae',1971,NULL),(498478,'Eugene Lee',NULL,NULL),(498488,'Yeong-jin Lee',1981,NULL),(498517,'Andrew Lee Potts',1979,NULL),(498521,'Peter Lee-Thompson',1938,NULL),(498555,'Tony Leech',1968,NULL),(498718,'Carol Lees',NULL,NULL),(498738,'Robert Lees',1912,2004),(498758,'Mark Leese',NULL,NULL),(498775,'Michael Leeson',NULL,2016),(498798,'Hannah de Leeuwe',1948,NULL),(498834,'Meg LeFauve',NULL,NULL),(498882,'Louis Lefebvre',NULL,NULL),(498901,'Robert Lefebvre',1907,1989),(498920,'Daryl C. Lefever',NULL,NULL),(498921,'Dominique Lefever',NULL,NULL),(498956,'Rachelle Lefevre',1979,NULL),(498963,'Adam Leff',NULL,NULL),(498991,'Doug Lefler',NULL,NULL),(499051,'Julius LeFlore',NULL,NULL),(499054,'Solomon J. LeFlore',NULL,NULL),(499191,'José Legarreta',NULL,NULL),(499223,'Lance LeGault',1935,2012),(499343,'Jay Leggett',1963,2013),(499348,'Laurian Leggett',NULL,NULL),(499350,'Mark Leggett',NULL,NULL),(499429,'Benjamin Legrand',1950,NULL),(499448,'Gilles Legrand',1958,NULL),(499488,'Xavier Legrand',1979,NULL),(499540,'Jean-Claude Leguay',NULL,NULL),(499589,'Jason Lehel',NULL,NULL),(499626,'Ernest Lehman',1915,2005),(499703,'Jette Lehmann',NULL,NULL),(499724,'Michael Lehmann',1957,NULL),(499967,'Martin Lehwald',1965,NULL),(500038,'Ron Leibman',1937,2019),(500067,'William F. Leicester',1915,1969),(500090,'Jerry Leichtling',1948,NULL),(500107,'Jerry Leider',NULL,NULL),(500200,'Chyler Leigh',1982,NULL),(500274,'Norman Leigh',1930,1996),(500284,'Rowland Leigh',1902,1963),(500299,'Suzanna Leigh',1945,2017),(500317,'Barbara Leigh-Hunt',1935,NULL),(500343,'Eric Leighton',1962,NULL),(500359,'Laura Leighton',1968,NULL),(500364,'Margaret Leighton',1922,1976),(500371,'Robert Leighton',NULL,NULL),(500400,'Ingemar Leijonborg',1940,NULL),(500444,'Danny Leiner',1961,2018),(500505,'Harald Leipnitz',1926,2000),(500610,'David Leitch',1975,NULL),(500614,'Matthew Leitch',1975,NULL),(500682,'Douglas Leiterman',1927,2012),(500686,'Richard Leiterman',1935,2005),(500702,'Virginia Leith',1925,2019),(500717,'David W. Leitner',1953,NULL),(500739,'Tyron Leitso',1976,NULL),(500745,'Jennifer Leitzes',NULL,NULL),(500858,'Larry Leker',NULL,NULL),(500976,'Gilles Lellouche',1972,NULL),(500984,'Marc Lelou',NULL,NULL),(500988,'Claude Lelouch',1937,NULL),(501015,'Stanislaw Lem',1921,2006),(501022,'Ray Lema',1946,NULL),(501085,'Maurice Lemaître',1926,2018),(501120,'Francis Lemarque',1917,2002),(501185,'Michael Lembeck',1948,NULL),(501210,'Kris Lemche',1978,NULL),(501256,'Valérie Lemercier',1964,NULL),(501281,'Ella Lemhagen',1965,NULL),(501359,'Darren Lemke',NULL,NULL),(501380,'Jonathan Lemkin',NULL,NULL),(501391,'Jim Lemley',1965,NULL),(501399,'Steve Lemme',1968,NULL),(501412,'Júlia Lemmertz',1963,NULL),(501419,'James Lemmo',1949,NULL),(501435,'Kasi Lemmons',1961,NULL),(501531,'Jérôme Lemonnier',NULL,NULL),(501544,'Rusty Lemorande',NULL,NULL),(501699,'Juan Carlos Lenardi',NULL,NULL),(501721,'Jean Lenauer',1904,1983),(501729,'Robert Lence',NULL,NULL),(501755,'Ryszard Lenczewski',1948,NULL),(501802,'Nancy Lenehan',1953,NULL),(501837,'Vanessa Lengies',1985,NULL),(501845,'Raphaël Lenglet',1975,NULL),(501872,'Melchior Lengyel',1880,1974),(501873,'Peter Lengyel',NULL,NULL),(501902,'Paul Leni',1885,1929),(501904,'John G. Lenic',1974,NULL),(501947,'Rebecca Lenkiewicz',1968,NULL),(501973,'Isobel Lennart',1915,1971),(501999,'Christopher Lennertz',1972,NULL),(502015,'Harry Lennix',1964,NULL),(502073,'Thomas Lennon',1970,NULL),(502097,'Kai Lennox',NULL,NULL),(502258,'Mehernaz Lentin',NULL,NULL),(502322,'Lotte Lenya',1898,1981),(502338,'Jack Lenz',NULL,NULL),(502391,'Umberto Lenzi',1931,2017),(502406,'Armand Leo',NULL,NULL),(502412,'Edoardo Leo',1972,NULL),(502425,'Melissa Leo',1960,NULL),(502442,'Leon',NULL,NULL),(502497,'Kenny Leon',NULL,NULL),(502577,'Brett Leonard',1959,NULL),(502671,'Joshua Leonard',1975,NULL),(502719,'Mike Leonard',1874,NULL),(502727,'Niall Leonard',NULL,NULL),(502752,'Robert Z. Leonard',1889,1968),(502794,'Paul Leonard-Morgan',NULL,NULL),(502813,'Marco Leonardi',1971,NULL),(502859,'Doriana Leondeff',1962,NULL),(502900,'Lisa Leone',NULL,NULL),(502918,'Raffaella Leone',1961,NULL),(502941,'Matthew F. Leonetti Jr.',1975,NULL),(502954,'John R. Leonetti',1956,NULL),(502959,'Al Leong',1952,NULL),(503033,'Atossa Leoni',1977,NULL),(503059,'Dimitri Leonidas',1987,NULL),(503060,'Stephanie Leonidas',1984,NULL),(503095,'Evgeniy Leonov',1926,1994),(503103,'Anna Leonowens',1834,1915),(503119,'Guido Leontini',1927,1996),(503158,'Glenn Leopold',NULL,NULL),(503259,'Peter Lepeniotis',1965,NULL),(503276,'Jean-François Lepetit',1953,NULL),(503370,'Raymond Leppard',1927,2019),(503415,'René Leprince',1876,1929),(503429,'Alisa Lepselter',1963,NULL),(503443,'Chete Lera',1949,2022),(503475,'István Lerch',1953,NULL),(503495,'Sévérine Lerczinska',NULL,NULL),(503548,'Cory Lerios',NULL,NULL),(503567,'Logan Lerman',1992,NULL),(503581,'Mikhail Lermontov',1814,1841),(503585,'Alan Jay Lerner',1918,1986),(503592,'Avi Lerner',1947,NULL),(503594,'Carl Lerner',1912,1973),(503600,'Danny Lerner',1952,2015),(503627,'Michael Lerner',1941,2023),(503629,'Michael A. Lerner',1958,NULL),(503641,'Richard Lerner',NULL,NULL),(503693,'Gaston Leroux',1868,1927),(503753,'Gen LeRoy',1937,NULL),(503777,'Mervyn LeRoy',1900,1987),(503800,'Philippine Leroy-Beaulieu',1963,NULL),(503824,'Anjel Lertxundi',NULL,NULL),(503919,'Micha Lescot',NULL,NULL),(503931,'Marek Lescák',1971,NULL),(504125,'Joan Leslie',1925,2015),(504226,'Andrew Lesnie',1956,2015),(504244,'Marius Lesoeur',1910,2003),(504267,'Jalil Lespert',1976,NULL),(504298,'Gregory Lessans',NULL,NULL),(504320,'Anton Lesser',1952,NULL),(504327,'Elana Lesser',NULL,NULL),(504335,'Len Lesser',1922,2011),(504344,'Sol Lesser',1890,1980),(504363,'Doris Lessing',1919,2013),(504366,'Gotthold Ephraim Lessing',1729,1781),(504380,'Elgin Lessley',1883,1944),(504412,'Adrian Lester',1968,NULL),(504434,'David V. Lester',NULL,NULL),(504457,'Henry E. Lester',NULL,NULL),(504477,'Kathy Lester',NULL,NULL),(504489,'Loren Lester',NULL,NULL),(504492,'Mark Lester',1958,NULL),(504495,'Mark L. Lester',NULL,NULL),(504513,'Richard Lester',1932,NULL),(504576,'Michal Leszczylowski',1950,NULL),(504594,'Iris Letans',NULL,NULL),(504618,'Barbara Letellier',NULL,NULL),(504641,'François Leterrier',1929,2020),(504642,'Louis Leterrier',1973,NULL),(504654,'Jørgen Leth',1937,NULL),(504670,'Jason Lethcoe',NULL,NULL),(504672,'Jonathan Lethem',1964,NULL),(504760,'Bernard Letrou',1943,2011),(504802,'Sheldon Lettich',1951,NULL),(504803,'Al Lettieri',1928,1975),(504819,'Billie Letts',1938,2014),(504832,'Tracy Letts',1965,NULL),(504897,'Tony Leung Chiu-wai',1962,NULL),(504899,'Tony Ka Fai Leung',1958,NULL),(504900,'Siu-Hung Leung',NULL,NULL),(504942,'Gigi Leung',1976,NULL),(504962,'Ken Leung',1970,NULL),(504973,'Alex Man',1957,NULL),(504980,'Patrick Leung',NULL,NULL),(505000,'Suk-Wah Leung',NULL,NULL),(505029,'Clinton Leupp',NULL,NULL),(505075,'Matthew Leutwyler',NULL,NULL),(505144,'Gigi Levangie',1963,NULL),(505152,'Brian Levant',1952,NULL),(505157,'Oscar Levant',1906,1972),(505183,'Grégory Levasseur',NULL,NULL),(505227,'Boris Leven',1908,1986),(505230,'Jeremy Leven',1941,NULL),(505249,'Sam Levene',1905,1980),(505281,'Alain Levent',1934,2008),(505392,'Michel Levesque',1943,2010),(505409,'Jay Levey',NULL,NULL),(505420,'Alan J. Levi',NULL,NULL),(505452,'Jo Levi',NULL,NULL),(505522,'David Levien',NULL,NULL),(505601,'Gail Levin',NULL,NULL),(505610,'Henry Levin',1909,1980),(505615,'Ira Levin',1929,2007),(505625,'Jessica Levin',NULL,NULL),(505639,'Joni Levin',NULL,NULL),(505640,'Jordan Levin',NULL,NULL),(505642,'K. Asher Levin',NULL,NULL),(505648,'Larry Levin',NULL,NULL),(505656,'Lloyd Levin',NULL,NULL),(505662,'Mark Levin',NULL,NULL),(505697,'Peter Levin',NULL,NULL),(505720,'Sidney Levin',1934,2020),(505736,'Thunder Levin',NULL,NULL),(505741,'Victor Levin',1961,NULL),(505768,'Barry Levine',NULL,NULL),(505810,'Hank Levine',NULL,NULL),(505824,'James Levine',1943,2021),(505828,'James S. Levine',NULL,NULL),(505842,'Jerry Levine',1957,NULL),(505854,'Joseph E. Levine',1905,1987),(505861,'Judi Levine',NULL,NULL),(505899,'Michael Levine',NULL,NULL),(505935,'Richard P. Levine',1945,NULL),(505946,'Sam J. Levine',1973,NULL),(505971,'Ted Levine',1957,NULL),(505996,'Margaret P. Levino',1890,1944),(506013,'Gary Levinsohn',1959,NULL),(506020,'Art Levinson',1933,2015),(506070,'Mark Levinson',NULL,NULL),(506071,'Mark Levinson',NULL,NULL),(506075,'Monica Levinson',NULL,NULL),(506087,'Richard Levinson',1934,1987),(506094,'Sam Levinson',1985,NULL),(506100,'Stephen Levinson',NULL,NULL),(506160,'Steven Levitan',1962,NULL),(506187,'Abe Levitow',1922,1975),(506215,'Gene Levitt',1920,1999),(506254,'Zane W. Levitt',NULL,NULL),(506259,'Chris Levitus',NULL,NULL),(506290,'Kristian Levring',1957,NULL),(506349,'Benn W. Levy',1900,1973),(506357,'Bruno Levy',NULL,NULL),(506377,'Darío Levy',NULL,NULL),(506379,'David Levy',NULL,NULL),(506398,'Edward Levy',NULL,NULL),(506405,'Eugene Levy',1946,NULL),(506410,'Franklin R. Levy',1948,1992),(506489,'Jules V. Levy',1923,2003),(506500,'Krishna Levy',1964,NULL),(506502,'Lauren Levy Neustadter',1980,NULL),(506504,'Lawrence Levy',NULL,NULL),(506546,'Michael Levy',NULL,NULL),(506548,'Michael I. Levy',NULL,NULL),(506553,'Miles Levy',NULL,NULL),(506584,'Pierre-Oscar Lévy',1955,NULL),(506589,'Ralph Levy',1919,2001),(506597,'Robert L. Levy',NULL,NULL),(506607,'Sandra Levy',NULL,NULL),(506613,'Shawn Levy',1968,NULL),(506619,'Shuki Levy',1947,NULL),(506664,'Jeffrey Kusama-Hinte',NULL,NULL),(506669,'Ellen Levy-Sarnoff',NULL,NULL),(506681,'Jennie Lew Tugend',NULL,NULL),(506694,'Elise Lew',NULL,NULL),(506703,'Jeff Lew',NULL,NULL),(506718,'Eric Lewald',1955,NULL),(506773,'Oscar Lewenstein',1917,1997),(506784,'José Lewgoy',1920,2003),(506802,'Ben Lewin',1946,NULL),(506920,'Andy Lewis',1925,2018),(506951,'Ben Lewis',1894,1970),(506977,'Bradford Lewis',NULL,NULL),(506999,'C. Thomas Lewis',NULL,NULL),(507000,'C.S. Lewis',1898,1963),(507058,'Colin A.B.V. Lewis',NULL,NULL),(507072,'Gilbert Roussel',1946,NULL),(507073,'Damian Lewis',1971,NULL),(507080,'David Lewis',NULL,NULL),(507151,'Edward Lewis',1919,2019),(507207,'Gary Lewis',1958,NULL),(507212,'Geoffrey Lewis',1935,2015),(507305,'James P. Lewis',NULL,NULL),(507312,'Janet Lewis',1899,1998),(507334,'Jefferson Lewis',NULL,NULL),(507343,'Jenny Lewis',1976,NULL),(507363,'Joe Lewis',1944,2012),(507381,'Johnny Lewis',1983,2012),(507390,'Joseph H. Lewis',1907,2000),(507425,'Kevin Lewis',NULL,NULL),(507542,'Mel Lewis',1974,NULL),(507561,'Mildred Lewis',NULL,2019),(507564,'Milton Lewis',NULL,NULL),(507606,'Paul Lewis',NULL,NULL),(507629,'Phill Lewis',1968,NULL),(507635,'Ralph Lewis',1872,1937),(507644,'Rawle D. Lewis',NULL,NULL),(507659,'Richard Lewis',1947,NULL),(507669,'Richard Barton Lewis',1953,NULL),(507670,'Richard Warren Lewis',1932,1998),(507673,'Robert Lewis',1909,1997),(507700,'Roger H. Lewis',1918,1984),(507708,'Ronald Lewis',1928,1982),(507793,'Ted Lewis',1969,NULL),(507794,'Ted Lewis',1940,1982),(507815,'Tim Lewis',1963,NULL),(507827,'Tom Lewis',1867,1927),(507830,'Tom Lewis',1901,1988),(507863,'Warren Lewis',NULL,NULL),(507930,'Bill Lewthwaite',1924,2011),(507932,'Val Lewton',1904,1951),(508025,'Paul Leyden',NULL,NULL),(508048,'Blake Leyh',NULL,NULL),(508148,'Marisa de Leza',1933,2020),(508208,'Fernando León de Aranoa',1968,NULL),(508293,'Thierry Lhermitte',1952,NULL),(508301,'Jean-Marie Lhomme',NULL,NULL),(508356,'Bingbing Li',1973,NULL),(508446,'Ken Li',NULL,NULL),(508510,'Shengwei Li',NULL,NULL),(508525,'Tianji Li',1921,1995),(508536,'Wei Li',1919,2005),(508552,'Cincin Lee',1967,NULL),(508679,'Ching-Sung Liao',NULL,NULL),(508684,'Pen-Jung Liao',1949,NULL),(508715,'Sven Libaek',1938,NULL),(508732,'Matthew Libatique',1968,NULL),(508764,'Rodney Liber',1963,NULL),(508814,'Micha Liberman',NULL,NULL),(508826,'Anne Libert',1946,NULL),(508844,'Richard Libertini',1933,2016),(508845,'Christopher Libertino',NULL,NULL),(508877,'Andrea Libman',1984,NULL),(508904,'Sig Libowitz',1968,NULL),(508988,'Andrew Licht',NULL,NULL),(509033,'Mitchell Lichtenstein',1956,NULL),(509145,'Gabriella Licudi',1941,2022),(509176,'Mickey Liddell',NULL,NULL),(509183,'Allison Liddi-Brown',NULL,NULL),(509258,'Anki Lidén',1947,NULL),(509263,'Nikolaj Lie Kaas',1973,NULL),(509264,'Anders Danielsen Lie',1979,NULL),(509340,'Jeffrey Lieber',NULL,NULL),(509346,'Michael Lieber',1945,2018),(509347,'Mimi Lieber',1956,NULL),(509386,'Hal Lieberman',NULL,NULL),(509390,'Jacobo Lieberman',1970,NULL),(509398,'Leo Lieberman',1916,2000),(509414,'Todd Lieberman',NULL,NULL),(509448,'Jonathan Liebesman',1976,NULL),(509484,'Deborah Liebling',NULL,NULL),(509510,'Robert Liebmann',1890,1942),(509549,'Jutta Lieck-Klenke',1951,NULL),(509580,'Rob Liefeld',1967,NULL),(509583,'Jan Josef Liefers',1964,NULL),(509627,'Clint Lien',NULL,NULL),(509672,'Robert Liensol',1922,2011),(509824,'Tina Lifford',NULL,NULL),(509828,'Clay Liford',1974,NULL),(509977,'David Lightfoot',1960,2021),(510022,'Georgina Lightning',1963,NULL),(510024,'Louis D. Lighton',1895,1963),(510032,'Marilyn Lightstone',1940,NULL),(510085,'Mitsos Ligizos',1912,1993),(510134,'Paul Lukas',1895,1971),(510168,'Shad Moss',1987,NULL),(510275,'Rebecka Liljeberg',1981,NULL),(510360,'Joseph J. Lilley',1913,1971),(510418,'Rachael Lillis',1969,NULL),(510458,'Jennifer Lilly',1973,2021),(510533,'Giong Lim',1964,NULL),(510546,'Ji-Eun Lim',1975,NULL),(510674,'Kevin Lima',1962,NULL),(510731,'Doug Liman',1965,NULL),(510768,'Yvonne Lime',1935,NULL),(510789,'Ulrich Limmer',1955,NULL),(510857,'Brigitte Lin',1954,NULL),(510871,'Teng-Fei Lin',NULL,NULL),(510908,'Jong Lin',NULL,NULL),(510912,'Justin Lin',1971,NULL),(510914,'Kelly Lin',1975,NULL),(510936,'Patrick Lin',NULL,NULL),(510956,'Sophia Lin',NULL,NULL),(510964,'Wei-Tse Lin',1965,NULL),(511088,'Andrew Lincoln',1973,NULL),(511104,'Elmo Lincoln',1889,1952),(511107,'Fred J. Lincoln',1936,2013),(511142,'Victoria Lincoln',1904,1981),(511219,'John F. Link',NULL,NULL),(511270,'Traci Lind',1968,NULL),(511429,'Lalainia Lindbjerg',1974,NULL),(511458,'Gunnel Lindblom',1931,2021),(511482,'David Linde',1960,NULL),(511541,'Damon Lindelof',1973,NULL),(511599,'Eric Linden',1909,1994),(511604,'Hal Linden',1931,NULL),(511614,'Jennie Linden',1939,NULL),(511626,'Margaret Linden',NULL,NULL),(511698,'Dixie Linder',NULL,NULL),(511707,'George Linder',NULL,NULL),(511723,'Leslie Linder',1924,2010),(511729,'Max Linder',1883,1925),(511742,'Stu Linder',1931,2006),(511798,'Viveca Lindfors',1920,1995),(511807,'Astrid Lindgren',1907,2002),(511825,'Göran Lindgren',1927,2012),(511841,'Lisa Lindgren',1968,NULL),(511856,'Peter Lindgren',1915,1981),(511892,'Thure Lindhardt',1974,NULL),(511943,'Natacha Lindinger',1970,NULL),(511964,'Audra Lindley',1918,1997),(511979,'John Lindley',NULL,NULL),(512054,'Jimena Lindo',1976,NULL),(512068,'Lionel Lindon',1905,1971),(512071,'Vincent Lindon',1959,NULL),(512137,'John Ajvide Lindqvist',1968,NULL),(512215,'Erik Lindsay',NULL,NULL),(512231,'Howard Lindsay',1889,1968),(512243,'Joan Lindsay',1896,1984),(512265,'Louis Lindsay',1910,1962),(512267,'Margaret Lindsay',1910,1981),(512284,'Norman Lindsay',1879,1969),(512304,'Robert Lindsay',NULL,NULL),(512327,'Michael Lindsay-Hogg',1940,NULL),(512399,'Steve Lindsey',NULL,NULL),(512455,'Jon Lindstrom',NULL,NULL),(512461,'Lisa Lindstrom',NULL,NULL),(512469,'Johan Lindström Saxon',NULL,NULL),(512482,'Bibi Lindström',1904,1984),(512502,'Jörgen Lindström',1951,NULL),(512570,'Manne Lindwall',1975,NULL),(512686,'Barbara Ling',NULL,NULL),(512744,'Tony Slater Ling',NULL,NULL),(512746,'Van Ling',1963,NULL),(512839,'Buzzy Linhart',1943,2020),(512862,'Caroline Link',1964,NULL),(512894,'William Link',1933,2020),(512933,'Eric Linklater',1899,1974),(512934,'Hamish Linklater',1976,NULL),(512963,'Cody Linley',1989,NULL),(512975,'Carolyn Linn',NULL,NULL),(512999,'Marc Linn',NULL,NULL),(513005,'Michael Linn',NULL,NULL),(513028,'Väinö Linna',1920,1992),(513044,'Timo Linnasalo',1945,NULL),(513061,'Michael Linnen',NULL,NULL),(513130,'Paulo Lins',1958,NULL),(513165,'Art Linson',1942,NULL),(513170,'John Linson',NULL,NULL),(513190,'Derek de Lint',1950,NULL),(513197,'David Linter',NULL,NULL),(513281,'Alex D. Linz',1989,NULL),(513294,'Philip Linzey',NULL,NULL),(513299,'Lio',1962,NULL),(513325,'Leon M. Lion',1879,1947),(513371,'Philippe Lioret',1955,NULL),(513403,'J.P. Lipa',NULL,NULL),(513512,'Jerzy Lipman',1922,1983),(513520,'Maureen Lipman',1946,NULL),(513522,'Nicola Lipman',NULL,NULL),(513554,'Zach Lipovsky',NULL,NULL),(513601,'Ken Lipper',1941,NULL),(513621,'Robert L. Lippert',1909,1976),(513644,'Norman Lippincott',NULL,NULL),(513790,'Jeff Lipsky',NULL,NULL),(513799,'Bradford Lipson',NULL,NULL),(513823,'Harold Lipstein',1898,1974),(513858,'Lew Lipton',1893,1961),(513913,'Soia Lira',NULL,NULL),(513927,'Fabien Liron',NULL,NULL),(513974,'Steven Lisberger',1951,NULL),(514007,'Theodore Liscinski',NULL,NULL),(514043,'Bill Lishman',1939,2017),(514059,'Virna Lisi',1936,2014),(514090,'Pavel Liska',1972,NULL),(514097,'Zdenek Liska',1922,1983),(514127,'Julie Arnold Lisnet',NULL,NULL),(514155,'Clarice Lispector',1920,1977),(514264,'Paul Lister',NULL,NULL),(514284,'James Liston',NULL,NULL),(514344,'John Litel',1892,1972),(514403,'Bodan Litnanski',NULL,NULL),(514458,'Guy Littaye',NULL,NULL),(514481,'Susan Littenberg',NULL,NULL),(514517,'Ann Little',1891,1984),(514528,'Carole Little',1934,2015),(514546,'Dwight H. Little',1956,NULL),(514633,'Michele Little',NULL,NULL),(514643,'Pauline Little',NULL,NULL),(514662,'Ryan Little',1971,NULL),(514707,'Lucien Littlefield',1895,1960),(514746,'Carol Littleton',1942,NULL),(514761,'Greg Littlewood',NULL,NULL),(514788,'George Litto',1930,2019),(514817,'Andrew Litvack',1964,NULL),(514821,'Alex Litvak',NULL,NULL),(514822,'Anatole Litvak',1902,1974),(514843,'Si Litvinoff',1929,2022),(514852,'Renata Litvinova',1967,NULL),(514904,'Chia-Hui Liu',1951,NULL),(514906,'Chia-Liang Liu',1936,2013),(514936,'Heng Liu',NULL,NULL),(514997,'Quiang Liu',NULL,NULL),(515005,'Sam Liu',NULL,NULL),(515116,'Blake Lively',1987,NULL),(515187,'Jack Livesey',NULL,NULL),(515193,'Roger Livesey',1906,1976),(515201,'Jean-Louis Livi',1941,NULL),(515207,'Ruth Livier',NULL,NULL),(515226,'Ben Livingston',NULL,NULL),(515245,'Harold Livingston',1924,2022),(515255,'Jennie Livingston',NULL,NULL),(515272,'Margaret Livingston',1895,1984),(515282,'Paul Livingston',1956,NULL),(515296,'Ron Livingston',1967,NULL),(515297,'Roy V. Livingston',1906,1967),(515303,'Todd Livingston',NULL,NULL),(515336,'Russell Livingstone',NULL,NULL),(515355,'Guy Livneh',NULL,NULL),(515440,'Anna Lizaran',1944,2013),(515510,'Philippe Liégeois',NULL,NULL),(515700,'Leonor Llausás',1929,2003),(515751,'Richard Llewellyn',1906,1983),(515766,'Danny Llewelyn',NULL,NULL),(515891,'Luis Llosa',1951,NULL),(515908,'Andrew Lloyd Webber',1948,NULL),(515921,'Art Lloyd',1897,1954),(515941,'Christopher Lloyd',1960,NULL),(515950,'Danny Lloyd',1972,NULL),(515979,'Frank Lloyd',1886,1960),(515989,'George Lloyd',1892,1967),(516001,'Harold Lloyd',1893,1971),(516038,'John J. Lloyd',1922,2014),(516039,'John Robert Lloyd',1920,1998),(516056,'Lauren Lloyd',NULL,NULL),(516083,'Michael Lloyd',1948,NULL),(516121,'Rollo Lloyd',1883,1938),(516125,'Russell Lloyd',1916,2008),(516145,'Sue Lloyd',1939,2011),(516162,'Walt Lloyd',1950,NULL),(516215,'Tony Lo Bianco',1936,NULL),(516222,'Luigi Lo Cascio',1967,NULL),(516272,'Enrico Lo Verso',1964,NULL),(516316,'Lieh Lo',1939,2002),(516317,'Lincoln Lo',NULL,NULL),(516319,'Lowell Lo',NULL,NULL),(516326,'Mayin Lo',NULL,NULL),(516360,'Ken Loach',1936,NULL),(516384,'Terry Loane',NULL,NULL),(516385,'Tim Loane',NULL,NULL),(516465,'Mike Lobell',NULL,NULL),(516598,'Robert LoCash',NULL,NULL),(516607,'Al Locatelli',1939,2011),(516634,'David Lochary',1944,1977),(516779,'Peter Locke',NULL,NULL),(516800,'Sondra Locke',1944,2018),(516805,'Taylor Locke',1984,NULL),(516810,'William J. Locke',1863,1930),(516876,'Gene Lockhart',1891,1957),(516880,'Julie Lockhart',NULL,NULL),(516894,'Robert Lockhart',1959,2012),(516908,'Andrew Lockington',1974,NULL),(516972,'Gary Lockwood',1937,NULL),(516994,'Margaret Lockwood',1916,1990),(517015,'Malcolm Lockyer',1923,1976),(517044,'Carlo Lodato',1919,2005),(517056,'Barbara Loden',1932,1980),(517058,'John Loder',1898,1988),(517059,'Anne Marie DeLuise',1969,NULL),(517064,'Kurt Loder',1945,NULL),(517099,'John Lodge',1903,1985),(517109,'John Trumper',1923,2004),(517119,'Stephen Lodge',1943,2017),(517188,'Jeph Loeb',1958,NULL),(517216,'Lee Loeb',1910,1978),(517264,'Louis R. Loeffler',1897,1972),(517350,'Frederick Loewe',1901,1988),(517374,'Rose Loewinger',1902,2000),(517452,'Hugh Lofting',1886,1947),(517512,'Bellina Logan',1966,NULL),(517517,'Bob Logan',NULL,NULL),(517521,'Bruce Logan',NULL,NULL),(517567,'Helen Logan',1906,1989),(517589,'John Logan',1961,NULL),(517597,'Joshua Logan',1908,1988),(517615,'Michael Logan',NULL,NULL),(517642,'Phyllis Logan',1956,NULL),(517768,'Dimitri Logothetis',NULL,NULL),(517792,'Karina Logue',1966,NULL),(517808,'Grace Loh',NULL,NULL),(517820,'Lindsay Lohan',1986,NULL),(517844,'Alison Lohman',1979,NULL),(517872,'Michael Lohmann',NULL,NULL),(517873,'Paul Lohmann',1926,1995),(517937,'Marleen Lohse',1984,NULL),(517975,'Florence Loiret Caille',1975,NULL),(518025,'Thomas Loizeaux',1945,2007),(518085,'Kristanna Loken',1979,NULL),(518101,'Andres Lokko',1967,NULL),(518123,'Julia Loktev',1969,NULL),(518239,'Herbert Lomas',1887,1961),(518321,'Louise Lombard',NULL,NULL),(518422,'Giovanni Lombardo Radice',1954,2023),(518470,'Lou Lombardo',1932,2002),(518505,'Tony Lombardo',NULL,NULL),(518561,'Daniel A. Lomino',NULL,NULL),(518579,'Ulli Lommel',1944,2017),(518594,'Sharon Lomofsky',NULL,NULL),(518644,'Richard Loncraine',1946,NULL),(518666,'Alexandra London',1973,NULL),(518674,'Barbara London',NULL,NULL),(518687,'Daniel London',1973,NULL),(518711,'Jack London',1876,1916),(518715,'Jason London',1972,NULL),(518718,'Jeremy London',1972,NULL),(518719,'Jerry London',1937,NULL),(518755,'Melody London',NULL,NULL),(518757,'Michael London',NULL,NULL),(518773,'Robby London',NULL,NULL),(518799,'Alexandra London-Thompson',NULL,NULL),(518821,'John Lone',1952,NULL),(518836,'Kenneth Lonergan',1962,NULL),(518937,'David Long',NULL,NULL),(518979,'Hal Long',1907,1981),(519009,'Jeannie Long',NULL,NULL),(519026,'John Long',NULL,NULL),(519043,'Justin Long',1978,NULL),(519133,'Pamela K. Long',NULL,NULL),(519154,'Rachel Long',NULL,NULL),(519160,'Richard Long',1927,1974),(519274,'John Longden',1900,1971),(519296,'Claudine Longet',1942,NULL),(519351,'Sheryl Longin',1964,NULL),(519354,'Kim Longinotto',1952,NULL),(519371,'Victoria Longley',1960,2010),(519427,'Malisa Longo',1950,NULL),(519456,'Eva Longoria',1975,NULL),(519487,'Stephen Longstreet',1907,2002),(519530,'Barry Longyear',1942,NULL),(519558,'Gordon Lonsdale',NULL,NULL),(519642,'Lydia Look',1980,NULL),(519666,'Lisa Loomer',1950,NULL),(519735,'Anne-Marie Loop',NULL,NULL),(519760,'Mary Loos',1910,2004),(519765,'Theodor Loos',1883,1954),(519771,'William Loose',1910,1991),(519838,'Ilya Lopert',NULL,1971),(519933,'Nuno Lopes',1978,NULL),(520036,'Donald Roman Lopez',NULL,NULL),(520064,'George Lopez',1961,NULL),(520068,'Gerry Lopez',1948,NULL),(520164,'Perry Lopez',1929,2008),(520188,'Robert Lopez',1975,NULL),(520203,'Seidy Lopez',NULL,NULL),(520224,'Vernetta Lopez',NULL,NULL),(520234,'Kamala Lopez',NULL,NULL),(520288,'Santo Loquasto',1944,NULL),(520401,'Bryan Lord',1968,NULL),(520485,'Peter Lord',1953,NULL),(520488,'Phil Lord',1975,NULL),(520501,'Robert Lord',1900,1976),(520533,'Anne Lordon',NULL,NULL),(520569,'Olivier Lorelle',NULL,NULL),(520594,'Tray Loren',NULL,NULL),(520641,'Isabelle Lorente',NULL,NULL),(520749,'Robert Lorenz',NULL,NULL),(520831,'José Manuel Lorenzo',NULL,NULL),(520870,'Alexis Loret',1975,NULL),(520893,'Dean Lorey',1967,NULL),(520943,'Ray Loriga',1967,NULL),(520976,'Gérard Lorin',1927,2000),(521002,'Hope Loring',1894,1959),(521054,'Katia Loritz',1932,2015),(521059,'Claudia Lorka',NULL,NULL),(521233,'Los Lobos',NULL,NULL),(521295,'Norbert Losch',1941,NULL),(521310,'Frank Losee',1856,1937),(521334,'Joseph Losey',1909,1984),(521381,'Teri Losonci',NULL,NULL),(521385,'Árpád Lossonczy',1950,NULL),(521425,'Steve Loter',1973,NULL),(521443,'Susanne Lothar',1960,2012),(521471,'Dennis Lotis',1925,2023),(521554,'Evan A. Lottman',1931,2001),(521621,'Patrick Loubert',NULL,NULL),(521649,'David Loucka',NULL,NULL),(521681,'Michael Louden',1964,2004),(521723,'Catherine Lough Haggquist',NULL,NULL),(521739,'David Loughery',NULL,NULL),(521803,'Aku Louhimies',1968,NULL),(521812,'Alexina Louie',1949,NULL),(521829,'John Louie',1970,NULL),(521858,'Daniel Louis',1953,NULL),(521924,'Pierre Louis-Calixte',NULL,NULL),(521937,'Anita Louise',1915,1970),(521974,'Todd Louiso',1970,NULL),(522028,'John Lounsbery',1911,1976),(522046,'Julien Lourau',1970,NULL),(522123,'Eugène Lourié',1903,1991),(522151,'Olivier Loustau',NULL,NULL),(522173,'Hélène Louvart',1964,NULL),(522199,'Gert Jan Louwe',1956,NULL),(522205,'Sam Louwyck',1966,NULL),(522223,'Pierre Louÿs',1870,1925),(522234,'Michael Lovan',1983,NULL),(522277,'Andy Love',NULL,NULL),(522281,'Bessie Love',1898,1986),(522306,'Darlene Love',1938,NULL),(522370,'Lucretia Love',1941,2019),(522393,'Nick Love',1969,NULL),(522442,'William Love',NULL,NULL),(522454,'H.P. Lovecraft',1890,1937),(522481,'Frank Lovejoy',1912,1962),(522487,'Ray Lovejoy',1939,2001),(522502,'Kester Lovelace',NULL,NULL),(522545,'Dyson Lovell',1936,NULL),(522550,'Jacqueline Lovell',1974,NULL),(522554,'Jim Lovell',1928,NULL),(522590,'Ray Lovelock',1950,2017),(522603,'Robert Lovenheim',NULL,NULL),(522604,'Charlie Loventhal',NULL,NULL),(522634,'Jeremy Lovering',NULL,NULL),(522635,'Otho Lovering',1892,1968),(522645,'Tim Lovestedt',NULL,NULL),(522674,'Josephine Lovett',1877,1958),(522704,'David Lovgren',1969,NULL),(522757,'Michelle Lovretta',NULL,NULL),(522848,'Warren Low',1905,1989),(522871,'Edward T. Lowe Jr.',1890,1973),(522926,'Edmund Lowe',1890,1971),(522946,'Georgina Lowe',1962,NULL),(523000,'Lucas Lowe',NULL,NULL),(523056,'Susan Lowe',1948,NULL),(523061,'Tarik Lowe',NULL,NULL),(523094,'Jeff Lowell',1973,NULL),(523154,'Richard Lowenstein',1959,NULL),(523180,'Yuri Lowenthal',1971,NULL),(523191,'Tony Lower',1930,NULL),(523198,'Andrew Lowery',1970,NULL),(523239,'Jay Lowi',NULL,NULL),(523276,'Declan Lowney',1960,NULL),(523324,'Hunt Lowry',NULL,NULL),(523342,'Lois Lowry',1937,NULL),(523431,'John Loy',NULL,NULL),(523486,'Mariana Loyola',1975,NULL),(523488,'Roberto Loyola',1937,2000),(523543,'Salvador Lozano Mena',NULL,NULL),(523568,'Florencia Lozano',1969,NULL),(523717,'Yi-Ching Lu',1958,NULL),(523760,'Wei Lu',NULL,NULL),(523796,'Luanda',1977,NULL),(523881,'Emmanuel Lubezki',1964,NULL),(523893,'Arthur Lubin',1898,1995),(523932,'Ernst Lubitsch',1892,1947),(524003,'Torcuato Luca de Tena',1923,1999),(524026,'Tudor Lucaciu',NULL,NULL),(524095,'Caryn Lucas',NULL,NULL),(524096,'Charles D. Lucas',NULL,NULL),(524106,'Cleo Lucas',1902,NULL),(524108,'Craig Lucas',1951,NULL),(524188,'John Meredyth Lucas',1919,2002),(524190,'Jon Lucas',NULL,NULL),(524197,'Josh Lucas',1971,NULL),(524217,'Laurent Lucas',1965,NULL),(524220,'Leighton Lucas',1903,1982),(524235,'Marcia Lucas',1945,NULL),(524240,'Matt Lucas',1974,NULL),(524255,'Peter Lucas',NULL,NULL),(524261,'Ralph Lucas',NULL,NULL),(524306,'Wilfred Lucas',1871,1940),(524342,'Gary Lucchesi',NULL,NULL),(524403,'Clare Boothe Luce',1903,1987),(524425,'Elena Lucena',1914,2015),(524461,'Anthony Lucero',NULL,NULL),(524468,'Enrique Lucero',1920,1989),(524494,'Leon Lucev',1970,NULL),(524528,'Fabrice Luchini',1951,NULL),(524597,'Michael Luciano',1909,1992),(524636,'Marcel Lucien',NULL,NULL),(524669,'Federica Lucisano',NULL,NULL),(524670,'Fulvio Lucisano',1928,NULL),(524710,'Michael Lucker',NULL,NULL),(524726,'Bud Luckey',1934,2018),(524745,'Thad Luckinbill',1975,NULL),(524796,'Janet Lucroy',NULL,NULL),(524803,'Arnold Lucy',1865,1945),(524829,'Hugo Luczyc-Wyhowski',1957,NULL),(524839,'Ludacris',1977,NULL),(524853,'Barbara Luddy',1908,1979),(524855,'Tom Luddy',1943,2023),(524924,'Robert Ludlum',1927,2001),(525059,'Tony Ludwig',NULL,NULL),(525067,'William Ludwig',1912,1999),(525076,'Ted Ludzik',1966,NULL),(525104,'Kurt Luedtke',1939,2020),(525141,'John Luessenhop',NULL,NULL),(525303,'Baz Luhrmann',1962,NULL),(525328,'Mark Lui',1969,NULL),(525405,'Michael J. Luisi',NULL,NULL),(525495,'Damir Lukacevic',NULL,NULL),(525503,'Steve LuKanic',NULL,NULL),(525518,'Florian Lukas',1973,NULL),(525654,'Oldrich Lukes',1909,1980),(525659,'Robert Luketic',1973,NULL),(525665,'Butch Lukic',NULL,NULL),(525742,'Wolfgang Lukschy',1905,1983),(525793,'Folco Lulli',1912,1970),(525794,'Piero Lulli',1923,1991),(525873,'Lisa Lumby-Richards',NULL,NULL),(525886,'Jenny Lumet',1967,NULL),(525900,'Mrs. Auguste Lumiere',1874,1963),(525908,'Auguste Lumière',1862,1954),(525910,'Louis Lumière',1864,1948),(525921,'Joanna Lumley',1946,NULL),(525961,'D. Scott Lumpkin',NULL,NULL),(525972,'Norman Lumsden',1906,2001),(525988,'Luna',NULL,NULL),(526019,'Diego Luna',1979,NULL),(526092,'Tim Luna',NULL,NULL),(526199,'Kátia Lund',1966,NULL),(526259,'Zoë Lund',1962,1999),(526406,'Joan Lunden',1950,NULL),(526412,'Karen Lunder',NULL,NULL),(526456,'P.A. Lundgren',1911,2002),(526459,'Siv Lundgren',1945,NULL),(526479,'Lisa Lundholm',1892,1977),(526485,'William Lundigan',1914,1975),(526517,'Walter Lundin',1892,1954),(526581,'Maria Lundqvist',1963,NULL),(526616,'Henrik Lundström',1983,NULL),(526720,'Romilly Lunge',1904,1994),(526724,'Cherie Lunghi',1952,NULL),(526728,'Malcolm Lunghi',NULL,NULL),(526732,'Pavel Lungin',1949,NULL),(526753,'John Lunn',1956,NULL),(526824,'Guanzhong Luo',1330,1400),(526876,'Gene Luotto',NULL,2011),(526917,'Daniel Lupi',NULL,NULL),(526946,'Ida Lupino',1918,1995),(526967,'Frank Lupo',1955,2021),(526971,'Michele Lupo',1932,1989),(526977,'Walter Lupo',NULL,NULL),(526985,'Patti LuPone',1949,NULL),(527002,'Federico Luppi',1934,2017),(527017,'John Lupton',1928,1993),(527091,'Deborah Lurie',1974,NULL),(527095,'Gwyn Lurie',NULL,NULL),(527097,'Jeffrey Lurie',1951,NULL),(527099,'John Lurie',1952,NULL),(527109,'Rod Lurie',1962,NULL),(527112,'Sean Lurie',NULL,NULL),(527167,'Tom Luse',NULL,NULL),(527217,'Hamilton Luske',1903,1968),(527261,'Patrick Lussier',NULL,NULL),(527278,'Andreas Lust',1967,NULL),(527322,'Branko Lustig',1932,2019),(527350,'William Lustig',1955,NULL),(527501,'Alfred Lutter III',1962,NULL),(527567,'George Lutz',1947,2006),(527581,'Karen McCullah',NULL,NULL),(527582,'Kathy Lutz',1946,2004),(527631,'Martin Luuk',1968,NULL),(527668,'Danny Lux',1969,NULL),(527735,'Adriano Luz',1959,NULL),(527741,'Dora Luz',1918,2018),(527852,'Noémie Lvovsky',1964,NULL),(527859,'Mark Lwoff',NULL,NULL),(527937,'Troels Lyby',1966,NULL),(528061,'Anette Lykke-Lundberg',1955,NULL),(528104,'Joseph Lyle',NULL,NULL),(528244,'Brian Lynch',1973,NULL),(528331,'Jane Lynch',1960,NULL),(528337,'Jennifer Lynch',1968,NULL),(528355,'John Lynch',1969,NULL),(528367,'Kate Lynch',NULL,NULL),(528381,'Liam Lynch',1970,NULL),(528420,'Paul Lynch',1946,NULL),(528462,'Susan Lynch',1971,NULL),(528485,'Tristan Lynch',NULL,NULL),(528508,'Laurie Lynd',1959,NULL),(528520,'Edmund Lyndeck',1925,2015),(528530,'Barré Lyndon',1896,1972),(528586,'Anni-Frid Lyngstad',1945,NULL),(528595,'Carol Lynley',1942,2019),(528621,'William H. Lynn',1888,1952),(528685,'George Lynn',1906,1964),(528705,'Jeffrey Lynn',1909,1995),(528718,'Jonathan Lynn',1943,NULL),(528724,'Julie Lynn',NULL,NULL),(528741,'Larry Lynn',NULL,NULL),(528750,'Loretta Lynn',1932,2022),(528761,'Meredith Scott Lynn',1970,NULL),(528790,'Robert Lynn',1918,1982),(528908,'Ben Lyon',1901,1979),(528924,'Earle Lyon',1918,2012),(528927,'Francis D. Lyon',1905,1996),(528930,'Gail Lyon',NULL,NULL),(528975,'Rick Lyon',1958,NULL),(528987,'Sue Lyon',1946,2019),(528995,'William A. Lyon',1903,1974),(529071,'James Lyons',1960,2007),(529092,'John S. Lyons',NULL,NULL),(529151,'Robin Lyons',NULL,NULL),(529227,'Lya Lys',1908,1986),(529300,'Patrick Lyster',NULL,NULL),(529353,'Ulla Lyttkens',1942,NULL),(529402,'Stanislav Lyubshin',1933,NULL),(529450,'Miklós László',1903,1973),(529452,'Zsolt László',1965,NULL),(529457,'Alejandro Lázaro',NULL,NULL),(529526,'Mats Långbacka',1963,NULL),(529543,'Jean-Pierre Léaud',1944,NULL),(529563,'Claude Léger',1945,2021),(529642,'David Léotard',NULL,NULL),(529646,'Eugène Lépicier',NULL,NULL),(529648,'Jean Lépine',1948,NULL),(529706,'Michel Léviant',1947,NULL),(529733,'Raoul Lévy',1922,1966),(529787,'Javier López Barreira',NULL,NULL),(529813,'Pilar López de Ayala',1978,NULL),(529867,'Joan López Lloret',1969,NULL),(529877,'Juan López Moctezuma',1932,1995),(529977,'Manuel López Yubero',NULL,NULL),(530144,'Héctor López',NULL,NULL),(530365,'Sergi López',1965,NULL),(530505,'Hans Lönnerheden',1951,NULL),(530561,'Hans Löw',1976,NULL),(530581,'Elina Löwensohn',1966,NULL),(530594,'Klaus Löwitsch',1936,2002),(530668,'Orlando Lübbert',1945,NULL),(530804,'Monika M.',NULL,NULL),(530853,'Fibe Ma',NULL,NULL),(530864,'Jingwu Ma',NULL,NULL),(530917,'Dan Maag',1975,NULL),(530972,'Audrey Maas',1936,1975),(530978,'Ernest Maas',1891,1986),(530988,'Jon Maas',NULL,NULL),(530995,'Peter Maas',1929,2001),(531021,'John Maass',1960,NULL),(531027,'Theo Maassen',1966,NULL),(531042,'Lincoln Maazel',1903,2009),(531069,'Kate Maberly',1982,NULL),(531070,'Polly Maberly',1976,NULL),(531095,'Eric Mabius',1971,NULL),(531101,'Luke Mably',1976,NULL),(531195,'Vincent Macaigne',1978,NULL),(531244,'Dorothy Macardle',1889,1958),(531269,'Charles MacArthur',1895,1956),(531310,'Julio Macat',1957,NULL),(531335,'Richard Macaulay',1909,1969),(531337,'Scott Macaulay',NULL,NULL),(531381,'Bonnie MacBird',NULL,NULL),(531384,'Demetra J. MacBride',NULL,NULL),(531431,'Ruggero Maccari',1919,1989),(531529,'Catriona MacColl',1954,NULL),(531534,'Neil MacColl',NULL,NULL),(531546,'Simon MacCorkindale',1952,2010),(531584,'Marc McDermott',1871,1929),(531589,'Peter Macdissi',NULL,NULL),(531602,'Andrew Macdonald',1966,NULL),(531612,'Ann-Marie MacDonald',1958,NULL),(531627,'Betty MacDonald',1908,1958),(531688,'Don MacDonald',NULL,NULL),(531705,'Edmund MacDonald',1908,1951),(531726,'George MacDonald',1824,1905),(531751,'Hettie Macdonald',1962,NULL),(531759,'J. Farrell MacDonald',1875,1952),(531763,'James MacDonald',1906,1991),(531776,'Jeanette MacDonald',1903,1965),(531792,'John D. MacDonald',1916,1986),(531796,'Joseph MacDonald',1906,1968),(531799,'Josh MacDonald',NULL,NULL),(531808,'Kelly Macdonald',1976,NULL),(531817,'Kevin Macdonald',1967,NULL),(531827,'Laurie MacDonald',1953,NULL),(531878,'Philip MacDonald',1901,1980),(531924,'Scott MacDonald',NULL,NULL),(531930,'Sharman Macdonald',1951,NULL),(531933,'Shauna Macdonald',1981,NULL),(531966,'William MacDonald',NULL,NULL),(532030,'Ranald MacDougall',1915,1973),(532063,'Borden Mace',1920,2014),(532193,'Matthew Macfadyen',1974,NULL),(532235,'Seth MacFarlane',1973,NULL),(532277,'Niall MacGinnis',1913,1977),(532284,'Kenneth Macgowan',1888,1963),(532286,'Marian Macgowan',NULL,NULL),(532290,'Jack MacGowran',1918,1973),(532292,'Tara MacGowran',NULL,NULL),(532298,'Ali MacGraw',1939,NULL),(532368,'Peter Macgregor-Scott',1947,2017),(532478,'Mario Machado',1935,2013),(532530,'D.J. MacHale',1956,NULL),(532561,'Gustav Machatý',1901,1963),(532576,'Laurent Machuel',1960,NULL),(532611,'Hiroshi Machida',1954,NULL),(532672,'Ignacy Machowski',1920,2001),(532683,'Gabriel Macht',1972,NULL),(532772,'Katarzyna Maciejko-Kowalczyk',1948,2008),(532838,'Tim McIntire',1944,1986),(532900,'Martha MacIsaac',1984,NULL),(532914,'Daniel MacIvor',1962,NULL),(533006,'James T. Mack',1871,1948),(533024,'June Mack',1955,1984),(533045,'Marion Mack',1902,1989),(533129,'Anne-Marie Mackay',NULL,NULL),(533145,'David Mackay',NULL,NULL),(533161,'Fulton Mackay',1922,1987),(533241,'Alexander Mackendrick',1912,1993),(533284,'David Mackenzie',1966,NULL),(533324,'Jack MacKenzie',1892,1979),(533326,'Jan Sebastian',NULL,NULL),(533339,'Joyce Mackenzie',1925,2021),(533380,'Peter Mackenzie',NULL,NULL),(533384,'Phillip MacKenzie',NULL,NULL),(533418,'Æneas MacKenzie',1889,1962),(533489,'Doon Mackichan',1962,NULL),(533492,'Allison Mackie',NULL,NULL),(533534,'Ed MacKillop',NULL,NULL),(533549,'Billy MacKinnon',NULL,NULL),(533564,'Gillies MacKinnon',1948,NULL),(533583,'Cameron Mackintosh',1946,NULL),(533599,'Steven Mackintosh',1967,NULL),(533666,'Angus MacLachlan',NULL,NULL),(533691,'Angus MacLane',1975,NULL),(533692,'Barton MacLane',1902,1969),(533745,'Alistair MacLean',1922,1987),(533805,'Norman Maclean',1902,1990),(533820,'Stephen MacLean',1950,2006),(533826,'Alistair MacLean-Clark',NULL,NULL),(533891,'Gavin MacLeod',1931,2021),(533914,'Lewis Macleod',1970,NULL),(533938,'Wendy MacLeod',1959,NULL),(533956,'Aline MacMahon',1899,1991),(534013,'Kenneth MacMillan',1939,NULL),(534032,'Will MacMillan',1944,2015),(534045,'Fred MacMurray',1908,1991),(534084,'Ian MacNaughton',1925,2002),(534132,'Peter MacNeill',NULL,NULL),(534134,'Tress MacNeille',1951,NULL),(534173,'Rupert Maconick',NULL,NULL),(534191,'Angus MacPhail',1903,1962),(534207,'Don MacPherson',1954,NULL),(534215,'Glen MacPherson',NULL,NULL),(534221,'Jeanie Macpherson',1886,1946),(534252,'Albert MacQuarrie',1882,1950),(534268,'Scott MacQueen',1955,NULL),(534274,'Arthur Macrae',1908,1962),(534286,'Gordon MacRae',1921,1986),(534311,'J.B. Macrander',NULL,NULL),(534317,'George Macready',1899,1973),(534343,'Andrew MacRitchie',NULL,NULL),(534347,'Alma Macrorie',1904,1970),(534352,'Malcolm MacRury',NULL,NULL),(534428,'Jirí Macák',1939,2023),(534442,'Belén Macías',1970,NULL),(534451,'Juan Carlos Macías',1945,NULL),(534509,'Larry Madaras',NULL,NULL),(534540,'Vivek Maddala',1973,NULL),(534543,'Marianne Maddalena',1957,NULL),(534574,'David Madden',1955,NULL),(534577,'Donald Madden',1933,1983),(534635,'Richard Madden',1986,NULL),(534658,'Victor Maddern',1928,1993),(534665,'Guy Maddin',1956,NULL),(534673,'Eric Maddison',1974,NULL),(534681,'Brent Maddock',NULL,NULL),(534693,'Ben Maddow',1909,1992),(534774,'Isabelle Madelaine',NULL,NULL),(534794,'Mader',1958,NULL),(534856,'Madhavan',1970,NULL),(534893,'Alix Madigan',NULL,NULL),(534944,'James Madio',1975,NULL),(534972,'Guy Madison',1922,1996),(534985,'Julian Madison',1907,1972),(535006,'Noel Madison',1897,1975),(535046,'Jordan Madley',1978,NULL),(535053,'Philip Madoc',1934,2012),(535107,'Juan Madrid',1947,NULL),(535189,'David Madsen',NULL,NULL),(535295,'Roman Madyanov',1962,NULL),(535320,'Jack Maeby',NULL,NULL),(535323,'Klaus Maeck',1954,NULL),(535329,'Aki Maeda',1985,NULL),(535330,'Bibari Maeda',1948,NULL),(535338,'Koko Maeda',1965,NULL),(535340,'Mahiro Maeda',1963,NULL),(535346,'Shigeji Maeda',NULL,NULL),(535351,'Tetsu Maeda',1972,NULL),(535393,'Christian Maelen',NULL,NULL),(535502,'Mía Maestro',NULL,NULL),(535512,'Kurt Maetzig',1911,2012),(535706,'Jose Magan',NULL,NULL),(535718,'Elena Maganini',NULL,NULL),(535837,'Francis Magee',1969,NULL),(535850,'Ken Magee',1946,2015),(535861,'Patrick Magee',1922,1982),(535940,'Maria Maggenti',1962,NULL),(535991,'Pupella Maggio',1910,1999),(536009,'Lamberto Maggiorani',1909,1983),(536056,'Mark Magidson',NULL,NULL),(536095,'Benoît Magimel',1974,NULL),(536134,'Licia Maglietta',1954,NULL),(536167,'Anna Magnani',1908,1973),(536249,'Claude Magnier',1920,1983),(536251,'Franck Magnier',NULL,NULL),(536252,'Pierre Magnier',1869,1959),(536281,'Deedee Magno',1975,NULL),(536299,'Albert Magnoli',NULL,NULL),(536370,'Dennis Magnusson',1968,NULL),(536385,'Kim Magnusson',1965,NULL),(536410,'Tivi Magnusson',1942,NULL),(536440,'Jymn Magon',1949,NULL),(536461,'Kate Magowan',1975,NULL),(536476,'Cassandra Magrath',NULL,NULL),(536479,'Gavin Magrath',NULL,NULL),(536485,'Frank Magree',NULL,NULL),(536587,'Jeff Maguire',NULL,NULL),(536630,'Sean Maguire',1976,NULL),(536632,'Sharon Maguire',1960,NULL),(536723,'Valerie Mahaffey',1953,NULL),(536780,'Thomas D. Mahard',NULL,NULL),(536805,'Haim Saban',1944,NULL),(536883,'Sean Maher',1975,NULL),(536941,'John Lee Mahin',1902,1984),(536954,'Hossein Mahjoub',NULL,NULL),(536989,'Horst Mahler',1936,NULL),(537004,'Zdenek Mahler',1928,2018),(537051,'Doug Mahnke',1963,NULL),(537164,'Michael Mahoney',NULL,NULL),(537199,'Victoria Mahoney',NULL,NULL),(537248,'Diane Adelson',1944,NULL),(537305,'Thomas Mai',NULL,NULL),(537339,'João Maia',NULL,NULL),(537363,'Richard Maibaum',1909,1991),(537370,'Simona Maicanescu',NULL,NULL),(537386,'Heather Maidat',NULL,NULL),(537392,'Rita Maiden',1928,2017),(537402,'Rex Maidment',NULL,NULL),(537427,'Christine A. Maier',NULL,NULL),(537436,'F.X. Maier',NULL,NULL),(537545,'John Buffalo Mailer',1978,NULL),(537550,'Michael Mailer',1964,NULL),(537626,'Jacques Maillot',1962,NULL),(537648,'Deborah Mailman',1972,NULL),(537685,'Marjorie Main',1890,1975),(537734,'Gabriele Mainetti',1976,NULL),(537754,'Beate Mainka-Jellinghaus',1936,NULL),(537784,'Daniel Mainwaring',1902,1977),(537884,'Ileen Maisel',NULL,NULL),(537961,'Lorna Maitland',1943,NULL),(538048,'Krzysztof Majchrzak',1948,NULL),(538107,'Lech Majewski',1953,NULL),(538199,'Klára Major',1957,NULL),(538320,'Alan Mak',1965,NULL),(538332,'Johnny Mak',1949,NULL),(538443,'Heike Makatsch',1971,NULL),(538460,'Miriam Makeba',1932,2008),(538530,'Maysam Makhmalbaf',NULL,NULL),(538532,'Mohsen Makhmalbaf',1957,NULL),(538566,'Maky Soler',1974,NULL),(538592,'Tarô Maki',1955,NULL),(538610,'David A. Makin',NULL,NULL),(538620,'Adetoro Makinde',NULL,NULL),(538641,'Riho Makise',1971,NULL),(538655,'Wendy Makkena',1958,NULL),(538683,'Mako',1933,2006),(538763,'Anatoliy Maksimov',1961,NULL),(538783,'Antonina Maksimova',1916,1986),(538869,'Patrick Malahide',1945,NULL),(538897,'Bernard Malamud',1914,1986),(538901,'Philip Malamuth',NULL,NULL),(538935,'Tony Malanowski',1957,NULL),(538980,'Andrés Malatesta',NULL,NULL),(539082,'Romany Malco',1968,NULL),(539342,'Parviz Malekzaade',1944,NULL),(539395,'Arthur Malet',1927,2013),(539431,'Gloria Maley',NULL,NULL),(539438,'Nick Maley',1949,NULL),(539562,'Art Malik',1952,NULL),(539633,'Howard Malin',NULL,NULL),(539654,'Maggie Malina',NULL,NULL),(539678,'Ross Malinger',1984,NULL),(539719,'Greg Malins',1967,NULL),(539782,'Cathy Malkasian',NULL,NULL),(539784,'Melik Malkasian',NULL,NULL),(539787,'Cylia Malki',1976,NULL),(539794,'Barry Malkin',1938,2019),(539803,'Laurence Malkin',NULL,NULL),(539942,'Miles Malleson',1888,1969),(539981,'Fanny Mallette',1975,NULL),(539990,'Bill Malley',1934,2023),(540009,'Jeffrey B. Mallian',1954,NULL),(540038,'Søren Malling',1964,NULL),(540075,'Jim Mallon',1956,NULL),(540164,'Matt Malloy',1963,NULL),(540176,'Tom Malloy',1974,NULL),(540245,'Lennart Malmer',1941,NULL),(540269,'Charlotte Malmlöf',NULL,NULL),(540283,'Skuli Fr. Malmquist',1973,NULL),(540297,'Ulf Malmros',1965,NULL),(540311,'Birger Malmsten',1920,1991),(540330,'Bruce Malmuth',1934,2005),(540331,'Dan Malmuth',1944,NULL),(540338,'Matty Malneck',1903,1981),(540352,'Gina Malo',1909,1963),(540365,'Ivan Maloca',NULL,NULL),(540416,'Dorothy Malone',1924,2018),(540441,'Jena Malone',1984,NULL),(540500,'Randal Malone',1959,NULL),(540532,'William Malone',1953,NULL),(540593,'Patty Maloney',1936,NULL),(540598,'Ralph Maloney',NULL,NULL),(540627,'Thomas Malory',1414,1471),(540647,'Albert Hay Malotte',1895,1964),(540759,'Richard Maltby Jr.',1937,NULL),(540767,'Lauren Maltby',1984,NULL),(540791,'San Fu Maltha',1958,NULL),(540816,'Albert Maltz',1908,1985),(540862,'Paul Malvern',1902,1993),(540962,'Mathias Malzieu',1974,NULL),(541048,'Valerie Mamches',1941,2015),(541082,'Zosia Mamet',1988,NULL),(541104,'Nargess Mamizadeh',NULL,NULL),(541120,'Robert Mammone',1971,NULL),(541136,'Pyotr Mamonov',1951,2021),(541149,'Rouben Mamoulian',1897,1987),(541218,'Method Man',1971,NULL),(541240,'Riichirô Manabe',1924,2015),(541244,'Nobuhiko Ôbayashi',1938,2020),(541359,'Josh Mancell',NULL,NULL),(541389,'Jean-Patrick Manchette',1942,1995),(541548,'Frank Mancuso Jr.',1958,NULL),(541557,'Elsio Mancuso',NULL,NULL),(541562,'Gail Mancuso',1958,NULL),(541632,'Babaloo Mandel',1949,NULL),(541635,'David Mandel',1970,NULL),(541641,'Frank Mandel',1884,1958),(541675,'Rena Mandel',1911,1987),(541677,'Robert Mandel',1945,NULL),(541691,'Nelson Mandela',1918,2013),(541721,'Daniel Mandell',1895,1987),(541766,'Miles Mander',1888,1946),(541812,'David Mandil',NULL,NULL),(541833,'Fred Mandl',1908,1985),(541900,'Joseph Manduke',NULL,2020),(541902,'Aasif Mandvi',1966,NULL),(541908,'Costas Mandylor',1965,NULL),(541932,'Tyler Mane',1966,NULL),(541980,'Sam Manners',1921,2012),(541991,'Fritz Manes',1932,2011),(542000,'Marshall Manesh',1950,NULL),(542009,'Gaspard Manesse',1975,NULL),(542062,'Matt Manfredi',1971,NULL),(542063,'Nino Manfredi',1921,2004),(542133,'Joe Manganiello',1976,NULL),(542333,'Michael Manheim',NULL,NULL),(542364,'Teodoro Maniaci',1961,NULL),(542450,'Ethan Maniquis',NULL,NULL),(542492,'Rizwan Manji',1974,NULL),(542531,'Don Mankiewicz',1922,2015),(542534,'Herman J. Mankiewicz',1897,1953),(542539,'Tom Mankiewicz',1942,2010),(542551,'Doug Mankoff',NULL,NULL),(542552,'Isidore Mankofsky',1931,2021),(542554,'Wolf Mankowitz',1924,1998),(542559,'Cusse Mankuma',NULL,NULL),(542568,'Chris Manley',NULL,NULL),(542611,'Dudley Manlove',1914,1996),(542635,'Alakina Mann',1990,NULL),(542649,'Anthony Mann',1906,1967),(542702,'Daniel Mann',1912,1991),(542720,'Delbert Mann',1920,2007),(542759,'Gabriel Mann',NULL,NULL),(542777,'Heinrich Mann',1871,1950),(542802,'Jeff Mann',1965,NULL),(542847,'Larry D. Mann',1922,2014),(542950,'Roman Mann',1911,1960),(542970,'Stanley Mann',1928,2016),(542977,'Steve Mann',NULL,NULL),(542994,'Terrence Mann',1951,NULL),(543042,'Rita Manna',NULL,NULL),(543061,'Donovan Mannato',NULL,NULL),(543066,'Karl Heinz Mannchen',1923,1996),(543115,'David Manners',1900,1998),(543169,'Lucie Mannheim',1899,1976),(543171,'Albert Mannheimer',1913,1972),(543339,'Michelle Manning',NULL,NULL),(543383,'Taryn Manning',NULL,NULL),(543438,'Daniel P. Mannix',1911,1997),(543524,'Yôichi Manoda',NULL,NULL),(543529,'Arnold Manoff',1914,1965),(543547,'Predrag \'Miki\' Manojlovic',1950,NULL),(543583,'Marcia Manon',1896,1973),(543619,'Guy Manos',1959,NULL),(543659,'Beatrice Manowski',1968,NULL),(543739,'Clint Mansell',1963,NULL),(543743,'Edward Mansell',NULL,NULL),(543773,'Michael Mansfeld',1922,1979),(543779,'David Mansfield',1956,NULL),(543790,'Jayne Mansfield',1933,1967),(543896,'Luis Manso',1961,NULL),(543919,'Graeme Manson',NULL,NULL),(543924,'Héléna Manson',1898,1994),(544067,'Michael Mantell',NULL,NULL),(544275,'Robert Manuel',1916,1995),(544279,'Stephen Manuel',1971,NULL),(544306,'Guido Manuli',1939,NULL),(544307,'John Bard Manulis',1956,NULL),(544334,'Lesley Manville',1956,NULL),(544371,'Linda Manz',1961,2020),(544432,'José Luis Manzano',1963,1992),(544448,'Sonia Manzano',1950,NULL),(544465,'Dagmar Manzel',1958,NULL),(544611,'William Mapother',NULL,NULL),(544691,'Maria del Mar',1964,NULL),(544718,'Kate Mara',1983,NULL),(544768,'Matthew Maraffi',NULL,NULL),(544786,'Jean Marais',1913,1998),(544839,'Agostino Marangolo',NULL,NULL),(544947,'Vincent Maraval',NULL,NULL),(544999,'Patrick Marber',1964,NULL),(545150,'Kelly Marcel',1974,NULL),(545166,'Sylvain Marcel',1964,NULL),(545294,'Elspeth March',1911,1999),(545298,'Fredric March',1897,1975),(545309,'Joseph Moncure March',1899,1977),(545341,'William March',1893,1954),(545356,'Olivier Marchal',1958,NULL),(545378,'Corinne Marchand',1937,NULL),(545382,'Gilles Marchand',1963,NULL),(545383,'Guy Marchand',1937,NULL),(545384,'Henri Marchand',1898,1959),(545401,'Léopold Marchand',1891,1952),(545408,'Nancy Marchand',1928,2000),(545455,'William Marchant',1923,1995),(545480,'Ascen Marchena',NULL,NULL),(545661,'Lele Marchitelli',NULL,NULL),(545690,'Francesca Marciano',1955,NULL),(545729,'Mikael Marcimain',1970,NULL),(545730,'Max Marcin',1879,1948),(545731,'Natalie Marcin',NULL,NULL),(545803,'Paul Marco',1927,2006),(545822,'Alain Marcoen',NULL,NULL),(545838,'André Marcon',1948,NULL),(545861,'David Marconi',NULL,NULL),(546008,'Paula Markovitch',1968,NULL),(546057,'Adam Marcus',1968,NULL),(546064,'Andrew Marcus',NULL,NULL),(546083,'Cindy Marcus',NULL,NULL),(546095,'Edward Marcus',NULL,NULL),(546105,'Frank Marcus',1928,1996),(546140,'Lawrence B. Marcus',1917,2001),(546152,'Mike Marcus',NULL,NULL),(546172,'Richard Marcus',1945,NULL),(546222,'Elio Marcuzzo',1917,1945),(546263,'Richard Marden',1928,2006),(546267,'Barry Marder',NULL,NULL),(546278,'Marc Marder',1955,NULL),(546502,'Harald Maresch',1916,1986),(546516,'Janie Marèse',1908,1931),(546540,'Simone Mareuil',1903,1954),(546621,'Gilles Margaritis',1912,1965),(546640,'Bam Margera',1979,NULL),(546753,'François Margolin',1955,NULL),(546755,'Janet Margolin',1943,1993),(546797,'Mark Margolis',1939,2023),(546816,'Miriam Margolyes',1941,NULL),(546869,'Donald Margulies',NULL,NULL),(546876,'Stan Margulies',1920,2001),(546918,'Fiorella Mari',1928,1983),(546938,'Pasquale Mari',NULL,NULL),(547038,'Susanne Marian',NULL,NULL),(547050,'Dario Marianelli',1963,NULL),(547119,'Detto Mariano',1937,2020),(547175,'Matt Marich',NULL,NULL),(547218,'Ann Marie',1953,NULL),(547226,'Bobbie Marie',NULL,NULL),(547349,'Eli Marienthal',1986,NULL),(547376,'Martine Marignac',1946,2022),(547446,'Edwin L. Marin',1899,1951),(547544,'Ed Marinaro',1950,NULL),(547579,'Anthony Marinelli',1959,NULL),(547585,'Larry Marinelli',1939,2018),(547647,'Margarida Marinho',1963,NULL),(547776,'Gerard K. Marino',1968,NULL),(547800,'Ken Marino',1968,NULL),(547850,'Tony Marino',NULL,NULL),(547876,'Lex Marinos',1949,NULL),(547912,'Juan Mariné',1920,NULL),(547938,'George Marion Jr.',1899,1968),(547966,'Frances Marion',1888,1973),(547975,'George F. Marion',1860,1945),(548094,'Ernst Marischka',1893,1963),(548096,'Georg Marischka',1922,1999),(548117,'Jos Marissen',NULL,NULL),(548151,'Giorgio Mariuzzo',1939,2023),(548169,'Nicolas Marié',1954,NULL),(548233,'Diane Mei Lin Mark',NULL,NULL),(548257,'Laurence Mark',NULL,NULL),(548277,'Anya Ormsby',1947,NULL),(548299,'Tony Mark',NULL,NULL),(548335,'Heidi Jo Markel',1971,NULL),(548346,'Jodie Markell',1959,NULL),(548355,'Jane Marken',1895,1976),(548402,'Enid Markey',1894,1981),(548403,'Gene Markey',1895,1980),(548410,'Patrick Markey',NULL,NULL),(548449,'Monte Markham',1935,NULL),(548486,'Miguel Markin',NULL,NULL),(548498,'Brian Markinson',1961,NULL),(548529,'Fletcher Markle',1921,1991),(548619,'Margaret Markov',1948,NULL),(548638,'Ekaterina Markova',1946,NULL),(548665,'Petar Markovic',1955,NULL),(548699,'Steven Markovitz',NULL,NULL),(548718,'Barry Markowitz',NULL,NULL),(548732,'Mitch Markowitz',NULL,NULL),(548736,'Sally Robinson',NULL,NULL),(548740,'Robert Markowitz',1935,NULL),(548776,'Bill Marks',NULL,NULL),(548808,'Dennis Marks',1932,2006),(548869,'Johnny Marks',1909,1985),(548896,'Leo Marks',1920,2001),(548903,'Louis Marks',1928,2010),(548929,'Owen Marks',1899,1960),(548942,'Ria Marks',1953,NULL),(548943,'Richard Marks',1943,2018),(548993,'Ben Markson',1897,1971),(548999,'George Markstein',1929,1987),(549134,'John Marley',1907,1984),(549150,'Carla Marlier',1937,NULL),(549256,'Andrew W. Marlowe',NULL,NULL),(549275,'Gary Marlowe',1967,NULL),(549280,'Hugh Marlowe',1911,1982),(549293,'June Marlowe',1903,1984),(549366,'Yves Marmion',NULL,NULL),(549369,'Malia Scotch Marmo',1957,NULL),(549385,'Percy Marmont',1883,1977),(549393,'Malcolm Marmorstein',1928,2020),(549406,'Jeanne Marnac',1892,1976),(549478,'Jean-Pierre Marois',1963,NULL),(549505,'Marc Maron',1963,NULL),(549516,'Patrizio Marone',1971,NULL),(549526,'Kelli Maroney',NULL,NULL),(549592,'Franco Marotta',NULL,NULL),(549658,'Richard Marquand',1937,1987),(549665,'Brick Marquard',NULL,NULL),(549682,'Peter Marquardt',1964,2014),(549804,'Henri Marquet',1908,1980),(549815,'Christopher Marquette',1984,NULL),(549821,'Jacques R. Marquette',1915,1999),(549905,'Don Marquis',1878,1937),(549907,'François Marquis',NULL,NULL),(549966,'Horacio Marquínez',NULL,NULL),(549992,'Jo Marr',NULL,NULL),(550065,'Daniel Marracino',NULL,NULL),(550069,'Angela Marraffa',NULL,NULL),(550108,'Mark Marren',NULL,NULL),(550204,'Sylvia Marriott',1917,1995),(550215,'Rene Marrison',NULL,NULL),(550285,'Jim Marrs',1943,2017),(550318,'Kenneth Mars',1935,2011),(550371,'Eddie Marsan',1968,NULL),(550375,'Jean Marsan',1920,1977),(550429,'Betty Marsden',1919,1998),(550452,'Matthew Marsden',1973,NULL),(550455,'Pam Marsden',NULL,NULL),(550476,'Susanne Marsee',NULL,NULL),(550577,'Jean Marsh',1934,NULL),(550578,'Jeff \'Swampy\' Marsh',1960,NULL),(550585,'John P. Marsh',NULL,NULL),(550591,'Jonah Lisa Dyer',1970,NULL),(550615,'Mae Marsh',1894,1968),(550620,'Marian Marsh',1913,2006),(550624,'Matthew Marsh',1954,NULL),(550655,'Sally Ann Marsh',1972,NULL),(550671,'Terence Marsh',1931,2018),(550691,'Nadine Marsh-Edwards',1963,NULL),(550701,'Alan Marshal',1909,1961),(550708,'Paul Marshal',NULL,NULL),(550728,'Alan Marshall',1938,NULL),(550777,'William Marshall',1917,1994),(550782,'Brenda Marshall',1915,1992),(550825,'David Marshall',NULL,NULL),(550847,'Dodie Marshall',1934,NULL),(550849,'Don Marshall',1936,2016),(550861,'Edison Marshall',1894,1967),(550881,'Frank Marshall',1946,NULL),(550892,'George Marshall',1891,1975),(550925,'Jack Marshall',1921,1973),(550989,'Ken Marshall',1950,NULL),(551017,'Liza Marshall',NULL,NULL),(551031,'Marion Marshall',1929,2018),(551058,'Michael Marshall',NULL,NULL),(551076,'Neil Marshall',1970,NULL),(551091,'Patricia Marshall',1924,2018),(551108,'Phil Marshall',NULL,NULL),(551128,'Rob Marshall',1960,NULL),(551154,'Ruth Marshall',NULL,NULL),(551171,'Sean Marshall',1965,NULL),(551222,'Tully Marshall',1864,1943),(551234,'William Marshall',1924,2003),(551261,'D.M. Marshman Jr.',1922,2015),(551279,'Stéphane Marsil',NULL,NULL),(551323,'Ania Marson',1949,NULL),(551358,'Joshua Marston',1968,NULL),(551376,'William Moulton Marston',1893,1947),(551506,'Lucrecia Martel',1966,NULL),(551649,'Barbara Marten',1947,NULL),(551785,'Pascal Marti',NULL,NULL),(551869,'Al Martin',1897,1971),(551875,'Alan Martin',NULL,NULL),(551908,'Andrea Martin',1947,NULL),(551923,'Ann M. Martin',1955,NULL),(551926,'Anne-Marie Martin',1957,NULL),(551991,'Bob Martin',NULL,NULL),(552039,'Catherine Martin',1965,NULL),(552058,'Charles Martin',1910,1983),(552070,'Cherylanne Martin',NULL,NULL),(552092,'Chuck Martin',NULL,NULL),(552121,'D\'Urville Martin',1939,1984),(552140,'Darnell Martin',1964,NULL),(552150,'David Martin',NULL,NULL),(552185,'Dewey Martin',1923,2018),(552326,'George Martin',1926,2016),(552455,'James Martin',NULL,NULL),(552483,'Jean Martin',1922,2009),(552509,'Jesse L. Martin',1969,NULL),(552565,'Johnny Martin',NULL,NULL),(552606,'Karine Martin',NULL,NULL),(552663,'Laurent Martin',NULL,NULL),(552731,'Mardik Martin',1934,2019),(552815,'Millicent Martin',1934,NULL),(552842,'Nicholas Martin',NULL,NULL),(552862,'Pamela Martin',NULL,NULL),(552897,'Peter Martin',NULL,NULL),(552909,'Philippe Martin',NULL,NULL),(552914,'Phonso Martin',1956,NULL),(552931,'Ray Martin',1918,1988),(553070,'Simon Martin',NULL,NULL),(553097,'Stéphane Martin',NULL,NULL),(553098,'Susan Martin',NULL,NULL),(553104,'Suzanne Martin',1959,NULL),(553143,'Tommy Villafranca',1971,NULL),(553146,'Tom Martin',1964,NULL),(553149,'Tony Martin',1913,2012),(553195,'Wendy Hallam Martin',NULL,NULL),(553237,'Pierre-François Martin-Laval',1968,NULL),(553269,'Margo Martindale',1951,NULL),(553339,'Arthur Martinelli',1881,1967),(553349,'Elsa Martinelli',1935,2017),(553355,'Gabriella Martinelli',NULL,NULL),(553414,'Luis Martinetti',NULL,NULL),(553430,'Albert Martinez Martin',1972,NULL),(553440,'Adrian Martinez',NULL,NULL),(553487,'Charles Martinez',NULL,NULL),(553492,'Chuck Martinez',NULL,NULL),(553498,'Cliff Martinez',1954,NULL),(553648,'Olivier Martinez',1966,NULL),(553650,'Oscar Martínez',1949,NULL),(553662,'Philippe Martinez',NULL,NULL),(553680,'Richard Martinez',NULL,NULL),(553796,'Derick Martini',1972,NULL),(553917,'Malu De Martino',NULL,NULL),(553942,'Steve Martino',1959,NULL),(554076,'Marco Martins',1972,NULL),(554169,'Leslie H. Martinson',1915,2016),(554204,'John Morrissey',NULL,NULL),(554228,'Walter P. Martishius',1959,2023),(554249,'Andrew Marton',1904,1992),(554430,'Andrey Martynov',1945,NULL),(554571,'Adán Martín',NULL,NULL),(554614,'Diego Martín',1974,NULL),(554838,'Ignacio Martínez de Pisón',1960,NULL),(554871,'Flavio Martínez Labiano',1962,NULL),(554880,'Emilio Martínez Lázaro',1945,NULL),(554890,'Juan Martínez Moreno',NULL,NULL),(555019,'Carlos Martínez',NULL,NULL),(555093,'Fele Martínez',1975,NULL),(555140,'Ismael Martínez',NULL,NULL),(555227,'Mario Iván Martínez',1962,NULL),(555260,'Nacho Martínez',1952,1996),(555296,'Petra Martínez',1944,NULL),(555394,'Tarô Marui',NULL,NULL),(555404,'María Marull',1973,NULL),(555470,'Masao Maruyama',1941,NULL),(555479,'Shoichi Maruyama',NULL,NULL),(555500,'Elizabeth Marvel',1969,NULL),(555522,'Arthur Marvin',1859,1911),(555549,'Mike Marvin',NULL,NULL),(555550,'Niki Marvin',NULL,NULL),(555552,'Richard Marvin',NULL,NULL),(555597,'Chico Marx',1887,1961),(555617,'Harpo Marx',1888,1964),(555620,'Horst Günter Marx',1955,NULL),(555688,'Zeppo Marx',1901,1979),(555805,'Luciano Marzetti',NULL,NULL),(555807,'Franca Marzi',1926,1989),(555823,'Duilio Marzio',1923,2013),(555845,'Harold J. Marzorati',1895,1964),(555909,'Luis Marías',NULL,NULL),(555968,'Mariano Marín',1959,NULL),(556048,'Mori Masaki',1941,NULL),(556067,'Chip Masamitsu',NULL,NULL),(556094,'Masayuki',1961,NULL),(556178,'Eric Maschwitz',1901,1969),(556208,'J. Mascis',1965,NULL),(556217,'Joseph Mascolo',1929,2016),(556325,'Kôichi Mashimo',1952,NULL),(556399,'Giulietta Masina',1921,1994),(556415,'Mario Masini',1938,2023),(556435,'John Masius',1950,NULL),(556453,'Neil Maskell',1976,NULL),(556458,'Virginia Maskell',1936,1968),(556487,'Paul Maslansky',1933,NULL),(556514,'Sue Maslin',NULL,NULL),(556550,'Marie Masmonteil',NULL,NULL),(556580,'Andrew Mason',NULL,NULL),(556660,'Dan Mason',NULL,NULL),(556739,'Hilary Mason',1917,2006),(556750,'Jackie Mason',1928,2021),(556769,'Jim Mason',1889,1959),(556789,'Judi Ann Mason',1955,2009),(556848,'Marlyn Mason',1940,NULL),(556850,'Marsha Mason',1942,NULL),(556856,'Mary Claypool',NULL,NULL),(556893,'Paul Mason',NULL,2022),(556922,'Richard Mason',1919,1997),(556945,'Sarah Y. Mason',1896,1980),(556965,'Steve Mason',1954,NULL),(557053,'Ethan Mass',NULL,NULL),(557148,'Yves Massard',1923,1996),(557159,'Lea Massari',1933,NULL),(557167,'Aldo Massasso',1933,2013),(557266,'Patrick Massett',NULL,NULL),(557281,'Anna Massey',1937,2011),(557292,'Daniel Massey',1933,1998),(557298,'Edith Massey',1918,1984),(557313,'Icel Dobell Massey',NULL,NULL),(557339,'Raymond Massey',1896,1983),(557409,'Robert K. Massie',1929,2019),(557510,'René Masson',NULL,NULL),(557579,'Alejandro Massó',1943,NULL),(557609,'Valerio Mastandrea',1972,NULL),(557646,'Joe Masteroff',1919,2018),(557733,'Christopher Masterson',1980,NULL),(557739,'Fay Masterson',1974,NULL),(557751,'Peter Masterson',1934,2018),(557767,'Whit Masterson',1920,2012),(557818,'Nacho Mastretta',NULL,NULL),(557829,'Anthony Mastromauro',NULL,NULL),(557840,'Camillo Mastrocinque',1901,1969),(557859,'Chiara Mastroianni',1972,NULL),(557870,'Ruggero Mastroianni',1929,1996),(557895,'William Mastrosimone',1947,NULL),(557927,'Toshio Masuda',1927,NULL),(557928,'Toshio Masuda',1959,NULL),(557956,'Richard Masur',1948,NULL),(557968,'Eiko Masuyama',1936,NULL),(557980,'Pedro Masó',1927,2008),(558038,'Matahi',NULL,NULL),(558061,'David Matalon',NULL,NULL),(558089,'Clelia Matania',1913,1981),(558182,'Kari Matchett',1970,NULL),(558290,'Julián Mateos',1938,1996),(558420,'René Mathelin',NULL,NULL),(558427,'James Matheny',NULL,NULL),(558435,'Berkely Mather',1909,1996),(558507,'Marissa Mathes',1940,NULL),(558520,'Ali Marie Matheson',1956,NULL),(558533,'Chris Matheson',1959,NULL),(558548,'Hans Matheson',1975,NULL),(558563,'Margaret Matheson',1946,NULL),(558577,'Richard Matheson',1926,2013),(558637,'Gisella Mathews',1919,2001),(558721,'Temple Mathews',NULL,NULL),(558726,'Thom Mathews',1958,NULL),(558776,'Vincent Mathias',NULL,NULL),(558822,'John Mathieson',1961,NULL),(558917,'Clark Mathis',NULL,NULL),(558923,'June Mathis',1887,1927),(558933,'Mark G. Mathis',NULL,NULL),(558953,'Melissa Mathison',1950,2015),(559052,'Misel Maticevic',1970,NULL),(559105,'Mate Matisic',1965,NULL),(559120,'Manolo Matji',1943,NULL),(559144,'Marlee Matlin',1965,NULL),(559166,'Noelle North',1949,NULL),(559175,'Amalia Mato',1966,NULL),(559184,'Harvey Matofsky',1933,1994),(559300,'Christian Matras',1903,1977),(559381,'Takako Matsu',1977,NULL),(559384,'Ai Matsubara',1955,NULL),(559385,'Chieko Matsubara',1945,NULL),(559387,'Hisaharu Matsubara',NULL,NULL),(559398,'Shûe Matsubayashi',1920,2009),(559405,'Eiko Matsuda',1952,2011),(559444,'Yôji Matsuda',1967,NULL),(559452,'Yoichi Matsue',1930,2019),(559483,'Yasuko Matsui',1939,NULL),(559525,'Kelly Matsumoto',NULL,NULL),(559526,'Ken Matsumoto',NULL,NULL),(559535,'Leiji Matsumoto',1938,2023),(559551,'Rica Matsumoto',1968,NULL),(559607,'Kayo Matsuo',1943,NULL),(559618,'Suzuki Matsuo',1962,NULL),(559645,'Yukako Matsusako',NULL,NULL),(559650,'Minori Matsushima',1940,2022),(559652,'Nanako Matsushima',1973,NULL),(559688,'Takashi Matsuyama',1908,1977),(559690,'Takashi Matsuyama',1960,NULL),(559696,'Yasuko Matsuyuki',1972,NULL),(559698,'Keiko Matsuzaka',1952,NULL),(559700,'Keiji Matsuzaki',1905,1974),(559769,'Bruno Mattei',1931,2007),(559770,'Danilo Mattei',NULL,NULL),(559781,'Paul Mattei',NULL,NULL),(559808,'Alex Matter',NULL,NULL),(559836,'Doris Mattes',1938,2013),(559837,'Eva Mattes',1954,NULL),(559890,'Ulrich Matthes',1959,NULL),(559968,'Christopher Matthews',NULL,NULL),(560014,'Elizabeth Matthews',NULL,NULL),(560022,'Francis Matthews',1927,2014),(560033,'Gina Matthews',NULL,NULL),(560064,'John Matthews',NULL,NULL),(560076,'Junius Matthews',1890,1978),(560093,'Liesel Matthews',1984,NULL),(560135,'Paul Matthews',NULL,NULL),(560142,'Peter H. Matthews',NULL,NULL),(560198,'Terumi Matthews',1965,NULL),(560253,'Xavier Matthieu',NULL,NULL),(560329,'Burny Mattinson',1935,2023),(560395,'Mario Mattoli',1898,1980),(560469,'John Mattson',NULL,NULL),(560488,'Anders Mattsson',NULL,NULL),(560576,'LeeAnne Pronitis-Matusek',NULL,NULL),(560580,'Kosuke Matsushima',NULL,NULL),(560749,'Maria Mauban',1924,2014),(560751,'Henri de Maublanc',1951,NULL),(560761,'Thomas Mauch',1937,NULL),(560785,'Arthur Maude',1880,1950),(560830,'Olivier Mauffroy',1957,2013),(560855,'Robin Maugham',1916,1981),(560857,'W. Somerset Maugham',1874,1965),(560893,'Marcus M. Mauldin',NULL,NULL),(560894,'Nat Mauldin',1963,NULL),(560932,'Wayne Maunder',1937,2018),(560940,'Micki Maunsell',1923,2011),(560945,'Armistead Maupin',1944,NULL),(560962,'Carmen Maura',1945,NULL),(560971,'Maurane',1960,2018),(561026,'Jeffrey Scott',1952,NULL),(561049,'Peggy Maurer',1931,2012),(561053,'Shawn Maurer',NULL,NULL),(561072,'Nicole Maurey',1925,2016),(561109,'Clément Maurice',1853,1933),(561158,'Claire Maurier',1929,NULL),(561210,'Lúcio Mauro Filho',1974,NULL),(561356,'Inge Maux',1944,NULL),(561430,'Yorgos Mavropsaridis',NULL,NULL),(561480,'Arthur Max',1946,NULL),(561630,'Guy Maxtone-Graham',NULL,NULL),(561631,'Ian Maxtone-Graham',1959,NULL),(561693,'Edwin Maxwell',1886,1948),(561794,'Paul Maxwell',NULL,NULL),(561803,'Robert Maxwell',1923,1978),(561809,'Roberta Maxwell',1941,NULL),(561813,'Ron Maxwell',1949,NULL),(561829,'Tony Maxwell',NULL,NULL),(561906,'Daniel May',NULL,NULL),(561938,'Elaine May',1932,NULL),(561943,'Ernest R. May',1931,2009),(561963,'Hans May',1886,1959),(561997,'Jim May',NULL,NULL),(562003,'Jodhi May',1975,NULL),(562008,'Joseph May',1974,NULL),(562015,'Karl May',1842,1912),(562025,'Kevin May',NULL,NULL),(562100,'Rafael May',NULL,NULL),(562111,'Robert May',1905,1976),(562197,'Herschel Mayall',1863,1941),(562201,'Rik Mayall',1958,2014),(562206,'Tomoko Mayama',1941,NULL),(562222,'Chris Maybach',NULL,NULL),(562266,'John Maybury',1958,NULL),(562287,'Sam Maydew',NULL,NULL),(562305,'Eddie Mayehoff',1909,1992),(562346,'Carl Mayer',1894,1944),(562372,'Edwin Justus Mayer',1896,1960),(562462,'Maria João Mayer',NULL,NULL),(562470,'Max Mayer',NULL,NULL),(562545,'Katharina Wöppermann',1962,NULL),(562554,'Val Mayerik',1950,NULL),(562577,'Paul Mayersberg',1941,NULL),(562598,'Lee R. Mayes',1946,NULL),(562606,'Wendell Mayes',1918,1992),(562617,'Molly M. Mayeux',1965,NULL),(562631,'Curtis Mayfield',1942,1999),(562645,'Les Mayfield',1959,NULL),(562671,'Ina Mayhew',NULL,NULL),(562687,'Paul Mayhew-Archer',1953,NULL),(562699,'Tony Maylam',1943,NULL),(562775,'Mimi Maynard',1949,NULL),(562830,'Philippe Maynial',NULL,NULL),(562831,'Juliette Mayniel',1936,2023),(562841,'Alfredo Mayo',1911,1985),(562845,'Archie Mayo',1891,1968),(562848,'Billy Mayo',1957,2019),(562851,'Christine Mayo',1883,1961),(562866,'Frank Mayo',1886,1963),(562936,'Jacques Mayol',1927,2001),(563039,'Melanie Mayron',1952,NULL),(563099,'Albert Maysles',1926,2015),(563100,'David Maysles',1931,1987),(563240,'Adam Mazer',NULL,NULL),(563243,'Dan Mazer',NULL,NULL),(563301,'Craig Mazin',1971,NULL),(563327,'Aitor Mazo',1961,2015),(563387,'Lara Mazur',NULL,NULL),(563392,'Michael Mazur',NULL,NULL),(563394,'Paula Mazur',NULL,NULL),(563397,'Stephen Mazur',NULL,NULL),(563440,'Patricia Mazuy',1960,NULL),(563481,'Anna Mazzamauro',1938,NULL),(563505,'Joey Mazzarino',1968,NULL),(563593,'Daniele Mazzocca',NULL,NULL),(563604,'Carl Mazzocone',1958,NULL),(563677,'Roberta Mazzoni',NULL,NULL),(563686,'Peppino Mazzotta',1971,NULL),(563695,'Pascal Mazzotti',1923,2002),(563740,'Aïssa Maïga',1975,NULL),(563879,'Tom McAdoo',1914,1964),(563884,'Anndi McAfee',NULL,NULL),(563922,'Des McAleer',1952,NULL),(564005,'Stewart McAllister',1914,1962),(564028,'Andrew McAlpine',1946,NULL),(564044,'Ray McAnally',1926,1989),(564059,'Marianne McAndrew',1942,NULL),(564107,'Alex McArthur',1957,NULL),(564215,'James McAvoy',1979,NULL),(564219,'May McAvoy',1899,1984),(564223,'Diane McBain',1941,2022),(564260,'Don McBrearty',NULL,NULL),(564277,'Chi McBride',1961,NULL),(564286,'Danny McBride',NULL,NULL),(564319,'Jim McBride',1941,NULL),(564323,'Joseph McBride',NULL,NULL),(564394,'Marcia McBroom',1947,NULL),(564402,'Simon McBurney',1957,NULL),(564415,'Anne McCabe',NULL,NULL),(564496,'Pat McCabe',1955,NULL),(564500,'Richard McCabe',1960,NULL),(564530,'Michael McCafferty',NULL,NULL),(564556,'Peter McCaffrey',NULL,NULL),(564586,'Howard McCain',NULL,NULL),(564610,'Mary C. McCall Jr.',1904,1986),(564697,'Holt McCallany',NULL,NULL),(564768,'Rick McCallum',1950,NULL),(564790,'Mercedes McCambridge',1916,2004),(564800,'B.H. McCampbell',NULL,NULL),(564827,'Tim McCanlies',1953,NULL),(564871,'Henry McCann',1933,2005),(564970,'Leo McCarey',1896,1969),(565026,'Anthony McCarten',1961,NULL),(565068,'Brendan McCarthy',NULL,NULL),(565069,'Brendan McCarthy',NULL,NULL),(565092,'Cormac McCarthy',1933,2023),(565103,'Dennis McCarthy',1945,NULL),(565119,'Douglas McCarthy',NULL,NULL),(565135,'Frank McCarthy',1912,1986),(565239,'Mary McCarthy',1912,1989),(565242,'Mary Eunice McCarthy',1899,1969),(565250,'Melissa McCarthy',1970,NULL),(565292,'Peter McCarthy',NULL,NULL),(565319,'Sheila McCarthy',1956,NULL),(565323,'Stephen McCarthy',NULL,NULL),(565336,'Tom McCarthy',1966,NULL),(565366,'Jesse McCartney',1987,NULL),(565537,'James McCausland',1944,2022),(565569,'Stephen McHattie',1947,NULL),(565783,'Kay McClelland',NULL,NULL),(565883,'Belinda McClory',1968,NULL),(565886,'Kevin McClory',1924,2006),(565946,'Terence McCloy',NULL,NULL),(565973,'Kandyse McClure',1980,NULL),(566084,'Skye McCole Bartusiak',1992,2014),(566100,'Hamish McColl',1962,NULL),(566130,'Paul McCollough',NULL,NULL),(566140,'Kevin McCollum',1962,NULL),(566147,'Robert McCollum',1971,NULL),(566176,'Tom McComas',NULL,NULL),(566338,'Bernard McConville',1887,1961),(566343,'Sean McConville',NULL,NULL),(566378,'Harold McCord',1893,1957),(566407,'Mark McCorkle',1961,NULL),(566431,'Denise McCormack',NULL,NULL),(566478,'Patty McCormack',1945,NULL),(566489,'Will McCormack',1974,NULL),(566525,'Gilmer McCormick',1947,NULL),(566555,'Kelly McCormick',1977,NULL),(566557,'Kevin McCormick',NULL,NULL),(566590,'Patrick McCormick',NULL,NULL),(566595,'Randall McCormick',NULL,NULL),(566608,'Shannon McCormick',1971,NULL),(566659,'Emer McCourt',1964,NULL),(566680,'Alec McCowen',1925,2017),(566699,'Victor Miller',1940,NULL),(566752,'Horace McCoy',1897,1955),(566783,'Matt McCoy',1956,NULL),(566788,'Mike McCoy',NULL,NULL),(566815,'Tony McCoy',1924,2000),(566833,'Craig McCracken',1971,NULL),(566845,'Joan McCracken',1917,1961),(566919,'Kim McCraw',NULL,NULL),(566948,'Joel McCrea',1905,1990),(566970,'Bear McCreary',1979,NULL),(566975,'Lori McCreary',NULL,NULL),(566979,'R. Dean McCreary',1965,NULL),(567031,'Helen McCrory',1968,2021),(567061,'Don McCuaig',NULL,NULL),(567090,'Michael McCuistion',NULL,NULL),(567112,'Michael McCullers',NULL,NULL),(567162,'Gerald McCullouch',1967,NULL),(567224,'Philo McCullough',1893,1981),(567302,'Sam McCurdy',NULL,NULL),(567337,'Bill McCutchen',NULL,NULL),(567356,'Martine McCutcheon',1976,NULL),(567403,'Gene McDaniels',1935,2011),(567493,'Ben McDermott',NULL,NULL),(567507,'Debra McDermott',NULL,NULL),(567515,'Edward M. McDermott',1896,1931),(567521,'Hugh McDermott',1906,1972),(567530,'John McDermott',NULL,NULL),(567620,'John Michael McDonagh',1967,NULL),(567653,'Audra McDonald',1970,NULL),(567680,'Bruce McDonald',1959,NULL),(567754,'Fergus McDonell',1910,1984),(567756,'Francis McDonald',1891,1968),(567771,'Gary T. McDonald',NULL,NULL),(567780,'Gregory McDonald',1937,2008),(567852,'Kevin McDonald',1961,NULL),(567912,'Michael McDonald',1964,NULL),(568060,'Gordon McDonell',1905,1995),(568082,'Claude L. McDonnell',NULL,NULL),(568093,'Edward L. McDonnell',NULL,NULL),(568107,'John McDonnell',NULL,NULL),(568120,'Michael McDonnell',NULL,NULL),(568174,'Michael McDonough',1967,NULL),(568180,'Neal McDonough',1966,NULL),(568223,'Callum McDougall',NULL,NULL),(568230,'Francine McDougall',NULL,NULL),(568282,'Claire McDowell',1877,1966),(568304,'Laurie McDowell',NULL,NULL),(568313,'Michael McDowell',1950,1999),(568336,'Dwayne McDuffie',1962,2011),(568364,'Gordon McEdward',1898,1992),(568377,'Andrew McElfresh',NULL,NULL),(568385,'Michael McElhatton',1963,NULL),(568399,'Hayley McElhinney',1974,NULL),(568416,'Alan B. McElroy',NULL,NULL),(568427,'Hal McElroy',1946,NULL),(568434,'Jim McElroy',1946,NULL),(568490,'Don McEnery',NULL,NULL),(568491,'John McEnery',1943,2019),(568493,'Peter McEnery',1940,NULL),(568499,'Annie McEnroe',NULL,NULL),(568505,'Brian McEntee',NULL,NULL),(568530,'William E. McEuen',NULL,NULL),(568539,'Joseph L. McEveety',1926,1976),(568544,'Stephen McEveety',1954,NULL),(568546,'Vincent McEveety',1929,2018),(568571,'J.P. McEvoy',1897,1958),(568603,'Geraldine McEwan',1932,2015),(568605,'Ian McEwan',1948,NULL),(568672,'Davenia McFadden',1961,NULL),(568730,'David McFadzean',NULL,NULL),(568750,'Connie Young',NULL,NULL),(568756,'Gary McFarland',1933,1971),(568796,'Bonnie McFarlane',1969,NULL),(568825,'Todd McFarlane',1961,NULL),(568915,'William C. McGann',1893,1977),(568918,'Helen McGara',NULL,NULL),(568974,'Seamus McGarvey',1967,NULL),(569000,'Darren McGavin',1922,2006),(569079,'Jack McGee',1949,NULL),(569100,'Mark Thomas McGee',1947,NULL),(569130,'Ron McGee',NULL,NULL),(569144,'Vonetta McGee',1945,2010),(569160,'Kelly McGehee',NULL,NULL),(569166,'Scott McGehee',NULL,NULL),(569199,'Ehren McGhehey',1976,NULL),(569210,'Josann McGibbon',NULL,NULL),(569222,'Barney McGill',1890,1942),(569226,'Bruce McGill',1950,NULL),(569239,'Everett McGill',1945,NULL),(569267,'Michael McGill',NULL,NULL),(569294,'Howard McGillin',1953,NULL),(569299,'Tom McGillis',NULL,NULL),(569337,'Ted McGinley',1958,NULL),(569341,'Chris McGinn',NULL,NULL),(569350,'Walter McGinn',1936,1977),(569410,'John McGiver',1913,1975),(569414,'Cecil McGivern',1907,1963),(569423,'William P. McGivern',1918,1982),(569429,'Don McGlashan',NULL,NULL),(569446,'Ian McGlocklin',NULL,NULL),(569479,'Mary Elizabeth McGlynn',1966,NULL),(569534,'Roger McGough',1937,NULL),(569547,'Barry McGovern',1948,NULL),(569568,'Jimmy McGovern',1949,NULL),(569581,'Maureen McGovern',1949,NULL),(569606,'Monica Mcgowan Johnson',1946,2010),(569635,'Dorothy McGowan',NULL,NULL),(569640,'Gretchen McGowan',NULL,NULL),(569641,'Heather McGowan',NULL,NULL),(569647,'Jack McGowan',NULL,NULL),(569650,'Jack McGowan',1894,1977),(569703,'Sharon McGowan',NULL,NULL),(569711,'Tom McGowan',1959,NULL),(569790,'Douglas McGrath',1958,2022),(569808,'Jim McGrath',NULL,NULL),(569814,'Jeff McGrath',NULL,NULL),(569819,'John McGrath',1935,2002),(569825,'Joseph McGrath',1928,NULL),(569845,'Martin McGrath',1956,NULL),(569855,'Neil McGrath',NULL,NULL),(569862,'Patrick McGrath',1950,NULL),(569891,'Tom McGrath',1964,NULL),(569902,'Charles McGraw',1914,1980),(569950,'John McGreevey',1922,2010),(569990,'Jane McGregor',1983,NULL),(570079,'Matthew McGuchan',NULL,NULL),(570083,'Aislín McGuckin',1974,NULL),(570100,'Kieran McGuigan',NULL,NULL),(570128,'Frank McGuinness',1953,NULL),(570130,'James Kevin McGuinness',1893,1950),(570161,'Biff McGuire',1926,2021),(570190,'Don McGuire',1919,1999),(570192,'Dorothy McGuire',1916,2001),(570215,'James P. McGuire',NULL,NULL),(570219,'Joan Tewkesbury',1936,NULL),(570230,'Kathryn McGuire',1903,1978),(570245,'Linda McGuire',NULL,NULL),(570297,'Tom McGuire',1873,1954),(570305,'William Anthony McGuire',1881,1940),(570306,'William Francis McGuire',NULL,NULL),(570364,'Joel McHale',1971,NULL),(570408,'Doug McHenry',NULL,NULL),(570439,'David McHugh',1941,NULL),(570451,'Frank McHugh',1898,1981),(570454,'Jason McHugh',1968,NULL),(570483,'Richard McHugh',NULL,NULL),(570557,'Jay McInerney',1955,NULL),(570569,'Lizzy McInnerny',1960,NULL),(570608,'Alastair McIntyre',1927,1986),(570615,'John McIntire',1907,1991),(570670,'Lorraine McIntosh',1964,NULL),(570690,'Shannon McIntosh',NULL,NULL),(570706,'Ray McIntyre Jr.',NULL,NULL),(570713,'Andrew J. McIntyre',1903,1970),(570819,'Stephen Eric McIntyre',NULL,NULL),(570860,'Rose McIver',1988,NULL),(570871,'Mairead McIvor',NULL,NULL),(570912,'Adam McKay',1968,NULL),(570947,'Craig McKay',NULL,NULL),(570995,'Jim McKay',NULL,NULL),(571024,'Michael McKay',NULL,NULL),(571032,'Neil McKay',NULL,NULL),(571066,'Sindy McKay',1954,NULL),(571098,'Dave McKean',1963,NULL),(571106,'Michael McKean',1947,NULL),(571111,'Nigel McKeand',NULL,NULL),(571129,'James McKechnie',1911,1964),(571160,'Gina McKee',1964,NULL),(571188,'Lonette McKee',1954,NULL),(571210,'Robert McKee',1941,NULL),(571264,'Michael McKell',1959,NULL),(571317,'Maxime McKendry',1922,2009),(571326,'Alan McKenna',NULL,NULL),(571334,'Bernard McKenna',1944,NULL),(571344,'Chris McKenna',NULL,NULL),(571346,'David McKenna',1968,NULL),(571375,'Joseph McKenna',NULL,NULL),(571414,'Richard McKenna',1913,1964),(571430,'Siobhan McKenna',1923,1986),(571435,'T.P. McKenna',1929,2011),(571450,'Ruth McKenney',1911,1972),(571515,'Emily McKenzie',NULL,NULL),(571537,'Jacqueline McKenzie',1967,NULL),(571549,'Julia McKenzie',1941,NULL),(571574,'Mark McKenzie',NULL,NULL),(571630,'Doug McKeon',1966,NULL),(571642,'Stephen McKeon',NULL,NULL),(571650,'Charles McKeown',1946,NULL),(571653,'Douglas McKeown',1947,NULL),(571674,'Leo McKern',1920,2002),(571706,'Vince McKewin',NULL,NULL),(571727,'Kevin McKidd',1973,NULL),(571741,'Britt McKillip',1991,NULL),(571775,'Lesley McKimm',NULL,NULL),(571828,'Padraic McKinley',1974,NULL),(571841,'Norman McKinnel',1870,1932),(571853,'Bill McKinney',1931,2011),(571893,'Kurt McKinney',1962,NULL),(571952,'Kate McKinnon',1984,NULL),(571958,'Mona McKinnon',1929,1990),(572014,'Sean McKittrick',1975,NULL),(572030,'Chad McKnight',NULL,NULL),(572106,'Rod McKuen',1933,2015),(572123,'Robert McLachlan',NULL,NULL),(572131,'Mary McLaglen',1959,NULL),(572132,'Andrew V. McLaglen',1920,2014),(572142,'Victor McLaglen',1886,1959),(572151,'Jim McClain',NULL,NULL),(572229,'Malcolm McLaren',1946,2010),(572243,'Spencer McLaren',1973,NULL),(572352,'John J. McLaughlin',NULL,NULL),(572369,'Lauren McLaughlin',NULL,NULL),(572492,'Barbara McLean',1903,1996),(572562,'Greg McLean',NULL,NULL),(572610,'May McLean',NULL,NULL),(572622,'Nick McLean',1941,NULL),(572649,'Seaton McLean',1955,NULL),(572689,'John McLeish',1916,1968),(572755,'Gordon McLennan',NULL,NULL),(572805,'Eric McLeod',NULL,NULL),(572819,'Joan McLeod',NULL,NULL),(572851,'Norman Z. McLeod',1895,1964),(572865,'Sandy McLeod',NULL,NULL),(572885,'Allyn Ann McLerie',1926,2018),(572886,'Harold McLernon',1892,1947),(572906,'James McLindon',NULL,NULL),(572951,'Tom McLoughlin',1950,NULL),(573037,'Julian McMahon',1968,NULL),(573054,'Liam McMahon',NULL,NULL),(573073,'Patrick McMahon',NULL,NULL),(573140,'James McManus',NULL,NULL),(573185,'Susan McMartin',NULL,NULL),(573331,'T. Wendy McMillan',NULL,NULL),(573334,'Terry McMillan',1951,NULL),(573389,'Gerald McMorrow',1970,NULL),(573416,'Cabot McMullen',NULL,NULL),(573505,'Larry McMurtry',1936,2021),(573552,'Barbara McNair',1934,2007),(573589,'David McNally',NULL,NULL),(573618,'Kevin McNally',1956,NULL),(573640,'Stephen McNally',1911,1994),(573644,'Terrence E. McNally',1948,NULL),(573645,'Terrence McNally',1938,2020),(573695,'John McNamara',NULL,NULL),(573710,'Michael McNamara',1953,NULL),(573732,'Sean McNamara',1962,NULL),(573796,'John McNaughton',1950,NULL),(573826,'Tom McNeal',NULL,NULL),(573862,'Ian McNeice',1950,NULL),(573865,'Allen McNeil',1893,1971),(573871,'Claudia McNeil',1917,1993),(573905,'Lesley McNeil',NULL,NULL),(573909,'Marguerite McNeil',1935,2021),(573926,'Scott McNeil',1962,NULL),(573929,'Steve McNeil',1908,1983),(574005,'Dennis McNicholas',NULL,NULL),(574097,'Peter McNulty',NULL,NULL),(574114,'Maggie McOmie',1941,NULL),(574150,'Andrew McPhail',1964,NULL),(574217,'Conor McPherson',1971,NULL),(574238,'John McPherson',1941,2007),(574259,'Scott McPherson',1959,1992),(574283,'Brynn McQuade',NULL,NULL),(574308,'Kent McQuaid',NULL,NULL),(574376,'Katie Mcquerrey',NULL,NULL),(574433,'Frank McRae',1941,2021),(574460,'Shane McRae',NULL,NULL),(574468,'Gerald McRaney',1947,NULL),(574509,'Will McRobb',1961,NULL),(574513,'Peter McRobbie',1943,NULL),(574516,'Anna McRoberts',NULL,NULL),(574534,'Ian McShane',1942,NULL),(574540,'Michael McShane',1955,NULL),(574561,'Gerard McSorley',1950,NULL),(574578,'John McSweeney Jr.',1915,1999),(574615,'Graham McTavish',1961,NULL),(574625,'James McTeigue',NULL,NULL),(574739,'Margaret McWade',1872,1956),(574979,'Terry K. Meade',NULL,NULL),(574996,'Martin Meader',NULL,NULL),(575008,'Joshua Meador',1911,1965),(575022,'Herb Meadow',1911,1995),(575031,'Audrey Meadows',1922,1996),(575038,'David Meadows',NULL,NULL),(575184,'Russell Means',1939,2012),(575197,'H. Fowler Mear',1888,1985),(575198,'Anne Meara',1929,2015),(575216,'Derek Mears',1972,NULL),(575263,'Charles de Meaux',NULL,NULL),(575290,'Janet Mecca',NULL,NULL),(575293,'Irene Mecchi',1949,NULL),(575312,'Bill Mechanic',1950,NULL),(575329,'Anthony C. Metchie',NULL,NULL),(575338,'Jordan Mechner',NULL,NULL),(575361,'Nancy Meckler',1941,NULL),(575389,'Peter Medak',1937,NULL),(575523,'Julio Medem',1958,NULL),(575530,'Suki Medencevic',1963,NULL),(575547,'Harold Medford',1911,1977),(575552,'Kay Medford',1919,1980),(575656,'Benny Medina',1958,NULL),(575782,'Teresa Medina',1965,NULL),(575804,'Enrico Medioli',1925,2017),(575817,'Joe Medjuck',1943,NULL),(575865,'Mark Medoff',1940,2019),(575974,'Michael Medwin',1923,2020),(576046,'John Meehan',1884,1954),(576070,'Thomas Meehan',1929,2017),(576127,'Ralph Meeker',1920,1988),(576141,'Edith Meeks',NULL,NULL),(576192,'Newton TerMeer',NULL,NULL),(576228,'Steve Meerson',NULL,NULL),(576298,'Olivier Megaton',1965,NULL),(576312,'Robert T. Megginson',NULL,NULL),(576345,'John Megna',1952,1995),(576362,'Roi Cooper Megrue',1882,1927),(576372,'Mehra Meh',NULL,NULL),(576425,'Tobias Mehler',1976,NULL),(576438,'Marco Mehlitz',1968,NULL),(576540,'Anil Mehta',NULL,NULL),(576548,'Deepa Mehta',1950,NULL),(576549,'Dilip Mehta',1952,NULL),(576571,'Ravi D. Mehta',NULL,NULL),(576586,'Vijay Mehta',NULL,NULL),(576732,'Ursula Meier',1971,NULL),(576762,'Thomas Meighan',1879,1936),(576851,'John Meillon',1934,1989),(576863,'Robert Thomas Mein',NULL,NULL),(576895,'Bernd Meiners',NULL,NULL),(576921,'Ulrike Meinhof',1934,1976),(576928,'Frédérique Meininger',NULL,NULL),(576941,'Holger Meins',1941,1974),(576987,'Fernando Meirelles',1955,NULL),(577145,'Gerhard Meixner',NULL,NULL),(577149,'A.V. Meiyappan',1907,1979),(577152,'Steven Meizler',NULL,NULL),(577329,'Fred Melamed',NULL,NULL),(577332,'Jordan Melamed',NULL,NULL),(577336,'Yael Melamede',1968,NULL),(577423,'Mariangela Melato',1941,2013),(577455,'Martin Melcher',1915,1968),(577477,'Ib Melchior',1917,2015),(577480,'Lauritz Melchior',1890,1973),(577560,'Christopher Meledandri',1959,NULL),(577597,'Migdalia Melendez',NULL,NULL),(577616,'Patrice Melennec',NULL,NULL),(577644,'John P. Melfi',NULL,NULL),(577647,'Theodore Melfi',1970,NULL),(577654,'George Melford',1877,1961),(577718,'Tariel Meliava',NULL,NULL),(577826,'Per Melita',NULL,NULL),(577828,'Joseph Melito',NULL,NULL),(577841,'Gilbert Melki',1958,NULL),(577861,'Sergey Melkumov',1962,NULL),(578011,'Louis Mellis',NULL,NULL),(578042,'Danton Mello',1975,NULL),(578108,'Douglas Mellor',1929,2004),(578141,'Roberto Mello',NULL,NULL),(578155,'George Melly',1926,2007),(578157,'Tomas Melly',NULL,NULL),(578176,'Daniel Melnick',1932,2009),(578185,'Peter Melnick',NULL,NULL),(578195,'Benjamin Melniker',1913,2018),(578392,'Gregory S. Melton',1959,NULL),(578439,'Lewis Meltzer',1911,1995),(578443,'Maxwell Meltzer',1928,2020),(578479,'Herman Melville',1819,1891),(578483,'Jean-Pierre Melville',1917,1973),(578527,'Murray Melvin',1932,2023),(578540,'Wendy Melvoin',1964,NULL),(578596,'Nasser Memarzia',1958,NULL),(578681,'Chiara Menage',NULL,NULL),(578757,'Christopher Menaul',1944,NULL),(578771,'Ivan Menchell',1961,NULL),(578788,'Carlos Mencia',1967,NULL),(578813,'Sten Mende',1969,NULL),(578814,'Barry Mendel',1963,NULL),(578815,'D.J. Mendel',NULL,NULL),(578850,'Aaron Mendelsohn',1966,NULL),(578853,'Ben Mendelsohn',1969,NULL),(578859,'Jack Mendelsohn',1926,2017),(578882,'Lee Mendelson',1933,2019),(578949,'Eva Mendes',1974,NULL),(579005,'Odorico Mendes',NULL,NULL),(579079,'Mike Mendez',NULL,NULL),(579116,'Stephen Mendillo',1942,NULL),(579234,'Antonio Mendoza',NULL,NULL),(579281,'Hernán Mendoza',NULL,NULL),(579387,'Jaime Mendoza-Nava',1925,2005),(579453,'Ric Menello',1952,2013),(579466,'Ramón Menéndez',NULL,NULL),(579580,'Chris Menges',1940,NULL),(579631,'Enzo Meniconi',NULL,NULL),(579663,'Adolphe Menjou',1890,1963),(579668,'Kyle Menke',1972,NULL),(579673,'Sally Menke',1953,2010),(579678,'Alan Menken',1949,NULL),(579683,'Robin Menken',1946,NULL),(579828,'Vladimir Menshov',1939,2021),(579852,'Carlos Mentasti',NULL,NULL),(579914,'Scott Menville',NULL,NULL),(579919,'Said Menyalshchikov',1936,2000),(579953,'Idina Menzel',1971,NULL),(579954,'Jirí Menzel',1938,2020),(579977,'Peter Menzies Jr.',NULL,NULL),(579991,'Heather Menzies-Urich',1949,2017),(580014,'Tobias Menzies',1974,NULL),(580017,'William Cameron Menzies',1896,1957),(580101,'Kad Merad',1964,NULL),(580174,'Patrick Mercado',NULL,NULL),(580195,'Jacques Mercanton',1909,1997),(580202,'Victoria Mercanton',1911,2006),(580217,'Ana Mercedes',NULL,NULL),(580231,'Jeff Mercelis',NULL,NULL),(580240,'Beryl Mercer',1876,1939),(580256,'David Mercer',1928,1980),(580263,'Frances Mercer',1915,2000),(580268,'Glenn Mercer',NULL,NULL),(580271,'Jack Mercer',1910,1984),(580284,'Mae Mercer',1932,2008),(580290,'Matt Mercer',1980,NULL),(580303,'Sam Mercer',NULL,NULL),(580312,'Tracy Mercer',NULL,NULL),(580337,'Ismail Merchant',1936,2005),(580351,'Stephen Merchant',1974,NULL),(580357,'Vivien Merchant',1929,1982),(580392,'Chantal Mercier',NULL,NULL),(580440,'Michèle Mercier',1939,NULL),(580444,'Paul Mercier',1962,NULL),(580479,'Melina Mercouri',1920,1994),(580527,'Paul Mercurio',1963,NULL),(580565,'Burgess Meredith',1907,1997),(580571,'Stephanie Rothman',1936,NULL),(580646,'Olga Merediz',NULL,NULL),(580648,'Bess Meredyth',1890,1969),(580669,'James Merendino',1969,NULL),(580705,'André Mergenthaler',NULL,NULL),(580779,'Adam Merims',NULL,NULL),(580882,'Philip Merivale',1886,1946),(580890,'Stavros Merjos',NULL,NULL),(580916,'Una Merkel',1903,1986),(580924,'S. Epatha Merkerson',1952,NULL),(580934,'Ricardo Merkin',NULL,NULL),(580959,'Vasiliy Merkurev',1904,1978),(580986,'Adalberto Maria Merli',1938,NULL),(581000,'Claudine Merlin',1929,2014),(581012,'Muriel Merlin',NULL,NULL),(581034,'Iris Merlis',1939,2021),(581038,'Daniela Merlo',1960,NULL),(581042,'Ismael Merlo',1918,1984),(581062,'Ethel Merman',1908,1984),(581066,'Jeffery Roberson',NULL,NULL),(581117,'Neil Meron',1955,NULL),(581145,'Raquel Meroño',1975,NULL),(581146,'Mary Merrall',1890,1973),(581148,'Aaron Merrell',NULL,NULL),(581163,'Simon Merrells',1965,NULL),(581266,'Brandon Merrill',NULL,NULL),(581277,'Dina Merrill',1923,2017),(581282,'Gary Merrill',1915,1990),(581365,'Ryan Merriman',1983,NULL),(581378,'Clive Merrison',1945,NULL),(581424,'John Merritt',1920,1999),(581445,'Stephin Merritt',1965,NULL),(581536,'Thorsten Merten',1963,NULL),(581631,'Lisa Collins',NULL,NULL),(581674,'William Mervyn',1912,1976),(581785,'Bill Mesce Jr.',NULL,NULL),(581863,'Marzieh Makhmalbaf',1969,NULL),(581953,'Roxane Mesquida',NULL,NULL),(582094,'Virgine Messiaen',NULL,NULL),(582111,'Kevin J. Messick',1966,NULL),(582149,'Chris Messina',1974,NULL),(582171,'Mateo Messina',NULL,NULL),(582185,'Philip Messina',1965,NULL),(582257,'Johnny Messner',1970,NULL),(582278,'Henrik Mestad',1964,NULL),(582338,'Ricardo Mestres',1958,NULL),(582396,'Alex Metcalf',NULL,NULL),(582418,'Laurie Metcalf',1955,NULL),(582462,'Jesse Metcalfe',1978,NULL),(582481,'Tim Metcalfe',1954,NULL),(582485,'Aaron Michael Metchik',1980,NULL),(582487,'Asher Metchik',1986,NULL),(582533,'Pat Metheny',1954,NULL),(582586,'Art Metrano',1936,2021),(582635,'Alan Metter',1942,2020),(582721,'Alan Metzger',NULL,NULL),(582773,'Jim Metzler',1951,NULL),(582778,'Irving Metzman',NULL,NULL),(582797,'Jens Meurer',1963,NULL),(582848,'Nelly Quettier',NULL,NULL),(582853,'Pierre Meunier',NULL,NULL),(582878,'Jean-Michel Meurice',1938,2022),(582889,'Nina Meurisse',1988,NULL),(582890,'Paul Meurisse',1912,1979),(582891,'Théobald Meurisse',NULL,NULL),(582939,'Jason Mewes',1974,NULL),(582978,'Jan Peter Meyboom',NULL,NULL),(583043,'Brigitte Meyer',NULL,NULL),(583049,'Carl Meyer',1894,1972),(583102,'Eve Meyer',1928,1977),(583115,'Friedrich Meyer',1915,1993),(583127,'George Meyer',NULL,NULL),(583234,'Ken Meyer',NULL,NULL),(583287,'Muffie Meyer',NULL,NULL),(583292,'Nicholas Meyer',1945,NULL),(583301,'Otto Meyer',1900,1980),(583390,'Tom Meyer',NULL,NULL),(583487,'Ari Meyers',1969,NULL),(583496,'Bill Meyers',NULL,NULL),(583513,'Daniel Meyers',NULL,NULL),(583558,'Janet Meyers',NULL,NULL),(583600,'Nancy Meyers',1949,NULL),(583645,'Ray Myers',1889,1956),(583654,'Hallie Meyers-Shyer',1987,NULL),(583675,'Menno Meyjes',1954,NULL),(583763,'Juan Cristóbal Meza',1961,NULL),(583796,'Paul Mezey',NULL,NULL),(583826,'Ben Mezrich',1969,NULL),(583938,'Tristram Miall',NULL,NULL),(583948,'Andrew Miano',NULL,NULL),(583951,'Robert Miano',1942,NULL),(583956,'Cora Miao',1958,NULL),(583964,'Tien Miao',1925,2005),(583973,'Lluís Miñarro',1949,NULL),(584052,'Paul Sanchez',NULL,NULL),(584117,'George Michael',1963,2016),(584150,'Jordan Christopher Michael',1979,NULL),(584279,'Al Michaels',1944,NULL),(584382,'Joel B. Michaels',1938,NULL),(584400,'Kasper Michaels',1967,NULL),(584427,'Lorne Michaels',1944,NULL),(584445,'Michelle Michaels',NULL,NULL),(584574,'Tomas Michaelsson',1971,NULL),(584575,'Joel Michaely',NULL,NULL),(584686,'Jerzy R. Michaluk',1948,NULL),(584770,'Simon Michaël',1950,NULL),(584777,'Nicki Micheaux',1971,NULL),(584778,'Oscar Micheaux',1884,1951),(584879,'Marc Michel',1929,2016),(584896,'Odile Michel',1959,NULL),(584951,'Lea Michele',1986,NULL),(584965,'Michel Michelet',1894,1995),(584974,'Amanda Micheli',NULL,NULL),(584983,'Maurizio Micheli',1947,NULL),(584987,'André Michelin',NULL,NULL),(585011,'Roger Michell',1956,2021),(585098,'Claudia Michelsen',1969,NULL),(585118,'Harold Michelson',1920,2007),(585150,'David Michener',1932,2018),(585151,'James A. Michener',1907,1997),(585170,'Maria Michi',1921,1980),(585243,'Cathryn Michon',NULL,NULL),(585344,'Jim Mickle',NULL,NULL),(585367,'Mickie Yoshino',NULL,NULL),(585403,'Stephan Micus',1953,NULL),(585429,'Tracy Middendorf',1970,NULL),(585481,'Charles Middleton',1874,1949),(585548,'Noelle Middleton',1926,2016),(585550,'Peter Middleton',NULL,NULL),(585557,'Robert Middleton',1911,1977),(585640,'Hikaru Midorikawa',1968,NULL),(585747,'Lorenzo Mieli',1973,NULL),(585788,'Louise Mieritz',1971,NULL),(585899,'Bennie Miggins',1897,1964),(585958,'Bill Migliore',1970,NULL),(585971,'Romano Migliorini',NULL,NULL),(586005,'Mike Mignola',1960,NULL),(586123,'Radu Mihaileanu',1958,NULL),(586150,'George Mihaita',1948,NULL),(586227,'Tatsuya Mihashi',1923,2004),(586235,'Gordan Mihic',1938,2019),(586277,'Sándor Mihályfy',1937,2007),(586280,'Barna Mihók',1948,2016),(586281,'Takashi Miike',1960,NULL),(586284,'Lévon Minassian',NULL,NULL),(586345,'Hiroshi Mikami',1962,NULL),(586353,'Shinji Mikami',1965,NULL),(586370,'Ludmila Mikaël',1947,NULL),(586379,'Don Mike',NULL,NULL),(586386,'Liz Mikel',NULL,NULL),(586409,'Pawel Mykietyn',1971,NULL),(586471,'Yelena Mikhaylova',1935,NULL),(586482,'Nikita Mikhalkov',1945,NULL),(586506,'Boris Mikhin',1879,1963),(586523,'Minoru Miki',1930,2011),(586524,'Norihei Miki',1924,1999),(586565,'Lars Mikkelsen',1964,NULL),(586568,'Mads Mikkelsen',1965,NULL),(586841,'Tahmineh Milani',1960,NULL),(586922,'Ron Milbauer',1971,NULL),(586923,'Axel Milberg',1956,NULL),(586968,'Alexandra Milchan',NULL,NULL),(586969,'Arnon Milchan',1944,NULL),(587061,'Bernard Miles',1907,1991),(587085,'Christopher Miles',1939,NULL),(587184,'Maggie Miles',NULL,NULL),(587234,'Sarah Miles',1941,NULL),(587249,'Sylvia Miles',1924,2019),(587256,'Vera Miles',1929,NULL),(587277,'Lewis Milestone',1895,1980),(587332,'Gene Milford',1902,1991),(587396,'Christina Milian',1981,NULL),(587401,'Tomas Milian',1933,2017),(587429,'Djordje Milicevic',1942,NULL),(587437,'Mladen Milicevic',1958,NULL),(587518,'John Milius',1944,NULL),(587534,'John Miljan',1892,1960),(587558,'Edward K. Milkis',1931,1996),(587583,'Gerry Mill',NULL,NULL),(587669,'Gavin Millar',1938,2022),(587674,'Jeff Millar',1942,2012),(587692,'Miles Millar',1970,NULL),(587706,'Stuart Millar',1929,2006),(587743,'Oscar Millard',1908,1990),(587778,'David Millbern',1967,NULL),(587781,'John Wilcox',1905,1979),(587791,'Patrick Mille',1970,NULL),(587852,'Albert G. Miller',1905,1982),(587883,'Andrea Miller',NULL,NULL),(587884,'Andrew Miller',1969,NULL),(587900,'Ann Miller',1923,2004),(587926,'Arthur C. Miller',1895,1970),(587929,'Ashley Miller',1867,1949),(587944,'Barry Miller',1958,NULL),(587950,'Ben Miller',1966,NULL),(587955,'Bennett Miller',1966,NULL),(587964,'Bill Miller',NULL,NULL),(588003,'Winston Miller',1910,1994),(588033,'Carl Miller',1894,1979),(588079,'Chip Miller',NULL,NULL),(588082,'Chris Miller',1942,NULL),(588087,'Christopher Miller',1975,NULL),(588094,'Chris Anthony Miller',NULL,NULL),(588222,'Dennis Miller',1953,NULL),(588241,'Dick Miller',1928,2019),(588328,'F.A. Miller',NULL,2016),(588340,'Frank Miller',1957,NULL),(588351,'Fred Miller',NULL,NULL),(588364,'Gabrielle Miller',1973,NULL),(588458,'Harvey Miller',1935,1999),(588496,'Ira Miller',1940,2012),(588505,'J. Clarkson Miller',1889,1966),(588553,'Jason Miller',1939,2001),(588588,'Jennifer Miller',NULL,NULL),(588607,'Jim Miller',1955,NULL),(588612,'Jimmy Miller',NULL,NULL),(588679,'Joshua John Miller',1974,NULL),(588766,'Kristen Miller',1976,NULL),(588818,'Linda Miller',NULL,NULL),(588824,'Linda L. Miller',1961,NULL),(588883,'Marcus Miller',1959,NULL),(588914,'Mark S. Miller',NULL,NULL),(588929,'Matt K. Miller',NULL,NULL),(588998,'Michael R. Miller',NULL,NULL),(589077,'Omar Benson Miller',1978,NULL),(589158,'R. Paul Miller',NULL,NULL),(589168,'Randall Miller',NULL,NULL),(589172,'Randy Miller',NULL,NULL),(589182,'Rebecca Miller',1962,NULL),(589194,'Richard Miller',NULL,NULL),(589217,'Robert Miller',NULL,NULL),(589224,'Robert A. Miller',1947,NULL),(589248,'Roger Miller',1936,1992),(589253,'Ron Miller',1933,2019),(589284,'Sam Miller',1962,NULL),(589316,'Seton I. Miller',1902,1974),(589334,'Sherry Miller',NULL,NULL),(589357,'Stephen A. Miller',NULL,NULL),(589429,'Thomas L. Miller',1940,2020),(589489,'Virgil Miller',1886,1974),(589505,'Wentworth Miller',1972,NULL),(589616,'Bertram Millhauser',1892,1958),(589650,'Roy Millichip',1930,2003),(589665,'Brian Milligan',NULL,NULL),(589734,'Rosanne Milliken',NULL,NULL),(589738,'Sue Milliken',1940,NULL),(589777,'Bill Million',NULL,NULL),(589833,'Mario Millo',1955,NULL),(589869,'Ross Milloy',NULL,NULL),(589871,'Travis Milloy',1969,NULL),(589924,'Bob Mills',1957,NULL),(589941,'Charles Mills',NULL,NULL),(589974,'Earl Mills',NULL,NULL),(590042,'Jerry Mills',NULL,NULL),(590055,'John Mills',1908,2005),(590122,'Mike Mills',1966,NULL),(590160,'Reginald Mills',1912,1990),(590196,'Stephanie Mills',1957,NULL),(590247,'Paul Millspaugh',NULL,NULL),(590293,'Natalia Millán',1969,NULL),(590298,'Santi Millán',1968,NULL),(590316,'A.A. Milne',1882,1956),(590359,'Murray Milne',NULL,NULL),(590361,'Peter Milne',1896,1968),(590398,'Martin Milner',1931,2015),(590440,'Jean-Roger Milo',1957,NULL),(590452,'Sandra Milo',1933,NULL),(590499,'Sofia Milos',NULL,NULL),(590594,'Oury Milshtein',NULL,NULL),(590678,'Jeremy Milton',NULL,NULL),(590731,'John Omirah Miluwi',NULL,NULL),(590796,'Yvette Mimieux',1942,2022),(590799,'Yoshio Miyajima',1910,1998),(590832,'Akira Mimura',1901,1985),(590855,'Kyu-dong Min',1970,NULL),(590889,'Daniel Minahan',NULL,NULL),(590915,'Masahiko Minami',1961,NULL),(590929,'Shinsuke Minami',1930,1982),(590970,'Armen Minasian',NULL,NULL),(590973,'Stephen Minasian',1925,2021),(590984,'Tamotsu Minato',NULL,NULL),(591034,'Esther Minciotti',1888,1962),(591036,'Bady Minck',1962,NULL),(591046,'Aleksandr Mindadze',1949,NULL),(591053,'Dan Mindel',1958,NULL),(591098,'Shigeyoshi Mine',NULL,NULL),(591160,'Michael Miner',NULL,NULL),(591171,'Steve Miner',1951,NULL),(591184,'Gianni Minervini',1928,2020),(591207,'Mike Minett',NULL,NULL),(591266,'Gina Mingacci',NULL,NULL),(591275,'David Mingay',1945,NULL),(591289,'Amedeo Minghi',1947,NULL),(591352,'Birgit Minichmayr',1977,NULL),(591387,'Joseph Minion',1957,NULL),(591413,'Ben Mink',1951,NULL),(591450,'Rob Minkoff',1962,NULL),(591485,'Liza Minnelli',1946,NULL),(591486,'Vincente Minnelli',1903,1986),(591495,'R.J. Minney',1895,1979),(591528,'Byron Minns',1962,NULL),(591543,'Lee Minoff',1934,2022),(591612,'Susan Minot',1956,NULL),(591665,'Charles Minsky',1946,NULL),(591667,'Howard G. Minsky',1914,2008),(591673,'Terri Minsky',1957,NULL),(591702,'Kelly Jo Minter',1966,NULL),(591736,'Roy Minton',NULL,NULL),(591774,'Jack Mintz',1895,1983),(591791,'Sam Mintz',1897,1957),(591823,'Nerio Minuzzo',NULL,NULL),(591877,'Miou-Miou',1950,NULL),(591894,'Llorenç Miquel',1958,NULL),(591930,'Brigitte Mira',1910,2005),(591968,'Irene Miracle',1954,NULL),(591994,'Lexi Alexander',1974,NULL),(592058,'Aurora Miranda',1915,2005),(592073,'Claudio Miranda',1965,NULL),(592109,'Isa Miranda',1905,1982),(592135,'Lin-Manuel Miranda',1980,NULL),(592217,'Tom Miranda',1886,1962),(592282,'Octave Mirbeau',1850,1917),(592317,'Nicole Mirel',1941,NULL),(592387,'Walter Mirisch',1921,2023),(592400,'David Mirkin',1955,NULL),(592427,'Steve Mirkovich',NULL,NULL),(592436,'Brad Mirman',1953,NULL),(592491,'Evgeniy Mironov',1966,NULL),(592500,'Olga Mironova',NULL,NULL),(592502,'Valentina Mironova',NULL,NULL),(592537,'Stephen Mirrione',1969,NULL),(592554,'Mojtaba Mirtahmasb',NULL,NULL),(592598,'Tony Mirza',NULL,NULL),(592663,'Anne Misawa',NULL,NULL),(592666,'Katsuji Misawa',NULL,NULL),(592679,'Josef Mischel',1899,1954),(592734,'Sara Mishara',NULL,NULL),(592735,'Aleksandr Misharin',1939,2008),(592746,'Kevin Misher',NULL,NULL),(592756,'Masao Mishima',1906,1973),(592824,'Bob Misiorowski',1944,NULL),(592911,'Renée Missel',1943,NULL),(592945,'Marc Missonnier',1970,NULL),(592961,'John Mister',NULL,NULL),(593014,'Kenji Misumi',1921,1975),(593047,'Yûko Mita',1954,NULL),(593055,'Kunihiko Mitamura',NULL,NULL),(593060,'Robert Mitas',NULL,NULL),(593066,'Jacquelyn Mitchard',1953,NULL),(593079,'Mary Mitchel',1940,NULL),(593129,'Ann Mitchell',1939,NULL),(593200,'Casey T. Mitchell',NULL,NULL),(593222,'Chris W. Mitchell',NULL,NULL),(593262,'David Mitchell',NULL,NULL),(593294,'Doug Mitchell',NULL,NULL),(593310,'Elizabeth Mitchell',1970,NULL),(593383,'Heather Mitchell',NULL,NULL),(593412,'James Mitchell',1929,2010),(593463,'John Cameron Mitchell',1963,NULL),(593477,'Joseph A. Mitchell',1866,1950),(593483,'Julian Mitchell',1935,NULL),(593565,'Margaret Mitchell',1900,1949),(593610,'Mike Mitchell',1970,NULL),(593618,'Monika Mitchell',NULL,NULL),(593661,'Philip Mitchell',NULL,NULL),(593664,'Radha Mitchell',1973,NULL),(593691,'Ron Mitchell',1937,2006),(593711,'Sasha Mitchell',1967,NULL),(593746,'Steve Mitchell',NULL,NULL),(593775,'Thomas Mitchell',1892,1962),(593786,'Tony Mitchell',NULL,NULL),(593814,'Yvonne Mitchell',1915,1979),(593819,'Ilan Mitchell-Smith',1969,NULL),(593838,'Ken Mitchroney',1958,NULL),(593841,'Bentley Mitchum',1967,NULL),(593856,'Ron Mita',NULL,NULL),(593867,'Nancy Mitford',1904,1973),(593911,'Michie Tomizawa',1961,NULL),(593930,'Mitsuko Mito',1919,1981),(593958,'Premendra Mitra',1904,1988),(593961,'Rhona Mitra',1976,NULL),(593970,'Subrata Mitra',1931,2001),(594062,'Kôji Mitsui',1910,1979),(594074,'Kotono Mitsuishi',1967,NULL),(594075,'Tomijiro Mitsuishi',NULL,NULL),(594081,'Shinkichi Mitsumune',1963,NULL),(594093,'Utako Mitsuya',1936,2004),(594220,'Dean Edward Mitzner',NULL,NULL),(594231,'Ayane Miura',1973,NULL),(594258,'Tôru Miura',NULL,NULL),(594271,'Akihiro Miwa',1935,NULL),(594275,'Hitomi Miwa',1978,NULL),(594323,'Miyuki Miyabe',1960,NULL),(594331,'Ichirôta Miyakawa',1966,NULL),(594332,'Ichirô Miyagawa',NULL,2008),(594335,'Kazuo Miyagawa',1908,1999),(594348,'Seiji Miyaguchi',1913,1985),(594366,'Ryûji Miyajima',NULL,NULL),(594381,'Kuniko Miyake',1916,1992),(594421,'Nobuko Miyamoto',1945,NULL),(594429,'Teru Miyamoto',1947,NULL),(594436,'Yûko Miyamura',1972,NULL),(594487,'Kunio Miyauchi',1932,2006),(594488,'Kôhei Miyauchi',1929,1995),(594497,'Aoi Miyazaki',1985,NULL),(594499,'Dai Miyazaki',NULL,NULL),(594503,'Hayao Miyazaki',1941,NULL),(594506,'Issei Miyazaki',NULL,NULL),(594531,'Kenji Miyazawa',1896,1933),(594533,'Rie Miyazawa',1973,NULL),(594540,'Kim Miyori',1951,NULL),(594587,'Tony Mizgalski',1959,NULL),(594646,'Kaori Mizuhashi',1974,NULL),(594647,'Kenji Mizuhashi',1975,NULL),(594655,'Asami Mizukawa',1983,NULL),(594682,'Kumi Mizuno',1937,NULL),(594684,'Miki Mizuno',1974,NULL),(594730,'Yûko Mizutani',1964,2016),(594746,'Anne-Marie Miéville',1945,NULL),(594885,'Geneviève Mnich',1942,NULL),(594891,'Alexandre Mnouchkine',1908,1993),(594898,'Mo\'Nique',1967,NULL),(594909,'Teresa Mo',1960,NULL),(594937,'Tawai Moana',NULL,NULL),(594970,'Akbar Moazezi',NULL,NULL),(595002,'Vilhelm Moberg',1898,1973),(595071,'Nick Moceri',NULL,NULL),(595088,'Emi Mochizuki',NULL,NULL),(595101,'Tomomi Mochizuki',1958,NULL),(595217,'Marryam Modell',1908,1994),(595227,'Daniel Moder',1969,NULL),(595235,'Mike Moder',1936,2022),(595272,'Patrick Modiano',1945,NULL),(595295,'Diego Modino',NULL,NULL),(595321,'Gaston Modot',1887,1970),(595547,'Lauren Vilchik',1968,NULL),(595567,'Donald Moffat',1930,2018),(595590,'Steven Moffat',1961,NULL),(595631,'D.W. Moffett',1954,NULL),(595640,'Michelle Moffett',NULL,NULL),(595668,'Eric Mofford',NULL,NULL),(595680,'Patrick Mofokeng',NULL,NULL),(595738,'Deborah Moggach',1948,NULL),(595899,'Editor Mohan',NULL,NULL),(595954,'Hideo Shigehara',NULL,NULL),(596101,'Ahmad Reza Moayed Mohseni',NULL,NULL),(596145,'Amir Moini',NULL,NULL),(596240,'Shantanu Moitra',NULL,NULL),(596257,'Kazem Mojdehi',NULL,NULL),(596297,'Karen Mok',1970,NULL),(596298,'Ken Mok',1960,NULL),(596360,'Amir Mokri',NULL,NULL),(596364,'Sergey Mokritskiy',NULL,NULL),(596365,'Peter Mokrosinski',1953,NULL),(596407,'Hans Petter Moland',1955,NULL),(596411,'Harald Molander',1909,1994),(596449,'Kirill Molchanov',1922,1982),(596495,'Charlie Mole',NULL,NULL),(596520,'Gerald R. Molen',1935,NULL),(596542,'Ron Moler',NULL,NULL),(596588,'Nathalie Moliavko-Visotzky',NULL,NULL),(596625,'Vicente Molina Foix',NULL,NULL),(596663,'Carmen Molina',1920,1998),(596668,'Christian Molina',NULL,NULL),(596675,'David Molina',1959,NULL),(596710,'Jorge Molina',1966,NULL),(596750,'Miguel Molina',1963,NULL),(596807,'Ángela Molina',1955,NULL),(596850,'Édouard Molinaro',1928,2013),(596942,'Molière',1622,1673),(596962,'Dominik Moll',1962,NULL),(596968,'Giorgia Moll',1938,NULL),(597042,'Clotilde Mollet',NULL,NULL),(597073,'Deborah Mollison',1958,NULL),(597086,'Gumersindo Mollo',NULL,NULL),(597125,'Mike Molloy',1940,NULL),(597146,'Julius Molnar',1917,1971),(597175,'Ferenc Molnár',1878,1952),(597184,'László Molnár',NULL,NULL),(597215,'Alan Moloney',NULL,NULL),(597223,'Janel Moloney',1969,NULL),(597258,'Graham Moloy',NULL,NULL),(597344,'Hilary Momberger-Powers',1962,NULL),(597388,'Jason Momoa',1979,NULL),(597390,'Kaori Momoi',1952,NULL),(597410,'Taylor Momsen',1993,NULL),(597480,'Dominic Monaghan',1976,NULL),(597492,'Laurence de Monaghan',1954,NULL),(597517,'Dan Monahan',1955,NULL),(597520,'Dave Monahan',1918,2003),(597552,'Tonia Monahan',NULL,NULL),(597574,'Paul Monash',1917,2003),(597578,'Nate Monaster',1911,1990),(597597,'Georges Monca',1867,1939),(597673,'Karen Moncrieff',1963,NULL),(597740,'Merwin Mondesir',1976,NULL),(597812,'Andrew Mondshein',1962,NULL),(597816,'Pierre Mondy',1925,2012),(597857,'Paul Mones',1955,NULL),(597923,'Richard Monette',1944,2008),(597967,'Geordy Couturiau',1989,NULL),(598036,'Ifor David Monger',NULL,NULL),(598102,'Mario Monicelli',1915,2010),(598114,'Colin Monie',NULL,NULL),(598173,'Jayme Monjardim',1956,NULL),(598267,'John Monks Jr.',1910,2004),(598282,'Michael Monks',NULL,NULL),(598289,'Yvonne Monlaur',1935,2017),(598336,'Jacques Monnet',1934,NULL),(598356,'Antoine Monnier',NULL,NULL),(598394,'Roland Monod',1929,2015),(598408,'András Monory Mész',1954,NULL),(598413,'Lawrence Monoson',1964,NULL),(598443,'Cinzia Monreale',1957,NULL),(598520,'Julie Monroe',NULL,NULL),(598569,'Steve Monroe',1972,NULL),(598572,'Thomas Monroe',1902,1960),(598622,'Nicholas Monsarrat',1910,1979),(598747,'Ewen Montagu',1901,1985),(598823,'Carlos Montalbán',1903,1991),(598857,'Thibault de Montalembert',1962,NULL),(598895,'Chris Montan',NULL,NULL),(598925,'Karla Montana',NULL,NULL),(598971,'Yves Montand',1921,1991),(598996,'Ben Montanio',1959,NULL),(599044,'Pierre Montazel',1911,1975),(599074,'Irene Montcada',NULL,NULL),(599170,'Hubert Monteilhet',1928,2019),(599173,'Max Monteillet',NULL,NULL),(599269,'Carmen Montejo',1925,2013),(599291,'Enzo Monteleone',1954,NULL),(599359,'Hugo Montenegro',1925,1981),(599393,'Art Monterastelli',1957,NULL),(599459,'Mario Montero',NULL,NULL),(599532,'Conchita Montes',1914,1994),(599545,'Eugenio Montes',NULL,NULL),(599573,'Michael Montes',NULL,NULL),(599609,'Mike Montesano',NULL,NULL),(599688,'Maria Montez',1912,1951),(599698,'Muriel Montossé',1955,NULL),(599719,'Anthony Montgomery',1971,NULL),(599736,'Bruce Montgomery',1921,1978),(599771,'Ed Montgomery',1909,1992),(599844,'Lucy Maud Montgomery',1874,1942),(599863,'Monty Montgomery',1963,NULL),(599943,'Tom Montgomery',NULL,NULL),(599958,'Maryline Monthieux',NULL,NULL),(599983,'Félix Monti',1938,NULL),(600044,'Cecilia Montiel',1955,NULL),(600237,'Matthew E. Montoya',NULL,NULL),(600261,'Luc Montpellier',NULL,NULL),(600409,'Daniel Monzón',1968,NULL),(600419,'Ángel Monís',NULL,NULL),(600473,'Elizabeth Moody',1939,2010),(600531,'Ron Moody',1924,2015),(600546,'Lukas Moodysson',1969,NULL),(600552,'Heinz Moog',1908,1989),(600641,'Lorna Moon',1886,1930),(600667,'Sheri Moon Zombie',1970,NULL),(600668,'Moon So-ri',1974,NULL),(600672,'Sung-heon Moon',NULL,NULL),(600755,'Martin Mooney',1896,1967),(600781,'Tony Mooney',1965,NULL),(600794,'Hank Moonjean',1930,2012),(600838,'Greg Mooradian',NULL,NULL),(600860,'Roy Moore',1944,NULL),(600872,'Alan Moore',1953,NULL),(600877,'Pink',1979,NULL),(600886,'Alvy Moore',1921,1997),(600903,'Annabelle Moore',1878,1961),(600961,'Bobby Moore',1941,1993),(600972,'Brian Moore',1921,1999),(601031,'Chris Moore',NULL,NULL),(601077,'Michael D. Moore',1914,2013),(601086,'Daniel Moore',NULL,NULL),(601146,'Duke Moore',1913,1976),(601210,'Frank Moore',1946,NULL),(601235,'Gene Moore',NULL,1998),(601239,'George Moore',1852,1933),(601262,'Guy Moore',1969,NULL),(601337,'Jason Moore',1970,NULL),(601369,'Joanna Moore',1934,1997),(601382,'John Moore',1970,NULL),(601443,'Katherine Leslie Moore',NULL,NULL),(601476,'Kieron Moore',1924,2007),(601548,'Maggie Moore',NULL,NULL),(601553,'Mandy Moore',1984,NULL),(601597,'Matt Moore',NULL,NULL),(601619,'Michael Moore',1954,NULL),(601655,'Millie Moore',1928,2015),(601680,'Nick Moore',NULL,NULL),(601698,'Owen Moore',1884,1939),(601781,'Rich Moore',1963,NULL),(601785,'Richard Moore',1925,2009),(601800,'Robert Moore',1927,1984),(601811,'Robin Moore',1925,2008),(601822,'Ronald D. Moore',1964,NULL),(601834,'Rudy Ray Moore',1927,2008),(601859,'Scott Moore',NULL,NULL),(601874,'Sheila Moore',1938,NULL),(601881,'Simon Moore',1958,NULL),(601890,'Stephanie Moore',1970,NULL),(601912,'Susanna Moore',1945,NULL),(601924,'Ted Moore',1914,1987),(601930,'Terry Moore',1929,NULL),(601944,'Thomas Moore',NULL,NULL),(601954,'Tim Moore',NULL,NULL),(601959,'Toby Moore',1977,NULL),(601962,'Tom Moore',1883,1955),(601963,'Tom Moore',1943,NULL),(602005,'Victor Moore',1876,1962),(602098,'Simon Moorhead',NULL,NULL),(602104,'Jocelyn Moorhouse',1960,NULL),(602161,'Corey Moosa',NULL,NULL),(602333,'Philippe Mora',1949,NULL),(602392,'Safar Ali Moradi',NULL,NULL),(602445,'Mark Moraghan',1963,NULL),(602455,'Hattie Morahan',1978,NULL),(602508,'Ignacio del Moral',1957,NULL),(602615,'Gracita Morales',1928,1995),(602616,'Guillem Morales',1975,NULL),(602660,'José María Morales',NULL,NULL),(602792,'Jacques Morali',1946,1991),(602803,'Jackie Moran',1923,1990),(602824,'Darin Moran',1969,NULL),(602834,'Dolores Moran',1926,1982),(602836,'Dylan Moran',1971,NULL),(602839,'Eddie Moran',1899,1987),(602844,'Erin Moran',1960,2017),(602885,'Jonah Moran',NULL,NULL),(602922,'Martha Moran',NULL,NULL),(602931,'Mike Moran',1948,NULL),(602941,'Nick Moran',1969,NULL),(602985,'Tony Moran',1957,NULL),(603008,'Paul Morand',1888,1976),(603090,'Laura Morante',1956,NULL),(603091,'Marcello Morante',1916,2005),(603094,'Massimo Morante',1952,2022),(603179,'Alberto Moravia',1907,1990),(603402,'Jeanne Moreau',1928,2017),(603408,'Kimberly S. Moreau',NULL,NULL),(603413,'Marguerite Moreau',1977,NULL),(603446,'Yolande Moreau',1953,NULL),(603543,'Roberto Moreira',NULL,NULL),(603600,'Jacques Morel',1922,2008),(603628,'Pierre Morel',1964,NULL),(603646,'Mantan Moreland',1902,1973),(603673,'Sheila Moreland',NULL,NULL),(603682,'André Morell',1909,1978),(603726,'Annamaria Morelli',NULL,NULL),(603758,'Paulo Morelli',NULL,NULL),(603875,'Antonio Moreno',1887,1967),(603916,'Darío Moreno',1921,1968),(604263,'Bobby Moresco',1951,NULL),(604335,'Nanni Moretti',1953,NULL),(604349,'Tobias Moretti',1959,NULL),(604360,'Rafael Moreu',NULL,NULL),(604392,'Larry Morey',1905,1971),(604448,'Abi Morgan',1968,NULL),(604526,'Byron Morgan',1889,1963),(604555,'Chris Morgan',NULL,NULL),(604558,'Christopher Morgan',1942,NULL),(604563,'Cindy Morgan',1954,NULL),(604656,'Frank Morgan',1890,1949),(604687,'Gladys Morgan',1898,1983),(604688,'Glen Morgan',1961,NULL),(604698,'Guy Morgan',1908,1964),(604699,'Hallie Todd',1962,NULL),(604702,'Harry Morgan',1915,2011),(604742,'Jeffrey Dean Morgan',1966,NULL),(604811,'Kendall Morgan',NULL,NULL),(604878,'Mark Morgan',NULL,NULL),(604948,'Peter Morgan',1963,NULL),(604960,'Ralph Morgan',1883,1956),(604987,'Robbi Morgan',1961,NULL),(605079,'Tracy Morgan',1968,NULL),(605080,'Trevor Morgan',1986,NULL),(605081,'Vanessa Morgan',1992,NULL),(605088,'Wendy Morgan',1958,NULL),(605093,'William Morgan',1899,1964),(605128,'David Morgasen',NULL,NULL),(605190,'Kramer Morgenthau',1966,NULL),(605215,'Lou Morheim',1922,2013),(605245,'Kazuo Mori',1911,1989),(605270,'Masayuki Mori',1911,1973),(605271,'Masayuki Mori',1965,NULL),(605303,'Takemoto Mori',NULL,NULL),(605312,'Toshia Mori',1912,1995),(605363,'Michael Moriarty',1941,NULL),(605365,'P.H. Moriarty',1939,NULL),(605388,'Tara Morice',1964,NULL),(605451,'Toshiyuki Morikawa',1967,NULL),(605453,'Shôtarô Morikubo',1974,NULL),(605480,'Leo Morimoto',1943,NULL),(605494,'Alberto Morin',1902,1989),(605513,'Cyril Morin',1962,NULL),(605514,'D. David Morin',1955,NULL),(605515,'Daniel Morin',NULL,NULL),(605629,'Nobuhiko Morino',NULL,NULL),(605676,'Yoshiyuki Morishita',1962,NULL),(605685,'Patricia Morison',1915,2018),(605706,'Rui Morisson',1948,NULL),(605709,'Fujio Morita',1927,2014),(605720,'Mamoru Morita',NULL,NULL),(605731,'Rhett Morita',NULL,NULL),(605743,'Shirô Moritani',1931,1984),(605758,'David Moritz',NULL,NULL),(605775,'Neal H. Moritz',1959,NULL),(605786,'Henning Moritzen',1928,2012),(605797,'Shûichirô Moriyama',1934,2021),(605799,'Yûji Moriyama',1960,NULL),(605859,'Angela Morley',1924,2009),(605904,'Karen Morley',1909,2003),(605923,'Robert Morley',1908,1992),(606074,'David Moroni',NULL,NULL),(606081,'Vittorio Moroni',NULL,NULL),(606179,'Tony Morphett',1938,2018),(606190,'Michael Morpurgo',1943,NULL),(606206,'Irene Morra',1893,1978),(606211,'Mario Morra',1935,NULL),(606251,'David Morrell',1943,NULL),(606294,'Kirk M. Morri',NULL,NULL),(606302,'Ronald Hugh Morrieson',1922,1972),(606308,'John Arthur Morrill',1935,2015),(606371,'Barboura Morris',1932,1975),(606402,'Brian Morris',1939,NULL),(606422,'Cassandra Lee Morris',NULL,NULL),(606431,'Chester Morris',1901,1970),(606439,'Christopher Morris',1965,NULL),(606487,'Dean Norris',1963,NULL),(606510,'Edmund Morris',1912,1998),(606560,'Glynne Morris',1922,NULL),(606568,'Grant Morris',NULL,NULL),(606593,'Howard Morris',1919,2005),(606597,'Iain Morris',1973,NULL),(606599,'Iona Morris',1957,NULL),(606628,'Jeff Morris',1934,2004),(606640,'Jim Morris',NULL,NULL),(606657,'John Morris',1926,2018),(606682,'Jonathan Morris',1949,NULL),(606688,'Judy Morris',1947,NULL),(606690,'Julian Morris',1983,NULL),(606766,'Marianne Morris',1950,NULL),(606877,'Redmond Morris',1947,NULL),(606878,'Reggie Morris',1886,1928),(606886,'Richard Morris',1924,1996),(606899,'Robert Morris',NULL,NULL),(606998,'Wayne Morris',1914,1959),(607000,'Wayne Morris',NULL,NULL),(607185,'Jennifer Morrison',1979,NULL),(607275,'Phil Morrison',NULL,NULL),(607325,'Temuera Morrison',1960,NULL),(607339,'Toni Morrison',1931,2019),(607341,'Van Morrison',1945,NULL),(607359,'Frank Morriss',1927,2013),(607369,'Betty Morrissey',1907,1944),(607375,'David Morrissey',1964,NULL),(607407,'Paul Morrissey',1938,NULL),(607448,'Boris Morros',1891,1963),(607454,'Barry Morrow',1948,NULL),(607504,'Jeff Morrow',1907,1993),(607516,'Kirby Morrow',1973,2020),(607525,'Max Morrow',1991,NULL),(607554,'Susan Morrow',1931,1985),(607559,'Wendy Morrow',NULL,NULL),(607609,'Helen Morse',1947,NULL),(607666,'Robert Morse',1931,2022),(607673,'Susan E. Morse',1952,NULL),(607694,'Fulvio Morsella',NULL,2002),(607703,'Glenn Morshower',1959,NULL),(607725,'Cynthia Mort',1956,NULL),(607831,'Koen Mortier',1965,NULL),(607865,'Emily Mortimer',1971,NULL),(607876,'John Mortimer',1923,2009),(607890,'Penelope Mortimer',1918,1999),(607916,'Alexander Morton',1945,NULL),(608012,'Joe Morton',1947,NULL),(608034,'Lew Morton',1970,NULL),(608043,'Marcus Morton',NULL,NULL),(608056,'Mickey Morton',1927,1993),(608084,'Rocky Morton',1955,NULL),(608090,'Samantha Morton',1977,NULL),(608118,'Lawrence Mortorff',NULL,NULL),(608187,'Mercedes Morán',1955,NULL),(608210,'Manuel Morón',1956,NULL),(608214,'Ali Mosaffa',1966,NULL),(608247,'Fabrizio Mosca',NULL,NULL),(608295,'Vincent Moscato',1965,NULL),(608311,'Gastone Moschin',1929,2017),(608405,'Bill Moseley',1951,NULL),(608440,'William Moseley',1987,NULL),(608632,'William R. Moses',1959,NULL),(608658,'Bob Mosher',1915,1972),(608701,'Moni Moshonov',1951,NULL),(608714,'Scott Mosier',1971,NULL),(608845,'Nicholas Mosley',1923,2017),(608853,'Roger E. Mosley',1938,2022),(608859,'Walter Mosley',1952,NULL),(608897,'Charles B. Moss Jr.',1944,NULL),(608972,'George Moss',NULL,NULL),(608986,'Jack Moss',1906,1975),(609031,'Marc Moss',NULL,NULL),(609040,'Michael H. Moss',NULL,NULL),(609078,'Ronn Moss',1952,NULL),(609114,'Ebon Moss-Bachrach',1977,NULL),(609129,'Åsa Mossberg',1968,NULL),(609137,'Mark Moseley',1964,NULL),(609163,'Phil Mossman',NULL,NULL),(609184,'Jeff Most',1960,NULL),(609207,'Montse Mostaza',NULL,NULL),(609216,'Zero Mostel',1915,1977),(609219,'Denis-Noel Mostert',NULL,NULL),(609236,'Jonathan Mostow',1961,NULL),(609265,'Martin Moszkowicz',1958,NULL),(609306,'Masako Motai',1952,NULL),(609354,'Paul Motian',1931,2011),(609365,'David Motion',NULL,NULL),(609403,'Masahiro Motoki',1965,NULL),(609404,'Sôjirô Motoki',1914,1977),(609408,'Eibi Motomochi',NULL,NULL),(609549,'Greg Mottola',1964,NULL),(609625,'Agnès Mouchel',NULL,NULL),(609635,'Jaroslav Moucka',1923,2009),(609662,'Anna Mouglalis',1978,NULL),(609699,'John Moulder-Brown',1953,NULL),(609845,'Anson Mount',1973,NULL),(609861,'Thom Mount',1948,NULL),(609918,'Edgar Moura',NULL,NULL),(609944,'Wagner Moura',1976,NULL),(609948,'Christine Mourad',1965,NULL),(609981,'Emmanuel Mouret',1970,NULL),(609999,'Vangelis Mourikis',NULL,NULL),(610056,'Dru Mouser',1971,NULL),(610115,'Marcel Moussy',1924,1995),(610116,'Moustache',1929,1987),(610194,'Mohammad Reza Mouyini',NULL,NULL),(610207,'André Mouëzy-Éon',1880,1967),(610210,'Krystia Mova',NULL,NULL),(610219,'Oren Moverman',1966,NULL),(610228,'Lisbeth Movin',1917,2011),(610253,'Alan Mowbray',1896,1969),(610261,'Malcolm Mowbray',1949,2023),(610298,'Tia Mowry',1978,NULL),(610303,'John Llewellyn Moxey',1925,2019),(610459,'Stephen Moyer',1969,NULL),(610465,'Todd Moyer',NULL,NULL),(610480,'Patricia Moyes',1923,2000),(610496,'Allan Moyle',1947,NULL),(610786,'Mu Chu',1938,2007),(610797,'Kunihiko Murai',1945,NULL),(610831,'Gabriele Muccino',1967,NULL),(610904,'Zoltán Mucsi',1957,NULL),(610935,'Dan Mudford',NULL,NULL),(610960,'Kornél Mundruczó',1975,NULL),(611052,'Hans Carl Mueller',1889,1960),(611064,'Jeffrey A. Mueller',NULL,NULL),(611274,'András Muhi',1956,NULL),(611277,'Donald F. Muhich',1931,2012),(611315,'Anita Mui',1963,2003),(611341,'David Muir',1935,NULL),(611344,'Domonic Muir',1962,2010),(611356,'Geraldine Muir',NULL,NULL),(611390,'Rob Muir',NULL,NULL),(611520,'D.N. Mukherjee',NULL,NULL),(611531,'Hrishikesh Mukherjee',1922,2006),(611538,'Madhavi Mukherjee',1942,NULL),(611552,'Rani Mukerji',1978,NULL),(611555,'Robin Mukherjee',NULL,NULL),(611575,'Swapan Mukherjee',NULL,NULL),(611683,'Russell Mulcahy',1953,NULL),(611703,'Michael Mulconery',NULL,NULL),(611705,'Walt Mulconery',1932,2001),(611731,'Saskia Mulder',1973,NULL),(611766,'Dominic Muldowney',1952,NULL),(611811,'Edward Mulhare',1923,1997),(611833,'Danny Mulheron',NULL,NULL),(611848,'Jim Mulholland',NULL,NULL),(611854,'Mark Mulholland',1937,2007),(611898,'Martin Mull',1943,NULL),(611925,'Carrie Mullan',1989,NULL),(611932,'Peter Mullan',1959,NULL),(611955,'Jack Mullaney',1929,1982),(611983,'April Mullen',NULL,NULL),(612020,'Kathryn Mullen',1940,NULL),(612078,'Harrison Muller',NULL,NULL),(612191,'Marco Müller',1953,NULL),(612199,'Melissa Müller',NULL,NULL),(612219,'Paul Muller',1923,2016),(612239,'Romeo Muller',1928,1992),(612321,'Richard Mulligan',1932,2000),(612322,'Robert Mulligan',1925,2008),(612348,'Eugene Mullin',1894,1967),(612367,'Rod Mullinar',1942,NULL),(612443,'Tom Mullion',NULL,NULL),(612487,'Kieran Mulroney',1965,NULL),(612529,'Charles Mulvehill',NULL,NULL),(612534,'Callan Mulvey',1975,NULL),(612571,'Samantha Mumba',1983,NULL),(612583,'Dean Mumford',NULL,NULL),(612664,'Laurits Munch-Petersen',1973,NULL),(612675,'Charlotte Munck',1969,NULL),(612743,'Herbert Mundin',1898,1939),(612802,'Andrew Munger',NULL,NULL),(612816,'Cristian Mungiu',1968,NULL),(612847,'Paul Muni',1895,1967),(612855,'Robert Munic',NULL,NULL),(612906,'Myrian Muniz',1931,2004),(612965,'Mike Munn',1959,NULL),(612992,'Pep Munné',1953,NULL),(612999,'Carlos Muñoz',1919,2005),(613084,'Alice Munro',1931,NULL),(613098,'Caroline Munro',1949,NULL),(613130,'Janet Munro',1934,1972),(613163,'Rona Munro',1959,NULL),(613211,'David Munrow',1942,1976),(613248,'Craig Munson',NULL,NULL),(613262,'Ona Munson',1903,1955),(613349,'Manuel Munz',1960,NULL),(613364,'Maksim Munzuk',1910,1999),(613434,'Silvio Muraglia',NULL,NULL),(613444,'Sadayuki Murai',1964,NULL),(613460,'Glen Murakami',1968,NULL),(613471,'Jimmy T. Murakami',1933,2014),(613472,'Jun Murakami',1973,NULL),(613482,'Osamu Murakami',NULL,NULL),(613487,'Ryû Murakami',1952,NULL),(613499,'Yoshirô Muraki',1924,2009),(613528,'Takatsugu Muramatsu',NULL,NULL),(613561,'Sachiko Murase',1905,1993),(613577,'Jean-Louis Murat',1952,2023),(613580,'Júlia Murat',1979,NULL),(613587,'Stéphanie Murat',1966,NULL),(613594,'Kiyoko Murata',1945,NULL),(613609,'Takeo Murata',1910,1994),(613611,'Todd Y. Murata',1974,NULL),(613625,'Robert Muratore',NULL,NULL),(613655,'Irina Muravyova',1949,NULL),(613657,'Bob Murawski',1964,NULL),(613673,'Tetsuya Murayama',NULL,NULL),(613677,'Roger Murbach',NULL,NULL),(613740,'Michelle Murdocca',NULL,NULL),(613748,'Colin Murdock',1958,NULL),(613848,'Jane Murfin',1884,1955),(613870,'Patrick Murguia',1971,NULL),(613939,'Luis Murillo',NULL,NULL),(613981,'John Murlowski',NULL,NULL),(613997,'Christopher Murney',1943,NULL),(614026,'Shigeru Muroi',1960,NULL),(614050,'Christopher Murphey',NULL,NULL),(614107,'Bill Murphy',NULL,NULL),(614151,'Charlie Murphy',1959,2017),(614165,'Cillian Murphy',1976,NULL),(614197,'Dennis Murphy',1932,2005),(614220,'Donna Murphy',NULL,NULL),(614276,'Geoff Murphy',1938,2018),(614278,'George Murphy',1902,1992),(614373,'John Murphy',1965,NULL),(614403,'Johnny Murphy',1943,2016),(614414,'Julian Murphy',NULL,NULL),(614420,'Karen Murphy',NULL,NULL),(614436,'Kevin Murphy',1956,NULL),(614500,'Mary Murphy',1931,2011),(614505,'Matt Murphy',NULL,NULL),(614526,'Michael Murphy',NULL,NULL),(614584,'Pat Murphy',1951,NULL),(614641,'Reilly Murphy',NULL,NULL),(614645,'Richard Murphy',1912,1993),(614677,'Rosemary Murphy',1925,2014),(614682,'Ryan Murphy',1965,NULL),(614693,'Scott Murphy',NULL,NULL),(614730,'Steve Murphy',1876,1953),(614742,'Tab Murphy',NULL,NULL),(614774,'Walter Murphy',1952,NULL),(614775,'Warren Murphy',1933,2015),(614877,'Chad Michael Murray',1981,NULL),(614916,'Don Murray',1929,NULL),(614921,'Doug Murray',NULL,NULL),(614950,'Forrest Murray',NULL,NULL),(615005,'Jack Murray',1909,1961),(615012,'Jack L. Murray',NULL,NULL),(615014,'James Murray',1901,1936),(615063,'Joel Murray',1963,NULL),(615080,'John Fenton Murray',1917,1996),(615138,'Lyn Murray',1909,1989),(615209,'Paul T. Murray',NULL,2018),(615306,'Tom Murray',1873,1935),(615511,'Lautaro Murúa',1926,1995),(615556,'Tom Musca',NULL,NULL),(615592,'Andy Muschietti',1973,NULL),(615688,'Michael Moshonov',1986,NULL),(615757,'Martina Musilová',1969,NULL),(615762,'Luigi Musini',NULL,NULL),(615770,'Lisa Muskat',NULL,NULL),(615780,'John Musker',1953,NULL),(615788,'Jane Musky',1954,NULL),(615880,'Murat Mussin',NULL,NULL),(615914,'Dalan Musson',NULL,NULL),(616026,'Antonio Musu',1916,1979),(616068,'Garikayi Mutambirwa',1978,NULL),(616091,'Ellen Muth',1981,NULL),(616141,'John Muto',NULL,NULL),(616142,'Sumi Mutoh',NULL,NULL),(616152,'Floyd Mutrux',1941,NULL),(616153,'Gail Mutrux',NULL,NULL),(616163,'Gorô Mutsumi',1934,2021),(616271,'Paul Muzzcat',NULL,NULL),(616333,'José Muñoz Molleda',NULL,NULL),(616385,'Chema Muñoz',1949,NULL),(616393,'David Muñoz',1968,NULL),(616550,'Mya',1979,NULL),(616556,'Andrey Myagkov',1938,2021),(616575,'Olga Miasnikova',NULL,NULL),(616601,'Walter C. Mycroft',1890,1959),(616675,'Cynthia Myers',1950,2011),(616680,'David Myers',1914,2004),(616697,'Douglas Myers',1910,1962),(616729,'Harry Myers',1882,1938),(616730,'Henry Myers',1893,1975),(616735,'Jake Myers',NULL,NULL),(616762,'Kathleen Myers',1899,1959),(616766,'Kim Myers',1966,NULL),(616794,'Mark Myers',NULL,NULL),(616804,'Matthew Myers',1968,2021),(616829,'Peter Myers',1923,1978),(616859,'Stephen R. Myers',NULL,NULL),(616962,'Maureen Mylander',NULL,NULL),(617009,'Sophia Myles',1980,NULL),(617042,'Mark Mylod',NULL,NULL),(617130,'Daniel Myrick',1963,NULL),(617141,'Arden Myrin',NULL,NULL),(617147,'Ben Myron',NULL,NULL),(617225,'Pál Mácsai',1961,NULL),(617265,'Félix Máriássy',1919,1975),(617277,'László Márkus',1927,1985),(617349,'Balázs Márton',1974,NULL),(617350,'Gyula Márton',NULL,NULL),(617362,'János Másik',1952,NULL),(617504,'Peter Märthesheimer',1937,2004),(617515,'Claes Månsson',1950,NULL),(617523,'Måns Mårlind',1969,NULL),(617587,'André Méliès',1901,1985),(617588,'Georges Méliès',1861,1938),(617627,'Luis Méndez',NULL,2005),(617655,'Fernando Méndez',1908,1966),(617674,'Lucía Méndez',1955,NULL),(617686,'Nacho Méndez',NULL,NULL),(617705,'Margaret Ménégoz',1941,NULL),(617736,'Macha Méril',1940,NULL),(617737,'Prosper Mérimée',1803,1870),(617741,'Michèle Méritz',1923,1998),(617789,'Jean-Claude Mézières',1938,2022),(617846,'Carl Möhner',1921,2005),(617852,'Wotan Wilke Möhring',1967,NULL),(618057,'Ulrich Mühe',1953,2007),(618169,'Hans Müller',1882,1950),(618176,'Hans-Reinhard Müller',1922,1989),(618262,'Nina Maag',1972,NULL),(618460,'Maimouna N\'Diaye',NULL,NULL),(618462,'Ynousse N\'Diaye',NULL,NULL),(618468,'Youssou N\'Dour',1959,NULL),(618520,'Moon-hee Na',1941,NULL),(618533,'Joseph T. Naar',1925,2014),(618558,'Diane Nabatoff',1956,NULL),(618577,'Joey Naber',NULL,NULL),(618579,'Toshio Nabeshima',NULL,NULL),(618603,'Vladimir Nabokov',1899,1977),(618651,'Samy Naceri',1961,NULL),(618680,'Jeffrey Nachmanoff',1967,NULL),(618690,'Matheus Nachtergaele',1969,NULL),(618720,'William Nack',1941,2018),(618768,'Mustafa Nadarevic',1943,2020),(618779,'Ruba Nadda',NULL,NULL),(618795,'Claire Nadeau',1945,NULL),(618797,'Elyane Nadeau',1945,2005),(618800,'Gary Nadeau',NULL,NULL),(618834,'Arthur H. Nadel',1921,1990),(618865,'George Nader',1921,2002),(618898,'Sajid Nadiadwala',1966,NULL),(618930,'Raphaël Nadjari',1971,NULL),(618998,'Michael Naegel',1982,NULL),(619031,'Lycia Naff',1962,NULL),(619039,'Irwin Nafshun',NULL,NULL),(619084,'Masao Nagai',NULL,NULL),(619093,'Runa Nagai',1982,NULL),(619162,'A.P. Nagarajan',NULL,NULL),(619178,'Masami Nagasawa',1987,NULL),(619185,'Masatoshi Nagase',1966,NULL),(619187,'Tomoya Nagase',1978,NULL),(619207,'Hidemasa Nagata',NULL,NULL),(619208,'Hideo Nagata',NULL,NULL),(619211,'Masaichi Nagata',1906,1985),(619216,'Tetsuo Nagata',1952,NULL),(619221,'Yûichi Nagata',1950,NULL),(619240,'Aiko Nagayama',1941,NULL),(619261,'Conrad Nagel',1897,1970),(619265,'Don Nagel',1926,1996),(619320,'Eugenia Naghi',1928,2007),(619330,'Yuriy Nagibin',1920,1994),(619361,'Margaret Nagle',1961,NULL),(619406,'Parminder Nagra',1975,NULL),(619443,'Csaba Nagy',1944,NULL),(619453,'Ervin Nagy',1976,NULL),(619507,'Phyllis Nagy',1962,NULL),(619547,'Ed Naha',1950,NULL),(619564,'Fouad Nahas',NULL,NULL),(619585,'Mona Nahm',1973,NULL),(619599,'Chris Nahon',1968,NULL),(619600,'Philippe Nahon',1938,2020),(619651,'Ajay Naidu',1972,NULL),(619700,'Jimmy Nail',1954,NULL),(619701,'Joanne Nail',1947,NULL),(619715,'Omar Naim',1977,NULL),(619740,'V.S. Naipaul',1932,2018),(619762,'Mira Nair',1957,NULL),(619798,'J. Carrol Naish',1896,1973),(619820,'Ramsey Naito',NULL,NULL),(619822,'Takashi Naitô',1955,NULL),(619870,'Mohammad Amir Naji',NULL,NULL),(619895,'Ron Najor',NULL,NULL),(619906,'Machiko Naka',NULL,NULL),(619913,'Yuji Naka',1965,NULL),(619919,'Masao Nakabori',NULL,NULL),(619923,'Olivier Nakache',1973,NULL),(619938,'Tatsuya Nakadai',1932,NULL),(619953,'Anna Nakagawa',1965,2014),(619966,'Nobuo Nakagawa',1905,1984),(619974,'Shigehiro Nakagawa',NULL,NULL),(620001,'Shun Nakahara',1951,NULL),(620002,'Takeo Nakahara',1951,NULL),(620014,'Asakazu Nakai',1901,1988),(620017,'Kazuya Nakai',1967,NULL),(620026,'Aoi Nakajima',1945,1991),(620040,'Kazuki Nakashima',NULL,NULL),(620090,'Yukie Nakama',1979,NULL),(620115,'Mami Nakamura',1979,NULL),(620202,'Naoju Nakamura',NULL,NULL),(620224,'Shin\'ichirô Nakamura',1918,1997),(620232,'Suzy Nakamura',1973,NULL),(620236,'Takashi Nakamura',1955,NULL),(620284,'Taeko Nakanishi',1931,NULL),(620315,'Takao Nakano',1962,NULL),(620333,'Ryûsei Nakao',1951,NULL),(620351,'Giorgi Nakashidze',NULL,NULL),(620363,'Tetsuya Nakashima',1959,NULL),(620378,'Hideo Nakata',1961,NULL),(620397,'Miki Nakatani',1976,NULL),(620408,'Chinatsu Nakayama',1948,NULL),(620451,'Keiji Nakazawa',1939,2012),(620457,'Toshiaki Nakazawa',NULL,NULL),(620469,'Vladimir Nakhabtsev',1938,2002),(620502,'Zareh Nalbandian',NULL,NULL),(620558,'Rashaan Nall',1980,NULL),(620576,'Bharat Nalluri',1965,NULL),(620609,'Yin Nam',NULL,NULL),(620657,'Daisuke Namikawa',1976,NULL),(620720,'Herb Nanas',NULL,NULL),(620756,'Jack Nance',1943,1996),(620847,'Marco Nanini',1948,NULL),(620935,'Miyuki Nanri',1962,NULL),(620936,'Yuka Nanri',1984,NULL),(620964,'Isabelle Nanty',1962,NULL),(620981,'Igal Naor',1958,NULL),(621008,'Charles Napier',1936,2011),(621062,'Toni Naples',1952,NULL),(621190,'Momar Nar Sene',NULL,NULL),(621406,'Brian Narelle',1948,NULL),(621469,'Silvio Narizzano',1927,2011),(621507,'Cecilia Narova',NULL,NULL),(621534,'Masashige Narusawa',1925,2021),(621540,'Mikio Naruse',1905,1969),(621545,'Tôichirô Narushima',NULL,NULL),(621586,'Sylvia Nasar',1947,NULL),(621587,'Marcia Nasatir',1926,2021),(621597,'Arthur J. Nascarella',1944,NULL),(621665,'Andrea Gyertson Nasfell',NULL,NULL),(621829,'Peter Nashel',NULL,NULL),(621915,'Yousry Nasrallah',1952,NULL),(621937,'Nassar',1958,NULL),(621961,'Jack Nasser',NULL,NULL),(621993,'Julius R. Nasso',1952,NULL),(621994,'Lori Nasso',NULL,NULL),(622112,'Vincenzo Natali',1969,NULL),(622145,'Agathe Natanson',1946,NULL),(622148,'Jacques Natanson',1901,1975),(622240,'Mort Nathan',NULL,NULL),(622251,'Robert Nathan',1894,1985),(622284,'E.M. Nathanson',1928,2016),(622288,'Jeff Nathanson',1965,NULL),(622296,'Michael G. Nathanson',NULL,NULL),(622301,'Sabrina S. Sutherland',NULL,NULL),(622329,'Maria Nation',NULL,NULL),(622334,'Terry Nation',1930,1997),(622384,'Khalifa Natour',NULL,NULL),(622407,'Yui Natsukawa',1968,NULL),(622416,'Yôsuke Natsuki',1936,2018),(622434,'Jacques Natteau',1920,2007),(622450,'Mildred Natwick',1905,1994),(622474,'John Nau',NULL,NULL),(622534,'Alexandre Naufel',NULL,NULL),(622540,'Bill Naughton',1910,1992),(622544,'David Naughton',1951,NULL),(622547,'Edmund Naughton',NULL,NULL),(622553,'James Naughton',1945,NULL),(622609,'Günther Naumann',NULL,NULL),(622695,'Gregory Nava',1949,NULL),(622782,'Javier Navarrete',1956,NULL),(622838,'Bertha Navarro',NULL,NULL),(622857,'Darrin Navarro',NULL,NULL),(622897,'Guillermo Navarro',1955,NULL),(622973,'Morgan Navarro',1973,NULL),(623025,'Tino Navarro',1954,NULL),(623068,'Miki Navazio',NULL,NULL),(623085,'Andrea Navedo',1969,NULL),(623154,'Arnost Navrátil',1926,1984),(623190,'Halina Nawrocka',NULL,NULL),(623214,'Gorô Naya',1929,2013),(623235,'Deepak Nayar',1959,NULL),(623244,'Errol Nayci',NULL,NULL),(623255,'Nicholas Nayfack',1909,1958),(623306,'Tom Naylor',NULL,NULL),(623309,'Zoe Naylor',1977,NULL),(623373,'Dmitriy Nazarov',1957,NULL),(623392,'Natalya Nazarova',1969,NULL),(623554,'Anna Neagle',1904,1986),(623583,'Chris Neal',NULL,NULL),(623604,'Dylan Neal',NULL,NULL),(623605,'Edwin Neal',1945,NULL),(623640,'Lex Neal',1894,1940),(623658,'Patricia Neal',1926,2010),(623660,'Peggy Neal',1947,2021),(623673,'Scott Neal',1978,NULL),(623684,'Tom Neal',1914,1972),(623709,'Kate Harrison Karman',NULL,NULL),(623765,'Gareth Neame',1967,NULL),(623768,'Ronald Neame',1911,2010),(623838,'André Neau',1933,2003),(623852,'Michael Nebbia',NULL,NULL),(623854,'Mehdi Nebbou',1971,NULL),(623873,'Seymour Nebenzal',1899,1961),(623879,'Hassan Nebhan',NULL,NULL),(623900,'Patrick Nebout',NULL,NULL),(623979,'Priscilla Nedd-Friendly',1955,NULL),(624075,'Ni Tien',1948,NULL),(624157,'Andrew Neel',NULL,NULL),(624189,'Ted Neeley',1943,NULL),(624201,'Blake Neely',1969,NULL),(624316,'Thomas Neff',1904,1974),(624369,'Louis Negin',1929,2022),(624374,'Hiroshi Negishi',1960,NULL),(624375,'Hiroyuki Negishi',NULL,NULL),(624481,'Michael Negrin',NULL,NULL),(624487,'Alessandra Negrini',1970,NULL),(624508,'Rick Negron',1961,NULL),(624535,'Jean Negulesco',1900,1993),(624653,'Sigrid Neiiendam',1868,1955),(624670,'Christopher Neil',NULL,NULL),(624705,'Debra Neil-Fisher',NULL,NULL),(624714,'Marshall Neilan',1891,1958),(624756,'Roy William Neill',1887,1946),(624809,'James Neilson',1909,1979),(624820,'Michael Neilson',NULL,NULL),(625075,'Kate Nelligan',1950,NULL),(625080,'Alice Nellis',1971,NULL),(625085,'David Nellist',NULL,NULL),(625099,'Nelly',1974,NULL),(625158,'Arty Nelson',NULL,NULL),(625166,'Barrie Nelson',NULL,NULL),(625198,'Brian Nelson',NULL,NULL),(625224,'Charles Nelson',1901,1997),(625245,'Chris Nelson',NULL,NULL),(625280,'Danny Nelson',NULL,NULL),(625379,'Gary Nelson',1934,2022),(625383,'Gene Nelson',1920,1996),(625447,'Jeffrey Nelson',1949,2015),(625456,'Jerry Nelson',1934,2012),(625458,'Jessie Nelson',NULL,NULL),(625482,'John Allen Nelson',1959,NULL),(625522,'Kenneth Nelson',1930,1993),(625529,'Kirsten Nelson',1970,NULL),(625540,'Lee Nelson',NULL,NULL),(625570,'Mandy Nelson',NULL,NULL),(625621,'Michael J. Nelson',1964,NULL),(625680,'Ralph Nelson',1916,1987),(625688,'Ray Nelson',1931,2022),(625695,'Richard Nelson',1950,NULL),(625699,'Ricky Nelson',1940,1985),(625789,'Tim Blake Nelson',1964,NULL),(625858,'André Nemec',1972,NULL),(625884,'Eleonora Nemechek',1922,2017),(625896,'Charles Nemes',1951,NULL),(625899,'Scott Nemes',1974,NULL),(625909,'István Nemeskürty',1925,2015),(625931,'Sally Nemeth',1959,2021),(625932,'Stephen Nemeth',NULL,NULL),(625965,'Irène Némirovsky',1903,1942),(625986,'Svetlana Nemolyaeva',1937,NULL),(625999,'Jean Nemours',NULL,NULL),(626002,'Carole Curb Nemoy',NULL,NULL),(626018,'Mária Neményi',1946,NULL),(626076,'Meri Nenonen',NULL,NULL),(626090,'Jack Neo',NULL,NULL),(626124,'Alex Nepomniaschy',1955,NULL),(626134,'József Nepp',1934,2017),(626202,'Francesca Neri',1964,NULL),(626259,'Franco Nero',1941,NULL),(626270,'Toni Nero',NULL,NULL),(626298,'Gérard de Nerval',1808,1855),(626334,'E. Nesbit',1858,1924),(626362,'James Nesbitt',1965,NULL),(626389,'John Neschling',1947,NULL),(626438,'Robert de Nesle',1906,1978),(626452,'Michael Nesmith',1942,2021),(626479,'Eliot Ness',1903,1957),(626587,'Johann Nestroy',1801,1862),(626649,'José Neto',1955,NULL),(626686,'Sandra Nettelbeck',1966,NULL),(626696,'Gil Netter',NULL,NULL),(626697,'Jason Netter',NULL,NULL),(626706,'Daniel Nettheim',NULL,NULL),(626754,'Cãlin Peter Netzer',1975,NULL),(626859,'Benedict Neuenfels',1966,NULL),(626877,'Dan Neufeld',NULL,NULL),(626883,'Mace Neufeld',1928,2022),(627060,'Harry Neumann',1891,1971),(627068,'Jan Neumann',1975,NULL),(627087,'Kurt Neumann',1908,1958),(627100,'Mathias Neumann',1965,NULL),(627159,'Edward Neumeier',NULL,NULL),(627183,'Helga Neuner',1940,NULL),(627411,'Eric Neveux',1972,NULL),(627438,'Edgar Neville',1899,1967),(627453,'John Neville',1925,2011),(627472,'Rex Neville',1940,NULL),(627492,'Brooke Nevin',1982,NULL),(627505,'Robyn Nevin',1942,NULL),(627537,'Craig J. Nevius',NULL,NULL),(627563,'New Order',NULL,NULL),(627589,'Robert C. New',NULL,NULL),(627604,'Patrick Newall',NULL,NULL),(627624,'George Newbern',1964,NULL),(627639,'Luke Newberry',1990,NULL),(627667,'Neil Newbon',1978,NULL),(627673,'Ira Newborn',1949,NULL),(627727,'James E. Newcom',1905,1990),(627822,'Patrick Newell',1932,1988),(627878,'Bob Newhart',1929,NULL),(627917,'Charles Newirth',NULL,NULL),(627920,'Jeff Newitt',NULL,NULL),(627995,'Alec Newman',1974,NULL),(628008,'Andrew Hill Newman',1959,NULL),(628017,'Barry Newman',1930,2023),(628056,'David Newman',1954,NULL),(628058,'David Newman',1937,2003),(628080,'Eric Newman',NULL,NULL),(628103,'Greg Newman',NULL,NULL),(628120,'Jaime Ray Newman',1978,NULL),(628146,'Jonathan Newman',1972,NULL),(628149,'Joseph M. Newman',1909,2006),(628174,'Leslie Newman',NULL,NULL),(628216,'Nanette Newman',1934,NULL),(628226,'Peter Newman',NULL,NULL),(628236,'Richard Newman',1946,NULL),(628255,'Salli Newman',NULL,NULL),(628257,'Samuel Newman',1919,1977),(628285,'Sydney Newman',1917,1997),(628304,'Vincent Garcia Newman',1965,NULL),(628305,'Walter Newman',1916,1993),(628325,'Julie Newmar',1933,NULL),(628345,'Fred C. Newmeyer',1888,1967),(628352,'Robert F. Newmyer',1956,2005),(628534,'Jeremiah Newton',1949,NULL),(628542,'John Newton',1965,NULL),(628563,'Matthew Newton',1977,NULL),(628579,'Robert Newton',1905,1956),(628601,'Thandiwe Newton',1972,NULL),(628638,'Marie Ney',1895,1981),(628668,'Yuri Neyman',NULL,NULL),(628669,'Marina Neyolova',1947,NULL),(628671,'Gianella Neyra',1977,NULL),(628704,'Jinpachi Nezu',1947,2016),(628804,'Ronald Ng',1971,NULL),(628806,'Man-Tat Ng',1951,2021),(628827,'Richard Ng',1939,2023),(628838,'See-Yuen Ng',1944,NULL),(628897,'Sahr Ngaujah',NULL,NULL),(628913,'Mbongeni Ngema',NULL,NULL),(628955,'Haing S. Ngor',1940,1996),(628956,'Peter Ngor',NULL,NULL),(629006,'Dustin Nguyen',NULL,NULL),(629062,'Ngoc Hiep Nguyen',NULL,NULL),(629195,'Adama Niane',1966,2023),(629198,'Isseu Niang',1938,NULL),(629216,'Phil Nibbelink',1955,NULL),(629242,'Allan Niblo',1964,NULL),(629243,'Fred Niblo',1874,1948),(629263,'Fabrizio Nicastro',NULL,NULL),(629264,'Michelle Nicastro',1960,2010),(629272,'Andrew Niccol',1964,NULL),(629278,'Kristi Somers',1962,NULL),(629306,'Gino Nichele',NULL,NULL),(629309,'Maurizio Nichetti',1948,NULL),(629334,'McG',1968,NULL),(629363,'Charles Nichols',1910,1992),(629368,'Constantine Nicholas',NULL,NULL),(629370,'Denise Nicholas',1944,NULL),(629382,'Genevieve Nicholas',NULL,NULL),(629519,'George Nichols Jr.',1897,1939),(629534,'Anthony Nichols',NULL,NULL),(629538,'Austin Nichols',1980,NULL),(629548,'Carmen Yazalde',1950,NULL),(629580,'Dudley Nichols',1895,1960),(629615,'John Nichols',1940,NULL),(629634,'Lance E. Nichols',1955,NULL),(629653,'Marisol Nichols',NULL,NULL),(629658,'Max Nichols',1973,NULL),(629667,'Nichelle Nichols',1932,2022),(629693,'Peter Nichols',1927,2019),(629697,'Rachel Nichols',1980,NULL),(629737,'Taylor Nichols',1959,NULL),(629815,'Elwood J. Nicholson',NULL,NULL),(629839,'James H. Nicholson',1916,1972),(629855,'Julianne Nicholson',1971,NULL),(629882,'Martin Nicholson',NULL,NULL),(629885,'Meredith M. Nicholson',1913,2005),(629933,'William Nicholson',1948,NULL),(629950,'Wallis Nicita',1945,NULL),(630048,'Thelma Niklaus',NULL,NULL),(630090,'David Nicksay',1952,NULL),(630119,'Willard Nico',1897,1967),(630132,'Alex Nicol',1916,2001),(630149,'Lesley Nicol',1953,NULL),(630222,'Steve Nicolaides',NULL,NULL),(630334,'Odd Reinhardt Nicolaysen',NULL,NULL),(630379,'Danielle Nicolet',NULL,NULL),(630437,'Peggy Nicoll',1958,2019),(630441,'Stefan Nicoll',NULL,NULL),(630453,'Daria Nicolodi',1950,2020),(630482,'Rosemary Nicols',1941,NULL),(630615,'Lisa Niedenthal',NULL,NULL),(630633,'Galt Niederhoffer',1975,NULL),(630642,'Frédéric Niedermayer',NULL,NULL),(630656,'Melissa Neidich',NULL,NULL),(630746,'Bjarne G. Nielsen',1949,2020),(630919,'Majken Algren Nielsen',NULL,NULL),(631028,'Bridger Nielson',1977,NULL),(631134,'Scott Niemeyer',NULL,NULL),(631286,'Guillermo Nieto',NULL,NULL),(631307,'José Nieto',1903,1982),(631308,'José Nieto',1942,NULL),(631326,'Pepón Nieto',1967,NULL),(631362,'Edgardo Nieva',1951,2020),(631370,'José Antonio Nieves Conde',1915,2006),(631438,'William Nigh',1881,1955),(631467,'Lesley Nightingale',NULL,NULL),(631490,'Bill Nighy',1949,NULL),(631551,'Kazui Nihonmatsu',1922,NULL),(631642,'Mohammad Nikbin',NULL,NULL),(631715,'Sergey Nikitin',1944,NULL),(631741,'Esko Nikkari',1938,2006),(631744,'Vahid Nikkhah Azad',NULL,NULL),(631844,'Vladimir Nikolayev',1909,1995),(632017,'Martina Niland',NULL,NULL),(632051,'Steve Niles',1965,NULL),(632093,'Eli Nilsen',NULL,NULL),(632129,'Christer Nilson',1949,NULL),(632165,'Bengt Braskered',1967,NULL),(632227,'Inger Nilsson',1959,NULL),(632269,'Magnus Nilsson',1947,NULL),(632312,'Johannes Stjärne Nilsson',NULL,NULL),(632385,'Najwa Nimri',1972,NULL),(632402,'Hideki Futamura',NULL,NULL),(632457,'Merab Ninidze',1965,NULL),(632466,'Willi Ninja',1961,2006),(632495,'Hideki Ninomiya',NULL,NULL),(632497,'Kazunari Ninomiya',1983,NULL),(632689,'Hidetoshi Nishijima',1971,NULL),(632690,'Katsuhiko Nishijima',1960,NULL),(632722,'Shôjirô Nishimi',1965,NULL),(632761,'Masahiko Nishimura',1960,NULL),(632788,'Daisuke Nishio',1959,NULL),(632865,'Giuseppe Nisoli',NULL,NULL),(632890,'Claus Nissen',1938,2008),(632967,'Hideaki Nitani',1930,2012),(633029,'Takao Nitta',NULL,2007),(633080,'Doze Niu',1966,NULL),(633205,'Allan Nixon',1915,1995),(633223,'Cynthia Nixon',1966,NULL),(633228,'DeVaughn Nixon',NULL,NULL),(633271,'Richard Nixon',1913,1994),(633318,'Stephanie Niznik',1967,2019),(633354,'Simon Njoo',NULL,NULL),(633394,'Manfred Noa',1893,1930),(633560,'Carol Noble',NULL,NULL),(633604,'John Noble',1948,NULL),(633661,'Roderic Noble',1957,NULL),(633677,'Thom Noble',1936,NULL),(633729,'Nobuhiro Yamashita',1976,NULL),(633730,'Keiko Nobumoto',1964,2021),(633791,'Keiichi Noda',1943,NULL),(633792,'Kôgo Noda',1893,1968),(633816,'Burt Nodella',1924,2016),(633971,'Dona Noga',NULL,NULL),(633986,'Tatsuo Nogami',NULL,2013),(633997,'Yumiko Nogawa',NULL,NULL),(634074,'Amparo Noguera',1965,NULL),(634120,'Jean Pierre Noher',1956,NULL),(634128,'Anis Nohra',NULL,NULL),(634139,'Reece Noi',1988,NULL),(634159,'Philippe Noiret',1930,2006),(634204,'Igor Nola',NULL,NULL),(634240,'Christopher Nolan',1970,NULL),(634282,'Jeanette Nolan',1911,1998),(634297,'John Nolan',1938,NULL),(634300,'Jonathan Nolan',1976,NULL),(634307,'Ken Nolan',NULL,NULL),(634313,'Lloyd Nolan',1902,1985),(634366,'William Nolan',1894,1954),(634368,'William F. Nolan',1928,2021),(634386,'Robert Noland',NULL,NULL),(634393,'Elvis Nolasco',NULL,NULL),(634409,'Michelle Nolden',1973,NULL),(634445,'Michael Nolin',1948,NULL),(634530,'Kevin Nolting',NULL,NULL),(634587,'Kazufumi Nomura',NULL,NULL),(634602,'Tetsuya Nomura',1970,NULL),(634617,'Maho Nonami',1980,NULL),(634708,'Christine Noonan',1945,2003),(634729,'Kerry Noonan',1960,NULL),(634733,'Matt Noonan',NULL,NULL),(634811,'Omid Nooshin',1974,2018),(634964,'Thomas J. Nordberg',1961,NULL),(634989,'Olle Nordemar',1914,1999),(635059,'Erik Nordgren',1913,1992),(635079,'Charles Nordhoff',1887,1947),(635103,'Kristofer Nordin',NULL,NULL),(635145,'Solveig Nordlund',1943,NULL),(635207,'John Nordstrom',NULL,NULL),(635225,'Robert Nordström',NULL,NULL),(635330,'Eduardo Noriega',1973,NULL),(635379,'Susan Corbin',NULL,NULL),(635409,'John Nordling',NULL,NULL),(635419,'Henrik Norlén',1970,NULL),(635431,'Brock Norman Brock',NULL,NULL),(635554,'Leslie Norman',1911,1993),(635565,'Marc Norman',1941,NULL),(635568,'Marsha Norman',1947,NULL),(635649,'Zack Norman',1940,NULL),(635713,'Kate Normington',NULL,NULL),(635742,'Christopher Norr',NULL,NULL),(635759,'Stephen Norrington',1964,NULL),(635760,'Aaron Norris',1951,NULL),(635805,'Frank Norris',1870,1902),(635820,'Hermione Norris',1967,NULL),(635835,'John Norris',NULL,NULL),(635841,'Kathleen Norris',1880,1966),(635869,'Mike Norris',1962,NULL),(635873,'Pamela Norris',NULL,NULL),(635876,'Patricia Norris',1931,2015),(635910,'Todd Norris',1969,NULL),(635920,'William Norris',NULL,2021),(635954,'Maritha Norstedt',1963,NULL),(636002,'Edmund H. North',1911,1990),(636065,'Sheree North',1932,2005),(636070,'Steven North',NULL,NULL),(636161,'Barry Norton',1905,1956),(636165,'Bill Norton',1943,NULL),(636218,'Graham Norton',1963,NULL),(636235,'Jim Norton',1938,NULL),(636236,'John Norton',NULL,NULL),(636242,'Kay Norton',1910,1981),(636243,'Ken Norton',1943,2013),(636244,'Kerry Norton',1972,NULL),(636260,'Mary Norton',1903,1992),(636280,'Richard Norton',1950,NULL),(636358,'John Norville',NULL,NULL),(636426,'Noomi Rapace',1979,NULL),(636435,'Akiyuki Nosaka',1930,2015),(636495,'Noel Nosseck',1943,NULL),(636562,'Chris Noth',1954,NULL),(636569,'Amélie Nothomb',1966,NULL),(636582,'Clair Noto',NULL,NULL),(636592,'Setsuo Noto',1908,2001),(636603,'Ben Nott',NULL,NULL),(636677,'Jacques-Louis Nounez',NULL,NULL),(636694,'Michael Nouri',1945,NULL),(636793,'Mickell Novack',1917,2009),(636893,'Mel Novak',1942,NULL),(636942,'Bojana Novakovic',1981,NULL),(636991,'Tamar Novas',1986,NULL),(637040,'Ivor Novello',1893,1951),(637238,'Franz Novotny',1949,NULL),(637259,'Tuva Novotny',1979,NULL),(637491,'Louis Nowra',1950,NULL),(637493,'Cyrus Nowrasteh',1956,NULL),(637497,'Marti Noxon',1964,NULL),(637518,'Phillip Noyce',1950,NULL),(637586,'Masako Nozawa',1936,NULL),(637602,'Michael Nozik',1954,NULL),(637615,'Gaspar Noé',1963,NULL),(637643,'Hubert Noël',1924,1987),(637649,'Magali Noël',1931,2015),(637789,'Edward J. Nugent',1904,1995),(637790,'Elliott Nugent',1896,1980),(637793,'Frank S. Nugent',1908,1965),(637834,'Murat Nugmanov',NULL,NULL),(637835,'Rashid Nugmanov',1954,NULL),(637864,'Nukâka',1971,NULL),(637894,'Yôichi Numata',1924,2006),(637895,'Yûsuke Numata',NULL,NULL),(638033,'Victor Nunez',1945,NULL),(638056,'Bill Nunn',1953,2016),(638067,'Larry Nunn',1925,1974),(638080,'Trevor Nunn',1940,NULL),(638089,'Gianni Nunnari',NULL,NULL),(638218,'Tom Nursall',NULL,NULL),(638271,'Joe Nussbaum',1973,NULL),(638276,'Mike Nussbaum',1923,NULL),(638324,'Colin Nutley',1944,NULL),(638354,'David Nutter',1960,NULL),(638365,'Giles Nuttgens',1960,NULL),(638528,'Christian Nyby',1913,1993),(638560,'Carroll Nye',1901,1974),(638648,'Mia Nygren',1960,NULL),(638725,'Alice Nevalinga',NULL,NULL),(638748,'Michael Nilon',NULL,NULL),(638762,'Andy Nyman',1966,NULL),(638784,'Lena Nyman',1944,2011),(638824,'Michael Nyqvist',1960,2017),(638913,'Ron Nyswaner',1956,NULL),(639016,'Knut Nærum',1961,NULL),(639058,'Jean Négroni',1920,2005),(639067,'András Németh',1925,2003),(639122,'Chiharu Niiyama',1981,NULL),(639130,'Károly Nóti',1892,1954),(639168,'Per Nørgaard',1932,NULL),(639297,'Elmo Nüganen',1962,NULL),(639306,'Václav Nývlt',1930,1999),(639321,'Dan O\'Bannon',1946,2009),(639328,'Rockne S. O\'Bannon',NULL,NULL),(639335,'James O\'Barr',1960,NULL),(639376,'Billy O\'Brien',1970,NULL),(639434,'Barry O\'Brien',1957,NULL),(639529,'Edmond O\'Brien',1915,1985),(639545,'Eugene O\'Brien',1880,1966),(639546,'Eugene O\'Brien',NULL,NULL),(639563,'George O\'Brien',1899,1985),(639569,'Gerry O\'Brien',NULL,NULL),(639613,'Joan O\'Brien',1936,NULL),(639659,'Kieran O\'Brien',1973,NULL),(639684,'Margaret O\'Brien',1937,NULL),(639694,'Mark O\'Brien',1949,1999),(639780,'Rebecca O\'Brien',1957,NULL),(639782,'Richard O\'Brien',1942,NULL),(639791,'Robert C. O\'Brien',1918,1973),(639850,'Timothy O\'Brien',NULL,NULL),(639928,'Brían F. O\'Byrne',1967,NULL),(639997,'Sean O\'Casey',1880,1964),(640023,'Arthur O\'Connell',1908,1981),(640031,'Brian James O\'Connell',NULL,NULL),(640193,'Andrew O\'Connor',NULL,NULL),(640226,'Jim O\'Connolly',1926,1986),(640307,'Donald O\'Connor',1925,2003),(640323,'Frances O\'Connor',1967,NULL),(640334,'Gavin O\'Connor',1963,NULL),(640345,'Greg O\'Connor',NULL,NULL),(640409,'Kevin O\'Connor',1938,1991),(640413,'Kevin J. O\'Connor',1963,NULL),(640437,'Mary H. O\'Connor',1872,1959),(640438,'Matthew O\'Connor',NULL,NULL),(640466,'Pat O\'Connor',1943,NULL),(640547,'Una O\'Connor',1880,1959),(640618,'Jimmy O\'Dea',1899,1965),(640621,'Judith O\'Dea',1945,NULL),(640634,'Michael O\'Dell Green',NULL,NULL),(640645,'Denis O\'Dell',1923,2021),(640646,'Denise O\'Dell',NULL,NULL),(640740,'Damien O\'Donnell',1967,NULL),(640744,'David O\'Donnell',1974,NULL),(640761,'Gene O\'Donnell',1911,1992),(640767,'Jack O\'Donnell',NULL,NULL),(640874,'Michael O\'Donoghue',1940,1994),(640884,'James T. O\'Donohoe',1895,1928),(640976,'John O\'Farrell',1962,NULL),(641056,'Michèle O\'Glor',1928,2022),(641168,'Brian O\'Halloran',1969,NULL),(641169,'Dustin O\'Halloran',1971,NULL),(641192,'Ardal O\'Hanlon',1965,NULL),(641197,'George O\'Hanlon',1912,1989),(641199,'James O\'Hanlon',1910,1969),(641290,'Kelli O\'Hara',1976,NULL),(641314,'Paige O\'Hara',1956,NULL),(641373,'Tommy O\'Haver',1968,NULL),(641397,'Dan O\'Herlihy',1919,2005),(641402,'Pete O\'Herne',1961,2010),(641417,'John O\'Hurley',1954,NULL),(641454,'Dennis O\'Keefe',1908,1968),(641469,'John O\'Keefe',NULL,NULL),(641479,'Mark O\'Keefe',1971,NULL),(641525,'Donal O\'Kelly',NULL,NULL),(641610,'Matt O\'Leary',1987,NULL),(641640,'William O\'Leary',1957,NULL),(641710,'Christine O\'Malley',NULL,NULL),(641714,'David O\'Malley',NULL,NULL),(641721,'Erin O\'Malley',NULL,NULL),(641729,'J. Pat O\'Malley',1904,1985),(641784,'Ruben O\'Malley',NULL,NULL),(641816,'Jason O\'Mara',1972,NULL),(641839,'Carroll Timothy O\'Meara',1943,2007),(641885,'Charles O\'Neal',1904,1996),(641906,'Griffin O\'Neal',1964,NULL),(641914,'Kelly O\'Neal',NULL,NULL),(641929,'Patrick O\'Neal',1927,1994),(641939,'Ryan O\'Neal',1941,NULL),(641944,'Shaquille O\'Neal',1972,NULL),(641966,'Barbara O\'Neil',1910,1980),(642005,'George O\'Neil',1898,1940),(642041,'Morgan O\'Neill',1973,NULL),(642042,'Nance O\'Neil',1874,1965),(642057,'Robert Vincent O\'Neil',1930,2022),(642104,'Brian O\'Neill',NULL,NULL),(642145,'Ed O\'Neill',1946,NULL),(642156,'Eugene O\'Neill',1888,1953),(642161,'Evelyn O\'Neill',NULL,NULL),(642195,'Jean O\'Neill',NULL,NULL),(642198,'Jennifer O\'Neill',1948,NULL),(642223,'Kevin O\'Neill',1961,NULL),(642241,'Maire O\'Neill',1885,1952),(642277,'Patrick O\'Neill',NULL,NULL),(642368,'Terry O\'Quinn',1952,NULL),(642374,'Geraldine O\'Rawe',NULL,NULL),(642444,'Genevieve O\'Reilly',1977,NULL),(642513,'Kate O\'Riordan',NULL,NULL),(642521,'St. John O\'Rorke',NULL,NULL),(642553,'Jim O\'Rourke',1969,NULL),(642573,'Rachel O\'Rourke',NULL,NULL),(642583,'Tom O\'Rourke',NULL,NULL),(642652,'John O\'Shea',1920,2001),(642672,'Michael D. O\'Shea',NULL,NULL),(642675,'Milo O\'Shea',1926,2013),(642714,'Sam O\'Steen',1923,2000),(642756,'Jackie O\'Sullivan',NULL,NULL),(642823,'Thaddeus O\'Sullivan',1947,NULL),(642837,'Brian Patrick O\'Toole',1963,NULL),(642869,'Matthew O\'Toole',NULL,NULL),(642890,'Stanley O\'Toole',1939,2004),(642899,'John O\'Verlin',NULL,NULL),(642949,'Paul Oakenfold',1961,NULL),(642975,'Simon Oakes',NULL,NULL),(642988,'Jack Oakie',1903,1978),(643000,'Simon Oakland',1915,1983),(643048,'Wheeler Oakman',1890,1949),(643093,'Joyce Carol Oates',1938,NULL),(643105,'Warren Oates',1928,1982),(643168,'Chigumi Ôbayashi',NULL,NULL),(643178,'Kumiko Ôba',1960,NULL),(643315,'Margaret Oberman',1951,NULL),(643322,'Tracy-Ann Oberman',1966,NULL),(643340,'Thomas Obermuller',NULL,NULL),(643353,'Merle Oberon',1911,1979),(643375,'André Obey',1892,1975),(643422,'Michael Oblowitz',NULL,NULL),(643553,'Lynda Obst',NULL,NULL),(643555,'Oliver Obst',NULL,NULL),(643582,'Ramón Obón',1943,NULL),(643606,'Óscar Cardozo Ocampo',1942,2001),(643647,'Andrea Occhipinti',1957,NULL),(643664,'Michel Ocelot',1943,NULL),(643668,'Arnold Oceng',1985,NULL),(643696,'Masayuki Ochiai',NULL,NULL),(643805,'Uwe Ochsenknecht',1956,NULL),(643806,'Wilson Gonzalez',1990,NULL),(643826,'Mike Ockrent',1946,1999),(643861,'Erika Oda',1979,NULL),(643867,'Issei Oda',NULL,NULL),(643871,'Motoyoshi Oda',1910,1973),(643885,'Joe Odagiri',1976,NULL),(643912,'David Odd',NULL,NULL),(643967,'Ben Odell',NULL,NULL),(643973,'David Odell',1934,NULL),(644022,'Bob Odenkirk',1962,NULL),(644034,'Graciela Oderigo',1948,NULL),(644048,'Clifford Odets',1906,1963),(644055,'Terrance Odette',NULL,NULL),(644073,'Daniel Odier',1945,NULL),(644114,'Jerome Odlum',1905,1954),(644203,'Steve Oedekerk',1961,NULL),(644204,'Lin Oeding',1977,NULL),(644283,'Reinout Oerlemans',1971,NULL),(644309,'Paula van der Oest',1965,NULL),(644393,'Christophe Offenstein',NULL,NULL),(644406,'Nick Offerman',1970,NULL),(644521,'Issei Ogata',1952,NULL),(644523,'Ken Ogata',1937,2008),(644527,'Megumi Ogata',1965,NULL),(644533,'Satoru Ogata',NULL,NULL),(644558,'Mariko Ogawa',NULL,NULL),(644585,'Kate Ogborn',NULL,NULL),(644620,'Jennifer Ogden',NULL,NULL),(644680,'Bulle Ogier',1939,NULL),(644688,'Naoko Ogigami',1972,NULL),(644720,'Yoshihisa Ogita',NULL,NULL),(644728,'Charles Ogle',1865,1940),(644749,'Marsha Oglesby',NULL,NULL),(644806,'Mo Ogrodnik',1966,NULL),(644823,'Hideo Oguni',1904,1996),(644840,'Satoru Ogura',NULL,NULL),(644856,'Michiyo Yasuda',1946,NULL),(644884,'Jeong-wan Oh',NULL,NULL),(644897,'Sandra Oh',1971,NULL),(644898,'Sang-man Oh',NULL,NULL),(644938,'Jôji Ohara',1902,1990),(644964,'Rene Ohashi',NULL,NULL),(645011,'Minoru Ôki',1923,2009),(645068,'Chris Ohlson',1975,NULL),(645072,'Bertil Ohlsson',1939,NULL),(645120,'Carol Ohmart',1927,2002),(645164,'Michael Ohoven',1974,NULL),(645231,'Ataru Oikawa',NULL,NULL),(645327,'Manuel Ojeda',1940,2022),(645379,'Masakazu Oka',NULL,NULL),(645381,'Mitsuko Oka',1948,NULL),(645401,'Daryn Okada',NULL,NULL),(645402,'Eiji Okada',1920,1995),(645411,'Jun\'ichi Okada',1980,NULL),(645421,'Makoto Okada',NULL,NULL),(645422,'Mariko Okada',1933,NULL),(645432,'Saburo Okada',NULL,NULL),(645448,'Yutaka Okada',NULL,NULL),(645461,'Jôjirô Okami',1918,2003),(645464,'Aya Okamoto',1982,NULL),(645470,'Hotaru Okamoto',NULL,NULL),(645500,'Akemi Okamura',1969,NULL),(645513,'Tensai Okamura',1961,NULL),(645522,'Kôsuke Okano',1969,NULL),(645538,'Hiroshi Ohkawa',1896,1971),(645596,'Stuart Oken',NULL,NULL),(645612,'Ivan Okhlobystin',1966,NULL),(645648,'Megumi Okina',1979,NULL),(645657,'Hiroyuki Okiura',1966,NULL),(645676,'Denjirô Ôkôchi',1898,1962),(645683,'Sophie Okonedo',1968,NULL),(645740,'Hiroya Oku',NULL,NULL),(645766,'Satoko Okudera',NULL,NULL),(645777,'Atsushi Okui',NULL,NULL),(645785,'Yuji Okumoto',1959,NULL),(645795,'Charles Okun',1924,2005),(645825,'Chiyoko Ôkura',1915,NULL),(645830,'Mitsugu Ôkura',1899,1978),(645941,'Warner Oland',1879,1938),(645949,'Ken Olandt',1958,NULL),(646010,'Gracia Olayo',1957,NULL),(646037,'Daniel Olbrychski',1945,NULL),(646255,'Henry Olek',1942,NULL),(646263,'Michael Oleksinski',NULL,NULL),(646267,'Brigid Olen',NULL,NULL),(646351,'Larisa Oleynik',1981,NULL),(646401,'Irwin Olian',NULL,NULL),(646440,'Ken Olin',NULL,NULL),(646488,'Ingrid Oliu',1963,NULL),(646515,'Jay Oliva',NULL,NULL),(646542,'Leslie Olivan',1964,NULL),(646568,'Karla Souza',1985,NULL),(646737,'Vinícius de Oliveira',1985,NULL),(646768,'Barret Oliver',1973,NULL),(646782,'Dick Randall',1926,1996),(646818,'Deanna Oliver',1952,NULL),(646829,'Edna May Oliver',1883,1942),(646941,'Melanie Oliver',NULL,NULL),(646955,'Nicole Oliver',NULL,NULL),(646987,'Ron Oliver',NULL,NULL),(647005,'Steve Oliver',1941,2008),(647055,'Héctor Olivera',1931,NULL),(647056,'Javier Olivera',NULL,NULL),(647057,'José Oliveira',1904,1987),(647154,'Isabelle Olivier',NULL,NULL),(647374,'Franck Ollivier',NULL,NULL),(647378,'Paul Ollivier',1876,1948),(647435,'Corrado Olmi',1926,2020),(647437,'Elisabetta Olmi',NULL,NULL),(647438,'Ermanno Olmi',1931,2018),(647449,'Jesús Olmo',NULL,NULL),(647520,'Klas Olofsson',1943,NULL),(647583,'Agga Olsen',NULL,NULL),(647592,'Arne Olsen',NULL,NULL),(647608,'Christine Olsen',NULL,NULL),(647615,'Dana Olsen',NULL,NULL),(647634,'Elizabeth Olsen',1989,NULL),(647638,'Eric Christian Olsen',1977,NULL),(647698,'Kaitlin Olson',1975,NULL),(647776,'Peter Olsen',NULL,NULL),(647903,'Erik Olson',NULL,NULL),(647910,'Gerald T. Olson',1950,NULL),(647921,'James Olson',1930,2022),(647939,'Josh Olson',NULL,NULL),(647970,'Nancy Olson',1928,NULL),(648038,'David Olsson',NULL,NULL),(648057,'Göran Olsson',1965,NULL),(648221,'Imre Olvasztó',1966,2013),(648249,'Timothy Olyphant',1968,NULL),(648282,'Maria Rosaria Omaggio',1954,NULL),(648288,'Chad Oman',1965,NULL),(648366,'David Omedes',NULL,NULL),(648386,'Woody Omens',NULL,NULL),(648406,'Sharon Omi',NULL,NULL),(648413,'Eugene Omiak',NULL,NULL),(648457,'Kazuki Ômori',1952,2022),(648458,'Kenjirô Ohmori',1933,NULL),(648460,'Mika Ohmori',1972,NULL),(648464,'Takahiro Ômori',NULL,NULL),(648486,'Timothy Omundson',1969,NULL),(648487,'Naser Omuni',NULL,NULL),(648505,'On Szeto',NULL,NULL),(648514,'Masahiro Ônaga',NULL,NULL),(648546,'Michael Ondaatje',1943,NULL),(648565,'Anny Ondra',1902,1987),(648641,'Irving Ong',NULL,NULL),(648651,'Lance Ong',NULL,NULL),(648678,'Tasanawalai Ongartittichai',NULL,NULL),(648681,'Julius Ongewe',NULL,NULL),(648726,'Youichiro Onishi',NULL,NULL),(648762,'Machiko Ono',1981,NULL),(648764,'Yûrei Yanagi',1963,NULL),(648786,'Lisa Onodera',NULL,NULL),(648857,'Paul Onorato',1946,2013),(648892,'Kyle Onstott',1887,1966),(648913,'Lupe Ontiveros',1942,2012),(648920,'Michael Ontkean',1946,NULL),(648943,'Sidede Onyulo',NULL,2008),(648945,'Narda Onyx',1931,1991),(648985,'Tadashi Ôno',NULL,NULL),(649025,'Yoshinori Ohta',NULL,NULL),(649026,'Ikue Ôtani',1965,NULL),(649033,'Atsushi Yamatoya',1936,1993),(649046,'Deobia Oparei',1971,NULL),(649097,'Max Ophüls',1902,1957),(649117,'Niels Arden Oplev',1961,NULL),(649165,'Jonathan Oppenheim',1952,2020),(649183,'George Oppenheimer',1900,1977),(649191,'Joshua Oppenheimer',NULL,NULL),(649209,'Barry Opper',NULL,NULL),(649210,'Don Keith Opper',1949,NULL),(649223,'Jeannine Oppewall',1946,NULL),(649252,'Mihai Opris',NULL,NULL),(649296,'Fred Orain',1909,1999),(649301,'Nazmiye Oral',1969,NULL),(649346,'Jason Orans',NULL,NULL),(649460,'Roberto Orci',1973,NULL),(649478,'Baroness Emmuska Orczy',1865,1947),(649485,'Murray Ord',NULL,NULL),(649507,'Mark Ordesky',1963,NULL),(649649,'Francesc Orella',1957,NULL),(649663,'Jason Oremland',NULL,NULL),(649715,'Kerry Orent',NULL,NULL),(649746,'Fereshteh Sadre Orafaiy',NULL,NULL),(649792,'Arnold H. Orgolini',1936,NULL),(649839,'Ron Orieux',NULL,NULL),(649864,'Regina Orioli',1977,NULL),(649866,'Joseph Oriolo',1913,1985),(649875,'Joaquín Oristrell',1958,NULL),(650010,'Orazio Orlando',1933,1990),(650024,'Silvio Orlando',1957,NULL),(650036,'Susan Orlean',1955,NULL),(650038,'Lorne Orleans',NULL,NULL),(650164,'Alex Orlovsky',NULL,NULL),(650210,'Ben Ormand',NULL,NULL),(650251,'Jean-Luc Ormières',NULL,NULL),(650259,'Ron Ormond',1910,1981),(650262,'Czenzi Ormonde',1906,2004),(650276,'Alan Ormsby',1943,NULL),(650292,'Cyril Ornadel',1924,2011),(650320,'Eric Orner',NULL,NULL),(650338,'Samuel Ornitz',1890,1957),(650361,'David E. Ornston',NULL,NULL),(650381,'Gary Dean Orona',1964,NULL),(650439,'Alfredo Oroz',NULL,NULL),(650485,'Marieta Orozco',1978,NULL),(650527,'Betty Orr',NULL,NULL),(650534,'Buxton Orr',1924,1997),(650553,'Gertrude Orr',1891,1971),(650561,'James Orr',1953,NULL),(650581,'Mary Orr',1910,2006),(650601,'Robert Orr',NULL,NULL),(650615,'Tim Orr',1968,NULL),(650702,'Leland Orser',1960,NULL),(650753,'Umberto Orsini',1934,NULL),(650905,'Kenny Ortega',1950,NULL),(651000,'Marion Orth',1900,1984),(651005,'Patrick Orth',1968,NULL),(651051,'José Ortiz Ramos',1911,2009),(651067,'Ana Ortiz',1971,NULL),(651159,'John Ortiz',1968,NULL),(651184,'Lisa Ortiz',NULL,NULL),(651366,'Mark Orton',NULL,NULL),(651414,'Atli Örvarsson',1970,NULL),(651470,'Ben van Os',1944,2012),(651487,'Norio Osada',NULL,NULL),(651528,'Ken Ohsawa',NULL,NULL),(651534,'Takao Osawa',1968,NULL),(651544,'Alan Osbiston',1914,1971),(651570,'John Osborne',1929,1994),(651585,'Paul Osborn',1901,1988),(651592,'Ron Osborn',NULL,NULL),(651614,'Barrie M. Osborne',1944,NULL),(651627,'Bud Osborne',1884,1964),(651660,'Holmes Osborne',1947,NULL),(651692,'Kent Osborne',1969,NULL),(651706,'Mark Osborne',1970,NULL),(651720,'Nick Osborne',NULL,NULL),(651751,'Tony Osborne',1922,2009),(651754,'Vivienne Osborne',1896,1961),(651758,'William Osborne',NULL,NULL),(651807,'Per Oscarsson',1927,2010),(651900,'Mamoru Oshii',1951,NULL),(651904,'Shunrô Oshikawa',1876,1914),(651914,'Michiru Oshima',1961,NULL),(651915,'Nagisa Ôshima',1932,2013),(651916,'Tomoyo Oshima',NULL,NULL),(651969,'Roman Osin',1961,NULL),(652020,'Valdís Óskarsdóttir',1950,NULL),(652089,'Emily Osment',1992,NULL),(652212,'Ermahn Ospina',NULL,NULL),(652223,'Diana Ossana',1949,NULL),(652226,'Claudie Ossard',1943,NULL),(652261,'Amando de Ossorio',1918,2001),(652263,'Hocine Ossoukine',NULL,NULL),(652302,'Franz Osten',1876,1956),(652398,'Ava Ostern Fries',1934,2021),(652491,'Daniel Ostroff',NULL,NULL),(652553,'Randy Ostrow',NULL,NULL),(652577,'Karolina Ostrozna',NULL,NULL),(652578,'Peter Ostrum',1957,NULL),(652592,'Ren Ôsugi',1951,2018),(652631,'Gerd Oswald',1919,1989),(652661,'Ossi Oswalda',1897,1947),(652663,'Patton Oswalt',1969,NULL),(652718,'Shinobu Ôtake',1957,NULL),(652743,'Tomoemon Otani',NULL,NULL),(652745,'Kow Otani',NULL,NULL),(652823,'Mariana Otero',1963,NULL),(652855,'Manny Oteyza',NULL,NULL),(652895,'Carré Otis',1968,NULL),(652961,'Nobuko Otowa',1924,1994),(652964,'Enrique Otranto',NULL,NULL),(653004,'Toshimichi Ôtsuki',NULL,NULL),(653028,'Fred Ott',1860,1936),(653042,'John Ott',1850,1931),(653051,'Laurent Ott',1967,NULL),(653150,'Rogier van Otterloo',1941,1988),(653189,'Ottiero Ottieri',1924,2002),(653205,'Oral Norrie Ottey',NULL,NULL),(653211,'John Ottman',1964,NULL),(653248,'Götz Otto',1967,NULL),(653307,'Whitney Otto',1955,NULL),(653437,'Jackie Oudney',NULL,NULL),(653443,'Pierre Oudrey',NULL,NULL),(653450,'Assita Ouedraogo',NULL,NULL),(653540,'Danielle Ouimet',1947,NULL),(653561,'Petr Oukropec',1972,NULL),(653583,'Harry Oulton',NULL,NULL),(653620,'Gérard Oury',1919,2006),(653626,'Mads Ousdal',1970,NULL),(653642,'Maria Ouspenskaya',1876,1949),(653649,'Iran Outari',NULL,NULL),(653658,'Jen Kuo Sung',NULL,NULL),(653660,'Peter Outerbridge',1966,NULL),(653669,'Kati Outinen',1961,NULL),(653693,'Richard Outten',NULL,NULL),(653778,'Vyacheslav Ovchinnikov',1936,2019),(653878,'Anita Overland',NULL,NULL),(653942,'Frank Overton',1918,1967),(653952,'Kelly Overton',1978,NULL),(654070,'Baard Owe',1936,2017),(654077,'Alison Owen',1961,NULL),(654079,'Alun Owen',1925,1994),(654104,'Chris Owen',1980,NULL),(654110,'Clive Owen',1964,NULL),(654197,'Lloyd Owen',NULL,NULL),(654239,'Reginald Owen',1887,1972),(654274,'Thomas Owen',1910,2002),(654295,'Alfie Allen',1986,NULL),(654323,'Brian Owens',NULL,NULL),(654433,'Patricia Owens',1925,2000),(654530,'Monroe Owsley',1900,1937),(654549,'Ben Oxenbould',1969,NULL),(654601,'Alan Oxman',NULL,NULL),(654648,'David Oyelowo',1976,NULL),(654726,'Shôichi Ozawa',1929,2012),(654753,'Tatsuo Ozeki',1952,NULL),(654795,'Mike Ozier',NULL,NULL),(654830,'François Ozon',1967,NULL),(654858,'Ferzan Özpetek',1959,NULL),(654868,'Yasujirô Ozu',1903,1963),(655013,'Heikki Paavilainen',1962,NULL),(655043,'Pablo Parés',1978,NULL),(655053,'Sergio Pablos',NULL,NULL),(655065,'Georg Wilhelm Pabst',1885,1967),(655162,'Richard Pace',NULL,NULL),(655483,'Gerald Packer',NULL,NULL),(655510,'Will Packer',NULL,NULL),(655585,'Jared Padalecki',1982,NULL),(655605,'Sarah Padden',1881,1967),(655619,'Laura Paddock',NULL,NULL),(655637,'Audu Paden',1963,NULL),(655683,'José Padilha',1967,NULL),(655739,'José Padilla',1889,1960),(655761,'Pilar Padilla',1970,NULL),(655782,'Matias Varela',1980,NULL),(655803,'Padmini',1932,2006),(655822,'Gyula Pados',1969,NULL),(656011,'Amedeo Pagani',NULL,NULL),(656039,'Ernest Pagano',1901,1953),(656091,'Arabella Page Croft',NULL,NULL),(656098,'Alain Page',1930,NULL),(656105,'Anita Page',1910,2008),(656116,'Bobbi Page',NULL,NULL),(656175,'Gale Page',1913,1983),(656178,'Gene Page',1939,1998),(656180,'Geneviève Page',1927,NULL),(656183,'Geraldine Page',1924,1987),(656188,'Harrison Page',1941,NULL),(656199,'Jim Page',NULL,NULL),(656260,'Louis Page',1905,1990),(656275,'Matthew Page',NULL,NULL),(656300,'Patrick Page',1962,NULL),(656428,'Debra Paget',1933,NULL),(656455,'Simona Paggi',NULL,NULL),(656465,'Arturo Paglia',1970,NULL),(656496,'Marcello Pagliero',1907,1980),(656528,'Marcel Pagnol',1895,1974),(656584,'Luc Pagès',NULL,NULL),(656607,'Dre Pahich',NULL,NULL),(656644,'Manoj Pahwa',1963,NULL),(656739,'Peter Paige',1969,NULL),(656759,'Jong-hak Baek',1964,NULL),(656765,'Dave Paiko',NULL,NULL),(656768,'Géraldine Pailhas',1971,NULL),(656895,'Samuel Painter',NULL,NULL),(656929,'Josh Pais',NULL,NULL),(656980,'Nestor Paiva',1905,1966),(657062,'Greg Pak',NULL,NULL),(657064,'Ho-Sung Pak',1967,NULL),(657079,'Woody Pak',NULL,NULL),(657139,'Romi Park',1972,NULL),(657162,'George Pal',1908,1980),(657176,'Niranjan Pal',1889,1959),(657241,'Germán Palacios',1963,NULL),(657333,'Chuck Palahniuk',1962,NULL),(657343,'Dalpalan',1966,NULL),(657372,'Mark Palansky',NULL,NULL),(657411,'Julia Palau',NULL,NULL),(657534,'Gina Palerme',1885,1977),(657561,'John Palermo',1978,NULL),(657608,'Chantal Paley',NULL,NULL),(657621,'Mimi Paley',1987,NULL),(657659,'Petros Palian',1931,2023),(657729,'Anthony Palk',1939,1998),(657734,'Marianna Palka',1981,NULL),(657760,'Aleksa Palladino',1980,NULL),(657822,'Jana Pallaske',1979,NULL),(657848,'Anita Pallenberg',1942,2017),(657853,'Rospo Pallenberg',1939,NULL),(657874,'Eugene Pallette',1889,1954),(657921,'Tommy Pallotta',1968,NULL),(657965,'Michael Palm',1965,NULL),(658041,'Rossy de Palma',1964,NULL),(658077,'Marcos Palmeira',1963,NULL),(658099,'Alex Palmer',1973,NULL),(658108,'Amy Palmer',NULL,NULL),(658133,'Betsy Palmer',1926,2015),(658244,'Geoffrey Palmer',1927,2020),(658254,'Ernest Palmer',1901,1964),(658336,'Leland Palmer',1945,NULL),(658339,'Lilli Palmer',1914,1986),(658345,'Luke Palmer',NULL,NULL),(658397,'Norman R. Palmer',1918,2013),(658404,'Patrick J. Palmer',1935,NULL),(658472,'Tim Palmer',NULL,NULL),(658571,'David Palmieri',1972,NULL),(658609,'Jimmy Palmiotti',1961,NULL),(658628,'Vincent Palmo Jr.',NULL,NULL),(658633,'Dan Palmquist',1923,1981),(658687,'Rosa Palomar',NULL,NULL),(658753,'Vince Palomino',1971,NULL),(658823,'Jake Paltrow',1975,NULL),(658836,'Hervé Palud',1953,NULL),(658837,'Xavier Palud',NULL,NULL),(658851,'Dolores Palumbo',1912,1984),(658885,'Luciana Paluzzi',1937,NULL),(659013,'Kant Pan',NULL,NULL),(659023,'Pan Nalin',NULL,NULL),(659048,'Kay Panabaker',1990,NULL),(659069,'Hengameh Panahi',NULL,NULL),(659085,'Norman Panama',1914,2003),(659123,'Andrew Panay',NULL,NULL),(659238,'Kamlesh Pandey',NULL,NULL),(659249,'Sudhanshu Pandey',1974,NULL),(659250,'Pandari Bai',1930,2003),(659353,'Michael Panes',1963,NULL),(659363,'Hayden Panettiere',1989,NULL),(659374,'Andrew Pang',NULL,NULL),(659380,'Danny Pang',1965,NULL),(659388,'Jacky Yee Wah Pang',NULL,NULL),(659397,'Lum Chang Pang',NULL,NULL),(659427,'Franklin Pangborn',1889,1958),(659467,'Cecilio Paniagua',1911,1979),(659488,'Stephen Paniccia',NULL,NULL),(659544,'Archie Panjabi',1972,NULL),(659549,'S. Panju',1915,1984),(659573,'Stuart Pankin',1946,NULL),(659597,'Bill Pankow',1952,NULL),(659675,'Mario Pannunzio',1910,1968),(659823,'Mary Pantelidis',NULL,NULL),(659927,'Lalita Panyopas',1971,NULL),(659947,'Paul Panzer',1872,1958),(659949,'William N. Panzer',1942,2007),(660016,'Dennis Paoli',NULL,NULL),(660031,'Vanna Paoli',NULL,NULL),(660097,'Nando Paone',1956,NULL),(660266,'Rocco Papaleo',1958,NULL),(660295,'Bruna Papandrea',1971,NULL),(660327,'Irene Papas',1929,2022),(660353,'Mikhail Papava',1906,1975),(660367,'Robert A. Papazian',NULL,NULL),(660518,'Jim Papoulis',NULL,NULL),(660661,'Stuart H. Pappé',1936,NULL),(660676,'Calin Papura',1950,2019),(660684,'Paul Paquay',NULL,NULL),(660707,'Gilles Paquet-Brenner',1974,NULL),(660854,'Vanessa Paradis',1972,NULL),(660893,'John Paragon',1954,2021),(660923,'Edward E. Paramore Jr.',1895,1956),(660968,'Peter Parasheles',1927,2019),(660984,'Rawiri Paratene',NULL,NULL),(661087,'Barbarella Pardo',NULL,NULL),(661097,'Fernando Pardo',NULL,NULL),(661118,'Mario Pardo',1944,NULL),(661162,'John Pardue',NULL,NULL),(661164,'Kip Pardue',1975,NULL),(661238,'Andrij Parekh',1971,NULL),(661275,'Gail Parent',1940,NULL),(661289,'Mary Parent',1968,NULL),(661345,'Neri Parenti',1950,NULL),(661355,'Damien Parer',NULL,NULL),(661406,'David Parfitt',1958,NULL),(661407,'Judy Parfitt',1935,NULL),(661514,'Jay Parini',1948,NULL),(661549,'Domonic Paris',NULL,NULL),(661577,'Jerry Paris',1925,1986),(661615,'Richard Paris',NULL,NULL),(661639,'Virginia Paris',1934,2008),(661651,'Jeffrey Vincent Parise',NULL,NULL),(661665,'Alfred Pariser',NULL,NULL),(661687,'John Parish',NULL,NULL),(661751,'Dean Parisot',NULL,NULL),(661755,'Annie Parisse',1975,NULL),(661791,'Park Chan-wook',1963,NULL),(661825,'Grace Park',1974,NULL),(661837,'Hun-Su Park',NULL,NULL),(661882,'Ki-hyeong Park',1968,NULL),(661910,'Nick Park',1958,NULL),(661912,'Nira Park',1967,NULL),(661931,'Sang-yeon Park',1972,NULL),(661975,'Park Yejin',1981,NULL),(662032,'Albert Parker',1885,1974),(662086,'Bradley Parker',NULL,NULL),(662116,'Cecil Parker',1897,1971),(662134,'Chris Parker',NULL,NULL),(662155,'Clifton Parker',1905,1989),(662180,'Dave Parker',NULL,NULL),(662213,'Dorothy Parker',1893,1967),(662223,'Eleanor Parker',1922,2013),(662240,'Fess Parker',1924,2010),(662321,'Jameson Parker',1947,NULL),(662335,'Jean Parker',1915,2005),(662383,'Jonathan Parker',NULL,NULL),(662404,'Kieran Parker',NULL,NULL),(662435,'Laurie Parker',NULL,NULL),(662469,'Maceo Parker',1943,NULL),(662491,'Michael Parker',NULL,NULL),(662504,'Molly Parker',1972,NULL),(662511,'Nathaniel Parker',1962,NULL),(662519,'Nicole Ari Parker',1970,NULL),(662529,'Oliver Parker',1960,NULL),(662530,'Ol Parker',1969,NULL),(662562,'Anthony Ray Parker',1958,NULL),(662582,'Robert B. Parker',1932,2010),(662635,'Steven Parker',NULL,NULL),(662646,'Suzy Parker',1932,2003),(662678,'Tom S. Parker',NULL,NULL),(662744,'Shaun Parkes',1973,NULL),(662748,'Walter F. Parkes',1951,NULL),(662808,'Barbara Parkins',1942,NULL),(662883,'Sami Parkkinen',NULL,NULL),(662953,'Gordon Parks',1912,2006),(662972,'Larry Parks',1914,1975),(662981,'Michael Parks',1940,2017),(663002,'Rick Parks',NULL,NULL),(663016,'Suzan-Lori Parks',1963,NULL),(663026,'Van Dyke Parks',1943,NULL),(663048,'Charley Parlapanides',NULL,NULL),(663050,'Vlas Parlapanides',NULL,NULL),(663077,'Dita Parlo',1906,1971),(663101,'Pratibha Parmar',NULL,NULL),(663139,'Julie-Marie Parmentier',1981,NULL),(663221,'Véronique Parnet',NULL,NULL),(663250,'Starr Parodi',NULL,NULL),(663280,'Dawn Parouse',NULL,NULL),(663490,'Sara Parriott',1953,NULL),(663546,'Janel Parrish',1988,NULL),(663577,'Robert Parrish',1916,1995),(663605,'Denis Parrot',NULL,NULL),(663613,'James Parrott',1897,1939),(663763,'Marion Parsonnet',1905,1960),(663796,'Clive Parsons',1942,2009),(663832,'Harriet Parsons',1906,1983),(663858,'Lindsley Parsons',1905,1992),(663914,'Stephen W. Parsons',1951,NULL),(663923,'William Parsons',1878,1919),(663935,'Paul A. Partain',1946,2005),(663999,'Richard Partlow',1948,NULL),(664020,'Antony Partos',1968,NULL),(664022,'Frank Partos',1901,1956),(664031,'Kambuzia Partovi',1956,2020),(664061,'Ross Partridge',1968,NULL),(664175,'Jessica Paré',1980,NULL),(664179,'Lisa Katselas',1959,NULL),(664186,'Mila Parély',1917,2012),(664194,'Inés París',1962,NULL),(664207,'Antonio Passalia',1926,2016),(664238,'Adam Pascal',1970,NULL),(664251,'Ernest Pascal',1896,1966),(664256,'Françoise Pascal',1949,NULL),(664273,'Cornel Wilde',1912,1989),(664339,'Nathalie Pascaud',NULL,NULL),(664440,'Cristina Sánchez Pascual',1959,NULL),(664513,'Michael Paseornek',NULL,NULL),(664519,'Stefano Pasetto',1970,NULL),(664572,'Mirza Pasic',NULL,NULL),(664647,'Jean Pasley',NULL,NULL),(664660,'Darío Paso',1979,NULL),(664666,'Susanna Pasolini',1891,1981),(664667,'Uberto Pasolini',1957,NULL),(664676,'Alan Pasqua',1952,NULL),(664756,'John Pasquin',1945,NULL),(664760,'Angelo Pasquini',NULL,NULL),(664802,'Ameneh Passand',NULL,NULL),(664885,'Lars Passgård',1941,2003),(664920,'Jeremy Passmore',NULL,NULL),(664941,'Heloísa Passos',NULL,NULL),(664985,'Boris Pasternak',1890,1960),(664990,'Joe Pasternak',1901,1991),(665002,'Bastian Pastewka',1972,NULL),(665041,'David Pastor',1978,NULL),(665062,'Librado Pastor',NULL,NULL),(665082,'Rosana Pastor',1960,NULL),(665123,'Robert Pastorelli',1954,2004),(665186,'Franca Pasut',NULL,NULL),(665235,'Elsa Pataky',1976,NULL),(665262,'Vincent Patar',1965,NULL),(665265,'Patcharawan Patarakijjanon',NULL,NULL),(665291,'Wally Patch',1888,1970),(665305,'Tom Patchett',NULL,NULL),(665349,'Ameesha Patel',1975,NULL),(665370,'Harish Patel',1953,NULL),(665394,'Raju Patel',1960,2005),(665466,'Andy Paterson',1960,NULL),(665473,'Bill Paterson',1945,NULL),(665494,'Iain Paterson',NULL,NULL),(665505,'Katherine Paterson',1932,NULL),(665510,'Lesley Paterson',NULL,NULL),(665550,'Ratna Pathak Shah',1957,NULL),(665572,'Charles Pathé',1863,1957),(665715,'Charles Paton',1874,1970),(665763,'Horia Patrascu',1938,2016),(665813,'Barbara Patrick',1960,NULL),(665822,'Butch Patrick',1953,NULL),(665850,'Gail Patrick',1911,1980),(665875,'John Patrick',1905,1995),(665902,'Nigel Patrick',1912,1981),(666069,'Bart Patton',1939,NULL),(666087,'Luana Patten',1938,1996),(666201,'Elizabeth Patterson',1874,1966),(666203,'Erik Patterson',NULL,NULL),(666247,'James Patterson',1932,1972),(666248,'James Patterson',1947,NULL),(666332,'Neva Patterson',1920,2010),(666358,'Paula Raymond',1924,2003),(666362,'Ray Patterson',1911,2001),(666372,'Richard L. Patterson',1924,1984),(666395,'Sarah Patterson',1972,NULL),(666398,'Scott Patterson',1958,NULL),(666408,'Shirley Patterson',1922,1995),(666495,'Charles Pattinson',NULL,NULL),(666548,'Chuck Patton',NULL,NULL),(666556,'Donovan Patton',1978,NULL),(666580,'Jody Allen',NULL,NULL),(666593,'Mark Patton',1959,NULL),(666604,'Mike Patton',1968,NULL),(666626,'Stephanie Patton',1993,NULL),(666702,'Peter Pau',1952,NULL),(666710,'Heinz Pauck',1904,1986),(666723,'Alex Pauk',NULL,NULL),(666739,'Aaron Paul',1979,NULL),(666777,'Byron Paul',1920,2004),(666788,'Christiane Paul',1974,NULL),(666791,'Cinco Paul',1964,NULL),(666802,'Don Paul',NULL,NULL),(666819,'Edna Ruth Paul',NULL,NULL),(666829,'Evelyne Paul',NULL,NULL),(666835,'Fred Paul',1880,1967),(666871,'Jarrad Paul',NULL,NULL),(666967,'Rick Paul',NULL,NULL),(666999,'Steven Paul',1959,NULL),(667015,'Numa Perrier',NULL,NULL),(667024,'Val Paul',1886,1962),(667287,'Nicolás Pauls',1973,NULL),(667326,'Rob Paulsen',1956,NULL),(667330,'Tiffany Paulsen',NULL,NULL),(667340,'Dan Paulson',NULL,NULL),(667400,'André Paulvé',1898,1982),(667414,'Rebecca Pauly',1954,NULL),(667418,'Ursule Pauly',NULL,NULL),(667447,'Vlad Paunescu',1953,NULL),(667468,'Pierre Pauquet',NULL,NULL),(667469,'Frank Paur',NULL,NULL),(667610,'Cesare Pavese',1908,1950),(667630,'Mark Pavia',NULL,NULL),(667714,'Frantisek Pavlícek',1923,2004),(667733,'Eva Pavlikova',NULL,NULL),(667734,'Pawel Pawlikowski',1957,NULL),(667770,'Stel Pavlou',NULL,NULL),(667901,'Muriel Pavlow',1921,2019),(668043,'Wlodzimierz Pawlik',1958,NULL),(668094,'Jill Pixley',NULL,NULL),(668122,'John Paxton',1911,1985),(668139,'Sara Paxton',NULL,NULL),(668247,'Alexander Payne',1961,NULL),(668271,'Bruce Payne',NULL,NULL),(668276,'C.D. Payne',NULL,NULL),(668293,'David Payne',NULL,NULL),(668309,'Don Payne',1964,2013),(668361,'John Payne',1912,1989),(668398,'Matthew Payne',NULL,NULL),(668455,'Tony Payne',NULL,NULL),(668481,'Robert Paynter',1928,2010),(668537,'Homayun Payvar',NULL,NULL),(668583,'Octavio Paz',1914,1998),(668702,'Joshua Peace',NULL,NULL),(668727,'Kenneth Peach',1903,1988),(668754,'Ann Peacock',NULL,NULL),(668838,'Don Peake',1940,NULL),(668845,'Maxine Peake',1974,NULL),(668877,'Alexander Pearce',1983,NULL),(668898,'Christopher Pearce',NULL,2016),(668902,'Craig Pearce',NULL,NULL),(668914,'Donn Pearce',1928,2017),(668940,'Jacqueline Pearce',1943,2018),(668966,'Ken Pearce',NULL,NULL),(668976,'Mary Vivian Pearce',1947,NULL),(668994,'Oscar Pearce',NULL,NULL),(668998,'Perce Pearce',1899,1955),(669004,'Richard Pearce',1943,NULL),(669050,'Daniel Pearl',1949,NULL),(669093,'Steven Pearl',NULL,NULL),(669132,'Randy Pearlstein',1971,NULL),(669301,'John Pearson',1930,2021),(669311,'Keir Pearson',NULL,NULL),(669348,'Noel Pearson',NULL,NULL),(669362,'Richard Pearson',1961,NULL),(669379,'Ryne Douglas Pearson',NULL,NULL),(669558,'Guy Pechard',NULL,NULL),(669572,'Jacques Pecheral',NULL,NULL),(669656,'Ethan Peck',1986,NULL),(669681,'Josh Peck',1986,NULL),(669683,'Kimi Peck',NULL,NULL),(669692,'Mitchell Peck',NULL,NULL),(669708,'Richard Peck',1934,2018),(669756,'Anthony Peckham',NULL,NULL),(669797,'Nicola Pecorini',1957,NULL),(669868,'Chris Pedersen',1963,NULL),(669905,'Katja Pedersen',NULL,NULL),(669922,'Maren Pedersen',1842,1920),(670035,'Kit Pedler',1927,1981),(670266,'Quinton Peeples',NULL,NULL),(670268,'Samuel A. Peeples',1917,1997),(670282,'Larry Peerce',1930,NULL),(670328,'Bill Peet',1915,2002),(670408,'Simon Pegg',1970,NULL),(670425,'Steve Pegram',NULL,NULL),(670447,'Mary Jo Pehl',1960,NULL),(670475,'Stephan Pehrsson',1975,NULL),(670582,'Sarah Peirse',NULL,NULL),(670585,'George Peirson',NULL,NULL),(670778,'Oliver P. Peldius',1989,NULL),(670779,'Ashley Peldon',1984,NULL),(670806,'Pierre Pelegri',NULL,NULL),(670852,'Lisa Pelikan',1954,NULL),(670893,'Valentine Pelka',1957,NULL),(670958,'Georges Pellegrin',NULL,NULL),(670964,'Raymond Pellegrin',1925,2007),(671032,'Mark Pellegrino',1965,NULL),(671072,'Carolina Pelleritti',1971,NULL),(671210,'Mark Pellington',1962,NULL),(671231,'Matti Pellonpää',1951,1995),(671313,'Kenout Peltier',1935,NULL),(671326,'Markku Peltola',1956,2007),(671446,'Pelé',1940,2022),(671487,'Steve Pemberton',1967,NULL),(671496,'George Pembroke',1901,1972),(671526,'Luis Fernando Peña',NULL,NULL),(671567,'Michael Peña',1976,NULL),(671721,'Austin Pendleton',1940,NULL),(671738,'Nat Pendleton',1895,1967),(671761,'Greyson Erik Pendry',1990,NULL),(671766,'Richard Alan Simmons',1924,2004),(671774,'Emma Penella',1930,2007),(671812,'Peng',NULL,NULL),(671821,'Kai-Li Peng',NULL,NULL),(671824,'Neil Peng',1953,NULL),(671854,'Susan Penhaligon',1949,NULL),(671855,'Bruce Penhall',1957,NULL),(671856,'Joe Penhall',NULL,NULL),(671862,'Roger Vadim',1928,2000),(671957,'Arthur Penn',1922,2010),(671980,'Kal Penn',1977,NULL),(671992,'Matthew Penn',NULL,NULL),(672011,'Sascha Penn',NULL,NULL),(672015,'Zak Penn',1968,NULL),(672032,'Daniel Pennac',1944,NULL),(672051,'Amato Pennasilico',NULL,NULL),(672074,'Larry Pennell',1928,2013),(672093,'Erdman Penner',1905,1956),(672103,'Jonathan Penner',1962,NULL),(672125,'Allan Penney',NULL,1996),(672422,'André Penvern',1947,NULL),(672436,'Otto Michael Penzato',NULL,NULL),(672441,'Jean Penzer',1927,2021),(672459,'David Webb Peoples',1940,NULL),(672466,'Janet Peoples',NULL,NULL),(672543,'Clare Peploe',1941,2021),(672546,'Mark Peploe',1943,NULL),(672547,'Neil Peplow',NULL,NULL),(672554,'Steve Pepoon',1966,NULL),(672562,'Chris Peppe',NULL,NULL),(672576,'Buddy Pepper',1922,1993),(672695,'Louis Peraino',1940,1999),(672769,'Stacy Peralta',1957,NULL),(672781,'Vincent Peranio',NULL,NULL),(672829,'Hugh Perceval',1908,1987),(672886,'Lance Percival',1933,2015),(672906,'Edward Percy',1891,1968),(672915,'Lee Percy',1953,NULL),(672922,'Sharon Percy',1971,NULL),(673137,'Heitor Pereira',NULL,NULL),(673204,'Ricardo Pereira',1979,NULL),(673229,'Vincent Pereira',1973,NULL),(673251,'Solomon Perel',1925,2023),(673258,'Tim Perell',NULL,NULL),(673270,'Richard Perello',NULL,NULL),(673279,'S.J. Perelman',1904,1979),(673297,'Maggie Peren',1974,NULL),(673337,'Sebastián Perera',1902,1983),(673391,'Diego Peretti',1963,NULL),(673400,'Jesse Peretz',1968,NULL),(673512,'Jack Perez',NULL,NULL),(673585,'Paul Perez',1894,1984),(673681,'Louis Pergaud',1882,1915),(673692,'Michael Pergolani',1946,NULL),(673749,'François Périer',1919,2002),(673773,'Ivo Perilli',1902,1994),(673824,'Sergio Peris-Mencheta',1975,NULL),(673858,'Sunil Perkash',1970,NULL),(673932,'Emily Perkins',1977,NULL),(673948,'Grace Perkins',1900,1955),(673950,'Tex Perkins',NULL,NULL),(674012,'Millie Perkins',1936,NULL),(674019,'Osgood Perkins',1892,1937),(674020,'Oz Perkins',1974,NULL),(674034,'Rachel Perkins',1970,NULL),(674088,'William Perkins',NULL,NULL),(674098,'Coleridge-Taylor Perkinson',1932,2004),(674135,'Arnold Perl',1914,1971),(674169,'William Perlberg',1900,1968),(674179,'Gregory Perler',1962,NULL),(674221,'Itzhak Perlman',1945,NULL),(674231,'Rhea Perlman',1948,NULL),(674265,'Yael Perlov',1959,NULL),(674303,'David Permut',NULL,NULL),(674358,'Gino Pernice',1927,1997),(674362,'Matthew Perniciaro',1979,NULL),(674419,'Geraldine Peroni',1953,2004),(674518,'Charles Perrault',1628,1703),(674520,'David Perrault',NULL,NULL),(674563,'Michèle Perrein',1929,2010),(674592,'Denis Perret',NULL,NULL),(674630,'Natalie Perrey',1929,2012),(674646,'Paul Perri',1953,NULL),(674665,'Lynne Perrie',1931,2006),(674700,'Marc Perrier',NULL,NULL),(674702,'Olivier Perrier',1940,NULL),(674742,'Jacques Perrin',1941,2022),(674759,'Nat Perrin',1905,1998),(674782,'Harold Perrineau',1963,NULL),(674816,'Claude Perron',1966,NULL),(674817,'Clément Perron',1929,1999),(674904,'Josette Perrotta',NULL,NULL),(674909,'Tom Perrotta',1961,NULL),(674986,'Bob Perry',1878,1962),(675013,'Craig Perry',NULL,NULL),(675052,'Eleanor Perry',1914,1981),(675068,'Frank Perry',1930,1995),(675110,'Jane Perry',NULL,NULL),(675114,'Jeff Perry',1955,NULL),(675126,'Jimmy Perry',1923,2016),(675219,'Michael R. Perry',1963,NULL),(675239,'Orrie Perry',1888,1950),(675294,'Simon Perry',1943,NULL),(675305,'Steve Perry',NULL,NULL),(675356,'William P. Perry',NULL,NULL),(675409,'Mikael Persbrandt',1963,NULL),(675413,'Maria Perschy',1938,2004),(675470,'Marshall Persinger',NULL,NULL),(675476,'Jacquelin Perske',NULL,NULL),(675483,'Lester Persky',1925,2001),(675490,'Nehemiah Persoff',1919,2022),(675521,'Raphaël Personnaz',1981,NULL),(675608,'Jörgen Persson',1936,NULL),(675627,'Maria Persson',1959,NULL),(675708,'Jennifer Pertsch',NULL,NULL),(675728,'Michael Pertwee',1916,1991),(675730,'Sean Pertwee',1964,NULL),(675751,'Jorge Perugorría',1965,NULL),(675919,'Milan Peschel',1968,NULL),(675926,'Anton Peschke',1946,NULL),(675977,'Atila Pesiani',NULL,NULL),(676070,'Gabriella Pession',1977,NULL),(676238,'Peter Peter',1960,NULL),(676248,'Fred Olen Ray',1954,NULL),(676270,'Kevin Peterka',1969,NULL),(676286,'Donald Peterman',1932,2011),(676301,'Timothy Wayne Peternel',NULL,NULL),(676361,'Charlie Peters',NULL,NULL),(676492,'Jean Peters',1926,2000),(676512,'John Peters',NULL,NULL),(676555,'Lauri Peters',1943,NULL),(676688,'Susan Peters',1921,1952),(676709,'Tony Peters',NULL,NULL),(676892,'Lisa Marie Petersen',NULL,NULL),(676928,'Paul Petersen',1945,NULL),(676973,'William Petersen',1953,NULL),(677021,'Barry Peterson',NULL,NULL),(677037,'Bob Peterson',1961,NULL),(677048,'Brian Peterson',NULL,NULL),(677075,'Clark Peterson',1966,NULL),(677193,'Ilse Peterson',NULL,NULL),(677253,'Kristine Peterson',NULL,NULL),(677397,'Seth Peterson',1970,NULL),(677457,'Harald G. Petersson',1904,1977),(677471,'Torkel Petersson',1969,NULL),(677535,'Marius Petipa',1818,1910),(677578,'Leontine Petit',1964,NULL),(677587,'Martin Petit',1968,NULL),(677597,'Philippe Petit',1949,NULL),(677758,'Sandro Petraglia',1947,NULL),(677880,'Elio Petri',1929,1982),(677899,'Nina Petri',1963,NULL),(677943,'Daniel Petrie Jr.',1952,NULL),(677951,'Daniel Petrie',1920,2004),(677953,'Donald Petrie',1954,NULL),(677954,'Doris Petrie',1918,2000),(677956,'Douglas Petrie',NULL,NULL),(678014,'Peter Savage',1920,1981),(678061,'Richard Petrocelli',NULL,NULL),(678080,'Jean-Pierre Petrolacci',NULL,NULL),(678101,'Giulio Petroni',1917,2010),(678104,'Michael Petroni',NULL,NULL),(678142,'Dominique Petrot',NULL,NULL),(678157,'Andrey Petrov',1930,2006),(678199,'Valeri Petrov',1920,2014),(678202,'Viktor Petrov',1947,2014),(678334,'Emil Petrovics',1930,2011),(678419,'Ivan Petrushinov',1953,NULL),(678450,'Marco Petry',1975,NULL),(678456,'Jacek Petrycki',1948,NULL),(678467,'Viktória Petrányi',1976,NULL),(678499,'Marco Pettenello',NULL,NULL),(678555,'Birgitta Pettersson',1939,NULL),(678620,'Joanna Pettet',1942,NULL),(678646,'P.J. Pettiette',NULL,NULL),(678693,'Frank Pettingell',1891,1966),(678740,'Suzanne Pettit',1948,1998),(678804,'Michael Lorre',NULL,NULL),(678857,'Christian Petzold',1960,NULL),(678911,'John Peverall',1931,2009),(678927,'Stephen Pevner',NULL,NULL),(678928,'Joseph Pevney',1911,2008),(678960,'Iris Peynado',1958,NULL),(678963,'Peyo',1928,1992),(678980,'Jérôme Peyrebrune',NULL,NULL),(678992,'Aimée Peyronnet',NULL,NULL),(679010,'Arnold Peyser',1921,2001),(679016,'Lois Peyser',1923,1994),(679017,'Michael Peyser',NULL,NULL),(679031,'Brad Peyton',1978,NULL),(679037,'Harley Peyton',NULL,NULL),(679074,'Ahmad Pezhman',1937,NULL),(679133,'Luis Peña',1918,1977),(679150,'Candela Peña',1973,NULL),(679263,'Gaby Peñalba',NULL,NULL),(679272,'Diana Peñalver',1965,NULL),(679326,'Chuck Pfarrer',NULL,NULL),(679346,'Benoît Pfauwadel',NULL,NULL),(679405,'Carolyn Pfeiffer',NULL,NULL),(679553,'Friedrich Pflughaupt',1892,1951),(679586,'Andres Pfäffli',NULL,NULL),(679662,'Jennifer Phang',NULL,NULL),(679750,'Mark Phelan',NULL,NULL),(679907,'Mary Philbin',1902,1993),(679930,'Dominic Philie',NULL,NULL),(679959,'Gérard Philipe',1922,1959),(679973,'Gunther Philipp',1918,2003),(679974,'Harald Philipp',1921,1999),(680018,'Pierre Philippe',1931,2021),(680024,'Philippe-Gérard',1924,2014),(680180,'Álex Phillips Jr.',1935,2007),(680210,'Anna Lise Phillips',NULL,NULL),(680250,'Bill Phillips',1949,NULL),(680257,'Bob Phillips',NULL,NULL),(680272,'Britta Phillips',NULL,NULL),(680290,'Caryl Phillips',1958,NULL),(680355,'Diana Phillips',NULL,NULL),(680402,'Frank V. Phillips',1912,1994),(680407,'Garry Phillips',NULL,NULL),(680421,'Glasgow Phillips',NULL,NULL),(680489,'Jeff Daniel Phillips',NULL,NULL),(680512,'John Phillips',1935,2001),(680539,'Julia Phillips',1944,2002),(680541,'Julianne Phillips',1960,NULL),(680584,'Leo Phillips',1914,NULL),(680587,'Leslie Phillips',1924,2022),(680595,'Lloyd Phillips',1949,2013),(680599,'Lucy Phillips',NULL,NULL),(680603,'Mackenzie Phillips',1959,NULL),(680635,'Michael Phillips',1943,NULL),(680667,'Nathan Phillips',1980,NULL),(680766,'Sally Phillips',1970,NULL),(680795,'Siân Phillips',1933,NULL),(680805,'Stephanie Phillips',NULL,NULL),(680846,'Todd Phillips',1970,NULL),(680889,'William Phillips',NULL,NULL),(680924,'Tim Philo',NULL,NULL),(680983,'Elliot Page',1987,NULL),(681040,'Martin Phipps',NULL,NULL),(681093,'Patricia Phoenix',1923,1986),(681104,'Black Phomtong',NULL,NULL),(681168,'Isabelle Pia',1931,2008),(681218,'Matilde Piana',NULL,NULL),(681264,'Priit Pärn',1946,NULL),(681344,'Andrea Piazzesi',NULL,NULL),(681392,'Enrico Picard',NULL,NULL),(681422,'Xavier Picard',1962,NULL),(681467,'Miguel Picazo',1927,2016),(681566,'Michel Piccoli',1925,2020),(681583,'Ottavia Piccolo',1949,NULL),(681635,'Irving Pichel',1891,1954),(681782,'James Pickens Jr.',1954,NULL),(681802,'David V. Picker',1931,2019),(681882,'Cindy Pickett',1947,NULL),(681914,'Rex Pickett',1956,NULL),(681933,'Mary Pickford',1892,1979),(681943,'Christina Pickles',1935,NULL),(681954,'Vivian Pickles',1931,NULL),(682030,'Jodi Picoult',1966,NULL),(682066,'Jeff Pidgeon',1965,NULL),(682071,'Rebecca Pidgeon',1965,NULL),(682074,'Walter Pidgeon',1897,1984),(682115,'Malgorzata Pieczynska',1960,NULL),(682181,'Yannik Piel',NULL,NULL),(682196,'John Pielmeier',1949,NULL),(682283,'Ann Pierce',NULL,NULL),(682309,'Charles B. Pierce',1938,2010),(682327,'Dave Pierce',NULL,NULL),(682366,'Henry Pierce',NULL,NULL),(682399,'Justin Pierce',1975,2000),(682481,'Tedd Pierce',1906,1972),(682495,'Wendell Pierce',1963,NULL),(682503,'Tony Pierce-Roberts',1944,NULL),(682583,'Donna Pieroni',NULL,NULL),(682600,'Joyce Pierpoline',NULL,NULL),(682660,'Émile Pierre',NULL,NULL),(682667,'Charles Henri de Pierrefeu',NULL,NULL),(682692,'Frédéric Pierrot',1960,NULL),(682744,'Carl Pierson',1891,1977),(682752,'Dori Pierson',1948,NULL),(682757,'Frank Pierson',1925,2012),(682790,'Mark Pierson',1955,NULL),(682830,'Krzysztof Piesiewicz',1945,NULL),(682881,'Antonio Pietrangeli',1919,1968),(683064,'Fabio Pignatelli',NULL,NULL),(683092,'Claude Pignot',1923,2014),(683111,'Marguerite Pigott',NULL,NULL),(683114,'Tempe Pigott',1869,1962),(683116,'Tim Pigott-Smith',1946,2017),(683253,'Rosamund Pike',1979,NULL),(683334,'Joseph Pilato',1949,2019),(683345,'Nova Pilbeam',1919,2015),(683346,'Giles Pilbrow',NULL,NULL),(683380,'Nicholas Pileggi',1933,NULL),(683435,'Margarita Pilikhina',1926,1975),(683453,'Gordon Pilkington',NULL,NULL),(683455,'Lorraine Pilkington',1974,NULL),(683467,'Alison Pill',1985,NULL),(683522,'Michael Piller',1948,2005),(683531,'Marie Pillet',1941,2009),(683578,'Sam Pillsbury',NULL,NULL),(683579,'Sarah Pillsbury',NULL,NULL),(683587,'Søren Pilmark',1955,NULL),(683609,'Kathy Pilon',1962,NULL),(683653,'Marion Pilowsky',NULL,NULL),(683724,'Brian Pimental',1964,NULL),(683726,'Nancy M. Pimental',1965,NULL),(683831,'Silvia Pinal',1931,NULL),(683912,'Gregory K. Pincus',NULL,NULL),(683950,'Csaba Pindroch',1972,NULL),(683986,'Robert Pine',NULL,NULL),(684004,'Denis Pineau-Valencienne',NULL,NULL),(684083,'Tullio Pinelli',1908,2009),(684093,'Arthur Wing Pinero',1855,1934),(684131,'Hon Ping Tang',NULL,NULL),(684173,'Carl Pingitore',1924,2008),(684336,'Steve Pink',NULL,NULL),(684342,'Jan Pinkava',1963,NULL),(684374,'Jeff Pinkner',NULL,NULL),(684432,'David Pinner',1940,NULL),(684460,'Emil Pinnock',1983,NULL),(684500,'Dominique Pinon',1955,NULL),(684509,'Claude Pinoteau',1925,2012),(684521,'Gordon Pinsent',1930,2023),(684596,'Lucian Pintilie',1933,2018),(684620,'Antonio Pinto',NULL,NULL),(684654,'Fernando Alves Pinto',1969,NULL),(684755,'Mario Pinzauti',1930,NULL),(684771,'Romain Pinès',1890,1981),(684791,'Renaud Pion',NULL,NULL),(684840,'Luana Piovani',1976,NULL),(684842,'Emanuela Piovano',1959,NULL),(684877,'Billie Piper',1982,NULL),(684908,'Kelly Piper',1950,2009),(684919,'Monica Piper',NULL,NULL),(684929,'Roddy Piper',1954,2015),(684999,'Danuel Pipoly',1978,NULL),(685034,'Juan Piquer Simón',1935,2011),(685038,'Gary Piquer',NULL,NULL),(685063,'Luigi Pirandello',1867,1936),(685123,'Glória Pires',1963,NULL),(685129,'Jay Pires',NULL,NULL),(685157,'Baris Pirhasan',1951,NULL),(685188,'Akif Pirinçci',1959,NULL),(685194,'Perry Pirkanen',NULL,NULL),(685216,'David Pirner',1964,NULL),(685221,'Grant Piro',NULL,NULL),(685265,'Robert Pirosh',1910,1989),(685297,'John Pirozzi',NULL,NULL),(685316,'Ugo Pirro',1920,2008),(685396,'Ruslana Pisanka',1965,2022),(685472,'Joe Piscopo',1951,NULL),(685494,'Marie-France Pisier',1944,2011),(685559,'Luigi Pistilli',1929,1996),(685587,'Joseph D. Pistone',1939,NULL),(685597,'Julia Pistor',1965,NULL),(685609,'Mario Pisu',1910,1976),(685665,'George Pitcher',NULL,NULL),(685673,'Dean Pitchford',1951,NULL),(685755,'John Paul Pitoc',NULL,NULL),(685759,'Pitof',1957,NULL),(685771,'Anne Pitoniak',1922,2007),(685830,'Charles Pitt',NULL,NULL),(685833,'Dale Pitt',1931,2008),(685839,'Ingrid Pitt',1937,2010),(685856,'Michael Pitt',1981,NULL),(685862,'Peter Pitt',1927,2020),(685876,'Robert Pittack',1899,1976),(685904,'William Pittenger',1840,1904),(686009,'Jacob Pitts',1979,NULL),(686020,'Rafi Pitts',1967,NULL),(686032,'Zasu Pitts',1894,1963),(686089,'Ben Pivar',1901,1963),(686091,'Nigel Pivaro',1959,NULL),(686099,'Shira Piven',1961,NULL),(686225,'Denise Pizzini',NULL,NULL),(686233,'Angelo Pizzo',NULL,NULL),(686263,'Claude Piéplu',1923,2006),(686304,'Marcelo Piñeyro',1953,NULL),(686334,'Graham Place',1903,1981),(686375,'Michele Placido',1946,NULL),(686376,'Violante Placido',1976,NULL),(686385,'Tomàs Pladevall',1946,NULL),(686459,'Ramón Plana',NULL,NULL),(686514,'Robert H. Planck',1902,1971),(686656,'Ronald Plante',NULL,NULL),(686693,'Franz Plasa',NULL,NULL),(686704,'Otto Plaschkes',1929,2005),(686799,'Sylvia Plath',1932,1963),(686887,'Marc Platt',1957,NULL),(686895,'Polly Platt',1939,2011),(687022,'Nigel Playfair',1874,1934),(687042,'Paco Plaza',1973,NULL),(687109,'David Pledger',NULL,NULL),(687141,'Hélène Plemiannikov',1929,2022),(687142,'Nathalie Vadim',1957,NULL),(687146,'Jesse Plemons',1988,NULL),(687189,'Suzanne Pleshette',1937,2008),(687244,'Valerian Pletnev',NULL,NULL),(687274,'Jan Plewka',NULL,NULL),(687402,'Raoul Ploquin',1900,1992),(687412,'Joel Plotch',NULL,NULL),(687427,'Gregory Plotkin',NULL,NULL),(687443,'Jack Plotnick',NULL,NULL),(687494,'Jon Plowman',1953,NULL),(687497,'Michael Richard Plowman',1965,NULL),(687506,'Joan Plowright',1929,NULL),(687575,'Hay Plumb',1883,1960),(687617,'Chris Plummer',NULL,NULL),(687625,'Glenn Plummer',1961,NULL),(687641,'Mark Plummer',NULL,NULL),(687679,'Gerard Plunkett',NULL,NULL),(687692,'Marcella Plunkett',NULL,NULL),(687694,'Maryann Plunkett',1952,NULL),(687782,'Bo-Man Wong',NULL,NULL),(687797,'Tama Poata',NULL,NULL),(687861,'Sabine Pochhammer',NULL,NULL),(687937,'Eyal Podell',1975,NULL),(687958,'Rossana Podestà',1934,2013),(688117,'James Poe',1921,1980),(688132,'Amy Poehler',1971,NULL),(688143,'Benoît Poelvoorde',1964,NULL),(688228,'Massimo Poggio',1970,NULL),(688279,'Charles Edward Pogue',1950,NULL),(688282,'John Pogue',NULL,NULL),(688292,'Judit Pogány',1944,NULL),(688325,'Anja Pohl',1967,NULL),(688361,'Bill Pohlad',NULL,NULL),(688400,'Gergely Pohárnok',1968,NULL),(688497,'Jean Poiret',1926,1992),(688575,'Luis Poirot',NULL,NULL),(688583,'Alain Poiré',1917,2000),(688636,'Laura Poitras',1964,NULL),(688694,'Diana Pokorny',NULL,NULL),(688789,'Michael Polaire',NULL,NULL),(688953,'Zoë Poledouris',1973,NULL),(689237,'Jon Polito',1950,2016),(689248,'Haydée Politoff',1946,NULL),(689316,'Mimi Polk Gitlin',NULL,NULL),(689319,'Patrik-Ian Polk',1973,NULL),(689343,'Jon Poll',NULL,NULL),(689347,'Martin Poll',1922,2012),(689444,'\'Snub\' Pollard',1889,1962),(689473,'Hugh Pollard',1975,NULL),(689488,'Michael J. Pollard',1939,2019),(689498,'Sam Pollard',NULL,NULL),(689527,'Susanne Pollatschek',1977,NULL),(689565,'Jack Pollexfen',1908,2003),(689572,'Joanna Polley',NULL,NULL),(689573,'Mark Polley',NULL,NULL),(689574,'Michael Polley',1933,2018),(689645,'Dale Pollock',NULL,NULL),(689661,'Gordon Pollock',1897,1962),(689696,'Tom Pollock',1943,2020),(689724,'Laurette Polmanss',NULL,NULL),(689748,'Malvina Polo',1903,2000),(689778,'Vicki Polon',NULL,NULL),(689780,'Gavin Polone',NULL,NULL),(689796,'Abraham Polonsky',1910,1999),(689843,'Abe Polsky',1935,NULL),(689846,'Milton Polsky',1933,NULL),(689852,'John Polson',1965,NULL),(689856,'Claire Rudnick Polstein',NULL,NULL),(689871,'Dave Polter',NULL,NULL),(689895,'Sergei Poluyanov',1924,1983),(689909,'Marisa Polvino',NULL,NULL),(689954,'Michael Poryes',1955,NULL),(690051,'Max Pomeranc',1984,NULL),(690053,'Eric Pomerance',NULL,NULL),(690112,'John Pomeroy',1951,NULL),(690125,'Scarlett Pomers',1988,NULL),(690143,'Erich Pommer',1889,1966),(690150,'Daniel Pommereulle',1937,2003),(690186,'Ellen Pompeo',1969,NULL),(690225,'Isabel de Pomés',1924,2007),(690278,'Jose Ponce',NULL,NULL),(690303,'Eusebio Poncela',1945,NULL),(690390,'Alessandro Pondi',NULL,NULL),(690422,'Suchao Pongwilai',NULL,NULL),(690469,'Pavel Ponomaryov',1980,NULL),(690514,'Mercè Pons',1966,NULL),(690532,'Ventura Pons',1945,NULL),(690584,'Gideon Ponte',NULL,NULL),(690597,'Gillo Pontecorvo',1919,2006),(690602,'Marco Pontecorvo',1966,NULL),(690638,'Carlo Ponti',1912,2007),(690677,'Herbert G. Ponting',1870,1935),(690686,'Chris Pontius',1974,NULL),(690691,'Erich Ponto',1884,1957),(690693,'Roland Pontoizeau',NULL,NULL),(690695,'Javier Ponton',NULL,NULL),(690702,'Clara Pontoppidan',1883,1975),(690720,'Giuseppe Ponturo',NULL,NULL),(690723,'Anna Björk',NULL,NULL),(690770,'DJ Pooh',NULL,NULL),(690772,'Jocelyn Pook',1960,NULL),(690794,'Léa Pool',1950,NULL),(690798,'Robert Roy Pool',NULL,NULL),(690803,'Aaron Poole',1977,NULL),(690830,'Duane Poole',1948,2023),(690940,'Hang-Sang Poon',NULL,NULL),(690952,'Man Kit Poon',NULL,NULL),(690972,'Ahmed Ahmed Poor',NULL,NULL),(690974,'Babek Ahmed Poor',NULL,NULL),(691061,'Jim Wynorski',1950,NULL),(691084,'Bill Pope',1952,NULL),(691088,'Braxton Pope',NULL,NULL),(691100,'Conrad Pope',NULL,NULL),(691131,'Jeff Pope',NULL,NULL),(691171,'Philip Pope',NULL,NULL),(691186,'Ryan Pope',NULL,NULL),(691283,'Leo C. Popkin',1914,2011),(691311,'Popol Vuh',NULL,NULL),(691358,'Valentin Popov',1936,1991),(691364,'Vladimir Popov',NULL,NULL),(691420,'Hristina Popovic',1982,NULL),(691541,'Alex Poppas',NULL,NULL),(691555,'Nils Poppe',1908,2000),(691556,'Pawel Poppe',1948,NULL),(691586,'Paul Popplewell',1977,NULL),(691600,'Anna Popplewell',1988,NULL),(691936,'Piero Portalupi',1913,1971),(692013,'Adina Porter',1971,NULL),(692016,'Aldric La\'auli Porter',NULL,NULL),(692039,'Billy Porter',1969,NULL),(692051,'Bruce Porter',NULL,NULL),(692064,'Christopher Porter',NULL,NULL),(692080,'Darryl Porter',NULL,NULL),(692093,'Don Porter',1912,1997),(692105,'Edwin S. Porter',1870,1941),(692108,'Eleanor H. Porter',1868,1920),(692110,'Eric Porter',1928,1995),(692301,'Stewart Porter',NULL,NULL),(692305,'Susie Porter',NULL,NULL),(692391,'Blanca Portillo',1963,NULL),(692427,'Charles Portis',1933,2020),(692439,'Eric Portman',1901,1969),(692466,'Richard Portnow',NULL,NULL),(692471,'John Portnoy',NULL,NULL),(692634,'Brian Posehn',1966,NULL),(692652,'Toby Poser',1969,NULL),(692656,'Amanda Posey',1965,NULL),(692675,'Stephen L. Posey',NULL,NULL),(692677,'Tyler Posey',1991,NULL),(692713,'Enrique Posner',NULL,NULL),(692872,'Ted Post',1918,2013),(692883,'Adrienne Posta',1949,NULL),(692925,'Steven Poster',1944,NULL),(692938,'Giorgio Postiglione',NULL,NULL),(692942,'Jessica Postigo',NULL,NULL),(693014,'Yoav Potash',NULL,NULL),(693066,'Anthony Christian Potenza',1972,NULL),(693229,'Beatrix Potter',1866,1943),(693243,'Chris Potter',1960,NULL),(693259,'Dennis Potter',1935,1994),(693281,'H.C. Potter',1904,1977),(693317,'Madeleine Potter',NULL,NULL),(693355,'Stephen Potter',1900,1969),(693361,'Terry Potter',NULL,NULL),(693376,'Gerald Potterton',1931,2022),(693493,'Josep Maria Pou',1944,NULL),(693531,'Ely Pouget',1960,NULL),(693550,'Hubert Pouille',NULL,NULL),(693560,'Georges Poujouly',1940,2000),(693561,'Alan Poul',NULL,NULL),(693571,'Hugues Poulain',NULL,NULL),(693668,'Aeschylus Poulos',NULL,NULL),(693747,'Raymond Poulton',1916,1992),(693799,'Melvil Poupaud',1973,NULL),(693833,'Pénélope Pourriat',NULL,NULL),(693844,'Eléonore Pourriat',NULL,NULL),(693933,'Dan Povenmire',1963,NULL),(693956,'Jon Povill',NULL,NULL),(694035,'Bob Powell',1916,1967),(694066,'Clifton Powell',1956,NULL),(694090,'Dick Powell',1904,1963),(694135,'Homer Powell',NULL,NULL),(694173,'John Powell',1963,NULL),(694230,'Marykay Powell',NULL,NULL),(694249,'Nick Powell',NULL,NULL),(694252,'Nik Powell',1950,2019),(694260,'Paul Powell',1881,1944),(694268,'Peter Powell',NULL,1980),(694389,'Deborah Power',1960,NULL),(694403,'Hartley Power',1893,1966),(694440,'Owen Power',NULL,NULL),(694454,'Romina Power',1951,NULL),(694526,'Donna Powers',NULL,NULL),(694580,'Mala Powers',1931,2007),(694612,'Ron Powers',NULL,NULL),(694627,'Tim Powers',1952,NULL),(694638,'Wayne Powers',NULL,NULL),(694709,'Miléna Poylo',NULL,NULL),(694737,'Bryan Poyser',NULL,NULL),(694762,'Michael Pozen',1920,1988),(694782,'Amit Poznansky',1974,NULL),(694874,'Rui Poças',1966,NULL),(694893,'Prabhu',1956,NULL),(694934,'José María Prada',1925,1978),(694946,'Manuel Pradal',1964,2017),(694966,'Solange Pradel',1943,NULL),(695038,'Marcos Prado',1961,NULL),(695048,'Mónica Prado',NULL,NULL),(695112,'Timothy Prager',1957,NULL),(695127,'Axel Prahl',1960,NULL),(695147,'Ian Praiser',1947,2006),(695177,'Prakash Raj',1965,NULL),(695178,'Eleonora Praksina',NULL,NULL),(695197,'Kukrit Pramoj',1911,1995),(695233,'Steven Pranoto',NULL,NULL),(695247,'Pras Michel',1972,NULL),(695332,'Terry Pratchett',1948,2015),(695370,'Maurice Prather',1926,2001),(695390,'Vasco Pratolini',1913,1991),(695415,'Charles Pratt Jr.',NULL,NULL),(695421,'Anthony Pratt',1937,NULL),(695422,'Anthony E. Pratt',1903,1994),(695435,'Chris Pratt',1979,NULL),(695456,'Gilbert Pratt',1892,1954),(695460,'Guy Pratt',1962,NULL),(695536,'Roger Pratt',1947,NULL),(695560,'Victoria Pratt',1970,NULL),(695609,'Ruth Prawer Jhabvala',1927,2013),(695643,'Jim Praytor',NULL,NULL),(695666,'Antonia Prebble',1984,NULL),(695667,'John Prebble',1915,2001),(695792,'Evelyn Preer',1896,1932),(695835,'Kinga Preis',1971,NULL),(695878,'Helen Prejean',1939,NULL),(695881,'Gabriella Prekop',1947,NULL),(695937,'Otto Preminger',1905,1986),(695977,'Jose Prendes',1979,NULL),(696038,'Paula Prentiss',1938,NULL),(696059,'Laura Prepon',1980,NULL),(696070,'Jaron Presant',NULL,NULL),(696071,'Sean Presant',NULL,NULL),(696078,'Eugene Wiley Presbrey',1853,1931),(696083,'Hans Prescher',1930,2020),(696163,'Micheline Presle',1922,NULL),(696189,'Robert Presnell Jr.',1914,1986),(696190,'Robert Presnell Sr.',1894,1969),(696193,'Harve Presnell',1933,2009),(696216,'Fiona Press',NULL,NULL),(696236,'Richard Press',NULL,NULL),(696247,'Emeric Pressburger',1902,1988),(696299,'Edward R. Pressman',1943,2023),(696309,'Michael Pressman',1950,NULL),(696319,'Jay Presson Allen',1922,2006),(696360,'Viola Prestieri',NULL,NULL),(696387,'Carrie Preston',NULL,NULL),(696481,'Robert Preston',1918,1987),(696486,'Rupert Preston',NULL,NULL),(696510,'Wayde Preston',1929,1992),(696546,'Wayne Pretlow',NULL,NULL),(696679,'Marie Prevost',1896,1937),(696705,'Margo Prey',NULL,NULL),(696725,'Alessandro Preziosi',1973,NULL),(696771,'Alan Price',1942,NULL),(696866,'Dennis Price',1915,1973),(696895,'Frank Price',1930,NULL),(696937,'Jimmy Price',NULL,NULL),(696949,'Jeffrey Price',1949,NULL),(697014,'Lonny Price',1959,NULL),(697048,'Michael Price',NULL,NULL),(697115,'Richard Price',1949,NULL),(697169,'Sue Price',1965,NULL),(697362,'J.B. Priestley',1894,1984),(697371,'Tom Priestley',1932,NULL),(697412,'Jenaro Prieto',NULL,NULL),(697510,'Monique Prim',1947,NULL),(697515,'Louis Prima',1910,1978),(697656,'Gina Prince-Bythewood',NULL,NULL),(697660,'Harold Prince',1928,2019),(697733,'William Prince',1913,1996),(697785,'Andrew Prine',1936,2022),(697953,'Peck Prior',NULL,NULL),(697978,'Henrik Prip',1960,NULL),(698008,'Anne Pritchard',NULL,NULL),(698095,'Georgia Pritchett',1968,NULL),(698119,'Greg Pritikin',NULL,NULL),(698133,'Gigi Pritzker',NULL,NULL),(698184,'Priyadarshan',1957,NULL),(698190,'John Prizer',1939,2019),(698238,'Danielle Probst',NULL,NULL),(698251,'Jeff Probst',1961,NULL),(698266,'Brian Probyn',1920,1982),(698271,'Domenico Procacci',1960,NULL),(698283,'Andreas Prochaska',1964,NULL),(698330,'Anna Proclemer',1923,2013),(698468,'Nicholas T. Proferes',1936,NULL),(698493,'Pat Proft',1947,NULL),(698495,'Serafino Profumo',NULL,NULL),(698564,'Zhanna Prokhorenko',1940,2011),(698645,'Alexandre Promio',1868,1926),(698744,'David Prosho',1965,NULL),(698764,'Robert Prosky',1930,2008),(698782,'Giorgio Prosperi',1911,1997),(698832,'François Protat',1945,2019),(698873,'Mark Protosevich',1961,NULL),(698913,'Jon Proudstar',1967,NULL),(698921,'Danielle Proulx',1952,NULL),(698925,'Annie Proulx',1935,NULL),(698977,'Kirsten Zien',1990,NULL),(698989,'Olive Higgins Prouty',1882,1974),(698998,'David Proval',1942,NULL),(699046,'Chris Provenzano',NULL,NULL),(699063,'Dorothy Provine',1935,2010),(699095,'Martin Provost',1957,NULL),(699117,'Heydon Prowse',1981,NULL),(699120,'Juliet Prowse',1936,1996),(699147,'Anna Prucnal',1940,NULL),(699192,'Craig Pruess',NULL,NULL),(699262,'Karl Pruner',NULL,NULL),(699306,'Faruk Pruti',1968,NULL),(699325,'Biljana Prvanovic',1964,NULL),(699456,'Brian Pryzpek',NULL,NULL),(699535,'Jacques Prévert',1900,1977),(699540,'Albert Prévost',NULL,NULL),(699545,'Daniel Prévost',1939,NULL),(699591,'Dieter Pröttel',1933,2022),(699627,'Armand Psenny',1929,2007),(699654,'Stavros Psyllakis',NULL,NULL),(699670,'Krzysztof Ptak',1954,2016),(699699,'Cunxin Pu',NULL,NULL),(699701,'Puyi',1906,1967),(699750,'Gianni Puccini',1914,1968),(699756,'Vittoria Puccini',1979,NULL),(699841,'Matthew Puckett',NULL,NULL),(699932,'Lucía Puenzo',1976,NULL),(699933,'Luis Puenzo',1946,NULL),(700050,'Mark Pugh',NULL,NULL),(700059,'Robert Pugh',1950,NULL),(700099,'Elle Key',NULL,NULL),(700112,'Aldo Puglisi',1935,NULL),(700133,'Tom Pugsley',NULL,NULL),(700194,'Manuel Puig',1932,1990),(700201,'Raul Puig',NULL,NULL),(700206,'Juanjo Puigcorbé',1955,NULL),(700229,'María Pujalte',1966,NULL),(700301,'Robert Pulcini',1964,NULL),(700443,'Keshia Knight Pulliam',1979,NULL),(700525,'Laird Pulver',NULL,NULL),(700577,'Lucy Punch',1977,NULL),(700578,'Monkey Punch',1937,2019),(700660,'David Pupkewitz',NULL,NULL),(700711,'Dick Purcell',1905,1944),(700712,'Dominic Purcell',1970,NULL),(700717,'Gertrude Purcell',1895,1963),(700760,'Steve Purcell',NULL,NULL),(700803,'Edmund Purdom',1924,2009),(700856,'James Purefoy',1964,NULL),(700869,'Amrish Puri',1932,2005),(700872,'Puri Jagannadh',1966,NULL),(700875,'Om Puri',1950,2017),(700942,'Charles Purpura',1945,2005),(701012,'Edna Purviance',1895,1958),(701031,'Neal Purvis',1961,NULL),(701049,'Tony Puryear',NULL,NULL),(701143,'Nick Pustay',NULL,NULL),(701146,'Jeff Pustil',NULL,NULL),(701171,'Michel Puterflam',1930,2015),(701233,'Nina Wilcox Putnam',1888,1962),(701298,'David Puttnam',1941,NULL),(701327,'Bruno Putzulu',1967,NULL),(701374,'Mario Puzo',1920,1999),(701378,'Jean-Vincent Puzos',NULL,NULL),(701396,'Olivier Py',1965,NULL),(701501,'Don Pyle',NULL,NULL),(701512,'Missi Pyle',NULL,NULL),(701561,'John Pyper-Ferguson',NULL,NULL),(701592,'Joe Pytka',1938,NULL),(701677,'Erzsi Pápai',1934,2017),(701715,'Terele Pávez',1939,2017),(701736,'Arvo Pärt',1935,NULL),(701780,'Sándor Pécsi',1922,1972),(701918,'Benito Pérez Galdós',1843,1920),(701932,'J.A. Pérez Giner',1934,2018),(701982,'Antonio Pérez Olea',1923,2005),(702000,'Dámaso Pérez Prado',1916,1989),(702035,'Tomás Pérez Turrent',1935,2006),(702036,'Fernando Pérez Unda',NULL,NULL),(702038,'Raúl Pérez Ureta',1942,2021),(702142,'Eugenio Pérez',NULL,NULL),(702270,'Marco Pérez',NULL,NULL),(702416,'Arturo Pérez-Reverte',1951,NULL),(702455,'Bruno Pesery',1959,NULL),(702466,'Laurent Pétin',NULL,NULL),(702467,'Michèle Pétin',1955,NULL),(702479,'Marília Pêra',1943,2015),(702518,'Julian Pölsler',1954,NULL),(702541,'Hanno Pöschl',1949,NULL),(702572,'Maggie Q',1979,NULL),(702656,'Hailu Qin',1978,NULL),(702680,'Michel Qissi',1962,NULL),(702741,'Jacopo Quadri',1964,NULL),(702760,'Massimo Quaglia',NULL,NULL),(702797,'Steven Quale',NULL,NULL),(702818,'Helmut Qualtinger',1928,1986),(702833,'Dionne Quan',1978,NULL),(702841,'Ke Huy Quan',1971,NULL),(702863,'Troy Quane',NULL,NULL),(702945,'Simon Quarterman',NULL,NULL),(702985,'Philip Quast',1957,NULL),(703032,'Anna Quayle',1932,2019),(703033,'Anthony Quayle',1913,1989),(703078,'Ben Queen',NULL,NULL),(703191,'Dee Quemby',1946,NULL),(703200,'Raymond Queneau',1903,1976),(703262,'Elías Querejeta',1934,2013),(703318,'Milo Quesada',1930,2012),(703336,'Chantal Quesnelle',NULL,NULL),(703364,'Hugues Quester',1948,NULL),(703368,'Giulio Questi',1924,2014),(703515,'May Quigley',1956,NULL),(703538,'Pascal Quignard',NULL,NULL),(703600,'Eddie Quillan',1907,1990),(703689,'Richard Quine',1920,1989),(703697,'Patrick Quinet',1967,NULL),(703720,'Jim Quinlan',1934,2020),(703747,'Aileen Quinn',NULL,NULL),(703800,'Colin Quinn',1959,NULL),(703831,'Ed Quinn',NULL,NULL),(703910,'Kimberly Quinn',1970,NULL),(703925,'Martha Quinn',1959,NULL),(703939,'Molly C. Quinn',1993,NULL),(703946,'Patricia Quinn',1944,NULL),(703947,'Patricia Quinn',1937,NULL),(704042,'Lee Quiñones',1960,NULL),(704164,'Gene Quintano',1946,NULL),(704184,'Uberto Paolo Quintavalle',1926,1997),(704270,'Zachary Quinto',1977,NULL),(704351,'Pauline Quirke',1959,NULL),(704474,'Jocelyn Quivrin',1979,2009),(704565,'Pierre Quérut',NULL,2021),(704618,'Ellie Raab',1977,NULL),(704624,'Kurt Raab',1941,1988),(704630,'Natasa Raab',1953,NULL),(704632,'Robyn Lynne Raab',NULL,NULL),(704663,'Mathias Raaflaub',NULL,NULL),(704675,'Richard Raaphorst',NULL,NULL),(704694,'Vijay Raaz',1963,NULL),(704696,'Juan Pablo Raba',1977,NULL),(704708,'Johan Rabaeus',1947,NULL),(704719,'Francisco Rabal',1926,2001),(704721,'Liberto Rabal',1975,NULL),(704740,'Jean Rabasse',NULL,NULL),(704754,'Pascal Rabaud',NULL,NULL),(704770,'Mascha Rabben',1942,NULL),(704792,'David Rabe',1940,NULL),(704802,'Pamela Rabe',1959,NULL),(704807,'Vincent J. Rabe',NULL,NULL),(704880,'Jean Rabier',1927,2016),(704896,'Jack Rabin',1914,1987),(704909,'Trevor Rabin',1954,NULL),(704911,'Antonio Rabinad',NULL,NULL),(704918,'Steven Rabiner',NULL,NULL),(704950,'Jay Rabinowitz',NULL,NULL),(705005,'Olivier Rabourdin',1959,NULL),(705025,'Colombe Raby',NULL,NULL),(705072,'Francine Racette',1947,NULL),(705108,'Jean-Rachid Kallouche',NULL,NULL),(705124,'Nicole Rachline',NULL,NULL),(705135,'Lewis J. Rachmil',1908,1984),(705136,'Michael Rachmil',1945,NULL),(705152,'Paul Raci',1948,NULL),(705205,'B.J. Rack',NULL,NULL),(705228,'Martin Rackin',1918,1976),(705331,'Chris Radant',NULL,NULL),(705356,'Daniel Radcliffe',1989,NULL),(705365,'Mark Radcliffe',1952,NULL),(705374,'Rosemary Radcliffe',NULL,NULL),(705377,'Tat Radcliffe',NULL,NULL),(705381,'Sarah Radclyffe',1950,NULL),(705400,'Richard Raddon',NULL,NULL),(705474,'Peter Rader',NULL,NULL),(705476,'Rhoades Rader',NULL,NULL),(705492,'Sascha Radetsky',1977,NULL),(705535,'Michael Radford',1946,NULL),(705572,'Dusan Radic',1929,2010),(705669,'Dan Radlauer',NULL,NULL),(705723,'Robert B. Radnitz',1924,2010),(705735,'James Rado',1932,2022),(705779,'Eric Radomski',NULL,NULL),(705842,'Vladan Radovic',1970,NULL),(705905,'Daniel Raduta',NULL,NULL),(705956,'Jerzy Radziwilowicz',1950,NULL),(706002,'Douglas Rae',1947,NULL),(706003,'Stephen Rae',NULL,NULL),(706010,'Heather Rae',1966,NULL),(706032,'Kori Rae',NULL,NULL),(706152,'Henrik Rafaelsen',1973,NULL),(706182,'Bob Rafelson',1933,2022),(706220,'Cyril Raffaelli',1974,NULL),(706228,'Andrea Raffaghello',1963,NULL),(706244,'Alexandra Raffe',NULL,NULL),(706256,'Chips Rafferty',1909,1971),(706296,'Stewart Raffill',1942,NULL),(706311,'John Raffo',NULL,NULL),(706368,'George Raft',1901,1980),(706420,'Claudio Ragazzi',NULL,NULL),(706537,'Per Ragnar',1941,NULL),(706551,'Gerome Ragni',1935,1991),(706567,'Pablo Rago',1972,NULL),(706575,'Ubaldo Ragona',1916,1987),(706615,'Rich Ragsdale',NULL,NULL),(706619,'William Ragsdale',NULL,NULL),(706744,'Yorgos Rahmatoulin',NULL,NULL),(706747,'Charity Rahmer',1979,NULL),(706787,'Aishwarya Rai Bachchan',1973,NULL),(706795,'Himanshu Rai',1892,1940),(706826,'Henri Raichi',NULL,NULL),(706882,'Philip Railsback',1951,2005),(706898,'Ivan Raimi',1956,NULL),(706904,'Michelle Raimo',NULL,NULL),(706921,'Ruggero Raimondi',1941,NULL),(706926,'Raimu',1883,1946),(706992,'Nic Raine',NULL,NULL),(706993,'Norman Reilly Raine',1894,1971),(707023,'Luise Rainer',1910,2014),(707043,'Cristina Raines',1952,NULL),(707048,'Ella Raines',1920,1988),(707214,'Miranda Raison',1977,NULL),(707262,'Jason Raize',1975,2004),(707425,'Rajinikanth',1950,NULL),(707466,'Pierre-Loup Rajot',1958,NULL),(707475,'Peggy Rajski',1953,NULL),(707814,'Jobyna Ralston',1899,1967),(707847,'Rali Raltschev',1957,NULL),(707931,'Rick Ramage',NULL,NULL),(708045,'Micaela Ramazzotti',1979,NULL),(708048,'Enrique Rambal',1924,1971),(708049,'Ester Rambal',NULL,NULL),(708081,'Marjorie Rambeau',1889,1970),(708084,'Catherine Ramberg',NULL,NULL),(708132,'Kerstin Ramcke',NULL,NULL),(708136,'Setti Ramdane',NULL,NULL),(708241,'Iraj Raminfar',NULL,NULL),(708293,'Efren Ramirez',1973,NULL),(708338,'Marisa Ramirez',1977,NULL),(708371,'Robert C. Ramirez',NULL,NULL),(708698,'Lázaro Ramos',1978,NULL),(708723,'Mauricio Andrade Ramos',NULL,NULL),(708867,'Anne Ramsay',1960,NULL),(708873,'Bruce Ramsay',1966,NULL),(708903,'Lynne Ramsay',1969,NULL),(708919,'Jean-Pierre Ramsay-Levi',NULL,NULL),(708981,'David Ramsey',1971,NULL),(709056,'Peter Ramsey',1962,NULL),(709070,'Robert Ramsey',1962,NULL),(709083,'Thea Ramsey',NULL,NULL),(709229,'Fernando Ramírez Romero',NULL,NULL),(709359,'Ashutosh Rana',1967,NULL),(709446,'Ayn Rand',1905,1982),(709466,'John Rand',1871,1940),(709634,'Lexi Randall',1980,NULL),(709681,'Ron Randell',1918,2005),(709704,'Tony Randall',1920,2004),(709721,'Roger Randall-Cutler',NULL,NULL),(709752,'Tony Randel',1956,NULL),(709905,'Jane Randolph',1914,2009),(709907,'John Randolph',1915,2004),(709944,'Ida Random',1945,NULL),(710020,'Joe Ranft',1960,2005),(710230,'Arthur Rankin Jr.',1924,2014),(710272,'Kyle Rankin',1972,NULL),(710292,'Steve Rankin',NULL,NULL),(710299,'William Rankin',1900,1966),(710330,'Andrew Rannells',1978,NULL),(710388,'Martin Ransohoff',1927,2017),(710447,'James Ransone',1979,NULL),(710520,'Galatea Ranzi',1967,NULL),(710545,'Easwari Rao',1973,NULL),(710683,'Maurice Rapf',1914,2003),(710685,'Pierre Raph',NULL,NULL),(710698,'Frederic Raphael',1931,NULL),(710723,'Samson Raphaelson',1896,1983),(710759,'Jack Rapke',NULL,NULL),(710770,'Martin Rapold',1973,NULL),(710784,'Ellen Rapoport',NULL,NULL),(710809,'Joe Raposo',1937,1989),(710810,'José Raposo',1963,NULL),(710828,'Anne Rapp',NULL,NULL),(710829,'Anthony Rapp',1971,NULL),(710883,'Daniel Rappaport',1970,NULL),(710909,'Stephen Rappaport',NULL,NULL),(710919,'Jean-Paul Rappeneau',1932,NULL),(710924,'Irving Rapper',1898,1999),(710938,'Kseniya Rappoport',1974,NULL),(710951,'David Rapsey',NULL,NULL),(711070,'Claudia Raschke',NULL,NULL),(711110,'Jim Rash',1971,NULL),(711114,'Steve Rash',NULL,NULL),(711118,'Phylicia Rashad',1948,NULL),(711235,'Fred Raskin',1973,NULL),(711432,'Karl Rasmusson',1937,NULL),(711474,'Rudolph Erich Raspe',1737,1794),(711559,'Victor Rasuk',1984,NULL),(711560,'Thalmus Rasulala',1939,1991),(711579,'Pen-Ek Ratanaruang',1962,NULL),(711605,'Sandy Ratcliff',1948,2019),(711661,'Franz Rath',1932,2020),(711702,'Eldon Rathburn',1916,2008),(711745,'Mani Ratnam',1955,NULL),(711805,'Elden Henson',1977,NULL),(711838,'Ben Immanuel',NULL,NULL),(711840,'Brett Ratner',1969,NULL),(711864,'Devin Ratray',1977,NULL),(711905,'Terence Rattigan',1911,1977),(711918,'Eric Rattray',1931,NULL),(711940,'Eilon Ratzkovsky',NULL,NULL),(711947,'Andrea Rau',1947,NULL),(711996,'Earl Mac Rauch',NULL,NULL),(712029,'Herman Raucher',1928,NULL),(712310,'Jean Ravel',NULL,NULL),(712362,'Simon Raven',1927,2001),(712368,'Raven-Symoné',1985,NULL),(712404,'Lorna Raver',1943,NULL),(712419,'Irving Ravetch',1920,2010),(712546,'Paresh Rawal',1955,NULL),(712625,'Terry Rawlings',1933,2019),(712628,'Adrian Rawlins',1958,NULL),(712653,'A.R. Rawlinson',1894,1984),(712660,'Herbert Rawlinson',1885,1953),(712712,'Alan Rawsthorne',1905,1971),(712731,'Aldo Ray',1926,1991),(712743,'Anthony Ray',1937,2018),(712753,'Billy Ray',NULL,NULL),(712782,'Christopher Ray',1977,NULL),(712887,'Julie Ray',NULL,NULL),(712904,'Leslie Ray',NULL,NULL),(712908,'Lisa Ray',1972,NULL),(712947,'Nicholas Ray',1911,1979),(713042,'Michèle Ray-Gavras',1939,NULL),(713128,'David Rayfiel',1923,2011),(713172,'Paul Rayman',NULL,NULL),(713204,'Alex Raymond',1909,1956),(713214,'Bradley Raymond',NULL,NULL),(713389,'Tania Raymonde',1988,NULL),(713424,'Jean Raynaud',NULL,NULL),(713454,'D.A. Rayner',1908,1967),(713479,'Richard Piers Rayner',NULL,NULL),(713514,'Lynn Raynor',1940,NULL),(713552,'Michael Raysses',NULL,NULL),(713777,'Toshi Reagon',NULL,NULL),(713820,'Dolly Read',1944,NULL),(713833,'Jan Read',1917,2012),(713852,'Matthew Read',NULL,NULL),(713945,'Stephen J. Readmond',NULL,NULL),(714066,'Denise Ream',NULL,NULL),(714070,'Keith Reamer',1960,NULL),(714114,'Jim Reardon',NULL,NULL),(714147,'Elizabeth Reaser',1975,NULL),(714155,'Rex Reason',1928,2015),(714199,'Joanne Reay',NULL,NULL),(714236,'Sady Rebbot',1935,1994),(714246,'Theresa Rebeck',1958,NULL),(714310,'James Rebhorn',1948,2014),(714367,'Jérôme Rebotier',NULL,NULL),(714378,'Anaïs Reboux',1987,NULL),(714400,'Andreu Rebés',NULL,NULL),(714461,'Adam Recht',NULL,NULL),(714532,'Tony Recoder',NULL,NULL),(714534,'Aurélien Recoing',1958,NULL),(714599,'Eric Red',NULL,NULL),(714695,'Jeffrey Reddick',NULL,NULL),(714761,'Helen Reddy',1941,2020),(714793,'Quinn K. Redeker',1936,2022),(714805,'Gigi Reder',1928,1998),(714836,'Dennis Redfield',1943,NULL),(714838,'Mark Redfield',NULL,NULL),(714844,'Amy Redford',1970,NULL),(714874,'Corin Redgrave',1939,2010),(714878,'Michael Redgrave',1908,1985),(714909,'Johannes Rexin',NULL,NULL),(714926,'Petra Redinger',1949,NULL),(714970,'Bill Redlin',NULL,NULL),(714983,'Redman',1970,NULL),(714985,'Amanda Redman',1957,NULL),(715002,'Frank Redman',1901,1966),(715076,'Markus Redmond',1971,NULL),(715097,'Fergus Redmund',NULL,NULL),(715118,'Jean Redon',NULL,NULL),(715127,'Emiliano Redondo',1937,2014),(715257,'Robert Reece',NULL,NULL),(715312,'Barry Reed',1927,2002),(715327,'Bobby Reed',1956,NULL),(715346,'Carol Reed',1906,1976),(715469,'JR Reed',1967,NULL),(715539,'Lady Reed',NULL,NULL),(715552,'Les Reed',1935,2019),(715586,'Michael Reed',1929,2022),(715622,'Pamela Reed',1949,NULL),(715636,'Peyton Reed',1964,NULL),(715643,'Rex Reed',1938,NULL),(715669,'Roland D. Reed',1894,1972),(715693,'Sheila Reid',1937,NULL),(715781,'Jennifer Reeder',NULL,NULL),(715784,'Mark Reeder',NULL,NULL),(715809,'Carter Reedy',NULL,NULL),(715857,'Harry Reems',1947,2013),(715916,'Jerry Rees',1956,NULL),(715951,'Richard Rees',NULL,NULL),(715953,'Roger Rees',1944,2015),(715969,'William Rees',1906,1961),(716082,'Emil Reesen',1887,1964),(716135,'Tom Reeve',1962,NULL),(716206,'Harry Reeves',1906,1971),(716257,'Matt Reeves',1966,NULL),(716275,'Perrey Reeves',1970,NULL),(716293,'Saskia Reeves',1961,NULL),(716302,'Steve Reeves',1926,2000),(716307,'Theodore Reeves',1910,1973),(716343,'Anders Refn',1944,NULL),(716347,'Nicolas Winding Refn',1970,NULL),(716350,'John Refoua',1960,2023),(716366,'David Regal',NULL,NULL),(716391,'Brian Regan',NULL,NULL),(716438,'Laura Regan',1977,NULL),(716585,'Godfrey Reggio',1940,NULL),(716701,'Piero Regnoli',1921,2001),(716795,'Hans-Michael Rehberg',1938,2017),(716924,'Allon Reich',NULL,NULL),(716973,'Peter Reichard',NULL,NULL),(716980,'Kelly Reichardt',1964,NULL),(717008,'Stéphane Reichel',NULL,NULL),(717029,'Peter Reichenbach',1954,NULL),(717046,'Frank Reicher',1875,1965),(717066,'Kittens Reichert',1910,1990),(717145,'Tami Reiker',NULL,NULL),(717157,'Alex Reid',NULL,NULL),(717176,'Anne Reid',1935,NULL),(717189,'Beryl Reid',1919,1996),(717203,'Carl Benton Reid',1893,1973),(717220,'Cliff Reid',1891,1959),(717230,'David Reid',NULL,NULL),(717256,'Elliott Reid',1920,2013),(717383,'Noah Reid',1987,NULL),(717395,'R.D. Reid',1944,2017),(717550,'Ethan Reiff',1965,NULL),(717603,'Halina Reijn',1975,NULL),(717609,'Ernst Reijseger',NULL,NULL),(717648,'Brian Reilly',1946,2011),(717678,'Fergal Reilly',NULL,NULL),(717709,'Kelly Reilly',1977,NULL),(717873,'Antoine Rein',NULL,NULL),(717959,'Sophie Reine',NULL,NULL),(717977,'Herbert Reinecker',1914,2007),(718031,'Al Reinert',1947,2018),(718101,'Elizabeth Reinhardt',1909,1954),(718106,'Gottfried Reinhardt',1913,1994),(718117,'Justin Reinhardt',NULL,NULL),(718125,'Athina Rachel Tsangari',1966,NULL),(718140,'Wolfgang Reinhardt',1908,1979),(718143,'Arthur Reinhart',1965,NULL),(718201,'Lotte Reiniger',1899,1981),(718203,'Scott H. Reiniger',1948,NULL),(718216,'Rob Reinis',1974,NULL),(718237,'Ann Reinking',1949,2020),(718243,'Harald Reinl',1908,1986),(718321,'Irving Reis',1906,1953),(718348,'Michelle Reis',1970,NULL),(718383,'Günter Reisch',1927,2014),(718426,'Niki Reiser',1958,NULL),(718458,'Linda Reisman',NULL,NULL),(718466,'Dean Riesner',1918,2002),(718469,'Charles Reisner',1887,1962),(718514,'Mike Reiss',1959,NULL),(718553,'Barney Reisz',1960,NULL),(718554,'Karel Reisz',1926,2002),(718555,'Michael Reisz',NULL,NULL),(718567,'Robert M. Reitano',NULL,NULL),(718573,'Lutz Reitemeier',1963,NULL),(718624,'Bruce Reitherman',1955,NULL),(718627,'Wolfgang Reitherman',1909,1985),(718637,'Richard Reitinger',1951,NULL),(718645,'Ivan Reitman',1946,2022),(718646,'Jason Reitman',1977,NULL),(718666,'Benny Rietveld',NULL,NULL),(718670,'Daniel Reitz',NULL,NULL),(718680,'Ric Reitz',NULL,NULL),(718687,'Brian Reitzell',1966,NULL),(718705,'Jordi Reixach',NULL,NULL),(718724,'Christopher Rejano',NULL,NULL),(718800,'Marie Theres Relin',1966,NULL),(718820,'Santa Relli',1914,2010),(718840,'Simon Relph',1940,2016),(718871,'Erich Maria Remarque',1898,1970),(718928,'Ricardo Remias',NULL,NULL),(718946,'Al Remington',NULL,NULL),(718957,'Leah Remini',1970,NULL),(719024,'Gordon Rempel',NULL,NULL),(719051,'Theodora Remundová',1974,NULL),(719084,'Tony Remy',NULL,NULL),(719104,'Richie Jen',1966,NULL),(719157,'Jacques Renard',1944,NULL),(719165,'Maurice Renard',1875,1939),(719198,'Jean-Jacques Renon',NULL,NULL),(719200,'Renaud',1952,NULL),(719208,'Chris Renaud',NULL,NULL),(719220,'Francis Renaud',1967,NULL),(719232,'Line Renaud',1928,NULL),(719265,'Catherine Renault',NULL,NULL),(719294,'Liz Renay',1926,2007),(719321,'Mark Rendall',1988,NULL),(719334,'Ruth Rendell',1930,2015),(719357,'Jacques Renoir',1942,NULL),(719427,'Robert Reneau',NULL,NULL),(719444,'Julene Renee',NULL,NULL),(719491,'Danielle Renfrew Behrens',1973,NULL),(719606,'Patrick Renna',1979,NULL),(719612,'Deborah Rennard',NULL,NULL),(719637,'Jeremy Renner',1971,NULL),(719673,'Stephen Rennicks',NULL,NULL),(719678,'Callum Keith Rennie',NULL,NULL),(719679,'David Rennie',NULL,NULL),(719692,'Michael Rennie',1909,1971),(719705,'Colleen Rennison',1987,NULL),(719734,'Jeff Reno',NULL,NULL),(719749,'Pierre Renoir',1885,1952),(719756,'Jean Renoir',1894,1979),(719947,'Gastone Renzelli',1921,1990),(719956,'Andrea Renzi',1963,NULL),(719964,'Maggie Renzi',1951,NULL),(720072,'Alexandre Azaria',1967,NULL),(720135,'John Requa',NULL,NULL),(720162,'Georgi Rerberg',1937,1999),(720241,'Kathrin Resetarits',1973,NULL),(720277,'Antonio Resines',1954,NULL),(720297,'Alain Resnais',1922,2014),(720304,'Adam Resnick',NULL,NULL),(720314,'Gina Resnick',1955,NULL),(720318,'Judd Resnick',NULL,NULL),(720334,'Patricia Resnick',1953,NULL),(720338,'Sam Resnick',NULL,NULL),(720395,'Karina Ressler',1957,NULL),(720397,'Scott Andrew Ressler',NULL,NULL),(720532,'Meg Reticker',NULL,NULL),(720568,'Tommy Rettig',1941,1996),(720715,'Steven Reuther',1951,2010),(720763,'Revathi',1966,NULL),(720771,'Gerard Reve',1923,2006),(720839,'Gianfranco Reverberi',1934,NULL),(720843,'Anne Revere',1903,1990),(720879,'Gábor Reviczky',1949,NULL),(720885,'Dorothy Revier',1904,1993),(720890,'Clive Revill',1930,NULL),(720904,'Alma Reville',1899,1982),(720950,'Pilar Revuelta',NULL,NULL),(720955,'Rosaura Revueltas',1910,1996),(721012,'William Rexer',NULL,NULL),(721073,'Fernando Rey',1917,1994),(721097,'Jean-Michel Rey',NULL,NULL),(721180,'André-Wladimir Reybas',NULL,NULL),(721376,'Natalia Reyes',1987,NULL),(721432,'Víctor Reyes',1962,NULL),(721447,'Ferdinand Reyher',1891,1967),(721468,'Dalton S. Reymond',1896,1978),(721526,'Émile Reynaud',1844,1918),(721614,'Brian J. Reynolds',NULL,NULL),(721655,'Clarke Reynolds',1917,1994),(721675,'David Reynolds',NULL,NULL),(721691,'Don Reynolds',NULL,NULL),(721707,'Emer Reynolds',NULL,NULL),(721718,'Frank Reynolds',NULL,NULL),(721745,'Harry Reynolds',1901,1971),(721758,'Jacob Reynolds',1983,NULL),(721786,'John Reynolds',1941,1966),(721800,'Jonathan Reynolds',1942,2021),(721817,'Kevin Reynolds',1952,NULL),(721825,'Lee Reynolds',NULL,NULL),(721851,'Marjorie Reynolds',1917,1997),(721866,'Michael J. Reynolds',1939,2018),(721885,'Nicola Reynolds',1974,NULL),(721913,'Quentin Reynolds',1902,1965),(721951,'Simon Reynolds',1969,NULL),(722000,'William Reynolds',1910,1997),(722013,'Rondel Reynoldson',NULL,NULL),(722052,'Marie-Laure Reyre',NULL,NULL),(722078,'Yasmina Reza',1959,NULL),(722153,'Trent Reznor',1965,NULL),(722195,'Nicholas Rhea',1936,2017),(722209,'Johan Rheborg',1963,NULL),(722269,'Ashlie Rhey',1961,NULL),(722274,'Shonda Rhimes',1970,NULL),(722276,'Burke Rhind',1937,1995),(722279,'Julian Rhind-Tutt',1968,NULL),(722407,'Cynthia Rhodes',1956,NULL),(722424,'Erik Rhodes',1906,1990),(722440,'Hari Rhodes',1932,1992),(722489,'Matthew Rhodes',NULL,NULL),(722493,'Michael Ray Rhodes',1945,NULL),(722524,'Scott Rhodes',1956,NULL),(722550,'Lucinda Rhodes Thakrar',NULL,NULL),(722556,'Olof Rhodin',1948,NULL),(722603,'Anthony Rhulen',1969,2021),(722610,'Don Rhymer',1961,2012),(722614,'Miranda Rhyne',NULL,NULL),(722629,'Matthew Rhys',1974,NULL),(722631,'Paul Rhys',1963,NULL),(722636,'John Rhys-Davies',1944,NULL),(722647,'Robert Ri\'chard',1983,NULL),(722657,'Serge Riaboukine',1957,NULL),(722713,'Dan Riba',NULL,NULL),(722875,'José Miguel Ribeiro',NULL,NULL),(722922,'Pedro Ribeiro',NULL,NULL),(723114,'Mariana Ricardo',NULL,NULL),(723235,'Nora Ricci',1924,1976),(723250,'Santiago Ricci',NULL,NULL),(723351,'Anne Rice',1941,2021),(723353,'Anton Rice',1991,NULL),(723450,'Jeff Rice',NULL,NULL),(723455,'Joan Rice',1930,1997),(723464,'Joel S. Rice',NULL,NULL),(723468,'John Rice',NULL,NULL),(723470,'John Rice',NULL,NULL),(723570,'Tom Rice',1973,NULL),(723573,'Wayne Allan Rice',NULL,NULL),(723579,'Sebastian Rice-Edwards',1976,NULL),(723623,'Claude Rich',1929,2017),(723629,'David Lowell Rich',1920,2001),(723658,'Irene Rich',1891,1988),(723664,'John Rich',1925,2012),(723676,'Lee Rich',1918,2012),(723692,'Mike Rich',1959,NULL),(723704,'Richard Rich',NULL,NULL),(723707,'Ron Rich',1938,NULL),(723722,'T.L. Rich',1893,1971),(723771,'Cliff Richard',1940,NULL),(723788,'Edmond Richard',1927,2018),(723791,'Emily Richard',1948,NULL),(723801,'Frida Richard',1873,1946),(723827,'Jean-Louis Richard',1927,2012),(723845,'Lorraine Richard',NULL,NULL),(723865,'Nathalie Richard',1963,NULL),(723878,'Philippe Richard',NULL,NULL),(723949,'Alyson Richards',NULL,NULL),(723982,'Billie Mae Richards',1921,2010),(724059,'Dick Richards',1936,NULL),(724143,'Jeff Richards',1924,1989),(724237,'Martin Richards',1932,2012),(724245,'Michael Richards',1949,NULL),(724307,'Robert L. Richards',1909,1984),(724345,'Steve Richards',NULL,NULL),(724360,'Thomas Richards',1899,1946),(724495,'David M. Richardson',NULL,NULL),(724514,'Doug Richardson',NULL,NULL),(724597,'James Richardson',NULL,NULL),(724604,'John Henry Richardson',NULL,NULL),(724623,'John Richardson',1934,2021),(724641,'Julie Richardson',NULL,NULL),(724656,'Kevin Michael Richardson',1964,NULL),(724678,'Lisa Richardson',NULL,NULL),(724688,'Marie Richardson',1959,NULL),(724700,'Mike Richardson',1950,NULL),(724706,'Nancy Richardson',NULL,NULL),(724732,'Ralph Richardson',1902,1983),(724744,'Robert Richardson',1955,NULL),(724754,'Ross Richardson',NULL,NULL),(724757,'Salli Richardson-Whitfield',1967,NULL),(724758,'Sallye Richardson',NULL,NULL),(724798,'Tony Richardson',1928,1991),(724843,'Alan Riche',1941,NULL),(724854,'Peter Riche',NULL,NULL),(724858,'Roger Richebé',1897,1989),(724927,'William Richert',1942,2022),(724938,'Jean-François Richet',1966,NULL),(724950,'Craig Richey',NULL,NULL),(724995,'Julian Richings',1956,NULL),(725006,'Mordecai Richler',1931,2001),(725009,'Maurice Richlin',1920,1990),(725017,'Arthur Richman',1886,1944),(725034,'Jason Richman',NULL,NULL),(725072,'Anthony B. Richmond',1942,NULL),(725166,'Tom Richmond',1950,2022),(725197,'Alexandra Richter',NULL,NULL),(725200,'Andy Richter',1966,NULL),(725220,'Daniel Richter',1939,NULL),(725284,'Jason James Richter',1980,NULL),(725325,'Nili Feller',NULL,NULL),(725332,'Paul Richter',1895,1961),(725379,'W.D. Richter',1945,NULL),(725407,'Blair Richwood',1960,NULL),(725444,'John Rickard',1977,NULL),(725475,'Mark Ricker',1968,NULL),(725543,'Don Rickles',1926,2017),(725564,'Thomas Rickman',1940,2018),(725691,'Pascal Ridao',NULL,NULL),(725765,'Nelson Riddle',1921,1985),(725799,'Sándor Rideg',1903,1966),(725808,'Chris Ridenhour',NULL,NULL),(725891,'John Ridgely',1909,1968),(725983,'John Ridley',1964,NULL),(725984,'John Ridley',NULL,NULL),(725985,'Judith Ridley',1946,NULL),(726000,'Philip Ridley',1964,NULL),(726072,'Horst Rieck',NULL,NULL),(726098,'Georg Riedel',1934,NULL),(726166,'Leni Riefenstahl',1902,2003),(726170,'Lisa Rieffel',1975,NULL),(726200,'Peter Riegert',1947,NULL),(726223,'Richard Riehle',1948,NULL),(726257,'Katja Riemann',1963,NULL),(726262,'Max Riemelt',1984,NULL),(726320,'Simon Riera',NULL,NULL),(726379,'Antonio Riestra',1969,NULL),(726442,'Christopher Rife',NULL,NULL),(726472,'Adam Rifkin',1966,NULL),(726476,'Arnold Rifkin',1946,NULL),(726483,'Jay Rifkin',1955,NULL),(726492,'Ron Rifkin',1939,NULL),(726538,'Ellen Rigas-Venetis',NULL,NULL),(726585,'Edward Rigby',1879,1951),(726588,'Gordon Rigby',1897,1975),(726615,'Adrian Rigelsford',NULL,NULL),(726635,'Mary Riggans',1935,2013),(726638,'Patricia Riggen',1970,NULL),(726704,'Lynn Riggs',1899,1954),(726777,'Alexandre Rignault',1901,1985),(726825,'Orvis Rigsby',NULL,NULL),(726892,'Jean-Claude Van Rijckeghem',1963,NULL),(726894,'Nick Rijgersberg',NULL,2020),(726898,'Arnoud Rijken',NULL,NULL),(726901,'Brad Rijn',NULL,NULL),(726935,'David Riker',NULL,NULL),(726954,'Eran Riklis',1954,NULL),(726978,'Andy Riley',1970,NULL),(727120,'Michael Riley',1962,NULL),(727121,'Michael Riley',1966,NULL),(727165,'Sam Riley',1980,NULL),(727211,'Wolf Rilla',1920,2005),(727235,'David Rimawi',NULL,NULL),(727307,'Eyal Rimmon',NULL,NULL),(727411,'Frederic I. Rinaldo',1913,1992),(727497,'Mary Roberts Rinehart',1876,1958),(727754,'Carl Rinsch',NULL,NULL),(727789,'Lisa Rinzler',NULL,NULL),(727960,'John Ripa',NULL,NULL),(727983,'Jean-Marc Ripert',NULL,NULL),(727999,'Arthur Ripley',1897,1961),(728002,'Clements Ripley',1892,1954),(728048,'Maria Ripoll',1964,NULL),(728052,'Silvia Ripoll',NULL,NULL),(728125,'Leonard Ripps',1949,NULL),(728147,'Alfredo Ripstein Jr.',1916,2007),(728230,'Elisabeth Risdon',1888,1958),(728262,'Mukesh Rishi',1956,NULL),(728271,'Dino Risi',1916,2008),(728305,'Everett Riskin',1895,1982),(728307,'Robert Riskin',1897,1955),(728346,'Michael Rispoli',1960,NULL),(728391,'Danton Rissner',1940,NULL),(728476,'Lazar Ristovski',1952,NULL),(728509,'Cyril Ritchard',1897,1977),(728567,'Jack Ritchie',1922,1983),(728579,'Jill Ritchie',1974,NULL),(728619,'Paul Ritchie',NULL,NULL),(728655,'Lee Ritenour',1952,NULL),(728688,'Martin Ritt',1914,1990),(728724,'Carlos Ritter',NULL,NULL),(728754,'Hans Ritter',NULL,NULL),(728762,'Jason Ritter',1980,NULL),(728786,'Magdalena Ritter',1957,NULL),(728812,'Thelma Ritter',1902,1969),(728867,'Al Ritz',1901,1965),(728871,'Harry Ritz',1907,1986),(728875,'Jimmy Ritz',1904,1985),(728894,'Martin Ritzenhoff',1969,NULL),(728920,'Maria Rosaria Riuzzi',NULL,NULL),(728938,'Emmanuelle Riva',1927,2017),(729151,'Stephen J. Rivele',1949,NULL),(729202,'Carolina Rivera',1966,NULL),(729256,'Emilio Rivera',1961,NULL),(729304,'Jonas Rivera',NULL,NULL),(729345,'Mabel Rivera',1952,NULL),(729369,'Naya Rivera',1987,2020),(729473,'Jorge Rivero',1938,NULL),(729514,'Christian Rivers',NULL,NULL),(729582,'Victor Rivers',NULL,NULL),(729615,'Catherine Rivet',1958,NULL),(729626,'Jacques Rivette',1928,2016),(729635,'Jean Riveyre',1904,1968),(729701,'Stephen E. Rivkin',NULL,NULL),(729763,'Bella Riza',1989,NULL),(729817,'Nazim Hassan Rizvi',NULL,NULL),(729871,'Carmen Rizzo',NULL,NULL),(729939,'Angelo Rizzoli',1889,1970),(729960,'Albert Riéra',1895,1968),(729991,'Bert Roach',1891,1971),(730000,'David Roach',NULL,NULL),(730018,'Hal Roach',1892,1992),(730034,'John Roach',NULL,NULL),(730045,'Martin Roach',NULL,NULL),(730051,'Neil Roach',NULL,NULL),(730070,'Linus Roache',1964,NULL),(730099,'Brent Roam',1971,NULL),(730168,'Sam Robards',1961,NULL),(730221,'Paul Robb',NULL,NULL),(730222,'R.D. Robb',1972,NULL),(730306,'Carol Robbins',NULL,NULL),(730313,'Christopher Robbins',1946,2012),(730317,'Clarence Aaron \'Tod\' Robbins',1888,1949),(730321,'David Robbins',1955,NULL),(730336,'Eric Robbins',NULL,NULL),(730355,'Greg Robbins',1959,NULL),(730356,'Harold Robbins',1916,1997),(730358,'Isen Robbins',NULL,NULL),(730385,'Jerome Robbins',1918,1998),(730391,'Joyce Robbins',1949,NULL),(730401,'Kristina Robbins',NULL,NULL),(730422,'Matthew Robbins',1945,NULL),(730429,'Mitchell Robbins',NULL,NULL),(730455,'Ryan Robbins',1972,NULL),(730478,'Tom Robbins',1932,NULL),(730535,'John Roberdeau',1953,2002),(730586,'James W. Roberson',NULL,NULL),(730629,'Denise Robert',1954,NULL),(730694,'Nicole Robert',NULL,NULL),(730700,'Paulette Robert',NULL,NULL),(730850,'Ben Roberts',1916,1984),(730860,'Bill Roberts',1899,1974),(730873,'Bob Roberts',1907,1995),(730883,'Bobby Roberts',1929,2004),(730897,'Bruce Roberts',NULL,NULL),(730932,'Chris Roberts',1968,NULL),(730938,'Christian Roberts',1944,2022),(731075,'Emma Roberts',1991,NULL),(731146,'Rob Weiss',NULL,NULL),(731168,'Ian Roberts',1965,NULL),(731247,'Joe Roberts',1871,1923),(731271,'Jonathan Roberts',NULL,NULL),(731286,'Judith Roberts',1934,NULL),(731293,'June Roberts',NULL,NULL),(731324,'Kim Roberts',NULL,NULL),(731333,'Larry Roberts',1926,1992),(731346,'Leonard Roberts',1972,NULL),(731387,'Marguerite Roberts',1905,1989),(731396,'Mark Roberts',NULL,NULL),(731426,'Michael D. Roberts',1947,NULL),(731443,'Nancy Roberts',NULL,NULL),(731499,'Rachel Roberts',1927,1980),(731513,'Renee Roberts',1908,1996),(731570,'Selwyn Roberts',1947,NULL),(731575,'Shawn Roberts',1984,NULL),(731592,'Stanley Roberts',1916,1982),(731619,'Terrence Stone',1955,NULL),(731634,'Tony Roberts',1939,NULL),(731679,'William Roberts',1913,1997),(731704,'Adam Robertson',NULL,NULL),(731772,'Cliff Robertson',1923,2011),(731783,'Dale Robertson',1923,2013),(731832,'Eric Robertson',1948,NULL),(731862,'Harry Robertson',1932,1996),(731867,'Hugh A. Robertson',1932,1988),(731961,'Michael Robertson',NULL,NULL),(731992,'R.J. Robertson',1946,1994),(732024,'Shauna Robertson',NULL,NULL),(732133,'Wendy Robie',1953,NULL),(732165,'Andy Robin',NULL,NULL),(732199,'Jean-François Robin',1943,NULL),(732209,'Leo Robin',1900,1984),(732220,'Michel Robin',1930,2020),(732231,'Sophie Robin',NULL,NULL),(732268,'Jeff Robinov',NULL,NULL),(732271,'Tony Robinow',NULL,NULL),(732305,'Jessie Robins',1909,1979),(732309,'Laila Robins',1959,NULL),(732325,'Sam Robins',1910,1995),(732362,'Allison Robinson',NULL,NULL),(732364,'Amy Robinson',1948,NULL),(732367,'Andrew Robinson',1942,NULL),(732378,'Ann Robinson',1929,NULL),(732393,'Barbara Robinson',1927,2013),(732400,'Bernard Robinson',1912,1970),(732430,'Bruce Robinson',1946,NULL),(732436,'Bumper Robinson',1974,NULL),(732452,'Casey Robinson',1903,1979),(732497,'Craig Robinson',1971,NULL),(732527,'David Robinson',1930,NULL),(732631,'Frank M. Robinson',1926,2014),(732648,'George Robinson',1890,1958),(732702,'James Robinson',1963,NULL),(732708,'James G. Robinson',1935,NULL),(732886,'Marilynne Robinson',1943,NULL),(732961,'Patrick Robinson',NULL,NULL),(732974,'Peter Manning Robinson',NULL,NULL),(732989,'Phil Robinson',1950,2015),(733015,'Richard Robinson',NULL,NULL),(733149,'Todd Robinson',NULL,NULL),(733172,'Vinette Robinson',1982,NULL),(733263,'Adam Robitel',NULL,NULL),(733316,'Augie Robles',NULL,NULL),(733415,'Steven Robman',1944,NULL),(733427,'Harry Shearer',1943,NULL),(733435,'Thomas Robsahm',1964,NULL),(733460,'Flora Robson',1902,1984),(733476,'Mark Robson',1913,1978),(733480,'May Robson',1858,1942),(733482,'Miss Robson',NULL,NULL),(733540,'Patricia Roc',1915,2003),(733609,'José Rocca',NULL,NULL),(733678,'Alex Rocco',1936,2015),(733692,'Marc Rocco',1962,2009),(733728,'Antoine Roch',NULL,NULL),(733730,'Edmon Roch',1970,NULL),(733763,'Claudio Rocha',NULL,NULL),(733812,'Kali Rocha',1971,NULL),(733886,'Eric Rochant',1961,NULL),(733887,'Henri Rochard',1921,2018),(733901,'Éric Rochat',1936,2003),(733916,'Catherine Roche',1922,2019),(733919,'Charlotte Roche',1978,NULL),(733932,'France Roche',1921,2013),(733981,'Steve Roche',NULL,NULL),(733988,'Tony Roche',NULL,NULL),(733999,'Christiane Rochefort',1917,1998),(734000,'Jean Rochefort',1930,2017),(734117,'Louis-Philippe Rochon',NULL,NULL),(734132,'Henri-Pierre Roché',1879,1959),(734236,'Charles Rocket',1949,2005),(734247,'Eliot Rockett',NULL,NULL),(734319,'Alexandre Rockwell',1956,NULL),(734334,'E.A. Rockwell',NULL,NULL),(734415,'Manuel Rodal',NULL,NULL),(734417,'Yves Rodallec',1935,2022),(734441,'Robert Rodat',1953,NULL),(734442,'James Roday Rodriguez',1976,NULL),(734466,'Franc Roddam',1946,NULL),(734467,'Allison Roddan',1941,NULL),(734472,'Gene Roddenberry',1921,1991),(734558,'Karel Roden',1962,NULL),(734585,'Franz Rodenkirchen',1963,NULL),(734668,'Anton Rodgers',1933,2007),(734740,'Mark Rodgers',1928,2006),(734742,'Mary Rodgers',1931,2014),(734755,'Nile Rodgers',1952,NULL),(734870,'Aleksey Rodionov',1947,NULL),(734900,'Geoff Rodkey',1970,NULL),(734954,'Alexander Rodnyansky',1961,NULL),(735208,'Tiago Gomes Rodrigues',NULL,NULL),(735226,'Adam Rodriguez',NULL,NULL),(735310,'Estelita Rodriguez',1928,1966),(735420,'Marcel Rodriguez',1974,NULL),(735442,'Michelle Rodriguez',1978,NULL),(735684,'Leonardo Rodríguez Solís',NULL,NULL),(735705,'Alberto Rodríguez',1971,NULL),(735715,'Alina Rodríguez',1951,2015),(735765,'Cecilio Rodríguez',NULL,NULL),(735868,'Gustavo Rodríguez',1947,2014),(735869,'Gustavo Rodríguez',NULL,2020),(735872,'Hugo Rodríguez',1958,NULL),(736155,'Álvaro Rodríguez',NULL,NULL),(736200,'Bill Roe',NULL,NULL),(736201,'Bob Roe',1957,NULL),(736312,'Luc Roeg',1962,NULL),(736360,'Jan Roelfs',1957,NULL),(736361,'Erik Hazelhoff Roelfzema',1917,2007),(736392,'Larry Roemer',1917,1995),(736418,'William Roerick',1912,1995),(736462,'David Roessell',NULL,NULL),(736468,'Karel Roessingh',NULL,NULL),(736472,'Craig Roessler',NULL,NULL),(736502,'Jay Roewe',NULL,NULL),(736609,'Randy Rogel',NULL,NULL),(736622,'Seth Rogen',1982,NULL),(736705,'Alva Rogers',NULL,NULL),(736711,'Amy Keating Rogers',NULL,NULL),(736777,'Charles \'Buddy\' Rogers',1904,1999),(736778,'Charley Rogers',1887,1956),(736835,'Derek Rogers',NULL,NULL),(736864,'Eric Rogers',1921,1981),(736872,'Fred Rogers',1928,2003),(736911,'Howard Emmett Rogers',1890,1971),(736930,'J.B. Rogers',NULL,NULL),(736943,'Jeff Rogers',NULL,NULL),(736966,'John Rogers',NULL,NULL),(737006,'Kenny Rogers',1938,2020),(737109,'Nicholas Rogers',1969,NULL),(737127,'Peter Rogers',1914,2009),(737167,'Roswell Rogers',1910,1998),(737197,'Shorty Rogers',1924,1994),(737216,'Steven Rogers',NULL,NULL),(737223,'Sue Rogers',NULL,NULL),(737241,'Tom Rogers',NULL,NULL),(737248,'Tristan Rogers',1946,NULL),(737293,'Vincent Roget',NULL,NULL),(737311,'Charles Roggero',NULL,NULL),(737390,'Stan Rogow',1948,NULL),(737445,'Criena Rohan',1924,1963),(737459,'Michael Rohatyn',NULL,NULL),(737517,'Mike Rohl',NULL,NULL),(737533,'Elisabeth Röhm',1973,NULL),(737538,'Maria Rohm',1945,2018),(737543,'Patrice Rohmer',NULL,NULL),(737553,'Clayton Rohner',1957,NULL),(737582,'Günter Rohrbach',1928,NULL),(737621,'George R. Rohrs',1930,2020),(737710,'Jacques Roitfeld',1889,1999),(737829,'Luz María Rojas',NULL,NULL),(737912,'Ana Patricia Rojo',1974,NULL),(737928,'Helena Rojo',1944,NULL),(737932,'José Antonio Rojo',1923,1995),(737993,'Will Rokos',NULL,NULL),(738022,'Chris Roland',NULL,NULL),(738042,'Gilbert Roland',1905,1994),(738079,'Rita Roland',1914,1998),(738196,'Tom Rolf',1931,2014),(738222,'Sam Rolfe',1924,1993),(738247,'Mino Roli',1927,NULL),(738300,'Micheline Rolla',1924,2002),(738415,'Howard E. Rollins Jr.',1950,1996),(738456,'Sonny Rollins',1930,NULL),(738603,'Giovanna Romagnoli',NULL,NULL),(738635,'Yvonne Romain',1938,NULL),(738670,'Candice Roman',NULL,NULL),(738710,'Lawrence Roman',1921,2008),(738736,'Phil Roman',1930,NULL),(738746,'Ruth Roman',1922,1999),(738789,'Béatrice Romand',1952,NULL),(738796,'Mark Romanek',1959,NULL),(738806,'Tecla Romanelli',NULL,NULL),(738908,'John Romano',1948,NULL),(738918,'Lou Romano',1972,NULL),(738922,'Lúcia Romano',NULL,NULL),(738925,'Marcia Romano',NULL,NULL),(738928,'Maria Romano',NULL,NULL),(738949,'Renato Romano',1940,NULL),(739062,'Alain Romans',1905,1988),(739087,'Richard Romanus',1943,NULL),(739124,'Lina Romay',1954,2012),(739146,'Sigmund Romberg',1887,1951),(739151,'Philippe Rombi',1968,NULL),(739388,'Eddie Romero',1924,2013),(739589,'Tina Romero',1949,NULL),(739630,'József Romhányi',1921,1983),(739661,'John Romita Sr.',1930,2023),(739676,'May E. Romm',1892,1977),(739680,'Angelika Rommel',NULL,NULL),(739688,'Patricia Rommel',1956,NULL),(739689,'Peter Rommel',1956,NULL),(739744,'Gianni Romoli',1949,NULL),(739755,'Christophe Van Rompaey',1970,NULL),(739810,'Jorge Román',NULL,NULL),(739815,'Letícia Román',1941,NULL),(739868,'Andrew Rona',NULL,NULL),(739886,'Paul Ronald',1924,2015),(740021,'Brunello Rondi',1924,1989),(740067,'Maurice Ronet',1927,1983),(740075,'Shanti Roney',1970,NULL),(740090,'Fabrizio Rongione',1973,NULL),(740111,'Rauno Ronkainen',1964,NULL),(740115,'David Ronn',NULL,NULL),(740160,'Jon Ronson',1967,NULL),(740213,'Darrell Roodt',1962,NULL),(740252,'Irene Rooke',1874,1958),(740256,'Leon Rooke',NULL,NULL),(740264,'Michael Rooker',1955,NULL),(740284,'Alfred Roome',1908,1997),(740311,'Darrell Rooney',NULL,NULL),(740316,'Frank Rooney',1913,NULL),(740383,'Jemima Rooper',1981,NULL),(740400,'Don Roos',1955,NULL),(740407,'Fred Roos',1934,NULL),(740426,'Audrey Roos',1912,1982),(740427,'Kirk Roos',1972,NULL),(740463,'Thorkild Roose',1874,1961),(740464,'James Roose-Evans',1927,2022),(740500,'Amanda Root',1963,NULL),(740528,'Lynn Root',1905,1997),(740535,'Stephen Root',1951,NULL),(740537,'Wells Root',1900,1993),(740568,'Tom Ropelewski',NULL,NULL),(740622,'Bradford Ropes',1905,1966),(740696,'Noël Roquevert',1892,1973),(740760,'Mireia Ros',1956,NULL),(740766,'Rosa Ros',NULL,NULL),(740856,'Murilo Rosa',1970,NULL),(741013,'Oscar Rosander',1901,1971),(741147,'Françoise Rosay',1891,1974),(741157,'Ettore Rosboch',NULL,NULL),(741228,'Alexandra Rose',1946,NULL),(741242,'Anika Noni Rose',1972,NULL),(741261,'Bartholomew Rose',NULL,NULL),(741262,'Bernard Rose',1960,NULL),(741358,'Edward E. Rose',1862,1939),(741377,'Felipe Rose',1954,NULL),(741388,'Gabrielle Rose',1954,NULL),(741394,'George Rose',1920,1988),(741439,'Jack Rose',1911,1995),(741454,'Jamie Rose',1959,NULL),(741544,'Louisa Rose',NULL,NULL),(741578,'Michael Rose',NULL,NULL),(741582,'Mickey Rose',1935,2013),(741614,'Philip Rose',1921,2011),(741627,'Reginald Rose',1920,2002),(741656,'Ruth Rose',1896,1978),(741676,'Si Rose',1917,2011),(741704,'Tania Rose',1920,2015),(741740,'William Rose',1918,1987),(741775,'Jeb Rosebrook',1935,2018),(741803,'John Roselius',1944,2018),(741824,'Gualtiero Rosella',NULL,NULL),(741889,'David A. Rosemont',NULL,NULL),(741890,'Norman Rosemont',1924,2018),(741903,'Aliza Rosen',1939,NULL),(741935,'Charles Rosen',1930,2012),(742034,'Martin Rosen',1936,NULL),(742070,'Robert L. Rosen',1937,NULL),(742078,'Sam Rosen',1925,2005),(742146,'Michael Rosenbaum',1972,NULL),(742162,'Aaron Rosenberg',1912,1979),(742182,'Brett Rosenberg',NULL,NULL),(742186,'C.A. Rosenberg',NULL,NULL),(742194,'Craig Rosenberg',NULL,NULL),(742212,'Frank P. Rosenberg',1913,2002),(742219,'Hilding Rosenberg',1892,1985),(742236,'Jeanne Rosenberg',NULL,NULL),(742275,'Mark Rosenberg',1948,1992),(742276,'Martin Rosenberg',NULL,NULL),(742278,'Max Rosenberg',1914,2004),(742279,'Melissa Rosenberg',1962,NULL),(742296,'Paul Rosenberg',NULL,NULL),(742303,'Philip Rosenberg',1935,NULL),(742341,'Stuart Rosenberg',1927,2007),(742347,'Tom Rosenberg',NULL,NULL),(742457,'John Frank Rosenblum',NULL,NULL),(742471,'Ralph Rosenblum',1925,1995),(742475,'Steven Rosenblum',NULL,NULL),(742492,'Barry Rosenbush',NULL,NULL),(742535,'Donald Rosenfeld',NULL,NULL),(742554,'Lulla Rosenfeld',1914,1999),(742580,'Adam Rosenfelt',NULL,NULL),(742586,'Scott M. Rosenfelt',NULL,NULL),(742590,'Jason Rosenfield',NULL,NULL),(742645,'John Christian Rosenlund',NULL,NULL),(742651,'Howard Rosenman',1945,NULL),(742708,'Harvey Rosenstock',NULL,NULL),(742768,'Jack Rosenthal',1931,2004),(742772,'Jane Rosenthal',1956,NULL),(742790,'Leslie Rosenthal',NULL,NULL),(742796,'Margaret Rosenthal',NULL,NULL),(742797,'Mark Rosenthal',NULL,NULL),(742819,'Rick Rosenthal',1949,NULL),(742851,'Alison R. Rosenzweig',NULL,NULL),(742940,'Francesco Rosi',1922,2015),(742975,'Cathy Rosier',1945,2004),(743017,'Bodil Rosing',1877,1941),(743046,'Cathy Roskam',1943,NULL),(743059,'Marc Roskin',NULL,NULL),(743060,'Jen Roskind',NULL,NULL),(743093,'Mark Rosman',1959,NULL),(743099,'Milton Rosmer',1881,1971),(743117,'Lior Rosner',NULL,NULL),(743119,'Mark Rosner',NULL,NULL),(743129,'J.H. Rosny Sr.',1856,1940),(743214,'Anne Ross',NULL,NULL),(743232,'Arthur A. Ross',1920,2008),(743361,'Dev Ross',NULL,NULL),(743407,'Frank Ross',1904,1990),(743417,'Gaylen Ross',1950,NULL),(743566,'Justin Jon Ross',NULL,NULL),(743584,'Kenneth Ross',NULL,NULL),(743590,'Kimberly Ross',1959,2006),(743595,'Lanny Ross',1906,1988),(743614,'Lillian Bos Ross',NULL,NULL),(743671,'Matt Ross',1970,NULL),(743682,'Michael K. Ross',1971,NULL),(743824,'Scott Ross',1951,NULL),(743833,'Sharyn L. Ross',NULL,NULL),(743874,'Ted Ross',1934,2002),(743896,'Tracee Ellis Ross',1972,NULL),(743916,'Warwick Ross',NULL,NULL),(743919,'William Ross',1948,NULL),(743931,'Yolonda Ross',NULL,NULL),(743974,'Susana Rossberg',1945,NULL),(744021,'Renzo Rossellini',1908,1982),(744023,'Roberto Rossellini',1906,1977),(744035,'Robert Rossen',1908,1966),(744077,'Ann T. Rossetti',1966,NULL),(744081,'Franco Rossetti',1930,2018),(744103,'Eleonora Rossi Drago',1925,2007),(744195,'Giancarlo Rossi',NULL,NULL),(744231,'Laura Rossi',NULL,NULL),(744235,'Leo Rossi',1946,NULL),(744331,'Theo Rossi',NULL,NULL),(744351,'Giacomo Rossi Stuart',1925,1994),(744384,'Christophe Rossignon',NULL,NULL),(744429,'Terry Rossio',1960,NULL),(744485,'Pablo Rosso',NULL,NULL),(744504,'Arthur Rosson',1886,1960),(744514,'Richard Rosson',1893,1953),(744562,'Edmond Rostand',1868,1918),(744576,'Leo Rosten',1908,1997),(744612,'Stanislav Rostotskiy',1922,2001),(744707,'Félix Rotaeta',1942,1994),(744721,'Dana Rotberg',1960,NULL),(744740,'Anthony Rotell',NULL,NULL),(744754,'Michael Rotenberg',NULL,NULL),(744794,'Bobby Roth',1950,NULL),(744802,'Christopher Roth',NULL,NULL),(744828,'Donna Roth',1951,NULL),(744834,'Eli Roth',1972,NULL),(744839,'Eric Roth',1945,NULL),(744985,'Phillip J. Roth',1959,NULL),(745030,'Stephen J. Roth',NULL,2008),(745087,'Jeff Rothberg',1957,2009),(745131,'Marc Rothemund',1968,NULL),(745232,'John Rothman',1949,NULL),(745247,'Rodney Rothman',NULL,NULL),(745272,'Ron Rotholz',1956,NULL),(745343,'Jayson Rothwell',NULL,NULL),(745349,'Talbot Rothwell',1916,1981),(745360,'William L. Rotko',1970,NULL),(745403,'Todd Rotondi',1974,NULL),(745448,'Peter Rotter',NULL,NULL),(745450,'Stephen A. Rotter',NULL,NULL),(745512,'Fabrice Rouaud',NULL,NULL),(745565,'Vladimir Roudenko',1909,1976),(745579,'Burton Roueche',1909,1971),(745632,'Didier Rouget',NULL,NULL),(745636,'Jean Rougeul',1905,1978),(745689,'André Rouleau',NULL,NULL),(745694,'Jean-Marc Roulot',1955,NULL),(745746,'Katie Roumel',NULL,NULL),(745751,'Jonathan Roumie',NULL,NULL),(745780,'Richard Roundtree',1942,NULL),(745852,'Eddie Rouse',1954,2014),(745861,'Mitch Rouse',NULL,NULL),(745866,'Russell Rouse',1913,1987),(745930,'François-Olivier Rousseau',NULL,NULL),(745993,'Anne Roussel',1960,NULL),(746013,'Jeannine Roussel',NULL,NULL),(746016,'Marc Roussel',NULL,NULL),(746041,'Philippe Rousselet',NULL,NULL),(746073,'Yves Rousset-Rouard',1940,NULL),(746116,'Outi Rousu',NULL,NULL),(746125,'Brandon Routh',1979,NULL),(746147,'Alison Routledge',1960,NULL),(746149,'Jordan Routledge',NULL,NULL),(746162,'Jean-Paul Rouve',1967,NULL),(746169,'Jean Rouverol',1916,2017),(746273,'Charles Roven',1949,NULL),(746290,'Gina Rovere',1936,NULL),(746369,'Billy Rovzar',1976,NULL),(746370,'Fernando Rovzar',1980,NULL),(746371,'Liliane Rovère',1933,NULL),(746414,'Kelly Rowan',1965,NULL),(746421,'Monty Rowan',NULL,NULL),(746474,'Ashley Rowe',1959,NULL),(746560,'Leanne Rowe',1982,NULL),(746573,'Michael Rowe',NULL,NULL),(746577,'Misty Rowe',1952,NULL),(746598,'Ryan Rowe',NULL,NULL),(746614,'Tom Rowe',1955,2017),(746634,'Kathleen Rowell',NULL,NULL),(746697,'Geoffrey Rowland',1946,NULL),(746714,'Kelly Rowland',1981,NULL),(746736,'Richard A. Rowland',1880,1947),(746740,'Roy Rowland',1910,1995),(746767,'Lady Rowlands',1904,1999),(746830,'J.K. Rowling',1965,NULL),(746896,'Richard Roxburgh',1962,NULL),(746958,'Charu Roy',1890,1971),(747013,'Esperanza Roy',1935,NULL),(747019,'François Roy',NULL,NULL),(747118,'Michel Roy',NULL,NULL),(747185,'Soumendu Roy',1933,NULL),(747287,'Mark Roybal',NULL,NULL),(747380,'Patrice Royer',NULL,NULL),(747413,'Selena Royle',1904,1983),(747420,'Andre Royo',1968,NULL),(747549,'Marek Rozenbaum',NULL,NULL),(747613,'Jacques Rozier',1926,2023),(747657,'Viktor Rozov',1913,2004),(747742,'Ann Ruark',NULL,NULL),(747752,'Tabajara Ruas',1942,NULL),(747759,'Christian Rub',1886,1956),(747779,'Al Ruban',NULL,NULL),(747806,'Joe Rubbo',1963,NULL),(747822,'Marc Reid Rubel',NULL,NULL),(747824,'Paul Rubell',NULL,NULL),(747849,'Joseph Ruben',1950,NULL),(747933,'Phil Rubenstein',1940,1992),(747941,'Bruno Rubeo',1946,2011),(747962,'Jan Rubes',1920,2009),(748022,'Bruce Joel Rubin',1943,NULL),(748035,'Danny Rubin',1957,NULL),(748037,'David Scott Rubin',NULL,NULL),(748066,'Henry Alex Rubin',NULL,NULL),(748075,'Jennifer Rubin',1962,NULL),(748204,'Giulia Rubini',1935,NULL),(748261,'Donald Rubinstein',1952,NULL),(748277,'Mauricio Rubinstein',1954,NULL),(748283,'Richard P. Rubinstein',1947,NULL),(748289,'Zelda Rubinstein',1933,2010),(748364,'Miguel Rubio',NULL,NULL),(748429,'Cliff Ruby',NULL,NULL),(748438,'Harry Ruby',1895,1974),(748536,'Steve Rucker',1949,NULL),(748620,'Paul Rudd',1969,NULL),(748665,'Albert S. Ruddy',1930,NULL),(748710,'Robert Rudelson',1936,1997),(748784,'Scott Rudin',1958,NULL),(748796,'Paul Rudish',1969,NULL),(748814,'David Rudkin',1936,NULL),(748851,'Caron Rudner',NULL,NULL),(748852,'Rita Rudner',1953,NULL),(748874,'Steve Rudnick',NULL,NULL),(748973,'Maya Rudolph',1972,NULL),(749081,'Sara Rue',1979,NULL),(749104,'Belén Rueda',1965,NULL),(749149,'Roger Rueff',NULL,NULL),(749185,'Emile de Ruelle',1880,1948),(749200,'Hans Ruesch',1913,2007),(749262,'Joseph Ruffalo',NULL,NULL),(749263,'Mark Ruffalo',1967,NULL),(749281,'James D. Ruffin',1885,1923),(749363,'Rufus',1942,NULL),(749461,'Diane Ruggiero-Wright',1969,NULL),(749476,'Charles Ruggles',1886,1970),(749484,'Wesley Ruggles',1889,1972),(749493,'Edward Rugoff',NULL,NULL),(749520,'Paul Ruhland',NULL,NULL),(749593,'Nacho Ruiz Capillas',NULL,NULL),(749715,'Carmen Ruiz',1974,NULL),(749914,'Raúl Ruiz',1941,2011),(750000,'Mogens Rukov',1943,2015),(750004,'Tina Ruland',1966,NULL),(750022,'Jane Rule',1931,2007),(750023,'Janice Rule',1931,2003),(750037,'Olesya Rulin',1986,NULL),(750048,'Stefano Rulli',1949,NULL),(750114,'France Rumilly',1939,NULL),(750223,'Cis Rundle',NULL,NULL),(750275,'Björn Runge',1961,NULL),(750344,'Terry Runte',1960,1994),(750353,'Tygh Runyan',1976,NULL),(750357,'Damon Runyon',1880,1946),(750468,'Debra Jo Rupp',1951,NULL),(750505,'Christine Ruppert',NULL,NULL),(750527,'Troy Ruptash',NULL,NULL),(750530,'Katja Rupé',1949,NULL),(750640,'Barbara Rush',1927,NULL),(750658,'Deborah Rush',1954,NULL),(750701,'Richard Rush',1929,2021),(750718,'Claire Rushbrook',1971,NULL),(750809,'Kristin Rusk Robinson',NULL,NULL),(750822,'Harry Ruskin',1894,1969),(750826,'Joseph Ruskin',1924,2013),(750852,'Robert Rusler',1965,NULL),(750870,'Lou Rusoff',1911,1963),(750971,'Simon Russell Beale',1961,NULL),(751018,'Betsy Russell',1963,NULL),(751076,'Christopher Russell',1983,NULL),(751080,'Chuck Russell',1958,NULL),(751102,'David O. Russell',1958,NULL),(751131,'Elizabeth Russell',1916,2002),(751135,'Esther P. Russell',NULL,NULL),(751164,'Gordon Russell',1929,1981),(751196,'Ian Russell',NULL,NULL),(751207,'Jack Golden Russell',NULL,NULL),(751210,'James Russell',1927,NULL),(751221,'Jay Russell',NULL,NULL),(751242,'Jodi Russell',1965,NULL),(751295,'Lisa Ann Russell',1972,NULL),(751301,'Lucy Russell',1972,NULL),(751319,'Mark Russell',NULL,NULL),(751369,'Nipsey Russell',1918,2005),(751400,'Ray Russell',1924,1999),(751405,'Rebel Penfold-Russell',NULL,NULL),(751417,'Robert Russell',1912,1992),(751421,'Robin Russell',NULL,NULL),(751426,'Rosalind Russell',1907,1976),(751500,'Vy Russell',1915,1998),(751505,'Ward Russell',NULL,NULL),(751516,'Willy Russell',1947,NULL),(751518,'Wyatt Russell',1986,NULL),(751541,'Peggy Bussieck',NULL,NULL),(751567,'Aaron Russo',1943,2007),(751577,'Anthony Russo',1970,NULL),(751638,'James Russo',1953,NULL),(751642,'Jeff Russo',1969,NULL),(751648,'Joe Russo',1971,NULL),(751652,'John A. Russo',1939,NULL),(751720,'Richard Russo',1949,NULL),(751752,'Vito Russo',1946,1990),(751790,'Henri Rust',1906,1996),(751798,'Mathias Rust',1982,NULL),(751899,'Babe Ruth',1895,1948),(751951,'Cedric Rutherford',NULL,NULL),(752116,'Richard Rutowski',NULL,NULL),(752139,'Neil Ruttenberg',NULL,NULL),(752328,'Stefan Ruzowitzky',1961,NULL),(752379,'David Ryall',1935,2014),(752407,'Amy Ryan',1968,NULL),(752420,'Anthony-James Ryan',1921,2006),(752436,'Blanchard Ryan',NULL,NULL),(752485,'Cornelius Ryan',1920,1974),(752527,'Eileen Ryan',1927,2022),(752630,'John Ryan',NULL,NULL),(752636,'John P. Ryan',1936,2007),(752728,'Michael Ryan',NULL,NULL),(752740,'Michelle Ryan',1984,NULL),(752749,'Mike S. Ryan',NULL,NULL),(752751,'Mitchell Ryan',1934,2022),(752783,'Paul F. Ryan',NULL,NULL),(752802,'Remy Ryan',1984,NULL),(752811,'Robbie Ryan',1970,NULL),(752813,'Robert Ryan',1909,1973),(752841,'Shawn Ryan',1966,NULL),(752900,'Will Ryan',1949,2021),(752922,'Eldar Ryazanov',1927,2015),(752968,'Ulf Ryberg',NULL,NULL),(753030,'Ewin Ryckaert',NULL,NULL),(753062,'Georg Rydeberg',1907,1983),(753083,'Aaron Ryder',NULL,NULL),(753125,'Mark Ryder',NULL,NULL),(753147,'Stephen M. Ryder',1943,NULL),(753158,'William T. Ryder',NULL,NULL),(753276,'Ulla Ryghe',1924,2011),(753314,'Mark Rylance',1960,NULL),(753382,'Michael Rymer',1963,NULL),(753416,'Ryô',1973,NULL),(753447,'Howard Ryshpan',1932,NULL),(753452,'Morrie Ryskind',1895,1985),(753479,'Chishû Ryû',1904,1993),(753480,'Daisuke Ryû',1957,2021),(753499,'Lew Rywin',1945,NULL),(753526,'RZA',1969,NULL),(753637,'Niklas Rådström',1953,NULL),(753666,'Benoît Régent',1953,1994),(753696,'Natacha Régnier',1972,NULL),(753708,'Maxime Rémillard',NULL,NULL),(753716,'Albert Rémy',1915,1967),(753728,'Jacques Rémy',1911,1981),(753737,'Jérémie Renier',1981,NULL),(753820,'Guillermo Ríos',NULL,NULL),(753875,'János Rózsa',1937,NULL),(753912,'Oskar Roehler',1959,NULL),(753982,'Eva Röse',1973,NULL),(754031,'Jan Gunnar Røise',1975,NULL),(754052,'Wibecke Rønseth',1973,NULL),(754081,'Günther Rücker',1924,2008),(754162,'S. Pierre Yameogo',1955,2019),(754165,'Bruno S.',1932,2010),(754256,'Nicolas Saada',NULL,NULL),(754272,'Yacef Saadi',1928,2021),(754344,'Per Saari',NULL,NULL),(754363,'Eric Saarinen',NULL,NULL),(754367,'Lasse Saarinen',1960,NULL),(754416,'Catalina Saavedra',1968,NULL),(754450,'Farhad Saba',NULL,NULL),(754512,'Daryl Sabara',1992,NULL),(754584,'Stefania Sabatini',NULL,NULL),(754608,'Evan Sabba',1970,NULL),(754670,'Virgilio Sabel',1920,1989),(754676,'Ernie Sabella',1949,NULL),(754807,'Jelisaveta \'Seka\' Sablic',1942,NULL),(754850,'Elham Saboktakin',NULL,NULL),(754887,'Blade Zavier',NULL,NULL),(754942,'Sabu',1924,1963),(754955,'Shin Saburi',1909,1982),(754969,'Hossain Sabzian',NULL,2006),(755057,'Felipe Sacdalan',NULL,NULL),(755074,'Jonathan Sachar',1965,NULL),(755106,'Leopold von Sacher-Masoch',1836,1895),(755109,'Juan Sachez',NULL,NULL),(755133,'Andrew Sachs',1930,2016),(755156,'Hugh Sachs',1964,NULL),(755158,'Ira Sachs',1965,NULL),(755236,'Clive Sacke',NULL,NULL),(755254,'Morgan Sackett',NULL,NULL),(755261,'Daniel Sackheim',NULL,NULL),(755266,'William Sackheim',1919,2004),(755267,'Katee Sackhoff',1980,NULL),(755270,'Louis Sackin',1903,1982),(755274,'Howard Sackler',1929,1982),(755310,'Michael Sacks',1948,NULL),(755323,'Steve Sacks',NULL,NULL),(755338,'Marcel Sacotte',NULL,NULL),(755364,'José Sacristán',1937,NULL),(755387,'Gilles Sacuto',NULL,NULL),(755389,'Agnès de Sacy',NULL,NULL),(755401,'Keiji Sada',1926,1964),(755406,'Yûji Sadai',NULL,NULL),(755499,'Laara Sadiq',NULL,NULL),(755531,'Doug Sadler',NULL,NULL),(755534,'Eric Sadler',NULL,NULL),(755551,'Marilyn Sadler',1950,NULL),(755555,'Nic Sadler',1965,NULL),(755603,'Thomas Sadoski',1976,NULL),(755608,'Jacqueline Sadoul',NULL,NULL),(755705,'Sana Saeed',1988,NULL),(755725,'Hinako Saeki',1977,NULL),(755868,'Hayedeh Safiyari',NULL,NULL),(755900,'Michel Safra',1899,1967),(755911,'Peter Safran',1965,NULL),(755963,'Boris Sagal',1923,1981),(755966,'Joey Sagal',1957,NULL),(755969,'Peter Sagal',NULL,NULL),(755981,'Carl Sagan',1934,1996),(755985,'Leontine Sagan',1889,1974),(756034,'Misan Sagay',NULL,NULL),(756083,'Bill Sage',1962,NULL),(756089,'Melissa Sagemiller',1974,NULL),(756145,'Shirô Sagisu',1957,NULL),(756203,'Ludivine Sagnier',1979,NULL),(756211,'Michael Sagol',NULL,NULL),(756226,'Frederica Sagor Maas',1900,2012),(756292,'Kenji Sahara',1932,NULL),(756313,'Deepa Sahi',1962,NULL),(756339,'Michael Sahl',1934,NULL),(756406,'Yôichi Sai',1949,2022),(756518,'Kyoichi Saiki',NULL,NULL),(756525,'Heidi Saikkonen',NULL,NULL),(756686,'Antoine de Saint-Exupéry',1900,1944),(756694,'Juliette Saint-Giniez',1908,1985),(756709,'Michel Saint-Jean',NULL,NULL),(756738,'Virginie Saint-Martin',1965,NULL),(756756,'Lucile Saint-Simon',1932,NULL),(756797,'Daniela Saioni',NULL,NULL),(756828,'Buichi Saitô',1925,2011),(756839,'James Saito',1955,NULL),(756870,'Tatsuo Saitô',1902,1968),(756876,'Yonejirô Saitô',NULL,NULL),(756905,'Ichirô Saitô',1909,1979),(756907,'Takanobu Saitô',1924,2004),(756912,'Takao Saitô',1929,2014),(756944,'Susumu Saji',NULL,2001),(756983,'Hironobu Sakaguchi',1962,NULL),(756990,'Yoshisada Sakaguchi',1939,2020),(756998,'Furankî Sakai',1929,1996),(757012,'Miki Sakai',1978,NULL),(757015,'Noriko Sakai',1971,NULL),(757017,'Richard Sakai',1954,NULL),(757026,'Sonoko Sakai',NULL,NULL),(757076,'Chika Sakamoto',1959,NULL),(757081,'Junji Sakamoto',1954,NULL),(757085,'Kyû Sakamoto',1941,1985),(757087,'Maaya Sakamoto',1980,NULL),(757098,'Ryuichi Sakamoto',1952,2023),(757102,'Sumiko Sakamoto',1936,2021),(757104,'Takeshi Sakamoto',1899,1974),(757109,'Yoshitaka Sakamoto',1942,NULL),(757135,'T.J. Sakasegawa',NULL,NULL),(757144,'Kôichi Sakata',NULL,NULL),(757256,'Gene Saks',1921,2015),(757267,'Sharon Soboil',NULL,NULL),(757268,'Sol Saks',1910,2011),(757290,'Rei Sakuma',1965,NULL),(757312,'Hideaki Sakurai',NULL,NULL),(757327,'Takahiro Sakurai',1974,NULL),(757479,'J.R. Salamanca',1922,2013),(757572,'Armando Salas',NULL,NULL),(757576,'Daniel Salas Alberola',1959,NULL),(757651,'João Salaviza',1984,NULL),(757661,'Ignacio Salazar-Simpson',NULL,NULL),(757663,'Abel Salazar',1917,1995),(757749,'Ramón Salazar',1973,NULL),(757787,'Sophie Salbot',NULL,NULL),(757790,'Luciano Salce',1922,1989),(757814,'José Salcedo',1949,2017),(757855,'Zoe Saldana',1978,NULL),(757858,'Carlos Saldanha',1965,NULL),(757888,'Max Saldinger',NULL,NULL),(757938,'Michael L. Sale',NULL,NULL),(757940,'Richard Sale',1911,1993),(758002,'Kario Salem',1955,NULL),(758010,'Murray Salem',1950,1998),(758128,'Robin Sales',NULL,NULL),(758357,'Franco Solinas',1927,1982),(758360,'Horacio Salinas',NULL,NULL),(758405,'Diane Salinger',1951,NULL),(758406,'Emmanuel Salinger',1964,NULL),(758411,'Justin Salinger',NULL,NULL),(758436,'Benjamin Salisbury',1980,NULL),(758499,'Alexander Salkind',1921,1997),(758503,'Michael Salkind',1890,1973),(758508,'Sidney Salkow',1909,2000),(758518,'Ralph Sall',NULL,NULL),(758574,'Walter Salles',1956,NULL),(758591,'Robert Sallin',NULL,NULL),(758608,'Peter Sallis',1921,2017),(758627,'Ken Sallows',NULL,NULL),(758692,'Albert Salmi',1927,1990),(758742,'Timo Salminen',1952,NULL),(758825,'Elina Salo',1936,NULL),(758912,'Bruno Salomone',1970,NULL),(758933,'Jean-Paul Salomé',1960,NULL),(759022,'Jennifer Salt',1944,NULL),(759029,'Waldo Salt',1914,1987),(759041,'Felix Salten',1869,1945),(759070,'James Salter',1925,2015),(759162,'Harry Saltzman',1915,1994),(759166,'Mark Saltzman',NULL,NULL),(759167,'Michael Saltzman',NULL,NULL),(759207,'Victor Salva',1958,NULL),(759270,'Pierre Salvadori',1964,NULL),(759363,'Richard Salvatore',NULL,NULL),(759368,'Gabriele Salvatores',1950,NULL),(759395,'Renato Salvatori',1933,1988),(759403,'Bennett Salvay',NULL,NULL),(759453,'Rafael J. Salvia',1915,1976),(759566,'David Salzman',1943,NULL),(759627,'Elie Samaha',1955,NULL),(759776,'Nesrin Samdereli',1979,NULL),(759777,'Yasemin Samdereli',1973,NULL),(759791,'Albert Samek',NULL,NULL),(759797,'Udo Samel',1953,NULL),(759819,'Madeleine Sami',1980,NULL),(759848,'Samir',1955,NULL),(759917,'David Sammons',NULL,NULL),(759924,'Emma Samms',1960,NULL),(759967,'Tatyana Samoylova',1934,2014),(759986,'Michael Samonek',NULL,NULL),(759992,'Rogério Samora',1959,2021),(760046,'Ram Sampath',NULL,NULL),(760121,'Candy Samples',1928,2019),(760131,'Keith Samples',1955,NULL),(760151,'Angus Sampson',1979,NULL),(760170,'Edward Sampson',1912,1962),(760172,'Elizabeth Sampson',NULL,NULL),(760225,'Will Sampson',1933,1987),(760234,'Basem Samrah',1971,NULL),(760244,'Coke Sams',1945,NULL),(760255,'Jeremy Sams',1957,NULL),(760290,'David Samson',NULL,NULL),(760394,'Joanne Samuel',1957,NULL),(760488,'Lesser Samuels',1894,1980),(760515,'Ron Samuels',NULL,NULL),(760555,'Marc Samuelson',NULL,NULL),(760571,'Emma Samuelsson',1985,NULL),(760589,'Ryan Samul',NULL,NULL),(760590,'Aleksandr Samulekin',1930,2006),(760640,'Enrique San Francisco',1955,2021),(760664,'Alberto San Juan',1968,NULL),(760665,'Antonia San Juan',1961,NULL),(760745,'Robert D. San Souci',1946,2014),(760753,'Bao San',NULL,NULL),(760778,'Fatima Sana Shaikh',1992,NULL),(760796,'Hiroyuki Sanada',1960,NULL),(760797,'Masanori Sanada',NULL,NULL),(760890,'Alicia Sánchez',1949,NULL),(760893,'Ana Caridad Sanchez',NULL,NULL),(760989,'Kiele Sanchez',1977,NULL),(761052,'Roselyn Sanchez',1973,NULL),(761055,'Salvador Sánchez',1943,NULL),(761093,'Rae Sanchini',NULL,NULL),(761100,'Fernando Sancho',1916,1990),(761103,'José Sancho',1944,2013),(761187,'Michèle Sand',NULL,NULL),(761212,'Dominique Sanda',1951,NULL),(761260,'Francine Sandberg',NULL,NULL),(761296,'Paul Sandberg',NULL,NULL),(761365,'Mary Sandell',NULL,NULL),(761400,'Helke Sander',1937,NULL),(761420,'Otto Sander',1941,2013),(761486,'Buck Sanders',1971,NULL),(761489,'Carole Peterman',NULL,NULL),(761498,'Chris Sanders',1962,NULL),(761537,'Dori Sanders',NULL,NULL),(761541,'Ed Sanders',1939,NULL),(761573,'Hilary St George Saunders',1898,1951),(761587,'Jay O. Sanders',1953,NULL),(761686,'Rich Sanders',NULL,NULL),(761697,'Ronald Sanders',NULL,NULL),(761712,'Scott Sanders',1957,NULL),(761715,'Scott Sanders',NULL,NULL),(761744,'Tim Sanders',NULL,NULL),(761836,'William Sanderson',1944,NULL),(761851,'Christopher Sandford',1939,NULL),(761858,'Jeremy Sandford',1930,2003),(761866,'Tiny Sandford',1894,1961),(761874,'Linus Sandgren',1972,NULL),(761879,'Åke Sandgren',1955,NULL),(761926,'Jimmy Sandin',1985,NULL),(761958,'Barry Sandler',1947,NULL),(762000,'Susan Sandler',NULL,NULL),(762075,'Gregory Sandor',NULL,NULL),(762094,'Arturo Sandoval',1949,NULL),(762095,'Bernardo Sandoval',NULL,NULL),(762121,'Gloria Sandoval',NULL,NULL),(762186,'Eugen Sandow',1867,1925),(762217,'Simon Sandquist',1973,NULL),(762246,'Amanda Sandrelli',1964,NULL),(762248,'Stefania Sandrelli',1946,NULL),(762263,'Mark Sandrich',1900,1945),(762305,'Diana Sands',1934,1973),(762365,'Ryan Sands',NULL,NULL),(762383,'William Sands',1923,1984),(762424,'Jake Sandvig',1986,NULL),(762445,'Ellen Sandweiss',1958,NULL),(762541,'Arlene Sanford',NULL,NULL),(762560,'Garwin Sanford',1955,NULL),(762590,'Midge Sanford',NULL,NULL),(762674,'Jonathan Sanger',1944,NULL),(762727,'Jimmy Sangster',1927,2011),(762785,'Vittorio Sanipoli',1915,1992),(762861,'Sanjay Sankla',NULL,NULL),(762863,'Anton Sanko',NULL,NULL),(762965,'Shirô Sano',1955,NULL),(762966,'Shûji Sano',1912,1978),(763009,'Bussaro Sanruck',NULL,NULL),(763022,'Maya Sansa',1975,NULL),(763030,'Luis David Sansans',NULL,NULL),(763035,'Marie-Jose Sanselme',NULL,NULL),(763052,'Ken Sansom',1927,2012),(763071,'William Sansom',1912,1976),(763074,'Alfonso Sansone',1924,2015),(763157,'Alfonso Santacana',NULL,NULL),(763216,'Claudio Santamaria',1974,NULL),(763263,'Al Santana',NULL,NULL),(763269,'Andrés Santana',NULL,NULL),(763395,'Gustavo Santaolalla',1951,NULL),(763460,'Valia Santella',NULL,NULL),(763643,'Tessie Santiago',1975,NULL),(763650,'Ruben Santiago-Hudson',1956,NULL),(763727,'Gino Santini',NULL,NULL),(763798,'Joseph Santley',1889,1971),(763858,'Reni Santoni',1938,2020),(763928,'Rodrigo Santoro',1975,NULL),(764020,'Chris Santos',1978,NULL),(764319,'Damon Santostefano',NULL,NULL),(764369,'Gianni Santuccio',1911,1989),(764393,'Guy Sanville',NULL,NULL),(764407,'Sumita Sanyal',1945,2017),(764430,'Carlos Sanz',NULL,NULL),(764526,'Jeri Sopanen',1929,2008),(764527,'Danny Sapani',1970,NULL),(764562,'Danny Saphire',NULL,NULL),(764601,'Miguel Sapochnik',1974,NULL),(764671,'Tomasz Sapryk',1966,NULL),(764771,'Peter Saraf',NULL,NULL),(764774,'Barbara Sarafian',1968,NULL),(764780,'Katherine Sarafian',1969,NULL),(764781,'Richard C. Sarafian',1930,2013),(764822,'Jorge Saralegui',NULL,NULL),(764832,'José Saramago',1922,2010),(764861,'Lane Sarasohn',NULL,NULL),(764901,'Normand Sarrazin',NULL,NULL),(764930,'Oren Sarch',1969,NULL),(764963,'Alain Sarde',1952,NULL),(764982,'Jan Sardi',1953,NULL),(765012,'Mira Sardoc',1930,2008),(765026,'Victorien Sardou',1831,1908),(765037,'Louis Sarecky',1886,1946),(765091,'Alvin Sargent',1927,2019),(765121,'Joseph Sargent',1925,2014),(765126,'Lia Sargent',1957,NULL),(765250,'Fernando Sariñana',1958,NULL),(765251,'Ximena Sariñana',1985,NULL),(765306,'Arthur Sarkissian',1960,NULL),(765325,'Daniel Sarky',1943,1999),(765384,'Valeria Sarmiento',1948,NULL),(765394,'Sim Sarna',NULL,NULL),(765398,'Michael Sarne',1940,NULL),(765403,'Arlene Sarner',NULL,NULL),(765434,'Robert Sarno',NULL,NULL),(765477,'Paul Sarossy',1963,NULL),(765499,'Awa Sene Sarr',NULL,NULL),(765501,'Ismaila Sarr',NULL,NULL),(765546,'Michael Sarrazin',1940,2011),(765563,'Olle Sarri',1972,NULL),(765597,'Peter Sarsgaard',1971,NULL),(765732,'David Sarvis',1913,1999),(765789,'Katsuhiko Sasaki',1944,NULL),(765815,'Nozomu Sasaki',1967,NULL),(765856,'Peter Sasdy',1935,NULL),(765911,'Katrin Sass',1956,NULL),(765924,'Paolo Sassanelli',1958,NULL),(765930,'Jacqueline Sassard',1940,2021),(766005,'Will Sasso',1975,NULL),(766020,'Oley Sassone',1952,NULL),(766042,'Alfonso Sastre',1926,2021),(766100,'Tura Satana',1938,2011),(766102,'Hidemi Satani',NULL,NULL),(766153,'Drake Sather',1959,2004),(766212,'Hitomi Satô',1979,NULL),(766225,'Kei Satô',1928,2010),(766226,'Kei\'ichi Sato',NULL,NULL),(766233,'Kôichi Satô',1960,NULL),(766261,'Shiho Satô',NULL,NULL),(766263,'Shinsuke Sato',1970,NULL),(766272,'Takuya Satô',NULL,NULL),(766364,'Akio Satsukawa',NULL,NULL),(766392,'Jean Satterfield',NULL,NULL),(766402,'Paul Satterfield',1896,1981),(766493,'Masaharu Satô',1946,NULL),(766496,'Masaru Satô',1928,1999),(766499,'Sakichi Sato',1964,NULL),(766502,'Tamao Satô',1973,NULL),(766509,'Philip Werner Sauber',1947,1975),(766558,'Peter Sauder',NULL,NULL),(766635,'Nathalie Saugeon',NULL,NULL),(766665,'Oscar Saul',1912,1994),(766708,'Sherri Saum',1974,NULL),(766837,'Jennifer Saunders',1958,NULL),(766850,'John Monk Saunders',1895,1940),(766872,'Leanne Saunders',NULL,NULL),(766883,'Lori Saunders',1941,NULL),(766884,'Luis María Serra',NULL,NULL),(766921,'Norman Saunders',1907,1989),(766993,'Zamira Saunders',NULL,NULL),(767022,'Carlos Saura',1932,2023),(767027,'Alejo Sauras',1979,NULL),(767065,'Maxime Saury',1928,2012),(767089,'Pascal Sautelet',NULL,NULL),(767110,'Claude Sautet',1924,2000),(767159,'Jean-Pierre Sauvaire',NULL,NULL),(767192,'Patrick Sauvion',NULL,NULL),(767194,'Serge Sauvion',1929,2010),(767198,'Claudine Sauvé',NULL,NULL),(767243,'Ann Savage',1921,2008),(767266,'Carlos Savage',1919,NULL),(767289,'Dominic Savage',1962,NULL),(767393,'Tom Savage',NULL,NULL),(767394,'Tracie Savage',1962,NULL),(767530,'Dava Savel',NULL,NULL),(767566,'Era Savelyeva',1913,1985),(767586,'Domenico Saverni',1958,NULL),(767647,'Harris Savides',1957,2012),(767655,'S. Leigh Savidge',NULL,NULL),(767713,'Jody Savin',NULL,NULL),(767734,'Anthony Savini',NULL,NULL),(767741,'Tom Savini',1946,NULL),(767800,'Savitri',1937,1981),(767878,'Alfred Savoir',1883,1934),(767894,'Pilar Savone',NULL,NULL),(767902,'Gerald Savory',1909,1996),(767962,'Oleg M. Savytski',NULL,NULL),(767991,'Toshiko Sawada',1936,NULL),(768005,'Yasuko Sawaguchi',1965,NULL),(768017,'Tetsu Sawaki',1982,NULL),(768018,'Julia Sawalha',1968,NULL),(768027,'Ikki Sawamura',1967,NULL),(768031,'Sadako Sawamura',1908,1996),(768037,'Masaki Sawanobori',NULL,NULL),(768095,'Nitin Sawhney',1964,NULL),(768178,'Joe Sawyer',1906,1982),(768235,'William A. Sawyer',NULL,NULL),(768249,'Geoffrey Sax',1949,NULL),(768251,'Guillaume de Sax',1889,1945),(768297,'Veerendra Saxena',1951,NULL),(768324,'Edward Saxon',NULL,NULL),(768334,'John Saxon',1936,2020),(768369,'John C.W. Saxton',1930,1987),(768488,'Alexei Sayle',1952,NULL),(768528,'Amy Sayres',NULL,NULL),(768540,'Joel Sayre',1901,1979),(768544,'Julie Sayres',NULL,NULL),(768614,'Leonardo Sbaraglia',1970,NULL),(768618,'James Sbardellati',1951,NULL),(768620,'Raphael Sbarge',1964,NULL),(768641,'Mattia Sbragia',1952,NULL),(768661,'John Scaccia',NULL,NULL),(768663,'Luigi Scaccianoce',1914,1981),(768688,'Marco Scaffardi',NULL,NULL),(768771,'Luis A. Scalella',NULL,NULL),(768786,'Gareth C. Scales',NULL,NULL),(768788,'Hubert Scales',NULL,NULL),(768795,'Prunella Scales',1932,NULL),(768817,'Pietro Scalia',1960,NULL),(768908,'Gian-Carlo Scandiuzzi',NULL,NULL),(768936,'Joanna Scanlan',1961,NULL),(768957,'Claire Scanlon',NULL,NULL),(768959,'Dan Scanlon',1976,NULL),(769070,'Tecla Scarano',1894,1978),(769120,'Elio Scardamaglia',1920,2001),(769121,'Francesco Scardamaglia',1945,2010),(769135,'Don Scardino',1949,NULL),(769227,'David Scarpa',NULL,NULL),(769237,'Renato Scarpa',1939,2021),(769249,'Furio Scarpelli',1919,2010),(769264,'Eduardo Scarpetta',1853,1925),(769265,'Mario Scarpetta',1953,2004),(769311,'Diana Scarwid',1955,NULL),(769338,'Aldo Scavarda',1923,NULL),(769405,'Michael Schaack',1957,NULL),(769440,'Katrin Schaake',1931,NULL),(769561,'Jan Tilman Schade',1963,NULL),(769590,'Brandy Schaefer',1981,NULL),(769615,'George Schaefer',1920,1997),(769627,'Jack Schaefer',1907,1991),(769644,'Michael Schaefer',NULL,NULL),(769645,'Oda Schaefer',NULL,NULL),(769656,'Roberto Schaefer',NULL,NULL),(769692,'Chester W. Schaeffer',1902,1992),(769703,'Eric Schaeffer',1962,NULL),(769778,'Jason Schafer',NULL,NULL),(769838,'Jane Schaffer',NULL,NULL),(769840,'Jeff Schaffer',NULL,NULL),(769855,'Perry Schaffer',NULL,NULL),(769863,'Stephen Schaffer',NULL,NULL),(769874,'Franklin J. Schaffner',1920,1989),(769913,'Don Schain',1941,2015),(769930,'Dan Schalk',NULL,NULL),(769974,'William Schallert',1922,2016),(769996,'Peter Schamoni',1934,2011),(770005,'James Schamus',1959,NULL),(770018,'Angela Schanelec',1962,NULL),(770127,'Walter Scharf',1910,2003),(770196,'Dore Schary',1905,1980),(770241,'Olivier Schatzky',1949,NULL),(770297,'Elsie T. Schauffler',1884,1935),(770337,'Richard Schayer',1880,1956),(770449,'Alexander Scheer',1976,NULL),(770462,'Mary Scheer',NULL,NULL),(770617,'Lou Scheimer',1928,2013),(770647,'Jason Lockhart',NULL,NULL),(770649,'Adam Scheinman',NULL,NULL),(770650,'Andrew Scheinman',1948,NULL),(770670,'Clemens Scheitz',1899,1980),(770726,'Judit Schell',1973,NULL),(770730,'Maria Schell',1926,2005),(770763,'August Schellenberg',1936,2013),(770788,'Mary Kate Schellhardt',1978,NULL),(770792,'\'Bud\' Schelling',1919,1971),(770832,'Sean Schemmel',1968,NULL),(770848,'Jeffrey Schenck',NULL,NULL),(770852,'Joseph M. Schenck',1876,1961),(770859,'Wolfgang Schenck',1934,NULL),(770908,'Walter Schenk',NULL,NULL),(770936,'Ine Schenkkan',NULL,NULL),(770938,'Robert Schenkkan',1953,NULL),(770942,'Richard Schenkman',NULL,2023),(770961,'Fred Schepisi',1939,NULL),(770974,'Shawn Schepps',1961,NULL),(771034,'Peter Scherer',NULL,NULL),(771054,'Lone Scherfig',1959,NULL),(771062,'Edgar J. Scherick',1924,2002),(771065,'Jay Scherick',NULL,NULL),(771087,'Jules Schermer',1908,1996),(771131,'Christof Schertenleib',1958,NULL),(771149,'Sherril Schlesinger',NULL,NULL),(771171,'Charles Schettler',1897,NULL),(771200,'Walter Scheuer',1922,2004),(771228,'Paul T. Scheuring',1968,NULL),(771268,'Rosanna Schiaffino',1939,2009),(771332,'Clemens Schick',1972,NULL),(771362,'Kyle Schickner',NULL,NULL),(771414,'Martin Starr',1982,NULL),(771472,'Evan Schiff',1982,NULL),(771490,'Paul Schiff',NULL,NULL),(771494,'Robin Schiff',NULL,NULL),(771496,'Stephen Schiff',NULL,NULL),(771512,'Michael Schiffer',NULL,NULL),(771526,'Guillaume Schiffman',NULL,NULL),(771535,'Suzanne Schiffman',1929,2001),(771547,'William Schifrin',1960,NULL),(771584,'Joseph Schildkraut',1896,1964),(771609,'Stewart Schill',NULL,NULL),(771622,'Fred Schiller',1904,2003),(771662,'Luke Schiller',NULL,NULL),(771713,'Tom Schilling',1982,NULL),(771739,'Jenny Schily',NULL,NULL),(771834,'Deborah Schindler',NULL,NULL),(771923,'Sebastian Schipper',1968,NULL),(772003,'Murray Schisgal',1926,2020),(772005,'David Schisgall',NULL,NULL),(772095,'Thomas Schlamme',1950,NULL),(772116,'Charlie Schlatter',1966,NULL),(772144,'Heidrun Schleef',1962,NULL),(772150,'Bernd Schlegel',1972,NULL),(772174,'Bradford L. Schlei',1966,NULL),(772207,'Markus Schleinzer',1971,NULL),(772245,'Adam Schlesinger',1967,2020),(772251,'Derrin Schlesinger',NULL,NULL),(772259,'John Schlesinger',1926,2003),(772283,'Peter Schlessel',NULL,NULL),(772290,'Adam Schlesinger',NULL,NULL),(772384,'Bernhard Schlink',1944,NULL),(772454,'Elmar Schloter',1936,2011),(772480,'Guylaine Schlumberger',NULL,NULL),(772522,'Volker Schlöndorff',1939,NULL),(772524,'Katrin Schlösser',NULL,NULL),(772609,'Gabriela Maria Schmeide',1965,NULL),(772691,'Hans-Christian Schmid',1965,NULL),(772704,'Kyle Schmid',1984,NULL),(772824,'Annie M.G. Schmidt',1911,1995),(772829,'Arne Schmidt',NULL,NULL),(772831,'Arthur Schmidt',1937,2023),(772834,'Arthur P. Schmidt',1912,1965),(772907,'Eddie Schmidt',NULL,NULL),(772988,'Holger Karsten Schmidt',1965,NULL),(773002,'Jan Schmidt',1934,2019),(773138,'Ole Schmidt',1928,2010),(773156,'Phil Schmidt',NULL,NULL),(773176,'Ron Schmidt',NULL,NULL),(773180,'Rohn Schmidt',1969,NULL),(773257,'Wolf Schmidt',NULL,NULL),(773266,'Morgan Schmidt-Feng',NULL,NULL),(773308,'Sebastian Urzendowsky',1985,NULL),(773327,'Zoltán Schmied',1975,NULL),(773460,'Vincent Schmitt',NULL,NULL),(773525,'Sybille Schmitz',1909,1955),(773603,'Julian Schnabel',1951,NULL),(773605,'Marco Schnabel',NULL,NULL),(773660,'Charles Schnee',1916,1962),(773670,'Gisela Schneeberger',1948,NULL),(773677,'Charles H. Schneer',1920,2009),(773685,'Hervé Schneid',NULL,NULL),(773689,'Aaron Schneider',NULL,NULL),(773721,'Bert Schneider',1933,2011),(773759,'Dan Schneider',1966,NULL),(773768,'David Schneider',1963,NULL),(773805,'Florian Schneider',NULL,NULL),(773837,'Harold Schneider',1939,1994),(773845,'Helge Schneider',1955,NULL),(773884,'John Schneider',1960,NULL),(773932,'Maria Schneider',1952,2011),(773973,'Paul Schneider',1976,NULL),(773985,'Rick Calabash',NULL,NULL),(774019,'Sascha Schneider',NULL,NULL),(774086,'Elayne Schneiderman Schmidt',NULL,NULL),(774087,'George Schneiderman',1894,1964),(774140,'Daniel Schneor',NULL,NULL),(774205,'Gerald Schnitzer',1917,2016),(774209,'Joseph I. Schnitzer',1887,1944),(774217,'Arthur Schnitzler',1862,1931),(774306,'Raney Shockne',NULL,NULL),(774325,'Ernest B. Schoedsack',1893,1979),(774377,'Uli Schön',NULL,NULL),(774384,'Vic Schoen',1916,2000),(774386,'Matthias Schoenaerts',1977,NULL),(774392,'Megan Schoenbachler',NULL,NULL),(774395,'Brent A. Schoenfeld',NULL,NULL),(774441,'Bernard C. Schoenfeld',1907,1990),(774465,'Russell F. Schoengarth',1904,1974),(774516,'David Schofield',1951,NULL),(774520,'Glen A. Schofield',NULL,NULL),(774528,'John D. Schofield',1933,2020),(774578,'Michael Scholes',NULL,NULL),(774606,'Oliver Scholl',NULL,NULL),(774736,'Kyra Schon',1957,NULL),(774744,'Claude-Michel Schönberg',1944,NULL),(774749,'Jane Schonberger',NULL,NULL),(774750,'Terry Schonblum',NULL,NULL),(774779,'Aimee Schoof',NULL,NULL),(774786,'Alan Schoolcraft',NULL,NULL),(774792,'Bob Schooley',1961,NULL),(774817,'Thelma Schoonmaker',1940,NULL),(774883,'Christine Schorn',1944,NULL),(774908,'Robin Schorr',NULL,NULL),(775017,'David J. Schow',1955,NULL),(775036,'Andrew Schrader',1976,NULL),(775037,'Barry Schrader',NULL,NULL),(775055,'Leonard Schrader',1943,2006),(775056,'Maria Schrader',1965,NULL),(775082,'Rudy Schrager',1900,1983),(775180,'Max Schreck',1879,1936),(775262,'Nancy Schreiber',NULL,NULL),(775419,'Raymond L. Schrock',1892,1950),(775443,'Adam Schroeder',NULL,NULL),(775447,'Barbet Schroeder',1941,NULL),(775455,'Carly Schroeder',1990,NULL),(775480,'Frederick Schroeder',NULL,NULL),(775539,'Todd Schroeder',1962,NULL),(775596,'Hannelore Schroth',1922,1987),(775659,'Greta Schröder',1892,1980),(775680,'Kurt Schröder',1888,1962),(775709,'Andreas Schröders',NULL,NULL),(775831,'Stefan Schubert',1955,NULL),(775858,'Karoline Schuch',1981,NULL),(775870,'John Schuck',1940,NULL),(775939,'Stephan Schuh',1969,NULL),(775977,'Budd Schulberg',1914,2009),(775980,'Sandra Schulberg',1950,NULL),(776040,'Amanda Schull',1978,NULL),(776068,'Arnold Schulman',1925,2023),(776072,'Cathy Schulman',1965,NULL),(776107,'Roger S.H. Schulman',NULL,NULL),(776114,'Tom Schulman',1950,NULL),(776193,'Armand Schultz',NULL,NULL),(776202,'Bill Schultz',NULL,NULL),(776213,'Chiz Schultz',NULL,NULL),(776239,'Dwight Schultz',1947,NULL),(776271,'John Schultz',NULL,NULL),(776317,'Michael Schultz',NULL,NULL),(776409,'Elsa Sophie Gambard',1980,NULL),(776433,'Charles M. Schulz',1922,2000),(776441,'Craig Schulz',1953,NULL),(776469,'Ilona Schulz',1955,NULL),(776580,'Matt Schulze',1972,NULL),(776646,'Martha De Laurentiis',1954,2021),(776739,'Walter Schumann',1913,1958),(776885,'Bragi F. Schut',NULL,NULL),(776914,'Maurice Schutz',1866,1955),(776997,'Laurence Schwab',1892,1951),(777010,'Sigi Schwab',1940,NULL),(777043,'Mark Schwahn',1966,NULL),(777053,'György Schwajda',1943,2010),(777057,'Ben Schwalb',1901,1984),(777059,'Jennifer Schwalbach Smith',1971,NULL),(777125,'Aaron Schwartz',1981,NULL),(777173,'Catherine Schwartz',NULL,NULL),(777190,'David Schwartz',NULL,NULL),(777203,'Deborah Schwartz',NULL,NULL),(777209,'Douglas Schwartz',NULL,NULL),(777408,'Rick Schwartz',NULL,NULL),(777412,'Robert Schwartz',NULL,NULL),(777421,'Ross Schwartz',1949,NULL),(777432,'Scott Schwartz',1968,NULL),(777455,'Steve Schwartz',NULL,NULL),(777462,'Teri Schwartz',NULL,NULL),(777491,'Mark Schwartzbard',NULL,NULL),(777531,'Ronald L. Schwary',1944,2020),(777649,'Simon Schwarz',1971,NULL),(777680,'Bob Schwarze',NULL,NULL),(777760,'Eric Schweig',1967,NULL),(777788,'Matthias Schweighöfer',1981,NULL),(777820,'Jenny Schweitzer',NULL,NULL),(777831,'S.S. Schweitzer',1925,2006),(777881,'Robert Schwentke',1968,NULL),(777907,'Hermann Schwerin',1902,1970),(777978,'Ralph Schwingel',1955,NULL),(778013,'Henrik Schyffert',1968,NULL),(778016,'Hanna Schygulla',1943,NULL),(778078,'Martin Schäfer',1943,1988),(778111,'Reto Schärli',NULL,NULL),(778159,'Margarete Schön',1895,1985),(778163,'Daniel Schönauer',NULL,NULL),(778180,'Barbara Schöne',1947,NULL),(778285,'Thomas Schühly',1951,NULL),(778306,'Reinhold Schünzel',1886,1954),(778348,'Katharina Schüttler',1979,NULL),(778404,'Alberto Sciamma',1961,NULL),(778432,'Leonardo Sciascia',1921,1989),(778476,'David Scinto',NULL,NULL),(778554,'Tiziano Sclavi',1953,NULL),(778568,'Edith Scob',1937,2019),(778633,'Ettore Scola',1931,2016),(778636,'Kathryn Scola',1891,1982),(778741,'Caterina Scorsone',1981,NULL),(778743,'Thomas N. Scortia',1926,1986),(778789,'Adrian Scott',1912,1972),(778792,'Alan Scott',1922,2021),(778804,'Alan Randolph Scott',NULL,NULL),(778818,'Allan Scott',1906,1995),(778819,'Allan Scott',1939,NULL),(778831,'Andrew Scott',1976,NULL),(778840,'Ann Scott',1942,NULL),(778894,'Bob Scott',NULL,NULL),(778993,'Cynthia Scott',1939,NULL),(779011,'Darin Scott',NULL,NULL),(779059,'DeVallon Scott',1910,1997),(779084,'Dougray Scott',1965,NULL),(779089,'Elliot Scott',1915,1993),(779170,'Gavin Scott',1950,NULL),(779196,'Gordon Scott',NULL,NULL),(779231,'Helen Scott',1915,1987),(779261,'Jacqueline Scott',1931,2020),(779265,'Jake Scott',1965,NULL),(779280,'Jane Scott',NULL,NULL),(779285,'Janette Scott',1938,NULL),(779321,'Jessica Scott',NULL,NULL),(779325,'Jill Scott',1972,NULL),(779346,'John Scott',1930,NULL),(779386,'Jordan Scott',1977,NULL),(779421,'Kathryn Leigh Scott',1943,NULL),(779433,'Ken Scott',NULL,NULL),(779467,'Larry B. Scott',1961,NULL),(779475,'Lee Scott',NULL,NULL),(779524,'Luke Scott',1968,NULL),(779549,'Martha Scott',1912,2003),(779592,'Mike Scott',1958,NULL),(779720,'Robert Falcon Scott',1868,1912),(779771,'Sandra Scott',NULL,2000),(779797,'Walter Scott',1771,1832),(779860,'Tom Scott',1948,NULL),(779862,'Tom Scott',NULL,NULL),(779866,'Tom Everett Scott',1970,NULL),(779923,'Zachary Scott',1914,1965),(779948,'Jessica Scott-Justice',NULL,NULL),(779963,'Jonathan Scott-Taylor',1962,NULL),(779970,'Carole Scotta',1966,NULL),(780020,'Vincent Scotto',1874,1952),(780038,'Alexander Scourby',1913,1985),(780051,'Nell Scovell',1960,NULL),(780098,'Ronnie Screwvala',1962,NULL),(780102,'Mik Scriba',1947,2018),(780116,'Don Scribner',NULL,NULL),(780117,'George Scribner',NULL,NULL),(780133,'Angus Scrimm',1926,2016),(780166,'Doug Scroggins III',NULL,NULL),(780255,'Michelle Scullion',NULL,NULL),(780256,'Simon Scullion',NULL,NULL),(780311,'Peter Sculthorpe',1929,2014),(780385,'John Seabourne Sr.',1890,NULL),(780415,'John Seabrook',NULL,NULL),(780420,'B. Mark Seabrooks',NULL,NULL),(780462,'Howie Seago',1953,NULL),(780472,'Malcolm Seagrave',1928,2001),(780523,'Bobby Seale',1936,NULL),(780539,'Orlando Seale',1973,NULL),(780546,'Franklyn Seales',1952,1990),(780620,'Peter S. Seaman',1951,NULL),(780622,'Rick Seaman',NULL,NULL),(780624,'Robert Seaman',NULL,NULL),(780684,'Jackie Searl',1921,1991),(780699,'Humphrey Searle',1915,1982),(780714,'Ronald Searle',1920,2011),(780762,'Eric A. Sears',NULL,NULL),(780799,'Ted Sears',1900,1958),(780803,'Zelda Sears',1873,1935),(780833,'George Seaton',1911,1979),(780870,'Tracey Seaward',1965,NULL),(780922,'Dick Sebast',1946,NULL),(780933,'Beverly Sebastian',NULL,NULL),(780934,'Bill Sebastian',1977,NULL),(780941,'Dorothy Sebastian',1903,1957),(780944,'Ferd Sebastian',1933,NULL),(781029,'Jean Seberg',1938,1979),(781186,'John H. Secondari',1919,1975),(781203,'Kim Secrist',NULL,NULL),(781218,'Jon Seda',1970,NULL),(781238,'Amy Sedaris',1961,NULL),(781245,'Bahare Seddiqi',NULL,NULL),(781292,'Edward Sedgwick',1892,1953),(781365,'Andrea Sedlácková',1967,NULL),(781452,'Eckart Seeber',1963,NULL),(781477,'Paul Seed',1947,NULL),(781517,'Pete Seeger',1919,2014),(781719,'Manuel Seff',1895,1969),(781760,'Brad Segal',NULL,NULL),(781777,'Erich Segal',1937,2010),(781829,'Miriam Segal',NULL,NULL),(781833,'Nanu Segal',NULL,NULL),(781839,'Noah Segal',NULL,NULL),(781842,'Peter Segal',1962,NULL),(781899,'Pamela Adlon',1966,NULL),(781912,'Lloyd Segan',NULL,NULL),(781913,'Noah Segan',1983,NULL),(781918,'E.C. Segar',1894,1938),(781981,'Jason Segel',1980,NULL),(782035,'Karim Seghair',NULL,NULL),(782036,'Tanya Seghatchian',1968,NULL),(782041,'Pierre Seghers',1906,1987),(782213,'Santiago Segura',1965,NULL),(782270,'Jonathan Sehring',NULL,NULL),(782381,'Arthur Allan Seidelman',NULL,NULL),(782384,'Susan Seidelman',1952,NULL),(782430,'Ulrich Seidl',1952,NULL),(782431,'Donovan Seidle',NULL,NULL),(782436,'David Seidler',1937,NULL),(782457,'Tom Seidman',NULL,NULL),(782499,'Heath Seifert',1968,NULL),(782535,'Sam Seig',1966,NULL),(782561,'Emmanuelle Seigner',1966,NULL),(782597,'Lewis Seiler',1890,1964),(782682,'William A. Seiter',1890,1964),(782704,'Franz Seitz',1921,2006),(782711,'Hillary Seitz',NULL,NULL),(782739,'Michael Seitzman',NULL,NULL),(782752,'Lucio Seixas',NULL,NULL),(782787,'Louis Sek',NULL,NULL),(782794,'Ilona Sekacz',1948,NULL),(782804,'Steve Sekely',1899,1979),(782814,'Joseph V. Sekhar',NULL,NULL),(782840,'Tomokazu Seki',1972,NULL),(782841,'Toshihiko Seki',1962,NULL),(782848,'Daisuke Sekiguchi',1968,NULL),(782858,'Yusuke Sekiguchi',NULL,NULL),(782883,'Shin\'ichi Sekizawa',1920,1992),(782900,'Andrzej Sekula',NULL,NULL),(782917,'Aleksandar Sekulovic',1918,1974),(782930,'Jonathan Sela',1978,NULL),(782943,'Concordia Selander',1861,1935),(782964,'Jule Selbo',NULL,NULL),(782968,'Hubert Selby Jr.',1928,2004),(782978,'David Selby',1941,NULL),(782999,'Norman Selby',1873,1940),(783020,'Eli Selden',NULL,NULL),(783023,'Ken Selden',NULL,NULL),(783033,'Marian Seldes',1928,2014),(783100,'David Self',NULL,NULL),(783102,'Edwin Self',NULL,NULL),(783119,'Naomi L. Selfman',NULL,NULL),(783124,'Edgar Selge',1948,NULL),(783139,'Henry Selick',1952,NULL),(783146,'Keri Selig',NULL,NULL),(783178,'Hans Selikovsky',1952,NULL),(783180,'Ali Selim',NULL,NULL),(783203,'Markus Selin',1960,NULL),(783241,'Jamie Selkirk',NULL,NULL),(783280,'JoAnne Sellar',NULL,NULL),(783317,'Marie-Lou Sellem',1966,NULL),(783333,'Arlene Sellers',1921,2004),(783346,'Dylan Sellers',NULL,NULL),(783398,'Charles E. Sellier Jr.',1943,2011),(783519,'Sam Selsky',NULL,NULL),(783536,'Aaron Seltzer',1974,NULL),(783544,'David Seltzer',1940,NULL),(783559,'Terrel Seltzer',NULL,NULL),(783561,'Walter Seltzer',1914,2011),(783621,'Phil Selway',1967,NULL),(783676,'Arna Selznick',NULL,NULL),(783733,'Ousmane Sembene',1923,2007),(783913,'Lorenzo Semple Jr.',1923,2014),(783926,'Maria Semple',NULL,NULL),(783934,'Jorge Semprún',1923,2011),(784061,'Dominic Sena',1949,NULL),(784103,'Daniele Senatore',1940,1999),(784111,'Luc Senay',1958,NULL),(784119,'Koreya Senda',1904,1994),(784124,'Maurice Sendak',1928,2012),(784177,'Kelly Senecal',NULL,NULL),(784262,'Frank Senger',1954,2016),(784279,'Noriko Sengoku',1922,2012),(784358,'Akira Senju',1960,NULL),(784389,'Ayrton Senna',1960,1994),(784540,'Takenori Sentô',1961,NULL),(784580,'Woo-sik Seo',NULL,NULL),(784599,'Merijn Sep',NULL,NULL),(784742,'Patrícia Sequeira',1973,NULL),(784771,'Clare Sera',NULL,NULL),(784787,'Enzo Serafin',1912,1995),(784818,'Peter Serafinowicz',1972,NULL),(784884,'Rade Serbedzija',1946,NULL),(784939,'Sergey Serebrenikov',1919,2015),(784955,'John Sereda',NULL,NULL),(784972,'Rosanna Seregni',NULL,NULL),(785012,'Julia Sereny',NULL,NULL),(785029,'Michael Seresin',1942,NULL),(785031,'Zoltán Seress',1962,NULL),(785108,'Nikolay Sergeev',1894,1988),(785150,'Viorel Sergovici',1970,NULL),(785167,'Meika Seri',1954,NULL),(785227,'Andy Serkis',1964,NULL),(785237,'Beth Serlin',NULL,NULL),(785245,'Rod Serling',1924,1975),(785264,'Assumpta Serna',1957,NULL),(785284,'Alex Sernambi',1960,NULL),(785311,'Alexandra Seros',NULL,NULL),(785343,'Ralph B. Serpe',1911,1992),(785359,'Aintza Serra',NULL,NULL),(785376,'Deborah Serra',NULL,NULL),(785381,'Eduardo Serra',1943,NULL),(785385,'Éric Serra',1959,NULL),(785418,'Luis Serra',1937,NULL),(785515,'David Serrano',1975,NULL),(785517,'Diego Serrano',1973,NULL),(785565,'Julieta Serrano',1933,NULL),(785594,'Nestor Serrano',1955,NULL),(785664,'Michel Serrault',1928,2007),(785676,'Henri Serre',1931,NULL),(785684,'Coline Serreau',1947,NULL),(785771,'Jean Servais',1910,1976),(785782,'Fabienne Servan-Schreiber',1950,NULL),(785792,'Adrienne Servantie',1907,2000),(785842,'Toni Servillo',1959,NULL),(785854,'Matt Servitto',1965,NULL),(785909,'Alejandro Sessa',1928,1998),(785919,'Hilde Sessak',1915,2003),(785998,'Philippe Setbon',1957,NULL),(786006,'Aradhana Seth',NULL,NULL),(786022,'Roshan Seth',1942,NULL),(786122,'Lena Settervall',NULL,NULL),(786130,'Anne Settimó',NULL,NULL),(786281,'Bajram Severdzan',1966,NULL),(786411,'Mark Sevi',NULL,NULL),(786417,'Corey Sevier',1984,NULL),(786477,'Toni Sevilla',1949,NULL),(786564,'Anna Sewell',1820,1878),(786580,'Jacob Sewell',NULL,NULL),(786639,'Brendan Sexton III',1980,NULL),(786673,'Mary Sexton',NULL,NULL),(786694,'Timothy J. Sexton',NULL,NULL),(786707,'Takeshi Seyama',NULL,NULL),(786732,'Paul Seydor',1947,NULL),(786733,'Michel Seydoux',1947,NULL),(786780,'Athene Seyler',1889,1990),(786785,'Jeff Seymann Gilbert',NULL,NULL),(786806,'Cara Seymour',1964,NULL),(786827,'James Seymour',1895,1976),(786891,'Delphine Seyrig',1932,1990),(786892,'Francis Seyrig',1927,1979),(786919,'Safak Sezer',1970,NULL),(787033,'Michael Shaara',1929,1988),(787072,'David Shaber',1929,1999),(787185,'Ken Shadie',NULL,2020),(787204,'DJ Shadow',1972,NULL),(787265,'Martin Shafer',NULL,NULL),(787288,'Alyson Shaffer',1894,1974),(787289,'Anthony Shaffer',1926,2001),(787323,'Peter Shaffer',1926,2016),(787368,'Renée Shafransky',NULL,NULL),(787399,'Steve Shagan',1927,2015),(787420,'Ash R. Shah',NULL,NULL),(787423,'Bharat S. Shah',NULL,NULL),(787427,'Byron Shah',NULL,NULL),(787462,'Naseeruddin Shah',1950,NULL),(787551,'Afshin Shahidi',NULL,NULL),(787578,'Andrew Shaifer',NULL,NULL),(787582,'Farooq Shaikh',1948,2013),(787601,'Steven Shainberg',1963,NULL),(787603,'Rick Shaine',NULL,NULL),(787606,'Jennifer Shainin',NULL,NULL),(787611,'Mordaunt Shairp',1887,1939),(787653,'Terry Shakespeare',1959,NULL),(787687,'Matt Shakman',1975,NULL),(787762,'Theo Shall',1896,1955),(787834,'Michael Shamberg',1945,NULL),(788009,'Garry Shandling',1949,2016),(788035,'Gene Shane',NULL,NULL),(788110,'Ntozake Shange',1948,2018),(788130,'Don Shank',NULL,NULL),(788157,'Dilip Shankar',1970,NULL),(788170,'Ravi Shankar',1920,2012),(788171,'S. Shankar',1963,NULL),(788191,'Tom Shankland',NULL,NULL),(788202,'Adam Shankman',1964,NULL),(788218,'Michael Shanks',NULL,NULL),(788231,'Brian Shanley',NULL,NULL),(788234,'John Patrick Shanley',1950,NULL),(788335,'Michael Shannon',1974,NULL),(788340,'Molly Shannon',1964,NULL),(788370,'Vicellous Shannon',1971,NULL),(788405,'Bing Shao',1968,NULL),(788411,'Run Run Shaw',1907,2014),(788458,'Allen Shapiro',NULL,NULL),(788487,'David Shapiro',NULL,NULL),(788513,'Greg Shapiro',1972,NULL),(788526,'J.D. Shapiro',1969,NULL),(788553,'Ken Shapiro',1942,2017),(788556,'Larry Schapiro',NULL,NULL),(788578,'Marlena Shapiro',NULL,NULL),(788597,'Michael Gordon Shapiro',NULL,NULL),(788611,'Paul Shapiro',NULL,NULL),(788617,'Rick Shapiro',NULL,NULL),(788630,'Stanley Shapiro',1925,1990),(788640,'Theodore Shapiro',1971,NULL),(788673,'Bill Shapter',1945,NULL),(788737,'Steve Shareshian',NULL,NULL),(788743,'Yaron Scharf',NULL,NULL),(788767,'John Sharian',NULL,NULL),(788768,'Far Shariat',NULL,NULL),(788830,'Rebecca Wood',NULL,NULL),(788918,'Shishir Sharma',NULL,NULL),(788935,'Bruce Sharman',1929,NULL),(788940,'Jim Sharman',1945,NULL),(788946,'Roy Sharman',NULL,NULL),(788972,'Roee Sharon',NULL,NULL),(788991,'Alan Sharp',1934,2013),(789025,'Colleen Sharp',NULL,NULL),(789033,'Don Sharp',1921,2011),(789049,'Henry Sharp',1892,1966),(789070,'John Sharp',1920,1992),(789093,'Lesley Sharp',1960,NULL),(789100,'Margery Sharp',1905,1991),(789185,'Albert Sharpe',1885,1970),(789234,'Jennifer Sharpe',1969,NULL),(789292,'Ian Sharples',NULL,NULL),(789313,'Ben Sharpsteen',1895,1980),(789326,'Michael Sharrett',1965,NULL),(789366,'Jessica Sharzer',1972,NULL),(789486,'Rick Shaughnessy',NULL,NULL),(789520,'Melville Shavelson',1917,2007),(789585,'Alonna Shaw',1964,NULL),(789602,'Austin Shaw',NULL,NULL),(789624,'Bob Shaw',NULL,NULL),(789650,'Charles Shaw',1900,1955),(789716,'Fiona Shaw',1958,NULL),(789718,'Frank Shaw',1932,2006),(789737,'George Bernard Shaw',1856,1950),(789758,'Irwin Shaw',1913,1984),(789834,'Larry Shaw',NULL,NULL),(789864,'Martin Shaw',1945,NULL),(789946,'Robert Gould Shaw',1837,1863),(789956,'Runme Shaw',1901,1985),(789960,'Sam Shaw',1912,1999),(789966,'Sandy Shaw',NULL,NULL),(790019,'Vee King Shaw',1944,2017),(790057,'Alia Shawkat',1989,NULL),(790068,'Allen Shawn',NULL,NULL),(790071,'Dick Shawn',1923,1987),(790144,'Robert Shaye',1939,NULL),(790158,'Cari Shayne',NULL,NULL),(790283,'James K. Shea',NULL,NULL),(790291,'John Shea',1949,NULL),(790344,'Stephen Shea',1961,NULL),(790383,'Al Shean',1868,1949),(790398,'Jon Shear',NULL,NULL),(790452,'Moira Shearer',1926,2006),(790454,'Norma Shearer',1902,1983),(790458,'Robert Shearer',NULL,NULL),(790481,'Edward Shearmur',1966,NULL),(790485,'Antony Shearn',NULL,NULL),(790636,'Vincent Sheehan',NULL,NULL),(790654,'Arthur Sheekman',1901,1978),(790688,'Michael Sheen',1969,NULL),(790689,'Ruth Sheen',1950,NULL),(790715,'Penelope Spheeris',1945,NULL),(790743,'Todd Sheets',NULL,NULL),(790746,'Chuck Sheetz',1960,NULL),(790775,'David Sheffield',NULL,NULL),(790797,'Patrick Sheffield',NULL,NULL),(790898,'Bill Sheinberg',NULL,NULL),(790900,'Jonathan Sheinberg',1957,NULL),(790901,'Sid Sheinberg',1935,2019),(790925,'Dean Shek',1949,2021),(791007,'David Sheldon',NULL,NULL),(791017,'Edward Sheldon',1886,1946),(791084,'Sidney Sheldon',1917,2007),(791130,'David Snell',1897,1967),(791156,'Stephen Shellen',1957,NULL),(791176,'Barbara Shelley',1932,2021),(791185,'Carla Shelley',NULL,NULL),(791217,'Mary Shelley',1797,1851),(791226,'Rachel Shelley',1969,NULL),(791248,'Adrienne Shelly',1966,2006),(791285,'Josh Shelov',NULL,NULL),(791401,'Toby Shelton',NULL,NULL),(791462,'Charles Shen',NULL,NULL),(791502,'Paul Shenar',1936,1989),(791551,'Nina Shengold',NULL,NULL),(791570,'Ben Shenkman',1968,NULL),(791577,'Walter Shenson',1919,2000),(791615,'Ernest Shepard',1879,1976),(791622,'Gerald Shepard',1925,2008),(791665,'Patty Shepard',1945,2013),(791672,'Richard Shepard',1965,NULL),(791723,'Quinn Shephard',1995,NULL),(791789,'Jean Shepherd',1921,1999),(791803,'John Shepherd',1960,NULL),(791806,'John Scott Shepherd',1964,NULL),(791847,'Richard Shepherd',1927,2014),(791864,'Scott Shepherd',NULL,NULL),(791871,'Simon Shepherd',1956,NULL),(791874,'Steve John Shepherd',1973,NULL),(791898,'Tiffany Shepis',1979,NULL),(791926,'Brent Sheppard',1960,NULL),(791931,'Christopher Sheppard',NULL,NULL),(791949,'John Sheppard',NULL,NULL),(791974,'Paula E. Sheppard',1957,NULL),(792012,'Robin Sheppard',NULL,NULL),(792029,'Antony Sher',1949,2021),(792042,'Jack Sher',1913,1988),(792049,'Stacey Sher',1962,NULL),(792061,'William Sherak',NULL,NULL),(792090,'Ted Sherdeman',1909,1987),(792092,'Daniel Shere',1974,NULL),(792130,'Ann Sheridan',1915,1967),(792163,'Dinah Sheridan',1920,2012),(792167,'Gage Sheridan',NULL,NULL),(792177,'Jamey Sheridan',1951,NULL),(792198,'Kelly Sheridan',1977,NULL),(792202,'Kirsten Sheridan',1976,NULL),(792212,'Margaret Sheridan',1926,1982),(792262,'Susan Sheridan',1947,2015),(792263,'Taylor Sheridan',1969,NULL),(792320,'Daniel A. Sherkow',NULL,NULL),(792333,'David Sherlock',NULL,NULL),(792426,'Editta Sherman',1912,2013),(792431,'Emile Sherman',NULL,NULL),(792446,'Gary Sherman',1945,NULL),(792463,'Hillary Sherman',NULL,NULL),(792514,'Lowell Sherman',1888,1934),(792553,'Richard Sherman',1905,1962),(792555,'Richard Sherman',NULL,NULL),(792556,'Richard M. Sherman',1928,NULL),(792568,'Robert M. Sherman',NULL,NULL),(792589,'Stanford Sherman',NULL,NULL),(792605,'Vincent Sherman',1906,2006),(792670,'R.C. Sherriff',1896,1975),(792694,'Ned Sherrin',1931,2007),(792763,'Amir Shervan',1929,2006),(792773,'David Sherwin',1942,2018),(792807,'David Sherwood',NULL,NULL),(792845,'Robert E. Sherwood',1896,1955),(792848,'Robin Sherwood',1952,NULL),(792871,'Jon Shestack',NULL,NULL),(792888,'Sheetal Sheth',NULL,NULL),(793016,'Nansun Shi',NULL,NULL),(793026,'Xiangsheng Shi',NULL,NULL),(793033,'Yu Shi',NULL,NULL),(793049,'Kazue Shiba',NULL,NULL),(793053,'Toshio Shiba',1947,NULL),(793066,'Takahide Shibanushi',NULL,NULL),(793069,'Kô Shibasaki',1981,NULL),(793122,'Steve Shibuya',NULL,NULL),(793149,'M.P. Shiel',1865,1947),(793152,'Brad Shield',NULL,NULL),(793195,'Fred Shields',1904,1974),(793232,'Mike Shields',NULL,NULL),(793269,'Mike Shiell',NULL,NULL),(793291,'Jonathan M. Shiff',NULL,NULL),(793363,'James Shigeta',1929,2014),(793389,'Szu Shih',1953,NULL),(793400,'Yukiko Shii',NULL,NULL),(793402,'Eihi Shiina',1976,NULL),(793404,'Kippei Shîna',1964,NULL),(793408,'Hideyuki Shiino',1924,1976),(793439,'Seo-shik Hwang',NULL,NULL),(793463,'Susan Shilliday',NULL,NULL),(793522,'Barry Shils',NULL,NULL),(793526,'Justin Shilton',1976,NULL),(793532,'Andrew Shim',1983,NULL),(793562,'Kyûsaku Shimada',1955,NULL),(793585,'Sumi Shimamoto',1954,NULL),(793616,'Yukiko Shimazaki',1931,NULL),(793617,'Kiyoshi Shimazu',NULL,NULL),(793634,'Sab Shimono',1937,NULL),(793652,'Jenny Shimizu',1967,NULL),(793687,'Shinji Shimizu',NULL,NULL),(793689,'Shun Shimizu',NULL,NULL),(793697,'Yasuaki Shimizu',NULL,NULL),(793710,'Atsuyuki Shimoda',NULL,NULL),(793753,'Kan Shimozawa',1892,1968),(793766,'Takashi Shimura',1905,1982),(793781,'Eun-Kyung Shin',1973,NULL),(793784,'Shin Ha-kyun',1974,NULL),(793802,'Nelson Shin',1939,NULL),(793840,'Akiyuki Shinbô',1961,NULL),(793879,'Eitarô Shindô',1899,1977),(793881,'Kaneto Shindô',1912,2012),(793893,'Carol Ann Shine',NULL,NULL),(793939,'Wilfred Shingleton',1914,1983),(793984,'Noboru Shinoda',1952,2004),(793987,'Emi Shinohara',1963,NULL),(794002,'Yoshiko Shinohara',NULL,NULL),(794064,'Trudy Ship',1944,NULL),(794106,'Lee Shipman',NULL,NULL),(794156,'Susan Shipton',1958,NULL),(794174,'Hisao Shirai',1946,2019),(794186,'Ayano Shiraishi',NULL,NULL),(794205,'Yumi Shirakawa',1936,2016),(794280,'Adam Shirk',1887,1931),(794297,'Anne Shirley',1918,1993),(794301,'Bill Shirley',1921,1989),(794326,'John Shirley',1953,NULL),(794385,'Shirow Masamune',1961,NULL),(794405,'William Eagle Shirt',NULL,NULL),(794415,'Aleksandr Shirvindt',1934,NULL),(794420,'M. Shirzad',NULL,NULL),(794425,'Jô Shishido',1933,2020),(794475,'Gil Shiva',NULL,NULL),(794480,'Mark Shivas',1938,2008),(794626,'Marc Shmuger',1958,NULL),(794687,'William Shockley',1963,NULL),(794762,'Naomi Shohan',NULL,NULL),(794791,'Jack Sholder',1945,NULL),(794793,'Lee Sholem',1913,2000),(794896,'Miriam Shor',1971,NULL),(794918,'Dinah Shore',1916,1994),(794960,'Simon Shore',1959,NULL),(794971,'Del Shores',1957,NULL),(795012,'Lester Shorr',1907,1992),(795141,'Clinton Shorter',1971,NULL),(795153,'Cate Shortland',1968,NULL),(795169,'Pat Shortt',1967,NULL),(795225,'Robin Shou',1960,NULL),(795289,'Max Showalter',1917,2000),(795290,'Michael Showalter',1970,NULL),(795312,'Gennady Shpalikov',1937,1974),(795340,'Lawrence Shragge',NULL,NULL),(795388,'Barbara Shrier',NULL,NULL),(795443,'Terilyn A. Shropshire',NULL,NULL),(795461,'Dennis Shryack',1936,2016),(795500,'Maksim Shtraukh',1900,1974),(795517,'Shu Qi',1976,NULL),(795575,'Takeshi Shudô',1949,2010),(795576,'Andrew Shue',1967,NULL),(795628,'Robert F. Shugrue',1937,1999),(795639,'Phil Shuken',1911,1978),(795640,'Leo Shuken',1906,1976),(795642,'Sandra Shuker',NULL,NULL),(795651,'Dilip Shukla',NULL,NULL),(795661,'Saurabh Shukla',1963,NULL),(795682,'Lauren Shuler Donner',1949,NULL),(795730,'Irving Shulman',1913,1995),(795743,'Neil B. Shulman',NULL,NULL),(795832,'Jason Shuman',NULL,NULL),(795834,'Larry Shuman',NULL,NULL),(795837,'Mort Shuman',1938,1991),(795864,'Herman Shumlin',1898,1979),(795878,'Vyacheslav Shumskiy',1921,2011),(795913,'Dorothy Shupenes',1934,2005),(795914,'Peter Shupenes',1923,2013),(795953,'Ronald Shusett',1935,NULL),(795972,'Harry Shuster',NULL,NULL),(795975,'Joe Shuster',1914,1992),(795981,'Skyler Shaye',1986,NULL),(796062,'Isaac Schwarts',1923,2009),(796085,'Aleksandr Shvorin',1931,1994),(796117,'M. Night Shyamalan',1970,NULL),(796124,'Charles Shyer',NULL,NULL),(796153,'Miyoko Shôji',1936,2020),(796242,'Johanna Sibelius',1913,1970),(796267,'Pietro Sibille',NULL,NULL),(796357,'Alex Sichel',1963,2014),(796359,'Sylvia Sichel',NULL,NULL),(796407,'Roberto Siciliano',NULL,NULL),(796449,'Gilbert Sicotte',1948,NULL),(796477,'Andy Sidaris',1931,2007),(796478,'Arlene Sidaris',1941,NULL),(796502,'Alexander Siddig',1965,NULL),(796503,'Javed Siddiqui',NULL,NULL),(796538,'Nikolai Sidelnikov',1930,1992),(796645,'George Sidney',1916,2002),(796657,'Scott Sidney',1874,1928),(796662,'Sylvia Sidney',1910,1999),(796710,'Abdulah Sidran',1944,NULL),(796796,'Steven Siebert',NULL,NULL),(796842,'Jim Siedow',1920,2003),(796847,'Ina Siefert',NULL,NULL),(796848,'Lynn Siefert',NULL,NULL),(796915,'David Siegel',NULL,NULL),(796923,'Don Siegel',1912,1991),(796928,'Eric Siegel',NULL,NULL),(796950,'Jerry Siegel',1914,1996),(797001,'Richard Siegel',NULL,NULL),(797010,'Shelby Siegel',NULL,NULL),(797012,'Sol C. Siegel',1903,1982),(797031,'Bernd Stegemann',1949,NULL),(797082,'Marc Siegler',1944,NULL),(797190,'Corey Sienega',1968,NULL),(797197,'Henryk Sienkiewicz',1846,1916),(797216,'Jörg Siepmann',1966,NULL),(797220,'Tom Sierchio',NULL,NULL),(797325,'Chris Sievernich',1946,NULL),(797397,'Clancy Sigal',1926,2017),(797451,'Sigurjon Sighvatsson',NULL,NULL),(797455,'Floria Sigismondi',1965,NULL),(797461,'Andrey Sigle',1964,NULL),(797526,'James Signorelli',NULL,NULL),(797531,'Simone Signoret',1921,1985),(797604,'Sjón',1962,NULL),(797610,'Sigurður Sigurjónsson',1955,NULL),(797612,'Jóhann Sigurðarson',1956,NULL),(797614,'Ingvar Sigurdsson',1963,NULL),(797631,'Caroline Silhol',1949,NULL),(797725,'James Sikking',1934,NULL),(797728,'Ferry Sikla',1865,1932),(797732,'Allison Siko',NULL,NULL),(797736,'Adam Sikora',1960,NULL),(797834,'David Silber',NULL,NULL),(797869,'Brad Silberling',1963,NULL),(797889,'Serge Silberman',1917,2003),(797952,'Kathie Sileno',NULL,NULL),(797962,'Megan Siler',NULL,NULL),(798002,'Carlo Siliotto',1950,NULL),(798027,'Mark Silk',1962,NULL),(798065,'Virginie Besson-Silla',NULL,NULL),(798076,'Karen Sillas',1963,NULL),(798103,'Stirling Silliphant',1918,1996),(798105,'Alan Sillitoe',1928,2010),(798270,'David Silva',1917,1976),(798328,'Henry Silva',1926,2022),(798338,'Hélio Silva',1929,NULL),(798354,'Jeff Silva',NULL,NULL),(798564,'Eugene Silvain',1851,1930),(798611,'Leonor Silveira',1970,NULL),(798640,'Alain Silver',NULL,NULL),(798646,'Amanda Silver',1963,NULL),(798658,'Cary Silver',NULL,NULL),(798661,'Casey Silver',1955,NULL),(798711,'Jeffrey Silver',NULL,NULL),(798717,'Joan Micklin Silver',1935,2020),(798718,'Joe Silver',1922,1989),(798779,'Ron Silver',1946,2009),(798788,'Scott Silver',NULL,NULL),(798800,'Stu Silver',1947,2023),(798807,'Timothy Silver',NULL,NULL),(798826,'Frank Silvera',1914,1970),(798844,'Robert Silverberg',1935,NULL),(798888,'Brad J. Silverman',NULL,NULL),(798889,'Cara Silverman',NULL,2014),(798899,'David Silverman',1957,NULL),(798930,'Julie Yorn',1969,NULL),(798968,'Ron Silverman',NULL,NULL),(798971,'Sarah Silverman',1970,NULL),(798978,'Stanley Silverman',1938,NULL),(798988,'Treva Silverman',1936,NULL),(799003,'Dean Silvers',NULL,NULL),(799014,'Phil Silvers',1911,1985),(799015,'Sid Silvers',1901,1976),(799033,'Elliot Silverstein',1927,NULL),(799049,'Louis M. Silverstein',NULL,NULL),(799050,'Marc Silverstein',1971,NULL),(799066,'Ben Silverstone',1979,NULL),(799111,'Emília Silvestre',1959,NULL),(799139,'Francesca Silvestri',NULL,NULL),(799200,'Roberto Silvi',NULL,NULL),(799237,'Alastair Sim',1900,1976),(799257,'Sheila Sim',1922,2016),(799312,'Jon Simanton',1970,2015),(799393,'Stefan Simchowitz',1970,NULL),(799402,'Anthony Simcoe',1969,NULL),(799442,'Georges Simenon',1903,1989),(799550,'Zoran Simjanovic',1946,2021),(799560,'Antoine Simkine',1961,NULL),(799562,'David Simkins',NULL,NULL),(799591,'John Simm',1970,NULL),(799654,'Posy Simmonds',1945,NULL),(799777,'J.K. Simmons',1955,NULL),(799841,'Matty Simmons',1926,2020),(799886,'Rudd Simmons',NULL,NULL),(799895,'Shadia Simmons',1986,NULL),(799958,'Erin Simms',1976,NULL),(799972,'Jay Simms',NULL,NULL),(800074,'Bruna Simionato',NULL,NULL),(800089,'Carly Simon',1943,NULL),(800097,'Christopher Simon',1963,NULL),(800163,'Gérard Simon',NULL,NULL),(800209,'Joe Simon',1913,2011),(800210,'Joel Simon',1950,2011),(800302,'Michel Simon',1895,1975),(800319,'Neil Simon',1927,2018),(800323,'Oliver Simon',1965,NULL),(800359,'Robert F. Simon',1908,1992),(800373,'S. Sylvan Simon',1910,1951),(800386,'Simone Simon',1911,2005),(800405,'Tim Simonec',NULL,NULL),(800419,'Yves Simon',1944,NULL),(800465,'Robert Simonds',1964,NULL),(800504,'Lisa Simone',1935,2020),(800631,'Albert Simonin',1905,1980),(800638,'Peter Simonischek',1946,2023),(800737,'Rikki Simons',1970,NULL),(800749,'William Simons',1940,2019),(800791,'Louise Simonson',1946,NULL),(800800,'Ola Simonsson',NULL,NULL),(800865,'Victor Simpkins',1954,NULL),(800896,'Andrew Simpson',NULL,NULL),(800922,'Brad Simpson',1973,NULL),(800927,'Byron Simpson',NULL,NULL),(800943,'Claire Simpson',NULL,NULL),(800951,'Daniel Simpson',NULL,NULL),(800971,'Don Simpson',1943,1996),(801005,'Geoffrey Simpson',NULL,NULL),(801026,'Helen Simpson',1897,1940),(801051,'Jimmi Simpson',1975,NULL),(801117,'Michael Simpson',NULL,NULL),(801130,'Mona Simpson',1957,NULL),(801163,'Ray Simpson',1952,NULL),(801184,'Robert L. Simpson',1910,1977),(801231,'Taylor Simpson',NULL,NULL),(801330,'Joan Sims',1930,2001),(801356,'Molly Sims',1973,NULL),(801446,'Sándor Simó',1934,2001),(801662,'Kim Sinclair',1954,NULL),(801674,'Malcolm Sinclair',1950,NULL),(801691,'Nigel Sinclair',NULL,NULL),(801721,'Ronald Sinclair',1924,1992),(801728,'Stephen Sinclair',NULL,NULL),(801737,'Upton Sinclair',1878,1968),(801774,'Pearl Sindelar',1887,1958),(801786,'Donald Sinden',1923,2014),(801836,'Karina Sinenko',NULL,NULL),(801882,'Alex Sanger',NULL,NULL),(801953,'Isaac Bashevis Singer',1904,1991),(801972,'Joseph Singer',NULL,NULL),(801991,'Loren Singer',1923,2009),(802020,'Randi Mayem Singer',NULL,NULL),(802027,'Raymond Singer',1948,NULL),(802033,'Robert Singer',NULL,NULL),(802081,'Anant Singh',NULL,NULL),(802168,'Manmohan Singh',NULL,NULL),(802248,'Tarsem Singh',1961,NULL),(802280,'Isaac C. Singleton Jr.',NULL,NULL),(802406,'Anu Sinisalo',1966,NULL),(802458,'Imre Sinkovits',1928,2001),(802462,'Albert Sinkys',1940,1999),(802463,'László Sinkó',1940,2015),(802470,'Ulrich Sinn',NULL,NULL),(802561,'Curt Siodmak',1902,2000),(802563,'Robert Siodmak',1900,1973),(802690,'N.C. Sippy',1926,2001),(802731,'Frank Siracusa',NULL,NULL),(802852,'Alain Siritzky',1942,2014),(802862,'Douglas Sirk',1897,1987),(802876,'Retta',NULL,NULL),(802995,'Greg Sestero',1978,NULL),(803006,'Shahr Banou Sisizadeh',NULL,NULL),(803022,'Alex Siskin',NULL,NULL),(803037,'Tomer Sisley',1974,NULL),(803085,'Fousseyni Sissoko',NULL,NULL),(803145,'Michelan Sisti',1949,NULL),(803203,'Rob Sitch',1962,NULL),(803263,'Olivier Sitruk',1970,NULL),(803310,'Siu Ping-Lam',NULL,NULL),(803314,'Stephen Shiu',NULL,NULL),(803325,'Eva Siva',NULL,NULL),(803348,'Ori Sivan',1963,NULL),(803366,'Vaughan Sivell',1976,NULL),(803397,'Jamie Sives',1973,NULL),(803549,'Alf Sjöberg',1903,1980),(803568,'Jonathan Sjöberg',NULL,NULL),(803672,'Vilgot Sjöman',1924,2006),(803705,'Victor Sjöström',1879,1960),(803730,'Warren Skaaren',1946,1990),(803785,'Lilia Skala',1896,1994),(803826,'Mary Jane Skalski',NULL,NULL),(803889,'Bill Skarsgård',1990,NULL),(803890,'Gustaf Skarsgård',1980,NULL),(803928,'Jenny Skavlan',1986,NULL),(803931,'Petter Skavlan',1956,NULL),(803984,'Roy Skeggs',1934,2018),(804026,'Red Skelton',1913,1997),(804062,'Carl-Olov Skeppstedt',1922,1996),(804206,'Anita Skinner',NULL,NULL),(804207,'Ann Skinner',1937,NULL),(804218,'Claire Skinner',1964,NULL),(804224,'Cornelia Otis Skinner',1899,1979),(804244,'Frank Skinner',1897,1968),(804345,'John Skipp',1957,NULL),(804382,'Jack H. Skirball',1896,1985),(804408,'Erik Skjoldbjærg',1964,NULL),(804434,'Max Skladanowsky',1863,1939),(804443,'Chuck Sklar',NULL,NULL),(804455,'Matthew Sklar',1973,NULL),(804466,'Zachary Sklar',NULL,NULL),(804480,'Adam Richard Sklena',NULL,NULL),(804492,'Karen Skloss',NULL,NULL),(804556,'Kari Skogland',NULL,NULL),(804592,'Jerzy Skolimowski',1938,NULL),(804623,'Sidney Skolsky',1905,1983),(804736,'Mogens Skot-Hansen',1908,1984),(804755,'Maria Skoula',NULL,NULL),(804773,'Camilla Skousen',1942,NULL),(804918,'Cezary Skubiszewski',NULL,NULL),(805055,'Tristine Skyler',1971,NULL),(805073,'Antonio Skármeta',1940,NULL),(805112,'Igor Slabnevich',1921,2007),(805164,'Demian Slade',1972,NULL),(805172,'Jack Slade',NULL,NULL),(805177,'Jeremy Slate',1926,2006),(805235,'David Faivre',NULL,NULL),(805246,'Bohdan Sláma',1967,NULL),(805265,'Jon Slan',NULL,NULL),(805284,'Paul Slansky',NULL,NULL),(805476,'John Slattery',1962,NULL),(805593,'Martin Slavin',1922,1988),(805635,'Leigh Scott',1972,NULL),(805678,'Ginger Sledge',NULL,NULL),(805701,'Martha Sleeper',1910,1983),(805711,'Frantisek Slégr',1894,1971),(805756,'Tess Slesinger',1905,1945),(805789,'Victor Slezak',1957,NULL),(805790,'Walter Slezak',1902,1983),(805918,'Adam Sliwinski',NULL,NULL),(805935,'Brian Sloan',NULL,NULL),(805957,'Douglas Sloan',NULL,NULL),(805965,'Holly Goldberg Sloan',1958,NULL),(805994,'Michael Sloan',1946,NULL),(806003,'Peter Stein',1944,NULL),(806041,'Everett Sloane',1909,1965),(806189,'John Sloss',1956,NULL),(806197,'Marianne Slot',1968,NULL),(806252,'Michael Slovis',NULL,NULL),(806255,'Robyn Slovo',NULL,NULL),(806268,'Pat Slowey',NULL,NULL),(806277,'James Sloyan',1940,NULL),(806293,'George Sluizer',1932,2014),(806430,'Brendon Small',1975,NULL),(806448,'Edward Small',1891,1977),(806498,'Michael Small',1939,2003),(806527,'Sharon Small',1967,NULL),(806565,'Phillips Smalley',1875,1939),(806583,'Charlie Smalls',1943,1987),(806613,'Tucker Smallwood',1944,NULL),(806687,'Pat D. Smart',NULL,NULL),(806693,'Rebecca Smart',1976,NULL),(806764,'Brian Smedley-Aston',1935,NULL),(806830,'Marc Smerling',NULL,NULL),(806912,'Robert Smigel',1960,NULL),(806915,'Jack Smight',1925,2003),(806968,'Michael Smiley',1963,NULL),(806982,'Tava Smiley',1971,NULL),(807076,'Marina Smirnova',NULL,NULL),(807170,'Robert Smith Jr.',NULL,NULL),(807224,'Alan McIntyre Smith',NULL,NULL),(807236,'Albert E. Smith',1875,1958),(807252,'Alexis Smith',1921,1993),(807351,'Arjay Smith',1983,NULL),(807375,'Arturo Smith',NULL,NULL),(807413,'BC Smith',NULL,NULL),(807466,'Blair Smith',1859,NULL),(807506,'Brandon Mychal Smith',1989,NULL),(807531,'Brian Smith',NULL,NULL),(807548,'Brooke Smith',NULL,NULL),(807571,'Bubba Smith',1945,2011),(807573,'Bud S. Smith',NULL,NULL),(807580,'C. Aubrey Smith',1863,1948),(807667,'Charles Henry Smith',1866,1942),(807679,'Cheryl Smith',1955,2002),(807685,'Chloe Smith',NULL,NULL),(807773,'Craig Smith',NULL,NULL),(807834,'Danny Smith',NULL,NULL),(807900,'David Lee Smith',1963,NULL),(807901,'David Lewis Smith',NULL,NULL),(807906,'Dwan Smith',1944,NULL),(807977,'Dodie Smith',1896,1990),(808022,'Douglas Smith',NULL,NULL),(808057,'Dylan Smith',1992,NULL),(808073,'Earl E. Smith',NULL,NULL),(808136,'Emile Edwin Smith',1971,NULL),(808170,'Ernie Smith',NULL,NULL),(808178,'Ethan Smith',NULL,NULL),(808252,'Fredrick Y. Smith',1903,1991),(808292,'Gavin Smith',NULL,NULL),(808310,'George Albert Smith',1864,1959),(808376,'Gregory Smith',1983,NULL),(808401,'Hal Smith',1916,1994),(808410,'Harley Quinn Smith',1999,NULL),(808414,'Harold Jacob Smith',1912,1970),(808473,'Howard Smith',1893,1968),(808477,'Howard Smith',1933,2022),(808483,'Howard E. Smith',1945,NULL),(808484,'Howard Ellis Smith',NULL,NULL),(808498,'Iain Smith',1949,NULL),(808511,'Irby Smith',NULL,NULL),(808600,'Jamie Smith',NULL,NULL),(808603,'Jamie Renée Smith',1987,NULL),(808780,'John Smith',NULL,NULL),(808807,'John N. Smith',1943,NULL),(808819,'Jonah Smith',1975,NULL),(808902,'Kavan Smith',1970,NULL),(808914,'Keith L. Smith',NULL,NULL),(808949,'Kent Smith',1907,1985),(808958,'Kermit Smith',1952,2001),(809006,'Kirsten Smith',1970,NULL),(809029,'Lance Smith',1960,2020),(809031,'Lane Smith',1936,2005),(809040,'Larry Smith',NULL,NULL),(809049,'Lauren Lee Smith',1980,NULL),(809059,'Lee Smith',1960,NULL),(809079,'Leonard Smith',1894,1947),(809135,'Lois Smith',1930,NULL),(809184,'Madeline Smith',1949,NULL),(809205,'Marc Smith',NULL,NULL),(809285,'Matt Smith',NULL,NULL),(809321,'Mel Smith',1952,2013),(809344,'Michael Bailey Smith',1957,NULL),(809402,'Miriama Smith',1976,NULL),(809419,'Laura Bayley',1862,1938),(809449,'Nicholas C. Smith',NULL,NULL),(809544,'Paul L. Smith',1936,2012),(809548,'Paul Gerard Smith',1894,1968),(809551,'Paul Martin Smith',NULL,NULL),(809572,'Pete Smith',1959,2022),(809731,'Robert Smith',NULL,NULL),(809740,'Robert Smith',1949,NULL),(809764,'Robert S. Smith',NULL,NULL),(809787,'Roger Smith',NULL,NULL),(809831,'Russell Smith',NULL,NULL),(809833,'Russell Smith',1954,NULL),(809840,'Rusty Smith',NULL,NULL),(809877,'Sarah Smith',NULL,NULL),(809895,'Scott B. Smith',1965,NULL),(809899,'Scott Marshall Smith',1958,2020),(809938,'Shawnee Smith',1969,NULL),(809995,'Stacey Smith',NULL,NULL),(809998,'Stacy Smith',NULL,NULL),(810055,'Sue Smith',NULL,NULL),(810058,'Sukie Smith',1964,NULL),(810086,'T. Ryder Smith',NULL,NULL),(810158,'Thorne Smith',1892,1934),(810272,'Vinny Smith',NULL,NULL),(810337,'Will Smith',1971,NULL),(810342,'William Smith',1933,2021),(810349,'William Smith',NULL,NULL),(810379,'Yeardley Smith',1964,NULL),(810397,'J. Smith-Cameron',1957,NULL),(810430,'Ben Smithard',NULL,NULL),(810478,'John Smithson',NULL,NULL),(810488,'Bill Smitrovich',NULL,NULL),(810500,'Sonja Smits',1958,NULL),(810545,'Peter Smokler',NULL,NULL),(810619,'Jurnee Smollett',1986,NULL),(810620,'Jussie Smollett',NULL,NULL),(810890,'Wim Snape',1985,NULL),(811056,'Peter Snell',1938,NULL),(811072,'Jeffrey M. Sneller',NULL,NULL),(811100,'Sergey Snezhkin',1954,NULL),(811138,'Norman Snider',1945,2019),(811202,'Carrie Snodgress',1945,2004),(811242,'Brittany Snow',1986,NULL),(811285,'Karen Snow',NULL,NULL),(811360,'Michael Anthony Snowden',NULL,NULL),(811414,'Blake Snyder',1957,2009),(811435,'David L. Snyder',NULL,NULL),(811436,'Dawn Snyder',NULL,NULL),(811515,'Maria Snyder',NULL,NULL),(811562,'Suzanne Snyder',1962,NULL),(811580,'William E. Snyder',1901,1984),(811583,'Zack Snyder',1966,NULL),(811611,'So Yong Kim',1968,NULL),(811709,'Elena Soarez',NULL,NULL),(811749,'Curt Sobel',1953,NULL),(811761,'Joan Sobel',NULL,NULL),(811773,'Patrick Sobelman',1956,NULL),(811785,'Héctor Soberón',1964,NULL),(811807,'Carol Sobieski',1939,1990),(811834,'Piotr Sobocinski',1958,2001),(811940,'María Socas',NULL,NULL),(812121,'Gerard Soeteman',1936,NULL),(812133,'Rena Sofer',1968,NULL),(812179,'Jaromír Sofr',1939,NULL),(812200,'Iain Softley',1958,NULL),(812228,'Masashi Sogo',NULL,NULL),(812298,'Coley Sohn',NULL,NULL),(812307,'Peter Sohn',1977,NULL),(812358,'Gérard Soirant',NULL,NULL),(812373,'Joel Soisson',NULL,NULL),(812399,'Harry R. Sokal',1898,1979),(812427,'Marilyn Sokol',1944,NULL),(812513,'Alec Sokolow',NULL,NULL),(812546,'Aleksandr Sokurov',1951,NULL),(812555,'Sol Kyung-gu',1968,NULL),(812606,'Martial Solal',1927,NULL),(812675,'Rosalío Solano',1914,2009),(812702,'Ana Solares',NULL,NULL),(812827,'Mario Soldati',1906,1999),(812843,'Laly Soldevila',1933,1979),(812862,'Silvio Soldini',1958,NULL),(812992,'Toti Soler',1949,NULL),(813015,'Paul Soles',1930,2021),(813068,'Chris Solimine',NULL,NULL),(813082,'Marisa Solinas',1939,2019),(813164,'Peter Sollett',1976,NULL),(813214,'Victor Solnicki',NULL,2016),(813227,'Robert H. Solo',1932,2018),(813272,'Yuriy Solomin',1935,NULL),(813289,'Aubrey Solomon',NULL,NULL),(813301,'Cary Solomon',1958,NULL),(813309,'Courtney Solomon',1971,NULL),(813367,'Ken Solomon',NULL,NULL),(813390,'Mark Solomon',NULL,NULL),(813414,'Richard Solomon',NULL,NULL),(813429,'Susan Solomon-Shapiro',NULL,NULL),(813439,'Julia Solomonoff',1968,NULL),(813463,'Anatoliy Solonitsyn',1934,1982),(813554,'Eugene Solow',1904,1968),(813555,'Herbert F. Solow',1930,2020),(813561,'Joey Soloway',1965,NULL),(813584,'Andrew Solt',1916,1990),(813691,'Miguel Ángel Solá',1950,NULL),(813805,'Yanti Somer',1948,NULL),(813812,'Ian Somerhalder',1978,NULL),(813882,'Pat Somerset',NULL,NULL),(813887,'Bonnie Somerville',1974,NULL),(813893,'Geraldine Somerville',1967,NULL),(813896,'Jimmy Somerville',1961,NULL),(813922,'Artúr Somlay',1883,1951),(813961,'Elke Sommer',1940,NULL),(813977,'Josef Sommer',1934,NULL),(814047,'Andy Summers',1942,NULL),(814085,'Stephen Sommers',1962,NULL),(814114,'Adam Somner',NULL,NULL),(814216,'Gale Sondergaard',1899,1985),(814227,'Stephen Sondheim',1930,2021),(814232,'Chûsei Sone',1937,2014),(814242,'Rodolfo Sonego',1921,2000),(814259,'Brenda Song',1988,NULL),(814280,'Song Kang-ho',1967,NULL),(814412,'Rebecca Sonnenshine',NULL,NULL),(814469,'Sion Sono',1961,NULL),(814473,'Hideki Sonoda',NULL,NULL),(814530,'Jack Soo',1917,1979),(814552,'Veena Sood',NULL,NULL),(814668,'Sophocles',NULL,NULL),(814716,'Ömer Faruk Sorak',1964,NULL),(814773,'Alberto Sordi',1920,2003),(814799,'Jean Sorel',1934,NULL),(814811,'Ted Sorel',1936,2010),(814862,'Rickie Sorensen',1946,1994),(814969,'Mireille Soria',NULL,NULL),(815044,'Carlos Sorin',1944,NULL),(815070,'Aaron Sorkin',1961,NULL),(815071,'Arleen Sorkin',1955,2023),(815081,'Grégoire Sorlat',NULL,NULL),(815204,'Paolo Sorrentino',1970,NULL),(815370,'Shannyn Sossamon',NULL,NULL),(815418,'Paul Soter',1969,NULL),(815432,'Vicki Sotheran',NULL,NULL),(815433,'Ann Sothern',1909,2001),(815529,'Gabriel Soto',1975,NULL),(815610,'Daniela Taplin Lundberg',NULL,NULL),(815668,'Zinedine Soualem',1957,NULL),(815689,'Claudine Soubrier',NULL,NULL),(815718,'Kath Soucie',1953,NULL),(815747,'Robert Souders',NULL,NULL),(815800,'David Soul',1943,NULL),(815849,'Paul Soulignac',1914,NULL),(815864,'Nico Soultanakis',NULL,NULL),(815931,'Mark Sourian',NULL,NULL),(816030,'Renée Soutendijk',1957,NULL),(816050,'Margaret South',NULL,NULL),(816110,'Lynne Southerland',NULL,NULL),(816123,'Eve Southern',1898,1972),(816143,'Terry Southern',1924,1995),(816161,'A.E. Southon',1887,1964),(816292,'Peter Sova',1944,2020),(816348,'Jack B. Sowards',1929,2007),(816387,'Dunja Sowinetz',NULL,NULL),(816457,'Catherine Spaak',1945,2022),(816458,'Charles Spaak',1903,1975),(816551,'Meema Spadola',NULL,NULL),(816606,'Alberto Spagnoli',1936,1985),(816719,'Kim Spalding',1915,2000),(816788,'Ron Spang',NULL,NULL),(816817,'Suzanne Spangler',NULL,NULL),(816844,'Martin Spanjers',1987,NULL),(816845,'DJ Spank',NULL,NULL),(816868,'Søren Spanning',1951,2020),(816914,'Dejan Sparavalo',NULL,NULL),(816917,'Izzy Sparber',1906,1958),(816944,'Muriel Spark',1918,2006),(816950,'John Sparkes',1954,NULL),(817021,'Ned Sparks',1883,1957),(817023,'Nicholas Sparks',1965,NULL),(817027,'Paul Sparks',1971,NULL),(817065,'David Sparling',NULL,NULL),(817070,'Kent Sparling',1966,NULL),(817122,'Camilla Sparv',1943,NULL),(817277,'Peter Speakman',1971,NULL),(817295,'David Spear',1953,NULL),(817311,'Mara A. Spear',NULL,NULL),(817353,'Eddie Spears',1982,NULL),(817375,'Michael Spears',1977,NULL),(817379,'Peter Spears',NULL,NULL),(817414,'Georges Specht',1883,1971),(817447,'Will Speck',NULL,NULL),(817468,'Craig Spector',1958,NULL),(817506,'David Speechley',1931,NULL),(817508,'Glynn Speeckaert',1964,NULL),(817585,'Bill Speers',NULL,NULL),(817620,'Richard Speight Jr.',1970,NULL),(817635,'Dona Speir',1964,NULL),(817697,'Cathy Cash Spellman',NULL,NULL),(817748,'Bruce Spence',1945,NULL),(817780,'Jennifer Spence',NULL,NULL),(817809,'Ralph Spence',1890,1949),(817819,'Sebastian Spence',1969,NULL),(817844,'Abigail Spencer',1981,NULL),(817881,'Bud Spencer',1929,2016),(817929,'Dorothy Spencer',1909,2002),(817980,'Jesse Spencer',1979,NULL),(817983,'John Spencer',1946,2005),(818050,'Norman Spencer',1914,NULL),(818055,'Octavia Spencer',1970,NULL),(818166,'Tara Spencer-Nairn',1978,NULL),(818201,'Pierre Spengler',1947,NULL),(818237,'Rob Spera',NULL,NULL),(818293,'Gabriela Sperl',1952,NULL),(818304,'Andrea Sperling',NULL,NULL),(818316,'Heike Sperling',NULL,NULL),(818328,'Milton Sperling',1912,1988),(818373,'Stephane Sperry',NULL,NULL),(818415,'Bella Spewack',1899,1990),(818416,'Sam Spewack',1899,1971),(818465,'Bryan Spicer',NULL,NULL),(818484,'Marc Spicer',NULL,NULL),(818485,'Matt Spicer',1984,NULL),(818545,'Sam Spiegel',1901,1985),(818547,'Scott Spiegel',1957,NULL),(818567,'Karl Spiehs',1931,2022),(818576,'Anne Spielberg',1949,NULL),(818587,'Sasha Spielberg',1990,NULL),(818608,'Götz Spielmann',1961,NULL),(818621,'Carol Spier',NULL,NULL),(818639,'Bob Spiers',1945,2008),(818650,'Amy Spies',NULL,NULL),(818657,'James Spies',NULL,NULL),(818683,'Tom Spiess',NULL,NULL),(818700,'Leonard Spigelgass',1908,1985),(818709,'Joseph Spigler',NULL,NULL),(818731,'Barry Spikings',1939,NULL),(818746,'Evan Spiliotopoulos',NULL,NULL),(818785,'Michael Spiller',NULL,NULL),(818874,'Joe Spinell',1936,1989),(818880,'Stephen Spinella',1956,NULL),(818889,'Gary Spinelli',NULL,NULL),(818920,'Victor Spinetti',1929,2012),(818940,'J.C. Spink',1973,2017),(818996,'Michel Spinosa',NULL,NULL),(819087,'Samantha Spiro',1968,NULL),(819089,'Tom Spiroff',NULL,2021),(819225,'Emily Spivey',NULL,NULL),(819285,'Mike Spodnik',NULL,NULL),(819293,'Heinrich Spoerl',1887,1955),(819339,'Marco Spoletini',1964,NULL),(819412,'Lisa Spoonauer',1972,2017),(819439,'Simone Spörl',NULL,NULL),(819487,'Frank Spotnitz',1960,NULL),(819501,'John Spotton',1927,1991),(819522,'Rob Sprackling',NULL,NULL),(819525,'G.D. Spradlin',1920,2011),(819613,'Jill Sprecher',NULL,NULL),(819614,'Karen Sprecher',NULL,NULL),(819655,'Elizabeth Spriggs',1929,2008),(819702,'Alejandro Springall',1966,NULL),(819711,'Aaron Springer',1973,NULL),(819741,'Mark Springer',NULL,NULL),(819764,'Thomas Springer',NULL,NULL),(819803,'Bruce Springsteen',1949,NULL),(819825,'Ove Sprogøe',1919,2004),(819850,'Cole Sprouse',1992,NULL),(819851,'Dylan Sprouse',1992,NULL),(819862,'David Sproxton',1954,NULL),(819874,'Sam Spruell',1977,NULL),(820042,'Luigi Squarzina',1922,2010),(820053,'June Squibb',1929,NULL),(820109,'William Squire',1917,1989),(820114,'Chris Squires',NULL,NULL),(820163,'Tim Squyres',1959,NULL),(820269,'P.C. Sreeram',1956,NULL),(820277,'Jaran \'See Tao\' Petcharoen',NULL,NULL),(820283,'Anjan Srivastav',1948,NULL),(820306,'Alfred Srp',1927,1987),(820429,'Beau St. Clair',1952,2016),(820461,'Malcolm St. Clair',1897,1952),(820513,'Madelon St. Dennis',1884,NULL),(820520,'Patrick St. Esprit',1954,NULL),(820626,'Christopher St. John',NULL,NULL),(820643,'Howard St. John',1905,1974),(820660,'Marco St. John',1939,NULL),(820669,'Nicholas St. John',NULL,NULL),(820687,'Stephen St. John',NULL,NULL),(820693,'Theodore St. John',1906,1956),(820800,'Daniel St. Pierre',1961,NULL),(820847,'Rebecca Staab',NULL,NULL),(820852,'Jim Staahl',NULL,NULL),(820903,'Nick Stabile',NULL,NULL),(820908,'Giovanni Stabilini',NULL,NULL),(820925,'Steven Stabler',NULL,NULL),(820934,'Anthony Stacchi',NULL,NULL),(820987,'Terry Stacey',1962,NULL),(821031,'Jeanne Stack',NULL,NULL),(821041,'Robert Stack',1919,2003),(821070,'Henry De Vere Stacpoole',1863,1951),(821082,'James Stacy',1936,2016),(821113,'Aljoscha Stadelmann',1974,NULL),(821131,'Hildegarde Stadie',1895,1993),(821132,'William Stadiem',NULL,NULL),(821177,'Robert Stadlober',1982,NULL),(821179,'Hanala Sagal',1956,NULL),(821205,'Zach Staenberg',1954,NULL),(821247,'Bill Stafford',NULL,NULL),(821248,'Bing Stafford',NULL,NULL),(821276,'Fred Stafford',NULL,NULL),(821278,'Freya Stafford',1977,NULL),(821311,'Kate Stafford',NULL,NULL),(821338,'Robert Stafford',1910,2003),(821406,'Nick Stagliano',NULL,NULL),(821417,'Rama Laurie Stagner',1962,NULL),(821432,'Chad Stahelski',1968,NULL),(821466,'Jerry Stahl',1953,NULL),(821472,'John M. Stahl',1886,1950),(821526,'Simon Staho',1972,NULL),(821543,'Enzo Staiola',1939,NULL),(821637,'Marion Stalens',NULL,NULL),(821716,'Laurence Stallings',1894,1968),(821734,'Frank Stallone',1950,NULL),(821739,'Sage Stallone',1976,2012),(821786,'Dino Stamatopoulos',1964,NULL),(821844,'Daniel Stamm',1976,NULL),(821925,'Atilio Stampone',1926,2022),(822034,'Lionel Stander',1908,1994),(822059,'Herbert Standing',1846,1923),(822101,'Glenn Standring',NULL,NULL),(822155,'Aaron Stanford',NULL,NULL),(822157,'Alan Stanford',1949,NULL),(822285,'John Stanier',1942,NULL),(822315,'Stanislas Syrewicz',1946,NULL),(822582,'Richard Stanley',1966,NULL),(822627,'Eliot Stannard',1888,1944),(822628,'Julia Stannard',NULL,NULL),(822637,'Ron Stannett',NULL,NULL),(822711,'Lita Stantic',NULL,NULL),(822928,'Stuart Staples',NULL,NULL),(822972,'Maureen Stapleton',1925,2006),(822974,'Nicola Stapleton',1974,NULL),(822975,'Oliver Stapleton',1948,NULL),(822982,'Sullivan Stapleton',1977,NULL),(823015,'Darren Star',1961,NULL),(823059,'Chez Starbuck',1982,NULL),(823085,'Dimos Starenios',1909,1983),(823133,'Austin Stark',1979,NULL),(823196,'Jim Stark',NULL,NULL),(823206,'Jonathan Stark',1952,NULL),(823255,'Philip Stark',NULL,NULL),(823256,'Ray Stark',1915,2004),(823279,'Ulf Stark',1944,2017),(823284,'William Starks',1879,1937),(823288,'Andrew Starke',NULL,NULL),(823322,'Ken Starkey',NULL,NULL),(823330,'Steve Starkey',NULL,NULL),(823435,'Diego Starosta',NULL,NULL),(823465,'Ben Starr',1921,2014),(823507,'Fredro Starr',1971,NULL),(823536,'JoeyStarr',1967,NULL),(823563,'Mike Starr',1950,NULL),(823592,'Ringo Starr',1940,NULL),(823630,'Jack Starrett',1936,1989),(823638,'Scott Starrett',NULL,NULL),(823661,'Jane Startz',NULL,NULL),(823721,'Ben Stassen',NULL,NULL),(823725,'Willy Stassen',1948,NULL),(823864,'Ralph Staub',1899,1969),(823898,'Hannes Staudinger',1907,1974),(823900,'Cassis Birgit Staudt',NULL,NULL),(824046,'Jerzy Stefan Stawinski',1921,2010),(824085,'Brendan Steacy',NULL,NULL),(824102,'Alison Steadman',1946,NULL),(824113,'John Steadman',1909,1993),(824117,'Lynda Steadman',1962,NULL),(824139,'John Steakley',1951,2010),(824175,'Craig Stearns',NULL,NULL),(824195,'Michael Stearns',NULL,NULL),(824216,'Giorgio Stegani',1928,2020),(824217,'Andy Stebbing',NULL,NULL),(824220,'Peter Stebbings',1971,NULL),(824240,'Greg Stebner',NULL,NULL),(824361,'Doug Steeden',NULL,NULL),(824373,'Johanna ter Steege',1961,NULL),(824386,'Amy Steel',1960,NULL),(824389,'Anthony Steel',1920,2001),(824395,'Charles Steel',NULL,NULL),(824406,'Dawn Steel',1946,1997),(824417,'George Steel',NULL,NULL),(824448,'Pippa Steel',1948,1992),(824470,'Eric Steelberg',NULL,NULL),(824473,'Aaron Stell',1911,1996),(824482,'Andrew Steele',NULL,NULL),(824489,'Barbara Steele',1937,NULL),(824600,'Jon Gary Steele',NULL,NULL),(824638,'Polly Steele',NULL,NULL),(824651,'Rob Steele',NULL,2022),(824655,'Robin Steele',NULL,NULL),(824715,'Stanislas-André Steeman',1908,1970),(824763,'Jessica Steen',1965,NULL),(824785,'Paprika Steen',1964,NULL),(824831,'Jules van den Steenhoven',1950,NULL),(824852,'Henriette Steenstrup',1974,NULL),(824882,'Burr Steers',1965,NULL),(824913,'Mario Stefan',NULL,NULL),(824966,'Michael Stefani',1933,2019),(824997,'Rob Stefaniuk',NULL,NULL),(825010,'Joseph Stefano',1922,2006),(825016,'Rachel Stefanopoli',NULL,NULL),(825209,'Mark Steger',1962,NULL),(825231,'Bernice Stegers',1949,NULL),(825294,'Warren Steibel',1925,2002),(825308,'William Steig',1907,2003),(825336,'Ueli Steiger',1954,NULL),(825350,'Nicolas Steil',NULL,NULL),(825356,'Mark Steilen',NULL,NULL),(825360,'David Steiman',NULL,NULL),(825392,'Ann Stein',NULL,NULL),(825407,'Björn Stein',1970,NULL),(825417,'Carmen Stein',NULL,NULL),(825421,'Chris Stein',1950,NULL),(825434,'Darren Stein',1971,NULL),(825464,'Garth Stein',1965,NULL),(825559,'Mark Stein',NULL,NULL),(825627,'Saul Stein',NULL,NULL),(825705,'John Steinbeck',1902,1968),(825730,'Christina Steinberg',NULL,NULL),(825731,'David Steinberg',1942,NULL),(825738,'David H. Steinberg',NULL,NULL),(825756,'Gustavo Steinberg',NULL,NULL),(825790,'Michael Steinberg',1959,NULL),(825799,'Norman Steinberg',1939,2023),(825846,'Angelika Steinbock',NULL,NULL),(825877,'Scott Steindorff',1959,NULL),(825896,'Anne Steiner',NULL,NULL),(825988,'Reed Steiner',NULL,NULL),(826050,'Jon Steingart',NULL,NULL),(826091,'Andreas Steinhöfel',1962,NULL),(826114,'Fredric Steinkamp',1928,2002),(826137,'Bill Steinkellner',1949,NULL),(826164,'Danny Steinmann',1942,2012),(826198,'Robert J. Steinmiller Jr.',1978,NULL),(826369,'Martin Stellman',1948,NULL),(826425,'J. David Stem',NULL,NULL),(826437,'Gerard Stembridge',1958,NULL),(826452,'Robert A. Stemmle',1903,1974),(826554,'Salka Viertel',1889,1978),(826588,'Mack Stengler',1895,1962),(826642,'Steno',1917,1988),(826662,'Yutte Stensgaard',1946,NULL),(826663,'Molly Malene Stensgaard',1966,NULL),(826679,'Mike Stenson',NULL,NULL),(826693,'Jim Stenstrum',NULL,NULL),(826701,'Alan Stensvold',1908,1981),(826714,'Zack Stentz',NULL,NULL),(826745,'Brian Stepanek',1971,NULL),(826932,'Mary Stephen',NULL,NULL),(827031,'Harvey Stephens',1901,1986),(827032,'Harvey Stephens',1970,NULL),(827063,'John M. Stephens',1932,2015),(827071,'Kara Stephens',NULL,NULL),(827137,'Robert Stephens',1931,1995),(827170,'Toby Stephens',1969,NULL),(827171,'Todd Stephens',NULL,NULL),(827250,'Geoffrey Stephenson',NULL,NULL),(827261,'Henry Stephenson',1871,1956),(827263,'James Stephenson',1889,1941),(827294,'Michael Paul Stephenson',NULL,NULL),(827296,'Nicola Stephenson',1971,NULL),(827454,'Gérard Sterin',NULL,NULL),(827500,'David S. Sterling',NULL,NULL),(827509,'Ford Sterling',1883,1939),(827533,'John Sterling',NULL,NULL),(827561,'Maury Sterling',1971,NULL),(827624,'Alex Stern',NULL,NULL),(827632,'Andrew Stern',NULL,NULL),(827663,'Daniel Stern',1957,NULL),(827670,'David I. Stern',NULL,NULL),(827726,'James D. Stern',NULL,NULL),(827731,'Jay Stern',NULL,NULL),(827746,'Jonathan Stern',NULL,NULL),(827767,'Leonard Stern',1922,2011),(827821,'Philip Van Doren Stern',1900,1984),(827827,'Richard Martin Stern',1915,2001),(827839,'Sandor Stern',1936,NULL),(827840,'Sandy Stern',NULL,NULL),(827856,'Stewart Stern',1922,2015),(827868,'Tom Stern',NULL,NULL),(827869,'Tom Stern',1946,NULL),(827913,'Marc Sternberg',NULL,NULL),(827923,'Tom Sternberg',NULL,NULL),(827957,'Jerry Sterner',1938,2001),(827965,'Stephanie Sterner',NULL,NULL),(827973,'Frances Sternhagen',1930,NULL),(827985,'Joshua Sternin',1966,NULL),(828130,'Philip Steuer',NULL,NULL),(828177,'Steve-O',1974,NULL),(828207,'Robert Stevenhagen',NULL,NULL),(828245,'Art Stevens',1915,2007),(828288,'Brinke Stevens',1954,NULL),(828310,'Cat Stevens',1948,NULL),(828342,'Dana Stevens',NULL,NULL),(828349,'Dave Stevens',1955,2008),(828419,'George Stevens',1904,1975),(828435,'Grace Simon',NULL,NULL),(828447,'Inger Stevens',1934,1970),(828452,'Jack Stevens',1903,1961),(828464,'James Castle Stevens',1964,NULL),(828521,'Julie Stevens',NULL,NULL),(828594,'Mark Stevens',1916,1994),(828596,'Mark Stevens',NULL,NULL),(828630,'Michael Stevens',NULL,NULL),(828731,'Robert M. Stevens',NULL,NULL),(828838,'Warren Stevens',1919,2012),(828906,'Cynthia Stevenson',1962,NULL),(828961,'Jessica Hynes',1972,NULL),(828970,'John Stevenson',NULL,NULL),(828980,'Juliet Stevenson',1956,NULL),(829032,'Ray Stevenson',1964,2023),(829037,'Rick Stevenson',NULL,NULL),(829038,'Robert Stevenson',1905,1986),(829044,'Robert Louis Stevenson',1850,1894),(829054,'Scott Stevenson',NULL,NULL),(829070,'William Stevenson',NULL,NULL),(829101,'Ernest Steward',1910,1990),(829152,'Alan Stewart',1960,NULL),(829155,'Alexandra Stewart',1939,NULL),(829176,'Annie Stewart',NULL,NULL),(829252,'Catherine Mary Stewart',1959,NULL),(829259,'Charles Stewart',NULL,NULL),(829270,'Charlotte Stewart',1941,NULL),(829329,'Donald E. Stewart',1930,1999),(829330,'Donald Ogden Stewart',1894,1980),(829343,'Douglas Day Stewart',NULL,NULL),(829378,'Eve Stewart',1961,NULL),(829435,'Hugh Stewart',1910,2011),(829480,'Jane Ann Stewart',NULL,NULL),(829537,'Jon Stewart',1962,NULL),(829576,'Kristen Stewart',1990,NULL),(829579,'Larry Stewart',1930,1997),(829593,'Leslie Stewart',1949,NULL),(829601,'Lisa Stewart',NULL,NULL),(829623,'Maclean Stewart',1976,NULL),(829635,'Mark Stewart',NULL,NULL),(829640,'Mark Hinton Stewart',NULL,NULL),(829650,'Mary Stewart',1916,2014),(829661,'Michael Stewart',1924,1987),(829681,'Missy Stewart',NULL,NULL),(829722,'Paul Anthony Stewart',NULL,NULL),(829739,'R.J. Stewart',NULL,NULL),(829775,'Robert Banks Stewart',1931,2016),(829778,'Robert A. Stuart',1869,1950),(829820,'Scott Stewart',NULL,NULL),(829901,'Will Stewart',1971,NULL),(829916,'Daniel Stewart Sherman',1970,NULL),(829925,'Alex Steyermark',NULL,NULL),(830059,'Ethan Stiefel',1973,NULL),(830085,'Laila Stieler',1965,NULL),(830153,'Hugo Stiglitz',1940,NULL),(830164,'Robert Stigwood',1934,2016),(830241,'Robin Stille',1961,1996),(830249,'Mauritz Stiller',1883,1928),(830255,'Joel Stillerman',NULL,NULL),(830294,'Joe Stillman',NULL,NULL),(830371,'Slavko Stimac',1960,NULL),(830411,'Clifford Stine',1906,1986),(830419,'R.L. Stine',1943,NULL),(830503,'Lucki Stipetic',1947,NULL),(830556,'Rachael Stirling',1977,NULL),(830615,'Kevin Stitt',NULL,NULL),(830626,'Robert Stitzel',NULL,NULL),(830638,'David Stiven',1940,NULL),(830760,'Aaron Stockard',NULL,NULL),(830767,'Sara Stockbridge',1965,NULL),(830775,'Gary Stockdale',NULL,NULL),(830802,'Laurent Stocker',1973,NULL),(830833,'Peter Stockhaus',1960,NULL),(830968,'Harry Stockwell',1905,1984),(830969,'Jeff Stockwell',NULL,NULL),(831013,'Richard Stoddard',NULL,NULL),(831045,'Orville Stoeber',1947,NULL),(831098,'Erwin Stoff',1951,NULL),(831114,'Rogier Stoffers',1961,NULL),(831130,'Margaret Stohl',NULL,NULL),(831254,'Andre Stojka',1935,NULL),(831281,'Danielle Stokdyk',NULL,NULL),(831288,'Austin Stoker',1930,2022),(831290,'Bram Stoker',1847,1912),(831321,'Chris Stokes',NULL,NULL),(831408,'Mike Stokey',1946,NULL),(831439,'Leopold Stokowski',1882,1977),(831457,'Josh Stolberg',1971,NULL),(831467,'Mink Stole',1947,NULL),(831471,'Shirley Stoler',1929,1999),(831479,'Erik Stolhanske',1968,NULL),(831515,'John Stoll',1913,1990),(831557,'Nicholas Stoller',1976,NULL),(831568,'Lee Stollman',NULL,NULL),(831569,'Noah Stollman',NULL,NULL),(831578,'Dan Stoloff',NULL,NULL),(831601,'Christian Stolte',1962,NULL),(831660,'Lena Stolze',1956,NULL),(831690,'Charles Stone III',1966,NULL),(831738,'Art Stone',NULL,NULL),(831791,'Christopher Stone',1940,1995),(831816,'David Stone',NULL,NULL),(831838,'Dorothy Stone',1905,1974),(831866,'Evan Stone',1964,NULL),(831889,'George E. Stone',1903,1967),(831891,'Georgie Stone',1909,2010),(831897,'Grace Zaring Stone',1891,1991),(831902,'Hank Stone',NULL,NULL),(831905,'Harold J. Stone',1913,2005),(831958,'John Stone',1888,1961),(832011,'Lewis Stone',1879,1953),(832043,'Matthew Stone',1963,NULL),(832077,'Nancy Rae Stone',NULL,NULL),(832099,'Peter Stone',1930,2003),(832104,'Philip Stone',1924,2003),(832126,'Richard Stone',1953,2001),(832300,'Sherri Stoner',1959,NULL),(832309,'Tad Stones',1952,NULL),(832314,'Eric Stonestreet',1971,NULL),(832375,'Paolo Stoppa',1906,1988),(832422,'Henri Storck',1907,1999),(832458,'Edith Storey',1892,1967),(832482,'Michael Storey',NULL,NULL),(832509,'Dennis Storhøi',1960,NULL),(832531,'Adam Storke',1962,NULL),(832573,'Howard Storm',1931,NULL),(832593,'Lesley Storm',1898,1975),(832653,'Kirsten Storms',1984,NULL),(832723,'Jack Trevor Story',1917,1991),(832770,'David Stoten',NULL,NULL),(832792,'Ken Stott',1954,NULL),(832824,'Mark Stouffer',1951,NULL),(832898,'William Stout',1949,NULL),(832939,'Susan A. Stover',1962,NULL),(833029,'Alan Strachan',1938,2015),(833089,'J. Michael Straczynski',1954,NULL),(833115,'Walter Stradling',1875,1918),(833151,'Tony Straiges',NULL,NULL),(833152,'Beatrice Straight',1914,2001),(833164,'Jim Strain',NULL,NULL),(833173,'Sherri Strain',1960,NULL),(833246,'Chantal Strand',1987,NULL),(833290,'Evabritt Strandberg',1943,NULL),(833298,'Keith W. Strandberg',NULL,NULL),(833350,'Billy Strange',1930,2012),(833379,'Philip Strange',1884,1963),(833488,'Guta Stresser',1972,NULL),(833519,'Marcia Strassman',1948,2014),(833542,'Willie Stratford',NULL,NULL),(833586,'Robert Stratil',1919,1976),(833645,'Gil Stratton',1922,2008),(833652,'John Stratton',1925,1991),(833718,'Peter Straub',1943,2022),(833759,'Billy Straus',NULL,NULL),(833779,'Colin Strause',1976,NULL),(833780,'Greg Strause',1975,NULL),(833828,'John J. Strauss',NULL,NULL),(833865,'Robert Strauss',1913,1975),(833866,'Robert Strauss',NULL,NULL),(833873,'Scott Strauss',NULL,NULL),(833889,'Todd Strauss-Schulson',1980,NULL),(833909,'Peter Strauß',1958,NULL),(833965,'Frank R. Strayer',1891,1964),(834004,'Noel Streatfeild',1895,1986),(834012,'Lukas Strebel',1951,NULL),(834067,'Christopher-Robin Street',NULL,NULL),(834077,'James Street',1903,1954),(834080,'Julian Street',1879,1947),(834116,'Coolidge Streeter',1884,1924),(834135,'Tim Streeto',NULL,NULL),(834183,'Russell Streiner',1940,NULL),(834199,'Marc Streitenfeld',1974,NULL),(834201,'Susan Streitfeld',NULL,NULL),(834282,'Gary Stretch',1965,NULL),(834320,'Melissa Stribling',1926,1992),(834338,'Wesley Strick',1954,NULL),(834396,'Robert E. Strickland',1925,2018),(834460,'Whitley Strieber',1945,NULL),(834479,'Devid Striesow',1973,NULL),(834480,'Peter Strietmann',NULL,NULL),(834553,'Arthur Stringer',1874,1950),(834571,'Kimberly Stringer',NULL,NULL),(834606,'Sherry Stringfield',1967,NULL),(834626,'Elaine Stritch',1925,2014),(834672,'Pavel Strnad',1970,NULL),(834714,'Carol Strober',NULL,NULL),(834752,'Warren Chetham Strode',1896,1974),(834754,'Woody Strode',1914,1994),(834870,'Louis A. Stroller',1942,NULL),(834893,'Susan Stroman',1954,NULL),(834898,'Hunt Stromberg',1894,1968),(834902,'Robert Stromberg',NULL,NULL),(834960,'Danny Strong',1974,NULL),(834989,'Jeremy Strong',1978,NULL),(835016,'Mark Strong',1963,NULL),(835021,'Michael Strong',1918,1980),(835045,'Rider Strong',1979,NULL),(835105,'Raymond Stross',1915,1988),(835128,'Bill Strother',1896,1957),(835144,'Don Stroud',1943,NULL),(835190,'Charles Strouse',1928,NULL),(835194,'Victoria Strouse',NULL,NULL),(835249,'Caroline Strubbe',NULL,NULL),(835297,'Arkadiy Strugatskiy',1925,1991),(835298,'Boris Strugatskiy',1933,2012),(835299,'Barry Strugatz',NULL,NULL),(835365,'Karl Struss',1886,1981),(835369,'Jan Struther',1901,1953),(835371,'Gavin Struthers',NULL,NULL),(835393,'Carel Struycken',1948,NULL),(835394,'Volkert Struycken',NULL,NULL),(835527,'Ewa Strömberg',1940,2013),(835632,'Aimée Stuart',1886,1981),(835685,'Eleanor Stuart',1901,1977),(835688,'Eric Stuart',1967,NULL),(835727,'Jazmín Stuart',1976,NULL),(835732,'Jeb Stuart',1956,NULL),(835738,'John Stuart',1898,1979),(835799,'Mel Stuart',1928,2012),(835836,'Randy Stuart',1924,1996),(835916,'Imogen Stubbs',1961,NULL),(835925,'Levi Stubbs',1936,2008),(835939,'Una Stubbs',1937,2021),(835959,'Scott Stuber',1968,NULL),(836054,'Esther Studer',NULL,NULL),(836070,'Daniel Studi',1976,NULL),(836081,'Dan Studney',NULL,NULL),(836121,'Michael Stuhlbarg',1968,NULL),(836129,'Rachel Stuhler',NULL,NULL),(836136,'Jerzy Stuhr',1947,NULL),(836176,'Geoff Stults',1977,NULL),(836177,'Joe Stultz',NULL,NULL),(836317,'Scott Sturgeon',NULL,NULL),(836318,'Theodore Sturgeon',1918,1985),(836328,'John Sturges',1910,1992),(836343,'Jim Sturgess',1978,NULL),(836375,'Larry Sturhahn',1928,1997),(836387,'Dan Sturkie',1924,1992),(836432,'Tom Sturridge',1985,NULL),(836464,'Heinz Stussak',1955,NULL),(836479,'Darlene Stuto',NULL,NULL),(836542,'Michael Style',1933,1983),(836548,'Trudie Styler',1954,NULL),(836612,'William Styron',1925,2006),(836673,'Søren Stærmose',1952,NULL),(836677,'Nicole Stéphane',1923,2007),(836681,'Jean-François Stévenin',1944,2021),(836693,'Ula Stöckl',1938,NULL),(836715,'Philipp Stölzl',1967,NULL),(836742,'Anette Støvelbæk',1967,NULL),(836836,'Jeremy Suarez',1990,NULL),(836977,'Michel Subor',1935,2022),(836988,'Milton Subotsky',1921,1991),(837054,'Leos Sucharípa',1932,2005),(837064,'David Suchet',1946,NULL),(837112,'Richard Suckle',NULL,NULL),(837141,'Karine Sudan',NULL,NULL),(837177,'Jason Sudeikis',1975,NULL),(837181,'Paul Suderman',NULL,NULL),(837183,'Hermann Sudermann',1857,1928),(837223,'Alison Sudol',1984,NULL),(837282,'Paulyn Sun',1974,NULL),(837360,'Ichirô Sugai',1907,1973),(837361,'Kin Sugai',1926,2018),(837371,'Toshiyuki Kanno',NULL,NULL),(837375,'Kanji Suganuma',NULL,NULL),(837386,'Michael Sugar',NULL,NULL),(837396,'Burt Sugarman',1939,NULL),(837405,'Neal Sugarman',NULL,NULL),(837406,'Sara Sugarman',NULL,NULL),(837424,'Hideo Sugawara',1924,2005),(837449,'Andrew Sugerman',NULL,NULL),(837483,'Yoshi Sugihara',NULL,NULL),(837485,'Gisaburô Sugii',1940,NULL),(837499,'Shôjirô Sugimoto',NULL,NULL),(837501,'Tetta Sugimoto',1965,NULL),(837503,'Haruko Sugimura',1909,1997),(837523,'Tomokazu Sugita',1980,NULL),(837675,'Sujatha',1935,2008),(837701,'Chintara Sukapatana',1965,NULL),(837763,'Masayoshi Sukita',NULL,NULL),(837784,'Barbara Sukowa',1950,NULL),(837817,'Sulakshana',NULL,NULL),(837868,'Giuseppe Sulfaro',1984,NULL),(837875,'Fernando Sulichin',NULL,NULL),(837877,'Boleslaw Sulik',1929,2012),(837917,'Larry Sulkis',NULL,NULL),(837925,'Margaret Sullavan',1909,1960),(837942,'Larry Sullivan',NULL,NULL),(837959,'Barry Sullivan',1912,1994),(837977,'Brett Sullivan',NULL,NULL),(837989,'C. Gardner Sullivan',1884,1965),(838000,'Charlotte Sullivan',NULL,NULL),(838015,'Daniel G. Sullivan',NULL,NULL),(838032,'Debra Sullivan',NULL,NULL),(838042,'Don Sullivan',1929,2018),(838059,'Erik Per Sullivan',1991,NULL),(838068,'Frank Sullivan',1896,1972),(838117,'James A. Sullivan',1934,2004),(838267,'Nick Sullivan',NULL,NULL),(838287,'Peter Sullivan',NULL,NULL),(838289,'Peter Sullivan',NULL,NULL),(838441,'Arne Sultan',1925,1986),(838526,'Sabiha Sumar',1961,NULL),(838572,'Katsuyuki Sumizawa',NULL,NULL),(838588,'Cree Summer',1969,NULL),(838598,'Edward Summer',1946,2014),(838599,'Eric Summer',NULL,NULL),(838624,'Nikolaus Summerer',NULL,NULL),(838837,'Rebecca Summerton',NULL,NULL),(838865,'Cid Ricketts Sumner',1890,1970),(838911,'Jeremy Sumpter',1989,NULL),(838928,'Mauri Sumén',1965,NULL),(839024,'Hideo Sunazuka',1932,NULL),(839064,'Anne Sundberg',NULL,NULL),(839090,'Pär Sundberg',1957,NULL),(839146,'Matthew Sunderland',NULL,NULL),(839326,'Daniel Sunjata',1971,NULL),(839331,'Sunmin Park',NULL,NULL),(839438,'Mark Suozzo',1953,NULL),(839467,'Lee Supercinski',1972,NULL),(839486,'Ethan Suplee',1976,NULL),(839670,'Max Surla',NULL,NULL),(839683,'John Surman',1944,NULL),(839710,'Shelley Surpin',1949,2021),(839730,'Tammin Sursok',NULL,NULL),(839732,'Bruce Surtees',1937,2012),(839797,'Jacqueline Susann',1918,1974),(839807,'Wolfgang Suschitzky',1912,2016),(839812,'Stephen Susco',NULL,NULL),(839904,'Morgan Susser',NULL,NULL),(839914,'David Susskind',1920,1987),(839938,'Lucas Sussman',NULL,NULL),(839996,'Rosemary Sutcliff',1920,1992),(840015,'William Sutcliffe',NULL,NULL),(840042,'A. Edward Sutherland',1895,1973),(840059,'Catherine Sutherland',1974,NULL),(840060,'Cathleen Sutherland',NULL,NULL),(840133,'Kristine Sutherland',1955,NULL),(840239,'Randy Sutter',NULL,NULL),(840303,'Dudley Sutton',1933,2018),(840330,'John Sutton',1908,1963),(840371,'Nick Sutton',NULL,NULL),(840380,'Phoef Sutton',1958,NULL),(840430,'Olga Sutulova',1980,NULL),(840445,'Silvia Suvadová',1973,NULL),(840446,'Darko Suvak',NULL,NULL),(840486,'Tarô Suwa',1954,NULL),(840500,'Akemi Suyama',NULL,NULL),(840531,'Janet Suzman',1939,NULL),(840547,'Akira Suzuki',1928,2014),(840551,'Anne Suzuki',1987,NULL),(840555,'Chihiro Suzuki',1977,NULL),(840608,'Keiichi Suzuki',1951,NULL),(840613,'Ken\'ichi Suzuki',1971,NULL),(840626,'Kôji Suzuki',1957,NULL),(840658,'Richard Suzuki',NULL,NULL),(840660,'Ryohei Suzuki',1983,NULL),(840668,'Seiichi Suzuki',1901,1980),(840671,'Seijun Suzuki',1923,2017),(840699,'Toshio Suzuki',1948,NULL),(840714,'Yutaka Suzuki',NULL,NULL),(840720,'Ken\'ichi Suzumura',1974,NULL),(840721,'Hirotaka Suzuoki',1950,2006),(840754,'Blanca Suárez',1988,NULL),(840757,'Carlos Suárez',1946,2019),(840772,'Emma Suárez',1964,NULL),(840779,'Gonzalo Suárez',1934,NULL),(840788,'José Suárez',1919,1981),(840908,'Bill Svanoe',NULL,NULL),(840994,'Pertti Sveholm',1953,NULL),(841061,'Tore Svennberg',1858,1941),(841144,'Jörgen Svensson',1974,NULL),(841212,'Miguel Schverdfinger',NULL,NULL),(841280,'Evgeniy Svidetelev',1921,1971),(841294,'Elizaveta Svilova',1900,1975),(841326,'Antonin Svoboda',1969,NULL),(841448,'Brad Swaile',1976,NULL),(841484,'Jack Swain',1922,1987),(841501,'Mack Swain',1876,1935),(841532,'Gerry Swallow',NULL,NULL),(841552,'Arvind Swami',1970,NULL),(841634,'Susan Swan',1945,NULL),(841647,'John Swanbeck',NULL,NULL),(841702,'Francis Swann',1913,1983),(841797,'Gloria Swanson',1899,1983),(841802,'H.N. Swanson',1899,1991),(841910,'Nick Swardson',1976,NULL),(841933,'Glendon Swarthout',1918,1992),(841952,'Charles S. Swartz',1939,2007),(842065,'Rosalie Swedlin',NULL,NULL),(842140,'Julia Sweeney',1959,NULL),(842156,'Mary Sweeney',1953,NULL),(842202,'Terry Sweeney',1950,NULL),(842258,'Dita Von Teese',1972,NULL),(842302,'John Sweet',1916,2011),(842339,'Doug Sweetland',NULL,NULL),(842371,'William Schweikert',NULL,NULL),(842415,'Charles Swenson',1941,NULL),(842421,'Inga Swenson',1932,2023),(842425,'Karl Swenson',1908,1978),(842464,'Michael Swerdlick',NULL,NULL),(842470,'Ezra Swerdlow',1953,2018),(842476,'Tommy Swerdlow',1962,NULL),(842485,'Jo Swerling',1893,1964),(842500,'Dan Swett',NULL,NULL),(842514,'Adam Swica',NULL,NULL),(842523,'Robin Swicord',1952,NULL),(842582,'David Swift',1919,2001),(842596,'Jeremy Swift',1960,NULL),(842605,'Jonathan Swift',1667,1745),(842616,'Mark Swift',NULL,NULL),(842657,'Barry Swimar',NULL,NULL),(842713,'Kurt Swinghammer',NULL,NULL),(842732,'Robert Swink',1918,2000),(842737,'Monica Swinn',1948,NULL),(842768,'Terry Swinton',NULL,NULL),(842770,'Tilda Swinton',1960,NULL),(842794,'Loretta Swit',1937,NULL),(842858,'Stephen Swofford',NULL,NULL),(842867,'Herbert B. Swope Jr.',1915,2008),(842899,'Travis Swords',NULL,NULL),(842915,'Tobias Swärd',1986,NULL),(842918,'Brigitte Sy',1956,NULL),(842934,'Meera Syal',1961,NULL),(842981,'Basil Sydney',1894,1968),(843044,'Brenda Sykes',1949,NULL),(843059,'Eric Sykes',1923,2012),(843100,'Wanda Sykes',1964,NULL),(843123,'Anthea Sylbert',1939,NULL),(843128,'Paul Sylbert',1928,2016),(843129,'Richard Sylbert',1928,2002),(843199,'Jeremy Sylvers',1981,NULL),(843213,'William Sylvester',1922,1995),(843237,'Leif Sylvester',1940,NULL),(843281,'Abe Sylvia',NULL,NULL),(843294,'Sylvie',1883,1970),(843306,'Kari Sylwan',1940,NULL),(843365,'Jolyon Symonds',1967,NULL),(843401,'Sylvia Syms',1934,2023),(843467,'Joe Syracuse',1967,NULL),(843483,'Marc Syrigas',NULL,NULL),(843543,'Lemore Syvan',NULL,NULL),(843632,'Gyözö Szabó',1970,NULL),(843640,'István Szabó',1938,NULL),(843651,'Magda Szabó',1917,2007),(843775,'Keith Szarabajka',1952,NULL),(843816,'Péter Szatmári',1964,NULL),(843833,'Katarzyna Szczepanik',NULL,NULL),(843850,'Michal Szczerbic',1944,NULL),(843938,'Michelle Szemberg',NULL,NULL),(844027,'Tibor Szervét',1958,NULL),(844167,'Charlotte Szlovak',NULL,NULL),(844214,'Tom Szollosi',NULL,NULL),(844262,'Wladyslaw Szpilman',1911,2000),(844294,'Magda Szubanski',1961,NULL),(844301,'Julian Harris',NULL,NULL),(844358,'Jeannot Szwarc',1939,NULL),(844363,'Carmen Szwec',NULL,NULL),(844371,'Borys Szyc',1978,NULL),(844435,'László Szabó',1936,NULL),(844454,'Ferenc Szécsényi',1922,2014),(844455,'Ferencné Szécsényi',1928,2009),(844620,'Regino Sáinz de la Maza',NULL,NULL),(844845,'Susi Sánchez',1955,NULL),(844896,'Eduardo Sánchez',1968,NULL),(844922,'Fernando Sánchez',NULL,NULL),(845157,'Raúl Marchand Sánchez',NULL,NULL),(845189,'Verónica Sánchez',1977,NULL),(845207,'Jorge Sánchez-Cabezudo',1972,NULL),(845209,'Aitana Sánchez-Gijón',1968,NULL),(845228,'Ferenc Sánta',1927,2008),(845270,'Marianne Sägebrecht',1945,NULL),(845301,'Andrine Sæther',1964,NULL),(845304,'Odd-Geir Sæther',1941,NULL),(845306,'Yngve Sæther',NULL,NULL),(845328,'Catherine Sée',NULL,NULL),(845403,'Jean-Luc Sévilla',NULL,NULL),(845450,'Martin Söder',NULL,NULL),(845542,'Johan Söderqvist',1966,NULL),(845605,'Sándor Söth',1964,NULL),(845609,'Hilmi Sözer',1970,NULL),(845612,'Morten Søborg',1964,NULL),(845752,'Patrick Süskind',1949,NULL),(846010,'Carlos Enrique Taboada',1929,1997),(846036,'Eron Tabor',1944,NULL),(846068,'George Tabori',1914,2007),(846181,'Takashi Tachibana',NULL,NULL),(846184,'Mai Tachihara',NULL,NULL),(846190,'Naoki Tachikawa',NULL,NULL),(846246,'Hubert Taczanowski',1960,NULL),(846301,'Fabricio Tadeu',NULL,NULL),(846333,'Michael Tadross',NULL,NULL),(846474,'Nelly Tagar',1982,NULL),(846480,'Cary-Hiroyuki Tagawa',1950,NULL),(846488,'Aron Tager',1934,2019),(846499,'Bronagh Taggart',NULL,NULL),(846530,'Mandy Tagger',NULL,NULL),(846532,'Brian Taggert',1938,2019),(846535,'Fraser Taggart',NULL,NULL),(846548,'Saïd Taghmaoui',1973,NULL),(846590,'Gabriela Tagliavini',NULL,NULL),(846616,'Sharmila Tagore',1944,NULL),(846630,'Tomorô Taguchi',1957,NULL),(846681,'Dalip Tahil',1952,NULL),(846752,'Horacio Taicher',1955,1993),(846818,'Taimak',1964,NULL),(846879,'Charles Tait',1868,1933),(846884,'Don Tait',1920,NULL),(846887,'Elizabeth Tait',1879,NULL),(846894,'John Tait',1871,1955),(846911,'Nevin Tait',1876,1961),(846947,'Darryl Taja',NULL,NULL),(846961,'Reiko Tajima',1949,NULL),(846969,'Satoshi Tajiri',1965,NULL),(847031,'Minoru Takada',1899,1977),(847033,'Miwa Takada',1947,NULL),(847054,'Hitoshi Takagi',1925,2004),(847066,'Kôichi Takagi',NULL,NULL),(847085,'Wataru Takagi',1966,NULL),(847122,'Hirokata Takahashi',NULL,NULL),(847126,'Hiroshi Takahashi',1959,NULL),(847138,'Katsunori Takahashi',1964,NULL),(847157,'Masaya Takahashi',1930,2014),(847176,'Natsuko Takahashi',NULL,NULL),(847177,'Niisan Takahashi',1926,NULL),(847180,'Nobuyuki Takahashi',NULL,NULL),(847182,'Nozomu Takahashi',1960,NULL),(847223,'Isao Takahata',1935,2018),(847258,'Troy Takaki',NULL,NULL),(847295,'Koushun Takami',NULL,NULL),(847301,'Hideko Takamine',1924,2010),(847361,'Akira Takarada',1934,2022),(847393,'Masanobu Takashima',1966,NULL),(847394,'Minoru Takashima',NULL,NULL),(847396,'Tadao Takashima',1930,2019),(847420,'Tôru Takatsuka',NULL,NULL),(847425,'Akira Takayama',1969,NULL),(847432,'Fumihiko Takayama',NULL,NULL),(847439,'Minami Takayama',1964,NULL),(847448,'Yukiko Takayama',1940,2023),(847562,'Naoto Takenaka',1956,NULL),(847570,'Yutaka Takenouchi',1971,NULL),(847594,'Junko Takeuchi',1972,NULL),(847603,'Naoko Takeuchi',1967,NULL),(847621,'Yoshikazu Takeuchi',1955,NULL),(847624,'Yûko Takeuchi',1980,2020),(847651,'Pierre Taki',1967,NULL),(847659,'Chisui Takigawa',NULL,NULL),(847668,'Yasuhiko Takiguchi',1924,2004),(847690,'Yôjirô Takita',1955,NULL),(847735,'Shu Takumi',NULL,NULL),(847749,'Tibor Takács',NULL,NULL),(847796,'Len Talan',NULL,NULL),(847859,'David E. Talbert',1966,NULL),(847926,'Joby Talbot',1971,NULL),(847939,'Lyle Talbot',1902,1996),(847986,'Mark Talbot-Butler',1965,2020),(848003,'Tim Talbott',NULL,NULL),(848027,'Julie Talen',NULL,NULL),(848075,'Michael Taliferro',1961,2006),(848217,'Ted Tally',1952,NULL),(848231,'Natalie Talmadge',1896,1969),(848234,'Richard Talmadge',1892,1981),(848251,'William Talman',1915,1968),(848316,'Dijon Talton',1989,NULL),(848371,'Kit Man Tam',NULL,NULL),(848414,'Lee Tamahori',1950,NULL),(848417,'Masao Tamai',1908,1997),(848448,'Yasushi Tamaoki',NULL,NULL),(848481,'Susanna Tamaro',1957,NULL),(848496,'Paul Tamasy',NULL,NULL),(848497,'Tuta Ngarimu Tamati',NULL,NULL),(848533,'Tetsurô Tanba',1922,2006),(848554,'Amber Tamblyn',1983,NULL),(848560,'Russ Tamblyn',1934,NULL),(848658,'Itai Tamir',1958,NULL),(848667,'Akim Tamiroff',1899,1972),(848693,'Mary Tamm',1950,2012),(848712,'Fred Tammes',1937,NULL),(848757,'Simon Tams',NULL,NULL),(848768,'Akiko Tamura',1905,1983),(848786,'Masaki Tamura',1939,2018),(848795,'Taijirô Tamura',1911,1983),(848801,'Yukari Tamura',1976,NULL),(848819,'Amy Tan',1952,NULL),(848826,'Tan Cheung',NULL,NULL),(848841,'George Tan',NULL,NULL),(848892,'Royston Tan',1976,NULL),(848911,'Tuo Tan',NULL,NULL),(848932,'Gabrielle Tana',NULL,NULL),(848948,'Seiichi Tanabe',1969,NULL),(848956,'Gorô Tanada',NULL,NULL),(848966,'Alessandro Tanaka',1974,NULL),(848968,'Atsuko Tanaka',1962,NULL),(848984,'Haruo Tanaka',1912,1992),(849006,'Ken Tanaka',1951,NULL),(849011,'Kinuyo Tanaka',1910,1977),(849028,'Mayumi Tanaka',1955,NULL),(849032,'Min Tanaka',1945,NULL),(849036,'Misako Tanaka',1959,NULL),(849040,'Noboru Tanaka',1937,2006),(849060,'Shigeo Tanaka',1907,1992),(849068,'Sumie Tanaka',1908,2000),(849083,'Tomoyuki Tanaka',1910,1997),(849095,'Yoshiko Tanaka',1956,2011),(849099,'Yôzô Tanaka',1939,NULL),(849100,'Yûko Tanaka',1955,NULL),(849164,'Loveleen Tandan',NULL,NULL),(849214,'Mark Tandy',1957,NULL),(849222,'Yôhei Taneda',NULL,NULL),(849223,'Mary Ann Tanedo',1966,NULL),(849232,'Ned Tanen',1931,2009),(849257,'Alan Tang',1946,2011),(849282,'Edward Tang',1946,NULL),(849283,'Elsa Tang',NULL,NULL),(849315,'Mathew Tang',NULL,NULL),(849331,'Rover Tang',NULL,NULL),(849413,'Ciarán Tanham',NULL,NULL),(849437,'Naomi Tani',1948,NULL),(849447,'Yôko Tani',1928,1999),(849465,'Gorô Taniguchi',NULL,NULL),(849477,'Shôsuke Tanihara',1972,NULL),(849483,'Hajime Tanimoto',1947,NULL),(849578,'A.J. Tannen',NULL,NULL),(849670,'Mark Tanner',NULL,NULL),(849686,'Peter Tanner',1914,2002),(849714,'Tony Tanner',1932,2020),(849892,'Leni Tanzer',NULL,NULL),(849919,'Tao Guo',1969,NULL),(849944,'Dana Tapalaga',NULL,NULL),(849964,'Rob Tapert',1955,NULL),(850038,'Jonathan T. Taplin',1947,NULL),(850102,'Amanda Tapping',1965,NULL),(850120,'Michael Tapuah',NULL,NULL),(850162,'Gerardo Taracena',1970,NULL),(850168,'Daniel Taradash',1913,2003),(850173,'Mar Targarona',NULL,NULL),(850254,'Enzo Tarascio',1919,2006),(850361,'Jacques Tardi',1946,NULL),(850366,'Carine Tardieu',1973,NULL),(850374,'Graham Tardif',1957,NULL),(850385,'Ib Tardini',1948,NULL),(850396,'Bruno Tardon',NULL,NULL),(850402,'Isabelle Tardán',1960,NULL),(850483,'Booth Tarkington',1869,1946),(850493,'Arseniy Tarkovskiy',1907,1989),(850514,'Frank Tarloff',1916,1999),(850516,'Mark Tarlov',NULL,2021),(850561,'Arthur Tarnowski',1971,NULL),(850601,'Béla Tarr',1955,NULL),(850610,'Patrick Tarr',NULL,NULL),(850617,'Daniel Tarrab',1958,NULL),(850695,'Jay Tarses',1939,NULL),(850733,'Genndy Tartakovsky',1970,NULL),(850879,'Atsumi Tashiro',NULL,NULL),(850895,'Frank Tashlin',1913,1972),(850896,'Lilyan Tashman',1896,1934),(850907,'Samuel Tasinaje',NULL,NULL),(850929,'William Tasker',1943,1998),(850942,'Alain Tasma',NULL,NULL),(851113,'Catherine Tate',1969,NULL),(851188,'Reginald Tate',1896,1955),(851281,'Patrick Tatopoulos',NULL,NULL),(851302,'Tsutomu Tatsumi',NULL,NULL),(851311,'Naoki Tatsuta',1950,NULL),(851320,'Gale Tattersall',1948,NULL),(851384,'Carla Tatò',1947,NULL),(851437,'Matt Tauber',NULL,NULL),(851522,'Gilles Taurand',1943,NULL),(851537,'Norman Taurog',1899,1981),(851582,'Audrey Tautou',1976,NULL),(851658,'Dino Tavarone',1942,NULL),(851679,'Connie Tavel',NULL,NULL),(851699,'Michael Tavera',1961,NULL),(851721,'Albert Tavernier',1859,1929),(851724,'Bertrand Tavernier',1941,2021),(851759,'Vincent Tavier',NULL,NULL),(851767,'José María de Tavira',1983,NULL),(851785,'Doron Tavory',NULL,NULL),(851790,'Dean Tavoularis',1932,NULL),(851837,'Tamara Taxman',1947,NULL),(851930,'Alan Taylor',1965,NULL),(851941,'Alfred Taylor',NULL,NULL),(851945,'Alison Taylor',NULL,NULL),(851953,'Alma Taylor',1895,1974),(852073,'Bruce A. Taylor',NULL,NULL),(852083,'C.B. Taylor',NULL,NULL),(852132,'Christine Taylor',1971,NULL),(852196,'Daniel E. Taylor',NULL,NULL),(852252,'Deems Taylor',1885,1966),(852279,'Don Taylor',1920,1998),(852280,'Don Taylor',NULL,NULL),(852286,'Donald Taylor',1911,1966),(852298,'Doug Taylor',NULL,NULL),(852313,'Dwight Taylor',1903,1986),(852331,'Elizabeth Taylor',1912,1975),(852347,'Estelle Taylor',1894,1958),(852373,'Frank E. Taylor',1916,1999),(852405,'Gilbert Taylor',1914,2013),(852430,'Greg Taylor',NULL,NULL),(852488,'Jack Taylor',1936,NULL),(852517,'James Arnold Taylor',1969,NULL),(852551,'Jeannine Taylor',1954,NULL),(852563,'Jeffrey Taylor',NULL,NULL),(852564,'Jeffrey Taylor',1942,NULL),(852569,'Jennifer Taylor',NULL,NULL),(852579,'Jerry Taylor',NULL,NULL),(852591,'Jim Taylor',1962,NULL),(852616,'John Taylor',1960,NULL),(852668,'Joseph Lyle Taylor',1964,NULL),(852676,'Jud Taylor',1932,2008),(852753,'Lawrence Taylor',1959,NULL),(852893,'Michael Taylor',NULL,NULL),(852965,'Noah Taylor',1969,NULL),(853042,'Rex Taylor',1889,1968),(853079,'Robert Taylor',1963,NULL),(853111,'Ronnie Taylor',1924,2018),(853122,'Russi Taylor',1944,2019),(853130,'Sam Taylor',1895,1958),(853138,'Samuel A. Taylor',1912,2000),(853139,'Samuel W. Taylor',1907,1997),(853169,'Shane Taylor',1974,NULL),(853198,'Stephen Taylor',NULL,NULL),(853200,'Stephen James Taylor',NULL,NULL),(853238,'Tate Taylor',1969,NULL),(853301,'Veronica Taylor',1965,NULL),(853364,'Hannah Taylor Gordon',1987,NULL),(853374,'Sam Taylor-Johnson',1967,NULL),(853375,'Leigh Taylor-Young',1945,NULL),(853380,'Julie Taymor',1952,NULL),(853392,'Jun Tazaki',1913,1985),(853456,'Pierre Tchernia',1928,2016),(853498,'Rima Te Wiata',1963,NULL),(853546,'Lewis Teague',1938,NULL),(853604,'Conway Tearle',1878,1938),(853607,'Godfrey Tearle',1884,1953),(853683,'Somsak Techaratanaprasert',NULL,NULL),(853752,'Darío Tedesco',NULL,NULL),(853779,'Travis Tedford',1988,NULL),(853781,'Mårten Tedin',NULL,NULL),(853808,'Maureen Teefy',1953,NULL),(853991,'Johanna Teicht',NULL,NULL),(854042,'Monique Teisseire',NULL,NULL),(854052,'Robert Teitel',1968,NULL),(854074,'William Teitler',NULL,NULL),(854185,'Miguel Tejada-Flores',1951,NULL),(854278,'William Telaak',1898,1963),(854403,'Christopher Tellefsen',NULL,NULL),(854418,'Teller',1948,NULL),(854428,'Ira Teller',NULL,NULL),(854440,'Isabel Tellería',NULL,NULL),(854551,'Bob Telson',1949,NULL),(854697,'Julien Temple',1953,NULL),(854702,'Lew Temple',1967,NULL),(854772,'Kevin King Templeton',NULL,NULL),(854813,'Richard Temtchine',NULL,NULL),(854923,'Edgard Tenembaum',NULL,NULL),(854941,'Nancy Tenenbaum',NULL,NULL),(854972,'Wenji Teng',1944,NULL),(854976,'Daisuke Tengan',1959,NULL),(854991,'Jayne-Ann Tenggren',1967,NULL),(855012,'Mikko Tenhunen',NULL,NULL),(855035,'Andy Tennant',1955,NULL),(855039,'David Tennant',1971,NULL),(855065,'Bill Tennant',1941,2012),(855093,'Anne Tenney',1954,NULL),(855098,'Dennis Michael Tenney',NULL,NULL),(855103,'Jon Tenney',1961,NULL),(855132,'Julius Tennon',1953,NULL),(855139,'Alfred Lord Tennyson',1809,1892),(855188,'Kevin Tent',NULL,NULL),(855283,'Meir Teper',NULL,NULL),(855300,'Jonathan Teplitzky',NULL,NULL),(855385,'Minori Terada',1942,NULL),(855398,'Susumu Terajima',1963,NULL),(855417,'Akira Terao',1947,NULL),(855424,'Shinsuke Terasawa',NULL,NULL),(855429,'Shinobu Terajima',1972,NULL),(855486,'Margarita Terekhova',1942,NULL),(855564,'Lee Tergesen',1965,NULL),(855605,'Abby Terkuhle',NULL,NULL),(855613,'John Terlesky',1961,NULL),(855681,'Béla Ternovszky',1943,NULL),(855825,'John Canada Terrell',NULL,NULL),(855843,'Jessy Terrero',1972,NULL),(856050,'Nigel Terry',1945,2015),(856057,'Paul Terry',1985,NULL),(856062,'Phillip Terry',1909,1993),(856079,'Sonny Terry',1911,1986),(856103,'Terry-Thomas',1911,1990),(856187,'Laurent Terzieff',1935,2010),(856197,'Venus Terzo',1967,NULL),(856209,'Manuel Teran',NULL,NULL),(856249,'Peter Teschner',NULL,NULL),(856267,'Hiroshi Teshigahara',1927,2001),(856270,'Steve Tesich',1942,1996),(856319,'Duccio Tessari',1926,1994),(856469,'Desmond Tester',1919,2002),(856495,'Stacey Testro',NULL,NULL),(856500,'Sylvie Testud',1971,NULL),(856524,'Camillo Teti',NULL,NULL),(856677,'Walter Tevis',1928,1984),(856678,'C.J. Tevlin',1899,1966),(856682,'Herbert Tevos',1896,1988),(856715,'Peter Tewksbury',1923,2003),(856758,'Josephine Tey',1896,1952),(856778,'Anne Teyssèdre',NULL,NULL),(856804,'Osamu Tezuka',1928,1989),(856825,'Russell Thacher',1919,1990),(856842,'William Makepeace Thackeray',1811,1863),(856918,'Katharina Thalbach',1954,NULL),(856946,'Wolfgang Thaler',1958,NULL),(857004,'Joseph Than',1903,1985),(857130,'Kirk R. Thatcher',1962,NULL),(857147,'Torin Thatcher',1905,1981),(857150,'Hilmar Thate',1931,2016),(857177,'John Thaw',1942,2002),(857216,'Max Thayer',1946,NULL),(857230,'Tiffany Thayer',1902,1959),(857260,'Guru',1961,2010),(857458,'Jeremy Theobald',NULL,NULL),(857475,'Theodore Gottlieb',1906,2001),(857620,'Justin Theroux',1971,NULL),(857663,'Ole Thestrup',1948,2018),(857710,'Harvey F. Thew',1883,1946),(857753,'Beatriz Thibaudin',1927,2007),(857789,'Olivette Thibault',1914,1995),(857806,'Jack Thibeau',1946,NULL),(857875,'Andreas Thiel',1957,2006),(857904,'Nick Thiel',NULL,NULL),(857982,'Gary Thieltges',NULL,NULL),(858008,'Ela Thier',1971,NULL),(858010,'Jerome Thier',NULL,NULL),(858011,'Marian Thier',NULL,NULL),(858022,'James Thierrée',1974,NULL),(858048,'Mélanie Thierry',1981,NULL),(858099,'Corbett Thigpen',1919,1999),(858104,'Kevin Thigpen',NULL,NULL),(858123,'Kris Thykier',1972,NULL),(858196,'David Thion',NULL,NULL),(858202,'The Third Ear Band',NULL,NULL),(858203,'Tom Third',NULL,NULL),(858277,'Caroline Thivel',NULL,NULL),(858329,'Robert Thoeren',1903,1957),(858379,'Robert Thom',1929,1979),(858399,'Ruth Toma',1956,NULL),(858405,'Robert Thomae',NULL,NULL),(858482,'Anna Thomas',1948,NULL),(858500,'Ashley Thomas',1985,NULL),(858525,'Betty Thomas',1947,NULL),(858554,'Bradley Thomas',NULL,NULL),(858669,'Damien Thomas',1942,NULL),(858683,'Danny Thomas',1912,1991),(858686,'Dave Thomas',1949,NULL),(858736,'Diane Thomas',1946,1985),(858776,'Eddie Kaye Thomas',1980,NULL),(858799,'Emma Thomas',1971,NULL),(858826,'Frank Thomas',1912,2004),(858833,'Frankie Thomas',1921,2006),(858873,'Gerald Thomas',1920,1993),(858895,'Guy Thomas',NULL,2020),(858912,'Heidi Thomas',1962,NULL),(858977,'Jameson Thomas',1888,1939),(858988,'Jay Thomas',1948,2017),(859005,'Jeffrey Thomas',NULL,NULL),(859016,'Jeremy Thomas',1949,NULL),(859029,'Jim Thomas',NULL,NULL),(859047,'John Thomas',NULL,NULL),(859049,'John Thomas',NULL,NULL),(859125,'Louis C. Thomas',1921,2003),(859211,'Mark Thomas',1956,2023),(859241,'Michael Thomas',NULL,NULL),(859302,'Nigel Thomas',NULL,NULL),(859365,'Philip Michael Thomas',1949,NULL),(859387,'Ralph Thomas',1915,2001),(859432,'Rob Thomas',1965,NULL),(859436,'Robert Thomas',1927,1989),(859469,'Ross Thomas',1926,1995),(859471,'Roy Thomas',1940,NULL),(859499,'Scott Thomas',NULL,NULL),(859500,'Scott Thomas',NULL,NULL),(859503,'Sean Patrick Thomas',NULL,NULL),(859561,'Tamar Thomas',NULL,NULL),(859597,'Tony Thomas',1948,NULL),(859604,'Trae Thomas',NULL,NULL),(859661,'Wynn Thomas',NULL,NULL),(859720,'Marsha Thomason',NULL,NULL),(859740,'Florence Thomassin',1966,NULL),(859772,'Tim Thomerson',1946,NULL),(859821,'Questlove',1971,NULL),(859877,'Barnaby Thompson',1961,NULL),(859892,'Bill Thompson',1913,1971),(859921,'Brian Thompson',1959,NULL),(859964,'Charlotte Thompson',NULL,1919),(859977,'Chris Thompson',1952,2015),(859985,'Christopher Thompson',1966,NULL),(860019,'Danièle Thompson',1942,NULL),(860034,'David M. Thompson',1950,NULL),(860065,'Don Thompson',NULL,NULL),(860125,'Ernest Thompson',1949,NULL),(860145,'Fred Thompson',1884,1949),(860155,'Gary Scott Thompson',NULL,NULL),(860219,'Hunter S. Thompson',1937,2005),(860233,'Jack Thompson',1940,NULL),(860256,'Jamie Thompson',1962,NULL),(860292,'Jim Thompson',1906,1977),(860315,'John Thompson',NULL,2018),(860352,'Judith Thompson',1954,NULL),(860373,'Kay Thompson',1909,1998),(860375,'Keith Thompson',NULL,NULL),(860380,'Kenan Thompson',1978,NULL),(860446,'Marc Anthony Thompson',NULL,NULL),(860471,'Marshall Thompson',1925,1992),(860483,'Matt Thompson',NULL,NULL),(860513,'Mike Thompson',1969,NULL),(860522,'Morton Thompson',1907,1953),(860588,'Peggy Thompson',NULL,NULL),(860617,'Ray Thompson',1898,1927),(860651,'Robert E. Thompson',1924,2004),(860690,'Scott Thompson',1959,NULL),(860712,'Shelley Thompson',1959,NULL),(860749,'Susanna Thompson',1958,NULL),(860828,'Walter Thompson',1903,1975),(860847,'William C. Thompson',1889,1963),(860870,'Jerome Thoms',1907,1977),(860947,'Ulrich Thomsen',1963,NULL),(860972,'Brian Thomson',1946,NULL),(860979,'Chris Thomson',1945,2015),(861013,'Helen Thomson',NULL,NULL),(861027,'John Thomson',1969,NULL),(861066,'Pat Thomson',1940,1992),(861185,'June Thorburn',1931,1967),(861305,'Tracey Thorn',1962,NULL),(861327,'Newton Thornburg',1929,2011),(861332,'Bill Thornbury',1952,NULL),(861361,'Callie Thorne',1969,NULL),(861572,'Noley Thornton',1983,NULL),(861576,'Peter Thornton',1923,2009),(861633,'Raymond W. Thorp',NULL,NULL),(861636,'Roderick Thorp',1936,1999),(861638,'Sarah Thorp',NULL,NULL),(861665,'Harris Thorpe',1889,1972),(861703,'Richard Thorpe',1896,1991),(861826,'Peter Thorwarth',1971,NULL),(861862,'Cyrille Thouvenin',1976,NULL),(861898,'Sunny Besen Thrasher',1976,NULL),(861899,'Jamie Thraves',1969,NULL),(861910,'Elizabeth Threatt',1926,1993),(861915,'David Threlfall',1953,NULL),(862005,'Jean Thuillier',1921,2017),(862026,'Ingrid Thulin',1926,2004),(862094,'Santhosh Thundiyil',NULL,NULL),(862122,'James Thurber',1894,1961),(862189,'Judith Thurman',NULL,NULL),(862211,'Michael Thurmeier',NULL,NULL),(862232,'Sophie Thursfield',NULL,NULL),(862286,'Szabolcs Thuróczy',1971,NULL),(862324,'Heinz Thym',NULL,NULL),(862429,'Pierre-Louis Thévenet',NULL,NULL),(862479,'Lung Ti',1946,NULL),(862513,'Zhenda Tian',NULL,NULL),(862538,'Kirkland Tibbels',NULL,NULL),(862564,'Michael Tibble',NULL,NULL),(862580,'Elliot Tiber',1935,2016),(862664,'Dylan Tichenor',1968,NULL),(862691,'Jerrard Tickell',1905,1966),(862702,'Clive Tickner',1943,NULL),(862777,'Frank Tidy',1932,2017),(862781,'Ernest Tidyman',1928,1984),(862787,'Gary Tieche',NULL,NULL),(862841,'Cheryl Tiegs',1947,NULL),(862858,'Fernando Tielve',1986,NULL),(862911,'Greg Tiernan',1965,NULL),(862932,'Jacob Tierney',1979,NULL),(862935,'Kevin Tierney',1950,2018),(862937,'Lawrence Tierney',1919,2002),(862939,'Malcolm Tierney',1938,2014),(862946,'Seamus Tierney',NULL,NULL),(862961,'Yann Tiersen',1970,NULL),(863016,'Pamela Tiffin',1942,2020),(863121,'Brigitte Tijou',NULL,NULL),(863129,'Anssi Tikanmäki',1955,NULL),(863208,'Leif Tilden',1964,NULL),(863217,'Mark Tildesley',1963,NULL),(863293,'Jodie Lynn Tillen',NULL,NULL),(863374,'Emma Tillinger Koskoff',1972,NULL),(863387,'George Tillman Jr.',1969,NULL),(863415,'Martin Tillman',1964,NULL),(863599,'Filippo Timi',1974,NULL),(863622,'Bruce Timm',1961,NULL),(863659,'Bonnie Timmermann',NULL,NULL),(863737,'Mariya Timofeyeva',NULL,NULL),(863755,'David Timoner',NULL,NULL),(863787,'Sabine Timoteo',1975,NULL),(863807,'Ant Timpson',NULL,NULL),(863862,'Maurice Tinchant',NULL,NULL),(863893,'Tindersticks',NULL,NULL),(863992,'Tinkerbell',1977,NULL),(863999,'Rob Tinkler',1973,NULL),(864081,'Gabriele Tinti',1932,1991),(864138,'Phil Tippett',1951,NULL),(864169,'George Aliceson Tipton',1932,2016),(864222,'Jamie Tirelli',1945,NULL),(864268,'Romeo Tirone',NULL,NULL),(864308,'Ashley Tisdale',1985,NULL),(864371,'Hugues Tissandier',NULL,NULL),(864435,'David N. Titcher',NULL,NULL),(864468,'Stacy Title',1964,2021),(864471,'Craig Titley',NULL,NULL),(864541,'Christopher Titus',1964,NULL),(864581,'Vicky Tiu',1956,NULL),(864686,'Gerd Tjur',NULL,NULL),(864775,'Johnnie To',1955,NULL),(864782,'Raymond To',NULL,NULL),(864812,'James Toback',1944,NULL),(864835,'Joel Tobeck',1971,NULL),(864844,'Marc Toberoff',NULL,NULL),(864851,'Kenneth Tobey',1917,2002),(864869,'George Tobias',1901,1980),(864880,'John Tobias',NULL,NULL),(864931,'Genevieve Tobin',1899,1995),(864959,'Patrick Tobin',NULL,NULL),(864980,'Nobuo Tobita',1959,NULL),(864987,'Mary Tobler',1974,NULL),(864997,'Stephen Tobolowsky',1951,NULL),(865064,'Lee Tockar',1969,NULL),(865100,'Michael Todd Jr.',1929,2002),(865119,'Beverly Todd',1936,NULL),(865189,'Jennifer Todd',1969,NULL),(865239,'Mike Todd',1907,1958),(865262,'Richard Todd',1919,2009),(865273,'Russell Todd',1958,NULL),(865285,'Sherman Todd',1904,1979),(865297,'Suzanne Todd',1965,NULL),(865298,'Thelma Todd',1906,1935),(865302,'Tony Todd',1954,NULL),(865333,'Bruno Todeschini',1962,NULL),(865372,'Yukiko Todoroki',1917,1967),(865411,'Srdjan \'Zika\' Todorovic',1965,NULL),(865427,'Martin Todsharow',1967,NULL),(865508,'Van Toffler',1958,NULL),(865546,'Makoto Togashi',1973,NULL),(865557,'Can Togay',1955,NULL),(865561,'Chôtarô Tôgin',1941,NULL),(865575,'Ugo Tognazzi',1922,1990),(865652,'Kara Tointon',1983,NULL),(865774,'Jerry Tokofsky',1936,NULL),(865779,'Lubor Tokos',1923,2003),(865807,'Yasuyoshi Tokuma',1921,2000),(865847,'Peter Tolan',1958,NULL),(865891,'Claudio Tolcachir',1975,NULL),(865918,'Éric Toledano',1971,NULL),(865949,'Goya Toledo',1969,NULL),(866010,'Sidney Toler',1874,1947),(866014,'George Toles',1948,NULL),(866038,'Jonathan Tolins',NULL,NULL),(866058,'J.R.R. Tolkien',1892,1973),(866062,'Michael Tolkin',1950,NULL),(866075,'Daniel Toll',NULL,NULL),(866104,'Rhonda Tollefson',NULL,NULL),(866132,'Michael Tollin',1955,NULL),(866157,'Matt Tolmach',NULL,NULL),(866186,'Marilù Tolo',1944,NULL),(866243,'Lev Tolstoy',1828,1910),(866462,'George Tomasini',1909,1964),(866495,'Vincenzo Tomassi',1937,1993),(866674,'Akihiro Tomikawa',1968,NULL),(866707,'Yoshiyuki Tomino',1941,NULL),(866715,'Sokei Tomioka',NULL,NULL),(866742,'Sukehiro Tomita',1948,NULL),(866744,'Tsuneo Tomita',NULL,NULL),(866785,'John Tomko',NULL,NULL),(866835,'David Tomlinson',1917,2000),(866918,'Jorma Tommila',1959,NULL),(866927,'Ed Tomney',NULL,NULL),(866930,'Jirô Tomoda',NULL,NULL),(867017,'Stephen Tompkinson',1965,NULL),(867127,'Mark Tonderai',NULL,NULL),(867144,'Franchot Tone',1905,1968),(867207,'Theodore Toney',NULL,NULL),(867246,'Man-Ming Tong',NULL,NULL),(867253,'Patrick Tong',NULL,NULL),(867262,'Stanley Tong',1960,NULL),(867263,'Tong Su',NULL,NULL),(867277,'Ginger Tougas',NULL,NULL),(867338,'Laura Tonke',1974,NULL),(867374,'Jérôme Tonnerre',NULL,NULL),(867391,'Eijirô Tôno',1907,1994),(867398,'Toshiyuki Tonomura',NULL,1997),(867504,'Tucker Tooley',NULL,NULL),(867549,'John Toon',NULL,NULL),(867555,'Geoffrey Toone',1910,2005),(867603,'Bartlomiej Topa',1967,NULL),(867622,'Jean Topart',1922,2012),(867694,'Topol',1935,2023),(867718,'Roland Topor',1938,1997),(867719,'Tom Topor',1938,NULL),(867768,'Jenno Topping',NULL,NULL),(868039,'Timo Torikka',1958,NULL),(868066,'Akira Toriyama',1955,NULL),(868074,'Peter Tork',1942,2019),(868110,'John Tormey',1937,2022),(868128,'David Torn',1953,NULL),(868131,'Dick van den Toorn',1960,NULL),(868139,'Pierre Tornade',1930,2012),(868153,'Giuseppe Tornatore',1956,NULL),(868164,'Jeff Tornberg',1951,1994),(868178,'Lisa Tornell',NULL,NULL),(868207,'Regina Torné',1945,NULL),(868219,'Guillermo del Toro',1964,NULL),(868242,'PJ Torokvei',1951,2013),(868282,'Katie Torpey',1969,NULL),(868441,'Jorge Torregrossa',1973,NULL),(868458,'Ernest Torrence',1878,1933),(868479,'Ana Torrent',1966,NULL),(868485,'Gonzalo Torrente Ballester',1910,1999),(868643,'Fina Torres',1951,NULL),(868659,'Gina Torres',1969,NULL),(868681,'Joan Torres',NULL,NULL),(868807,'Ricardo Torres',1911,NULL),(868872,'Frida Torresblanco',NULL,NULL),(868957,'Joe Torry',1965,NULL),(869064,'José Torvay',1909,1973),(869084,'Märta Torén',1926,1957),(869088,'Luis Tosar',1971,NULL),(869099,'Daniel Toscan du Plantier',1941,2003),(869125,'Laura Toscano',1944,2009),(869164,'Lara Tosh',NULL,NULL),(869198,'Mario Tosi',1935,2021),(869236,'Judy Tossell',1966,NULL),(869371,'Dan Totheroh',1894,1976),(869375,'Paul Tothill',NULL,NULL),(869379,'Salvatore Totino',1964,NULL),(869389,'Wellyn Totman',1903,1977),(869429,'Audrey Totter',1917,2013),(869431,'Maurizio Totti',1954,NULL),(869451,'Totò',1898,1967),(869467,'Shaun Toub',1958,NULL),(869506,'Bert Tougas',NULL,NULL),(869559,'Jean Toulout',1887,1962),(869590,'Robert Toupin',1948,NULL),(869664,'Jacques Tourneur',1904,1977),(869665,'Maurice Tourneur',1876,1961),(869827,'Luis Felipe Tovar',1961,NULL),(869830,'Lupita Tovar',1910,2016),(869860,'Leo Tover',1902,1964),(869871,'Russell Tovey',1981,NULL),(869927,'Constance Towers',1933,NULL),(869935,'Harry Alan Towers',1920,2009),(869946,'Lisa Towers',NULL,NULL),(869979,'Tom Towler',NULL,NULL),(870007,'Katharine Towne',NULL,NULL),(870013,'Roger Towne',NULL,NULL),(870061,'Colin Towns',1949,NULL),(870106,'Clayton Townsend',NULL,NULL),(870150,'Leo Townsend',1908,1987),(870168,'Omar Townsend',NULL,NULL),(870175,'Pete Townshend',1945,NULL),(870186,'Robert Townsend',1957,NULL),(870204,'Stuart Townsend',1972,NULL),(870317,'Etsushi Toyokawa',1962,NULL),(870369,'Riccardo Tozzi',NULL,NULL),(870430,'Bob Tracey',1923,2007),(870469,'Dan Trachtenberg',NULL,NULL),(870651,'Jane Trahey',1923,2000),(870660,'Armitage Trail',1902,1930),(870694,'Todd Traina',1969,NULL),(870780,'Christian Tramitz',1955,NULL),(870841,'Anh Hung Tran',1962,NULL),(870865,'John M. Tran',NULL,NULL),(870918,'Tom. T. Tran',NULL,NULL),(871009,'Barbara Tranter',NULL,NULL),(871086,'Pablo Trapero',1971,NULL),(871121,'Antonio Trashorras',1969,NULL),(871136,'Stephen Trask',NULL,NULL),(871166,'Joe Traub',1901,1936),(871188,'Andrew Traucki',NULL,NULL),(871240,'Daniel J. Travanti',1940,NULL),(871252,'B. Traven',1882,1969),(871261,'John D. Voelker',1903,1991),(871272,'Bill Travers',1922,1994),(871287,'Henry Travers',1874,1965),(871308,'P.L. Travers',1899,1996),(871337,'Madlaine Traverse',1875,1964),(871393,'Greg Travis',1958,NULL),(871403,'June Travis',1914,2008),(871406,'Kylie Travis',1970,NULL),(871428,'Pete Travis',NULL,NULL),(871432,'Richard Travis',1913,1989),(871456,'Joey Travolta',1950,NULL),(871632,'Gyula Trebitsch',1914,2005),(871636,'Robert Trebor',1953,NULL),(871730,'Richard Tregaskis',1916,1973),(871737,'Peter Tregloan',NULL,NULL),(871816,'Paul Trejo',1953,NULL),(871827,'Jerzy Trela',1942,2022),(871845,'Tim Treloar',NULL,NULL),(871860,'Jeff Tremaine',1966,NULL),(871876,'Les Tremayne',1913,2003),(872045,'Steve Trenbirth',NULL,NULL),(872058,'Tracey Trench',NULL,NULL),(872077,'George W. Trendle',1884,1972),(872242,'Adam Trese',1969,NULL),(872308,'Sergey Tretyakov',1892,1939),(872316,'Blair Treu',NULL,NULL),(872331,'Monika Treut',1954,NULL),(872383,'Leonardo Treviglio',1949,NULL),(872456,'Claire Trevor',1910,2000),(872653,'Tatjana Trieb',1985,NULL),(872765,'Adriana Trigiani',1969,NULL),(872799,'Paul Trijbits',1961,NULL),(872805,'Michael Trikilis',1940,2019),(872910,'Jasmine Trinca',1981,NULL),(873005,'Marie Trintignant',1962,2003),(873097,'Louis Tripp',1973,NULL),(873193,'Victor Trivas',1896,1970),(873266,'Rose Troche',1964,NULL),(873282,'Kenith Trodd',1936,NULL),(873296,'Jan Troell',1931,NULL),(873306,'Suzanne de Troeye',NULL,NULL),(873385,'Massimo Troisi',1953,1994),(873416,'Susan Troldmyr',NULL,NULL),(873531,'Michael Tronick',NULL,NULL),(873560,'Ernest Troost',1953,NULL),(873579,'Joseph Tropiano',NULL,NULL),(873693,'Kate Trotter',1953,NULL),(873695,'Laura Trotter',1950,NULL),(873707,'Lamar Trotti',1900,1952),(873739,'David Troughton',1950,NULL),(873744,'Sam Troughton',1977,NULL),(873779,'Gary Trousdale',1960,NULL),(873833,'Alan M. Trow',NULL,NULL),(873983,'Liz Trubridge',NULL,NULL),(873998,'Michael Trucco',NULL,NULL),(874011,'Laurent Truchot',NULL,NULL),(874086,'Rachel True',1966,NULL),(874093,'David Trueba',1969,NULL),(874096,'Fernando Trueba',1955,NULL),(874100,'Guerdon Trueblood',1933,2021),(874106,'Eric Trueheart',1969,NULL),(874124,'Howard Truesdale',1861,1941),(874223,'Marc Trujillo',NULL,NULL),(874232,'Raoul Max Trujillo',1955,NULL),(874308,'Dalton Trumbo',1905,1976),(874351,'Marcus Trumpp',1974,NULL),(874353,'Natalie Trundy',1940,2019),(874405,'John Truscott',1936,1993),(874450,'Alan Trustman',1930,NULL),(874497,'Glenn Tryon',1898,1970),(874502,'Tom Tryon',1926,1991),(874522,'Edmund Trzcinski',1921,1996),(874631,'Kuo Jung Tsai',NULL,NULL),(874639,'Sung-Lin Tsai',NULL,NULL),(874642,'Yi-chun Tsai',NULL,NULL),(874676,'Eric Tsang',1953,NULL),(874683,'Kan-Cheung Tsang',NULL,NULL),(874720,'Hui-Chi Tsao',NULL,NULL),(874774,'Mark Tschanz',NULL,NULL),(874787,'Peter Tscherkassky',1958,NULL),(874844,'Alex Tse',NULL,NULL),(874845,'Andy Tse',NULL,NULL),(874865,'Miao Xie',1984,NULL),(874913,'Derrick Tseng',1954,NULL),(874926,'Nadia Tsenova',NULL,NULL),(875129,'Viktor Tsoy',1962,1990),(875208,'Yoshiko Tsubouchi',1915,1985),(875223,'Tsutomu Tsuchikawa',NULL,NULL),(875237,'Yoshio Tsuchiya',1927,2017),(875257,'Yasushi Tsuge',NULL,NULL),(875261,'Tsugumi',1976,NULL),(875275,'Elvis Tsui',1960,NULL),(875306,'Hisakazu Tsuji',NULL,NULL),(875307,'Kaori Tsuji',NULL,NULL),(875320,'Shinpachi Tsuji',1956,NULL),(875329,'Kenzo Tsujimoto',NULL,NULL),(875332,'Mahito Tsujimura',1930,2018),(875354,'Shin\'ya Tsukamoto',1960,NULL),(875362,'Yôko Tsukasa',1934,NULL),(875366,'Yumeji Tsukioka',1922,2017),(875367,'Slava Tsukerman',NULL,NULL),(875370,'Ryûnosuke Tsukigata',1902,1970),(875378,'Ryôe Tsukimura',1963,NULL),(875442,'Hiromi Tsuru',1960,2017),(875453,'Kazuya Tsurumaki',1966,NULL),(875457,'Shingo Tsurumi',1964,NULL),(875468,'Norio Tsuruta',NULL,NULL),(875477,'Keiko Tsushima',1926,2012),(875489,'Yasutaka Tsutsui',1934,NULL),(875662,'Morton Tubor',1917,2019),(875705,'Ugo Tucci',1930,NULL),(875710,'Liz Tuccillo',1964,NULL),(875736,'Jessica Tuchinsky',NULL,NULL),(875746,'Wanda Tuchock',1898,1985),(875777,'Nate Tuck',NULL,NULL),(875793,'Anand Tucker',1963,NULL),(875844,'Diane Tucker',NULL,NULL),(875861,'Forrest Tucker',1919,1986),(875949,'Melville Tucker',NULL,NULL),(875951,'Michael Tucker',1945,NULL),(876051,'Teresa Tucker-Davies',NULL,NULL),(876072,'Antoine Tudal',1931,2010),(876119,'Tudor Mircea',1976,NULL),(876138,'Alan Tudyk',1971,NULL),(876211,'Sonny Tufts',1911,1970),(876227,'Richard Tuggle',1948,NULL),(876287,'Onur Tukel',1972,NULL),(876300,'Ulrich Tukur',1957,NULL),(876392,'Barbara Tulliver',NULL,NULL),(876403,'Richard Tulloch',NULL,NULL),(876419,'Colin Tully',1954,2021),(876432,'Jim Tully',1891,1947),(876511,'David Tumblety',NULL,NULL),(876562,'Karl Tunberg',1909,1992),(876564,'William Tunberg',1905,1988),(876567,'Irène Tunc',1934,1972),(876602,'Barbie Tung',NULL,NULL),(876603,'Bill Tung',1933,2006),(876611,'Jennifer Tung',1973,NULL),(876683,'Gary J. Tunnicliffe',1968,NULL),(876811,'Tristram Tupper',1885,1954),(876947,'Enzo Turco',1902,1983),(876958,'Paige Turco',1965,NULL),(876997,'Mustapha Ture',NULL,NULL),(877234,'Christina Turley',NULL,NULL),(877270,'Glynn Turman',1947,NULL),(877273,'John Turman',NULL,NULL),(877274,'Lawrence Turman',1926,2023),(877318,'Hector Turnbull',1884,1934),(877325,'John Turnbull',1880,1956),(877382,'Ann Turner',1960,NULL),(877414,'Bill Turner',NULL,NULL),(877425,'Bonnie Turner',1940,NULL),(877430,'Bree Turner',1977,NULL),(877548,'F.A. Turner',1858,1923),(877555,'Frantz Turner',1948,NULL),(877587,'Guinevere Turner',1968,NULL),(877901,'Terry Turner',1947,NULL),(877913,'Tina Turner',1939,2023),(877945,'Yolande Turner',1935,2003),(877994,'Sarah Turoche',NULL,NULL),(878017,'Scott Turow',1949,NULL),(878031,'André Turpin',1966,NULL),(878090,'Enzo Turrin',NULL,NULL),(878141,'Birkett Turton',1982,NULL),(878155,'Nicholas Turturro',1962,NULL),(878240,'Rita Tushingham',1942,NULL),(878292,'Frederic Tuten',NULL,NULL),(878338,'Frank Tuttle',1892,1963),(878494,'Mark Twain',1835,1910),(878526,'Tommy Tweed',1907,1971),(878586,'Jennifer Twiner McCarron',NULL,NULL),(878604,'Derek N. Twist',1905,1979),(878638,'David Twohy',1955,NULL),(878645,'Anne Twomey',1951,NULL),(878716,'Jonathan Tydor',NULL,NULL),(878756,'Tom Tykwer',1965,NULL),(878763,'Morten Tyldum',1967,NULL),(878773,'Anne Tyler',1941,NULL),(878784,'Brian Tyler',1953,NULL),(878925,'Tobijah Tyler',NULL,NULL),(878953,'Evan Tylor',NULL,NULL),(878985,'Kenneth Tynan',1927,1980),(879073,'Susan Tyrrell',1945,2012),(879085,'Tyrese Gibson',1978,NULL),(879154,'Cathy Tyson',1965,NULL),(879186,'Richard Tyson',1961,NULL),(879198,'Nerida Tyson-Chew',NULL,NULL),(879218,'Galina Tyunina',1967,NULL),(879318,'Bob Tzudiker',1953,NULL),(879423,'Péter Tímár',1950,NULL),(879432,'Anita Tóth',1972,NULL),(879556,'Mari Törőcsik',1935,2021),(879559,'Ferenc Török',1971,NULL),(879693,'Toshio Ubukata',NULL,NULL),(879736,'Katsumasa Uchida',1944,2020),(879749,'Shungiku Uchida',1959,NULL),(879761,'Yoshiro Uchida',NULL,NULL),(879762,'Yuki Uchida',1975,NULL),(879799,'Gal Uchovsky',1958,NULL),(879853,'Albert Uderzo',1927,2020),(879889,'Leslee Udwin',1957,NULL),(879895,'César Vea',NULL,NULL),(879907,'Akinari Ueda',1734,1809),(879918,'Kichijirô Ueda',1904,1972),(879921,'Shôji Ueda',1938,NULL),(879936,'Yûji Ueda',1967,NULL),(879945,'Ken Uehara',1909,1991),(879947,'Misa Uehara',1937,2003),(879963,'Jun\'ichi Uematsu',NULL,NULL),(879992,'Kôji Ueno',1960,NULL),(880001,'Sôichi Ueno',1969,NULL),(880048,'Andrea Ugalde',NULL,NULL),(880078,'Alan Uger',NULL,NULL),(880148,'Natalie Uher',1968,NULL),(880167,'Nadja Uhl',1972,NULL),(880187,'Gisela Uhlen',1919,2007),(880243,'Jim Uhls',1957,NULL),(880261,'Alfred Uhry',1936,NULL),(880299,'Tsuyoshi Ujiki',1957,NULL),(880407,'Lembit Ulfsak',1947,2017),(880484,'Gaspard Ulliel',1984,2022),(880489,'Daniel B. Ullman',1918,1979),(880493,'Elwood Ullman',1903,1985),(880504,'Raviv Ullman',1986,NULL),(880521,'Liv Ullmann',1938,NULL),(880554,'Tristán Ulloa',1970,NULL),(880606,'Yves Ulmann',NULL,NULL),(880618,'Edgar G. Ulmer',1904,1972),(880744,'Björn Ulvaeus',1945,NULL),(880774,'Fred Ulysse',1934,2020),(880839,'Shigeru Umebayashi',1951,NULL),(880849,'Tomoko Umeda',1952,NULL),(880851,'Yoshiaki Umegaki',1959,NULL),(880854,'Haruo Umekawa',NULL,NULL),(880861,'Yôko Umemura',1903,1944),(880930,'Miguel de Unamuno',1864,1936),(880946,'Emilia Unda',1879,1939),(880979,'Derick V. Underschultz',NULL,NULL),(880993,'Dave Underwood',1966,NULL),(881038,'Ron Underwood',NULL,NULL),(881067,'Johan Unenge',NULL,NULL),(881100,'Enzo Ungari',1948,1985),(881103,'Kika Ungaro',1959,NULL),(881104,'David Ungaro',NULL,NULL),(881279,'Lee Unkrich',1967,NULL),(881302,'Isamu Uno',NULL,NULL),(881303,'Jûkichi Uno',1914,1988),(881378,'Julian Unthank',NULL,NULL),(881420,'Anand Upadhyaya',NULL,NULL),(881433,'John Updike',1932,2009),(881485,'William Hazlett Upson',1891,1975),(881490,'Andrew Upton',1966,NULL),(881501,'Gabrielle Upton',1921,2022),(881544,'Tatsuhiko Urahata',NULL,NULL),(881590,'Hidehiko Urayama',NULL,NULL),(881631,'Karl Urban',1972,NULL),(881672,'James Urbaniak',1963,NULL),(881703,'Douglas Urbanski',1957,NULL),(881752,'Vanna Urbino',1929,2023),(881762,'Enrique Urbizu',1962,NULL),(881802,'Alejandro Urdapilleta',1954,2013),(881811,'Leslie Urdang',1956,NULL),(881823,'Simone Urdl',NULL,NULL),(881829,'Mary Ure',1933,1975),(881866,'Marcello Urgeghe',NULL,NULL),(881919,'Imanol Uribe',1950,NULL),(881973,'Frank J. Urioste',1938,NULL),(881979,'Leon Uris',1924,2003),(882013,'Khadisha Urmurzina',NULL,NULL),(882102,'David Urrutia',NULL,NULL),(882119,'Suresh Urs',NULL,NULL),(882151,'Susan Ursitti',NULL,NULL),(882201,'Sergey Urusevskiy',1908,1974),(882203,'Zaza Urushadze',1965,2019),(882237,'Saro Urzì',1913,1979),(882270,'Nicola Usborne',NULL,NULL),(882296,'Svyatoslav Ushakov',NULL,NULL),(882330,'Kinka Usher',NULL,NULL),(882388,'Michael E. Uslan',1950,NULL),(882588,'Kenneth Utt',1921,1994),(882683,'Pierre Uytterhoeven',NULL,NULL),(882853,'Brenda Vaccaro',1939,NULL),(882867,'Rodney Patrick Vaccaro',1952,NULL),(882927,'Christine Vachon',1962,NULL),(882994,'Jaime Vadell',1935,NULL),(882997,'Mathieu Vadepied',1963,NULL),(883075,'Emil Vagenshtain',1930,1996),(883125,'Pascal Vaguelsy',NULL,NULL),(883130,'Youssef Vahabzadeh',NULL,NULL),(883260,'Moisey Vaynberg',1919,1996),(883267,'Colin Vaines',NULL,NULL),(883328,'Ernest Vajda',1886,1954),(883335,'Ladislaus Vajda',1877,1933),(883351,'Andrew G. Vajna',1944,2019),(883480,'Holly Valance',1983,NULL),(883505,'Hristos Valavanidis',1944,NULL),(883517,'Birgitta Valberg',1916,2014),(883582,'Xenia Valderi',1926,2008),(883603,'David Valdes',1950,NULL),(883769,'Stefan Valdobrev',1970,NULL),(883940,'Nancy Valen',1965,NULL),(884030,'Joan Valent',NULL,NULL),(884152,'Albert Valentin',1902,1968),(884157,'Barbara Valentin',1940,2002),(884227,'Elmer Valentine',NULL,NULL),(884252,'Joseph A. Valentine',1900,1949),(884259,'Karen Valentine',1947,NULL),(884306,'Scott Valentine',1958,NULL),(884318,'Val Valentine',1895,1971),(884425,'Chris Valenziano',NULL,NULL),(884439,'Daniel Valenzuela',NULL,NULL),(884547,'Tonino Valerii',1934,2016),(884665,'Rosa Valetti',1876,1937),(884854,'Rose Valland',1898,1980),(884964,'Rudy Vallee',1901,1986),(884979,'Enrique Juan Vallejo',1882,1950),(885014,'Nick Vallelonga',NULL,NULL),(885084,'Aldo Valletti',1930,1992),(885091,'Michele Valley',NULL,NULL),(885098,'Alida Valli',1921,2006),(885123,'Romolo Valli',1925,1980),(885128,'Virginia Valli',1896,1968),(885137,'Robert Vattier',1906,1982),(885203,'Raf Vallone',1916,2002),(885221,'Jaume Valls',NULL,NULL),(885249,'Jean-Marc Vallée',1963,2021),(885417,'Mato Valtonen',1955,NULL),(885453,'Tito Valverde',1951,NULL),(885575,'Chris Van Allsburg',1949,NULL),(885612,'Brad Van Arragon',NULL,NULL),(885840,'Emily VanCamp',1986,NULL),(885857,'Didier Van Cauwelaert',1960,NULL),(885864,'Darrell Van Citters',1956,NULL),(885900,'Alicia Van Couvering',1982,NULL),(885965,'Edmond Van Daële',1884,1960),(886079,'Dorothée Van Den Berghe',NULL,NULL),(886156,'Andrew van den Houten',1979,NULL),(886394,'Lourens van der Post',1906,1996),(886469,'Diana Van der Vlis',1935,2001),(886597,'S.S. Van Dine',1887,1939),(886638,'Mamie Van Doren',1931,NULL),(886668,'John Van Druten',1901,1957),(886745,'Phillip Van Dyke',1984,NULL),(886749,'Shane Van Dyke',1979,NULL),(886754,'W.S. Van Dyke',1889,1943),(886781,'Henk Van Eeghen',NULL,NULL),(886820,'Richard L. Van Enger',1914,1984),(886861,'Dale Van Every',1896,1976),(886870,'Peter van Eyck',1911,1969),(886888,'Jo Van Fleet',1915,1996),(886976,'Felix van Groeningen',1977,NULL),(887015,'Jean Van Hamme',1939,NULL),(887144,'Brian Van Holt',1969,NULL),(887174,'Buddy Van Horn',1928,2021),(887206,'Jelka van Houten',1978,NULL),(887227,'Hoyte Van Hoytema',1971,NULL),(887263,'Caroline Van Iseghem',NULL,NULL),(887351,'Pino Van Lamsweerde',1940,2020),(887363,'Phillip Edward Van Lear',NULL,NULL),(887508,'Sander van Meurs',NULL,NULL),(887551,'Jon Van Ness',NULL,NULL),(887630,'Richard Van Oosterhout',1962,NULL),(887635,'Kees Van Oostrum',1953,NULL),(887675,'Veerle van Overloop',NULL,NULL),(887684,'Nina van Pallandt',1932,NULL),(887690,'Frank Van Passel',1964,NULL),(887701,'Vincent Van Patten',1957,NULL),(887708,'Melvin Van Peebles',1932,2021),(887757,'Jodi Van Prang',NULL,NULL),(887769,'Geert Van Rampelberg',1975,NULL),(887800,'Tim Van Rellim',1944,NULL),(887858,'Kay Van Riper',1907,1948),(888000,'Edward Van Sloan',1882,1964),(888022,'Alan Van Sprang',1971,NULL),(888099,'Walter Van Tilburg Clark',1909,1971),(888113,'John Van Tongeren',NULL,NULL),(888144,'Virginia Van Upp',1902,1970),(888207,'Monique van Vooren',1927,2020),(888241,'Sterling Van Wagenen',1947,NULL),(888276,'Thierry van Werveke',1958,2009),(888329,'Jim Van Wyck',NULL,NULL),(888404,'Dorothy Van',1928,2002),(888418,'Marina de Van',1971,NULL),(888468,'Karine Vanasse',1983,NULL),(888479,'Irene Vanbrugh',1872,1949),(888487,'Jan Vancaillie',1960,NULL),(888491,'Norman Vance Jr.',NULL,NULL),(888503,'Danitra Vance',1954,1994),(888536,'Kenny Vance',1943,NULL),(888564,'Steve Vance',NULL,NULL),(888595,'Vladislav Vancura',1891,1942),(888605,'Luc Vandal',1955,NULL),(888606,'Marcel Vandal',1882,1965),(888720,'Chris Vander Stappen',1959,2014),(888743,'James Vanderbilt',1975,NULL),(888780,'Julia Vanderham',NULL,NULL),(888905,'Michel Vandestien',NULL,NULL),(888937,'Titos Vandis',1917,2003),(888947,'Ivan Vandor',1932,2020),(889022,'Petr Vanek',1979,NULL),(889024,'Charles Vanel',1892,1989),(889066,'Jonathan Vanger',1962,NULL),(889152,'Vanity',1959,2016),(889169,'Derek Vanlint',1932,2010),(889255,'Jean-Claude Vannier',1943,NULL),(889350,'CJ Vanston',NULL,NULL),(889513,'Agnès Varda',1928,2019),(889522,'Nia Vardalos',1962,NULL),(889678,'Checco Varese',NULL,NULL),(889714,'György Varga',NULL,NULL),(889829,'Francisco Vargas',NULL,NULL),(889846,'Jacob Vargas',1971,NULL),(889926,'Valentina Vargas',1964,NULL),(889962,'Michael Varhol',NULL,NULL),(890043,'John Varley',1947,NULL),(890055,'Indira Varma',1973,NULL),(890144,'David Varod',1947,NULL),(890232,'Michael Vartan',1968,NULL),(890248,'Rosy Varte',1923,2012),(890330,'Magda Vásáryová',1948,NULL),(890388,'Luiz Carlos Vasconcelos',1954,NULL),(890548,'Oleg Vasilkov',1970,NULL),(890564,'Boris Vasilev',1924,2013),(890622,'Mita Vashisht',1967,NULL),(890679,'Jhonen Vasquez',1974,NULL),(890825,'Vassilis Vassilikos',1934,NULL),(890864,'P. Vasu',NULL,NULL),(891002,'Ralph Vaughan Williams',1872,1958),(891027,'Dorothy Vaughan',1890,1955),(891038,'Frankie Vaughan',1928,1999),(891048,'Jacob Vaughan',NULL,NULL),(891092,'Peter Vaughan',1923,2016),(891114,'Tom Vaughan',1969,NULL),(891126,'Gerald Vaughan-Hughes',NULL,NULL),(891216,'Matthew Vaughn',1971,NULL),(891275,'Emmanuelle Vaugier',1976,NULL),(891299,'Lyn Vaus',NULL,NULL),(891387,'Tamás Vayer',1941,2001),(891514,'Alex Veadov',1962,NULL),(891531,'John Veale',1922,2006),(891554,'Francis Veber',1937,NULL),(891783,'Alan Noel Vega',NULL,NULL),(891786,'Alexa PenaVega',1988,NULL),(891830,'Gonzalo Vega',1946,2016),(891835,'Isela Vega',1939,2021),(891895,'Paz Vega',1976,NULL),(891998,'Conrad Veidt',1893,1943),(892044,'Anthony Veiller',1903,1965),(892109,'John Veitch',1920,1998),(892170,'Goran Vejvoda',1956,NULL),(892299,'Manuela Velasco',1975,NULL),(892383,'Patricia Velasquez',1971,NULL),(892705,'David Veloz',1962,NULL),(892799,'Diego Velázquez',NULL,NULL),(892857,'Monique van de Ven',1952,NULL),(892868,'James L. Venable',1967,NULL),(892917,'Vera Venczel',1946,2021),(892957,'Alex Vendler',NULL,NULL),(893079,'Sandy Veneziano',NULL,NULL),(893204,'Diane Venora',1952,NULL),(893206,'Giovanni Venosta',1961,NULL),(893207,'Louis Venosta',NULL,NULL),(893257,'Milo Ventimiglia',1977,NULL),(893262,'Jennifer Ventimilia',1966,NULL),(893320,'Clyde Ventura',1936,1990),(893341,'Lino Ventura',1919,1987),(893364,'Ray Ventura',1908,1979),(893473,'Malcolm Venville',NULL,NULL),(893487,'John Venzon',NULL,NULL),(893584,'Vera-Ellen',1921,1981),(893638,'Natalia Verbeke',1975,NULL),(893659,'Gore Verbinski',1964,NULL),(893872,'Carlo Verdone',1950,NULL),(893895,'Pat Verducci',NULL,NULL),(893941,'Maribel Verdú',1970,NULL),(893965,'Ben Vereen',1946,NULL),(893999,'Matyas Veress',NULL,NULL),(894156,'Mark Verheiden',NULL,NULL),(894166,'Gordon Verheul',NULL,NULL),(894173,'Sylvie Verheyde',NULL,NULL),(894201,'Michael Verhoeven',1938,NULL),(894207,'Simon Verhoeven',1972,NULL),(894251,'Peter H. Verity',1933,1999),(894302,'Bernard Verley',1939,NULL),(894303,'Françoise Verley',NULL,NULL),(894382,'Peter Vermeersch',1959,NULL),(894411,'Patrice Vermette',1970,NULL),(894523,'Jules Verne',1828,1905),(894524,'Kaaren Verne',1918,1967),(894579,'Louis Verneuil',1893,1952),(894613,'Igor Vernik',1963,NULL),(894636,'Anne Vernon',1924,NULL),(894742,'Marion Vernoux',1966,NULL),(894949,'Marie Versini',1939,2021),(894956,'Gijs Versluys',NULL,NULL),(895036,'Marianna Vertinskaya',1943,NULL),(895048,'Dziga Vertov',1896,1954),(895059,'Franco Verucci',NULL,NULL),(895150,'Eduardo Verástegui',1974,NULL),(895160,'Erico Verissimo',1905,1975),(895308,'Tricia Vessey',1972,NULL),(895366,'Louise Vesth',1973,NULL),(895515,'Gabriel Veyre',1871,1936),(895530,'Caroline Veyt',NULL,NULL),(895613,'Jean-Louis Vialard',NULL,NULL),(895644,'Boris Vian',1920,1959),(895759,'Karin Viard',1966,NULL),(895772,'Kenneth H. Wiatrak',NULL,NULL),(895774,'André Viau',NULL,NULL),(895812,'Ronan Vibert',1964,2022),(895859,'Eric Vicaut',NULL,NULL),(895903,'Joana Vicente',NULL,NULL),(896015,'Martha Vickers',1925,1971),(896057,'Scott Vickrey',NULL,NULL),(896097,'Daniel J. Victor',NULL,NULL),(896107,'Harry Victor',NULL,NULL),(896109,'Henry Victor',1892,1945),(896131,'Mark Victor',NULL,NULL),(896139,'Paulette Victor-Lifton',1958,NULL),(896165,'John Victor Smith',NULL,2019),(896292,'Christina Vidal',1981,NULL),(896331,'Henri Vidal',1919,1959),(896356,'Jérôme Vidal',NULL,NULL),(896428,'Albert Vidalie',1913,1971),(896480,'John Vidette',NULL,NULL),(896485,'Robin Vidgeon',1939,NULL),(896533,'Charles Vidor',1900,1959),(896542,'King Vidor',1894,1982),(896735,'Vince Vieluf',1970,NULL),(896742,'John Viener',1972,NULL),(896801,'Vesa Vierikko',1956,NULL),(896826,'Berthold Viertel',1885,1953),(896828,'Jack Viertel',NULL,NULL),(896830,'Peter Viertel',1920,2007),(896902,'Mihály Vig',1957,NULL),(896916,'Tal Vigderson',NULL,NULL),(897045,'Daniel Vigne',1942,NULL),(897065,'Grégoire Vigneron',NULL,NULL),(897109,'Benno Vigny',1889,1965),(897118,'Jean Vigo',1905,1934),(897350,'Alfonso de Vilallonga',1960,NULL),(897358,'Bruce Vilanch',1948,NULL),(897376,'Antonio Vilar',1912,1995),(897399,'Stéphane Vilar',1944,NULL),(897401,'Emma Vilarasau',1959,NULL),(897640,'Mónica Villa',1954,NULL),(897681,'Anders Villadsen',1964,NULL),(897693,'Chunchuna Villafañe',1940,NULL),(897715,'Paolo Villaggio',1932,2017),(897721,'Nelson Villagra',1937,NULL),(897777,'Carlos Villalobos',NULL,NULL),(897788,'Ligiah Villalobos',NULL,NULL),(897794,'Reynaldo Villalobos',1940,NULL),(897808,'José Luis de Vilallonga',1920,2007),(897813,'David Villalpando',1959,NULL),(897845,'Soledad Villamil',1969,NULL),(897930,'Mariví de Villanueva',NULL,NULL),(898001,'Dimitri Villard',NULL,NULL),(898107,'Carlos Villarías',1892,1976),(898136,'George C. Villaseñor',1931,2009),(898252,'Michael Villella',NULL,NULL),(898288,'Denis Villeneuve',1967,NULL),(898293,'James P. Villeneuve',NULL,NULL),(898317,'Jacques Villeret',1951,2005),(898365,'Cat Villiers',NULL,NULL),(898376,'James Villiers',1933,1998),(898420,'Enrique Villén',1960,NULL),(898507,'Edgardo Vinarao',NULL,NULL),(898534,'Anne Vince',NULL,NULL),(898535,'Barrie Vince',1933,NULL),(898547,'Robert Vince',NULL,NULL),(898549,'William Vince',1963,2008),(898571,'Alex Vincent',1981,NULL),(898575,'Amy Vincent',1959,NULL),(898597,'Cerina Vincent',NULL,NULL),(898603,'Christian Vincent',1955,NULL),(898634,'Frank Vincent',1937,2017),(898653,'Hélène Vincent',1943,NULL),(898782,'Virginia Vincent',1918,2013),(898798,'François Vincentelli',NULL,NULL),(898812,'Luciano Vincenzoni',1926,2013),(898965,'Karel Vingerhoets',1953,NULL),(899091,'Helen Vinson',1907,1999),(899113,'Jeff Vintar',NULL,NULL),(899121,'Thomas Vinterberg',1969,NULL),(899160,'Marcus Vinícius',1946,2003),(899187,'Joe Viola',NULL,NULL),(899193,'Mary Viola',NULL,NULL),(899254,'Jacques Viot',1898,1973),(899282,'André Vippolis',NULL,NULL),(899328,'Eric James Virgets',NULL,NULL),(899329,'Norton Virgien',NULL,NULL),(899476,'Ville Virtanen',1961,NULL),(899500,'Carlo Virzì',NULL,NULL),(899501,'Paolo Virzì',1964,NULL),(899531,'Chris Viscardi',1962,NULL),(899553,'Marcus Viscidi',1955,NULL),(899581,'Luchino Visconti',1906,1976),(899681,'Goran Visnjic',1972,NULL),(899918,'Keith Vitali',NULL,NULL),(899930,'Élisabeth Vitali',NULL,NULL),(899953,'Mike Vitar',1978,NULL),(899958,'Joseph Vitarelli',NULL,NULL),(899995,'Joe Viterelli',1937,2004),(900004,'Antoine Vitez',1930,1990),(900012,'Kim Vithana',1969,NULL),(900053,'Robert Vito',1987,NULL),(900118,'Virginie Vitry',NULL,NULL),(900136,'Judith Vittet',1984,NULL),(900140,'Jon Vitti',NULL,NULL),(900143,'Monica Vitti',1931,2022),(900238,'Piero Vivarelli',1927,2010),(900251,'Miguel Ángel Vivas',NULL,NULL),(900266,'Vivek',1961,2021),(900354,'Bettina Sofia Viviano',NULL,NULL),(900503,'Alex Vlacos',NULL,NULL),(900505,'Alessio Vlad',1955,NULL),(900651,'Jan Vlasák',1943,NULL),(900712,'Frantisek Vlácil',1924,1999),(900752,'Lou Vockell',1954,NULL),(900806,'Sandra Voe',1936,NULL),(900820,'Kurt Voelker',NULL,NULL),(900840,'P.J. Voeten',NULL,NULL),(900915,'Jürgen Vogel',1968,NULL),(900931,'Mark Vogel',NULL,NULL),(900944,'Paul Vogel',1899,1975),(901044,'Karl Michael Vogler',1928,2009),(901057,'Rüdiger Vogler',1942,NULL),(901074,'Ethan Vogt',NULL,NULL),(901110,'Stephanie Vogt',NULL,NULL),(901113,'Thomas M. Vogt',NULL,NULL),(901138,'Alfred Vohrer',1914,1986),(901384,'Katie Volding',1989,NULL),(901446,'Stephen Volk',1954,NULL),(901456,'Klaus Volkenborn',1945,2005),(901485,'Donald Volkman',NULL,NULL),(901617,'Lula Vollmer',1889,1955),(901629,'Karl Vollmöller',1878,1948),(901668,'Aleksandr Volodin',1919,2001),(901822,'Jeanette Volturno',NULL,NULL),(901896,'Elizabeth von Arnim',1866,1941),(901911,'Peter von Bagh',1943,2014),(902022,'Achim von Borries',1968,NULL),(902038,'Patrizia von Brandenstein',1943,NULL),(902059,'Tomas von Brömssen',1943,NULL),(902092,'Wiebke von Carolsfeld',1966,NULL),(902129,'Burkhard von Dallwitz',1959,NULL),(902135,'Alexander Von David',NULL,NULL),(902188,'Lenny von Dohlen',1958,2022),(902282,'Molly von Fürstenberg',NULL,NULL),(902290,'Katja von Garnier',1966,NULL),(902376,'Thea von Harbou',1888,1954),(902419,'Vonnie von Helmolt',NULL,NULL),(902455,'Wilhelm von Homburg',1940,2004),(902535,'Heinrich von Kleist',1777,1811),(902685,'Barbara von Meck',NULL,NULL),(902794,'Heidi von Palleske',NULL,NULL),(902839,'Géza von Radványi',1907,1986),(902939,'Daisy von Scherler Mayer',NULL,NULL),(903049,'Josef von Sternberg',1894,1969),(903100,'Hantz von Teuffen',NULL,NULL),(903125,'Maria von Trapp',1905,1987),(903137,'Margarethe von Trotta',1942,NULL),(903145,'Hans Heinrich von Twardowski',1898,1958),(903160,'János Vaszary',1899,1963),(903167,'Joachim von Vietinghoff',1941,NULL),(903194,'Gustav von Wangenheim',1895,1975),(903220,'Otto von Wernherr',NULL,NULL),(903348,'Fabienne Vonier',1947,2013),(903361,'Kurt Vonnegut Jr.',1922,2007),(903392,'Linda Voorhees',NULL,NULL),(903405,'Arry Voorsmit',NULL,NULL),(903423,'Neeraj Vora',1963,2017),(903456,'Cyrus Voris',NULL,NULL),(903463,'Edward Vorkapich',NULL,NULL),(903554,'Reinhold Vorschneider',1951,NULL),(903617,'Sander Vos',NULL,NULL),(903623,'Marik Vos-Lundh',1923,1994),(903646,'Karl Heinz Vosgerau',1927,2021),(903677,'Arnold Vosloo',1962,NULL),(903687,'Frank Vosper',1899,1937),(903841,'Laurent Voulzy',1948,NULL),(903901,'Yorgo Voyagis',NULL,NULL),(904087,'Henny Vrienten',1948,2022),(904093,'Dolf de Vries',1937,2020),(904132,'Sergey Vronskiy',1922,2003),(904273,'Michel Vuillermoz',1962,NULL),(904349,'Laurie Vukich',NULL,NULL),(904371,'Milena Vukotic',1935,NULL),(904397,'György Vukán',1941,2013),(904531,'Murvyn Vye',1913,1976),(904551,'Louis Vyncke',NULL,NULL),(904625,'Thomas Vámos',1938,NULL),(904651,'Zoltán Várkonyi',1912,1979),(904808,'María Vázquez',1979,NULL),(904901,'Kari Väänänen',1953,NULL),(904933,'Tamás Végvári',1937,2010),(904967,'Luna Lauren Velez',1964,NULL),(905004,'Andrea Vészits',1956,NULL),(905062,'Dörte Völz-Mammarella',NULL,NULL),(905071,'Niels Vørsel',1953,NULL),(905108,'Martin van Waardenberg',1956,NULL),(905152,'Lilly Wachowski',1967,NULL),(905154,'Lana Wachowski',1965,NULL),(905157,'Caitlin Wachs',1989,NULL),(905160,'Robert D. Wachs',1940,2013),(905162,'Nat Wachsberger',1916,1992),(905163,'Patrick Wachsberger',1951,NULL),(905186,'Waddy Wachtel',1947,NULL),(905237,'Jonathan Wacks',NULL,NULL),(905268,'Kôji Wada',1944,1986),(905278,'Yutaka Wada',NULL,NULL),(905311,'Justine Waddell',1975,NULL),(905351,'Gonçalo Waddington',1977,NULL),(905357,'Steven Waddington',1967,NULL),(905458,'Kevin Wade',1954,NULL),(905498,'Robert Wade',1962,NULL),(905539,'Annette Wademant',1928,2017),(905554,'Julian Wadham',1958,NULL),(905592,'Jeff Wadlow',1976,NULL),(905603,'Tracey Wadmore-Smith',NULL,NULL),(905676,'Ana Wagener',1962,NULL),(905691,'Yorick van Wageningen',1964,NULL),(905697,'Tony Wager',1932,1990),(905709,'Walter Wager',1924,2004),(905713,'David Wages',1923,2012),(905729,'George Waggner',1894,1984),(905818,'Bruce Wagner',1954,NULL),(905820,'Bruno Wagner',NULL,NULL),(905843,'Chuck Wagner',1958,NULL),(905957,'John Wagner',1949,NULL),(905979,'Klaus Wagner',NULL,NULL),(905993,'Lindsay Wagner',1949,NULL),(906048,'Paula Wagner',1946,NULL),(906067,'Reinhardt Wagner',1956,NULL),(906096,'Roy H. Wagner',1947,NULL),(906114,'Stephan Wagner',1968,NULL),(906136,'Todd Wagner',NULL,NULL),(906174,'Virginie Wagon',1965,NULL),(906247,'Christof Wahl',NULL,NULL),(906301,'Robert Wahlberg',1967,NULL),(906307,'Lennart Wallén',1914,1967),(906311,'Mikael Wahlforss',NULL,NULL),(906320,'Linus Wahlgren',1976,NULL),(906350,'Chris Wahlström',1917,1977),(906387,'Wayne Wahrman',NULL,NULL),(906413,'Ka-Fai Wai',1962,NULL),(906470,'Tom Walls',NULL,NULL),(906476,'David Wain',1969,NULL),(906481,'Yossi Wein',NULL,NULL),(906525,'Loudon Wainwright III',1946,NULL),(906548,'Rupert Wainwright',1962,NULL),(906550,'Sally Wainwright',1964,NULL),(906558,'Erik Waisberg',1934,2007),(906610,'James R. Waite',1845,1913),(906617,'Liam Waite',1971,NULL),(906618,'Malcolm Waite',1892,1949),(906627,'Ralph Waite',1928,2014),(906634,'Trevor Waite',1943,NULL),(906640,'Thomas G. Waites',1955,NULL),(906659,'Fred Waitzkin',NULL,NULL),(906661,'Adolfo Waitzman',1932,1998),(906667,'Andrzej Wajda',1926,2016),(906686,'Akiko Wakabayashi',1941,NULL),(906696,'Norio Wakamoto',1945,NULL),(906709,'Kôji Wakamatsu',1936,2012),(906711,'Takeshi Wakamatsu',1950,NULL),(906722,'Wakana Yamazaki',1965,NULL),(906745,'Setsuko Wakayama',1929,1985),(906756,'Amr Waked',1973,NULL),(906814,'Kent L. Wakeford',1928,2020),(906850,'Frederic Wakeman',1909,1998),(906857,'Rick Wakeman',1949,NULL),(906879,'Nathan Waks',NULL,NULL),(906932,'Anton Walbrook',1896,1967),(906935,'Ruth Waldburger',1951,NULL),(906940,'Raymond Walburn',1887,1969),(906945,'Hynden Walch',NULL,NULL),(906966,'Gregory Walcott',1928,2015),(906993,'Andrew Wald',1946,NULL),(906997,'Eliot Wald',1946,2003),(906998,'Eric Wald',NULL,NULL),(907002,'Jeff Wald',1944,2021),(907003,'Jerry Wald',1911,1962),(907013,'Malvin Wald',1917,2008),(907173,'Luggi Waldleitner',1913,1998),(907186,'Frank Waldman',1919,1990),(907187,'Grant Austin Waldman',NULL,NULL),(907209,'Tom Waldman',1922,1985),(907301,'Jeffrey Waldron',NULL,NULL),(907328,'Vicky Wight',NULL,NULL),(907427,'Sonya Walger',1974,NULL),(907504,'Alice Walker',1944,NULL),(907548,'Benjamin Walker',1982,NULL),(907614,'Chris Walker',1964,NULL),(907622,'Christine K. Walker',NULL,NULL),(907636,'Clint Walker',1927,2018),(907697,'Dorian Walker',NULL,NULL),(907708,'Eamonn Walker',1962,NULL),(907742,'Galen Walker',NULL,NULL),(907778,'H.M. Walker',1878,1937),(907785,'Helen Walker',1920,1968),(907835,'Jeffrey Walker',1982,NULL),(907844,'Jeremy Kipp Walker',NULL,NULL),(907869,'John Walker',1956,NULL),(907900,'Joseph Walker',1892,1985),(907929,'Keith Walker',1935,1996),(907970,'Lesley Walker',1945,NULL),(907999,'Mandy Walker',NULL,NULL),(908024,'Matthew Walker',1968,NULL),(908037,'Michael Walker',NULL,NULL),(908055,'Nancy Walker',1922,1992),(908094,'Paul Walker',1973,2013),(908116,'Polly Walker',1966,NULL),(908121,'Randy Walker',NULL,NULL),(908153,'Robert Walker',1918,1951),(908192,'Sara Walker',NULL,NULL),(908285,'Valarie Walker',NULL,NULL),(908323,'Anne Walker-McBay',NULL,NULL),(908346,'Janey Walklin',NULL,NULL),(908352,'Gary Walkow',NULL,NULL),(908411,'Jake Wade Wall',NULL,NULL),(908457,'Matt Wall',NULL,NULL),(908525,'Anzac Wallace',1945,2019),(908561,'Charles A. Wallace',NULL,NULL),(908620,'Earl W. Wallace',1942,2018),(908624,'Edgar Wallace',1875,1932),(908681,'Inez Wallace',1888,1966),(908683,'Irving Wallace',1916,1990),(908685,'Jack Wallace',1933,2020),(908695,'Jean Wallace',1923,1990),(908753,'Lew Wallace',1827,1905),(908807,'Pamela Wallace',NULL,NULL),(908813,'Paul Wallace',1938,2001),(908824,'Randall Wallace',1949,NULL),(908861,'Shani Wallis',1933,NULL),(908890,'Tommy Lee Wallace',1949,NULL),(908914,'Dee Wallace',1948,NULL),(908919,'Eli Wallach',1915,2014),(908923,'Ira Wallach',1913,1995),(908942,'Kathryn Wallack',NULL,NULL),(909022,'Andrew Waller',NULL,NULL),(909026,'Anthony Waller',1959,NULL),(909063,'Leslie Waller',1923,2007),(909077,'Robert James Waller',1939,2017),(909101,'Norman Wallerstein',1930,2013),(909117,'Deborah Walley',1941,2001),(909144,'David Walliams',1971,NULL),(909259,'Hal B. Wallis',1899,1986),(909260,'J.H. Wallis',NULL,NULL),(909412,'Martin Wallström',1983,NULL),(909479,'Alton Walpole',NULL,NULL),(909490,'Robert Walpole',NULL,NULL),(909515,'Franziska Walser',1950,NULL),(909532,'Aisling Walsh',1958,NULL),(909541,'Angela Walsh',NULL,NULL),(909556,'Bill Walsh',1913,1975),(909578,'Brigid Brannagh',1972,NULL),(909607,'David M. Walsh',NULL,NULL),(909608,'Dearbhla Walsh',NULL,NULL),(909620,'Dylan Walsh',1963,NULL),(909626,'Eileen Walsh',1977,NULL),(909629,'Enda Walsh',1967,NULL),(909638,'Fran Walsh',1959,NULL),(909659,'Harry Walsh',NULL,NULL),(909727,'Kay Walsh',1911,2005),(909760,'Martin Walsh',1955,NULL),(909763,'Mary Walsh',1952,NULL),(909768,'Matt Walsh',1964,NULL),(909775,'Maurice Walsh',1879,1964),(909825,'Raoul Walsh',1887,1980),(909904,'Valerie Walsh',1966,NULL),(909909,'Waris Dirie',1965,NULL),(909935,'Damian Walshe-Howling',1971,NULL),(910018,'Ernest Walter',1919,1999),(910040,'Harriet Walter',1950,NULL),(910055,'Jessica Walter',1941,2021),(910145,'Tracey Walter',1947,NULL),(910180,'Ashley Walters',1982,NULL),(910199,'Charles Walters',1911,1982),(910237,'Graham Walters',NULL,NULL),(910241,'Happy Walters',NULL,NULL),(910278,'Julie Walters',1950,NULL),(910294,'Luana Walters',1912,1963),(910322,'Nancy Walters',1933,2009),(910400,'Henry B. Walthall',1878,1936),(910419,'Gabriele Walther',NULL,NULL),(910472,'Anna Walton',1980,NULL),(910510,'Fred Walton',NULL,NULL),(910543,'John Boy Walton',NULL,NULL),(910550,'Karen Walton',NULL,NULL),(910559,'Mark Walton',1968,NULL),(910601,'Kim Waltrip',NULL,NULL),(910607,'Christoph Waltz',1956,NULL),(910609,'Jeanne Waltz',1962,NULL),(910621,'Gast Waltzing',1956,NULL),(910738,'Zoë Wanamaker',1949,NULL),(910800,'Michael Wandmacher',1967,NULL),(910807,'Alan J. Wands',1952,2020),(910841,'Bin Wang',NULL,NULL),(910844,'Bozhao Wang',NULL,NULL),(910881,'Eddie Wang',1913,1981),(910924,'Hui-Ling Wang',NULL,NULL),(910947,'Faye Wong',1969,NULL),(910966,'Leehom Wang',1976,NULL),(910996,'Nathan Wang',1956,NULL),(911002,'Paul Wang',NULL,NULL),(911061,'Wayne Wang',1949,NULL),(911075,'Xiaoshuai Wang',1966,NULL),(911096,'Yu-Wen Wang',1971,NULL),(911113,'Zhiwen Wang',1966,NULL),(911137,'Walter Wanger',1894,1968),(911173,'Thomas Wanker',1973,NULL),(911239,'Patra Wanthivanond',NULL,NULL),(911285,'David Warbeck',1941,1997),(911307,'Cotton Warburton',1911,1982),(911320,'Patrick Warburton',1964,NULL),(911334,'Matthew Warchus',1966,NULL),(911389,'B.J. Ward',1944,NULL),(911395,'Barry Ward',NULL,NULL),(911422,'Brian Ward',NULL,NULL),(911431,'Burt Ward',1945,NULL),(911486,'David S. Ward',1945,NULL),(911542,'Fred Ward',1942,2022),(911589,'Jim Ward',1959,NULL),(911599,'Jay Ward',1920,1989),(911647,'Josephine Ward',NULL,NULL),(911660,'Kelly Ward',NULL,NULL),(911709,'Marion Ward',NULL,NULL),(911720,'Mary Jane Ward',1905,1981),(911725,'Megan Ward',1969,NULL),(911750,'Morgan Ward',NULL,NULL),(911783,'Peter Ward',1968,NULL),(911797,'Richard Ward',1915,1979),(911844,'Simon Ward',1941,2012),(911910,'Vincent Ward',1956,NULL),(911913,'Frank Worth',1903,1990),(911933,'Zack Ward',1970,NULL),(912001,'Jack Warden',1920,2006),(912012,'Rick Warden',1971,NULL),(912115,'Irene Ware',1910,1993),(912118,'Jeffrey Ware',NULL,NULL),(912183,'Piripi Waretini',NULL,NULL),(912238,'Andy Warhol',1928,1987),(912334,'Alex van Warmerdam',1952,NULL),(912337,'Marc van Warmerdam',NULL,NULL),(912353,'John Warnaby',NULL,NULL),(912396,'Amelia Warner',1982,NULL),(912403,'Aron Warner',NULL,NULL),(912431,'Chris Warner',NULL,NULL),(912491,'Jack L. Warner',1892,1978),(912536,'Mark Warner',NULL,NULL),(912598,'Steven Warner',1966,NULL),(912669,'Joey Waronker',NULL,NULL),(912766,'Charles Marquis Warren',1912,1990),(912849,'Harold P. Warren',1923,1985),(912860,'John F. Warren',1909,2000),(912874,'Jennifer Warren',1941,NULL),(912938,'Marc Warren',1967,NULL),(912965,'Mervyn Warren',1964,NULL),(912978,'Nicholas Warren',NULL,NULL),(912981,'Norman J. Warren',1942,2021),(913014,'Robert Penn Warren',1905,1989),(913017,'Rod Warren',1931,1984),(913027,'Stefani Warren',1945,NULL),(913084,'Gilbert Warrenton',1894,1980),(913085,'Lule Warrenton',1862,1932),(913094,'Robert Warwick',1878,1964),(913095,'Ruth Warrick',1916,2005),(913116,'Don Warrington',1952,NULL),(913149,'Edward Warschilka',1928,2004),(913150,'Paul C. Warschilka',1960,NULL),(913175,'David Warshofsky',1961,NULL),(913258,'Michael Warwick',1971,NULL),(913264,'Richard Warwick',1945,1997),(913300,'David Wasco',NULL,NULL),(913338,'Alice Washburn',1861,1929),(913346,'Deric Washburn',1937,NULL),(913460,'Isaiah Washington',1963,NULL),(913475,'John David Washington',1984,NULL),(913488,'Kerry Washington',1977,NULL),(913502,'Manner Washington',NULL,NULL),(913587,'Paul Wesley',NULL,NULL),(913670,'Dale Wasserman',1914,2008),(913738,'Craig Wasson',1954,NULL),(913777,'Atsuro Watabe',1968,NULL),(913780,'Takeshi Watabe',1936,2010),(913784,'Toshihisa Watai',NULL,NULL),(913796,'Fumio Watanabe',1929,2004),(913810,'Chumei Watanabe',1925,2022),(913822,'Ken Watanabe',1959,NULL),(913860,'Shin\'ichirô Watanabe',1965,NULL),(913870,'Takashi Watanabe',NULL,NULL),(913880,'Tetsu Watanabe',1950,NULL),(913911,'Tetsuya Watari',1941,2020),(913961,'Keith Waterhouse',1929,2009),(913963,'Mary Anne Waterhouse',NULL,NULL),(913966,'Rémi Waterhouse',1956,2014),(913993,'Dennis Waterman',1948,2022),(914003,'Ida Waterman',1852,1941),(914058,'Daniel Waters',1962,NULL),(914073,'Ed Waters',1930,2004),(914083,'Ethel Waters',1896,1977),(914112,'John Waters',1893,1965),(914132,'Mark Waters',1964,NULL),(914149,'Muddy Waters',1915,1983),(914166,'Roger Waters',1943,NULL),(914220,'Gwen Watford',1927,1994),(914234,'Martin Watier',NULL,NULL),(914239,'David Watkin',1925,2008),(914240,'Ian Watkin',1940,2016),(914245,'Lawrence Edward Watkin',1901,1981),(914296,'Edwin Watkins',NULL,NULL),(914327,'Jason Watkins',1966,NULL),(914362,'Maurine Dallas Watkins',1896,1969),(914386,'Peter Watkins',1935,NULL),(914433,'Colin Watkinson',NULL,NULL),(914455,'Leonor Watling',1975,NULL),(914471,'Pierre Watrin',NULL,NULL),(914475,'Cynthia Watros',1968,NULL),(914519,'Bobs Watson',1930,1999),(914536,'Carol Watson',1952,NULL),(914603,'Duncan Watson',1963,NULL),(914607,'Earl Watson',1948,2012),(914612,'Emma Watson',1990,NULL),(914615,'Eric Watson',NULL,NULL),(914668,'Ian Watson',NULL,NULL),(914679,'James Watson',1970,NULL),(914709,'John Watson',NULL,NULL),(914778,'Lucile Watson',1879,1962),(914929,'Willie Watson',NULL,NULL),(914941,'Nobuhiro Watsuki',1970,NULL),(915053,'Mark Watters',1955,NULL),(915074,'Jonathan Wattis',NULL,NULL),(915077,'Richard Wattis',1912,1975),(915093,'Jonathan Watton',NULL,NULL),(915125,'Danièle Watts',1985,NULL),(915145,'Frank Watts',1929,1994),(915192,'Liz Watts',NULL,NULL),(915208,'Naomi Watts',1968,NULL),(915226,'Robert Watts',1938,NULL),(915232,'Roy Watts',1942,NULL),(915272,'Alec Waugh',1898,1981),(915284,'Evelyn Waugh',1903,1966),(915304,'Scott Waugh',1970,NULL),(915320,'Claire Wauthion',1945,NULL),(915382,'Al Waxman',1935,2001),(915458,'Damon Wayans Jr.',1982,NULL),(915462,'Kim Wayans',1961,NULL),(915465,'Shawn Wayans',1971,NULL),(915468,'Kristina Wayborn',1950,NULL),(915536,'David Wayne',1914,1995),(915593,'Keith Wayne',1945,1995),(915637,'Sarah Wayne Callies',NULL,NULL),(915680,'Shun\'ya Wazaki',NULL,NULL),(915780,'Cassius Weathersby',1935,NULL),(915800,'Paul Weatherwax',1900,1960),(915814,'Blayne Weaver',NULL,NULL),(915819,'Brooklyn Weaver',NULL,NULL),(915840,'Dennis Weaver',1924,2006),(915851,'Fritz Weaver',1926,2016),(915865,'Jacki Weaver',1947,NULL),(915872,'John \'Skip\' Weaver',1964,NULL),(915875,'John V.A. Weaver',1893,1938),(915913,'Marjorie Weaver',1913,1994),(915978,'Will Weaver',NULL,NULL),(915989,'Hugo Weaving',1960,NULL),(916037,'Bronson Webb',1983,NULL),(916047,'Charles Webb',1939,2020),(916050,'Chloe Webb',1956,NULL),(916067,'Clifton Webb',1889,1966),(916131,'Jack Webb',1920,1982); +INSERT INTO `People` VALUES (916139,'James R. Webb',1910,1974),(916158,'Jimmy Webb',1946,NULL),(916189,'Lewin Webb',NULL,NULL),(916212,'Mary Ann Webb',NULL,NULL),(916271,'Robert D. Webb',1903,1990),(916298,'Simon Webb',NULL,NULL),(916345,'Beth Webber',1904,2003),(916357,'Chris Webber',1973,NULL),(916379,'George Webber',1876,1967),(916406,'Mark Webber',1980,NULL),(916423,'Peggy Webber',1925,NULL),(916424,'Peter Webber',1960,NULL),(916432,'Richard Webber',NULL,NULL),(916434,'Robert Webber',1924,1989),(916448,'Timothy Webber',NULL,NULL),(916471,'Amy Weber',NULL,NULL),(916502,'Billy Weber',NULL,NULL),(916579,'Georg Weber',1955,NULL),(916606,'Helmut Weber',NULL,NULL),(916616,'Jacques Weber',1949,NULL),(916617,'Jake Weber',1963,NULL),(916665,'Lois Weber',1879,1939),(916675,'Marco Weber',NULL,NULL),(916688,'Michael Weber',1967,NULL),(916811,'Peggy Webling',1871,1949),(916828,'Ben Webster',1864,1947),(916883,'Ferris Webster',1912,1989),(916914,'Jean Webster',1876,1916),(916986,'Paul Webster',1952,NULL),(917059,'Nick Wechsler',NULL,NULL),(917061,'Richard Wechsler',NULL,NULL),(917066,'David Wechter',1956,NULL),(917088,'Konstantin Wecker',1947,NULL),(917149,'Frank Wedekind',1864,1918),(917163,'Rudolfo Wedeles',NULL,NULL),(917188,'Chris Wedge',1957,NULL),(917190,'Ann Wedgeworth',1934,2017),(917208,'Craig Wedren',NULL,NULL),(917281,'Laura Weekes',NULL,NULL),(917289,'Alan Weeks',1948,2015),(917314,'Gary Weeks',1972,NULL),(917347,'Perdita Weeks',1985,NULL),(917387,'Nancy Weems',1948,NULL),(917405,'Apichatpong Weerasethakul',1970,NULL),(917440,'Hanna Weg',NULL,NULL),(917660,'Minzhi Wei',NULL,NULL),(917672,'Wei Wei',1922,NULL),(917775,'Lutz Weidlich',1952,NULL),(917833,'Herman Weigel',1950,NULL),(917848,'Robin Weigert',1969,NULL),(917912,'Tor Weijden',1890,1931),(917942,'Dan Weil',NULL,NULL),(917946,'Edouard Weil',1970,NULL),(917992,'Paul Weiland',1953,NULL),(918041,'Claudia Weill',1946,NULL),(918078,'Daryl Wein',1983,NULL),(918083,'Len Wein',1948,2017),(918210,'Danielle Keaton',1986,NULL),(918315,'Isabelle Weingarten',1950,2020),(918318,'Lawrence Weingarten',1897,1975),(918326,'Hans Weingartner',1977,NULL),(918334,'Scott Weinger',1975,NULL),(918339,'Herschel Weingrod',1947,NULL),(918376,'Richard Weinman',NULL,NULL),(918400,'Klaus R. Weinrich',1954,NULL),(918422,'Ben Weinstein',NULL,NULL),(918424,'Bob Weinstein',1954,NULL),(918434,'David Z. Weinstein',NULL,NULL),(918448,'Josh Philip Weinstein',NULL,NULL),(918456,'Lisa Weinstein',NULL,NULL),(918463,'Paula Weinstein',1945,NULL),(918465,'Phil Weinstein',NULL,NULL),(918482,'Charles Weinstock',NULL,NULL),(918483,'Danielle Weinstock',NULL,NULL),(918518,'Fred Weintraub',1928,2017),(918566,'Noah Weinzweig',NULL,NULL),(918573,'Benjamin Weir',NULL,NULL),(918694,'David Weisbart',1915,1967),(918711,'David Weisberg',NULL,NULL),(918728,'Steven Weisberg',NULL,NULL),(918733,'Andrew Weisblum',NULL,NULL),(918777,'Douglas Weiser',NULL,NULL),(918816,'Mort Weisinger',1915,1978),(918833,'Michele Weisler',NULL,NULL),(918844,'David Weisman',1942,2019),(918852,'Greg Weisman',1963,NULL),(918861,'Matthew Weisman',NULL,NULL),(918873,'Sam Weisman',1947,NULL),(918891,'Adam Weiss',NULL,NULL),(918902,'Allan Weiss',1927,2017),(918907,'Andy Weiss',NULL,NULL),(918934,'Bryna Weiss',NULL,NULL),(918955,'David N. Weiss',NULL,NULL),(918992,'George Weiss',NULL,NULL),(919012,'Helmut Weiss',1907,1969),(919035,'Jennifer Weiss',NULL,NULL),(919087,'Marie Weiss',NULL,NULL),(919109,'Michael Weiss',1969,NULL),(919115,'Michael D. Weiss',NULL,NULL),(919154,'Robert K. Weiss',NULL,NULL),(919289,'David Weissman',NULL,NULL),(919352,'Michael J. Weithorn',1956,NULL),(919363,'Chris Weitz',1969,NULL),(919369,'Paul Weitz',1965,NULL),(919381,'Olaf Weitzl',NULL,NULL),(919442,'Teresa Weißbach',1981,NULL),(919443,'Hansjörg Weißbrich',1967,NULL),(919482,'Justin Welborn',1973,NULL),(919514,'Bo Welch',1951,NULL),(919525,'Christopher Evan Welch',1965,2013),(919543,'Eddie Welch',1894,1972),(919616,'Michael Welch',1987,NULL),(919684,'Gertrude Welcker',1896,1988),(919714,'Charles Weldon',1940,2018),(919720,'Fay Weldon',1931,2023),(919730,'Joan Weldon',1930,2021),(919761,'Juliette Welfling',NULL,NULL),(919798,'Frank Welker',1946,NULL),(919815,'Colin Welland',1934,2015),(919816,'James Welland',1961,NULL),(919831,'Tim Wellburn',1939,NULL),(919876,'Michael Weller',1942,NULL),(919925,'Halsted Welles',1906,1990),(919966,'Charles Wellesley',1873,1946),(919991,'Tom Welling',1977,NULL),(920074,'William A. Wellman',1896,1975),(920108,'Audrey Wells',1960,2018),(920171,'Dawn Wells',1938,2020),(920185,'Dolly Wells',1971,NULL),(920216,'George Wells',1909,2000),(920227,'Gren Wells',1974,NULL),(920229,'H.G. Wells',1866,1946),(920256,'Jason Wells',NULL,NULL),(920274,'John Wells',1956,NULL),(920385,'Rebecca Wells',1952,NULL),(920425,'Simon Wells',1961,NULL),(920460,'Vernon Wells',1945,NULL),(920492,'Nina Wels',NULL,NULL),(920543,'Irvine Welsh',1958,NULL),(920564,'Kenneth Welsh',1942,2022),(920623,'Philippe Welt',NULL,NULL),(920628,'Ariadne Welter',1930,1998),(920859,'Gina Wendkos',NULL,NULL),(920862,'Paul Wendkos',1925,2009),(920950,'Jude Weng',NULL,NULL),(920958,'Ralf Wengenmayr',1965,NULL),(920992,'David Wenham',1965,NULL),(921013,'Richard Wenk',1956,NULL),(921023,'Alan Wenkus',NULL,NULL),(921043,'Willem Wennekers',NULL,NULL),(921044,'Klaus Wennemann',1940,2000),(921075,'Katherine Wenning',NULL,NULL),(921098,'Harold Wenstrom',1893,1944),(921131,'Martha Wentworth',1889,1974),(921135,'Rick Wentworth',NULL,NULL),(921202,'Fritz Wepper',1941,NULL),(921222,'Clifford Werber',NULL,NULL),(921262,'Stina Werenfels',1964,NULL),(921268,'Franz Werfel',1890,1945),(921288,'Alfred L. Werker',1896,1975),(921303,'Barbara Werle',1928,2013),(921305,'Lars Johan Werle',1926,2001),(921418,'Jeffrey M. Werner',NULL,NULL),(921459,'Oskar Werner',1922,1984),(921464,'Peter Werner',1947,2023),(921492,'Tom Werner',1950,NULL),(921516,'Barry Wernick',NULL,NULL),(921532,'Otto Wernicke',1893,1965),(921608,'François Wertheimer',NULL,NULL),(921815,'Loy Wesselburg',1960,NULL),(921853,'Charles B. Wessler',NULL,NULL),(921879,'Dick Wesson',1922,1996),(921942,'Billy West',1952,NULL),(921956,'Brian West',1928,NULL),(921979,'Chandra West',1970,NULL),(921985,'Cheryl L. West',NULL,NULL),(921995,'Claudine West',1890,1943),(922035,'Dominic West',1969,NULL),(922071,'Frederick E. West',1903,1984),(922136,'Jemima West',1987,NULL),(922162,'Jonathan West',NULL,NULL),(922165,'Judi West',1942,NULL),(922170,'Julian West',1904,1981),(922210,'Madeleine West',1979,NULL),(922213,'Mae West',1893,1980),(922229,'Martin West',1937,2019),(922263,'Nathan West',1978,NULL),(922279,'Palmer West',NULL,NULL),(922307,'Red West',1936,2017),(922327,'Roland West',1885,1952),(922335,'Samuel West',1966,NULL),(922342,'Shane West',1978,NULL),(922346,'Simon West',1961,NULL),(922367,'Timothy West',1934,NULL),(922480,'Dana Burns Westburg',NULL,NULL),(922484,'Geir Westby',NULL,NULL),(922487,'James Westby',NULL,NULL),(922496,'Carrie Westcott',1969,NULL),(922513,'Netta Westcott',1892,1953),(922558,'Peter Wester',1939,NULL),(922563,'Travis Wester',1977,NULL),(922581,'Paul Westerberg',1959,NULL),(922589,'Robert Westerby',1909,1968),(922617,'Niklas Westergren',NULL,NULL),(922724,'Jennifer Westfeldt',1970,NULL),(922757,'Erica Westheimer',NULL,NULL),(922799,'Donald E. Westlake',1933,2008),(922806,'Nigel Westlake',1958,NULL),(922818,'Helen Westley',1875,1942),(922857,'Tony Westman',1946,NULL),(922876,'Matt Westmore',1971,NULL),(922903,'Wash Westmoreland',1966,NULL),(922919,'Brad Weston',NULL,NULL),(922951,'Garnett Weston',1890,1980),(922967,'Jack Weston',1924,1996),(923105,'Tara Westwood',NULL,NULL),(923118,'James Duhamel',NULL,NULL),(923119,'Hans Weth',NULL,NULL),(923210,'Patricia Wettig',1951,NULL),(923266,'Merritt Wever',1980,NULL),(923304,'Howard Wexler',NULL,NULL),(923312,'Joshua Wexler',1971,NULL),(923319,'Norman Wexler',1926,1999),(923330,'Tanya Wexler',1970,NULL),(923333,'John Wexley',1907,1985),(923506,'James Whaley',NULL,NULL),(923529,'Justin Whalin',1974,NULL),(923585,'Edith Wharton',1862,1937),(923635,'Sarah Wheale',NULL,NULL),(923646,'Jim Wheat',1952,NULL),(923736,'Joss Whedon',1964,NULL),(923768,'Anne Wheeler',1946,NULL),(923781,'Charles F. Wheeler',1915,2004),(923820,'Ford Wheeler',NULL,NULL),(923838,'Harvey Wheeler',1918,2004),(923839,'Hugh Wheeler',1912,1987),(923840,'Ira Wheeler',1920,2002),(923847,'John W. Wheeler',NULL,NULL),(923909,'Maggie Wheeler',1961,NULL),(923915,'Martin Wheeler',1956,NULL),(923941,'René Wheeler',1912,2000),(923980,'William Wheeler',1967,NULL),(923984,'Dana Wheeler-Nicholson',1960,NULL),(924009,'Alison Whelan',NULL,NULL),(924011,'Arleen Whelan',1914,1993),(924013,'Bill Whelan',1950,NULL),(924024,'Des Whelan',NULL,NULL),(924065,'Tim Whelan',1893,1957),(924095,'John Whelpley',NULL,NULL),(924154,'Shea Whigham',1969,NULL),(924204,'Shannon Whirry',1964,NULL),(924210,'Ben Whishaw',1980,NULL),(924222,'Martin Whist',NULL,NULL),(924249,'Christine Whitaker',NULL,NULL),(924261,'Duane Whitaker',1959,NULL),(924270,'Jim Whitaker',1968,NULL),(924275,'James Whitaker',1970,NULL),(924278,'Johnny Whitaker',1959,NULL),(924347,'Nick Whitby',NULL,NULL),(924385,'Billy White Acre',NULL,NULL),(924424,'Al White',1942,NULL),(924502,'Bernard White',1959,NULL),(924544,'Brent White',NULL,NULL),(924552,'Brian White',1975,NULL),(924576,'Carol White',1943,1991),(924607,'Chris White',NULL,NULL),(924613,'Chrissie White',1895,1989),(924647,'Daniel White',1912,1997),(924684,'David A.R. White',1970,NULL),(924754,'E.B. White',1899,1985),(924772,'Elizabeth White',NULL,NULL),(924781,'Ethel Lina White',1876,1944),(924863,'Henry White',NULL,NULL),(924964,'Jesse White',1917,1997),(924986,'John White',1981,NULL),(925033,'Julie White',1961,NULL),(925096,'Lari White',1965,2018),(925118,'Leo White',1882,1948),(925130,'Lester White',1907,1958),(925137,'Lionel White',1905,1985),(925212,'Merrill G. White',1901,1959),(925214,'Michael White',1936,2016),(925220,'Michael Jai White',1967,NULL),(925232,'Michole Briana White',1969,NULL),(925234,'Mike White',1970,NULL),(925276,'Noni White',NULL,NULL),(925320,'Peter White',1937,NULL),(925330,'Peter V. White',NULL,NULL),(925380,'Robb White',1909,1990),(925456,'Sherry White',NULL,NULL),(925458,'Shirley White',1923,1969),(925481,'Stewart Edward White',1873,1946),(925482,'Stiles White',NULL,NULL),(925493,'T.H. White',1906,1964),(925503,'Teri White',NULL,NULL),(925513,'Thomas White',1898,NULL),(925524,'Timothy White',NULL,NULL),(925578,'Welker White',NULL,NULL),(925742,'Lou Whitehill',NULL,NULL),(925794,'Billie Whitelaw',1932,2014),(925800,'Arkie Whiteley',1964,2001),(925804,'Jon Whiteley',1945,2020),(925849,'Hugh Whitemore',1936,2018),(925870,'John Whitesell',1953,NULL),(925906,'Stephen Whitestone',NULL,NULL),(925916,'Charles Malik Whitfield',1972,NULL),(925943,'Mitchell Whitfield',1964,NULL),(925966,'Bradley Whitford',1959,NULL),(926008,'John Whiting',1917,1963),(926013,'Leonard Whiting',1950,NULL),(926073,'Richard Whitley',NULL,NULL),(926075,'Sean Whitley',NULL,NULL),(926082,'William P. Whitley',1908,1976),(926086,'Isiah Whitlock Jr.',1954,NULL),(926151,'John Whitman',NULL,NULL),(926165,'Mae Whitman',1988,NULL),(926171,'Phil Whitman',1893,1935),(926183,'Stuart Whitman',1928,2020),(926205,'Nigel Whitmey',NULL,NULL),(926209,'Steve Whitmire',1959,NULL),(926211,'Preston A. Whitmore II',1962,NULL),(926235,'James Whitmore',1921,2009),(926368,'Benjamin Whitrow',1937,2017),(926372,'Carson Whitsett',NULL,NULL),(926436,'James Whittaker',NULL,NULL),(926459,'Steve Whittaker',NULL,NULL),(926510,'Paul Whitthorne',1970,NULL),(926525,'Jack Whittingham',1910,1972),(926592,'Margaret Whitton',1949,2016),(926595,'William Whitton',1924,2018),(926599,'May Whitty',1865,1948),(926625,'Nacoma Whobrey',NULL,NULL),(926723,'Anne Wiazemsky',1947,2017),(926727,'Cormac Wibberley',1959,NULL),(926729,'Marianne Wibberley',1965,NULL),(926731,'Gert Wibe',1952,NULL),(926821,'Charles Wick',1917,2008),(926824,'Douglas Wick',NULL,NULL),(926880,'Bob Wickersham',1911,1962),(926919,'Bernhard Wicki',1919,2000),(926924,'Christopher Wicking',1943,2008),(927074,'Gregory Widen',1958,NULL),(927090,'Bo Widerberg',1930,1997),(927097,'Wolfgang Widerhofer',1971,NULL),(927115,'Françoise Widhoff',NULL,NULL),(927145,'Ellen Widmann',1894,1985),(927236,'Dorothea Wieck',1908,1986),(927270,'Max Wiedemann',1977,NULL),(927345,'David Michael Wieger',NULL,NULL),(927366,'Don Wiegmann',NULL,NULL),(927436,'Mathias Wieman',1902,1969),(927468,'Robert Wiene',1873,1938),(927483,'Jack Wiener',1926,2005),(927484,'Jean Wiener',1896,1982),(927558,'Hans Wiers-Jenssen',1866,1925),(927561,'Holly Wiersma',NULL,NULL),(927633,'Marek Wieser',1962,NULL),(927752,'Kate Douglas Wiggin',1856,1923),(927810,'Tudi Wiggins',1935,2006),(927812,'Wiley Wiggins',1976,NULL),(927835,'Peter Wight',1950,NULL),(927880,'Lionel Wigram',1962,NULL),(927898,'Marian Wihak',NULL,NULL),(928002,'Iwar Wiklander',1939,NULL),(928108,'Crane Wilbur',1886,1973),(928134,'James Wilby',1958,NULL),(928208,'Fred M. Wilcox',1907,1964),(928214,'Herbert Wilcox',1890,1977),(928244,'Lisa Wilcox',1964,NULL),(928295,'Henry Wilcoxon',1905,1984),(928346,'Harry J. Wild',1901,1961),(928349,'Jack Wild',1952,2006),(928444,'Hagar Wilde',1905,1971),(928492,'Oscar Wilde',1854,1900),(928495,'Patrick Wilde',NULL,NULL),(928514,'Ted Wilde',1889,1929),(928570,'Donald Wilder',1926,2010),(928603,'Margaret Buell Wilder',1904,1992),(928623,'Robert Wilder',1901,1974),(928625,'Sally Wilder',NULL,NULL),(928642,'Thornton Wilder',1897,1975),(928697,'Michael Wilding',1912,1979),(928720,'Valerie Wildman',1953,NULL),(928832,'Ethan Wiley',NULL,NULL),(928836,'Gareth Wiley',1962,NULL),(928840,'Hugh Wiley',1884,1968),(928844,'Jan Wiley',1916,1993),(928862,'Martin Wiley',NULL,2023),(929167,'Jenny Wilkes',1941,2017),(929186,'Rich Wilkes',1966,NULL),(929317,'Toby Wilkins',1972,NULL),(929349,'Christopher Wilkinson',1950,NULL),(929366,'Diane Wilkinson',NULL,NULL),(929443,'Marc Wilkinson',1929,NULL),(929489,'Tom Wilkinson',1948,NULL),(929571,'Stefan Will',1959,NULL),(929609,'Fred Willard',1933,2020),(929615,'Jess Willard',NULL,NULL),(929683,'Brandt Wille',NULL,NULL),(929771,'Seth Willenson',1947,2022),(929794,'Christine Willes',NULL,NULL),(929820,'Jo Willett',NULL,NULL),(929889,'Monika Willi',1968,NULL),(929901,'Dean Williams',NULL,NULL),(929925,'Warren William',1894,1948),(929967,'Adam Jeremy Williams',NULL,NULL),(930053,'Ashley Williams',NULL,NULL),(930082,'Ben Ames Williams',1889,1953),(930089,'Bernard Williams',1942,2015),(930119,'Billy Williams',1929,NULL),(930180,'Brook Williams',1938,2005),(930226,'Caroline Williams',1957,NULL),(930241,'Charles Williams',1909,1975),(930261,'Chris Williams',1968,NULL),(930446,'Diana E. Williams',NULL,NULL),(930454,'Dick Anthony Williams',1934,2012),(930536,'Elmo Williams',1913,2015),(930539,'Emlyn Williams',1905,1987),(930565,'Esther Williams',1921,2013),(930570,'Evan Williams',1985,NULL),(930684,'Gordon Williams',1934,2017),(930695,'Grant Williams',1931,1985),(930732,'Harcourt Williams',1880,1957),(930802,'J. Terry Williams',NULL,NULL),(930898,'Jesse Williams',1981,NULL),(930964,'John H. Williams',1953,NULL),(930990,'Joseph Williams',1960,NULL),(931015,'Justin Williams',NULL,NULL),(931027,'Kate Williams',1967,NULL),(931050,'Ken Williams',NULL,NULL),(931054,'Kenneth Williams',1926,1988),(931095,'Tod Williams',1968,NULL),(931121,'Larry B. Williams',1949,NULL),(931146,'Lee Williams',1974,NULL),(931185,'Lona Williams',NULL,NULL),(931186,'Lori Williams',1946,NULL),(931247,'Mark Williams',1959,NULL),(931251,'Mark Williams',NULL,NULL),(931265,'Marsha Garces Williams',1956,NULL),(931285,'Matt Williams',1951,NULL),(931300,'Mervin Williams',1905,1992),(931302,'Michael Williams',1935,2001),(931321,'Michael C. Williams',1973,NULL),(931324,'Michael Kenneth Williams',1966,2021),(931329,'Michelle Williams',1980,NULL),(931404,'Olivia Williams',1968,NULL),(931410,'Orian Williams',NULL,NULL),(931412,'Oscar Williams',NULL,NULL),(931423,'Pamela Oas Williams',NULL,NULL),(931437,'Paul Williams',1940,NULL),(931525,'Rhys Williams',1897,1969),(931530,'Richard Williams',1933,2019),(931650,'Sarah Williams',NULL,NULL),(931660,'Scott Williams',NULL,NULL),(931765,'T.R. Williams',NULL,NULL),(931783,'Tennessee Williams',1911,1983),(931845,'Tonya Williams',1958,NULL),(931851,'Trevor Williams',1931,2008),(931862,'Tyger Williams',NULL,NULL),(931898,'Wade Williams',1961,NULL),(931917,'Wayne S. Williams',NULL,NULL),(931937,'William Carlos Williams',1883,1963),(931958,'Zelda Williams',1989,NULL),(932030,'Florence Williamson',NULL,NULL),(932037,'Glenn Williamson',1963,NULL),(932078,'Kevin Williamson',1965,NULL),(932112,'Mykelti Williamson',1957,NULL),(932116,'Nicol Williamson',1936,2011),(932144,'Shawn Williamson',NULL,NULL),(932213,'David Willing',NULL,NULL),(932229,'Calder Willingham',1922,1995),(932244,'Noble Willingham',1931,2004),(932303,'David Willis',NULL,NULL),(932336,'Gordon Willis',1931,2014),(932381,'Leo Willis',1890,1952),(932454,'Rumer Willis',1988,NULL),(932477,'Ted Willis',1918,1992),(932529,'Noel Willman',1918,1988),(932551,'Kevin Willmott',NULL,NULL),(932579,'George Willoughby',1913,1997),(932580,'Graham Willoughby',NULL,NULL),(932590,'Nigel Willoughby',1950,NULL),(932613,'Anneke Wills',1941,NULL),(932731,'Andrea Willson',1962,NULL),(932745,'Meredith Willson',1902,1984),(932831,'Larry Wilmore',1961,NULL),(932870,'André Wilms',1947,2022),(932960,'Al Wilson',1920,2007),(933025,'August Wilson',1945,2005),(933091,'Brett Wilson',NULL,NULL),(933092,'Brian Wilson',1942,NULL),(933098,'Bridgette Wilson-Sampras',1973,NULL),(933128,'Caleb Wilson',NULL,NULL),(933133,'Carey Wilson',1889,1962),(933144,'Carrie Lee Wilson',NULL,NULL),(933156,'Chandra Wilson',1969,NULL),(933191,'Chuck Wilson',NULL,NULL),(933213,'Colin Wilson',NULL,NULL),(933249,'Daniel Wilson',NULL,NULL),(933262,'David Wilson',NULL,NULL),(933276,'David C. Wilson',NULL,NULL),(933281,'Debra Wilson',1962,NULL),(933333,'Dorothy Wilson',1909,1998),(933335,'Dorothy Clarke Wilson',1904,2003),(933377,'Erik Wilson',NULL,NULL),(933379,'Erin Cressida Wilson',1964,NULL),(933383,'Erwin Wilson',NULL,NULL),(933393,'F. Paul Wilson',1946,NULL),(933407,'Frank Wilson',1924,2005),(933426,'Frederick Wilson',1912,1994),(933435,'Garfield Wilson',NULL,NULL),(933449,'Gerald Wilson',NULL,NULL),(933505,'Hugh Wilson',1943,2018),(933510,'Ian Wilson',1939,2021),(933560,'Jane Edith Wilson',1965,NULL),(933604,'Jim Wilson',NULL,NULL),(933622,'John Wilson',NULL,NULL),(933627,'John Wilson',1921,NULL),(933718,'Kim Wilson',NULL,NULL),(933723,'Kristen Wilson',1969,NULL),(933727,'Lambert Wilson',1958,NULL),(933733,'Larry Wilson',NULL,NULL),(933773,'Lois Wilson',1894,1988),(933798,'Mara Wilson',1987,NULL),(933858,'Michael Wilson',1914,1978),(933865,'Michael G. Wilson',1942,NULL),(933896,'Nancy Wilson',1954,NULL),(933940,'Patrick Wilson',1973,NULL),(933959,'Peta Wilson',1970,NULL),(933988,'Rainn Wilson',1966,NULL),(934014,'Richard Wilson',1936,NULL),(934019,'Richard Wilson',1984,NULL),(934042,'Robert Brian Wilson',1962,NULL),(934059,'Roger Wilson',1956,NULL),(934093,'S.S. Wilson',NULL,NULL),(934113,'Scott Wilson',1942,2018),(934135,'Sheldon Wilson',NULL,NULL),(934178,'Steven H. Wilson',NULL,NULL),(934179,'Stuart Wilson',1946,NULL),(934254,'Trey Wilson',1948,1989),(934318,'Anna Wilson-Jones',1970,NULL),(934362,'Penelope Wilton',1946,NULL),(934406,'Dirk Wilutzky',1965,NULL),(934415,'Max Wilén',1925,1995),(934437,'Rodrick F. Wimberly',1969,NULL),(934440,'Chris Wimble',1942,NULL),(934483,'Kurt Wimmer',1964,NULL),(934497,'Arthur Wimperis',1874,1953),(934525,'Scott Winant',NULL,NULL),(934578,'Simon Wincer',1943,NULL),(934589,'April Winchell',1960,NULL),(934618,'Philip Winchester',1981,NULL),(934668,'Vibeke Windeløv',1950,NULL),(934671,'Catherine Winder',NULL,NULL),(934711,'Andréas Winding',1928,1977),(934719,'Kasper Winding',1956,NULL),(934752,'Stephen F. Windon',1959,NULL),(934774,'Barbara Windsor',1937,2020),(934780,'Claire Windsor',1892,1972),(934798,'Marie Windsor',1919,2000),(934817,'Barry Windsor-Smith',1949,NULL),(934855,'Mark Winemaker',NULL,NULL),(934863,'Harry Winer',1947,NULL),(934864,'Jason Winer',1972,NULL),(934902,'Paul Winfield',1939,2004),(934912,'Jonathan Winfrey',1963,NULL),(934923,'Anna Wing',1914,2013),(934965,'Paul Wing',NULL,NULL),(935047,'Mark Wingett',1961,NULL),(935053,'Jenny Wingfield',NULL,NULL),(935057,'Peter Wingfield',1962,NULL),(935060,'David Wingo',NULL,NULL),(935095,'Gary Winick',1961,2011),(935099,'Judd Winick',1970,NULL),(935131,'Alex Winitsky',1924,2019),(935190,'Angela Winkler',1944,NULL),(935199,'Bernhard Winkler',1962,NULL),(935203,'Charles Winkler',NULL,NULL),(935210,'David Winkler',NULL,NULL),(935253,'Max Winkler',1983,NULL),(935288,'Terence H. Winkless',NULL,NULL),(935313,'Amanda Winn Lee',1972,NULL),(935382,'Michael Winner',1935,2013),(935389,'Olof Winnerstrand',1875,1956),(935395,'Katheryn Winnick',1977,NULL),(935415,'Charles Winninger',1884,1969),(935475,'Christa Winsloe',1888,1944),(935498,'Michael Winslow',1958,NULL),(935507,'Thyra Samter Winslow',1885,1961),(935528,'Terry Winsor',1952,NULL),(935541,'Mary Elizabeth Winstead',1984,NULL),(935567,'Carl Winston',1893,1971),(935616,'Matt Winston',1970,NULL),(935644,'Stan Winston',1946,2008),(935653,'Ray Winstone',1957,NULL),(935659,'Maurice Dean Wint',NULL,NULL),(935664,'Alex Winter',1965,NULL),(935705,'David Winter',1979,NULL),(935721,'Eric Winter',1976,NULL),(935761,'John Winter',NULL,NULL),(935773,'Keith Winter',1906,1983),(935856,'Marcus Winterbauer',1965,NULL),(935863,'Michael Winterbottom',1961,NULL),(935921,'Dean Winters',1964,NULL),(935988,'Ralph E. Winters',1909,2004),(936044,'Peter Winther',NULL,NULL),(936115,'Estelle Winwood',1883,1984),(936127,'Jan Wiodarczyk',NULL,NULL),(936315,'Bill Wise',NULL,NULL),(936353,'Greg Wise',1966,NULL),(936374,'Kirk Wise',1963,NULL),(936403,'Ray Wise',1947,NULL),(936404,'Robert Wise',1914,2005),(936476,'Joseph Wiseman',1918,2009),(936482,'Len Wiseman',1973,NULL),(936535,'Jeff Wishengrad',NULL,NULL),(936537,'William Wisher',NULL,NULL),(936591,'Andreas Wisniewski',1959,NULL),(936608,'Jill Wisoff',NULL,NULL),(936674,'Eleanor Witcombe',1923,2018),(936680,'Oleh Witer',NULL,NULL),(936728,'Grant Withers',1905,1959),(936742,'Margery Withers',1905,1999),(936762,'John Witherspoon',1942,2019),(936771,'Shane Withington',1958,NULL),(936834,'Stefan Witschi',1957,NULL),(936837,'Mark Witsken',NULL,NULL),(936838,'Alexander Witt',1952,NULL),(936852,'Dan Witt',1949,2016),(936915,'Jacques Witta',1934,NULL),(936970,'Brian Witten',NULL,NULL),(936999,'Dirk Wittenborn',NULL,NULL),(937000,'Michael Wittenborn',1953,NULL),(937074,'William D. Wittliff',1940,2019),(937186,'Johanna Comella',NULL,NULL),(937208,'Joe Wizan',1935,2011),(937262,'Stan Wlodkowski',NULL,NULL),(937289,'P.G. Wodehouse',1881,1975),(937304,'Stefan Wodoslawsky',1952,NULL),(937306,'Bille Woodruff',NULL,NULL),(937386,'Burton Wohl',NULL,NULL),(937557,'Johanna Wokalek',1975,NULL),(937600,'James L. Wolcott',1907,1995),(937678,'Bernard Wolf',1911,2006),(937696,'Christa Wolf',1929,2011),(937714,'Dany Wolf',NULL,NULL),(937739,'Emanuel L. Wolf',1927,2022),(937748,'Fred Wolf',1964,NULL),(937757,'Gary K. Wolf',NULL,NULL),(937758,'Gerhard Wolf',1928,2023),(937770,'Hans de Wolf',NULL,NULL),(937800,'Jeffrey Wolf',NULL,NULL),(937830,'Konrad Wolf',1925,1982),(937852,'Lothar Wolff',1909,1988),(937869,'Matthew Wolf',1972,NULL),(937877,'Michael Wolf',1967,NULL),(937930,'Scott Wolf',1968,NULL),(937986,'Adam Wolfe',NULL,NULL),(938045,'George C. Wolfe',1954,NULL),(938099,'Liz Wolfe',NULL,NULL),(938129,'Robert Hewitt Wolfe',1964,NULL),(938130,'Robert L. Wolfe',1928,1981),(938145,'Steven J. Wolfe',NULL,NULL),(938176,'Stuart Wolfenden',1970,NULL),(938231,'Frank Wolff',1928,1971),(938292,'Michael Wolff',1952,NULL),(938293,'Michele J. Wolff',NULL,NULL),(938294,'Michelle Wolff',1969,NULL),(938303,'Patricia Wolff',NULL,NULL),(938372,'Donald Wolfit',1902,1968),(938379,'Marv Wolfman',1946,NULL),(938390,'Nelson Wolford',1921,1994),(938391,'Shirley Wolford',1914,2008),(938439,'P.J. Wolfson',1903,1979),(938456,'Beppe Wolgers',1928,1986),(938464,'Louis Wolheim',1880,1931),(938471,'Jason Woliner',1980,NULL),(938485,'Sidney Wolinsky',NULL,NULL),(938487,'Meg Wolitzer',NULL,NULL),(938490,'Andy Wolk',NULL,NULL),(938512,'Jan Wolkers',1925,2007),(938645,'Wallace Wolodarsky',NULL,NULL),(938678,'David L. Wolper',1928,2010),(938684,'Jay Wolpert',1942,2022),(938754,'Ralf Wolter',1926,2022),(938774,'Robert Wolterstorff',1949,NULL),(938846,'David Womersley',NULL,NULL),(938854,'Il Won',NULL,NULL),(938893,'Anthony Chau-Sang Wong',1961,NULL),(938923,'Anna May Wong',1905,1961),(938939,'Arthur Wong',NULL,NULL),(938944,'Barry Wong',1946,1992),(938949,'Ben Wong',NULL,NULL),(938950,'Benedict Wong',1970,NULL),(938954,'Bill Wong',NULL,NULL),(939056,'Fann Wong',1971,NULL),(939128,'James Wong',NULL,NULL),(939145,'Jimmy Wong',NULL,NULL),(939147,'Jing Wong',1955,NULL),(939167,'Julia Wong',NULL,NULL),(939182,'Kar-Wai Wong',1956,NULL),(939236,'Manfred Wong',1957,NULL),(939296,'Ying-Wah Wong',NULL,NULL),(939359,'Thierry Wong',NULL,NULL),(939378,'Victor Wong',1927,2001),(939431,'Yat-Fei Wong',1946,NULL),(939454,'Arthur Wontner',1875,1960),(939517,'Adam Wood',NULL,NULL),(939562,'Bari Wood',NULL,NULL),(939598,'Caroline Wood',NULL,NULL),(939606,'Charles Wood',1932,2020),(939618,'Clement Biddle Wood',1925,1994),(939642,'David Wood',1944,NULL),(939669,'Douglas Wood',NULL,NULL),(939697,'Evan Rachel Wood',1987,NULL),(939773,'Janet Wood',NULL,NULL),(939795,'John Wood',1930,2011),(939836,'Lana Wood',1946,NULL),(939869,'Martin Wood',NULL,NULL),(939884,'Michael Wood',1965,NULL),(939931,'Peggy Wood',1892,1978),(939943,'Rachel Wood',NULL,NULL),(939992,'Sam Wood',1883,1949),(940000,'Sharon Wood',NULL,NULL),(940064,'Victoria Wood',1953,2016),(940071,'Wally Wood',1927,1981),(940124,'Bob Woodward',1943,NULL),(940125,'Bronte Woodard',1940,1980),(940146,'Monty Woodard',NULL,NULL),(940158,'Bokeem Woodbine',1973,NULL),(940199,'Joan Woodbury',1915,1989),(940215,'John Woodcock',1916,2000),(940270,'Jonathan Woodford-Robinson',NULL,NULL),(940287,'Sara Woodhatch',NULL,NULL),(940361,'Richard Woodley',NULL,NULL),(940362,'Shailene Woodley',1991,NULL),(940410,'Daniel Woodrell',NULL,NULL),(940430,'Tom Woodruff Jr.',1959,NULL),(940437,'Bert Woodruff',1856,1934),(940488,'Frank E. Woods',1860,1939),(940513,'Bill Woods',NULL,NULL),(940531,'Cary Woods',NULL,NULL),(940589,'Edward Woods',1903,1989),(940627,'Ilene Woods',1929,2010),(940645,'Jerii Woods',NULL,NULL),(940673,'Kevin Jamal Woods',NULL,NULL),(940689,'Lotta Woods',1869,1957),(940774,'Rowan Woods',1959,NULL),(940790,'Skip Woods',NULL,NULL),(940919,'Edward Woodward',1930,2009),(940946,'Joanne Woodward',1930,NULL),(940990,'Shannon Woodward',NULL,NULL),(941003,'W.E. Woodward',1874,1950),(941017,'Jessica Woodworth',NULL,NULL),(941065,'Marcus Wookey',NULL,NULL),(941125,'Sheb Wooley',1921,2003),(941138,'Edgar Allan Woolf',1881,1943),(941150,'James Woolf',1919,1966),(941153,'John Woolf',1913,1999),(941173,'Virginia Woolf',1882,1941),(941199,'Ben Woolford',NULL,NULL),(941214,'Nigel Wooll',1941,NULL),(941253,'Monty Woolley',1888,1963),(941262,'Stephen Woolley',1956,NULL),(941280,'Cornell Woolrich',1903,1968),(941314,'Linda Woolverton',1952,NULL),(941335,'Tim Wooster',1967,NULL),(941453,'Angela Workman',NULL,NULL),(941489,'Steve Worland',NULL,NULL),(941535,'Dick Wormell',NULL,NULL),(941683,'Irene Worth',1916,2002),(941700,'Lothrop B. Worth',1903,2000),(941703,'Marvin Worth',1925,1998),(941708,'Michael Worth',1965,NULL),(941777,'Sam Worthington',1976,NULL),(941811,'Sönke Wortmann',1959,NULL),(941857,'Walter Wottitz',1911,1986),(941883,'Herman Wouk',1915,2019),(942007,'Basil Wrangell',1906,1977),(942010,'Greg Wrangler',1966,NULL),(942027,'Ardel Wray',1907,1983),(942039,'Fay Wray',1907,2004),(942046,'John Wray',1887,1940),(942195,'Amy Wright',1950,NULL),(942202,'Angus Wright',1964,NULL),(942209,'Arthur Wright',1937,2015),(942249,'Brad Wright',1961,NULL),(942352,'Dorsey Wright',1957,NULL),(942367,'Edgar Wright',1974,NULL),(942408,'Geoffrey Wright',1959,NULL),(942480,'Jeff Wright',1960,2020),(942482,'Jeffrey Wright',1965,NULL),(942486,'Jenny Wright',1962,NULL),(942504,'Joe Wright',1972,NULL),(942510,'John Wright',NULL,2023),(942549,'Justine Wright',NULL,NULL),(942639,'Maurice Wright',1908,1996),(942646,'Michael Wright',1956,NULL),(942668,'N\'Bushe Wright',1970,NULL),(942723,'Ralph Wright',1908,1983),(942787,'Samuel E. Wright',1946,2021),(942792,'Sarah Wright',1983,NULL),(942858,'Tandi Wright',1970,NULL),(942863,'Teresa Wright',1918,2005),(942870,'Thomas Lee Wright',NULL,NULL),(942876,'Thomas M. Wright',1983,NULL),(942897,'Tracy Wright',1959,2010),(942901,'Trevor Wright',1980,NULL),(942934,'William H. Wright',1902,1980),(942951,'Bernie Wrightson',1948,2017),(942979,'Maris Wrixon',1916,1999),(943046,'Gabriel Wrye',NULL,NULL),(943072,'Chien-Lien Wu',1968,NULL),(943079,'Daniel Wu',1974,NULL),(943104,'Jing Wu',1974,NULL),(943150,'Nien-Jen Wu',1952,NULL),(943177,'Tian-Ming Wu',1939,2014),(943180,'Vivian Wu',1966,NULL),(943237,'Robert Wuhl',1951,NULL),(943248,'Stefan Wul',1922,2003),(943351,'Robert J. Wunsch',NULL,NULL),(943382,'Rudy Wurlitzer',1937,NULL),(943391,'Alex Wurman',1966,NULL),(943398,'Eden Wurmfeld',1969,NULL),(943430,'Jay Wurts',NULL,NULL),(943451,'Stuart Wurtzel',1940,NULL),(943489,'Claudia Wutz',NULL,NULL),(943527,'Chris Wyatt',NULL,NULL),(943553,'Jane Wyatt',1910,2006),(943614,'Don Wycherley',1967,NULL),(943758,'William Wyler',1902,1981),(943804,'Philip Wylie',1902,1971),(943829,'Brad Wyman',NULL,NULL),(943831,'Dan Wyman',NULL,NULL),(943837,'Jane Wyman',1917,2007),(943859,'Patrick Wymark',1926,1970),(943870,'Geraint Wyn Davies',1957,NULL),(943909,'John Wyndham',1903,1969),(943921,'June Wyndham-Davies',1929,NULL),(943922,'D.B. Wyndham-Lewis',1894,1969),(943936,'Peter Wyngarde',1927,2018),(943956,'Ed Wynn',1886,1966),(943969,'Hugh Wynn',1897,1936),(943978,'Keenan Wynn',1916,1986),(943981,'Manny Wynn',1928,1975),(944000,'Tim Wynn',NULL,NULL),(944003,'Tracy Keenan Wynn',1945,NULL),(944073,'Dana Wynter',1931,2011),(944077,'Sarah Wynter',1973,NULL),(944087,'Diana Wynyard',1906,1964),(944158,'Iván Wyszogrod',1971,NULL),(944192,'Rakel Wärmländer',1980,NULL),(944230,'Thomas Wöbke',NULL,NULL),(944256,'Ursula Woerner',1970,NULL),(944279,'Jeanette Würl',1959,2011),(944318,'Malcolm X',1925,1965),(944449,'Zi Xi',NULL,NULL),(944624,'Fan Xu',1967,NULL),(944645,'Pengle Xu',NULL,NULL),(944677,'Bai Xue',NULL,NULL),(944687,'Emmanuel Xuereb',1965,NULL),(944747,'Frank Yablans',1935,2014),(944757,'Yabo Yablonsky',1931,2005),(944795,'Joseph Yacoe',NULL,NULL),(944803,'Lila Yacoub',NULL,NULL),(944834,'Raghubir Yadav',1957,NULL),(944850,'Michiko Yaegaki',NULL,NULL),(944856,'Julie Rudd',NULL,NULL),(944892,'Kevin Yagher',1962,NULL),(944937,'Shinobu Yaguchi',1967,NULL),(944985,'Akiko Yajima',1967,NULL),(945026,'Boaz Yakin',1966,NULL),(945085,'Yuriy Yakovlev',1928,2013),(945094,'Elena Yakovleva',1961,NULL),(945131,'Kôji Yakusho',1956,NULL),(945188,'Shi-Kwan Yen',1947,NULL),(945189,'Simon Yam',1955,NULL),(945218,'Hiroshi Yamada',NULL,NULL),(945222,'Isuzu Yamada',1917,2012),(945228,'Kazuo Yamada',NULL,NULL),(945280,'Yasuo Yamada',1932,1995),(945282,'Yôji Yamada',1931,NULL),(945290,'Kôichi Yamadera',1961,NULL),(945299,'Isao Yamagata',1915,1996),(945312,'Akemi Yamaguchi',NULL,NULL),(945322,'Kappei Yamaguchi',1965,NULL),(945349,'Sayaka Yamaguchi',1980,NULL),(945354,'Shirley Yamaguchi',1920,2014),(945359,'Tomoko Yamaguchi',1964,NULL),(945372,'Yuriko Yamaguchi',1965,NULL),(945377,'Kazuhiro Yamaji',1954,NULL),(945389,'Iwao Yamaki',NULL,NULL),(945412,'Eiichi Yamamoto',1940,2021),(945418,'Hideo Yamamoto',1960,NULL),(945420,'Hiroshi Yamamoto',NULL,NULL),(945425,'Ichirô Yamamoto',NULL,NULL),(945451,'Mataichirô Yamamoto',NULL,NULL),(945462,'Naozumi Yamamoto',1932,2002),(945491,'Shûgorô Yamamoto',1903,1967),(945499,'Takeshi Yamamoto',NULL,NULL),(945500,'Tarô Yamamoto',1974,NULL),(945517,'Hiroyasu Yamaura',NULL,NULL),(945522,'Sô Yamamura',1910,2000),(945562,'Akira Yamanouchi',1921,1993),(945567,'Shizuo Yamanouchi',NULL,NULL),(945594,'Yutaka Yamazaki',1940,NULL),(945597,'Junichiro Yamashita',NULL,NULL),(945602,'Shôji Yamashiro',1933,NULL),(945650,'Hatsuo Yamaya',1934,2019),(945676,'Tadashi Yamauchi',1927,1980),(945717,'Osamu Yamasaki',1962,NULL),(945734,'Tsutomu Yamazaki',1936,NULL),(945793,'Blandine Yaméogo',NULL,NULL),(945802,'Geling Yan',NULL,NULL),(945839,'Toshirô Yanagiba',1961,NULL),(945851,'Katsumi Yanagijima',1950,NULL),(945868,'Takao Yanai',NULL,NULL),(945897,'Oleg Yanchenko',1939,2002),(945981,'Edward Yang',1947,2007),(945992,'Kuei-Mei Yang',1959,NULL),(946015,'Kristy Yeung',1974,NULL),(946040,'Pi-ying Yang',NULL,NULL),(946042,'Sin Ling Yeung',NULL,NULL),(946077,'Wei-Han Yang',NULL,NULL),(946148,'\'Weird Al\' Yankovic',1959,NULL),(946157,'Filipp Yankovskiy',1968,NULL),(946159,'Ivan Yankovskiy',1990,NULL),(946160,'Oleg Yankovskiy',1944,2009),(946179,'Jean Yanne',1933,2003),(946205,'Akiko Yano',1955,NULL),(946324,'Ebru Ceylan',1976,NULL),(946327,'Mennan Yapo',1966,NULL),(946352,'Bülent Emin Yarar',1961,NULL),(946391,'Jean Yarbrough',1900,1975),(946441,'Bob Yari',1961,NULL),(946484,'Bruce Yarnell',1935,1973),(946486,'David Yarnell',NULL,NULL),(946521,'David Yarovesky',NULL,NULL),(946636,'Kelvin Yasuda',NULL,NULL),(946638,'Kimiyoshi Yasuda',1911,1983),(946681,'Chika Yasuo',NULL,NULL),(946694,'Ken\'ichi Yatagai',NULL,NULL),(946695,'Hajime Yatate',NULL,NULL),(946734,'David Yates',1963,NULL),(946753,'George Worthing Yates',1901,1975),(946789,'Marjorie Yates',1941,NULL),(946811,'Peter Yates',1929,2011),(946817,'Richard Yates',1926,1992),(946873,'Chingmy Yau',1968,NULL),(946875,'Herman Yau',1961,NULL),(946883,'Nai-Hoi Yau',1968,NULL),(946941,'Tomonori Yazaki',NULL,NULL),(946949,'Peyman Yazdanian',NULL,NULL),(946962,'José María Yazpik',1970,NULL),(947010,'Biff Yeager',1942,NULL),(947087,'Hoyt Yeatman',1955,NULL),(947102,'William Butler Yeats',1865,1939),(947112,'Eloi Yebra',1980,NULL),(947121,'Keren Yedaya',1972,NULL),(947201,'Yeu-Bun Yee',NULL,NULL),(947282,'Tatyana Egorycheva',NULL,NULL),(947302,'Hsiao-Yeh',1951,NULL),(947304,'I. Fang Yeh',1913,2002),(947313,'Sally Yeh',1961,NULL),(947317,'William Yeh',NULL,NULL),(947338,'Anton Yelchin',1989,2016),(947343,'Peter Yeldham',1927,2022),(947344,'Rebecca Yeldham',1967,NULL),(947390,'Mark Yellen',NULL,NULL),(947395,'Bennett Yellin',1959,NULL),(947436,'Norman Yemm',1932,2015),(947447,'Donnie Yen',1963,NULL),(947496,'Alan Yentob',1947,NULL),(947514,'Yum Jung-ah',1972,NULL),(947608,'Anthony Yerkovich',NULL,NULL),(947665,'Gary Yershon',1954,NULL),(947695,'Ron Yerxa',1947,NULL),(947777,'Charlie Yeung',1974,NULL),(947799,'Kwok-Fai Yeung',NULL,NULL),(947899,'Valentin Ezhov',1921,2004),(947910,'Mohamed Ygerbuchen',1907,1966),(947913,'Rafael Yglesias',1954,NULL),(947921,'Jiping Zhao',1945,NULL),(947984,'Muzaffer Yildirim',1962,NULL),(947986,'Bennu Yildirimlar',1969,NULL),(947999,'Can Yilmaz',NULL,NULL),(948000,'Cem Yilmaz',1973,NULL),(948004,'Levent Yilmaz',1948,NULL),(948012,'Serra Yilmaz',1954,NULL),(948078,'Ruocheng Ying',1929,2003),(948123,'Françoise Yip',1972,NULL),(948159,'Wilson Yip',NULL,NULL),(948253,'Richard Yniguez',1946,NULL),(948267,'Dwight Yoakam',1956,NULL),(948272,'Malik Yoba',1967,NULL),(948361,'Erica Yohn',1928,2019),(948375,'Yoshinaga Yoko\'o',1930,NULL),(948412,'Michiko Yokote',NULL,NULL),(948445,'Keiko Yokozawa',1952,NULL),(948475,'Moti Yona',NULL,NULL),(948488,'Hiromasa Yonebayashi',1973,NULL),(948499,'Masakane Yonekura',1934,2014),(948634,'Philip Yordan',1914,2003),(948636,'Wladimir Yordanoff',1954,2020),(948679,'Daniel York',NULL,NULL),(948685,'Dick York',1928,1992),(948714,'Jeff York',1912,1995),(948772,'Susannah York',1939,2011),(948773,'Tanya York',NULL,NULL),(948832,'Pete Yorn',1974,NULL),(948833,'Rick Yorn',1968,NULL),(948870,'Eiko Yoshida',NULL,NULL),(948901,'Konami Yoshida',1967,NULL),(948928,'Shin Yoshida',NULL,NULL),(948934,'Takio Yoshida',NULL,NULL),(948940,'Tetsurô Yoshida',NULL,2011),(948989,'Mitsuko Yoshikawa',1901,1991),(949025,'Genki Yoshimura',NULL,NULL),(949028,'Jiro Yoshimura',NULL,NULL),(949030,'Jitsuko Yoshimura',1943,NULL),(949069,'Hidetaka Yoshioka',1970,NULL),(949097,'Kazuko Yoshiyuki',1935,NULL),(949105,'Ken Yoshizawa',1946,NULL),(949127,'Daniel Yost',1947,NULL),(949167,'Yoo Ji-tae',1976,NULL),(949229,'Mary Young Leckie',NULL,NULL),(949237,'Aden Young',1972,NULL),(949239,'Aida Young',1920,2007),(949241,'Alan Young',1919,2016),(949319,'Bob Young',1952,NULL),(949350,'Burt Young',1940,NULL),(949363,'Carroll Young',1908,1992),(949396,'Christopher Young',NULL,NULL),(949409,'Cletus Young',NULL,NULL),(949418,'Collier Young',1908,1980),(949430,'Dalene Young',1939,NULL),(949433,'Damian Young',NULL,NULL),(949477,'Dey Young',1955,NULL),(949479,'Diana Young',NULL,NULL),(949521,'Ric Young',1944,NULL),(949558,'Gary Young',NULL,NULL),(949574,'Gig Young',1913,1978),(949597,'Harold Young',1897,1972),(949617,'Howard Irving Young',1893,1952),(949676,'Jeff Young',NULL,NULL),(949683,'Jennifer Young',1969,NULL),(949744,'Karen Young',1958,NULL),(949835,'Loretta Young',1913,2000),(949861,'Mark Young',NULL,NULL),(949899,'Mike Young',NULL,NULL),(949917,'Nedrick Young',1914,1968),(949918,'Neil Young',1945,NULL),(949923,'Nick Young',NULL,NULL),(949927,'Noah Young',1887,1958),(949950,'Perci Young',NULL,NULL),(949954,'Peter Young',1948,1985),(949961,'Polly Ann Young',1908,1997),(949995,'Rida Johnson Young',1875,1926),(950000,'Robert Young',1933,NULL),(950019,'Roland Young',1887,1953),(950079,'Stephen Young',1939,NULL),(950109,'Terence Young',1915,1994),(950150,'Waldemar Young',1878,1938),(950153,'Wayne Young',NULL,NULL),(950165,'William Allen Young',1954,NULL),(950186,'Peter Youngblood Hills',1978,NULL),(950224,'Andrew Percival Younger',1890,1931),(950226,'Ben Younger',1972,NULL),(950290,'Max E. Youngstein',1913,1997),(950391,'Marie-Josèphe Yoyotte',1929,2017),(950454,'Nelson Lik-wai Yu',1966,NULL),(950494,'Hai Yu',1942,2023),(950506,'Jessica Yu',1966,NULL),(950552,'Rongguang Yu',1958,NULL),(950553,'Ronny Yu',1950,NULL),(950619,'Roger Yuan',1961,NULL),(950620,'Ron Yuan',1973,NULL),(950633,'Noriaki Yuasa',1933,2004),(950699,'Kai-Chi Yuen',NULL,NULL),(950728,'James Yuen',1964,NULL),(950738,'King-Tan Yuen',1962,NULL),(950757,'Wah Yuen',1950,NULL),(950759,'Woo-Ping Yuen',1945,NULL),(950775,'Jennifer Yuh Nelson',1972,NULL),(950778,'Yûka',1980,NULL),(950834,'Isao Yukisada',1968,NULL),(950841,'Chatrichalerm Yukol',1942,NULL),(950843,'Patamanadda Yukol',NULL,NULL),(950867,'Harris Yulin',1937,NULL),(950902,'Yun Jeong-hie',1944,2023),(950926,'Youn Yuh-jung',1947,NULL),(950935,'Rick Yune',1971,NULL),(950942,'Danny Yung',NULL,NULL),(950969,'Addie Yungmee',NULL,NULL),(951049,'Paul Yurick',NULL,NULL),(951050,'Sol Yurick',1925,2013),(951134,'Vadim Yusov',1929,2013),(951135,'Cathy Yuspa',1971,NULL),(951148,'Odette Annable',1985,NULL),(951182,'Nae',1970,NULL),(951197,'Kunihiko Yuyama',1952,NULL),(951206,'Brian Yuzna',1949,NULL),(951216,'Ryôka Yuzuki',1974,NULL),(951295,'Nu Yên-Khê Tran',1968,NULL),(951390,'David Zabel',NULL,NULL),(951392,'Jackie Zabel',NULL,NULL),(951471,'Grace Zabriskie',1941,NULL),(951520,'Jonathan Zaccaï',1970,NULL),(951592,'Mauricio Zacharias',NULL,NULL),(951597,'Steffen Zacharias',1927,1989),(951598,'Stephan Zacharias',1956,NULL),(951599,'Steve Zacharias',1947,NULL),(951686,'Jon Zack',NULL,NULL),(951698,'Justin Zackham',NULL,NULL),(951722,'Craig Zadan',1949,2018),(951763,'Saul Zaentz',1921,2014),(951798,'Andrija Zafranovic',1949,2021),(951828,'Frank Zagarino',1959,NULL),(951866,'István Zágon',1893,1975),(951958,'Luis Zahera',1966,NULL),(952067,'Shama Zaidi',NULL,NULL),(952327,'George Zakk',1971,NULL),(952346,'Donna Zakowska',1954,NULL),(952360,'Jerry Zaks',1946,NULL),(952388,'Lauren Zalaznick',NULL,NULL),(952498,'Zbigniew Zamachowski',1961,NULL),(952502,'Jorge Zamacona',NULL,NULL),(952525,'Fabio Zamarion',NULL,NULL),(952539,'Haris Zambarloukos',1970,NULL),(952737,'Luigi Zampa',1905,1991),(952944,'Geoff Zanelli',1974,NULL),(953025,'Bruno Zanin',1951,NULL),(953048,'Danuta Zankowska',NULL,2000),(953065,'Chiara Zanni',NULL,NULL),(953080,'Giovannella Zannoni',1930,2018),(953123,'Darryl F. Zanuck',1902,1979),(953124,'Dean Zanuck',1972,NULL),(953128,'Cecilia Zanuso',NULL,NULL),(953188,'Laura Zapata',1956,NULL),(953197,'Maya Zapata',1981,NULL),(953222,'Monica Zapelli',1966,NULL),(953237,'Danny Zapien',1925,1983),(953257,'Ahmet Zappa',1974,NULL),(953294,'Marco Zappia',1937,2013),(953301,'Bernardino Zapponi',1927,2000),(953357,'Ben Zarai',NULL,NULL),(953377,'Nicole Zaray',NULL,NULL),(953392,'Meir Zarchi',1937,NULL),(953421,'Josiane Zardoya',NULL,NULL),(953511,'Travis Zariwny',NULL,NULL),(953550,'Natividad Zaro',NULL,NULL),(953584,'Ali Reza Zarrin',NULL,NULL),(953616,'Marcelo Zarvos',1969,NULL),(953649,'Alan Zaslove',1927,2019),(953693,'Aleksandr Zatsepin',1926,NULL),(953706,'Yolande Zauberman',1955,NULL),(953790,'Cesare Zavattini',1902,1989),(953857,'Marek Zawierucha',NULL,NULL),(953919,'Zazie',1964,NULL),(953949,'Joseph Zbeda',NULL,NULL),(954023,'Terrance Zdunich',NULL,NULL),(954034,'Kristi Zea',1948,NULL),(954072,'Edward Zebrowski',1935,2014),(954076,'Michal Zebrowski',1972,NULL),(954087,'Ferdinand Zecca',1864,1947),(954114,'Rosel Zech',1940,2011),(954222,'Antonia Zegers',1972,NULL),(954225,'Kevin Zegers',1984,NULL),(954234,'Primo Zeglio',1906,1984),(954253,'Nora Zehetner',1981,NULL),(954345,'J.D. Zeik',1959,NULL),(954348,'Johannes Zeiler',1970,NULL),(954432,'Peter Zeitlinger',1960,NULL),(954435,'Jerome M. Zeitman',1930,2020),(954437,'Ariel Zeitoun',1949,NULL),(954467,'Roger Zelazny',1937,1995),(954546,'Philip D. Zelikow',1954,NULL),(954632,'Wolfgang Zeller',1893,1967),(954655,'David Zellner',1974,NULL),(954658,'Nathan Zellner',1975,NULL),(954677,'Michael Zelniker',NULL,NULL),(954679,'David Zelon',NULL,NULL),(954693,'Yuri Zeltser',1962,NULL),(954704,'Roschdy Zem',1965,NULL),(954724,'Karel Zeman',1910,1989),(954790,'Natalie Zemon Davis',1928,NULL),(954848,'Bo Zenga',NULL,NULL),(954874,'Peter Zenk',1943,NULL),(954911,'Susanne Zenor',1947,NULL),(955010,'Tonino Zera',NULL,NULL),(955122,'Kinta Zertuche',1931,NULL),(955175,'Barry Zetlin',NULL,NULL),(955178,'Edith Zetline',NULL,NULL),(955195,'Mai Zetterling',1925,1994),(955251,'Gabrielle Zevin',1977,NULL),(955310,'Ru Zhai',NULL,NULL),(955339,'Daxing Zhang',NULL,NULL),(955342,'Fengyi Zhang',1956,NULL),(955356,'Huike Zhang',NULL,NULL),(955411,'Weiping Zhang',NULL,NULL),(955443,'Yimou Zhang',1951,NULL),(955470,'Ziliang Zhang',1941,2007),(955471,'Ziyi Zhang',1979,NULL),(955504,'Tao Zhao',1977,NULL),(955505,'Wei Zhao',1976,NULL),(955516,'Yu Zhao',NULL,NULL),(955529,'Evgeniy Zharikov',1941,2012),(955600,'Ni Zhen',1938,2022),(955780,'Xinxia Zhou',NULL,NULL),(955782,'Xun Zhou',1974,NULL),(955974,'Stuart Zicherman',NULL,NULL),(955995,'Tom Zickler',1964,2019),(956015,'Warren Zide',1966,NULL),(956022,'Claude Zidi',1934,NULL),(956026,'Malik Zidi',1975,NULL),(956052,'Howard Zieff',1927,2009),(956098,'Farley Ziegler',NULL,NULL),(956133,'Regina Ziegler',1944,NULL),(956146,'Susan Ziegler',NULL,NULL),(956155,'William H. Ziegler',1909,1977),(956195,'Jerzy Zielinski',1950,NULL),(956268,'Chip Zien',1947,NULL),(956290,'Samuel Zierler',1895,1964),(956299,'Cooky Ziesche',1960,NULL),(956370,'Scott Zigler',NULL,NULL),(956374,'Aaron Zigman',1963,NULL),(956376,'Laura Zigman',NULL,NULL),(956484,'Paul Ziller',NULL,NULL),(956495,'Tobias Zilliacus',1971,NULL),(956526,'Madeline Zima',1985,NULL),(956531,'Yvonne Zima',1989,NULL),(956544,'Efrem Zimbalist Jr.',1918,2014),(956545,'Al Zimbalist',1916,1975),(956547,'Sam Zimbalist',1904,1958),(956592,'Maurice Zimm',1909,2005),(956633,'Laurie Zimmer',1949,NULL),(956637,'Markus Zimmer',1966,NULL),(956693,'Dean Zimmerman',1974,NULL),(956699,'Don Zimmerman',NULL,NULL),(956710,'Gil Zimmerman',NULL,NULL),(956717,'Herman F. Zimmerman',1935,NULL),(956726,'Joey Zimmerman',1986,NULL),(956796,'Vernon Zimmerman',NULL,NULL),(956802,'Aljoscha Zimmermann',1944,2009),(956857,'Paul D. Zimmerman',1938,1993),(956911,'Katia Zinbris',NULL,NULL),(956919,'Bruno Zincone',NULL,NULL),(956928,'Paul Zindel',1936,2003),(956953,'Italo Zingarelli',1930,2000),(956969,'Delphine Zingg',NULL,NULL),(957003,'John Zinman',NULL,NULL),(957024,'Riccardo Zinna',1958,2018),(957030,'Tim Zinnemann',1940,NULL),(957038,'Peter Zinner',1919,2007),(957105,'Fabrice Ziolkowski',1954,NULL),(957119,'Brad Zions',NULL,NULL),(957178,'August Zirner',1956,NULL),(957205,'Laura Ziskin',1950,2011),(957263,'Joseph Zito',1946,NULL),(957293,'Carl Zittrer',1941,NULL),(957312,'Mikhail Ziv',1921,1994),(957453,'Lee David Zlotoff',1954,NULL),(957460,'Adrian Zmed',1954,NULL),(957505,'Craig Zobel',NULL,NULL),(957645,'Jean-Pierre Zola',1916,1979),(957652,'Émile Zola',1840,1902),(957749,'Valeriy Zolotukhin',1941,2013),(957772,'Rob Zombie',1965,NULL),(957794,'Erick Zonca',1956,NULL),(957798,'Ralph Zondag',NULL,NULL),(957831,'Nayer Mohseni Zonoozi',NULL,NULL),(957840,'Ben Zook',1964,NULL),(957850,'Wouter Zoon',NULL,NULL),(957909,'Ayelet Zurer',1969,NULL),(957968,'Pippi Zornoza',NULL,NULL),(957976,'China Zorrilla',1922,2014),(958088,'Zouzou',1943,NULL),(958192,'Sándor Zsótér',1961,NULL),(958279,'Amaya Zubiria',NULL,NULL),(958284,'Valentin Zubkov',1923,1979),(958323,'Peter Zuccarini',NULL,NULL),(958384,'Janet Zucker',NULL,NULL),(958387,'Jerry Zucker',1950,NULL),(958393,'Paul Zucker',NULL,NULL),(958412,'David Zuckerman',1962,NULL),(958415,'Donald Zuckerman',NULL,NULL),(958420,'Eric Zuckerman',NULL,NULL),(958432,'Lauren Zuckerman',NULL,NULL),(958454,'Carl Zuckmayer',1896,1977),(958499,'Anthony E. Zuiker',1968,NULL),(958532,'Adolph Zukor',1873,1976),(958558,'Andrzej Zulawski',1940,2016),(958641,'Eric Zumbrunnen',1964,2017),(958661,'Pablo Zumárraga',NULL,NULL),(958666,'Kenneth Zunder',NULL,NULL),(958726,'Stanley R. Zupnik',NULL,NULL),(958733,'Eran Zur',1965,NULL),(958801,'Valerio Zurlini',1926,1982),(958831,'Yoshitaka Zushi',1955,NULL),(958969,'Harald Zwart',1965,NULL),(958993,'Alan Zweibel',1950,NULL),(959003,'Stefan Zweig',1881,1942),(959004,'Stefanie Zweig',1932,2014),(959034,'Joel Zwick',1942,NULL),(959062,'Terry Zwigoff',1949,NULL),(959077,'André Zwobada',1910,1994),(959113,'Elsa Zylberstein',1968,NULL),(959128,'Marcel Zyskind',1979,NULL),(959182,'Gábor Závody',1964,NULL),(959245,'Miguel Zúñiga',NULL,NULL),(959363,'Pablo Álvarez Rubio',1900,1983),(959482,'Julia Alvarez',1950,NULL),(959746,'Per Åhlin',1931,2023),(959774,'Jonas Åkerlund',1965,NULL),(959897,'Jean-Philippe Écoffey',1959,NULL),(959901,'Tibor Égenhoffer',NULL,NULL),(959908,'Paul Éluard',1895,1952),(959923,'Yvette Etiévant',1922,2003),(959936,'Shôzô Îzuka',1933,2023),(959944,'Dara Devaney',NULL,NULL),(959963,'Ólafur Darri Ólafsson',1973,NULL),(959964,'Eszter Ónodi',1973,NULL),(959985,'Nanase Ôkawa',1967,NULL),(959991,'Masaaki Ôkura',NULL,NULL),(960025,'Kentarô Ohtani',1965,NULL),(960028,'Katsuhiro Ôtomo',1954,NULL),(960033,'Akio Ôtsuka',1959,NULL),(960161,'Klas Östergren',1955,NULL),(960222,'Zeynep Özbatur Atakan',1966,NULL),(960236,'Lajos Öze',1935,1984),(960270,'Philip Øgaard',1948,NULL),(960321,'Anne Østerud',1964,NULL),(960379,'Birol Ünel',1961,2020),(960417,'Johnny Hartmann',NULL,NULL),(960495,'Bruno Ascenzo',NULL,NULL),(960711,'Gaby Chiappe',NULL,NULL),(960773,'Mark Czyzewski',NULL,NULL),(961121,'Gabriella Hámori',1978,NULL),(961727,'Hugo Shong',NULL,NULL),(961737,'Gracy Singh',1980,NULL),(961827,'Vanessa Taylor',NULL,NULL),(962223,'Tom Hern',1984,NULL),(962378,'Jeff Richmond',1961,NULL),(962428,'Robert Thorne',NULL,NULL),(962447,'Jin Wang',NULL,NULL),(962596,'Pamela Ribon',1975,NULL),(962600,'Angela Russo-Otstot',NULL,NULL),(962647,'Camille Brown',NULL,NULL),(962729,'Brian Taylor',NULL,NULL),(962849,'Maggie Carey',1975,NULL),(963161,'Joshua Tyler',NULL,NULL),(963211,'Ben Cosgrove',NULL,NULL),(963233,'Joaquín Padró',NULL,NULL),(963236,'John Schneider',1962,NULL),(963343,'Jim Bernstein',NULL,NULL),(963359,'Jane Goldman',1970,NULL),(963400,'Michael Ellis',NULL,NULL),(968405,'Adam Campbell',1980,NULL),(968541,'Oksana Akinshina',1987,NULL),(968789,'Darlene Caamano Loquet',NULL,NULL),(968797,'Sophie Cattani',NULL,NULL),(969153,'Gregory Abbey',1970,NULL),(969202,'Tom Gire',1968,NULL),(969371,'Naotada Itô',NULL,NULL),(969422,'Mitsuaki Kaneko',NULL,NULL),(969427,'Semih Kaplanoglu',1963,NULL),(969523,'Matt Lagan',NULL,NULL),(969563,'Réka Lemhényi',1968,NULL),(969836,'Eriko Odaira',NULL,NULL),(969922,'Doris Pilkington',1937,2014),(969934,'Chatchai Plengpanich',NULL,NULL),(970073,'Gaëtan Roussel',NULL,NULL),(970118,'Roger Schwartz',NULL,NULL),(970125,'Steffen Schlachtenhaufen',1978,NULL),(970196,'Tim Sidell',NULL,NULL),(970337,'Ferran Terraza',NULL,NULL),(970447,'Conrad Vernon',1968,NULL),(970537,'Kata Wéber',1980,NULL),(970606,'Cody Cameron',1970,NULL),(970607,'Michael Chang',NULL,NULL),(970861,'Philippe Elno',NULL,NULL),(970989,'Jesse Johnson',1960,NULL),(971017,'Christopher Knights',1972,NULL),(971135,'Craig Parkinson',1976,NULL),(971239,'Simon J. Smith',NULL,NULL),(971334,'Óscar Zafra',1969,2021),(971346,'Sonia Almarcha',1972,NULL),(971743,'Jim Ballantine',NULL,NULL),(971919,'Pete Jones',NULL,NULL),(971956,'John Lesher',NULL,NULL),(972040,'Pamela Pettler',NULL,NULL),(972113,'Rob Schwimmer',NULL,NULL),(972390,'Mary DeMarle',NULL,NULL),(972395,'Rob Edwards',NULL,NULL),(972454,'Don Winslow',NULL,NULL),(972531,'Louise Monot',1981,NULL),(972598,'Chie Tanaka',1981,NULL),(972803,'Ramsey Avery',NULL,NULL),(972851,'Luke Benward',1995,NULL),(972889,'Inna Braude',NULL,NULL),(973061,'Mary Mapes Dodge',1831,1905),(973105,'Tono Errando',NULL,NULL),(973177,'Kyle Gallner',NULL,NULL),(973222,'Geoffroy Grison',NULL,NULL),(973233,'Marc Guggenheim',1970,NULL),(973244,'Miia Haavisto',1972,NULL),(973260,'Mitsuo Hashimoto',NULL,NULL),(973280,'Quinton Hita',NULL,NULL),(973412,'Laetitia Lefebvre',NULL,NULL),(973443,'Ann Luly',NULL,NULL),(973475,'Javier Mariscal',NULL,NULL),(973497,'Colin McLaren',NULL,NULL),(973562,'Tetsurô Nakagawa',NULL,NULL),(973600,'Bryan Session',NULL,NULL),(973652,'Scott Holroyd',1975,NULL),(973731,'Thilo Röscheisen',1971,NULL),(973753,'Will De Los Santos',1965,NULL),(973796,'Anna Sigalevitch',NULL,NULL),(973920,'Yoshihiro Ueda',NULL,NULL),(973942,'Daniel Vecchione',NULL,NULL),(973945,'Tom Vermeir',1976,NULL),(974169,'James Cotten',1974,NULL),(974299,'Karen Craig',NULL,NULL),(974301,'Katie Ford',NULL,NULL),(974364,'Jonathan Cherry',1978,NULL),(974575,'Brian Tee',1977,NULL),(975026,'Nicole Kassell',NULL,NULL),(975099,'Rachael Prior',NULL,NULL),(975140,'Iain Tibbles',NULL,NULL),(975225,'Griff Furst',1981,NULL),(975322,'Johnny Smith',NULL,NULL),(975323,'Varley Smith',NULL,NULL),(975325,'Creighton Vero',NULL,NULL),(989182,'Tamsin Egerton',1988,NULL),(989278,'Brian J. Gilbert',NULL,NULL),(989308,'David S. Greathouse',NULL,NULL),(989434,'Federico Jusid',1973,NULL),(989882,'Jérôme Sabourin',NULL,NULL),(989902,'Matthias Schellenberg',1967,NULL),(989959,'Ksenia Solo',NULL,NULL),(989994,'Astrid Ströher',1971,NULL),(990025,'Andrew R. Tennenbaum',NULL,NULL),(990095,'Sara Vertongen',1976,NULL),(990167,'Carlos André Zalasik',NULL,NULL),(990239,'David Paterson',1977,NULL),(990310,'Kirsten Johnson',1965,NULL),(990399,'John Meadows',NULL,NULL),(990547,'Daniel Mays',1978,NULL),(990823,'Juliane Friedrich',NULL,NULL),(991229,'Houston King',NULL,NULL),(991245,'Danny Wallace',1976,NULL),(991253,'Jorge Alvarez',NULL,NULL),(991355,'Scott M. Gimple',1971,NULL),(991423,'Mark Perez',NULL,NULL),(991810,'Mahershala Ali',1974,NULL),(992167,'Kurt Vold',NULL,NULL),(992184,'Travis Willingham',1981,NULL),(992370,'Wayne Blair',1971,NULL),(992386,'Jeff Broderick',NULL,NULL),(992438,'Shawn Douglass',NULL,NULL),(992538,'Steve Howey',1977,NULL),(992702,'Doug Pyle',NULL,NULL),(992762,'Michael Sievers',NULL,NULL),(992797,'Jack Swaney',NULL,NULL),(992804,'George Thomas Jr.',NULL,NULL),(993000,'Louisa Elder',NULL,NULL),(993075,'Colleen Hulen',NULL,NULL),(993098,'Meg Kannin',NULL,NULL),(993242,'Clémence Poésy',1982,NULL),(993507,'Kat Dennings',1986,NULL),(993607,'Keiko Maki',NULL,NULL),(993994,'Manuel Alberto Claro',1970,NULL),(994004,'Crystel Fournier',NULL,NULL),(994007,'Ernesto Herrera',NULL,NULL),(994020,'Baris Özbiçer',1976,NULL),(994114,'Erwann Kermorvant',1972,NULL),(994245,'Alê Abreu',NULL,NULL),(994254,'Shona Auerbach',1967,NULL),(994258,'Behnam Behzadi',NULL,NULL),(994310,'Ben Gluck',NULL,NULL),(994368,'Magnus Martens',1973,NULL),(994416,'Sebastián Schindel',NULL,NULL),(994468,'David Brooks',1969,NULL),(994500,'Nicolás Batlle',1976,NULL),(994538,'Joseph Kahn',1972,NULL),(994556,'Fernando Molnar',NULL,NULL),(994669,'Dominique Brune',NULL,NULL),(994683,'Malin Lindström',NULL,NULL),(994832,'Li-Fen Chien',NULL,NULL),(994875,'Meredith Garlick',NULL,NULL),(995329,'Jennifer Simpson',NULL,NULL),(995444,'Geórgia Costa Araújo',NULL,NULL),(995518,'Nadine Luque',NULL,NULL),(995591,'Michael Shepard',NULL,NULL),(995597,'Christian Taylor',1968,NULL),(995633,'Richard Ingber',NULL,NULL),(995691,'Jonah Markowitz',NULL,NULL),(995768,'Leonardo Heiblum',1970,NULL),(995783,'John Kilker',1972,NULL),(995906,'Milo Addica',NULL,NULL),(995925,'Maurice Chauvet',NULL,NULL),(995943,'Harald Rosenløw-Eeg',1970,NULL),(996011,'Adam Peltzman',NULL,NULL),(996022,'Angela Santomero',1968,NULL),(996078,'Michael Smith',NULL,NULL),(996099,'Christian Darren',NULL,NULL),(996134,'Paula Pell',1963,NULL),(996135,'Malcolm Petal',NULL,NULL),(996493,'Guljit Bindra',NULL,NULL),(996646,'Toby Chu',1977,NULL),(996651,'Greg Cipes',1980,NULL),(996669,'Common',1972,NULL),(997003,'Moisés Gómez Ramos',NULL,NULL),(997115,'Miyu Irino',1988,NULL),(997224,'Dong-Joo Kim',NULL,NULL),(997240,'Owen Kline',1991,NULL),(997276,'Andy Kubiszewski',NULL,NULL),(997291,'Justin Kurzel',1974,NULL),(997459,'Elan Mastai',NULL,NULL),(997470,'Marissa McMahon',1973,NULL),(997747,'Gary Pillai',1968,NULL),(997824,'Demelza Randall',NULL,NULL),(998046,'Pavel Sodomka',NULL,NULL),(998099,'Sharla Sumpter Bridgett',NULL,NULL),(998117,'Alice Taglioni',1976,NULL),(998264,'Jorge Vergara',1955,2019),(998342,'Sean Price Williams',1977,NULL),(998551,'John Sanford',NULL,NULL),(998606,'Ryan Brown',NULL,NULL),(998825,'Jeffrey Blitz',1969,NULL),(998831,'Frédéric Botton',1936,2008),(998846,'Alfredo Castro',1955,NULL),(998941,'Christo Jivkov',1975,2023),(999021,'Roberto Nelson',NULL,NULL),(999117,'Jerry Trainor',1977,NULL),(999118,'Michael Sinterniklaas',1972,NULL),(999134,'Dean Wareham',1963,NULL),(999415,'Jay Lee',NULL,NULL),(999419,'Miles Thompson',1988,NULL),(999480,'Donald Mixon',NULL,NULL),(999482,'Kevin Sargent',NULL,NULL),(999525,'Daniel Noah',NULL,NULL),(999606,'Johnny Capps',NULL,NULL),(999627,'Sean Costello',NULL,NULL),(999768,'Smokey Nelson',NULL,NULL),(999979,'Kate Myers',NULL,NULL),(1000113,'Etan Cohen',1974,NULL),(1000119,'Josy Eisenberg',1933,2017),(1000159,'George Butler',1943,2021),(1000302,'Gabrielle Allan',NULL,NULL),(1000411,'Doug Belgrad',NULL,NULL),(1000453,'Mark Bliss',NULL,NULL),(1000613,'Tamara Conboy',NULL,NULL),(1000616,'Marco Polo Constandse',1973,NULL),(1000858,'Lori Forte',NULL,NULL),(1000958,'Isabelle Grellat',NULL,NULL),(10010227,'Lexi Aaron',NULL,NULL),(1001051,'Ho-Cheung Pang',1973,NULL),(1001218,'Lili Koshashvili',NULL,NULL),(1001231,'Yochanan Kredo',NULL,NULL),(1001232,'Marie Kreutzer',1977,NULL),(1001345,'Mohan Raja',1974,NULL),(1001404,'David Matranga',1975,NULL),(1001590,'Andreas Olavarria',NULL,NULL),(1001945,'Sofia Sondervan',NULL,NULL),(1002018,'Lea Tafuri',NULL,NULL),(1002055,'Mark Thompson-Ashworth',1964,NULL),(10020970,'Toby Sauerback',NULL,NULL),(1002207,'Phetthai Vongkumlao',NULL,NULL),(1002232,'Mercedes Younger',NULL,NULL),(10023988,'Havana Rose Liu',NULL,NULL),(1002424,'Michael Dougherty',1974,NULL),(10024442,'Xingzai Wu',NULL,NULL),(1002609,'Nicholas Braun',1988,NULL),(1002620,'Noel Callahan',1989,NULL),(1002641,'Dominic Cooper',1978,NULL),(1002664,'Michael Eklund',NULL,NULL),(1002694,'Joe Fria',NULL,NULL),(1002746,'Tomohiro Kaku',1984,NULL),(1002807,'Sean McEwen',NULL,NULL),(10029946,'Can Sertaç Adalier',1990,NULL),(10030720,'Nana Mori',2001,NULL),(1003081,'Sonja Richter',1974,NULL),(10031930,'Avery Whitted',1993,NULL),(1003211,'Christophe Debraize-Bois',NULL,NULL),(10032991,'Joyce McQueen',NULL,NULL),(1003517,'Krista Parris',NULL,NULL),(1003558,'Josh Shader',NULL,NULL),(1003636,'Michael Caleo',NULL,NULL),(10036531,'Harry Trevaldwyn',NULL,NULL),(1003839,'Dan Sterling',NULL,NULL),(1003921,'Janice Williams',NULL,NULL),(1003922,'Brian Oliver',1971,NULL),(1003923,'Danny Sherman',NULL,NULL),(1004422,'Amin Hajee',NULL,NULL),(1004435,'Roy Haylock',1975,NULL),(1004444,'Hans Helewaut',NULL,NULL),(1004604,'Adele Lim',NULL,NULL),(1004635,'Ana López Mercado',1981,NULL),(1004808,'Ana Papadopulu',1978,NULL),(1005039,'Nathalie Suhard',NULL,NULL),(1005292,'Mari Carmen Sánchez',NULL,NULL),(1005373,'David Scharf',NULL,NULL),(1005420,'Ashley Miller',1971,NULL),(1005576,'Rob Maxey',1953,2010),(1005857,'David Endley',NULL,NULL),(1006024,'Alicia Keys',1981,NULL),(1006056,'John Mitchell',NULL,NULL),(1006167,'Trevor Macy',NULL,NULL),(1006264,'Arthur Golden',1956,NULL),(1006275,'John Biggins',NULL,NULL),(1006356,'Bill Shaffer',NULL,NULL),(1006404,'Robert Scull',NULL,NULL),(1006435,'Carlos José Alvarez',1979,NULL),(1006581,'Simon Blackwell',1966,NULL),(1006730,'Matthew Cirulnick',NULL,NULL),(1006855,'Shaarang Dev',NULL,NULL),(1006949,'Juanillo Esteban',1968,NULL),(1006993,'Donatella Finocchiaro',1970,NULL),(1007136,'Valeska Grisebach',1968,NULL),(10071976,'Chiara Lüssow',NULL,NULL),(10071978,'Vanessa Grzybowski',NULL,NULL),(10071979,'Luisa Höfer',NULL,NULL),(10071984,'Imke Frieda Sander',NULL,NULL),(1007225,'Hilary Hinkle',NULL,NULL),(10072373,'Nella Larsen',1891,1964),(1007364,'Tomoko Katsura',NULL,NULL),(1007373,'Bernhard Keller',NULL,NULL),(10073748,'Sophie Riva',NULL,NULL),(1007411,'Roman Kolinka',1986,NULL),(1007525,'Álvaro Longoria',1968,NULL),(1007602,'Jay Martel',NULL,NULL),(10076475,'Thardelly Lima',NULL,NULL),(10076495,'Clara Giorgina Braun',NULL,NULL),(1007661,'Joseph Metcalfe',1973,NULL),(1007747,'Paul Jan Nelissen',NULL,NULL),(1007773,'Robert E. Norton',NULL,NULL),(1008137,'John Sirabella',NULL,NULL),(1008264,'Stephen Tenenbaum',NULL,NULL),(1008443,'Gretchen Warthen',NULL,NULL),(1008709,'Ashley Scott',1977,NULL),(10087171,'Mizanur Rahaman',NULL,NULL),(10087263,'Jaden Tolliver',NULL,NULL),(1008737,'King Baggot',1943,NULL),(1008771,'Alex Rodríguez',1971,NULL),(1008940,'Tomas Almgren',NULL,NULL),(10089754,'Widens Pkolo Dorsainville',NULL,NULL),(10090627,'Italo Carrera',NULL,NULL),(10091335,'Yogesh Chandekar',NULL,NULL),(1009277,'Dax Shepard',1975,NULL),(1009430,'Nicole Gläser',NULL,NULL),(1009441,'Hidemi Hara',NULL,NULL),(1009444,'Jennifer Heaton',1976,NULL),(10095627,'Sam Dolnick',NULL,NULL),(1009681,'Stephen Niver',1971,NULL),(1009754,'Jorane Castro',NULL,NULL),(1009774,'María Lidón',NULL,NULL),(1009775,'Greg Marcks',1976,NULL),(1009782,'Heather Parry',NULL,NULL),(10098943,'Park Ji-hu',2003,NULL),(1009894,'Andrew Coutts',NULL,NULL),(1009978,'Merritt Johnson',NULL,NULL),(1009988,'Kate Kondell',1973,NULL),(1010017,'Andy Mayson',NULL,NULL),(10100374,'Cândida Bezerra Galindo',NULL,NULL),(1010373,'Hunter Dennis',NULL,NULL),(1010379,'Alyson Fouse',1965,NULL),(1010393,'Judy Holm',NULL,NULL),(1010405,'Nick Schenk',NULL,NULL),(1010524,'Akira Yamamoto',NULL,NULL),(1010540,'Terence Winter',1960,NULL),(1010724,'Corinne Foxx',1994,NULL),(1011065,'Ilan Eshkeri',NULL,NULL),(10110660,'Zainab Azizi',NULL,NULL),(1011070,'Marta Etura',1978,NULL),(10111893,'Akshat Ghildial',NULL,NULL),(10113618,'Kwak Sin-ae',NULL,NULL),(1011363,'Azad Jafarian',1979,NULL),(1011485,'Jed Kurzel',1976,NULL),(1011675,'Ryan McCluskey',NULL,NULL),(1011849,'Sisse Graum Jørgensen',1972,NULL),(1012010,'Meaghan Rath',1986,NULL),(1012016,'T.A. Razak',NULL,2016),(10120272,'Jeanne Boudier',NULL,NULL),(1012102,'Motonori Sakakibara',NULL,NULL),(1012185,'Nikki Silver',NULL,NULL),(1012373,'Jennifer Twomey',NULL,NULL),(1012385,'Roar Uthaug',1973,NULL),(1012501,'Rupert Wyatt',1972,NULL),(1012534,'Mona Zaki',1976,NULL),(10128408,'Emma Corrin',1995,NULL),(1012893,'David Lang',1957,NULL),(1013003,'Michael Ealy',1973,NULL),(10130595,'Ramona Edith Williams',NULL,NULL),(1013087,'Suranne Jones',1978,NULL),(10133695,'Suhit Abhyankar',1990,NULL),(10133817,'Eli Saslow',NULL,NULL),(1013627,'Nico Renson',NULL,NULL),(1013656,'Dong-bin Kim',1957,NULL),(1013747,'Matthew Cervi',NULL,NULL),(1013783,'George Feucht',NULL,NULL),(1014034,'Chuck Pacheco',NULL,NULL),(1014041,'David Shoshan',1954,NULL),(1014201,'Rhett Reese',NULL,NULL),(1014208,'Hiroshi Toda',NULL,NULL),(1014340,'Metztli Adamina',NULL,NULL),(1014365,'John Altschuler',1963,NULL),(1014417,'Ogie Banks',1973,NULL),(1014429,'M.C. Beaton',1936,2019),(1014528,'Gisele Bündchen',1980,NULL),(1014577,'Mónica Cervera',1975,NULL),(1014697,'Ramin Djawadi',1974,NULL),(1014721,'Drew Droege',1977,NULL),(1014957,'Pavlina Hatoupis',NULL,NULL),(1014959,'Phil Hawkins',NULL,NULL),(10150207,'Helin Kandemir',2004,NULL),(1015096,'Chaney Kley',1972,2007),(10151906,'William Glrenroy',NULL,NULL),(10151907,'Thomas Glenroy',NULL,NULL),(1015241,'Jungo Maruta',NULL,NULL),(1015262,'Leighton Meester',1986,NULL),(1015312,'Duraid Munajim',NULL,NULL),(10153699,'Jagadeesh Prathap Bandari',1993,NULL),(1015409,'Elise Pearlstein',NULL,NULL),(10156834,'An-Cheol Jeong',NULL,NULL),(10156835,'Gyun Heo',NULL,NULL),(1015684,'Corey Stoll',1976,NULL),(1015867,'Lyle Workman',1957,NULL),(10159785,'Anna Butkevich',NULL,NULL),(1016080,'Michael Cohen',1977,NULL),(1016088,'John O\'Brien',NULL,NULL),(1016096,'Steven Foster',NULL,NULL),(10162345,'Udo Flohr',NULL,NULL),(10162346,'Peer Meter',NULL,NULL),(1016333,'David Farr',1969,NULL),(10163946,'Maddie Lenton',NULL,NULL),(10163947,'Hazel Sandery',NULL,NULL),(1016405,'Alain Lathière',NULL,NULL),(1016428,'James Marsh',1963,NULL),(10166219,'Patricia Ryan',NULL,NULL),(1016634,'Kevin Leeson',NULL,NULL),(1016679,'Bernd Lange',1974,NULL),(1016687,'Laurent Tirard',1967,NULL),(1016752,'Sam Chase',NULL,NULL),(1016966,'Kevin J. Walsh',1975,NULL),(1017005,'Samantha Lewis',NULL,NULL),(1017242,'Elke Kummer',NULL,NULL),(1017334,'Juno Temple',1989,NULL),(1017424,'Julie O\'Brien',NULL,NULL),(1017488,'Charles Randolph',NULL,NULL),(1017500,'Sang-hoon Ahn',NULL,NULL),(1017514,'Tina Alexis Allen',NULL,NULL),(1017627,'Yvonne M. Bernard',NULL,NULL),(1017633,'Alia Bhatt',1993,NULL),(1017951,'Ato Essandoh',1972,NULL),(10179929,'Francisco Gomes',NULL,NULL),(10179930,'Dico Oliveira',NULL,NULL),(10179931,'Eduarda Andrade',NULL,NULL),(10179932,'André Andrade',NULL,NULL),(1017994,'Justin Fletcher',1970,NULL),(1018221,'Jin Zhang',1974,NULL),(1018275,'Kim Young-min',1971,NULL),(1018307,'Pavel Kostomarov',1975,NULL),(10183085,'Joana Vinogradoff',NULL,NULL),(1018426,'Gonzalo López-Gallego',NULL,NULL),(1018467,'Eduardo Enrique Mayén',1977,NULL),(1018488,'Wendi McLendon-Covey',1969,NULL),(1018493,'Rakeysh Omprakash Mehra',1963,NULL),(10186115,'Stan Younger',NULL,NULL),(1018679,'Steven Pasquale',1976,NULL),(1018717,'Ewa Piaskowska',1973,NULL),(1018725,'Lou Pitt',NULL,NULL),(1018886,'Rudolf Schramm',1902,1981),(1019013,'Shelley Tabbut',NULL,NULL),(10191280,'Nico Walker',NULL,NULL),(1019247,'Sonic Youth',NULL,NULL),(1019493,'Kevin Donovan',NULL,NULL),(1019583,'David P. Smith',1968,NULL),(1019639,'Chris Morley',1977,NULL),(10197169,'Kat McLeod',NULL,NULL),(1019734,'David Crow',1974,NULL),(1020036,'Alexandra Breckenridge',1982,NULL),(10200499,'Julia Rehwald',NULL,NULL),(10200744,'Julie Oh',NULL,NULL),(1020089,'Sally Hawkins',1976,NULL),(1020124,'Sarah Clarke',1972,NULL),(10201625,'Kawsar Al Haddad',NULL,NULL),(1020568,'Sarah Maizes',NULL,NULL),(10206525,'Jadelyn Breier',NULL,NULL),(10208010,'Cassandra Violet',NULL,NULL),(1020835,'Joe Penna',NULL,NULL),(1020877,'David Gere',1975,NULL),(1020896,'Glenn Gers',NULL,NULL),(1020898,'Edith Hamilton',1867,1963),(1021135,'Deborah Balderstone',NULL,NULL),(1021163,'Greg Behrendt',1963,NULL),(1021224,'Rachida Brakni',1977,NULL),(10212813,'Jaime Hill',NULL,NULL),(1021349,'Kumar Dave',NULL,NULL),(1021351,'Tyler Davidson',NULL,NULL),(1021353,'Sanjay Dayma',NULL,NULL),(10214834,'Debbie Honeywood',NULL,NULL),(1021528,'Léonard Glowinski',NULL,NULL),(1021578,'Catherine Haight',NULL,NULL),(1021592,'J.J. Harris',1951,2013),(1021721,'Caitlin Keats',1972,NULL),(1021750,'Aya Kôda',1904,1990),(1022001,'Trent Opaloch',NULL,NULL),(1022075,'Isabelle Proust',NULL,NULL),(1022153,'K.P. Saxena',NULL,NULL),(1022228,'Song Seon-mi',1974,NULL),(1022268,'Shigeo Sugimura',NULL,NULL),(1022277,'Cheuk-Hon Szeto',NULL,NULL),(1022326,'Trigger',1934,1965),(1022334,'Hatsuki Tsuji',1950,NULL),(1022440,'Anne Judson-Yager',NULL,NULL),(1022446,'Ji Na Yeo',NULL,NULL),(1022455,'Benh Zeitlin',1982,NULL),(10225360,'Travis Farncombe',NULL,NULL),(1022560,'Sharon Lewis',NULL,NULL),(10226234,'Jessie Booth',NULL,NULL),(1022687,'Annie Young Frisbie',1973,NULL),(1022690,'Catherine Bailey',NULL,NULL),(1022732,'Link Baker',NULL,NULL),(1022918,'Andy Powers',NULL,NULL),(1023018,'Kelly Carlson',1976,NULL),(10230425,'Salim Benmoussa',NULL,NULL),(1023104,'Lisa Russo',NULL,NULL),(1023204,'Ben Davis',1961,NULL),(1023349,'Stuart Ford',NULL,NULL),(1023578,'Walter Hamada',NULL,NULL),(10238213,'Alexa Adeosun',NULL,NULL),(1023919,'Ramin Bahrani',1975,NULL),(1024107,'Ambyr Childers',1988,NULL),(10241910,'Jeremy Gaipo',NULL,NULL),(10242239,'Laura Sacchetti',NULL,NULL),(1024264,'Julie Ann Emery',1975,NULL),(1024314,'Marie-Sophie Ferdane',NULL,NULL),(1024345,'Fujiko',1980,NULL),(1024391,'Susan Goforth',NULL,NULL),(1024392,'Christian M. Goldbeck',1974,NULL),(1024487,'Teun Hilte',NULL,NULL),(1024488,'Shinsaku Himeda',1916,1997),(1024635,'Sandra Murillo',NULL,NULL),(1024677,'John Krasinski',1979,NULL),(1024685,'Bhushan Kumar',1977,NULL),(1024878,'Seth Meyers',1973,NULL),(1024953,'Terry Notary',1968,NULL),(1025139,'Alex Roe',1990,NULL),(1025280,'Anubhav Sinha',1965,NULL),(1025779,'Edward Williams',1921,2013),(1025909,'George Baker',NULL,NULL),(1025983,'Oshri Cohen',1984,NULL),(1026031,'Leon Ford',NULL,NULL),(10263413,'Brandon Stanley',NULL,NULL),(10264498,'Rebecca Banks',NULL,NULL),(10264788,'Zac Coats',NULL,NULL),(1026528,'Rich Allen',NULL,NULL),(10265692,'Felicity Evans',NULL,NULL),(1026592,'Julian Clarke',1977,NULL),(1026600,'Sharon Zurek',NULL,NULL),(1026778,'Brad Furman',NULL,NULL),(1026832,'Jayme Roy',NULL,NULL),(1026847,'Ira Singerman',NULL,NULL),(1026883,'Gavin Wiesen',NULL,NULL),(1026928,'Caroline Norris',NULL,NULL),(1027050,'Maxwell Atoms',1974,NULL),(1027089,'Reiko Yoshida',NULL,NULL),(1027122,'Karen Moore',NULL,NULL),(1027293,'Aishwariyaa Bhaskaran',NULL,NULL),(10273397,'Kotone Furukawa',1996,NULL),(1027626,'Christopher Dodd',NULL,NULL),(1027640,'Jonathan Raymond',NULL,NULL),(1027682,'Frank Aderias',NULL,NULL),(1027685,'Zackary Adler',NULL,NULL),(1027719,'Farhan Akhtar',1974,NULL),(1027856,'Alexis Arroyo',NULL,NULL),(1027883,'Bobette Audrey',1931,2007),(1027986,'Julian Barratt',1968,NULL),(1028107,'Georges Bermann',NULL,NULL),(1028146,'M.L. Piyapas Bhirombhakdi',NULL,NULL),(10281577,'Koyoharu Gotouge',NULL,NULL),(1028202,'Sebastian Blenkov',1972,NULL),(1028291,'Roddy Bottum',1963,NULL),(1028330,'Javiera Bravo',NULL,NULL),(1028365,'Olivier Bronckart',NULL,NULL),(1028466,'Jesse Camacho',1991,NULL),(1028496,'Joe Cappelletti',NULL,NULL),(10285596,'Sam Xu',NULL,NULL),(1028580,'Tae-Hyun Cha',1976,NULL),(1028686,'Jason Cochard',NULL,NULL),(1028720,'Joseph Connolly',1950,NULL),(1028742,'Ibon Cormenzana',1972,NULL),(1028797,'Sarah Joslyn Crowder',NULL,NULL),(1028806,'Vilmos Csatlós',NULL,NULL),(1028832,'Renzil D\'Silva',NULL,NULL),(10289762,'Shuzhen Zhao',1943,NULL),(1029032,'Jesselynn Desmond',1978,NULL),(1029101,'Josefine Domes',1981,NULL),(1029112,'Luke Doolan',1979,NULL),(1029222,'Molly Blixt Egelind',1987,NULL),(10292298,'Mondo Okumura',NULL,NULL),(10292299,'Sena Nakajima',NULL,NULL),(1029303,'Sebastián Escofet',NULL,NULL),(1029497,'Beth Frey',NULL,NULL),(1029845,'Olivier Guerbois',NULL,NULL),(1029878,'Knate Lee',NULL,NULL),(1029946,'Michael Hardwick',NULL,NULL),(1030033,'Máté Herbai',1975,NULL),(1030152,'Andrew Huebscher',NULL,NULL),(1030179,'Chul-hyun Hwang',NULL,NULL),(1030205,'Tôma Ikuta',1984,NULL),(1030244,'Chukwudi Iwuji',1975,NULL),(1030253,'Ryan Jackson-Healy',NULL,NULL),(1030267,'Jang Hyuk',1976,NULL),(1030357,'Alain Juteau',NULL,NULL),(1030373,'Reema Kagti',NULL,NULL),(1030409,'Gábor Karalyos',1980,NULL),(1030410,'Hristos Karamanis',NULL,NULL),(1030457,'Macdara Kelleher',NULL,NULL),(1030458,'Kieran Keller',NULL,NULL),(10305133,'Amelia Dell',NULL,NULL),(1030527,'Sun-Min Kim',NULL,NULL),(1030531,'Yun-su Kim',NULL,NULL),(1030700,'Masami Kurumada',1953,NULL),(1030706,'Jae-young Kwak',1959,NULL),(1030817,'Eun Lee',NULL,NULL),(1030819,'Hee Jae',1980,NULL),(1030825,'Seung-Hyun Lee',NULL,NULL),(1030827,'Yo-won Lee',1980,NULL),(1030925,'Carlo Ljubek',1976,NULL),(1030946,'Javier Lombardo',1959,NULL),(1031014,'Eva Löbau',1972,NULL),(1031048,'Gerardo Madrazo',NULL,NULL),(1031176,'Kelly Masterson',NULL,NULL),(1031246,'Lucky McKee',1975,NULL),(1031324,'Tino Mewes',1983,NULL),(10315055,'Thanh Nhien Phan',NULL,NULL),(1031534,'Anna Maria Mühe',1985,NULL),(1031639,'Cedric Nicolas-Troyan',1969,NULL),(1031648,'Daan Nieuwenhuijs',NULL,NULL),(10317348,'Giorgos Papaioannou',NULL,NULL),(10317349,'Nikos Papaioannou',NULL,NULL),(1031745,'Janette Oke',1935,NULL),(10318996,'Monica Arac de Nyeko',NULL,NULL),(1032117,'François Quiqueré',NULL,NULL),(1032121,'R.E.M.',NULL,NULL),(10321662,'Kotaro Daigo',2000,NULL),(1032289,'Zacarías M. de la Riva',1972,NULL),(1032300,'Dee Austin Robertson',1978,NULL),(10324382,'Vanessa Block',NULL,NULL),(1032473,'Thomas Brodie-Sangster',1990,NULL),(1032521,'Lorene Scafaria',1978,NULL),(1032539,'Stephan Schesch',1967,NULL),(1032567,'Pablo Schreiber',1978,NULL),(1032700,'Ritesh Sidhwani',NULL,NULL),(1032743,'Bryan Sipe',NULL,NULL),(1032754,'Chris Sivertson',NULL,NULL),(1032795,'Clayton Snyder',1987,NULL),(1033085,'Balázs Temesvári',NULL,NULL),(1033086,'Piers Tempest',NULL,NULL),(1033257,'Hiroe Tsukamoto',1960,2023),(1033349,'Valmiki',NULL,NULL),(1033517,'Ariel Vromen',1973,NULL),(1033529,'Pongpat Wachirabunjong',NULL,NULL),(1033683,'Agnieszka Wojtowicz-Vosloo',NULL,NULL),(1033693,'Sarunyu Wongkrachang',1961,2020),(1033745,'Tatsuo Yoshida',1933,1977),(1033788,'Paul Zbyszewski',NULL,NULL),(1033812,'Emily Ziff Griffin',NULL,NULL),(1033900,'Jack Adams',1879,NULL),(1033955,'Mark Brooks',NULL,NULL),(1033984,'Arthur Cohen',NULL,NULL),(1034122,'Michael Lewis',1960,NULL),(10341835,'Bobby Roddy',NULL,NULL),(10341836,'Alisha Weir',2009,NULL),(1034266,'Mike Smith',1972,NULL),(10346131,'Archana Jois',1994,NULL),(10346132,'Ramachandra Raju',NULL,NULL),(1034777,'Billy Mitchell',NULL,NULL),(10348418,'Dèlia Brufau',NULL,NULL),(10348419,'Natàlia Barrientos',NULL,NULL),(1034870,'Catherine Hand',NULL,NULL),(1034889,'Andy Meyers',NULL,NULL),(1034909,'Robert Vaughn',NULL,NULL),(1034914,'James Wilson',NULL,NULL),(1034965,'Bryan Greenberg',1978,NULL),(10350270,'Sameer R. Shami',1982,NULL),(1035096,'Antonio Benedicti',NULL,NULL),(1035342,'Johnny Anfone',NULL,NULL),(1035448,'Badly Drawn Boy',1969,NULL),(1035537,'Michael Holman',NULL,NULL),(1035622,'Ibrahim Koma',1987,NULL),(1035634,'Preston Lacy',1969,NULL),(1035643,'Frederick Lau',1989,NULL),(10356694,'Samuel Leakey',NULL,NULL),(1035682,'Derek Luke',1974,NULL),(1035854,'Ori Pfeffer',1975,NULL),(1036073,'Jerry Sprio',NULL,NULL),(1036127,'Branko Tomovic',1980,NULL),(1036181,'Mike Vogel',1979,NULL),(1036211,'Robb Wells',1971,NULL),(1036221,'Jeff Whitty',NULL,NULL),(1036301,'Eszter Balla',1980,NULL),(10363321,'Shirine Boutella',1990,NULL),(10363322,'Hilda Amira Douaouda',NULL,NULL),(1036340,'Rachel Boston',1982,NULL),(1036527,'Francesca Gregorini',1968,NULL),(1036641,'Serah D\'Laine',1982,NULL),(1036659,'Bárbara Lennie',1984,NULL),(1036939,'Kathryn Tucker',NULL,NULL),(1037158,'Drew Bailey',NULL,NULL),(1037221,'Sergio G. Sánchez',1973,NULL),(1037242,'Marianne Bakke',NULL,NULL),(1037342,'Ray Harman',NULL,NULL),(1037430,'Justin Cook',1976,NULL),(1037557,'Carly Hunter',NULL,NULL),(1037560,'Tara Johns',NULL,NULL),(1037586,'Paul Vosloo',NULL,NULL),(1037658,'Migue Amoedo',NULL,NULL),(1038157,'Jas Shelton',NULL,NULL),(1038177,'Laurence Sterne',1713,1768),(1038254,'Stephen Vagg',NULL,NULL),(1038345,'George Gatins',NULL,NULL),(1038460,'Sherry Simpson',NULL,NULL),(1038557,'Tanner Christensen',NULL,NULL),(1038667,'Christopher Messina',NULL,NULL),(10387016,'Damao',NULL,NULL),(10387711,'Patricia Mouchon',NULL,NULL),(10387712,'Khoukha Boukherbache',NULL,NULL),(10387713,'Bérangère Toural',NULL,NULL),(10387714,'Patricia Guery',NULL,NULL),(10387818,'Lu Li',1983,NULL),(1038800,'Josh A. Cagan',NULL,NULL),(1038805,'Clark Cheng',NULL,NULL),(1038863,'Neil Bligh',1965,NULL),(1038878,'Pedro Rivero',1969,NULL),(1038897,'Rika Takahashi',NULL,NULL),(1039235,'Sachie Alessio',NULL,NULL),(1039246,'Jérôme Alméras',NULL,NULL),(1039315,'Massive Attack',NULL,NULL),(1039374,'Nina G. Bargiel',1972,NULL),(1039405,'Szabolcs Bede Fazekas',1966,NULL),(1039438,'Zaida Bergroth',1977,NULL),(1039461,'Tara Birtwhistle',NULL,NULL),(10397517,'Antonio Heredia',NULL,NULL),(10399505,'Rachel Zegler',2001,NULL),(1040327,'Yuet-Jan Hui',NULL,NULL),(1040365,'Brandon T. Jackson',1984,NULL),(1040419,'Shun Oguri',1982,NULL),(10404430,'Sonya Priss',1995,NULL),(1040487,'Alex Khaskin',NULL,NULL),(1040499,'Kim Hee-seon',1977,NULL),(1040556,'Jon Krakauer',1954,NULL),(10405720,'Jennie Rooney',NULL,NULL),(1040587,'Hae-hyo Kwon',1965,NULL),(10407071,'Jane Yatsuta',NULL,NULL),(1040773,'Heiward Mak',NULL,NULL),(1040776,'Stéphane Malca',NULL,NULL),(10408302,'Waad Al-Kateab',NULL,NULL),(1040934,'Lily Mojekwu',1966,NULL),(1040961,'Kestie Morassi',1978,NULL),(1040968,'Masakazu Morita',1972,NULL),(10410322,'David Duggan',NULL,NULL),(1041146,'Park Ho-San',NULL,NULL),(1041228,'Chatchai Pongprapaphan',NULL,NULL),(1041285,'Peter Raeburn',NULL,NULL),(10413970,'Mina Farid',NULL,NULL),(1041479,'Rob Schrab',1969,NULL),(1041564,'CindyMarie Small',NULL,NULL),(1041607,'Lorraine Stanley',1976,NULL),(1041899,'Christos Voudouris',NULL,NULL),(1041931,'Wei-Qiang Zhang',NULL,NULL),(1041999,'Yoo Hae-jin',1970,NULL),(1042028,'Corey Ziemniak',1976,NULL),(1042371,'Michael Greenspan',NULL,NULL),(1042511,'Justin K. Thompson',NULL,NULL),(1042642,'David Belle',1973,NULL),(10427036,'Rhys Mcgowan',NULL,NULL),(10427037,'Katie Proctor',NULL,NULL),(10429652,'Tetsuro Kodama',NULL,NULL),(1043011,'Christophe Paou',1969,NULL),(1043164,'La La Anthony',1983,NULL),(10432476,'Alex Guy',NULL,NULL),(1043325,'Ruth Handler',1916,2002),(1043338,'Michelle Jenner',1986,NULL),(1043587,'Casey Walker',1975,NULL),(1043852,'Jacob Cooney',1981,NULL),(1044044,'Arlene Muller',NULL,NULL),(10441429,'Ryoichi Wada',NULL,NULL),(10441873,'Vivian Chan',NULL,NULL),(1044218,'István Major',1962,NULL),(1044403,'David Anders',1981,NULL),(1044641,'Michaël Abiteboul',NULL,NULL),(1045062,'Cyril Colbeau-Justin',1970,2020),(1045239,'Jean-Baptiste Dupont',NULL,NULL),(10455508,'Bruce B.L. Jurgens',NULL,NULL),(1045593,'Loren Taylor',1977,NULL),(1045622,'Joe Iacono',NULL,NULL),(1045685,'Jin-young Jung',1964,NULL),(1045686,'Tae-won Jeong',NULL,NULL),(1045739,'Max Kasch',1985,NULL),(10457412,'Luna Mwezi',NULL,NULL),(10457413,'Michelle Halbheer',NULL,NULL),(1045755,'Béla Keleti',1897,1945),(1045865,'John Krokidas',NULL,NULL),(1045937,'Joon-ik Lee',1959,NULL),(1046088,'Yuji Matsukura',NULL,NULL),(1046097,'Rachel McAdams',1978,NULL),(1046347,'Fumiko Orikasa',1974,NULL),(1046493,'Dana Pupkin',NULL,NULL),(1046521,'Lars Ranthe',1969,NULL),(1046566,'Dustin Rikert',1974,NULL),(1046664,'Craig Sandells',NULL,NULL),(1046827,'Tony Dean Smith',1977,NULL),(1046846,'Song Seung-heon',1976,NULL),(1046893,'Andrew Strahorn',1975,NULL),(1047021,'Caspian Tredwell-Owen',NULL,NULL),(1047193,'Won Bin',1977,NULL),(10472587,'Freddie Williams II',NULL,NULL),(1047305,'Ben Bishop',1976,NULL),(1047403,'Daniel Travis',1968,NULL),(1047603,'Jerry Robinson',1922,2011),(1047701,'Michael Walsh',NULL,NULL),(10477231,'Jay S Arnold',NULL,NULL),(1047726,'Christoph Bach',1975,NULL),(1048128,'Dana Davis',1978,NULL),(1048199,'Jee-Young Kim',1938,2017),(1048246,'Bonnie McNeil',NULL,NULL),(1048540,'Tae-gyun Kim',1960,NULL),(1048560,'Marcus Raboy',1965,NULL),(1048600,'Henrik Vincent Thiesen',1975,NULL),(10488271,'Yuri Latino',NULL,NULL),(10488416,'James Spencer Ashworth',NULL,NULL),(1048866,'Giulio Steve',NULL,NULL),(10489274,'Nikolai Leon',NULL,NULL),(10489571,'Kori Adelson',NULL,NULL),(10490965,'Priscilla Friedrich',NULL,NULL),(10490966,'Otto Friedrich',NULL,NULL),(10492749,'Hyeon-Seon Seo',NULL,NULL),(1049433,'Lenny Abrahamson',1966,NULL),(1049516,'Michael Beckmann',NULL,NULL),(10498321,'Sakura Kiryu',NULL,NULL),(1049982,'Óscar Jaenada',1975,NULL),(1050006,'Hiroshi Kanazawa',NULL,NULL),(1050117,'Stewart Le Marechal',NULL,NULL),(1050125,'Lee Jung-Jin',1978,NULL),(1050143,'Helene Lindholm',NULL,NULL),(1050211,'Laura McCreary',1972,NULL),(1050287,'Branden Nadon',1986,NULL),(10503387,'Issa Currie',NULL,NULL),(10504454,'Mathieu Lussier',NULL,NULL),(10504964,'Ross Paul',NULL,NULL),(10505245,'Ana Oca',NULL,NULL),(10506074,'Shôka Ôshima',NULL,NULL),(10508535,'Craig W. Sanger',NULL,NULL),(10508812,'Jared Bulmer',NULL,NULL),(10509441,'Andrew Black',1974,NULL),(1051081,'Oliver Lansley',NULL,NULL),(1051221,'Katie Aselton',1978,NULL),(1051247,'Christelle Cornil',1977,NULL),(1051346,'Rie Rasmussen',1976,NULL),(1051468,'David Gallart',NULL,NULL),(1051488,'Hervé Guichard',NULL,NULL),(1051748,'Andrew Spaulding',NULL,NULL),(1051826,'Joseph Lee Galloway',1941,2021),(1051840,'Harold G. Moore',1922,2017),(1051864,'Allen Adler',1916,1964),(1052026,'Jay Gallagher',NULL,NULL),(1052069,'Vajid Allah Fariborzi',NULL,NULL),(1052162,'Bryan Bertino',1977,NULL),(10522570,'Elis Menezes',NULL,NULL),(1052445,'Tomas Eskilsson',1958,NULL),(10524619,'Eva Whittaker',NULL,NULL),(1052544,'Alan Gryfe',NULL,NULL),(1052666,'Will Janowitz',1980,NULL),(1052791,'Pascal Laugier',1971,NULL),(1052811,'Jean-Charles Levy',NULL,NULL),(1053118,'Raul A. Reyes',NULL,NULL),(1053148,'Mark Ronson',1975,NULL),(1053344,'Brett Thornquest',NULL,NULL),(1053351,'James Tiptree Jr.',1915,1987),(1053371,'Duncan Tucker',NULL,NULL),(1053530,'Tom Ford',1961,NULL),(1053580,'Jessica Tyler Brown',NULL,NULL),(1053785,'Molly Smith',NULL,NULL),(1053843,'Sam Lake',1970,NULL),(1053988,'Tony Kanal',1970,NULL),(1054292,'Mary Valenti',NULL,NULL),(1054413,'Barb Morrison',NULL,NULL),(1054429,'Michael Tully',NULL,NULL),(1054433,'Ron Dyens',NULL,NULL),(1054473,'Manish Acharya',1967,2010),(1054604,'Emily Halpern',NULL,NULL),(1054974,'Rick Suvalle',NULL,NULL),(1054979,'Frank G. DeMarco',NULL,NULL),(1055105,'Madhur Bhandarkar',1966,NULL),(1055166,'Virginie Bruant',NULL,NULL),(1055413,'Michael Fassbender',1977,NULL),(10554376,'\'A.J.\' Marriot',NULL,NULL),(1055459,'Frédéric Fresson',NULL,NULL),(1055564,'Grégoire Hetzel',NULL,NULL),(1055596,'Yoshihiro Ike',NULL,NULL),(1055631,'Lizette Jonjic',NULL,NULL),(10557605,'Charlie Laigneau',NULL,NULL),(1055848,'Drew McWeeny',NULL,NULL),(1055902,'Hélène Muddiman',NULL,NULL),(1056267,'Katsuya Terada',1963,NULL),(1056279,'Jennifer Tisdale',1981,NULL),(1056420,'Andrea Wortham',NULL,NULL),(1056741,'Suzanne Collins',1962,NULL),(1056756,'Rebecca Swan',NULL,NULL),(1056790,'Nicholas Aaron',NULL,NULL),(1057010,'Bart Ruspoli',1976,NULL),(1057135,'Maki Ishikawa',NULL,NULL),(10574081,'Andrew Barth Feldman',2002,NULL),(1057426,'Sean Eden',NULL,NULL),(1057429,'Hisashi Ezura',NULL,NULL),(1057590,'Michael Wimer',NULL,NULL),(1057666,'Paul Charlier',NULL,NULL),(1057723,'Ace Baandige',NULL,NULL),(1057727,'Roy Boulter',1964,NULL),(1057734,'Nancy Doyne',NULL,NULL),(1057737,'Elyse Friedman',NULL,NULL),(1057756,'Jimmy O\'Connor',1918,2001),(1057928,'Zoë Bell',1978,NULL),(1057932,'Jonathan Bennett',1981,NULL),(1058007,'Dragos Bucur',1977,NULL),(1058095,'Danielle C. Ryan',1993,NULL),(1058247,'Goran Dukic',NULL,NULL),(1058259,'G.J. Echternkamp',NULL,NULL),(1058415,'Ilyssa Goodman',NULL,NULL),(1058561,'Jan-Hung Mak',NULL,NULL),(1058565,'Hwang Jung-min',1970,NULL),(1058600,'Jed',1977,1995),(1058728,'Leena Koppe',NULL,NULL),(1058798,'Mikal P. Lazarev',NULL,NULL),(10588162,'Jordan Fudge',NULL,NULL),(1058851,'Josefina Lopez',1969,NULL),(1058940,'Scoot McNairy',1977,NULL),(1059148,'Cheol-min Park',1967,NULL),(10593697,'Mara Huf',NULL,NULL),(1059540,'Ben Sumpter',NULL,NULL),(1059740,'Parkpoom Wongpoom',1978,NULL),(1059821,'Kevin M. Brennan',NULL,NULL),(1060010,'Stuart Murdoch',1968,NULL),(1060164,'Jason James',NULL,NULL),(1060280,'Tony Bickley',NULL,1976),(1060386,'Joseph Hahn',1977,NULL),(1060418,'Goran Jevtic',1978,NULL),(1060557,'Mike Shinoda',1977,NULL),(1060633,'Sarah Bannier',1990,NULL),(1060641,'Sonja Bennett',1980,NULL),(1060691,'Caroline Fogarty',1974,NULL),(10607011,'Richard N. Roth',NULL,NULL),(1060902,'Gareth Unwin',NULL,NULL),(1060930,'Brandon Trost',1981,NULL),(1060971,'Sílvia Fraiha',NULL,NULL),(1060986,'Luis Prieto',NULL,NULL),(1061002,'Andre Fabrizio',NULL,NULL),(1061007,'Ulrike Kofler',NULL,NULL),(1061079,'Andrew Brenner',NULL,NULL),(1061091,'Josh Campbell',NULL,NULL),(10612592,'Burcu Oktav',NULL,NULL),(1061513,'Ángeles Castro',NULL,NULL),(1061561,'Oliver Neumann',NULL,NULL),(1061622,'Robert Carlock',NULL,NULL),(1061623,'Philippe Claudel',1962,NULL),(1061993,'Christoffer Boe',1974,NULL),(1062017,'Yangzom Brauen',1981,NULL),(10620978,'Sidney Flanigan',1998,NULL),(10622683,'Ugyen Norbu Lhendup',NULL,NULL),(10622687,'Sherab Dorji',NULL,NULL),(10622690,'Pem Zam',NULL,NULL),(10622692,'Kelden Lhamo Gurung',NULL,NULL),(1062366,'Ross Helford',NULL,NULL),(1062423,'Jae-eun Jeong',1969,NULL),(1062552,'Josef Lieck',NULL,NULL),(1062569,'Sílvia Lourenço',NULL,NULL),(1062747,'Ji-young Ok',1980,NULL),(1062814,'Arnaud Potier',NULL,NULL),(1062901,'Renato Sanjuán',NULL,NULL),(1062923,'Lorenzo Senatore',1974,NULL),(1063072,'Abbas Tyrewala',1984,NULL),(10633315,'Agathe Bosch',NULL,NULL),(1063422,'Laurence Saunders',NULL,NULL),(1063517,'Kathryn Hahn',1973,NULL),(10638041,'Jia Honglin',NULL,NULL),(1063878,'Walter Raney',1941,2021),(1064048,'Nikolaj Arcel',1972,NULL),(10640839,'Scott Wascha',NULL,NULL),(1064118,'Georges Arnaud',1917,1987),(1064292,'Craig Roberts',1991,NULL),(1064352,'Tracy Reed',1941,2012),(1064395,'Mauricio Vidal',NULL,NULL),(10645228,'Alison Peck',NULL,NULL),(1064646,'Jonas Alexander Arnby',1974,NULL),(1064746,'Alain Benguigui',NULL,NULL),(1064823,'Cayden Boyd',1994,NULL),(1064845,'Frédérique Broos',1970,NULL),(10648611,'Andrea Reuter',NULL,NULL),(1064900,'Tamzin Rafn',NULL,NULL),(1064987,'Lee Cormie',1992,NULL),(1065132,'John Stuart Dudley',1893,1966),(1065229,'America Ferrera',1984,NULL),(1065281,'Franky G',1965,NULL),(1065342,'Briar Grace Smith',NULL,NULL),(1065402,'Sanaa Hamri',NULL,NULL),(1065452,'Rasmus Heisterberg',1974,NULL),(1065484,'Peter Hinderthür',NULL,NULL),(1065486,'Takashi Hirano',NULL,NULL),(1065547,'Witi Ihimaera',1944,NULL),(10656367,'Zoey Luna',2001,NULL),(1065664,'Stana Katic',1978,NULL),(1065667,'David Katznelson',NULL,NULL),(1065700,'Jonathan Kim',1960,NULL),(10657198,'Austyn Tester',NULL,NULL),(1065734,'Eiko Koike',1980,NULL),(10657454,'Mia Isaac',NULL,NULL),(1065785,'Tony Kushner',1956,NULL),(1065829,'Hwang-rim Lee',NULL,NULL),(1065929,'Elyas M\'Barek',1982,NULL),(10660486,'Neil Young',NULL,NULL),(1066739,'Yukihiko Tsutsumi',1955,NULL),(1066773,'Mariano Vanhoof',1974,NULL),(10668488,'Claire Keegan',NULL,NULL),(1066940,'Alain de Botton',1969,NULL),(1066974,'Yû Aoi',1985,NULL),(1067289,'Stephen Rebello',NULL,NULL),(1067411,'Isabel Abreu',1978,NULL),(1067547,'Hye-ja Kim',1941,NULL),(1067699,'Eugenia Yuan',1976,NULL),(10677046,'Francisco Carvalho',NULL,NULL),(1067759,'Christopher N. Rowley',NULL,NULL),(1067779,'Brin Hill',NULL,NULL),(1067790,'Paulo Perez',NULL,NULL),(1067825,'John Swihart',NULL,NULL),(1067987,'Rick Dugdale',1977,NULL),(1068186,'M.J. Bassett',NULL,NULL),(10682430,'Luana Furquim',NULL,NULL),(10682431,'Andre Meirelles Collazzo',1975,NULL),(1068404,'Robert Wenzek',NULL,NULL),(1068424,'Garrett Lerner',1971,NULL),(1068488,'David Feeney',NULL,NULL),(10685524,'Euan Mason',NULL,NULL),(1068696,'Louis Bihi',NULL,NULL),(1068771,'Jérôme Brézillon',NULL,NULL),(1068980,'Jennifer Derwingson',NULL,NULL),(1069032,'Félicie Dutertre',NULL,NULL),(1069078,'Uwe Fahrenkrog-Petersen',1960,NULL),(10691419,'Hong Lu',NULL,NULL),(1069180,'Craig Gellis',1975,NULL),(1069264,'Ahmet Gülbay',NULL,NULL),(1069312,'Evan Helmuth',1977,2017),(1069370,'Morten Højbjerg',1975,NULL),(1069446,'Manesh Judge',NULL,NULL),(1069467,'Takatoshi Kaneko',1978,NULL),(1069518,'Soo-Ro Kim',1970,NULL),(10695425,'Eliot Salt',1994,NULL),(1069584,'Rie Kugimiya',1979,NULL),(1069736,'Kristie Macosko Krieger',NULL,NULL),(1069800,'Dominique McElligott',NULL,NULL),(1069858,'Sumiji Miyake',NULL,NULL),(1069908,'Karera Musication',NULL,NULL),(1069989,'Olatunde Osunsanmi',1977,NULL),(1070424,'Janet Tashjian',NULL,NULL),(1070494,'Satoshi Tsumabuki',1980,NULL),(1070602,'Franziska Weisz',1980,NULL),(10708849,'Issa Perica',NULL,NULL),(1070966,'Amanda Lewis',NULL,NULL),(10711801,'Bryan Mialoundama',NULL,NULL),(10712277,'Jane Patterson',NULL,NULL),(1071252,'Alexander Gould',1994,NULL),(10712924,'Steve Laughlin',NULL,NULL),(1071396,'Geoff Mosher',1976,NULL),(1071413,'Nao Ômori',1972,NULL),(1071849,'Stéphane Berla',1975,NULL),(1072273,'Georgie Nevile',NULL,NULL),(1072409,'Lee Eisenberg',NULL,NULL),(1072410,'Kevin Etten',NULL,NULL),(1072411,'Veronika Franz',1965,NULL),(1072425,'Jerry Spinelli',1941,NULL),(1072555,'Morena Baccarin',1979,NULL),(1072589,'Mary Pat Bentel',NULL,NULL),(1072713,'Anthony Cipriano',1975,NULL),(10727174,'Reneé Rapp',2000,NULL),(1072856,'Mark Fattibene',NULL,NULL),(1072959,'Gattlin Griffith',1998,NULL),(10731247,'Christina Jennings',NULL,NULL),(10731989,'Saba Zaidi Abdi',NULL,NULL),(1073238,'Matt Lieberman',NULL,NULL),(10735537,'Richard Aaron Anderson',NULL,NULL),(1073755,'Robert L. Tomlinson',NULL,NULL),(10738589,'Alyah Chanelle Scott',1997,NULL),(1073965,'Jon Sherman',NULL,NULL),(1073992,'Eve',1978,NULL),(10740307,'Taiki Akasaka',NULL,NULL),(1074107,'Robert Walker',1961,2015),(1074134,'Christopher Jenkins',NULL,NULL),(1074492,'Zoe Graham',1994,NULL),(1074508,'Amy Huberman',1979,NULL),(1074662,'Richard Brauer',NULL,NULL),(1074748,'Elliot M. Bour',1969,NULL),(1074857,'Chad Keith',NULL,NULL),(1075323,'Cesar Garcia',NULL,NULL),(1075459,'Bill Rogers',1974,NULL),(1075598,'James Griffith',NULL,NULL),(1075603,'David Garrett',1980,NULL),(1075630,'Béla Barsi',1967,NULL),(1075638,'Jake Roberts',1977,NULL),(1075721,'Mark Sult',NULL,NULL),(1075856,'Vladimir Anastasov',NULL,NULL),(1075976,'Bart the Bear',1977,2000),(1076060,'Artyom Bogucharskiy',1989,NULL),(1076294,'Angel Coulby',1980,NULL),(10765335,'Kíla Lord Cassidy',NULL,NULL),(1076710,'Hans Gunnarsson',1966,NULL),(1076716,'Tom Gustafson',NULL,NULL),(1076917,'Eric Jehelmann',NULL,NULL),(1076976,'Ryo Kase',1974,NULL),(1077107,'Kankurô Kudô',1970,NULL),(1077168,'Yann Samuell',1965,NULL),(1077275,'Julien Magnat',NULL,NULL),(1077357,'Kathleen McDermott',1977,NULL),(10774016,'Francisco Rebelo de Andrade',NULL,NULL),(1077445,'Raphaële Moussafir',1974,NULL),(1077598,'Iris Otten',NULL,NULL),(1077668,'Jason Pinardo',1975,NULL),(1078073,'Naoya Takayama',NULL,NULL),(1078308,'Myolie Wu',1979,NULL),(1078479,'John Cena',1977,NULL),(1078491,'Vladimir Chuprikov',1964,2020),(10785192,'Fedor Fedotov',NULL,NULL),(1078628,'Frédérique Bel',1975,NULL),(10787193,'Hul-sun Jeong',NULL,NULL),(10789215,'Witiyana Marika',NULL,NULL),(1078957,'Tom Comerford',NULL,NULL),(1078971,'Yaron Orbach',NULL,NULL),(1079001,'Eugenio Mira',1977,NULL),(1079062,'Oriol Paulo',1975,NULL),(10791266,'Maria Taylor',NULL,NULL),(10791512,'Lily Brooks-Dalton',NULL,NULL),(1079171,'Philippe Bony',NULL,NULL),(10792691,'André Guerra dos Santos',NULL,NULL),(1079275,'Lars Gustafson',1974,NULL),(1079559,'Billy Pollina',NULL,NULL),(1079776,'George Nolfi',NULL,NULL),(1079813,'Jonas Jägermeyr',1983,NULL),(1080144,'Leo Benvenuti',NULL,NULL),(1080214,'Dean Andrews',1963,NULL),(1080320,'Linda Hardy',1973,NULL),(1080440,'Rob Cotterill',1971,NULL),(10806370,'Piyush Shankar',NULL,NULL),(10808267,'Bob Degen',NULL,NULL),(1080974,'Cameron Bright',1993,NULL),(10810831,'Philippine Velge',NULL,NULL),(1081121,'Vincent Ebrahim',1951,NULL),(10812411,'Robert Lazar',NULL,NULL),(1081257,'Esther Garrel',1991,NULL),(1081479,'Hidehiko Ishikura',NULL,NULL),(1081521,'Lars Jessen',1969,NULL),(1081550,'Tearepa Kahi',NULL,NULL),(10815668,'Tommy Garside',NULL,NULL),(1081566,'Akilas Karazisis',1957,NULL),(1081573,'Philippe Katerine',1968,NULL),(1081677,'Jimmy Lagnefors',NULL,NULL),(1081893,'Kresimir Mikic',1974,NULL),(1081920,'Laura Monaghan',1990,NULL),(1081983,'Menzi Ngubane',1964,2021),(1081992,'Kazushige Nojima',1964,NULL),(1082266,'Everlyn Sampi',1988,NULL),(1082270,'Tianna Sansbury',1992,NULL),(1082324,'Theo Sena',1976,NULL),(1082471,'Michihiko Suwa',NULL,NULL),(1082477,'Omar Sy',1978,NULL),(1082514,'Loan Thach',NULL,NULL),(1082606,'Jay Van Hoy',NULL,NULL),(1082616,'George VanBuskirk',1971,NULL),(1082643,'Thomas Townend',NULL,NULL),(1082685,'Lizzy Weiss',1971,NULL),(10827638,'Jack Fincher',1930,2003),(1082823,'Eric Bauza',1979,NULL),(1083220,'Julia Braams',NULL,NULL),(1083271,'Megan Fox',1986,NULL),(10833194,'Tobias Dirks',NULL,NULL),(1083489,'Kevin Munroe',NULL,NULL),(1083540,'Jason Stone',1981,NULL),(1083610,'Jay Lender',1969,NULL),(1083844,'Tom Magill',NULL,NULL),(1083857,'Claire Mathon',1975,NULL),(1083982,'Andy Weir',1972,NULL),(10840078,'Valeriia Karaman',1994,NULL),(1084360,'David Robinson',NULL,NULL),(1084385,'Seiji Okuda',NULL,NULL),(10844161,'Michael Keenan',NULL,NULL),(1084553,'Sarala Kariyawasam',1996,NULL),(1084584,'Doug Chamberlain',1973,NULL),(1084615,'Jake Abraham',NULL,NULL),(1084708,'Jeffrey Vance',1970,NULL),(1084853,'Allu Arjun',1983,NULL),(1084937,'Luiso Berdejo',1975,NULL),(1085024,'Peter Brötzmann',1941,2023),(1085025,'Trevor Jack Brooks',NULL,NULL),(10850823,'Hamza Al-Khateab',NULL,NULL),(1085134,'Neels Clasen',1977,NULL),(1085170,'Stefano Cravero',1977,NULL),(1085215,'Rob Dawber',1956,2001),(10854148,'Guruwuk Mununggurr',NULL,NULL),(10854149,'Wakarra Gondarra',NULL,NULL),(10854150,'Mark Garrawurra',NULL,NULL),(10854151,'Neville Namarnyilk',NULL,NULL),(1085510,'Benjamin Guedj',NULL,NULL),(1085511,'Rodrigo Guerrero',1975,NULL),(1085757,'Casper Kelly',NULL,NULL),(10858541,'Ryan Jack Connell',NULL,NULL),(1085861,'Sang-woo Kwon',1976,NULL),(1085908,'Hwan-kyung Lee',NULL,NULL),(1085924,'Sébastien K. Lemercier',NULL,NULL),(1085933,'Nancy Leopardi',NULL,NULL),(1085951,'Lorelei Linklater',1994,NULL),(10861082,'Armando Teixeira',NULL,NULL),(1086113,'Risa Mickenberg',NULL,NULL),(1086151,'Mark Molesworth',NULL,NULL),(1086155,'Katharine Montagu',NULL,NULL),(1086175,'Hristo Mutafchiev',1969,NULL),(1086342,'Mirko Pivcevic',NULL,NULL),(1086346,'Sarah Plant',NULL,NULL),(1086384,'Lou Taylor Pucci',NULL,NULL),(1086483,'Salli Saffioti',NULL,NULL),(1086537,'Dong-heon Seo',NULL,NULL),(1086543,'Amanda Seyfried',1985,NULL),(1086555,'Shin Min-a',1984,NULL),(1086656,'Arnaud Stefani',NULL,NULL),(1086687,'Masanobu Takayanagi',NULL,NULL),(10867068,'Dane DiLiegro',NULL,NULL),(1086956,'Gustave Kervern',1962,NULL),(1086981,'Josef Altin',1983,NULL),(1087085,'Jerry Eeten',NULL,NULL),(1087183,'Cung Le',1972,NULL),(1087290,'Dominic Rickhards',NULL,NULL),(1087375,'Robin Bain',NULL,NULL),(1087430,'Julia Dietze',1981,NULL),(1087719,'Óscar Durán',NULL,NULL),(1087760,'Michael Picton',NULL,NULL),(1087791,'Christopher Gotschall',NULL,NULL),(1087798,'Shinichi Kobayashi',NULL,NULL),(1087819,'Hiroshi Okuda',NULL,NULL),(1087822,'José Tito Martínez',NULL,NULL),(10878502,'Ivan Illich',NULL,NULL),(1087952,'Dan Hageman',1976,NULL),(10879834,'Mtjj',NULL,NULL),(10879835,'Fangbing Cong',NULL,NULL),(10879836,'Wenzhuo Ma',NULL,NULL),(1088052,'Aaron Ruell',1976,NULL),(10880783,'Krrish Patel',NULL,NULL),(1088124,'Bernard Maurice',1925,1990),(10881822,'Griffin Murray-Johnston',NULL,NULL),(10882009,'Zina Tamoyan',NULL,NULL),(1088323,'Wallace Terry',1938,2003),(10884379,'Sama Al-Khateab',NULL,NULL),(1088549,'Hugh McLean',1954,2013),(10887693,'Rebecca Ewing',NULL,NULL),(10888440,'Hao Feng',NULL,NULL),(1088848,'Bill Block',NULL,NULL),(1088868,'Gary Wheeler',NULL,NULL),(1088871,'Fred Andrews',NULL,NULL),(1089136,'Karin Bertling',1937,NULL),(1089247,'Kipleigh Brown',NULL,NULL),(1089323,'Babloo Chakravorty',NULL,NULL),(1089325,'Munro Chambers',1990,NULL),(10893291,'Kim Guk-Hee',NULL,NULL),(10893544,'Brent Dillon',NULL,NULL),(1089417,'Lavell Crawford',1968,NULL),(1089472,'Terence Daw',NULL,NULL),(1089476,'Adam De La Peña',NULL,NULL),(10895278,'Nana Iloyan',NULL,NULL),(1089569,'Rebecca Drysdale',NULL,NULL),(1089685,'Vanessa Ferlito',1977,NULL),(10897226,'Anthea Bell',1936,2018),(1089736,'Toa Fraser',NULL,NULL),(1089831,'Joan Ginard',NULL,NULL),(1089840,'Glen-Paul Waru',NULL,NULL),(1089900,'Martina Gusmán',1978,NULL),(1089985,'Gábor Herendi',1960,NULL),(1089991,'Tom Hiddleston',1981,NULL),(1090206,'Carolin Kebekus',1980,NULL),(1090216,'Elza Kephart',1976,NULL),(10903036,'Jean Hinchliffe',NULL,NULL),(1090337,'Sergio Kurosawa',NULL,NULL),(10903961,'A Winged Victory for the Sullen',NULL,NULL),(1090408,'Seong-gang Lee',1962,NULL),(1090576,'Max Mauff',1987,NULL),(1090930,'Nathaniel Philbrick',NULL,NULL),(10909656,'Jocelyn Charles',NULL,NULL),(1090994,'Jesse Prupas',1978,NULL),(1090998,'Cristi Puiu',1967,NULL),(10910136,'Alan Kim',2012,NULL),(10910825,'Fantom',NULL,NULL),(1091125,'Mikel Salas',NULL,NULL),(1091140,'Aislinn Sands',NULL,NULL),(10911810,'Juan Maria Stadler',NULL,NULL),(1091185,'Hinnerk Schönemann',1974,NULL),(10916154,'Madison Ingoldsby',NULL,NULL),(1091621,'Virginie Le Brun',1980,NULL),(1091670,'C.J. Wallis',1981,NULL),(1091701,'Denzel Whitaker',1990,NULL),(1091782,'Ye Liu',1978,NULL),(1091878,'Ivan Barnev',1973,NULL),(10918971,'Alessio Vicenzotto',NULL,NULL),(1092086,'David Harbour',1975,NULL),(1092087,'Sam Hargrave',NULL,NULL),(1092227,'Sienna Miller',1981,NULL),(1092332,'David Del Rio',NULL,NULL),(1092414,'Dávid Szabó',1985,NULL),(10925386,'Vrund Rao',NULL,NULL),(10925785,'Ved Rao',NULL,NULL),(10925786,'Abigail Adriano',NULL,NULL),(10925787,'Nya Cofie',NULL,NULL),(1092751,'Amy Parks',NULL,NULL),(1092952,'Ken Seng',NULL,NULL),(1092981,'Yorihiro Ike',NULL,NULL),(1093036,'Anita Doron',1974,NULL),(1093039,'Mike Flanagan',1978,NULL),(1093053,'Brian Percival',NULL,NULL),(10931593,'Flaka Latifi',NULL,NULL),(1093317,'E.L. James',1963,NULL),(1093515,'Eric Karten',NULL,NULL),(1093541,'Kevin Sampson',NULL,NULL),(10935584,'A\'Ziah King',NULL,NULL),(1093570,'Seth Caplan',NULL,NULL),(1093856,'Assi Cohen',1974,NULL),(10939092,'Galymzhan Moldanazar',NULL,NULL),(1093951,'Aaron Taylor-Johnson',1990,NULL),(1094112,'Ruth Bradley',1987,NULL),(1094137,'Molly Gordon',1994,NULL),(10942337,'Noel Cho',NULL,NULL),(10942842,'Mai Cát Vi',NULL,NULL),(10943269,'Valentina Dubina',NULL,NULL),(1094495,'William Green',NULL,NULL),(1094560,'Nick Phillips',1973,NULL),(10948764,'Elmira Arustamyan',NULL,NULL),(1094877,'Guri Alfi',1976,NULL),(1095060,'Sam Bain',1971,NULL),(1095164,'Tobi Baumann',1974,NULL),(1095201,'Louis Begley',1933,NULL),(1095487,'John Brawley',1973,NULL),(1095510,'Iafa Britz',NULL,NULL),(10956648,'Kexin Peng',NULL,NULL),(1095720,'Keisha Castle-Hughes',1990,NULL),(10957422,'Lana Lopes',NULL,NULL),(10957423,'Raíssa Lopes',NULL,NULL),(1095780,'Nicolas Chaudeurge',NULL,NULL),(1095804,'Peter Chiarelli',1974,NULL),(1095808,'Yutaka Chikura',NULL,NULL),(1095937,'Merlin Eden',NULL,NULL),(1095938,'Andrea Cornwell',NULL,NULL),(10961397,'Piers Garland',NULL,NULL),(10963043,'Stephen Israel',NULL,NULL),(1096524,'Jacob Estes',1972,NULL),(1096719,'Peter Friedlander',NULL,NULL),(1097034,'Max Guefen',NULL,NULL),(1097137,'Hikaru Hanada',NULL,NULL),(1097178,'Anuradha Hasan',NULL,NULL),(1097276,'Lee Hirsch',NULL,NULL),(10974306,'Barbara Mueller',NULL,NULL),(10974307,'Kim Dekker',NULL,NULL),(1097451,'Yûji Ishida',NULL,NULL),(1097510,'Anthony Jaswinski',NULL,NULL),(1097571,'Brand Jordaan',NULL,NULL),(1097615,'Duma Ka Ndlovu',NULL,NULL),(1097667,'Kazuki Kaneshiro',NULL,NULL),(10977117,'Annick Lavieville',NULL,NULL),(10977118,'Justine Herbez',NULL,NULL),(10977119,'Benoît Robail',NULL,NULL),(1097739,'Kiyohiko Shibukawa',1974,NULL),(1097895,'Kerry Kohansky-Roberts',NULL,NULL),(1098024,'Axel Kuschevatzky',1972,NULL),(1098114,'Storm Large',1969,NULL),(1098137,'Romaric Laurence',NULL,NULL),(1098167,'Ivan Leathers',NULL,NULL),(1098358,'Yolanda López Moctezuma',NULL,NULL),(1098403,'Vusi Mahlasela',NULL,NULL),(1098479,'Justin Marks',1980,NULL),(1098492,'Andreas Marschall',NULL,NULL),(1098493,'Rawson Marshall Thurber',1975,NULL),(1098638,'Joe Mellis',NULL,NULL),(1098819,'Coco Moodysson',1970,NULL),(1098869,'Stéphane Moucha',NULL,NULL),(1098908,'Kelvin Munro',NULL,NULL),(1098947,'Bibi Naceri',NULL,NULL),(10990529,'Shu Ya Xin',NULL,NULL),(1099067,'Flemming Nordkrog',1972,NULL),(1099128,'Andrew Ogilvie',NULL,NULL),(1099162,'Dione Orrom',NULL,NULL),(1099188,'Julian Ovenden',1976,NULL),(1099225,'Sol Papadopoulos',NULL,NULL),(1099235,'Sheena Parikh',NULL,NULL),(1099296,'Lars Andreas Pedersen',1971,NULL),(1099514,'Philip Pullman',1946,NULL),(1099597,'Radha Ravi',NULL,NULL),(1099640,'Yannick Renier',1975,NULL),(1099660,'Sascha Rice',NULL,NULL),(10996817,'Thalita Machado',NULL,NULL),(1099684,'Béla Rigó',1942,2017),(1099781,'Michael Roy',NULL,NULL),(1099824,'Clive Sackie',NULL,NULL),(10998463,'Carolina Nishikubo',NULL,NULL),(1099918,'Jeremy Saulnier',1976,NULL),(1100076,'Guy Shalem',1973,NULL),(1100123,'Joe Shrapnel',1976,NULL),(1100217,'Richie Smyth',NULL,NULL),(1100261,'Hadrien Soulez Larivière',NULL,NULL),(1100344,'Andro Steinborn',1968,NULL),(1100497,'Ken\'ichi Takeshita',NULL,NULL),(1100740,'François Tusques',NULL,NULL),(1100839,'Sofia Vassilieva',1992,NULL),(11008562,'Miku Martineau',2004,NULL),(1100912,'Rich Vos',1957,NULL),(1101310,'Jackie van Beek',NULL,NULL),(1101332,'Josefin Åsberg',NULL,NULL),(1101381,'Ash Christian',1985,2020),(11015598,'Grandbrothers',NULL,NULL),(1101630,'Dave Eggers',1970,NULL),(1101677,'Jun Fukuyama',1978,NULL),(1101712,'Ira Glass',1959,NULL),(1101713,'Eric Godon',1959,NULL),(1101752,'Ross Harper',NULL,NULL),(1101768,'Stephen Heskett',1976,NULL),(1101793,'Terry Ito',1949,NULL),(1101904,'Brian Letscher',1972,NULL),(11019861,'Ufotable',NULL,NULL),(11019869,'Fahim Mohammad',2000,NULL),(1102053,'Mitchel Musso',1991,NULL),(1102140,'Josh Radnor',1974,NULL),(1102191,'Takumi Saitô',1981,NULL),(11023968,'Laura Fischer',NULL,NULL),(1102577,'Elle Fanning',1998,NULL),(1102709,'Rain Li',1983,NULL),(11027502,'John Wolfe',NULL,NULL),(1102891,'Kristen Schaal',1978,NULL),(1102932,'Ellen Marano',NULL,NULL),(11029354,'Paul Glass',1934,NULL),(1102970,'Sarah Vowell',1969,NULL),(1102991,'Gabrielle Witcher',NULL,NULL),(1103123,'Marcelo Gomes',1963,NULL),(1103162,'Tim Story',1970,NULL),(1103210,'Gonzalo Amat',NULL,NULL),(11032545,'Caoilinn Springall',NULL,NULL),(1103326,'Matt Eddy',NULL,NULL),(1103355,'Dave Garbett',NULL,NULL),(1103398,'Steve Hutensky',NULL,NULL),(1103466,'Andrew Lowe',NULL,NULL),(1103518,'Mark Monheim',1977,NULL),(1103781,'Arnold Messer',NULL,NULL),(1103800,'Chandra Simon',NULL,NULL),(1104036,'Jesse Armstrong',1970,NULL),(1104057,'Adam F. Goldberg',1976,NULL),(1104077,'Feng Li',NULL,NULL),(1104118,'Kim Ki-duk',1960,2020),(1104170,'Jeffrey Sharp',NULL,NULL),(11042323,'Elly Curtis',NULL,NULL),(1104499,'Sarah Brown',NULL,NULL),(11045207,'Brecht Ameel',NULL,NULL),(1104594,'Kin-Yee Au',NULL,NULL),(1104637,'Jammes Luckett',NULL,NULL),(11046604,'Arsenio Castellanos',1990,NULL),(1104715,'Philipp Blaubach',NULL,NULL),(1104850,'Harris Charalambous',NULL,NULL),(1104944,'Heitor Dhalia',1970,NULL),(1105000,'Manon Dillys',NULL,NULL),(11050600,'Achref Adhadi',NULL,NULL),(11050602,'Anitsh Brape',NULL,NULL),(11050604,'Fatima Yamaha',NULL,NULL),(1105261,'Glenn Gregory',1958,NULL),(1105392,'Róbert Hrutka',1967,NULL),(11054570,'Mohammad Asarian',NULL,NULL),(1105617,'Jacob Koskoff',NULL,NULL),(1105713,'Matti Leshem',1963,NULL),(1105901,'Akira Mitake',NULL,NULL),(1105980,'Kathryn Newton',NULL,NULL),(1106082,'Adam Pava',NULL,NULL),(11061034,'Philemon Chambers',1994,NULL),(1106214,'Erica Rivinoja',NULL,NULL),(11064993,'Bernie Tarin',NULL,NULL),(1106551,'Irène Tostar',NULL,NULL),(1106656,'Jörg Westerkamp',NULL,NULL),(1106944,'Kris Hitchen',1974,NULL),(1106990,'Yehuda Levi',1979,NULL),(1107001,'Anthony Mackie',1978,NULL),(1107127,'Reece Thompson',1988,NULL),(1107138,'Mariano Venancio',1947,NULL),(11073859,'Jonathan Miralda',NULL,NULL),(1107639,'Matt Venne',1974,NULL),(11078666,'Brooklyn Doomadgee',NULL,NULL),(11078667,'Helena Johnson',NULL,NULL),(11078668,'Antonio Tipiloura',NULL,NULL),(1107894,'Sivakumar',1941,NULL),(1108007,'David Lowery',1980,NULL),(1108014,'Simon Niblett',NULL,NULL),(1108134,'Jim McMahon',NULL,NULL),(11082788,'Li Wei',NULL,NULL),(1108327,'Gôshô Aoyama',1963,NULL),(1108384,'Winston Azzopardi',NULL,NULL),(11084456,'Laurent Kumba',NULL,NULL),(1108556,'Boots Riley',1971,NULL),(1108647,'Andrei Butica',1979,NULL),(11086888,'Jorge Soto Marin',NULL,NULL),(1108811,'Graham Collins',NULL,NULL),(1108879,'James Paul Dallas',NULL,NULL),(1108946,'Jean des Forêts',1976,NULL),(1109088,'Adam F.',1972,NULL),(1109153,'Audrey Fleurot',1977,NULL),(1109481,'Mark Hodkinson',NULL,NULL),(11097119,'Iman Boujelouah',NULL,NULL),(1109748,'Ryûto Kondô',NULL,NULL),(11099905,'Sara Gay Forden',NULL,NULL),(1110111,'Tony McNamara',NULL,NULL),(1110123,'Soham Mehta',NULL,NULL),(11101448,'Kei Gambit',NULL,NULL),(1110306,'Charlie Nguyen',NULL,NULL),(1110435,'Ray Panthaki',NULL,NULL),(1110844,'Hannah Shakespeare',NULL,NULL),(11111365,'Farouk Laâridh',NULL,NULL),(1111796,'Canyon Prince',1977,NULL),(1111968,'Alexa Davalos',1982,NULL),(1112145,'Mika Tard',1976,NULL),(1112328,'Antony Burrows',NULL,NULL),(11125041,'Logan Hawkes',NULL,NULL),(1112550,'Kevin Noel',NULL,NULL),(1112597,'Mitch Rotter',NULL,NULL),(11127862,'Alfonso Arfi',NULL,NULL),(1112850,'Frederick Opper',1857,1937),(1112923,'Ron Schmidt',NULL,NULL),(1113003,'Steve Rodgers',NULL,NULL),(1113283,'Alan Reynolds',NULL,NULL),(1113287,'William Wells',NULL,NULL),(1113539,'Katy Brand',1979,NULL),(1113550,'Abigail Breslin',1996,NULL),(1113773,'Patch Darragh',NULL,NULL),(1113827,'Suzanne Dolan',NULL,NULL),(1114006,'Rainer Frimmel',1971,NULL),(1114104,'Stephen Greenhorn',1964,NULL),(1114974,'Christina Piovesan',NULL,NULL),(1115009,'Mariya Poroshina',1973,NULL),(1115070,'Yoruba Richen',NULL,NULL),(1115084,'Kati Rocky',NULL,NULL),(1115123,'Sharon Rutter',1966,NULL),(11153022,'Alys Murray',NULL,NULL),(11156289,'Richard Crouchley',NULL,NULL),(1115862,'David Guion',NULL,NULL),(11158936,'Robert Jones',NULL,NULL),(1115899,'Tsuyoshi Koyama',NULL,NULL),(11163268,'Alán Uribe',NULL,NULL),(1116340,'Charles Spano',NULL,NULL),(1116454,'Kirke Godfrey',NULL,NULL),(1116647,'Martin Richter',NULL,NULL),(1116657,'Toshirô Uratani',NULL,NULL),(1116660,'Paul Wernick',NULL,NULL),(1116805,'Nick Meyers',NULL,NULL),(1116906,'Yeong-cheol Kim',1953,NULL),(1116986,'Paul Young',NULL,NULL),(1117076,'Richard Lopez',NULL,NULL),(1117085,'James O\'Brien',NULL,NULL),(1117098,'David Nixon',NULL,NULL),(1117226,'Tom Wheeler',NULL,NULL),(1117334,'Krasimir Andonov',NULL,NULL),(1117383,'Mila Aung-Thwin',NULL,NULL),(1117581,'Nicolas Brevière',NULL,NULL),(1117644,'Robin Calvert',NULL,NULL),(1117791,'Rob Corddry',1971,NULL),(1118078,'Hélène Florent',NULL,NULL),(1118126,'Damir Gabelica',NULL,NULL),(1118181,'Franz-Olivier Giesbert',1949,NULL),(1118351,'Jalmari Helander',1976,NULL),(1118352,'Juuso Helander',1979,NULL),(1118378,'Saeko Himuro',1957,2008),(1118528,'Laura Kachergus',NULL,NULL),(1118621,'Kim Sung-ryung',1967,NULL),(1118632,'Kenta Kiritani',1980,NULL),(1118769,'Pierre-Ange Le Pogam',1955,NULL),(11187715,'Julián Giraldo',NULL,NULL),(1118858,'Cheri Lovedog',1958,NULL),(1119079,'Tomm Moore',1977,NULL),(1119099,'Brendan Muldowney',NULL,NULL),(1119144,'Olga Neuwirth',1968,NULL),(1119340,'Kristoffer Polaha',NULL,NULL),(1119462,'Amanda Righetti',1983,NULL),(1119478,'Benjamin Rocher',NULL,NULL),(1119558,'Pernilla Sandström',NULL,NULL),(1119610,'Diarmid Scrimshaw',NULL,NULL),(1119645,'Lynn Shelton',1965,2020),(1119778,'Norihito Sumitomo',1964,NULL),(11198161,'Kalliane Brémault',NULL,NULL),(1119880,'Colin Trevorrow',1976,NULL),(1120024,'Robin Shushan',NULL,NULL),(1120067,'Kikumi Yamagishi',NULL,NULL),(1120076,'Michael Yezerski',NULL,NULL),(1120092,'Jasmila Zbanic',1974,NULL),(11202882,'Katherine Crownover',NULL,NULL),(1120335,'Jeong-hak Kim',NULL,NULL),(1120593,'Emily Barclay',1984,NULL),(1120597,'Maria João Bastos',1975,NULL),(1120640,'Michelle Damato',NULL,NULL),(1120797,'Cindy Sampson',1978,NULL),(1120895,'John McPhillips',NULL,NULL),(1121047,'Rupert Hall',NULL,NULL),(1121126,'Rachel Morrison',1978,NULL),(1121207,'Hunter M. Via',1976,NULL),(11212108,'Chris Parker',NULL,NULL),(1121230,'Trish Dolman',NULL,NULL),(1121232,'Steven Elliot',NULL,NULL),(1121472,'Matt Patterson',NULL,NULL),(1121600,'Olivia Ruiz',1980,NULL),(1121649,'Brad Jones',1981,NULL),(1121703,'Ken Miller',NULL,NULL),(1122053,'Natasha Cashman',NULL,NULL),(1122136,'Arijana Culina',1965,NULL),(11222310,'Jean La Planche',NULL,NULL),(1122260,'Fredrik Emilson',1971,NULL),(1122344,'Mary Gaitskill',NULL,NULL),(11224439,'Jingjing Shen',NULL,NULL),(11227603,'Jarrett Bruno',NULL,NULL),(1122912,'Kumud Mishra',NULL,NULL),(1122924,'Nadia Moidu',1966,NULL),(1122978,'Gustin Nash',NULL,NULL),(1123476,'Megumi Toyoguchi',1978,NULL),(1123709,'Ryan Bingham',1981,NULL),(1123929,'Tore Renberg',1972,NULL),(1123941,'Shô Sakurai',1982,NULL),(1123994,'James A. Woods',1979,NULL),(1124112,'Yuki Matsuoka',1970,NULL),(1124307,'Christopher Doll',1976,NULL),(11243726,'Mesfin Lamengo',NULL,NULL),(1124448,'Lloyd Taylor',NULL,NULL),(1124723,'Henry Phillips',NULL,NULL),(1124747,'Christian Taylor',NULL,NULL),(1124802,'Laurie Rose',NULL,NULL),(1124841,'Fernando Loureiro',NULL,NULL),(1124861,'Adam Neal Smith',NULL,NULL),(11248754,'Jérôme Tagher',NULL,NULL),(11249900,'Karam Taher',2004,NULL),(11249901,'Tala Gammoh',NULL,NULL),(1124997,'John Jacobs',NULL,NULL),(1125049,'Virgil Williams',NULL,NULL),(1125169,'Assassin',NULL,NULL),(1125275,'David Benioff',1970,NULL),(1125328,'Carter Blanchard',NULL,NULL),(1125431,'Brian Burgoyne',NULL,NULL),(1125508,'Conroy Chi-Chung Chan',1972,NULL),(1125745,'Justin Dix',1968,NULL),(1125878,'John Lloyd Fillingham',NULL,NULL),(11259677,'Dilara Foscht',NULL,NULL),(1126068,'Meghna Gulzar',1973,NULL),(11261632,'Dana Kippel',NULL,NULL),(1126318,'Jo Joyner',1977,NULL),(1126340,'Ryunosuke Kamiki',1993,NULL),(1126346,'Wych Kaosayananda',1974,NULL),(1126641,'Masiela Lusha',1985,NULL),(1126657,'George MacKay',1992,NULL),(1126792,'Agnès Mentre',NULL,NULL),(1126808,'Jules Michelet',1798,1874),(1126978,'Yô Ôizumi',1973,NULL),(1127138,'Ula Pontikos',NULL,NULL),(11271463,'Elena Bedovik',NULL,NULL),(1127221,'Stan Redding',NULL,NULL),(1127397,'Lucilla Schiaffino',NULL,NULL),(1127398,'Benedikt Schiefer',1978,NULL),(1127479,'Aldo Shllaku',NULL,NULL),(1127536,'Ada Solomon',1968,NULL),(1127632,'Spencer Susser',NULL,NULL),(1127645,'Judit Szántó',1932,2016),(1127653,'Massy Tadjedin',NULL,NULL),(11278933,'Yakini Kalid',NULL,NULL),(11278934,'Nã Maranhão',NULL,NULL),(11278935,'Camila Gaglianone',NULL,NULL),(1128037,'Ruben Östlund',1974,NULL),(1128050,'Chris Addison',1971,NULL),(11281945,'Charlie Bryant',1989,NULL),(1128216,'David Gobble',NULL,NULL),(1128479,'Peter Sterling',NULL,NULL),(1128572,'Lake Bell',1979,NULL),(1128574,'Laura Benanti',1979,NULL),(11287181,'Jack Cruz',NULL,NULL),(11287182,'Toototabon',NULL,NULL),(11288398,'Mandine Knoepfel',NULL,NULL),(1128842,'Joey Santiago',NULL,NULL),(1129264,'Laura Bosio',NULL,NULL),(1129289,'Adam Shaw',NULL,NULL),(1129502,'Jason Newmark',NULL,NULL),(1129522,'Alex Ferguson',NULL,NULL),(1129570,'Ozzie Areu',NULL,NULL),(11296384,'Kevin Salwen',NULL,NULL),(1129753,'J.J. Connolly',NULL,NULL),(1129781,'Anny Danché',NULL,NULL),(1129884,'Leandro Firmino',1978,NULL),(1129905,'Billy Frolick',1959,NULL),(1129962,'Cori Gonzalez-Macuer',NULL,NULL),(1130046,'Hayato Ichihara',1987,NULL),(1130128,'Rick Knutsen',NULL,NULL),(1130251,'Bráulio Mantovani',NULL,NULL),(1130275,'Nicholas McCarthy',NULL,NULL),(1130277,'Charlotte McDougall',NULL,NULL),(1130496,'Alysia Reiner',NULL,NULL),(1130529,'Aaron Rottinghaus',NULL,NULL),(1130536,'Zack Ryan',1979,NULL),(1130574,'Jason S.',NULL,NULL),(1130610,'Darlan Cunha',1988,NULL),(1130617,'Wesley Singerman',1990,NULL),(1130627,'Cobie Smulders',1982,NULL),(11306825,'Moon Yang Kwon',NULL,NULL),(1130708,'Juliette Towhidi',NULL,NULL),(1130728,'Misty Upham',1982,2014),(1130969,'Vin Knight',NULL,NULL),(1131306,'Jason Faller',NULL,NULL),(1131417,'Diane Houslin',NULL,NULL),(1131557,'Matthew Gray Gubler',1980,NULL),(1131627,'Karen Taylor',1976,NULL),(1131680,'James Tucker',NULL,NULL),(11317916,'Seok-ho Shin',NULL,NULL),(11317917,'Seong-guk Ha',NULL,NULL),(1131817,'Maxime Alexandre',NULL,NULL),(1131918,'Clelio Benevento',1975,NULL),(1131943,'Johannes Björk',1971,NULL),(1132005,'Magnus Börjeson',1967,NULL),(1132022,'Jeff Cardoni',NULL,NULL),(11320316,'Thomas Savage',NULL,NULL),(1132222,'Anton Ernst',NULL,NULL),(11323314,'Tom Rose',NULL,NULL),(1132350,'William Goodrum',NULL,NULL),(1132359,'Summer Glau',1981,NULL),(1132378,'Thomas Grézaud',NULL,NULL),(1132447,'Julien Hervé',NULL,NULL),(11324875,'Charlie Pye Jr.',NULL,NULL),(1132563,'Alexis Kavyrchine',NULL,NULL),(1132576,'Ed King',1974,NULL),(1132610,'Andrew Kreisberg',1971,NULL),(1132619,'Osamu Kubota',NULL,NULL),(1132640,'Todd J. Labarowski',1969,NULL),(1132783,'Naaman Marshall',NULL,NULL),(1132887,'Janaína Kremer Motta',NULL,NULL),(1133009,'Sanna Persson',1974,NULL),(1133048,'Aisha Prigann',NULL,NULL),(1133158,'Naomi Scott',NULL,NULL),(1133509,'Esther Wurmfeld',1914,2004),(1133525,'Yann Zenou',NULL,NULL),(1133610,'Colin Clark',1932,2002),(1133651,'Ben Feldman',1980,NULL),(1133714,'Ewen MacIntosh',1973,NULL),(1133719,'Steve Mallory',1968,NULL),(11337981,'Goldenite',NULL,NULL),(1133857,'Rosie Day',1995,NULL),(1133968,'Elisabeth Perez',NULL,NULL),(1134029,'Garth Jennings',1972,NULL),(1134107,'Frank Evers',NULL,NULL),(1134130,'Gavin Heffernan',1980,NULL),(1134158,'Petra Korner',NULL,NULL),(1134222,'Jason Reisig',1970,NULL),(1134439,'Emma Booth',1982,NULL),(1134445,'Joan Gardner',1926,1992),(11344535,'Dylan Scott',NULL,NULL),(11344536,'Romain Soubes-Goldman',NULL,NULL),(11344537,'Ruben Rescorle',NULL,NULL),(11344538,'Katie Bagshaw',NULL,NULL),(11344539,'Oscar Topliss',NULL,NULL),(1134590,'Lee Martin',NULL,NULL),(1134612,'Michael Mosley',1978,NULL),(1134619,'Tom O\'Sullivan',NULL,NULL),(1134641,'David Clayton Rogers',1977,NULL),(1134771,'Rob Hardy',NULL,NULL),(11347951,'Lucas Read',NULL,NULL),(11347952,'Oscar Mather',NULL,NULL),(1134813,'Jeff Morris',NULL,NULL),(1135022,'Joe Johnson',NULL,NULL),(11351658,'Caz Scott',NULL,NULL),(1135198,'Christophe Audeguis',NULL,NULL),(11352726,'Matt Salmon',NULL,NULL),(11352727,'James Banks',NULL,NULL),(11352728,'Domeniks Bunts',NULL,NULL),(11352729,'John Yao',NULL,NULL),(11352730,'Mats Sørum',NULL,NULL),(1135329,'Natalia Beristain',NULL,NULL),(1135398,'Ino Bonello',NULL,NULL),(1135423,'Darren Lynn Bousman',1979,NULL),(1135500,'Lennie Burmeister',NULL,NULL),(1135665,'Renaud Chélélékian',NULL,NULL),(1135679,'Hair Coat',NULL,NULL),(1135983,'Fil Eisler',NULL,NULL),(11361245,'Jens Jørgen Fleischer',NULL,NULL),(1136144,'Giichi Fujimoto',1933,NULL),(1136150,'Minoru Furuya',NULL,NULL),(1136185,'Laure Gardette',NULL,NULL),(1136257,'Mark Godden',NULL,NULL),(1136263,'Adriano Goldman',NULL,NULL),(11363348,'Dimosthenis Papamarkos',NULL,NULL),(1136388,'Frank Hammitt',NULL,1903),(1136429,'Mylaine Hedreul',1987,NULL),(1136468,'Parts His Hair',NULL,NULL),(1136495,'Last Horse',NULL,NULL),(1136647,'Doug Jung',NULL,NULL),(1136985,'Jae-sun Lee',NULL,NULL),(1137028,'Elyse Levesque',1985,NULL),(1137048,'Jin-gyu Lim',NULL,NULL),(11370683,'Xavier Parmentier',1963,2016),(11370684,'Sophie Le Callennec',NULL,NULL),(1137209,'Tatiana Maslany',1985,NULL),(1137219,'Taiyô Matsumoto',NULL,NULL),(1137264,'Glenn McQuaid',1973,NULL),(1137414,'Liliana Mumy',1994,NULL),(1137610,'Stéphanie Papanian',NULL,NULL),(1138028,'J. Peter Schwalm',NULL,NULL),(1138201,'Jae-ho Song',1937,2020),(1138306,'Danny Swerdlow',NULL,NULL),(1138368,'Darran Tiernan',NULL,NULL),(1138670,'Takashi Yanase',1919,2013),(1138716,'Alma Zack',1970,NULL),(1139120,'Claude Mathieu',NULL,NULL),(1139133,'Adir Miller',1974,NULL),(1139293,'Jonathon E. Stewart',1974,NULL),(1139317,'Carey Van Dyke',1976,NULL),(1139455,'Hani Furstenberg',NULL,NULL),(1139541,'Sandra McCoy',1979,NULL),(1139558,'Sarah Nemitz',NULL,NULL),(11396650,'Lisa Maria Falcone',NULL,NULL),(11396673,'Alexander Andryushenko',NULL,NULL),(1139699,'Mark Ellam',NULL,NULL),(1139726,'Neil Burger',1963,NULL),(1140089,'Neil Elman',NULL,NULL),(1140091,'Jody Gerson',NULL,NULL),(1140275,'Steven Knight',1959,NULL),(1140290,'Jordan Rubin',1972,NULL),(1140292,'Andrzej Sapkowski',1948,NULL),(1140300,'Jessica Lucas',1985,NULL),(1140344,'Rupert Evans',1976,NULL),(1140345,'Shaun Evans',1980,NULL),(11405540,'Hetvi Karia',1999,NULL),(1140589,'Eric Gardner',NULL,NULL),(1140640,'Patrick O\'Brian',1914,2000),(1140926,'Nathaniel Brown',1988,NULL),(1141070,'Borja Cobeaga',1977,NULL),(1141101,'Milhem Cortaz',1972,NULL),(1141181,'Matthieu Delaporte',1971,NULL),(1141272,'Kurt Eichenwald',1961,NULL),(1141657,'Ho-jin Chun',1960,NULL),(1141749,'Lance Khazei',NULL,NULL),(11417793,'Nayara Carrilho',NULL,NULL),(1142038,'Annie Marter',1976,NULL),(1142058,'Daishi Matsunaga',NULL,NULL),(1142073,'Colm McCarthy',1973,NULL),(1142195,'Maria Moulton',NULL,NULL),(1142688,'Eron Sheean',NULL,NULL),(11427316,'Mark Levinson',NULL,NULL),(1142921,'Evgeniy Tsyganov',1979,NULL),(1142966,'Murielle Varhelyi',NULL,NULL),(11431312,'Ka-Foo Lau',NULL,NULL),(1143318,'Tim Devries',NULL,NULL),(1143429,'Corey Large',1975,NULL),(11436471,'Lucie Zhang',2000,NULL),(1143816,'Lily Rabe',NULL,NULL),(11438576,'N. Karlovaya',NULL,NULL),(1143861,'Michaela Watkins',1971,NULL),(1143970,'James Biddle',NULL,NULL),(1144042,'Nathan Kahane',NULL,NULL),(1144337,'Louis Sachar',1954,NULL),(1144419,'Danny McBride',1976,NULL),(1144690,'Rod Brown',NULL,NULL),(1145539,'Niranjan Iyengar',NULL,NULL),(1145570,'John Erik Kaada',1975,NULL),(11457165,'David Coffin',NULL,NULL),(1145809,'Scott Marble',1847,1919),(1145840,'Iraklis Mavroidis',NULL,NULL),(1145920,'Crystal Moselle',1980,NULL),(1145982,'Mamiko Noto',1980,NULL),(1146051,'Khary Payton',1972,NULL),(1146102,'Razvan Radulescu',1969,NULL),(11461720,'Fernando León González',NULL,NULL),(1146212,'Gareth Saxe',NULL,NULL),(1146243,'Teddy Sears',NULL,NULL),(1146292,'Marija Skaricic',1977,NULL),(1146415,'Lhakpa Tsering',NULL,NULL),(1146422,'Shang Shang Typhoon',NULL,NULL),(1146705,'Ananda George',NULL,NULL),(1146783,'Angus McLaren',1988,NULL),(1146916,'Eliza Bennett',1992,NULL),(1146936,'Sabine Falkenberg',1966,NULL),(1146967,'Jessica Latham',NULL,NULL),(11471503,'Pascale Ingrand',NULL,NULL),(1147210,'Mark Henley',1955,NULL),(1147256,'Billy Mulligan',NULL,NULL),(1147284,'Rita Noriega',NULL,NULL),(1147756,'Randi Barnes',NULL,NULL),(1148186,'Eunice Cho',1991,NULL),(1148284,'Thomas Cousseau',NULL,NULL),(1148321,'Tish Cyrus',1967,NULL),(1148550,'Ava DuVernay',1972,NULL),(1148573,'Colin Egglesfield',1973,NULL),(1148952,'Elliot Greenberg',NULL,NULL),(1149074,'Gary Hawkins',NULL,NULL),(1149177,'Wynn Hougaard',NULL,NULL),(1149334,'Prasoon Joshi',1971,NULL),(11496044,'Sam Puryear',NULL,NULL),(11496045,'Eli Boshara',NULL,NULL),(1149633,'Sanoe Lake',1979,NULL),(1149650,'Aya Steinovitz',1979,NULL),(1149785,'Laura Beth Love',1981,NULL),(11498332,'Matt Gaglio',NULL,NULL),(11498336,'Michele Condon',NULL,NULL),(11498341,'Matt Earnhart',NULL,NULL),(11498346,'Saige Galovski',NULL,NULL),(11498347,'Sophie Thorp',NULL,NULL),(11498348,'Will Blackmore',NULL,NULL),(11499047,'Alejandro De Grazia',NULL,NULL),(1149945,'Bruno Mazzeo',1977,NULL),(1150125,'Marco Morabito',NULL,NULL),(1150145,'Jamie Moss',NULL,NULL),(1150736,'Gary Stephen Ross',1948,NULL),(1150796,'Sajid Ali',NULL,NULL),(1150863,'Sarah Schechter',NULL,NULL),(1151096,'Jonathan Sothcott',1980,NULL),(11512056,'Iman Khatibzadeh',NULL,NULL),(1151310,'Cuauhtémoc Tavira',NULL,NULL),(11515938,'Greg Tocchini',NULL,NULL),(11516255,'Bianca Foscht',NULL,NULL),(11517792,'Kate Heggie',NULL,NULL),(1151780,'Suzi Yoonessi',NULL,NULL),(1151819,'Teddy Zee',NULL,NULL),(1152139,'Karen Johnson',NULL,NULL),(1152181,'David Armstrong',NULL,NULL),(11523062,'Bryon Lerum',NULL,NULL),(11523063,'Ryder Lerum',NULL,NULL),(1152402,'Louis Phillips',NULL,NULL),(1152460,'Hideo Yamamoto',1968,NULL),(1152485,'Olivier Aubin',NULL,NULL),(11525862,'Chum Darang',1991,NULL),(1152688,'Rupert Hill',1978,NULL),(1153493,'Craig Lew',NULL,NULL),(1153581,'Josh Church',NULL,NULL),(1153895,'Jon Berg',NULL,NULL),(1153907,'Mike Fleiss',1964,NULL),(1154102,'Francesco Piccolo',1964,NULL),(1154160,'Sheila Allen',1932,2011),(1154161,'Laura Bailey',1981,NULL),(1154184,'Jon Harris',1967,NULL),(1154300,'Thomas Scott Stanton',NULL,NULL),(1154541,'Jay Aaseng',NULL,NULL),(1154632,'Lorne Balfe',1976,NULL),(1154710,'Daníel Bjarnason',NULL,NULL),(1154749,'Sofia Boutella',1982,NULL),(1154836,'Enrico Casarosa',1971,NULL),(1154886,'Galen T. Chu',NULL,NULL),(1154986,'DeRay Davis',NULL,NULL),(1155179,'Ramon Fontserè',1956,NULL),(1155313,'Jay Guerriere',NULL,NULL),(1155314,'Philippe Guillard',1961,NULL),(1155349,'Björn Hlynur Haraldsson',1974,NULL),(1155511,'Hardy Justice',NULL,NULL),(1155681,'Jong-yong Lee',NULL,NULL),(1155732,'Paulette Lorsy',NULL,NULL),(11558834,'Khalil Deane',NULL,NULL),(1155885,'Beth Mickle',NULL,NULL),(1155956,'Eadweard Muybridge',1830,1904),(1155957,'Anna Muylaert',1964,NULL),(1155977,'Nora Navas',1975,NULL),(1156085,'Inna Payán',NULL,NULL),(1156290,'Jaideep Sahni',NULL,NULL),(1156431,'Paki Smith',1963,NULL),(1156466,'Stefán Hallur Stefánsson',NULL,NULL),(1156625,'Jin Usami',NULL,NULL),(1156628,'Christian Valdelièvre',NULL,NULL),(1156709,'Annie Wersching',1977,2023),(1156818,'William Abadie',1977,NULL),(1156984,'Kevin Hageman',1974,NULL),(1157013,'Derek Jeter',1974,NULL),(1157048,'Zachary Levi',1980,NULL),(1157353,'Kathleen McNearney',NULL,NULL),(1157358,'Michelle Monaghan',1976,NULL),(1157527,'Andrew Jay Cohen',1977,NULL),(1157609,'Alberto Marini',1972,NULL),(1157706,'Willi Geike',NULL,NULL),(1157821,'Philip Stapp',NULL,NULL),(11579305,'Coconami',NULL,NULL),(1158071,'Chris Wilson',1958,NULL),(1158211,'Robert Webb',NULL,NULL),(1158243,'Michael Berry',1947,2008),(1158253,'Hiroshi Saitô',NULL,NULL),(1158270,'Joan Ackermann',NULL,NULL),(1158288,'Hichame Alaouie',NULL,NULL),(1158312,'Julián Apezteguia',1974,NULL),(1158544,'Jared Bush',1974,NULL),(1158746,'William Darkow',NULL,NULL),(1159180,'Ed Helms',1974,NULL),(11592549,'Seth Ickerman',NULL,NULL),(11592564,'Paul La Farge',NULL,NULL),(1159334,'Jan Jonaeus',NULL,NULL),(1159655,'Randy Manis',NULL,NULL),(1159733,'Robyn Meisinger',NULL,NULL),(1159955,'Andrew Orlando',NULL,NULL),(1159956,'George Ormrod',NULL,NULL),(1160039,'Grant Lee Phillips',1963,NULL),(1160089,'Ramona Provost',NULL,NULL),(1160306,'Aris Servetalis',1976,NULL),(1160330,'Fumihiko Shimo',NULL,NULL),(1160375,'Dia Sokol Savage',1976,NULL),(1160472,'Rossif Sutherland',1978,NULL),(1160484,'Kiyotaka Taguchi',NULL,NULL),(1160487,'Kazuhiro Takamura',NULL,NULL),(1160648,'Micha Wald',1974,NULL),(11607400,'Sekai Abenì',NULL,NULL),(1160770,'André Zoch',NULL,NULL),(1160962,'Henry Joost',1982,NULL),(1161163,'Pat van Beirs',NULL,NULL),(1161296,'Annika Marks',NULL,NULL),(1161522,'Muriel Breton',NULL,NULL),(1161528,'Jeff Buhler',NULL,NULL),(11615694,'Yuri Reznichenko',NULL,NULL),(1161680,'Clare Olssen',NULL,NULL),(1161683,'Theresa Steele Page',NULL,NULL),(1161787,'William Leroy',NULL,NULL),(1161981,'Hugo Anganuzzi',NULL,NULL),(1161987,'Natasha Braier',NULL,NULL),(1161994,'Martin Compston',1984,NULL),(1161997,'Annmarie Fulton',NULL,NULL),(1162012,'Gary Maitland',NULL,NULL),(1162030,'Son Ye-jin',1982,NULL),(1162031,'Karsten Stöter',NULL,NULL),(1162048,'William Ruane',1985,NULL),(1162051,'Michelle Coulter',NULL,NULL),(1162538,'Peter Donahue',NULL,NULL),(1162543,'Patrick Jordan',NULL,NULL),(1162557,'Michael Jay',NULL,NULL),(1162777,'James Thomas',NULL,NULL),(1163137,'Steve Asselin',NULL,NULL),(1163167,'Mats Axby',NULL,NULL),(1163210,'Iain Ballamy',NULL,NULL),(1163211,'Adam Balsam',NULL,NULL),(1163237,'Clio Barnard',NULL,NULL),(1163264,'Otto Bathurst',1971,NULL),(1163710,'Kelly Carmichael',NULL,NULL),(1163921,'Carrie Comerford',1966,NULL),(1164216,'Kate DiCamillo',1964,NULL),(1164318,'Andre Dubus III',1959,NULL),(1164392,'Christina Eleusiniotis',NULL,NULL),(1164411,'Jacques Olivier Ensfelder',NULL,NULL),(1164552,'Florian David Fitz',1974,NULL),(1164602,'Ciarán Foy',NULL,NULL),(1164678,'Juliana Galdino',1974,NULL),(1164730,'Natalia Tena',1984,NULL),(1164744,'Stuart Gazzard',NULL,NULL),(1164755,'Xavier Gens',1975,NULL),(1164842,'Fabio Golombek',NULL,NULL),(1164861,'Seth Gordon',NULL,NULL),(1164922,'Ljubisa Grujcic',NULL,NULL),(1164929,'Hsiao-Yun Ku',NULL,NULL),(1165044,'Omari Hardwick',1974,NULL),(1165047,'Laura Harkcom',NULL,NULL),(1165110,'Chris Hemsworth',1983,NULL),(1165220,'Chip Hourihan',NULL,NULL),(1165365,'Christophe Jankovic',NULL,NULL),(1165501,'Prakash Kapadia',NULL,NULL),(1165576,'Jonathan Kesselman',1974,NULL),(1165655,'Daniela Knapp',1972,NULL),(1165660,'T.R. Knight',1973,NULL),(1165704,'Jane Kelly Kosek',1969,NULL),(1165901,'Lee Seung-yun',1968,NULL),(1165959,'Caroline Libresco',NULL,NULL),(1165980,'Matthew Linnell',NULL,NULL),(1166041,'Ophelia Lovibond',1986,NULL),(1166241,'Jodi Matterson',NULL,NULL),(1166319,'Nathaniel Méchaly',1972,NULL),(1166400,'Soleiman Minasian',NULL,NULL),(1166418,'Akira Miura',NULL,NULL),(1166460,'Monty Sharma',NULL,NULL),(1166542,'Kalled Mustonen',1979,NULL),(1166576,'Dmitriy Nagiev',1967,NULL),(1166638,'Tomasz Neuman',1951,NULL),(1166724,'Rebecca O\'Flanagan',NULL,NULL),(1166804,'Hiroyuki Owaku',NULL,NULL),(1166871,'Amy Pascal',1958,NULL),(1166926,'Vadim Perelman',1963,NULL),(1166932,'Diana Pérez de Guzmán',NULL,NULL),(1166977,'Guillermo Pfening',1978,NULL),(1167049,'Fábio Porchat',1983,NULL),(1167135,'Santiago Racaj',NULL,NULL),(11674492,'Samsher Singh Sam',NULL,NULL),(11675554,'Annie Taylor',NULL,NULL),(1167599,'Garret Shanley',NULL,NULL),(1167812,'Jai Stefan',NULL,NULL),(1167933,'Damián Szifron',1975,NULL),(1167978,'Ed Talfan',NULL,NULL),(1167985,'Lewis Tan',NULL,NULL),(1168510,'Diana Wynne Jones',1934,2011),(1168522,'Akira Yamaoka',1968,NULL),(1168564,'Ha Yoo',NULL,NULL),(1168657,'Andrey Zvyagintsev',1964,NULL),(1168672,'Guillaume de Seille',1968,NULL),(1168915,'Michael Dorman',1981,NULL),(11689404,'Sulaiman Merchant',NULL,NULL),(1169011,'Josh Groban',1981,NULL),(1169217,'Oliver Maltman',1976,NULL),(1169564,'Maury Yeston',NULL,NULL),(1169619,'Adrienne Houghton',1983,NULL),(1169797,'Ai Hashimoto',1996,NULL),(1169957,'Miranda Nation',NULL,NULL),(1169988,'Dana de Celis',NULL,NULL),(1170121,'Dreya Weber',1961,NULL),(1170124,'Kiely Williams',1986,NULL),(1170223,'Kim Jun-seok',NULL,NULL),(1170227,'Jonathan Larson',1960,1996),(1170339,'Julius Avery',NULL,NULL),(1170394,'Jonathan Chase',NULL,NULL),(1170520,'Sophie Hyde',1977,NULL),(1170855,'J.C. Chandor',NULL,NULL),(1171030,'Simon Block',NULL,NULL),(1171056,'Cheng Kuo',NULL,NULL),(1171067,'Shawn Lawrence Otto',NULL,NULL),(1171090,'Angela Lee',1964,NULL),(1171298,'Carolyn Miller',NULL,NULL),(1171463,'Kevin O\'Neill',1953,2022),(1171466,'Colin Tucker',NULL,NULL),(1171917,'Simon Dennis',NULL,NULL),(1171959,'Elissa Down',NULL,NULL),(1171979,'Mathias Duplessy',NULL,NULL),(1172032,'Eurythmics',NULL,NULL),(1172196,'Robert Graysmith',1942,NULL),(1172285,'Martha Higareda',NULL,NULL),(1172430,'Al Kaplan',NULL,NULL),(1172431,'Jon Kaplan',NULL,NULL),(1172478,'Joel Kinnaman',1979,NULL),(1172727,'Corey May',NULL,NULL),(1172817,'Ian Mongrain',NULL,NULL),(1172901,'Nora-Jane Noone',1984,NULL),(1173259,'Malcolm Spellman',NULL,NULL),(1173295,'Matt Stuecken',NULL,NULL),(1173370,'Anuradha Tiwari',NULL,NULL),(1173525,'Wing-Shing Ma',1961,NULL),(1173559,'Miriam Chin-Wah Yeung',1974,NULL),(1173561,'Sergei Yevtushenko',NULL,NULL),(11735922,'Emma Berman',2008,NULL),(1173704,'Gabriel Martín Fernández',1966,NULL),(11739419,'Pietro Criaco',NULL,NULL),(1174105,'Rita Só',NULL,NULL),(11741344,'Tonton Marcel',NULL,NULL),(1174229,'Martijn Cousijn',NULL,NULL),(1174251,'Daniel Espinosa',1977,NULL),(1174529,'Walter Kirn',NULL,NULL),(11749748,'Lindsey King',NULL,NULL),(1175084,'Lauranne Bourrachot',NULL,NULL),(11754173,'Alejandra Cordes',NULL,NULL),(11754174,'Sergio Cabouli',NULL,NULL),(1175724,'Noboru Iguchi',1969,NULL),(11758071,'Ryô Sasaki',NULL,NULL),(1175949,'L. Levin',NULL,NULL),(1176219,'João Nicolau',1975,NULL),(1176651,'Christos Stergioglou',1952,NULL),(1176676,'Kurt Sutter',1960,NULL),(1176713,'Maverick Terrell',1875,1943),(1176985,'Dave Bautista',1969,NULL),(1177317,'Elena Cánovas',NULL,NULL),(1177331,'Maria Francesca',NULL,NULL),(11773376,'Robert Laas',NULL,NULL),(1177490,'Joel J. Richard',NULL,NULL),(1177494,'David Wnendt',1977,NULL),(1177665,'Stuart Oderman',1940,NULL),(1177703,'Elena Serra',1974,NULL),(1177766,'Joseph Bishara',NULL,NULL),(1177837,'Vera Brittain',1893,1970),(1177839,'Serge Lehman',NULL,NULL),(1177914,'Megan Park',1986,NULL),(1178069,'Michael Roesch',1974,NULL),(1178113,'Mania Akbari',1974,NULL),(1178208,'Bero Beyer',1970,NULL),(1178239,'Attilia Boschetti',NULL,NULL),(1178284,'Lene Børglum',1961,NULL),(1178516,'Vahid Ghazi',NULL,NULL),(1178554,'Nicolas Gueilburt',NULL,NULL),(1178560,'Jonathan Haagensen',1983,NULL),(1178570,'Satomi Hanamura',1984,NULL),(1178594,'Kyrre Hellum',1973,NULL),(1178649,'Jenjira Pongpas',NULL,NULL),(1178713,'Hirotoshi Kobayashi',NULL,NULL),(11787885,'Todd B. Nurick',NULL,NULL),(1178832,'Alex Manugian',NULL,NULL),(1179072,'Ricardo Ragendorfer',NULL,NULL),(1179105,'Alexandre Rodrigues',1983,NULL),(1179218,'Dodi Shoeuer',NULL,NULL),(1179321,'Antonia Truppo',1977,NULL),(1179395,'Alan Warner',NULL,NULL),(1179417,'Sebastian Winterø',1974,NULL),(1179457,'Milap Zaveri',NULL,NULL),(1179512,'Kun Chen',1976,NULL),(1179580,'Seu Jorge',1970,NULL),(1179606,'Amina Maher',1992,NULL),(1179683,'Douglas Silva',1988,NULL),(1179869,'George Block',NULL,NULL),(1179870,'Daniel Rezende',1975,NULL),(1180074,'Kate Angelo',NULL,NULL),(1180088,'Robert L. Buckner',1903,1961),(1180175,'John Pattison',NULL,NULL),(1180243,'Danny McCarthy',NULL,NULL),(1180348,'Michelle Morgan',NULL,NULL),(1180557,'Chris Wilson',NULL,NULL),(1180614,'David Mitchell',1965,NULL),(1180620,'Daniel Wallace',NULL,NULL),(1180669,'Shawn Angelski',1977,NULL),(1180690,'Tobin Armbrust',NULL,NULL),(1180763,'Alex Beaupain',1974,NULL),(1180765,'Taoufik Behi',NULL,NULL),(11807845,'Mark Paguio',NULL,NULL),(1180915,'Chava Cartas',NULL,NULL),(1181100,'Kate Dollenmayer',NULL,NULL),(1181258,'Zoé Galeron',NULL,NULL),(1181534,'Ui-seok Jo',NULL,NULL),(1181835,'Gwen Mallauran',NULL,NULL),(1181838,'Nuno Malo',1977,NULL),(1182008,'Kathleen Munroe',NULL,NULL),(1182055,'Mikkel E.G. Nielsen',1973,NULL),(1182244,'S.S. Rajendran',1928,2014),(1182352,'Yunus Sajawal',NULL,NULL),(11826878,'Ryu Yong-jae',NULL,NULL),(1182955,'Antonio Cupo',1978,NULL),(11831302,'Taylan Atalay',NULL,NULL),(1183149,'Edgar Ramírez',1977,NULL),(1183651,'Katy O\'Connor',NULL,NULL),(1183681,'Antoine Sanier',NULL,NULL),(1183854,'David Berenbaum',NULL,NULL),(1183873,'Jonathan Alberts',NULL,NULL),(11840879,'Yan Gao',NULL,NULL),(1184258,'William Monahan',1960,NULL),(1184392,'Lene Bausager',NULL,NULL),(1184676,'Andrew Cosby',NULL,NULL),(11847450,'Mohamed Ali',NULL,NULL),(1184901,'Germaine Franco',NULL,NULL),(11850618,'Scott Greenberg',NULL,NULL),(1185314,'Bunshi Katsura Vi',1943,NULL),(1185342,'Bobby Khan',1970,NULL),(1185381,'Lars Knudsen',NULL,NULL),(11857184,'Val Rahmany',NULL,NULL),(1185734,'Hiroyuki Miyasako',1970,NULL),(1185747,'Cameron Monaghan',1993,NULL),(1185849,'Solomon Northup',1808,1863),(1185877,'Yukihiro Okimura',NULL,NULL),(1186027,'Claire Pringle',NULL,NULL),(1186061,'Sarah Ramos',1991,NULL),(1186373,'Adam Sztykiel',NULL,NULL),(1186564,'Jesse Voccia',NULL,NULL),(11866274,'Cooper Hoffman',NULL,NULL),(1186661,'Miri Yoon',NULL,NULL),(1186842,'Richard Gleason',NULL,NULL),(11868534,'Paloma Daris',NULL,NULL),(1187126,'Mark Wheaton',1975,NULL),(1187181,'Lynn Chen',NULL,NULL),(1187454,'Kirsten Elms',NULL,NULL),(11875524,'Zeljko Mitrovic',NULL,NULL),(11875975,'Alisa Okehazama',NULL,NULL),(1187860,'Diane Lake',NULL,NULL),(1187876,'Su-jin Kim',1967,NULL),(11879379,'Jude Hill',2010,NULL),(11880640,'Walker Scobell',2009,NULL),(1188553,'Lubomir Bakchev',1970,NULL),(1188711,'Lucio Bonelli',NULL,NULL),(11888099,'Lewis McAskie',NULL,NULL),(1189197,'Quentin Dupieux',1974,NULL),(1189201,'Patrick Durham',NULL,NULL),(1189315,'Adam Finch',1961,NULL),(11893277,'Yuki Murata',NULL,NULL),(1189346,'Gardner Fox',1911,1986),(1189390,'Ainsley Gardiner',NULL,NULL),(11894469,'Gay DeForest',NULL,NULL),(1189489,'Gyton Grantley',1980,NULL),(1190005,'Sotira Kyriacou',NULL,NULL),(11901152,'Satoshi Hirayama',NULL,NULL),(11901532,'Stormee Kipp',NULL,NULL),(11901957,'Erich Kronte',NULL,NULL),(1190372,'Crazy Mohan',1952,2019),(1190757,'Matthew Putland',NULL,NULL),(1190799,'Ingo Rasper',1974,NULL),(1190833,'James Ricardo',1969,NULL),(1190888,'Enis Rotthoff',1979,NULL),(1190889,'Guillaume Roussel',1980,NULL),(1191033,'Kirk Shaw',NULL,NULL),(1191112,'Ritesh Soni',NULL,NULL),(1191481,'Leigh Whannell',1977,NULL),(1191842,'Alexis Hénon',NULL,NULL),(1191891,'Jay Lavender',1975,NULL),(1191900,'Ewen Leslie',1980,NULL),(1192238,'Lisa Ferber',NULL,NULL),(1192254,'Maggie Grace',1983,NULL),(11924371,'Thomas Adlam',NULL,NULL),(11924372,'William Argent',NULL,NULL),(11924373,'John Ashby',NULL,NULL),(11924374,'Attwood',NULL,NULL),(11924375,'Walter Aust',NULL,NULL),(1192759,'Vincent Pascoe',NULL,NULL),(11928337,'Donald Bain',NULL,NULL),(1192875,'Clark Spencer',1963,NULL),(1193005,'Sung-ho Kim',NULL,NULL),(1193091,'Robert Hobbs',NULL,NULL),(1193346,'Sean Ellis',1970,NULL),(1193600,'César Aira',1949,NULL),(1193624,'Jeffrey Allard',NULL,NULL),(1193626,'The Alloy Orchestra',NULL,NULL),(1193723,'Baek Dong-hyeon',NULL,NULL),(1193959,'Gerald Brunskill',NULL,NULL),(11943485,'Teruaki Jitsumatsu',NULL,NULL),(1194360,'Merav Doster',NULL,NULL),(1194448,'S.J. Evans',1977,NULL),(1194496,'Stevan Filipovic',1981,NULL),(1194748,'Adèle Haenel',1989,NULL),(1195119,'Kim Min-hee',1982,NULL),(1195233,'Thomas Lagerman',1973,NULL),(1195270,'Albert Laveau',NULL,NULL),(1195302,'Louise Lemoine Torrès',NULL,NULL),(1195308,'Diego Lerman',1976,NULL),(1195490,'Nicolás Martínez Zemborain',NULL,NULL),(1195539,'Alexander McQueen',1969,2010),(1195574,'Matthew Metcalfe',1973,NULL),(1195601,'Dusan Milic',NULL,NULL),(1195622,'Noël Mitrani',1969,NULL),(1195697,'Kiel Murray',NULL,NULL),(1195799,'Naomi Odenkirk',NULL,NULL),(1195811,'Stéphan Oliva',NULL,NULL),(1195855,'Lee Pace',1979,NULL),(1196061,'Filippo Pucillo',1989,NULL),(1196219,'Vincent Rottiers',1986,NULL),(1196241,'Heather Rutman',NULL,NULL),(1196297,'Tatiana Saphir',NULL,NULL),(1196373,'Yves Sehnaoui',NULL,NULL),(1196684,'Paul Tibbitt',1968,NULL),(1196692,'David Tillman',NULL,NULL),(1196755,'Marc Turtletaub',1946,NULL),(1197007,'Yoav Ze\'evi',NULL,NULL),(1197257,'Edward H. Hamm Jr.',NULL,NULL),(11972817,'Sarah DeLappe',NULL,NULL),(1197318,'Ted Koland',NULL,NULL),(1197462,'Chris Ryman',1971,NULL),(1197634,'Carla Crespo',NULL,NULL),(1197689,'Sandra Hüller',1978,NULL),(1197737,'Carmen Machi',1963,NULL),(11977834,'Robert Pringle',NULL,NULL),(1197971,'Marcus Nispel',1963,NULL),(11979752,'Franziska K. Müller',NULL,NULL),(1197989,'Jae-beom Kim',NULL,NULL),(1197998,'Pedro Suárez',NULL,NULL),(1198299,'Sebastián Ariel',NULL,NULL),(1198319,'Gaye Hirsch',NULL,NULL),(1198322,'David Kanter',NULL,NULL),(1198436,'Phil Lorin',NULL,NULL),(1198525,'María Meira',1976,NULL),(1198528,'Doug Moench',1948,NULL),(1198568,'Martin Burke',1968,NULL),(11986662,'Jameson Charles',NULL,NULL),(1198832,'Carlos Aguilera',1970,NULL),(1198880,'Geoff Ashenhurst',NULL,NULL),(1198914,'Lucy Barzun Donnelly',NULL,NULL),(1198959,'Massimo Bitossi',NULL,NULL),(1199107,'Zach Cregger',1981,NULL),(1199131,'Peter Dang',NULL,NULL),(1199287,'Kyle Gates',NULL,NULL),(1199351,'Marc Haimes',1971,NULL),(1199385,'Viktor Hennemann',NULL,NULL),(1199489,'Karren Karagulian',NULL,NULL),(1199519,'Kenzo Kitakata',NULL,NULL),(1199547,'Keith Kupferer',NULL,NULL),(1199888,'Sasha Pieterse',1996,NULL),(1199954,'Jeff Renfroe',NULL,NULL),(1199960,'Graham Reynolds',1971,NULL),(1200064,'Tamar Sela',NULL,NULL),(1200185,'Russell Terlecki',NULL,NULL),(1200194,'Marteinn Thorsson',NULL,NULL),(1200424,'Hugh Crawford',NULL,NULL),(1200650,'Samantha Bee',1969,NULL),(1200692,'Eva Green',1980,NULL),(1200748,'Jenny Mollen',1979,NULL),(1201051,'Lauren Versel',NULL,NULL),(1201058,'Kerry Williamson',NULL,NULL),(1201075,'Tom Streuber',NULL,NULL),(1201108,'Paolo Logli',1960,NULL),(1201136,'Jeff Liu',NULL,NULL),(12011966,'Kwak Hee-Jin',NULL,NULL),(12011967,'Cho Nam-Joo',NULL,NULL),(1201266,'Robert Doherty',NULL,NULL),(12013605,'Gege Akutami',NULL,NULL),(1201554,'Chris King',NULL,NULL),(1201710,'Ron Anderson',NULL,NULL),(1201715,'Eric Garcia',1972,NULL),(1201777,'Stefano Ambrogi',1960,NULL),(1201789,'Mads Broe Andersen',NULL,NULL),(1201865,'John Avarese',NULL,NULL),(1201875,'Géla Babluani',1979,NULL),(1202084,'Jason Brandt',NULL,NULL),(12022709,'Malaika Wakoli-Abigaba',NULL,NULL),(1202276,'Tina Gordon',NULL,NULL),(1202460,'Niaz Diasamidze',1973,NULL),(1202622,'Matthew Ferraro',NULL,NULL),(12026427,'Steven Klein',NULL,NULL),(1202788,'Kristian Moliere',NULL,NULL),(1202905,'Clotilde Hesme',1979,NULL),(1202917,'Pamela Hirsch',NULL,NULL),(1202932,'Megan Holley',NULL,NULL),(1202937,'Lisa Montan',NULL,NULL),(1203401,'Marta Luiza Macuga',NULL,NULL),(1203457,'Lyndsey Marshal',1978,NULL),(1203571,'Liv Mjönes',1979,NULL),(1204442,'Nicholas Tomnay',NULL,NULL),(1205652,'Hiram Garcia',NULL,NULL),(1206143,'Christophe',1945,2020),(1206265,'Susan Downey',1973,NULL),(1206447,'Yakov Bliokh',1895,1957),(1206539,'Steve Callahan',1967,NULL),(1206701,'Leticia Dolera',1981,NULL),(1206844,'Drew Goddard',1975,NULL),(1206845,'Fabrice Goldstein',NULL,NULL),(1206875,'Pablo Guevara',NULL,NULL),(1207050,'Jesse Kennedy',1973,NULL),(1207063,'Michael Kitzberger',NULL,NULL),(1207238,'Murray McKeown',NULL,NULL),(1207335,'Aram Nigoghossian',NULL,NULL),(1207404,'Daniel Pemberton',1977,NULL),(1207551,'John Sabotta',NULL,NULL),(12076580,'Alizée Falque',NULL,NULL),(1207904,'Samuel Bayer',1962,NULL),(1208009,'John Keyser',1976,NULL),(12080457,'Mikey Barone',NULL,NULL),(1208167,'Diane Kruger',1976,NULL),(1208220,'Agnès Viala',NULL,NULL),(12082527,'Denise Sexton',NULL,NULL),(12083010,'Raymond Pinharry',NULL,NULL),(12083011,'Mary Makariou',NULL,NULL),(1208415,'Steve Lightfoot',NULL,NULL),(1208725,'Joshua Close',1981,NULL),(1209063,'Jim Young',NULL,NULL),(1209140,'Mikko Alanne',1972,NULL),(1209191,'Kurume Arisaka',NULL,NULL),(12092085,'Jennifer Cox',NULL,NULL),(1209279,'Rosemary Benét',NULL,NULL),(1209438,'Barbara Carratala Bonds',NULL,NULL),(1209761,'David Gamburg',NULL,NULL),(1209773,'Manu Gargi',NULL,NULL),(1209925,'Chad Hodge',NULL,NULL),(1209966,'Oscar Isaac',1979,NULL),(1209992,'Samantha Jennings',NULL,NULL),(1210118,'Ho-Leung Lau',NULL,NULL),(1210124,'Taylor Lautner',1992,NULL),(1210208,'Magy',1972,NULL),(12102665,'Suu Minazuki',NULL,NULL),(1210638,'Sven Regener',1961,NULL),(1210799,'Aarif Sheikh',NULL,NULL),(1210895,'Stephanie Szostak',1975,NULL),(1210910,'Satoru Tamaki',NULL,NULL),(1211344,'Leonardo Nam',1979,NULL),(1211485,'Raquel Castro',1994,NULL),(1211488,'Lynn Collins',1977,NULL),(1211646,'Alessandro Vannucci',NULL,NULL),(1212017,'Garth Ennis',1970,NULL),(1212051,'Rachel Roberts',1978,NULL),(1212328,'Michael Fry',NULL,NULL),(1212331,'Dennis Lehane',1965,NULL),(1212399,'Mie Andreasen',1972,NULL),(1212486,'Youk the Bear',NULL,2011),(1212547,'Cale Boyter',NULL,NULL),(1212643,'Edmonde Charles-Roux',1920,2016),(1212722,'Benedict Cumberbatch',1976,NULL),(1212896,'Lil\' Fizz',1985,NULL),(1212903,'Benedek Fliegauf',1974,NULL),(1212988,'Dean Georgaris',NULL,NULL),(1213036,'Sabrina Greve',NULL,NULL),(1213219,'Jon Kane',NULL,NULL),(1213382,'Fábio S. Limma',1973,NULL),(1213456,'Gia Mantegna',1990,NULL),(1213507,'Mungo McKay',NULL,NULL),(1213712,'Matthew Parkhill',NULL,NULL),(1213782,'Peter Principato',NULL,NULL),(12138847,'Akifumi Fujio',NULL,NULL),(12138999,'Emma Moore',NULL,NULL),(1213974,'Stuart Sender',NULL,NULL),(1214083,'Adrian Sturges',1976,NULL),(1214289,'Pharrell Williams',1973,NULL),(1214435,'Charlie Cox',1982,NULL),(1214436,'Daniel Cudmore',NULL,NULL),(12145223,'Sophie Wilde',NULL,NULL),(1214657,'Nick Zano',1978,NULL),(1214866,'Dave Metzger',NULL,NULL),(1214880,'Kenichi Iwao',NULL,NULL),(1214886,'Richard Marizy',NULL,NULL),(1215065,'Tom Pellegrini',NULL,NULL),(1215164,'Doug Miro',NULL,NULL),(1215197,'Christopher Bevins',1973,NULL),(1215228,'Pyotr Fyodorov',1982,NULL),(1215271,'Danny Miller',NULL,NULL),(1215482,'Chris Schwartz',NULL,NULL),(1215565,'Frank Murray',1977,NULL),(1215800,'Raz B',1985,NULL),(1215937,'Marguerite Bordat',NULL,NULL),(1215996,'Brunnet',NULL,NULL),(1216004,'Andrew Bujalski',1977,NULL),(1216045,'Nicolas Canniccioni',NULL,NULL),(1216145,'Aina Clotet',1982,NULL),(1216185,'Sean Cowhig',NULL,NULL),(1216189,'Court Crandall',NULL,NULL),(1216490,'Yoshifumi Fukazawa',NULL,NULL),(1216495,'Fumihiko Sori',NULL,NULL),(1216554,'David Gleeson',NULL,NULL),(1216642,'Cully Hamner',1969,NULL),(1216684,'Martin Heisler',NULL,NULL),(1216791,'Jarell Houston',1985,NULL),(12168055,'Adrian Greensmith',2001,NULL),(12168180,'Kathy Benz',NULL,NULL),(12168735,'Su-Hyung Im',1987,NULL),(12168737,'Lee Joon-Woo',1992,NULL),(1216915,'Masaya Kikawada',1980,NULL),(1217161,'Stewart Mackinnon',NULL,NULL),(1217227,'Frances Mayes',1940,NULL),(1217338,'KC Montero',NULL,NULL),(1217385,'Henry Nadler',NULL,NULL),(1217426,'Myles Nestel',NULL,NULL),(1217504,'Maren Olson',NULL,NULL),(1217506,'Omarion',1984,NULL),(1217703,'Diana Rathbun',NULL,NULL),(1217844,'Jennifer L. Schaper',NULL,NULL),(12178559,'Paige Brown',NULL,NULL),(1217939,'Hidde Simons',NULL,NULL),(1218053,'Robin Sydney',1984,NULL),(12182370,'Greg Nobile',NULL,NULL),(1218268,'Anna Wallmark',NULL,NULL),(1218281,'Jon Watts',1981,NULL),(1218360,'Susanne Wuest',1979,NULL),(1218390,'Isamu Yoshii',1886,1960),(1218607,'Burn Gorman',1974,NULL),(1218632,'Mark Herlehy',NULL,NULL),(1218697,'Marshall Lewy',1977,NULL),(1218757,'Keir O\'Donnell',1978,NULL),(1218767,'Myles Paige',NULL,NULL),(1218815,'Christian Rudder',NULL,NULL),(1218863,'Charlie Vaughn',NULL,NULL),(1218953,'Charlene Choi',1982,NULL),(1219307,'Benjamin Epps',NULL,NULL),(1219505,'Ron Patane',NULL,NULL),(1219582,'Todd Weinger',NULL,NULL),(1219639,'Michael Yanko',NULL,NULL),(1219736,'Craig Kyle',1971,NULL),(1219963,'David Moreau',1976,NULL),(1220140,'James Watkins',1978,NULL),(1220156,'Lyubov Agapova',1956,NULL),(12201908,'Jeremy Waller',NULL,NULL),(1220329,'Olivia Bohnhoff Harris',1976,NULL),(1220477,'Clamp',NULL,NULL),(1220630,'Dürbeck & Dohmen',NULL,NULL),(1221047,'Keegan-Michael Key',1971,NULL),(1221367,'Oleg Morgunov',NULL,NULL),(1221373,'Susan Motamed',NULL,NULL),(12214710,'Sushila Charak',NULL,NULL),(1221599,'Christopher Racster',1969,NULL),(1221634,'Justin Rhodes',NULL,NULL),(1221863,'Michael Stahl-David',1982,NULL),(1221906,'Jessica Szohr',1985,NULL),(1222014,'Patricia Valeix',NULL,NULL),(1222086,'Michele Wolkoff',NULL,NULL),(12222824,'Julia Kogan',NULL,NULL),(1222421,'Trevor Wall',NULL,NULL),(1222477,'Lauren Levine',NULL,NULL),(1222479,'Christophe Mazodier',NULL,NULL),(1222487,'Andrew Louis Marnik',1983,NULL),(1222820,'Ryan McDonald',1984,NULL),(1223023,'Nikki Reed',1988,NULL),(1223294,'Homi Adajania',NULL,NULL),(1223326,'Fernanda Andrade',1984,NULL),(1223381,'Andrés Baiz',NULL,NULL),(1223500,'Nikki Braendlin',NULL,NULL),(12236841,'Nam-mi Kang',NULL,NULL),(12236842,'Hye-Sook Go',NULL,NULL),(12236843,'Bok-hwa Baek',NULL,NULL),(1223910,'Sujoy Ghosh',1966,NULL),(1223979,'Philip Haldiman',1977,NULL),(1224078,'Lawrence Inglee',NULL,NULL),(1224082,'Boman Irani',1959,NULL),(1224102,'Stan Jakubowicz',NULL,NULL),(1224245,'Jesper Kyd',1972,NULL),(1224299,'Rob Letterman',NULL,NULL),(12243490,'Jepha Krieg',1989,NULL),(12244197,'Daniel Simitan',NULL,NULL),(1224445,'Salim Merchant',NULL,NULL),(1224532,'Hiroki Narimiya',1982,NULL),(1224826,'Elle Russ',1977,NULL),(12248293,'Rakel Lenora Petersen Fløttum',NULL,NULL),(12248294,'Alva Brynsmo Ramstad',NULL,NULL),(12248295,'Sam Ashraf',NULL,NULL),(12248296,'Mina Yasmin Bremseth Asheim',NULL,NULL),(1225096,'Alexandre Tharaud',NULL,NULL),(1225406,'Colin Ford',NULL,NULL),(12258268,'Pink Noise',NULL,NULL),(1225856,'David Bilow',1978,NULL),(1225921,'Liz W. Garcia',1977,NULL),(1226108,'Alice Wu',1970,NULL),(1226129,'Lawrence Silverstein',NULL,NULL),(12262257,'Jong Chul Gil',NULL,NULL),(1226475,'Adam Cohen',NULL,NULL),(1226735,'Damian Shannon',NULL,NULL),(1226736,'Robert Souza',NULL,NULL),(1226737,'Mark Swift',NULL,NULL),(1226817,'Devon Aoki',1982,NULL),(1226871,'Wes Ball',1980,NULL),(1227027,'Pierre Boulanger',1987,NULL),(12270579,'Essi Murray-Johnston',NULL,NULL),(1227232,'Brady Corbet',1988,NULL),(1227393,'Matthew Drdek',1977,NULL),(1227576,'Bryan Furst',NULL,NULL),(1227585,'Rikki Gagne',NULL,NULL),(1227638,'Mike Gioulakis',NULL,NULL),(1227651,'Lloyd Goldfine',NULL,NULL),(1227780,'Laura Hillenbrand',1967,NULL),(1227814,'Vanessa Hudgens',1988,NULL),(1227864,'Mylène Jampanoï',1980,NULL),(1228072,'Grégoire Leprince-Ringuet',1987,NULL),(12280851,'Jing Wang',NULL,NULL),(1228100,'Elizabeth Livingston',NULL,NULL),(1228408,'Qiu Yuen',1950,NULL),(1228443,'Bill Niven',NULL,NULL),(1228447,'Makoto Nonomura',1964,NULL),(12285851,'Madison Baines',NULL,NULL),(1228585,'Roman Perez',NULL,NULL),(1228617,'Matt Platts-Mills',NULL,NULL),(1228805,'Ray Sahetapy',1957,NULL),(1228814,'Emilio Salituro',NULL,NULL),(1228976,'Scott Speer',NULL,NULL),(1229204,'Nadine Velazquez',1978,NULL),(1229296,'Fredrik Wikingsson',1973,NULL),(1229323,'Jon Wright',1971,NULL),(1229511,'Darren Dunstan',1976,NULL),(1229520,'Ben Falcone',1973,NULL),(1229568,'Filip Hammar',1975,NULL),(1229681,'Da\'Vone McDonald',NULL,NULL),(1229757,'Babu Santana',1979,NULL),(1229839,'Anne Benoît',NULL,NULL),(1229993,'Lisa McKinlay',NULL,NULL),(12299991,'Milo Machado Graner',NULL,NULL),(1230138,'Steve Isles',NULL,NULL),(1230585,'Sergio Casci',NULL,NULL),(1230598,'Oh Yeong-su',1944,NULL),(1230693,'Dave Hansen',NULL,NULL),(1230874,'Odessa Rae',NULL,NULL),(1230879,'Sunny Johnson',1953,1984),(1230948,'Jill Thompson',1966,NULL),(1231159,'Richard Brown',1971,NULL),(12311642,'Joséphine Sanz',NULL,NULL),(12311643,'Gabrielle Sanz',NULL,NULL),(1231186,'Joel Collins',NULL,NULL),(1231249,'James Moran',1972,NULL),(1231253,'John Solomon',1970,NULL),(1231346,'Naruho Amino',NULL,NULL),(12317014,'Ümran Sakir',NULL,NULL),(1231851,'Jason Chae',NULL,NULL),(1231899,'Priyanka Chopra Jonas',1982,NULL),(1231965,'Charlie Corwin',NULL,NULL),(1232058,'Marcello De Francisci',NULL,NULL),(1232198,'Taylor Duffy',NULL,NULL),(1232262,'Bertie',NULL,NULL),(1232266,'Paul Englishby',1970,NULL),(1232416,'Takako Fuji',1972,NULL),(1232470,'Janina Gavankar',NULL,NULL),(1232664,'Laura Hastings-Smith',NULL,NULL),(1232670,'Mette Heeno',1976,NULL),(12327540,'Nguyen Truong Nhan',NULL,NULL),(1232772,'Steve Hullfish',1963,NULL),(1232798,'Medaka Ikeno',NULL,NULL),(1232902,'René Jung',1965,NULL),(1232925,'Shihori Kanjiya',1985,NULL),(1232950,'Kazuo Katô',NULL,NULL),(1233027,'Nobuhito Kitsugi',NULL,NULL),(1233028,'Ayelet Kait',NULL,NULL),(1233045,'Hiroshi Kogure',NULL,NULL),(1233079,'Ryôta Koyama',NULL,NULL),(1233214,'Pablo Lescano',1977,NULL),(1233611,'Masashi Muta',NULL,NULL),(1233646,'Christine Lucas Navarro',NULL,NULL),(1233726,'Ki-min Oh',NULL,NULL),(12339034,'Joanna Denton',NULL,NULL),(1234157,'Stéphane Rousseau',1966,NULL),(1234307,'Marie-Jeanne Serero',NULL,NULL),(1234345,'Takashi Shimizu',1972,NULL),(1234543,'Masaaki Takashima',NULL,NULL),(1234629,'Man-Hong Tong',NULL,NULL),(1234703,'Richard P. Ulivella',NULL,NULL),(1234765,'G. Venkateswaran',NULL,2003),(1234835,'Fabian Wagner',1978,NULL),(1234849,'Zhongjun Wang',NULL,NULL),(1234853,'Justin Ware',NULL,NULL),(1234866,'Inbal Weinberg',NULL,NULL),(1234876,'Fredrik Wenzel',1979,NULL),(1234893,'Sylvain White',NULL,NULL),(1234975,'Yue',NULL,NULL),(1235290,'Kim Hak-sun',1970,NULL),(1235292,'Kim Sang-kyung',1972,NULL),(1235366,'Bret McKenzie',1976,NULL),(1235530,'Michael Urie',1980,NULL),(1235567,'Jenny Admire',NULL,NULL),(1235773,'Veronica Orr',NULL,NULL),(1235835,'Holly Starr',NULL,NULL),(12358906,'Mi-so Park',NULL,NULL),(1235965,'Steve Singleton',1952,NULL),(1236491,'Dong Yu',NULL,NULL),(1236503,'Z. Charles Bolton',1981,NULL),(1236620,'Heath Corson',NULL,NULL),(1236625,'Martin Gero',1977,NULL),(1236649,'Min-ho Song',NULL,NULL),(1236653,'Christopher L. Yost',1973,NULL),(12366592,'Che Sacramento',NULL,NULL),(12366593,'Nicolás Muñoz',NULL,NULL),(12366935,'Nouhe Hamady Bari',NULL,NULL),(12366936,'Saadna Hamoud',NULL,NULL),(12366937,'Mohamed Yeslem Mousse',NULL,NULL),(1237215,'Tapan Bhatt',NULL,NULL),(1237224,'Anne K. Black',NULL,NULL),(1237235,'Ronnie Gene Blevins',1977,NULL),(12373805,'Daniel Ranieri',NULL,NULL),(1237443,'Julie Corgill',NULL,NULL),(1237541,'Courtney Halverson',1989,NULL),(1237570,'Toby Divine',NULL,NULL),(1237698,'Cale Finot',NULL,NULL),(1237812,'Chris Goodger',NULL,NULL),(1237973,'Warren Jacquin',1990,NULL),(1238067,'Jennifer Griffin',NULL,NULL),(1238086,'Takeshi Koike',1968,NULL),(12382711,'Na Chul',1986,2023),(1238286,'Sunil Manchanda',NULL,NULL),(1238326,'Mike Masters',1976,NULL),(1238337,'Vijay Maurya',1972,NULL),(12385644,'Patricia Grace',NULL,NULL),(1238855,'Germán Servidio',1982,NULL),(1239213,'Yorihiko Yamada',NULL,NULL),(1239466,'Bill Hindley',NULL,NULL),(1239499,'Rory Kinnear',1976,NULL),(1239566,'José Mota',1965,NULL),(1239627,'Jared Sanford',NULL,NULL),(1239720,'María Cecilia Botero',1955,NULL),(1239735,'Gillian Chung',1981,NULL),(1239813,'Allie MacDonald',1988,NULL),(1239866,'Wakana Sakai',1980,NULL),(1240085,'Sam Levy',NULL,NULL),(1240204,'Tracey Becker',NULL,NULL),(1240210,'John D. Eraklis',1971,NULL),(1240300,'Juri Seppä',NULL,NULL),(1240326,'W. Bruce Cameron',NULL,NULL),(1240448,'Liam O\'Brien',1976,NULL),(12406391,'Madison Graber',NULL,NULL),(1240647,'Nicolás López',1983,NULL),(1240783,'Lara Alameddine',NULL,NULL),(1240838,'Alex Avant',1971,NULL),(1241059,'Jesse Chabot',NULL,NULL),(1241354,'Rory Gilmartin',NULL,NULL),(1241511,'Orto Ignatiussen',1959,2019),(1242054,'James Ponsoldt',1978,NULL),(1242062,'Arie Posin',NULL,NULL),(1242141,'Arnaldo Rodríguez',NULL,NULL),(1242185,'H. Scott Salinas',NULL,NULL),(12422297,'Muntazir Ahmad',1994,NULL),(1242274,'Johanna Sinisalo',1958,NULL),(1242458,'Benjamín Vicuña',1978,NULL),(1242501,'Harvey White',NULL,NULL),(1242522,'Ray Wright',NULL,NULL),(1242613,'Sage Brocklebank',1978,NULL),(1242688,'Josh Hutcherson',1992,NULL),(12426991,'Kamer Evren',NULL,NULL),(1242711,'Toks Körner',1975,NULL),(1242846,'Nicholas Thomas',NULL,NULL),(1242939,'Clara Lago',1990,NULL),(1243009,'Brittney Wilson',1991,NULL),(1243271,'Brad Simonsen',NULL,NULL),(1243877,'Sammy Lee',NULL,NULL),(1243905,'Michael Gracey',NULL,NULL),(1243973,'Elik Alvarez',1974,NULL),(1244069,'Kenya Barris',1974,NULL),(1244315,'Juraj Chlpik',1976,NULL),(1244344,'Sophie Charlotte Conrad',1992,NULL),(1244349,'Dale Cornelius',NULL,NULL),(12444098,'Camille DeAngelis',NULL,NULL),(1244414,'François Decodts',NULL,NULL),(12444764,'Les Mabaleka',NULL,NULL),(1244603,'Peter Foott',NULL,NULL),(1244808,'Justin Haythe',NULL,NULL),(1245013,'Isao Kiriyama',NULL,NULL),(12451365,'Gaëlle Graton',NULL,NULL),(1245146,'Scott Lobdell',1963,NULL),(1245217,'Bryony Marks',NULL,NULL),(1245249,'Tim McGahan',NULL,NULL),(1245735,'Oskar Santos',1972,NULL),(1245812,'Joe Sichta',NULL,NULL),(1245863,'Rafe Spall',1983,NULL),(1246047,'Adriana Ugarte',1985,NULL),(1246087,'Tripp Vinson',NULL,NULL),(1246238,'Valentina de Angelis',NULL,NULL),(1246306,'Leo Bruckmann',1993,NULL),(1246371,'Sara Foster',1981,NULL),(12466397,'Bendev Junior',1998,NULL),(1246644,'Silva Belton',NULL,NULL),(1246724,'Su-an Kim',NULL,NULL),(1247154,'Michelle Cogan',NULL,NULL),(1247295,'Michael Urban',1969,NULL),(1247462,'Christopher Smith',1970,NULL),(1247503,'Alex Garcia',1979,NULL),(1247584,'Mark Gill',NULL,NULL),(1247594,'Rachel Shane',NULL,NULL),(12477601,'Babil Khan',NULL,NULL),(1247772,'Bel Berlinck',NULL,NULL),(1247855,'Carrie Brownstein',1974,NULL),(1248060,'Marijke Desouza',NULL,NULL),(12480616,'Aisha Murray',NULL,NULL),(1248268,'Kenny Gioseffi',NULL,NULL),(1248357,'Cindy Davis',1967,NULL),(1248358,'Donald H. Hewitt',NULL,NULL),(1248393,'Rachel Hurd-Wood',1990,NULL),(1248409,'Bren Foster',1976,NULL),(1248442,'Ashley Jordan',NULL,NULL),(1248824,'Mark O\'Rowe',NULL,NULL),(1248907,'Bob Wills and His Texas Playboys',NULL,NULL),(1248935,'Pablo Puyol',1975,NULL),(1249036,'Mario Salvucci',NULL,NULL),(1249052,'Riccardo Scamarcio',1979,NULL),(1249116,'Ranvir Shorey',1972,NULL),(1249167,'Kiril Spaseski',1967,NULL),(1249246,'Roya Teymourian',1959,NULL),(1249256,'Larry the Cable Guy',1963,NULL),(1249263,'Margarete Tiesel',1959,NULL),(1249411,'Xiaolu Xue',NULL,NULL),(12494645,'Luna Pamiés',NULL,NULL),(12494646,'Alberto Olmo',NULL,NULL),(1249574,'Phellipe Haagensen',1984,NULL),(1249752,'Edwin Wright',NULL,NULL),(1249995,'Dylan Clark',NULL,NULL),(1250070,'Jeremy Kleiner',NULL,NULL),(1250449,'Zac Nicholson',NULL,NULL),(1250558,'Valeriu Andriuta',1967,NULL),(1250701,'Avner Bernheimer',NULL,NULL),(1250791,'Sterling K. Brown',1976,NULL),(1250933,'Pepa Charro',1977,NULL),(1250935,'Sudeep Chatterjee',NULL,NULL),(1251565,'Gwei Lun-Mei',1983,NULL),(1251606,'Markus Halberschmidt',NULL,NULL),(1251613,'Cerise Hallam Larkin',NULL,NULL),(1252200,'Ivri Lider',1974,NULL),(12523469,'Ching Nakamura',NULL,NULL),(12523606,'Koki Moriyama',NULL,NULL),(1252389,'Jaume Martí',1975,NULL),(1252650,'Marcelo Novais Teles',NULL,NULL),(1252883,'Pierre Proner',NULL,NULL),(12529782,'Ghazal Hakaki',NULL,NULL),(1253217,'Zhaoqi Shi',NULL,NULL),(1253289,'Eloisa Solaas',NULL,NULL),(1253936,'Patrick d\'Assumçao',NULL,NULL),(1254152,'Catherine Walker',1975,NULL),(12541744,'João de Botelho',NULL,NULL),(1254338,'Robert May',NULL,NULL),(1254646,'Yi Lu',1976,NULL),(1254855,'Wing Fan',1980,NULL),(1255001,'Jang So-yeon',NULL,NULL),(1255077,'Itsumi Ôsawa',1966,NULL),(1255565,'Jaume Roures',1950,NULL),(1255590,'Phillip Blackford',NULL,NULL),(1255621,'Kyle Gilman',1980,NULL),(1255711,'Robert Kehoe',NULL,NULL),(1255914,'Kevin Rock',NULL,NULL),(12560062,'Martin Jauvat',NULL,NULL),(1256143,'David Kerr',1967,NULL),(1256147,'Greg Richardson',NULL,NULL),(1256308,'John Bryan',NULL,NULL),(1256362,'David Alexanian',NULL,NULL),(1256532,'Jon Bernthal',1976,NULL),(1256602,'Devon Bostick',1991,NULL),(1256768,'Tracy Chevalier',1962,NULL),(1256806,'Diana Coles',NULL,NULL),(1256846,'Olivier Bugge Coutté',1970,NULL),(1256888,'Karsten Dahlem',1975,NULL),(1257208,'Paulina García',1960,NULL),(1257214,'Maryann Garger',NULL,NULL),(1257282,'Claudia Grazioso',NULL,NULL),(1257352,'Julia Hart',NULL,NULL),(1257362,'Bálint Hegedûs',NULL,NULL),(1257420,'Jakob Ihre',1975,NULL),(1257480,'Rufus Jones',1975,NULL),(1257504,'Osamu Kamei',NULL,NULL),(1257719,'Mercè Llorens',1978,NULL),(1257846,'Aya Matsui',NULL,NULL),(1257849,'Andreas Mattsson',NULL,NULL),(12581086,'Chris Maes',NULL,NULL),(1258258,'Mohamed Rajid',NULL,NULL),(1258312,'Kevin Riepl',NULL,NULL),(1258362,'Adamo Ruggiero',1986,NULL),(1258535,'Pablo Solarz',NULL,NULL),(1258658,'Sara Elizabeth Timmins',NULL,NULL),(1258686,'Joachim Trier',1974,NULL),(1258777,'Eskil Vogt',1974,NULL),(1258797,'Sarah Waters',1966,NULL),(12588647,'Goksin Erdemli',NULL,NULL),(1258908,'Helle le Fevre',NULL,NULL),(1258965,'Craig Borten',NULL,NULL),(1258970,'Russell Brand',1975,NULL),(1259002,'Elliot Cowan',1976,NULL),(1259103,'Shin Koyamada',1982,NULL),(12592912,'Amanda Wendler',NULL,NULL),(12592913,'Libby Alexander',NULL,NULL),(1259300,'Nicolás Sorin',NULL,NULL),(1259475,'Tamara Maloney',NULL,NULL),(1259504,'Mason Novick',1974,NULL),(1259588,'Adam Wilkins',1980,NULL),(1259604,'Marcos Efron',NULL,NULL),(1259616,'Eiko Tanaka',NULL,NULL),(1259686,'Girjashanker Vohra',NULL,NULL),(1259692,'Christina Zeidler',NULL,NULL),(1259728,'Michael Cunningham',1952,NULL),(1259737,'Andrew J. Curtis',NULL,NULL),(1259832,'Jennifer Stone',1993,NULL),(1259871,'John Crowley',1969,NULL),(1259998,'Mike Carey',1959,NULL),(1260407,'Felicia Day',NULL,NULL),(1260544,'Oscar Faura',NULL,NULL),(1260607,'Kimmy Gatewood',NULL,NULL),(1260621,'Hermann Gerstner',1903,1993),(1260728,'Lothar Hellinger',1979,NULL),(1261078,'Linda McDonough',NULL,NULL),(1261186,'Kenji Nojima',1976,NULL),(1261587,'Kelly Stables',1978,NULL),(1261676,'Matías Tikas',NULL,NULL),(1261997,'Justin Hartley',1977,NULL),(1262166,'Ariel Gade',1997,NULL),(1262249,'Johanna Watts',NULL,NULL),(1262626,'Mads Heldtberg',1980,NULL),(12628737,'Kaho Nakamura',NULL,NULL),(1263004,'Liz Jones',NULL,NULL),(1263096,'Ádám Balázs',1973,NULL),(1263280,'Barney Clark',1993,NULL),(1263390,'Pearse Elliott',NULL,NULL),(1263939,'Danielle Panabaker',1987,NULL),(1264352,'Susanna White',1960,NULL),(1264510,'Jamie Lokoff',NULL,NULL),(1264705,'Portia Reiners',1990,NULL),(12647497,'Miranda Hill',NULL,NULL),(1264759,'Alto Reed',1948,2020),(1265067,'50 Cent',1975,NULL),(1265089,'Luke Albright',NULL,NULL),(1265337,'Constance Brenneman',1980,NULL),(1265343,'Ryan Brooks',1978,NULL),(1265348,'Amanda Brown',NULL,NULL),(1265382,'Henrik Busacker',NULL,NULL),(1265485,'Adam Cohen',NULL,NULL),(1265720,'Forugh Farrokhzad',1935,1967),(1265802,'Josh Gad',1981,NULL),(1265901,'Jamie Gross',1983,NULL),(1265913,'Lisa Gunning',NULL,NULL),(1265919,'Soline Guyonneau',NULL,NULL),(1266316,'Eric Leca',NULL,NULL),(1266538,'R.J. Miller',NULL,NULL),(1266607,'Maureen Murphy',NULL,NULL),(1266897,'Johannes Roberts',1976,NULL),(1267013,'Suzanne Seylor',NULL,NULL),(12670642,'Jack Nielen',NULL,NULL),(1267492,'Nathan Alexander',NULL,NULL),(1267515,'Adam Ackland',NULL,NULL),(1267552,'Taraneh Alidoosti',1984,NULL),(1267569,'Francesco Amato',1978,NULL),(12676929,'Suman Adhikary',NULL,NULL),(1267716,'Rodrigo Bellott',NULL,NULL),(1267873,'Simon Brooks',NULL,NULL),(1267888,'Todd Bryanton',NULL,NULL),(1268047,'Christina Cole',1982,NULL),(1268158,'Dania Ramirez',1979,NULL),(1268336,'Thomas Eidson',NULL,NULL),(1268359,'François-Eudes Chanfrault',1974,2016),(1268478,'Christopher Sean',NULL,NULL),(1268534,'Nathalie Gastaldo',NULL,NULL),(1268637,'Daniel Grao',1976,NULL),(1268748,'Tamer Hassan',1968,NULL),(1268888,'Oliver James',1980,NULL),(1268896,'Patrick Jean',NULL,NULL),(1268987,'Evan Kelly',NULL,NULL),(1269047,'Hanno Koffler',1980,NULL),(1269088,'David Kross',1990,NULL),(1269144,'Nick Launay',NULL,NULL),(1269167,'Paul Leary',1957,NULL),(12692313,'Scott Glatt III',NULL,NULL),(1269343,'Kevin Mann',1976,NULL),(1269412,'Anna Maxwell Martin',1977,NULL),(12695419,'Ruben Samuel Sachs',NULL,NULL),(1269541,'Victoria Mora',1959,NULL),(1269723,'Adam Pally',1982,NULL),(1269729,'Jatin Pandit',NULL,NULL),(1269730,'Lalit Pandit',NULL,NULL),(1269733,'Connor Paolo',1990,NULL),(1269867,'Zeljka Preksavec',1960,NULL),(1269929,'Tania Reddin',NULL,NULL),(1269983,'Krysten Ritter',NULL,NULL),(1270009,'Genesis Rodriguez',NULL,NULL),(1270033,'David M. Rosenthal',1969,NULL),(1270209,'Clark Ashton Smith',1893,1961),(1270429,'Adam Tuominen',1980,NULL),(1270504,'A.W. Vidmer',NULL,NULL),(1270585,'Skip Williamson',NULL,NULL),(1270590,'Andreas Wilson',1981,NULL),(1270819,'Brian Nissen',NULL,NULL),(1271154,'Sabina Anzuategui',NULL,NULL),(1271341,'Karyn Bosnak',1972,NULL),(1271759,'Sara Forestier',1986,NULL),(1271827,'Walter Georis',NULL,NULL),(1271832,'Marian Ghenea',NULL,NULL),(1271884,'Kathy Greenberg',NULL,NULL),(1271984,'Blaise Hemingway',1977,NULL),(1272221,'Stijn Koomen',1987,NULL),(1272499,'Anders Matthesen',1975,NULL),(1272540,'Omar Metwally',1974,NULL),(1272660,'Tracy O\'Riordan',NULL,NULL),(1272673,'Rachel Olschan',NULL,NULL),(1272773,'Prachya Pinkaew',1962,NULL),(1272853,'Julien Rappeneau',NULL,NULL),(1273054,'Jum-hee Shin',NULL,NULL),(1273099,'Erik Sommers',NULL,NULL),(1273133,'Marlene Streeruwitz',1950,NULL),(1273148,'Alec Sulkin',1973,NULL),(1273344,'Petra Biondina Volpe',1970,NULL),(1273397,'Wellesley Wild',1972,NULL),(1273456,'Samir Younis',NULL,NULL),(1273697,'Quim Gutiérrez',1981,NULL),(1273781,'Ron Mathews',NULL,NULL),(1273957,'Paula Brancati',1989,NULL),(1274152,'Julie R. Ølgaard',NULL,NULL),(1274442,'Dana Bunescu',1969,NULL),(1274516,'Daniel Handler',1970,NULL),(1274594,'Ehud Yonay',NULL,NULL),(1274602,'Lisa Stewart',1968,NULL),(1274797,'Jessica Barth',1978,NULL),(1275101,'Shannon Chan-Kent',1988,NULL),(1275259,'Alexandra Daddario',1986,NULL),(1275283,'Lucy Davenport',NULL,NULL),(1275326,'Peter Del Vecho',1958,NULL),(1275668,'Peter Gardner',NULL,NULL),(1275670,'Jeremy Garelick',1975,NULL),(1275738,'Ross Godfrey',NULL,NULL),(1276066,'Young-gyu Jang',1968,NULL),(12761107,'Mustafa Yigit',1990,NULL),(1276196,'Vladimir Khrulyov',1941,NULL),(1276349,'Terry Leonard',NULL,NULL),(1276507,'Alex Macqueen',1973,NULL),(1276664,'George Melrod',NULL,NULL),(1276792,'Jordan Murphy',NULL,NULL),(12769957,'Naresh Kumar',NULL,NULL),(1277138,'Marie Raynal',NULL,NULL),(1277177,'Derek Richardson',1976,NULL),(12772188,'Vladimir Solovyov',NULL,NULL),(1277547,'Vineet Kumar Singh',1981,NULL),(1277753,'Tadashi Ueda',NULL,NULL),(1277945,'Chris Westlake',NULL,NULL),(1277963,'The Who',NULL,NULL),(12781524,'Kirsten King',NULL,NULL),(12782134,'John Hitchcock',NULL,NULL),(12782136,'Danny Hall',NULL,NULL),(1278301,'Giovanni Agnelli',NULL,NULL),(1278492,'Britani Bateman',NULL,NULL),(12787121,'Catherine Clinch',NULL,NULL),(12788223,'Harper Taylor',NULL,NULL),(1278865,'Hsiao Yen Chang',1948,NULL),(1278887,'Deborah Chow',NULL,NULL),(1278926,'Silvia Colloca',1977,NULL),(1279081,'Joe Delaney',NULL,NULL),(1279472,'Bruce Gleeson',NULL,NULL),(1279573,'F. Javier Gutiérrez',1973,NULL),(1279638,'Noah Hawley',1967,NULL),(1279669,'Kathleen Hepburn',NULL,NULL),(1279721,'Sharon Horgan',1970,NULL),(1279748,'Eric Hungerford',NULL,NULL),(1279774,'Ulf Israel',NULL,NULL),(1279980,'Krista Kosonen',1983,NULL),(1280085,'Vinnie LaRocksta',NULL,NULL),(1280145,'Lim Soo-jung',1980,NULL),(1280156,'Brian Linse',NULL,NULL),(1280174,'Mike Lobel',1984,NULL),(1280262,'Suzanne Mackie',NULL,NULL),(1280483,'Antoine Monod',NULL,NULL),(1280672,'Nancy Oliver',1955,NULL),(1280733,'Ji-a Park',NULL,NULL),(1280767,'Michael Pecoriello',NULL,NULL),(1280962,'Andreas Richter',1965,NULL),(1281191,'Chris Shafer',NULL,NULL),(1281229,'Hugo Silva',1977,NULL),(1281315,'Mimmi Spång',1973,NULL),(1281343,'Emily Stofle',NULL,NULL),(1281443,'Scott Thorson',1959,NULL),(1281453,'Sarah Timmins',1977,NULL),(1281653,'Xueqi Wang',1946,NULL),(1281893,'Jonathan Harvey',1968,NULL),(1282158,'Hyeon-jeong Kim',NULL,NULL),(1282412,'Stefanie Azpiazu',NULL,NULL),(1282571,'Hans Olav Brenner',NULL,NULL),(1282623,'Sarah Spale',1980,NULL),(1282801,'Asuman Dabak',1970,NULL),(1284081,'Rodrigo Pimentel',1971,NULL),(1284117,'Louis Aimé Augustin Le Prince',1842,1890),(1284306,'Marizel Samson-Martinez',NULL,NULL),(1284450,'Luiz Eduardo Soares',NULL,NULL),(1284464,'Warren P. Sonoda',NULL,NULL),(1284690,'Vladimir Vdovichenkov',1971,NULL),(1284744,'Tianyan Wang',NULL,NULL),(1284845,'Shawn Yue',1981,NULL),(1285082,'Sterling Jones',NULL,NULL),(1285144,'Jean-Pierre Martins',1971,NULL),(1285162,'Matthew Morrison',1978,NULL),(1285303,'Josh Haber',NULL,NULL),(1285596,'James Lavino',NULL,NULL),(1285601,'Pierre Schaeffer',1910,1995),(1285613,'Andrew Jarecki',1963,NULL),(1285750,'Andrew Jimenez',NULL,NULL),(1286060,'Chase Palmer',NULL,NULL),(1286340,'Angela Robinson',1971,NULL),(1286450,'Keith Thompson',NULL,NULL),(1286457,'Ron Halpern',NULL,NULL),(1286491,'Michael Bond',1926,2017),(1286500,'George Wing',NULL,NULL),(1286846,'Ana Paula Cardoso',NULL,NULL),(1286934,'Clayton Cogswell',NULL,NULL),(1286935,'Mariano Cohn',1975,NULL),(1287124,'Gastón Duprat',1969,NULL),(1287232,'Assad Fouladkar',NULL,NULL),(1287521,'Ichirô Ôkouchi',NULL,NULL),(1287602,'Rio Kanno',1993,NULL),(1287636,'Malcolm David Kelley',1992,NULL),(12878979,'Shigeru Andô',NULL,NULL),(1287946,'Dave McVeigh',NULL,NULL),(12881151,'Milk & Bone',NULL,NULL),(1288150,'Jabez Olssen',1975,NULL),(12883055,'The Baozou Family',NULL,NULL),(1288503,'Todd Schulman',NULL,NULL),(12886035,'Olivier Lemaire',NULL,NULL),(1288766,'Phil Traill',1973,NULL),(1288800,'Kai Vaine',NULL,NULL),(1288904,'Mitchell Waxman',NULL,NULL),(1288939,'Carmel Winters',NULL,NULL),(1288961,'Nicolas Wright',NULL,NULL),(1289249,'Alex Levine',NULL,NULL),(1289434,'Emily Blunt',1983,NULL),(1289484,'Jennifer Ferrin',1979,NULL),(1289517,'Kara Holden',NULL,NULL),(1289528,'Norah Jones',1979,NULL),(1289716,'Brant Fraser',NULL,NULL),(1290014,'Christophe Turpin',NULL,NULL),(1290029,'Mirei Oguchi',NULL,NULL),(1290102,'Gwendoline Yeo',1977,NULL),(1290115,'Michael Traynor',NULL,NULL),(1290184,'Don Dixon',NULL,NULL),(1290417,'Felicity Mason',1976,NULL),(1290481,'Danny Roth',NULL,NULL),(1290490,'Clifford Bradley',1974,NULL),(1290515,'Antonio Campos',1983,NULL),(1290567,'Jessica Levin',NULL,NULL),(1290582,'Michael B. Gordon',1976,NULL),(1290786,'Marc Abdelnour',NULL,NULL),(12908457,'Jun Tanaka',NULL,NULL),(12908458,'Tsunekiyo Fujisawa',NULL,NULL),(1290936,'Rafael Arnau',1964,NULL),(1291105,'J.A. Bayona',1975,NULL),(1291145,'Anna Gerb',NULL,NULL),(1291213,'Bergsteinn Björgúlfsson',NULL,NULL),(1291225,'Saul Blinkoff',1972,NULL),(1291227,'Moon Bloodgood',1975,NULL),(12912851,'Kendle Coffey',NULL,NULL),(1291392,'Keith Bunin',NULL,NULL),(1291566,'Nicolas Chartier',NULL,NULL),(1291597,'Joanna Chilcoat',1985,NULL),(1291806,'Christian Danley',NULL,NULL),(1291827,'Dawei Tong',1979,NULL),(1292052,'Gail Egan',NULL,NULL),(1292126,'Mel Fair',NULL,NULL),(1292131,'Lixin Fan',NULL,NULL),(1292366,'Andrew Gernhard',1977,NULL),(1292424,'Brian Gonosey',NULL,NULL),(1292502,'Bingo Gubelmann',NULL,NULL),(1292648,'Matthew Heineman',NULL,NULL),(12926500,'Narutoshi Satô',NULL,NULL),(12927645,'Shigeo Masubuchi',NULL,NULL),(1292863,'Ewa Jastrzebska',1960,NULL),(1292973,'Stefan Kapicic',1978,NULL),(1293044,'Brian Kesinger',NULL,NULL),(1293285,'Ryan Landels',1979,NULL),(1293297,'Stephanie Langhoff',NULL,NULL),(1293367,'Larry Lieber',1931,NULL),(1293644,'Ivan Massagué',1976,NULL),(1293699,'Julie McGauran',NULL,NULL),(1293792,'Christophe Minck',NULL,NULL),(1293863,'Hiroyuki Morita',1964,NULL),(1293885,'Bobby Moynihan',1977,NULL),(1293939,'Abel Nahmias',NULL,NULL),(1294036,'Nima Nourizadeh',NULL,NULL),(1294091,'Eli Olson',NULL,NULL),(1294541,'Judith Rivière Kawa',NULL,NULL),(12946336,'Sami Slimane',NULL,NULL),(1294664,'Ellar Coltrane',1994,NULL),(1294678,'Danielle Sanchez-Witzel',NULL,NULL),(1294961,'Michael Spierig',NULL,NULL),(1294962,'Peter Spierig',NULL,NULL),(12950984,'Jako',NULL,NULL),(1295161,'Florian Tessloff',1978,NULL),(1295171,'Elisa Thiemann',NULL,NULL),(1295321,'Robert Van Norden',NULL,NULL),(1295354,'Gilles Verdiani',1966,NULL),(1296121,'Rob Jenkins',1975,NULL),(1296233,'Álvaro Marenco',1943,2023),(1296461,'Zach Shields',NULL,NULL),(1296554,'Ben Wheatley',1972,NULL),(1296587,'Robin de Jesus',1984,NULL),(1296729,'Jantje Friese',1977,NULL),(1296762,'Macarena Gómez',1978,NULL),(1296967,'Yoko Sakamoto',NULL,NULL),(1296981,'Young-hwa Seo',1968,NULL),(1297015,'Emma Stone',1988,NULL),(1297121,'Joon-dong Lee',NULL,NULL),(1297406,'Jean-Baptiste Morin',NULL,NULL),(1297538,'Agnes Johansen',NULL,NULL),(1297550,'Mridu Chandra',NULL,NULL),(12976663,'Eddie Eriksson Dominguez',NULL,NULL),(1297771,'Céline Garcia',NULL,NULL),(1297907,'Stephen Alpert',1950,NULL),(1298090,'Joe Ballarini',NULL,NULL),(1298134,'Clark Bartram',NULL,NULL),(1298182,'Angela Belyea',NULL,NULL),(1298270,'Brooke Blair',1977,NULL),(1298285,'Anna Blomeier',1978,NULL),(1298542,'Manuel Carballo',NULL,NULL),(1298546,'Michael Carbonaro',1982,NULL),(1298566,'Ben Carson',NULL,NULL),(1298582,'Anna Castillo',1993,NULL),(1298625,'Pauline Chan',NULL,NULL),(1298894,'Jay Dahl',NULL,NULL),(1299011,'Riteish Deshmukh',1978,NULL),(1299268,'Sommer Fain',NULL,NULL),(1299293,'Tamara Feldman',NULL,NULL),(1299421,'Yoshinobu Fujioka',NULL,NULL),(1299423,'Tokuro Fujiwara',NULL,NULL),(1299657,'Robert O. Green',NULL,NULL),(1299680,'Jonathan Raymond',1971,NULL),(1300009,'Adil Hussain',1963,NULL),(1300051,'Tôru Ishii',NULL,NULL),(13000826,'Anh Gelic',NULL,NULL),(1300417,'Zak Kreiter',NULL,NULL),(1300565,'Florence Dormoy',NULL,NULL),(1300606,'Asger Leth',NULL,NULL),(1300620,'Al Danuzio',1988,NULL),(13009154,'Sándor Bodó',NULL,NULL),(1301035,'Rob McKittrick',1973,NULL),(1301113,'Tara Miele',NULL,NULL),(1301190,'Pierre Monnard',NULL,NULL),(1301264,'Brian Mulroney',NULL,NULL),(1301265,'Stine Sonne Munch',1979,NULL),(1301541,'John Palmer',1885,1944),(1301960,'Casidee Riley',1980,NULL),(1302026,'Louis Z. Rollini',NULL,NULL),(1302068,'Bet Rourich',NULL,NULL),(1302165,'René Sampaio',1974,NULL),(1302367,'Toru Shimizu',NULL,NULL),(13024228,'Chika Tôjô',NULL,NULL),(1302591,'Michael Sucsy',1973,NULL),(13026205,'Bethan Roberts',NULL,NULL),(1302735,'Max Thieriot',1988,NULL),(1302939,'Fernando Velázquez',NULL,NULL),(1303155,'Scott Winters',1959,2011),(1303162,'Andreas Wodraschke',1969,NULL),(1303233,'Takayuki Yamada',1983,NULL),(1303246,'Ai Yazawa',1967,NULL),(1303433,'John Abraham',1972,NULL),(1303851,'John Murphy',1980,NULL),(1303857,'Scott Bernstein',NULL,NULL),(1303925,'George Pérez',1954,2022),(1304029,'Appian',95,165),(1304148,'C.C. Beck',1910,1989),(1304386,'Stephen Campbell Moore',1979,NULL),(1304475,'Teresa Ciabatti',1975,NULL),(1304669,'Anthony DiBlasi',NULL,NULL),(1304787,'Emre Erkmen',1975,NULL),(1304824,'Shayna Ferm',NULL,NULL),(1305002,'Jose Mari Goenaga',1976,NULL),(1305192,'Siobhan Hewlett',NULL,NULL),(1305447,'Rich Klubeck',NULL,NULL),(1305598,'Ki-woo Lee',1981,NULL),(1306081,'Yasmin Paige',1991,NULL),(1306189,'Barney Pilling',NULL,NULL),(1306202,'Plutarch',46,122),(13064350,'Raaghav Vinay Shivagange',NULL,NULL),(1306443,'Marcel Sarmiento',NULL,NULL),(1306550,'Kazumi Shirasaka',NULL,NULL),(1306697,'Ursula Strauss',1974,NULL),(1306711,'Suetonius',69,140),(1306785,'Yo La Tengo',NULL,NULL),(13067986,'Priya Kansara',NULL,NULL),(1306819,'Shannon Tindle',NULL,NULL),(1307003,'Paul Wallfisch',1964,NULL),(1307409,'Nicolas Gob',1982,NULL),(1307515,'Daniel Letterle',1979,NULL),(1307564,'Peter Mel',1969,NULL),(13076461,'Yan Meme',1994,NULL),(1307735,'Daniel Tay',1991,NULL),(1307940,'Scarlett Alice Johnson',1985,NULL),(1308026,'Allison Pearson',1960,NULL),(1308259,'Arnold Bucher',1972,NULL),(1308591,'Tobias Walker',NULL,NULL),(1308622,'Chris Fenton',NULL,NULL),(1308660,'Thorben Bieger',NULL,NULL),(1308867,'Doug Brown',NULL,NULL),(1308899,'Mark Hyde',NULL,NULL),(1309148,'Adam Stone',NULL,NULL),(1309286,'David Andrew Goldstein',NULL,NULL),(1309359,'Bryan Barber',NULL,NULL),(1309397,'Benjamin Bellecour',NULL,NULL),(1309423,'Tara Bilkins',NULL,NULL),(1309554,'Giorgio Careccia',NULL,NULL),(1309676,'Bénédicte Couvreur',NULL,NULL),(1309696,'Mike Diesel',NULL,NULL),(1309708,'Leifur B. Dagfinnsson',NULL,NULL),(1309722,'Tobias Datum',NULL,NULL),(1309750,'Haig Demarjian',NULL,NULL),(1309758,'Chauncey Depew',1834,1928),(1309787,'Aaron Dismuke',1992,NULL),(13098444,'Henri Vilbert',NULL,NULL),(1310016,'Brian Geraghty',NULL,NULL),(1310112,'Robin Guthrie',1962,NULL),(1310349,'Bison Katayama',NULL,NULL),(1310368,'Minka Kelly',1980,NULL),(1310451,'Antjie Krog',NULL,NULL),(1310525,'Lee Sun-kyun',1975,NULL),(1310583,'Jianmin Lv',NULL,NULL),(1310709,'Scott Mechlowicz',NULL,NULL),(1310794,'Ramaa Mosley',1978,NULL),(1310825,'Dan The Automator',NULL,NULL),(1310911,'Mark Onspaugh',NULL,NULL),(1310960,'Park Hae-il',1977,NULL),(1311373,'Valter Skarsgård',1995,NULL),(1311684,'Ralf Westhoff',1969,NULL),(1311694,'Letícia Wierzchowski',1972,NULL),(1311708,'Dan Winch',NULL,NULL),(1312270,'Michael Weitz',NULL,NULL),(1312575,'Olivia Wilde',1984,NULL),(1312724,'David Gambino',NULL,NULL),(1312731,'Aurora Guerrero',NULL,NULL),(1312760,'Julie Kirkwood',NULL,NULL),(1312879,'Kim Ima',NULL,NULL),(1312919,'Yann Demange',1977,NULL),(13131782,'Alexis Cohen',NULL,NULL),(1313298,'Rick Whitfield',NULL,NULL),(1313340,'Michael McGowan',1966,NULL),(1313445,'John Cairns',NULL,NULL),(1313799,'Tracy Brimm',NULL,NULL),(1314100,'Christel Dewynter',NULL,NULL),(1314116,'Saul Dibb',1968,NULL),(1314345,'Marie Gade Denessen',1973,NULL),(13143634,'Amie Donald',2010,NULL),(1314401,'Tina Gharavi',1972,NULL),(1314592,'Angelique Hennessy',1982,NULL),(1314964,'Julián Ledesma',NULL,NULL),(1315333,'Arlene Nelson',NULL,NULL),(1315378,'Kayvan Novak',1978,NULL),(13154325,'Sophie Kauer',2001,NULL),(1315434,'Nina Paley',1968,NULL),(1315448,'Melissa Parmenter',NULL,NULL),(1315766,'Daniel Paul Schafer',NULL,NULL),(1315809,'Stephanie Sheh',NULL,NULL),(1315848,'Anja Siemens',NULL,NULL),(1315989,'Yen Tan',1975,NULL),(1315990,'Maurissa Tancharoen',1975,NULL),(1316040,'Pinar Toprak',1980,NULL),(1316072,'Nora Twomey',1971,NULL),(1316290,'Shôji Yonemura',NULL,NULL),(1316418,'Willam Belli',1982,NULL),(1316767,'Dallas Roberts',1970,NULL),(1317046,'Catherine Mangan',NULL,NULL),(1317262,'Jim O\'Hanlon',1970,NULL),(1317447,'Marie-Claude Poulin',NULL,NULL),(1317614,'Josh Mond',NULL,NULL),(1317789,'Jesse Gordon',NULL,NULL),(1317996,'Laura Jennings',NULL,NULL),(13182781,'Carolyn Keene',NULL,NULL),(1318321,'Nadira Babbar',NULL,NULL),(1318457,'James Seymour Brett',NULL,NULL),(1318578,'Tannishtha Chatterjee',1980,NULL),(1318596,'Jemaine Clement',1974,NULL),(1318670,'Vishal Dadlani',1973,NULL),(1318843,'Mark Fergus',NULL,NULL),(1319274,'Troy Kotsur',1968,NULL),(1319382,'Bernd Lichtenberg',1966,NULL),(1319395,'Hoi-Pang Lo',1941,NULL),(1319488,'David Marqués',1972,NULL),(1319490,'Bill Marsilii',NULL,NULL),(1319539,'James Felix McKenney',1968,NULL),(1319591,'Pat Mills',NULL,NULL),(1319618,'Nick Moorcroft',1978,NULL),(1319650,'Julie Atlas Muz',1973,NULL),(1319652,'Kerry Muzzey',NULL,NULL),(1319676,'Barbara Nedeljakova',1979,NULL),(1319709,'Kristin Novak',1980,NULL),(1319757,'Hawk Ostby',NULL,NULL),(13199852,'Rejane Faria',NULL,NULL),(13199854,'Camilla Damião',NULL,NULL),(13199855,'Cícero Lucas',NULL,NULL),(1320016,'Milos Samolov',1974,NULL),(1320089,'Yeong-hie Seo',1980,NULL),(1320131,'Michael Simmonds',NULL,NULL),(1320215,'Jason Stutter',NULL,NULL),(1320355,'Viviane Vanfleteren',NULL,NULL),(13204541,'Peter Steinfeld',NULL,NULL),(1320600,'César Bordón',1961,NULL),(1320827,'Randall Park',NULL,NULL),(1320897,'Tian Jing',1988,NULL),(1320966,'Kim Chapiron',1980,NULL),(13211290,'The Gawain Poet',NULL,NULL),(1321548,'Ulrich Schwarz',NULL,NULL),(1321655,'Christopher Markus',1970,NULL),(1321656,'Stephen McFeely',1970,NULL),(1322121,'Johnny Andersen',NULL,NULL),(1322246,'Josean Bengoetxea',1964,NULL),(13222819,'Rajendra Sapre',NULL,NULL),(1322404,'Byun Hee-Bong',1942,2023),(1322753,'Sam Esmail',1977,NULL),(13229749,'Alex Kister',NULL,NULL),(13229750,'Andrew Long',NULL,NULL),(13229751,'Michelle Strohwig',NULL,NULL),(1323058,'Youree Henley',NULL,NULL),(1323132,'Dena Hysell-Cornejo',NULL,NULL),(1323233,'Mustafa Kamel',NULL,NULL),(1323275,'Gian Keys',NULL,NULL),(1323286,'Kwang-rim Kim',NULL,NULL),(1323287,'Roe-ha Kim',1965,NULL),(1323319,'Aaron B. Koontz',NULL,NULL),(1323496,'Ethel Lung',NULL,NULL),(1323580,'Katherine Mathews',NULL,NULL),(1323822,'Adepero Oduye',NULL,NULL),(1324065,'Maritza Rincón',NULL,NULL),(1324090,'Dean Matthew Ronalds',1976,NULL),(1324179,'Ari Schlossberg',NULL,NULL),(1324397,'Frode Søbstad',NULL,NULL),(13243990,'Anjum Qureshi',NULL,NULL),(13244566,'Brooklyn El-Omar',NULL,NULL),(1324696,'Kamla Yukol',NULL,NULL),(1324960,'S.P. Krause',1969,NULL),(1324984,'Claude Lulé',NULL,NULL),(1325251,'Mariela Díaz',NULL,NULL),(1325419,'Kristen Wiig',1973,NULL),(13258656,'Tina Satter',1974,NULL),(1325865,'Eric Guggenheim',1973,NULL),(1325872,'Megan Martin',NULL,NULL),(1325899,'Travis Knight',1973,NULL),(13260492,'Greg Benedetto',NULL,NULL),(1326263,'Emmanuel Agneray',NULL,NULL),(1326440,'Mark Bonnar',1968,NULL),(1326627,'Cory Koller',1976,NULL),(1326732,'Anaïs Demoustier',1987,NULL),(1326886,'David Patrick Flemming',NULL,NULL),(1327019,'Alison Greenspan',1972,2021),(1327092,'Hitomi Hasebe',1985,NULL),(1327168,'Jorg Ihle',NULL,NULL),(1327219,'Adrien Jolivet',1981,NULL),(1327221,'Styx Jones',NULL,NULL),(1327391,'Laurent Larivière',NULL,NULL),(1327583,'Eleanor McGeary',NULL,NULL),(1327673,'Marq Morrison',NULL,NULL),(1327703,'Yoshihiro Nakamura',1970,NULL),(1328076,'Miyuki Sawashiro',1985,NULL),(1328088,'Némo Schiffman',2000,NULL),(1328163,'Jerry Simpson',NULL,NULL),(1328320,'Guiditta Tornetta',NULL,NULL),(1328334,'Mattias Troelstrup',NULL,NULL),(13283860,'Richard Hull',NULL,NULL),(1328463,'Olle Wirenhed',1971,NULL),(1328566,'Blaine Anderson',NULL,NULL),(1328568,'Munetaka Aoki',1980,NULL),(1328609,'Nicolas Buysse',1975,NULL),(13286169,'Thommy Arena',NULL,NULL),(1328664,'Sergey Frolov',1974,NULL),(1328703,'Mathew Horne',1978,NULL),(1328775,'Daisuke Ono',1978,NULL),(1328859,'Kenjirô Tsuda',1971,NULL),(1328988,'Mika Kikuchi',1983,NULL),(13292055,'Thorne Baker',NULL,NULL),(1329360,'Polly Morgan',NULL,NULL),(1329482,'Bradley J. Fischer',NULL,NULL),(1329894,'Mark Davis',NULL,NULL),(1329898,'Mark Eberle',NULL,NULL),(1329999,'Masaki Adachi',NULL,NULL),(1330162,'Jeb Brody',NULL,NULL),(1330174,'Suzanne Buirgy',NULL,NULL),(1330234,'Brahim Chioua',NULL,NULL),(1330276,'Randy Couture',1963,NULL),(13304160,'J.J. Pfeifer',NULL,NULL),(1330441,'Shûhei Fujisawa',1927,1997),(1330560,'Garrett Hedlund',1984,NULL),(1330621,'Bo Hyde',NULL,NULL),(1330681,'Jun Kaname',1981,NULL),(1330994,'Suresh Nair',NULL,NULL),(1331055,'Tarquin Pack',NULL,NULL),(1331316,'Soko',1985,NULL),(1331326,'Brian Spitz',NULL,NULL),(1331627,'Conor Donovan',NULL,NULL),(1331735,'Ryan Pinkston',1988,NULL),(1331774,'Kevin Shields',1963,NULL),(1331787,'Matthew Tyler',1976,NULL),(1331851,'Kristen Kerr',1974,NULL),(1331951,'David Cairns',NULL,NULL),(13321105,'Julie Edwards',NULL,NULL),(13321106,'Talia Lesser',NULL,NULL),(1332411,'Marco Filiberti',NULL,NULL),(1332451,'Raymond Lam',1979,NULL),(13326651,'Louisa Cliffe',NULL,NULL),(13326855,'Catherine Kidd',NULL,NULL),(1332821,'Eric Weiner',NULL,NULL),(1332844,'Amy Berg',NULL,NULL),(1332962,'Kamran Adl',NULL,NULL),(1333156,'Mlle Barral',NULL,NULL),(1333355,'Janice Burgess',NULL,NULL),(1333357,'Bryan Burk',1968,NULL),(1333759,'Susan Duff',1953,NULL),(1333980,'Tony Gama-Lobo',1972,NULL),(1334045,'Andrew N.S. Glazer',1955,2004),(1334302,'A.E. Housman',1859,1936),(1334396,'Carter Jenkins',1991,NULL),(1334526,'Simon Kinberg',1973,NULL),(13345531,'A.R. Prabhav',NULL,NULL),(1334590,'Ute Krämer',NULL,NULL),(1334869,'Logan Marshall-Green',1976,NULL),(1335025,'Anabela Moreira',1976,NULL),(1335267,'Sharad Kant Patel',NULL,NULL),(1335271,'Gaston Paulin',NULL,1921),(13352773,'Isabelle H. Dayne',NULL,NULL),(1335291,'Missy Peregrym',1982,NULL),(1335296,'Bill Persaud',NULL,NULL),(1335619,'Sanseverino',1962,NULL),(1335650,'Valérie Schermann',NULL,NULL),(1335694,'Ishai Setton',NULL,NULL),(1335704,'Fahadh Faasil',1982,NULL),(1335782,'Valeria Solarino',1979,NULL),(1335784,'Grégoire Solotareff',1953,NULL),(1335875,'Sukumar',1971,NULL),(1335996,'Ane Dahl Torp',1975,NULL),(1335999,'Julia Tortolano',NULL,NULL),(1336069,'Stéphane Varupenne',NULL,NULL),(1336074,'Asle Vatn',NULL,NULL),(1336359,'Iván Benavides',NULL,NULL),(1336500,'Stephen Hamel',NULL,NULL),(1336538,'Brian Kaplan',NULL,NULL),(1336595,'Demetri Martin',1973,NULL),(13367539,'Makoto Motohashi',NULL,NULL),(13367540,'Keiko Koike',NULL,NULL),(13369146,'Kas Elvirov',NULL,NULL),(1337238,'Robert Ivison',NULL,NULL),(1337350,'Jay Ellis',1981,NULL),(1337885,'Jeff Baena',1977,NULL),(1337894,'Rebecca May',NULL,NULL),(1337936,'Anthony Anderson',NULL,NULL),(1338122,'Robert Humphreys',NULL,NULL),(13381717,'Jamie Trouncelle',NULL,NULL),(1338409,'Michelle Barthel',1993,NULL),(1338532,'The Lady Bunny',1962,NULL),(1338587,'Pritam Chakraborty',1971,NULL),(1338640,'Arnau Valls Colomer',1978,NULL),(1338811,'Rick Elice',NULL,NULL),(1338869,'Chad Fifer',NULL,NULL),(1339000,'Deborah Gregory',NULL,NULL),(1339041,'Brady Hallongren',1976,NULL),(1339080,'Daniel Hernandez Rodriguez',NULL,NULL),(1339223,'Ty Simpkins',2001,NULL),(1339257,'Huan-Ru Ke',1980,NULL),(1339400,'Philippa Lowthorpe',NULL,NULL),(1339604,'Susanna Nicchiarelli',1975,NULL),(13396806,'Dakota Beavers',NULL,NULL),(1339835,'Scott Rockenfield',1963,NULL),(1339985,'Hardesh Singh',1976,NULL),(1340000,'Juliet Snowden',NULL,NULL),(1340118,'Elias Toufexis',NULL,NULL),(1340424,'Anthony Flanagan',1972,NULL),(1340638,'Ricky Whittle',1981,NULL),(1341146,'Nina Yang Bongiovi',NULL,NULL),(1341252,'Annie Brunner',1969,NULL),(1341523,'Nicholas Brown',NULL,NULL),(1341735,'David Magee',1962,NULL),(13418482,'Afra',NULL,NULL),(13419308,'Yoshimasa Terui',NULL,NULL),(1342065,'Richard Chizmar',NULL,NULL),(1342123,'Carl Craig',1956,NULL),(1342287,'Perry Eriksen',NULL,NULL),(1342292,'Benjamin Esdraffo',1972,NULL),(1342398,'Evgueni Galperine',1974,NULL),(1342473,'Ethan Gross',NULL,NULL),(1342513,'Shanola Hampton',NULL,NULL),(1342727,'Skandar Keynes',1991,NULL),(1342743,'Matthew Knight',1994,NULL),(1342890,'Gaëlle Macé',NULL,NULL),(1342905,'Mariana Malamud',NULL,NULL),(1342923,'Lalit Marathe',NULL,NULL),(1342938,'Marika Mashburn',NULL,NULL),(1343042,'Matthew Montgomery',1978,NULL),(1343100,'James Nguyen',1966,NULL),(1343171,'Hans-Jørgen Osnes',1972,NULL),(1343270,'T.W. Porrill',NULL,NULL),(1343355,'Meghan C. Rogers',NULL,NULL),(1343394,'Josh Safdie',1984,NULL),(1343442,'Zoltán Schneider',1970,NULL),(1343477,'Sameer Sharma',NULL,NULL),(1343759,'Paul Vicknair',NULL,NULL),(1343803,'James L. White',1947,2015),(1344075,'Marc Lévy',1961,NULL),(1344302,'Rachel House',1971,NULL),(1344470,'Ben Howe',NULL,NULL),(1344477,'Chris Maxwell',NULL,NULL),(1344784,'Gary Gilbert',NULL,NULL),(1344786,'Kynan Griffin',1979,NULL),(13448307,'Eleanor De Swaef-Roels',NULL,NULL),(1344991,'Sarah Henderson',NULL,NULL),(1345020,'Jeff Gibbs',NULL,NULL),(1345076,'Stephen Hughes',1958,NULL),(1345229,'Paul J. Smith',1906,1985),(1345246,'Carol Morley',1966,NULL),(1345585,'Sergio Barrejón',1973,NULL),(1345685,'Adrian Bouchet',NULL,NULL),(1345733,'Philipp Budweg',NULL,NULL),(1345765,'Cairo Cannon',NULL,NULL),(1345806,'Christophe Cervoni',NULL,NULL),(1345884,'Juan Pablo Compaired',NULL,NULL),(1345932,'Edward Chen',NULL,NULL),(1346203,'György Fülöp',NULL,NULL),(1346230,'Edi Gathegi',1979,NULL),(1346273,'Benoit Gob',NULL,NULL),(1346566,'Luci Y. Kim',NULL,NULL),(1346713,'Paco León',1974,NULL),(1346804,'Thomas Marchand',NULL,NULL),(1346859,'Soleil McGhee',NULL,NULL),(1347093,'Gorka Otxoa',1979,NULL),(1347151,'Frank Pérez-Garland',NULL,NULL),(1347153,'Tyler Perry',1969,NULL),(1347316,'Elvin Ross',NULL,NULL),(1347595,'Justin Taurand',NULL,NULL),(13480832,'Camille Davis',NULL,NULL),(1348102,'Sam Lerner',1992,NULL),(1348210,'John Romita Jr.',1956,NULL),(1348219,'Tim Sale',1956,2022),(13483791,'Ken Lo',NULL,NULL),(13484283,'Tyler Osborne',NULL,NULL),(1348545,'Andy Garfield',1974,NULL),(1348661,'Joann Estoesta',1968,NULL),(1349347,'Matt Patterson',1979,NULL),(1349376,'Francis Lawrence',1971,NULL),(1349387,'Mark Elliott',NULL,NULL),(1349522,'Jonathan Levine',NULL,NULL),(1349707,'Vessela Banzourkova',NULL,NULL),(1349818,'Anna Boden',1979,NULL),(1349986,'Giovanna Chesler',NULL,NULL),(1350158,'Ryan Denmark',NULL,NULL),(1350209,'Carlos Domeque',NULL,NULL),(1350461,'Ole Giæver',1977,NULL),(1350938,'Aimee Lagos',NULL,NULL),(1351041,'Joyce Liu',NULL,NULL),(1351254,'Josh Miller',1978,NULL),(1351337,'Nam Na-young',NULL,NULL),(1351446,'Zach Passero',NULL,NULL),(1351557,'Molly Prather',NULL,NULL),(1351597,'David Raedeker',NULL,NULL),(1351784,'M.G. Sathya',NULL,NULL),(1351987,'Alyson Stoner',1993,NULL),(1352147,'Ana Turpin',1978,NULL),(1352459,'Pat Casey',NULL,NULL),(1352737,'Igor Perovic',NULL,NULL),(1352881,'Blake Woodruff',1995,NULL),(1352905,'Courtney Bell',1978,NULL),(1353095,'Mariko Tsutsui',1960,NULL),(1353170,'Philippe Leclerc',NULL,NULL),(1353534,'Karl Richards',1973,NULL),(1353543,'Adam Sherman',NULL,NULL),(1353719,'Angela White',NULL,NULL),(1353826,'Rick Montgomery Jr.',NULL,NULL),(1353930,'Kevin Kennedy',NULL,NULL),(1353945,'Nicolas Brown',NULL,NULL),(1353967,'Gregg Alexander',1972,NULL),(1353974,'Scott Humphrey',NULL,NULL),(1354139,'Jason Hoffs',NULL,NULL),(1354224,'Shôko Aida',1970,NULL),(1354245,'Allakariallak',NULL,1924),(1354449,'Henri Blomberg',NULL,NULL),(13545005,'Rita Maye Bland',NULL,NULL),(1354576,'Joseph Campanale',NULL,NULL),(1354901,'Leigh Dunlap',NULL,NULL),(1355028,'Erik Forssell',NULL,NULL),(1355122,'Guy Gibson',1918,1944),(13552091,'Sajjad Dolati',NULL,NULL),(1355643,'Jeppe Beck Laursen',1972,NULL),(1355781,'Sandie Malia',NULL,NULL),(1356270,'Shridhar Raghavan',NULL,NULL),(1356588,'Stefano Sollima',1966,NULL),(13567262,'Kit Erhart-Bruce',NULL,NULL),(1356853,'Monica Viegas',NULL,NULL),(1356951,'Alice Winocour',1976,NULL),(1357512,'Sarah Alles',1986,NULL),(1357722,'Laura Smet',1983,NULL),(1358156,'Daniel Baur',NULL,NULL),(1358354,'Andy Bellin',NULL,NULL),(1358355,'Kevin Bisch',NULL,NULL),(1358357,'Kate Brooke',NULL,NULL),(1358381,'Dyan Sheldon',NULL,NULL),(1358539,'Jennifer Carpenter',1979,NULL),(1358613,'Christopher Browne',NULL,NULL),(1358626,'Roy Firestone',NULL,NULL),(1358789,'Dan Abrams',NULL,NULL),(1358793,'Michael Casey',NULL,NULL),(1358798,'Matt Harris',NULL,NULL),(1359191,'Cam Cannon',1970,NULL),(1359555,'Jennifer Friedes',NULL,NULL),(1359837,'Takurô Ishizaka',NULL,NULL),(1360047,'Daniel Küblböck',1985,2018),(1360071,'Derek Landy',NULL,NULL),(1360206,'Kazuki Manabe',NULL,NULL),(1360270,'Ben McKenzie',1978,NULL),(1360299,'M. Raven Metzner',NULL,NULL),(1360311,'Clément Miserez',NULL,NULL),(1360372,'Susumu Nakazawa',NULL,NULL),(1360441,'Sayaka Ôhara',NULL,NULL),(13604595,'Ji-yeon Kim',NULL,NULL),(1360538,'Erin Ploss-Campoamor',1972,NULL),(1360648,'The Ritz Brothers',NULL,NULL),(1360837,'Dan Renton Skinner',1973,NULL),(13613139,'Shakir Aibani',NULL,NULL),(1361530,'Steve Oram',1973,NULL),(1361864,'Toby Harvard',NULL,NULL),(1362282,'Dan Levine',NULL,NULL),(1362292,'Laurent Rodon',NULL,NULL),(1362432,'Jérôme Salle',1971,NULL),(1362570,'Joe Lynch',NULL,NULL),(1362905,'Craig Wright',NULL,NULL),(1362928,'Giuseppe Sacco Albanese',1872,1943),(1362962,'Jake Andolina',NULL,NULL),(1362989,'Luis Armando Arteaga',NULL,NULL),(1363111,'Max Botkin',NULL,NULL),(1363250,'Gabriela Cowperthwaite',NULL,NULL),(1363452,'Matty Finochio',1985,NULL),(1363595,'Dan Harmon',1973,NULL),(1363611,'Keith Heffner',NULL,NULL),(1363860,'Sandro Lavezzi',NULL,NULL),(1363931,'Todd Luoto',NULL,NULL),(1363967,'Laura Margolis',NULL,NULL),(1363997,'Johanna McCloy',NULL,NULL),(1364145,'Pierre Nisse',NULL,NULL),(1364182,'Wesley A. Oliver',NULL,NULL),(1364232,'Jamie Patricof',NULL,NULL),(1364280,'Damion Poitier',NULL,NULL),(1364521,'Zohar Strauss',1972,NULL),(1364532,'Ryan Simpkins',1998,NULL),(1364790,'Hugh Welchman',NULL,NULL),(1364905,'Greg Ayres',1968,NULL),(1365209,'Jessica Boone',1984,NULL),(1365460,'Julia Benson',1979,NULL),(1365515,'Sean Covel',1976,NULL),(1365879,'Morgan Neville',1967,NULL),(1365883,'Jonathan Goldsmith',NULL,NULL),(1366028,'Kim Byeong-Ok',1960,NULL),(1366137,'Michael Cavanaugh',NULL,NULL),(1366269,'Sean O\'Connor',NULL,NULL),(1366397,'Abel Ayala',1988,NULL),(1366451,'Stephen Belafonte',NULL,NULL),(1366568,'Radivoje Bukvic',1979,NULL),(1366612,'Hugo Castro Fau',1966,NULL),(13666732,'Mehdi Nt',1998,NULL),(1366813,'Juan Pablo Domenech',NULL,NULL),(1367246,'Kang Hye-jeong',1982,NULL),(1367409,'Joon-hyung Lim',NULL,NULL),(1367410,'Syd Lim',NULL,NULL),(1367450,'Desi Lydic',1981,NULL),(1367490,'Bruna Marquezine',1995,NULL),(13677438,'Jawad Outoui',NULL,NULL),(13677439,'Elyes Dkhissi',NULL,NULL),(1367893,'Anne Rosellini',NULL,NULL),(1367927,'Ben Salisbury',NULL,NULL),(1367957,'Shiro Sato',NULL,NULL),(1368026,'Sam Schreiber',NULL,NULL),(1368309,'Henry Winterstern',NULL,NULL),(1368557,'Yui Ichikawa',1986,NULL),(1369071,'Paula Farias',NULL,NULL),(1369364,'Jo-yun Hwang',NULL,NULL),(1369571,'Joe Stapleton',1963,2018),(1369705,'Gary Chapman',NULL,NULL),(1369708,'Patrick Gilmore',NULL,NULL),(1369715,'Bill Oliver',NULL,NULL),(1369721,'Emily Young',1970,NULL),(1369800,'Aaron Katz',1981,NULL),(1369977,'Marty Adelstein',NULL,NULL),(13700352,'P.J. Grethe',NULL,NULL),(1370044,'Maria Teresa Arida',NULL,NULL),(1370108,'Mickey Barold',NULL,NULL),(1370204,'Anna Bolshova',1976,NULL),(1370269,'Max Burkholder',1997,NULL),(1370485,'Vladislav Delay',NULL,NULL),(1370487,'Aimee Denaro',NULL,NULL),(13704883,'Jack Carberry',NULL,NULL),(1370488,'Rachel Dengiz',NULL,NULL),(1370494,'Eric Deulen',1986,NULL),(1370718,'Jamie Brett Gabel',NULL,NULL),(1370830,'Joe Gressis',NULL,NULL),(1371172,'Erlend Kristoffersen',NULL,NULL),(13711911,'Didi Trone',1998,NULL),(1371243,'Mo-gae Lee',NULL,NULL),(1371376,'Menotti',1965,NULL),(1371432,'Elias McConnell',NULL,NULL),(1371473,'Maureen Meulen',NULL,NULL),(1371521,'Chris Mraovich',NULL,NULL),(1371523,'Robert Mraovich',NULL,NULL),(1371524,'Sam Mraovich',1976,NULL),(1371529,'Moon Geun-young',1987,NULL),(1371924,'Yoshiki Sakurai',NULL,NULL),(1372280,'Jeffrey Travis',NULL,NULL),(1372450,'Fredrik Wikström',NULL,NULL),(1372570,'Lily Atkinson',NULL,NULL),(1372575,'Brendon Baerg',1998,NULL),(13726862,'Fengxishenlei',NULL,NULL),(1372713,'Alex Frost',1987,NULL),(1372715,'Aaron Gaffey',NULL,NULL),(1372721,'Matthew Alan',NULL,NULL),(1372788,'Shahid Kapoor',1981,NULL),(1373129,'Toni Gonzaga',1984,NULL),(1373275,'Kathy Valentine',1959,NULL),(13732901,'Michael Vale',NULL,NULL),(1373347,'Phil Garcia',NULL,NULL),(1373352,'John Paesano',1977,NULL),(1373794,'Alex Orr',1979,NULL),(1373865,'Michael Pye',NULL,NULL),(1373910,'Nicky Bell',NULL,NULL),(13739729,'Jiannis Moustos',NULL,NULL),(1374328,'Akira Nakano',NULL,NULL),(1374347,'Marc Achenbach',1976,NULL),(1374747,'Yung Chang',1977,NULL),(1374751,'Régine Chassagne',1976,NULL),(1374769,'Sanjoy Chowdhury',NULL,NULL),(1374934,'Natalia Dittrich',NULL,NULL),(1374980,'Zac Efron',1987,NULL),(1375020,'Alex Etel',1994,NULL),(1375024,'Alejandro Fadel',1981,NULL),(1375030,'Simon Farnaby',1973,NULL),(1375125,'Dariusz Gajewski',1964,NULL),(1375204,'János Greifenstein',1962,NULL),(1375303,'Francisco Hervé',NULL,NULL),(1375330,'Henry Hopper',1990,NULL),(1375358,'Jon Hurwitz',1977,NULL),(1375363,'Hwang Dong-hyuk',NULL,NULL),(1375441,'Ai Kago',1988,NULL),(1375777,'Martín Mauregui',1980,NULL),(1375877,'Juan Minujín',1975,NULL),(1375888,'Stig-Werner Moe',NULL,NULL),(1375978,'Jarkko Niemi',1984,NULL),(1376062,'Hubbel Palmer',NULL,NULL),(1376076,'G. Ross Parker',NULL,NULL),(13762864,'M Chandramouli',NULL,NULL),(1376383,'Hayden Schlossberg',1978,NULL),(13764318,'Catarina André',NULL,NULL),(13764320,'Feliciana Délcia Guia',NULL,NULL),(13764321,'Vitória Adelino Dias Soares',NULL,NULL),(1376482,'Lucila Solá',1976,NULL),(1376566,'Katherine Brim',1976,NULL),(1376997,'Jon Campling',1966,NULL),(1377027,'Chuck Denson Jr.',NULL,NULL),(1377076,'Benjamin Gourley',1978,NULL),(1377114,'Jim Howick',1979,NULL),(1377207,'Santiago Mitre',1980,NULL),(1377265,'Darius Rose',NULL,NULL),(1377375,'Rachel Bilson',1981,NULL),(1377431,'Carrie Finn',1988,NULL),(1377478,'Jesse Jane',1980,NULL),(1377561,'Laura Ramsey',1982,NULL),(1377744,'Kelly Bush Novak',NULL,NULL),(1377990,'Lina Wong',1979,NULL),(1378004,'David Bartis',NULL,NULL),(1378037,'Adrián Solar',NULL,NULL),(1378206,'Vy Vincent Ngo',NULL,NULL),(1378218,'J Barton',NULL,NULL),(1378320,'Aaron Abrams',1978,NULL),(1378431,'Michael Bennett',1943,1987),(1378478,'Carl Garrison',NULL,NULL),(1378553,'Craig Russell',1977,NULL),(1378573,'Jordan Taylor',NULL,NULL),(1378626,'Nicole George',NULL,NULL),(1378650,'Brenna O\'Brien',1991,NULL),(1378816,'Chad R. Davis',1977,NULL),(1378833,'Raquel Fernández Nuñez',1972,NULL),(1379002,'David Robert Mitchell',1974,NULL),(1379025,'Jeff Barnett',NULL,NULL),(1379081,'Sarah Smith',NULL,NULL),(1379108,'Yasmin Ahmad',1958,2009),(1379288,'Bénédicte Bellocq',NULL,NULL),(1379544,'Michèle Caucheteux',NULL,NULL),(1379619,'Eoin Colfer',1965,NULL),(1379745,'Pablo Derqui',1976,NULL),(1379819,'Marielle Duigou',NULL,NULL),(1379893,'Knut Schreiner',1974,NULL),(1379938,'Travis Fimmel',1979,NULL),(1380270,'Brad Hennig',NULL,NULL),(1380395,'Glendyn Ivin',NULL,NULL),(1380786,'Diego Macho Gómez',NULL,NULL),(1380882,'Jack McElhone',1994,NULL),(13808986,'Adam Benjamin',NULL,NULL),(1381050,'C.K. Muraleedharan',NULL,NULL),(1381100,'Kyle Newman',1976,NULL),(13815185,'Jenna Evans Welch',NULL,NULL),(1381694,'Spice Girls',1994,NULL),(13817447,'Hrant Ahanisyan',NULL,NULL),(1381758,'Pooja Ladha Surti',NULL,NULL),(1381841,'Naoyuki Tomomatsu',1967,NULL),(1382072,'Tommy Wiseau',NULL,NULL),(1382207,'Robert Hoffman',1985,NULL),(1382242,'Michelle Morgan',1981,NULL),(1382417,'Joseph Friend',NULL,NULL),(1382799,'Juliette Danielle',1980,NULL),(1383048,'Pierre Aviat',NULL,NULL),(1383059,'Andre Matthias',NULL,NULL),(1383078,'Jim Kehoe',NULL,NULL),(1383079,'Todd Kessler',NULL,NULL),(1383301,'Adam Leon',NULL,NULL),(1383547,'Dan Sturman',NULL,NULL),(1383548,'Eric Tannenbaum',1963,NULL),(1383738,'Brian Kehoe',NULL,NULL),(1383745,'Jason Sherman',1962,NULL),(1383748,'Francis Wallace',1894,1977),(1383983,'Dimitar Banenkin',NULL,NULL),(1384079,'Dylan Vox',NULL,NULL),(1384130,'Black Rebel Motorcycle Club',NULL,NULL),(1384267,'David Buckley',NULL,NULL),(1384440,'Marc Chouarain',NULL,NULL),(1384462,'Zach Clark',1982,NULL),(1384503,'Christian Colson',NULL,NULL),(1384611,'McKay Daines',NULL,NULL),(1384653,'John Arthur Davies',NULL,NULL),(1384878,'Sofian El Fani',NULL,NULL),(1385003,'Dean Fisher',NULL,NULL),(1385080,'Chi-Keung Fung',NULL,NULL),(1385225,'Everardo González',1971,NULL),(1385280,'Guillermo Guareschi',NULL,NULL),(1385432,'Cédric Hervet',NULL,NULL),(13857303,'Lucas Paul',NULL,NULL),(13857304,'Dali Rose Tetreault',NULL,NULL),(1385754,'Paul Kewley',NULL,NULL),(1385761,'Barron Kidd',NULL,NULL),(1385871,'Olga Kurylenko',1979,NULL),(1385922,'Bryan Larkin',NULL,NULL),(1385954,'Byung-hoon Lee',NULL,NULL),(1386009,'Eric Lin',NULL,NULL),(1386177,'Galilé Marion-Gauvin',NULL,NULL),(13862694,'Hanna Sobolyeva',NULL,NULL),(1386280,'Sean McElwee',NULL,NULL),(13864133,'Bee \'Fruitmasseuse\' L',NULL,NULL),(1386575,'Athar Nawaaz',NULL,NULL),(1386645,'Oscar Nuñez',1958,NULL),(1386659,'Emily O\'Brien',1985,NULL),(13873020,'Jon Santo',NULL,NULL),(1387362,'Josh Silfen',1978,NULL),(1387379,'Rob Simonsen',1978,NULL),(1387503,'Martha Stephens',1984,NULL),(1387613,'Kazuhisa Takenouchi',NULL,NULL),(13877751,'Ava Zaria Lee',NULL,NULL),(1387794,'Gábor Valcz',1969,NULL),(1387977,'Zoë White',NULL,NULL),(1387981,'Rhett Wickham',NULL,NULL),(13880622,'Harman H',NULL,NULL),(1388067,'Natasha Yarovenko',1979,NULL),(1388074,'Tony Jaa',1976,NULL),(1388136,'Diane Zurn',NULL,NULL),(1388183,'Hildegard von Bingen',1098,1179),(1388927,'Miranda Cosgrove',1993,NULL),(1389025,'Byambasuren Davaa',1971,NULL),(1389141,'Ben Dobyns',1978,NULL),(1389342,'Anna Fischer',1986,NULL),(1389536,'Michael Goldfine',NULL,NULL),(1390115,'Harish Khanna',NULL,NULL),(1390122,'Kim Hae-sook',1955,NULL),(1390614,'Jennette McCurdy',1992,NULL),(1390780,'Jason Moran',NULL,NULL),(1391139,'Manuel Pinto',NULL,NULL),(13911912,'Michael Weber',NULL,NULL),(1391252,'Haley Ramm',1992,NULL),(1391322,'Nathan Rice',NULL,NULL),(1391438,'George Rush',NULL,NULL),(1392075,'Juri Ueno',1986,NULL),(1392106,'Matt Vancil',1977,NULL),(1392135,'Thibault Verhaeghe',NULL,NULL),(1392282,'Todd Wilderman',NULL,NULL),(1392352,'JoJo Wright',NULL,NULL),(1392363,'Kôji Yamamoto',NULL,NULL),(1392388,'Elodie Yung',1981,NULL),(1392994,'Amma Asante',1969,NULL),(1393214,'Brandon Broussard',NULL,NULL),(1393297,'James Chapple',NULL,NULL),(1393354,'Kristen Connolly',1980,NULL),(1393443,'Jamie Delano',1954,NULL),(1393530,'Ivan Engler',NULL,NULL),(1393806,'Gábor Harmat',NULL,NULL),(1393878,'Viktória Horváth',NULL,NULL),(1393967,'Wanuri Kahiu',1980,NULL),(1394062,'Jon Knautz',1979,NULL),(1394607,'Borja Pena',NULL,NULL),(1394761,'Cindi Rice',NULL,NULL),(1394880,'Gabriel Scotti',NULL,NULL),(1394908,'Abigail McCarthy',NULL,NULL),(1395602,'Allen Leech',1981,NULL),(1395771,'Lucas Till',1990,NULL),(1395855,'Simone Missick',1982,NULL),(1395864,'Angela Dixon',NULL,NULL),(1396022,'Anna Torv',1979,NULL),(1396048,'Dave Filoni',1974,NULL),(1396104,'Anthony Byrne',1975,NULL),(1396106,'John Chua',NULL,NULL),(1396121,'Makoto Shinkai',1973,NULL),(1396390,'Matthew Kaplan',NULL,NULL),(1396395,'Tom Lassally',NULL,NULL),(1396406,'Jong-yun No',NULL,NULL),(13964200,'Nazareno Obregón Nieva',NULL,NULL),(1396424,'Robert Velo',1976,NULL),(1396561,'Jeff Cheung',NULL,NULL),(1396563,'Alicia Erian',NULL,NULL),(1396574,'Peter Scheerer',1973,NULL),(1396611,'Mike Henry',1965,NULL),(1396906,'Alejandro Pérez',NULL,NULL),(1397090,'Paul Welsh',NULL,NULL),(1397301,'Anurag Basu',1974,NULL),(1397313,'The Beatles',NULL,NULL),(1397320,'The Bee Gees',NULL,NULL),(1397399,'Guillaume Bouchède',NULL,NULL),(1397455,'Blair Butler',1978,NULL),(1397579,'Ben Coccio',1975,NULL),(13977613,'Kim Dearborn',NULL,NULL),(1397781,'Doug Emmett',NULL,NULL),(1397787,'Ben Epstein',NULL,NULL),(1398053,'Kyoko Hasegawa',1978,NULL),(1398578,'Blake Masters',NULL,NULL),(1398632,'Surapong Mekpongsathorn',NULL,NULL),(1398795,'Naoto Ohshima',1964,NULL),(1398885,'Zorana Petrov',1976,NULL),(1399188,'Sutapa Sikdar',1967,NULL),(1399205,'Sirisin Siripornsmathikul',NULL,NULL),(1399243,'Sonu Sood',1973,NULL),(1399266,'Jamie Starr',NULL,NULL),(1399356,'Tenmon',NULL,NULL),(1399714,'Scott Beck',1984,NULL),(1399770,'David Dencik',1974,NULL),(1399925,'Kenta Miyake',1977,NULL),(1399980,'Benjamin Ramon',1979,NULL),(1400299,'Mika Shinohara',NULL,NULL),(1400397,'Gemma Fauria',NULL,NULL),(1400425,'Christine Angot',NULL,NULL),(1400426,'Daniel Barnz',NULL,NULL),(1400430,'Hideki Kamiya',1970,NULL),(1400438,'David Thies',NULL,NULL),(1400445,'Adam Nielsen',1974,NULL),(1400761,'Rene Ezra',1971,NULL),(1400764,'Nick Goldsmith',1971,NULL),(1400785,'Tomas Radoor',1974,NULL),(1400933,'Damian O\'Hare',1977,NULL),(1400959,'Mary Olson-Kromolowski',NULL,NULL),(1401131,'Bob Bowen',NULL,NULL),(1401136,'Tom King',1968,NULL),(1401178,'Keith Wilson',NULL,NULL),(1401416,'Dana Fox',1976,NULL),(1401425,'Davey Robertson',NULL,NULL),(1401432,'Zaraah Abrahams',1987,NULL),(1401531,'Diora Baird',1983,NULL),(1401580,'Magnus Beite',1974,NULL),(1401678,'Bradley Bredeweg',1976,NULL),(1401737,'Albert Calleros',1969,NULL),(1401752,'Dwayne Carey-Hill',NULL,NULL),(1401780,'Adam Catino',1981,NULL),(1401803,'Naveen A. Chathapuram',NULL,NULL),(1401820,'Charlotte Bruus Christensen',1978,NULL),(1401827,'Michelle Chydzik Sowa',NULL,NULL),(1402066,'Diego Farias',NULL,NULL),(1402180,'Jacob Gentry',1977,NULL),(1402187,'Sarah Geronimo',1988,NULL),(1402202,'Julian Gilbey',1975,NULL),(1402203,'Will Gilbey',1979,NULL),(1402259,'Bradley Trevor Greive',NULL,NULL),(1402546,'Sibel Kekilli',1980,NULL),(1402702,'Andréas Lennartsson',1973,NULL),(1402732,'Konstantin Listov',1900,1983),(1402904,'Naushil Mehta',NULL,NULL),(1402995,'Alexander Motlagh',1977,NULL),(1403225,'Alexei Popogrebsky',1972,NULL),(1403599,'Drago Sumonja',1975,2020),(1403667,'Antony Thekkek',NULL,NULL),(14038074,'Rohit Sangwan',NULL,NULL),(1404137,'Chris Johnson',1977,NULL),(1404239,'Evan Peters',1987,NULL),(1404408,'Alice Eve',1982,NULL),(1404488,'AJ Michalka',1991,NULL),(1404505,'María Onetto',1966,2023),(1404553,'Ashleigh Sumner',1979,NULL),(1404665,'James S. Baker',NULL,NULL),(1404741,'Jeff Grace',NULL,NULL),(1404824,'Laura Marano',1995,NULL),(1404825,'Vanessa Marano',1992,NULL),(14051125,'Caitlin Zerra Rose',NULL,NULL),(1405206,'Oscar Orlando Torres',1971,NULL),(1405359,'Imran Khan',1983,NULL),(1405398,'Dan Stevens',1982,NULL),(1405911,'Nate Atkins',1978,NULL),(1406239,'Warren Christie',1975,NULL),(1406277,'Shakim Compere',NULL,NULL),(1406333,'Ian Anthony Dale',1978,NULL),(1406689,'Leland Gray',NULL,NULL),(1406764,'Noah Harpster',NULL,NULL),(1406792,'Parisa Fitz-Henley',1977,NULL),(1407651,'Scott Poythress',1976,NULL),(1407728,'Katie Rice',1981,NULL),(1407823,'Elise Salomon',NULL,NULL),(1407934,'Wu Si',NULL,NULL),(1408253,'Linda Wassberg',NULL,NULL),(1408415,'The Band',NULL,NULL),(1408629,'Devin McGinn',NULL,NULL),(1409101,'Chris Maris',1962,NULL),(1409133,'Jeremiah Munce',NULL,NULL),(1409381,'Willy Roberts',NULL,NULL),(1409802,'Simon Armstrong',NULL,NULL),(1409857,'Rodrigo Balart',NULL,NULL),(1409877,'R.D. Bansal',1923,2010),(1409881,'Yuval Barazani',NULL,NULL),(1410028,'Pierre Bismuth',1953,NULL),(1410076,'Nathalie Boltt',1973,NULL),(1410105,'AJ Bowen',1977,NULL),(1410159,'David Bruckner',NULL,NULL),(1410190,'Breehn Burns',1975,NULL),(14103040,'Rachel Ridley',NULL,NULL),(14103041,'Spidey',NULL,NULL),(1410377,'Colley Cibber',1671,1757),(1410462,'Gabriel Cowan',1973,NULL),(1410815,'Asghar Farhadi',1972,NULL),(1410940,'Lily Franky',1963,NULL),(1411125,'Selena Gomez',1992,NULL),(1411347,'Don Heck',1929,1995),(1411398,'Martin Herron',NULL,NULL),(1411461,'Charles Holloway',NULL,NULL),(1411540,'Asami Imai',1977,NULL),(1411546,'José María Irisarri',NULL,NULL),(1411676,'Mindy Kaling',1979,NULL),(1411893,'Maciej Lagodzinski',1988,NULL),(1411972,'Alex Lehmann',NULL,NULL),(1411980,'Andrew Leman',NULL,NULL),(1412298,'Aaron McGruder',1974,NULL),(1412545,'Oleg Mutu',1972,NULL),(1412974,'Glen Powell',1988,NULL),(1413026,'RCB',NULL,NULL),(1413205,'Amanda Rosbrook',NULL,NULL),(1413364,'Ariel Schulman',NULL,NULL),(1413443,'Samuel Maoz',1962,NULL),(1413455,'Lucy Shuttleworth',NULL,NULL),(1413459,'Siddharth',1979,NULL),(1413530,'Laura D. Smith Ireland',NULL,NULL),(14136189,'Healthy Emmie',NULL,NULL),(1413788,'Frank Thomas',1936,2017),(1414276,'Jeremy Zuckerman',NULL,NULL),(1414385,'Jong-ho Kim',NULL,NULL),(1414582,'Ben Palmer',NULL,NULL),(1414749,'Chris Wyatt',1975,NULL),(1414810,'E.L. Katz',1981,NULL),(1414878,'Nick Damon',NULL,NULL),(1414974,'Llum Barrera',1968,NULL),(1415268,'Ludovic Colbeau-Justin',NULL,NULL),(1415323,'Miley Cyrus',1992,NULL),(1415513,'Sari Ezouz-Berger',NULL,NULL),(1415514,'Dahlia Ezove',NULL,NULL),(1415540,'Simon Fellows',NULL,NULL),(1415801,'Jerusha Hess',1980,NULL),(1416001,'Kyran Kelly',NULL,NULL),(1416127,'Henry Lawley',NULL,NULL),(1416193,'Geoff Linville',NULL,NULL),(1416215,'Demi Lovato',1992,NULL),(1416330,'Jake McDorman',1986,NULL),(1416379,'Spencer Millman',NULL,NULL),(1416431,'Wajdi Mouawad',NULL,NULL),(14167237,'Cormac Wright',NULL,NULL),(1416796,'Stéphane Robelin',NULL,NULL),(1417038,'Haruo Sotozaki',NULL,NULL),(1417039,'Aton Soumache',NULL,NULL),(14171580,'Óscar Redondo',NULL,NULL),(1417242,'Sheldon Turner',NULL,NULL),(1417392,'Adam Wingard',1982,NULL),(1417395,'Hilary Winston',1976,NULL),(1417640,'Brett Haley',1983,NULL),(1417647,'Jon Heder',1977,NULL),(1417725,'Jeff Marx',NULL,NULL),(1417880,'Freddie Webb',NULL,NULL),(1417935,'Beth Chote',NULL,NULL),(1418066,'Sharon Raab Downs',NULL,NULL),(1418096,'Samantha Sloyan',1979,NULL),(1418128,'Michael Anania',NULL,NULL),(1418292,'Wesley Coller',NULL,NULL),(1418538,'Jeremy Coon',NULL,NULL),(1418706,'Shane Valentino',NULL,NULL),(14187110,'Rodrigo Marco',NULL,NULL),(1419055,'Hari',1972,NULL),(1419060,'Sue Kramer',NULL,NULL),(1419259,'Rachel Davis',NULL,NULL),(14192924,'Manjit Singh',NULL,NULL),(14193127,'José Manuel Tejedor',NULL,NULL),(1419321,'Alante Kavaite',1973,NULL),(1419440,'Ivana Baquero',1994,NULL),(1419454,'Tomás Barreiro',NULL,NULL),(1419558,'Bill Boatman',NULL,NULL),(1419824,'Simone Colombari',NULL,NULL),(14200375,'Carolina Rodriguez',NULL,NULL),(1420126,'Andrew Feltenstein',NULL,NULL),(1420156,'Morgan Davis Foehl',NULL,NULL),(1420220,'Gérard Garouste',NULL,NULL),(1420377,'Alex Hardcastle',NULL,NULL),(1420452,'Suli Holum',NULL,NULL),(1420628,'Philippe Kauffmann',NULL,NULL),(1420683,'Yong-hwa Kim',NULL,NULL),(1421237,'Hideaki Nishiyama',NULL,NULL),(1421308,'Blye Pagon Faust',NULL,NULL),(1421629,'Bert V. Royal',1977,NULL),(1421638,'Greg Rucka',1969,NULL),(1422176,'Jess Weixler',NULL,NULL),(1422365,'Brandon Bales',1979,NULL),(1422928,'Charlotte Gregg',NULL,NULL),(1423270,'Erin Cummings',NULL,NULL),(1423438,'Jeremy Rush',1977,NULL),(1423552,'Rachel Robey',NULL,NULL),(1423866,'Josh Dean',1979,NULL),(1423932,'Charlie Watson',NULL,NULL),(1423952,'Lisa Fischer',1958,NULL),(1423955,'Lucy Hale',1989,NULL),(1423990,'Mayumi Yoshida',NULL,NULL),(1424077,'Jonathan Hall',NULL,NULL),(1424128,'Paul W. Taylor',NULL,NULL),(1424220,'Itziar Aizpuru',1939,NULL),(1424693,'Jeff Deverett',NULL,NULL),(1424878,'Ed Gass-Donnelly',1977,NULL),(1424928,'Alberto Granado',1922,2011),(1425041,'Pat Holden',1966,NULL),(1425140,'Andy Jurgensen',NULL,NULL),(1425348,'Shinho Lee',1977,NULL),(1425385,'Jim Loach',1969,NULL),(1425504,'Christopher M. Meagher',1979,NULL),(1425528,'Aly Michalka',1989,NULL),(1425628,'Cory Neal',NULL,NULL),(1425662,'Kate Novack',NULL,NULL),(1425747,'Pedro Peirano',NULL,NULL),(1425780,'Lily Pilblad',2000,NULL),(1425860,'PJ Raval',NULL,NULL),(1426206,'Josefine Tengblad',NULL,NULL),(1426619,'Akira Goto',NULL,NULL),(1426836,'Alexis Suarez',NULL,NULL),(14269861,'Justin Cram',NULL,NULL),(1427076,'Shilpa Shukla',1982,NULL),(1427149,'Andrew Rossi',NULL,NULL),(1427345,'Aoife O\'Sullivan',NULL,NULL),(1427844,'Gary Ellis',NULL,NULL),(1428002,'Neil Gordon',1958,2017),(1428086,'Belén Atienza',NULL,NULL),(1428166,'Amandine Billot',NULL,NULL),(1428204,'Huck Botko',NULL,NULL),(1428229,'The Hughes Brothers',NULL,NULL),(1428311,'Adam Cole-Kelly',1980,NULL),(1428360,'Michele D\'Attanasio',1976,NULL),(1428524,'Emily Fox',NULL,NULL),(1428821,'Joey King',1999,NULL),(1428827,'Hidenobu Kiuchi',1969,NULL),(1428946,'David Guy Levy',NULL,NULL),(1429239,'Conal Palmer',NULL,NULL),(1429311,'Bruno Predebon',NULL,NULL),(1429380,'Britt Robertson',1990,NULL),(1429471,'Jaume Collet-Serra',1974,NULL),(1429512,'Jason Smilovic',NULL,NULL),(1429643,'Errol Trzebinski',NULL,NULL),(1429767,'Tin-Shing Yip',NULL,NULL),(1429823,'Serge Bayala',NULL,NULL),(1429908,'LeBron James',1984,NULL),(1430115,'Marie Féret',NULL,NULL),(1430201,'Amy Rutherford',NULL,NULL),(14302490,'Jediah Brown',NULL,NULL),(1430447,'Sandeep Nath',NULL,NULL),(1430583,'Paul Hicks',NULL,NULL),(1430632,'David Auburn',1969,NULL),(1430636,'Luke Dawson',NULL,NULL),(1431138,'Samantha Barrows',NULL,NULL),(1431184,'Thomas Blachman',NULL,NULL),(1431224,'Nicholas Brierley',1880,1935),(14313990,'Madison Gaughan',NULL,NULL),(1431644,'Wahid Hamed',1944,2021),(1431912,'Felix Leiberg',NULL,NULL),(1431940,'Evangeline Lilly',1979,NULL),(1431983,'David Majzlin',NULL,NULL),(1432116,'Madhu Muttam',NULL,NULL),(1432647,'Jan Vandenbussche',NULL,NULL),(1432654,'Steven Vasquez',NULL,NULL),(1432739,'Hirokazu Yasuhara',1965,NULL),(1432800,'John Patrick Barry',1974,NULL),(1432956,'Matt Passmore',1973,NULL),(1433420,'Ara Katz',1979,NULL),(1433493,'Sami Sänpäkkilä',NULL,NULL),(1433521,'Janet Fitch',1955,NULL),(1433549,'Kelly Adams',1979,NULL),(1433580,'Jose Rivera',1955,NULL),(1433588,'Jim Parsons',1973,NULL),(1433660,'Tom Fisher',1968,NULL),(1433999,'Andrew Duncan',NULL,NULL),(1434016,'Jeff Buchanan',NULL,NULL),(1434205,'Bob Thompson',NULL,NULL),(1434333,'Lucille Alpert',1905,2000),(1434453,'Adam Bajerski',1966,NULL),(1434647,'Roman Borisevich',1975,NULL),(1434850,'Yannis Chalkiadakis',NULL,NULL),(1434980,'Fernando Corona',NULL,NULL),(1435075,'Ignacio Darnaude',NULL,NULL),(1435137,'Andrey Dergachev',NULL,NULL),(1435237,'Elise Durán',NULL,NULL),(1435269,'Paul Eenhoorn',1948,2022),(1435498,'Tomasz Gassowski',NULL,NULL),(1435653,'Rafal Guzniczak',NULL,NULL),(1435739,'Tom Hemmings',NULL,NULL),(1435774,'Aya Hirano',1987,NULL),(1435889,'Andrzej Jakimowski',1963,NULL),(1435926,'Cheol-Hyeon Jo',NULL,NULL),(1435934,'James M. Johnston',NULL,NULL),(14362192,'Rodrigo Ortiz Vinholo',NULL,NULL),(1436246,'Jeremy Latcham',NULL,NULL),(1436264,'Guy Leblond',NULL,NULL),(1436466,'Art Marcum',NULL,NULL),(1436564,'Justin Melland',NULL,NULL),(1436760,'Fabian Nicieza',1961,NULL),(1436937,'Eugene Sun Park',NULL,NULL),(1437125,'Victoria Profeta',NULL,NULL),(1437189,'Sriram Raghavan',1963,NULL),(1437277,'Panna Rittikrai',1961,2014),(1437310,'The Roots',NULL,NULL),(1437347,'Zsuzsanna Rácz',1972,NULL),(1437606,'Logan Sparks',NULL,NULL),(1437652,'Adam B. Stein',NULL,NULL),(1437733,'Pawel Szajda',1982,NULL),(1437832,'Toshiharu Tokiwa',NULL,NULL),(1438009,'Sukanya Vongsthapat',NULL,NULL),(1438146,'Pumwaree Yodkamol',1982,NULL),(1438258,'Songül Öden',1979,NULL),(1438698,'Jack Paglen',NULL,NULL),(1439085,'Irja Lloyd',1920,2003),(1439176,'Heather Raffo',NULL,NULL),(1439215,'Erin Staub',NULL,NULL),(1439333,'Péter Bergendy',1964,NULL),(1439346,'John Lyde',1976,NULL),(1439632,'Patrick Mullen',NULL,NULL),(1439732,'Amanda Treyz',NULL,NULL),(1439751,'Ben Wheeler',NULL,NULL),(1439785,'Sean Cisterna',NULL,NULL),(1440023,'Simon Barrett',NULL,NULL),(1440081,'Kunichi Nomura',NULL,NULL),(1440221,'Joe Farrell',1975,NULL),(1440281,'John Robinson',1985,NULL),(1440314,'Paul Andrew Williams',1973,NULL),(1440651,'Vincent Wang',1971,NULL),(1440825,'Garrett Basch',NULL,NULL),(1440919,'Max Borenstein',NULL,NULL),(1441022,'Mercedes Cantero',NULL,NULL),(1441074,'Sylvain Chauveau',1971,NULL),(1441248,'Kahil Dotay',NULL,NULL),(1441603,'Jocelyn Hayes',NULL,NULL),(1441627,'Mikkel Hess',NULL,NULL),(1441714,'Itsuji Itao',1963,NULL),(1441925,'Eric Lange',1973,NULL),(1441986,'Hung-Chih Liang',NULL,NULL),(1442000,'Ginny Loane',NULL,NULL),(1442113,'Jack McBrayer',1973,NULL),(1442156,'Kiyonobu Mitamura',NULL,NULL),(14422288,'Giang Ho',NULL,NULL),(1442514,'S.S. Rajamouli',1973,NULL),(1442552,'Christophe Rezai',1966,NULL),(1442745,'Ariu Lang Sio',NULL,NULL),(1442929,'Bonnie Thompson',NULL,NULL),(1442940,'Adair Tishler',1996,NULL),(1443023,'Nacho Vigalondo',1977,NULL),(1443058,'Neale Donald Walsch',NULL,NULL),(1443120,'Thommy Hutson',NULL,NULL),(1443368,'Brett Gelman',1976,NULL),(1443396,'Fabian Hinrichs',1974,NULL),(1443502,'Jordan Peele',1979,NULL),(1443527,'Rob Riggle',1970,NULL),(1443740,'Zoe Kazan',1983,NULL),(1443822,'Stephanie Sherrin',NULL,NULL),(1443841,'Victoria Thaine',NULL,NULL),(1444110,'Ben LeClair',NULL,NULL),(1444121,'Michael Ludy',NULL,NULL),(1444139,'Michael McQuown',NULL,NULL),(1444286,'Simon Field',NULL,NULL),(1444457,'Kazuki Takahashi',1961,2022),(1444479,'Kiran Rao',1973,NULL),(1444622,'James Townsend',1980,NULL),(1444872,'Peter Katz',NULL,NULL),(1444973,'José Ramón Argoitia',1934,NULL),(1445114,'Jessica Brentnall',NULL,NULL),(1445349,'Zorion Eguileor',1946,NULL),(1445673,'Chad Kelly',NULL,NULL),(1445746,'Valerie LaPointe',1981,NULL),(1445779,'Jimmy Liao',NULL,NULL),(1446338,'Barnaby Spurrier',1958,NULL),(14464648,'Yuntu Cao',NULL,NULL),(1446625,'Gordon Brown',NULL,NULL),(1447054,'Amy Thiel',NULL,NULL),(1447175,'Tom Bean',NULL,NULL),(1447370,'Don Granger',NULL,NULL),(1447395,'Nicolas Bouvet-Levrard',1978,NULL),(1448916,'Ryan Kavanaugh',1974,NULL),(1449018,'Patrick Hughes',NULL,NULL),(1449025,'Ravi Malhotra',NULL,NULL),(1449113,'Heather Robinson',1978,NULL),(1449207,'Asche & Spencer',NULL,NULL),(1449314,'Silvano Bertolin',1977,NULL),(1449568,'Andrew Commis',NULL,NULL),(1449783,'Stipe Erceg',1974,NULL),(1449904,'Damián García',NULL,NULL),(14502495,'Qianying Xie',NULL,NULL),(1450274,'Shin\'ya Kawatsura',1974,NULL),(1450397,'Cory Krueckeberg',1974,NULL),(14504062,'Youyang Kong',NULL,NULL),(1450428,'Pierre-Luc Lafontaine',1991,NULL),(1450855,'Paca Ojea',NULL,NULL),(1450928,'Judd Payne',NULL,NULL),(1451199,'Tim Sandusky',1980,NULL),(1451254,'Alice Sebold',1962,NULL),(1451294,'Ryan Shiraki',NULL,NULL),(1451415,'Alyssa Sutherland',NULL,NULL),(1451475,'François Tétaz',NULL,NULL),(1451520,'Marek Traskowski',1970,NULL),(1452197,'Guy Roberts',NULL,NULL),(1452387,'Sophie Destin',NULL,NULL),(1452657,'Jessica Fogle',NULL,NULL),(1452752,'Claire Carré',NULL,NULL),(1452967,'Jamie Hilton',NULL,NULL),(1453153,'Alessandro Fabbri',1978,NULL),(1453358,'Pascal Mercier',1944,NULL),(1453510,'Hugh Miller',NULL,NULL),(1453819,'Plan 9',NULL,NULL),(1453891,'Leraldo Anzaldua',1974,NULL),(1454175,'Agnes Chu',NULL,NULL),(1454267,'Germaine De Leon',NULL,NULL),(1454378,'Molly Ephraim',1986,NULL),(1454488,'Andrea García-Huidobro',NULL,NULL),(1454773,'Ewa Jakimowska',NULL,NULL),(1454821,'Magnus Nordenhof Jønck',NULL,NULL),(1454836,'Mako Kamitsuna',NULL,NULL),(1454907,'Espen Klouman Høiner',1981,NULL),(1455087,'Eryk Lubos',1974,NULL),(1455093,'Emma Lustres',1975,NULL),(1455356,'Grant Nieporte',NULL,NULL),(1455681,'AnnaSophia Robb',1993,NULL),(1455688,'Julie Anne Robinson',NULL,NULL),(1455782,'Juan Jose Saravia',1969,NULL),(1455862,'Yoshie Shimamura',1956,NULL),(1456114,'Alban Ukaj',1980,NULL),(1456252,'Ed Wild',NULL,NULL),(1456426,'John Bregar',1985,NULL),(1456457,'David John Cole',NULL,NULL),(1456471,'Kimberly Brooks',1981,NULL),(14568116,'Iseo Kang',NULL,NULL),(1456816,'Bryan Woods',1984,NULL),(1456970,'Isabel Lucas',1985,NULL),(1457088,'Talia Zucker',NULL,NULL),(1457472,'Jennifer Ulrich',1984,NULL),(1457500,'Jeffrey Kurz',NULL,NULL),(1457566,'Alexis Durand',NULL,NULL),(1457642,'David Desola',1971,NULL),(1457722,'Lan Ke',NULL,NULL),(1457753,'Nicolas Duval Adassovsky',NULL,NULL),(1457790,'Daisy Allsop',NULL,NULL),(1457822,'Antti-Jussi Annila',1977,NULL),(1457826,'Paul Anthony',1975,NULL),(1457858,'Adrian Askarieh',NULL,NULL),(1458075,'Todd Brown',1973,NULL),(1458162,'Purcell Carson',NULL,NULL),(1458457,'Franck Ekinci',NULL,NULL),(1458527,'Pablo Fendrik',1973,NULL),(1458734,'Ciro Guerra',1981,NULL),(1458741,'John Guleserian',1976,NULL),(1458971,'Arkadiusz Jakubik',1969,NULL),(1459019,'Nick Jongerius',1976,NULL),(1459238,'Eon-hie Lee',NULL,NULL),(1459583,'R. Christopher Murphy',NULL,NULL),(1459591,'Helena Wirenhed',1970,NULL),(1459623,'Abdi Nazemian',NULL,NULL),(1459943,'Fred Renata',NULL,NULL),(1460116,'Micah Schraft',NULL,NULL),(1460154,'Bryan Shaw',NULL,NULL),(1460159,'Rohit Shetty',1974,NULL),(1460176,'Sigur Rós',NULL,NULL),(1460251,'Erica Steinberg',NULL,NULL),(1460332,'Hijiri Taguchi',NULL,NULL),(1460386,'Colm Tóibín',1955,NULL),(1460414,'Vegas J. Jenkins',1968,NULL),(1460483,'Judith Viorst',1931,NULL),(1460601,'Diana Kaarina',NULL,NULL),(1460612,'Corey Yaktus',NULL,NULL),(1460618,'Atta Yaqub',1979,NULL),(1460782,'François Damiens',1973,NULL),(1461161,'Crystal Dahl',NULL,NULL),(1461267,'Natalie Press',1973,NULL),(1461281,'Melodie Sisk',NULL,NULL),(1461392,'Joachim Rønning',1972,NULL),(1461427,'Martín Boege',NULL,NULL),(1461537,'Beth Kono',NULL,NULL),(1461686,'Frédéric Jouve',NULL,NULL),(1461691,'In-Ah Lee',NULL,NULL),(1461774,'Frédéric D. Oberland',NULL,NULL),(1461800,'Erica Weis',NULL,NULL),(1462097,'Bob Fisher',NULL,NULL),(1462112,'Matthew Reynolds',NULL,NULL),(14623340,'Betty Pierucci Berthoud',NULL,NULL),(1462424,'Milton Bearden',NULL,NULL),(1462495,'Rémi Bezançon',1971,NULL),(1462920,'Clayton Condit',NULL,NULL),(1463009,'Hattie Dalton',NULL,NULL),(1463263,'Lance Edmands',NULL,NULL),(1463426,'Jonathan Patrick Foo',1982,NULL),(1463759,'Dallas Richard Hallam',1979,NULL),(1463812,'Renn Hawkey',1974,NULL),(1463905,'Drew Houpt',NULL,NULL),(1463981,'Çagan Irmak',1970,NULL),(1464012,'Janine Jackowski',1976,NULL),(1464511,'Jody Lee Lipes',NULL,NULL),(1464543,'Reginaldo Leme',NULL,NULL),(1464577,'Rob Lieber',1976,NULL),(1465001,'Mamoru Miyano',1983,NULL),(1465326,'Angeliki Papoulia',1975,NULL),(1465535,'Arvil Prewitt',NULL,NULL),(1465570,'Alec Puro',1975,NULL),(1465617,'Nesty Ramirez',NULL,NULL),(1465650,'Erik Rehl',NULL,NULL),(14656827,'Maki Tsujimura',NULL,NULL),(14656828,'Runa Tsukishima',NULL,NULL),(1466205,'Caitlin Stasey',1990,NULL),(1467010,'Dan Brown',1964,NULL),(1467141,'Matthew Lewis',NULL,NULL),(1467511,'Adam Silver',NULL,NULL),(1467549,'Paul Hernandez',NULL,NULL),(1467567,'Jim Flynn',NULL,NULL),(1468166,'Dhani Harrison',1978,NULL),(1468283,'Tom Ljungman',1991,NULL),(1468516,'William Shimell',1952,NULL),(1468532,'Carlos Solanos',NULL,NULL),(14685456,'Anubis Mud',NULL,NULL),(14685855,'Howard E Smith',NULL,NULL),(1468642,'Joseph Wilson',1949,2019),(1468674,'Rochelle Aytes',NULL,NULL),(1468739,'Amanda Crew',NULL,NULL),(1468859,'Naomi Klein',1970,NULL),(1468944,'Chie Nakamura',1979,NULL),(1469236,'Olivia Colman',1974,NULL),(1469831,'Jennifer Glynn',NULL,NULL),(1469853,'Dan Lin',1973,NULL),(1469874,'Charles Segars',1963,NULL),(1470084,'Amy Fox',NULL,NULL),(1470915,'Ian Campbell',NULL,NULL),(1470929,'Chris Peterson',NULL,NULL),(1470993,'Scott Mann',NULL,NULL),(1471001,'Jordan Roberts',NULL,NULL),(1471121,'Sholom Gelt',NULL,NULL),(1471191,'Dave Cohen',1958,NULL),(1471248,'Robert Hughes',NULL,NULL),(1471372,'Richard Wong',NULL,NULL),(1471503,'Julio Rojas',NULL,NULL),(1471654,'Sergio Armstrong',NULL,NULL),(1471715,'Rajam Balachander',NULL,NULL),(1471778,'Simon Beaufils',NULL,NULL),(1471794,'Marco Belardi',NULL,NULL),(1471990,'Dougie Brimson',NULL,NULL),(1472372,'Derek Curl',NULL,NULL),(1472530,'Réka Divinyi',1974,NULL),(1472622,'Benjamín Echazarreta',1975,NULL),(1472845,'Tara Devon Gallagher',NULL,NULL),(1472917,'Zach Gilford',1982,NULL),(1472983,'Rhys Graham',NULL,NULL),(1473095,'Peter CabadaHagan',NULL,NULL),(1473267,'Willa Holland',1991,NULL),(1473428,'Cédric Jimenez',1976,NULL),(14734434,'Aya Liliane Mari',NULL,NULL),(1473712,'Yû Koyama',NULL,NULL),(1474034,'Juno Mak',1984,NULL),(1474337,'Jared Moshe',NULL,NULL),(1474425,'Megan Neuringer',NULL,NULL),(1474634,'G.O. Parsons',1982,NULL),(1474677,'Channing Godfrey Peoples',NULL,NULL),(1474846,'Ragunathaareeddy',NULL,NULL),(1474875,'Lila Rawlings',NULL,NULL),(1474983,'Jaime Romandia',1969,NULL),(1475013,'Nick Rowntree',1969,NULL),(1475436,'Will Staples',NULL,NULL),(1475479,'Jim Strouse',NULL,NULL),(1475594,'Channing Tatum',1980,NULL),(1475619,'Max Tersch',NULL,NULL),(1475754,'Aya Ueto',1985,NULL),(1475971,'Mat Whitecross',1977,NULL),(1476392,'James Curd',NULL,NULL),(1476591,'Paul Iacono',1988,NULL),(1476599,'Marios Ioannou',NULL,NULL),(1476796,'Michael Nuccio',NULL,NULL),(1477515,'Stacey Storey',NULL,NULL),(1477532,'Michelle Totton',NULL,NULL),(1477623,'Nat Sanders',NULL,NULL),(1477652,'Christoph Blaser',1967,NULL),(1477692,'Emily Atef',1973,NULL),(1478067,'Frank Deal',NULL,NULL),(1478076,'Cesar De León',NULL,NULL),(1478079,'Joe Dempsie',1987,NULL),(1478285,'Zabryna Guevara',1972,NULL),(1478358,'Matthew Holness',NULL,NULL),(1478447,'Robert C. Kirk',NULL,NULL),(1479127,'Christopher Whalley',NULL,NULL),(1479273,'Timo Chen',NULL,NULL),(1479335,'Laura Fisk',NULL,NULL),(1479378,'Karl Hall',NULL,NULL),(1479767,'Anthony Cupo',NULL,NULL),(1479780,'Atif Ghani',NULL,NULL),(1479800,'Anthony Leo',NULL,NULL),(1479803,'Vince Marcello',NULL,NULL),(14799370,'Eya Chikhaoui',NULL,NULL),(14799371,'Tayssir Chikhaoui',NULL,NULL),(14799373,'Olfa Hamrouni',NULL,NULL),(1479948,'Mark Landry',1979,NULL),(1480060,'Michel Faber',1960,NULL),(1480090,'Noah Bernett',1995,NULL),(1480420,'Fernando de Fuentes',NULL,NULL),(1480430,'Erin Kelly',1981,NULL),(1480450,'Christopher Cleveland',NULL,NULL),(1480489,'Viktor Abrosimov',1946,NULL),(1480555,'Arjan Bajwa',1979,NULL),(1480573,'Haruka Ayase',1985,NULL),(1480625,'Cameron Bautsch',NULL,NULL),(1480881,'Polly Johnsen',NULL,NULL),(1480916,'Bora Dagtekin',1978,NULL),(1480980,'Emma Donoghue',1969,NULL),(1481112,'Alexis Fridman',1982,NULL),(1481133,'Trevor Gagnon',1995,NULL),(1481172,'Nicolás Giacobone',NULL,NULL),(1481268,'Béla Hamvas',1897,1968),(1481335,'Denise Ho',1977,NULL),(1481493,'Gil Kenan',1976,NULL),(1481618,'Peter Landesman',NULL,NULL),(1481660,'Mikel Lejarza',NULL,NULL),(1481829,'Jack McMullen',1991,NULL),(1481851,'Maja Milos',1983,NULL),(1481959,'Takeshi Nozue',NULL,NULL),(1482000,'Kôtarô Oshio',NULL,NULL),(1482237,'Mylène St-Sauveur',1990,NULL),(1482301,'Jérôme Seydoux',1934,NULL),(1482406,'Gaute Storaas',NULL,NULL),(1482490,'Oliver Thiede',NULL,NULL),(1482634,'Kraig Wenman',1980,NULL),(1482809,'Bob Griffin',NULL,NULL),(1482825,'Kyle Jones',NULL,NULL),(1482999,'María Valverde',1987,NULL),(1483196,'Jerry Ferrara',1979,NULL),(1483369,'Chris O\'Dowd',1979,NULL),(1483668,'Kari Nissena',NULL,NULL),(1483716,'Maria Sid',1968,NULL),(1483730,'Zoë Tapper',1981,NULL),(1483867,'Marshall Allman',1984,NULL),(1483904,'Benjamin Biolay',1973,NULL),(1484270,'Harry Shum Jr.',1982,NULL),(1484310,'Datari Turner',1979,NULL),(1484589,'Jennifer Derbin',NULL,NULL),(1484928,'Neil Johnson',1967,NULL),(1485380,'Richard Beek',NULL,NULL),(1486009,'Peter Briggs',NULL,NULL),(1486025,'Alejandro Brugués',NULL,NULL),(1486199,'Jonathon Cliff',NULL,NULL),(1486235,'Emily Cook',NULL,NULL),(1486317,'Alycia Debnam-Carey',1993,NULL),(1486349,'Mrinal Desai',NULL,NULL),(1486647,'Álvaro Morte',1975,NULL),(1486706,'Michael Golamco',NULL,NULL),(1486759,'D.J. Gugenheim',NULL,NULL),(1486831,'Sam Hazeldine',1972,NULL),(1486911,'Shahab Hosseini',1974,NULL),(1486961,'Jaime Burke',NULL,NULL),(1487136,'Keiko Kitagawa',1986,NULL),(1487493,'Craig McConnell',NULL,NULL),(1487566,'Keyvan Moghaddam',NULL,NULL),(1488024,'Mohammad Rasoulof',1973,NULL),(1488027,'Celine Rattray',1975,NULL),(1488064,'Sean Reycraft',NULL,NULL),(1488202,'Oumar Sall',NULL,NULL),(1488260,'Nev Schulman',1984,NULL),(1488529,'Ahmet Mümtaz Taylan',1965,NULL),(1488800,'Ti West',1980,NULL),(1488858,'Hawksley Workman',1975,NULL),(1488865,'Vanness Wu',1978,NULL),(1489118,'Jason Earles',1977,NULL),(1489841,'Jamie Marchi',1977,NULL),(1489978,'Jill Wagner',1979,NULL),(1490063,'Nicolas Loir',NULL,NULL),(1490123,'James Wan',1977,NULL),(1490183,'Jon Jon Briones',NULL,NULL),(1490275,'Juliette Goglia',1995,NULL),(1490822,'Axel Petersén',1979,NULL),(1490949,'Michel Litvak',NULL,NULL),(1490961,'Peter Phok',1981,NULL),(1491100,'Tripp Green',NULL,NULL),(1491111,'Jose C. Garcia de Letona',NULL,NULL),(1491554,'Yoshio Suzuki',NULL,NULL),(1491631,'Chris Massoglia',1992,NULL),(14916379,'Anette Marie Holmen',NULL,NULL),(1491740,'Jeff Katz',NULL,NULL),(1491927,'Jonathan Frank',NULL,NULL),(1491999,'Nathan Amondson',NULL,NULL),(1492206,'Ezequiel Borovinsky',NULL,NULL),(1492413,'Collin Simon',NULL,NULL),(1492515,'Eli B. Despres',NULL,NULL),(1492569,'Rafael Dragaud',1972,NULL),(1492711,'Ola Fløttum',NULL,NULL),(1492832,'Michael Goldbach',NULL,NULL),(1493163,'Alex Karpovsky',1975,NULL),(1493372,'Albertine Lastera',NULL,NULL),(1493594,'Maile Meloy',NULL,NULL),(1493617,'Smokey Miles',1951,NULL),(1493836,'Gul Panag',1977,NULL),(1493942,'Eric Poindron',NULL,NULL),(1493950,'Adrian Politowski',1978,NULL),(1494231,'Mauricio Sepúlveda',NULL,NULL),(1494423,'Myriam Tekaïa',NULL,NULL),(1494530,'Bart Van Langendonck',NULL,NULL),(1494624,'Zoe Weizenbaum',1991,NULL),(1494662,'Ching-Po Wong',NULL,NULL),(1494818,'Lawrence Michael Levine',NULL,NULL),(1495361,'Gera Sandler',NULL,NULL),(1495452,'Jackson Wurth',NULL,NULL),(1495520,'Caitríona Balfe',1979,NULL),(1496115,'Sophia Ali',1995,NULL),(1496298,'Caleeb Pinkett',1980,NULL),(1496753,'Christopher Roach',1979,NULL),(14967796,'Diogo P Carvalho',NULL,NULL),(1496779,'Zack Schiller',NULL,NULL),(1496795,'Chuck Speed',1967,NULL),(1497211,'Jack Chick',1924,2016),(1497219,'Andrew Ellard',NULL,NULL),(1497250,'Jari Olavi Rantala',1967,NULL),(1497265,'Jennifer Weiner',1970,NULL),(1497393,'Jon Mugar',NULL,NULL),(1497548,'Jimmy Bennett',1996,NULL),(1497680,'Steve Lawson',NULL,NULL),(1497731,'Joe Shapiro',1963,NULL),(1497874,'Yun Zhou',1978,NULL),(1497918,'Andrew Douglas',NULL,NULL),(1498344,'George Webster',NULL,NULL),(1498570,'Matías Bize',1979,NULL),(1498640,'Zana Briski',1966,NULL),(1498956,'Ludovic du Clary',NULL,NULL),(1499228,'Zolee Griggs',1997,NULL),(1499782,'Lori Lozinski',NULL,NULL),(14999143,'Guy Sagee',NULL,NULL),(1499955,'Rafael Minasbekyan',1968,NULL),(1500155,'Robert Pattinson',1986,NULL),(1500343,'Andy Rodoreda',NULL,NULL),(1500530,'Wojciech Smarzowski',1963,NULL),(1500577,'Jake Schreier',NULL,NULL),(1500897,'Haruya Yamazaki',1938,NULL),(1501050,'Jonah Bobo',1997,NULL),(1501388,'Sasha Roiz',1973,NULL),(1501565,'Laura Caro',NULL,NULL),(1501624,'Shenae Grimes-Beech',1989,NULL),(15018694,'Lieu Chinh',NULL,NULL),(1502050,'Luc Sicard',NULL,NULL),(1502082,'Khan Chan',NULL,NULL),(1502104,'Ross Kauffman',NULL,NULL),(1502218,'Guy Branum',1979,NULL),(1502269,'Eray Egilmez',1976,NULL),(1502383,'Madeleine Martin',1993,NULL),(1502434,'Leslie Odom Jr.',1981,NULL),(1502455,'Peter Quilter',NULL,NULL),(1502469,'Dar Salim',1977,NULL),(1502517,'Dominique Van Malder',1976,NULL),(1502522,'Aria Wallace',1996,NULL),(1503097,'Ian Collie',NULL,NULL),(1503298,'Lyle Vincent',NULL,NULL),(1503347,'David Iserson',NULL,NULL),(1503355,'Yuiko Miura',1973,NULL),(1503383,'David Sullivan',1977,NULL),(1503403,'Shane Carruth',1972,NULL),(1503416,'Kaniehtiio Horn',1986,NULL),(1503429,'Guilied Lopez',NULL,NULL),(1503432,'Catalina Sandino Moreno',1981,NULL),(1503463,'Casey Gooden',NULL,NULL),(1503466,'Orlando Tobón',NULL,NULL),(1503521,'Robert Russell',NULL,NULL),(1503575,'Barry Jenkins',1979,NULL),(1503952,'Misa Uehara',1983,NULL),(1504431,'Sean Bradley',1981,NULL),(1504478,'David Bell',NULL,NULL),(1504567,'Jim Lee',1964,NULL),(1504572,'Bob Nelson',1956,NULL),(1504627,'Óscar Barberán',NULL,NULL),(1504650,'Warren Kole',1977,NULL),(1504678,'Jose Pablo Cantillo',1979,NULL),(1504868,'Gang Dong-won',1981,NULL),(1504946,'Gez Medinger',NULL,NULL),(1505056,'Conrad Ricamora',1979,NULL),(1505375,'Indiana Evans',1990,NULL),(1505381,'Nicole Gomez Fisher',NULL,NULL),(1505460,'Florence Kastriner',NULL,NULL),(1505557,'Eliseo Altunaga',NULL,NULL),(1506112,'Won-jun Ha',NULL,NULL),(1506448,'Raymond Mansfield',1977,NULL),(1506459,'Ori Marmur',NULL,NULL),(1506789,'Adrienne Pickering',1981,NULL),(1506819,'David Posamentier',NULL,NULL),(1506908,'Talulah Riley',1985,NULL),(1507013,'Anish Savjani',NULL,NULL),(1507024,'Pieter Schlosser',1980,NULL),(1507217,'Julia Taylor-Stanley',NULL,NULL),(1507245,'Ben Timlett',NULL,NULL),(1507293,'Josef Tuulse',1979,NULL),(1507857,'Keir Gilchrist',1992,NULL),(1508003,'Gong Yoo',1979,NULL),(1508087,'Emile Mathys',NULL,NULL),(1508186,'Hyo-jun Park',NULL,NULL),(1508231,'Brandon Ratcliff',1998,NULL),(1508332,'Mike Skinner',1978,NULL),(1508630,'Candela Fernández',NULL,NULL),(1508692,'Ga-in Han',1982,NULL),(1509196,'Hyeon-gi Choi',NULL,NULL),(1509478,'Benny Safdie',1986,NULL),(1509613,'Jorge R. Gutiérrez',1975,NULL),(1509816,'Corey Allen Jackson',1968,NULL),(1509906,'Alexandre Franchi',NULL,NULL),(1510486,'Jared Goldman',1979,NULL),(1510800,'Drew Pearce',1975,NULL),(1511165,'Duncan Montgomery',NULL,NULL),(1511212,'Lisa Thrasher',NULL,NULL),(1511272,'Walter Flores',NULL,NULL),(1511282,'Eiichi Hasegawa',NULL,NULL),(1511558,'Carlos Velazquez',NULL,NULL),(1511619,'Anonymous',NULL,NULL),(1511627,'Guo Maoqian',NULL,NULL),(1511685,'Sarah Steele',1988,NULL),(1511698,'Michelle Gallagher',NULL,NULL),(1512166,'Jamie Chung',1983,NULL),(1512353,'João Ribeiro',NULL,NULL),(1512524,'Bruce Anderson',NULL,NULL),(1512598,'Javier García Arredondo',NULL,NULL),(1512881,'Eric Perlmutter',NULL,NULL),(1512910,'Duncan Jones',1971,NULL),(1512998,'Albano Jerónimo',1979,NULL),(1513241,'Jay Bauman',NULL,NULL),(1513288,'Adel Bencherif',1975,NULL),(1513657,'Peilin Chou',NULL,NULL),(1513733,'Sergio Cosulich',NULL,NULL),(15141839,'Salih Aydin',NULL,NULL),(1514214,'Akira Fujita',NULL,NULL),(1514227,'Diego García',NULL,NULL),(1514370,'Joshua Grannell',1974,NULL),(1514571,'Pia Hierzegger',1972,NULL),(1514808,'Rita Kalnejais',NULL,NULL),(1514878,'Joris Kerbosch',NULL,NULL),(1515005,'Kamilla Krogsveen',NULL,NULL),(15150416,'Igor Aptekman',NULL,NULL),(1515685,'Mattias Nohrborg',NULL,NULL),(1515732,'Jacob Akira Okada',NULL,NULL),(1516014,'Jean-Gabriel Périot',1974,NULL),(1516268,'Ton Satomi',1888,1983),(1516290,'Stefan C. Schaefer',NULL,NULL),(1516346,'Lara Sendim',NULL,NULL),(1516642,'Arnaud Taillefer',NULL,NULL),(1516751,'Dennis Todorovic',1977,NULL),(1516804,'Shih-Ching Tsou',NULL,NULL),(1516976,'Katie Von Till',NULL,NULL),(1517261,'Nikolai von Graevenitz',1972,NULL),(1517540,'Rich Evans',NULL,NULL),(1517976,'Chris Pine',1980,NULL),(1518068,'Teresa Sánchez',NULL,NULL),(1518150,'Mike Stoklasa',1978,NULL),(1518752,'Megan Pearson',NULL,NULL),(1518814,'Laura Romeo',NULL,NULL),(1519045,'Douglas Ligon',NULL,NULL),(1519201,'Tim Nackashi',NULL,NULL),(1519252,'Bryan Buckley',1963,NULL),(1519289,'Sonja Heiss',NULL,NULL),(1519353,'Tom Six',1973,NULL),(1519392,'Charlie Fawcett',NULL,NULL),(1519453,'Nathan Baesel',1974,NULL),(1519639,'Adam Nee',NULL,NULL),(1519666,'Eddie Redmayne',1982,NULL),(1519680,'Saoirse Ronan',1994,NULL),(1519727,'Mathieu Vervisch',1974,NULL),(1519739,'Nika King',NULL,NULL),(1519984,'Robb Fischer',NULL,NULL),(1520104,'Kim Ji-yong',NULL,NULL),(1520209,'Marion Monnier',NULL,NULL),(1520491,'David Bergstein',NULL,NULL),(1520649,'Alan Yang',1981,NULL),(1520912,'Robert Mearns',NULL,NULL),(1520917,'Eiichirô Oda',1975,NULL),(1520934,'Alessandro Scippa',NULL,NULL),(1520948,'Bernard Waber',1921,2013),(1521002,'Ramón Obón',1918,1965),(1521046,'Dan O\'Brien',NULL,NULL),(1521381,'Nayanthara',1984,NULL),(15222428,'Surina Narula',NULL,NULL),(15223726,'Manjit Singh',NULL,NULL),(1522452,'Field Blauvelt',NULL,NULL),(1522597,'Patrick Burleigh',NULL,NULL),(1522834,'Yuliet Cruz',NULL,NULL),(1522852,'Ireneusz Czop',1968,NULL),(1523097,'Cecily Fay',1978,NULL),(15233930,'Lee Shin-ji',NULL,NULL),(1523568,'Arturo Infante',NULL,NULL),(1523747,'Hatem Khraiche',1976,NULL),(1523943,'Sophie Lellouche',NULL,NULL),(1524440,'Colin O\'Donoghue',1981,NULL),(1525033,'Shinchô Kokontei',1938,2001),(1525717,'David Bedella',1962,NULL),(1525791,'Aidan Chambers',1934,NULL),(1525807,'Joel Courtney',1996,NULL),(1525854,'Chad England',NULL,NULL),(1526525,'Daniela Holtz',1977,NULL),(1527081,'Lee Galea',NULL,NULL),(1527128,'Roberto Benavides',NULL,NULL),(1527905,'Toby Kebbell',1982,NULL),(1528026,'Aisling Loftus',1990,NULL),(1528394,'Carl Rice',1980,NULL),(1528935,'Kim Coghill',NULL,NULL),(1529472,'Donald Sosin',1951,NULL),(1529699,'Jeff Seidman',1980,NULL),(1530016,'Vladimir Bogomolov',1924,2003),(1530021,'Jay Cohen',NULL,NULL),(1530422,'Steve Barker',1971,NULL),(1530560,'Frank Smith',NULL,NULL),(1530832,'Ji-hye Kim',NULL,NULL),(1531003,'Malte Arkona',1978,NULL),(1531046,'Thimios Bakatakis',NULL,NULL),(1531116,'Antoine Bertrand',1977,NULL),(1531117,'Xabier Berzosa',NULL,NULL),(1531585,'Verónica Echegui',1983,NULL),(1531686,'Jon Garaño',1974,NULL),(1531821,'Tomoki Hasegawa',1957,NULL),(1531934,'Dennis Iliadis',NULL,NULL),(1532039,'Anna-Maria Kantarius',NULL,NULL),(1532067,'Seiya Kawamata',NULL,NULL),(1532344,'Jackie Marcus Schaffer',NULL,NULL),(1532744,'Ben Pugh',NULL,NULL),(1532846,'Adele Romanski',1982,NULL),(1533078,'Aditya Sood',NULL,NULL),(1533242,'Toshiie Tomida',NULL,NULL),(1533266,'Rosa Tran',NULL,NULL),(1533569,'Thomas Blumenthal',NULL,NULL),(1533685,'Hoji Fortuna',1974,NULL),(1533927,'Alex O\'Loughlin',1976,NULL),(1533947,'Renji Philip',NULL,NULL),(1534063,'Issey Takahashi',1980,NULL),(1534201,'Grace Caroline Currey',1996,NULL),(1534287,'Mayko Nguyen',1980,NULL),(1534553,'Kim Tae-seong',NULL,NULL),(1534595,'Peter Atencio',1983,NULL),(1534600,'Benny Boom',NULL,NULL),(1534715,'Leslie David Baker',1958,NULL),(1535410,'Thomas Pynchon',1937,NULL),(1535523,'Jaden Smith',1998,NULL),(1535570,'Donna Tartt',1963,NULL),(1535892,'Rob Givens',NULL,NULL),(1536130,'Christopher Spelman',NULL,NULL),(1536156,'Daniel Vilar',NULL,NULL),(1536172,'Joe Wicker',NULL,NULL),(1536187,'Teresa Zales',NULL,NULL),(1536221,'Gregor Cameron',NULL,NULL),(1536222,'Chris Carey',NULL,NULL),(1536306,'Seiji Yoshida',NULL,NULL),(1536307,'David Zander',NULL,NULL),(1536494,'Sophie Kinsella',1969,NULL),(1536605,'Jesse Moss',1983,NULL),(1536988,'Yôko Maki',1982,NULL),(1537113,'Christopher Drake',NULL,NULL),(1537339,'Mary Burke',1978,NULL),(1537811,'Tim Eddis',NULL,NULL),(1537814,'Juan Fernández',1957,NULL),(1537957,'Manfred Gregor',1929,2018),(1538113,'Chris Aronoff',NULL,NULL),(1538135,'Danish Aslam',NULL,NULL),(1538210,'Hilary Barraford',NULL,NULL),(1538319,'Clara Bingham',NULL,NULL),(1538552,'Michela Cescon',1971,NULL),(1538675,'Emayatzy Corinealdi',1980,NULL),(1538954,'Colin Ebeling',NULL,NULL),(1539257,'Pete Goldfinger',NULL,NULL),(1539666,'Gayatri Joshi',1977,NULL),(1539737,'Yû Kashii',1987,NULL),(1540099,'Nicolas Lhermitte',NULL,NULL),(1540244,'Vidya Malvade',1973,NULL),(1540404,'Max Minghella',1985,NULL),(1540863,'Thierry Potok',NULL,NULL),(1541136,'Alex Rudzinski',NULL,NULL),(1541272,'Amy Seimetz',1981,NULL),(1541331,'Mirai Shida',1993,NULL),(1541751,'Yury Tsykun',NULL,NULL),(1541845,'Brandon Vietti',1974,NULL),(1541888,'Neele Leana Vollmar',1978,NULL),(1542051,'Metin Yildirim',1968,NULL),(1542291,'Christopher Carley',1978,NULL),(1542545,'Ezra Faroque Khan',NULL,NULL),(1542551,'Gerard Kearns',1984,NULL),(1543296,'Eri Kitamura',1987,NULL),(1543455,'Chiwa Saitô',1981,NULL),(1543688,'Steve Hoefer',1963,NULL),(1543747,'Reed Morano',1977,NULL),(1543823,'Renato Russo',1960,1996),(1543907,'Mai Tominaga',NULL,NULL),(1543989,'Aml Ameen',1985,NULL),(1544084,'Jake Cherry',1996,NULL),(1544100,'Bobby Coleman',1997,NULL),(1544217,'Cam Gigandet',1982,NULL),(1544279,'Martha Howe-Douglas',1980,NULL),(1544523,'Kai Owen',1975,NULL),(1545093,'Katie Holly',NULL,NULL),(1545176,'Jared LeBoff',NULL,NULL),(1545197,'Mynette Louie',NULL,NULL),(1545234,'Jeff McIlwain',NULL,NULL),(1545296,'Jennifer Notas Shapiro',NULL,NULL),(1545566,'Pablo Del Teso',1971,NULL),(1545611,'Michael Costigan',NULL,NULL),(1545689,'Daniel Powell',NULL,NULL),(1545935,'Jong Han Kim',NULL,NULL),(1545955,'Alice Addison',NULL,NULL),(1545963,'David Bellini',1972,2016),(1545967,'Ron Birnbach',NULL,NULL),(1546016,'Laura Leedy',NULL,NULL),(1546056,'Stewart Williams',NULL,NULL),(1546169,'Michael Fitzgerald',NULL,NULL),(1546182,'Terence Anderson',NULL,NULL),(1546300,'Diego Boneta',1990,NULL),(1546686,'Alice Lowe',1977,NULL),(1546919,'Jim Williams',NULL,NULL),(1546969,'Matthew Miller',NULL,NULL),(1547283,'Eric Garcia',NULL,NULL),(1547579,'David Paterson',1966,NULL),(1547634,'István Király',NULL,NULL),(1547852,'Kayla Alpert',NULL,NULL),(1547859,'Kyle Patrick Alvarez',1983,NULL),(1547881,'Laurie Halse Anderson',1961,NULL),(1547964,'Richard Ayoade',1977,NULL),(1548042,'Mary-Beth Taylor',NULL,NULL),(1548043,'Tennyson Bardwell',NULL,NULL),(1548493,'Jaycee Chan',1982,NULL),(1548572,'Keefus Ciancia',NULL,NULL),(1548635,'Jane Antonia Cornish',NULL,NULL),(1548657,'Chad Gomez Creasey',1979,NULL),(1548770,'Keegan DeWitt',1982,NULL),(1548856,'Manu Díaz',NULL,NULL),(1548905,'Jonas Dornbach',1978,NULL),(1549063,'Bingbing Fan',1981,NULL),(1549110,'Ingo Fliess',NULL,NULL),(1549295,'Harrison Gilbertson',1993,NULL),(1549309,'Shelly Gitlow',NULL,NULL),(1549338,'Mollie Goldstein',NULL,NULL),(1549503,'Perla Haney-Jardine',1997,NULL),(1549553,'Trine Heidegaard',1967,NULL),(1549582,'Zoé Héran',1999,NULL),(1549716,'Minami Ichikawa',NULL,NULL),(1549853,'Morgan Jurgenson',NULL,NULL),(1550026,'Nancy Kissam',NULL,NULL),(1550195,'Céline Kélépikis',NULL,NULL),(1550279,'Jimmy LaValle',NULL,NULL),(1550373,'Jonathan Lisecki',NULL,NULL),(1550375,'Salvatore Lista',NULL,NULL),(1550948,'Ruth Negga',1982,NULL),(1550957,'Neo',NULL,NULL),(1551040,'Mickey O\'Hagan',NULL,NULL),(1551130,'Keke Palmer',1993,NULL),(1551706,'Martial Salomon',1977,NULL),(1551922,'Columbus Short',1982,NULL),(1552050,'Soulwax',NULL,NULL),(1552136,'Sophie Stuckey',1991,NULL),(1552248,'Satoshi Terauchi',NULL,NULL),(1552360,'Mary Trunk',NULL,NULL),(1552362,'Agni Scott',NULL,NULL),(1552637,'Dennis Widmyer',NULL,NULL),(1552693,'Kenny Wormald',1984,NULL),(1552771,'Laurent Zeitoun',NULL,NULL),(1552811,'Matthieu de Braconier',NULL,NULL),(1552919,'Flora Cross',1993,NULL),(1553588,'Dietrich Grönemeyer',1952,NULL),(1553725,'Kellan Lutz',1985,NULL),(1553922,'Martin Stenmarck',1972,NULL),(1553954,'Itay Tiran',1980,NULL),(1554513,'Paul Castro',1975,NULL),(1554516,'Cliff Chamberlain',1979,NULL),(1554944,'Jackson Ning',NULL,NULL),(1555067,'Raúl Rosário',NULL,NULL),(1555145,'Christopher Sommers',NULL,NULL),(1555151,'Jason Spevack',1997,NULL),(1555164,'Bryan Stevenson',1959,NULL),(1555287,'Michael Mayer',1960,NULL),(1555340,'Alison Brie',1982,NULL),(1556019,'Wolfgang Lackner',NULL,NULL),(1556070,'Brad Ableson',1975,NULL),(1556116,'Kevin Kölsch',NULL,NULL),(1556123,'Chris McInroy',NULL,NULL),(1556195,'Kevin Messman',NULL,NULL),(1556238,'Samuel Anderson',1984,NULL),(1556320,'Katie Cassidy',1986,NULL),(1556400,'Crista Flanagan',NULL,NULL),(1556427,'Steven Grant',1953,NULL),(1556638,'Sean Rogerson',1977,NULL),(1556829,'David Bernad',NULL,NULL),(1557329,'Jessica Rothe',1987,NULL),(1557549,'Jason Banker',NULL,NULL),(1557594,'Dan Fogelman',1976,NULL),(1557652,'Bruce McNall',1950,NULL),(1557909,'Robert Siegel',NULL,NULL),(1557910,'Chris Silber',NULL,NULL),(1557917,'George Vecsey',NULL,NULL),(1557950,'Scott Glasgow',NULL,NULL),(1558002,'Gerald Walker',1928,2004),(1558471,'Phoenix',NULL,NULL),(1558480,'Tim Williams',1966,NULL),(1558628,'Michael J Rogers',1964,NULL),(1558784,'Alexis Martin Woodall',1980,NULL),(1559338,'Jilon VanOver',1978,NULL),(1559927,'Booboo Stewart',1994,NULL),(1560199,'Liz Cackowski',1977,NULL),(1560274,'Shareeka Epps',1989,NULL),(1560345,'Hisayo Mochizuki',1978,NULL),(1560464,'Mercy Malick',NULL,NULL),(1560493,'Rachel Melvin',1985,NULL),(1560588,'Gina Quintos',NULL,NULL),(1560977,'Cary Joji Fukunaga',1977,NULL),(1561059,'Martina Eisenreich',1981,NULL),(1561090,'Henry Krieger',NULL,NULL),(1561185,'Adrian Bol',1970,NULL),(1561385,'Jason Baughan',NULL,NULL),(1561982,'Pilou Asbæk',1982,NULL),(1562672,'Farah Abushwesha',NULL,NULL),(1562688,'Fritz Böhm',1980,NULL),(1562709,'Chris Economides',NULL,NULL),(1562757,'Mitsutoshi Kubota',NULL,NULL),(1562865,'Damon Sullivan',NULL,NULL),(1562889,'Thomas Couzinier',NULL,NULL),(1563090,'Nanci Kincaid',1950,NULL),(1563165,'Rogier de Blok',NULL,NULL),(1563346,'Ger Duany',NULL,NULL),(1563349,'Lee Eddy',NULL,NULL),(1563373,'Teddy Cañez',NULL,NULL),(1563766,'Wayne Rawley',NULL,NULL),(1564072,'Lenora Crichlow',1985,NULL),(1564081,'Amanda Davin',1992,NULL),(1564087,'Jenna Dewan',1980,NULL),(1564103,'Belén Fabra',1977,NULL),(1564536,'Arwel Jones',NULL,NULL),(1564550,'Cheol-soo Jang',NULL,NULL),(1564639,'Ben Richardson',NULL,NULL),(1564659,'Stephen Barton',1982,NULL),(1564702,'Ji Bark',NULL,NULL),(1564718,'Sébastien Tellier',NULL,NULL),(1564759,'Christophe Bruncher',NULL,NULL),(1564800,'Hiram Martinez',1978,NULL),(1564809,'Julius Onah',1983,NULL),(1564826,'David Verbeek',NULL,NULL),(1565008,'Judith Baribeau',NULL,NULL),(1565107,'David Ross',NULL,NULL),(1566098,'Ned Lott',NULL,NULL),(1566172,'Shintarô Ôhata',NULL,NULL),(1566197,'Gyan Prakash',NULL,NULL),(1566212,'Ahmad Riaz',NULL,NULL),(1566336,'Shamshad Akhtar',NULL,NULL),(1566474,'Julianna Guill',1987,NULL),(1567113,'Jessica Chastain',1977,NULL),(1567453,'Örn Marino Arnarson',NULL,NULL),(1568035,'Stuart Fenegan',NULL,NULL),(1568285,'Jean-Dominique Bauby',1952,1997),(1568308,'Kate Gunzinger',NULL,NULL),(1568493,'Paul J. Alessi',1968,NULL),(1568589,'Luing Andrews',NULL,NULL),(1568755,'Brian Azzarello',1962,NULL),(1568762,'Satish Ratakonda',NULL,NULL),(1568824,'Massitan Ballo',NULL,NULL),(1568957,'Dudley Beene',NULL,NULL),(1569065,'Leanne Best',NULL,NULL),(1569276,'Chadwick Boseman',1976,2020),(1569351,'Ann Brashares',NULL,NULL),(1569513,'Craig Burnatowski',NULL,NULL),(1570386,'Dida Diafat',1970,NULL),(1570441,'Mieke Dobbels',1978,NULL),(1570443,'Gunnard Doboze',NULL,NULL),(1570493,'Michael Dounaev',NULL,NULL),(1570563,'Arthur Dupont',1985,NULL),(1570630,'Moshe Edery',NULL,NULL),(1570770,'Pierre Even',NULL,NULL),(1570774,'Wynn Everett',1978,NULL),(1571148,'Sera Gamble',NULL,NULL),(1571262,'Max Gazzè',1967,NULL),(1571412,'Yann Gozlan',NULL,NULL),(1571576,'Gordy Haab',1976,NULL),(1571761,'Sian Heder',1977,NULL),(1571804,'Falk Hentschel',1985,NULL),(1571820,'April Hernandez Castillo',1980,NULL),(1571874,'Tushar Hiranandani',1975,NULL),(1572115,'George Isaac',NULL,NULL),(1572568,'Patrick Kirst',1973,NULL),(1572716,'Danila Kozlovskiy',1985,NULL),(1572769,'Andy Kubert',1962,NULL),(1573096,'Nathaniel Levisay',NULL,NULL),(1573253,'Alexander Ludwig',1992,NULL),(1573262,'Sergey Lukyanenko',1968,NULL),(1573757,'Miguel Menéndez de Zubillaga',NULL,NULL),(1573797,'Océan',NULL,NULL),(1573942,'Iker Monfort',NULL,NULL),(1573967,'Géza Morcsányi',1952,2023),(1573975,'Leslie Morgenstein',NULL,NULL),(1573988,'Sebastian Morrison',NULL,NULL),(1574308,'The Notwist',NULL,NULL),(1574565,'Alysson Paradis',1982,NULL),(1574823,'Michael Pontin',NULL,NULL),(1574847,'Hartley Powell',1965,NULL),(1575191,'Sarah Ridgeway',NULL,NULL),(1575643,'Jana Schulz',1977,NULL),(1575654,'Jesse Schwartz',1994,NULL),(1575868,'Wei-Lun Hsu',1978,2007),(1575914,'Kimberly Simi',NULL,NULL),(1575969,'Ilona Six',1979,NULL),(1576552,'Kelly Thiebaud',1982,NULL),(1576700,'Mark Towns',1974,NULL),(1576785,'Seiichirô Ujiie',1926,2011),(1577101,'Nicolas Wanczycki',NULL,NULL),(1577281,'Rosalind Wiseman',1969,NULL),(1577314,'Pete Woodhead',NULL,NULL),(1577492,'Ted Zizik',NULL,NULL),(1577637,'Josh Stewart',NULL,NULL),(1578335,'Michael Arndt',1965,NULL),(1578489,'Savage',NULL,NULL),(1578528,'Daniel Carey',NULL,NULL),(1578667,'Walt Whitman',1819,1892),(1579219,'Aurel Manthei',1974,NULL),(1579244,'Raymond Mearns',NULL,NULL),(1579315,'Stephen F. Owens',NULL,NULL),(1579372,'Kesun Loder',1993,NULL),(1579445,'Ignacio Serricchio',1982,NULL),(1579614,'Bartek Wójtowicz',NULL,NULL),(1579753,'Whitney Cummings',1982,NULL),(1579970,'Géraldine Mangenot',NULL,NULL),(1580131,'Lauren Schnipper',NULL,NULL),(1580395,'Katell Quillévéré',1980,NULL),(1580444,'Robert Hauer',NULL,NULL),(1580463,'Andamion Murataj',NULL,NULL),(1580671,'Jon S. Baird',1972,NULL),(1580685,'Thorbjørn Christoffersen',1978,NULL),(1580772,'Derrick Warfel',NULL,NULL),(1580828,'Simon McMahon',NULL,NULL),(1580844,'Sheila Viseltear',NULL,NULL),(1580957,'B.J. Britt',1982,NULL),(1581273,'Alejandro Jornet',1956,NULL),(1581296,'Johnny Kinch',NULL,NULL),(1581464,'Sharmeen Obaid-Chinoy',1978,NULL),(1581544,'Marisol Ramirez',NULL,NULL),(1581662,'Steph Song',1984,NULL),(1582231,'René Frotscher',NULL,NULL),(1582493,'Doug Lussenhop',NULL,NULL),(1583077,'David Beaubaire',NULL,NULL),(1583132,'Sam Englebardt',1977,NULL),(1583271,'Tiffany J. Shuttleworth',NULL,NULL),(1583617,'François Boulay',NULL,NULL),(1583636,'Jonathan Safran Foer',1977,NULL),(1583667,'Analisa LaBianco',NULL,NULL),(1583671,'Vince Locke',NULL,NULL),(1583978,'Olunike Adeliyi',1977,NULL),(1584144,'Benji Bakshi',NULL,NULL),(1584145,'Kishori Ballal',NULL,2020),(1584283,'Lauren Bittner',1980,NULL),(1584523,'Étienne Charry',NULL,NULL),(1584540,'Sally Chomet',NULL,NULL),(1584960,'David Faigenblum',NULL,NULL),(1584992,'Keith Ferguson',1972,NULL),(1585729,'Joey Klein',NULL,NULL),(1585950,'Andrew Litvin',NULL,NULL),(1586885,'Romanthony',NULL,2013),(1587122,'Smith Seth',1994,NULL),(1587166,'Andrew Simpson',1989,NULL),(1587175,'Mona Singh',1981,NULL),(1587194,'Emil Skladanowsky',1866,NULL),(1587208,'Rick Smith',1959,NULL),(1587232,'Bahar Soomekh',1975,NULL),(1587501,'Jack Utsick',NULL,NULL),(1587565,'Cleisson Vidal',NULL,NULL),(1587729,'Finn Wittrock',1984,NULL),(1587778,'Ben Young',NULL,NULL),(1587813,'Steve Zissis',1975,NULL),(1588066,'Robert Sheehan',1988,NULL),(1588828,'Émile Vallée',NULL,NULL),(1588970,'Carmencita',1868,1910),(1589279,'Emily Ratajkowski',1991,NULL),(1589515,'Lluís Quílez',1978,NULL),(1589546,'Kazuaki Kiriya',1968,NULL),(1589571,'Broken Social Scene',NULL,NULL),(1589584,'Milford Graves',1941,2021),(1589604,'Atticus Ross',1968,NULL),(1589670,'Caradog W. James',NULL,NULL),(1589704,'Meral Uslu',NULL,NULL),(1589714,'Aarti Bajaj',1973,NULL),(1589811,'Chris Gethard',1980,NULL),(1589825,'Kali Hawk',1986,NULL),(1590302,'Fuminori Kizaki',NULL,NULL),(1590364,'Corey L. Marsh',1981,NULL),(1590540,'Moritz Schultheiß',1976,NULL),(1590589,'Daniel Stiepleman',NULL,NULL),(1590776,'Ken Lemberger',1946,NULL),(1590998,'Zach Helm',1975,NULL),(1591006,'Tsutomu Kamishiro',NULL,NULL),(1591046,'Shotaro Suga',NULL,NULL),(1591151,'Chris Ayres',1965,2021),(1591353,'Jonny Brugh',NULL,NULL),(1591496,'Mike Colter',1976,NULL),(1591542,'Brian Crano',1983,NULL),(1591584,'Britt Daniel',NULL,NULL),(1591620,'Juan Pablo Di Pace',1979,NULL),(1591666,'Jason Dolley',1991,NULL),(1591757,'Liam Falconer',2003,NULL),(1591990,'Andrzej Górak',NULL,NULL),(1592061,'Trevor Hayes',NULL,NULL),(1592118,'Ben Holden',NULL,NULL),(1592211,'Victoria Davis',NULL,NULL),(1592225,'Rachael Taylor',1984,NULL),(1592271,'Leigh Harris',1954,NULL),(1592495,'Emily Harris',NULL,NULL),(1592586,'Steve Edwards',NULL,NULL),(1592733,'Carlos Catalán',NULL,NULL),(1593077,'Wendy Rhoads',NULL,NULL),(1593379,'Enrique Arreola',NULL,NULL),(1593407,'Diego Cataño',1990,NULL),(1593460,'Hyun Bin',1982,NULL),(1593548,'Tony Saba',NULL,NULL),(1593711,'Danny Perea',1985,NULL),(1593812,'Justin Villiers',NULL,NULL),(1593894,'Anna Falguères',1978,NULL),(1593896,'Olgierd Hordiejuk-Zaniewicki',NULL,NULL),(1593899,'Jerome Eltabet',NULL,NULL),(1593909,'Emmanuel Pampuri',NULL,NULL),(1593939,'Wael Mandour',NULL,NULL),(1594248,'Alexandre Astier',1974,NULL),(1594572,'Franck Pitiot',NULL,NULL),(1594672,'Peter Stickles',1976,NULL),(1594757,'Russell Wolfe',1964,2015),(1594999,'Francesca Inaudi',1977,NULL),(1595000,'Satomi Ishihara',1986,NULL),(1595165,'Catherine Salée',NULL,NULL),(1595280,'James Gartner',1950,NULL),(1595314,'Alexandre Nahon',NULL,NULL),(1595523,'Danny A. Abeckaser',NULL,NULL),(1595526,'John Aboud',1973,NULL),(1595718,'James Clayton',NULL,NULL),(1595836,'Christian Duurvoort',NULL,NULL),(1596350,'Nawazuddin Siddiqui',1974,NULL),(1596678,'Keiichiro Toyama',NULL,NULL),(1597010,'Marjorie Estiano',1982,NULL),(1597241,'Zarah Jane McKenzie',1981,NULL),(1597268,'Mary Mouser',1996,NULL),(1597316,'Adrianne Palicki',1983,NULL),(1597463,'Claire Tomalin',1933,NULL),(1597629,'Yaron Zilberman',1966,NULL),(1597664,'Camille Fontaine',NULL,NULL),(1597847,'Ivan Mactaggart',NULL,NULL),(1597884,'Lena Rehnberg',1959,NULL),(1598010,'Stacey Hersh',NULL,NULL),(1598061,'Chris Capetanakis',NULL,NULL),(1598140,'Zach Baylin',1980,NULL),(1598205,'Tsutomu Mizushima',NULL,NULL),(1598899,'Magela Crosignani',NULL,NULL),(1599046,'Shruti Haasan',1986,NULL),(1599107,'James Jarrett',NULL,NULL),(1599810,'Erin Cline',NULL,NULL),(1600109,'Colby Trane',1982,NULL),(1600132,'Shane Zaza',NULL,NULL),(1600160,'Joseph White',1978,NULL),(1600403,'Chad Hamilton',NULL,NULL),(1600662,'María Alché',1983,NULL),(1600848,'Thornton W. Burgess',1874,1965),(1600872,'Lee Sternthal',NULL,NULL),(1601147,'Brandon Scott Jones',NULL,NULL),(1601397,'Olivia Munn',1980,NULL),(1601634,'Tom Harari',NULL,NULL),(1601640,'Dominic Leung',NULL,NULL),(1601643,'Lauren Miller Rogen',1982,NULL),(1601644,'Jennifer Lee',1971,NULL),(1601745,'Jason Fernandez',NULL,NULL),(1601843,'Rachel Ford',NULL,NULL),(1601862,'Kresten Vestbjerg Andersen',NULL,NULL),(1601882,'Phil Johnston',1971,NULL),(1602118,'Franck Chorot',NULL,NULL),(1602119,'Sherryl Clark',NULL,NULL),(1602154,'Dana Goldberg',1979,NULL),(1602184,'Chun-yeong Lee',NULL,NULL),(1602192,'Angela Mancuso',NULL,NULL),(1602270,'Jake Weiner',NULL,NULL),(1602468,'Haruka Handa',NULL,NULL),(1602472,'Katharina Held',1977,NULL),(1602507,'Clément Michel',NULL,NULL),(1602528,'Matt Peters',NULL,NULL),(1602547,'Tom Rob Smith',NULL,NULL),(1602660,'Ben Barnes',1981,NULL),(1603283,'Anders Helde',1981,NULL),(1603397,'Michael Goetz',NULL,NULL),(1603403,'Keith Jordan',NULL,NULL),(1603708,'Seth Gross',NULL,NULL),(1604669,'Adam Gross',NULL,NULL),(1604703,'Justin Anderson Smith',NULL,NULL),(1604976,'Audrey Diwan',1980,NULL),(1605108,'Vincent Martella',1992,NULL),(1605114,'Christian McKay',1973,NULL),(1608935,'Anne Hubbell',NULL,NULL),(1613524,'Robrecht Vanden Thoren',NULL,NULL),(1614404,'David Au',NULL,NULL),(1614494,'Jen Li',NULL,NULL),(1614523,'Gaetano Bruno',1973,NULL),(1615009,'Kern Saxton',NULL,NULL),(1615036,'Erik Hemmendorff',NULL,NULL),(1615109,'Nicholas Britell',1980,NULL),(1615371,'Sanna Lenken',1978,NULL),(1615536,'Paul D\'Elia',NULL,NULL),(1615610,'Allan Loeb',1969,NULL),(1615896,'Johan Lundborg',NULL,NULL),(1615914,'José Alcala',NULL,NULL),(1615954,'Michelle Ehlen',NULL,NULL),(1616124,'Amy Baer',1966,NULL),(1616194,'Mitch Cullin',1968,NULL),(1616294,'David O. Sacks',NULL,NULL),(1616394,'Nabil Ben Yadir',NULL,NULL),(1616501,'Meshar Cohen',NULL,NULL),(1616623,'Víctor Fábregas',1971,NULL),(1616807,'Sakda Kaewbuadee',NULL,NULL),(1616898,'Banlop Lomnoi',NULL,NULL),(1616970,'Denis Ménochet',1976,NULL),(1617276,'Noriaki Sugiyama',1974,NULL),(1617338,'Andreas Vasileiou',NULL,NULL),(1617413,'Brian Zarate',NULL,2016),(1617631,'Stella Fyrogeni',NULL,NULL),(1617685,'Jennifer Hudson',1981,NULL),(1618160,'Hector Maeshiro',NULL,NULL),(1618217,'Cydne Clark',NULL,NULL),(1618225,'Peter A. Dowling',NULL,NULL),(1618263,'Masashi Kishimoto',1974,NULL),(1618276,'Luis Piedrahita',1977,NULL),(1618286,'Ben Ripley',NULL,NULL),(1618324,'George Bendele',NULL,NULL),(1618433,'Yasumichi Ozaki',NULL,NULL),(1618519,'Jarin Pengpanitch',NULL,NULL),(1618531,'Vichit Tanapanitch',NULL,NULL),(1618536,'Xiaoding Zhao',NULL,NULL),(1618558,'Andres Gerszenzon',NULL,NULL),(1618566,'Motoyoshi Iwasaki',NULL,NULL),(1618579,'Delphine Mantoulet',NULL,NULL),(1618886,'Swanand Kirkire',1970,NULL),(1619897,'Romain Lacourbas',1977,NULL),(1619929,'Maren Lüthje',NULL,NULL),(1620490,'Moira Buffini',1965,NULL),(1620545,'Sophia Di Martino',NULL,NULL),(1620741,'Lucien Laviscount',1992,NULL),(1620930,'Napoleon Ryan',NULL,NULL),(1620989,'Antonio Tarver',1968,NULL),(1621084,'Beth Rigazio',NULL,NULL),(1621408,'Tina O\'Reilly',NULL,NULL),(1621482,'Jenny Roesler',NULL,NULL),(1622110,'Richard Bever',NULL,NULL),(1622147,'John W. Richardson',NULL,NULL),(1622257,'Alvin Lam',NULL,NULL),(1622258,'Alejandro Landes',1980,NULL),(1622325,'Dominique Telson',NULL,NULL),(1622454,'Geoffrey Richman',NULL,NULL),(1622492,'Nathan Lanier',1978,NULL),(1622605,'Gavin Clarke',1969,2015),(1622615,'Josh Cooke',1979,NULL),(1622836,'Masahiro Andô',1967,NULL),(1622910,'Claire Dodgson',NULL,NULL),(1622973,'Amanda Marshall',1978,NULL),(1623470,'Alfredo Conde',NULL,NULL),(1623675,'Sarah Allen',1980,NULL),(1624029,'Jamie Hall',NULL,NULL),(1624685,'Tyler Mitchell',NULL,NULL),(1625220,'Emin Alper',1974,NULL),(1625382,'Owen Egerton',NULL,NULL),(1625646,'Hrvoje Niksic',NULL,NULL),(1625872,'Sam Wolfson',NULL,NULL),(1625914,'Sara Michelle Ben Av',1983,NULL),(1626086,'Ayu Kitaura',1992,NULL),(1626256,'Margo Stilley',1982,NULL),(1626375,'Kelsey Mann',NULL,NULL),(1626455,'Clay McLeod Chapman',NULL,NULL),(1626482,'Jack Ketchum',1946,2018),(1626500,'Jacques Mesrine',1936,1979),(1626587,'Misha Jaari',NULL,NULL),(1626598,'Stein B. Kvae',1969,NULL),(1626735,'Olivier Daviaud',NULL,NULL),(1626759,'John Leventhal',NULL,NULL),(1626865,'Danny Tull',NULL,NULL),(1626972,'Nadir Öperli',1979,NULL),(1627409,'Chris Teague',NULL,NULL),(1627697,'Vincent Belorgey',1975,NULL),(1627748,'Jordan Fry',1993,NULL),(1627768,'Anders Heinrichsen',1980,NULL),(1627969,'Andrea Anders',1975,NULL),(1628115,'Juliet Rylance',1979,NULL),(1628149,'Tetsuya Endô',NULL,NULL),(1628160,'Jun\'ichi Iioka',NULL,NULL),(1628322,'Bethany McLean',1970,NULL),(1628380,'Garon Tsuchiya',NULL,NULL),(1628464,'Marina Grasic',NULL,NULL),(1628845,'Vikram Kale',NULL,NULL),(1628961,'Melissa Kirkendall',NULL,NULL),(1629286,'Francis J. Kuzler',NULL,NULL),(1629321,'Hillary Spera',NULL,NULL),(1630123,'Carly Hugo',1984,NULL),(1630273,'Phyllida Lloyd',1957,NULL),(1630456,'Brian Scott Olds',NULL,NULL),(1630992,'Madeline Carroll',1996,NULL),(1631269,'Chloë Grace Moretz',1997,NULL),(1631380,'Alexandria M. Salling',NULL,NULL),(1631435,'Aimee Teegarden',NULL,NULL),(1631468,'Charlotte Vandermeersch',1974,NULL),(1631852,'J.G. Jones',NULL,NULL),(1632070,'Mitch Morris',1979,NULL),(1632187,'Jeff Rathner',NULL,NULL),(1632532,'Aasha Davis',NULL,NULL),(1632536,'Dana DeLorenzo',NULL,NULL),(1632555,'Dana Boulé',NULL,NULL),(1632762,'Amy Morgan',NULL,NULL),(1633002,'Jim Cliffe',NULL,NULL),(1633015,'Michel Franco',1979,NULL),(1633080,'Daniel Schechter',NULL,NULL),(1633129,'Alan Marc Levy',NULL,NULL),(1633142,'Haruki Murakami',1949,NULL),(1633164,'Anna Singer',NULL,NULL),(1633356,'Barry L. Levy',1972,NULL),(1633541,'Ranbir Kapoor',1982,NULL),(1633672,'Jonathan Amos',NULL,NULL),(1633712,'Iván Mora Manzano',1977,NULL),(1634030,'Joshua Cordes',NULL,NULL),(1634261,'Shannon Dill',NULL,NULL),(1634307,'Kieran Fitzgerald',NULL,NULL),(1634601,'Grant Morrison',1960,NULL),(1634779,'Timur Savci',1975,NULL),(1634823,'Jill E. Alexander',NULL,NULL),(1634838,'Mónika Balsai',1977,NULL),(1635244,'Susan Kelechi Watson',1981,NULL),(1635344,'Philip Steadman',NULL,NULL),(1635438,'Alexander Yellen',NULL,NULL),(1635570,'Andy Suriano',1974,NULL),(1635670,'Craig Walker',NULL,NULL),(1636259,'Kelly Smith',1972,NULL),(1636466,'Patty West',NULL,NULL),(1636493,'Jason Stewart',NULL,NULL),(1636655,'Nancy Bardawil',NULL,NULL),(1636742,'Leena Yadav',1971,NULL),(1636876,'Debbie Gray',NULL,NULL),(1636942,'Paula Sáenz-Laguna',NULL,NULL),(1637092,'Enes Zlatar',NULL,NULL),(1637163,'Sophon Sakdaphisit',NULL,NULL),(1637474,'Jamie Travis',1979,NULL),(1637687,'Matthias Petsche',NULL,NULL),(1637768,'Jim Field Smith',1979,NULL),(1637776,'Oliver Haffner',1974,NULL),(1637785,'Liza Johnson',NULL,NULL),(1637859,'Pater Sparrow',1978,NULL),(1637928,'Peter Samet',NULL,NULL),(1637961,'Khan Baykal',NULL,NULL),(1638321,'Maya Hawke',1998,NULL),(1638339,'Janine Watson',NULL,NULL),(1638365,'John Lloyd Young',1975,NULL),(1638513,'Jeff Bierman',NULL,NULL),(1638619,'Jon Croker',NULL,NULL),(1638748,'Brian Gray',1980,NULL),(1639089,'Davis Priestley',NULL,NULL),(1639277,'Michael Tiddes',NULL,NULL),(1639516,'Jade Healy',1981,NULL),(1639578,'Emanuel Michael',NULL,NULL),(1639636,'Ben Sherwood',1964,NULL),(1639750,'Mark Alan Miller',1981,NULL),(1640086,'Roshon Fegan',1991,NULL),(1640152,'Ben Frost',NULL,NULL),(1640384,'Fivel Stewart',1996,NULL),(1640505,'Guillaume Renard',NULL,NULL),(1640828,'Kim Ray',NULL,NULL),(1640833,'Jeong-hun Ahn',NULL,NULL),(1640928,'Paul Mullen',NULL,NULL),(1641117,'Alex Pettyfer',1990,NULL),(1641140,'Clive Standen',1981,NULL),(1641174,'Hae-su Ahn',NULL,NULL),(1641239,'Da-bin Jeong',1980,2007),(1641334,'Gwiyeoni',NULL,NULL),(1641406,'Boris Michalski',NULL,NULL),(1642004,'Masam Holden',1993,NULL),(1642229,'Tommy Stovall',NULL,NULL),(1642290,'Danielle Savre',1988,NULL),(1642445,'Dan Riddle',NULL,NULL),(1642591,'David Mickel',NULL,NULL),(1642639,'Ariel Levy',1984,NULL),(1642653,'Alberto Reyes',NULL,NULL),(1642796,'Alex Rivera',1973,NULL),(1642839,'Adam Peters',NULL,NULL),(1642873,'Oliver Clark',NULL,NULL),(1643154,'Stephen Wight',1980,NULL),(1643764,'Michael Gentile',NULL,NULL),(1643824,'Ben Smith',NULL,NULL),(1644151,'Ismael Fritschi',NULL,NULL),(1644336,'Sabine Crossen',1983,NULL),(1644654,'Clare Duggan',NULL,NULL),(1644751,'Vinit Borrison',NULL,NULL),(1644827,'Daniel Lopatin',1982,NULL),(1645301,'Justin Lader',NULL,NULL),(1645313,'Christopher Lowell',1984,NULL),(1645751,'Rania Stephan',NULL,NULL),(1645832,'Ari Wegner',1984,NULL),(1645871,'James Graves',NULL,NULL),(1645873,'Todd Haberman',NULL,NULL),(1645959,'Ricardo Arnaiz',1974,NULL),(1646022,'Craig William Macneill',NULL,NULL),(1646318,'Lawrence Mattis',NULL,NULL),(1646322,'Paddy McDonald',NULL,NULL),(1646374,'Ethan Rose',NULL,NULL),(1646381,'Steve Samuels',NULL,NULL),(1646475,'Richie Conroy',NULL,NULL),(1646482,'Peter Elkind',NULL,NULL),(1646537,'Wendy Orr',NULL,NULL),(1646563,'Sung-bo Shim',NULL,NULL),(1646565,'Jennie Snyder Urman',NULL,NULL),(1647070,'Stephen Haren',NULL,NULL),(1647268,'João Maria',NULL,NULL),(1647319,'Miljan Milovanovic',NULL,NULL),(1647620,'Rosie Traynor',NULL,NULL),(1648016,'Austin Basis',NULL,NULL),(1648337,'Sandra Lee-Oian Thomas',NULL,NULL),(1648520,'Katie Leung',1987,NULL),(1648973,'Stephen Light',NULL,NULL),(1649128,'Benjamin Wilkinson',NULL,NULL),(1649438,'Jimmy Thomson',NULL,NULL),(1649488,'Holly Black',NULL,NULL),(1649636,'David Hunter',NULL,NULL),(1649647,'Bernard Stone',NULL,NULL),(1649714,'Affion Crockett',NULL,NULL),(1649756,'Burkhard Forstreuter',1959,NULL),(1649967,'Nikita Tarasov',1979,NULL),(1650283,'Espen Sandberg',1971,NULL),(1650330,'Sue Monk Kidd',1948,NULL),(1650373,'Maksim Sveshnikov',1985,NULL),(1650403,'Tony DiTerlizzi',NULL,NULL),(1650412,'Ellen Goldsmith-Vein',NULL,NULL),(1650558,'Transcenders',NULL,NULL),(1650747,'Sebastian Bäumler',1977,NULL),(1650772,'Autumn Eakin',NULL,NULL),(1650932,'Ali Liebert',1981,NULL),(1651129,'Gray Lawson',NULL,NULL),(1651487,'Robin Schmidt',NULL,NULL),(1651670,'Warren Fischer',NULL,NULL),(1651897,'Melissa Kelly',NULL,NULL),(1651942,'Karen Rosenfelt',NULL,NULL),(1652346,'Andrew Motion',1952,NULL),(1652433,'Michael Zegen',1979,NULL),(1652438,'Russell Ackerman',NULL,NULL),(1653021,'Justin Talley',1983,NULL),(1653163,'Loyd Bateman',NULL,NULL),(1653291,'Justin Gordon',1978,NULL),(1653610,'Amanda Shaw',NULL,NULL),(1653753,'Paul King',NULL,NULL),(1654405,'Shinji Ogawa',NULL,NULL),(1654465,'Claire Cook',1955,NULL),(1654820,'Brett Gentile',1973,NULL),(1655017,'Stephen L\'Heureux',NULL,NULL),(1655194,'Andy Parkin',NULL,NULL),(1655234,'Sergey Puskepalis',1966,2022),(1655591,'Bushra',1981,NULL),(1655689,'Noriko Eguchi',1980,NULL),(1655719,'Poppy Lee Friar',1995,NULL),(1655778,'CiCi Hedgpeth',NULL,NULL),(1656118,'Elisabeth Ventura',NULL,NULL),(1656122,'Nicole Vicius',1976,NULL),(1656167,'Evelyne de la Chenelière',NULL,NULL),(1656178,'Lucie Borleteau',NULL,NULL),(1656308,'Carl Lund',NULL,NULL),(1656397,'Clément Calvet',NULL,NULL),(1656428,'Arlene Gibbs',NULL,NULL),(1656612,'Lorenz Dangel',1977,NULL),(1656923,'Justin Partridge',NULL,NULL),(1656974,'Maclain Nelson',1980,NULL),(1657200,'Graham Reznick',1981,NULL),(1657727,'Tabitha Johnson',NULL,NULL),(1658012,'Benji Samit',1984,NULL),(1658166,'Bryan Wizemann',1973,NULL),(1658753,'Humberto Carrão',1991,NULL),(1658935,'Jack Huston',1982,NULL),(1659141,'Prabhas',1979,NULL),(1659221,'Sebastian Stan',1982,NULL),(1659348,'Lauren Cohan',1982,NULL),(1659547,'Carey Mulligan',1985,NULL),(1659579,'Charlotte Ray Rosenberg',NULL,NULL),(1659661,'Anna Wintour',1949,NULL),(1659741,'David Soren',1973,NULL),(1659865,'Christian Neander',NULL,NULL),(1659903,'Eric Eisner',NULL,NULL),(1659906,'Javier Fuentes-León',NULL,NULL),(1659908,'William Heins',NULL,NULL),(1660027,'Jack Doolan',NULL,NULL),(1660148,'Michael Nardelli',NULL,NULL),(1660377,'Barry Diller',1942,NULL),(1660481,'Denise Howard',NULL,NULL),(1660488,'Joseph Izzo',NULL,NULL),(1660595,'Charlie McDowell',1983,NULL),(1660846,'Denise Nolan Cascino',NULL,NULL),(1661137,'Karen Barna',NULL,NULL),(1661186,'Peter Straughan',NULL,NULL),(1661334,'Amat Escalante',1979,NULL),(1661374,'Allen Charlton',1954,NULL),(1661375,'John Lutz',1939,2021),(1661421,'Sarah Kelly',NULL,NULL),(1661460,'Tony Hernandez',NULL,NULL),(1661902,'Tom Willett',NULL,NULL),(1661920,'Charles-Marie Anthonioz',NULL,NULL),(1662011,'Morjana Alaoui',1983,NULL),(1662277,'Shreyas Talpade',1976,NULL),(1662572,'Kinsey Packard',1976,NULL),(1662586,'Tracy Hyland',NULL,NULL),(1662644,'Antje Traue',1981,NULL),(1662741,'Daniel Altiere',NULL,NULL),(1662742,'Steven Altiere',NULL,NULL),(1663205,'Sharlto Copley',1973,NULL),(1663329,'Eric Koretz',NULL,NULL),(1663573,'Kierston Wareing',1976,NULL),(1663840,'Stephen W. Williams',NULL,NULL),(1664033,'Beto Martins',NULL,NULL),(1664036,'Jorge Michel Grau',1973,NULL),(1664042,'Roman Vasyanov',1980,NULL),(1664088,'Jason Matzner',NULL,NULL),(1664289,'Jessica Meier',NULL,NULL),(1664512,'Christian Davis',NULL,NULL),(1665004,'Imtiaz Ali',1971,NULL),(1665054,'Dominic Bogart',NULL,NULL),(1665181,'Niklas Gundersen',1970,NULL),(1665537,'Ronald Zehrfeld',1977,NULL),(1665871,'Anna Tsuchiya',1984,NULL),(1665932,'Kike Maíllo',1975,NULL),(1665969,'Karin Gist',NULL,NULL),(1665973,'Wil Haygood',1954,NULL),(1666014,'Roland Slawik',NULL,NULL),(1666018,'Anthony Swofford',1970,NULL),(1666061,'Mindy Goldberg',NULL,NULL),(1666083,'Eneko Lizarraga',NULL,NULL),(1666163,'Christopher Benstead',NULL,NULL),(1666476,'Joe Ksander',NULL,NULL),(1666600,'Zoltán Miklós Hajdu',NULL,NULL),(1666770,'Kristian Strand Sinkerud',1978,NULL),(1666855,'Raúl Arévalo',1979,NULL),(1667112,'John Will Clay',NULL,NULL),(1667364,'Ashley Benson',1989,NULL),(1667545,'Hannah Beachler',NULL,NULL),(1667980,'Peter Szilagyi',NULL,NULL),(1668000,'Marcus Warren',NULL,NULL),(1668020,'Julien Berlan',NULL,NULL),(1668027,'Nicolas Atlan',NULL,NULL),(1668151,'Neil Gibbons',NULL,NULL),(1668152,'Rob Gibbons',NULL,NULL),(1668208,'Charlie McDermott',1990,NULL),(1668265,'Matt Long',1980,NULL),(1668276,'David Peers',NULL,NULL),(1668320,'Peter Robertson',NULL,NULL),(1668634,'Prakash Kovelamudi',1975,NULL),(1669022,'John Bonito',NULL,NULL),(1669348,'Susan Mullen',NULL,NULL),(1669383,'James Bradley',NULL,NULL),(1669663,'Sebastien Andrieu',1978,NULL),(1670029,'Rupert Friend',1981,NULL),(1670137,'Georgie Henley',1995,NULL),(1670244,'Mahesh Kanual',NULL,NULL),(1670601,'Tom Pelphrey',1982,NULL),(1670774,'Benjamin Smolen',1987,NULL),(1671035,'Virginia Cristina Ariza',NULL,NULL),(1671147,'Cleopatra Coleman',1987,NULL),(1671184,'Arta Dobroshi',1980,NULL),(1671461,'Pilar M. Lastra',1981,NULL),(1671512,'Anamaria Marinca',1978,NULL),(1671609,'Tessa Ia',NULL,NULL),(1672009,'Eilis Kirwan',NULL,NULL),(1672013,'Barbara Kymlicka',NULL,NULL),(1672020,'Igor Legarreta',1973,NULL),(1672051,'Régis Roinsard',1972,NULL),(1672061,'Issei Shibata',1967,NULL),(1672154,'Cheryl Guerriero',NULL,NULL),(1672161,'Khaled Hosseini',1965,NULL),(1672215,'Anna Obropta',NULL,NULL),(1672246,'Jorma Taccone',1977,NULL),(1672284,'István Bodzsár',NULL,NULL),(1672318,'Leon Edery',NULL,NULL),(1672344,'Yoshihiro Hagiwara',NULL,NULL),(1672363,'Neil Jaworski',1976,2019),(1672425,'Will Reiser',NULL,NULL),(1672429,'Compton Ross',NULL,NULL),(1672575,'Goof de Koning',NULL,NULL),(1672707,'Johan Testad',NULL,NULL),(1673169,'Georgina Allison Conder',NULL,NULL),(1673285,'Martín Escalante',NULL,NULL),(1673508,'Feliksas Abrukauskas',1980,NULL),(1673595,'Collin Brink',NULL,NULL),(1673756,'Jan-Ole Gerster',1978,NULL),(1674139,'Martin Rappeneau',1976,NULL),(1674354,'Philip Zimbardo',1933,NULL),(1674464,'Erin Dilly',1972,NULL),(1674495,'Anna Gavalda',1970,NULL),(1674539,'Abbie Hirst',NULL,NULL),(1674631,'Yann Martel',1963,NULL),(1674903,'Lucas Bryant',1978,NULL),(1674947,'Robert James-Collier',1976,NULL),(1675002,'Nicholas Elia',1997,NULL),(1675534,'Karina Testa',1981,NULL),(1675549,'Filippo Trojano',NULL,NULL),(1675786,'Soha Ali Khan',1978,NULL),(1676089,'Will Clarke',NULL,NULL),(1676193,'Lee Child',1973,NULL),(1676221,'Andy Samberg',1978,NULL),(1676223,'Akiva Schaffer',1977,NULL),(1676423,'Jason Peri',NULL,NULL),(1676626,'Michelle Merring',NULL,NULL),(1676649,'Nate Parker',1979,NULL),(1676759,'Mark Conrad Alkiewicz',NULL,NULL),(1676793,'Mark Boal',1973,NULL),(1677477,'Marin Ireland',NULL,NULL),(1677499,'Matthew Price',NULL,NULL),(1677525,'Michael E. Williamson',NULL,NULL),(1678063,'Estelle',1980,NULL),(1678495,'Terry Ryan',1946,2007),(1678557,'Ashraf Barhom',1979,NULL),(1679372,'Sudeep',1973,NULL),(1679447,'Dries Vanhegen',1967,NULL),(1679614,'Empar Canet',NULL,NULL),(1679669,'Rosemarie DeWitt',1971,NULL),(1679778,'Sylvia Hoeks',1983,NULL),(1679934,'Nana Mizuki',1980,NULL),(1680142,'Najarra Townsend',1989,NULL),(1680347,'Don DeLillo',1936,NULL),(1680438,'Chris Westendorp',NULL,NULL),(1680555,'Clara Markowicz',NULL,NULL),(1680597,'Scott G. Stone',NULL,NULL),(1680607,'Mark Vahradian',NULL,NULL),(1681893,'Lachlan Milne',NULL,NULL),(1682029,'Collin Redmond',NULL,NULL),(1682154,'Susanna Tsang',NULL,NULL),(1682319,'Nate Corddry',1977,NULL),(1682400,'Spencer Locke',1991,NULL),(1682412,'Brandon McGibbon',NULL,NULL),(1682420,'Dustin Milligan',NULL,NULL),(1682573,'Justin Baldoni',1984,NULL),(1682799,'Tomasz Kot',1977,NULL),(1682832,'Luke Macfarlane',1980,NULL),(1682928,'Marc Paquet',NULL,NULL),(1683003,'Hiro Shimono',NULL,NULL),(1683094,'Aaron Yoo',1979,NULL),(1683671,'Bill Haney',NULL,NULL),(1683768,'Beau Garrett',1982,NULL),(1684016,'Mike Fetterly',NULL,NULL),(1684092,'Jimi Jones',NULL,NULL),(1684414,'Anthony Moody',NULL,NULL),(1684437,'Kelly Thomas',NULL,NULL),(1684558,'Jeremiah Campbell',1977,NULL),(1684869,'Troy Baker',1976,NULL),(1685000,'Michael Colton',NULL,NULL),(1685281,'Carlos Santos',1978,NULL),(1685408,'Dawn Olivieri',1981,NULL),(1685658,'JoJo',1990,NULL),(1685816,'Mike Jackson',1972,NULL),(1685836,'Alastair Clark',NULL,NULL),(1686085,'Murphy Michaels',NULL,NULL),(1686350,'Elizabeth Blake',NULL,NULL),(1686456,'Karina',1984,NULL),(1686684,'Zach Cohen',1977,NULL),(1686763,'Niklas Johansson',NULL,NULL),(1687017,'Gô Ayano',1982,NULL),(1687155,'Tom Bradby',1967,NULL),(1687396,'Jurgen Delnaet',1972,NULL),(1687404,'François-Xavier Demaison',1973,NULL),(1687610,'Grégory Gadebois',1976,NULL),(1688447,'Donald M. Osborne',NULL,NULL),(1688760,'Arnd Schimkat',1969,NULL),(1689177,'Fahri Yardim',1980,NULL),(1689640,'Shelly DeChristofaro',NULL,NULL),(1689927,'Maki Horikita',1988,NULL),(1690044,'Michele Knotz',NULL,NULL),(1690270,'Amber Midthunder',NULL,NULL),(1690331,'Kate Nauta',1982,NULL),(1690432,'Tommie-Amber Pirie',NULL,NULL),(1690482,'Damaine Radcliff',1979,NULL),(1690630,'Rebecca Shoichet',1975,NULL),(1690966,'Joaquim Dos Santos',1977,NULL),(1690967,'Isaac Feder',NULL,NULL),(1691003,'Steven Bagatourian',NULL,NULL),(1691074,'Sid Schlager',NULL,NULL),(1691108,'Edher Campos',NULL,NULL),(1691238,'Manuel Lommel',1949,NULL),(1692073,'Tai Duncan',NULL,NULL),(1692290,'Mike Larocca',NULL,NULL),(1692762,'Nathaniel Buzolic',1983,NULL),(1693019,'Laura Vasiliu',1976,NULL),(1693080,'Alex Wilson',NULL,NULL),(1693095,'Jerad Anderson',NULL,NULL),(1693112,'Carlos Areces',1976,NULL),(1693432,'Jan Cornet',1982,NULL),(1693588,'Tate Ellington',1979,NULL),(1693627,'Stephen Feder',1980,NULL),(1693954,'Gregory Jones',NULL,NULL),(1694289,'Brain Mantia',1963,NULL),(1694524,'N.T. Rama Rao Jr.',1983,NULL),(1694619,'John Ostrander',1949,NULL),(1695893,'Orla Fitzgerald',1978,NULL),(1696098,'Dany Garcia',1968,NULL),(1696876,'April Wade',NULL,NULL),(1697036,'Mary Morasky',1929,2016),(1697044,'Anna Vareschi',NULL,NULL),(1697112,'Adam Green',1975,NULL),(1697283,'Philip Miller',1964,NULL),(1697585,'Chien-Chi Chen',NULL,NULL),(1697780,'Staci Lawrence',NULL,NULL),(1698359,'Jo Wallett',NULL,NULL),(1698390,'Carla Jones',NULL,NULL),(1698571,'Evan Goldberg',1982,NULL),(1698584,'Scott Thomas',1975,NULL),(1698655,'Erdal Besikçioglu',1970,NULL),(1699268,'Celia Beasley',NULL,NULL),(1699328,'Shana Dowdeswell',1989,2012),(1699333,'Ruth Díaz',1975,NULL),(1699346,'Alba Flores',1986,NULL),(1699507,'Katie O\'Grady',NULL,NULL),(1699780,'Suha Arraf',1969,NULL),(1699869,'Ruth Sacks',1920,2014),(1699934,'Sean Durkin',1981,NULL),(1700020,'Thomas Verhaeghe',NULL,NULL),(1700029,'Sanne Wohlenberg',1968,NULL),(1700105,'Christopher Cano',NULL,NULL),(1700167,'Frederik Wiedmann',1981,NULL),(1700638,'Jean-Luc Bilodeau',1990,NULL),(1701024,'Nadine Labaki',1974,NULL),(1701120,'Lauren Grant',NULL,NULL),(1701139,'Will Barratt',NULL,NULL),(1701150,'Gabriel Fleming',NULL,NULL),(1701420,'Nicole DeMasi',NULL,NULL),(1701474,'Dean O\'Toole',NULL,NULL),(1703410,'Josefin Neldén',1984,NULL),(1703577,'Liu Yifei',1987,NULL),(1703597,'Vladlen Barbe',1960,NULL),(1703612,'Joby Harold',NULL,NULL),(1703635,'Federica Pontremoli',NULL,NULL),(1703726,'Britta Svensson',NULL,NULL),(1703817,'Franck Ribière',NULL,NULL),(1703853,'Telmo Churro',NULL,NULL),(1703899,'Arnau Bataller',1977,NULL),(1704795,'Stanley J. Orzel',NULL,NULL),(1704813,'Lucian Piane',1980,NULL),(1704969,'Vikram Weet',NULL,NULL),(1705158,'Johnathan Tchaikovsky',1983,NULL),(1705785,'Johanna Strömberg',NULL,NULL),(1705798,'Cecilia Wallin',1985,NULL),(1705857,'Travis Stevens',NULL,NULL),(1705911,'Ben Lovett',NULL,NULL),(1706140,'Rachel Carey',1975,NULL),(1706261,'Joni Lefkowitz',1980,NULL),(1706441,'Justin Bursch',NULL,NULL),(1706767,'Jonah Hill',1983,NULL),(1706832,'Christopher Denham',NULL,NULL),(1707018,'Ryan Whitney',NULL,NULL),(1707265,'Albert Lee',NULL,NULL),(1707307,'Gerald Clarke',NULL,NULL),(1707408,'Richard Cooke',NULL,NULL),(1707863,'Huai Dessom',NULL,NULL),(1708049,'Sirivech Jareonchon',NULL,NULL),(1708092,'Hal B. Klein',NULL,NULL),(1708637,'Zoé Auclair',NULL,NULL),(1708683,'Lea Bridarolli',NULL,NULL),(1708832,'Bérangère Haubruge',NULL,NULL),(1709225,'Alex McAulay',1977,NULL),(1709238,'Iginio Straffi',1965,NULL),(1709264,'Dave Callaham',NULL,NULL),(1709401,'Philip Boëffard',NULL,NULL),(1709468,'Jonathan Montepare',1980,NULL),(1709539,'Chitora Ôkoshi',NULL,NULL),(1709689,'Heike Parplies',NULL,NULL),(1709882,'Prompop Lee',NULL,NULL),(1710309,'Emory Cohen',1990,NULL),(1710524,'Emir Isilay',NULL,NULL),(1710843,'Christian Siebenherz',NULL,NULL),(1711052,'Rhys Coiro',1979,NULL),(1711114,'Skyler Gisondo',1996,NULL),(1711203,'Lakshmi Manchu',1977,NULL),(1711652,'Owen McDonnell',1974,NULL),(1711829,'Steven Strait',1986,NULL),(1712317,'Jason Kwan',NULL,NULL),(1712318,'José L. Moreno',NULL,NULL),(1712356,'Sergio Moure',1969,NULL),(1712383,'Jason Carvey',NULL,NULL),(1712417,'Lucas Roche',NULL,NULL),(1713233,'Mario Gianani',NULL,NULL),(1713322,'Mike Hedges',NULL,NULL),(1713410,'Helen Cross',1967,NULL),(1713427,'Michael LaBash',NULL,NULL),(1713653,'Rain',1982,NULL),(1714622,'Adam Arkapaw',NULL,NULL),(1714788,'Jared Cohn',NULL,NULL),(1715025,'Aku Hirviniemi',1983,NULL),(1715062,'P.J.C. Janssen',1824,1907),(1715118,'AnnaLynne McCord',1987,NULL),(1715145,'Alexia Barlier',NULL,NULL),(1715194,'Aníta Briem',1982,NULL),(1715257,'Malin Crépin',1978,NULL),(1715275,'Noureen DeWulf',1984,NULL),(1715297,'Penny Vital',1977,NULL),(1715521,'Possidónio Cachapa',NULL,NULL),(1715648,'Richard Hutton',NULL,NULL),(1715691,'Seong-back Jang',NULL,NULL),(1715718,'Michael Damon',NULL,NULL),(1715745,'Chungsol Art',NULL,NULL),(1716636,'Marielle Heller',1979,NULL),(1716909,'Miroslav Krobot',1951,NULL),(1717138,'Adam Pålsson',1988,NULL),(1717152,'Jackson Rathbone',1984,NULL),(1717183,'Samuel Roukin',1980,NULL),(1717222,'Ion Sapdaru',1961,NULL),(1717331,'Karl Theobald',1969,NULL),(1717573,'Pollyanna McIntosh',1979,NULL),(1717857,'Agneta Ulfsäter-Troell',1941,NULL),(1717925,'Bart Layton',NULL,NULL),(1717949,'Corneliu Porumboiu',1975,NULL),(1718014,'Claire Paoletti',NULL,NULL),(1718023,'Mirza Muhammad Hadi Ruswa',NULL,NULL),(1718044,'Olivier Vannelle',NULL,NULL),(1718181,'Germain McMicking',NULL,NULL),(1718189,'Timo Peltola',NULL,NULL),(1718236,'Greg Nicolett',1982,NULL),(1718343,'Roxana Szel',NULL,NULL),(1718864,'Jamie Minoprio',1978,NULL),(1719342,'Cory Monteith',1982,2013),(1719673,'Mirai Moriyama',1984,NULL),(1720028,'Amber Heard',1986,NULL),(1720103,'Kymberly Mellen',NULL,NULL),(1720431,'Matthew Gerrard',NULL,NULL),(1720459,'Michael Reola',NULL,NULL),(1720466,'Slvian',NULL,NULL),(1720541,'David Slade',1969,NULL),(1720648,'Damon Beesley',1971,NULL),(1720736,'Robert Tonino',NULL,NULL),(1721077,'Scott Heim',1966,NULL),(1721369,'Chris Bernier',NULL,NULL),(1721465,'Camille Gatin',NULL,NULL),(1721806,'Michael Wynne',1972,NULL),(1721889,'Frank O\'Connor',NULL,NULL),(1722044,'Tom Kane',NULL,NULL),(1722045,'Sanjeev Kohli',NULL,NULL),(1722079,'Camille',1978,NULL),(1722281,'Deborah Curtis',1956,NULL),(1722914,'Torrey DeVitto',1984,NULL),(1723030,'Michelle Lombardo',1983,NULL),(1723094,'Mercedes López Renard',NULL,NULL),(1723342,'Banban Cheng',NULL,NULL),(1723349,'Low Keong',NULL,NULL),(1723381,'Nicholas Pavkovic',NULL,NULL),(1723418,'Tom Fulford',NULL,NULL),(1723971,'Aaron Kovalchik',NULL,NULL),(1724319,'Sebastian Maniscalco',1973,NULL),(1724323,'Jayma Mays',1979,NULL),(1724509,'Luke Humphrey',1987,NULL),(1724522,'Kaname Fujioka',NULL,NULL),(1724526,'Lee Kim',1972,NULL),(1724980,'Kim Chow',NULL,NULL),(1724987,'Pawel Laskowski',NULL,NULL),(1725022,'Brandon Sawyer',1974,NULL),(1725034,'Patrick Aison',NULL,NULL),(1725195,'Mark E. Swinton',1968,NULL),(1725223,'Brian Byrne',NULL,NULL),(1725322,'Meghan Heffern',NULL,NULL),(1725839,'Tangerine Dream',NULL,NULL),(1725848,'Joe Anderson',1982,NULL),(1725951,'Jesus Guzman',NULL,NULL),(1726179,'Jennifer Steele',NULL,NULL),(1726242,'John Hunter',NULL,NULL),(1726378,'Ben York Jones',1984,NULL),(1726457,'John Glenn',NULL,NULL),(1726531,'Michael Rasmussen',NULL,NULL),(1726555,'Claudia Traisac',1992,NULL),(1726647,'Vladimir Simic',NULL,NULL),(1726663,'Dave Porter',NULL,NULL),(1726667,'Mark Willard',NULL,NULL),(1726688,'Avi Lewis',NULL,NULL),(1726691,'Adam Randall',1982,NULL),(1726854,'Stephen Kendrick',NULL,NULL),(1726876,'Travis Wright',NULL,NULL),(1726912,'Shawn Rasmussen',NULL,NULL),(1727020,'Clint Bickham',1981,NULL),(1727100,'Jay Chou',1979,NULL),(1727189,'Don Early',NULL,NULL),(1727304,'Domhnall Gleeson',1983,NULL),(1727317,'Lucas Grabeel',1984,NULL),(1727356,'Rasmus Hardiker',1985,NULL),(1727367,'Tim Heidecker',1976,NULL),(1727621,'Jason Mantzoukas',1972,NULL),(1727756,'The Philadelphia Orchestra',NULL,NULL),(1727762,'Berkun Oya',1977,NULL),(1727781,'Alon Pdut',NULL,NULL),(1727825,'Tony Revolori',1996,NULL),(1728099,'Eric Wareheim',1976,NULL),(1728121,'Steve Wolbrecht',NULL,NULL),(1728213,'Jessica Ashworth',1987,NULL),(1728249,'Malgorzata Bela',1977,NULL),(1728301,'Erin Cardillo',1977,NULL),(1728326,'Courtney Clonch',NULL,NULL),(1728497,'Maya Hazen',1978,NULL),(1728766,'Mary Eileen O\'Donnell',NULL,NULL),(1728830,'Alma Pöysti',NULL,NULL),(1729013,'Joy Yandell',NULL,NULL),(1729095,'Shlomi Elkabetz',1972,NULL),(1729102,'Simon Fitzmaurice',NULL,2017),(1729171,'Noam Murro',1961,NULL),(1729294,'Luke Davies',1962,NULL),(1729303,'Marcus Dunstan',NULL,NULL),(1729366,'Gorka Magallón',NULL,NULL),(1729428,'Gary Whitta',NULL,NULL),(1729481,'Cornelius Booker III',NULL,NULL),(1729542,'Rebekah Gilbertson',NULL,NULL),(1729612,'Benjamina Mirnik',NULL,NULL),(1730037,'Jonathan Krisel',NULL,NULL),(1730090,'Federico D\'Alessandro',NULL,NULL),(1730211,'Lisa Yeiser',NULL,NULL),(1730221,'Reid Carolin',1982,NULL),(1731154,'Farhad Safinia',1975,NULL),(1731479,'Talya Lavie',1978,NULL),(1731624,'Pierre Deladonchamps',1978,NULL),(1731937,'Alex Kendrick',1970,NULL),(1732122,'Geoff Pearlman',NULL,NULL),(1732403,'Brianne Davis',1982,NULL),(1732579,'Christian Pitre',1983,NULL),(1732883,'Sasha Gordon',NULL,NULL),(1732890,'Andrew Kaiser',NULL,NULL),(1732926,'Jason Staczek',1965,NULL),(1732975,'Niall MacCormick',NULL,NULL),(1732981,'Martin McDonagh',1970,NULL),(1732997,'Matthieu Ricard',NULL,NULL),(1733017,'Emily Ting',NULL,NULL),(1733026,'Kimberly K. Wilson',NULL,NULL),(1733216,'Iliana Nikolic',NULL,NULL),(1733243,'Jeffrey Seller',NULL,NULL),(1733301,'Dave Gibbons',1949,NULL),(1733305,'Adam Haynes',NULL,NULL),(1733317,'Patrick Melton',1975,NULL),(1733337,'Adam Till',NULL,NULL),(1733365,'J. Todd Smith',NULL,NULL),(1733422,'John Heffernan',NULL,NULL),(1733756,'John D\'Arco',NULL,NULL),(1733778,'Jeff Fowler',1978,NULL),(1733918,'Dana Murray',NULL,NULL),(1734633,'Alain Yves Beaujour',NULL,NULL),(1734700,'Nelsan Ellis',1977,2017),(1734747,'Senad Halilbasic',1988,NULL),(1735235,'Narges Rashidi',1980,NULL),(1735332,'Özge Özberk',1976,NULL),(1735367,'John Quaintance',1971,NULL),(1735425,'Sherman Chow',NULL,NULL),(1735513,'Thorkell S. Hardarson',NULL,NULL),(1735543,'Ry Russo-Young',NULL,NULL),(1736162,'Mattias Bärjed',NULL,NULL),(1736769,'Ariel Winter',1998,NULL),(1737002,'Phillip Parslow',NULL,NULL),(1737008,'Aron Ralston',1975,NULL),(1737155,'Michael Lavelle',NULL,NULL),(1737171,'Bryan Mason',NULL,NULL),(1737326,'Cormac Fox',NULL,NULL),(1737412,'Kate McCullough',NULL,NULL),(1737422,'Brandon Auman',NULL,NULL),(1738172,'Toby Hemingway',1983,NULL),(1738176,'Patrick Heusinger',1981,NULL),(1738178,'Blake Hightower',1994,NULL),(1738571,'Melissa Lyons',NULL,NULL),(1738584,'Allie Mickelson',NULL,NULL),(1738734,'David Kajganich',1969,NULL),(1738735,'Sidney R. Kent',1885,NULL),(1738737,'Yukito Kishiro',1967,NULL),(1738794,'Israel Cárdenas',1980,NULL),(1738801,'Veli Kuzlu',1973,NULL),(1738811,'Vasco Viana',NULL,NULL),(1738814,'Ran Bagno',NULL,NULL),(1738823,'Ozan Çolakoglu',1972,NULL),(1738945,'Jérémie Sfez',NULL,NULL),(1738956,'Jimena Azula',NULL,NULL),(1739039,'Chad Feehan',1978,NULL),(1739338,'Aaron Horvath',1980,NULL),(1739764,'Maaike Neuville',1983,NULL),(1739844,'Adrian Alonso',1994,NULL),(1739904,'Jean-Christophe Folly',NULL,NULL),(1740112,'Denise Gough',1980,NULL),(1740259,'Joseph Carrillo',NULL,NULL),(1740696,'B.R. McLendon',1900,1982),(1740772,'Christopher Buckley',1952,NULL),(1740888,'Michael Lander',NULL,NULL),(1741002,'Matt Smith',1982,NULL),(1741105,'Steve Taylor',1957,NULL),(1741345,'Thomas Morrison',1983,NULL),(1741455,'Peter Crombie',NULL,NULL),(1741471,'Ben Pearson',NULL,NULL),(1741809,'Roland Borgström',NULL,NULL),(1741967,'Dustin Fasching',NULL,NULL),(1742208,'Ron Lipski',NULL,NULL),(1742427,'Michaël R. Roskam',1972,NULL),(1742493,'Art Spigel',1972,NULL),(1742630,'Marc Wootton',1975,NULL),(1742715,'Ayça Bingöl',1975,NULL),(1742910,'Ingrid Jungermann',NULL,NULL),(1743166,'Camila Sodi',1986,NULL),(1743180,'Julija Steponaityte',1992,NULL),(1743277,'Mahyar Abousaeedi',NULL,NULL),(1743612,'Arielle Sleutel',NULL,NULL),(1743706,'Jon Thor Birgisson',1975,NULL),(1743738,'Raf Keunen',NULL,NULL),(1743745,'Pessi Levanto',NULL,NULL),(1743772,'Kjartan Sveinsson',1978,NULL),(1743777,'Ebony Tay',NULL,NULL),(1743965,'Walter Brugmans',NULL,NULL),(1744135,'Mathieu Verhaeghe',NULL,NULL),(1744293,'Mevlut Akkaya',1964,NULL),(1744333,'Joonas Berghäll',NULL,NULL),(1745019,'Maggie Siff',1974,NULL),(1745389,'Rob Pearlstein',NULL,NULL),(1745427,'Bobby Roe',NULL,NULL),(1745451,'Karl Alexander Seidel',1995,NULL),(1745736,'Paula Patton',1975,NULL),(1745743,'Alice Pol',1982,NULL),(1746166,'Teddy Leifer',NULL,NULL),(1746304,'Melissa Bank',1985,2022),(1746358,'Robert Paterson',NULL,NULL),(1746379,'Ting Ting Hu',1979,NULL),(1746859,'Karen J. Lloyd',NULL,NULL),(1746948,'Brian O\'Malley',NULL,NULL),(1747013,'Adam Levine',1979,NULL),(1747075,'Luke Carroll',NULL,NULL),(1747215,'Alex Young',1971,NULL),(1747271,'Roy Williams',1968,NULL),(1747551,'Kyle Field',NULL,NULL),(1747674,'Urs Jucker',1973,NULL),(1747747,'Ravn Lanesskog',NULL,NULL),(1747867,'Louis Morissette',1974,NULL),(1748072,'Amit Sial',1975,NULL),(1748106,'Ian Stokell',1959,NULL),(1748388,'Kerris Dorsey',1998,NULL),(1748489,'Zulay Henao',NULL,NULL),(1748545,'Agnes Kittelsen',1980,NULL),(1748634,'Lucian Msamati',1976,NULL),(1748780,'Darya Charusha',1980,NULL),(1749087,'Paul Lovett',NULL,NULL),(1749090,'Ubaldo Magnaghi',NULL,NULL),(1749112,'Vincent Paronnaud',1970,NULL),(1749125,'Diego San José',1978,NULL),(1749221,'Nina Jacobson',NULL,NULL),(1749552,'Tony Kearns',NULL,NULL),(1749863,'Nahikari Ipiña',1977,NULL),(1750217,'Shawn McCorkindale',NULL,NULL),(1750312,'Arianne Sutner',NULL,NULL),(1750324,'Isold Uggadottir',NULL,NULL),(1750371,'Marsha Stephanie Blake',NULL,NULL),(1750524,'Melanie Papalia',NULL,NULL),(1751183,'Jasen Wade',NULL,NULL),(1751315,'Cornelia Funke',1958,NULL),(1751726,'Jonathan Snipes',NULL,NULL),(1752036,'Gonzalo Maza',NULL,NULL),(1752042,'John Nickle',NULL,NULL),(1752072,'Vanessa Born',1980,NULL),(1752186,'Alexandra Moen',1978,NULL),(1752221,'Gina Rodriguez',1984,NULL),(1752259,'Michael J. Willett',1989,NULL),(1752338,'Zoltan Honti',NULL,NULL),(1752532,'Tadhg Murphy',1979,NULL),(1752591,'Erik Olsen',NULL,NULL),(1752714,'Clint James',NULL,NULL),(1752997,'Gary Cook',NULL,NULL),(1753704,'Jannis Niewöhner',1992,NULL),(1754059,'Natalie Dormer',1982,NULL),(1754147,'Joséphine Japy',1994,NULL),(1754239,'Annie Mumolo',1973,NULL),(1754366,'Tika Sumpter',1980,NULL),(1754408,'Ute Werner',NULL,NULL),(1754427,'Tülin Özen',1979,NULL),(1754436,'Sophie Barthes',NULL,NULL),(1754499,'Cecelia Ahern',1981,NULL),(1754512,'Ronald Everett Capps',NULL,NULL),(1754526,'Tom Junod',1958,NULL),(1754539,'Augusto Mendoza',NULL,NULL),(1754588,'Kerem Çatay',1979,NULL),(1754680,'Atsushi Sugita',NULL,NULL),(1754704,'Zillah Bowes',NULL,NULL),(1754757,'Yasuhiko Fukuda',NULL,NULL),(1754777,'Damien Roques',NULL,NULL),(1754800,'Sandeep Shirodkar',NULL,NULL),(1754850,'Frédéric Thoraval',1973,NULL),(1754919,'Sunil Babu',NULL,NULL),(1755190,'Jessica Brunetto',NULL,NULL),(1755213,'Reid Collums',1981,NULL),(1755315,'Matthew Hannam',1981,NULL),(1755396,'Roseanne Liang',NULL,NULL),(1755470,'Ido Ostrowsky',NULL,NULL),(1755508,'Sung Rae Cho',NULL,NULL),(1755868,'ABBA',NULL,NULL),(1755921,'Jimmy Campbell',1903,1967),(1755986,'Christopher Ford',NULL,NULL),(1756539,'Jody Jenkins',NULL,NULL),(1757129,'Akihiro Hino',NULL,NULL),(1757227,'Rich Burns',NULL,NULL),(1757236,'Leslie Gornstein',NULL,NULL),(1757373,'Ken Barnett',NULL,NULL),(1757667,'Joel Anderson',NULL,NULL),(1757718,'Richard Glover',NULL,NULL),(1757754,'Fred Berger',NULL,NULL),(1757777,'Dave Green',NULL,NULL),(1758477,'Luis Salinas',NULL,NULL),(1759257,'Gábor Madarász',1967,NULL),(1759691,'Batchuluun Urjindorj',NULL,NULL),(1759696,'Max Valverde-Soto',NULL,NULL),(1759904,'Nansal Batchuluun',NULL,NULL),(1759905,'Nansalmaa Batchuluun',NULL,NULL),(1760015,'Buyandulam Daramdadi',NULL,NULL),(1760272,'Margarita Levieva',1980,NULL),(1760388,'America Olivo',1978,NULL),(1760573,'Ninet Tayeb',1983,NULL),(1760648,'Séverine Werba',NULL,NULL),(1760759,'Matt Eskandari',NULL,NULL),(1760830,'Kyle Newacheck',1984,NULL),(1760850,'Joseph Raso',NULL,NULL),(1760871,'Yaron Shani',1973,NULL),(1760980,'Javier Sánchez Donate',NULL,NULL),(1761126,'Takeshi Obata',1969,NULL),(1761153,'Jean-André Yerlès',NULL,NULL),(1761255,'Jody Girgenti',NULL,NULL),(1761263,'Lindsay Gossling',NULL,NULL),(1761309,'Keith Kjarval',NULL,NULL),(1761420,'Brigham Taylor',NULL,NULL),(1761469,'Andrés Calderón',NULL,NULL),(1761718,'Derek Ambrosi',1975,NULL),(1762122,'Nicolas Emiliani',NULL,NULL),(1762339,'Benito Mueller',NULL,NULL),(1762388,'Kim Argetsinger',1981,NULL),(1762507,'Jade Dornfeld',1978,NULL),(1762862,'Sabereh Kashi',NULL,NULL),(1762961,'Jeff Tomsic',NULL,NULL),(1763736,'Ran Khalil Danker',1983,NULL),(1764070,'Katie Crown',NULL,NULL),(1764072,'Julianne Côté',1990,NULL),(1764768,'Mara Jacobs',NULL,NULL),(1764787,'Javier Limón',1973,NULL),(1764881,'Chris Fink',NULL,NULL),(1764901,'Harry Lampert',1916,2004),(1764916,'Mark O\'Donnell',1954,2012),(1764920,'Joe Piscatella',1972,NULL),(1764941,'Daniel Bekerman',NULL,NULL),(1765171,'Jennifer Skelly',NULL,NULL),(1765464,'Lea Marin',NULL,NULL),(1765584,'Erica Schmidt',1975,NULL),(1765623,'Quyen Tran',NULL,NULL),(1765773,'Joe Neurauter',NULL,NULL),(1765923,'Sean Moynihan',NULL,NULL),(1766424,'Mark Young',NULL,NULL),(1766738,'John Cheng',NULL,NULL),(1766846,'Irineo Alvarez',NULL,NULL),(1766942,'Farruco Castromán',NULL,NULL),(1766976,'Toma Cuzin',1977,NULL),(1767139,'Patrick Horvath',NULL,NULL),(1767218,'Lee Toland Krieger',1983,NULL),(1767287,'Jovo Maksic',1972,NULL),(1767401,'Stephen Pelinski',NULL,NULL),(1767483,'Ralph Sarchie',NULL,NULL),(1767528,'Morgan Spector',1980,NULL),(1767754,'Katie Dippold',1980,NULL),(1767820,'Samantha Hanratty',1995,NULL),(1767872,'Anna Khilkevich',1986,NULL),(1767972,'Martha Nussbaum',1947,NULL),(1768017,'Anessa Ramsey',1978,NULL),(1768202,'Teddy Lussi-Modeste',NULL,NULL),(1768243,'Jean-Baptiste de Laubier',1979,NULL),(1768265,'Mariette Désert',NULL,NULL),(1768652,'Helga Brüning',NULL,NULL),(1768675,'Affandi Jamaludin',NULL,NULL),(1769527,'Cristian Pirjol',1982,NULL),(1769711,'Stef Aerts',1987,NULL),(1769728,'MyAnna Buring',1979,NULL),(1770233,'Ty Thomas Reed',1992,NULL),(1770672,'Tim Hetherington',1970,2011),(1770680,'Julien Pappé',1920,2005),(1770705,'Tom Raybould',NULL,NULL),(1770774,'Jean-Christophe Bouzy',NULL,NULL),(1770781,'Melanie Landa',NULL,NULL),(1771270,'Kai Schürmann',NULL,NULL),(1771279,'Iris K. Shim',NULL,NULL),(1771404,'Flora Fernandez-Marengo',NULL,NULL),(1771591,'Catherine Paillé',1980,NULL),(1772091,'Adam Walker',NULL,NULL),(1772184,'Jennifer Miller',NULL,NULL),(1772460,'Nao Albet',1990,NULL),(1773440,'Violeta Pérez',NULL,NULL),(1773563,'Urszula Antoniak',1968,NULL),(1773569,'Shonali Bose',1965,NULL),(1775058,'Rodrigo dos Santos',1977,NULL),(1775091,'Danai Gurira',1978,NULL),(1775177,'Graham Phillips',1993,NULL),(1775955,'J. Michael Dawson',NULL,NULL),(1776338,'Chris Fedak',NULL,NULL),(1776365,'Peter Bevan',NULL,NULL),(1776651,'Matthew Parker',1976,NULL),(1776787,'Simon Stephenson',NULL,NULL),(1776792,'Jesse Adams',1970,NULL),(1776887,'Dan Levy',1976,NULL),(1777034,'Luke Johnson',NULL,NULL),(1777437,'Kei Yasuda',NULL,NULL),(1777607,'Tim Davies',1972,NULL),(1778008,'Rebecca Hobbs',NULL,NULL),(1778061,'Gianfranco Bettin',1955,NULL),(1778224,'Carmelli',NULL,NULL),(1778258,'Mauro Cordella',NULL,NULL),(1778292,'Dupeyron',NULL,NULL),(1778373,'Kent Foreman',NULL,NULL),(1778413,'Giuseppe Sanna',NULL,NULL),(1778465,'Masato Hijikata',NULL,NULL),(1778466,'Yûta Hiraoka',1984,NULL),(1778495,'Shizuka Itou',1980,NULL),(1778512,'Jóhannes Haukur Jóhannesson',NULL,NULL),(1778879,'Jonas Schmager',1978,NULL),(1778890,'Indraneil Sengupta',1974,NULL),(1779107,'Moyoco Anno',1971,NULL),(1779207,'Norma Codas',NULL,NULL),(1779314,'Tülay Günal',1970,NULL),(1779438,'Valentina Lodovini',1978,NULL),(1779520,'Yuika Motokariya',1987,NULL),(1779702,'Ayesha Takia',1986,NULL),(1779768,'Race Wong',1982,NULL),(1779802,'Anna Margarita Albelo',NULL,NULL),(1779809,'Bob Barlen',1980,NULL),(1779870,'Brit Marling',1982,NULL),(1779919,'Gwen Wynne',NULL,NULL),(1779941,'Lucy Dahl',1965,NULL),(1779958,'Haruko Fukushima',NULL,NULL),(1780037,'Céline Sciamma',1978,NULL),(1780039,'Nick Shumaker',1979,NULL),(1780061,'Junko Yaguchi',NULL,NULL),(1780075,'Morio Amagi',NULL,NULL),(1780149,'Shintarô Horikawa',NULL,NULL),(1780337,'Gökhan Tiryaki',1972,NULL),(1780515,'Jean-Christophe Hym',NULL,NULL),(1780517,'Julien Lacheray',NULL,NULL),(1781488,'Caroline Hirsch',NULL,NULL),(1782000,'Zachary Stuart-Pontier',1983,NULL),(1782101,'Anthony Weintraub',NULL,NULL),(1782235,'Ward Horton',1976,NULL),(1782292,'Hettienne Park',1983,NULL),(1782299,'Imogen Poots',1989,NULL),(1782394,'Adrian Annis',1973,NULL),(1782560,'Adam Sevani',1992,NULL),(1782667,'Matt Lanter',1983,NULL),(1782978,'Lalli',1956,NULL),(1782991,'Halle Bailey',2000,NULL),(1783265,'Tim Miller',1964,NULL),(1783331,'David Gómez',NULL,NULL),(1784078,'Walter Barnett',NULL,NULL),(1784831,'Lije Sarki',1977,NULL),(1785004,'Shengyi Huang',1983,NULL),(1785206,'Emma Fleury Harvey',NULL,NULL),(1785238,'Yûko Gotô',1980,NULL),(1785339,'Rami Malek',1981,NULL),(1785575,'Jaime Winstone',1985,NULL),(1785664,'Wayne Lytle',NULL,NULL),(1785879,'Shruti Ganguly',NULL,NULL),(1785967,'Denis Vaslin',NULL,NULL),(1785999,'Nicolas Karakatsanis',NULL,NULL),(1786009,'Yasutaka Nagano',NULL,NULL),(1786083,'Kyle Newmaster',NULL,NULL),(1786147,'David Crognale',NULL,NULL),(1786180,'Roberth Nordh',NULL,NULL),(1786398,'Kathryn Kuhn',NULL,NULL),(1787103,'Matthew Mulot',NULL,NULL),(1787259,'Samantha Strauss',NULL,NULL),(1787651,'Todd Berger',1979,NULL),(1787884,'Cassie Jaye',1986,NULL),(1787887,'Veronica Ngo',1979,NULL),(1788067,'Ray Gallardo',NULL,NULL),(1788075,'Dylan McCormick',NULL,NULL),(1788305,'Heath Franklin',NULL,NULL),(1788310,'Jenny Gage',NULL,NULL),(1788739,'Sosie Bacon',1992,NULL),(1788758,'Deric Bernier',NULL,NULL),(1789514,'Tom Bleecker',NULL,NULL),(1789517,'Patrick Carr',NULL,NULL),(1789635,'Chris Bouchard',NULL,NULL),(1789645,'Mark Daniel Dunnett',NULL,NULL),(1789794,'Alexander Glehr',NULL,NULL),(1789850,'Jean-Christophe Reymond',NULL,NULL),(1789970,'Addison Timlin',1991,NULL),(1789985,'Jon Daly',NULL,NULL),(1790682,'Matt Ryan',1981,NULL),(1790970,'Jessica Williams',1989,NULL),(1791103,'Nathan Johnson',1976,NULL),(1791196,'Marta Velasco',NULL,NULL),(1791785,'David Kennedy',1942,2015),(1791910,'Bill Parker',1911,1963),(1792363,'Mark Palermo',NULL,NULL),(1792454,'Ryan Miller',NULL,NULL),(1792900,'Brandon Scott',NULL,NULL),(1792947,'Sarah Whitley',1816,1888),(1793079,'Fede Alvarez',1978,NULL),(1793387,'Nick Flynn',1960,NULL),(1793993,'Christopher Priest',1943,NULL),(1794018,'Paul Van Carter',1976,NULL),(1794084,'Daniel Miranda',NULL,NULL),(1794460,'Asif Basra',1967,2020),(1795664,'Scott Glosserman',1976,NULL),(1795681,'Arcadiy Golubovich',NULL,NULL),(1795704,'Himiona Grace',NULL,NULL),(1795793,'Øyvind Hagen-Traberg',1969,NULL),(1795813,'Adam Hamilton',NULL,NULL),(1795890,'Henrik Hellström',NULL,NULL),(1796000,'Darcy Ray Flavell-Hudson',1994,NULL),(1796057,'Max Irons',1985,NULL),(1796515,'Adolphe Le Prince',1872,1901),(1796730,'Xolani Mali',NULL,NULL),(1796962,'Amit Mistry',1974,2021),(1797014,'Frank Mosley',NULL,NULL),(1797032,'Scotty Mullen',NULL,NULL),(1797112,'Ben Newmark',1981,NULL),(1797166,'Álvaro Novo',NULL,NULL),(1797214,'Suzuka Ohgo',1993,NULL),(1797322,'Colin Paradine',1971,NULL),(1798276,'Yutaka Takeuchi',NULL,NULL),(1798283,'Tamar-kali',NULL,NULL),(1798333,'Wayne Thornley',NULL,NULL),(1798449,'Juhan Ulfsak',1973,NULL),(1798654,'Joseph Whitley',1816,1891),(1799038,'Vidya Balan',1979,NULL),(1799073,'Edith \'Little Edie\' Bouvier Beale',1917,2002),(1799101,'Meagan Rachelle',NULL,NULL),(1799233,'Nancy Buirski',1945,2023),(1799384,'Isabella Cocuzza',NULL,NULL),(1799813,'Marialuisa Giovannini',NULL,NULL),(1799952,'Annie Hartley',1873,NULL),(1800338,'Meisa Kuroki',1988,NULL),(1800357,'Eva Lageder',NULL,NULL),(1800614,'Dirty Martini',1969,NULL),(1800729,'Pilar Miguélez',NULL,NULL),(1800791,'Katarina Morhacova',NULL,NULL),(1801453,'Achita Sikamana',NULL,NULL),(1801651,'Natthaweeranuch Thongmee',1979,NULL),(1801800,'Sharni Vinson',1983,NULL),(1801841,'Gemma Ward',1987,NULL),(1802009,'Marilyn Agrelo',NULL,NULL),(1802054,'Javi Camino',1982,NULL),(1802151,'Xiaolu Guo',1973,NULL),(1802209,'Nick Kroll',1978,NULL),(1802251,'Michele Mulroney',NULL,NULL),(1802267,'Rusty Nixon',NULL,NULL),(1802294,'Banjong Pisanthanakun',1979,NULL),(1802374,'Scott Teems',NULL,NULL),(1802381,'Darren Thornton',NULL,NULL),(1802493,'Augusten Burroughs',1965,NULL),(1802530,'Jacques Davidts',NULL,NULL),(1802625,'Ana Istarú',NULL,NULL),(1802656,'Carolina Kotscho',NULL,NULL),(1802671,'Morris Lavine',1896,1982),(1802792,'Santha Rama Rau',1923,2009),(1802793,'Esteban Ramírez',NULL,NULL),(1802857,'Josh Singer',NULL,NULL),(1802940,'Jingzhi Zou',NULL,NULL),(1802971,'Petr Anurov',NULL,NULL),(1802990,'Guillaume Benski',NULL,NULL),(1803036,'C. Robert Cargill',1975,NULL),(1803105,'Drew Dowdle',NULL,NULL),(1803122,'Brenda Egedy Kolb',NULL,NULL),(1803137,'Brian Peter Falk',NULL,NULL),(1803184,'Megan Gilbride',NULL,NULL),(1803302,'Kumi Kobata',NULL,NULL),(1803361,'Ivana MacKinnon',NULL,NULL),(1803515,'Michael Romersa',NULL,NULL),(1803551,'Florence Seidelman',NULL,NULL),(1803619,'Andre Teelen',NULL,NULL),(1803649,'Dinesh Vijan',NULL,NULL),(1803734,'Henner Besuch',NULL,NULL),(1803881,'Niramon Ross',NULL,NULL),(1803932,'Panu Aaltio',1982,NULL),(1803995,'Nando Carneiro',NULL,NULL),(1804246,'Frank Schreiber',NULL,NULL),(1804458,'Garret Elkins',NULL,NULL),(1804520,'Gillian McCarthy',NULL,NULL),(1804957,'Marcel Victor Prefontaine',NULL,NULL),(1805064,'Adam Weir',NULL,NULL),(1805074,'Toby Wilson',NULL,NULL),(1805278,'Benjamin Gray',NULL,NULL),(1805418,'Supratik Sen',NULL,NULL),(1806027,'Felipe Braga',1979,NULL),(1806251,'Jon Revell',NULL,NULL),(1806923,'Steven Hudosh',NULL,NULL),(1808873,'Kevin Blumenfeld',1983,NULL),(1808927,'Sharon Brewer',NULL,NULL),(1809189,'Eliane Coster',NULL,NULL),(1809308,'Gaurav Dhingra',NULL,NULL),(1812267,'Eddie Baroo',1968,NULL),(1812523,'Nathalie Cox',1978,NULL),(1812566,'Joe DeRosa',NULL,NULL),(1812637,'Virginie Efira',1977,NULL),(1812656,'Luke Evans',1979,NULL),(1812991,'Tori Kelly',1992,NULL),(1813015,'Kaki King',1979,NULL),(1813221,'Gugu Mbatha-Raw',1983,NULL),(1813667,'Mateus Solano',1981,NULL),(1813878,'Andy Whitfield',1971,2011),(1813984,'Todd Eckert',1967,NULL),(1814050,'David Vernon',NULL,NULL),(1814341,'Tom Stuart',NULL,NULL),(1814869,'Fiona Watson',NULL,NULL),(1814871,'Elizabeth Young',NULL,NULL),(1815091,'Tania Landau',NULL,NULL),(1815390,'Patrice Bélanger',1978,NULL),(1815886,'Marius Jampolskis',1978,NULL),(1815953,'Zak Kilberg',NULL,NULL),(1816775,'Gregg Weiner',NULL,NULL),(1817544,'Katie McDowell',NULL,NULL),(1817670,'Katherine Parkinson',1978,NULL),(1817726,'Jade Raymond',NULL,NULL),(1817740,'Cristine Reyes',1989,NULL),(1817817,'Jennifer Shirley',NULL,NULL),(1817887,'Christa Théret',1991,NULL),(1818032,'Lee Isaac Chung',1978,NULL),(1818154,'Leo Chu',NULL,NULL),(1818188,'Bhavani Iyer',NULL,NULL),(1818197,'Tite Kubo',1977,NULL),(1818216,'Payman Maadi',1970,NULL),(1818268,'David J. Stieve',1971,NULL),(1818350,'Fabrice Gianfermi',NULL,NULL),(1818453,'Risto Salomaa',1961,NULL),(1818478,'Yodphet Sudsawad',NULL,NULL),(1818572,'Neus Ollé',NULL,NULL),(1818744,'Benjamin Wallfisch',1979,NULL),(1818773,'Aran Mann',NULL,NULL),(1819135,'Nick Taussig',NULL,NULL),(1819732,'Jake Aust',1973,NULL),(1819972,'Matt Duffer',NULL,NULL),(1819973,'Ross Duffer',NULL,NULL),(1819990,'Jessica Elbaum',NULL,NULL),(1821298,'Laith Nakli',1969,NULL),(1821635,'Sanjeev Dutta',NULL,NULL),(1821791,'Asin Thottumkal',1985,NULL),(1821900,'Donald Young',NULL,NULL),(1822271,'Kevin Janssens',1979,NULL),(1822659,'Nat Wolff',1994,NULL),(1822679,'Alexis Díaz de Villegas',1966,2022),(1823244,'Aleksey Kiryushchenko',NULL,NULL),(1823264,'Aaron Moorhead',NULL,NULL),(1823354,'Midori Goto',NULL,NULL),(1823523,'Gisela Schäfer',NULL,NULL),(1823574,'Tal Lazar',NULL,NULL),(1823621,'Christophe Chassol',1976,NULL),(1823713,'Sandrine Cheyrol',NULL,NULL),(1823730,'Sævar Guðmundsson',NULL,NULL),(1823857,'Eric Andrew Kuhn',NULL,NULL),(1824014,'Benedict Spence',NULL,NULL),(1824236,'Sean Curley',NULL,NULL),(1824290,'Marco Dutra',1980,NULL),(1824476,'Michael Kors',1959,NULL),(1824654,'Brian Ronalds',1973,NULL),(1824967,'Claudia Lynx',1982,NULL),(1825196,'Takeichi Honda',NULL,NULL),(1825199,'James Dormer',NULL,NULL),(1825205,'André Küttel',NULL,NULL),(1825214,'John Mulaney',1982,NULL),(1825288,'Jun\'ichi Fujisaku',NULL,NULL),(1825294,'Fabian Gasmia',NULL,NULL),(1825319,'Matt Luber',NULL,NULL),(1825507,'Paul Stoney',NULL,NULL),(1825525,'David Banbury',NULL,NULL),(1825565,'Pierre Takal',NULL,NULL),(1826454,'Seong Hun Kim',1971,NULL),(1827167,'Gail Davis',NULL,NULL),(1827182,'Brandon Cox',1974,NULL),(1827488,'Gabrielle Dennis',NULL,NULL),(1827672,'Victor Freilich',1945,NULL),(1827715,'Georgina Townsley',1979,NULL),(1827744,'Paul Brill',NULL,NULL),(1827861,'Michael Brake',NULL,NULL),(1827931,'William Eubank',NULL,NULL),(1828101,'Jay Klaitz',NULL,NULL),(1828271,'Christopher Beal',NULL,NULL),(1828340,'Thomas L. Carter',NULL,NULL),(1828901,'Sullivan Brown',NULL,NULL),(1829290,'Kris Rey',1980,NULL),(1829543,'Chris Ferguson',1984,NULL),(1829742,'Marco Cohen',NULL,NULL),(1829796,'Jeff Cox',1976,NULL),(1829803,'Qiang Li',NULL,NULL),(1830312,'Joey Wells',NULL,NULL),(1830380,'Zoe Lister-Jones',1982,NULL),(1830443,'Anne Sørensen',NULL,NULL),(1830532,'Dan Krauss',NULL,NULL),(1830723,'Matthew Patrick Davis',NULL,NULL),(1831203,'Jaime Bernardo Ramos',NULL,NULL),(1831420,'Brian S. Lewis',NULL,NULL),(1831620,'Sean Porter',NULL,NULL),(1831976,'Jake Abel',NULL,NULL),(1832004,'Shiney Ahuja',1973,NULL),(1832125,'Yôsuke Asari',1987,NULL),(1832584,'Mario Casas',1986,NULL),(1832674,'Richard Christy',1974,NULL),(1833186,'Michael Kamm',NULL,NULL),(1833601,'David Wolbrecht',NULL,NULL),(1833770,'Pegah Ferydoni',1983,NULL),(1833818,'Missy Higgins',1983,NULL),(1834028,'Carol Roscoe',NULL,NULL),(1834115,'Annabelle Wallis',1984,NULL),(1834213,'Gary McKendry',NULL,NULL),(1834283,'Ann Cherkis',NULL,NULL),(1834298,'Nicola Guaglianone',1973,NULL),(1834343,'Matthew Peterman',1975,NULL),(1834373,'Trond Tønder',NULL,NULL),(1834470,'Tish Lopez',NULL,NULL),(1834474,'Jeff Madsen',1957,NULL),(1834530,'Kevin Turen',1979,NULL),(1834845,'Monica Palazzo',NULL,NULL),(1834891,'Maneesh Sharma',NULL,NULL),(1835055,'Damien Macé',NULL,NULL),(1835194,'Hiroshi Futami',NULL,NULL),(1836064,'Robert Anich',NULL,NULL),(1836065,'Craig Cotterill',NULL,NULL),(1836085,'Lesley Hart',NULL,NULL),(1836315,'Marc Meyers',NULL,NULL),(1836376,'Edward A. Warschilka',NULL,NULL),(1836649,'Vivek Gomber',NULL,NULL),(1836882,'Red Madrell',1987,NULL),(1837015,'Stephen Zotnowski',NULL,NULL),(1837043,'Molly Hassell',NULL,NULL),(1837152,'Nicole Balzarini',NULL,NULL),(1837175,'Dylan Matlock',NULL,NULL),(1837748,'Josh Boone',1979,NULL),(1837763,'Craig Cox',NULL,NULL),(1838058,'Múm',NULL,NULL),(1838070,'Jonathan Sadowski',1979,NULL),(1838658,'Paul Yee',NULL,NULL),(1838818,'Lucero',NULL,NULL),(1839316,'Andreas Köhler',NULL,NULL),(1839399,'Ron Simons',NULL,NULL),(1839414,'Brandon Alexander III',1983,NULL),(1839456,'David Egan',NULL,NULL),(1839743,'André Erkau',1968,NULL),(1839955,'Alban Lenoir',1980,NULL),(1840389,'Michelle Boback',NULL,NULL),(1840471,'Cecilia Forss',1985,NULL),(1840504,'Tiffany Haddish',1979,NULL),(1840708,'Teresa Ruiz',1988,NULL),(1840747,'Mie Sonozaki',1973,NULL),(1840748,'Nikki SooHoo',1988,NULL),(1840907,'Arne Nolting',NULL,NULL),(1841035,'Steven Millhauser',1943,NULL),(1841113,'Kelly Broad',NULL,NULL),(1841348,'Arcade Fire',NULL,NULL),(1841360,'Stephen Hoper',NULL,NULL),(1841530,'Ryan Spindell',NULL,NULL),(1842344,'Vincent Piazza',1976,NULL),(1842439,'Victoria Justice',1993,NULL),(1842600,'Maximilian Leo',1979,NULL),(1842654,'Klaus Kolb',NULL,NULL),(1842974,'Alex Wolff',1997,NULL),(1843026,'Gillian Jacobs',1982,NULL),(1843377,'Mrs. Knute Rockne',1891,1956),(1843517,'Hisashi Saitô',NULL,NULL),(1843538,'Jimmy Warden',NULL,NULL),(1843982,'Takeshi Ito',NULL,NULL),(1844237,'Chris Miller',1968,NULL),(1844318,'Nancy Bennett',NULL,NULL),(1844320,'David Blackman',NULL,NULL),(1844663,'Terry Robbins',NULL,NULL),(1844838,'Dave Levine',NULL,NULL),(1845027,'Luca Capriotti',NULL,NULL),(1845127,'Michael Fuith',1977,NULL),(1845157,'Robert Gerdisch',NULL,NULL),(1845333,'Peter Jecklin',1955,NULL),(1845700,'Kais Nashif',1978,NULL),(1845777,'Christopher Paolini',1983,NULL),(1846124,'Ali Suliman',1977,NULL),(1846132,'Joe Swanberg',1981,NULL),(1846368,'Jingchu Zhang',1980,NULL),(1846447,'Kata Bartsch',1979,NULL),(1846596,'Sara Cushman',NULL,NULL),(1847023,'Dominiqua Alexis',NULL,NULL),(1847099,'Bridgit Mendler',1992,NULL),(1847117,'Janelle Monáe',1985,NULL),(1847329,'Erika Sawajiri',1986,NULL),(1847334,'Jake Morgan-Scharhon',1981,NULL),(1847711,'David Morley',NULL,NULL),(1847738,'Ari Sandel',NULL,NULL),(1847756,'Mike Testin',NULL,NULL),(1847857,'Daisuke Habara',NULL,NULL),(1847965,'Suphachai Sittiaumponpan',NULL,NULL),(1847973,'David Tadman',NULL,NULL),(1848038,'Mike Bellon',NULL,NULL),(1848104,'Koby Gal-Raday',NULL,NULL),(1848114,'Olivier Guerpillon',NULL,NULL),(1848115,'Marie Therese Guirgis',NULL,NULL),(1848205,'Susan Montford',NULL,NULL),(1848223,'Rita Osei',NULL,NULL),(1848253,'Ted Sarandos',1964,NULL),(1848357,'Samuel Collardey',NULL,NULL),(1848388,'Benjamin Kasulke',NULL,NULL),(1848474,'Dave Bidini',NULL,NULL),(1848481,'Broadcast',NULL,NULL),(1848588,'Khaled Mouzanar',NULL,NULL),(1848589,'Nico Muhly',1981,NULL),(1848683,'Blair Doroshwalther',NULL,NULL),(1849803,'Sarah Broshar',NULL,NULL),(1850235,'Olivia Kuan',NULL,NULL),(1850507,'Pawel Pogorzelski',1979,NULL),(1850657,'Jason Solowsky',1977,NULL),(1850967,'Kether Donohue',1985,NULL),(1851028,'Miles Heizer',1994,NULL),(1851201,'Rogier Schippers',1962,NULL),(1851313,'Dylan Bruce',NULL,NULL),(1851574,'Jesse Reid',NULL,NULL),(1851893,'Maya Lawson',NULL,NULL),(1851981,'Melissa Rauch',1980,NULL),(1852224,'Sheena M. Joyce',NULL,NULL),(1852259,'Richard Rosenblatt',NULL,NULL),(1852529,'Rachel Howe',NULL,NULL),(1852583,'Asher Goldstein',NULL,NULL),(1852879,'Jennifer Maas',1977,NULL),(1853053,'Annie Abrams',NULL,NULL),(1853152,'Sacha Parkinson',1992,NULL),(1853380,'Federico Pérez Rey',1976,NULL),(1853544,'Pierre Coffin',1967,NULL),(1853667,'Warren Robert',NULL,NULL),(1853865,'Matthew Margeson',1980,NULL),(1853983,'Leah Churchill-Brown',NULL,NULL),(1853997,'Jon Katz',NULL,NULL),(1854001,'Charlie Lyons',NULL,NULL),(1854009,'Lauren Rose',NULL,NULL),(1854069,'Bryan Lee O\'Malley',1979,NULL),(1854088,'Jeremy Daniel Davis',NULL,NULL),(1854120,'Marcus Markou',NULL,NULL),(1854497,'Craig Cackowski',1969,NULL),(1854537,'Leon Clingman',NULL,NULL),(1854539,'Cheo Hodari Coker',NULL,NULL),(1854664,'Jermaine Fowler',1988,NULL),(1855682,'Sora Aoi',1983,NULL),(1856097,'Cho Yeo-jeong',1981,NULL),(1856133,'Rogina',NULL,NULL),(1856360,'Jacinthe Pilote',NULL,NULL),(1856817,'Yasuhiro Takemoto',1972,2019),(1856891,'Ariane Fert',NULL,NULL),(1856961,'Thomas Moldestad',NULL,NULL),(1856964,'Furio M. Monetti',NULL,NULL),(1856975,'Angela Pell',NULL,NULL),(1856985,'Doug Prochilo',NULL,NULL),(1857184,'Erik Howsam',NULL,NULL),(1857273,'Joe Pichirallo',NULL,NULL),(1857335,'Emilie Tisné',1978,NULL),(1857454,'Marius Panduru',1975,NULL),(1857667,'Caitlin Yeo',NULL,NULL),(1858656,'Peter Chernin',1951,NULL),(1858687,'Dániel Csengery',NULL,NULL),(1859202,'Midival Punditz',NULL,NULL),(1859287,'Jacob Secher Schulsinger',NULL,NULL),(1859539,'Leah Ann Cevoli',1974,NULL),(1859543,'Osric Chau',1986,NULL),(1860203,'Kevin Shea',NULL,2021),(1860692,'Ami Sakurai',NULL,NULL),(1860728,'Kerry Foster',NULL,NULL),(1860749,'Walter Köhler',NULL,NULL),(1860791,'Joanna Werner',NULL,NULL),(1861210,'Lucas Joaquin',1981,NULL),(1861333,'Alison Small',NULL,NULL),(1861467,'Roxanne McKee',NULL,NULL),(1861624,'Yaya DaCosta',1982,NULL),(1861625,'Toccara Jones',1981,NULL),(1861631,'Kent Kincannon',NULL,NULL),(1861781,'Mandy Gonzalez',1978,NULL),(1862036,'Gen Kobayashi',NULL,NULL),(1862149,'Klaus Dohle',NULL,NULL),(1862479,'Jeff Kristian',1964,NULL),(1862511,'Zak Mulligan',NULL,NULL),(1862866,'Unnop Chanpaibool',NULL,NULL),(1863227,'Carrie Underwood',1983,NULL),(1863720,'Steve Jaggi',1980,NULL),(1864602,'Léa Fehner',1981,NULL),(1865371,'Nicholas Wise',NULL,NULL),(1865648,'Robert Menzies',NULL,NULL),(1865755,'David Lindsay-Abaire',1969,NULL),(1865890,'Jordan Galland',1980,NULL),(1865921,'Morgan Schmidt',NULL,NULL),(1865947,'Jayam Ravi',1980,NULL),(1866268,'Ian Jones-Quartey',1984,NULL),(1867458,'Sonny Mallhi',1972,NULL),(1867502,'Yuri Chinen',1993,NULL),(1867599,'Suguru Matsumura',NULL,NULL),(1867620,'John Pocock',NULL,NULL),(1867674,'Jo Nesbø',1960,NULL),(1868038,'Nicolas Gonda',NULL,NULL),(1868164,'Reginald Connelly',1895,1963),(1868177,'Ladj Ly',1978,NULL),(1868320,'Ashleigh Ball',1983,NULL),(1868849,'Seth W. Owen',NULL,NULL),(1868917,'Alessandro Carloni',NULL,NULL),(1869082,'Emrhys Cooper',1985,NULL),(1869101,'Ana de Armas',1988,NULL),(1869376,'Kristin Øhrn Dyrud',NULL,NULL),(1869418,'Desiree Hall',NULL,NULL),(1869756,'Jung Yu-mi',1983,NULL),(1869872,'Lyne Renée',1979,NULL),(1869946,'Christian Hutcherson',NULL,NULL),(1870110,'Anne Nikitin',NULL,NULL),(1870313,'Nick Towne',NULL,NULL),(1870939,'Nicola Posener',NULL,NULL),(1871094,'Roman Paul',1968,NULL),(1871320,'Jessica Duffy',1976,NULL),(1871501,'Thierry Lounas',NULL,NULL),(1871555,'Valérie Tasso',1969,NULL),(1871564,'Shital Bhatia',NULL,NULL),(1871590,'Jed Whedon',1975,NULL),(1871847,'K.S. Prasad',NULL,NULL),(1871873,'Tom Kennerly',NULL,2016),(1871951,'Leïla Bekhti',1984,NULL),(1872457,'Carlos Salazar Herrera',NULL,NULL),(1872664,'Mark L. Smith',NULL,NULL),(1872698,'Dianna Agron',1986,NULL),(1872753,'David Epiney',1976,NULL),(1873021,'Beto Rodrigues',NULL,NULL),(1874260,'Joseph Kanon',NULL,NULL),(1874700,'Kurt Altschwager',NULL,NULL),(1875040,'Fiona Dourif',1981,NULL),(1875044,'Lizzy Mathis',NULL,NULL),(1875238,'Jessica Barden',1992,NULL),(1875512,'Marco Dreckkötter',1971,NULL),(1875689,'Agustina Quinci',NULL,NULL),(1875808,'Jason Trost',NULL,NULL),(1875979,'Audrey Niffenegger',1963,NULL),(1875985,'Sistine Rose Stallone',1998,NULL),(1877162,'Lannick Gautry',1976,NULL),(1877758,'Jack Arnold',1975,NULL),(1878140,'Rafael Jordan',NULL,NULL),(1878571,'Roberto McLean',NULL,NULL),(1878739,'Bing Hu',NULL,NULL),(1878845,'Ben Browning',NULL,NULL),(1879225,'Farren Blackburn',NULL,NULL),(1879386,'Lisa Smit',1993,NULL),(1879532,'Harry Escott',1976,NULL),(1879589,'Nelson McCormick',NULL,NULL),(1880149,'Hung-Mo To',NULL,NULL),(1880561,'Harold Cronk',NULL,NULL),(1880647,'Matreya Fedor',1997,NULL),(1880888,'Olivia Thirlby',1986,NULL),(1880996,'Eduard Grau',1981,NULL),(1881231,'Lorena Caravedo',NULL,NULL),(1881399,'Joe Lorenzo',NULL,NULL),(1881922,'Savannah Welch',NULL,NULL),(1882152,'Xavier Samuel',1983,NULL),(1882929,'Liana Liberato',1995,NULL),(1883057,'Yiliana Chong',NULL,NULL),(1883155,'Audrey Francis',NULL,NULL),(1883257,'Pablo Larraín',1976,NULL),(1883403,'Michael Lira',NULL,NULL),(1883583,'Yoshihiro Nishimura',1967,NULL),(1883612,'Àlex Pastor',1981,NULL),(1883803,'Jesse Garcia',1982,NULL),(1884003,'Alziro Barbosa',NULL,NULL),(1884065,'Peter Stray',NULL,NULL),(1884129,'Kiko Martínez',NULL,NULL),(1884354,'Douglas Pipes',NULL,NULL),(1884371,'Grady Hendrix',NULL,NULL),(1884723,'Sebastien Dewaele',1978,NULL),(1885057,'Hiroaki Miki',NULL,NULL),(1885212,'Charles Hood',1983,NULL),(1885371,'Tim Crothers',NULL,NULL),(1885461,'Martí Roca',1981,NULL),(1885585,'Tim Despic',1978,NULL),(1885643,'S. Maruthi Rao',NULL,NULL),(1885661,'Sriram Das',1978,NULL),(1885766,'Dan Janvey',NULL,NULL),(1885778,'Cyril Atef',1968,NULL),(1885802,'Akiyoshi Nakao',1988,NULL),(1886083,'James Edward Barker',1980,NULL),(1886330,'Árni Filippusson',NULL,NULL),(1886524,'Stella Maeve',1989,NULL),(1886602,'Miles Teller',1987,NULL),(1886653,'Michael Gottwald',NULL,NULL),(1886707,'Andrea Garrote',NULL,NULL),(1886746,'Roger Craig Smith',1975,NULL),(1886964,'Jane Galloway Heitz',1941,2019),(1887138,'Mohit Suri',1981,NULL),(1887429,'Hayes MacArthur',NULL,NULL),(1887480,'Aaron Nee',NULL,NULL),(1887540,'Nina Haber',NULL,NULL),(1887564,'Scott LaStaiti',NULL,NULL),(1887724,'Keithian D. Sammons',1989,NULL),(1887932,'Kiyoto Takeuchi',NULL,NULL),(1888062,'Kay Lyon',NULL,NULL),(1888091,'Elizabeth Chai Vasarhelyi',NULL,NULL),(1888211,'Jessica Stroup',1986,NULL),(1888242,'Sindri Páll Kjartansson',NULL,NULL),(1888282,'Ankie Lau',1955,NULL),(1888527,'Steven Price',NULL,NULL),(1888734,'Ica Souvignier',NULL,2012),(1888967,'D.B. Weiss',1971,NULL),(1888984,'Kaoru Mfaume',NULL,NULL),(1889450,'Riva Marker',NULL,NULL),(1889853,'Daniel Chour',NULL,NULL),(1889973,'Charles Baker',1971,NULL),(1890222,'Robert Wald',1942,NULL),(1890301,'Jessica O\'Toole',NULL,NULL),(1890401,'Scott Messer',NULL,NULL),(1890456,'Jeannette Walls',1960,NULL),(1890784,'Michelle Dockery',1981,NULL),(1890845,'Sean Anders',NULL,NULL),(1890988,'Judith Diakhate',1978,NULL),(1891137,'Nick Principe',1978,NULL),(1891430,'Damir Ibrahimovich',NULL,NULL),(1891528,'Hyuk-ho Kwon',NULL,NULL),(1891632,'Janicza Bravo',1981,NULL),(1892220,'Josh C. Waller',NULL,NULL),(1892366,'Warren See',NULL,NULL),(1892590,'Elías Neuman',NULL,NULL),(1892800,'Satoshi Miki',1961,NULL),(1892926,'Brian Andrew Mendoza',NULL,NULL),(1893077,'Polly Staniford',NULL,NULL),(1893182,'Emilio Ruiz Barrachina',NULL,NULL),(1893246,'Mihai Malaimare Jr.',1975,NULL),(1893339,'Jack Foley',NULL,NULL),(1893457,'Siddharth Anand',1978,NULL),(1893474,'Asha Miró',1967,NULL),(1893665,'Ali Samadi Ahadi',NULL,NULL),(1893752,'Mirela Cioaba',NULL,NULL),(1893753,'Stephen McDool',NULL,NULL),(1894015,'Sarah Yaworsky',NULL,NULL),(1894039,'Shane Felux',1972,NULL),(1894168,'Ewan Leslie',NULL,NULL),(1894190,'Peter Aufderhaar',1973,NULL),(1894391,'James Adomian',1980,NULL),(1894655,'John Hodgman',1971,NULL),(1894715,'Stacie Jones',1981,NULL),(1894768,'Giles Foden',1967,NULL),(1894782,'Roberto Bentivegna',1982,NULL),(1895871,'Ross M. Dinerstein',NULL,NULL),(1895993,'Brendan O\'Brien',NULL,NULL),(1896035,'Bogdan Dumitrache',1977,NULL),(1896110,'Zach Miller',1979,NULL),(1896248,'Jasika Nicole',1980,NULL),(1896358,'Gina Hernandez',1965,NULL),(1896560,'Karen Hammang',NULL,NULL),(1896736,'Haaz Sleiman',1976,NULL),(1896873,'João Miguel',1970,NULL),(1896882,'Matthieu Serveau',NULL,NULL),(1897007,'Takuya Ishida',1987,NULL),(1897248,'Susan O\'Connor',NULL,NULL),(1897406,'Racer Rodriguez',1997,NULL),(1897448,'Daniel Marc Dreifuss',NULL,NULL),(1897892,'Dawn Cowings',NULL,NULL),(1897957,'Russell Gewirtz',NULL,NULL),(1898009,'Cláudia Jouvin',1979,NULL),(1898126,'Mike Birbiglia',1978,NULL),(1898234,'John Morris',NULL,NULL),(1898448,'Eythor Gudjonsson',1968,NULL),(1898779,'Amy Rardin',NULL,NULL),(1899067,'Marc Libert',NULL,NULL),(1899091,'George Maguire',NULL,NULL),(1899225,'Shanika Warren-Markland',NULL,NULL),(1899262,'Holland Gedney',NULL,NULL),(1899688,'Emilie Georges',NULL,NULL),(1899740,'David Knight',NULL,NULL),(1900264,'Julie Spiegel',NULL,NULL),(1900651,'Julian Maas',1975,NULL),(1900680,'Eduardo Benaim',NULL,NULL),(1900756,'Jeremy Mackie',NULL,NULL),(1900772,'Jessie T. Usher',1992,NULL),(1901046,'Benny Drechsel',NULL,NULL),(1901220,'Sarah Burns',NULL,NULL),(1901341,'Susan Reichert Sullivan',NULL,NULL),(1901842,'Dichen Lachman',1982,NULL),(1902099,'Amy Deasismont',1992,NULL),(1902132,'Károly Ujj Mészáros',1968,NULL),(1902232,'Tony Leondis',NULL,NULL),(1902233,'Ayumi Ishijo',NULL,NULL),(1902248,'Matteo Zingales',NULL,NULL),(1902271,'David De Simone',1959,2006),(1902436,'Toufik Ayadi',NULL,NULL),(1902766,'Donny Alamsyah',1978,NULL),(1903006,'Gauri Shinde',1974,NULL),(1903054,'Allison Shearmur',1963,2018),(1903235,'Frank Hernandez',NULL,NULL),(1904586,'Hardik Thakkar',NULL,NULL),(1904595,'Marjaneh Moghimi',NULL,NULL),(1904769,'Stéphan Wojtowicz',1963,NULL),(1904886,'Mia Stallard',1996,NULL),(1905834,'Alexandre Mallet-Guy',1974,NULL),(1905956,'Jonathon Buckley',NULL,NULL),(1906001,'Carlos Berrios',NULL,NULL),(1906130,'Wataru Hatano',1982,NULL),(1906168,'Todd Williams',NULL,NULL),(1906430,'Nicholas Jarecki',NULL,NULL),(1906655,'Naz Erayda',1961,NULL),(1906802,'Eric Schlosser',1959,NULL),(1907066,'Lisa Hannigan',1981,NULL),(1907858,'James Garavente',NULL,NULL),(1907937,'Koji Kajita',NULL,NULL),(1908009,'Sarah Wayne',1984,NULL),(1908049,'David Wall',NULL,NULL),(1908145,'Dan McDermott',NULL,NULL),(1908524,'Dan Sallitt',1955,NULL),(1908699,'Hiroshi Masumura',NULL,NULL),(1909130,'Claudie Viguerie',NULL,NULL),(1909378,'Lucas Martell',NULL,NULL),(1909398,'Stuart Mahoney',NULL,NULL),(1909620,'Ginge Anvik',NULL,NULL),(1909661,'Nimrat Kaur',1982,NULL),(1909785,'Rebecca Huntley',NULL,NULL),(1909937,'Philip Shelby',NULL,NULL),(1910008,'François Lelord',NULL,NULL),(1910255,'Dylan Minnette',1996,NULL),(1910274,'John Magaro',1983,NULL),(1910842,'Gaël Nouaille',NULL,NULL),(1910975,'Tom Ingram',1961,NULL),(1911103,'David Ellison',1983,NULL),(1911349,'Michael Handelman',NULL,NULL),(1911579,'Emma Pildes',NULL,NULL),(1911767,'Wassim Béji',NULL,NULL),(1911788,'Lauren Connelly',NULL,NULL),(1912178,'Jamie Nash',1971,NULL),(1912334,'Lena Bubenechik',NULL,NULL),(1912357,'Courtney Andrialis',NULL,NULL),(1912424,'Lana Griffin',NULL,NULL),(1912538,'Brad Davis',1984,NULL),(1912585,'Zaur Bolotaev',1981,NULL),(1912767,'Alice Bell',NULL,NULL),(1912969,'Alexis Winter',NULL,NULL),(1913014,'Alissa Phillips',NULL,NULL),(1913063,'James Earl',NULL,NULL),(1913095,'Andrew Bird',1973,NULL),(1913125,'Ramón Rodríguez',1979,NULL),(1913625,'Parambrata Chattopadhyay',1980,NULL),(1913734,'Rooney Mara',1985,NULL),(1913848,'José Alvear',NULL,NULL),(1914298,'Pål Sverre Hagen',1980,NULL),(1914613,'Béda Vladimír Dvorák',NULL,NULL),(1914667,'Brenna Rangott',NULL,NULL),(1916003,'Laura Gordon',NULL,NULL),(1916189,'Bette Smith',NULL,NULL),(1916239,'Samantha McIntyre',NULL,NULL),(1916835,'Michael Schwartz',NULL,NULL),(1916979,'Lauren Weisberger',1977,NULL),(1917193,'Blake Ellis',NULL,NULL),(1917423,'Eman Xor Oña',NULL,NULL),(1918140,'Justin Benson',1983,NULL),(1918184,'Maximilian Simonischek',1982,NULL),(1918316,'Jason Cooper',NULL,NULL),(1918538,'Mike Disa',1965,NULL),(1918588,'Jin Goo',1980,NULL),(1918764,'Josh Danziger',NULL,NULL),(1918862,'Déborah François',1987,NULL),(1918877,'Dean Craig',1974,NULL),(1918900,'Kat Westergaard',NULL,NULL),(1918923,'Abiodun Oyewole',NULL,NULL),(1918942,'Eliza Swenson',1982,NULL),(1918947,'Julia Koschitz',1974,NULL),(1919164,'Yûko Kaida',1980,NULL),(1919671,'Oliver Kraus',NULL,NULL),(1919727,'Sarah Lieving',1979,NULL),(1920131,'Belçim Bilgin',1983,NULL),(1920461,'Chihiro Itô',NULL,NULL),(1920618,'J. Michael Trautmann',NULL,NULL),(1920707,'Arne Birkenstock',1967,NULL),(1920796,'Carlos Rossini',NULL,NULL),(1921345,'Steven C. Miller',1981,NULL),(1921376,'Gideon Glick',1988,NULL),(1921479,'Florian Bartholomäi',1987,NULL),(1921680,'Steve Englehart',1947,NULL),(1921681,'Marc Stanimirovic',NULL,NULL),(1921858,'Srikanth Deva',NULL,NULL),(1922214,'Georges Bouchelagem',NULL,NULL),(1922643,'Carl Elster',NULL,NULL),(1922875,'Dennis Hurley',NULL,NULL),(1923205,'Jeffrey Weiss',NULL,NULL),(1923452,'Mariken Halle',NULL,NULL),(1923509,'Paulo Araujo',NULL,NULL),(1923623,'Margarida Moreira',NULL,NULL),(1923774,'Miguel O\'Dogherty',NULL,NULL),(1923923,'R.A. Dillon',NULL,NULL),(1924019,'Rodrigo Sopeña',1977,NULL),(1924339,'Danny Thykær',1978,NULL),(1924443,'M.J. Brocklebank',NULL,NULL),(1924677,'Exiquio Talavera',NULL,NULL),(1924867,'Nate Bolotin',NULL,NULL),(1925168,'Ashleigh Gryzko',NULL,NULL),(1925239,'Jack O\'Connell',1990,NULL),(1925332,'Christian Jacq',1947,NULL),(1925528,'Gary Entin',1985,NULL),(1925823,'Edmund Entin',1985,NULL),(1926300,'Kirby Bliss Blanton',1990,NULL),(1926453,'Guido Caprino',1973,NULL),(1926499,'Jeon Gook-hwan',NULL,NULL),(1926617,'Airi Taira',1984,NULL),(1926861,'Gitte Witt',1983,NULL),(1926865,'Johnny Flynn',1983,NULL),(1926903,'Eric Appel',1980,NULL),(1927429,'Magda Rosa Galban',NULL,NULL),(1927701,'Tyler James Williams',1992,NULL),(1927879,'Will Shortz',1952,NULL),(1927930,'Laurent Sénéchal',NULL,NULL),(1928263,'Benjamin Massoubre',NULL,NULL),(1928375,'Dylan Russell',NULL,NULL),(1928515,'J.J. Soria',NULL,NULL),(1928554,'Elizabeth Johnson',NULL,NULL),(1928790,'Nicole Brenez',NULL,NULL),(1928866,'Zelmira Gainza',NULL,NULL),(1929018,'Carloto Cotta',1984,NULL),(1929051,'Scott Seaton',NULL,NULL),(1929257,'Dan Foos',NULL,NULL),(1929609,'Keston John',NULL,NULL),(1929639,'Alejandra Lorenzo',1998,NULL),(1929734,'Gingger Shankar',NULL,NULL),(1929776,'Reika Kirishima',1972,NULL),(1929951,'Robin C. Fox',NULL,NULL),(1930008,'Nerea Inchausti',NULL,NULL),(1930518,'Olivier Treiner',NULL,NULL),(1930572,'Kevin MacLeod',NULL,NULL),(1930728,'Serge Joncour',NULL,NULL),(1931216,'Benoît Quainon',NULL,NULL),(1931870,'Brittney Karbowski',1986,NULL),(1931911,'Albert Márkos',1967,NULL),(1932163,'Izumi Kawahara',NULL,NULL),(1932274,'Mitsuki Tanimura',1990,NULL),(1932646,'Jan Roblee',NULL,NULL),(1932706,'Anaïs Barbeau-Lavalette',NULL,NULL),(1932959,'Arthur Harari',1981,NULL),(1932967,'David Leo',1980,NULL),(1933035,'John Beard',NULL,NULL),(1933128,'Bailee Madison',1999,NULL),(1933648,'Dome Karukoski',1976,NULL),(1933655,'Liquits',NULL,NULL),(1933697,'Yasuhi Nakamura',1972,NULL),(1934143,'Sophia Olsson',NULL,NULL),(1934349,'Megumi Seki',1985,NULL),(1934447,'Thierry Degrandi',NULL,NULL),(1934618,'Max Charles',2003,NULL),(1935082,'Megumi Satô',1984,NULL),(1935086,'Tessa Thompson',1983,NULL),(1935292,'Allison Miller',NULL,NULL),(1935796,'Ross Kohn',NULL,NULL),(1935905,'Lydia Hearst',1984,NULL),(1935938,'Malin Levanon',NULL,NULL),(1935952,'Jördis Triebel',1977,NULL),(1935957,'Juan Antonio Leyva',1956,NULL),(1936275,'Hester Ruoff',NULL,NULL),(1936920,'Nina Fiore',NULL,NULL),(1937600,'Trevor Sather',NULL,NULL),(1937760,'Ritesh Shah',1976,NULL),(1937843,'Ian Hubert',NULL,NULL),(1937968,'Brent Stiefel',NULL,NULL),(1937991,'Olivier Bernet',NULL,NULL),(1938064,'Deon Taylor',NULL,NULL),(1938852,'Chris Poche',NULL,NULL),(1939072,'Mulatu Astatke',1943,NULL),(1939267,'T.I.',1980,NULL),(1939331,'Roxanne Avent',NULL,NULL),(1939381,'Martin Sixsmith',NULL,NULL),(1939516,'Arisa Kaneko',NULL,NULL),(1939549,'Pedro Luque',1980,NULL),(1939580,'Jakob Oftebro',1986,NULL),(1939627,'Regine Nehy',1987,NULL),(1940449,'Andrew Garfield',1983,NULL),(1940746,'David Bateman',NULL,NULL),(1940913,'Richard H. Perry',1979,NULL),(1941029,'Chung Seo-kyung',1975,NULL),(1941093,'Ben Willbond',1973,NULL),(1941417,'Tony Bracewell',NULL,NULL),(1941662,'Sacha Alexander',1972,NULL),(1941926,'Ercan Kesal',1959,NULL),(1942197,'Javier Gullón',NULL,NULL),(1942303,'Gerardo Olivares',1964,NULL),(1942458,'Catinca Untaru',1997,NULL),(1942829,'Michael LeSieur',NULL,NULL),(1942966,'Yna Boulangé',NULL,NULL),(1942997,'Fabien Nury',NULL,NULL),(1943306,'Araceli Gonda',NULL,NULL),(1943389,'Richard Mansell',NULL,NULL),(1943565,'Rebel Rodriguez',1999,NULL),(1943692,'Lexi Ainsworth',NULL,NULL),(1943704,'Julio de la Rosa',NULL,NULL),(1943705,'Jun\'nosuke Hogaki',NULL,NULL),(1943791,'Rafael Cobos',NULL,NULL),(1943855,'Ron J. Friedman',NULL,NULL),(1944105,'Guneet Monga',1983,NULL),(1944254,'Imani Hakim',1993,NULL),(1944541,'Mark Felt',1913,2008),(1944708,'Jas Waters',1980,2020),(1944862,'Alex Greenblatt',NULL,NULL),(1945155,'Charles Norris',NULL,NULL),(1945161,'Carlo D\'Ursi',NULL,NULL),(1945371,'Robert Levon Been',NULL,NULL),(1945788,'Bun Saikou',NULL,NULL),(1946193,'Jamie Dornan',1982,NULL),(1946260,'Trisha R. Thomas',NULL,NULL),(1946305,'Hajime Ishimine',1967,NULL),(1946407,'Kay Kay Menon',1966,NULL),(1946485,'Tina Chow',NULL,NULL),(1946585,'Anne-Lise Koehler',NULL,NULL),(1946731,'Austin F. Schmidt',1979,NULL),(1947068,'Ian Bonar',NULL,NULL),(1947375,'Peter Duchan',NULL,NULL),(1947564,'Ken\'ichi Matsuyama',1985,NULL),(1947581,'Joshua DesRoches',NULL,NULL),(1947831,'Jonathan Keltz',NULL,NULL),(1948103,'Jussi Vatanen',1978,NULL),(1948121,'Soo-hyun Ahn',NULL,NULL),(1948280,'Satnam Ramgotra',NULL,NULL),(1948346,'Shunichirô Miki',1968,NULL),(1948506,'Ram Patil',NULL,NULL),(1948682,'Hiroki Yasumoto',1977,NULL),(1948757,'Andrew Alfieri',NULL,NULL),(1948885,'Matt Sazama',NULL,NULL),(1948910,'Adriaan van Zyl',NULL,NULL),(1949006,'Chad Bishoff',1980,NULL),(1949491,'Elinor Lipman',NULL,NULL),(1949808,'Kaho',1991,NULL),(1949947,'Sally Jo Effenson',NULL,NULL),(1950004,'Raúl Castillo',1977,NULL),(1950086,'Greta Gerwig',1983,NULL),(1950176,'Michael Corcoran',1972,NULL),(1950381,'Eric Branco',NULL,NULL),(1950472,'Ronen Landa',NULL,NULL),(1950505,'Charles Sindelar',1876,1947),(1950898,'Emilio Diez Barroso',NULL,NULL),(1950901,'Aurian Redson',NULL,NULL),(1951180,'Reed Fish',1973,NULL),(1951398,'Jay Basu',NULL,NULL),(1951644,'David Jowsey',NULL,NULL),(1952066,'John Koziol',1981,NULL),(1952088,'John Giwa-Amu',NULL,NULL),(1952176,'Roy Jacobsen',NULL,NULL),(1952250,'Erin Gruwell',1969,NULL),(1952567,'David Leon',1980,NULL),(1952653,'Bill Granger',1941,2012),(1952700,'Faye Ward',NULL,NULL),(1952786,'Kevin Hammer',1977,NULL),(1953775,'Chris Doubek',NULL,NULL),(1953833,'Barbara Muschietti',NULL,NULL),(1953841,'Travis Mathews',NULL,NULL),(1954240,'Teresa Palmer',1986,NULL),(1954285,'Jesse Berger',NULL,NULL),(1954504,'Kyle Mann',NULL,NULL),(1954634,'Phillip Lybrand',1984,NULL),(1954899,'Friends of Dean Martinez',NULL,NULL),(1954909,'Brett Pawlak',1982,NULL),(1954936,'Ernesto Daranas',NULL,NULL),(1955257,'Lars Eidinger',1976,NULL),(1955368,'Arjun Singh Panam',NULL,NULL),(1955385,'Luna Zimic Mijovic',1991,NULL),(1955419,'Hendrik Verthé',NULL,NULL),(1955420,'Damon Cardasis',NULL,NULL),(1955573,'David Valldepérez',NULL,NULL),(1955614,'Nicole Jones-Dion',NULL,NULL),(1955699,'Joaquim Martí',NULL,NULL),(1955897,'Enrique Gato',1977,NULL),(1956394,'Brad Leong',1986,NULL),(1956478,'Madison Davenport',1996,NULL),(1956588,'Sonia Saville',NULL,NULL),(1956600,'Elena Lyadova',1980,NULL),(1956691,'Jamie Linden',NULL,NULL),(1956898,'Eric Amadio',NULL,NULL),(1957260,'Justin Fielding',NULL,NULL),(1957308,'V. Jayaprakash',1962,NULL),(1957540,'Will Blair',NULL,NULL),(1957706,'Claude Barras',NULL,NULL),(1958109,'Nicola Marsh',NULL,NULL),(1958233,'Zafer Tawil',NULL,NULL),(1958253,'Nobara Takemoto',NULL,NULL),(1958450,'Mélanie Pilon',NULL,NULL),(1958979,'Craig A. Williams',NULL,NULL),(1959207,'Cohen Holloway',NULL,NULL),(1959252,'Muhammet Uzuner',1965,NULL),(1959501,'Babou Ceesay',NULL,NULL),(1959505,'Diablo Cody',1978,NULL),(1959800,'Kanata Hongô',1990,NULL),(1959992,'Douglas J. Sutherland',1976,NULL),(1960322,'Nick Murphy',NULL,NULL),(1960428,'Scott Walker',NULL,NULL),(1960436,'Rikki Jarrett',NULL,NULL),(1960598,'Chris Stover',NULL,NULL),(1961459,'Tamannaah Bhatia',1989,NULL),(1961777,'William Friese-Greene',1855,1921),(1961951,'Henrik Jansson-Schweizer',1969,NULL),(1962070,'Luke Sharpe',NULL,NULL),(1962272,'Santhanam',1980,NULL),(1962313,'Dibakar Banerjee',1969,NULL),(1963068,'Emme Rylan',1980,NULL),(1963091,'Evan Ross',1988,NULL),(1963288,'Joe Robert Cole',NULL,NULL),(1963733,'Thibault Gast',NULL,NULL),(1963767,'Csaba Kalotás',1982,NULL),(1963886,'Grímur Hákonarson',1977,NULL),(1964040,'Norm Li',NULL,NULL),(1964055,'Scott Prisand',NULL,NULL),(1964247,'David Call',1982,NULL),(1964434,'Thomas Benski',NULL,NULL),(1964714,'Mark Cecere',NULL,NULL),(1964923,'Habib Faisal',NULL,NULL),(1965407,'Kim Morgan',NULL,NULL),(1965566,'Stephan Müller',1981,NULL),(1965594,'J.P. Ouellette',NULL,NULL),(1965828,'Neil Kopp',NULL,NULL),(1965907,'Terry Pheto',1981,NULL),(1966008,'Ron Carlson',NULL,NULL),(1966818,'Jason Yachanin',NULL,NULL),(1966892,'Charlie Covell',NULL,NULL),(1967013,'Concha Galán',NULL,NULL),(1967127,'Pau Esteve Birba',1981,NULL),(1967575,'Dana Ginsburg',1957,NULL),(1967673,'Sarah Jones',NULL,NULL),(1968074,'Stephanie Chapelle',NULL,NULL),(1968338,'Ruth De Jong',NULL,NULL),(1968372,'Ian Goldberg',NULL,NULL),(1968388,'Allyson Sereboff',NULL,NULL),(1968411,'Kaspar Kaven',1981,NULL),(1968474,'Ford Beebe Jr.',1913,2006),(1968788,'Michael Davis',NULL,NULL),(1968873,'Ed Speleers',1988,NULL),(1969144,'Gene Stupnitsky',1977,NULL),(1969169,'Rafi Gavron',1989,NULL),(1969339,'Ken Marshall',NULL,NULL),(1969711,'Ryûta Miyake',NULL,NULL),(1970088,'Nicole Quinn',NULL,NULL),(1970164,'Julián Coraggio',NULL,NULL),(1970465,'Kristofer Hivju',1978,NULL),(1970851,'Jorge-Yamam Serrano',NULL,NULL),(1970900,'Julia Neumann',NULL,NULL),(1971183,'Han Lu',1990,NULL),(1971220,'Nzingha Stewart',1974,NULL),(1971705,'Kuljit Bhamra',NULL,NULL),(1972023,'Sabine Leipert',1973,NULL),(1972345,'Geoffrey A. Ehrlich',NULL,NULL),(1972447,'Lee Sexton',1928,2021),(1972675,'Mika Nakashima',1983,NULL),(1972873,'Jesús Caba',1982,NULL),(1972903,'James Gelet',NULL,NULL),(1972939,'Matthew Weston',1983,NULL),(1973162,'Han West',NULL,NULL),(1973209,'Armin Amiri',NULL,NULL),(1973263,'Gabi Blauert',NULL,NULL),(1973308,'Álvaro Augustin',NULL,NULL),(1973422,'Rhys Wakefield',NULL,NULL),(1973680,'David Holechek',NULL,NULL),(1973681,'Richard Tanne',NULL,NULL),(1973760,'Yuriko Yoshitaka',1988,NULL),(1973900,'Matt Heller',NULL,NULL),(1974016,'Miles Chapman',NULL,NULL),(1974204,'Shiori Sekine',NULL,NULL),(1974226,'Juan Mayorga',1965,NULL),(1974397,'Summer Bishil',1988,NULL),(1974409,'Antonia Frering',1965,NULL),(1975202,'Brian H. Kim',NULL,NULL),(1975228,'Nick Krause',1992,NULL),(1975430,'Noah Gordon',1926,2021),(1975459,'Juan de Dios Serrano',NULL,NULL),(1975628,'Mark O\'Brien',1984,NULL),(1975750,'Cora Olson',NULL,NULL),(1976166,'Curt Chatham',NULL,NULL),(1976209,'Valerie Plame Wilson',1963,NULL),(1976305,'Stephanie McCullough',NULL,NULL),(1976411,'Sôhei Tanikawa',NULL,NULL),(1976572,'Ryan Purcell',NULL,NULL),(1976650,'Bill Gullo',NULL,NULL),(1977054,'Mont Alto Orchestra',NULL,NULL),(1977084,'Nikki McCauley',NULL,NULL),(1977301,'Joé Dawson',NULL,NULL),(1977355,'Nathan Greno',1975,NULL),(1977463,'Mari Asato',NULL,NULL),(1977543,'Chaylon Blancett',NULL,NULL),(1977583,'Tim Chiou',NULL,NULL),(1977611,'Jessica Graham',NULL,NULL),(1978000,'Wakako Miyashita',NULL,NULL),(1978398,'Andrea Roa',NULL,NULL),(1978402,'Ha Jung-woo',1978,NULL),(1978534,'Orson Ossman',NULL,NULL),(1978694,'Maria Dizzia',1974,NULL),(1978735,'Chayse Irvin',NULL,NULL),(1979137,'Warren Ellis',1968,NULL),(1979335,'Yossi Uzrad',NULL,NULL),(1979997,'Tori White',NULL,NULL),(1980137,'Edward X. Young',1959,NULL),(1980219,'Esther Bernstorff',1976,NULL),(1980385,'Masa Sawada',NULL,NULL),(1980431,'Michael Chaves',NULL,NULL),(1980534,'Abby Craden',NULL,NULL),(1980596,'Leila Zare',1980,NULL),(1980706,'Pierce Ryan',NULL,NULL),(1980747,'Aaron Harvey',1980,NULL),(1980761,'Jennifer Drake',NULL,NULL),(1980806,'Matthew Weiner',1965,NULL),(1981047,'Hillary Gurtler',NULL,NULL),(1981245,'Brendan Patricks',NULL,NULL),(1981261,'John Green',1977,NULL),(1981533,'Seo Ji-hye',1984,NULL),(1981893,'Riz Ahmed',1982,NULL),(1982169,'Javier Ambrossi',1984,NULL),(1982597,'Rihanna',1988,NULL),(1982607,'Kim Ok-bin',1986,NULL),(1982645,'Kiel Walker',1982,NULL),(1982688,'Laurel Betts',NULL,NULL),(1982871,'Keith Norstein',NULL,NULL),(1983071,'Steve Milne',NULL,NULL),(1983733,'Sebastian Schultz',NULL,NULL),(1983925,'Richard Kendrick',NULL,NULL),(1983962,'Karen Joy Fowler',1950,NULL),(1983985,'Leon Clarance',NULL,NULL),(1984776,'Benjamin Feuer',1983,NULL),(1985063,'Albert Sánchez Piñol',1964,NULL),(1985175,'Eiji Wentz',1985,NULL),(1985343,'John Carlin',1956,NULL),(1985741,'George Crile',1945,2006),(1985784,'Kyarra Willis',NULL,NULL),(1985797,'Nina Crintzs',NULL,NULL),(1985800,'Kate Graham',NULL,NULL),(1985821,'Jamin Winans',NULL,NULL),(1985859,'Mia Wasikowska',1989,NULL),(1985974,'Michael Chernus',1977,NULL),(1986622,'DeWanda Wise',1989,NULL),(1986960,'Emily Rios',1989,NULL),(1987002,'Rocky Gray',NULL,NULL),(1987150,'Esperanza Pedreño',1974,NULL),(1987409,'Yoko Hayama',NULL,NULL),(1987578,'Lynette Howell Taylor',1979,NULL),(1987792,'Josh Rifkin',NULL,NULL),(1987854,'Charles Redmond',NULL,NULL),(1988111,'Casey Wilson',1980,NULL),(1988172,'Yoshiyuki Takei',NULL,NULL),(1988698,'Michael Roiff',NULL,NULL),(1988886,'Ewa Borowski',NULL,NULL),(1988958,'Drew Waters',1973,NULL),(1988994,'Rafe Judkins',1983,NULL),(1989536,'Marc Webb',1974,NULL),(1989592,'Liz Destro',NULL,NULL),(1989680,'Robert Peacock',NULL,NULL),(1989734,'Rory Aitken',1978,NULL),(1989798,'Alexis Nolent',NULL,NULL),(1989830,'Dorylia Calmel',NULL,NULL),(1989927,'Jennifer Prediger',1977,NULL),(1990437,'Elgin James',NULL,NULL),(1990490,'Jarmo Puskala',1981,NULL),(1990586,'Yibran Asuad',NULL,NULL),(1990944,'Eric Bloom',NULL,NULL),(1990986,'Israel Elejalde',1973,NULL),(1991486,'Maryam Keshavarz',1975,NULL),(1991847,'Zak Hilditch',NULL,NULL),(1991941,'Taihei Yamanishi',NULL,NULL),(1991994,'Jeff Pointer',NULL,NULL),(1992327,'Henry Orenstein',1923,2021),(1992818,'Bryan Jones',NULL,NULL),(1993322,'Timo Vuorensola',1979,NULL),(1993413,'Daryl Pittman',NULL,NULL),(1993587,'Timmy Vatterott',NULL,NULL),(1993666,'Lucas Akoskin',NULL,NULL),(1993800,'Keisaku Kimura',NULL,NULL),(1993864,'Blythe Robertson',NULL,NULL),(1994146,'Vijay Varma',1986,NULL),(1994167,'Jordan Carlos',1978,NULL),(1994243,'Scott Z. Burns',NULL,NULL),(1994659,'Samuli Torssonen',1978,NULL),(1995070,'Richard Raymond',NULL,NULL),(1995372,'Asami',1985,NULL),(1995781,'Adam Shapiro',NULL,NULL),(1995960,'Tony Freeman',NULL,NULL),(1995968,'Tom Howe',1977,NULL),(1996020,'Masayuki Fujii',NULL,NULL),(1996352,'Matthew Michael Carnahan',NULL,NULL),(1996362,'Marie Westbrook',NULL,NULL),(1996789,'Michael Newstat',NULL,NULL),(1996829,'Nonso Anozie',1978,NULL),(1996918,'Dito Montiel',1965,NULL),(1996954,'Brooke Posch',NULL,NULL),(1997479,'Charles Monnet',NULL,NULL),(1997480,'Nathan Gamble',1998,NULL),(1997580,'Laurie Colson',NULL,NULL),(1997689,'Mercedes Mason',NULL,NULL),(1997836,'Craig J. Flores',NULL,NULL),(1998503,'David Sirota',NULL,NULL),(1998799,'Darryl Sloan',NULL,NULL),(1999473,'Shoojit Sircar',NULL,NULL),(1999726,'Aidan Elliott',NULL,NULL),(2000224,'Peter Gvozdas',NULL,NULL),(2000770,'Adam Folk',NULL,NULL),(2000954,'Hannah Marks',NULL,NULL),(2001346,'Sarah Burgess',NULL,NULL),(2001537,'Brent Lydic',NULL,NULL),(2001714,'Madison Ainley',1987,NULL),(2001753,'Johnathan Carr',1981,NULL),(2001875,'Andreas Roald',NULL,NULL),(2002063,'Kim Blair',NULL,NULL),(2002108,'Christopher Woodrow',1977,NULL),(2002638,'Ludovica Rampoldi',1979,NULL),(2002649,'Dave Franco',1985,NULL),(2002784,'Brooke Xtravaganza',NULL,NULL),(2002824,'Tracy Oliver',NULL,NULL),(2003463,'Deborah Snyder',1963,NULL),(2003870,'Fernando Villena',NULL,NULL),(2003994,'Peter Grosz',1974,NULL),(2004404,'Karen Gilchrist',NULL,NULL),(2004812,'Tim Sheridan',NULL,NULL),(2005175,'Brandon Rice',1985,NULL),(2005274,'Devon Brewster',NULL,NULL),(2005420,'Rebecca Hill Casey',NULL,NULL),(2005794,'Jim Spencer',NULL,NULL),(2005850,'Sam Bean',NULL,NULL),(2005949,'Mathias Rubin',NULL,NULL),(2006629,'Michael King',1948,2015),(2007030,'Emily Meade',1989,NULL),(2007163,'Michaela Dietz',1982,NULL),(2007213,'Will Bates',1977,NULL),(2007542,'Brandon Evans',NULL,NULL),(2008007,'Seishi Minakami',NULL,NULL),(2008013,'Hugh Walsh',NULL,NULL),(2008067,'Galder Gaztelu-Urrutia',NULL,NULL),(2008414,'Shin-yeon Won',NULL,NULL),(2008435,'Luke Treadaway',1984,NULL),(2008556,'Filipa Reis',1977,NULL),(2008680,'Magaly Solier',1986,NULL),(2009281,'Sebastian Pille',1980,NULL),(2009933,'Jonathan Schwartz',NULL,NULL),(2010048,'Pierre Perifel',NULL,NULL),(2010233,'Michael Gilvary',NULL,NULL),(2010257,'Emma Tusell',NULL,NULL),(2010670,'David Korins',NULL,NULL),(2010702,'David Hartstein',1978,NULL),(2010936,'Damien Power',NULL,NULL),(2011137,'Mathieu Hippeau',NULL,NULL),(2011282,'Nekisa Cooper',NULL,NULL),(2011387,'Deok-Hwan Ryu',NULL,NULL),(2011696,'Dee Rees',1977,NULL),(2011724,'Steve Abbott',1954,NULL),(2011932,'Anushka Shetty',1981,NULL),(2011935,'Caleigh White',1985,NULL),(2011980,'Ricardo Diaz',1983,NULL),(2012112,'Beatrice Ntuba',NULL,NULL),(2012118,'Matt Novack',1978,NULL),(2012438,'Travis Beacham',NULL,NULL),(2012439,'Andrew Reed',NULL,NULL),(2012534,'Boaz Yehonatan Yaacov',NULL,NULL),(2012595,'Trystan Pütter',1980,NULL),(2012635,'Adam Herschman',NULL,NULL),(2012698,'Ken Bruen',NULL,NULL),(2013149,'Naoki Satô',1970,NULL),(2013191,'Claudia Llosa',1976,NULL),(2013358,'Paul Hupfield',NULL,NULL),(2014044,'Jeremie Harris',NULL,NULL),(2014123,'Isaac Larian',NULL,NULL),(2014132,'Takayuki Hirao',1979,NULL),(2014390,'Justin Chon',1981,NULL),(2014708,'Carlye Pollack',NULL,NULL),(2015221,'Calvin Lee Reeder',NULL,NULL),(2015238,'Tatiana Kelly',NULL,NULL),(2015555,'Bastide Donny',NULL,NULL),(2015758,'David Ignatius',1950,NULL),(2015893,'Olivia Côte',1974,NULL),(2015907,'Vera Ngassa',NULL,NULL),(2016048,'Tracy Utley',NULL,NULL),(2016091,'Trey Songz',1984,NULL),(2016298,'Avi Korine',NULL,NULL),(2016345,'Whitney Able',1982,NULL),(2016476,'Meher Vij',1986,NULL),(2016510,'Aschlin Ditta',NULL,NULL),(2016581,'Pierre Benezit',NULL,NULL),(2016669,'D\'Gary',NULL,NULL),(2016685,'Harry Treadaway',1984,NULL),(2016723,'Eve Hewson',1991,NULL),(2017060,'Eric Juhérian',NULL,NULL),(2017170,'Michael Bricker',NULL,NULL),(2017718,'Géraldine Bajard',NULL,NULL),(2017943,'Hayley Atwell',1982,NULL),(2018237,'Taylor Kitsch',1981,NULL),(2018907,'Juan Ubaldo Huamán',NULL,NULL),(2019127,'Sionann O\'Neill',NULL,NULL),(2019413,'Sandra Valde-Hansen',NULL,NULL),(2020141,'Cyrille Aufort',NULL,NULL),(2020146,'Daniella Kertesz',NULL,NULL),(2020278,'Scott Haze',NULL,NULL),(2020419,'Oliver Roskill',NULL,NULL),(2020909,'Diego Fontecilla',NULL,NULL),(2020931,'Thom Obarski',1983,NULL),(2021063,'Tizza Covi',1971,NULL),(2021068,'Florence Ayisi',NULL,NULL),(2021376,'Christian White',NULL,NULL),(2021381,'Tristan Risk',1980,NULL),(2021435,'MacGregor',NULL,NULL),(2021516,'Jake Szymanski',1981,NULL),(2021543,'Liska Ostojic',NULL,NULL),(2021624,'Dan Hernandez',1983,NULL),(2021640,'Jehnny Beth',1984,NULL),(2021909,'Toby Halbrooks',1978,NULL),(2022053,'Leslaw Zurek',1979,NULL),(2022341,'Chris Bergoch',NULL,NULL),(2022382,'Abdel Raouf Dafri',NULL,NULL),(2022847,'Andrew Wesman',NULL,NULL),(2022986,'Kimberly Stuckwisch',NULL,NULL),(2023050,'Darren Criss',1987,NULL),(2023296,'Christian Grundey',NULL,NULL),(2023617,'Sha-Li Chen',1948,NULL),(2023672,'Dakota Goyo',1999,NULL),(2023699,'Eric V. Hachikian',NULL,NULL),(2023922,'Danielle Noble',NULL,NULL),(2024072,'Ryo Sugimoto',NULL,NULL),(2024187,'Brian Rousso',NULL,NULL),(2024895,'Fabio Burtin',NULL,NULL),(2024927,'Alan Ritchson',1982,NULL),(2025001,'Jim Hemphill',1971,NULL),(2025006,'Raquel Almazan',NULL,NULL),(2025391,'Astra Taylor',1979,NULL),(2025683,'Milan Trenc',NULL,NULL),(2025717,'Dane Reade',NULL,NULL),(2025993,'Christopher Soren Kelly',NULL,NULL),(2026060,'Joe Passarelli',NULL,NULL),(2026113,'De\'Shawn Washington',NULL,NULL),(2026881,'Kiowa K. Winans',NULL,NULL),(2026983,'Palak Patel',NULL,NULL),(2027419,'Melina Matsoukas',1981,NULL),(2027474,'Jelena Mitrovic',1977,NULL),(2027509,'Gregoire Gensollen',NULL,NULL),(2028000,'Raffi Adlan',NULL,NULL),(2028116,'Cierra Ramirez',1995,NULL),(2028277,'Michel Ochowiak',NULL,NULL),(2028585,'Sean Branney',NULL,NULL),(2028613,'Finnegan Oldfield',1991,NULL),(2029418,'Mika Hotakainen',NULL,NULL),(2029519,'Coco Martin',1981,NULL),(2029577,'Martha Shane',NULL,NULL),(2030135,'Robert M. Chang',NULL,NULL),(2030179,'Susan LaSalle',NULL,NULL),(2030456,'Richard Lindheim',1939,2021),(2030779,'Moises Arias',1994,NULL),(2030863,'Hiroshi Kishimoto',NULL,NULL),(2031047,'Stefan Maria Schneider',1980,NULL),(2031165,'Elizabeth E. Schuch',NULL,NULL),(2031684,'Ben Holbrook',NULL,NULL),(2032150,'Emily Baldoni',1984,NULL),(2032193,'Miyavi',1981,NULL),(2032234,'Evangelia Randou',NULL,NULL),(2032664,'Kôbun Shizuno',NULL,NULL),(2032824,'Krishna Jones',NULL,NULL),(2033094,'Ernest Riera',1977,NULL),(2033604,'Hiro Murai',NULL,NULL),(2033655,'Trevor Matthews',1982,NULL),(2033716,'Troy Sterling Nies',1974,NULL),(2033731,'Eric Sheffer Stevens',1972,NULL),(2033952,'Michiel Richards',NULL,NULL),(2034064,'Simone Kirby',1976,NULL),(2034711,'Will Slocombe',NULL,NULL),(2034752,'James Rolleston',NULL,NULL),(2035069,'Simon Kelton',1966,NULL),(2035118,'Babak Anvari',NULL,NULL),(2035201,'Giancarlo Vulcano',NULL,NULL),(2035204,'Emily Hagins',1992,NULL),(2035394,'Anja Garbarek',1970,NULL),(2035423,'Russ Howard III',NULL,NULL),(2035886,'Drake Doremus',1983,NULL),(2035913,'Graham Ballou',NULL,NULL),(2036500,'Fernando Coimbra',NULL,NULL),(2036501,'Ben Walker',1993,NULL),(2037127,'Sunait Chutintaranond',NULL,NULL),(2037493,'Patrik Steinmann',NULL,NULL),(2037549,'Saurabh Kikani',NULL,NULL),(2037553,'Gerardine O\'Flynn',NULL,NULL),(2037687,'Eduardo Levy',NULL,NULL),(2037710,'Iván Szabó',NULL,NULL),(2037840,'Poppy Jhakra',NULL,NULL),(2038194,'Neal Kurz',NULL,NULL),(2038313,'Eun-ah Lee',NULL,NULL),(2038422,'Michael J. Gallagher',1988,NULL),(2038534,'Brad Baruh',NULL,NULL),(2038610,'Ewa Puszczynska',1955,NULL),(2038618,'Andy Diggle',NULL,NULL),(2039747,'David Venancio Muro',NULL,NULL),(2039749,'Mauro Guevara',1982,NULL),(2039784,'Jason Oldak',NULL,NULL),(2039903,'Mikko Pöllä',NULL,NULL),(2039934,'Daniel Grant',NULL,NULL),(2040027,'Nir Paniry',NULL,NULL),(2040169,'Adam Schindler',NULL,NULL),(2040193,'Yann Apperry',NULL,NULL),(2040359,'Kyle Ward',NULL,NULL),(2040537,'Kim Farrant',NULL,NULL),(2040736,'M. Caren McCaleb',NULL,NULL),(2041208,'Shôgo Mutô',NULL,NULL),(2041920,'Milton Liu',NULL,NULL),(2041941,'Romain Rojtman',NULL,NULL),(2042155,'Stéphanie Joalland',NULL,NULL),(2042837,'Tamara Meem',NULL,NULL),(2043057,'Pierre Bordage',NULL,NULL),(2043211,'Rosalie Thomass',1987,NULL),(2043234,'Khalid Abdalla',1980,NULL),(2043246,'Radek Ladczuk',1976,NULL),(2043336,'Maureen Bharoocha',NULL,NULL),(2043592,'Julien Poupard',1981,NULL),(2043703,'Lee Jehoon',1984,NULL),(2043734,'Fernley Phillips',NULL,NULL),(2043737,'Catalina Oliva',NULL,NULL),(2043837,'Samuli Valkama',1974,NULL),(2043954,'Victor Bock',NULL,NULL),(2044345,'Michelle Lawler',NULL,NULL),(2044558,'Jason K. Lau',1962,NULL),(2044770,'Devin Brochu',NULL,NULL),(2045439,'Dan Ewing',1985,NULL),(2045498,'Fanny Saadi',NULL,NULL),(2045518,'Brad Rosenberger',NULL,NULL),(2045654,'Behrooz Roozbeh',NULL,NULL),(2046077,'Ben Shiffrin',NULL,NULL),(2046101,'Andee Ryder',NULL,NULL),(2046147,'Brede Hovland',1973,NULL),(2046271,'April Prosser',NULL,NULL),(2046446,'John Timothy',NULL,NULL),(2046575,'Jack Arbuthnott',NULL,NULL),(2046691,'Irandhir Santos',1978,NULL),(2046763,'Cristian Mercado',NULL,NULL),(2047344,'Seth Boston',1977,NULL),(2047567,'Noémie Moreau',NULL,NULL),(2047699,'Oliver Ziegenbalg',1971,NULL),(2047864,'Mike Nguyen Le',NULL,NULL),(2048313,'Erica Yates',NULL,NULL),(2048769,'Takashi Hasegawa',NULL,NULL),(2049067,'Jo Mei',NULL,NULL),(2049115,'Miguel Angel Faura',1978,NULL),(2049126,'Ben Collins',NULL,NULL),(2049431,'Jean-Baptiste Legrand',NULL,NULL),(2049833,'Aaran Thomas',NULL,NULL),(2049889,'Barlow Jacobs',NULL,NULL),(2049966,'Trish Fuller',NULL,NULL),(2050171,'David Bernardi',NULL,NULL),(2050320,'Alyssa Hill',NULL,NULL),(2050522,'Fábio Mendonça',1971,NULL),(2050680,'Steve Hamilton Shaw',NULL,NULL),(2050746,'Emma Catherine Rigby',1989,NULL),(2050806,'Adam Lundgren',1986,NULL),(2050907,'Colin Thornton',NULL,NULL),(2051350,'Rachel Gardner',NULL,NULL),(2051728,'Morgan Matthews',NULL,NULL),(2051771,'Sarah Beth Shapiro',NULL,NULL),(2052281,'Débora Ivanov',NULL,NULL),(2052567,'Jae Head',1996,NULL),(2052679,'Yoshiaki Nishimura',1977,NULL),(2052942,'David Mann',1966,NULL),(2053085,'June Diane Raphael',1980,NULL),(2053216,'Eric Johnson',NULL,NULL),(2053278,'Ashley Smith',NULL,NULL),(2053677,'Ringan Ledwidge',1971,2021),(2053837,'Kelley Eskridge',NULL,NULL),(2054111,'Rie Matsubara',NULL,NULL),(2054498,'Matthew Brulotte',NULL,NULL),(2054692,'Sarah Jenneson',NULL,NULL),(2054764,'Heather Sossaman',1987,NULL),(2054850,'Hamdija Ajanovic',NULL,NULL),(2055160,'Lauryn Alisa McClain',1997,NULL),(2055216,'Emmanuel Chaumet',NULL,NULL),(2055254,'Sabrina Jalees',1985,NULL),(2055297,'Yasmine Akram',NULL,NULL),(2055623,'Lili Mirojnick',NULL,NULL),(2055727,'Hans Ingemansson',NULL,NULL),(2055749,'Robin Coudert',NULL,NULL),(2055761,'Tomohiko Ishii',NULL,NULL),(2056383,'Hugo Leitão',NULL,NULL),(2056401,'Iván Eibuszyc',NULL,NULL),(2056684,'Hilmar Guðjónsson',1981,NULL),(2056772,'Vakkantham Vamsi',NULL,NULL),(2056787,'Tristan Schulmann',NULL,NULL),(2057036,'Shiloh Fernandez',1985,NULL),(2057149,'C. Gaby Mitchell',NULL,NULL),(2057297,'Joshua Guitar',NULL,NULL),(2057312,'J. Michael Tatum',1976,NULL),(2057405,'Nobuaki Minegishi',NULL,NULL),(2057557,'Jared Kusnitz',1988,NULL),(2057601,'Hanako Kasumizawa',NULL,NULL),(2057726,'Jessica Lowndes',1988,NULL),(2057837,'Esteban Carvajal-Alegria',NULL,NULL),(2057859,'Andrea Riseborough',1981,NULL),(2057975,'Elizabeth Meriwether',1981,NULL),(2058108,'Christina Alexandra Voros',NULL,NULL),(2058180,'Teena Booth',NULL,NULL),(2058345,'Martin Rehbock',1972,NULL),(2058563,'Ayami Kakiuchi',1989,NULL),(2059333,'Mike Mogis',NULL,NULL),(2059443,'Benny Elledge',NULL,NULL),(2059486,'Oliver Kahl',NULL,NULL),(2059536,'Shimako Iwai',1964,NULL),(2060068,'Wing-Fai Wong',NULL,NULL),(2060292,'Erika Bagnarello',NULL,NULL),(2060755,'Ashleigh Powell',NULL,NULL),(2060819,'Ed Cunningham',1969,NULL),(2060872,'Ty Arnold',NULL,NULL),(2061432,'Hiroyasu Koizumi',NULL,NULL),(2062196,'Cathy Richardson',NULL,NULL),(2062561,'Nathalia Ramos',1992,NULL),(2062698,'Mateo Arias',1995,NULL),(2062720,'Jon Prescott',1981,NULL),(2062941,'Rolant Hergert',NULL,NULL),(2063430,'Sachiko Sone',NULL,NULL),(2063526,'Alexis Dos Santos',1974,NULL),(2063694,'Josh Ruben',1983,NULL),(2063773,'Andrew Halliwell',NULL,NULL),(2063780,'Joe Filippone',1986,NULL),(2063811,'Brendan Meyer',1994,NULL),(2063982,'Antonia Campbell-Hughes',NULL,NULL),(2064011,'Jin Akanishi',1984,NULL),(2064412,'Robbie Amell',1988,NULL),(2064480,'Tina Mabry',1978,NULL),(2064770,'Vince Flynn',1966,2013),(2065115,'Stephanie Greco',NULL,NULL),(2065321,'Peter Grönlund',NULL,NULL),(2065398,'Evie Thompson',1995,NULL),(2065670,'Andrew Deutschman',NULL,NULL),(2066036,'Robin L. Watkins',NULL,NULL),(2066439,'Gorô Miyazaki',1967,NULL),(2066525,'Scott Hardkiss',1969,2013),(2066600,'Vincent-Guillaume Otis',1978,NULL),(2067071,'Andy Blythe',NULL,NULL),(2067091,'Misha Meskhi',NULL,NULL),(2067371,'Catherine Trillo',NULL,NULL),(2067421,'Gerard Johnstone',NULL,NULL),(2067669,'Noriko Shitaya',1982,NULL),(2067953,'Ed Westwick',1987,NULL),(2068037,'Max Richter',1966,NULL),(2068038,'Elizabeth Dell',NULL,NULL),(2068190,'Therese Elfström',NULL,NULL),(2068559,'Tom Riley',1981,NULL),(2068773,'Arimasa Okada',NULL,NULL),(2069734,'Kylee Russell',1996,NULL),(2069778,'Taylor Cole',NULL,NULL),(2070021,'Hugh Drumm',NULL,NULL),(2070325,'Andreas Kapsalis',NULL,NULL),(2070336,'Ingrid Bolsø Berdal',1980,NULL),(2070427,'Tom Mison',1982,NULL),(2071545,'Adriana Rotaru',NULL,NULL),(2071719,'Dennis Jobling',NULL,NULL),(2071741,'Luigi De Laurentiis Jr.',NULL,NULL),(2071861,'Arnaud Bordas',NULL,NULL),(2072094,'Alison Goldfrapp',1966,NULL),(2072214,'Michael Aloni',1984,NULL),(2072520,'Claire Lajeunie',NULL,NULL),(2072611,'Dete Meserve',NULL,NULL),(2072667,'Jordan Prosser',1988,NULL),(2072818,'Céline Sallette',1980,NULL),(2072976,'Sara Murphy',NULL,NULL),(2073007,'George Babluani',NULL,NULL),(2073156,'Inés Efron',1985,NULL),(2073429,'Brett Goldstein',NULL,NULL),(2073502,'Mario Garibaldi',NULL,NULL),(2073546,'Pádraic Delaney',1977,NULL),(2073574,'Alfredo Botello',NULL,NULL),(2074041,'Rachel Tunnard',NULL,NULL),(2074204,'Anthony Cumia',1961,NULL),(2074328,'Nicholas Jasenovec',NULL,NULL),(2074421,'Steve Berg',NULL,NULL),(2074459,'Barbie Hsu',1976,NULL),(2074546,'Regé-Jean Page',NULL,NULL),(2075054,'Billy Edwards',1844,1907),(2075282,'Joshua Pelegrin',NULL,NULL),(2075487,'Ross Stewart',NULL,NULL),(2076099,'Hernán Jiménez',NULL,NULL),(2076151,'Daragh Carville',NULL,NULL),(2077046,'Chika Kan',NULL,NULL),(2077070,'Jill Nicholls',NULL,NULL),(2077159,'David Sakurai',NULL,NULL),(2077283,'Eduardo Cisneros',1977,NULL),(2077509,'Marte Magnusdotter Solem',NULL,NULL),(2077652,'Haerry Kim',NULL,NULL),(2078278,'Kimio Kataoka',NULL,NULL),(2078430,'Pablo Proenza',1974,NULL),(2078509,'Patrick Aiello',NULL,NULL),(2078681,'Michael Lesslie',1984,NULL),(2079484,'Rachel Lee Goldenberg',NULL,NULL),(2079681,'Morgan Lily',2000,NULL),(2079784,'Sondre Lerche',1982,NULL),(2080217,'Daniel D. Davis',NULL,NULL),(2080328,'Kelsey Asbille',1991,NULL),(2080363,'Richard Brancatisano',1983,NULL),(2080557,'Nathan Darrow',1976,NULL),(2080950,'Guadalupe Rébora',NULL,NULL),(2081046,'Derek Connolly',NULL,NULL),(2081116,'J.P. Chan',NULL,NULL),(2081236,'Richard Smither',NULL,NULL),(2081756,'Andrea Gherpelli',1975,NULL),(2082436,'Brendan Hunter',1979,NULL),(2082465,'Laurent Perez Del Mar',1974,NULL),(2082567,'Hafsia Herzi',1987,NULL),(2082716,'João Pedro Vaz',1974,NULL),(2082776,'Hale Appleman',NULL,NULL),(2082787,'Brian Bolland',1951,NULL),(2082813,'Zach Lewis',NULL,NULL),(2082845,'Heidi H. Hamelin',NULL,NULL),(2083046,'François Lallement',1877,1954),(2083477,'Giancarlo Volpe',1974,NULL),(2083561,'Gerdy Zint',1979,NULL),(2083643,'Max Massimo',NULL,NULL),(2083655,'Louise Alston',NULL,NULL),(2083678,'Laura Solon',NULL,NULL),(2083894,'Jemima Khan',1974,NULL),(2084225,'Guillermo de la Cal',NULL,NULL),(2084963,'Noé Hernández',NULL,NULL),(2085191,'Alex Mandel',NULL,NULL),(2085629,'Dana Fuchs',1976,NULL),(2085654,'Adam Alleca',1983,NULL),(2085938,'Masako Yana',NULL,NULL),(2086223,'India Eisley',1993,NULL),(2087015,'Napoleon Stratogiannakis',NULL,NULL),(2087277,'Pascal Goubereau',NULL,NULL),(2087739,'Jeremy Allen White',1991,NULL),(2087765,'Philipp Worm',NULL,NULL),(2087783,'Natalie Krill',1983,NULL),(2087883,'Tracey Landon',NULL,NULL),(2088015,'Jaime de Sousa',NULL,NULL),(2088141,'Ana Marta Ferreira',1994,NULL),(2088215,'Greg Cotten',NULL,NULL),(2088623,'PJ DeBoy',NULL,NULL),(2088640,'Phil Hernandez',NULL,NULL),(2088699,'Robin Lord Taylor',1978,NULL),(2088803,'Yvonne Strahovski',1982,NULL),(2089090,'Seamus Davey-Fitzpatrick',1998,NULL),(2089285,'Carlos J. de la Torre',NULL,NULL),(2089320,'Ed Ackerman',1977,NULL),(2089328,'David Higgs',NULL,NULL),(2089454,'Martin Sharpe',NULL,NULL),(2089521,'John McDowell',1955,NULL),(2089602,'Kevin Harvey',NULL,NULL),(2089814,'Dan Mintz',1981,NULL),(2089884,'Lincoln Lewis',1987,NULL),(2089954,'Mario Guerra',NULL,NULL),(2090073,'David Teague',NULL,NULL),(2090206,'Freedom Writers',NULL,NULL),(2090381,'Adrian Peng Correia',NULL,NULL),(2090422,'Constance Wu',NULL,NULL),(2090809,'Lina Lundberg',1991,NULL),(2090975,'Travis Betz',1976,NULL),(2091329,'Benedict Carver',1969,NULL),(2091536,'Gabrielle Brennan',1996,NULL),(2091799,'Bridget O\'Connor',1961,2010),(2091846,'Lee Cronin',NULL,NULL),(2091911,'Alonso Ruizpalacios',1978,NULL),(2092016,'Chris Bacon',1977,NULL),(2092175,'Andrea James',1967,NULL),(2092248,'Shanti Das',NULL,NULL),(2092418,'Tobias Karlsson',NULL,NULL),(2092479,'Steven Gould',NULL,NULL),(2092545,'Bobby Campo',1983,NULL),(2092835,'Tom Payne',1982,NULL),(2092839,'Mark Millar',1969,NULL),(2092872,'Rob Williams',NULL,NULL),(2092886,'Jodie Whittaker',1982,NULL),(2092942,'Pedro Vicente',NULL,NULL),(2093075,'Di Adams',1964,NULL),(2093097,'Chris Brown',1989,NULL),(2093171,'Damien Leone',NULL,NULL),(2093343,'Ali Bell',NULL,NULL),(2093766,'Luke Grimes',1984,NULL),(2093933,'Joshua Caldwell',1983,NULL),(2094135,'Felipe Marino',NULL,NULL),(2094293,'Lacey Leavitt',NULL,NULL),(2094392,'Ernest Cline',NULL,NULL),(2094777,'Don Stroud',NULL,NULL),(2094821,'Sean Keegan',NULL,NULL),(2095000,'Joe Seo',1998,NULL),(2095003,'Claire Jones',NULL,NULL),(2095010,'Jason Cleveland',1979,NULL),(2095095,'Collin McMahon',NULL,NULL),(2095158,'Manik',NULL,NULL),(2095418,'Nadia Martínez de Marañón',NULL,NULL),(2095469,'Masatoshi Fujimoto',NULL,NULL),(2095560,'Rodrigo Teixeira',1973,NULL),(2095603,'Rachelle Ryan',NULL,NULL),(2095719,'Brian Coffey',NULL,NULL),(2095752,'Brian Cleveland',NULL,NULL),(2095966,'Junichi Masuda',NULL,NULL),(2096064,'Emma McLaughlin',1974,NULL),(2096445,'Jon Hopkins',NULL,NULL),(2096462,'Keith Calder',NULL,NULL),(2096617,'Iain Canning',NULL,NULL),(2096624,'Nicola Kraus',1974,NULL),(2097131,'Kristin Asbjørnsen',NULL,NULL),(2097279,'Olaug Nilssen',NULL,NULL),(2097685,'Burgess Abernethy',1987,NULL),(2097733,'Shin\'ichirô Inoue',NULL,NULL),(2098196,'Victor Moyers',NULL,NULL),(2098201,'Fernanda de la Peza',NULL,NULL),(2098549,'Jack Hitt',NULL,NULL),(2098603,'Hikari Mitsushima',1985,NULL),(2098964,'Sebastian Meise',1976,NULL),(2099087,'Avijit Halder',NULL,NULL),(2099237,'Magnus Millang',1981,NULL),(2099738,'Yuliya Peresild',1984,NULL),(2099785,'Eric Litman',1978,NULL),(2099846,'Kazuhiko Inukai',NULL,NULL),(2100078,'Thomas Tull',1970,NULL),(2100081,'Phoebe Tonkin',1989,NULL),(2100246,'Ralph Etter',1978,NULL),(2100265,'Alan McAlex',1976,NULL),(2100653,'Kochi',NULL,NULL),(2100833,'Robert Valding',NULL,NULL),(2100946,'Pascal Trottier',NULL,NULL),(2100998,'Cariba Heine',NULL,NULL),(2101047,'Thomas Reider',1980,NULL),(2101133,'Iride Mockert',NULL,NULL),(2101412,'Marta Piedade',NULL,NULL),(2101544,'Andria Spring',1982,NULL),(2101751,'Anvita Dutt',1972,NULL),(2101924,'Cathal Watters',NULL,NULL),(2102207,'Ben Loyd-Holmes',1981,NULL),(2102221,'Terunosuke Takezai',1980,NULL),(2102514,'Harman Baweja',1980,NULL),(2102798,'George Fisher',1969,NULL),(2102872,'Georgia Groome',1992,NULL),(2104063,'Eric Heisserer',1970,NULL),(2104095,'Thomas Ordonneau',NULL,NULL),(2104119,'Michael Sirow',1981,NULL),(2104166,'Mark Fredrichs',NULL,NULL),(2105255,'Sarah Roemer',1984,NULL),(2105464,'Carlos Francisco',NULL,NULL),(2105585,'Tobias Lindholm',1977,NULL),(2106218,'Jodi Redmond',NULL,NULL),(2106556,'Kristine Knudsen',NULL,NULL),(2106637,'Aziz Ansari',1983,NULL),(2106801,'Louisa Krause',1986,NULL),(2107620,'Tyler Blackburn',1986,NULL),(2107665,'Liam Boyle',1985,NULL),(2108643,'Eddie Peng',1982,NULL),(2109108,'Rachel Cairns',NULL,NULL),(2109290,'Devon Cody',NULL,NULL),(2109956,'Lara Gallagher',NULL,NULL),(2110175,'Joey McFarland',NULL,NULL),(2110380,'Pamela Kohn',NULL,NULL),(2110418,'Gemma Chan',1982,NULL),(2110485,'Manish Dayal',NULL,NULL),(2111309,'Alicia Kirk',1978,NULL),(2111404,'Sandro Forte',1970,2020),(2111875,'Iris Yamashita',NULL,NULL),(2111904,'Luisa Williams',NULL,NULL),(2112342,'Madeleine Olnek',NULL,NULL),(2112410,'Diego Pineda',1971,NULL),(2112559,'Charles Collier',NULL,NULL),(2112927,'Zack Winfield',NULL,NULL),(2113026,'Sean Cain',NULL,NULL),(2113122,'Claire McCarthy',NULL,NULL),(2113336,'Benoit Roland',1981,NULL),(2113420,'Sara Shaw',NULL,NULL),(2113653,'Richard Harmon',1991,NULL),(2113666,'Jack Thorne',1978,NULL),(2114493,'Pheline Roggan',1981,NULL),(2114730,'Mark Heyman',NULL,NULL),(2114889,'Steve Danielsen',NULL,NULL),(2115426,'Mohamed Ali',NULL,NULL),(2116286,'Glenn Hobart',NULL,NULL),(2116419,'Gregg Sulkin',1992,NULL),(2116601,'Randi Reisfeld',NULL,NULL),(2116827,'Kiyoshi Shigematsu',1963,NULL),(2117053,'Ram Shweky',NULL,NULL),(2117096,'Megan Adelle',1990,NULL),(2117510,'Cal Brunker',1978,NULL),(2117800,'Warren Ostergard',NULL,NULL),(2117864,'Anna Ryrberg',1991,NULL),(2118162,'Anca Puiu',1971,NULL),(2118165,'Danny Lerner',NULL,NULL),(2118553,'Sasie Sealy',NULL,NULL),(2118666,'Maiara Walsh',1988,NULL),(2118749,'John Herrera',NULL,NULL),(2118903,'Claire Scovell Lazebnik',NULL,NULL),(2119319,'Victoria Teijeiro',NULL,NULL),(2119781,'Xiaoming Huang',1977,NULL),(2119938,'Lucas Jarach',NULL,NULL),(2120003,'José Eduardo Agualusa',1960,NULL),(2120452,'Yu-Hsien Lin',1974,NULL),(2120520,'Saburo Yatsude',NULL,NULL),(2120560,'Grand Corps Malade',1977,NULL),(2120630,'H.B. Gilmour',1939,2009),(2120797,'Daisuke Hosaka',NULL,NULL),(2121085,'Freddy Åsblom',1990,NULL),(2121541,'Evanna Lynch',1991,NULL),(2122478,'Duke Johnson',1979,NULL),(2122783,'Larry Frenzel',NULL,NULL),(2123102,'Eran Creevy',1976,NULL),(2123688,'Zachary Hopkins',1989,NULL),(2123941,'Carter Logan',NULL,NULL),(2123947,'Del Harvey',NULL,NULL),(2124061,'Cory Helms',NULL,NULL),(2124081,'Steven Schneider',1974,NULL),(2124742,'Stephen P. Lindsey',NULL,NULL),(2124792,'Nicholas T. Shepard',NULL,NULL),(2125212,'Marty Bowen',NULL,NULL),(2125260,'Tim LeFebvre',NULL,NULL),(2125368,'Rodney El Haddad',NULL,NULL),(2125482,'Chloé Zhao',1982,NULL),(2125564,'Janet Yung',NULL,NULL),(2125729,'Alice Wood',NULL,NULL),(2126141,'Lucy Catherine',NULL,NULL),(2126566,'Nancy Kenny',NULL,NULL),(2126669,'Erin Owens',NULL,NULL),(2126758,'Nick Vasallo',NULL,NULL),(2126907,'Gabe Polsky',NULL,NULL),(2126954,'Sohrab Noshirvani',NULL,NULL),(2126992,'Maxence Cyrin',NULL,NULL),(2127038,'Candice King',1987,NULL),(2127315,'Autumn de Wilde',1970,NULL),(2127497,'Victor Kubicek',NULL,NULL),(2127512,'Dooho Choi',NULL,NULL),(2127650,'Carter Smith',NULL,NULL),(2127991,'Andrew Hewitt',NULL,NULL),(2128139,'Colm Bairéad',1981,NULL),(2128238,'Sonam Kapoor',1985,NULL),(2128335,'J Blakeson',NULL,NULL),(2128363,'Paul Briggs',1974,NULL),(2128391,'Solar Fields',NULL,NULL),(2128400,'Aaron Covington',NULL,NULL),(2128444,'Maria João Pinho',NULL,NULL),(2128585,'Robert Leitzell',NULL,NULL),(2128776,'Tatsuya Ishihara',1966,NULL),(2128956,'Michelle Margolis',NULL,NULL),(2128958,'Samuel Scott',NULL,NULL),(2129264,'John Heilemann',1966,NULL),(2129444,'Alice Englert',1994,NULL),(2129572,'Ron Leshem',1976,NULL),(2129662,'Cristin Milioti',1985,NULL),(2129938,'Thomas Turgoose',1992,NULL),(2130040,'Alba Rohrwacher',1979,NULL),(2130099,'Rick Yancey',NULL,NULL),(2130108,'Bob Persichetti',NULL,NULL),(2130235,'Mona Achache',1981,NULL),(2130654,'Michael C. Martin',NULL,NULL),(2131060,'Brian Goldner',1963,2021),(2131687,'Héctor Cabello Reyes',NULL,NULL),(2131701,'Gunter Lamoot',1970,NULL),(2131733,'Christopher Ross',NULL,NULL),(2131892,'Tracy Bartelle',NULL,NULL),(2131929,'Jodi Ann Johnson',NULL,NULL),(2131960,'Juliano Cazarré',1980,NULL),(2131974,'Nicole Carmen-Davis',NULL,NULL),(2132113,'Adam Siegel',NULL,NULL),(2132230,'Janardhana Maharshi',NULL,NULL),(2132286,'Lisa Aschan',NULL,NULL),(2132562,'Robert Cross',NULL,NULL),(2132924,'Arnaud Léonard',NULL,NULL),(2133093,'Bryce Fortner',NULL,NULL),(2133655,'Chris Sparling',1977,NULL),(2134432,'Bert',NULL,NULL),(2134474,'Vikas Bahl',1971,NULL),(2134538,'Anthony Bishop',1971,2019),(2134597,'Gonzalo Salazar-Simpson',NULL,NULL),(2134798,'Anna Jordan',NULL,NULL),(2134806,'Leonardo Ortizgris',NULL,NULL),(2134910,'Gary Shaw',NULL,NULL),(2135242,'Yuki Tanada',1975,NULL),(2136247,'Maria Lo Orzel',NULL,NULL),(2137588,'Seana Carroll',NULL,NULL),(2137662,'Hikaru Kondô',NULL,NULL),(2138653,'Deepika Padukone',1986,NULL),(2139166,'Hugh Wooldridge',1952,NULL),(2139216,'Aitor Montánchez',NULL,NULL),(2139257,'Murat Cemcir',1976,NULL),(2139439,'Daniel Raimi',NULL,NULL),(2140186,'Rodo Sayagues',NULL,NULL),(2140444,'Bill Myers',NULL,NULL),(2140588,'American Cream Team',NULL,NULL),(2140746,'Nicole Rocklin',1979,NULL),(2140860,'Maika Monroe',1993,NULL),(2142336,'Riley Keough',1989,NULL),(2142367,'Jonathan Kadin',NULL,NULL),(2143007,'Tim Miller',NULL,NULL),(2143282,'Lupita Nyong\'o',1983,NULL),(2143291,'Tobias Hylander',NULL,NULL),(2143725,'Hiroshi Hasegawa',NULL,NULL),(2143950,'Luca Marinelli',1984,NULL),(2144007,'Kangana Ranaut',1987,NULL),(2144123,'Junko Kimoto',NULL,NULL),(2144288,'Dan Pulick',1974,NULL),(2144714,'Jorge Arenillas',NULL,NULL),(2145177,'Alexia Fast',1992,NULL),(2145339,'Emil Stern',NULL,NULL),(2145487,'Brad Ingelsby',NULL,NULL),(2145492,'Amr Salah',NULL,NULL),(2146007,'Charles Castaldi',NULL,NULL),(2146022,'Kôki Uchiyama',1990,NULL),(2146597,'Marco Luciani',NULL,NULL),(2146668,'Keiko Niwa',NULL,NULL),(2146733,'Franck Van der Heijden',NULL,NULL),(2147481,'Gökçe Akçelik',1977,NULL),(2147605,'Iva Gocheva',NULL,NULL),(2147876,'Christine Woods',1983,NULL),(2148132,'Alain Kruger',NULL,NULL),(2148374,'Afro Celt Sound System',NULL,NULL),(2148665,'Nyambi Nyambi',1979,NULL),(2148845,'Sergey Belyaev',1960,NULL),(2148911,'Wunmi Mosaku',1986,NULL),(2149083,'Dan Keston',NULL,NULL),(2149142,'Christie Bahna',NULL,NULL),(2149164,'David Buelow',NULL,NULL),(2149505,'Jayson Thiessen',NULL,NULL),(2149548,'Sebastian Pardo',NULL,NULL),(2150111,'Pete Nu',NULL,NULL),(2150123,'Kunihiko Ryo',NULL,NULL),(2150730,'Shunsuke Tada',NULL,NULL),(2151126,'Eoin Macken',1983,NULL),(2151374,'Eliza Hittman',1979,NULL),(2151395,'Shayesteh Irani',NULL,NULL),(2151626,'Victor Boichev',NULL,NULL),(2151806,'Blake DeLong',NULL,NULL),(2151956,'Joannie Burstein',NULL,NULL),(2152379,'Ayda Sadeqi',NULL,NULL),(2152458,'Justin Charles Foster',NULL,NULL),(2153088,'Gareth Evans',1980,NULL),(2153103,'Kamel Abo-Ali',NULL,NULL),(2153198,'Natalie Smyka',NULL,NULL),(2153450,'Madeleine Sackler',NULL,NULL),(2153456,'Ado Yoshizaki Cassuto',NULL,NULL),(2153952,'Nick Cooke',1988,NULL),(2154048,'Shamuelle David D\'Alessandro',NULL,NULL),(2154065,'Fodhla Cronin O\'Reilly',NULL,NULL),(2154278,'Ishi Rudell',NULL,NULL),(2154425,'Rioko Tominaga',NULL,NULL),(2154696,'Anne Moore',NULL,NULL),(2154927,'Gregory Davis',NULL,NULL),(2154960,'Amy Schumer',1981,NULL),(2155402,'Sima Mobarak-Shahi',NULL,NULL),(2155525,'Beau Mirchoff',1989,NULL),(2155614,'Jeffery Masino',NULL,NULL),(2155717,'Sara O\'Meara',NULL,NULL),(2155757,'Josh Cooley',NULL,NULL),(2156404,'Frank Paladino',NULL,NULL),(2156521,'Raiomond Mirza',NULL,NULL),(2156696,'Sang-beom Son',NULL,NULL),(2157365,'Jesse Averna',NULL,NULL),(2157655,'Kôtarô Isaka',NULL,NULL),(2157916,'Gibrán Portela',NULL,NULL),(2157978,'Ishai Adar',NULL,NULL),(2158185,'Alexander Talal',1974,NULL),(2158640,'Shadmehr Rastin',NULL,NULL),(2158772,'Jeff Nichols',1978,NULL),(2158807,'Matt Flannery',NULL,NULL),(2158886,'Christopher Hart',NULL,NULL),(2159926,'Jake Johnson',1978,NULL),(2160109,'Michié',NULL,NULL),(2160156,'Alix Elizabeth Gitter',1989,NULL),(2160435,'Mark Neal',NULL,NULL),(2160922,'Grégoire Debailly',1977,NULL),(2161148,'Jake Hames',NULL,NULL),(2161247,'Paco Cabezas',1976,NULL),(2161377,'Christopher McGlynn',NULL,NULL),(2161431,'Garance Le Guillermic',NULL,NULL),(2161624,'Neil Bhoopalam',1983,NULL),(2161889,'Saadia Bentaïeb',1956,NULL),(2162290,'Akihiro Kitamura',NULL,NULL),(2162346,'Alix Poisson',NULL,NULL),(2162912,'Golo Euler',1982,NULL),(2162955,'Marc D. Evans',NULL,NULL),(2163092,'Emilia Schüle',1992,NULL),(2163353,'Jon Brown',NULL,NULL),(2163440,'David Michelinie',1948,NULL),(2164125,'Núria Parera',NULL,NULL),(2164512,'Eric Podnar',1986,NULL),(2164624,'The 88',NULL,NULL),(2164670,'Jeffrey Wood',NULL,NULL),(2164896,'Michael Martire',NULL,NULL),(2165066,'Carles Torrens',1984,NULL),(2165590,'Michael A. Pruss',NULL,NULL),(2166024,'Keith Redmon',NULL,NULL),(2166084,'David Chizallet',1979,NULL),(2166469,'Christopher Nicholas Smith',NULL,NULL),(2166477,'Ivo Nandi',NULL,NULL),(2166687,'Heiko Maile',1966,NULL),(2166735,'Eric Wood',NULL,NULL),(2166962,'Dominique Wirtschafter',NULL,NULL),(2167462,'Angela Nestorovska',NULL,NULL),(2167957,'Paul Anderson',NULL,NULL),(2168099,'James Friend',NULL,NULL),(2168221,'Jamie Reidy',NULL,NULL),(2168307,'Rio Yamase',NULL,NULL),(2168632,'Manuela Vellés',1987,NULL),(2168955,'Jake Shimabukuro',1976,NULL),(2169088,'Eric D. Wilkinson',NULL,NULL),(2169314,'Viviana Leo',NULL,NULL),(2169661,'Shihô Harumi',1959,NULL),(2169801,'Kate Melville',NULL,NULL),(2169909,'Marc Canham',NULL,NULL),(2170121,'Takeshi Kobayashi',NULL,NULL),(2170804,'Ngai Lun Wong',NULL,NULL),(2170955,'Manisha Korde',NULL,NULL),(2171329,'Josh Grelle',1985,NULL),(2171492,'Ricardo Veiga',NULL,NULL),(2171515,'Space Invader',NULL,NULL),(2171590,'Ignacio Pérez Dolset',NULL,NULL),(2171633,'Baran bo Odar',1978,NULL),(2171769,'Jeff Fradley',NULL,NULL),(2171865,'Ben Insler',NULL,NULL),(2171898,'Birgitte Hjort Sørensen',1982,NULL),(2172371,'Rick Doucette',NULL,NULL),(2173066,'Timothy A. Burton',1985,NULL),(2173202,'Haim Tabakman',1975,NULL),(2173401,'Mark Slater',NULL,NULL),(2173573,'Haley Guiel',NULL,NULL),(2173608,'Kazuko Kojima',NULL,NULL),(2173766,'Tim Phillips',NULL,NULL),(2174090,'Scottie Thompson',1981,NULL),(2174097,'Tsugumi Ôba',NULL,NULL),(2174122,'Han Hyo-joo',1987,NULL),(2175143,'Je-mun Yun',NULL,NULL),(2175732,'Betsy Rue',NULL,NULL),(2175961,'Habib Shehada Hanna',NULL,NULL),(2176027,'Kyle Conyers',NULL,NULL),(2176283,'Liz Hannah',1985,NULL),(2176955,'Jan Duursema',1954,NULL),(2176972,'Samantha Vincent',NULL,NULL),(2177049,'Cherilynn Fulbright',NULL,NULL),(2177528,'Kate Micucci',1980,NULL),(2177933,'Melanie Vallejo',1979,NULL),(2178084,'Richard Forsgren',NULL,NULL),(2178299,'Julie Rubio',NULL,NULL),(2178458,'Janus Metz',1974,NULL),(2178496,'Zoë Mannhardt',1996,NULL),(2178754,'Mona Fastvold',1986,NULL),(2178779,'Tim Duff',NULL,NULL),(2178959,'Lily Cole',1987,NULL),(2179185,'Damien Marzette',NULL,NULL),(2179241,'Jonas Wandschneider',1991,NULL),(2179308,'Brian Olpin',NULL,NULL),(2179463,'Gregory Tripi',1975,NULL),(2179863,'Yûsuke Yamada',NULL,NULL),(2179966,'Tommy Oliver',NULL,NULL),(2180319,'Tom Mandrake',1956,NULL),(2180472,'Patrick Shainin',NULL,NULL),(2181128,'Joel Fry',NULL,NULL),(2181314,'Christopher Landers',NULL,NULL),(2181392,'Jun\'ichi Itô',NULL,NULL),(2182034,'Shyann McClure',2000,NULL),(2182155,'Susan Alotrico',NULL,NULL),(2182628,'Scott Lilly',NULL,NULL),(2182702,'Deborah Lipstadt',1947,NULL),(2182727,'Shizuyo Yamasaki',1979,NULL),(2182866,'Julien Leclercq',NULL,NULL),(2183344,'Yukie Kito',NULL,NULL),(2183916,'Jean-Philippe Moreaux',NULL,NULL),(2184082,'Yôhei Miyahara',NULL,NULL),(2184093,'Christopher Shainin',NULL,NULL),(2184127,'Julie Christeas',NULL,NULL),(2184232,'Keith Schaffner',NULL,NULL),(2184389,'Tony Cladoosby',NULL,NULL),(2184504,'Rajasimha Tadinada',NULL,NULL),(2184529,'Chie Kobayashi',NULL,NULL),(2184657,'Randy Walker',NULL,NULL),(2184890,'Kim Barker',NULL,NULL),(2185000,'Jennifer Nettles',1974,NULL),(2185250,'Dimitri Rassam',1981,NULL),(2185413,'Man of Action',NULL,NULL),(2185928,'Danny Kwok-Kwan Chan',1975,NULL),(2185967,'Jinmo Yang',NULL,NULL),(2186362,'Jim Hecht',1975,NULL),(2186596,'Adam Sidman',NULL,NULL),(2186632,'Tinker Lindsay',NULL,NULL),(2186682,'Cortney Palm',1987,NULL),(2186865,'Hong Chau',1979,NULL),(2186979,'Michael Chin',NULL,NULL),(2187304,'Adam Der Aris',NULL,NULL),(2187603,'Scott Porter',1979,NULL),(2188766,'Thierry Million',NULL,NULL),(2188800,'Ehren Parks',1980,NULL),(2188804,'Audrey Lamy',1981,NULL),(2188842,'Vidal Sancho',1977,NULL),(2188941,'Matt Lopez',NULL,NULL),(2189036,'Kenan Catic',NULL,NULL),(2189611,'Melina Lizette',NULL,NULL),(2189625,'Lucy Griffiths',1986,NULL),(2190048,'Tom Edmunds',NULL,NULL),(2190547,'Wai-Nin Chan',NULL,NULL),(2190815,'Jean-Philippe Vine',NULL,NULL),(2191045,'Andy Horwitz',NULL,NULL),(2191251,'Elizabeth Callens',NULL,NULL),(2191541,'Laura Amelia Guzmán',1980,NULL),(2191612,'David Gore',1996,NULL),(2191747,'Guy Danella',NULL,NULL),(2193008,'Sydney Park',1997,NULL),(2193120,'Hannah Gross',NULL,NULL),(2193367,'Ryan O Roy',NULL,NULL),(2193504,'Emerald Fennell',1985,NULL),(2193662,'Dionysos',NULL,NULL),(2195131,'Trevor Michael Brown',NULL,NULL),(2195507,'Ken F. Levin',NULL,NULL),(2196016,'Kristina Larsen',NULL,NULL),(2196058,'Andy Ostroy',1959,NULL),(2196217,'Neeral Mulchandani',NULL,NULL),(2196261,'Rosie Charbonneau',1978,NULL),(2196693,'Rain Tolk',1977,NULL),(2197025,'Deniz Gamze Ergüven',1978,NULL),(2197298,'Katrina Bowden',1988,NULL),(2197371,'Arantxa Cuesta',NULL,NULL),(2197595,'Yôhei Konishi',NULL,NULL),(2197777,'Tom Harper',1980,NULL),(2197915,'Michio Mamiya',1929,NULL),(2198489,'Frédéric Junqua',NULL,NULL),(2198494,'Chris O\'Neil',1994,NULL),(2198611,'Trevor De Silva',NULL,NULL),(2198739,'Kennedi Martin',NULL,NULL),(2199219,'Miriam Porté',NULL,NULL),(2199413,'Armando Salazar',NULL,NULL),(2199632,'Rudy Youngblood',1982,NULL),(2199657,'Yara Martinez',1979,NULL),(2199664,'Dalia Hernández',1985,NULL),(2199696,'Emily Meyer',NULL,NULL),(2199854,'Mike Farah',NULL,NULL),(2199863,'Jean McKenzie',NULL,NULL),(2200299,'Zak Ludwig',1997,NULL),(2200542,'Amy Jacobson',NULL,NULL),(2200755,'Vica Kerekes',1981,NULL),(2200824,'Daniel Fraser',NULL,NULL),(2200866,'Jordan Coleman',NULL,NULL),(2201016,'Liam Gavin',NULL,NULL),(2201245,'James Sallis',1944,NULL),(2201555,'Aubrey Plaza',1984,NULL),(2201794,'Emilie Lesclaux',NULL,NULL),(2201960,'Nathan Meister',NULL,NULL),(2202271,'Daniel Mackey',NULL,NULL),(2202409,'Shôta Sometani',1992,NULL),(2202521,'Madison Pettis',1998,NULL),(2202746,'Richard Bodgers',NULL,NULL),(2203312,'Caroline Locardi',NULL,NULL),(2203315,'Cho-Lam Wong',1980,NULL),(2203770,'Derek Anderson',NULL,NULL),(2204070,'Lu Huang',1983,NULL),(2204178,'Tenoch Huerta',1981,NULL),(2204477,'Anthony J. Rickert-Epstein',1984,NULL),(2204480,'Jonathan King',1967,NULL),(2204583,'Sarah K. Reimers',NULL,NULL),(2204910,'Charlene Blanco Agabao',NULL,NULL),(2205106,'Tom Banks',NULL,NULL),(2205351,'Sebastian Bear-McClard',NULL,NULL),(2205460,'Geoffrey Tock',NULL,NULL),(2205495,'Barnaby Robson',NULL,NULL),(2205945,'Walter Saabel',NULL,NULL),(2206548,'Vérane Frédiani',NULL,NULL),(2206801,'Edward Nogria',NULL,NULL),(2207081,'Jonathan Sadoff',NULL,NULL),(2207084,'John D. O\'Connor',NULL,NULL),(2207150,'L.A. Renigen',1979,NULL),(2207222,'Scott Eastwood',1986,NULL),(2207353,'Ransom Riggs',NULL,NULL),(2207625,'Kleber Mendonça Filho',1968,NULL),(2207836,'Ana Radojicic',NULL,NULL),(2208050,'Joe Anderson',NULL,NULL),(2208272,'Evan Todd',1989,NULL),(2208283,'Peter Von Poehl',NULL,NULL),(2208460,'Atsushi Moriyama',NULL,NULL),(2208490,'Patrizia Gerardi',NULL,NULL),(2208558,'H.P. Mendoza',1977,NULL),(2208729,'Tess Morris',1977,NULL),(2208876,'Ajay Monga',NULL,NULL),(2209074,'Fenessa Pineda',NULL,NULL),(2209203,'Guy Garvey',1974,NULL),(2209370,'Katie Featherston',1982,NULL),(2209781,'Ayan Mukerji',1983,NULL),(2210071,'Don Sikorski',NULL,NULL),(2210296,'Miku Sano',NULL,NULL),(2210479,'Michelle Graham',NULL,NULL),(2210641,'Anna Bean',NULL,NULL),(2210720,'Naoko Yamada',1984,NULL),(2210888,'Kate Tsui',1979,NULL),(2211997,'Chris Le',1988,NULL),(2212109,'Clara Machado',NULL,NULL),(2212346,'Jason Robert Brown',1970,NULL),(2212512,'Tôru Kawaguchi',NULL,NULL),(2213147,'Juan de Dios Larraín',1978,NULL),(2213511,'Tôya Satô',1959,NULL),(2213688,'Merl Reagle',1950,2015),(2214628,'Melissa Bernstein',NULL,NULL),(2214893,'Melisa Wallack',NULL,NULL),(2214994,'Frida Bargo',NULL,NULL),(2215143,'Kiernan Shipka',1999,NULL),(2215447,'Johnny Simmons',1986,NULL),(2215969,'Kate Croser',NULL,NULL),(2216341,'Ian Quicke',NULL,NULL),(2216463,'Robert Ogden Barnum',NULL,NULL),(2216608,'Ramón Balenziaga',NULL,NULL),(2216628,'Ilija Trojanow',1965,NULL),(2216692,'Robert Kanigel',NULL,NULL),(2216949,'Nathalia Videla Peña',NULL,NULL),(2217213,'Tony Milano',NULL,NULL),(2217536,'Timo Lassy',NULL,NULL),(2217601,'Andrew Buchan',1979,NULL),(2218177,'Nat Bouman',NULL,NULL),(2218213,'Claudia Bassols',1979,NULL),(2218225,'Sierra Pettengill',NULL,NULL),(2218604,'Dree Hemingway',1987,NULL),(2218857,'Fabrício Boliveira',1982,NULL),(2218894,'Kagiso Kuypers',NULL,NULL),(2219317,'Bob Richards',NULL,NULL),(2219721,'Seth Reiss',NULL,NULL),(2221121,'David Alpert',NULL,NULL),(2221249,'Jason Spire',NULL,NULL),(2221724,'Shannon Murphy',NULL,NULL),(2221807,'Adam Kolbrenner',NULL,NULL),(2221815,'Conor McCaughan',NULL,NULL),(2222398,'Hubert Weiland',NULL,NULL),(2222628,'Wayne Marc Godfrey',1981,NULL),(2222743,'Caleb Steinmeyer',NULL,NULL),(2222768,'Moses Wolff',NULL,NULL),(2223296,'Alan Snow',NULL,NULL),(2223351,'Judit Góczán',NULL,NULL),(2223688,'Luillo Ruiz',NULL,NULL),(2223783,'Haifaa Al-Mansour',1974,NULL),(2223804,'William Jimeno',1967,NULL),(2224008,'Konstantinos Koutsoliotas',NULL,NULL),(2224077,'Tom Lofterud',NULL,NULL),(2224341,'Pilar Sánchez Díaz',NULL,NULL),(2224444,'Benjamin Charbit',NULL,NULL),(2224519,'Bernardo Badillo',1980,NULL),(2224861,'Danya Taymor',1988,NULL),(2224890,'Michael Bronner',NULL,NULL),(2225247,'Mac Cappuccino',NULL,NULL),(2225334,'Anders Walter',1978,NULL),(2225369,'Jennifer Lawrence',1990,NULL),(2225418,'John McLoughlin',1953,NULL),(2225545,'Tommy Caldwell',1978,NULL),(2225652,'Michael Diliberti',NULL,NULL),(2225884,'Staffan Övgård',NULL,NULL),(2226124,'Joan G. Robinson',NULL,NULL),(2226647,'Keith Merryman',NULL,NULL),(2226741,'Susan Burke',NULL,NULL),(2226753,'Chad Kultgen',NULL,NULL),(2226834,'Allison Jimeno',NULL,NULL),(2226970,'David A. Newman',NULL,NULL),(2227000,'Harry Hadden-Paton',1981,NULL),(2227142,'Nat Dykeman',NULL,NULL),(2227608,'Lucas Vidal',1984,NULL),(2227793,'John Rowley',NULL,NULL),(2228062,'Takahiro Satô',NULL,NULL),(2228167,'Shaun Sanghani',1980,NULL),(2228277,'Giambattista Basile',1566,1632),(2228329,'Paul Brennan',NULL,NULL),(2228449,'Fernando Libonati',NULL,NULL),(2228493,'Donna McLoughlin',NULL,NULL),(2228509,'Michal Shtamler',1978,NULL),(2228635,'Johann Hari',1979,NULL),(2228812,'Becca Kovacik',NULL,NULL),(2229059,'Sue Naegle',1969,NULL),(2229304,'Alan Siegel',NULL,NULL),(2229508,'Marc Provissiero',NULL,NULL),(2229726,'Joy Gorman Wettels',NULL,NULL),(2229743,'James Suskin',NULL,NULL),(2229798,'Charles D. King',NULL,NULL),(2229899,'Rick Berg',NULL,NULL),(2230729,'Glen Jensen',NULL,NULL),(2230737,'Jonathan Bowers',NULL,NULL),(2231310,'Beverly Lewis',NULL,NULL),(2231417,'Joel Zadak',NULL,NULL),(2231646,'Craig Jacobson',NULL,NULL),(2231779,'Alex Goldstone',NULL,NULL),(2231934,'Peter Kiernan',NULL,NULL),(2233031,'Laura Berwick',NULL,NULL),(2233127,'Grant Pierce Myers',1981,NULL),(2233310,'Matthew Mercer',1982,NULL),(2234254,'Dano Johnson',NULL,NULL),(2234558,'Omar Mustre',1973,NULL),(2234719,'David Chambille',NULL,NULL),(2234724,'David Foster Wallace',1962,2008),(2235721,'Ruth Wilson',1982,NULL),(2236481,'Hadar Galron',NULL,NULL),(2236560,'Mozhan Marnò',1980,NULL),(2236676,'Luc Bossi',NULL,NULL),(2236928,'Zane Pais',1993,NULL),(2237080,'Mary Theresa Archbold',NULL,NULL),(2237380,'Erica Huang',1997,NULL),(2237557,'Robyn Snyder',NULL,NULL),(2238342,'Isis Valverde',1987,NULL),(2238569,'Tadayoshi Yamamuro',NULL,NULL),(2238722,'Tom Fernández',NULL,NULL),(2238751,'Trevor Yuile',NULL,NULL),(2239151,'G.P. Taylor',1961,NULL),(2239581,'Gabriel Ripstein',NULL,NULL),(2239702,'Katherine Waterston',1980,NULL),(2240039,'Heather Surdukan',NULL,NULL),(2240346,'Kodi Smit-McPhee',1996,NULL),(2240551,'Elizabeth A. Bell',NULL,NULL),(2240723,'Julia Bloch',NULL,NULL),(2240960,'Christopher Donlon',NULL,NULL),(2240997,'Prashantt Guptha',1982,NULL),(2241067,'Lynn Varley',1958,NULL),(2241443,'Rustin Cerveny',1977,NULL),(2241512,'Sterling Knight',1989,NULL),(2241646,'Anita Lee',NULL,NULL),(2242151,'Chris Roe',NULL,NULL),(2242399,'Cristela Alonzo',1979,NULL),(2242451,'Mika Ninagawa',1972,NULL),(2242713,'Alex Theurer',NULL,NULL),(2242817,'Samantha Housman',NULL,NULL),(2242829,'David Sheldon-Hicks',NULL,NULL),(2242949,'Ken Sugimori',NULL,NULL),(2244089,'Henri Cueco',1929,2017),(2244094,'Jasminka Vukcevic',NULL,NULL),(2244125,'Mike Curtis',NULL,NULL),(2244205,'Léa Seydoux',1985,NULL),(2244288,'Marie Ilene',NULL,NULL),(2244426,'Brandon James',NULL,NULL),(2244438,'John Aglialoro',NULL,NULL),(2244498,'Brooklyn Chang',NULL,NULL),(2244594,'Ben Demaree',NULL,NULL),(2244662,'Jason Dubin',NULL,NULL),(2244793,'Aiden Pompey',NULL,NULL),(2244980,'Karl Gajdusek',1968,NULL),(2245192,'Irina Potapenko',1986,NULL),(2245380,'Philip Reeve',1966,NULL),(2245654,'Luís Urbano',NULL,NULL),(2245673,'Soufiane Guerrab',1987,NULL),(2245756,'Jamie Stein',NULL,NULL),(2245768,'Mátyás Fekete',1983,NULL),(2246282,'Kengo Kôra',1987,NULL),(2246549,'Ron Dulin',NULL,NULL),(2246698,'Halli Cauthery',1976,NULL),(2246840,'Natalia Wojcik',1995,NULL),(2247061,'Tonia Mishiali',NULL,NULL),(2247245,'Haley Bennett',1988,NULL),(2247815,'Adolfo Blanco',NULL,NULL),(2247998,'Jérémie Fajner',NULL,NULL),(2248084,'Paul Neinstein',NULL,NULL),(2248149,'Isaiah Mustafa',1974,NULL),(2248793,'Carey Nelson Burch',NULL,NULL),(2248832,'Jennifer Davisson',NULL,NULL),(2248864,'Ashwin Rajan',NULL,NULL),(2248890,'Sabine Moser',NULL,NULL),(2248924,'Thor Bradwell',NULL,NULL),(2249069,'Kato Maes',NULL,NULL),(2249074,'Jason Barrett',NULL,NULL),(2249135,'Gil Aglaure',NULL,NULL),(2249185,'Matt DeRoss',NULL,NULL),(2249410,'Justin L. Levine',NULL,NULL),(2249435,'Jim Meenaghan',NULL,NULL),(2249488,'Eddie Vaisman',NULL,NULL),(2249752,'Jillian Apfelbaum',NULL,NULL),(2249759,'Jeff Morrone',NULL,NULL),(2249828,'Jesse Hara',NULL,NULL),(2250139,'Bill Holderman',NULL,NULL),(2250256,'Jordan Wynn',NULL,NULL),(2250407,'Britton Rizzio',NULL,NULL),(2250789,'Couper Samuelson',1979,NULL),(2250917,'Nick Thurlow',NULL,NULL),(2250929,'Maria Ekerhovd',1975,NULL),(2250990,'Kevin Iwashina',NULL,NULL),(2251003,'Laura Rister',NULL,NULL),(2251234,'Aniruddh Pandit',NULL,NULL),(2251461,'François Flamand',NULL,NULL),(2251559,'Bard Dorros',NULL,NULL),(2251731,'Aya Cash',1982,NULL),(2251763,'Meggie McFadden',1984,NULL),(2251828,'John Wate',NULL,NULL),(2251846,'Joanna Kulig',1982,NULL),(2251854,'Katie Wech',NULL,NULL),(2251947,'Marcel Langenegger',NULL,NULL),(2252124,'Dan Farah',1979,NULL),(2252386,'Brendan Bellomo',NULL,NULL),(2252414,'Tyler Hisel',NULL,NULL),(2253071,'Charlie Tahan',1998,NULL),(2253666,'Josh Folan',NULL,NULL),(2253799,'Limara Meneses',NULL,NULL),(2253821,'Adeel Akhtar',1980,NULL),(2253866,'Kwame Anthony Appiah',1954,NULL),(2254074,'Bella Thorne',1997,NULL),(2254846,'Ian Martin',1953,NULL),(2254920,'Dan Eckman',1984,NULL),(2255267,'Sebastià Sorribas',1928,2007),(2255271,'Andrew Lewis Caldwell',1989,NULL),(2255441,'Cuyle Carvin',NULL,NULL),(2255617,'Ilias Addab',1989,NULL),(2255631,'Dan Swimer',NULL,NULL),(2255696,'Rikizou Kayano',NULL,NULL),(2255776,'Meghan Gambling',NULL,NULL),(2255973,'Donald Glover',1983,NULL),(2256017,'David Lyons',1976,NULL),(2256599,'Jérémie Duvall',1993,NULL),(2256841,'Andreas Bradler',NULL,NULL),(2257177,'Matthew Rogers',NULL,NULL),(2257207,'Daniel Kaluuya',1989,NULL),(2257360,'Daniel-Konrad Cooper',NULL,NULL),(2257388,'Dominic Dierkes',1984,NULL),(2258164,'Nazanin Boniadi',1980,NULL),(2258705,'Chi-Ling Lin',1974,NULL),(2258859,'Neal E. Fischer',1985,NULL),(2258931,'Danielle Robinson',NULL,NULL),(2259350,'Adam Saunders',NULL,NULL),(2259451,'Ian Mackenzie Jeffers',NULL,NULL),(2259913,'Xalam',NULL,NULL),(2260245,'Liz Bradley',NULL,NULL),(2260417,'Raymond Pak-Ming Wong',1946,NULL),(2260618,'Bryan Koss',NULL,NULL),(2260751,'Sally El Hosaini',1976,NULL),(2260759,'Michael Lloyd Green',NULL,NULL),(2260851,'Bill Raden',NULL,NULL),(2260872,'Farhad Samji',1974,NULL),(2261190,'Andrew Spence',NULL,NULL),(2261214,'Jeff Culotta',NULL,NULL),(2261303,'Jeremy L Kotin',1984,NULL),(2261711,'Enma Maekawa',NULL,NULL),(2261921,'Sue Walsh',NULL,NULL),(2262265,'Sarah Glendening',1982,NULL),(2262509,'Steven Rales',1951,NULL),(2262601,'Yôko Mure',NULL,NULL),(2262799,'Tim Phillips',NULL,NULL),(2263115,'Raini Rodriguez',1993,NULL),(2263260,'Jack Tarling',NULL,NULL),(2263593,'Ruben Sebban',NULL,NULL),(2263655,'Chelsea Lopez',NULL,NULL),(2263704,'Willie Hunt',NULL,NULL),(2263726,'Kazuo Sakai',NULL,NULL),(2264155,'Irv Johnson',NULL,NULL),(2264184,'Elissa Knight',1975,NULL),(2264294,'Suzanne Ramsey',NULL,NULL),(2264541,'Lena Schömann',NULL,NULL),(2264706,'Jessica Lindsey',1978,NULL),(2264778,'Barry Hall',NULL,NULL),(2265052,'Dan Berridge',NULL,NULL),(2265157,'Isabelle Fuhrman',1997,NULL),(2265326,'Julian Loyola',NULL,NULL),(2265834,'Roger Príncep',1998,NULL),(2266323,'Jose Balido',NULL,NULL),(2266689,'Arnaldur Indriðason',NULL,NULL),(2267086,'Jonathan Tropper',1970,NULL),(2267102,'Jen Smolka',NULL,NULL),(2267606,'Luis Fuentès Jr.',NULL,NULL),(2267721,'Maureen Medved',NULL,NULL),(2267820,'J.T. Jackson',NULL,NULL),(2267906,'Brian Bascle',NULL,NULL),(2267950,'Luke Kelly',1986,NULL),(2269188,'Ahd',1980,NULL),(2269668,'Susanne Ocklitz',NULL,NULL),(2270016,'Laura Wiggins',1988,NULL),(2270022,'Keiichi Ishiyama',NULL,NULL),(2270541,'Go Ara',1990,NULL),(2270787,'Timo Descamps',1986,NULL),(2270935,'A.J. Edwards',NULL,NULL),(2270979,'Nicole Perlman',1981,NULL),(2271261,'Jason Cope',NULL,NULL),(2271939,'Brian Kavanaugh-Jones',NULL,NULL),(2272242,'Catherine De Léan',NULL,NULL),(2272274,'Jeffrey Coghlan',NULL,NULL),(2272401,'Leiva',1980,NULL),(2272408,'Ned Vizzini',1981,2013),(2272537,'Matthew Plouffe',NULL,NULL),(2272572,'India Osborne',NULL,NULL),(2272628,'D.C. Pierson',NULL,NULL),(2272810,'Emmanuel D\'Orlando',NULL,NULL),(2272926,'Lisa Langseth',NULL,NULL),(2272995,'Paul Parmar',NULL,NULL),(2273444,'Henry Jackman',1974,NULL),(2273482,'Chelsea Barnard',NULL,NULL),(2273734,'Andreas Goralczyk',NULL,NULL),(2273775,'Rolf Kristian Larsen',1983,NULL),(2273799,'Pihla Viitala',1982,NULL),(2273984,'Francis Benhamou',NULL,NULL),(2274042,'Marc-Antoine Robert',NULL,NULL),(2274053,'Joseph Abrams',NULL,NULL),(2274191,'Rotaria',NULL,NULL),(2274196,'Pepijn Zwanenberg',NULL,NULL),(2274219,'Ryan Zacarias',NULL,NULL),(2274369,'Olivia Stambouliah',1982,NULL),(2274436,'Grégory Bernard',NULL,NULL),(2274539,'Noa Raban',NULL,NULL),(2274598,'Jennifer Niven',NULL,NULL),(2274606,'Bassam Kurdali',NULL,NULL),(2274768,'Ángel Tavira',1924,2008),(2274847,'Lauren Ash',1983,NULL),(2275041,'Matthew Porterfield',1977,NULL),(2275259,'Mats Grorud',1976,NULL),(2275305,'Kunio Kawakami',NULL,NULL),(2275628,'Nikol Leidman',NULL,NULL),(2275824,'Viktoria Winge',1980,NULL),(2275877,'Xavier Rigault',NULL,NULL),(2276048,'Rachel Connors',NULL,NULL),(2276130,'Amy McKenna',NULL,NULL),(2276340,'Teodor Corban',1957,2023),(2276540,'Martin Sundland',NULL,NULL),(2276613,'Jan Morgenstern',NULL,NULL),(2276650,'Espen Horn',NULL,NULL),(2276729,'Michael Mitnick',NULL,NULL),(2276741,'Minori Chihara',1980,NULL),(2276927,'Ted Speaker',NULL,NULL),(2277058,'Ann Hagemann',NULL,NULL),(2277061,'Jean-Marc Rudnicki',NULL,NULL),(2277597,'Chul-hyun Baek',NULL,NULL),(2277869,'Marjane Satrapi',1969,NULL),(2277884,'Emma Kinane',1966,NULL),(2278168,'Juliette Bonass',1982,NULL),(2278184,'Yannick Dahan',NULL,NULL),(2278225,'Ton Roosendaal',NULL,NULL),(2278522,'Saadet Aksoy',1983,NULL),(2278537,'Michael Mohan',NULL,NULL),(2278896,'Merritt Patterson',NULL,NULL),(2278951,'Ross Jacobson',NULL,NULL),(2279247,'John Harlan Kim',1993,NULL),(2279345,'Monika Casey',NULL,NULL),(2279441,'Philip Koch',1982,NULL),(2279930,'Ben C. Lucas',NULL,NULL),(2279940,'Taylor Schilling',1984,NULL),(2280204,'Chase Fein',1987,NULL),(2280329,'Alejandra Adame',1981,NULL),(2280521,'Winter Williams',NULL,NULL),(2280850,'Shane Morris',NULL,NULL),(2281077,'Jean-Luc Bonefacino',NULL,NULL),(2281292,'Rana Daggubati',1984,NULL),(2281587,'Jo Bamford',NULL,NULL),(2281849,'Karrie Cox',NULL,NULL),(2281884,'Jeff Grace',NULL,NULL),(2282177,'Justin Simien',NULL,NULL),(2282254,'Joshua Mikel',1984,NULL),(2282263,'Flip Kowlier',1976,NULL),(2282280,'Millionaire',NULL,NULL),(2282379,'Yayo Guridi',NULL,NULL),(2282414,'Paul V. Seetachitt',NULL,NULL),(2282696,'Tomoki Kyôda',NULL,NULL),(2282967,'Eddie Borey',NULL,NULL),(2283137,'Daniele Tate Melia',NULL,NULL),(2283317,'Go Shiina',NULL,NULL),(2283738,'Saar Hendelman',NULL,NULL),(2284226,'Bradford Young',1977,NULL),(2284321,'Samuthirakani',1973,NULL),(2284377,'Allison Schroeder',NULL,NULL),(2284422,'Eurydice Gysel',NULL,NULL),(2284440,'Matthew T. Price',NULL,NULL),(2284484,'Gareth Edwards',1975,NULL),(2284726,'Morgan Peter Brown',NULL,NULL),(2284889,'Nikki Blonsky',1988,NULL),(2284891,'Jurga Jutaite',NULL,NULL),(2284961,'Eleanor Wyld',1989,NULL),(2284995,'Peter Tomasi',NULL,NULL),(2285006,'Jacques Sotty',NULL,NULL),(2285209,'Anthony Fankhauser',NULL,NULL),(2285536,'Anthony Maras',NULL,NULL),(2285577,'Eric Hailey',NULL,2020),(2285844,'Inma Cuesta',1980,NULL),(2286030,'Kozue Kananiwa',NULL,NULL),(2286314,'Stephen Dypiangco',1979,NULL),(2286337,'Itay Gross',NULL,NULL),(2286442,'David Ebershoff',1969,NULL),(2286806,'Mark Bradshaw',NULL,NULL),(2286969,'Adam Lawson',NULL,NULL),(2287168,'Dan Gregor',NULL,NULL),(2287411,'Tommy Joyner',NULL,NULL),(2287544,'Rafael Katz',NULL,NULL),(2287772,'Aniruddha Roy Chowdhury',1965,NULL),(2287777,'Soman Chainani',NULL,NULL),(2288220,'Terje Strømstad',1979,NULL),(2288376,'Louis-Paul Desanges',NULL,NULL),(2288614,'Erica Oyama',1981,NULL),(2288625,'Stephanie Bishop',1964,NULL),(2288699,'Peter Gjellerup Koch',NULL,NULL),(2288829,'London Clark',NULL,NULL),(2289580,'Sylvestre Dedise',NULL,NULL),(2289771,'Myd',NULL,NULL),(2289780,'Laura Adkin',1984,NULL),(2289791,'Zivile Gallego',1977,NULL),(2289851,'Darren Morze',NULL,NULL),(2289860,'Juliano Dornelles',NULL,NULL),(2290090,'Cláudia da Natividade',NULL,NULL),(2290205,'Cyprien Vial',1979,NULL),(2290706,'Chris Charles',1983,NULL),(2290733,'Arielle Brachfeld',1987,NULL),(2290954,'Hao Qin',1979,NULL),(2291162,'Cody Ryder',NULL,NULL),(2291582,'Patrick Watson',NULL,NULL),(2292141,'Mithun Gangopadhyay',1981,NULL),(2292548,'William DeMeritt',1977,NULL),(2292661,'Zoe Margaret Colletti',2001,NULL),(2292894,'Rick Riordan',1964,NULL),(2293059,'Chris Leggett',NULL,NULL),(2293201,'Marcos Jorge',NULL,NULL),(2293530,'Tarquin Glass',NULL,NULL),(2294083,'Oksana Bychkova',1972,NULL),(2294243,'Rebecca Zlotowski',1980,NULL),(2294487,'Gail Simone',1974,NULL),(2295540,'Natalie Morales',NULL,NULL),(2295590,'Kevin Guthrie',NULL,NULL),(2295691,'Markus Zusak',NULL,NULL),(2295810,'Jessie Henderson',NULL,NULL),(2296072,'John Robert Wood',NULL,NULL),(2296528,'Jon Erwin',NULL,NULL),(2296884,'Tim Disbrow',1987,NULL),(2296986,'Rafael Gomes',NULL,NULL),(2297067,'Charlotte Frogner',1981,NULL),(2297183,'Stieg Larsson',1954,2004),(2297708,'Christopher Dane',NULL,NULL),(2297889,'Nils d\'Aulaire',NULL,NULL),(2297989,'Jameel Khoury',1980,NULL),(2298016,'Misha Gabriel Hamilton',1987,NULL),(2298027,'Rashaana Shah',NULL,NULL),(2298096,'Paul Webb',NULL,NULL),(2298264,'Harvey Mason Jr.',1968,NULL),(2298416,'Haik Naltchayan',NULL,NULL),(2298502,'Gary Dean Simpson',NULL,NULL),(2299103,'Eric Choronzy',1985,NULL),(2299231,'Kira Buckland',1987,NULL),(2299367,'Caroline Schlüter',1979,NULL),(2299471,'David Nerlich',NULL,NULL),(2299609,'Michael Scott',NULL,NULL),(2299669,'Zie Souwand',NULL,NULL),(2299825,'Ileana D\'Cruz',1987,NULL),(2300000,'Wendelin Van Draanen',1965,NULL),(2300570,'J.D. Dillard',NULL,NULL),(2301055,'Chuck Beaver',NULL,NULL),(2301213,'Brant Daugherty',1985,NULL),(2301412,'Justin Martinez',NULL,NULL),(2301427,'Leah Lewis',1996,NULL),(2301854,'Vincent Giovagnoli',NULL,NULL),(2301950,'Dakota Blue Richards',1994,NULL),(2302134,'Lawrence Grey',NULL,NULL),(2302156,'Rosie Alison',NULL,NULL),(2302240,'Braden Aftergood',NULL,NULL),(2302582,'Jefferson Dutton',1983,NULL),(2303301,'Zev Foreman',NULL,NULL),(2303385,'Brendan Bragg',NULL,NULL),(2303963,'Byung-seo Kim',NULL,NULL),(2304008,'Plan B',1983,NULL),(2304017,'Lauren Montgomery',1980,NULL),(2304468,'David Guilmette',NULL,NULL),(2304645,'Adama Bila',NULL,NULL),(2304675,'Lulu Wang',1983,NULL),(2304722,'Charlyne Yi',1986,NULL),(2304786,'Christine T. Berg',NULL,NULL),(2304806,'Chris Lutkin',NULL,NULL),(2304996,'Edward Walson',NULL,NULL),(2305072,'Aleksandr Manotskov',NULL,NULL),(2305414,'Tom Eagles',NULL,NULL),(2305431,'Oren Peli',NULL,NULL),(2305781,'Natalya Mokritskaya',1969,NULL),(2306119,'Peter Boggia',NULL,NULL),(2306260,'Stella Johnson',NULL,NULL),(2306331,'Sean Macaulay',NULL,NULL),(2306354,'Diego Stocco',NULL,NULL),(2306906,'Maura Anderson',1986,NULL),(2306975,'Felicity Ward',NULL,NULL),(2307035,'Taeko Asano',NULL,NULL),(2307111,'Benjamin Speed',1979,NULL),(2307199,'Cindy Nelson',NULL,NULL),(2307279,'Ayelet Waldman',1964,NULL),(2307373,'Marion Doussot',NULL,NULL),(2307392,'Elysée Rouamba',NULL,NULL),(2307733,'Mónika Mécs',1967,NULL),(2307949,'Josh Greenbaum',NULL,NULL),(2308166,'Nina Pearce',NULL,NULL),(2308578,'Alexandru Potocean',1984,NULL),(2308774,'Destin Daniel Cretton',1978,NULL),(2308894,'John LeBec',NULL,NULL),(2309430,'Cory Goodman',NULL,NULL),(2309496,'Gregory Weidman',NULL,NULL),(2309517,'Armie Hammer',1986,NULL),(2309894,'Tamara Chestna',NULL,NULL),(2310115,'Chia-Lu Chang',1970,NULL),(2310242,'Mimi Loftus',NULL,NULL),(2310286,'Aleksandr Andryushchenko',NULL,NULL),(2310452,'Uros Milovanovic',1992,NULL),(2310589,'Kentucker Audley',1981,NULL),(2310700,'Romain Choay',NULL,NULL),(2311134,'Steve Lopez',NULL,NULL),(2311248,'Diana Trujillo',NULL,NULL),(2311925,'Sarah Reardon',NULL,NULL),(2312057,'Rodrigue Ouattara',NULL,NULL),(2312345,'James Wolk',1985,NULL),(2312358,'Guillermo Barrientos',1985,NULL),(2312424,'Shing-Fung Cheung',NULL,NULL),(2312458,'Kayla Emter',NULL,NULL),(2312828,'Min-Woo Hyung',NULL,NULL),(2312933,'Clément Cogitore',1983,NULL),(2313011,'Mia Salsi',NULL,NULL),(2313013,'J.J. Jia',1982,NULL),(2313103,'Rebel Wilson',1980,NULL),(2313209,'Carla-Rae',NULL,NULL),(2313241,'John Manus Dougherty Sr.',1885,NULL),(2313946,'John Grogan',1957,NULL),(2314596,'Maia Mitchell',1993,NULL),(2314614,'Cleo Massey',1993,NULL),(2315332,'Ken Hui',NULL,NULL),(2315378,'Jake Siegel',NULL,NULL),(2315446,'Natalia Anderson',NULL,NULL),(2316017,'Mickey Sumner',1984,NULL),(2316186,'Brett Jutkiewicz',NULL,NULL),(2316340,'Jonathan Nation',NULL,NULL),(2316415,'Verne Mattson',NULL,NULL),(2316589,'Kim Carroll',1970,NULL),(2316907,'Yasmine Al Massri',1978,NULL),(2317082,'Tom Pabst',NULL,NULL),(2317224,'Jean-Jacques Rausin',NULL,NULL),(2317782,'Jamie Timony',1987,NULL),(2317792,'Francesca Gasteen',NULL,NULL),(2318089,'Kate Siegel',1982,NULL),(2318133,'Sarah Siegel-Magness',NULL,NULL),(2318256,'Nicolás Celis',NULL,NULL),(2318355,'Gisèle Aouad',NULL,2019),(2318723,'Håkon Liu',1975,2017),(2318865,'Andres Boulton',NULL,NULL),(2319296,'José Ignacio Arrufat',NULL,NULL),(2319347,'Miguel Bunster',1979,NULL),(2319359,'Maricarmen Marín',NULL,NULL),(2319441,'Ivan Madeo',NULL,NULL),(2319871,'Anna Camp',1982,NULL),(2320164,'Vik Sharma',NULL,NULL),(2320276,'Caytha Jentis',NULL,NULL),(2320332,'John Orrichio',NULL,NULL),(2320334,'Jennifer Batter',NULL,NULL),(2320614,'Joanna Moukarzel',NULL,NULL),(2320615,'Danny Grunes',NULL,NULL),(2320658,'Don Hall',1969,NULL),(2320725,'Ethan Spaulding',NULL,NULL),(2321796,'Natxo López',1976,NULL),(2321850,'Annika Rogell',NULL,NULL),(2322192,'Brett Dier',1990,NULL),(2322275,'Geneviève Luciani',NULL,NULL),(2322351,'Odd-Magnus Williamson',1980,NULL),(2322467,'Christina Hecke',1979,NULL),(2322617,'Jasmeet K Reen',NULL,NULL),(2322853,'Claire Holt',1988,NULL),(2323361,'Aslihan Unaldi',NULL,NULL),(2323489,'Hiroki Suzuki',NULL,NULL),(2323821,'Tom Westin',NULL,NULL),(2323845,'Angelic Zambrana',NULL,NULL),(2324235,'Kanji Wakabayashi',1972,NULL),(2324802,'Jun Naito',NULL,NULL),(2325018,'Tang Wei',1979,NULL),(2325094,'Lauren Craniotes',NULL,NULL),(2325211,'Ken Kaufman',NULL,NULL),(2325213,'E. Quincy Sloan',NULL,NULL),(2325301,'Michelle Krumm',NULL,NULL),(2325393,'Zachary Gordon',1998,NULL),(2325476,'Valerie Schaer Nathanson',NULL,NULL),(2325586,'Giampaolo Letta',1966,NULL),(2325978,'Florian Eder',NULL,NULL),(2326155,'Betsy Morris',NULL,NULL),(2326353,'Jake Goldberg',NULL,NULL),(2326407,'Anna Rose Holmer',NULL,NULL),(2326419,'Kelly Moss',NULL,NULL),(2326897,'Nick Thune',1979,NULL),(2326979,'Larysa Kondracki',NULL,NULL),(2327099,'Isaac Klausner',NULL,NULL),(2327205,'Arne Sierens',NULL,NULL),(2327951,'Jason Geter',NULL,NULL),(2328292,'Leandro Aste',NULL,NULL),(2328309,'Anthony Bretti',NULL,NULL),(2328765,'Shamim Sarif',1969,NULL),(2328867,'Masao Shimizu',NULL,NULL),(2329106,'Nadim Cheikhrouha',NULL,NULL),(2329165,'Kris Pearn',NULL,NULL),(2329247,'Leanna Spear',NULL,NULL),(2329727,'Richard John Taylor',1985,NULL),(2330117,'Idit Dvir',NULL,NULL),(2330943,'Shinichi Chiba',NULL,NULL),(2331000,'Radhika Apte',1985,NULL),(2331001,'Anjum Rizvi',NULL,NULL),(2331079,'Patrice Nezan',NULL,NULL),(2331154,'Lisa Mintz',NULL,NULL),(2331222,'David Lloyd',1950,NULL),(2331273,'Nina Zanjani',1981,NULL),(2331643,'Hanan Kattan',NULL,NULL),(2331720,'Joe Wong',NULL,NULL),(2331729,'Adam M. Weber',NULL,NULL),(2331786,'David Atrakchi',NULL,NULL),(2332343,'Kristen Quintrall',1984,NULL),(2332735,'Kenji Horikawa',NULL,NULL),(2332952,'Burk Sharpless',NULL,NULL),(2333751,'Stephen Goss',NULL,NULL),(2334452,'Joseph Myles Edelson',NULL,NULL),(2334720,'Hamsa Nandini',1984,NULL),(2334765,'Jeroen Perceval',1978,NULL),(2334994,'Landon Liboiron',NULL,NULL),(2335176,'John Swon',NULL,NULL),(2335279,'Clayton Stocker Myers',NULL,NULL),(2336073,'Susan Butler',NULL,NULL),(2336135,'Kendall Ryan Sanders',1997,NULL),(2336612,'Anatol Nitschke',NULL,NULL),(2336891,'Deidra Edwards',NULL,NULL),(2336905,'Cassidy Freeman',1982,NULL),(2336966,'Greta Lee',1983,NULL),(2337088,'Cameron Lamb',NULL,NULL),(2337269,'Jan Bultheel',NULL,NULL),(2337375,'Shaad Randhawa',1978,NULL),(2337393,'Greyson Chadwick',NULL,NULL),(2337556,'Cami Delavigne',NULL,NULL),(2337578,'Riisa Naka',1989,NULL),(2337967,'Mitsutaka Itakura',1976,NULL),(2339071,'Benji Schwimmer',1984,NULL),(2339372,'Tony Oberstar',1987,NULL),(2339680,'Nick Nevern',1980,NULL),(2339833,'Bernard Hunt',NULL,NULL),(2339975,'Park Shin-Hye',1990,NULL),(2340149,'Elizabeth Boller',NULL,NULL),(2340248,'Sasha Grey',1988,NULL),(2340360,'Rebecca Conroy',NULL,NULL),(2340423,'Chester Hastings',NULL,NULL),(2340891,'Jay McCarrol',NULL,NULL),(2341206,'Fabiula Nascimento',1978,NULL),(2341280,'Benjamin Forster',NULL,NULL),(2341944,'Julian Wass',1981,NULL),(2342088,'Mark Lund',NULL,NULL),(2342288,'Gabriela Rodriguez',NULL,NULL),(2342540,'Christian Long',1981,NULL),(2342617,'Lily Alejandra',NULL,NULL),(2343300,'Sofie Hamilton',1987,NULL),(2344310,'Sinqua Walls',NULL,NULL),(2344778,'Sheila Pye',NULL,NULL),(2344826,'Daniel Patterson',NULL,NULL),(2345104,'Michelle Buteau',1977,NULL),(2345218,'Carolyn Combs',NULL,NULL),(2345290,'Kiyoshi Yoshida',1964,NULL),(2345716,'Theresa Guleserian',NULL,NULL),(2345856,'Eli Goree',NULL,NULL),(2346032,'Virgílio Almeida',NULL,NULL),(2346199,'Eric Gold',NULL,NULL),(2347031,'Michael Wormser',NULL,NULL),(2347132,'Isolda Dychauk',1993,NULL),(2347163,'Kiran Pallegadda',NULL,NULL),(2347373,'Andy Mitton',NULL,NULL),(2347861,'Masaki Okada',1989,NULL),(2347976,'Michael B. Jeter',NULL,NULL),(2348067,'Tanya Van Tonder',NULL,NULL),(2348101,'R.J. Hill',NULL,NULL),(2348263,'Sabrina B. Karine',1984,NULL),(2348627,'Lucas Hedges',1996,NULL),(2348646,'Huang Bo',1974,NULL),(2348808,'Nicole Gale Anderson',1990,NULL),(2349238,'Hitomi Ishihara',NULL,NULL),(2349281,'Andreas Nilsson',NULL,NULL),(2349310,'Jay Stern',NULL,NULL),(2349434,'Frederic Perrin Fredleew',NULL,NULL),(2349726,'Rico Rodriguez',1998,NULL),(2349958,'Tina Barkalaya',1972,NULL),(2350062,'Dan Luscombe',NULL,NULL),(2350239,'Jake Michie',NULL,NULL),(2350588,'Jason Celaya',NULL,NULL),(2350838,'Andrée Lumière',1894,1918),(2350847,'Tuva Hølmebakk',NULL,NULL),(2351246,'Demetria McKinney',1979,NULL),(2351283,'Christian Mercuri',NULL,NULL),(2351360,'Hamza Abu-Aiaash',NULL,NULL),(2351700,'Pablo Ferro Zivanovic',1974,NULL),(2351757,'Brian Hastings',NULL,NULL),(2351920,'Vicky Jewson',1985,NULL),(2352181,'Paul Hanson',NULL,NULL),(2352210,'Michael H. Weber',NULL,NULL),(2352307,'Tara Ansley',1988,NULL),(2352559,'Ju Ji-hoon',1982,NULL),(2352780,'Jennifer Lame',NULL,NULL),(2353045,'Glenn Miller',1974,NULL),(2353188,'Dagmar Weaver-Madsen',NULL,NULL),(2353331,'James Krishna Floyd',NULL,NULL),(2353338,'Sarah Megan Thomas',1979,NULL),(2353436,'Vijayendra Prasad',1942,NULL),(2353561,'Chuck Hogan',NULL,NULL),(2353702,'Lee Jin-Wook',NULL,NULL),(2353862,'Dev Patel',1990,NULL),(2354099,'Scott Neustadter',1977,NULL),(2354163,'Takanori Yoshimoto',NULL,NULL),(2354381,'Junichi Tanaka',NULL,NULL),(2355036,'Alex Berg',NULL,NULL),(2355206,'Dimitri Toscas',NULL,NULL),(2355322,'Richard J. Vialet',1984,NULL),(2355488,'Amina Dasmal',NULL,NULL),(2355581,'D.V.V. Danayya',1961,NULL),(2355635,'Ben Schwartz',1981,NULL),(2355692,'Yasuteru Iwase',NULL,NULL),(2356249,'Fiona Crombie',NULL,NULL),(2356402,'Stephen Harris',NULL,NULL),(2356614,'Jac Schaeffer',NULL,NULL),(2356811,'Brian Wiser',NULL,NULL),(2356851,'Jordan Patrick Smith',1989,NULL),(2356940,'Hannah Murray',1989,NULL),(2357539,'Dominic Tighe',NULL,NULL),(2357819,'Brian A. Miller',NULL,NULL),(2357847,'Taylor Swift',1989,NULL),(2358125,'Levi Wilson',NULL,NULL),(2358198,'Nathaniel Morgan',NULL,NULL),(2358356,'Sasha Jackson',1988,NULL),(2358388,'Emerson Brooks',NULL,NULL),(2358430,'Jack Carpenter',1984,NULL),(2358540,'Natalie Martinez',1984,NULL),(2358558,'Nick Weiss',NULL,NULL),(2359061,'Tyler L. Cook',NULL,NULL),(2359097,'Sahar Dolatshahi',1979,NULL),(2359677,'Tsuyoko Yoshido',NULL,NULL),(2360037,'Julio DePietro',NULL,NULL),(2360190,'J.T. Taube',NULL,NULL),(2360213,'Judi Barrett',NULL,NULL),(2360225,'Diane Crespo',NULL,NULL),(2360311,'Cecilia Frugiuele',NULL,NULL),(2360312,'Pier Paolo Piciarelli',NULL,NULL),(2360757,'Berry Meyerowitz',NULL,NULL),(2360861,'Ron Barrett',NULL,NULL),(2361509,'Guy Busick',1975,NULL),(2361520,'Francesco Melzi d\'Eril',NULL,NULL),(2361949,'Andrew Mogel',1974,NULL),(2361978,'Rae Brunton',NULL,NULL),(2362068,'Caity Lotz',1986,NULL),(2362244,'Amber Rose Revah',NULL,NULL),(2362326,'Tadamichi Kuribayashi',1891,1945),(2362652,'Rafal Fudalej',1985,NULL),(2362680,'Bethesda Brown',NULL,NULL),(2362716,'Darren Evans',NULL,NULL),(2363648,'Anthony Boys',NULL,NULL),(2364176,'Ruth Coady',NULL,NULL),(2364904,'Jennifer Yee McDevitt',NULL,NULL),(2365254,'Moon Molson',NULL,NULL),(2365361,'Phil Dorling',NULL,NULL),(2365515,'Sarah Maine',NULL,NULL),(2365527,'Marco Noyola',NULL,NULL),(2365710,'Patrick MacDonald',NULL,NULL),(2365811,'Betty Gilpin',1986,NULL),(2366012,'Matt Bettinelli-Olpin',1978,NULL),(2366126,'Gregório Duvivier',1986,NULL),(2366163,'Clay Reed',1981,NULL),(2366329,'Adam Gough',1982,NULL),(2366365,'Jennifer Handorf',NULL,NULL),(2366527,'Robert Cullen',NULL,NULL),(2366922,'Arvind Ethan David',NULL,NULL),(2366947,'Edwin A. Abbott',1838,1926),(2366974,'Raj Arjun',NULL,NULL),(2367203,'Iván Wild',NULL,NULL),(2367320,'Yuta Silverman',NULL,NULL),(2367718,'Chris Oleary',NULL,NULL),(2367823,'Brian Nolan',NULL,NULL),(2368087,'John McCarthy',NULL,NULL),(2368338,'Seren Yüce',1975,NULL),(2368458,'Michael Ray',NULL,NULL),(2368789,'Zoë Kravitz',1988,NULL),(2368981,'Christine Horne',1981,NULL),(2369260,'Hugh Skinner',1985,NULL),(2369390,'Armando Rosas',NULL,NULL),(2369580,'Carolo Ruiz',NULL,2022),(2369675,'Neil Garguilo',1982,NULL),(2369858,'Felipe Bragança',NULL,NULL),(2369949,'Whirimako Black',NULL,NULL),(2370090,'Michael Springate',NULL,NULL),(2370148,'Alethea Jones',NULL,NULL),(2370175,'Sven Jakob-Engelmann',NULL,NULL),(2370664,'Jörundur Ragnarsson',NULL,NULL),(2370700,'Cornelius Uliano',1985,NULL),(2370726,'Heyu Sheng',NULL,NULL),(2371104,'Naoji Hônokidani',NULL,NULL),(2371200,'Lauren Rose Lewis',NULL,NULL),(2371249,'Jonathan Deckter',1974,NULL),(2371460,'Samuel Deshors',NULL,NULL),(2371735,'Jessica Mauboy',1989,NULL),(2371802,'Thomas Kail',NULL,NULL),(2371958,'Andrew Corkin',1985,NULL),(2372335,'Alice Butaud',NULL,NULL),(2372412,'Garrett Clayton',1991,NULL),(2372991,'Leigh Davenport',NULL,NULL),(2373106,'John Geddes',NULL,NULL),(2373271,'Matthew Sand',NULL,NULL),(2373326,'Korosh Bozorgpour',NULL,NULL),(2373713,'Jesse Thomas Cook',NULL,NULL),(2373826,'Chris Brown',NULL,NULL),(2373827,'Rob Mayes',1984,NULL),(2373831,'Anthony Mendez',NULL,NULL),(2373989,'Bobby Naderi',NULL,NULL),(2374777,'Holger Eriksson',1979,NULL),(2374779,'Stephan Altman',NULL,NULL),(2374886,'Rupert Whitaker',NULL,NULL),(2374959,'Sarah Swick',NULL,NULL),(2375377,'Gerald Anderson',1989,NULL),(2375463,'Paul Downs Colaizzo',NULL,NULL),(2375531,'David Johnson',NULL,NULL),(2375643,'Yoann-Karl Whissell',NULL,NULL),(2375857,'Ron Chernow',NULL,NULL),(2376002,'Ali Bey Kayali',NULL,NULL),(2376327,'Olga Vasileva',NULL,NULL),(2376412,'Pamela Ford',NULL,NULL),(2376425,'Ona Casamiquela',NULL,NULL),(2376562,'Jesper Ganslandt',1978,NULL),(2376614,'Alexandre Bustillo',1975,NULL),(2376774,'John Prince',NULL,NULL),(2376877,'Cris Lopes',NULL,NULL),(2376938,'Michel Joelsas',1995,NULL),(2377373,'Asobi Seksu',NULL,NULL),(2377390,'Erik Enocksson',NULL,NULL),(2377436,'Anouk Whissell',NULL,NULL),(2377660,'Julien Maury',NULL,NULL),(2377750,'Anne Gregory',NULL,NULL),(2377903,'Lucy Boynton',1994,NULL),(2378491,'Peter Higginson',NULL,NULL),(2378914,'Advait Chandan',1987,NULL),(2379003,'Elit Iscan',1994,NULL),(2379144,'Tatsuhiko Takimoto',NULL,NULL),(2379216,'Jonathan Weisbrod',1990,NULL),(2379331,'François Simard',NULL,NULL),(2379528,'John Axel Eriksson',1978,NULL),(2379646,'Matthew Graham',NULL,NULL),(2381142,'Amy De Bhrún',1984,NULL),(2381407,'David Martínez',NULL,NULL),(2381451,'Stephanie Moore',NULL,NULL),(2381911,'Jason Lew',NULL,NULL),(2382268,'Philippe Mechelen',NULL,NULL),(2382272,'Axel Boman',NULL,NULL),(2382590,'Siouzana Melikian',NULL,NULL),(2382856,'Daniel Sheire',NULL,NULL),(2383250,'Logan Miller',1992,NULL),(2383312,'Natascha Kampusch',1988,NULL),(2383461,'Sara Maitland',1950,NULL),(2383584,'Sandro Ventura',1969,NULL),(2383615,'Sohrab Habibion',NULL,NULL),(2383797,'Kevin Rasel',NULL,NULL),(2384452,'Ezra Cooperstein',NULL,NULL),(2384596,'Hilary O\'Shaughnessy',NULL,NULL),(2384772,'Chris Collins',NULL,NULL),(2384784,'Jess Wu Calder',NULL,NULL),(2384953,'Jason Price',NULL,NULL),(2385360,'Steve Mazzaro',NULL,NULL),(2385426,'Sophia Shek',NULL,NULL),(2385616,'Ben Bayless',1972,NULL),(2385829,'Hallur Ingólfsson',NULL,NULL),(2385905,'T.S. Nowlin',NULL,NULL),(2385917,'Sanming Han',NULL,NULL),(2385935,'Anna Margaret Hollyman',NULL,NULL),(2385988,'Jody Mullins',1972,NULL),(2386123,'André Ramiro',1981,NULL),(2386140,'Michael Alban',NULL,NULL),(2386522,'Caroline Carter',1983,NULL),(2386524,'Sébastien Haguenauer',NULL,NULL),(2386605,'Victoria Guerra',1989,NULL),(2387156,'Daniël Bouquet',NULL,NULL),(2387806,'Emily Beecham',1984,NULL),(2388529,'Sune Martin',1968,NULL),(2388560,'Yui Shibata',NULL,NULL),(2389157,'Steven Walters',NULL,NULL),(2389463,'Bill Milner',1995,NULL),(2390011,'Mohd Syafie Naswip',NULL,NULL),(2390477,'Hugo Sélignac',NULL,NULL),(2390962,'Brent Kunkle',NULL,NULL),(2391026,'Bronagh Waugh',1982,NULL),(2391073,'Meng Zhang',NULL,NULL),(2391552,'Nobuhiro Doi',1964,NULL),(2391575,'David Michôd',NULL,NULL),(2392266,'Daisy Broom',NULL,NULL),(2392493,'Sharifah Aryana',NULL,NULL),(2392742,'Veronica Fruhbrodt',NULL,NULL),(2393054,'Christopher A. Smith',NULL,NULL),(2393111,'Dennis Kelly',NULL,NULL),(2393619,'Amanda Foreman',1968,NULL),(2393709,'Steven J. Berger',1985,NULL),(2393891,'Kathryn Kennedy Fenton',NULL,NULL),(2394211,'Stephen Hunter',1946,NULL),(2394494,'João Arrais',1995,NULL),(2394794,'Karen Gillan',1987,NULL),(2394916,'Daniela Gambaro',NULL,NULL),(2395325,'Austin Wintory',NULL,NULL),(2395586,'Christopher Mintz-Plasse',1989,NULL),(2395663,'Karen Brothers',NULL,NULL),(2395937,'Brooklyn Decker',1987,NULL),(2396007,'Jed Palmer',NULL,NULL),(2396645,'Simón de Santiago',NULL,NULL),(2397094,'Farrah Drabu',NULL,NULL),(2397168,'Matthew J. Malek',NULL,NULL),(2397756,'Seth Hoffman',NULL,NULL),(2397866,'Matt Shively',1990,NULL),(2397981,'Sia',1975,NULL),(2398005,'Duarte Gomes',1986,NULL),(2398362,'Chira Cassel',1982,NULL),(2398585,'Michael Jelenic',1977,NULL),(2398653,'Roy Wood Jr.',1978,NULL),(2398958,'Stacey Reiss',NULL,NULL),(2399032,'Asia Ortega',1995,NULL),(2399346,'Robert Sax',NULL,NULL),(2399383,'Annalise Basso',1998,NULL),(2399592,'Brion Hambel',1975,NULL),(2399763,'Isaac Sprintis',NULL,NULL),(2399856,'Joe Kelly',NULL,NULL),(2399862,'Aanand L. Rai',1971,NULL),(2399914,'Kelli Berglund',1996,NULL),(2400045,'Nina Dobrev',1989,NULL),(2400296,'Janina Fautz',1995,NULL),(2400418,'Richard Swingle',NULL,NULL),(2400429,'Cristian Chinen',NULL,NULL),(2400444,'F. Scott Frazier',NULL,NULL),(2400464,'Linds Edwards',NULL,NULL),(2400555,'Mel Eslyn',1983,NULL),(2400607,'Mina Fujii',1988,NULL),(2401009,'Rose Corr',NULL,NULL),(2401020,'Will Poulter',1993,NULL),(2401385,'Carissa Fowler',1988,NULL),(2401579,'Diana Almeida',1983,NULL),(2403193,'Ji-young Gong',NULL,NULL),(2403277,'Alden Ehrenreich',1989,NULL),(2403279,'Shannon Prynoski',NULL,NULL),(2403492,'Cornel Wilczek',NULL,NULL),(2404515,'Louise Blachère',1989,NULL),(2404839,'Caroline Vigneaux',NULL,NULL),(2405043,'Yûko Kakihara',NULL,NULL),(2405239,'Donna Woolfolk Cross',1947,NULL),(2405325,'George Carpenter',NULL,NULL),(2405489,'Yasushi Kawamura',NULL,NULL),(2405606,'Kevin Gates',1976,NULL),(2406154,'Daniel Ribeiro',1982,NULL),(2406475,'Sarah Finlay',NULL,NULL),(2406753,'Elaine Ehrlich',NULL,NULL),(2406892,'Ben Ketai',1982,NULL),(2406901,'Kou Nakagawa',NULL,NULL),(2407761,'Allison Paige',NULL,NULL),(2407784,'Audrey Simonaud',NULL,NULL),(2408218,'Hanna Lejonqvist',1980,NULL),(2408572,'Victoria Summer',NULL,NULL),(2408752,'Beatriz Asel',NULL,NULL),(2408930,'Michael G. Bartlett',1976,NULL),(2409153,'Michael Burgess',1984,NULL),(2409219,'Mark Waschke',1972,NULL),(2409312,'Agnès Caffin',NULL,NULL),(2409382,'Patrick Maley',NULL,NULL),(2409479,'Mikaela Hoover',1984,NULL),(2409631,'Yukio Katayama',NULL,NULL),(2409723,'Stefanie Butler',NULL,NULL),(2409783,'Tanner Cohen',NULL,NULL),(2409941,'Robert Isaacson',NULL,NULL),(2410070,'Mi-Joo Kim',NULL,NULL),(2410081,'Lok Man Leung',NULL,NULL),(2410311,'Dean Israelite',1984,NULL),(2410391,'Nushrratt Bharuccha',1985,NULL),(2410699,'Anna Moon',NULL,NULL),(2410774,'Suren M. Seron',1980,NULL),(2410872,'Alex Veitch',NULL,NULL),(2411120,'Sylvain Corbeil',NULL,NULL),(2411321,'D.J. Viola',NULL,NULL),(2411495,'Gary Shore',1981,NULL),(2411725,'Thomas Shepherd',NULL,NULL),(2411782,'Jenna Morganelli',NULL,NULL),(2411867,'Vic Rawlings',NULL,NULL),(2411911,'Beth O\'Neil',NULL,NULL),(2412370,'Jonas Hassen Khemiri',1978,NULL),(2412679,'Duke Stoughton',NULL,NULL),(2412823,'Kim Yoon-seok',1968,NULL),(2412997,'Alexander Morse',NULL,NULL),(2413038,'Kyrre Kvam',1976,NULL),(2413125,'Terrence Jenkins',1982,NULL),(2413197,'Ashley Rickards',1992,NULL),(2413403,'Alessandro Calza',1970,NULL),(2414185,'Rob Kennedy',1983,NULL),(2414228,'Julie Ryan',NULL,NULL),(2414361,'Elaine Niessner',1984,NULL),(2414404,'Vedat Erincin',1957,NULL),(2414670,'Ádám Császi',NULL,NULL),(2414773,'Colin Campbell',NULL,NULL),(2415554,'Mohamed Akhzam',NULL,NULL),(2415604,'Mónica Del Carmen',1982,NULL),(2415936,'Barbara Shirvis',NULL,NULL),(2416169,'Lisa Saffer',NULL,NULL),(2416221,'Kentarô Shimazu',NULL,NULL),(2416507,'Bridey Elliott',1990,NULL),(2416660,'Eiichi Kamagata',NULL,NULL),(2416847,'Ali Ahn',NULL,NULL),(2417024,'Bryan Bockbrader',NULL,NULL),(2417108,'Joana de Verona',1989,NULL),(2417204,'Jason Aaron Goldberg',NULL,NULL),(2417783,'Lisa Kjerulff',NULL,NULL),(2417866,'David Barstow',1963,NULL),(2417959,'The Big Friendly Corporation',NULL,NULL),(2417960,'Fayssal Bazzi',NULL,NULL),(2418066,'John Aschenbrenner',NULL,NULL),(2418386,'Niksa Butijer',1978,NULL),(2418479,'José Luis Romeu',1984,NULL),(2418487,'Rajiv Chandrasekaran',NULL,NULL),(2418691,'Elizabeth Gilbert',1969,NULL),(2418852,'Kim Mattheson',NULL,NULL),(2419181,'Eszter Gyárfás',1978,NULL),(2419410,'Michiya Katô',NULL,NULL),(2419470,'Tyler Gillett',1982,NULL),(2419680,'Eung-ju Lee',1982,NULL),(2419804,'Michael Creber',NULL,NULL),(2419888,'Joram Letwory',NULL,NULL),(2419914,'Laurie Simmons',1949,NULL),(2420299,'Masao Teshima',NULL,NULL),(2420346,'Grace Dunham',1992,NULL),(2420356,'Davis Coombe',NULL,NULL),(2420926,'Lee Haugen',NULL,NULL),(2421004,'Lawrence Rothman',NULL,NULL),(2421049,'Bryan Schulz',NULL,NULL),(2421211,'Chris Coy',1986,NULL),(2421367,'Cody Christian',1995,NULL),(2421501,'Erica Procunier',NULL,NULL),(2421834,'Eric Chapus',NULL,NULL),(2422110,'Cliff Retallick',NULL,NULL),(2422238,'Christopher Mhina',NULL,NULL),(2422454,'Neal Holman',NULL,NULL),(2422752,'Clair Popkin',NULL,NULL),(2422977,'Tomohide Harada',NULL,NULL),(2423304,'Tim Lebbon',NULL,NULL),(2423358,'Tim Minchin',1975,NULL),(2423647,'Tom Williams',NULL,NULL),(2424406,'Satoshi Seno',NULL,NULL),(2424790,'Becky Sloviter',1977,NULL),(2425105,'Chandler Canterbury',1998,NULL),(2425150,'Nicolas Peufaillit',NULL,NULL),(2425176,'Raphael Elig',NULL,NULL),(2425283,'Ahmed Gabr',NULL,NULL),(2425775,'Shayne Topp',1991,NULL),(2425790,'Chris Pare',NULL,NULL),(2425842,'Bryce Dessner',NULL,NULL),(2426101,'Ronan Collins',NULL,NULL),(2426214,'Natsuki Kasa',NULL,NULL),(2426419,'Andrew Sensenig',NULL,NULL),(2426541,'Evan Davies',NULL,NULL),(2426970,'Adam W. Rosen',NULL,NULL),(2427110,'Dale Wolfe',NULL,NULL),(2427683,'Chad Hobson',NULL,NULL),(2428050,'Ethan Amis',1998,NULL),(2428131,'Toby Bowman',NULL,NULL),(2428245,'André Holland',1979,NULL),(2428319,'Joel Lok',NULL,NULL),(2428413,'Jakob Diehl',NULL,NULL),(2428677,'Catherine Goldschmidt',NULL,NULL),(2428788,'Danielle Lilley',NULL,NULL),(2428830,'Ryan Thiessen',NULL,NULL),(2429015,'Chia-Yen Ko',1985,NULL),(2429051,'Tadashi Kuwabara',NULL,NULL),(2430826,'Angela Brunda',NULL,NULL),(2431017,'Pete Collins',NULL,NULL),(2431095,'Luke Piotrowski',NULL,NULL),(2431167,'Nicholas Tucci',1981,2020),(2431307,'Rick Stroud',NULL,NULL),(2431331,'Yû Koyanagi',1988,NULL),(2431359,'Greg Swinson',1979,NULL),(2431822,'M. Riley',NULL,NULL),(2432316,'Sandra Paduch',NULL,NULL),(2432604,'Stefano Lentini',1974,NULL),(2432662,'Sandrine Pinna',1987,NULL),(2432722,'Ethan Juan',1982,NULL),(2433030,'Adriane Daff',NULL,NULL),(2433382,'David Wiberg',NULL,NULL),(2433586,'Ira Goldberg',NULL,NULL),(2433722,'Stephen Chambers',NULL,NULL),(2433868,'Laquie T.N. Campbell',NULL,NULL),(2434358,'David Branson Smith',1984,NULL),(2434923,'Langley Perer',1981,NULL),(2435373,'Shannon McDowell',1971,NULL),(2435377,'Francesco Apice',NULL,NULL),(2435496,'Andrey Yakovlev',1971,NULL),(2435550,'Shaked Berenson',NULL,NULL),(2435579,'Kim Arnott',NULL,NULL),(2435600,'Arthur Pielli',NULL,NULL),(2435752,'The Newton Brothers',NULL,NULL),(2436061,'Mia Yi',NULL,NULL),(2436273,'Meghan McCarthy',NULL,NULL),(2436499,'Shane Harper',1993,NULL),(2436566,'Tyler Nilson',NULL,NULL),(2436626,'Shawn French',NULL,NULL),(2436744,'Eliot Laurence',NULL,NULL),(2437138,'Dylan Nelson',NULL,NULL),(2437361,'Cho Jin-woong',1976,NULL),(2437976,'Clare Floyd DeVries',NULL,NULL),(2438127,'Dav Pilkey',1966,NULL),(2438224,'Jukki Hanada',NULL,NULL),(2439111,'Dreama Walker',1986,NULL),(2439247,'Sam Jones',NULL,NULL),(2439425,'Lorelei Lee',1981,NULL),(2439643,'Ido Rosenblum',1976,NULL),(2439994,'Jocelin Donahue',NULL,NULL),(2440000,'Peter Sorg',NULL,NULL),(2440242,'Kim Uylenbroek',NULL,NULL),(2440398,'Yukie Kawamura',1986,NULL),(2440538,'José Luis Ucha',NULL,NULL),(2440587,'Joshua Zetumer',NULL,NULL),(2440627,'Seung-ryong Ryu',1970,NULL),(2440777,'Shevaun Kastl',1979,NULL),(2440805,'Mark S. Cartier',NULL,NULL),(2440893,'Jean-Marc Rochette',NULL,NULL),(2441210,'Chuck Blaum',NULL,NULL),(2441221,'Michael Simkin',NULL,NULL),(2441296,'Glenn Leyburn',NULL,NULL),(2441468,'Jacques Lob',1932,1990),(2441640,'Lyn Norfor',NULL,NULL),(2441699,'Graham Moore',1981,NULL),(2441763,'Cressida Cowell',NULL,NULL),(2442289,'Gina Carano',1982,NULL),(2442431,'Francisco Barreiro',NULL,NULL),(2442717,'Sara Butler',NULL,NULL),(2443438,'Hana Mae Lee',NULL,NULL),(2443562,'Erica Lee',NULL,NULL),(2443582,'Diana Napper',NULL,NULL),(2443600,'Lisa Barros D\'Sa',NULL,NULL),(2443758,'Nicola Peltz Beckham',1995,NULL),(2443797,'Lior Raz',1971,NULL),(2443844,'Akira Aoki',NULL,NULL),(2445082,'David Offner',NULL,NULL),(2445328,'Ingrid Bisu',1987,NULL),(2445382,'Paula Mae Schwartz',NULL,NULL),(2445956,'Chris Jones',NULL,NULL),(2446045,'Gustav Renker',1889,1967),(2446178,'Youngjoo Suh',NULL,NULL),(2446835,'David Choe',1976,NULL),(2446932,'Stacia Allen',NULL,NULL),(2447772,'Dallas Sonnier',NULL,NULL),(2447927,'Benjamin Forkner',NULL,NULL),(2448068,'James Harris',1982,NULL),(2448218,'Yûsuke Watanabe',NULL,NULL),(2448917,'Van Robichaux',NULL,NULL),(2449024,'Paul Edward-Francis',NULL,NULL),(2449480,'Meaghan Martin',1992,NULL),(2449810,'Jeff Hammond',NULL,NULL),(2450024,'Joshua Montcalm',NULL,NULL),(2450367,'Saunder Jurriaans',NULL,NULL),(2450453,'Hugo Guinness',1959,NULL),(2450477,'Eddy Moretti',1971,NULL),(2451061,'Ben Romans',1981,NULL),(2451401,'Maxwell Glick',NULL,NULL),(2451815,'Johannes Louis',NULL,NULL),(2451853,'Nora Smith',NULL,NULL),(2452327,'Ryan Ochoa',NULL,NULL),(2452347,'Melissa Halstrom',1983,NULL),(2452384,'Brett Donahue',NULL,NULL),(2452397,'Robert Mazur',NULL,NULL),(2452495,'Russell Dennis Lewis',NULL,NULL),(2452558,'Martin Sherwin',1937,2021),(2452967,'Carol Skilken',NULL,NULL),(2453508,'Irina Saulescu',NULL,NULL),(2453858,'Shayne Armstrong',1970,NULL),(2453962,'Dan Clifton',1987,NULL),(2454599,'Andrey Zolotarev',1982,NULL),(2454850,'Matthew Burgess',NULL,NULL),(2454994,'Bill Oberst Jr.',1965,NULL),(2455394,'Lorraine King',NULL,NULL),(2455594,'Nathan Lorch',1984,NULL),(2456350,'Jacob Browne',NULL,NULL),(2456657,'Eri Machimoto',NULL,NULL),(2457324,'David Risdahl',NULL,NULL),(2457436,'Thomas Loibl',1969,NULL),(2457439,'Scott Cummings',NULL,NULL),(2457923,'Mike O\'Driscoll',NULL,NULL),(2458358,'Sidney Iwanter',NULL,NULL),(2458644,'Pierre Duculot',NULL,NULL),(2458745,'Olaf Pyttlik',NULL,NULL),(2459150,'Anna Axster',NULL,NULL),(2459306,'Tatiana Rodríguez',NULL,NULL),(2459558,'Junpei Mizusaki',NULL,NULL),(2459770,'Bridget McManus',NULL,NULL),(2459898,'Tomás Alves',1989,NULL),(2460100,'Ashlynn Yennie',1985,NULL),(2460287,'Cassie Fliegel',1984,NULL),(2460473,'Jean-Jacques Neira',NULL,NULL),(2460649,'Tim Nardelli',NULL,NULL),(2460952,'Richard Elliot',1960,NULL),(2460996,'Eleonore Dailly',NULL,NULL),(2461013,'Kim Nielsen',NULL,NULL),(2461314,'Philippe Rouchier',NULL,NULL),(2461627,'Markéta Irglová',1988,NULL),(2462004,'Nobuhiko Okamoto',NULL,NULL),(2462031,'Adam Varney',1984,NULL),(2462346,'Maxime Delauney',1981,NULL),(2462594,'Alice Vial',1986,NULL),(2463438,'Kie Kitano',1991,NULL),(2463696,'Rick Malambri',1982,NULL),(2464261,'Necar Zadegan',1982,NULL),(2465403,'Nick Clark Windo',NULL,NULL),(2465833,'Claudio Giovannesi',1978,NULL),(2466457,'Ryan Ridley',NULL,NULL),(2466842,'Quinton Aaron',1984,NULL),(2467397,'Tau Maserumule',NULL,NULL),(2467764,'Michael Andres',NULL,NULL),(2468050,'Georgina Reilly',1986,NULL),(2468490,'Daniel Salomon',NULL,NULL),(2468729,'Mi Yang',1986,NULL),(2468782,'Arsher Ali',NULL,NULL),(2468967,'Joseph Trapanese',NULL,NULL),(2469366,'Sagarika Ghatge',1986,NULL),(2469515,'Bay Dariz',NULL,NULL),(2469871,'Eeva Putro',NULL,NULL),(2470175,'Daniel Coda',NULL,NULL),(2470629,'Anna Mae Wills',1982,NULL),(2470810,'John Fox',NULL,NULL),(2471028,'Jamie Mathieson',NULL,NULL),(2471372,'Michael Bassick',NULL,NULL),(2472051,'Amy Noble',NULL,NULL),(2472187,'Astrid Skumsrud Johansen',NULL,NULL),(2472482,'David Lawson Jr.',1981,NULL),(2472678,'Nobuyuki Fukumoto',1958,NULL),(2473426,'Mari Shimazaki',NULL,NULL),(2473652,'Lauren Mann',NULL,NULL),(2474010,'Catherine An',NULL,NULL),(2474064,'Cory Fernandez',NULL,NULL),(2474348,'Brody the Bear',NULL,NULL),(2474586,'Niamh Quinn',NULL,NULL),(2474998,'Trisha Echeverria',NULL,NULL),(2475067,'Felipe Salazar',NULL,NULL),(2475118,'Dan Romer',NULL,NULL),(2475348,'Takahiro Arimitsu',NULL,NULL),(2475355,'Kishore Lulla',NULL,NULL),(2475668,'Alexandra Taylor',NULL,NULL),(2475729,'Claudia Eisinger',1984,NULL),(2475803,'Justin Swain',NULL,NULL),(2476429,'Laurence Clerc',NULL,NULL),(2476624,'François Civil',1990,NULL),(2476665,'James V. Simpson',NULL,NULL),(2476978,'Wyatt Fenner',NULL,NULL),(2477197,'John Boyne',1971,NULL),(2477204,'Sebastian Pigott',1983,NULL),(2477337,'Christopher Bremus',1976,NULL),(2477891,'Gary Dauberman',NULL,NULL),(2477950,'Scott Borland',NULL,NULL),(2478108,'Sarah-Louise Tyler',NULL,NULL),(2478138,'Joanna Haartti',1979,NULL),(2478333,'Delroy Brown',NULL,NULL),(2478416,'Michael Hultquist',NULL,NULL),(2478512,'Bahareh Azimi',NULL,NULL),(2478608,'Gerard Hendrick',NULL,NULL),(2479100,'Eric Jager',NULL,NULL),(2480526,'Eric Bassett',NULL,NULL),(2480549,'An Nguyen',NULL,NULL),(2481860,'Jen W. Ray',NULL,NULL),(2481948,'Sini Anderson',NULL,NULL),(2481971,'Tom Skull',NULL,NULL),(2482088,'Tommy Wirkola',1979,NULL),(2482191,'Tiffany Mualem',NULL,NULL),(2482391,'Nora Arnezeder',1989,NULL),(2482481,'James C. Morris',NULL,NULL),(2482939,'Chris Borey',NULL,NULL),(2483108,'Alex Lipschultz',NULL,NULL),(2483129,'Charon R. Arnold',NULL,NULL),(2483574,'Bas Devos',1983,NULL),(2483965,'Dani Popescu',NULL,NULL),(2484916,'Andrea Seigel',NULL,NULL),(2488310,'Shin\'ichi Nakamura',NULL,NULL),(2488429,'Danielle Ryan',NULL,NULL),(2488761,'Anita Juka',NULL,NULL),(2488902,'M. dot Strange',NULL,NULL),(2489193,'Evan Daugherty',NULL,NULL),(2489588,'Kazuma Jinnouchi',NULL,NULL),(2489799,'Elisa Lasowski',NULL,NULL),(2490324,'Ginny Jones',NULL,NULL),(2490944,'Cory Booker',1969,NULL),(2492359,'Charlotte Ritchie',1989,NULL),(2492480,'Nicki Cortese',NULL,NULL),(2492819,'Rosie Huntington-Whiteley',1987,NULL),(2493084,'Tomas Evjen',1972,NULL),(2493260,'Janelle Momary',1977,NULL),(2494281,'Heather Puttock',NULL,NULL),(2494402,'Woo Jung-Kook',1974,NULL),(2495409,'Eric Bannat',NULL,NULL),(2495959,'Omar Rodriguez-Lopez',NULL,NULL),(2496301,'Shin\'ya Fukumatsu',NULL,NULL),(2496312,'Amara Karan',1984,NULL),(2497119,'Sapphire',1950,NULL),(2497348,'Urs Frey',1960,NULL),(2497357,'Fai-Young Chan',1968,NULL),(2497366,'Sarah Greene',1984,NULL),(2497546,'David F. Sandberg',1981,NULL),(2498092,'James Lawler',NULL,NULL),(2498184,'John Marsden',NULL,NULL),(2498449,'Anne-Renée Duhaime',NULL,NULL),(2498552,'Kim Yoo-jung',1999,NULL),(2498781,'Jessica Parker Kennedy',1984,NULL),(2498855,'Yorgos Lamprinos',NULL,NULL),(2499064,'Uzo Aduba',1981,NULL),(2499267,'Daniela Mazzucato',NULL,NULL),(2499386,'Yûgo Kanno',1977,NULL),(2500064,'Ha-na Yoo',NULL,NULL),(2500139,'Yasuyo Ogisu',NULL,NULL),(2500207,'Roberto Saviano',1979,NULL),(2500541,'Castille Landon',1991,NULL),(2500556,'Motoi Takahashi',NULL,NULL),(2501633,'Lena Dunham',1986,NULL),(2502023,'Carlos de Alba',NULL,NULL),(2502123,'Ryan Bennett',NULL,NULL),(2502293,'Rocio Lara',NULL,NULL),(2502582,'Bentley Little',1960,NULL),(2502949,'Sue Kroll',NULL,NULL),(2503064,'Logan Browning',1989,NULL),(2503633,'Josh Trank',1984,NULL),(2504006,'Max Records',1997,NULL),(2505054,'Dave Kneebone',NULL,NULL),(2505304,'Sean Bott',NULL,NULL),(2505507,'Gralen Bryant Banks',1961,NULL),(2505635,'Ørjan Gamst',NULL,NULL),(2505951,'Joseph Allen',NULL,NULL),(2506257,'Paul D. Hunt',NULL,NULL),(2506621,'Travis Tope',1991,NULL),(2506740,'Jorge Manrique Behrens',NULL,NULL),(2507695,'Rodrigo Sorogoyen',1981,NULL),(2507792,'Ryan Bodie',NULL,NULL),(2507810,'Aaron Stewart-Ahn',NULL,NULL),(2508774,'Adam Donaghey',1980,NULL),(2509115,'Shaley Scott',NULL,NULL),(2509503,'Beck Rainford',NULL,NULL),(2509625,'Ernõ Mesterházy',1963,NULL),(2510203,'Yûichirô Saitô',NULL,NULL),(2510208,'Jennifer Friend',NULL,NULL),(2510764,'Timothy Friend',NULL,NULL),(2511326,'Are Heidenstrom',NULL,NULL),(2512193,'Stefan Schaller',1982,NULL),(2512252,'Maria Matteoli',NULL,NULL),(2513282,'Eliot Glazer',1983,NULL),(2513975,'Lia Buman',NULL,NULL),(2514034,'Margarethe Baillou',NULL,NULL),(2514879,'Yuqi Zhang',1986,NULL),(2515050,'Katharina Heyer',1983,NULL),(2515735,'Todor Kobakov',1978,NULL),(2515893,'Jennifer Lee',NULL,NULL),(2516193,'Jack Roth',1984,NULL),(2516299,'Sarah Natochenny',NULL,NULL),(2516690,'Jon Gabrus',1982,NULL),(2517835,'Isabelle Sobelman',NULL,NULL),(2518711,'Gang Wu',1962,NULL),(2518861,'Masayuki Tanishima',NULL,NULL),(2519287,'Pauline Burlet',1996,NULL),(2519331,'Marie Laure Vanglabeke',NULL,NULL),(2519565,'Harriet Rees',NULL,NULL),(2519984,'Konstantin Kaucher',1993,NULL),(2520235,'Chester See',1984,NULL),(2520301,'Ahmad Khan Mahmoodzada',1997,NULL),(2520336,'Lili Horvát',1982,NULL),(2520354,'Ahmad Puad Onah',NULL,NULL),(2521682,'Aylin Tezel',1983,NULL),(2522077,'Nagaru Tanigawa',NULL,NULL),(2522719,'Julia von Heinz',1976,NULL),(2522812,'John Quester',1970,NULL),(2522889,'Neung-yeon Joh',NULL,NULL),(2522898,'Jeff Larson',NULL,NULL),(2523577,'Mitsuru Uda',NULL,NULL),(2523722,'Maxwell Neck',NULL,NULL),(2523794,'Brent Simons',NULL,NULL),(2524051,'Lexi Giovagnoli',NULL,NULL),(2524192,'Justin Paul',1985,NULL),(2524823,'Lilou Fogli',1981,NULL),(2525068,'Chris Phillips',NULL,NULL),(2525142,'Christopher Passig',NULL,NULL),(2525426,'Daniel Garcia',NULL,NULL),(2525790,'Bel Powley',1992,NULL),(2525792,'Pancho Aguirre',NULL,NULL),(2526525,'Nelson García',NULL,NULL),(2526637,'Shingo Sekine',NULL,NULL),(2527168,'Cecilia Vallejo',NULL,NULL),(2528062,'Alexis Wajsbrot',NULL,NULL),(2528248,'Steve Wiebe',NULL,NULL),(2528358,'Gary Go',NULL,NULL),(2528438,'Tania Martinez',NULL,NULL),(2528451,'Josephine Decker',NULL,NULL),(2528647,'Brittany Blockman',NULL,NULL),(2529103,'Maria Elena Rodriguez',NULL,NULL),(2529415,'Fausto Miño',1980,NULL),(2530038,'Milan Vácha',NULL,NULL),(2530291,'Evan Morgan',NULL,NULL),(2530783,'Eun-mi Lee',NULL,NULL),(2530809,'Jenette Lynne Hawkins',NULL,NULL),(2531170,'Jirina Myskova',NULL,NULL),(2531261,'Sofia Alvarez',NULL,NULL),(2531440,'Alexandre Goyette',NULL,NULL),(2531628,'Charles Aitken',1979,NULL),(2531690,'Lewis Taewan Kim',NULL,NULL),(2531742,'Stacey Stevens',NULL,NULL),(2532109,'Thom Irvine',NULL,NULL),(2532249,'Chris Roessner',1983,NULL),(2532484,'Doug Fitch',NULL,NULL),(2532520,'Jett Steiger',1983,NULL),(2533662,'Hiroki Numata',NULL,NULL),(2534167,'Tom Vaughan-Lawlor',1977,NULL),(2534638,'Michael Abbott Jr.',NULL,NULL),(2534912,'Darren Smith',NULL,NULL),(2534923,'Jenée LaMarque',1980,NULL),(2535022,'Philip King',NULL,NULL),(2535350,'Mariana Silva',NULL,NULL),(2535507,'Mukesh Chhabra',1980,NULL),(2535716,'Ryan Firpo',NULL,NULL),(2535778,'Amar\'e Stoudemire',1982,NULL),(2536305,'Maria Karlsson',1978,NULL),(2536503,'Bill Parker',1986,NULL),(2536586,'Rael Jones',NULL,NULL),(2536617,'Luis Panch Perez',NULL,NULL),(2537118,'Kayla Schmah',NULL,NULL),(2537621,'Jessica McNamee',NULL,NULL),(2537947,'Benj Pasek',1985,NULL),(2538096,'Takashi Matsuzuka',NULL,NULL),(2538607,'Caleb Heymann',NULL,NULL),(2538611,'Nicholas Monsour',1980,NULL),(2538735,'Mike Moh',NULL,NULL),(2539064,'Hiro Mashima',NULL,NULL),(2539265,'J. Michael Bailey',NULL,NULL),(2539645,'Miguel Valladares',NULL,NULL),(2539953,'Alicia Vikander',1988,NULL),(2540339,'Rachel Korine',1986,NULL),(2540802,'Mirai Kataoka',NULL,NULL),(2541077,'Marina Ortiz Lenoir-Grand',NULL,NULL),(2541742,'Adrián Guerra',1984,NULL),(2541974,'Jai Courtney',1986,NULL),(2542262,'Jeremy Noble',NULL,NULL),(2542577,'Liz Jensen',1959,NULL),(2543134,'Leo Pearlman',NULL,NULL),(2545235,'Eric Warren Singer',NULL,NULL),(2546012,'Kaya Scodelario',1992,NULL),(2546669,'Chris Lukeman',NULL,NULL),(2546716,'Riley Thomas Stewart',2002,NULL),(2547679,'Claudia Cantero',NULL,NULL),(2548464,'Tom Walker',NULL,NULL),(2548468,'Sean Ringgold',NULL,NULL),(2548860,'Michael Loveday',NULL,NULL),(2549216,'Louise Rennison',1951,2016),(2549381,'David Hall',1984,2017),(2549583,'Ditte Milsted',NULL,NULL),(2549779,'Zinat Pirzadeh',NULL,NULL),(2550483,'Max Mannix',NULL,NULL),(2551033,'David Carr',1956,2015),(2551041,'Simon Horsman',NULL,NULL),(2551311,'Lotte Verbeek',1982,NULL),(2552034,'Melissa Benoist',1988,NULL),(2552337,'Stig Frode Henriksen',NULL,NULL),(2552481,'Norihisa Harada',NULL,NULL),(2552536,'Troy Nixey',1972,NULL),(2553340,'Olivier Boonjing',NULL,NULL),(2553419,'Nick Confalone',1981,NULL),(2553463,'Henry David',1979,NULL),(2554052,'Jordin Sparks',1989,NULL),(2554103,'Robert Faith',NULL,NULL),(2554347,'Meg Martin',NULL,NULL),(2554352,'T.J. Miller',1981,NULL),(2554376,'Norah Lally',NULL,NULL),(2554792,'Mac Carter',NULL,NULL),(2554932,'Michele Braga',1977,NULL),(2554997,'Kimberly Hebert Gregory',NULL,NULL),(2555462,'Eiza González',1990,NULL),(2556054,'Marlene Mc\'Cohen',NULL,NULL),(2556155,'Christoph Letkowski',1982,NULL),(2556469,'Tobias Bengtsson',NULL,NULL),(2556657,'Sumio Kiga',NULL,NULL),(2556743,'Marion Bethel',NULL,NULL),(2557473,'Ellen Oseng',NULL,NULL),(2557717,'Yvette Grisier',NULL,NULL),(2557842,'Sophie Farkas Bolla',NULL,NULL),(2558061,'Douglas Edward',1978,NULL),(2558161,'Diego Garzon',NULL,NULL),(2558309,'Jeanne Duprau',NULL,NULL),(2559036,'Shanyn Leigh',NULL,NULL),(2559683,'Andrew Malcolm',NULL,NULL),(2559996,'Mohamed Diab',1978,NULL),(2560043,'Adelaide Kane',1990,NULL),(2560138,'Kate Long',1964,NULL),(2560181,'Ravi Babu',NULL,NULL),(2561194,'Patrick Epino',NULL,NULL),(2561272,'Øystein Mamen',NULL,NULL),(2561765,'Brian Selznick',1966,NULL),(2561852,'Ged Doherty',NULL,NULL),(2561872,'Britta Andersson',NULL,NULL),(2562061,'Brian McKay',NULL,NULL),(2562387,'Renel Brown',NULL,NULL),(2562763,'Takaaki Suzuki',NULL,NULL),(2562869,'Win Butler',1980,NULL),(2563022,'Harsh Warrdhan',NULL,NULL),(2563482,'Ronald Bronstein',NULL,NULL),(2563544,'Sarah Brokensha',NULL,NULL),(2564837,'Riza Akin',1957,2022),(2564938,'Adelaide Clemens',1989,NULL),(2564974,'Lisa Thoreson',NULL,NULL),(2565312,'Hee-jin Choi',1979,NULL),(2565559,'Wolfgang Behr',NULL,NULL),(2565612,'Keith Dorrington',NULL,NULL),(2566244,'Elisa Ludwig',NULL,NULL),(2566390,'Paul Ian Johnson',NULL,NULL),(2566697,'Elizabeth Gillies',1993,NULL),(2566810,'Pin Pin Tan',NULL,NULL),(2566841,'Gino Fortebuono',NULL,NULL),(2566876,'Javier Calvo',1991,NULL),(2567203,'Mekenna Melvin',1985,NULL),(2568279,'Kenji Nagasaki',NULL,NULL),(2568423,'Richard Peete',NULL,NULL),(2568692,'Matthew Cormack',NULL,NULL),(2568708,'Klim Shipenko',1983,NULL),(2568850,'Nathan Matthew David',NULL,NULL),(2569510,'Lennart Ruff',1986,NULL),(2569832,'Camilla Luddington',NULL,NULL),(2570245,'Kajal Aggarwal',1985,NULL),(2570429,'Jamie Campbell Bower',1988,NULL),(2570706,'Sophie Rundle',1988,NULL),(2570727,'Josh Hetzler',NULL,NULL),(2570742,'Natalie Holt',NULL,NULL),(2571063,'Tristan Goligher',NULL,NULL),(2571693,'Mollye Asher',NULL,NULL),(2571848,'Kana Asumi',1983,NULL),(2571852,'Turner Clay',NULL,NULL),(2572554,'Peyton List',1998,NULL),(2572627,'Colin Theys',1985,NULL),(2573005,'Susanna Fogel',1980,NULL),(2573530,'Patrick Vollrath',1985,NULL),(2573928,'Kana Hanazawa',1989,NULL),(2574581,'Jean-Charles Hue',NULL,NULL),(2574881,'Emmanuel Gradi',NULL,NULL),(2574897,'Craig Johnson',NULL,NULL),(2575780,'Kira Snyder',NULL,NULL),(2575873,'Jeff Lima',NULL,NULL),(2576384,'Chandler Darby',NULL,NULL),(2576658,'David M. Wulf',NULL,NULL),(2576729,'Dylan Pearce',NULL,NULL),(2576804,'Molly Conners',1980,NULL),(2577076,'Lil Rel Howery',1979,NULL),(2577199,'Chris Peckover',NULL,NULL),(2578038,'Dong Lu',NULL,NULL),(2578825,'Rachel Cohn',1968,NULL),(2580291,'Yui Kano',1983,NULL),(2580347,'The Marx Brothers',NULL,NULL),(2580983,'Lauren Bond',NULL,NULL),(2581327,'Emily Gipson',NULL,NULL),(2581521,'Austin Butler',1991,NULL),(2581581,'Courtney Hunt',1964,NULL),(2582755,'Pierre Niney',1989,NULL),(2583641,'Max Handelman',NULL,NULL),(2583828,'Sarah Aubrey',NULL,NULL),(2583829,'Cristina Valenzuela',1987,NULL),(2584117,'Jamie Bernadette',NULL,NULL),(2584392,'Tom Hopper',1985,NULL),(2584600,'Julianne Hough',1988,NULL),(2584860,'Yoo Ah-in',1986,NULL),(2585049,'Russ DeSalvo',NULL,NULL),(2585093,'Mathias Forberg',NULL,NULL),(2585406,'Simon McQuoid',NULL,NULL),(2585445,'Ronnie Sandahl',NULL,NULL),(2585918,'Mugdha Godse',1982,NULL),(2586324,'Trish Sie',NULL,NULL),(2587167,'Carl Molinder',NULL,NULL),(2587184,'Daley Pearson',NULL,NULL),(2587380,'Carol Martori',NULL,NULL),(2588606,'Steve McQueen',1969,NULL),(2588665,'Tahar Rahim',1981,NULL),(2588703,'Drew Daniels',NULL,NULL),(2588740,'E.F. Watling',1899,1990),(2588785,'Jean-Philippe Verdin',NULL,NULL),(2589551,'Pepita Emmerichs',NULL,NULL),(2589786,'Spencer Averick',NULL,NULL),(2590370,'Kelly Chapman',NULL,NULL),(2590523,'Robert Venditti',NULL,NULL),(2590618,'Nikita Leigh-Pritchard',NULL,NULL),(2590720,'Trent Luckinbill',1975,NULL),(2591093,'Januel Mercado',1984,NULL),(2591283,'Tim Zajaros',NULL,NULL),(2591458,'J.D. Lifshitz',NULL,NULL),(2591513,'Brett Weldele',NULL,NULL),(2591926,'Todd Casey',1981,NULL),(2592085,'Sally Storey',NULL,NULL),(2592137,'Rafael Casal',1985,NULL),(2592245,'Gabriel Ferrari',NULL,NULL),(2593414,'Georges van Brueghel',NULL,NULL),(2593874,'Tim Headington',NULL,NULL),(2594314,'Aya Endô',1980,NULL),(2594525,'Patrick Milling Smith',NULL,NULL),(2594844,'Josiah Steinbrick',NULL,NULL),(2594938,'Michela Andreozzi',1969,NULL),(2594961,'Lorenzo Ausilia-Foret',NULL,NULL),(2595269,'Matthew Compton',NULL,NULL),(2595677,'Michael Judd',NULL,NULL),(2595894,'Brenda Ngxoli',NULL,NULL),(2596636,'Kerem Sanga',NULL,NULL),(2596725,'David Blue Garcia',NULL,NULL),(2597264,'Craig Chapman',NULL,NULL),(2597331,'Jack Heller',NULL,NULL),(2597963,'Takahiro Nishijima',1986,NULL),(2598028,'Craig Shilowich',NULL,NULL),(2598359,'Takeo Hisamatsu',NULL,NULL),(2599071,'Jessica Jade Andres',1985,NULL),(2599174,'Brendan Potter',1983,NULL),(2599579,'Javier Tejedor',NULL,NULL),(2600377,'Mirenda Ouellet',NULL,NULL),(2602251,'Sunil Lulla',NULL,NULL),(2602301,'Ken Bell',NULL,NULL),(2602433,'Melissa K. Stack',NULL,NULL),(2602462,'Jean-Baptiste Tabourin',NULL,NULL),(2602846,'Amy Nauiokas',NULL,NULL),(2603459,'Robert M. Edsel',NULL,NULL),(2603621,'Brandon Trenz',NULL,NULL),(2604429,'Lara Breay',NULL,NULL),(2604833,'Rebecca Croll',NULL,NULL),(2605079,'Victoria Bedos',NULL,NULL),(2605255,'Jason Berry',NULL,NULL),(2605345,'Gemma Arterton',1986,NULL),(2605625,'Katie Nehra',NULL,NULL),(2605827,'Akihiro Okabayashi',NULL,NULL),(2605946,'Seth Lochhead',1981,NULL),(2606029,'Jonathon Klein',NULL,NULL),(2606744,'T. Justin Ross',NULL,NULL),(2606933,'Jake Monaco',NULL,NULL),(2606944,'Ryôtarô Makihara',NULL,NULL),(2606986,'Patricio Fuster',NULL,NULL),(2607405,'Yoshiie Goda',NULL,NULL),(2607692,'Kate Nowlin',NULL,NULL),(2608287,'Katharine Lee McEwan',NULL,NULL),(2608327,'Elena Song',NULL,NULL),(2608689,'Ellie Kemper',1980,NULL),(2608694,'Darren Dean',1966,NULL),(2608927,'Autumn Federici',NULL,NULL),(2609288,'Andrew Beckham',NULL,NULL),(2609292,'Bryan Smiley',NULL,NULL),(2609300,'Olivia Yan',1984,NULL),(2609442,'Frankie Lindquist',NULL,NULL),(2609807,'Kelly Fremon Craig',1980,NULL),(2609927,'Laura De Pedro',NULL,NULL),(2610231,'Zal Batmanglij',NULL,NULL),(2610501,'T.J. Barrack',NULL,NULL),(2610770,'Rostam Batmanglij',1983,NULL),(2611074,'Sheila Vand',NULL,NULL),(2611223,'Alan Polsky',NULL,NULL),(2611366,'Serge Bourdeillettes',NULL,NULL),(2611629,'Jason Dodson',NULL,NULL),(2611883,'Jade Regier',NULL,NULL),(2612256,'Alana Blanchard',1990,NULL),(2612548,'Kiyoko Ôkubo',1911,NULL),(2612932,'Tom Soper',NULL,NULL),(2612991,'Banksy',NULL,NULL),(2613812,'Yaneley Arty',NULL,NULL),(2613934,'Christine Molloy',NULL,NULL),(2614266,'Joe Lawlor',NULL,NULL),(2614548,'Wakana Matsumoto',1984,NULL),(2614993,'Juan Bernardo González',NULL,NULL),(2615398,'Takeru Satoh',1989,NULL),(2615528,'Ben Templesmith',NULL,NULL),(2615685,'Helen Estabrook',NULL,NULL),(2616125,'Jon Hanley Rosenberg',NULL,NULL),(2616669,'Le-Van Kiet',NULL,NULL),(2616863,'Topher Osborn',NULL,NULL),(2616937,'Yiran Tu',NULL,NULL),(2617198,'Deborah Frances-White',1967,NULL),(2617600,'Patrick Gibson',1995,NULL),(2617994,'Lukasz Zal',1981,NULL),(2618717,'Trace Sheehan',NULL,NULL),(2618764,'Gerard McMurray',NULL,NULL),(2618913,'Filipe Vargas',1972,NULL),(2618934,'Keith Wagner',NULL,NULL),(2618951,'Benjamin Hollingsworth',NULL,NULL),(2619114,'Ryan Lee',1996,NULL),(2619779,'Hafsteinn Gunnar Sigurðsson',1978,NULL),(2620303,'Lotti Törnros',NULL,NULL),(2620667,'Bresha Webb',1984,NULL),(2621785,'Pauline Acquart',1992,NULL),(2621812,'Masakazu Hashimoto',NULL,NULL),(2622280,'Jim Birmant',NULL,NULL),(2622304,'J.R. Moehringer',1964,NULL),(2623492,'Hera Hilmar',1988,NULL),(2623609,'Hasraf Dulull',NULL,NULL),(2624186,'Caitlin FitzGerald',1983,NULL),(2624602,'Cameron Boyce',1999,2019),(2625039,'Herbert Edwards',NULL,NULL),(2625426,'Gaetano Vaccaro',NULL,NULL),(2625558,'Austin Head',1983,2021),(2625837,'Jun\'ya Okamoto',NULL,NULL),(2626629,'Mark Rizzo',NULL,NULL),(2627176,'Marilyn Fu',NULL,NULL),(2628561,'Cassandra Scerbo',1990,NULL),(2628935,'Kerry Bishé',1984,NULL),(2629091,'Bjarni Massi',NULL,NULL),(2629113,'Renate Ober',NULL,NULL),(2629199,'Antoinette Terry Bryant',NULL,NULL),(2629897,'Sara Nassim',NULL,NULL),(2630323,'Justine Triet',1978,NULL),(2630745,'Roberto Aguirre-Sacasa',1971,NULL),(2631939,'Michael Galante',NULL,NULL),(2632545,'Jay Hayden',1987,NULL),(2632793,'Shanley Caswell',NULL,NULL),(2632819,'Arnold Peter',NULL,NULL),(2632891,'Madeline Samit',NULL,NULL),(2633394,'Nick Ballard',NULL,NULL),(2633431,'Freya Adams',NULL,NULL),(2633535,'Asa Butterfield',1997,NULL),(2634491,'Andy Lanzone',NULL,NULL),(2635020,'Geoffrey Canada',NULL,NULL),(2636294,'Olga Khlasheva',NULL,NULL),(2636310,'Manuel Garcia-Rulfo',1981,NULL),(2636478,'Brittany Kahan',NULL,NULL),(2636630,'Brant Kantor',NULL,NULL),(2637037,'Howard Kaplan',NULL,NULL),(2637294,'Timothy Lanzone',1981,NULL),(2637959,'Stephen Tyrone Williams',NULL,NULL),(2637971,'Jill Klopp',NULL,NULL),(2638313,'Paul Sedaris',NULL,NULL),(2638876,'Shôko Nakamura',NULL,NULL),(2639032,'Jason Eisener',NULL,NULL),(2639059,'Suzan Hande Güneri',NULL,NULL),(2639419,'Ida Elise Broch',1987,NULL),(2639627,'Jenny Deller',1975,NULL),(2639722,'Mark Hapka',NULL,NULL),(2639820,'Özgür Eken',1976,NULL),(2639868,'Selma Mutal',NULL,NULL),(2640072,'Orçun Köksal',NULL,NULL),(2640264,'CJ Adams',2000,NULL),(2640850,'Jeffrey Chan',NULL,NULL),(2640881,'DTeflon',NULL,NULL),(2640887,'Stefanie Scott',1996,NULL),(2641128,'Mark Magill',1952,NULL),(2641532,'Roxy Saint',NULL,NULL),(2641682,'Hiroaki Yamashita',NULL,NULL),(2641744,'Holeg Spies',NULL,NULL),(2641763,'Miyuki Saito',NULL,NULL),(2642131,'Zach Callison',1997,NULL),(2642389,'Trevor Gureckis',NULL,NULL),(2642593,'Takuji Kitamura',NULL,NULL),(2642787,'Chelsie Florence',1987,NULL),(2642924,'Stefan Duscio',NULL,NULL),(2643587,'Meghan Hade',NULL,NULL),(2643814,'Charles Abourezk',NULL,NULL),(2644221,'Brenda Lhormer',NULL,NULL),(2645116,'Bill Perkins',NULL,NULL),(2645189,'Shelley Hennig',1987,NULL),(2645289,'Chris Greenhalgh',NULL,NULL),(2645827,'Dan Schaffer',NULL,NULL),(2645917,'Curtis Burch',NULL,NULL),(2646452,'Joshuah Bearman',NULL,NULL),(2646631,'Olga Alamán',NULL,NULL),(2647329,'Ulyana Saveleva',NULL,NULL),(2647379,'Shahzad Ismaily',NULL,NULL),(2647420,'Brea Grant',1981,NULL),(2648003,'Tulio Zuloaga',1970,NULL),(2648175,'Eric Schmid',NULL,NULL),(2648685,'Mike Cahill',1979,NULL),(2648896,'Nathaniel Drew',NULL,NULL),(2649720,'John D\'Leo',1995,NULL),(2649764,'Alec Secareanu',1984,NULL),(2650072,'Matthew Raudsepp',1986,NULL),(2650327,'Anastasiya Dontsova',1999,NULL),(2650334,'Kevin Jonas',1987,NULL),(2650444,'Na Guan',NULL,NULL),(2650522,'Sachiko Tanaka',NULL,NULL),(2650700,'Torrance Coombs',1983,NULL),(2650758,'Man-Sang Lo',NULL,NULL),(2650819,'Adèle Exarchopoulos',1993,NULL),(2651139,'Pernell Walker',NULL,NULL),(2651299,'Brian Gatewood',NULL,NULL),(2651543,'Lionel Shriver',1957,NULL),(2651574,'Matteo Guidicelli',1990,NULL),(2652095,'Laura Haddock',1985,NULL),(2652108,'Angie Fielder',NULL,NULL),(2652246,'Jiamin Sun',NULL,NULL),(2652437,'Stefan Pohl',NULL,NULL),(2652716,'Grant Gustin',1990,NULL),(2653161,'Nathan W. Bailey',NULL,NULL),(2653929,'Angus Imrie',1994,NULL),(2654106,'Yukiko Iioka',NULL,NULL),(2654481,'Neil Casey',1981,NULL),(2654663,'Elvis Lee',NULL,NULL),(2654829,'Maude Apatow',1997,NULL),(2654953,'David Hartmann',NULL,NULL),(2655177,'Caleb Landry Jones',1989,NULL),(2655441,'Tristan Göbel',2002,NULL),(2655611,'Kaui Hart Hemmings',NULL,NULL),(2655618,'Todd Michaelsen',NULL,NULL),(2655735,'Daniel Satorius',NULL,NULL),(2656048,'Karl Mueller',NULL,NULL),(2656528,'Anton King',NULL,NULL),(2656897,'Nick Spicer',NULL,NULL),(2657069,'Stacey LaBerge',NULL,NULL),(2657081,'Lisa James Larsson',NULL,NULL),(2657474,'Søren Larsen',NULL,NULL),(2657554,'Ben Barnz',NULL,NULL),(2657729,'Jenni Hendriks',NULL,NULL),(2657919,'Jon Nguyen',NULL,NULL),(2658031,'Alexis Rault',1981,NULL),(2658169,'Marina Andruix',NULL,NULL),(2658258,'Lannette Pabon',NULL,NULL),(2658369,'Ilya Tilkin',1970,NULL),(2658780,'Sasa Kekez',1983,NULL),(2659100,'Ken Himmelman',NULL,NULL),(2660194,'Stephen Chandler Whitehead',NULL,NULL),(2660484,'Dana L. Wilson',1981,NULL),(2660842,'Hreinn Beck',NULL,NULL),(2660910,'Carly Usdin',NULL,NULL),(2661293,'Kristján Loðmfjörð',NULL,NULL),(2661978,'Tom Bissell',NULL,NULL),(2662079,'Daniel Lusko',1983,NULL),(2662182,'Laure Calamy',1975,NULL),(2662207,'Erlendur Sveinsson',NULL,NULL),(2663031,'Matteo Oleotto',1977,NULL),(2663731,'Vicki Shigekuni Wong',NULL,NULL),(2663745,'Jim Walsh',NULL,NULL),(2664646,'Nami Yoshikawa',NULL,NULL),(2664949,'James Higginson',NULL,NULL),(2665105,'Grace Van Patten',1996,NULL),(2666268,'Adam Rodgers',NULL,NULL),(2666746,'Max Deacon',NULL,NULL),(2666760,'Camilla Bray',NULL,NULL),(2667119,'Sarah Goher',NULL,NULL),(2668884,'Elias Belkeddar',1988,NULL),(2668904,'Raphael Nash',NULL,NULL),(2668921,'Fred A. Wyler',1944,NULL),(2668976,'Clay Pecorin',NULL,NULL),(2669103,'Grégoire Ludig',1982,NULL),(2669155,'Dmitry Katkhanov',NULL,NULL),(2669197,'Dan Mazeau',NULL,NULL),(2669564,'R. Balki',1964,NULL),(2670366,'Alex Heineman',NULL,NULL),(2671096,'Eugene Kotlyarenko',NULL,NULL),(2671105,'Niels Schneider',1987,NULL),(2671345,'Tita Tessler',NULL,NULL),(2671364,'Marat Descartes',NULL,NULL),(2671751,'Jay Deverett',NULL,NULL),(2672105,'Daphna Keenan',NULL,NULL),(2672655,'Oleg Malovichko',NULL,NULL),(2672832,'Christopher Mallick',NULL,NULL),(2673018,'Lusa Silvestre',NULL,NULL),(2673333,'Joel Hielckert',NULL,NULL),(2673579,'Paris Kassidokostas-Latsis',1982,NULL),(2673784,'Ryan W. Smith',NULL,NULL),(2674069,'Helena Albergaria',NULL,NULL),(2674307,'Patrick Brice',1983,NULL),(2674901,'Joseph Chou',NULL,NULL),(2674932,'Warren Goz',NULL,NULL),(2675034,'Boss Whitley',NULL,NULL),(2676018,'Judy McLane',NULL,NULL),(2676052,'Joseph Kosinski',1974,NULL),(2676147,'Jonathan Groff',1985,NULL),(2676231,'Adam Karst',1979,NULL),(2676421,'James Choi',NULL,NULL),(2676743,'Yutaka Shimizu',NULL,NULL),(2677390,'Cüneyt Kaya',1980,NULL),(2677529,'Kaori Fukuhara',1986,NULL),(2677744,'Brent Laffoon',NULL,NULL),(2677924,'Joann Sfar',1971,NULL),(2678125,'Bettina Bresnan',1994,NULL),(2678286,'James McBride',1957,NULL),(2678319,'Sajid',NULL,NULL),(2678900,'Joseph McFadden',NULL,NULL),(2679438,'Joe Jonas',1989,NULL),(2679516,'Steve McVicker',NULL,NULL),(2679753,'Annie Ilonzeh',1983,NULL),(2679897,'Lukasz Pawel Buda',NULL,NULL),(2679917,'Nick Jonas',1992,NULL),(2680357,'Ryan Mitchelle',1984,NULL),(2680506,'Sharat Katariya',1978,NULL),(2681284,'Jessica De Gouw',NULL,NULL),(2681705,'Ben King',NULL,NULL),(2681915,'Claude Le Pape',NULL,NULL),(2682046,'Shaofeng Feng',1978,NULL),(2682929,'Nihal Yalçin',1981,NULL),(2683048,'Matthew Quick',NULL,NULL),(2683058,'Christine Bentele',1978,NULL),(2683090,'Blake Young-Fountain',1981,NULL),(2684095,'Steven Gomez',NULL,NULL),(2684234,'Chris Rossi',NULL,NULL),(2684310,'Elvis Perkins',1976,NULL),(2684348,'Amy Chang',NULL,NULL),(2684783,'Colby Oliver',NULL,NULL),(2684869,'Hutch Demouilpied',NULL,NULL),(2685846,'Chloé Jouannet',1997,NULL),(2685920,'Simon J. Berger',1979,NULL),(2685937,'Ruth Vega Fernandez',1977,NULL),(2686262,'Colton Haynes',1988,NULL),(2686509,'Michael G. Cooney',NULL,NULL),(2686579,'T.J. Fixman',1979,NULL),(2686615,'Sharyn Whiterabbit Noonan',NULL,NULL),(2686747,'Alexis Zegerman',1977,NULL),(2686934,'Aaron L. Ginsburg',NULL,NULL),(2687282,'Grizzly Bear',NULL,NULL),(2687438,'Andy Cochran',NULL,NULL),(2688233,'Mihaela Poenaru',NULL,NULL),(2688320,'Gabe Ibáñez',1971,NULL),(2688443,'Teddy Blanks',NULL,NULL),(2688636,'Hermann Claravall',NULL,NULL),(2689732,'Zhu An Li',NULL,NULL),(2689823,'Hannah Fierman',1987,NULL),(2689835,'Jean-Luc Lagarce',1957,1995),(2690196,'William B. Seabrook',1884,1945),(2690424,'Ross Murray',NULL,NULL),(2690539,'Alice Birch',NULL,NULL),(2690647,'Pankaj Tripathi',1976,NULL),(2690726,'James Manera',NULL,NULL),(2690957,'Jay Reiss',NULL,NULL),(2691134,'Anne-Sophie Bion',NULL,NULL),(2691892,'Megan Ellison',1986,NULL),(2692146,'Katie McGrath',1983,NULL),(2692293,'Stephen Mao',1960,NULL),(2692301,'Melanie Chandra',NULL,NULL),(2692312,'Brigitte Millar',NULL,NULL),(2692519,'Katie Lovejoy',NULL,NULL),(2692804,'Wilssa Esser',NULL,NULL),(2693578,'Francisco Roncal',NULL,NULL),(2693744,'Steven Schardt',NULL,NULL),(2693873,'Jacob Jaffke',1981,NULL),(2694157,'Gary Bryden',NULL,NULL),(2694342,'Paulo Gustavo',1978,2021),(2694531,'Haruhiko Matsushita',NULL,NULL),(2694584,'Brit Morgan',1987,NULL),(2695124,'Helen Wood',1935,1998),(2695678,'Sebastian Akchoté',NULL,NULL),(2696147,'Hiroshi Mori',NULL,NULL),(2696392,'Francesco Campobasso',NULL,NULL),(2696736,'Destin Pfaff',1974,NULL),(2696996,'Mark Obmascik',NULL,NULL),(2697466,'Oleg Negin',1970,NULL),(2698115,'Lindsay Burdge',1984,NULL),(2698526,'Alexandra Clarke',NULL,NULL),(2698641,'Allen Leung',NULL,NULL),(2698749,'Iris Ng',NULL,NULL),(2699105,'Samantha Colburn',NULL,NULL),(2699362,'Isabella Acres',NULL,NULL),(2699867,'Masakatsu Takagi',NULL,NULL),(2699875,'James Belfer',NULL,NULL),(2699931,'Libby Hakaraia',NULL,NULL),(2700060,'Lionel Brison',NULL,NULL),(2700235,'Jim Mahoney',NULL,NULL),(2700470,'Miriam Toews',1964,NULL),(2700559,'Gita Pullapilly',1977,NULL),(2700755,'Bette L. Smith',NULL,NULL),(2701325,'Maeve Jinkings',1976,NULL),(2701668,'Didar Domehri',NULL,NULL),(2701804,'Jeff Jensen',NULL,NULL),(2702898,'Tracy Spiridakos',1988,NULL),(2703176,'Kunitaro Ohi',1984,NULL),(2703276,'Jorge Lara',NULL,NULL),(2703527,'Rachel St. Gelais',2004,NULL),(2703558,'Molly Windsor',NULL,NULL),(2703902,'Tatiana Graullera',NULL,NULL),(2704505,'Aron Gaudet',1974,NULL),(2704527,'Gideon Defoe',NULL,NULL),(2704557,'Anne Renton',NULL,NULL),(2705923,'Lorcan Finnegan',NULL,NULL),(2706397,'Leah Gibson',1985,NULL),(2706992,'Erich Bergen',1985,NULL),(2708109,'Bruno Gouery',NULL,NULL),(2708148,'Yumiko Yoshihara',NULL,NULL),(2709116,'Chetan Desai',NULL,NULL),(2710326,'Matt Logelin',NULL,NULL),(2710673,'Yoshimi Kondou',NULL,NULL),(2710873,'David Kosor',NULL,NULL),(2710958,'Morgan Dameron',NULL,NULL),(2711975,'Claudia Castello',NULL,NULL),(2712241,'Ichirô Takase',NULL,NULL),(2712463,'David Scarpuzza',NULL,NULL),(2712593,'Fernando Monje',NULL,NULL),(2713051,'Vincent Hänni',NULL,NULL),(2713351,'Jessica Goldberg',NULL,NULL),(2713435,'Jose Miguel Bonetti',NULL,NULL),(2714111,'Moritz Klaus',1999,NULL),(2714273,'Lili Sepe',1997,NULL),(2714513,'Julien Naveau',NULL,NULL),(2714790,'Elizabeth Giamatti',1962,NULL),(2715213,'Gilbert Traïna',NULL,NULL),(2715524,'Isaac Alongi',NULL,NULL),(2715764,'Colin Stetson',NULL,NULL),(2716026,'Pierre de Kerchove',NULL,NULL),(2716769,'John Doolan',1984,NULL),(2716956,'Russ Rice',NULL,NULL),(2717241,'Ellen Dorrit Petersen',1975,NULL),(2717485,'Sara Gruen',1969,NULL),(2717555,'Howard Gensler',NULL,NULL),(2717565,'Fawad Khan',1981,NULL),(2717663,'Stéphane Roche',NULL,NULL),(2717849,'Ben Batt',1986,NULL),(2717855,'Philippe Richard',NULL,NULL),(2718512,'Nicole Beharie',1985,NULL),(2719128,'Baptiste Sornin',NULL,NULL),(2719170,'Almudena León',NULL,NULL),(2719406,'Mathew Baynton',1980,NULL),(2719774,'Yuka Terasaki',1983,NULL),(2719825,'Oliver Jackson-Cohen',1986,NULL),(2720118,'Stanley Weber',1986,NULL),(2720681,'Riley Stearns',1986,NULL),(2720784,'Miren Marañón',NULL,NULL),(2720892,'Byron Bowers',1978,NULL),(2721366,'Lane Hughes',NULL,NULL),(2721580,'Hannah Hughes',NULL,NULL),(2721618,'Lexie Galante',1984,NULL),(2721839,'Maria Altmann',1916,2011),(2721926,'Aaron Kaufman',NULL,NULL),(2722888,'Elena Laviña',NULL,NULL),(2723853,'Scott C. Brown',NULL,NULL),(2724035,'Matteo Cocco',1985,NULL),(2724306,'Duncan Thum',NULL,NULL),(2724368,'Noel Areizaga',NULL,NULL),(2724682,'Dorla Bell',NULL,NULL),(2725075,'Charin Alvarez',NULL,NULL),(2725627,'Steven Kostanski',NULL,NULL),(2725830,'Kundô Koyama',1964,NULL),(2726789,'Zac Mattoon O\'Brien',NULL,NULL),(2727304,'Quinn Hunchar',1999,NULL),(2727318,'Anemone Valcke',1990,NULL),(2727368,'Aram Tertzakian',NULL,NULL),(2727714,'Deniz Akdeniz',NULL,NULL),(2728054,'Olly Alexander',1990,NULL),(2728286,'Jing Lusi',NULL,NULL),(2728708,'Giulia Prenna',NULL,NULL),(2728765,'Carlo Rinaldi',NULL,NULL),(2728917,'Zack Gold',NULL,NULL),(2728924,'Stu Silverman',NULL,NULL),(2729344,'Sarah Shaw',NULL,NULL),(2730580,'Sam Reid',1987,NULL),(2730654,'Bradley J. Ross',NULL,NULL),(2730909,'Lucian Johnston',NULL,NULL),(2731232,'Claus Toksvig Kjaer',1977,NULL),(2731660,'Charlotte Riley',1981,NULL),(2731704,'Aaron Meister',NULL,NULL),(2731980,'Ciara Bravo',1997,NULL),(2732149,'Jeff Kinney',NULL,NULL),(2732734,'Talia Kleinhendler',NULL,NULL),(2734583,'Sidonie Abbene',NULL,NULL),(2735061,'Karissa Tynes',1987,NULL),(2735837,'Graham Denman',NULL,NULL),(2736476,'Lashana Lynch',1987,NULL),(2737558,'Frank Baldwin',NULL,NULL),(2738138,'Dennis Carter Jr.',NULL,NULL),(2738464,'Tadhg O\'Sullivan',NULL,NULL),(2738713,'Scandar Copti',1975,NULL),(2738907,'Filippo Gravino',NULL,NULL),(2739175,'E. Randol Schoenberg',NULL,NULL),(2739469,'Joe Siffleet',1995,NULL),(2739721,'Radio Sloan',NULL,NULL),(2739958,'Nechama Tec',1931,2023),(2740450,'Zach Parrish',NULL,NULL),(2741096,'Matt Bai',1968,NULL),(2741509,'Delphine Measroch',NULL,NULL),(2741657,'Lisa Schwartz',NULL,NULL),(2741877,'Melissa Coghlan',NULL,NULL),(2742329,'Rafael Morais',NULL,NULL),(2742617,'Michele Ganeless',NULL,NULL),(2743784,'Megan Charpentier',2001,NULL),(2744027,'Scott Rothman',NULL,NULL),(2744162,'Michelle Farrell',NULL,NULL),(2744555,'Alex Cortés',NULL,NULL),(2744613,'Willie Cortés',NULL,NULL),(2744748,'Klaus Janson',1952,NULL),(2744976,'Lisa See',1955,NULL),(2745006,'Alex Ebert',NULL,NULL),(2746459,'Chetan Bhagat',1974,NULL),(2746751,'Aaron Burns',1985,NULL),(2746964,'Frauke Finsterwalder',NULL,NULL),(2746993,'Aleem Khan',1985,NULL),(2747232,'Sakura Ando',1986,NULL),(2747682,'Patrick Savage',NULL,NULL),(2748883,'Jonathan Leveck',NULL,NULL),(2749806,'Andrew Goldman',NULL,NULL),(2750446,'Max Hurwitz',NULL,NULL),(2751101,'Wesley Morgan',1990,NULL),(2751202,'Shantel',1968,NULL),(2751505,'Stéphanie Bermann',NULL,NULL),(2752098,'Chris Butler',1974,NULL),(2752422,'Ambrus Tövisházi',1976,NULL),(2752795,'Michael Clear',NULL,NULL),(2752925,'Eric Wenger',NULL,NULL),(2753085,'Clyde Lawrence',NULL,NULL),(2753523,'Simon Whitfield',NULL,NULL),(2754504,'Melissa Rundle',NULL,NULL),(2754766,'Cindy Chao',NULL,NULL),(2755651,'Laura Patalano',1958,NULL),(2755708,'Rebecca Windheim',NULL,NULL),(2755953,'Ed Gaughan',NULL,NULL),(2756264,'Nick Whitfield',NULL,NULL),(2756662,'Gerald Thompson',NULL,NULL),(2757098,'Bill Mantlo',1951,NULL),(2757249,'Réka Tenki',1986,NULL),(2757333,'Bella Heathcote',1987,NULL),(2758295,'Tom Parry',1980,NULL),(2758536,'Colleen Haworth',NULL,NULL),(2758573,'Thomas Haworth',NULL,NULL),(2758609,'Nicole Haworth',NULL,NULL),(2759113,'Christina DeMarco',NULL,NULL),(2759610,'Georges Khabbaz',NULL,NULL),(2759746,'Saleh Bakri',1977,NULL),(2759893,'Ekateryna Rak',NULL,NULL),(2760330,'Fionn O\'Shea',1997,NULL),(2760504,'Aki Toyosaki',1986,NULL),(2760664,'Jacob Anderson',1990,NULL),(2760983,'François-René Dupont',NULL,NULL),(2761113,'M.T. Ahern',1979,NULL),(2761542,'Damian Ul',1997,NULL),(2761555,'Ewelina Walendziak',1985,NULL),(2761769,'Michael Downing',NULL,NULL),(2762002,'Lauren Cioffi',NULL,NULL),(2762302,'Nikyatu Jusu',NULL,NULL),(2762369,'Onni Tommila',NULL,NULL),(2762905,'Katy Scoggin',NULL,NULL),(2763269,'Adam Bernstein',NULL,NULL),(2763516,'Terence Lording',NULL,NULL),(2764022,'Géza Röhrig',1967,NULL),(2764089,'Yasmin Assemi',NULL,NULL),(2764493,'Guy Jacoel',NULL,NULL),(2764713,'Tim Key',1976,NULL),(2764802,'Jihad Hojeily',NULL,NULL),(2764828,'Emily Peck',NULL,NULL),(2765384,'Candice Patton',1985,NULL),(2765435,'Alexander Terentyev',1983,NULL),(2765716,'Moisés Acevedo',NULL,NULL),(2765721,'Callin Öhrvall',NULL,NULL),(2766163,'Greg Ephraim',NULL,NULL),(2766221,'James Gilbert',1982,NULL),(2766247,'Steve Holmgren',NULL,NULL),(2766382,'Danielle Wang',NULL,NULL),(2766807,'Souleymane Sy Savane',NULL,NULL),(2766914,'Tuur Florizoone',NULL,NULL),(2766953,'David Barasch',NULL,NULL),(2767128,'Roari Richardson',NULL,NULL),(2767413,'Nico Cota',NULL,NULL),(2767560,'Jianjun Sun',NULL,NULL),(2767831,'Jase Ricci',1974,NULL),(2768764,'Kim Haworth',NULL,NULL),(2768910,'Yuvika Chaudhary',1983,NULL),(2769063,'Caleb Applegate',NULL,NULL),(2769165,'Carolyn Marks Blackwood',NULL,NULL),(2769284,'Christina Papi',NULL,NULL),(2769343,'Brianne Tju',1998,NULL),(2769372,'Setareh Pesyani',NULL,NULL),(2769412,'Stephenie Meyer',1973,NULL),(2769688,'Kyle Martin',NULL,NULL),(2770172,'Andre Gromkovski',1983,NULL),(2770339,'Alex Meillier',NULL,NULL),(2770525,'Kenshô Ono',1989,NULL),(2770527,'Jay Fox',1976,NULL),(2770634,'Daniel E. Moxon',NULL,NULL),(2771436,'Grégory Montel',1976,NULL),(2771523,'Jennifer Bamgardner',NULL,NULL),(2771798,'Ellen Wong',1985,NULL),(2772105,'Oona Chaplin',1986,NULL),(2772376,'Malgosia Rawicz',NULL,NULL),(2772584,'Olivia Taylor Dudley',1985,NULL),(2773059,'Gabriel Basso',1994,NULL),(2773325,'Chris New',1981,NULL),(2773505,'Jason R. Moore',NULL,NULL),(2773757,'Glenn German',NULL,NULL),(2774571,'Frank De Julio',1986,NULL),(2774833,'Edmond Wong',NULL,NULL),(2775149,'Jordan Yale Levine',1985,NULL),(2775497,'Matthias Hoene',NULL,NULL),(2775581,'Markus Förderer',NULL,NULL),(2775878,'Bessem Marzouk',NULL,NULL),(2776151,'Michael Taylor',NULL,NULL),(2776304,'Ram Charan',1985,NULL),(2776563,'Makoto Sanada',NULL,NULL),(2776571,'Nicole Lambert',NULL,NULL),(2776774,'Alma Har\'el',1976,NULL),(2777389,'Ben Fordesman',NULL,NULL),(2778420,'Ant Ward',NULL,NULL),(2778574,'Rod Spence',NULL,NULL),(2779018,'Floriana Lima',1981,NULL),(2779187,'Felipe Sholl',NULL,NULL),(2779222,'Diego Ameixeiras',1976,NULL),(2779297,'Chris Baldwin',NULL,NULL),(2780525,'Doug Pettigrew',NULL,NULL),(2780578,'Yara Shahidi',2000,NULL),(2780824,'Minase Yashiro',1985,NULL),(2781036,'Paki Meduri',1972,NULL),(2781286,'Justin Golightly',NULL,NULL),(2782087,'Anya Whitlock',NULL,NULL),(2782185,'Rupert Sanders',1971,NULL),(2782251,'Giorgia Farina',NULL,NULL),(2782306,'Liz Kearney',NULL,NULL),(2782693,'Giles Andrew',NULL,NULL),(2783258,'Lorenzo Gangarossa',NULL,NULL),(2783441,'Javier Escalas',NULL,NULL),(2783983,'Mike Knowlan',NULL,NULL),(2784978,'Zach Heinzerling',NULL,NULL),(2785000,'Billy Eddy',NULL,NULL),(2785549,'Michael Beach',NULL,NULL),(2785550,'Alex Contreras',NULL,NULL),(2786608,'Callan McAuliffe',1995,NULL),(2786983,'Daniel Lewis',NULL,NULL),(2787790,'Álvaro García Linera',NULL,NULL),(2788015,'Carlos López Estrada',1988,NULL),(2788035,'Rob Paris',NULL,NULL),(2788156,'Beanie Feldstein',1993,NULL),(2788440,'Kevin R. Adams',NULL,NULL),(2788999,'Jon Michael Davis',NULL,NULL),(2789088,'Michael Patric',NULL,NULL),(2789152,'Christian Felix',NULL,NULL),(2789483,'Kiyomi Fujii',NULL,NULL),(2789757,'Cameron Kennedy',1993,NULL),(2790055,'Erik Griffin',1972,NULL),(2790184,'Maria Govan',NULL,NULL),(2791163,'The Persuasions',NULL,NULL),(2791225,'Arthur Berning',1987,NULL),(2791257,'Mark Alpiger',NULL,NULL),(2791292,'David Caspe',NULL,NULL),(2792064,'Kerem Bürsin',1987,NULL),(2792069,'Johannes Repka',1978,NULL),(2792296,'Sonequa Martin-Green',1985,NULL),(2792551,'Olivier Alary',1975,NULL),(2792736,'Ole Christoffer Ertvaag',1987,NULL),(2792768,'Jamund Washington',NULL,NULL),(2793591,'Astrid Bergès-Frisbey',1986,NULL),(2794388,'Ayaka Onoue',1982,NULL),(2794406,'Francis La Haye',NULL,NULL),(2794419,'Adam Wood',NULL,NULL),(2794962,'Hailee Steinfeld',1996,NULL),(2795844,'Quentin Curtis',NULL,NULL),(2796058,'Rebekah Kennedy',NULL,NULL),(2796537,'Brad Allen',NULL,NULL),(2796716,'Joseph Delaney',1945,2022),(2796745,'Adam Devine',1983,NULL),(2797005,'Kelly Bowe',NULL,NULL),(2797652,'Katrina Rose Tandy',NULL,NULL),(2797744,'Himesh Patel',1990,NULL),(2797756,'Evan Jonigkeit',1983,NULL),(2798112,'Allison Tolman',1981,NULL),(2798376,'Timo Aalto',NULL,NULL),(2798739,'Gary Magness',NULL,NULL),(2799219,'Sakshi Tanwar',1973,NULL),(2799626,'Alasdair Flind',NULL,NULL),(2800042,'Toonz Imai',NULL,NULL),(2800320,'Nobuhiro Iizuka',NULL,NULL),(2800616,'Dragomir Mrsic',1969,NULL),(2801211,'Alex Turtletaub',NULL,NULL),(2801668,'Tadashi Tanaka',NULL,NULL),(2802211,'Allen Lowman',NULL,NULL),(2802722,'Beau Willimon',NULL,NULL),(2802754,'Olen Steinhauer',NULL,NULL),(2802945,'Piers Stubbs',NULL,NULL),(2803002,'Shelly Finnegan',NULL,NULL),(2803251,'Pankaj Kumar',NULL,NULL),(2803507,'Nell Benjamin',NULL,NULL),(2803760,'Winifred Watson',1906,2002),(2803928,'Benji Kohn',NULL,NULL),(2804095,'Halleh Seddighzadeh',NULL,NULL),(2804503,'Matt Jones',1981,NULL),(2804620,'Ellen Seidler',NULL,NULL),(2805380,'Michael Nitsberg',NULL,NULL),(2805467,'Claire Margaret Corlett',1999,NULL),(2805665,'Bas Bron',NULL,NULL),(2805697,'John Cohen',NULL,NULL),(2806099,'Richard Pell',NULL,NULL),(2806105,'Ramzi Ben Sliman',NULL,NULL),(2806453,'Alexander Leyviman',NULL,NULL),(2807321,'Tim White',NULL,NULL),(2807560,'Annaleigh Ashford',1985,NULL),(2807682,'Marla Frazee',1958,NULL),(2807833,'Frederik Stuut',NULL,NULL),(2808229,'Òscar Andreu',NULL,NULL),(2808340,'Lauryn Kahn',NULL,NULL),(2808422,'George Saunders',1958,NULL),(2808505,'Marc James Roels',NULL,NULL),(2808715,'Charlotte Timmers',1988,NULL),(2809027,'Jun Kumagai',NULL,NULL),(2809195,'Emma De Swaef',NULL,NULL),(2809465,'Trevor White',NULL,NULL),(2809577,'Jenny Slate',1982,NULL),(2809844,'Max Adams',NULL,NULL),(2810184,'Siddharth Diwan',NULL,NULL),(2810190,'Jin-mo Joo',1958,NULL),(2811008,'Kevin Rhoades',NULL,NULL),(2811093,'Megumi Sasaki',NULL,NULL),(2811448,'Craig Irvin',NULL,NULL),(2811539,'Cliff Roberts',NULL,NULL),(2811682,'David Stassen',NULL,NULL),(2811823,'Sierra McCormick',1997,NULL),(2811837,'Leonid Rozhetskin',1966,NULL),(2811944,'Josh Bowman',1988,NULL),(2812026,'Nathalie Emmanuel',1989,NULL),(2813963,'Nico Mirallegro',1991,NULL),(2813994,'Billy Eichner',1978,NULL),(2814511,'Christian K. Koch',NULL,NULL),(2814621,'Erin Bethea',1982,NULL),(2815444,'Marcell Rév',1984,NULL),(2816668,'Matthew Robinson',1978,NULL),(2816706,'Katherine Fairfax Wright',NULL,NULL),(2817116,'Mikio Ono',NULL,NULL),(2817446,'Kristen Baum',NULL,NULL),(2817515,'Kelly Morr',NULL,NULL),(2818965,'Penny Eizenga',NULL,NULL),(2819316,'Geoffrey Fletcher',1970,NULL),(2819401,'David Ready',NULL,NULL),(2819452,'Ramon Isao',NULL,NULL),(2819873,'Piotr Borkowski',1972,NULL),(2820211,'Christophe Barral',NULL,NULL),(2821699,'Anushka Manchanda',NULL,NULL),(2821758,'Taylor Caldwell',NULL,NULL),(2821942,'John Teske',NULL,NULL),(2822103,'Sofia Pernas',1989,NULL),(2822756,'Nicole Taylor',NULL,NULL),(2822771,'Samara Lerman',NULL,NULL),(2823045,'Julie Powell',1973,2022),(2823430,'Marie N\'Diaye',NULL,NULL),(2824501,'Rhianna Pratchett',1976,NULL),(2825203,'Christina Marie Leonard',NULL,NULL),(2826685,'Nick Montgomery',NULL,NULL),(2826999,'Tania Singer',1969,NULL),(2827255,'Jonathan Race',NULL,NULL),(2827409,'Carson Aune',1984,NULL),(2827632,'Om\'Mas Keith',NULL,NULL),(2827922,'Stefano Sardo',1972,NULL),(2828435,'Natasha Calis',1999,NULL),(2828636,'Veronica Nickel',NULL,NULL),(2828827,'Maurizio Braucci',1966,NULL),(2829737,'Gabourey Sidibe',1983,NULL),(2830113,'Chris Papavasiliou',NULL,NULL),(2830157,'Marc Dold',NULL,NULL),(2830774,'Beau Thorne',1978,NULL),(2830921,'Kyle Mac',NULL,NULL),(2831024,'Kazumi Evans',1989,NULL),(2831140,'Janae Caster',NULL,NULL),(2832695,'Deborah Ann Woll',1985,NULL),(2832703,'Matthew Zuk',NULL,NULL),(2832819,'David Levithan',NULL,NULL),(2833364,'Jordan Dykstra',1985,NULL),(2833592,'Jer Lujan',NULL,NULL),(2833612,'Terri Tatchell',NULL,NULL),(2834193,'Michael D\'Ambrosio',NULL,NULL),(2834250,'Natalie Hall',1990,NULL),(2834506,'Justin Kane',NULL,NULL),(2835616,'Dean-Charles Chapman',1997,NULL),(2835934,'Mike Demski',NULL,NULL),(2836674,'Kaiji Tang',1984,NULL),(2836676,'Michael Thelin',NULL,NULL),(2836740,'Danielle Campbell',1995,NULL),(2836875,'Frédéric Baillehaiche',NULL,NULL),(2837410,'Morgana O\'Reilly',1985,NULL),(2837567,'Ben Nichols',NULL,NULL),(2837587,'Kai-Peter Malina',1989,NULL),(2837894,'Robbie Daymond',1982,NULL),(2838016,'Ryuta Hashimoto',NULL,NULL),(2838269,'Bill Ebel',NULL,NULL),(2838869,'Eric Nagy',NULL,NULL),(2839612,'Shahin Chandrasoma',NULL,NULL),(2840020,'Sayaka Kametani',1976,NULL),(2840491,'Sakurako Kimino',NULL,NULL),(2840651,'Vivien Muller-Rommel',NULL,NULL),(2840794,'Robyn Goodman',1947,NULL),(2841936,'Mati Diop',1982,NULL),(2841995,'Michael C. Pizzuto',NULL,NULL),(2842005,'Hero Fiennes Tiffin',1997,NULL),(2842232,'Ashley Zukerman',1983,NULL),(2842978,'Baljeet Rai',NULL,NULL),(2843100,'Crista Alfaiate',NULL,NULL),(2843290,'Ben Milliken',NULL,NULL),(2843513,'Alexandre Bailly',NULL,NULL),(2844368,'Nicolas Landman-Burghardt',NULL,NULL),(2844448,'Kristen Anderson-Lopez',1972,NULL),(2845534,'Andrew Edison',NULL,NULL),(2845583,'André Batista',NULL,NULL),(2845631,'David Oakes',1983,NULL),(2845865,'David Carranza',NULL,NULL),(2845889,'Federico Silva',NULL,NULL),(2846582,'Stuart Luth',NULL,NULL),(2846804,'Matylda Baczynska',1984,NULL),(2847097,'Stéphan Roelants',NULL,NULL),(2847370,'Lisa Joy',1972,NULL),(2847585,'Emerzon Texon',NULL,NULL),(2847812,'Pio Marmaï',1984,NULL),(2848533,'Ken Bevel',NULL,NULL),(2848787,'Stephen Dervan',NULL,NULL),(2849171,'Chris Crane',1983,NULL),(2849655,'Henry Gayden',NULL,NULL),(2849998,'Jordan Gavaris',1989,NULL),(2850112,'Bridget Stokes',NULL,NULL),(2850179,'Andrea Farri',1982,NULL),(2850440,'Bilal Lashari',NULL,NULL),(2850448,'Alan R. Milligan',NULL,NULL),(2850785,'Sam Pitman',NULL,NULL),(2851530,'Dane DeHaan',NULL,NULL),(2852306,'Damian Montano',NULL,NULL),(2852460,'John Woldenberg',NULL,NULL),(2853220,'Jimmy Chi',1948,2017),(2853261,'Popi Avraam',NULL,NULL),(2853516,'Leslye Headland',1980,NULL),(2853542,'André Pellenz',NULL,NULL),(2853724,'Beata Harju',1990,NULL),(2854112,'Kiana Madeira',1992,NULL),(2854393,'Pedro Henrique',NULL,NULL),(2854670,'Tessa Bell',NULL,NULL),(2854747,'Chelsea Stardust',NULL,NULL),(2854765,'Michael McPhee',NULL,NULL),(2854802,'Angelababy',1989,NULL),(2855195,'Sveinn Ólafur Gunnarsson',NULL,NULL),(2855608,'Martin McGartland',NULL,NULL),(2855886,'David Grumbach',1976,NULL),(2856727,'Eleanor Wilson',NULL,NULL),(2857065,'Ashleigh Southam',NULL,NULL),(2858333,'Justin Doescher',NULL,NULL),(2858400,'James Luscombe',NULL,NULL),(2858852,'Alex Mace',NULL,NULL),(2858875,'Sydney Sweeney',1997,NULL),(2859154,'Briana Andrade-Gomes',NULL,NULL),(2859316,'Zev Borow',NULL,NULL),(2859347,'Paul Cannon',NULL,NULL),(2859853,'Mario Maurer',1988,NULL),(2860079,'Greta Zozula',NULL,NULL),(2860379,'William Jackson Harper',1980,NULL),(2860409,'Adam Piotrowicz',NULL,NULL),(2860460,'Melody C. Roscher',NULL,NULL),(2860544,'Alex Flinn',1966,NULL),(2860858,'Dennis McNulty',NULL,NULL),(2860882,'Jeremy Gillespie',NULL,NULL),(2861119,'Jared Roylance',NULL,NULL),(2861127,'Matthew Chalmers',NULL,NULL),(2861251,'Sarah Lian',NULL,NULL),(2861303,'Manny Montana',NULL,NULL),(2862817,'Jarno Elonen',NULL,NULL),(2862844,'Harshavardhan Kulkarni',NULL,NULL),(2863097,'Cara Marcous',NULL,NULL),(2863272,'Justin Tolley',NULL,NULL),(2863638,'Kirk Pflaum',NULL,NULL),(2863655,'Pauchi Sasaki',NULL,NULL),(2863907,'Andrea Duro',1991,NULL),(2864046,'Louise Bourgoin',1981,NULL),(2864252,'Mason Gooding',1996,NULL),(2864272,'Oscar Estévez',NULL,NULL),(2865071,'Andrew Manley',NULL,NULL),(2865571,'Peter H. Gleick',NULL,NULL),(2865678,'Ziad Bakri',1980,NULL),(2866226,'Luke Snellin',1986,NULL),(2867565,'David Sardy',NULL,NULL),(2867865,'Tôru Nomaguchi',1973,NULL),(2868165,'Daniel Yelsky',1997,NULL),(2868171,'Simon Aboud',NULL,NULL),(2868383,'Nate Walcott',NULL,NULL),(2868859,'Carthew Neal',1979,NULL),(2868934,'Caitrin Rogers',NULL,NULL),(2868943,'Jonako Donley',NULL,NULL),(2869419,'Dartel McRae',NULL,NULL),(2870049,'Sharyn Pancione',NULL,NULL),(2870406,'Ian Harding',1986,NULL),(2870590,'Jolyon Coy',1985,NULL),(2870912,'Jeffrey Green',1984,NULL),(2871458,'Mike Gagerman',NULL,NULL),(2872012,'Dan Gill',1983,NULL),(2872129,'Reza Sixo Safai',NULL,NULL),(2872491,'Martin Stringer',NULL,NULL),(2873116,'Micah Fitzerman-Blue',1982,NULL),(2873161,'Monia Chokri',1983,NULL),(2873397,'Anri Okamoto',1994,NULL),(2873539,'Sarah Haskins',1979,NULL),(2874427,'Aubrey Peeples',1993,NULL),(2874732,'Chao Deng',1979,NULL),(2875233,'Parker Young',1988,NULL),(2876218,'Leo Abrahams',NULL,NULL),(2876294,'Addie Morton',NULL,NULL),(2876365,'Candy Doll',NULL,NULL),(2876788,'Kari Granlund',NULL,NULL),(2877226,'Marcus Luttrell',1975,NULL),(2877285,'Isabella Laughland',1991,NULL),(2877692,'Marc Loy',NULL,NULL),(2878043,'Piero Tirabassi',NULL,NULL),(2878278,'Daniel Tavares',NULL,NULL),(2878323,'Vanessa Chong',NULL,NULL),(2878438,'Sarah Street',NULL,NULL),(2878500,'Richard Raymond Harry Herbeck',NULL,NULL),(2879449,'Luke Tierney',NULL,NULL),(2880194,'Nicholas Weinstock',NULL,NULL),(2880385,'Brendan Canning',NULL,NULL),(2880396,'Madeleine Koehler',1895,1970),(2880943,'Liam O\'Donnell',1982,NULL),(2881176,'Thiago Chasseraux',NULL,NULL),(2881816,'Diego Torraca',NULL,NULL),(2883153,'Matt Baglio',1973,NULL),(2883176,'Mark Booker',1982,NULL),(2883649,'Benjamin Renner',NULL,NULL),(2884195,'Frida Wendel',NULL,NULL),(2884388,'Chris Sullivan',1980,NULL),(2884474,'Laura Terruso',NULL,NULL),(2885121,'Makul Wigert',NULL,NULL),(2885297,'Andres Rignell',NULL,NULL),(2885728,'Yuka Iguchi',NULL,NULL),(2885983,'Kanu Behl',1980,NULL),(2886189,'Lauren Bratman',NULL,NULL),(2886400,'Namrata Rao',NULL,NULL),(2886744,'Helena Matos',NULL,NULL),(2887908,'Laura Lippman',1959,NULL),(2888554,'Christophe Lourdelet',NULL,NULL),(2888684,'Josie Trinidad',NULL,NULL),(2889593,'Eduardo Melo',NULL,NULL),(2890357,'Kôji Nagai',NULL,NULL),(2890502,'Elin Petersdottir',NULL,NULL),(2890541,'Josh Helman',1986,NULL),(2890617,'Volker Bertelmann',1966,NULL),(2890862,'Donald Harrison Jr.',NULL,NULL),(2893410,'Hyung-deok Lee',NULL,NULL),(2893525,'Joe Conti',1985,NULL),(2894559,'Anna Soler-Pont',NULL,NULL),(2895303,'Antonio Vales',NULL,NULL),(2895884,'Maria Sadowska',1976,NULL),(2895974,'Pierre Deschamps',NULL,NULL),(2897500,'Emmanuel Jal',NULL,NULL),(2898959,'Roger Goula',NULL,NULL),(2899434,'Laurent Eyquem',NULL,NULL),(2899650,'Alex Fisher',NULL,NULL),(2899940,'John Butler',NULL,NULL),(2900004,'Maya Bankovic',NULL,NULL),(2900067,'Eleio Calascibetta',NULL,NULL),(2900314,'Ume Aoki',NULL,NULL),(2900682,'Eoghan Mac Giolla Bhríde',NULL,NULL),(2900790,'Lewis Tice',1969,2014),(2901000,'Emma Harvey',NULL,NULL),(2901230,'Hilary Rose',NULL,NULL),(2901344,'Stefania LaVie Owen',1997,NULL),(2901358,'Sherri Chung',NULL,NULL),(2902289,'Eddie Ritchard',NULL,NULL),(2902567,'Aneurin Barnard',1987,NULL),(2902972,'Lynn Barber',1944,NULL),(2903202,'Todd Kubrak',NULL,NULL),(2903342,'Evelyne Brochu',1983,NULL),(2903634,'Christian Desmares',NULL,NULL),(2903680,'Marja-Lewis Ryan',1985,NULL),(2904789,'Sophie McShera',1985,NULL),(2905562,'Daniel Barber',1965,NULL),(2905814,'Mette M. Bølstad',NULL,NULL),(2905863,'Giuseppe Trepiccione',NULL,NULL),(2905972,'Vendela Vida',1971,NULL),(2906174,'Tom Lipinski',1982,NULL),(2906578,'Nil Cardoner',1998,NULL),(2906862,'Milena Ferreira',NULL,NULL),(2907292,'Kimberly di Bonaventura',NULL,NULL),(2908128,'Akihiko Yose',NULL,NULL),(2908199,'Éric Warin',NULL,NULL),(2909214,'Dan Caddy',NULL,NULL),(2909291,'Valerie S. Del Rosario',NULL,NULL),(2909903,'Joey Carey',NULL,NULL),(2909914,'Zane Smith',NULL,NULL),(2910091,'Jared Raab',NULL,NULL),(2910622,'Devonté Hynes',NULL,NULL),(2910706,'Alberto Rodriguez',NULL,NULL),(2910808,'Amber Armstrong',NULL,NULL),(2910826,'Alan T. Coleman',1970,2021),(2911203,'Yûya Ishii',1983,NULL),(2911364,'Jason Hand',NULL,NULL),(2911659,'Miriam Klein',NULL,NULL),(2911881,'Dana DeVestern',NULL,NULL),(2913119,'Lena Waithe',1984,NULL),(2913275,'Debby Ryan',1993,NULL),(2913280,'Ashleigh Cummings',1992,NULL),(2913790,'Micah Sloat',1981,NULL),(2914059,'Leonie Benesch',1991,NULL),(2914162,'Nathan Parker',NULL,NULL),(2914250,'Ben Weinman',NULL,NULL),(2914363,'Iain Reid',NULL,NULL),(2915105,'Billy Magnussen',1985,NULL),(2915307,'M. Lo',NULL,NULL),(2915845,'Julia Camara',NULL,NULL),(2916150,'Gina Duval',NULL,NULL),(2916225,'Jena Sims',1988,NULL),(2916300,'Jeremy Slater',NULL,NULL),(2916565,'Reif Larsen',NULL,NULL),(2916570,'Rémi Chayé',1968,NULL),(2916919,'Burak Yigit',1986,NULL),(2916966,'David Ajala',1986,NULL),(2917216,'Justin Gray',NULL,NULL),(2917478,'Bader Alwazzan',NULL,NULL),(2917590,'Elarica Johnson',1989,NULL),(2917619,'Olivia Helena Sanches',NULL,NULL),(2918260,'Michael Benaroya',1981,NULL),(2918889,'Flavio Parenti',1979,NULL),(2919157,'Fred Avril',NULL,NULL),(2919190,'Tsutomu Nakamura',NULL,NULL),(2919747,'Pat Collins',NULL,NULL),(2919995,'Simon Rich',1984,NULL),(2920142,'Matthew Brown',NULL,NULL),(2920258,'Singh Hartihan Bitto',NULL,NULL),(2920533,'Keiynan Lonsdale',1991,NULL),(2920894,'Stine Ricks',NULL,NULL),(2921091,'Jeremy Jordan',1984,NULL),(2921197,'Johannes Holopainen',NULL,NULL),(2921766,'Brian Miller',NULL,NULL),(2922341,'Jiao Xu',1997,NULL),(2922439,'Willy Vlautin',NULL,NULL),(2922563,'Tim Kano',NULL,NULL),(2922750,'David Light',NULL,NULL),(2923235,'Ronny Dayag',NULL,NULL),(2924029,'Nobuhiro Nishihara',NULL,NULL),(2924187,'Dean Vanech',NULL,NULL),(2924255,'Chiyomaru Shikura',NULL,NULL),(2924413,'Yael Nahlieli',NULL,NULL),(2924636,'Si Bell',NULL,NULL),(2924645,'Ron Ben-Yishai',NULL,NULL),(2925759,'Michael McDermott',NULL,NULL),(2926263,'James Griffiths',NULL,NULL),(2926907,'Anthony Burrell',NULL,NULL),(2927679,'Karen Fischer',NULL,NULL),(2927888,'Robert Ehrenreich',NULL,NULL),(2927993,'Agustín Silva',NULL,NULL),(2928126,'Rosa Attab',NULL,NULL),(2928364,'Sebastián Silva',1979,NULL),(2928745,'Joe Birbiglia',NULL,NULL),(2929057,'Genki Kawamura',NULL,NULL),(2929774,'Danny Hansford',NULL,NULL),(2930046,'Georges Demenÿ',1850,1917),(2930317,'Philippe Gompel',NULL,NULL),(2930503,'Jack Reynor',1992,NULL),(2930918,'Petri Karra',NULL,NULL),(2931011,'Piotr Jagiello',1992,NULL),(2931190,'Laurel Vail',1981,NULL),(2931325,'Casey Neistat',1981,NULL),(2931364,'Satoshi Nakamura',NULL,NULL),(2931729,'Erica Ellis',NULL,NULL),(2932738,'Ammara Siripong',NULL,NULL),(2932868,'Yôko Hikasa',1985,NULL),(2933542,'Boyd Holbrook',1981,NULL),(2933757,'Gal Gadot',1985,NULL),(2934210,'Robert Allen Elliott',NULL,NULL),(2934300,'Thierry Robin',1958,NULL),(2934314,'Lily Collins',1989,NULL),(2934638,'Michael Auret',NULL,NULL),(2934722,'Mitsutoshi Ogura',NULL,NULL),(2934771,'Adrian Younge',NULL,NULL),(2935375,'Brook Rushton',NULL,NULL),(2935952,'Yoav Donat',1980,NULL),(2936228,'Agyness Deyn',1983,NULL),(2937056,'Hiroyuki Ueno',NULL,NULL),(2937122,'Adrian Molina',NULL,NULL),(2937341,'Eri Otoguro',1982,NULL),(2937345,'Gennie Rim',NULL,NULL),(2937719,'Bonny Clinkenbeard',1985,NULL),(2938448,'Hutch Dano',1992,NULL),(2938929,'Alba Ferrara',NULL,NULL),(2939030,'Will Brill',NULL,NULL),(2939294,'Melissa M. Lee',NULL,NULL),(2939767,'Nick Bruno',NULL,NULL),(2940072,'Harold Smith',1889,1975),(2940113,'Marie-Pierre Macia',NULL,NULL),(2940321,'David Kaplan',NULL,NULL),(2940487,'Kelsy Abbott',1985,NULL),(2940691,'Don Phillip Smith',NULL,NULL),(2940699,'Antonio Coppola',NULL,NULL),(2940781,'J. Craig Thompson',NULL,NULL),(2941165,'Erin Wasson',1982,NULL),(2941603,'Henk Brugge',NULL,NULL),(2942094,'Serge Mensink',NULL,NULL),(2942187,'Darius Marder',NULL,NULL),(2942848,'Justin Begnaud',NULL,NULL),(2943141,'Nathan M. Miller',NULL,NULL),(2943572,'Nick Urata',NULL,NULL),(2944240,'Tess Amorim',1994,NULL),(2944939,'Caryn Peterson',NULL,NULL),(2945270,'Anand Tiwari',1983,NULL),(2945690,'Tripper Clancy',NULL,NULL),(2946194,'Yusuf Pirhasan',NULL,NULL),(2946490,'Adam Anders',NULL,NULL),(2946516,'Claire Foy',1984,NULL),(2946712,'Kristyan Ferrer',1995,NULL),(2946760,'Jesús Meza',NULL,NULL),(2946831,'Nicole Eastman',NULL,NULL),(2947104,'Marcela Ursu',NULL,NULL),(2947416,'Bret Kofford',NULL,NULL),(2947553,'Na Hong-jin',1974,NULL),(2947761,'Michelle Wildgen',NULL,NULL),(2948025,'Aimee Carrero',1988,NULL),(2948264,'Roya Akbari',NULL,NULL),(2948912,'Ivy Levan',1987,NULL),(2949993,'Vincent Messina',NULL,NULL),(2949998,'Daniel Greco',NULL,NULL),(2950059,'Philippe Boutin',NULL,NULL),(2950264,'Dan Cohen',NULL,NULL),(2950763,'Yoshikazu Beniya',NULL,NULL),(2951052,'Kevin Wilson',NULL,NULL),(2951163,'Maria Marussig',NULL,NULL),(2951215,'Toshio Iizuka',NULL,NULL),(2951613,'Gilles Paris',NULL,NULL),(2951768,'Freida Pinto',1984,NULL),(2951803,'Yûichi Terao',NULL,NULL),(2951879,'Marcus Sakey',NULL,NULL),(2951942,'Jim R. Coleman',NULL,NULL),(2952155,'Watty Piper',NULL,NULL),(2952284,'Ryan J. Condal',NULL,NULL),(2952321,'Moisés Cosío',NULL,NULL),(2952467,'Andy Buckley',1965,NULL),(2953042,'Gi-tae Kim',NULL,NULL),(2953208,'Martin Swabey',NULL,NULL),(2953537,'Katy Perry',1984,NULL),(2953573,'Robert Capron',1998,NULL),(2953883,'Fatima Montes',NULL,NULL),(2953984,'Pedro Borges',NULL,NULL),(2954155,'Nino Zagaroli',NULL,NULL),(2954178,'Pier-Luc Funk',NULL,NULL),(2954322,'Simon Lewis',NULL,NULL),(2954373,'Gregory Burke',NULL,NULL),(2954422,'Alex Prud\'homme',NULL,NULL),(2954597,'Aryana Engineer',2001,NULL),(2954641,'Wordsworth Donisthorpe',1847,1914),(2954652,'Olivier Kaempfer',1981,NULL),(2954970,'Lew Schwartz',1926,2011),(2955013,'Liam Hemsworth',1990,NULL),(2955107,'Raj Kumar Gupta',1977,NULL),(2955286,'William Carr Crofts',1846,1894),(2955551,'J. Van Auken',1988,NULL),(2955597,'Iliza Shlesinger',1983,NULL),(2956436,'Joshua Pruett',1978,NULL),(2956456,'David Haydn',NULL,NULL),(2957324,'Alina Levshin',1984,NULL),(2957490,'Harvey Guillén',1990,NULL),(2957696,'François Arnaud',1985,NULL),(2957717,'Iris Apatow',2002,NULL),(2957900,'Ambrose Roche',NULL,NULL),(2958492,'Ryan McHenry',1987,2015),(2959356,'Stéphane Moïssakis',NULL,NULL),(2959497,'Tim Fehlbaum',1982,NULL),(2959701,'Andrea Portes',NULL,NULL),(2959880,'Colin Morgan',1986,NULL),(2960231,'Tita Arroyo',NULL,NULL),(2961396,'Efraín Solís',NULL,NULL),(2961401,'Marino Ballón',NULL,NULL),(2961544,'Shivani Rawat',NULL,NULL),(2962085,'Cristina Clemente',1977,NULL),(2962268,'Mirei Kiritani',1989,NULL),(2962353,'Pom Klementieff',1986,NULL),(2962942,'Nicolas Fructus',NULL,NULL),(2963250,'Raphaël Rocher',NULL,NULL),(2963760,'Russell M. Haeuser',NULL,NULL),(2963873,'Victor Gojcaj',1983,NULL),(2963912,'Aimee Lynn Barneburg',NULL,NULL),(2963956,'Natsuna',1989,NULL),(2964015,'Thom Green',NULL,NULL),(2964162,'Minako Kotobuki',1991,NULL),(2964567,'Niles Fitch',2001,NULL),(2964642,'Nick Sagar',NULL,NULL),(2964934,'Romain Rousseau',NULL,NULL),(2965079,'Caitlin Carmichael',2004,NULL),(2965226,'George Young',NULL,NULL),(2965563,'Anna Katharina Schwabroh',1979,NULL),(2965970,'Aseem Chhabra',NULL,NULL),(2966078,'Tomoaki Maeno',1982,NULL),(2966762,'Bhavana Nagulapally',NULL,NULL),(2966857,'Pierre Leduc',NULL,NULL),(2967271,'Boris Bojadzhiev',1979,NULL),(2967514,'Jaymay',NULL,NULL),(2967574,'Matt Bondurant',NULL,NULL),(2967675,'Angeli Macfarlane',NULL,NULL),(2968351,'Lina Leandersson',1995,NULL),(2968765,'Kåre Hedebrant',1995,NULL),(2968773,'Guillaume Baillargeon',NULL,NULL),(2969035,'Stuart Morley',NULL,NULL),(2970418,'David Grann',NULL,NULL),(2971227,'Julia Cho',NULL,NULL),(2971548,'Bruna González',NULL,NULL),(2972328,'Mounia Meddour',1978,NULL),(2972478,'Julia Voth',1985,NULL),(2972845,'Agnes Trincal',NULL,NULL),(2972864,'Jared Stern',NULL,NULL),(2972954,'Jason McCormick',NULL,NULL),(2973253,'James R. Hansen',NULL,NULL),(2973326,'Daren Kagasoff',1987,NULL),(2973459,'Thomas McDonell',1986,NULL),(2973494,'Juana Collignon',NULL,NULL),(2973712,'Jordan Nagai',2000,NULL),(2973791,'AJ Meijer',NULL,NULL),(2973991,'Anne Paulicevich',NULL,NULL),(2974098,'The Phoenix Foundation',NULL,NULL),(2974148,'Conrad Wedde',NULL,NULL),(2974384,'Won-Chan Hong',NULL,NULL),(2974419,'Kyle Jarrow',1979,NULL),(2974534,'Guangjie Li',1981,NULL),(2974640,'Samuel Schneider',1995,NULL),(2974943,'P.J. Megaw',NULL,NULL),(2975962,'Alberto Ammann',1978,NULL),(2976232,'Andreas Öhman',NULL,NULL),(2976492,'Aoi Yûki',1992,NULL),(2976580,'Jessie Buckley',1989,NULL),(2976693,'Megumi Nakajima',1989,NULL),(2976806,'Jamie Hannigan',NULL,NULL),(2976830,'Harriet Dyer',1988,NULL),(2976916,'Kôji Seto',1988,NULL),(2977380,'Dannielle Wheeler',NULL,NULL),(2977461,'Saori Hayami',1991,NULL),(2977474,'Eun-kyo Park',NULL,NULL),(2978148,'Sydney Freeland',1980,NULL),(2979453,'Brent Bonacorso',NULL,NULL),(2979684,'Elle-Máijá Tailfeathers',NULL,NULL),(2980861,'Kim Sherman',NULL,NULL),(2981082,'Anders Holm',1981,NULL),(2981170,'Crystle Stewart',1981,NULL),(2982186,'Alan Glynn',NULL,NULL),(2982324,'Anthony Espina',1989,NULL),(2983515,'Adi Cohen',1970,NULL),(2983641,'Thabo Malema',NULL,NULL),(2984444,'Roman Kantor',NULL,NULL),(2984738,'Caroline Anglade',1982,NULL),(2985299,'Madhu Mantena Varma',1975,NULL),(2985917,'Funda Eryigit',1984,NULL),(2985952,'Antony Johnston',NULL,NULL),(2986346,'Daniel Genoud',NULL,NULL),(2986419,'John Wax',NULL,NULL),(2986811,'John Suits',1983,NULL),(2986854,'William Gaggins',NULL,NULL),(2987278,'Ary Abittan',1974,NULL),(2987726,'Shim Eun-kyung',1994,NULL),(2987926,'Subhadra Mahajan',NULL,NULL),(2988542,'Ian Lloyd Anderson',NULL,NULL),(2988802,'Tom Monte',NULL,NULL),(2988845,'Paul China',1981,NULL),(2989239,'Lisa Hagmeister',1979,NULL),(2989608,'Bobby K. Richardson',NULL,NULL),(2989873,'Daniel Henshall',1982,NULL),(2990364,'Kana Tsugihara',NULL,NULL),(2990531,'Sauvane Delanoë',NULL,NULL),(2991024,'Rona Lipaz-Michael',NULL,NULL),(2992029,'Brian McGreevy',NULL,NULL),(2992079,'David Schlachtenhaufen',1984,NULL),(2992287,'Sohail Sen',NULL,NULL),(2992307,'Salvatore Abbruzzese',NULL,NULL),(2993012,'Anna Diop',1988,NULL),(2993136,'Max Clement',NULL,NULL),(2993496,'Sebastian Aguirre',NULL,NULL),(2993517,'Meredith Hagner',1987,NULL),(2993564,'Tobias Deml',1989,NULL),(2993565,'David Koppell',NULL,NULL),(2993666,'Bruno Duarte',NULL,NULL),(2994180,'James Killian',NULL,NULL),(2994968,'Lasse Marhaug',NULL,NULL),(2995437,'Kristine Songco',1985,NULL),(2996954,'Nic Sheff',1982,NULL),(2996966,'Juraj Lehotsky',1975,NULL),(2997229,'Tony Burgess',NULL,NULL),(2997310,'David Sheff',1955,NULL),(2997472,'Libby Cuenin',NULL,NULL),(2997602,'Megan Metzger',NULL,NULL),(2998106,'Jan Melis',1972,NULL),(2998321,'Sophie Lowe',NULL,NULL),(2998667,'Eric Bergemann',NULL,NULL),(2999531,'Lisa Cunningham',NULL,NULL),(2999868,'Rina Hidaka',NULL,NULL),(3002063,'Luke Ciarrocchi',NULL,NULL),(3002243,'Helen Woigk',1991,NULL),(3002376,'Norman Campbell',NULL,NULL),(3002622,'Lindsay Shapero',NULL,NULL),(3002919,'Blake Harrison',1985,NULL),(3003090,'Firat Yukselir',1981,NULL),(3003512,'Marco Colombo',NULL,NULL),(3004433,'Joey Katsaros',NULL,NULL),(3004527,'Lynn Vincent',NULL,NULL),(3004592,'Frank Barhydt',NULL,NULL),(3004745,'Andrew Cole-Bulgin',NULL,NULL),(3005281,'Ed Glauser',NULL,NULL),(3005544,'James Rolfe',1980,NULL),(3006818,'Lio Tipton',1988,NULL),(3006960,'Danny Gabai',NULL,NULL),(3007114,'Aoi Nakamura',1991,NULL),(3007784,'Dave Klotz',NULL,NULL),(3008608,'Bridget Everett',1972,NULL),(3008853,'Junfeng Boo',1983,NULL),(3009232,'Ezra Miller',1992,NULL),(3009559,'Peter Danner',NULL,NULL),(3009594,'Oaklee Pendergast',2004,NULL),(3009751,'Melodie Krieger',NULL,NULL),(3010524,'Christopher Willis',NULL,NULL),(3010539,'Otmar Penker',NULL,NULL),(3010926,'Bradley James',1983,NULL),(3011011,'Jimmy Chin',1973,NULL),(3011132,'Kai Inowaki',1995,NULL),(3011335,'John Paterson',NULL,NULL),(3011350,'Ma Dong-seok',1971,NULL),(3011547,'Barbara Marshall',NULL,NULL),(3011554,'Leif Edlund',NULL,NULL),(3011601,'Aurélia Grossmann',NULL,NULL),(3012273,'Alexandra Essoe',NULL,NULL),(3013105,'Han-young Kang',NULL,NULL),(3013229,'Ann An',NULL,NULL),(3013376,'Simone Sacchettino',NULL,NULL),(3013970,'Jessika Williams',NULL,NULL),(3014031,'Rachel Brosnahan',1990,NULL),(3014075,'Adam Sollis',1992,NULL),(3014722,'Bridget Savage Cole',NULL,NULL),(3014840,'Emily Alyn Lind',NULL,NULL),(3014863,'Jean-Bernard Marlin',NULL,NULL),(3014867,'Daniel Vincent Gordh',NULL,NULL),(3015337,'Scott Seeke',NULL,NULL),(3015467,'Mickey Rapkin',NULL,NULL),(3015482,'Kamilla Hodol',NULL,NULL),(3015807,'Ben Baudhuin',NULL,NULL),(3015968,'Mary Ann Van Graven',NULL,NULL),(3016089,'Hannah Pearl Utt',NULL,NULL),(3016367,'Tim Ziesmer',NULL,NULL),(3016585,'Jesse Holland',NULL,NULL),(3016653,'Carolina Bang',1985,NULL),(3017255,'Josh Penn',NULL,NULL),(3017331,'Satomi Satô',NULL,NULL),(3017611,'Levy Easterly',NULL,NULL),(3017670,'David Harrower',NULL,NULL),(3017674,'Lisa Myers',NULL,NULL),(3017782,'Maximianno Cobra',1969,NULL),(3017833,'Manuel Camino',NULL,NULL),(3017935,'Lowell Landes',NULL,NULL),(3018638,'Fritz Myers',NULL,NULL),(3018796,'Celina Jade',1985,NULL),(3018890,'Sam Kadi',NULL,NULL),(3019174,'Anna Platt',NULL,NULL),(3019183,'Bebe Cave',1997,NULL),(3019636,'Alvina Wong',NULL,NULL),(3019865,'Alex Berger',NULL,NULL),(3019943,'Greer Simpkin',NULL,NULL),(3019971,'Alana Gordillo',NULL,NULL),(3020280,'Rebecca Henderson',1980,NULL),(3020713,'Simon Bird',1984,NULL),(3020927,'Fung Lam',NULL,NULL),(3021251,'Kazumasa Hashimoto',NULL,NULL),(3021346,'Jérémy Clapin',1974,NULL),(3021633,'Norton Herrick',NULL,NULL),(3022040,'Florencia Di Concilio',1979,NULL),(3022504,'Joe Thomas',1983,NULL),(3022531,'Stefan Eichenberger',1984,NULL),(3022813,'Kaoru Matsuzaki',NULL,NULL),(3023008,'Nailia Harzoune',1990,NULL),(3023628,'Toby Finlay',NULL,NULL),(3024530,'Reda Kateb',1977,NULL),(3024712,'Chris Zylka',1985,NULL),(3024970,'John T. Wright',NULL,NULL),(3025407,'Jenny Allford',NULL,NULL),(3026060,'András Tóth',NULL,NULL),(3026084,'Karim Ait M\'Hand',NULL,NULL),(3026521,'Cyril Roy',NULL,NULL),(3026834,'Jonas Hoff Oftebro',1996,NULL),(3026907,'Henry Saine',NULL,NULL),(3027401,'John Hudson Messerall',NULL,NULL),(3028383,'Jean Duhamel',NULL,NULL),(3028403,'Gunther Weiss',NULL,NULL),(3028768,'Clio Chiang',NULL,NULL),(3028820,'Mowg',NULL,NULL),(3028961,'Paris P. Pickard',NULL,NULL),(3029076,'Peter Ohrt',NULL,NULL),(3029144,'Joe Taslim',1981,NULL),(3029372,'Andrew Barrer',NULL,NULL),(3029723,'Carol Hughes',NULL,NULL),(3029810,'Mitsutaka Hirota',NULL,NULL),(3030690,'Li-ting Tseng',NULL,NULL),(3030961,'David Peace',1967,NULL),(3031063,'Katherine McNamara',NULL,NULL),(3031425,'Daphne Gabriel',NULL,NULL),(3032116,'Hannah Pillemer',NULL,NULL),(3032208,'Eugénie Grandval',NULL,NULL),(3032664,'Amit Trivedi',1979,NULL),(3032715,'Katy Barker',NULL,NULL),(3032955,'Sonya Di Rienzo',NULL,NULL),(3032965,'Siddharth Roy Kapur',1974,NULL),(3033378,'Joséphine de La Baume',1984,NULL),(3033474,'Avery Duff',1950,2019),(3033686,'Eric Boisset',NULL,NULL),(3034178,'Desiree Akhavan',1984,NULL),(3034370,'Gabriel Lacerda',NULL,NULL),(3034451,'Adam Hendricks',NULL,NULL),(3034501,'Natalia Dyer',1995,NULL),(3034663,'Michael Berliner',1985,NULL),(3034881,'Sunita Gowariker',NULL,NULL),(3034977,'Samara Weaving',1992,NULL),(3035083,'Fanny Burdino',NULL,NULL),(3035236,'Vasan Bala',NULL,NULL),(3035341,'Yishu Yang',NULL,NULL),(3035726,'Joachim Levy',NULL,NULL),(3035970,'Francisco Pérez Gandul',1956,NULL),(3036348,'Gernot Gricksch',1964,NULL),(3036377,'Nick McKinlay',1989,NULL),(3036436,'Vinicio Marchioni',1975,NULL),(3036914,'Arden Cho',1985,NULL),(3036925,'Greta Fernández',1995,NULL),(3037068,'Tobias Iaconis',NULL,NULL),(3037108,'Piers McGrail',NULL,NULL),(3037333,'Manie Malone',NULL,NULL),(3037341,'James Graham',1982,NULL),(3037403,'Elizabeth Snoderly',NULL,NULL),(3037505,'Miranda Bodenhofer',1990,NULL),(3037833,'Eloise Mumford',1986,NULL),(3037896,'Luke Norris',1985,NULL),(3038523,'Rob Speranza',NULL,NULL),(3039141,'Bob Wells',NULL,NULL),(3039234,'Gaëtan David',NULL,NULL),(3040331,'Micaela Sole',NULL,NULL),(3040960,'Matthew Budman',NULL,NULL),(3041056,'Christian Friedel',1979,NULL),(3041621,'Erich Lane',NULL,NULL),(3041648,'Lara Robinson',1998,NULL),(3041653,'Sydney Wade',2002,NULL),(3041988,'Hans Escher',NULL,NULL),(3042028,'Bruno Samper',NULL,NULL),(3042259,'Sebastián Aguirre',NULL,NULL),(3042403,'Clifford Bañagale',NULL,NULL),(3042546,'Kevin Lehane',NULL,NULL),(3042755,'Thomas Middleditch',1982,NULL),(3042857,'Rocco Pierini',NULL,NULL),(3043128,'Rachel Smith',NULL,NULL),(3043279,'Vicky Krieps',1983,NULL),(3043504,'Kristina Buozyte',1982,NULL),(3043818,'Jonathan Eirich',NULL,NULL),(3043830,'Ieva Norviliene',NULL,NULL),(3044084,'Hayley MacFarlane',NULL,NULL),(3044095,'Marn Davies',NULL,NULL),(3044268,'Jay Wadley',NULL,NULL),(3045440,'Emily Carmichael',1982,NULL),(3045814,'John E. Regan',NULL,NULL),(3046419,'Sophia Takal',NULL,NULL),(3046705,'Lucy Walters',NULL,NULL),(3047077,'Nele Trebs',1999,NULL),(3048048,'Manuel H. Da Silva',NULL,NULL),(3048050,'Sara Canning',1987,NULL),(3049403,'Fumi Nikaidô',1994,NULL),(3049533,'Takashi Nakamura',NULL,NULL),(3049642,'Diane Da Silva',NULL,NULL),(3050429,'Tsutomu Takahashi',1978,NULL),(3051028,'Ryan Mitts',NULL,NULL),(3051240,'Paul Lombardi',1959,1991),(3051269,'Kyle Forester',NULL,NULL),(3051957,'Mila Rozanova',NULL,NULL),(3052061,'Igor Khripunov',1980,NULL),(3052130,'Michael Maher',NULL,NULL),(3053132,'Lex Lutzus',NULL,NULL),(3053272,'Laurence Rickard',NULL,NULL),(3053338,'Margot Robbie',1990,NULL),(3053444,'Steve Gan',NULL,NULL),(3053485,'Saun Santipreecha',NULL,NULL),(3054265,'Nedy John Cross',NULL,NULL),(3054468,'Nic Postiglione',1985,NULL),(3054665,'Swastika Mukherjee',1980,NULL),(3056432,'Blair Mowat',NULL,NULL),(3056571,'Warwick',NULL,NULL),(3056937,'Nerea Camacho',1996,NULL),(3057402,'Bee Vang',1991,NULL),(3057987,'Lawrence White',NULL,NULL),(3058674,'TOTO',NULL,NULL),(3059183,'Jon Hamlin',NULL,NULL),(3059225,'Justine Gendron',1985,NULL),(3059438,'Coralie Vanderlinden',NULL,NULL),(3059564,'Lane \'Roc\' Williams',NULL,NULL),(3059726,'Aidan Feore',NULL,NULL),(3060115,'Grímar Jónsson',NULL,NULL),(3060213,'Diana Franco Galindo',NULL,NULL),(3060479,'Nnamdi Asomugha',1981,NULL),(3060489,'Catherine Conet',NULL,NULL),(3062739,'Jean Louise O\'Sullivan',NULL,NULL),(3062909,'Kazuhiro Hirose',NULL,NULL),(3063003,'Maarten Stevenson',NULL,NULL),(3063482,'Jonah Delso',NULL,NULL),(3065255,'Milan Chakraborty',1978,NULL),(3065267,'David Hinojosa',NULL,NULL),(3065683,'Masahiro Harada',NULL,NULL),(3065830,'Masahito Soda',NULL,NULL),(3065862,'Adar Beck',NULL,NULL),(3065891,'Kazuhiko Yusa',NULL,NULL),(3065956,'Renuka Kunzru',NULL,NULL),(3066216,'Hiroyasu Yaguchi',NULL,NULL),(3066296,'Katsuichi Nagashima',NULL,NULL),(3066399,'Jillian Schlesinger',NULL,NULL),(3066492,'Jennifer Kaytin Robinson',1988,NULL),(3066532,'Adam Ray',NULL,NULL),(3067972,'Elijah Cummings',1951,2019),(3068550,'Vineet Jain',NULL,NULL),(3068876,'James McCarthy',NULL,NULL),(3069399,'Roberto Patino',NULL,NULL),(3069408,'Eric Pearson',NULL,NULL),(3069604,'Kendrick Sampson',1988,NULL),(3069619,'Steven Hauck',NULL,NULL),(3069626,'Marcio Nigro',NULL,NULL),(3069650,'Jodie Comer',1993,NULL),(3070614,'Dmitry Povolotsky',NULL,NULL),(3070810,'Brett D. Thompson',1972,NULL),(3071117,'Sam Graham',NULL,NULL),(3072211,'Sophie Guérin',NULL,NULL),(3072243,'Hayley Kiyoko',1991,NULL),(3073428,'Elias Edraki',1984,NULL),(3074201,'Gastón Pavlovich',NULL,NULL),(3075802,'Stevin Espinoza',NULL,NULL),(3075905,'Kevin Finn',NULL,NULL),(3076907,'Janelle Landers',NULL,NULL),(3076994,'Bill Redding',NULL,NULL),(3077071,'Kathryn Prescott',1991,NULL),(3077219,'Lara Adkins',1980,NULL),(3077617,'Evgenia Peretz',NULL,NULL),(3077718,'Daniel B. Iske',1980,NULL),(3077748,'Plínio Profeta',NULL,NULL),(3077942,'Scott Coleman',NULL,NULL),(3078006,'Alex Lebovici',NULL,NULL),(3078140,'Grant Sputore',NULL,NULL),(3078352,'Mike Delange',NULL,NULL),(3078372,'Elizabeth Lee',NULL,NULL),(3078531,'Wendy Iske',1981,NULL),(3078554,'Chelsie Hartness',NULL,NULL),(3078572,'Angélique Kommer',NULL,NULL),(3078928,'Jeffrey Soros',NULL,NULL),(3078932,'Lady Gaga',1986,NULL),(3079117,'Robert Kirkman',1978,NULL),(3079574,'Bernie Larsen',NULL,NULL),(3079852,'Adam Bricker',NULL,NULL),(3080055,'John Adams',NULL,NULL),(3080706,'Julia Baird',1947,NULL),(3080981,'Sarah Habel',1982,NULL),(3081403,'Pedro Piedra',1978,NULL),(3081796,'Steven Yeun',1983,NULL),(3082170,'Chigi Kanbe',NULL,NULL),(3082341,'Eugene Cordero',NULL,NULL),(3082630,'Michelle Knudsen',NULL,NULL),(3083922,'Venecia Troncoso',NULL,NULL),(3084347,'Ryan Matthieu Smith',NULL,NULL),(3084575,'Thomas Cobb',NULL,NULL),(3084615,'Shinya Niiro',NULL,NULL),(3086207,'Karen Harnisch',NULL,NULL),(3086235,'Katie Jarvis',1991,NULL),(3086374,'Zhou Lan',NULL,NULL),(3086405,'Lucy',NULL,NULL),(3087060,'Lizhen Ma',NULL,NULL),(3087076,'Pedro Sotero',NULL,NULL),(3087358,'Anna Ishibashi',1992,NULL),(3087441,'Brian Watanabe',NULL,NULL),(3087552,'Fouad Mikati',NULL,NULL),(3087728,'Anushka Sharma',1988,NULL),(3087740,'Jonathan Ortega',NULL,NULL),(3087954,'Taylor Gianotas',NULL,NULL),(3088151,'Louis Clichy',NULL,NULL),(3089840,'Simon Garrity',NULL,NULL),(3089881,'Kaitlyn Laziza',NULL,NULL),(3090510,'D.J. Stipsen',NULL,NULL),(3091051,'Justine Ciarrocchi',NULL,NULL),(3091091,'Nora Oliver',NULL,NULL),(3091255,'Jason Pagan',NULL,NULL),(3091498,'Lara Pulver',1980,NULL),(3091610,'Savanah Wiltfong',NULL,NULL),(3091740,'Brian Darwas',NULL,NULL),(3091777,'Josh Brener',NULL,NULL),(3092267,'Jennifer Carchietta',NULL,NULL),(3092414,'Adam Cozad',NULL,NULL),(3092471,'Marwan Kenzari',1983,NULL),(3093026,'Damon Daunno',1984,NULL),(3093424,'Andrea Leone',1967,NULL),(3093662,'Jeong-nam Choi',NULL,NULL),(3093768,'Anna Franziska Jaeger',1996,NULL),(3093997,'John Baker',NULL,NULL),(3094145,'Tech Akarapol',NULL,NULL),(3094339,'Aidan Bristow',NULL,NULL),(3094496,'Osnat Handelsman-Keren',NULL,NULL),(3094695,'Simon Price',NULL,NULL),(3094966,'Soraya Omar-Scego',NULL,NULL),(3095307,'Tim Macy',NULL,NULL),(3095562,'Tuppence Middleton',NULL,NULL),(3095723,'Lenny Platt',1984,NULL),(3095757,'Ashley Duggan Smith',NULL,NULL),(3095828,'Matthew Carrier',NULL,NULL),(3095831,'Jeff Dare',NULL,NULL),(3095836,'Lewis Fraga',NULL,NULL),(3096041,'Alex Wayman',NULL,NULL),(3096061,'Doug Mand',1981,NULL),(3096086,'David Campbell',NULL,NULL),(3096113,'Josh Ehrhart',NULL,NULL),(3096179,'John H. Lang',NULL,NULL),(3096229,'Stefan Lindgren',NULL,NULL),(3096488,'Nellie Boonman',NULL,NULL),(3096530,'Kevin Altier',NULL,NULL),(3097752,'Aleksandar Hemon',1964,NULL),(3097960,'Jon Schellenger',NULL,NULL),(3098525,'Salehuddin Abu Bakar',NULL,NULL),(3098724,'Andy W. Meyer',NULL,NULL),(3099754,'Jack Whitehall',1988,NULL),(3099844,'Dilara Horuz',1994,NULL),(3099907,'Sung Hyeon Oh',NULL,NULL),(3099952,'Mark Fasano',NULL,NULL),(3100084,'Liza Antonova',NULL,NULL),(3100210,'Anthony Cirillo',NULL,NULL),(3100933,'Mika Abdalla',NULL,NULL),(3101039,'Harry Cook',1991,NULL),(3101670,'Damon Buckley',NULL,NULL),(3101955,'Devin Landin',1981,NULL),(3102070,'Michael Schindegger',NULL,NULL),(3102689,'Sari Lennick',1975,NULL),(3102998,'Bo Burnham',1990,NULL),(3103898,'Grazia Cesarini Sforza',1918,2014),(3103905,'Simone Riccardini',NULL,NULL),(3104063,'Jahvel Hall',NULL,NULL),(3104382,'Kazuhisa Kitajima',NULL,NULL),(3104455,'Valeria De Franciscis',1915,2014),(3104983,'Maria Calì',1921,NULL),(3105120,'Courtney Andujar',NULL,NULL),(3105232,'Silje Nordseth',NULL,NULL),(3105515,'Marina Cacciotti',1923,NULL),(3106028,'Louis-Julien Petit',NULL,NULL),(3107294,'Kasia Szarek',NULL,NULL),(3107498,'Dale Pavinski',NULL,NULL),(3107843,'Nicolas Desmaison',NULL,NULL),(3107870,'David James',NULL,NULL),(3108153,'Tsutomu Hanabusa',NULL,NULL),(3108341,'Vu Nguyen',1971,NULL),(3108675,'Toby Wallace',1995,NULL),(3108838,'Ju-Lung Ma',1939,2019),(3109300,'Tia Williams',NULL,NULL),(3109770,'Neeraj Pandey',1973,NULL),(3109964,'Brian Tyree Henry',1982,NULL),(3110651,'Michael Hardt',NULL,NULL),(3110693,'Judith Butler',1956,NULL),(3110756,'Miranda Hennessy',NULL,NULL),(3110959,'Mari Sakurai',1985,NULL),(3111082,'John Davies',NULL,NULL),(3111149,'Dan Schoffer',NULL,NULL),(3111373,'Steve Lantz',NULL,NULL),(3111796,'Katrina Hadley',NULL,NULL),(3111864,'Warren Maxwell',NULL,NULL),(3111874,'Laura Miyata',NULL,NULL),(3111937,'Melissa Patterson',NULL,NULL),(3112301,'Yasmine Gomez',NULL,NULL),(3112508,'Amanda Leighton',1993,NULL),(3113260,'Adam Burke',NULL,NULL),(3114649,'Charlotte Le Bon',1986,NULL),(3114778,'Kas Graham',NULL,NULL),(3114945,'Maria Grazia Di Meo',NULL,NULL),(3115493,'Ben Schnetzer',NULL,NULL),(3115641,'Chris O\'Brien',NULL,NULL),(3115704,'Ahney Her',NULL,NULL),(3115934,'Morgan Davies',2001,NULL),(3115937,'Helge Sasse',NULL,NULL),(3116043,'Paul Jensen',NULL,NULL),(3116399,'William Boodell',NULL,NULL),(3116483,'Michael Moynihan',NULL,NULL),(3117093,'Keith Parker',NULL,NULL),(3117593,'Edgar Evans',NULL,NULL),(3117600,'Henry R. Bowers',1883,1912),(3117660,'Lawrence E.G. Oates',1880,1912),(3117666,'Edward Watts',NULL,NULL),(3117836,'Aaron Tveit',1983,NULL),(3117965,'Marleen Slot',NULL,NULL),(3118087,'Edward Adrian Wilson',1872,1912),(3118508,'Svet Rouskov',NULL,NULL),(3118974,'Kim Reed',NULL,NULL),(3119194,'Nancy Grant',NULL,NULL),(3119353,'Elizabeth Redleaf',NULL,NULL),(3119431,'Jessie Keyt',1973,NULL),(3119840,'Austin Abke',NULL,NULL),(3119894,'Melih Selcuk',1984,NULL),(3120115,'Ladislav Sedivý',1991,NULL),(3120323,'Romana Vargová',NULL,NULL),(3120328,'Anna McLeish',NULL,NULL),(3120448,'Marko Skop',1974,NULL),(3120545,'Frantisek Krähenbiel',NULL,NULL),(3120627,'Nicholas Davies',NULL,NULL),(3120712,'Lukás Bonk',NULL,NULL),(3120821,'Tyler Thompson',NULL,NULL),(3121054,'Juliette Lepoutre',NULL,NULL),(3121257,'Blaire Ko',NULL,NULL),(3121384,'Becky G',1997,NULL),(3121389,'Theresa Navarro',NULL,NULL),(3121755,'Rachael O\'Kane',NULL,NULL),(3121883,'Benjamin China',1981,NULL),(3122001,'Allison Friedman',NULL,NULL),(3122277,'Simon Smith',NULL,NULL),(3123612,'Jon Spaihts',NULL,NULL),(3123922,'Maya Amsellem',NULL,NULL),(3124294,'Isabel Peña',NULL,NULL),(3124542,'David Palmer',NULL,NULL),(3125086,'Mitchell Kaplan',NULL,NULL),(3125143,'Annie Barrows',NULL,NULL),(3125234,'Mikel Cee Karlsson',NULL,NULL),(3125367,'Wolfgang Mueller',NULL,NULL),(3125462,'Mary Ann Shaffer',NULL,NULL),(3125810,'Annie Townsend',NULL,NULL),(3125855,'Akina Minami',NULL,NULL),(3125992,'Xanthe Huynh',1987,NULL),(3126241,'Codie Elaine Oliver',1983,NULL),(3127008,'Guillermo Estrella',NULL,NULL),(3127051,'Olivia Holt',1997,NULL),(3127578,'Ya-che Yang',1971,NULL),(3128465,'Sam Graydon',NULL,NULL),(3128535,'Mitakshara Kumar',1984,NULL),(3129085,'Fernanda Del Nido',1974,NULL),(3129512,'Matt Cook',1984,NULL),(3130003,'Katharina Marie Schubert',1977,NULL),(3130063,'Natalya Rudakova',1985,NULL),(3130311,'Ryan Hawley',NULL,NULL),(3130746,'Chas Allen',NULL,NULL),(3131921,'Brian Allgeier',1971,NULL),(3132111,'Ana Golja',1996,NULL),(3132183,'Johannes Nyholm',1974,NULL),(3132669,'Jens Lapidus',NULL,NULL),(3132693,'Jon Opstad',NULL,NULL),(3133181,'Stan Chervin',NULL,NULL),(3133298,'Deirdre Mullins',NULL,NULL),(3133666,'Ande Parks',NULL,NULL),(3134870,'Nik Bower',NULL,NULL),(3135135,'Danny Barclay',NULL,NULL),(3135723,'Brendan Moore',NULL,NULL),(3135847,'Christian Wibe',NULL,NULL),(3136017,'Martin Borell',NULL,NULL),(3136514,'Jiji Bû',NULL,NULL),(3136697,'Darrin Holender',NULL,NULL),(3137040,'Gia Walsh',NULL,NULL),(3137073,'Paco Sáez',NULL,NULL),(3137132,'Piero Messina',1981,NULL),(3137986,'Kara Baker',NULL,NULL),(3138823,'María José Sarrate',NULL,NULL),(3138882,'Britt Lower',1985,NULL),(3139511,'Vikas Swarup',1963,NULL),(3140104,'Rajan',NULL,NULL),(3140171,'Michael Martin',NULL,NULL),(3140226,'Laurent Mis',NULL,NULL),(3140495,'Shanta Dev',NULL,NULL),(3140538,'Mikkel Boe Følsgaard',1984,NULL),(3140616,'T.R. Natarajan',NULL,NULL),(3140764,'Michael Ragen',NULL,NULL),(3141070,'Ella Connolly',NULL,NULL),(3142474,'Tim Barnett',NULL,NULL),(3142576,'Nanami Sakuraba',1992,NULL),(3142880,'Laura-Leigh',NULL,NULL),(3143010,'Ron Padgett',NULL,NULL),(3143608,'Anna Waterhouse',NULL,NULL),(3143762,'Erika Corvette',NULL,NULL),(3143851,'Sophia Anne Caruso',2001,NULL),(3144567,'Iftach Ophir',NULL,NULL),(3146222,'Yi Liu',NULL,NULL),(3146718,'Eric England',1988,NULL),(3147566,'Bamshad Abedi-Amin',NULL,NULL),(3147751,'LaKeith Stanfield',1991,NULL),(3148014,'Dawna Lee Heising',1953,NULL),(3148117,'Dom',NULL,NULL),(3148484,'Mikayla Rosario',NULL,NULL),(3149909,'Michael Buck',NULL,NULL),(3150446,'Mutsumi Tamura',NULL,NULL),(3150455,'Joel Crawford',NULL,NULL),(3150488,'Douglas Booth',1992,NULL),(3151265,'Mariela Vitale',1982,NULL),(3151817,'Katharina Nuttall',NULL,NULL),(3151834,'Matthew Wilkas',1978,NULL),(3152009,'Laura Zisman',NULL,NULL),(3152327,'Ryûsuke Hamaguchi',1978,NULL),(3152436,'Chris Maleki',NULL,NULL),(3152605,'Gwilym Lee',1983,NULL),(3152815,'James Vandewater',NULL,NULL),(3153307,'Charles Brandt',NULL,NULL),(3153688,'Renee Jewell',NULL,NULL),(3154125,'Clément Oubrerie',NULL,NULL),(3154301,'Irfan Siddiqui',NULL,NULL),(3154303,'Timothée Chalamet',1995,NULL),(3154448,'Kjetil Omberg',NULL,NULL),(3154628,'Kate Cohen',NULL,NULL),(3155184,'Michael Morrissey',NULL,NULL),(3155266,'Chen Li',1978,NULL),(3155308,'Zeltia Montes',1979,NULL),(3155373,'Jed Schlanger',NULL,NULL),(3155634,'Jordan Schmidt',1997,2013),(3156055,'Elie Smolkin',NULL,NULL),(3156166,'Pat Scola',NULL,NULL),(3156214,'Monique Candelaria',1987,NULL),(3156280,'Jonathan Meisner',NULL,NULL),(3156436,'Sattar Oraki',NULL,NULL),(3156749,'Cecilia Contreras',NULL,NULL),(3156758,'Elle LaMont',NULL,NULL),(3157168,'John Argosino',NULL,NULL),(3157246,'Amy Garcia',NULL,NULL),(3158487,'Fumikane Shimada',NULL,NULL),(3158680,'Iris Torres',NULL,NULL),(3158974,'Cody Horn',1988,NULL),(3159348,'Rory Dungan',NULL,NULL),(3159791,'Ashley Cutrona',NULL,NULL),(3159825,'Maricel Álvarez',NULL,NULL),(3160078,'Eduardo Sacheri',NULL,NULL),(3160100,'Tôichirô Shiraishi',NULL,NULL),(3160438,'Alexej Manvelov',1982,NULL),(3160595,'Richard Bates Jr.',NULL,NULL),(3160757,'Natascha Lawiszus',1989,NULL),(3161792,'Kat Morris',NULL,NULL),(3161865,'Amber Latif',NULL,NULL),(3162615,'Bryan Q. Miller',NULL,NULL),(3163166,'David Matamoros',NULL,NULL),(3163702,'Cecile Rivore',NULL,NULL),(3163794,'Pa. Ranjith',1982,NULL),(3163889,'Sturla Brandth Grøvlen',1980,NULL),(3163952,'Pierce Gagnon',NULL,NULL),(3164738,'Dave Johannson',NULL,NULL),(3165623,'Sharon Hinnendael',1986,NULL),(3166276,'Michael Tow',NULL,NULL),(3166633,'Faris Badwan',NULL,NULL),(3166649,'David Wittman',NULL,NULL),(3167202,'Mary Kate Wiles',NULL,NULL),(3167701,'Stephen Tammearu',NULL,NULL),(3168051,'Måns Månsson',1982,NULL),(3169069,'Aditya Roy Kapoor',1985,NULL),(3169656,'Austin Bunn',NULL,NULL),(3169819,'Gustavo Muñoz',NULL,NULL),(3169820,'Barbara Labrie',NULL,NULL),(3169829,'Alejandro Castaños',NULL,NULL),(3170207,'Noah Centineo',1996,NULL),(3170355,'Lucas Ochoa',NULL,NULL),(3170495,'Ali Fazal',1986,NULL),(3171048,'Hsiao-tse Cheng',NULL,NULL),(3171409,'Yi-Fen Tsai',NULL,NULL),(3171433,'Lucas Lee Graham',NULL,NULL),(3171597,'Tom Kauffman',NULL,NULL),(3172318,'Matt Wiele',NULL,NULL),(3172356,'Benjamin L. Brown',NULL,NULL),(3172728,'Danielle Evon Ploeger',1989,NULL),(3172776,'Kevin Balmore',NULL,NULL),(3173395,'Bailey Anne Borders',NULL,NULL),(3174319,'Hossein Mansouri',NULL,NULL),(3174513,'Peter Scartabello',NULL,NULL),(3174584,'Armando Bo',NULL,NULL),(3174627,'Patrick Daly',NULL,NULL),(3174706,'Michael Laurino',NULL,NULL),(3174725,'David Alvarez',1994,NULL),(3174891,'Jonathan Watters',NULL,NULL),(3174914,'Marko King',NULL,NULL),(3175290,'Mary King',NULL,NULL),(3175829,'Bitte Andersson',1981,NULL),(3175913,'Alex Arleo',1987,NULL),(3176035,'Zelda Adams',NULL,NULL),(3176551,'Riad Sattouf',1978,NULL),(3176824,'Colin Baldry',NULL,NULL),(3176901,'Rocky McKenzie',NULL,NULL),(3177370,'Kelli Strickland',NULL,NULL),(3177382,'Belén Cuesta',1984,NULL),(3177502,'Claudia Allen',NULL,NULL),(3177508,'Ximena Duque',1985,NULL),(3177597,'Oliver Linsley',NULL,NULL),(3177612,'Sean Emer',NULL,NULL),(3177954,'Jax Jackson',NULL,NULL),(3177963,'Martie Marro',NULL,NULL),(3178336,'Tracy Baim',NULL,NULL),(3178429,'Shawn Simmons',NULL,NULL),(3179563,'Philip Herd',NULL,NULL),(3179694,'David Scearce',NULL,NULL),(3179972,'Whitney Moore',1989,NULL),(3180297,'Nadia Alexander',1994,NULL),(3180472,'Alan Bagh',NULL,NULL),(3180502,'Scott Mayo',NULL,NULL),(3181219,'Daniel Mai',NULL,NULL),(3181332,'Andrew Seger',NULL,NULL),(3181773,'Aryeh Richmond',NULL,NULL),(3182094,'Chris Colfer',1990,NULL),(3184677,'Antoinette Jadaone',NULL,NULL),(3185614,'Octavio E. Rodriguez',NULL,NULL),(3185877,'Ratchev & Carratello',NULL,NULL),(3186312,'Ikumi Nakagami',NULL,NULL),(3186586,'Curtis Grout',NULL,NULL),(3186756,'Gillian Berrow',NULL,NULL),(3186809,'The Reds',NULL,NULL),(3187025,'Alison Sieke',NULL,NULL),(3187567,'Joel Hogan',NULL,NULL),(3188011,'Agustín Toscano',NULL,NULL),(3189010,'Laura Spencer',1986,NULL),(3189181,'Bill Benz',NULL,NULL),(3189831,'Kyle Killen',NULL,NULL),(3191235,'Claudia Zie',NULL,NULL),(3191239,'Bolle Movmon',NULL,NULL),(3191582,'Babs Himelfarb',NULL,NULL),(3191754,'Emi Takei',1993,NULL),(3192168,'Lavrenti Lopes',1985,NULL),(3192484,'Geoff LaTulippe',NULL,NULL),(3192881,'Hany Adel',NULL,NULL),(3194180,'Nena Jaye',NULL,NULL),(3194537,'Mark Chinnery',NULL,NULL),(3194762,'Karl Glusman',1988,NULL),(3194940,'Jason Brewer',NULL,NULL),(3195822,'Jazmen Darnell Brown',NULL,NULL),(3195983,'Alycia Delmore',1977,NULL),(3196216,'Emily Robinson',1998,NULL),(3197574,'Stephanie Hunt',1989,NULL),(3197772,'Kacey Mottet Klein',1998,NULL),(3198287,'Ione Butler',NULL,NULL),(3199005,'Aaron Zaragoza',NULL,NULL),(3199307,'Ruby Rose',1986,NULL),(3199492,'Michael Mayer',NULL,NULL),(3200920,'Ziah Colon',NULL,NULL),(3201429,'Allie Trimm',NULL,NULL),(3202512,'Caroline Tillette',1988,NULL),(3202519,'Jocelyn DeBoer',1985,NULL),(3202701,'Kalki Koechlin',1983,NULL),(3203509,'Mangesh Dhakde',NULL,NULL),(3203615,'Mircea Olteanu',NULL,NULL),(3203635,'Dragos Apetri',NULL,NULL),(3204288,'Karen Pittman',1986,NULL),(3204697,'Anne T. Hanson',NULL,NULL),(3204934,'Kim Gordon',NULL,NULL),(3205630,'Mr. Brainwash',NULL,NULL),(3206118,'Jenna Ushkowitz',1986,NULL),(3206301,'Sanja Mikitisin',1973,NULL),(3206318,'Léa Philippon',NULL,NULL),(3207853,'Imran Ahmad',NULL,NULL),(3207873,'Woo Seo',1985,NULL),(3208182,'Michael Kennedy',NULL,NULL),(3208946,'Matt Cook',NULL,NULL),(3209537,'Ionut Grama',1982,NULL),(3210494,'Eric Guillon',NULL,NULL),(3210683,'Bozenna Intrator',NULL,NULL),(3210749,'Angela Little',NULL,NULL),(3211098,'Isabelle Glachant',NULL,NULL),(3211470,'Robert Eggers',1983,NULL),(3211972,'Matthew-Lee Erlbach',NULL,NULL),(3212517,'Chaitally Parmar',NULL,NULL),(3213566,'Rasmus Birch',NULL,NULL),(3213569,'Matt K. Turner',NULL,NULL),(3214170,'Jonathan Cohen',NULL,NULL),(3214219,'Peter Gregson',1987,NULL),(3214314,'Daniel Hendler',NULL,NULL),(3214649,'Jack Donnelly',NULL,NULL),(3214738,'Haim Mazar',1983,NULL),(3215397,'Daniel Scheinert',1987,NULL),(3215533,'Collin Kelly-Sordelet',NULL,NULL),(3215591,'Michael Algieri',2001,NULL),(3216543,'Jakub Korolczuk',NULL,NULL),(3217334,'Christos Passalis',1978,NULL),(3218082,'Jenny Steingart',NULL,NULL),(3218349,'War Shazar',NULL,NULL),(3218796,'Mahmud Shalaby',1982,NULL),(3219350,'Baris Yikilmaz',NULL,NULL),(3219738,'Chelsea Wolfe',1983,NULL),(3219778,'Michael Blakey',1958,NULL),(3219940,'Ryan Taubert',NULL,NULL),(3220117,'Susan Choi',NULL,NULL),(3220289,'Rikki McKinney',NULL,NULL),(3220455,'Max Eggers',NULL,NULL),(3220493,'Vince Pope',NULL,NULL),(3220568,'Elsie Fisher',2003,NULL),(3220599,'Madhu Rye',NULL,NULL),(3221093,'Rahel Kapsaski',1991,NULL),(3222300,'Noah Greenberg',NULL,NULL),(3223453,'Marco Ilsø',1994,NULL),(3224541,'Amritha Vaz',NULL,NULL),(3224597,'Mariela Mignot',NULL,NULL),(3225014,'Kwang-Ho Hong',1982,NULL),(3225654,'Justin Hurwitz',1985,NULL),(3225709,'Tyler MacIntyre',NULL,NULL),(3226031,'Peter Nickowitz',NULL,NULL),(3226240,'Blanche Gardin',1977,NULL),(3226241,'Noah Ringer',1996,NULL),(3226379,'Kogonada',NULL,NULL),(3226880,'Delondra Mesa',NULL,NULL),(3227090,'Damien Chazelle',1985,NULL),(3227375,'Dagvan Ganpurev',NULL,NULL),(3227473,'John Hollingworth',1981,NULL),(3227954,'Gil Desiano',NULL,NULL),(3228320,'Vincent Lacoste',1993,NULL),(3228752,'Adam Dietrich',NULL,NULL),(3228932,'Maggie Hatcher',NULL,NULL),(3229180,'Tilly Hatcher',NULL,NULL),(3229215,'Alex Hirsch',1985,NULL),(3229505,'Yoni Brenner',NULL,NULL),(3229507,'Olivia Newman',NULL,NULL),(3229685,'Kit Harington',1986,NULL),(3230026,'Mia Skäringer',1976,NULL),(3230224,'Renu Brindle',NULL,NULL),(3230448,'Tom Gormican',NULL,NULL),(3230950,'Robert Bagley',NULL,NULL),(3231562,'Carla Juri',1985,NULL),(3231710,'Dylan Meyer',NULL,NULL),(3231728,'Mattson Tomlin',NULL,NULL),(3231931,'Elliot Knight',NULL,NULL),(3232025,'Amber Riley',1986,NULL),(3232264,'Reinaldo Marcus Green',1981,NULL),(3232315,'Benoit Dobbelstein',NULL,NULL),(3232321,'James Brown',NULL,NULL),(3232494,'Giordano Giulivi',NULL,NULL),(3232904,'Cesar Quijada',NULL,NULL),(3232928,'Benjamin Cleek',NULL,NULL),(3233246,'Kenny White',1983,NULL),(3233596,'Duccio Giulivi',NULL,NULL),(3233605,'Adam Rowe',1988,NULL),(3234219,'Jon Bulette',NULL,NULL),(3234631,'Jeff Melanson',NULL,NULL),(3234826,'Arlen Konopaki',NULL,NULL),(3234869,'Ludwig Göransson',1984,NULL),(3234949,'Dalena Le',NULL,NULL),(3235210,'Noa Rotstein',1997,NULL),(3235335,'Mike C. Nelson',NULL,NULL),(3235380,'Tucker Albrizzi',2000,NULL),(3235877,'Ana Lily Amirpour',NULL,NULL),(3236159,'Paul Walter Hauser',1986,NULL),(3236205,'Denise Pillott',1982,NULL),(3236733,'Ron Funches',1983,NULL),(3236844,'Sina Sayyah',NULL,NULL),(3237713,'Lynn Xiong',1981,NULL),(3237775,'Mackenzie Foy',2000,NULL),(3237897,'Neal Kodinsky',NULL,NULL),(3237986,'Daniel Wohl',NULL,NULL),(3238657,'Roc Chen',NULL,NULL),(3238883,'Gerard O\'Neill',1942,2019),(3238906,'Shana Rae',NULL,NULL),(3239033,'Rory Haines',1984,NULL),(3239034,'Patrick McHale',1983,NULL),(3239179,'Blanca Engström',NULL,NULL),(3239803,'Kaitlyn Dever',1996,NULL),(3240092,'Blaise Fournier',NULL,NULL),(3240261,'Alvaro Duran',NULL,NULL),(3240305,'Mariana Xavier',1980,NULL),(3240509,'Chad Kean',NULL,NULL),(3241371,'Clare Bowen',1984,NULL),(3241414,'Penelope Mitchell',1991,NULL),(3241804,'Joon Lee',1988,NULL),(3242555,'Jack C. Donaldson',NULL,NULL),(3242676,'Brendan H. Banks',NULL,NULL),(3242689,'Edward Ricourt',NULL,NULL),(3243369,'Steve Damstra II',NULL,NULL),(3243529,'Penny Edmiston',NULL,NULL),(3243537,'Vincent Girault',NULL,NULL),(3244791,'Adam Lewis',NULL,NULL),(3245933,'Julita Witt',NULL,NULL),(3246341,'Jayne Baron Sherman',NULL,NULL),(3246926,'Christopher Jordan Wallace',1996,NULL),(3247004,'Kurt Preston',NULL,NULL),(3247238,'Logan McMillan',NULL,NULL),(3248303,'James Rabbitts',NULL,NULL),(3248608,'Roberto De Feo',NULL,NULL),(3248639,'Selene Kapsaski',1986,NULL),(3248732,'Glenn Speers',NULL,NULL),(3248970,'Samuel Pinczewski',NULL,NULL),(3248988,'Tabrett Bethell',1982,NULL),(3250262,'Margot Hand',NULL,NULL),(3250292,'Jenna Milly',NULL,NULL),(3250385,'Jacob Givens',NULL,NULL),(3250667,'Jackie Monahan',NULL,NULL),(3251022,'Doudou Gueye Thiaw',NULL,NULL),(3251466,'Alberto del Campo',NULL,NULL),(3251519,'Tyler Graham Pavey',NULL,NULL),(3251662,'Dick Lehr',NULL,NULL),(3252786,'Hirotoshi Rissen',NULL,NULL),(3253475,'Tolga Tekin',1973,NULL),(3253620,'Elliott DiGuiseppi',NULL,NULL),(3253977,'Sofya Ozerova',NULL,NULL),(3254323,'Susan Loughnane',1987,NULL),(3254459,'Curtis Norton',1981,NULL),(3254481,'Morgan Williams',NULL,NULL),(3254606,'Ash Sarohia',NULL,NULL),(3255193,'Masanori Gotô',NULL,NULL),(3255459,'Jillian Bell',1984,NULL),(3255563,'Christian Anthony',NULL,NULL),(3256781,'Gen Urobuchi',1972,NULL),(3258339,'Sherwood Boehlert',1936,2021),(3258357,'Angel Herrera',NULL,NULL),(3258667,'Brian D\'Oliveira',NULL,NULL),(3258927,'Ashley Connor',NULL,NULL),(3259054,'Daniel Crown',NULL,NULL),(3259208,'Gayle Forman',NULL,NULL),(3259550,'Vincent Fournier',NULL,NULL),(3260168,'Gabriella Kapsaski',1956,NULL),(3260211,'Hillary Andujar',NULL,NULL),(3260333,'Erin Richards',1986,NULL),(3260616,'Ian Hultquist',1985,NULL),(3260926,'Paulo Tiefenthaler',NULL,NULL),(3261008,'Jaimie D\'Cruz',NULL,NULL),(3261209,'Jade-Rose Parker',NULL,NULL),(3261686,'Kelvin Pimont',NULL,NULL),(3262029,'André Lubrano',NULL,NULL),(3262317,'Josh Whitehouse',1990,NULL),(3262328,'Rick Morales',NULL,NULL),(3262433,'Raj Mehta',NULL,NULL),(3262916,'Matthew Amyotte',NULL,2017),(3263203,'Gillian Bellinger',NULL,NULL),(3263342,'Jill Ciment',NULL,NULL),(3263357,'David Freyne',NULL,NULL),(3263825,'Will Beall',1971,NULL),(3264124,'David Gundlach',NULL,NULL),(3264196,'Julia Cho',NULL,NULL),(3264596,'Kid Cudi',1984,NULL),(3264795,'Ricky Tollman',NULL,NULL),(3264948,'Jayakumar',NULL,NULL),(3265287,'Chanelle Elaine',NULL,NULL),(3265508,'Stephen Cone',NULL,NULL),(3266168,'Rebecca Dayan',NULL,NULL),(3266672,'Alexa Roland',1987,NULL),(3267061,'Teddy Schwarzman',1979,NULL),(3267200,'Ramin Kousha',NULL,NULL),(3267629,'Yuki Midorikawa',NULL,NULL),(3268500,'Curt Wiser',NULL,NULL),(3268751,'Jason Headley',NULL,NULL),(3268918,'Sara Takatsuki',1997,NULL),(3269518,'Sanda Knezevic',1973,NULL),(3269544,'Joel Spira',NULL,NULL),(3269642,'CC Chainey',NULL,NULL),(3270108,'Veronica Kedar',1984,NULL),(3270271,'Fanni Metelius',NULL,NULL),(3270827,'Peter Strickland',1973,NULL),(3271270,'Ron Stein',NULL,NULL),(3271473,'Austin Stowell',1984,NULL),(3272744,'Fatma Mohamed',1975,NULL),(3273770,'Chris Lee Hill',NULL,NULL),(3273842,'Jillian Jacobs',NULL,NULL),(3273956,'Nizam Namidar',1961,NULL),(3274096,'Rabah Nait Oufella',1992,NULL),(3274162,'Sam Fink',NULL,NULL),(3274621,'Mélusine Mayance',1999,NULL),(3275086,'Jonas T. Bengtsson',NULL,NULL),(3275392,'Jirô Abe',NULL,NULL),(3275688,'Sivan Levy',1987,NULL),(3275942,'Rebecca Thomas',NULL,NULL),(3276232,'Bérénice Eveno',NULL,NULL),(3276776,'Dana Verde',NULL,NULL),(3277446,'Robert j Sommer',NULL,NULL),(3277695,'Tomas Leyers',1970,NULL),(3277823,'Daniel Beahm',NULL,NULL),(3278139,'Brooks Ludwick',NULL,NULL),(3278218,'Jeff Loveness',NULL,NULL),(3278504,'Valérie d\'Auteuil',NULL,NULL),(3278613,'Julia Holter',1984,NULL),(3278698,'Leon Burchill',NULL,NULL),(3278938,'James A. Ward',NULL,NULL),(3280198,'Guillaume Lemans',NULL,NULL),(3280633,'Nicolas Booth',NULL,NULL),(3280686,'Art Parkinson',2001,NULL),(3280731,'Kazuaki Yoshizawa',NULL,NULL),(3281140,'Fernando Navarro',NULL,NULL),(3281213,'James Bushe',NULL,NULL),(3282177,'Joseph Varca',NULL,NULL),(3282373,'Kevin Barker',NULL,NULL),(3283022,'Jake Densen',NULL,NULL),(3283577,'Will Rogers',NULL,NULL),(3283711,'Mark Little',NULL,NULL),(3283923,'Swara Bhasker',1987,NULL),(3284014,'Antoine Delesvaux',NULL,NULL),(3284074,'Andrew Cividino',NULL,NULL),(3284401,'Jamie Blackley',1991,NULL),(3284417,'David Arthur',NULL,NULL),(3284440,'Youhei Itou',NULL,NULL),(3284553,'Hazel Baillie',1982,NULL),(3284831,'Kai Bird',NULL,NULL),(3284959,'Ewan Mulligan',NULL,NULL),(3285316,'Damian Horan',NULL,NULL),(3286073,'Dan Rickard',NULL,NULL),(3286200,'Will Dalton',NULL,NULL),(3286851,'Mark Mallouk',1973,NULL),(3287038,'Thomas Mann',1991,NULL),(3287053,'Niamh McGrady',NULL,NULL),(3287146,'Paul Howard Allen',NULL,NULL),(3287583,'Nathan Orloff',NULL,NULL),(3288103,'John Guy',NULL,NULL),(3288874,'Marco Beckmann',1978,NULL),(3289096,'Sidharth Malhotra',1985,NULL),(3289297,'Michael Hsueh',NULL,NULL),(3289412,'Abby Damen',NULL,NULL),(3289797,'Jomon Thomas',NULL,NULL),(3289947,'Gustavo Kurlat',NULL,NULL),(3290129,'Ruben Feffer',NULL,NULL),(3290967,'David Mitchell',1969,NULL),(3291357,'Davide Lantieri',NULL,NULL),(3291520,'Park Bo-young',1990,NULL),(3291594,'Naysun Alae-Carew',NULL,NULL),(3293421,'Bernd Porr',NULL,NULL),(3293813,'Brendon Eggertsen',NULL,NULL),(3293938,'Yong-rock Choi',NULL,NULL),(3294070,'Ranjeet Bahadur',NULL,NULL),(3294574,'Anthony Tambakis',1967,NULL),(3294917,'Anami Tara Shucart',NULL,NULL),(3298144,'Bruno Lavaine',NULL,NULL),(3298910,'Anre Garrett',NULL,NULL),(3299019,'Nuno Beato',NULL,NULL),(3299225,'Pietro Greppi',NULL,NULL),(3299329,'Nicolas Charlet',NULL,NULL),(3299334,'Ario Sagantoro',NULL,NULL),(3299397,'Iko Uwais',1983,NULL),(3299998,'Koa Lang',1983,NULL),(3300074,'Holger Andersson',NULL,NULL),(3300218,'Noah Pink',NULL,NULL),(3300247,'Tristan Barr',NULL,NULL),(3300306,'Conor Leslie',NULL,NULL),(3300820,'Andrew Nackman',NULL,NULL),(3301460,'John Fischer',NULL,NULL),(3301868,'Yawen Zhu',1984,NULL),(3302333,'Carlotta Calori',NULL,NULL),(3302912,'Vinsantos',NULL,NULL),(3303074,'Mason Cook',2000,NULL),(3303482,'James Kondelik',NULL,NULL),(3303567,'Adam Robert Bayne',NULL,NULL),(3303697,'Uzodinma Iweala',NULL,NULL),(3303822,'Rachel Warren',NULL,NULL),(3303922,'Kaz Firpo',NULL,NULL),(3304127,'Katerina Katelieva',NULL,NULL),(3304186,'Rob Hayes',NULL,NULL),(3304468,'John Maclean',NULL,NULL),(3304608,'Marci Miller',1985,NULL),(3304681,'Nan Wei',NULL,NULL),(3305403,'Kostas Gerampinis',NULL,NULL),(3305952,'Volodymyr Zelenskyy',1978,NULL),(3306640,'Amèlia Mora',NULL,NULL),(3306943,'James Frecheville',1991,NULL),(3307527,'Gabriela Pichler',NULL,NULL),(3307537,'Alexis Marsh',NULL,NULL),(3307735,'Michael Yare',1983,NULL),(3307918,'Vithaya Pansringarm',1959,NULL),(3308569,'Caren Pistorius',1990,NULL),(3308584,'Marcelo Martinessi',1973,NULL),(3308602,'Rob Jaret',NULL,NULL),(3309461,'Atsuhiro Iwakami',NULL,NULL),(3309673,'Cathy Meriam',NULL,NULL),(3309711,'Julia Fabry',NULL,NULL),(3309878,'Mairghread Scott',NULL,NULL),(3310211,'Rose Leslie',1987,NULL),(3310289,'Daniel Durant',1989,NULL),(3311094,'Keishi Otomo',NULL,NULL),(3311695,'Chase Williamson',1988,NULL),(3311772,'Johnny Tabor',NULL,NULL),(3312554,'Luke Kleintank',1990,NULL),(3312826,'Caitlin Gerard',1988,NULL),(3312831,'Lance Kuhns',NULL,NULL),(3312875,'Ernst Umhauer',1989,NULL),(3313554,'Catherine Corcoran',1992,NULL),(3314114,'Pep Ambròs',1987,NULL),(3314377,'Ryan Valdez',NULL,NULL),(3314528,'Handan Karaadam',NULL,NULL),(3314705,'David Rysdahl',NULL,NULL),(3314810,'Chesley Sullenberger',1951,NULL),(3314975,'Jon Orsini',1986,NULL),(3315713,'Lee Si-young',1982,NULL),(3315947,'Kit Young',NULL,NULL),(3315962,'Bart Hollanders',NULL,NULL),(3316142,'Sergio Hasselbaink',NULL,NULL),(3316545,'Trevor Cushman',NULL,NULL),(3317268,'Kitty Green',1984,NULL),(3318201,'Anne Chmelewsky',NULL,NULL),(3318603,'Ann Marie Allison',NULL,NULL),(3318928,'Zach Cowie',NULL,NULL),(3319078,'Bastien Bouillon',NULL,NULL),(3319315,'Eddie Lebron',1987,NULL),(3321297,'Giuseppe Capotondi',1968,NULL),(3321545,'Evan Goldman',1987,NULL),(3321995,'Andrés Duprat',NULL,NULL),(3322414,'Alastair Siddons',NULL,NULL),(3322537,'Sara Lazzaro',1984,NULL),(3322721,'Erika Wasserman',NULL,NULL),(3322957,'Evan McGuire',NULL,NULL),(3322982,'Christen Mooney',NULL,NULL),(3323131,'David Mandel',NULL,NULL),(3324087,'Andrea Paolo Massara',NULL,NULL),(3324982,'Kyle Mooney',1984,NULL),(3325172,'Derrick Granado',NULL,NULL),(3325324,'Ched Tolliver',NULL,NULL),(3325358,'Erhan Tekin',NULL,NULL),(3325960,'Egor Abramenko',NULL,NULL),(3325981,'Marie Leuenberger',1980,NULL),(3325983,'Matias Caruso',1977,NULL),(3327225,'Jigme Tenzing',NULL,NULL),(3328207,'Efthimis Filippou',1977,NULL),(3329028,'Jonathan Sanford',NULL,NULL),(3329219,'Jeremy Herrin',NULL,NULL),(3329362,'Mai Fuchigami',1987,NULL),(3329566,'Ron Rennells',NULL,NULL),(3329819,'Lomax',NULL,NULL),(3329828,'Jeanie M. Clark',NULL,NULL),(3330464,'Daniel J. Clancy',NULL,NULL),(3331125,'Yanina Studilina',1985,NULL),(3331177,'Glenn Erland Tosterud',NULL,NULL),(3332230,'Jeff Burdett',NULL,NULL),(3332465,'Eugene Boateng',1985,NULL),(3332894,'Jordan Fisher',1994,NULL),(3335498,'Sigrid Bouaziz',NULL,NULL),(3335834,'Jacob Appelbaum',1983,NULL),(3337639,'Sara Sohn',NULL,NULL),(3338210,'Aleksandr Kushaev',1973,NULL),(3338481,'Carla Solomon',NULL,NULL),(3338544,'Vera Barreto',NULL,NULL),(3338979,'Teri Andrez',1990,NULL),(3339509,'Hussein Mokadem',NULL,NULL),(3339735,'Vincent Gatewood',NULL,NULL),(3340182,'Charlie Wright',NULL,NULL),(3340333,'Rachel Aoun',NULL,NULL),(3340455,'Brett Detar',1978,NULL),(3340541,'Shannon Black',NULL,NULL),(3340982,'Rohan Campbell',1997,NULL),(3341495,'Anna Bederke',1981,NULL),(3341611,'Ichirô Nobukuni',NULL,NULL),(3341997,'Joanne Higginbottom',NULL,NULL),(3343855,'Gabrielle-Suzanne Barbot de Villeneuve',1685,1755),(3343883,'Kim Hee-Jung',NULL,NULL),(3343974,'Martin Lang',NULL,NULL),(3344322,'Derek Haugen',NULL,NULL),(3344353,'Dylan K. Narang',NULL,NULL),(3346403,'Vincent Savino',NULL,NULL),(3346661,'David Kaplan',NULL,NULL),(3347002,'Juan López-Tagle',1980,NULL),(3347023,'Tim Sloan',NULL,NULL),(3347197,'Shawn Harwell',NULL,NULL),(3347296,'Gray Clevenger',NULL,NULL),(3348196,'Santiago Pérez Rocha León',NULL,NULL),(3349167,'Benjamin Mee',NULL,NULL),(3349927,'Oren Uziel',1974,NULL),(3350072,'Michael Skvarla',NULL,NULL),(3350641,'David Kruta',NULL,NULL),(3351104,'Daniel Warth',NULL,NULL),(3351889,'Elias Saba',NULL,NULL),(3352441,'Wendy Wells',1964,NULL),(3353780,'Katie Douglas',1998,NULL),(3354154,'Uwe Haas',NULL,NULL),(3354200,'Gabriel Geer',NULL,NULL),(3354467,'Daniel S. Kaminsky',NULL,NULL),(3354777,'Lauren Ashley Carter',NULL,NULL),(3354935,'Michael Hauer',NULL,NULL),(3355362,'Yibo Wei',NULL,NULL),(3355471,'Richard Cunningham',NULL,NULL),(3356206,'Noritaka Kawaguchi',NULL,NULL),(3356695,'Sam Stewart',NULL,NULL),(3357122,'Ximena Vera',1983,NULL),(3357555,'Brian Wessel',1982,NULL),(3357893,'Josh Senior',NULL,NULL),(3357942,'Shaun J. Brown',1987,NULL),(3358233,'Ashley Hinshaw',1988,NULL),(3358264,'Ting Zhang',NULL,NULL),(3358418,'Youssef Sahwani',NULL,NULL),(3358440,'Nisrin Siksik',NULL,NULL),(3358781,'Tianyu Ma',1986,NULL),(3359122,'Laura Ashley Samuels',1990,NULL),(3359507,'Eric Arsnow',NULL,NULL),(3360080,'David Brooks',NULL,NULL),(3360218,'Michael Finch',NULL,NULL),(3360358,'Gerard Smith',1974,2011),(3360446,'Fouad Habash',NULL,NULL),(3360706,'Aaron Guzikowski',NULL,NULL),(3360872,'Michael D\'Sa',NULL,NULL),(3360889,'Cynthia Martin',NULL,NULL),(3360961,'Jorge Blanco',NULL,NULL),(3361391,'Juan Andres Otalora',NULL,NULL),(3361826,'Ki Jin Kim',NULL,NULL),(3362914,'Jeff Foxworth',1978,NULL),(3363032,'Ryan Coogler',1986,NULL),(3363220,'Rye Randa',NULL,NULL),(3364314,'Marcelle Bowman',NULL,NULL),(3367478,'Alex Lutz',1978,NULL),(3367767,'James Orr',1978,NULL),(3370006,'The Section Quartet',NULL,NULL),(3371044,'Anthony Gioe',NULL,NULL),(3371095,'Monty Oum',1981,2015),(3371495,'Lebogang Motubudi',NULL,NULL),(3371784,'Elizabeth Blackburn',1948,NULL),(3371813,'Casey Wilder Mott',NULL,NULL),(3371961,'Javier Abad',NULL,NULL),(3372379,'Jordan Hemsley',NULL,NULL),(3373074,'Paul Bartunek',NULL,NULL),(3373271,'Esha Gupta',1985,NULL),(3373284,'Tyler Zelinsky',NULL,NULL),(3373450,'Wrion Bowling',NULL,NULL),(3373660,'Adam C. Caudill',NULL,NULL),(3374181,'Sergey Belogolovtsev',1964,NULL),(3374198,'Mike Manning',NULL,NULL),(3374408,'Noriyasu Ueki',NULL,NULL),(3374655,'Andrew Carlberg',1984,NULL),(3375122,'Ryan Amon',NULL,NULL),(3376331,'Pascal Sangla',NULL,NULL),(3376444,'Andrew Ross Sorkin',1977,NULL),(3376453,'Brian Borello',NULL,NULL),(3378356,'Stefan Nowicki',NULL,NULL),(3378435,'Celia Pacquola',1983,NULL),(3379526,'Louis Dufort',NULL,NULL),(3380243,'James Lane',1981,NULL),(3380457,'Delia Owens',NULL,NULL),(3380697,'Mariko Shinoda',1986,NULL),(3381175,'Pablo De Santis',NULL,NULL),(3381232,'Alex Chapman',1982,NULL),(3381295,'Alexandra Shipp',1991,NULL),(3382063,'Frederik Peeters',NULL,NULL),(3382410,'Ruby O. Fee',1996,NULL),(3383115,'Tom Frank',NULL,NULL),(3384330,'Salvador Paskowitz',NULL,NULL),(3385156,'Hannah Cheung',NULL,NULL),(3385478,'Nikki Hahn',2002,NULL),(3385682,'Kin-Wai Wong',NULL,NULL),(3387157,'Andrew Morgan Smith',NULL,NULL),(3387284,'Paul Busche',2000,NULL),(3387568,'Klara Bielawka',1984,NULL),(3388080,'Claudia Bluemhuber',NULL,NULL),(3390000,'Sean E. DeMott',NULL,NULL),(3390312,'Dana Melanie',NULL,NULL),(3390925,'Glenn Greenwald',1967,NULL),(3391497,'Will Fetters',NULL,NULL),(3391690,'Kayla Lorette',NULL,NULL),(3391702,'Neta Riskin',1976,NULL),(3392919,'Charlotte Whitby-Coles',NULL,NULL),(3393014,'Rachel Klein',NULL,NULL),(3393343,'Kim Sae-ron',2000,NULL),(3393414,'Manju Singh',NULL,NULL),(3393440,'Carl Tibbetts',NULL,NULL),(3394719,'Kimke Desart',2000,NULL),(3395306,'Illa Ben Porat',NULL,NULL),(3395549,'Hyun Seok Kim',NULL,NULL),(3395559,'Lisbeth Gruwez',1977,NULL),(3395644,'Pasha Ebrahimi',NULL,NULL),(3396841,'Subi Liang',NULL,NULL),(3397519,'John McCormack',NULL,NULL),(3397590,'Aleksei Ivanov',1969,NULL),(3398139,'William Black',NULL,NULL),(3398282,'Scotty Landes',NULL,NULL),(3398808,'Seiji Minami',NULL,NULL),(3399115,'Katie Carman-Lehach',NULL,NULL),(3399334,'Ivy Hong',NULL,NULL),(3399858,'Vera Miao',NULL,NULL),(3400186,'Julia Garner',1994,NULL),(3400240,'Ron Tanner',NULL,NULL),(3401036,'Michael Peterson',NULL,NULL),(3401043,'Mariya Fomina',NULL,NULL),(3401111,'Fawzia Mirza',NULL,NULL),(3401440,'Jake Helgren',1981,NULL),(3401643,'Kenji Akabane',NULL,NULL),(3401661,'Chesley Calloway',NULL,NULL),(3401779,'Andrew Erwin',NULL,NULL),(3403833,'Moon Chang-gil',NULL,NULL),(3403880,'Roozbeh Behtaji',NULL,NULL),(3404705,'Dipshikha Mahajan',NULL,NULL),(3404934,'Charlie Bewley',NULL,NULL),(3407311,'Benjamin Peever',NULL,NULL),(3407885,'Paula Cons',NULL,NULL),(3408217,'Masashi Yamazaki',NULL,NULL),(3408251,'Jon Colton Barry',1969,NULL),(3408503,'Flora Lau',NULL,NULL),(3409535,'Emma Fuhrmann',NULL,NULL),(3409843,'Christo and Jeanne-Claude',NULL,NULL),(3409938,'Robert Barry',NULL,NULL),(3410237,'Alethea Arnaquq-Baril',NULL,NULL),(3410239,'Will Barnet',1911,2012),(3410255,'Lynda Benglis',1941,NULL),(3410278,'Darine Hamze',NULL,NULL),(3413681,'Richard Gray',NULL,NULL),(3413854,'Debbie Lick',NULL,NULL),(3413990,'Chris Palmer',NULL,NULL),(3414040,'Takuya Eguchi',NULL,NULL),(3414193,'Michele Gray',NULL,NULL),(3414662,'Tomoyuki Hara',NULL,NULL),(3415084,'Jada Alberts',NULL,NULL),(3415444,'Eric D. Johnson',1976,NULL),(3416644,'Patrick Riester',NULL,NULL),(3416790,'Paul Hudson',NULL,NULL),(3417120,'Pedring Lopez',NULL,NULL),(3417385,'Rachel Bloom',1987,NULL),(3418305,'Lauren Gallagher',NULL,NULL),(3418632,'Marciano Martínez',NULL,NULL),(3418734,'Diana Bustamante',NULL,NULL),(3418738,'Iván Ocampo',NULL,NULL),(3419045,'Schuyler Weiss',NULL,NULL),(3419119,'Reese Hartwig',1998,NULL),(3419321,'Manish Pandey',NULL,NULL),(3419668,'Aisha Dee',1993,NULL),(3419959,'Masashi Igarashi',NULL,NULL),(3420540,'Win Sheridan',NULL,NULL),(3421138,'Andy Hodgson',NULL,NULL),(3421291,'Noriaki Akitaya',NULL,NULL),(3422130,'Katie Parker',1986,NULL),(3422873,'Christine Kain',NULL,NULL),(3423316,'Mark Burnell',NULL,NULL),(3423836,'Kevin Tams',NULL,NULL),(3423952,'Violetta D\'Agata',NULL,NULL),(3424525,'Sabreen Baker',NULL,NULL),(3424736,'Boris Shefir',NULL,NULL),(3425277,'Sergey Shefir',NULL,NULL),(3425513,'Stuart Ortiz',NULL,NULL),(3427616,'David Monteagudo',NULL,NULL),(3427624,'Lee-Ann Cotton',NULL,NULL),(3427812,'Anatoly Kucherena',NULL,NULL),(3428119,'Wendy Jo Smith',NULL,NULL),(3429884,'Arinzé Kene',1987,NULL),(3429981,'Sharon Mashihi',NULL,NULL),(3430106,'Gisli Gislason',NULL,NULL),(3430384,'Hiroko Sebu',NULL,NULL),(3430744,'Karina Ripper',NULL,NULL),(3430921,'Ben Sollee',NULL,NULL),(3431390,'Vincent Mariette',NULL,NULL),(3431392,'Roberto Maciel',NULL,NULL),(3431763,'Takashi Mori',NULL,NULL),(3431799,'Jun Nakajima',NULL,NULL),(3432005,'Masatsugu Asahi',NULL,NULL),(3432082,'Seishirô Katô',2001,NULL),(3432881,'Chord Overstreet',1989,NULL),(3433566,'Link Ruiz',NULL,NULL),(3433735,'Tom Hughes',1986,NULL),(3434305,'Abbi Jacobson',1984,NULL),(3434407,'Ramilya Iskander',NULL,NULL),(3434570,'Lizzie Brown',NULL,NULL),(3434665,'Ion Stoica',NULL,2021),(3434689,'Nicholas Savard-L\'Herbier',NULL,NULL),(3434775,'Krzysztof Solek',NULL,NULL),(3435454,'Nick Blood',1982,NULL),(3435612,'Roland Møller',1972,NULL),(3436048,'Yull Núñez',NULL,NULL),(3436464,'Jella Haase',1992,NULL),(3436520,'Asia Crippa',NULL,NULL),(3437226,'Ovanes Torosian',NULL,NULL),(3437699,'Danielle Krudy',NULL,NULL),(3437705,'Natalya Kudryashova',1978,NULL),(3438835,'Éanna Hardwicke',NULL,NULL),(3439444,'Margaret Scariano',NULL,NULL),(3439734,'Khalil McGhee-Anderson',NULL,NULL),(3439751,'Russell Leigh Sharman',NULL,NULL),(3439939,'Pío Vernis',NULL,NULL),(3440231,'Christian Kracht',1966,NULL),(3440793,'Anay Goswami',1977,NULL),(3440862,'Winston Rauch',NULL,NULL),(3441060,'Shelby Farrell',NULL,NULL),(3441130,'Charles Irving Beale',NULL,NULL),(3441152,'Israel Broussard',1994,NULL),(3441561,'Sid Hille',1961,NULL),(3442970,'Alireza Aghakhani',NULL,NULL),(3444417,'Emma Slade',NULL,NULL),(3444592,'Holly Goss',NULL,NULL),(3446304,'Yorgos Tsourgiannis',NULL,NULL),(3446995,'Jamie Howard',NULL,NULL),(3447751,'Babetida Sadjo',NULL,NULL),(3447755,'Naby Dakhli',NULL,NULL),(3449717,'Pilar Rico',NULL,NULL),(3449976,'Raphaël Beau',NULL,NULL),(3450267,'Raimund Huber',NULL,NULL),(3451641,'Rodrigo Pandolfo',1984,NULL),(3451648,'Amitosh Nagpal',1984,NULL),(3452033,'Matariki Whatarau',NULL,NULL),(3452285,'Kakifly',NULL,NULL),(3452362,'Angela Correa',NULL,NULL),(3453283,'Daniel Kwan',1988,NULL),(3453460,'Sidney Allison',NULL,NULL),(3453476,'Anne Winters',1994,NULL),(3453549,'Geetanjali Kulkarni',NULL,NULL),(3454095,'Lauren Mote',1997,NULL),(3455445,'Jonathan Wandag',NULL,NULL),(3456865,'Freddie Fox',1989,NULL),(3456897,'Konatsu Tanaka',NULL,NULL),(3457034,'Mathieu Oullion',NULL,NULL),(3457212,'Frey Ranaldo',NULL,NULL),(3457394,'Ben Toth',NULL,NULL),(3457928,'Sage Ranaldo',NULL,NULL),(3457941,'James Harrell',NULL,NULL),(3458185,'Jill Evyn',1984,NULL),(3458761,'David Mazouz',2001,NULL),(3459140,'Olivia Luccardi',1989,NULL),(3459455,'Andrei Iancu',NULL,NULL),(3459539,'Asur Zagada',NULL,NULL),(3460178,'Ann Le',NULL,NULL),(3460467,'Kiko Mizuhara',1990,NULL),(3460513,'Muriel Barbery',NULL,NULL),(3460911,'Guangcheng Song',NULL,NULL),(3461003,'Tommi Kangasmaa',NULL,NULL),(3461127,'Wei Dong',NULL,NULL),(3461468,'Dave Sirus',NULL,NULL),(3462001,'Sean Willis',NULL,NULL),(3462290,'Michael Matthews',NULL,NULL),(3462502,'Barak Hardley',1975,NULL),(3462823,'Brian Charles Frank',NULL,NULL),(3464186,'Timo Tjahjanto',NULL,NULL),(3464673,'Taizô Soshigaya',NULL,NULL),(3464902,'Takeharu Sakurai',NULL,NULL),(3464920,'Miriana Raschillà',NULL,NULL),(3465007,'Pietro Del Giudice',NULL,NULL),(3465034,'Hidehiro Iwadera',NULL,NULL),(3465625,'Michel Nabokoff',NULL,NULL),(3466039,'Yoshinori Kumazawa',NULL,NULL),(3466040,'Zack Bernbaum',NULL,NULL),(3466636,'Josh Clavir',NULL,NULL),(3466683,'Nicole Halls',NULL,NULL),(3466764,'Manuela Tempesta',1977,NULL),(3466803,'James Richard Baillie',NULL,NULL),(3467148,'Shiraz Haq',1981,NULL),(3467259,'Phi Nguyen',1984,NULL),(3467335,'Michael Robert Johnson',NULL,NULL),(3467663,'Aura Garrido',1989,NULL),(3468186,'Paul Torday',1946,2013),(3468267,'Kevin Del Colle',NULL,NULL),(3469217,'Jan Costin Wagner',1972,NULL),(3470883,'Aleksa Gajic',NULL,NULL),(3472302,'Mark Hammer',NULL,NULL),(3473059,'Adrien Remaugé',NULL,NULL),(3473150,'Abraham Marder',1983,NULL),(3474430,'Brett Dalton',1983,NULL),(3474511,'Eva Kuen',NULL,NULL),(3474579,'Jonas Katzenstein',NULL,NULL),(3475396,'Macarena García',1988,NULL),(3477129,'Albrecht Schuch',1985,NULL),(3477347,'JM De Guzman',NULL,NULL),(3477566,'Phillipa Ashley',NULL,NULL),(3478361,'Louann Brizendine',NULL,NULL),(3478396,'Luke Bracey',1989,NULL),(3480246,'Ella Purnell',1996,NULL),(3480557,'Sara Antunes',NULL,NULL),(3481322,'Maria Melnik',NULL,NULL),(3481966,'Johnny Lin',NULL,NULL),(3482594,'Liz Olin',1988,NULL),(3482736,'Santiago Latorre',NULL,NULL),(3483467,'Corey Rieger',NULL,NULL),(3483537,'Victoria Moroles',1996,NULL),(3483756,'Marcos Martínez',NULL,NULL),(3484642,'Clive Smith',NULL,NULL),(3484914,'Jamie Duguid',NULL,NULL),(3485108,'Ludi Lin',1987,NULL),(3485845,'Adam Driver',1983,NULL),(3486349,'Uzma Khan',NULL,NULL),(3486709,'Gabriel Mascaro',1983,NULL),(3486823,'Patrick Jonsson',NULL,NULL),(3487329,'Christopher Meyer',NULL,NULL),(3487380,'Benjamin Ralston',NULL,NULL),(3488167,'Michael Felker',1988,NULL),(3488211,'Kristin Fairweather',NULL,NULL),(3488559,'Michael Punke',NULL,NULL),(3488879,'Lucas McHugh Carroll',NULL,NULL),(3488941,'Alexi Carpentieri',1992,NULL),(3489031,'Oscar Steer',2002,NULL),(3489851,'Shaka King',1980,NULL),(3491286,'Zhang Wen',1984,NULL),(3491486,'Jeff Van Wie',1965,NULL),(3492494,'Carlo Kitzlinger',1966,NULL),(3492673,'Jinwei Zeng',NULL,NULL),(3492949,'Micsha Sadeghi',NULL,NULL),(3493212,'Isaiah Stone',NULL,NULL),(3493718,'Hanan Townshend',NULL,NULL),(3495707,'Fantin Ravat',NULL,NULL),(3495911,'Chibundu Orukwowu',NULL,NULL),(3495920,'Izïa Higelin',1990,NULL),(3496107,'Fajar Yuskemal',NULL,NULL),(3496121,'Boris Furduj',NULL,NULL),(3497731,'Marc-Benoît Créancier',NULL,NULL),(3498099,'Annette Hanshaw',1901,1985),(3498991,'Alexandra Park',1989,NULL),(3499098,'Camille Balsamo',1988,NULL),(3500190,'Alessandro Genovesi',1973,NULL),(3500582,'Teyonah Parris',1987,NULL),(3500747,'Emma Fitzpatrick',1985,NULL),(3501097,'Vasily Bernhardt',NULL,NULL),(3501111,'Kyle Gentz',1987,NULL),(3501146,'Grace Gummer',1986,NULL),(3501272,'Harrison Atkins',NULL,NULL),(3501465,'Louise Grinberg',NULL,NULL),(3501514,'Nick Landa',NULL,NULL),(3501519,'Mami Ozaki',NULL,NULL),(3501831,'Hanna Stanbridge',NULL,NULL),(3502454,'LaBrassBanda',NULL,NULL),(3502928,'Michael Moss',NULL,NULL),(3504218,'Sophie Merkley',NULL,NULL),(3504405,'Alex Ross Perry',NULL,NULL),(3504430,'Faith Wladyka',2004,NULL),(3505032,'Izzy Meikle-Small',1996,NULL),(3505289,'Karen Maine',NULL,NULL),(3506217,'Hye Mee Na',NULL,NULL),(3507289,'Shane Dawson',1988,NULL),(3508091,'Billy Gaggins',NULL,NULL),(3508604,'Shashank Arora',1989,NULL),(3510028,'Nebojsa Andric',NULL,NULL),(3510397,'Paul Skinner',NULL,NULL),(3510471,'Sam Claflin',1986,NULL),(3510596,'Sean Tabibian',NULL,NULL),(3510864,'T.P. Muthulakshmi',1931,2008),(3510918,'David Gross',NULL,NULL),(3511283,'Ma Phi Hai',NULL,NULL),(3512758,'Sarah Snook',1987,NULL),(3513522,'Gabriel Rush',NULL,NULL),(3513533,'Stephanie Hsu',1990,NULL),(3514379,'Garry Gower',NULL,NULL),(3514441,'Satoshi Takada',NULL,NULL),(3515096,'Taylor Adams',NULL,NULL),(3515123,'Eytan Ipeker',NULL,NULL),(3515425,'Ross Lynch',1995,NULL),(3515732,'Stevan Djordjevic',NULL,NULL),(3515866,'Kuniteru Shigeyama',NULL,NULL),(3516460,'Joel Wiersema',NULL,NULL),(3516668,'Stuart Martin',1986,NULL),(3517154,'Julia Pott',NULL,NULL),(3517327,'Hideyuki Fukuhara',NULL,NULL),(3517546,'Christos V. Konstantakopoulos',1974,NULL),(3518288,'Max Margolin',NULL,NULL),(3518892,'John Patrick Kelly',NULL,NULL),(3519336,'Roelof Jan Minneboo',1965,NULL),(3520134,'Kazunari Ôkuma',NULL,NULL),(3520204,'Albert Klychak',NULL,NULL),(3520645,'Carter Bryant',NULL,NULL),(3520740,'Shannon Lea Smith',NULL,NULL),(3521320,'Pier Andrea Nocella',NULL,NULL),(3521453,'Orr Rebhun',NULL,NULL),(3521557,'Erika Randall Beahm',NULL,NULL),(3521871,'Gillian Robespierre',1978,NULL),(3522169,'Jacob H. Gray',NULL,NULL),(3522771,'Dan Leasure',NULL,NULL),(3522780,'Robert Bruce',NULL,NULL),(3522963,'Jakob Kastner',NULL,NULL),(3523091,'York-Fabian Raabe',1979,NULL),(3523269,'Sari Sanchez',NULL,NULL),(3523426,'Lisa Henni',1982,NULL),(3523702,'Aya Kiguchi',1985,NULL),(3523714,'Abián Molina',NULL,NULL),(3523960,'William P. Young',1955,NULL),(3524021,'Johannes-Christian Michel',NULL,NULL),(3524563,'Slavomir Rawicz',NULL,NULL),(3525895,'Andrea Quiroz',NULL,NULL),(3525994,'Nikki Preston',1985,NULL),(3527143,'Storm Acheche Sahlstrøm',NULL,NULL),(3527765,'Marie-Sabine Roger',NULL,NULL),(3527897,'Jordan Horowitz',1980,NULL),(3528523,'Judith Hill',NULL,NULL),(3528539,'Jeremy Irvine',1990,NULL),(3528804,'Sadiq Afif',NULL,NULL),(3529097,'Laura Boujenah',NULL,NULL),(3529153,'Quynne Alana Paxa',NULL,NULL),(3529685,'Kumail Nanjiani',1978,NULL),(3530343,'David Baïot',1983,NULL),(3530498,'Thiago Dottori',NULL,NULL),(3531500,'Xiaotian Miao',NULL,NULL),(3531537,'Danica Pantic',NULL,NULL),(3532148,'Freya Parks',NULL,NULL),(3532291,'Kuckles',NULL,NULL),(3532896,'Patrick Duttoo Bin Amat',NULL,NULL),(3532961,'Wes Aderhold',NULL,NULL),(3533233,'Michael Manolis Mavromatis',NULL,NULL),(3533310,'Caitlyn Rund',NULL,NULL),(3533486,'Johnny Standley',NULL,NULL),(3533785,'Phil Harris',NULL,NULL),(3534101,'John Sabatella',NULL,NULL),(3536229,'Jonathan D. Mellor',NULL,NULL),(3536375,'Will Bouvier',NULL,NULL),(3536772,'Yûichi Shibahara',NULL,NULL),(3537659,'Naobumi Ashi',NULL,NULL),(3538539,'Gabriella Wilde',1989,NULL),(3538718,'Nick Robinson',1995,NULL),(3538758,'Katharina Hauter',NULL,NULL),(3538768,'Leonid Margolin',1982,NULL),(3538974,'Haruhiko Hasegawa',NULL,NULL),(3539193,'Aleksandra Rebenok',1980,NULL),(3539578,'Sev Ohanian',NULL,NULL),(3539944,'Kristina Lauren Anderson',1984,NULL),(3540169,'Sébastien Pouderoux',NULL,NULL),(3540304,'Cesar Francis Concio',NULL,NULL),(3540960,'Justine Suzanne Jones',NULL,NULL),(3541011,'Jamara Griffin',NULL,NULL),(3541432,'Juel Taylor',1987,NULL),(3542504,'Paul Norris',1914,2007),(3542676,'Dan Clarke',NULL,NULL),(3543826,'Kathryn Stockett',NULL,NULL),(3543860,'Christopher Leveaux',NULL,NULL),(3545798,'Gareth Aldon',NULL,NULL),(3546021,'Kimberley Wintle',NULL,NULL),(3546112,'Timothy Bowman',NULL,NULL),(3546272,'Joel Pickard',NULL,NULL),(3547112,'Ashley Sommers',NULL,NULL),(3548166,'Niki Lindroth von Bahr',NULL,NULL),(3550086,'Matthew Wicks',NULL,NULL),(3550415,'Daniel Carlisle',NULL,NULL),(3550828,'Roger Ubina',NULL,NULL),(3550886,'Sasheer Zamata',1986,NULL),(3551355,'Gill Summers',NULL,NULL),(3551530,'Mina Mathieson',NULL,NULL),(3551591,'Caroline Barry',NULL,NULL),(3551768,'Scott Vrooman',NULL,NULL),(3552566,'Eva Maria Daniels',1979,2023),(3552671,'Max Aruj',1989,NULL),(3552673,'Thomas Daley',NULL,NULL),(3553141,'Christine Lavaf',NULL,NULL),(3553429,'Marcos Castiel',NULL,NULL),(3554675,'Philip Eytan',NULL,NULL),(3554679,'Mike MacLean',NULL,NULL),(3555921,'Kathryn J. Schubert',NULL,NULL),(3555926,'Folke Renken',1980,NULL),(3556036,'Caoilfhionn Dunne',1984,NULL),(3556277,'Cristián Petit-Laurent',NULL,NULL),(3556523,'Veronica Cascelli',NULL,NULL),(3557613,'Karan Brar',1999,NULL),(3558108,'Maylis De Kerangal',NULL,NULL),(3558144,'Hitender Kumar',NULL,NULL),(3558225,'Hasan El-Raddad',NULL,NULL),(3558314,'Takahiko Kyôgoku',NULL,NULL),(3559276,'Mikolaj Trzaska',1966,NULL),(3559500,'Rick Remender',NULL,NULL),(3559722,'Malte Rosenfeld',NULL,NULL),(3560097,'Alex Di Dio',1987,NULL),(3560755,'Josey McNamara',NULL,NULL),(3561071,'The Ontic',NULL,NULL),(3561100,'Isabelle Link-Levy',NULL,NULL),(3561843,'Kuo-Kuang Wang',NULL,NULL),(3561877,'Doraid Liddawi',1984,NULL),(3562242,'Vânia Rodrigues',NULL,NULL),(3563262,'Geoff Cox',NULL,NULL),(3564817,'Phoebe Waller-Bridge',1985,NULL),(3564870,'Josephine Krieg',NULL,NULL),(3565570,'Andrea Chenna',NULL,NULL),(3565962,'Jessica Raine',1982,NULL),(3566386,'Hidetoshi Shinomiya',NULL,NULL),(3566987,'Rebecca Sugar',1987,NULL),(3567152,'Christina Oh',NULL,NULL),(3567755,'Mirza Davitaia',NULL,NULL),(3568062,'Mark Oliver',NULL,NULL),(3568340,'Kane Croudace',NULL,NULL),(3568412,'Hajime Hyakkoku',NULL,NULL),(3568698,'Dola Rashad',1986,NULL),(3569165,'Lila Avilés',1982,NULL),(3569254,'Daniel Lapira',NULL,NULL),(3569284,'Georgina Campbell',1992,NULL),(3569381,'Caitlin Machak',NULL,NULL),(3569542,'Melody B. Choi',NULL,NULL),(3570554,'Lisa Haas',NULL,NULL),(3571592,'Christopher Abbott',1986,NULL),(3574030,'Matthew Sullivan',NULL,NULL),(3574793,'Stan Walker',NULL,NULL),(3575075,'Inna Evlannikova',NULL,NULL),(3575723,'Lydia Wilson',1984,NULL),(3576960,'Anastasia Pronina',1991,NULL),(3577170,'Eiko Sakurai',NULL,NULL),(3577215,'Amy Handley',NULL,NULL),(3577477,'Ko Hirano',NULL,NULL),(3578010,'Yukihiro Miyamoto',NULL,NULL),(3579466,'Marcus Cox',NULL,NULL),(3579482,'Ashley Maynor',NULL,NULL),(3580391,'Linda Gaboriau',NULL,NULL),(3581525,'Christian Kain Blackburn',NULL,NULL),(3582089,'Carlos Martínez López',NULL,NULL),(3582197,'Lisa Vicari',1997,NULL),(3582727,'Noeleen Comiskey',NULL,NULL),(3584164,'Mina',1984,NULL),(3584219,'Kenneth Lucas',NULL,NULL),(3584268,'James Norton',1985,NULL),(3585613,'Michael Garza',NULL,NULL),(3585702,'Kim Mi Jung',NULL,NULL),(3586035,'Maisie Williams',1997,NULL),(3586112,'Chae Gil Byoung',NULL,NULL),(3586343,'Shin Hyun Je',NULL,NULL),(3586347,'Jon Michael Hill',1985,NULL),(3586377,'Johnny Megalos',NULL,NULL),(3586739,'Viji',NULL,NULL),(3587024,'Jung Gil Ja',NULL,NULL),(3587170,'Alex Huff',NULL,NULL),(3587674,'Hayley Griffith',NULL,NULL),(3587952,'Carla Quevedo',1988,NULL),(3588254,'Karim Leklou',1982,NULL),(3588627,'Lou Engle',NULL,NULL),(3589124,'Will Phelps',NULL,NULL),(3589654,'Michal Vondel',NULL,NULL),(3589686,'Rory O\'Shea',NULL,NULL),(3589774,'Min-ho Oh',NULL,NULL),(3590688,'Cristian Conti',NULL,NULL),(3591035,'Sarena Parmar',NULL,NULL),(3591550,'Priya Anand',1986,NULL),(3591790,'McKaley Miller',1996,NULL),(3592232,'Xavier Mathieu',NULL,NULL),(3592235,'Ritesh Batra',1979,NULL),(3592268,'John Lavin',NULL,NULL),(3592338,'Emilia Clarke',1986,NULL),(3594940,'Ashley Park',1991,NULL),(3596959,'Jaz Sinclair',1994,NULL),(3597280,'Eva Bourne',NULL,NULL),(3597657,'Rob Walker',1979,NULL),(3597963,'Andrew Simon McAllister',NULL,NULL),(3598037,'Luiza Leite',NULL,NULL),(3598044,'Sheila Kohler',NULL,NULL),(3598126,'Natalie Blackman',NULL,NULL),(3598337,'Rachel Hendrix',1985,NULL),(3598678,'Dan Atchison',NULL,NULL),(3598736,'Bella Dayne',NULL,NULL),(3598782,'Alexander Arntzen',NULL,NULL),(3598892,'Alastair Orr',NULL,NULL),(3598916,'David James Kelly',NULL,NULL),(3599039,'María Soledad Rodríguez',NULL,NULL),(3599054,'Lucy Alibar',NULL,NULL),(3599574,'Jim Lande',NULL,NULL),(3599723,'Rachel Daisy Ellis',NULL,NULL),(3599764,'Alison Barry',NULL,NULL),(3599794,'Dean Landon',NULL,NULL),(3600327,'Jason Burkey',NULL,NULL),(3601621,'Rehab El Gamal',NULL,NULL),(3601683,'Tae-joon Park',NULL,NULL),(3601760,'Sean Foley',NULL,NULL),(3601766,'Shraddha Kapoor',1987,NULL),(3601864,'Yang-kwon Moon',NULL,NULL),(3602022,'Mark Cavendish',1985,NULL),(3602074,'Yasuhiro Yoshiura',NULL,NULL),(3602469,'Stanley Schneider',NULL,NULL),(3602603,'West Dylan Thordson',NULL,NULL),(3602711,'David McCracken',1984,NULL),(3602806,'Autumn Wendel',1997,NULL),(3603074,'Katsuhiko Maeda',NULL,NULL),(3603299,'Ivan Cortes',NULL,NULL),(3605201,'Patrick O\'Neill',NULL,NULL),(3605836,'Leticia Jimenez',1976,NULL),(3606487,'Samantha Ruth Prabhu',1987,NULL),(3607866,'Takahiro Ohno',NULL,NULL),(3608744,'Agnes Soska',NULL,NULL),(3609300,'Sylvia Soska',1983,NULL),(3609341,'Jen Soska',1983,NULL),(3609439,'James Russell',NULL,NULL),(3609471,'Curtis Wehr',NULL,NULL),(3609766,'Mark Chao',1984,NULL),(3609843,'Donald Charge',NULL,NULL),(3609850,'Francesc Colomer',1997,NULL),(3610616,'Marcello Airoldi',1970,NULL),(3610766,'Devon Jordan',NULL,NULL),(3611349,'Jordan Vogt-Roberts',1984,NULL),(3611484,'Ken\'ichi Sasaki',NULL,NULL),(3612288,'Marika Engelhardt',1978,NULL),(3613396,'L. Gabriel Gonda',NULL,NULL),(3613406,'Marc-Etienne Schwartz',NULL,NULL),(3613566,'Sang-ho Yeon',NULL,NULL),(3614132,'Yeon-Shick Shin',NULL,NULL),(3614151,'Brett Sullivan',NULL,NULL),(3614878,'Hilary Jardine',1983,NULL),(3614913,'Zoey Deutch',1994,NULL),(3615744,'Kevin E. Smith',NULL,NULL),(3615904,'Hidemasa Arai',NULL,NULL),(3616206,'Nina Arianda',1984,NULL),(3616228,'Qin Zhang',NULL,NULL),(3616422,'Marius Soska',NULL,NULL),(3616958,'David Chirchirillo',NULL,NULL),(3617115,'Changhua Zhang',NULL,NULL),(3617143,'Yang Zhang',NULL,NULL),(3617210,'Suqin Chen',NULL,NULL),(3617350,'Jakub Gierszal',1988,NULL),(3617393,'Madi Diocou',NULL,NULL),(3618564,'Abdelsalam Moussa',1984,NULL),(3619235,'Hitoshi Nagai',NULL,NULL),(3619382,'Lia Carvalho',1990,NULL),(3619598,'Kyle Kannenberg',NULL,NULL),(3619993,'Thomas Cailley',1980,NULL),(3620184,'Atticus Mitchell',NULL,NULL),(3620280,'Joshua McIvor',NULL,NULL),(3620656,'Cindy Sandberg',NULL,NULL),(3620786,'Gokce Isil Tuna',NULL,NULL),(3620810,'David Lambert',1993,NULL),(3620827,'Ruth Basante',NULL,NULL),(3620967,'Joe Barton',NULL,NULL),(3621304,'John Patton Ford',1981,NULL),(3621333,'Jay Gates',NULL,NULL),(3621561,'Yehuda Almagor',NULL,NULL),(3622499,'Gürsoy Gemec',NULL,NULL),(3622659,'Lucia Aniello',1983,NULL),(3623464,'Asher Goldschmidt',NULL,NULL),(3624136,'Haley Keim',NULL,NULL),(3625869,'Céline Porcel',NULL,NULL),(3625953,'Paul W. Downs',1982,NULL),(3626153,'Laura Gorun',NULL,NULL),(3627693,'Jordana Mollick',NULL,NULL),(3627727,'Delphine de Vigan',1966,NULL),(3627934,'Travis Bleen',NULL,NULL),(3627959,'Galicia Vaca Lopez',NULL,NULL),(3628396,'Nidhi Parmar',NULL,NULL),(3628670,'Zachary Donohue',NULL,NULL),(3629058,'Sofi Marshall',NULL,NULL),(3629435,'Mary S. Lovell',NULL,NULL),(3629518,'Carolina Garcia-Aguilera',NULL,NULL),(3629863,'Lisa Haydon',1986,NULL),(3630119,'Trevor Jackson',NULL,NULL),(3630611,'Lisa Fávero',NULL,NULL),(3631295,'Eugene Lee Yang',1986,NULL),(3631803,'Julia Chan',1983,NULL),(3631940,'Clare McNulty',1984,NULL),(3632795,'Serge Pizzorno',NULL,NULL),(3632859,'L.A. Lopes',NULL,NULL),(3632976,'Jacob Latimore',1996,NULL),(3633752,'Jennifer Blakeslee',NULL,NULL),(3633980,'Ajay Sharma',NULL,2021),(3633993,'Uri Singer',1960,NULL),(3634536,'David Keitsch',NULL,NULL),(3635292,'Kristen Brunelli',NULL,NULL),(3635401,'Michelle Waring',NULL,NULL),(3636519,'Brent Christy',NULL,NULL),(3636628,'Jean-Michel Derenne',NULL,NULL),(3637755,'Lauren Lakis',NULL,NULL),(3638077,'Jake Ryan',NULL,NULL),(3638150,'Jackie Kelman Bisbee',NULL,NULL),(3640151,'Ryan Rettig',NULL,NULL),(3640154,'Mayu Matsuoka',1995,NULL),(3640199,'Mark Gao',NULL,NULL),(3640231,'Javad Nazari',1361,NULL),(3640854,'Koo Kyo-hwan',NULL,NULL),(3641002,'Austin Abrams',1996,NULL),(3641121,'Seo Dong-soo',NULL,NULL),(3641913,'Alexandra Harwood',NULL,NULL),(3642408,'Kevin James McMullin',NULL,NULL),(3643224,'Makoto Nagahisa',1984,NULL),(3643519,'Alex Disenhof',NULL,NULL),(3643706,'Christopher Azara',NULL,NULL),(3643746,'Avgousta Zourelidi',NULL,NULL),(3643779,'Kelly O\'Sullivan',NULL,NULL),(3643928,'John Blakeslee',NULL,NULL),(3644000,'La Finca',NULL,NULL),(3644298,'Richard McDowell',NULL,NULL),(3644432,'Jens Mårtensson',NULL,NULL),(3644706,'Noël Wells',1986,NULL),(3644845,'Alex Saks',NULL,NULL),(3645185,'Ami-Ro Sköld',NULL,NULL),(3645308,'Mel Jones',NULL,NULL),(3645510,'Sara Kamrani',NULL,NULL),(3645753,'Mahmoud Babai',NULL,NULL),(3646050,'Lucien Dale',NULL,NULL),(3646369,'Mir Ali Husain',NULL,NULL),(3646390,'Jonathan del Val',NULL,NULL),(3646923,'Roxane Duran',1993,NULL),(3647115,'Shane Reid',NULL,NULL),(3647285,'Anna Nevander',NULL,NULL),(3647676,'Charlie Murphy',1987,NULL),(3647848,'Febe Nilsson',NULL,NULL),(3647860,'Tristan Parrish Moore',NULL,NULL),(3648497,'Tsutomu Kuroiwa',NULL,NULL),(3649361,'David Battle',NULL,NULL),(3649782,'Angel Lopez',NULL,NULL),(3650037,'Sky Ferreira',1992,NULL),(3650501,'Rebecca Griffiths',NULL,NULL),(3650664,'Abbey Dubin',1983,NULL),(3650704,'Lou de Laâge',1990,NULL),(3650771,'Tom Taylor',NULL,NULL),(3651147,'Michael Dionisio Morales',NULL,NULL),(3651498,'Jack Wylson',NULL,NULL),(3652021,'Meera Menon',NULL,NULL),(3652026,'Phillip James Gilberti',NULL,NULL),(3653131,'Jerôme Echenoz',NULL,NULL),(3653190,'Michael Patrick O\'Brien',NULL,NULL),(3653856,'Nancy Jo Sales',NULL,NULL),(3654967,'Jenni Melear',NULL,NULL),(3655313,'Jordan Monsanto',NULL,NULL),(3655562,'Amy Andelson',NULL,NULL),(3656210,'Carey Williams',NULL,NULL),(3656297,'Dan Rush',NULL,NULL),(3656848,'Griffin Boice',NULL,NULL),(3657043,'Dani Rovira',1980,NULL),(3657831,'Susy Suranyi',NULL,NULL),(3658138,'Chris Galletta',NULL,NULL),(3658287,'Bianca Bradey',NULL,NULL),(3658958,'Alex Honnold',1985,NULL),(3659547,'Alex Scharfman',NULL,NULL),(3659660,'Corey Hawkins',1988,NULL),(3660335,'George Holdcroft',NULL,NULL),(3660766,'Carolina Yuste',1991,NULL),(3660914,'Joe Dunthorne',1982,NULL),(3661801,'Aqib Khan',1994,NULL),(3661978,'Diego Anido',NULL,NULL),(3663115,'Christya Nordstokke',NULL,NULL),(3663196,'Ariana DeBose',1991,NULL),(3663291,'Thomas Chester',NULL,NULL),(3663324,'Kathryn McCormick',1990,NULL),(3664579,'Parke Gregg',NULL,NULL),(3664884,'Philip Gelatt',NULL,NULL),(3665102,'Eric Brenner',NULL,NULL),(3665210,'Olivier Gossot',NULL,NULL),(3665235,'Lars Beckung',NULL,NULL),(3665787,'Tom Cullen',1985,NULL),(3666261,'Tom Dalton',NULL,NULL),(3666749,'Taylour Paige',1990,NULL),(3667303,'Emma Jensen',NULL,NULL),(3668132,'Anil Naidu',NULL,2020),(3668292,'Mikey McCleary',NULL,NULL),(3669468,'Lucía Carreras',NULL,NULL),(3669779,'Joel P West',NULL,NULL),(3670452,'Jeff Howard',NULL,NULL),(3671447,'Gemma Hurley',NULL,NULL),(3672175,'Jasna Fritzi Bauer',1989,NULL),(3672479,'Bud Bennett',NULL,NULL),(3672484,'Lidiya Oleksandrivna Savka',NULL,NULL),(3673803,'Víctor Matellano',NULL,NULL),(3673821,'Seo-hyun Ahn',2004,NULL),(3673996,'Cassandra Clare',1973,NULL),(3675159,'Justin Malen',1976,NULL),(3675178,'Terri Minton',NULL,NULL),(3675414,'Takuya Itô',NULL,NULL),(3675845,'David Steindl-Rast',1926,NULL),(3675884,'Rosie Shaw',NULL,NULL),(3676100,'Hyang-gi Kim',2000,NULL),(3676105,'Patricia B. Till',NULL,NULL),(3676311,'Remi Weekes',NULL,NULL),(3676489,'Milo Manheim',2001,NULL),(3676643,'Tommy Niessner',1982,NULL),(3676680,'Théo Fernandez',1998,NULL),(3678203,'Ryan Fitzsimmons',NULL,NULL),(3678448,'Coral Cruz',NULL,NULL),(3678876,'Jess Salgueiro',NULL,NULL),(3679189,'Kelley',NULL,NULL),(3679540,'Philippe Lesage',NULL,NULL),(3679641,'Jacob Heger',NULL,NULL),(3680598,'Diana Elizabeth Torres',NULL,NULL),(3680658,'Yeri Han',NULL,NULL),(3680694,'Keon Alexander',NULL,NULL),(3681192,'Leo Birenberg',NULL,NULL),(3681509,'Oliver Thompson',NULL,NULL),(3682080,'Dave Jesteadt',NULL,NULL),(3682427,'Jeremiah Franco',NULL,NULL),(3682691,'Kevin Dreyfuss',NULL,NULL),(3683310,'Fintan Halpenny',NULL,NULL),(3683717,'Tyler Hagan',NULL,NULL),(3684413,'James Canon',NULL,NULL),(3684595,'Wendi Murdoch',1968,NULL),(3686059,'Matt Carbo',NULL,NULL),(3686526,'Daniel James',NULL,NULL),(3686688,'Oscar Boyson',NULL,NULL),(3687514,'Erik Schmitt',1980,NULL),(3687608,'Bonnie Skoog',NULL,NULL),(3688576,'Rowan Blanchard',2001,NULL),(3688913,'Mario Fratti',NULL,2023),(3689536,'Jenna Cato Bass',NULL,NULL),(3689973,'Andrew Knauer',NULL,NULL),(3690275,'Vanessa Elgrichi',NULL,NULL),(3690965,'Reinhard Denke',NULL,NULL),(3691157,'Terutaka Hasegawa',NULL,NULL),(3691272,'Ploetz',NULL,NULL),(3692021,'Jennifer Cochis',NULL,NULL),(3692297,'Grunato',NULL,NULL),(3692829,'Larella',NULL,NULL),(3693285,'Juliette Angeli',NULL,NULL),(3693309,'Alexis Clagett',NULL,NULL),(3693538,'Xenia Goodwin',1994,NULL),(3693580,'Mike O\'Leary',NULL,NULL),(3695539,'Nick Iway',NULL,NULL),(3696607,'João Villas-Boas',1982,NULL),(3697166,'Arastoo Givi',NULL,NULL),(3697467,'Hunter Cope',1987,NULL),(3697679,'Richard Phillips',NULL,NULL),(3699074,'Rob Savage',1992,NULL),(3699483,'Tom Charlfa',NULL,NULL),(3699790,'DK Welchman',NULL,NULL),(3700091,'Sean McRonnel',NULL,NULL),(3700729,'Mikael Johansson',NULL,NULL),(3700814,'Matt C. Burnett',NULL,NULL),(3701591,'Janeva Zentz',NULL,NULL),(3701612,'Jessica M. Thompson',NULL,NULL),(3701958,'Manuk Depoyan',NULL,NULL),(3702160,'Ashleigh Murray',1988,NULL),(3702875,'Derek Efrain Villanueva',NULL,NULL),(3703274,'Sienna Bohn',NULL,NULL),(3703488,'Sergei Bespalov',NULL,NULL),(3704942,'Chris Swanson',NULL,NULL),(3705821,'Mark Holden',NULL,NULL),(3705886,'Jihae',NULL,NULL),(3706440,'Willy Jáuregui',NULL,NULL),(3707431,'Atsushi Ito',NULL,NULL),(3708135,'Max Rifkind-Barron',NULL,NULL),(3708716,'Sarah Ellison',NULL,NULL),(3709364,'Simon Moutaïrou',NULL,NULL),(3709826,'Jeff Detsky',NULL,NULL),(3709976,'Tairo Caroli',NULL,NULL),(3709982,'Kristina Rivera',NULL,NULL),(3710430,'Brian Aabech',NULL,NULL),(3711108,'Daniel van Hoogstraten',NULL,NULL),(3711855,'Matt Perez',NULL,NULL),(3712568,'Aaron Kopp',NULL,NULL),(3712942,'Bianca Queen',NULL,NULL),(3713130,'Andrea Iervolino',NULL,NULL),(3713819,'Hai-Qing',1978,NULL),(3713920,'Adam Lustick',NULL,NULL),(3714535,'Kyle Catlett',2002,NULL),(3715867,'Stephanie Beatriz',1981,NULL),(3716653,'Jason Derulo',1989,NULL),(3716878,'Audrey P. Scott',NULL,NULL),(3717149,'Ben Edwards',NULL,NULL),(3717662,'Lee Magiday',NULL,NULL),(3718007,'Jonathan Majors',1989,NULL),(3718242,'David Schuurman',NULL,NULL),(3719393,'Sandra L. Martin',NULL,NULL),(3719585,'Özer Arslan',1983,NULL),(3720611,'Carolyn S. Briggs',NULL,NULL),(3720904,'Brian Lannin',NULL,NULL),(3721581,'Kami Garcia',NULL,NULL),(3721662,'Nilesh Maniyar',NULL,NULL),(3722546,'Gareth Dunnet-Alcocer',NULL,NULL),(3722777,'Michael Turchin',1987,NULL),(3723390,'Hildur Guðnadóttir',1982,NULL),(3724288,'Danny Kravitz',NULL,NULL),(3724719,'Moerangi Tihore',NULL,NULL),(3725055,'Jessica Henwick',1992,NULL),(3725110,'Te Aho Eketone-Whitu',NULL,NULL),(3726210,'Klaus von Sayn-Wittgenstein',NULL,NULL),(3726887,'Jessica Brown Findlay',1989,NULL),(3727445,'Marion Bouvarel',NULL,NULL),(3728095,'Abbi Gray',NULL,NULL),(3728712,'Jeff Chan',NULL,NULL),(3728869,'Cécile Schott',NULL,NULL),(3728917,'Kristian James Andresen',1972,NULL),(3729225,'Gwendoline Christie',1978,NULL),(3729325,'Mercedes Manning',NULL,NULL),(3729721,'Dylan O\'Brien',1991,NULL),(3730005,'Quiara Alegría Hudes',1977,NULL),(3730253,'Alexandra Borbély',1986,NULL),(3731363,'Dan Lautner',NULL,NULL),(3731645,'Laura Waddell',NULL,NULL),(3732046,'Grigoriy Dobrygin',1986,NULL),(3732104,'Norberto Lobo',NULL,NULL),(3732758,'Andrea Bauer',NULL,NULL),(3732846,'Mahmoud Razavi',NULL,NULL),(3733605,'Tom Alpern',NULL,NULL),(3733695,'Edwin Anthony',NULL,NULL),(3733763,'Sofia Black-D\'Elia',1991,NULL),(3733941,'Kyle Franke',NULL,NULL),(3734458,'Rupert Goold',1972,NULL),(3735190,'Harriet Minto-Day',NULL,NULL),(3736623,'Tristan Roache-Turner',NULL,NULL),(3737483,'Danny Bensi',NULL,NULL),(3737504,'Kiah Roache-Turner',NULL,NULL),(3737930,'Ibrahim Maalouf',NULL,NULL),(3738284,'Tim Namour',NULL,NULL),(3739269,'Renee Mytar',NULL,NULL),(3739336,'Seong-hun Cheon',NULL,NULL),(3739595,'Daniel Tuch',NULL,NULL),(3741451,'David Sztanke',NULL,NULL),(3742281,'Dwain Worrell',NULL,NULL),(3742427,'Simon Rudholm',NULL,NULL),(3742758,'Ken Breese',NULL,NULL),(3742794,'Alan Dean',NULL,NULL),(3742814,'Sylvain Estibal',NULL,NULL),(3742959,'Jesper Hansen',NULL,NULL),(3742962,'Marina Rice Bader',NULL,NULL),(3743052,'Amy Odell',NULL,NULL),(3743063,'Hayden Frost',NULL,NULL),(3743097,'Rina Yang',NULL,NULL),(3743687,'Tomoe Kanno',NULL,NULL),(3743707,'Neide Vieira',NULL,NULL),(3743814,'Eugenia Mumenthaler',NULL,NULL),(3743828,'Clare Niederpruem',1986,NULL),(3743833,'Earl Lynn Nelson',1942,2018),(3743845,'Lihu Roter',NULL,NULL),(3744610,'Cait Cortelyou',NULL,NULL),(3744919,'Amir Fishman',NULL,NULL),(3745427,'Nils Moström',NULL,NULL),(3745432,'Kobe Van Steenberghe',NULL,NULL),(3746649,'John Palladino',NULL,NULL),(3746934,'Robrecht Heyvaert',NULL,NULL),(3747101,'Matthias Hungerbühler',NULL,NULL),(3747412,'Diego Gilly',NULL,NULL),(3747611,'Odessa Young',1998,NULL),(3749211,'Joselyn Hughes',NULL,NULL),(3749668,'Saif Al-Warith',NULL,NULL),(3749687,'Haley Bishop',NULL,NULL),(3749865,'Vance Null',NULL,NULL),(3750284,'Manoochehr Rahimi',NULL,NULL),(3750804,'Ichi Kyokaku',NULL,NULL),(3751979,'Collie Buddz',NULL,NULL),(3752010,'Simaye Mehr',NULL,NULL),(3752027,'Johnny Dunn',NULL,NULL),(3752295,'Lee Da-wit',1994,NULL),(3752454,'Noah Silver',NULL,NULL),(3753061,'Maxime Barzel',NULL,NULL),(3753393,'Laurence Arné',1982,NULL),(3753553,'Adjetey Anang',NULL,NULL),(3754060,'Ann-Kristin Homann',NULL,NULL),(3754278,'Pico Alexander',1991,NULL),(3754335,'Maja Öman',NULL,NULL),(3754607,'Lydia Forson',NULL,NULL),(3755246,'Penny Loeb',NULL,NULL),(3755905,'Marie de Surgis',NULL,NULL),(3755906,'Gerald Salmina',NULL,NULL),(3756134,'Qing Wang',NULL,NULL),(3756395,'E.D. Baker',NULL,NULL),(3756517,'Bora Altas',NULL,NULL),(3758466,'Gustav Fischer Kjærulff',2000,NULL),(3758734,'Nadia Hilker',1988,NULL),(3760436,'Cameron Lawther',1990,NULL),(3760517,'Atul Raninga',NULL,NULL),(3761004,'Nani',1984,NULL),(3761791,'Peter O\'Brien',NULL,NULL),(3762213,'Shay Mitchell',1987,NULL),(3762369,'Rebecca Da Costa',NULL,NULL),(3763513,'Ben Rapson',NULL,NULL),(3763806,'Martin Metz',NULL,NULL),(3763905,'Ron Haimov',NULL,NULL),(3763939,'Heidi Murkoff',NULL,NULL),(3764049,'Michael Allen',NULL,NULL),(3764055,'Emil Nygaard Albertsen',NULL,NULL),(3764352,'Prasad Devineni',NULL,NULL),(3764562,'Asjha Cooper',1993,NULL),(3765270,'Joe Jenckes',NULL,NULL),(3765756,'Anna Shurochkina',1990,NULL),(3766090,'Doug Walker',1981,NULL),(3767498,'Joel Van Vliet',NULL,NULL),(3768162,'Michael Turner',NULL,NULL),(3768173,'Jerry Hoffmann',1989,NULL),(3768523,'Miori Takimoto',1991,NULL),(3768714,'Gregory Erdstein',NULL,NULL),(3769182,'John Higgins',NULL,NULL),(3769877,'Manal Hammad',NULL,NULL),(3769935,'Luke Vanek',NULL,NULL),(3770066,'Clide Delaney',NULL,NULL),(3770108,'Felix Vossen',NULL,NULL),(3770448,'Morris Paulson',NULL,NULL),(3771071,'Kim Bailey',NULL,NULL),(3771227,'Guillermo Amoedo',NULL,NULL),(3771577,'Stacey Menear',NULL,NULL),(3771587,'John Hodges',NULL,NULL),(3771823,'Daniel Goldhaber',NULL,NULL),(3772243,'Theo James',1984,NULL),(3772853,'Isaac Marion',NULL,NULL),(3772967,'Julia Leigh',NULL,NULL),(3773382,'Yun Wang',NULL,NULL),(3773434,'Kyle Hunter',NULL,NULL),(3773899,'Tom Jemmott',NULL,NULL),(3773933,'Justin Fix',NULL,NULL),(3774284,'Sean McDaniel',NULL,NULL),(3774536,'Marc Goyens',NULL,NULL),(3775019,'Andrew Dodge',NULL,NULL),(3775129,'Anna Kojevnikov',NULL,NULL),(3775423,'Katie Stevens',1992,NULL),(3775833,'Jon Nohrstedt',NULL,NULL),(3776083,'Hassan Loo Sattarvandi',NULL,NULL),(3776906,'Chloe Farnworth',1989,NULL),(3777031,'Nicholas Pollock',NULL,NULL),(3777419,'Wael Farag',NULL,NULL),(3777780,'Atul Gogavale',NULL,NULL),(3778080,'Aleah Morrison',NULL,NULL),(3778981,'Artyom Tsukanov',NULL,NULL),(3779182,'Chino Darín',1989,NULL),(3779619,'Juliet McDaniel',NULL,NULL),(3779934,'Matthew Wilcock',NULL,NULL),(3780043,'Dylan Llewellyn',1992,NULL),(3780848,'ASKA',NULL,NULL),(3781410,'Sebastian Bull',1995,NULL),(3781554,'John McPhail',NULL,NULL),(3782043,'Ariel Shaffir',NULL,NULL),(3782063,'Kanae Minato',NULL,NULL),(3782182,'Julia Lebedev',NULL,NULL),(3782251,'Michael Pollack',NULL,NULL),(3782307,'Daniel Kokotajlo',NULL,NULL),(3782913,'Jeremy Truelove',NULL,NULL),(3783426,'Jonathan Ward',NULL,NULL),(3783488,'Alice Foulcher',NULL,NULL),(3783700,'Seán Doyle',1992,NULL),(3784672,'Andrew De Angelis',NULL,NULL),(3785083,'Heather Fagan',NULL,NULL),(3785390,'Anthony Willis',NULL,NULL),(3785503,'Chloe Csengery',NULL,NULL),(3787416,'Jobie Hughes',1980,NULL),(3788293,'Torin Borrowdale',NULL,NULL),(3789533,'Michael C. Dougherty',NULL,NULL),(3789702,'Carl Hayes',NULL,NULL),(3789750,'Massimo Gramellini',1960,NULL),(3789954,'Steven Fisher',NULL,NULL),(3789989,'Alexandra Roach',1987,NULL),(3792134,'Aneesh Chaganty',NULL,NULL),(3792374,'Lauren Hatchard',NULL,NULL),(3792499,'Gianluca Misiti',1970,NULL),(3792633,'Brian Weber',NULL,NULL),(3794057,'Jane Fleming',NULL,NULL),(3794614,'Gaspard Proust',NULL,NULL),(3795048,'Nikkia Moulterie',NULL,NULL),(3797610,'Seong-won Ji',NULL,NULL),(3797883,'Nissar Modi',NULL,NULL),(3799669,'Hannah Ware',1982,NULL),(3800133,'Andrew Heffernan',NULL,NULL),(3800566,'Leslie Chappell',NULL,NULL),(3801930,'Igor Princic',NULL,NULL),(3801968,'Calle Lindqvist',1995,NULL),(3802039,'Yilin Yang',NULL,NULL),(3802600,'Mariasun Pagoaga',NULL,NULL),(3802743,'Sophia Disgrace',NULL,NULL),(3803244,'Andy Cabic',NULL,NULL),(3803950,'Tara Harrelson',NULL,NULL),(3804405,'Fanny Ketter',1996,NULL),(3804804,'George Brennan',NULL,NULL),(3805163,'James Murphy',1970,NULL),(3805317,'Claire V. Riley',NULL,NULL),(3805567,'Blondin Miguel',NULL,NULL),(3805636,'Akashaditya Lama',NULL,NULL),(3806393,'Julian Ulrichs',NULL,NULL),(3806729,'Austin Harvey Stock',NULL,NULL),(3807555,'David Constantine',NULL,NULL),(3807687,'Kirsty Hickey',1996,NULL),(3807837,'Satoshi Jinno',NULL,NULL),(3808311,'Gabriel Bitar',NULL,NULL),(3808418,'Joe Sill',NULL,NULL),(3808455,'Justin Springer',NULL,NULL),(3809533,'Lewis Lovhaug',1987,NULL),(3810896,'Eduardo Serrano',NULL,NULL),(3811174,'Carl Effenson',NULL,NULL),(3811798,'Virginia Petrucci',1987,NULL),(3812814,'Rory Kulz',1987,NULL),(3814301,'Amitabh Bhattacharya',NULL,NULL),(3815139,'Stevie Lee',NULL,NULL),(3815211,'Bradley Fowler',NULL,NULL),(3815288,'Jack Taylor',NULL,NULL),(3815987,'Maarten Ketels',NULL,NULL),(3816287,'Club Foot Orchestra',NULL,NULL),(3817317,'Max Barbakow',NULL,NULL),(3817466,'Julia Sarah Stone',1997,NULL),(3817633,'Janani Iyer',1987,NULL),(3818748,'Katie Findlay',1990,NULL),(3819217,'Rose Glass',NULL,NULL),(3819279,'Martin Solvang',NULL,NULL),(3819444,'Ross Putman',NULL,NULL),(3819588,'Preeti Desai',1981,NULL),(3819777,'Bryce Lindemann',NULL,NULL),(3819792,'Geoff Moore',NULL,NULL),(3819839,'Martin Pensa',NULL,NULL),(3820524,'Thibault Vanhulle',NULL,NULL),(3821224,'Andrew Ahn',1986,NULL),(3821363,'Matthew Fogel',NULL,NULL),(3821405,'Jake Lacy',1986,NULL),(3821667,'Arun Rangachari',NULL,NULL),(3821738,'Alan Tong',NULL,NULL),(3821782,'Kacey Rohl',1991,NULL),(3821816,'Hsueh-Shun Chang',NULL,NULL),(3822259,'Ya-Wen Chan',NULL,NULL),(3822462,'Rila Fukushima',NULL,NULL),(3822528,'Will Collins',NULL,NULL),(3822770,'Rajkummar Rao',1984,NULL),(3823482,'Takashi Watanabe',NULL,NULL),(3825122,'Dominic Lewis',NULL,NULL),(3827087,'Sae-byeok Song',NULL,NULL),(3827455,'Lili Simmons',1993,NULL),(3827692,'Christian Marclay',NULL,NULL),(3828850,'Rikhav Desai',NULL,NULL),(3828984,'Ranveer Singh',1985,NULL),(3829564,'Ewa Kasp',1984,NULL),(3830070,'Dayeanne Hutton',NULL,NULL),(3831085,'Elisabeth Holm',NULL,NULL),(3831411,'Marly Halpern-Graser',NULL,NULL),(3832292,'Masaaki Taniguchi',1966,NULL),(3832790,'Raghuvir Joshi',NULL,NULL),(3832805,'Adam Scarth',NULL,NULL),(3833088,'Ryan David Leack',NULL,NULL),(3834107,'Kôichirô Natsume',NULL,NULL),(3834300,'Noah Oppenheim',NULL,NULL),(3834604,'Regan Hall',NULL,NULL),(3834687,'Sophie Corra',NULL,NULL),(3834777,'Fiston Barek',NULL,NULL),(3835542,'Akihiro Yoshida',NULL,NULL),(3836404,'Gaspard Augé',1979,NULL),(3837786,'Amara Miller',2000,NULL),(3838034,'Griffin Gluck',2000,NULL),(3838127,'Jasper Newell',NULL,NULL),(3838148,'Chad A. Verdi',NULL,NULL),(3839262,'Felix Grande',NULL,NULL),(3839354,'Daniel Casares',NULL,NULL),(3839572,'Min-ho Hwang',NULL,NULL),(3840676,'Giuseppe Truppi',NULL,NULL),(3840714,'John O\'Brien',1960,1994),(3840874,'Luke Andrews',NULL,NULL),(3841447,'Emily-Jane Boyle',NULL,NULL),(3843055,'Guy Apriat',NULL,NULL),(3843467,'Odeya Rush',1997,NULL),(3844001,'Adi Adouan',NULL,NULL),(3844616,'Ya\'akov Ahimeir',NULL,NULL),(3845330,'Howard Koda',NULL,NULL),(3845578,'Chris Wojcik',1989,NULL),(3845743,'Candice Hill',NULL,NULL),(3845784,'Tony Cenicola',NULL,NULL),(3846080,'Yoh Yoshida',1974,NULL),(3846106,'Jacob Wysocki',NULL,NULL),(3846193,'Philip Gefter',NULL,NULL),(3846239,'Christopher Storer',NULL,NULL),(3846623,'Bill Cunningham',1929,2016),(3846716,'Cameron Deane Stewart',1991,NULL),(3848064,'Sonakshi Sinha',1987,NULL),(3848484,'Adam Schonberg',NULL,NULL),(3848514,'Giulio Tiberti',NULL,NULL),(3848723,'Tom DeNucci',1984,NULL),(3848973,'R. Samala',NULL,NULL),(3849670,'Faye Marsay',1986,NULL),(3849842,'Sophie Turner',1996,NULL),(3851019,'Alisha Newton',2001,NULL),(3851090,'Marcus Scribner',2000,NULL),(3851266,'Sylvain Jouannet',NULL,NULL),(3852131,'Osamu Tanpopo',NULL,NULL),(3852987,'Sammi Cohen',NULL,NULL),(3853116,'Angelos Venetis',NULL,NULL),(3853652,'Jodie Turner-Smith',1986,NULL),(3853840,'Jock',1972,NULL),(3854689,'Ralph Blindauer',NULL,NULL),(3855258,'Matthew Thurm',NULL,NULL),(3855401,'Olivier Mellano',NULL,NULL),(3856248,'Lukas de Kort',NULL,NULL),(3856284,'Àlex Monner',1995,NULL),(3856500,'Amaury Ovise',NULL,NULL),(3856607,'Sean McConaghy',NULL,NULL),(3856673,'Alex Bach',NULL,NULL),(3857337,'Miles Goodall',NULL,NULL),(3857692,'Alain Moussi',NULL,NULL),(3858223,'Ben Lamb',1989,NULL),(3858594,'Young-seok Kim',NULL,NULL),(3859039,'Isabelle Noel',NULL,NULL),(3859582,'David Leigh',NULL,NULL),(3859624,'Ki Hong Lee',1986,NULL),(3859643,'Greg Russo',NULL,NULL),(3859654,'Josephine Wiggs',NULL,NULL),(3859682,'Ian Samuels',NULL,NULL),(3859856,'Risa Kasumi',1984,NULL),(3860305,'Lola Kirke',NULL,NULL),(3860486,'Nora Grossman',NULL,NULL),(3861089,'Demet Gül',1982,NULL),(3861879,'Michael Freedman',NULL,NULL),(3862641,'Carlyn Burchell',NULL,NULL),(3864163,'Raffey Cassidy',2001,NULL),(3864634,'Diane Jassem',NULL,NULL),(3866005,'Agnes Lindström Bolmgren',NULL,NULL),(3866481,'Alex White',NULL,NULL),(3866538,'Aron Lehmann',1981,NULL),(3867315,'Michael Rinaldi',NULL,NULL),(3867591,'Tina Desai',1987,NULL),(3868222,'Min Je',NULL,NULL),(3868633,'Severin Fiala',1985,NULL),(3868645,'Toru Akasaka',NULL,NULL),(3870145,'Yoshihiro Satô',NULL,NULL),(3870772,'Stirling Bancroft',NULL,NULL),(3871647,'Dylan Gelula',1994,NULL),(3872230,'Beulah Koale',1991,NULL),(3872326,'Hiroshi Sakurazaka',NULL,NULL),(3872555,'Miranda Tapsell',NULL,NULL),(3873581,'Kaine Harling',1977,NULL),(3873682,'Renan Artukmac',NULL,NULL),(3873825,'François De Brigode',NULL,NULL),(3874997,'Kendra Mylnechuk',NULL,NULL),(3875456,'Shamier Anderson',1991,NULL),(3875898,'Armen Aghaeian',NULL,NULL),(3876660,'David Pesta',NULL,NULL),(3876762,'Katya Trichkova',NULL,NULL),(3878725,'Moses Storm',1990,NULL),(3879121,'Kassandra Clementi',1990,NULL),(3880523,'Jet Jurgensmeyer',2004,NULL),(3881007,'Kwok-Lam Sin',NULL,NULL),(3881333,'Show Lo',1979,NULL),(3881852,'Antonio Mancino',1972,NULL),(3882076,'Leal Naim',NULL,NULL),(3882588,'Ignasi Estapé',NULL,NULL),(3882975,'Pierce Varous',NULL,NULL),(3883921,'Andros Achilleos',NULL,NULL),(3884127,'Gregg Hurwitz',1973,NULL),(3884187,'Will Areu',NULL,NULL),(3884348,'Noga Ashkenazi',NULL,NULL),(3885069,'Arash Amel',NULL,NULL),(3885341,'Sophie Lane Curtis',NULL,NULL),(3886028,'Angourie Rice',2001,NULL),(3886504,'Ziyi Wang',1982,NULL),(3887275,'Rei Mikamoto',NULL,NULL),(3887340,'Tamayo',1973,NULL),(3887352,'Kyara Uchida',1999,NULL),(3887625,'Alex Russell',1987,NULL),(3887796,'Saori Itamuro',NULL,NULL),(3888568,'Gene McHugh',NULL,NULL),(3888703,'Hyun-woo Kim',NULL,NULL),(3888784,'Kuy-young Park',NULL,NULL),(3889354,'Gustavo Hernández',NULL,NULL),(3889670,'Wasiliki Bleser',NULL,NULL),(3889676,'Clara Augarde',1995,NULL),(3889963,'Lee Ji-eun',1993,NULL),(3890560,'Benjamin Daniel',1987,NULL),(3890751,'Daniel Thomaser',NULL,NULL),(3890871,'John-Henry Butterworth',1976,NULL),(3890987,'Samuel Bottomley',2001,NULL),(3891095,'David MacGregor',NULL,NULL),(3891226,'Kristina Asmus',1988,NULL),(3892047,'Ilse Salas',NULL,NULL),(3892153,'Stacy Ann Strang',NULL,NULL),(3892419,'Humaima Malik',1987,NULL),(3892675,'Mark Greaney',NULL,NULL),(3893990,'Takahiro Yokokawa',NULL,NULL),(3894041,'Michael Schiciano',1983,NULL),(3894387,'Claude Dal Farra',NULL,NULL),(3894454,'Brice Dal Farra',NULL,NULL),(3894605,'Aaron Pressburg',NULL,NULL),(3894671,'Domenic Migliore',1990,NULL),(3895605,'Joseph Muszynski',NULL,NULL),(3897515,'Ozen Ozkan',NULL,NULL),(3897655,'Harley Bird',NULL,NULL),(3898016,'Leticia López Margalli',NULL,NULL),(3898095,'Yoshihiro Kubota',NULL,NULL),(3898253,'Christina Mengert',NULL,NULL),(3898553,'Melissa Finell',NULL,NULL),(3898788,'Trond Nilssen',1990,NULL),(3899008,'Jonas Bendsen',NULL,NULL),(3900456,'Dan Teicher',NULL,NULL),(3901375,'Pascual Vazquez',NULL,NULL),(3901455,'Mariana Treviño',1977,NULL),(3901669,'Van Royko',NULL,NULL),(3902730,'Andrew Droz Palermo',NULL,NULL),(3903346,'Brandi Grahek',NULL,NULL),(3903466,'Timothy Butcher',NULL,NULL),(3903664,'Peter Kazungu',NULL,NULL),(3903830,'Sue Stevens',NULL,NULL),(3904597,'Mark Peter Hughes',NULL,NULL),(3904817,'Hanaa Bouchaib',NULL,NULL),(3905306,'Marcie MacLellan',NULL,NULL),(3905923,'Miranda Colclasure',NULL,NULL),(3906046,'Danielle Vitalis',NULL,NULL),(3906411,'Matt Sherring',NULL,NULL),(3906429,'Alex Esmail',NULL,NULL),(3906552,'Finneas O\'Connell',1997,NULL),(3906854,'Ritta Saitô',NULL,NULL),(3907105,'Rachel Crow',1998,NULL),(3907323,'Lauren Munsch',NULL,NULL),(3908957,'Ger Wallace',NULL,NULL),(3908999,'Manfred Knaak',NULL,NULL),(3909481,'S.R. Prakashbabu',NULL,NULL),(3909704,'Christian Angermayer',NULL,NULL),(3910031,'Ben Davies',NULL,NULL),(3910167,'Aki Mizuno',NULL,NULL),(3911112,'Rob Rose',NULL,NULL),(3912822,'Danika Yarosh',1998,NULL),(3912956,'Denise Rebergen',NULL,NULL),(3913567,'Natthakarn Aphaiwonk',NULL,NULL),(3914142,'Thanapat Saisaymar',NULL,NULL),(3915456,'Richard Naing',NULL,NULL),(3915728,'Leeon Jones',NULL,NULL),(3915784,'John Boyega',1992,NULL),(3916149,'Zach Dean',NULL,NULL),(3917690,'Andrew J McGuinness',NULL,NULL),(3918035,'Zendaya',1996,NULL),(3918733,'Nathaniel Rollo',NULL,NULL),(3919354,'Laurent Hadida',NULL,NULL),(3920288,'Taissa Farmiga',1994,NULL),(3920683,'Fanny Yvonnet',NULL,NULL),(3921051,'Danielle Corsa',NULL,NULL),(3921657,'Jacquelyn Le',NULL,NULL),(3921981,'Isabelle Attal',NULL,NULL),(3922307,'Samuel Jones',NULL,NULL),(3922902,'Jean-Baptiste Lafarge',NULL,NULL),(3923278,'Mourad Belkeddar',NULL,NULL),(3924049,'Angel Manuel Soto',1983,NULL),(3924219,'Wenwen Han',1995,NULL),(3924288,'Sarah Dumont',1990,NULL),(3926596,'Fiona Perry',NULL,NULL),(3926614,'Alex Somers',NULL,NULL),(3929074,'Chester',NULL,NULL),(3929195,'Erin Moriarty',1994,NULL),(3929259,'Brian Duffield',NULL,NULL),(3929283,'Kris Bowers',NULL,NULL),(3929735,'Kody Keplinger',1991,NULL),(3929887,'Lili Reinhart',1996,NULL),(3930165,'Alex Thompson',NULL,NULL),(3931046,'Malek Houlihan',NULL,NULL),(3931146,'Shira Potash',NULL,NULL),(3931354,'María Orozco',NULL,NULL),(3934099,'Arielle Boisvert',NULL,NULL),(3934672,'Carlos Castro',NULL,NULL),(3935285,'Laura Freeman',NULL,NULL),(3935350,'José Castro',NULL,NULL),(3935402,'Carmen Vargas',NULL,NULL),(3935609,'David Angel Rivera',NULL,NULL),(3935883,'Alex Gallitano',NULL,NULL),(3936882,'Josh Margolin',NULL,NULL),(3937114,'Michael Georgi',NULL,NULL),(3937438,'Tim Baumann',NULL,NULL),(3937503,'Karan Gour',NULL,NULL),(3937887,'Emil Spahiyski',NULL,NULL),(3938283,'Marie-Charlotte Moreau',NULL,NULL),(3938287,'Christopher Ruíz-Esparza',NULL,NULL),(3938323,'James Cavlo',NULL,NULL),(3939297,'Sébastien Goepfert',NULL,NULL),(3939442,'Laura Dekker',1995,NULL),(3940196,'Erina Mano',1991,NULL),(3940484,'Jake Stormoen',1988,NULL),(3941170,'Arthur Simonini',NULL,NULL),(3941441,'Erich Wagowski',1896,1927),(3941547,'Hendrik Behnisch',NULL,NULL),(3941792,'Anna Fraczak',NULL,NULL),(3941862,'Tadeusz Janczykowski',NULL,NULL),(3943314,'Johan Matton',1985,NULL),(3943537,'Tom Ackerley',NULL,NULL),(3944077,'Ádám Varga',1989,NULL),(3945747,'Yukito Nishii',1995,NULL),(3945847,'David Reissen',NULL,NULL),(3946526,'Eilidh Rankin',NULL,NULL),(3947763,'Ita Zbroniec-Zajt',NULL,NULL),(3948817,'Wayne L. Rogers',NULL,NULL),(3948907,'Alice Macdonald',NULL,NULL),(3948952,'Vanessa Kirby',1988,NULL),(3949693,'João Braz',NULL,NULL),(3949757,'Leendert de Ridder',NULL,NULL),(3950210,'Bailey Noble',1990,NULL),(3950520,'Jason Howden',NULL,NULL),(3950939,'Miles Luna',NULL,NULL),(3951410,'Victor Martinez Aja',NULL,NULL),(3951426,'Anita Gou',NULL,NULL),(3952658,'Shrabani Basu',NULL,NULL),(3952890,'Juliana Harkavy',1985,NULL),(3954547,'Vineet Sinha',NULL,NULL),(3954987,'Thomas Leveritt',NULL,NULL),(3956870,'Shen Hao',NULL,NULL),(3957052,'Jenna Kanell',1991,NULL),(3957926,'Adam Paulsen',NULL,NULL),(3957989,'Stelana Kliris',NULL,NULL),(3958780,'Lulu Adams',NULL,NULL),(3959557,'Audrey Shulman',NULL,NULL),(3959774,'Andrew Herman',NULL,NULL),(3959928,'Michael Jefferson',NULL,NULL),(3960142,'Felipe Vara de Rey',NULL,NULL),(3960548,'Klaus Döring',NULL,NULL),(3960972,'Hélène Le Gal',NULL,NULL),(3960993,'Mallika Dutt',NULL,NULL),(3961014,'Shaun Grant',NULL,NULL),(3961240,'Tomoyo Kurosawa',1996,NULL),(3963209,'Olga Iglesias',NULL,NULL),(3963513,'Dmitriy Glukhovskiy',1979,NULL),(3964350,'Amandla Stenberg',1998,NULL),(3964962,'Tova Stewart',NULL,NULL),(3964998,'Enisha Brewster',NULL,NULL),(3965287,'Decebal Dascau',NULL,NULL),(3966115,'Dan Abnett',1965,NULL),(3966426,'Atsuko Ishizuka',NULL,NULL),(3966456,'Taapsee Pannu',1987,NULL),(3966682,'Gracie Gillam',1992,NULL),(3967248,'Jake Brennan',NULL,NULL),(3967596,'Brett W. Bachman',NULL,NULL),(3967702,'Dax Flame',1991,NULL),(3967771,'Alison Denham',NULL,NULL),(3967796,'Oliver Cooper',NULL,NULL),(3967854,'Jonathan Daniel Brown',NULL,NULL),(3967923,'Jason Weinberg',NULL,NULL),(3968623,'Kristen Ledlow',NULL,NULL),(3968825,'Michael Sarnoski',NULL,NULL),(3969193,'Santi Errando',NULL,NULL),(3970731,'Philippe Di Folco',NULL,NULL),(3970988,'Nikohl Boosheri',1988,NULL),(3971847,'Paul Bernon',NULL,NULL),(3972775,'Sarah Kazemy',1987,NULL),(3973341,'Rob Pallatina',NULL,NULL),(3975435,'Jordan Beckerman',NULL,NULL),(3975594,'Nasim Adabi',NULL,NULL),(3975695,'Sarah-Violet Bliss',NULL,NULL),(3975879,'Masuhiro Yamamoto',NULL,NULL),(3976229,'Richelle Mead',NULL,NULL),(3976409,'Joanna Lewis',NULL,NULL),(3976567,'Tom Edge',NULL,NULL),(3977111,'Takehiko Aoki',NULL,NULL),(3977124,'Chris Daker',NULL,NULL),(3977207,'Noah Stahl',NULL,NULL),(3977251,'Timothy McKinney',NULL,NULL),(3977264,'Arsala Qureishi',NULL,NULL),(3977622,'Fabio Audi',1987,NULL),(3978701,'Ghilherme Lobo',1995,NULL),(3980160,'Reina Triendl',1992,NULL),(3980199,'Erik Rommesmo',NULL,NULL),(3980996,'Elana Esquivel',NULL,NULL),(3981109,'Patrick DeWitt',NULL,NULL),(3981774,'Keith Funkhouser',NULL,NULL),(3982701,'Huberta Von Liel',NULL,NULL),(3984065,'Yukio Kawasaki',NULL,NULL),(3985391,'Gaurav Solanki',1986,NULL),(3985937,'Timothy Simons',1978,NULL),(3986004,'Dustin T. Benson',NULL,NULL),(3986344,'Lauren Oliver',NULL,NULL),(3986722,'Elia Barceló',NULL,NULL),(3987156,'Paul Saunderson',NULL,NULL),(3987336,'Allison Pregler',1989,NULL),(3987382,'Maria Hatzakou',NULL,NULL),(3987673,'Ariane Labed',1984,NULL),(3987974,'Richard Neustadter',NULL,NULL),(3989486,'Lisa Ambalavanar',1988,NULL),(3990728,'Eishi Segawa',NULL,NULL),(3991275,'Josh Ethier',NULL,NULL),(3992361,'Pirie Martin',1990,NULL),(3993221,'Ella Anderson',2005,NULL),(3993668,'Lindsay Hicks',NULL,NULL),(3994172,'John Backderf',1959,NULL),(3994184,'Austin Amelio',1988,NULL),(3994407,'Ryan Potter',1995,NULL),(3994408,'Jane Levy',NULL,NULL),(3995382,'Zach O\'Brien',NULL,NULL),(3995471,'Craig Van Hook',NULL,NULL),(3996001,'Michael Lockshin',NULL,NULL),(3996908,'Shari Sebbens',NULL,NULL),(3997700,'Houda Benyamina',1980,NULL),(3998715,'Alan Page',NULL,NULL),(4000920,'Anik Jean',NULL,NULL),(4001763,'Stephanie Motta',NULL,NULL),(4001975,'Mattie Liptak',1996,NULL),(4002545,'Matthew Kellard',NULL,NULL),(4003520,'Annie Rose Buckley',NULL,NULL),(4003553,'Dylan Arnold',1994,NULL),(4003994,'Riturraj Tripathii',NULL,NULL),(4004793,'Letitia Wright',1993,NULL),(4005207,'Randy Torres',NULL,NULL),(4005376,'Greg Hoople',NULL,NULL),(4005546,'Bruce Peninsula',NULL,NULL),(4005603,'Aarne Aksila',NULL,NULL),(4005843,'Mauno Alasuutari',NULL,NULL),(4006042,'Pekka Ahonen',NULL,NULL),(4006608,'Chloe Pirrie',1987,NULL),(4007038,'Yvon Géraud',NULL,NULL),(4007200,'James Sweeney',NULL,NULL),(4007366,'Richard Weager',NULL,NULL),(4007817,'Bret Witter',NULL,NULL),(4009603,'Justin Cone',NULL,NULL),(4011317,'Gavin Cullen',NULL,NULL),(4011579,'Paul D. Hannah',NULL,NULL),(4013000,'Natalie Erika James',NULL,NULL),(4014004,'Kendall McKinnon',NULL,NULL),(4014166,'Cathy Yan',NULL,NULL),(4015689,'Surveen Chawla',1984,NULL),(4015825,'Zac Adams',NULL,NULL),(4017018,'Mildrid',NULL,NULL),(4017036,'Thuli',NULL,NULL),(4017044,'Studla',NULL,NULL),(4017066,'Josie Baynes',NULL,NULL),(4017283,'Jackie Branfield',NULL,NULL),(4017321,'Eureka',NULL,NULL),(4017355,'Colin Minihan',NULL,NULL),(4017456,'Ladyfair',NULL,NULL),(4020603,'Kathryn Todd Norman',NULL,NULL),(4021049,'Xiaoliang Weng',NULL,NULL),(4021083,'Mitchell Zuckoff',NULL,NULL),(4022289,'Rob Lambros',NULL,NULL),(4023073,'Rosa Salazar',1985,NULL),(4023162,'Miriel Cejas',1988,NULL),(4023702,'Steven Caple Jr.',NULL,NULL),(4025008,'Giulia Caruso',NULL,NULL),(4025229,'Suki Waterhouse',1992,NULL),(4025731,'Gerald Chamales',NULL,NULL),(4025993,'Scooter Braun',NULL,NULL),(4026000,'Matthew Bohrer',NULL,NULL),(4026222,'Hannah New',NULL,NULL),(4029074,'Luxy Banner',NULL,NULL),(4030776,'Laurence R. Harvey',1970,NULL),(4032297,'Chloe Bennet',1992,NULL),(4033934,'Synnøve Macody Lund',1976,NULL),(4034068,'Valérie Beaugrand-Champagne',NULL,NULL),(4034632,'S.S. Kanchi',NULL,NULL),(4034667,'Anthony Holt',NULL,NULL),(4035204,'Reba Buhr',1987,NULL),(4035833,'Joe Tiboni',NULL,NULL),(4036280,'Brandt Andersen',1977,NULL),(4036323,'Tim Belden',NULL,NULL),(4037412,'Ken Inoue',NULL,NULL),(4037960,'Rene G. Boscio',NULL,NULL),(4039044,'Geneva Robertson-Dworet',1985,NULL),(4039577,'Thomas Rames',NULL,NULL),(4040235,'Kwang-young Choi',NULL,NULL),(4040474,'Joel Cadbury',NULL,NULL),(4041027,'Bank Tangjaitrong',NULL,NULL),(4041738,'Mario Pirrello',NULL,NULL),(4043163,'Yagiz Yavru',1980,NULL),(4043287,'Christopher Lemole',NULL,NULL),(4043618,'Tom Holland',1996,NULL),(4043665,'Tim Tharp',NULL,NULL),(4043772,'Ronan Maillard',NULL,NULL),(4044179,'Anthony Cousins',NULL,NULL),(4044784,'Damien Bonnard',1978,NULL),(4045173,'Gustavo Beck',1982,NULL),(4047350,'Masaya Fujimori',NULL,NULL),(4047380,'Anna Meredith',NULL,NULL),(4047694,'Chris Thomas Devlin',NULL,NULL),(4048274,'Duncan MacNeil',NULL,NULL),(4048991,'Michael Hough',NULL,NULL),(4050491,'Peter Hutchings',NULL,NULL),(4050711,'Bidzina Gujabidze',NULL,NULL),(4051162,'Heather McIntosh',NULL,NULL),(4051169,'Simon Cornwell',NULL,NULL),(4052106,'Alex Carbonell',NULL,NULL),(4052240,'Hiroaki Shibata',NULL,NULL),(4052377,'Luca Del Puppo',NULL,NULL),(4053334,'Danny Philippou',1992,NULL),(4054205,'Joey Power',NULL,NULL),(4054218,'Charles Rogers',1987,NULL),(4054458,'Katie Cordeal',NULL,NULL),(4054498,'A.J. Mendez',1987,NULL),(4055138,'Charlie Plummer',1999,NULL),(4055424,'Jessica Caldwell',NULL,NULL),(4056296,'Hiroki Hasegawa',1977,NULL),(4056338,'Ken Kao',NULL,NULL),(4056398,'Jessica London-Shields',NULL,NULL),(4056899,'Mark Gibson',NULL,NULL),(4057720,'Michael Wallach',NULL,NULL),(4057793,'Bill Dubuque',NULL,NULL),(4058030,'George Steuber',NULL,NULL),(4058200,'Tatiana De Rosnay',1961,NULL),(4058241,'Shari Marie Montiague',NULL,NULL),(4058512,'Ashkan Ashkani',NULL,NULL),(4058904,'Chaitanya Tamhane',1987,NULL),(4061206,'Theresa Preston',NULL,NULL),(4062081,'Matt Williams',NULL,NULL),(4062319,'Djo Munga',1972,NULL),(4062412,'Lanie Faith Marie Overton',NULL,NULL),(4063236,'Alexandra Bentley',NULL,NULL),(4064140,'Neyde Senna',NULL,NULL),(4064518,'John Roberts',1971,NULL),(4065767,'James Brown',NULL,NULL),(4067233,'Renu Devi',NULL,NULL),(4067348,'Rekha Paswan',NULL,NULL),(4067606,'Sampat Pal Devi',NULL,NULL),(4068364,'Niranjan Pal',NULL,NULL),(4068476,'Cameron McKendry',1996,NULL),(4068901,'Madison Wolfe',2002,NULL),(4069148,'Gong Geer',NULL,NULL),(4069492,'Ayse Altay',NULL,NULL),(4069814,'Ashley Ciarra',2008,NULL),(4070086,'Yahima Torres',NULL,NULL),(4070137,'Christopher Wessels',NULL,NULL),(4070559,'Ali Mendes',NULL,NULL),(4071082,'Diplome Amekindra',NULL,NULL),(4071231,'Patsha Bay',NULL,NULL),(4071338,'Dorothy Fucito',NULL,NULL),(4072885,'Kathryn Sommer-Parry',NULL,NULL),(4074194,'Amie Doherty',NULL,NULL),(4074404,'Leigh Janiak',1980,NULL),(4074500,'Charles Dorfman',NULL,NULL),(4075257,'Jane Mendelsohn',NULL,NULL),(4075562,'Ulrike Haage',1957,NULL),(4077861,'Somnath Pal',NULL,NULL),(4077908,'Cozi Zuehlsdorff',1998,NULL),(4078001,'Ronald H. Gilbert',1933,2020),(4078325,'Nice Githinji',NULL,NULL),(4078666,'Alexandra Turshen',1986,NULL),(4080010,'Hana Jusic',NULL,NULL),(4080102,'Karim Boukercha',NULL,NULL),(4080531,'Sophie Kennedy Clark',NULL,NULL),(4081300,'Nadim Mishlawi',NULL,NULL),(4081356,'S.J. Watson',NULL,NULL),(4081721,'Ashley Key',NULL,NULL),(4082120,'Matt Kugelman',NULL,NULL),(4082751,'Gian Filippo Minervini',NULL,NULL),(4083737,'Tobias Santelmann',1980,NULL),(4084999,'Lee Walters',NULL,NULL),(4085019,'Gabriel Abrantes',1984,NULL),(4087420,'Ashley Clements',NULL,NULL),(4087518,'Lee Bermejo',NULL,NULL),(4087606,'Freya Mavor',1993,NULL),(4087835,'Birte Schnöink',NULL,NULL),(4088079,'Mark Peters',NULL,NULL),(4088627,'Jessica Sula',1994,NULL),(4089170,'Harry Styles',1994,NULL),(4089341,'Darren Richter',NULL,NULL),(4089358,'Daniel Domscheit-Berg',1978,NULL),(4091076,'Charlotte Flyvholm',NULL,NULL),(4091175,'Alex Ashbaugh',NULL,NULL),(4091178,'Yukiko Koike',NULL,NULL),(4092213,'Maysaloun Hamoud',1982,NULL),(4092740,'Joanna Vanderham',1991,NULL),(4092984,'Jacob Pechenik',NULL,NULL),(4092986,'Douglas Cox',NULL,NULL),(4094023,'Corbin Reid',1988,NULL),(4094284,'Rory Stewart Kinnear',NULL,NULL),(4094357,'Cristian Gomes',NULL,NULL),(4094947,'Eva Maria Peters',NULL,NULL),(4095121,'Russell Balogh',NULL,NULL),(4096030,'Koba Nakopia',NULL,NULL),(4097817,'Brenton Duplessie',1987,NULL),(4099092,'Trey Edward Shults',NULL,NULL),(4099580,'Owen Pugh',NULL,NULL),(4099985,'Ido Fluk',NULL,NULL),(4100263,'Francisco Marquez',NULL,NULL),(4100452,'Shô Aoyagi',1985,NULL),(4100666,'James Watson',NULL,NULL),(4100704,'Margarita Irun',NULL,NULL),(4100945,'Derek Power',1982,NULL),(4100983,'Maarten Swart',NULL,NULL),(4101103,'Alejandro De Leon',NULL,NULL),(4101208,'Ben Rosenfield',1992,NULL),(4102402,'Samuel Ferrari',NULL,NULL),(4102670,'Tatsuya Miyanishi',NULL,NULL),(4103161,'Brandi Lynn Anderson',1975,NULL),(4103976,'Jonny Weston',1988,NULL),(4104012,'Ken Bretschneider',NULL,NULL),(4105248,'Evan Susser',NULL,NULL),(4105261,'Betsy Koch',NULL,NULL),(4105822,'Bryan Unkeless',NULL,NULL),(4106302,'Douglas Dwight',NULL,NULL),(4106560,'Hamed Hokamzadeh',NULL,NULL),(4106668,'Douglas Smith',NULL,NULL),(4106718,'Jaap-Peter Enderle',NULL,NULL),(4106750,'Adam Frattasio',NULL,NULL),(4107260,'Stephen Elliott',NULL,NULL),(4107666,'Kate Hoffman',NULL,NULL),(4108585,'Jamie Jackson',NULL,NULL),(4108791,'Tosin Cole',1992,NULL),(4108935,'Michael B. Call',NULL,NULL),(4109195,'Daichi Nagisa',NULL,NULL),(4109247,'Tonia Davis',NULL,NULL),(4109270,'Kalanithi Maran',NULL,NULL),(4110183,'Joseph Murray',NULL,NULL),(4110963,'Jack Lowden',1990,NULL),(4111194,'Miles Harrington',NULL,NULL),(4111213,'Alex Garcia',NULL,NULL),(4111426,'Holly Taylor',1997,NULL),(4111911,'Chris Krzykowski',NULL,NULL),(4112253,'Sam Palladio',1986,NULL),(4112854,'Kirti Kulhari',1985,NULL),(4113381,'Natalie Simpkins',NULL,NULL),(4114024,'Nicholas Blandullo',NULL,NULL),(4114096,'Tetsuo Yajima',NULL,NULL),(4114475,'Hayden Byerly',2000,NULL),(4114764,'Hyunri',NULL,NULL),(4115082,'Shunji Aoki',NULL,NULL),(4116978,'Daniel Schmidt',1984,NULL),(4117068,'Tobias Kersloot',1996,NULL),(4117985,'Sebastien Pan',NULL,NULL),(4118184,'Ross Flournoy',NULL,NULL),(4121043,'Dilan Gwyn',NULL,NULL),(4124059,'Scott Poiley',NULL,NULL),(4124318,'Niraj Bhukanwala',NULL,NULL),(4124746,'Tai Berdinner-Blades',NULL,NULL),(4125245,'Sayed Sher Abbas',NULL,NULL),(4125403,'Ella Wahlestedt',NULL,NULL),(4126357,'Marlen Haushofer',1920,1970),(4127778,'Justin Lovell',NULL,NULL),(4129192,'Chloe Cuskin',NULL,NULL),(4129532,'Catherine Blackman',NULL,NULL),(4129745,'Allison Williams',1988,NULL),(4130940,'Rosalie Fortier',NULL,NULL),(4131020,'Matt Charman',NULL,NULL),(4131336,'Rachel Alig',NULL,NULL),(4131373,'Len Blavatnik',NULL,NULL),(4132435,'Sayaka Kotani',NULL,NULL),(4132650,'Jason Michael Berman',NULL,NULL),(4133459,'Steve Wright',NULL,NULL),(4134328,'Kasumi Arimura',1993,NULL),(4138426,'Jessica Haas',NULL,NULL),(4138657,'Dylan Tonk',NULL,NULL),(4139037,'Suraj Sharma',1993,NULL),(4139296,'Clay Haskell',NULL,NULL),(4139352,'Jonathan Wang',1984,NULL),(4139472,'Afonso Poyart',1979,NULL),(4140262,'Lazlo Tonk',NULL,NULL),(4141252,'Lily James',1989,NULL),(4141599,'Kaouther Ben Hania',1977,NULL),(4141803,'Yael Grobglas',1984,NULL),(4142695,'JJ Winlove',NULL,NULL),(4142927,'Navot Papushado',1980,NULL),(4143195,'Cassandra Sechler',NULL,NULL),(4144120,'Tarell Alvin McCraney',1980,NULL),(4145551,'Victoria Aizenstat',NULL,NULL),(4145891,'Nicholas Larrabure',1986,NULL),(4146781,'Charise Castro Smith',NULL,NULL),(4147492,'Ella Celina Bowen',NULL,NULL),(4147558,'Stacey Asaro',1987,NULL),(4148345,'Will Merrick',NULL,NULL),(4148609,'David Bierend',NULL,NULL),(4148859,'Jessica Malanaphy',NULL,NULL),(4149854,'Donald Miller',NULL,NULL),(4149902,'Russell Levine',NULL,NULL),(4150464,'Elodie Codaccioni',NULL,NULL),(4150847,'Stephan James',1993,NULL),(4150929,'Medi Sadoun',1973,NULL),(4154308,'Adriana Gil',NULL,NULL),(4154470,'M.L. Pundhevanop Dhewakul',1953,2022),(4154798,'Brenton Thwaites',1989,NULL),(4155198,'Jason White',NULL,NULL),(4155547,'The Vicious Brothers',NULL,NULL),(4156013,'Jerome Stolly',NULL,NULL),(4156117,'Richard McWilliams',NULL,NULL),(4156156,'Mary Lankford Poiley',NULL,NULL),(4156265,'Zach Kepple',NULL,NULL),(4156443,'Sonya Davison',NULL,NULL),(4157089,'Asta Philpot',NULL,NULL),(4157371,'Walter Campbell',NULL,NULL),(4157919,'Madhan Karky',1980,NULL),(4157959,'Thora Bjorg Helga',NULL,NULL),(4158205,'Jane Bucknell',NULL,NULL),(4158577,'Yoshi Miyamoto',NULL,NULL),(4160188,'Byron Speight',NULL,NULL),(4160687,'Jim Starlin',1949,NULL),(4161154,'Ben Sinclair',1984,NULL),(4161516,'David Bahati',NULL,NULL),(4161717,'Karla',NULL,NULL),(4161838,'Betsy Sodaro',1984,NULL),(4161887,'Long John',NULL,NULL),(4162662,'Killian Coyle',NULL,NULL),(4163732,'Asad Faruqi',NULL,NULL),(4164237,'Bartosz Nalazek',1986,NULL),(4166033,'Adam Higgs',NULL,NULL),(4168062,'Christina Wolfe',NULL,NULL),(4168262,'Lauren Hynek',NULL,NULL),(4168755,'Daniel K. Isaac',1988,NULL),(4169770,'Elodie Harrod',NULL,NULL),(4169922,'Kiersey Clemons',1993,NULL),(4170028,'Brandon Greenhouse',NULL,NULL),(4170048,'Ari Aster',1986,NULL),(4170324,'Mauricio Lopez',NULL,NULL),(4170579,'Iria del Río',1987,NULL),(4170693,'Marlen Kruse',1990,NULL),(4170739,'Catharine E. Jones',NULL,NULL),(4170840,'Jesse Lee Keeter',NULL,NULL),(4170842,'Isaac Aptaker',1987,NULL),(4171513,'Cady Lanigan',NULL,NULL),(4172574,'Jose Luis García',NULL,NULL),(4173215,'Daniel Roher',NULL,NULL),(4173773,'Fernanda Carvalho',NULL,NULL),(4174387,'RDB',1979,NULL),(4175221,'Karan Soni',1989,NULL),(4175771,'Brendan Eder',NULL,NULL),(4175844,'Richard Lanni',NULL,NULL),(4177597,'Billy Mitchell',NULL,2007),(4178453,'Mariana Nunes',NULL,NULL),(4178565,'Brett Nienburg',NULL,NULL),(4180576,'Anuj Gurwara',NULL,NULL),(4181215,'Cody Kearsley',1991,NULL),(4181227,'Allison R. Marx',NULL,NULL),(4181687,'Trevor Lerner',1972,NULL),(4183613,'Lai-Yin Leung',NULL,NULL),(4184184,'Killola',NULL,NULL),(4184666,'Stuart Allan',1999,NULL),(4184816,'James Howson',NULL,NULL),(4185845,'Remington Chase',NULL,2023),(4187130,'Sam Keeley',NULL,NULL),(4187994,'Nicholas Crum',NULL,NULL),(4188433,'Jaideep Ahlawat',1978,NULL),(4189182,'George LaFountaine',1934,NULL),(4190421,'Shane O\'Brien',NULL,NULL),(4191232,'Manoj Muntashir',1976,NULL),(4192630,'Haofeng Xu',NULL,NULL),(4193081,'Raphael Margules',NULL,NULL),(4194689,'Ana Ivanovic',NULL,NULL),(4195983,'Manuel Camacho',NULL,NULL),(4196514,'Soheil Parsa',NULL,NULL),(4197701,'Shireen M. Hashim',NULL,NULL),(4198135,'Farah Zeynep Abdullah',1989,NULL),(4198185,'R. Eric Braun',NULL,NULL),(4198675,'Hiroyuki Sakurada',NULL,NULL),(4199026,'Amy Maghera',NULL,NULL),(4199289,'Katie Silberman',NULL,NULL),(4200139,'David Wong',NULL,NULL),(4201170,'Catherine Baikousis',NULL,NULL),(4202096,'Virginia Kay',NULL,NULL),(4204540,'Marta Flich',NULL,NULL),(4205963,'Oulaya Amamra',1996,NULL),(4207146,'Jason Mitchell',1987,NULL),(4207229,'Amy Jump',NULL,NULL),(4207396,'Harry Simpson',NULL,NULL),(4207679,'Izabela Vidovic',2001,NULL),(4207749,'Joana Metrass',1988,NULL),(4207856,'Ling Zhang',NULL,NULL),(4207924,'William D. Johnson',NULL,NULL),(4208519,'Marina Bespalov',NULL,NULL),(4208990,'Tatiana Niculescu-Bran',NULL,NULL),(4209268,'Hubert Charuel',NULL,NULL),(4209430,'Carlos Vermut',1980,NULL),(4212310,'Megumi Yamaguchi',NULL,NULL),(4212466,'Ben Stillman',NULL,NULL),(4212895,'James Dashner',NULL,NULL),(4214064,'Scarlett Amaris',NULL,NULL),(4215026,'Alex Child',NULL,NULL),(4216406,'Bryce Draper',1982,2021),(4216460,'Talid Ariss',NULL,NULL),(4217264,'Doug Michaels',NULL,NULL),(4217757,'Julien Madon',NULL,NULL),(4218328,'Jim Beggarly',NULL,NULL),(4219902,'Park Hoon-jung',NULL,NULL),(4219921,'Ersin Gok',1980,NULL),(4220250,'Nam-su Kim',NULL,NULL),(4221135,'K Rajagopal',NULL,NULL),(4221607,'Dawid Ogrodnik',1986,NULL),(4222837,'Shelley Farthing-Dawe',NULL,NULL),(4223385,'Thomas Horn',NULL,NULL),(4223882,'Dacre Montgomery',1994,NULL),(4223899,'Liam Graham',1987,NULL),(4225090,'Terra Strong',NULL,NULL),(4226708,'Fall On Your Sword',NULL,NULL),(4227232,'Hannah Fidell',1985,NULL),(4230239,'Chatran',NULL,NULL),(4230873,'Pû',NULL,NULL),(4232089,'Michael Vogel',NULL,NULL),(4233688,'Chizuru Takahashi',NULL,NULL),(4233970,'Rennie Araucto',NULL,NULL),(4234019,'Tetsurô Sayama',NULL,NULL),(4234289,'Rosie Forti',NULL,NULL),(4234703,'Mark Lane',NULL,NULL),(4235455,'Dan Coleman',NULL,NULL),(4235684,'Elvire Emanuelle',NULL,NULL),(4237592,'Alex Nevill',1990,NULL),(4240610,'David Lipsky',NULL,NULL),(4240793,'Angela Wesselman-Pierce',NULL,NULL),(4242511,'Candice Fryer',NULL,NULL),(4243179,'Gregory Goodwine Jr.',NULL,NULL),(4243936,'Harry G. Peter',1880,1958),(4245021,'Per Störby Jutbring',1971,NULL),(4245240,'Fatih Artman',1988,NULL),(4245678,'Grainne McDermott',NULL,NULL),(4245820,'Gábor Pálvölgyi',NULL,NULL),(4247366,'Anthony Roux',NULL,NULL),(4247622,'Alyssa Kay',NULL,NULL),(4247882,'Osamu Hosokawa',NULL,NULL),(4248415,'Greig Cameron',NULL,NULL),(4248765,'Lauren Ridloff',1978,NULL),(4248775,'Sabrina Carpenter',1999,NULL),(4248899,'Gretchen Lodge',NULL,NULL),(4249741,'Kimonas Kouris',NULL,NULL),(4250763,'Ruby Stokes',2000,NULL),(4251668,'Eric B. Fleischman',NULL,NULL),(4251674,'Hayley Huntley',NULL,NULL),(4252090,'David Hernández Miranda',NULL,NULL),(4252250,'Junko Abe',1993,NULL),(4252343,'Myra Karn',NULL,NULL),(4252508,'Jeff Peters',NULL,NULL),(4252598,'Bran Arandjelovich',NULL,NULL),(4253831,'Michelangelo Ciminale',NULL,NULL),(4253884,'Camille Razat',NULL,NULL),(4254419,'Nabwana I.G.G.',NULL,NULL),(4255719,'Kavubu Muhammed',NULL,NULL),(4256281,'Arash Marandi',1984,NULL),(4256326,'G. Puffs',NULL,NULL),(4256393,'Brian Pittman',NULL,NULL),(4256622,'Iain Belcher',1998,NULL),(4256868,'Sserunya Ernest',NULL,NULL),(4256878,'Kizito Vicent',NULL,NULL),(4257098,'Kakule William',NULL,NULL),(4259073,'John Psathas',NULL,NULL),(4259881,'Patrick McKay',NULL,NULL),(4260661,'Sarah Dugdale',1995,NULL),(4260753,'Theo Youngstein',NULL,NULL),(4261010,'Jose Luis Torres',NULL,NULL),(4261097,'Ramiro Ruiz',NULL,NULL),(4262214,'John O\'Connor',NULL,NULL),(4262341,'Metalchicks',NULL,NULL),(4262429,'Agustin Nieves',NULL,NULL),(4262529,'Mathilda von Essen',NULL,NULL),(4263117,'Jaime Mateus-Tique',NULL,NULL),(4263190,'Bilall Fallah',1986,NULL),(4263442,'Josh Potthoff',NULL,NULL),(4263757,'Jeff Hall',NULL,NULL),(4263872,'Ólafur Arnalds',1986,NULL),(4264671,'Shashank Khaitan',1982,NULL),(4265383,'Riza Aziz',NULL,NULL),(4265471,'Jarrad Bhatia',NULL,NULL),(4265844,'Hayden Smith',NULL,NULL),(4265905,'Parker Laramie',NULL,NULL),(4267562,'Jake Castorena',NULL,NULL),(4267908,'Francis Kora',NULL,NULL),(4269084,'Tom Davis',NULL,NULL),(4270477,'Jake Horowitz',NULL,NULL),(4270520,'Sebastian Thaler',1986,NULL),(4270695,'Tituss Burgess',1979,NULL),(4271336,'Shameik Moore',1995,NULL),(4272259,'Vincent Rodriguez III',1982,NULL),(4272786,'S.R. Prabhu',NULL,NULL),(4273301,'Johannes Huth',1989,NULL),(4273524,'Sydney Mikayla',NULL,NULL),(4273749,'Alex Saxon',NULL,NULL),(4273797,'Jerrod Carmichael',1987,NULL),(4273857,'Hamza Ali Abbasi',1984,NULL),(4274360,'Malin Buska',1984,NULL),(4274963,'Yoon-young Choi',1986,NULL),(4275547,'Rania Attieh',NULL,NULL),(4276640,'Dominik Warta',1969,NULL),(4276775,'Beate Støfring',NULL,NULL),(4277253,'Malin Bjørhovde',NULL,NULL),(4277598,'Helene Bergsholm',1992,NULL),(4277690,'Ricsi',NULL,NULL),(4278439,'Jeanne Dandoy',NULL,NULL),(4279413,'Medalion Rahimi',1992,NULL),(4279838,'Ariel Vida',NULL,NULL),(4280221,'Mallory Schwartz',NULL,NULL),(4281603,'Adam B. White',NULL,NULL),(4283294,'K. King',NULL,NULL),(4284066,'Luiza Braga',NULL,NULL),(4285499,'Winant Veldhuizen',NULL,NULL),(4285949,'Doron Amit',1982,NULL),(4286702,'Britta Strathmann',NULL,NULL),(4287576,'Josefine Adolfsson',NULL,NULL),(4287920,'Julie Dell Phillips',NULL,NULL),(4288209,'Linda Molin',1992,NULL),(4288407,'Isabella Lindquist',NULL,NULL),(4288659,'Mathilda Paradeiser',1995,NULL),(4288737,'Sergej Merkusjev',NULL,NULL),(4288936,'Julien Ari',NULL,NULL),(4289089,'Julia Eringer',NULL,NULL),(4289479,'Mao Ichimichi',1992,NULL),(4290530,'Scott Levenson',NULL,NULL),(4291609,'Melissa Navia',NULL,NULL),(4291727,'John Swetnam',NULL,NULL),(4292410,'Moïse Dorkel',NULL,NULL),(4292438,'Laura Pazuchowski',NULL,NULL),(4292757,'Frédéric Dorkel',NULL,NULL),(4293654,'Angela Farinello',NULL,NULL),(4295943,'Susanne Sundfør',NULL,NULL),(4296013,'Halston Sage',1993,NULL),(4296357,'Blake Jenner',1992,NULL),(4297691,'Marine Vacth',1991,NULL),(4298729,'Advaita Kala',NULL,NULL),(4299147,'Sareh Bayat',1979,NULL),(4299440,'Jason Michael MacIsaac',NULL,NULL),(4301557,'Will Tracy',NULL,NULL),(4301796,'John Kerr',1950,2016),(4302809,'Olivia Neergaard-Holm',NULL,NULL),(4303311,'Yoshitsugu Matsuoka',1986,NULL),(4303793,'Stefano Massaron',NULL,NULL),(4303926,'David Kato',1964,2011),(4304388,'Roos Van Vlaenderen',NULL,NULL),(4304940,'Hazar Ergüçlü',1992,NULL),(4305072,'Shin\'ichi Takahashi',NULL,NULL),(4305463,'Naomi Scott',1993,NULL),(4306222,'Chanelle Peloso',1994,NULL),(4307619,'Jean-François Dugas',NULL,NULL),(4307673,'Clara Bodén',1983,NULL),(4308768,'Jeff Graville',NULL,NULL),(4308851,'Kang Ren Wu',1982,NULL),(4308958,'Cicely Irvine',NULL,NULL),(4309251,'Cemal Okan',1961,NULL),(4311291,'Will Brittain',1990,NULL),(4311444,'Mark Helprin',NULL,NULL),(4312021,'Justin Nappi',NULL,NULL),(4312440,'Andros Perugorría',NULL,NULL),(4312900,'Nick Stafford',NULL,NULL),(4313845,'Catherine Chan',1999,NULL),(4314223,'L.T. Hutton',NULL,NULL),(4315078,'Dominic Cooke',NULL,NULL),(4315422,'Michaël Tordjman',NULL,NULL),(4316121,'Veronica Roth',1988,NULL),(4317471,'Daniel Tenenbaum',NULL,NULL),(4317669,'Dan Kearney',NULL,NULL),(4317871,'LaMonta Caldwell',NULL,NULL),(4318159,'Nitesh Tiwari',1972,NULL),(4318679,'Juan \'Doc Restrepo',1986,2007),(4319742,'The Men of Battle Company 2nd of the 503rd Infantry Regiment 173rd Airborne Brigade Combat Team',NULL,NULL),(4319792,'Manas Mittal',NULL,NULL),(4320770,'Heather Christian',NULL,NULL),(4321690,'Ross McQueen',NULL,NULL),(4322339,'Gergely Varga',NULL,NULL),(4325491,'Meysam Molaei',NULL,NULL),(4326044,'Brahm Vaccarella',NULL,NULL),(4329109,'Takayuki Hirobe',NULL,NULL),(4329298,'Tristan Halilaj',NULL,NULL),(4329329,'Ilire Vinca Celaj',NULL,NULL),(4329341,'Sindi Lacej',NULL,NULL),(4329459,'Asha Ashanti',1994,NULL),(4330767,'Tomohiro Suzuki',NULL,NULL),(4331196,'Anna Akana',1989,NULL),(4333222,'David Grovic',NULL,NULL),(4334711,'Joseph Lee',NULL,NULL),(4337697,'Tommy Otis',NULL,NULL),(4337810,'Alistair Brammer',1988,NULL),(4339223,'Brigitta Csiki',NULL,NULL),(4339295,'Chris Lindsay',NULL,NULL),(4339325,'Massimo Frau',NULL,NULL),(4340253,'Dave S. Walker',NULL,NULL),(4341114,'Dustin Ferguson',1982,NULL),(4341891,'Misty Copeland',1982,NULL),(4343168,'Jordan McNeile',NULL,NULL),(4343886,'Paulin Jaccoud',NULL,NULL),(4345145,'Mike Gillespie',NULL,NULL),(4347055,'Lucan Toh',NULL,NULL),(4347315,'Steele Stebbins',2003,NULL),(4348240,'Adam DiMarco',NULL,NULL),(4348660,'Shiloh Nelson',NULL,NULL),(4348934,'Jordi Carbonell Segura',NULL,NULL),(4349061,'Alícia Lacarcel Comas',NULL,NULL),(4350114,'Tom Prior',1990,NULL),(4350996,'Mahiro Takasugi',1996,NULL),(4351708,'Ken Niumatalolo',NULL,NULL),(4351773,'Vanara Taing',NULL,NULL),(4352455,'Marie-Ange Luciani',NULL,NULL),(4352571,'Kathryn McCullough',NULL,NULL),(4352839,'Drew Lane',NULL,NULL),(4352987,'Mark Roberts',NULL,NULL),(4353551,'Joe Barnathan',NULL,NULL),(4353665,'Marcus Rinehart',NULL,NULL),(4354045,'Sean Kennedy Moore',NULL,NULL),(4354653,'Disasterpeace',NULL,NULL),(4355300,'Peter Agnelli',NULL,NULL),(4355349,'Maxime Govare',NULL,NULL),(4356189,'Nisan Arikan',1991,NULL),(4357116,'Ece Yüksel',1997,NULL),(4357799,'Federico Conforti',NULL,NULL),(4358047,'Antonia Roeller',NULL,NULL),(4358345,'Tiffany Gray',NULL,NULL),(4359664,'Danielle Macdonald',1991,NULL),(4360075,'Steve Stone',NULL,NULL),(4360085,'Callum Turner',NULL,NULL),(4360800,'Richard Atwater',1892,1948),(4360886,'Mother Vision',NULL,NULL),(4360891,'Kukul Tarmaster',NULL,NULL),(4361074,'Florence Atwater',1896,1979),(4361690,'Ariel Shaw',NULL,NULL),(4362383,'Juliette Darche',NULL,NULL),(4362639,'Zack Kahn',NULL,NULL),(4363565,'Nebil Sayin',1971,NULL),(4364448,'Britney Young',1988,NULL),(4364610,'Mary Holland',1985,NULL),(4364857,'Brandon Murphy',1978,2022),(4364980,'Lillian Solange Beaudoin',NULL,NULL),(4367953,'Cora Palfrey',NULL,NULL),(4368529,'Ji Zhao',NULL,NULL),(4371455,'Kasia Madera',NULL,NULL),(4371463,'Ludwig Simon',NULL,NULL),(4371772,'Luke Loftin',NULL,NULL),(4372137,'Tiffany Martin',NULL,NULL),(4372483,'James Allen McCune',1990,NULL),(4372913,'Moussa Mansaly',NULL,NULL),(4372924,'Liza Mandelup',NULL,NULL),(4373281,'Naomi Alderman',NULL,NULL),(4374278,'Eric Ruffin',NULL,NULL),(4374524,'Noémie Merlant',1988,NULL),(4375802,'Dori A. Rath',NULL,NULL),(4376466,'Yanhong Guo',NULL,NULL),(4377526,'Daveed Diggs',1982,NULL),(4379382,'Corey S. Lillard',NULL,NULL),(4380524,'Ben Crabb',NULL,NULL),(4380548,'Noé Debré',NULL,NULL),(4380835,'Simon Hauschild',NULL,NULL),(4382556,'Jon Keng',NULL,NULL),(4383353,'Alexander Taylor',NULL,NULL),(4384329,'Ruby Modine',NULL,NULL),(4384336,'Eric Beckman',NULL,NULL),(4384370,'David Jesteadt',NULL,NULL),(4384917,'James Weaver',NULL,NULL),(4386174,'Julien Diaz',NULL,NULL),(4386508,'Brian Keady',NULL,NULL),(4386577,'Scott Martin',NULL,NULL),(4386666,'Austin Jetton',NULL,NULL),(4387238,'Sandrina Jardel',NULL,NULL),(4388400,'Gabriela Lopez',NULL,NULL),(4388506,'Nathan Halpern',NULL,NULL),(4388537,'Bodie Thoene',NULL,NULL),(4388629,'José Ángel Sagi',NULL,NULL),(4388657,'Ernesto Millán',NULL,NULL),(4389727,'Robert Mervak',NULL,NULL),(4390103,'Aria Prayogi',NULL,NULL),(4391696,'David Bolen',NULL,NULL),(4391705,'Dan Findlay',NULL,NULL),(4391804,'Amadeo Hernández Bueno',NULL,NULL),(4391872,'Malonn Lévana',2004,NULL),(4391997,'Steve Traxler',NULL,NULL),(4392452,'Pedro Hernández Santos',NULL,NULL),(4392491,'Bridgette Barrett',NULL,NULL),(4392528,'Tôko Miura',1996,NULL),(4392562,'Alvaro Portanet Hernández',NULL,NULL),(4392658,'Jeanne Disson',NULL,NULL),(4392718,'Andrew Bachelor',1988,NULL),(4392832,'Felipe Abib',NULL,NULL),(4393560,'Alice Isaaz',1991,NULL),(4393699,'Sarah Gobble',1983,NULL),(4396670,'Rajiv Joseph',1974,NULL),(4397668,'Peter Fellows',NULL,NULL),(4399227,'Ali Wong',1982,NULL),(4399773,'Ricardo Pretti',NULL,NULL),(4401003,'Derek Kolstad',1974,NULL),(4401508,'Aimee McKay',NULL,NULL),(4401889,'Sathish Neenasam',NULL,NULL),(4402755,'Erik Benson',NULL,NULL),(4402890,'Wolfgang Novogratz',1997,NULL),(4403105,'Pete Shilaimon',NULL,NULL),(4404335,'Ashley Shelton',NULL,NULL),(4404570,'Hari Vishnu',NULL,NULL),(4405694,'Mickaela Trodden',NULL,NULL),(4405791,'Lynda Myles',1947,NULL),(4405837,'Dan Baker',NULL,NULL),(4407268,'Trin Miller',NULL,NULL),(4409238,'Qajaaq Ellsworth',NULL,NULL),(4409824,'Li Xi',NULL,NULL),(4410370,'Chris Ball',NULL,NULL),(4411377,'Bobby Hacker',NULL,NULL),(4411465,'Ian Bell',NULL,NULL),(4413036,'Josha Stradowski',1995,NULL),(4413187,'David Rohde',NULL,NULL),(4413847,'Domenico Diele',1985,NULL),(4413892,'Michael Provost',1998,NULL),(4413917,'Mamrie Hart',1983,NULL),(4415201,'Dylan Schmid',1999,NULL),(4415263,'Julio Chavezmontes',NULL,NULL),(4417880,'Peter Jobson',NULL,NULL),(4418668,'Kate Trefry',NULL,NULL),(4420495,'Sonoya Mizuno',1986,NULL),(4420559,'Melinda Prisco',NULL,NULL),(4421949,'Emily Harrison',NULL,NULL),(4422007,'Anamaria Vartolomei',1999,NULL),(4422686,'Barry Keoghan',1992,NULL),(4423028,'Tom Hudson',1994,NULL),(4423632,'Cristobal Tapia de Veer',NULL,NULL),(4424079,'Meg Rosoff',NULL,NULL),(4424569,'Kim Lessing',NULL,NULL),(4424713,'Jojo Moyes',1969,NULL),(4425051,'Jack Quaid',1992,NULL),(4425316,'Vukasin Jasnic',NULL,NULL),(4425740,'Isidora Simijonovic',1995,NULL),(4426398,'Cara J. Russell',NULL,NULL),(4427331,'Daniella Pineda',NULL,NULL),(4428412,'Alexandra Bracken',NULL,NULL),(4429739,'Haru Kuroki',1990,NULL),(4432234,'Hisashi Imamoto',NULL,NULL),(4433954,'Philipa A. Booyens',NULL,NULL),(4435492,'Marlena Lerner',NULL,NULL),(4436761,'Matilda Anna Ingrid Lutz',1991,NULL),(4436837,'Jarrid Masse',1980,NULL),(4437366,'Ricardo Adolfo',NULL,NULL),(4437450,'H. Perry Horton',NULL,NULL),(4438173,'Ai Kayano',1987,NULL),(4438615,'Chelsea Winstanley',1976,NULL),(4440340,'Thomas Gullestad',NULL,NULL),(4440417,'Scott Higgins',NULL,NULL),(4441200,'Shin\'ichirô Kashiwada',NULL,NULL),(4441340,'Inyoung Park',NULL,NULL),(4441694,'Sean Spillane',NULL,NULL),(4442068,'Jared Gilman',1998,NULL),(4442319,'Kara Hayward',1998,NULL),(4443217,'Andy Mulligan',NULL,NULL),(4443317,'Xuan Liang',NULL,NULL),(4443983,'Glenn Patterson',NULL,NULL),(4444020,'Andrew Brick Johnson',NULL,NULL),(4444157,'Colin Carberry',NULL,NULL),(4444526,'Michael Guy Ellis',NULL,NULL),(4446305,'Nic Pizzolatto',1975,NULL),(4446467,'Tye Sheridan',1996,NULL),(4447472,'Hunter McCracken',NULL,NULL),(4448022,'Lorenza Izzo',1989,NULL),(4448255,'Joe Coffey',NULL,NULL),(4448822,'Justin Wayne',NULL,NULL),(4449370,'Nikhil Vyas',NULL,NULL),(4450152,'Karen Gorham',NULL,NULL),(4451902,'Thom Robson',1993,NULL),(4452305,'Joshua James Richards',NULL,NULL),(4452385,'Andrew Scott Bell',NULL,NULL),(4453291,'Franz Rogowski',1986,NULL),(4454013,'Lauren Gunderson',NULL,NULL),(4454223,'Emilia Jones',2002,NULL),(4455533,'Stefon Bristol',NULL,NULL),(4455751,'Elsa Houben',NULL,NULL),(4455796,'Todd Burpo',NULL,NULL),(4455823,'Ryan Teeple',NULL,NULL),(4456000,'Julia Nottingham',NULL,NULL),(4456120,'Elizabeth Debicki',1990,NULL),(4456548,'Stav J. Davis',NULL,NULL),(4456672,'Nico Santos',1979,NULL),(4457104,'Daniel Keysary',NULL,NULL),(4457111,'Toby Ascher',NULL,NULL),(4457775,'Ella Hunt',1998,NULL),(4458207,'Joan Le Boru',NULL,NULL),(4458450,'Lucien Soulban',NULL,NULL),(4458621,'Qutaiba Barhamji',NULL,NULL),(4459520,'Geoff Mansfield',NULL,NULL),(4459896,'Ben Cura',1988,NULL),(4460142,'David Bernon',NULL,NULL),(4460471,'Gabe Liedman',1982,NULL),(4460791,'Andy Siara',NULL,NULL),(4461006,'Joseph Dineen',NULL,NULL),(4461361,'Thomas Doret',1996,NULL),(4461520,'Diane Taylor',NULL,2016),(4461680,'Xiaobai Gu',NULL,NULL),(4463447,'Iris Cayatte',NULL,NULL),(4463554,'Yvonne Maalouf',NULL,NULL),(4463556,'Claude Baz Moussawbaa',NULL,NULL),(4464150,'Michael Patrick Lane',1985,NULL),(4464972,'Durian Sukegawa',NULL,NULL),(4465377,'David Rauchenberger',2000,NULL),(4465402,'Ingrid Olava',1981,NULL),(4465847,'John Whittington',NULL,NULL),(4465864,'Will Merrick',1993,NULL),(4465973,'Sumit Saxena',NULL,NULL),(4465999,'Daniel Sproul',NULL,NULL),(4467076,'Jackie Minns',NULL,NULL),(4468181,'Lara Rossi',NULL,NULL),(4468296,'Tom O\'Connor',NULL,NULL),(4469012,'Julien War',NULL,NULL),(4469146,'Clayton James',1985,NULL),(4469165,'Garance Marillier',1998,NULL),(4469445,'Julia Ducournau',1983,NULL),(4470029,'Daniele Sebastian Wiedenhaupt',NULL,NULL),(4472504,'Chloe Howcroft',NULL,NULL),(4472797,'Sebastian Levermann',NULL,NULL),(4473893,'William Lebghil',1990,NULL),(4473938,'Blanca Lista',NULL,NULL),(4474480,'Susen Ermich',NULL,NULL),(4475180,'Raphaël Hernandez',NULL,NULL),(4475194,'Savitri Joly-Gonfard',NULL,NULL),(4475394,'Ben Zazove',NULL,NULL),(4475742,'Sam Sutherland',NULL,NULL),(4477261,'Ilana Glazer',1987,NULL),(4477558,'Julian Scherle',1985,NULL),(4477744,'Evren Boisjoli',NULL,NULL),(4477836,'Jack Kesy',1986,NULL),(4478322,'Kate Upton',1992,NULL),(4478374,'Chingon',NULL,NULL),(4478405,'Jérémy Comte',NULL,NULL),(4478685,'Samson Kayo',1991,NULL),(4478735,'Charlie Wachtel',NULL,NULL),(4480120,'Yukiyo Fujii',NULL,NULL),(4481399,'Amanda Céline Miller',1987,NULL),(4482485,'Vytautas Kaniusonis',1963,NULL),(4484067,'Andy Milne',NULL,NULL),(4485648,'Orlee Buium',NULL,NULL),(4485886,'Sarah Gilman',1996,NULL),(4487458,'Chet Tilokani',NULL,NULL),(4487667,'Émilie Leclerc',NULL,NULL),(4487976,'Maddie Hasson',1995,NULL),(4488268,'Ajay Kumar',NULL,NULL),(4488556,'Qianyu Lin',NULL,NULL),(4489275,'Mikey Schaefer',NULL,NULL),(4489323,'Pouya Shahbazian',NULL,NULL),(4490064,'Dylan Glatthorn',NULL,NULL),(4490217,'Lauren Myracle',NULL,NULL),(4490302,'Maripier Morin',1986,NULL),(4490351,'William J. Stribling',NULL,NULL),(4490375,'Andrea Bang',NULL,NULL),(4491570,'Octavio Vázquez',NULL,NULL),(4491921,'Rita Marcotulli',NULL,NULL),(4492084,'Susanna Cappellaro',NULL,NULL),(4492491,'Inga Vainshtein Smith',NULL,NULL),(4493060,'Mahira Khan',1982,NULL),(4493176,'Gabrielle Walsh',1989,NULL),(4495815,'Vanja Rukavina',1989,NULL),(4496604,'Todd Lundbohm',NULL,NULL),(4496659,'Tamer Arslan',NULL,NULL),(4496875,'Mackenzie Davis',NULL,NULL),(4497202,'Jimmy O. Yang',1987,NULL),(4497336,'Debs Howard',1989,NULL),(4498656,'Kandace Caine',NULL,NULL),(4498658,'Gregory Chou',NULL,NULL),(4498683,'Maddi Black',NULL,NULL),(4499094,'Dale Whibley',1997,NULL),(4499999,'Emma Norton',NULL,NULL),(4500258,'Scott Chambers',NULL,NULL),(4500558,'Thibault Le Guellec',NULL,NULL),(4500566,'Yohan Baiada',NULL,NULL),(4500976,'Thomas B. Fore',1965,NULL),(4501333,'Sayed Ahmad',NULL,NULL),(4501511,'Michi Azuma',NULL,NULL),(4501728,'Hadrian Howard',NULL,NULL),(4503275,'Sebastian Elkrog Sørensen',NULL,NULL),(4504121,'Zack Andrews',NULL,NULL),(4504267,'Mikey Roe',NULL,NULL),(4504454,'Victoria Gold',NULL,NULL),(4507147,'Danny Seim',NULL,NULL),(4509100,'Egan Reich',NULL,NULL),(4509289,'Michael Koryta',NULL,NULL),(4511652,'Kelly Marie Tran',1989,NULL),(4511908,'Daniel Boyd',NULL,NULL),(4512287,'Nivas Prasanna',NULL,NULL),(4512566,'Simon Rowling',NULL,NULL),(4512986,'Jack Welch',NULL,NULL),(4515387,'Bo Andersen',NULL,NULL),(4515860,'Jenny Nava',NULL,NULL),(4516779,'Ashley Fox',NULL,NULL),(4516917,'Yldau de Boer',1993,NULL),(4517768,'John Maxwell',NULL,NULL),(4517772,'Theresa Park',NULL,NULL),(4517773,'Rajan Khanijaon',NULL,NULL),(4519628,'Ana Coto',1990,NULL),(4520513,'Adam Ohler',NULL,NULL),(4522027,'Amir Hedayah',1988,NULL),(4524237,'Robert Kolker',NULL,NULL),(4524582,'Will Birchall',NULL,NULL),(4525576,'Nikolai Von Keller',NULL,NULL),(4525917,'Sachiko Ôguchi',1978,NULL),(4526163,'Rebecca Miller',NULL,NULL),(4526291,'Morgan Obenreder',NULL,NULL),(4528025,'Charlbi Dean',1990,2022),(4528425,'John Kimball',NULL,NULL),(4528537,'Nick Antosca',1983,NULL),(4528758,'Linnea Larsdotter',1983,NULL),(4529654,'David Nevarez',NULL,NULL),(4530936,'Diana Hopper',NULL,NULL),(4531196,'Dani Franklin',NULL,NULL),(4531463,'Lisa Jansworth',NULL,NULL),(4531688,'Bianca Olsen',NULL,NULL),(4531861,'Ko Zandvliet',NULL,NULL),(4532245,'Alex Jennings',NULL,NULL),(4532532,'Nelson Greaves',NULL,NULL),(4532920,'Edouard de Lachomette',NULL,NULL),(4533533,'Chinatsu Akasaki',NULL,NULL),(4534098,'Ed Skrein',1983,NULL),(4534201,'Zoe Levin',NULL,NULL),(4535452,'Fabiola Gianotti',1960,NULL),(4537345,'Martin Léon',NULL,NULL),(4539250,'Shannon Hale',NULL,NULL),(4539568,'Meghan Hibbett',NULL,NULL),(4539692,'Roberto Aguire',NULL,NULL),(4541029,'Andrew Wehde',NULL,NULL),(4541174,'Judy White',NULL,NULL),(4542300,'Megan Mercier',NULL,NULL),(4542522,'Johnny Vekris',NULL,2012),(4542828,'Nils Weise',NULL,NULL),(4543356,'Catherine Fridey',NULL,NULL),(4544229,'John Phillips',NULL,NULL),(4544251,'DJ Flava',NULL,NULL),(4544507,'Oswaldo Salas',1962,NULL),(4547501,'Rubén Cortada',1984,NULL),(4547509,'Shivgopal Krishna',NULL,NULL),(4548743,'Miles Barrow',NULL,NULL),(4551978,'Saskia Rosendahl',1993,NULL),(4552557,'Ilaria Macchia',NULL,NULL),(4552937,'Anna Laclergue',NULL,NULL),(4553512,'Emma Sheanshang',NULL,NULL),(4553858,'Gabino Torres',NULL,NULL),(4554016,'David Lafleche',NULL,NULL),(4554036,'Parker Sawyers',1983,NULL),(4554159,'Jeff VanderMeer',1968,NULL),(4554428,'Ryan Guzman',1987,NULL),(4554522,'Vanessa Portal',NULL,NULL),(4554781,'Dylan Hale Lewis',NULL,NULL),(4554791,'Saeid Asadi',NULL,NULL),(4555381,'Phoebe Fox',1987,NULL),(4555856,'Fergal Coghlan',NULL,NULL),(4557307,'Danielle Joseph',NULL,NULL),(4558335,'Erik Enge',1996,NULL),(4558385,'Agnes Koskinen',NULL,NULL),(4558567,'Masey McLain',1994,NULL),(4559582,'Kamryn Johnson',NULL,NULL),(4560803,'Tammy Stone',NULL,NULL),(4561212,'Jonathan Riklis',NULL,NULL),(4561559,'Renate Reinsve',1987,NULL),(4561763,'Katie Anne Naylon',NULL,NULL),(4562457,'Jeremy Blaiklock',NULL,NULL),(4563421,'John Shepard',NULL,NULL),(4563780,'Aurora Perrineau',1994,NULL),(4563783,'Émilien Néron',NULL,NULL),(4563869,'Sophie Nélisse',2000,NULL),(4563896,'Emma Greenwell',NULL,NULL),(4563902,'Thibault Frisoni',NULL,NULL),(4564885,'Jazmyn Simon',NULL,NULL),(4565198,'Andy Kirshner',NULL,NULL),(4565370,'Dominic Rustam',NULL,NULL),(4565713,'Debora Guetta',NULL,NULL),(4565815,'Mena Massoud',1991,NULL),(4566343,'Pedro Santo',NULL,NULL),(4566375,'João Moreira',NULL,NULL),(4567963,'Josh Riedford',NULL,NULL),(4568172,'Lauren Beck',NULL,NULL),(4569822,'Katharina Bergfeld',NULL,NULL),(4570963,'Juanita Hepi',NULL,NULL),(4571051,'Alexandra Peters',2000,NULL),(4571370,'Arisa Komiya',1994,NULL),(4572151,'Jessica Rose Weiss',NULL,NULL),(4574440,'Melissa Barrera',1990,NULL),(4574469,'Hajime Moji',NULL,NULL),(4574630,'James McArdle',1989,NULL),(4575116,'Rohan Chand',NULL,NULL),(4575382,'Brittani Nichols',NULL,NULL),(4575621,'Hashiken',NULL,NULL),(4576371,'Sunita Mani',1986,NULL),(4577626,'Ahmaogak Sweeney',NULL,NULL),(4579216,'Rachel Seiffert',NULL,NULL),(4579224,'Kathryn Phipps',NULL,NULL),(4580584,'Giacomo Bendotti',NULL,NULL),(4581120,'Jessica Errero',NULL,NULL),(4582429,'Claudia Vega',1999,NULL),(4583512,'Katie Chang',NULL,NULL),(4583574,'Rachel Paulson',NULL,NULL),(4583876,'Carlos Valdes',1989,NULL),(4584738,'Sharon Tomlinson',NULL,NULL),(4586621,'Elsy Hajjar',NULL,NULL),(4587360,'Gayle Rankin',1989,NULL),(4588116,'Besedka Johnson',1925,2013),(4588492,'Javier Barreiro Cavestany',NULL,NULL),(4588939,'Lucas Linehan',1990,NULL),(4589246,'Guanlin Ji',NULL,NULL),(4589735,'Lorna Nickson Brown',1990,NULL),(4590024,'Brian McOmber',NULL,NULL),(4590837,'Ed Oxenbould',2001,NULL),(4591498,'Lily Sullivan',1993,NULL),(4592090,'Hazel Doupe',NULL,NULL),(4592447,'Sarmad Ghafoor',NULL,NULL),(4592523,'Ni Lao',NULL,NULL),(4592524,'Jingchun Wang',1973,NULL),(4592701,'Eric de Benher',NULL,NULL),(4592943,'Christian Boudier',NULL,NULL),(4593068,'Jay Famiglietti',NULL,NULL),(4593163,'Maria Clara Escobar',NULL,NULL),(4593484,'Rui Li',NULL,NULL),(4594066,'Brian McAlpine',NULL,NULL),(4594069,'Gideon Adlon',NULL,NULL),(4594226,'Dinesh Krishnan',NULL,NULL),(4594415,'Jen D\'Angelo',1988,NULL),(4596051,'Fredrik Skogsrud',NULL,NULL),(4596380,'Alexis Brandt',1982,NULL),(4597798,'Ruthie Ann Miles',1983,NULL),(4599748,'Layla Hakim',NULL,NULL),(4599751,'Mattias Andersson',NULL,NULL),(4603536,'Farley Burge',NULL,NULL),(4606353,'Karen Gorham',NULL,NULL),(4608165,'Antoine Olivier Pilon',1997,NULL),(4608280,'Sue Schaffel',NULL,NULL),(4608989,'Michael Lomenda',NULL,NULL),(4609589,'Shannon Beer',1997,NULL),(4609643,'Solomon Glave',1997,NULL),(4609822,'Olivia DeJonge',1998,NULL),(4610169,'Emma Shorey',NULL,NULL),(4610196,'John Barrington',NULL,NULL),(4611078,'Kendelle Hoyer',NULL,NULL),(4611870,'Will Allegra',NULL,NULL),(4613059,'Gregory James Jenkins',NULL,NULL),(4614329,'Laura Luke',NULL,NULL),(4615186,'Fatal Farm',NULL,NULL),(4616554,'Carlito Olivero',NULL,NULL),(4620252,'Mario Zuniga Benavides',NULL,NULL),(4620383,'T.J. Cimfel',NULL,NULL),(4620544,'Chengis Javeri',NULL,NULL),(4620740,'Ryan Sloan',NULL,NULL),(4620889,'Étienne-Jules Marey',1830,1904),(4621611,'Jim Shepard',NULL,NULL),(4621803,'Alex Rubens',NULL,NULL),(4622062,'Violeta Dinescu',1953,NULL),(4622194,'Ina Nikolova',NULL,NULL),(4622229,'András Hamary',NULL,NULL),(4624299,'Paul Lieberman',NULL,NULL),(4624730,'Kirby',NULL,NULL),(4625502,'Oakes Fegley',NULL,NULL),(4625680,'Dominique Tipper',1985,NULL),(4626454,'Paul Wiley',NULL,NULL),(4627181,'Jean-Michel Heimonet',NULL,NULL),(4627221,'Darin J. Sallam',NULL,NULL),(4628545,'Tito Jara',NULL,NULL),(4629545,'Bernhard Eisel',NULL,NULL),(4631694,'Malina Ionescu',1982,NULL),(4633307,'Drake Linder',NULL,NULL),(4634203,'Michael J. Tougias',NULL,NULL),(4634928,'Bert Grabsch',NULL,NULL),(4636536,'Nell Cattrysse',NULL,NULL),(4636706,'Wenqing Liu',NULL,NULL),(4636824,'Lana Belle Mauro',NULL,NULL),(4637847,'Valgerður Rúnarsdóttir',NULL,NULL),(4638123,'Curtis Winsor',NULL,NULL),(4638146,'Mette-Marie Kongsved',NULL,NULL),(4639862,'Ashley O\'Neil',NULL,NULL),(4640034,'Chris Renshaw',NULL,NULL),(4640846,'Amed Hashimi',NULL,NULL),(4641451,'Masato Nunobe',NULL,NULL),(4642822,'Thai Hoa',1974,NULL),(4643025,'Latifa',NULL,NULL),(4643507,'Adilkhan Yerzhanov',1982,NULL),(4644677,'Joshua Land',NULL,NULL),(4646236,'Tokuya Higashigawa',NULL,NULL),(4646711,'Makoto Furukawa',1989,NULL),(4647895,'Docs Keepin Time',1987,2013),(4648803,'Casey Sherman',NULL,NULL),(4649050,'Adolfo Aguilar',NULL,NULL),(4650038,'Eva Llorach',1977,NULL),(4650463,'Andrew Banks',NULL,NULL),(4651571,'Jeremy Zoppi',NULL,NULL),(4652001,'Benjamin Flores Jr.',2002,NULL),(4652617,'Ben Everard',NULL,NULL),(4655014,'Brian Batz',NULL,NULL),(4655428,'Michael Ceraso',NULL,NULL),(4655830,'Rodrigo Perdigão',NULL,NULL),(4658646,'Tobias Munthe',NULL,NULL),(4662366,'Anna Fotiadou',NULL,NULL),(4663240,'Christelle Berthevas',NULL,NULL),(4663869,'Liza Benguigui',NULL,NULL),(4663937,'Laia Costa',1985,NULL),(4667582,'Iakovos Vroutsis',NULL,NULL),(4667984,'Kingsley Ben-Adir',1986,NULL),(4668046,'Sayani Gupta',1985,NULL),(4669546,'Alla Belaya',1984,NULL),(4669612,'Filipa Areosa',1990,NULL),(4669731,'Michael Koch',NULL,NULL),(4671079,'Blake Harris',NULL,NULL),(4671561,'Eric Lomax',1919,2012),(4672269,'Leila Arabi',NULL,NULL),(4672312,'Emily Wadley',NULL,NULL),(4673239,'Keelan Gumbley',NULL,NULL),(4674670,'Ed Wethered',NULL,NULL),(4675650,'Maddie Ziegler',2002,NULL),(4676366,'Jiyû Ôgi',NULL,NULL),(4676720,'James Dahl',1978,2019),(4677188,'Charles M. Barsamian',NULL,NULL),(4677225,'Victor Atherino',NULL,NULL),(4677867,'Sean Giambrone',1999,NULL),(4678690,'Perry Bhandal',NULL,NULL),(4678928,'Mikael Hed',NULL,NULL),(4679434,'Mike Roberts',NULL,NULL),(4680113,'Gerard Bush',1978,NULL),(4680199,'Juan Iglesias',NULL,NULL),(4680333,'Al Benoit',NULL,NULL),(4680692,'Christian Distefano',2005,NULL),(4683167,'Daniel Zovatto',1991,NULL),(4684238,'Rich White',NULL,NULL),(4686368,'Ava Tramer',NULL,NULL),(4688232,'Matt Stokoe',1989,NULL),(4689420,'Carrie Coon',1981,NULL),(4690271,'Logan Levy',NULL,NULL),(4694226,'Hyeon-soo Kim',NULL,NULL),(4694441,'Romain Compingt',NULL,NULL),(4695025,'Christian Tanto',1978,NULL),(4695797,'Jeffrey Greenstein',NULL,NULL),(4696100,'Margaret Humphreys',1944,NULL),(4696553,'John Early',1988,NULL),(4696880,'Paddy Wallace',NULL,NULL),(4696885,'Penelope Skinner',NULL,NULL),(4697007,'Steven Levenson',NULL,NULL),(4697969,'Tord Danielsson',1980,NULL),(4698127,'Oskar Mellander',NULL,NULL),(4698410,'AJ Young',NULL,NULL),(4699235,'Nicholas Dominic Talvola',NULL,NULL),(4699715,'Madeleine Arthur',1997,NULL),(4699932,'Kyle Mack',NULL,NULL),(4702342,'Astro',NULL,NULL),(4702521,'John Thomas Schrad',NULL,NULL),(4702983,'Lourenço Sant\'Anna',NULL,NULL),(4703396,'Ali Abouomar',NULL,NULL),(4703712,'Karen Murphy',NULL,NULL),(4705966,'Samantha Isler',1998,NULL),(4707183,'Mike Noble',NULL,NULL),(4707628,'Claudia Doumit',1992,NULL),(4707686,'Ben Nudds',NULL,NULL),(4707707,'Nate Kreiswirth',NULL,NULL),(4708690,'Robin Ann Rapoport',NULL,NULL),(4709570,'Naoto Fujimura',NULL,NULL),(4709773,'Marc Goldberg',NULL,NULL),(4710432,'Patrick Ness',NULL,NULL),(4711616,'Jillian Morgese',1989,NULL),(4712111,'Sarah Yarkin',1993,NULL),(4713266,'Elodie Tougne',NULL,NULL),(4713993,'Gail Bean',NULL,NULL),(4714014,'Gijs Blom',1997,NULL),(4714447,'Matt Yamashita',NULL,NULL),(4714676,'Luàna Bajrami',2001,NULL),(4715868,'Milla Olin',NULL,NULL),(4716115,'Isabel Christine Andreasen',NULL,NULL),(4716683,'George Webster',1991,NULL),(4716731,'Quinn Marcus',NULL,NULL),(4718714,'Yan Liu',1980,NULL),(4718846,'Yutaka Yamada',1989,NULL),(4719349,'Gaia Weiss',1991,NULL),(4719471,'Isabelle Nélisse',2003,NULL),(4719650,'John Burd',NULL,NULL),(4720516,'Nadja Dumouchel',NULL,NULL),(4722966,'Virginia Gardner',1995,NULL),(4723086,'Trevor Dow',NULL,NULL),(4723712,'Jon Bass',NULL,NULL),(4724525,'Jonas Smulders',1994,NULL),(4725115,'Lisheng Lin',NULL,NULL),(4725270,'Min-kuk Kang',NULL,NULL),(4725341,'Joivan Wade',1993,NULL),(4726634,'Haley Lu Richardson',1995,NULL),(4726966,'Gerald Rascionato',NULL,NULL),(4727722,'Juri Winkler',2003,NULL),(4728788,'Megan Peta Hill',NULL,NULL),(4729344,'Jake Wilson',NULL,NULL),(4729613,'Malika Zouhali-Worrall',NULL,NULL),(4729633,'Jonathan Mandabach',NULL,NULL),(4731086,'Mark D. Walker',NULL,NULL),(4731677,'Ayushmann Khurrana',1984,NULL),(4731857,'Kanako Higashi',NULL,NULL),(4732281,'Kokoro Hirasawa',2007,NULL),(4733752,'Kimiko Glenn',1989,NULL),(4734344,'S.T. Sivaraman',NULL,NULL),(4734674,'Will Fordyce',NULL,NULL),(4734845,'Ashlyn Drummond',NULL,NULL),(4735495,'John Karna',1992,NULL),(4735747,'Satish Dasam',NULL,NULL),(4736095,'Jag Sanghera',NULL,NULL),(4736278,'Timothy Renouf',1991,NULL),(4736304,'Sofie Golding-Spittle',NULL,NULL),(4737223,'Bebe Rexha',1989,NULL),(4737701,'Lisa Green',NULL,NULL),(4738590,'Rahul Koda',NULL,NULL),(4739087,'Mike Kourtzer',NULL,NULL),(4739140,'Josefin Asplund',1991,NULL),(4739686,'Grace Helbig',1985,NULL),(4740113,'Saara Chaudry',2004,NULL),(4740205,'Leonor Teles',1992,NULL),(4740874,'Kai Cole',NULL,NULL),(4742129,'Burt Grinstead',1988,NULL),(4742517,'Olivia Rose Keegan',NULL,NULL),(4743231,'Takahiro Ono',NULL,NULL),(4743469,'Assaad Yacoub',NULL,NULL),(4745601,'Dascha Polanco',1982,NULL),(4745966,'Daniel Moore',NULL,NULL),(4746372,'Edouard Duprey',NULL,NULL),(4747135,'Jared Carlson',NULL,NULL),(4750182,'Emma Bading',1998,NULL),(4752172,'Stacey Arwen Raab',NULL,NULL),(4752699,'Michel Merkt',1972,NULL),(4753929,'Laurent Binet',1972,NULL),(4754741,'Ruairi O\'Connor',1991,NULL),(4755508,'Asher Angel',2002,NULL),(4756611,'Noel Carroll',NULL,NULL),(4757224,'Serik Abishev',NULL,NULL),(4757359,'David Travers',NULL,NULL),(4757461,'Lauren Thompson',NULL,NULL),(4758507,'Woody Fu',NULL,NULL),(4759838,'Mone Kamishiraishi',1998,NULL),(4760660,'Mario Forniés',NULL,NULL),(4760689,'Rafael Endeiza',NULL,NULL),(4760889,'Jeffrey Men',NULL,NULL),(4761826,'Radio Silence',NULL,NULL),(4762406,'Kevin Parent',NULL,NULL),(4762565,'Andreas Bingel',NULL,NULL),(4763678,'Lee Murphy',NULL,NULL),(4765142,'Andy Yoon',NULL,NULL),(4765550,'Orelsan',1982,NULL),(4766328,'Laurence Benaïm',NULL,NULL),(4766571,'Rob Franco',NULL,NULL),(4767807,'Fil Braz',NULL,NULL),(4767842,'Stella Cooper',NULL,NULL),(4768271,'Ava Cooper',NULL,NULL),(4770295,'Jonathan Haltiwanger',NULL,NULL),(4770367,'Sae-byeok Kim',1986,NULL),(4770678,'Nathan E. Mitchell',NULL,NULL),(4770727,'Antony King',NULL,NULL),(4772133,'July Jung',1980,NULL),(4774823,'Derek Ahonen',1980,NULL),(4775043,'Marten Persiel',1974,NULL),(4775571,'Guilherme Trindade',NULL,NULL),(4776683,'Noah Urrea',NULL,NULL),(4776797,'Samantha Ireland',NULL,NULL),(4778840,'Philippe Pozzo di Borgo',1951,2022),(4781331,'Jessica Killam',1991,NULL),(4781382,'Vernon Aldershoff',NULL,NULL),(4783752,'Miah Madden',2002,NULL),(4784201,'M.A. Fortin',NULL,NULL),(4784536,'Neeraj Ghaywan',1980,NULL),(4784888,'Laurel Porter',NULL,NULL),(4785118,'Ayane Sakura',1994,NULL),(4786360,'Otavio Santos',NULL,NULL),(4786698,'Chiara D\'Anna',NULL,NULL),(4788761,'Clara Lee',NULL,NULL),(4789518,'Douglas Rankine',NULL,NULL),(4789922,'Josh Malerman',NULL,NULL),(4791912,'Eli Bush',NULL,NULL),(4793987,'Issa Rae',1985,NULL),(4794244,'Nicolas Vassiliev',NULL,NULL),(4794657,'Mike Mo',NULL,NULL),(4796186,'Mary Perrino',NULL,NULL),(4798740,'Matt Johnson',1985,NULL),(4800248,'Chanya Button',NULL,NULL),(4800564,'Camren Bicondova',1999,NULL),(4801201,'Chris Riedell',NULL,NULL),(4801206,'Robert Murphy',NULL,NULL),(4802218,'Oona Laurence',2002,NULL),(4802453,'Joe Azzopardi',NULL,NULL),(4803786,'Thomas Stefan',NULL,NULL),(4804056,'Dylan Hanwright',NULL,NULL),(4804094,'Nigel de Hond',NULL,NULL),(4805317,'Ben Platt',1993,NULL),(4805321,'Liosi Fehoko',NULL,NULL),(4805576,'Yutaka Uemura',NULL,NULL),(4805617,'Mike Summers',NULL,NULL),(4806050,'Val Layne',NULL,NULL),(4806160,'Jaycee Lynn',NULL,NULL),(4806540,'Aaron U. Brown',NULL,NULL),(4806622,'Huma Qureshi',1986,NULL),(4807404,'Sean Walsh',NULL,NULL),(4807635,'Jiro Ono',1925,NULL),(4808080,'Erika Harlacher',1990,NULL),(4808284,'Mark C. Manuel',NULL,NULL),(4809043,'Ni Ni',1988,NULL),(4809504,'Slaheddine Kechiche',NULL,NULL),(4809574,'Masahiko Ibaraki',NULL,NULL),(4810022,'Seong-Hu Park',NULL,NULL),(4810388,'Henrik Hanstein',NULL,NULL),(4810515,'Naoki Iwasa',NULL,NULL),(4811901,'Kurtis David Harder',NULL,NULL),(4812310,'Dianne Freeman',NULL,NULL),(4812322,'Michael C. Burgess',1956,NULL),(4813554,'Christiana Charalambous',NULL,NULL),(4814292,'Tyler Alvarez',1997,NULL),(4814529,'Russ Posternak',NULL,NULL),(4815005,'Maja Dennhag',NULL,NULL),(4816311,'Di Cui',NULL,NULL),(4816401,'Adil El Arbi',1988,NULL),(4816469,'Luke Harding',NULL,NULL),(4816650,'Will Honley',NULL,NULL),(4816775,'Wendy Weiner',NULL,NULL),(4819186,'Tinu Suresh Desai',1974,NULL),(4820074,'Charles de Portes',NULL,NULL),(4820299,'Toby Venables',NULL,NULL),(4820632,'Anonymous',NULL,NULL),(4821008,'Mark Stay',NULL,NULL),(4822259,'Kyôko Okazaki',NULL,NULL),(4822554,'Marc Bach',NULL,NULL),(4822665,'Joseph Amiel',NULL,NULL),(4823002,'Tianyuan Huang',NULL,NULL),(4824763,'Thea Sharrock',NULL,NULL),(4825006,'Emily Morris',NULL,NULL),(4825178,'David Corenswet',1993,NULL),(4825581,'Clay Glen',NULL,NULL),(4826343,'Yea-Ming Chen',NULL,NULL),(4826391,'Edward Patrick',NULL,NULL),(4826513,'Yves Ory',NULL,NULL),(4827781,'Anna Palenchuk',NULL,NULL),(4828052,'Hae Young Jung',NULL,NULL),(4830845,'Lee Dong-ha',NULL,NULL),(4831584,'Will Tudor',1987,NULL),(4832920,'Quvenzhané Wallis',2003,NULL),(4833412,'Dwight Henry',1963,NULL),(4834796,'Paul Brannigan',1986,NULL),(4835245,'Jeremy McWilliams',NULL,NULL),(4835867,'Honor Kneafsey',2004,NULL),(4836118,'Tsubasa Honda',1992,NULL),(4836547,'Phra Sripariyattiweti',NULL,NULL),(4838214,'David Karp',NULL,NULL),(4839053,'Karl Frid',NULL,NULL),(4839602,'Anton Lessine',NULL,NULL),(4839745,'Adam Taylor',NULL,NULL),(4839826,'Leonardo Feliciano',NULL,NULL),(4840194,'Jean-Pascal Zadi',NULL,NULL),(4840973,'Lou Simon',NULL,NULL),(4842197,'Hayley Squires',1988,NULL),(4843730,'Ryan Lott',NULL,NULL),(4844181,'Anna Drubich',1984,NULL),(4844269,'Fard Muhammad',NULL,NULL),(4844365,'Tom Scott',NULL,NULL),(4844938,'Nils Westblom',NULL,NULL),(4846137,'José Mellinas',NULL,NULL),(4846905,'Senja Mäkiaho',NULL,NULL),(4848618,'Nicole Evans',NULL,NULL),(4848863,'Frédéric Puech',NULL,NULL),(4850962,'Jon Adams',NULL,NULL),(4851409,'Jonathan Jordaan',NULL,NULL),(4851883,'David Mazzucchelli',1960,NULL),(4851894,'Gustavo Escobar',NULL,NULL),(4852033,'Ayden Mayeri',NULL,NULL),(4852341,'Jón Atli Jónasson',NULL,NULL),(4853066,'Josh O\'Connor',1990,NULL),(4853513,'Ciara Baxendale',1995,NULL),(4853598,'Sumeet Vyas',1983,NULL),(4855517,'Simu Liu',1989,NULL),(4857717,'Apphia Yu',1986,NULL),(4858733,'John B. Holway',NULL,NULL),(4859073,'Mario Matteoli',NULL,NULL),(4859162,'Andrew Collberg',NULL,NULL),(4859184,'Leonid Korin',1975,2023),(4860899,'Maria Jose Cordova',NULL,NULL),(4861346,'Algee Smith',1994,NULL),(4861501,'Griffin Patrick Davis',NULL,NULL),(4861659,'Hayden Szeto',NULL,NULL),(4861736,'Kwaku Fortune',NULL,NULL),(4861816,'Martin Myers',NULL,NULL),(4862056,'Niamh Algar',1992,NULL),(4864795,'Bodil Steensen-Leth',1945,NULL),(4864836,'Edward Drake',NULL,NULL),(4865040,'Alyvia Alyn Lind',NULL,NULL),(4865119,'Michael Sherman',NULL,NULL),(4865756,'Lindsay Jones',1989,NULL),(4867258,'Lucy Fry',1992,NULL),(4868455,'Akela Cooper',NULL,NULL),(4870017,'Wüstenblume',NULL,NULL),(4870585,'John Pingayak',NULL,NULL),(4871868,'Cleona Ní Chrualaoí',NULL,NULL),(4872352,'Nicole I. Butler',NULL,NULL),(4873470,'Elliot Weaver',NULL,NULL),(4873574,'Zander Weaver',NULL,NULL),(4874651,'Dove Cameron',1996,NULL),(4875028,'Alison L. Greenberg',NULL,NULL),(4875229,'Alycia Pascual-Pena',1999,NULL),(4875522,'Makita Samba',1987,NULL),(4879798,'Grace Patterson',NULL,NULL),(4880627,'Kasper Dissing',NULL,NULL),(4880670,'Krysty Wilson-Cairns',1987,NULL),(4880809,'Cristian De Asís',NULL,NULL),(4881144,'Chloe Lambourne',NULL,NULL),(4881565,'Gigi Graff',NULL,NULL),(4881574,'Chris Kyle',1974,2013),(4881749,'Seána Kerslake',NULL,NULL),(4883197,'Meg Donnelly',2000,NULL),(4885097,'Jean-Luc Vincent',1973,NULL),(4885949,'Lexi Atkins',1993,NULL),(4886346,'Dana Starfield',NULL,NULL),(4887438,'Esra Horuz',NULL,NULL),(4887947,'Charles Martin',NULL,NULL),(4888033,'Eili Harboe',1994,NULL),(4888194,'Quang Minh Do',NULL,NULL),(4888284,'Mathias Schneeberger',NULL,NULL),(4888294,'Ferdinando D\'Urbano',NULL,NULL),(4889489,'Jake Manley',NULL,NULL),(4889497,'Anne Paschetta',NULL,NULL),(4889579,'Magnus Tingsek',NULL,NULL),(4892326,'Mike Zapcic',NULL,NULL),(4893058,'Linda Bouchard',NULL,NULL),(4896277,'Eli Horowitz',NULL,NULL),(4897618,'Brandon Gerald Fuller',NULL,NULL),(4899762,'Daniel Hunt',NULL,NULL),(4901594,'Vadim Sveshnikov',NULL,NULL),(4901642,'Spencer Rocco Lofranco',1992,NULL),(4903197,'Claire Julien',1995,NULL),(4903826,'Brittany N. Pierce',NULL,NULL),(4904466,'RIOPY',NULL,NULL),(4904810,'Jonah Beres',NULL,NULL),(4905952,'Germaine Serand',NULL,NULL),(4906529,'Helen Solomon',NULL,NULL),(4906549,'Yvonne Serand',1886,1969),(4906641,'Daniel von Czarnecki',NULL,NULL),(4907722,'Niketa Roman',NULL,NULL),(4907810,'Stella Meghie',NULL,NULL),(4910720,'Joyce Hshieh',NULL,NULL),(4910900,'Roger Wu',NULL,NULL),(4911194,'Jenna Ortega',2002,NULL),(4911369,'Marco Fiorito',NULL,NULL),(4912682,'Usman Riaz',NULL,NULL),(4914249,'Arijit Biswas',NULL,NULL),(4914253,'Julie Vollono',1961,NULL),(4914265,'Owen Easterling Hatfield',NULL,NULL),(4914792,'Frant Gwo',NULL,NULL),(4914976,'Cosmina Stratan',1984,NULL),(4915003,'Maxwell Peters',NULL,NULL),(4915252,'Evgeniy Koshevoy',NULL,NULL),(4915334,'Cristina Flutur',1978,NULL),(4916283,'Celeste Ballard',NULL,NULL),(4917921,'Devin Druid',1998,NULL),(4918460,'Ben Giladi',NULL,NULL),(4918786,'Rorke Denver',NULL,NULL),(4918858,'Patrick O\'Brien',NULL,NULL),(4919938,'Amy K. Spencer',NULL,NULL),(4920741,'Rory J Saper',1996,NULL),(4924757,'Mya Taylor',1991,NULL),(4925405,'Jeremy O. Harris',1989,NULL),(4925485,'Roman Ilyushenko',NULL,NULL),(4925682,'Chelsea Turnbo',NULL,NULL),(4926180,'Alba Baptista',1997,NULL),(4926209,'Carlos Montenegro',NULL,NULL),(4927379,'Michael Finkel',NULL,NULL),(4927551,'Sarah Streicher',NULL,NULL),(4927704,'Xolo Maridueña',2001,NULL),(4928252,'Serena Armitage',NULL,NULL),(4929316,'Sharon Whooley',NULL,NULL),(4929877,'Yoshikazu Ono',NULL,NULL),(4930263,'Jens K. Müller',NULL,NULL),(4930397,'Adam Wolf Mayerson',NULL,NULL),(4930589,'Sam Slater',1984,NULL),(4930736,'Shinsuke Yamane',NULL,NULL),(4930837,'Chris Petrovski',1991,NULL),(4932043,'Jul Maroh',NULL,NULL),(4932610,'Wei Lu',NULL,NULL),(4932770,'Jonas Jonasson',1971,NULL),(4935995,'Vilde Zeiner',NULL,NULL),(4936789,'Suleyman Kabaali',1983,NULL),(4937329,'Nathan Vann Walton',NULL,NULL),(4937378,'Mohamed Mamdouh',1981,NULL),(4938638,'Emily McAllister',NULL,NULL),(4939447,'Larry Meli',NULL,NULL),(4940051,'Shin\'ichirô Ueda',1984,NULL),(4940865,'Riko Sakaguchi',NULL,NULL),(4941030,'Jason Zada',1974,NULL),(4941145,'Francesca Capaldi',2004,NULL),(4941555,'David Moreau',NULL,NULL),(4941635,'Mekki Leeper',1994,NULL),(4941738,'Sruthi Hariharan',1989,NULL),(4941993,'Hokuto Matsumura',1995,NULL),(4944814,'K.D. Dávila',NULL,NULL),(4944898,'Honor Swinton Byrne',1997,NULL),(4945419,'Stacie Passon',NULL,NULL),(4946551,'Carly Rae Jepsen',1985,NULL),(4946619,'Thomas Favaloro',NULL,NULL),(4946793,'Thuan Luu',NULL,NULL),(4946908,'Nicholas D. Johnson',NULL,NULL),(4947120,'Toshinori Yamaguchi',NULL,NULL),(4949211,'Katarzyna Terechowicz',NULL,NULL),(4949867,'Casey Donahue',NULL,NULL),(4950667,'Creighton Rothenberger',NULL,NULL),(4951717,'Katrin Benedikt',NULL,NULL),(4952295,'Catie Lamer',NULL,NULL),(4952579,'Karel Dolak',NULL,NULL),(4952582,'Anne-Sophie Brasme',NULL,NULL),(4952626,'Alan Hanna',NULL,NULL),(4952700,'Cheryl Strayed',1968,NULL),(4953520,'Samantha Stewart',NULL,NULL),(4954157,'Hana Sugisaki',1997,NULL),(4955588,'Celina Martin',1993,NULL),(4955720,'Odiseas Georgiadis',NULL,NULL),(4955813,'Þrúður Kristjánsdóttir',NULL,NULL),(4956083,'Masaya Shibusawa',NULL,NULL),(4957233,'Aisling Franciosi',1993,NULL),(4957990,'Susan Scarf Merrell',NULL,NULL),(4958428,'Christina Sotta',NULL,NULL),(4958745,'Clément Steyaert',NULL,NULL),(4960279,'Margaret Qualley',1994,NULL),(4961092,'Patrick André',NULL,NULL),(4963600,'Ed Birch',NULL,NULL),(4963674,'Ronnie Lahiri',NULL,NULL),(4964008,'John Schoenfelder',NULL,NULL),(4965045,'Théo Cholbi',NULL,NULL),(4965369,'Michael Lopez',NULL,NULL),(4965683,'Malik Rumeau',NULL,NULL),(4965754,'Aiden Longworth',2004,NULL),(4966241,'Yael Shafrir',NULL,NULL),(4966502,'Nicholas Jacob',NULL,NULL),(4966991,'Germano Zullo',NULL,NULL),(4970331,'Noam Levy',NULL,NULL),(4970700,'Benedict Andrews',NULL,NULL),(4971012,'Sarah Brocklehurst',NULL,NULL),(4972198,'Ray Bamber',NULL,NULL),(4972432,'Camille Lugan',NULL,NULL),(4972453,'Olivia Cooke',1993,NULL),(4973343,'Ramon Rodriguez',NULL,NULL),(4973460,'Victoire Du Bois',NULL,NULL),(4973558,'Juanra Fernández',NULL,NULL),(4973896,'Taylor John Smith',1995,NULL),(4974188,'Karina Miller',NULL,NULL),(4974834,'Matt Shipman',1992,NULL),(4975337,'Hyun-Sung Moon',NULL,NULL),(4975709,'Sharon Chang',NULL,NULL),(4975765,'Missy Keating',NULL,NULL),(4976087,'Alan McDonald',NULL,NULL),(4977122,'Owen Teague',1998,NULL),(4977194,'Aubrey Joyce Tunnell',NULL,NULL),(4977564,'Storm Reid',2003,NULL),(4978261,'Troy Scoughton Sr.',NULL,NULL),(4978282,'Carrie Cates',NULL,NULL),(4979264,'Kara Durrett',NULL,NULL),(4980516,'John Carey',NULL,NULL),(4982437,'Justin Copeland',NULL,NULL),(4982881,'Katharina Mückstein',NULL,NULL),(4987678,'Indira Tiwari',NULL,NULL),(4989537,'Byung-jin Na',NULL,NULL),(4989553,'Yong-hoon Eom',NULL,NULL),(4990507,'Hussain Dalal',1989,NULL),(4991302,'Sandra Samacá U.',NULL,NULL),(4992626,'Glen Kirby',NULL,NULL),(4992675,'Masanori Miyake',NULL,NULL),(4996082,'Kalena Yiaueki',NULL,NULL),(4998050,'Mawby Green',NULL,NULL),(4998084,'Lisa Demetree',NULL,NULL),(5000675,'Shayar Bhansali',NULL,NULL),(5000693,'Larissa Gallagher',NULL,NULL),(5001743,'Emily Leo',NULL,NULL),(5002039,'Matthew Lorentz',NULL,NULL),(5002057,'Y\'lan Noel',NULL,NULL),(5002895,'Yukiko Nagase',NULL,NULL),(5003154,'Hiroshi Seko',NULL,NULL),(5003252,'Alexander Petrov',1989,NULL),(5004782,'Sandy E. Scott',NULL,NULL),(5004893,'Yariv Lerner',NULL,NULL),(5005121,'Julia Greer',NULL,NULL),(5006328,'John Kåre Raake',NULL,NULL),(5007768,'Da\'Vine Joy Randolph',1986,NULL),(5008318,'Axel Bøyum',NULL,NULL),(5008401,'Cecil Stokes',NULL,NULL),(5008457,'Jenle Hallund',NULL,NULL),(5008863,'Farrah Mackenzie',2005,NULL),(5009324,'Mark Andersen',NULL,NULL),(5009508,'Lee Allen',NULL,NULL),(5009714,'Lauren Tempany',NULL,NULL),(5009883,'Matt Jackson',NULL,NULL),(5011084,'Amir El-Masry',NULL,NULL),(5011215,'Gantuya Lhavga',NULL,NULL),(5011403,'Abel Cantou',NULL,NULL),(5011427,'Amelia Pidgeon',NULL,NULL),(5011725,'Charlie Morrison',NULL,NULL),(5012141,'Gonzalo Vega Jr.',NULL,NULL),(5013014,'Tamara Yazbek',NULL,NULL),(5015081,'Israel Montenegro',NULL,NULL),(5015107,'Jacob Lofland',1996,NULL),(5015508,'Chumo Mata',NULL,NULL),(5015568,'William Binney',1943,NULL),(5016878,'Jacob Tremblay',2006,NULL),(5020816,'David White',NULL,NULL),(5022110,'Michael J. Wilson',NULL,NULL),(5023746,'Kayoze Irani',NULL,NULL),(5024076,'Phillip Murphy',NULL,NULL),(5024255,'Bob Demper',NULL,NULL),(5025909,'Sofia Rosinsky',2006,NULL),(5025914,'William C. White',NULL,NULL),(5027760,'Paula Antebi',NULL,NULL),(5027845,'Laura Meissat-Hirel',NULL,NULL),(5029795,'Jeymes Samuel',NULL,NULL),(5029837,'Tony Tagoe',NULL,NULL),(5030216,'Dale Armin Johnson',NULL,NULL),(5030374,'Viktoriya Agalakova',1996,NULL),(5030661,'J. Carver Pusey',1901,1953),(5030959,'Keenan Lehmann',NULL,NULL),(5032757,'Lehar Khan',1999,NULL),(5032902,'Julie Kristine Sullivan',NULL,NULL),(5032943,'Elias Menasse',NULL,NULL),(5033056,'Fletcher Jarvis',NULL,NULL),(5033218,'Priscille Kneppert',NULL,NULL),(5033448,'Victoria Song',1987,NULL),(5035127,'Larry Ingrassia',NULL,NULL),(5035474,'Dennis Crowley',NULL,NULL),(5035480,'David DeGrow Shotwell',NULL,NULL),(5037683,'Andy Lanning',NULL,NULL),(5038871,'Annika Wedderkopp',2004,NULL),(5039026,'Lasse Fogelstrøm',1996,NULL),(5039410,'Rebecca Benson',NULL,NULL),(5039655,'Ruben Zadurian',NULL,NULL),(5043629,'Corinne Massiah',2003,NULL),(5043859,'Rachel Keller',1992,NULL),(5044830,'Dan Cohen',NULL,NULL),(5045014,'Bailey De Young',1989,NULL),(5045262,'Hillary Jordan',NULL,NULL),(5045263,'Ariella Mastroianni',NULL,NULL),(5046293,'Grégory Magne',NULL,NULL),(5046363,'Rozenn Le Gloahec',NULL,NULL),(5047017,'Amy Belk',NULL,NULL),(5047164,'Deragh Campbell',NULL,NULL),(5047355,'Ned Oldham',NULL,NULL),(5047403,'Jude Swanberg',NULL,NULL),(5047691,'Kim Taylor',NULL,NULL),(5048244,'Gorm Sundberg',NULL,NULL),(5049468,'Davide De Bona',NULL,NULL),(5050094,'Sung Hsi',NULL,NULL),(5050688,'Ella Rumpf',1995,NULL),(5052065,'Ansel Elgort',1994,NULL),(5052148,'Buddy Patrick',1984,NULL),(5052617,'Assad Ahmed',NULL,NULL),(5055444,'Hiroaki Tsutsumi',NULL,NULL),(5055646,'Charlotte Ubben',NULL,NULL),(5056467,'Laurie Aubanel',NULL,NULL),(5056474,'Cyril Rambour',NULL,NULL),(5057169,'Thomasin McKenzie',2000,NULL),(5058839,'Gillian Flynn',1971,NULL),(5060159,'Donald Elise Watkins',NULL,NULL),(5063015,'Anna Parmas',NULL,NULL),(5063151,'Hannes Sell',NULL,NULL),(5064857,'Oliver Kassman',NULL,NULL),(5064943,'Jonathan Duffy',NULL,NULL),(5065920,'Julia Goldani Telles',1995,NULL),(5065934,'Stephanie Shemanski',NULL,NULL),(5066351,'Evan Crooks',1994,NULL),(5067468,'Martin Senter',NULL,NULL),(5067996,'Jean Hanff Korelitz',NULL,NULL),(5068149,'Stephen Krolikowski',NULL,NULL),(5068934,'Sajid Ali',NULL,NULL),(5069465,'Diana Penty',1985,NULL),(5071064,'Hongmei Mai',1970,NULL),(5071163,'Hanna Puley',NULL,NULL),(5071398,'Xiaoqing Chen',NULL,NULL),(5071399,'Xiubo Wu',1968,NULL),(5071833,'Chien Sheng',1973,NULL),(5071842,'Emma Jouannet',1992,NULL),(5072747,'Diana Del Bufalo',1990,NULL),(5074967,'Larry Siems',NULL,NULL),(5075244,'Dylan Grunn',NULL,NULL),(5077137,'Emily V. Gordon',1979,NULL),(5077687,'Lee El',NULL,NULL),(5079467,'Kenzô Ishiguro',NULL,NULL),(5081070,'Ali Farkhonde',NULL,NULL),(5082528,'Gabriel Peña',NULL,NULL),(5082529,'Jen Tullock',1983,NULL),(5085606,'Apolline Berty',NULL,NULL),(5085683,'Mckenna Grace',2006,NULL),(5086797,'Papermouth',NULL,NULL),(5086820,'Meuris',NULL,NULL),(5087531,'Takamasa Ôe',NULL,NULL),(5088181,'Vyacheslav Chepurchenko',1987,NULL),(5088963,'Rodolfo Domínguez',NULL,NULL),(5089380,'Carlos Chajon',NULL,NULL),(5090093,'Matt Helm',NULL,NULL),(5090255,'Karen Martínez',NULL,NULL),(5090373,'Brandon López',NULL,NULL),(5092324,'Kim Barker',NULL,NULL),(5093086,'Rucha Humnabadkar',NULL,NULL),(5093301,'Alexandra Dowling',1990,NULL),(5093499,'Jasmine Cephas Jones',1989,NULL),(5093708,'Justin H. Min',NULL,NULL),(5094294,'Christopher Arruda',NULL,NULL),(5094464,'Jon Silverberg',NULL,NULL),(5096683,'Garth Stevenson',NULL,NULL),(5097044,'Isabela Merced',2001,NULL),(5097979,'Armen Taylor',1986,NULL),(5099152,'Nichole Bagby',NULL,NULL),(5100267,'Roun Daher Aïnan',NULL,NULL),(5100396,'Hannah Risinger',NULL,NULL),(5101259,'Idriss Abdillahi Houfaneh',NULL,NULL),(5101419,'Awa Saïd Darar',NULL,NULL),(5104879,'Rudolfas Jansonas',1947,NULL),(5105099,'Marcin Kowalczyk',1987,NULL),(5105119,'Ross Anderson',NULL,NULL),(5106831,'Michael Rianda',1984,NULL),(5110256,'Carlos Abrieu',NULL,NULL),(5112218,'Cedomir Djordjevic',NULL,NULL),(5114631,'Leland Stanford',1824,1893),(5115855,'Alexandre Morcilo',NULL,NULL),(5116794,'Kiichirô Sugawara',NULL,NULL),(5116939,'Matt Smith',NULL,NULL),(5117075,'Florence Gastaud',NULL,NULL),(5117180,'Sofia Karemyr',1994,NULL),(5117507,'Joanna Smith Rakoff',NULL,NULL),(5117871,'Pablo Pauly',NULL,NULL),(5119729,'Eden Campbell',NULL,NULL),(5122164,'Ronja Svenning Berge',NULL,NULL),(5122260,'Herbert Nordrum',NULL,NULL),(5123098,'Ashley Bratcher',NULL,NULL),(5123156,'Kelvin Harrison Jr.',1994,NULL),(5124496,'Cerasela Trandafir',NULL,NULL),(5124810,'Joseph D. Johnston',NULL,NULL),(5125238,'Carlo Spatuzza',NULL,NULL),(5125871,'DeRon Horton',1992,NULL),(5126852,'Brad Becker-Parton',NULL,NULL),(5126856,'David De Reszke',NULL,NULL),(5128387,'Teo Halm',1999,NULL),(5128938,'Benjamin Krause',NULL,NULL),(5129519,'Casey Rose Daniel',NULL,NULL),(5131296,'Natalia de Molina',1989,NULL),(5131353,'Leoci Medeiros',NULL,NULL),(5131788,'Armen Ananikyan',NULL,NULL),(5133272,'Brent Hartinger',NULL,NULL),(5136172,'Dan Antoniazzi',NULL,NULL),(5137121,'Natsuki Hanae',1991,NULL),(5138509,'Youli Galperine',NULL,NULL),(5140588,'Erin Reinhard',NULL,NULL),(5141621,'Frankie Wilson',1993,NULL),(5141827,'Kamil Paszkiewicz',NULL,NULL),(5142203,'Diego Enrique Osorno',NULL,NULL),(5142339,'Julian Lembke',NULL,NULL),(5143033,'Claire Crosby',NULL,NULL),(5143532,'Kotori Koiwai',NULL,NULL),(5145321,'Edward Kane',NULL,NULL),(5145655,'Gabriel Bateman',2004,NULL),(5146515,'David Rawle',NULL,NULL),(5146757,'Sal Brienik',NULL,NULL),(5147161,'Paul Brad Logan',NULL,NULL),(5147232,'Kôichirô Itô',NULL,NULL),(5147242,'Autumn Whitefield-Madrano',NULL,NULL),(5148840,'Tao Okamoto',1985,NULL),(5149048,'Xinyi Zhang',NULL,NULL),(5149187,'Pete Valley',NULL,NULL),(5149400,'Léonore Ekstrand',NULL,NULL),(5150018,'Sam Bromell',NULL,NULL),(5151578,'Parveez Sheikh',NULL,NULL),(5152585,'Sarah Jeffery',NULL,NULL),(5153144,'Mike Fearnley',NULL,NULL),(5153276,'Peter Cron',NULL,NULL),(5155666,'Ross Kimball',NULL,NULL),(5155828,'Yuki Sakurai',1987,NULL),(5155952,'Brandon Perea',1995,NULL),(5156455,'Mike Witherill',NULL,NULL),(5157050,'Nanami Abe',NULL,NULL),(5157662,'Lulu Wilson',2005,NULL),(5157729,'Mathias Nille Nilsson',1974,NULL),(5159316,'Masahiro Ôkubo',NULL,NULL),(5160381,'Loreto Peralta',2004,NULL),(5160784,'James Pasier',NULL,NULL),(5161275,'David Rabinowitz',NULL,NULL),(5162352,'Sarah Fisher',1993,NULL),(5163462,'Stephen Lambeth',NULL,NULL),(5163471,'Olivier Poubelle',NULL,NULL),(5166444,'Ellie Bamber',1997,NULL),(5167056,'Aksinya Gog',NULL,NULL),(5169687,'Silvana Silvestri',NULL,NULL),(5170107,'Jeff Levine',NULL,NULL),(5170222,'Lindsey Anderson Beer',NULL,NULL),(5173968,'Madison Ginsberg',NULL,NULL),(5174817,'Mary Wexler',NULL,NULL),(5174854,'Daniel Elek',NULL,NULL),(5175245,'Jody Bhe',NULL,NULL),(5175557,'Paul Lussier',NULL,NULL),(5176076,'Mariya Smolnikova',1987,NULL),(5176177,'Kenta Ihara',NULL,NULL),(5177123,'Hannah Hart',1986,NULL),(5177682,'Phil Graziadei',NULL,NULL),(5177729,'Amanda Brody',NULL,NULL),(5177929,'Pixie Davies',2006,NULL),(5178247,'Owen Williams',NULL,NULL),(5178386,'Jed Shepherd',NULL,NULL),(5178583,'Tiana Tuttle',NULL,NULL),(5179652,'Waad Mohammed',NULL,NULL),(5179673,'Reem Abdullah',NULL,NULL),(5180712,'Gavin Steckler',NULL,NULL),(5180960,'Django Schrevens',NULL,NULL),(5181048,'Gill Vancompernolle',NULL,NULL),(5181138,'Saniyya Sidney',2006,NULL),(5181353,'Aurélia Poirier',NULL,NULL),(5182094,'T.J. Dawe',NULL,NULL),(5183398,'Harry Ratchford',NULL,NULL),(5184964,'Abdullrahman Al Gohani',NULL,NULL),(5187049,'Steven A. Reich',1956,NULL),(5187480,'Alphonse Ghossein',NULL,NULL),(5189784,'Alex Sharp',1989,NULL),(5192794,'Lezlie Wills',NULL,NULL),(5192886,'Jessamine-Bliss Bell',NULL,NULL),(5194207,'Sergei Stern',NULL,NULL),(5195331,'Eva Grace Kellner',NULL,NULL),(5195431,'Jess Penner',NULL,NULL),(5195805,'K.L. Going',1973,NULL),(5197781,'Andrew Yang',NULL,NULL),(5198446,'Cecily Strong',1984,NULL),(5199206,'Natalie Taylor Smith',NULL,NULL),(5199313,'Jenna Warren',1999,NULL),(5199482,'Adam Rex',NULL,NULL),(5199533,'Jeremy Michaels',NULL,NULL),(5200483,'Naoko Komuro',NULL,NULL),(5203976,'Hector Tobar',NULL,NULL),(5204253,'Ryan Morrison',NULL,NULL),(5204317,'David Lussier',NULL,NULL),(5204692,'Jean-Noël Pancrazi',NULL,NULL),(5208226,'Eric M. Gardner',NULL,NULL),(5208385,'Brianna Baker',NULL,NULL),(5208499,'Micheal J. Vogelsang',NULL,NULL),(5209223,'Bill Shultz',NULL,NULL),(5210575,'Pat Rushin',NULL,NULL),(5213043,'Yollótl Alvarado',1989,NULL),(5213224,'Erica Mendez',1988,NULL),(5213242,'Lizzie Freeman',1992,NULL),(5213347,'Linus Andersson',NULL,NULL),(5213993,'Ian Fyfe',NULL,NULL),(5215273,'Josh Boles',NULL,NULL),(5216592,'Emily Cheree',1993,NULL),(5217936,'Sean Kennedy',NULL,NULL),(5218112,'Fina Strazza',2005,NULL),(5218990,'Trevante Rhodes',1990,NULL),(5221389,'Alice Girard',NULL,NULL),(5222596,'Sudeep Banerjee',NULL,NULL),(5223244,'Rajeev Kapoor',NULL,NULL),(5226523,'Claire Conti',1959,NULL),(5226720,'Kaspar Kaae',1983,NULL),(5226793,'Lucas Dixon',NULL,NULL),(5227903,'Victor Fink',NULL,NULL),(5228245,'Alex Henderson',2002,NULL),(5228823,'Manon Ardisson',NULL,NULL),(5228863,'João Nunes Monteiro',NULL,NULL),(5228887,'Ben Hardy',1991,NULL),(5230401,'Ushio Shinohara',NULL,NULL),(5230596,'Noriko Shinohara',NULL,NULL),(5231168,'Noah Wiseman',NULL,NULL),(5232139,'Yash',1986,NULL),(5232468,'Terry Chan',NULL,NULL),(5232740,'Itsumi Sawada',NULL,NULL),(5233249,'Tatsuo Matoba',NULL,NULL),(5233340,'Mel Hoy',NULL,NULL),(5233732,'Naho Hirokawa',NULL,NULL),(5234602,'Jane White',NULL,NULL),(5236342,'Emilie Bierre',2004,NULL),(5236664,'Kayla Servi',1997,NULL),(5236919,'Esteban Aldrete',NULL,NULL),(5237225,'Jared Lotz',NULL,NULL),(5237479,'Stacy Martin',1990,NULL),(5237694,'Pawan Kumar',1982,NULL),(5238868,'Kyle Strauts',NULL,NULL),(5240345,'Lynn',NULL,NULL),(5242974,'Alan Martínez',NULL,NULL),(5243330,'Aaron Riedford',NULL,NULL),(5243556,'Paul Guilhaume',NULL,NULL),(5243946,'Michele García',NULL,NULL),(5244086,'Patrik Andersson',NULL,NULL),(5244299,'Jimmy Caputo',1989,NULL),(5245105,'Dougie Baldwin',NULL,NULL),(5245242,'Keita Ninomiya',2006,NULL),(5245313,'Chris Esquerre',NULL,NULL),(5245722,'Adria Arjona',1992,NULL),(5245791,'Julio Pillado',NULL,NULL),(5246019,'Ali Aga',1983,NULL),(5247926,'Gabriela Zárate',NULL,NULL),(5249587,'Greg Yolen',NULL,NULL),(5250180,'Congopunq',NULL,NULL),(5250972,'Jovial Mbenga',NULL,NULL),(5251583,'Trevor Tordjman',1995,NULL),(5251743,'Amin Bouhafa',NULL,NULL),(5256327,'Natalie Qasabian',NULL,NULL),(5256328,'Tamara Cano',NULL,NULL),(5260672,'Siddhartha Khosla',NULL,NULL),(5262241,'Joshua Levy',NULL,NULL),(5263022,'Shyam Prasad Vasili',NULL,NULL),(5263447,'Shital Morjaria',NULL,NULL),(5264366,'Kazuki Adachi',NULL,NULL),(5266716,'Christian Patrick',NULL,NULL),(5269292,'Andrea Berentsen Ottmar',NULL,NULL),(5270593,'Raul Sanchez',NULL,NULL),(5272702,'Daniel Presley',NULL,NULL),(5274019,'Ann Deborah Fishman',NULL,NULL),(5274449,'Mónica Mateo',NULL,NULL),(5275027,'William Jousset',NULL,NULL),(5276483,'Svyatoslav Podgaevskiy',1983,NULL),(5277246,'Ben Sharrock',NULL,NULL),(5277357,'Lev Goltser',NULL,NULL),(5277764,'Rohana Hayes',NULL,NULL),(5277886,'Katrina Maree',NULL,NULL),(5278146,'Aaron Hann',NULL,NULL),(5278332,'Rebhi Barqawi',NULL,NULL),(5278427,'Mario Miscione',NULL,NULL),(5279428,'Daniel Cerezo',NULL,NULL),(5279469,'Raúl Rivas',NULL,NULL),(5282266,'Mugi Kadowaki',1992,NULL),(5282532,'Don Berwick',NULL,NULL),(5284002,'Tremaine Williams',NULL,NULL),(5284988,'Janis Valdez',NULL,NULL),(5285131,'Anurag Saikia',NULL,NULL),(5285233,'John Davis',NULL,NULL),(5287110,'Sharon Rooney',1988,NULL),(5287403,'Jonas Wikstrand',NULL,NULL),(5288006,'Preeti Gupta',1986,NULL),(5288797,'Dave Mullins',NULL,NULL),(5289961,'Sacha Ben Harroche',NULL,NULL),(5290643,'Tom Bateman',1989,NULL),(5291133,'Cengiz Daner',1959,NULL),(5291274,'Eraslan Saglam',NULL,NULL),(5291376,'Bianca A. Santos',NULL,NULL),(5291515,'Jonathan Ward',NULL,NULL),(5292130,'Tony Giroux',NULL,NULL),(5293055,'Jeffrey Zaslow',1958,2012),(5293255,'Johann Dionnet',NULL,NULL),(5294269,'Fary',NULL,NULL),(5294965,'Albert Tsai',2004,NULL),(5295511,'Hadley Belle Miller',NULL,NULL),(5295692,'T. Paige Dalporto',NULL,NULL),(5297113,'Clare Hammond',NULL,NULL),(5298237,'Katie Carpenter',NULL,NULL),(5298541,'Lynsay Richardson',NULL,NULL),(5299681,'François Lafontaine',NULL,NULL),(5300281,'Jed Mellick',NULL,NULL),(5301405,'Mia Goth',1993,NULL),(5301911,'George Northy',NULL,NULL),(5303256,'Marc Basch',NULL,NULL),(5303360,'Lauren Hogarth',NULL,NULL),(5303413,'In-beom Yoon',NULL,NULL),(5304098,'Sarah Perles',NULL,NULL),(5305003,'Cristina Gallego',NULL,NULL),(5305557,'Kaitlyn Bernard',2000,NULL),(5305981,'Camila Cabello',1997,NULL),(5306600,'Rob Schiffman',NULL,NULL),(5307044,'Ronny Chieng',1985,NULL),(5307529,'Roman Gottwald',NULL,NULL),(5307742,'Loan Chabanol',NULL,NULL),(5312746,'Daniel Sequeira',NULL,NULL),(5312818,'Pauline Brunner',NULL,NULL),(5312974,'Sung-hui Kwon',NULL,NULL),(5313788,'Redouanne Harjane',1984,NULL),(5314287,'Justin Noble',NULL,NULL),(5315479,'Tilda Cobham-Hervey',NULL,NULL),(5315658,'Laysla De Oliveira',1992,NULL),(5316154,'Tim Jenison',NULL,NULL),(5316693,'Lauren Avinoam',NULL,NULL),(5317107,'Molly Benda',NULL,NULL),(5318010,'David Eccles',NULL,NULL),(5318036,'Vasso Georgiadou',NULL,NULL),(5318271,'Cynthy Wu',NULL,NULL),(5320024,'Michael Fox',1989,NULL),(5320419,'Simonetta Greggio',NULL,NULL),(5320501,'Lance Trezona',NULL,NULL),(5321218,'Rocky Mudaliar',NULL,NULL),(5321876,'Wakana Okamura',NULL,NULL),(5322643,'Ahmed Berhan',NULL,NULL),(5323274,'Kurt Knight',NULL,NULL),(5323427,'Yasushi Hanamura',NULL,NULL),(5323995,'Mason Dye',1994,NULL),(5325195,'Jonathan Evison',NULL,NULL),(5327343,'Gyarmath Bogdan',NULL,NULL),(5327453,'Marion Nelson',NULL,NULL),(5328755,'Allen Liu',NULL,NULL),(5332002,'Amp Wong',NULL,NULL),(5332470,'Chung Hyun',NULL,NULL),(5333675,'Todd R. Jones',NULL,NULL),(5333857,'Alice Lee',1989,NULL),(5335213,'Tai-lee Chan',NULL,NULL),(5335939,'Chuck Logan',NULL,NULL),(5336512,'Danièle Mazet-Delpeuch',NULL,NULL),(5336683,'Solveig Fina',NULL,NULL),(5337077,'Janet Brenner',NULL,NULL),(5337106,'Toru Uchikado',NULL,NULL),(5338416,'Federico Bettini',NULL,NULL),(5338858,'Abby Ryder Fortson',NULL,NULL),(5343317,'Samara Lee',NULL,NULL),(5344063,'Michael Werwie',NULL,NULL),(5345817,'Izumi Sawada',NULL,NULL),(5346357,'Andrew Orkin',NULL,NULL),(5346962,'Maren Kraus',NULL,NULL),(5347659,'Geoffrey Wexler',NULL,NULL),(5347988,'Taylor Russell',1994,NULL),(5348485,'The Radiophonic Workshop',NULL,NULL),(5349180,'Drew Sykes',NULL,NULL),(5351647,'Eden Duncan-Smith',NULL,NULL),(5352443,'Dove Sussman',NULL,NULL),(5353321,'Cara Delevingne',1992,NULL),(5355300,'Azim Bolkiah',1982,2020),(5355434,'Louis Hobson',NULL,NULL),(5355674,'Hiroshima',NULL,NULL),(5358048,'Christopher G. Knight',NULL,NULL),(5358492,'Kemp Powers',NULL,NULL),(5359238,'Brian McCarthy',NULL,NULL),(5359536,'Alexis G. Zall',1998,NULL),(5360368,'Cho Yong Joo',NULL,NULL),(5361352,'Edward Ashley',NULL,NULL),(5361609,'Marco van Bergen',NULL,NULL),(5362984,'Abby Quinn',NULL,NULL),(5363488,'Brigitte Apruzzesi',NULL,NULL),(5363540,'Heather Paige Cohn',1990,NULL),(5363670,'Marian Valenti Adrian',NULL,NULL),(5363942,'Stefano Rabatti',NULL,NULL),(5363996,'Nader Sarhan',NULL,NULL),(5364436,'Levi Smock',NULL,NULL),(5364484,'András Sütö',1989,NULL),(5365491,'Sayuri Fujii',NULL,NULL),(5365694,'Nicolas Livecchi',NULL,NULL),(5365700,'Leo John Paul',NULL,NULL),(5366411,'C.V. Kumar',NULL,NULL),(5366865,'Prashant D. Khapre',NULL,NULL),(5367652,'Cathy MacPhail',NULL,NULL),(5367909,'Asli Dadak',NULL,NULL),(5368418,'Masahiko Takahashi',NULL,NULL),(5369197,'Shree Crooks',NULL,NULL),(5370274,'Joyce Payne',NULL,NULL),(5371554,'Gary Poulter',1959,2013),(5371819,'Myeong-chan Park',NULL,NULL),(5371827,'Daniel Woo',NULL,NULL),(5372988,'Catherine Davis',NULL,NULL),(5374530,'Ke-Xi Wu',1983,NULL),(5375420,'Jack Gore',NULL,NULL),(5376692,'Benjamin Elalouf',NULL,NULL),(5377144,'Awkwafina',1988,NULL),(5377442,'María Belón',NULL,NULL),(5378253,'Ami Taniguchi',NULL,NULL),(5378650,'Paolo Strippoli',NULL,NULL),(5378921,'Grégoire Lassalle',NULL,NULL),(5379124,'Hak Jun Kim',NULL,NULL),(5379274,'Masami Saeki',NULL,NULL),(5379309,'Takuma Negishi',NULL,NULL),(5379748,'Isabel Marden',NULL,NULL),(5381254,'Jovan Adepo',1988,NULL),(5382637,'Julian Shatkin',NULL,NULL),(5382648,'Paula Ferry',NULL,NULL),(5383288,'Zoë Hatherell',NULL,NULL),(5383335,'Tom Procter',NULL,NULL),(5383459,'R.J. Palacio',NULL,NULL),(5383466,'Burton DeWilde',NULL,NULL),(5383565,'Stewart Martin-Haugh',NULL,NULL),(5383581,'Luke Thompson',NULL,NULL),(5383638,'Juan Andrés Silva',NULL,NULL),(5383792,'William P. Martin',NULL,NULL),(5384213,'Ted Chiang',1967,NULL),(5387351,'Ko-Chin Chen',NULL,NULL),(5387558,'Alix Purcell',NULL,NULL),(5387896,'August Roads',NULL,NULL),(5389637,'Laila Berzins',1983,NULL),(5389756,'Brad Michael Elmore',NULL,NULL),(5389955,'Tom McLaughlan',NULL,NULL),(5390305,'M.L. Stedman',NULL,NULL),(5390656,'Rie Murakawa',NULL,NULL),(5390715,'Vashti Gwynn',NULL,NULL),(5390798,'Louis Hackett',NULL,NULL),(5391611,'Thomas Nauw',NULL,NULL),(5391835,'Anna Fagan',NULL,NULL),(5392239,'Lucinda Verwey',NULL,NULL),(5394181,'Samantha Scaffidi',NULL,NULL),(5395541,'Dida Maia',NULL,NULL),(5396138,'Reo Sano',NULL,NULL),(5397459,'Daisy Ridley',1992,NULL),(5402587,'Frédéric Schulz-Richard',NULL,NULL),(5403126,'Stephany Folsom',NULL,NULL),(5404677,'Armando Miguel Gómez',NULL,NULL),(5405979,'Alex Høgh Andersen',1994,NULL),(5407482,'Frédéric Norel',NULL,NULL),(5407803,'Charles Denton',NULL,NULL),(5409198,'David Lagercrantz',NULL,NULL),(5409486,'Alexander Dinelaris',NULL,NULL),(5410196,'Tony Mendez',1940,2019),(5411969,'Eric Friedl',NULL,NULL),(5412083,'Chris Redd',1985,NULL),(5412202,'Tamara Drakulic',NULL,NULL),(5414184,'Elena Erkman',NULL,NULL),(5415164,'Rex Doane',NULL,NULL),(5415981,'Jose Luis Garcia',NULL,NULL),(5416061,'Pradip Atluri',NULL,NULL),(5418160,'Fabiola Zamora',NULL,NULL),(5421253,'Kriss Schludermann',NULL,NULL),(5421727,'Tom Fletcher',NULL,NULL),(5421877,'Julian Dennison',2002,NULL),(5422697,'Gilbert Domm',1844,1912),(5422737,'Hope Lauren',1993,NULL),(5423040,'Dean Esmay',1966,NULL),(5423482,'Rajshri Deshpande',1982,NULL),(5423878,'Meri Collazos Sola',NULL,NULL),(5426384,'Rudolf Blahacek',1965,NULL),(5426873,'Steven John Ward',1990,NULL),(5426973,'Yuriy Borisov',1992,NULL),(5427601,'Carolyn Bracken',NULL,NULL),(5428455,'Jim Pasierbowicz',NULL,NULL),(5428483,'Brad Desch',NULL,NULL),(5428959,'Jesse Andrews',NULL,NULL),(5429637,'Christina Hodson',NULL,NULL),(5430544,'Tudor Vladimir Panduru',1990,NULL),(5432696,'James Mcarthur',NULL,NULL),(5432951,'Michelle Ny',NULL,NULL),(5434379,'Hwang Jo Yoon',NULL,NULL),(5434945,'Kari Alison Hodge',NULL,NULL),(5436235,'Jake Kuykendall',NULL,NULL),(5438400,'Mahamadou Sangaré',NULL,NULL),(5439073,'Rakesh Jhunjhunwala',1960,2022),(5439103,'R. Damani',NULL,NULL),(5439959,'Travis Gray',NULL,NULL),(5440062,'Margaret Hutchinski',NULL,NULL),(5440128,'Dan Kupka',1977,NULL),(5440708,'Derek Elliott',NULL,NULL),(5441144,'Alankrita Sahai',1994,NULL),(5442200,'Tamara Pappé',NULL,NULL),(5442381,'Kelli Horan',NULL,NULL),(5442529,'Trevor Alan Gast',NULL,NULL),(5442735,'Austin Shaffer',NULL,NULL),(5443003,'Kelsey Thomas',NULL,NULL),(5443588,'Lacy Carmany',NULL,NULL),(5444837,'Sope Dirisu',1991,NULL),(5444845,'Der Gelbe Raum',NULL,NULL),(5445656,'Alan Daicz',1994,NULL),(5446595,'Amy Molloy',NULL,NULL),(5446778,'Alina Nastase',1990,NULL),(5448069,'Topher Park',NULL,NULL),(5450413,'Gabriel LaBelle',2002,NULL),(5450549,'Roly Porter',NULL,NULL),(5451410,'Jack Kilmer',NULL,NULL),(5453257,'Ted O\'Neal',NULL,NULL),(5454090,'Anton Valle',NULL,NULL),(5456764,'Henny Renes',NULL,NULL),(5457778,'Stefan Schneider',NULL,NULL),(5457825,'Mark Elijah Rosenberg',NULL,NULL),(5457972,'Eike Frederik Schulz',NULL,NULL),(5460828,'Nicole D\'Ovidio',NULL,NULL),(5462342,'Josep Llurba',NULL,NULL),(5462940,'Keenan Coogler',NULL,NULL),(5463002,'Molly Brown',NULL,NULL),(5464293,'Dexter Britain',1989,NULL),(5464867,'Jessica Oberhausen',NULL,NULL),(5465253,'Norihiro Hayashida',NULL,NULL),(5465383,'Sebastian Dinwiddie',NULL,NULL),(5465704,'Ana Carina',NULL,NULL),(5465949,'Jean Hegland',1956,NULL),(5466057,'KamlshGupt',NULL,NULL),(5468610,'Atsushi Chiku',NULL,NULL),(5469396,'Paapa Essiedu',1990,NULL),(5469428,'Keith Powers',1992,NULL),(5469670,'Noia',NULL,NULL),(5470025,'Basharat Peer',NULL,NULL),(5471670,'Lee Sang-hee',1983,NULL),(5471736,'Jay Walker',NULL,NULL),(5471898,'Ankit Balhara',NULL,NULL),(5472785,'Amanda Presmyk',NULL,NULL),(5472874,'Makoto Nakamura',1970,NULL),(5473571,'Joshua Fillmore',NULL,NULL),(5473596,'Ben Clark',NULL,NULL),(5473782,'Taron Egerton',1989,NULL),(5474751,'Henrique Cartaxo',NULL,NULL),(5474899,'Emanuel Nordrum',NULL,NULL),(5476638,'Michael Allan Schneider',NULL,NULL),(5476920,'Ryôsuke Tsuda',NULL,NULL),(5477481,'Kamal Kamruddin',NULL,NULL),(5477540,'Benjamin McAvoy',NULL,NULL),(5477660,'Patrick Burns',NULL,NULL),(5478123,'Nate Moore',NULL,NULL),(5481013,'Kaito Ishikawa',1993,NULL),(5483400,'Madeline Brewer',1992,NULL),(5483636,'Sebastian Peiter',NULL,NULL),(5485169,'Marley Morrison',NULL,NULL),(5485262,'Nick Riedell',NULL,NULL),(5485894,'Young Kyun Park',NULL,NULL),(5486569,'Hortêncílio Aquina',NULL,NULL),(5486594,'Dmytro Andriyovich Gachkov',NULL,NULL),(5486597,'Américo Mota',NULL,NULL),(5486622,'Oksana Ivanivna Sklyarenko',NULL,NULL),(5488482,'Jessamyn Arnstein',NULL,NULL),(5488695,'Sharon Gibson',NULL,NULL),(5489165,'Richard Osborne',NULL,NULL),(5489616,'Irune Gurtubai',NULL,NULL),(5489754,'Max Mittelman',NULL,NULL),(5490381,'Jonathan Ricquebourg',NULL,NULL),(5490847,'Jaime Romero',NULL,NULL),(5493122,'Jan Klemsche',NULL,NULL),(5494785,'Antonin Baudry',1975,NULL),(5495378,'Emiliano Rocha Minter',NULL,NULL),(5495582,'Anthony Aguilar',NULL,NULL),(5499902,'Lee Mark Jones',NULL,NULL),(5500358,'Yôhei Hayashi',NULL,NULL),(5501677,'Anouk Petri',NULL,NULL),(5502027,'Matteo Pagamici',NULL,NULL),(5502209,'Pär Frid',NULL,NULL),(5502454,'Chan Phung',NULL,NULL),(5503448,'Jeté Laurence',2007,NULL),(5505150,'Jason Marsh',NULL,NULL),(5505260,'Stefano Lima',NULL,NULL),(5505335,'Aaron Grobler',NULL,NULL),(5505737,'Jill Darnell',NULL,NULL),(5505889,'Flavio Marchetti',NULL,NULL),(5506211,'Gabriel Martins',NULL,NULL),(5506401,'Jasmin Savoy Brown',1994,NULL),(5506455,'Sophie Stockinger',NULL,NULL),(5506858,'Andi Matichak',1994,NULL),(5507490,'Aleksander Bach',1980,NULL),(5507967,'Sophie Melville',NULL,NULL),(5508647,'Kôichirô Fukushima',NULL,NULL),(5509170,'Mathilde Auneveux',NULL,NULL),(5509690,'Laura Moriarty',NULL,NULL),(5510087,'Alfie Hepper',NULL,NULL),(5512076,'Elegant Too',NULL,NULL),(5512177,'David Errigo Jr.',NULL,NULL),(5514372,'Paris Berelc',1998,NULL),(5516767,'Saela Davis',NULL,NULL),(5517798,'Marta Blanc',NULL,NULL),(5518972,'RJ Cyler',1995,NULL),(5519350,'Conner Chapman',1998,NULL),(5520750,'Frederick Schmidt',NULL,NULL),(5522886,'Ryan Enever',NULL,NULL),(5524273,'Paul Hamy',1982,NULL),(5527440,'Martin Gärdemalm',1988,NULL),(5527841,'Joel Kim Booster',1988,NULL),(5527923,'Jens Peder Hertzberg',NULL,NULL),(5528353,'Jarand Herdal',NULL,NULL),(5529735,'Tenzing Norgay Trainor',NULL,NULL),(5529799,'Laura Wade',1977,NULL),(5530691,'Putu Dinda Pratika',NULL,NULL),(5530700,'Ni Made Megahadi Pratiwi',NULL,NULL),(5530711,'Balinese Tari Legong Dancers',NULL,NULL),(5530772,'Puti Sri Candra Dewi',NULL,NULL),(5531197,'Christian Cardoner',NULL,NULL),(5531398,'Agata Trzebuchowska',1992,NULL),(5532249,'Romeu Runa',1978,NULL),(5533145,'Carolyn Craddock',NULL,NULL),(5533999,'Zhengyu Lu',1983,NULL),(5534861,'Sebastian Anton',1983,NULL),(5537917,'Noriaki Sugihara',NULL,NULL),(5540383,'Hiu-Yan Choi',NULL,NULL),(5542022,'Claus Falkenberg',NULL,NULL),(5542761,'Rahart Adams',1996,NULL),(5542960,'Ethan Cohen',NULL,NULL),(5543184,'Aaron Lieber',NULL,NULL),(5543711,'Michaela Melian',NULL,NULL),(5548150,'Henrik Johansson',NULL,NULL),(5552644,'Jan Kovác',NULL,NULL),(5553586,'David Pridemore',NULL,NULL),(5553989,'Courtney McCullough',NULL,NULL),(5554560,'Antony Mitchell',NULL,NULL),(5555747,'Callie Hernandez',NULL,NULL),(5557134,'David E. Lewis',1915,1981),(5557875,'Steven McKinnon',NULL,NULL),(5557932,'Hannah Emily Anderson',1989,NULL),(5558187,'Maleah Nipay-Padilla',NULL,NULL),(5558225,'Jonathan Bronfman',NULL,NULL),(5563435,'Sophie-Marie Larrouy',NULL,NULL),(5565313,'Matt Testro',NULL,NULL),(5566166,'Aimee Molloy',NULL,NULL),(5566667,'Karelle Tremblay',NULL,NULL),(5567941,'Neville Misati',NULL,NULL),(5569442,'Forrest Goodluck',1998,NULL),(5571753,'Amanda Pitsch',NULL,NULL),(5572705,'Electric Wave Bureau',NULL,NULL),(5573623,'Ryan Boz',NULL,NULL),(5575725,'Lucas Bravo',1988,NULL),(5578607,'Gabriela Cartol',NULL,NULL),(5580066,'Theresa Bäuerlein',1980,NULL),(5580402,'Ali Herting',NULL,NULL),(5580482,'Andy Blithe',NULL,NULL),(5581192,'Kanailal Basu',NULL,NULL),(5581694,'Lisa Genova',1970,NULL),(5583572,'Carmen L. Oliveira',NULL,NULL),(5584344,'Yahya Abdul-Mateen II',1986,NULL),(5584727,'David Hand',NULL,NULL),(5584750,'Sadie Sink',2002,NULL),(5584891,'Cris Lyra',NULL,NULL),(5585238,'Ankur Rungta',NULL,NULL),(5587368,'Mok-won Lee',NULL,NULL),(5587369,'Yoo Yeong-ah',NULL,NULL),(5589118,'Boonee',NULL,NULL),(5589319,'Johnny Ochoa',NULL,NULL),(5589598,'Daniël Brak',NULL,NULL),(5589690,'Madison Iseman',1997,NULL),(5590177,'Jamie M. Dagg',NULL,NULL),(5590265,'Lisa Bos',NULL,NULL),(5590588,'Francesca Reale',NULL,NULL),(5591021,'Kim van Noord',NULL,NULL),(5591592,'Anna Burnett',NULL,NULL),(5593519,'Hristos Giannakopoulos',NULL,NULL),(5594209,'Andrew Jacobs',1993,NULL),(5598573,'Kit Connor',2004,NULL),(5598987,'André Poyart',NULL,NULL),(5599654,'Zak Olkewicz',1983,NULL),(5601908,'Son Jong-hak',1972,NULL),(5602167,'Imogene Wolodarsky',NULL,NULL),(5602169,'Ashley Aufderheide',2004,NULL),(5603176,'Mackenzie Fearnley',NULL,NULL),(5605482,'Nan Wu',NULL,NULL),(5605786,'Sidney Fullmer',2000,NULL),(5606744,'Brian Kennedy',NULL,NULL),(5606752,'Marjorie Schlossman',NULL,NULL),(5606935,'Merrill Joan Gerber',NULL,NULL),(5607294,'Katherine Harper',NULL,NULL),(5607486,'Brynne Norquist',NULL,NULL),(5610426,'Steve Moore',1949,NULL),(5611121,'Millie Bobby Brown',2004,NULL),(5611803,'Gema Calero',NULL,NULL),(5614184,'Erick Del Aguila',NULL,NULL),(5615953,'Øyvind Larsen Runestad',1992,NULL),(5616316,'Vince Knight',NULL,NULL),(5617993,'Kexuan Zhang',NULL,NULL),(5618577,'Brooks Ryan',NULL,NULL),(5619620,'X Mayo',1987,NULL),(5619780,'Adam Berry',NULL,NULL),(5620088,'Maxence Tual',NULL,NULL),(5620173,'Suzu Hirose',1998,NULL),(5620591,'Bill Kennedy',NULL,NULL),(5621490,'Hans Richter',NULL,NULL),(5621585,'Jisca Kalvanda',1994,NULL),(5621932,'Sigrid Helleday',NULL,NULL),(5622292,'Joni Francéen',NULL,NULL),(5622611,'Jana Plecas',NULL,NULL),(5623843,'Mário Magalhães',NULL,NULL),(5623883,'Phillipa Soo',1990,NULL),(5624924,'Woo-Kyung Jung',NULL,NULL),(5625184,'Amalia Holm',1995,NULL),(5625871,'Zsófia Psotta',1997,NULL),(5626215,'Will Akana',1992,NULL),(5628950,'Nami Melumad',NULL,NULL),(5630237,'Daisuke Nakazama',NULL,NULL),(5631118,'Jesús Castro',1993,NULL),(5631325,'Colin Wilson',NULL,NULL),(5632119,'Maryne Cayon',NULL,NULL),(5632466,'Utpaal Acharya',NULL,NULL),(5632589,'João Harrington Sena',NULL,NULL),(5632803,'Catherine Jack',NULL,NULL),(5634068,'Alissa Torvinen',NULL,NULL),(5634768,'Elizabeth Lail',1992,NULL),(5635259,'Dick Dekker',NULL,NULL),(5637080,'Maria Gracia Turgeon',NULL,NULL),(5637188,'Neil Hayes',NULL,NULL),(5637553,'Laura Harrier',NULL,NULL),(5638280,'Morton M. Lewis',1917,2006),(5638960,'Valerie Pachner',1987,NULL),(5640132,'Summer H. Howell',NULL,NULL),(5641396,'Paul Willetts',NULL,NULL),(5642271,'Michael Waldron',NULL,NULL),(5642951,'S.K. Dale',NULL,NULL),(5643170,'Stephan Talty',NULL,NULL),(5644820,'Anne-Laure Labadie',NULL,NULL),(5645519,'Anthony Gonzalez',2004,NULL),(5645796,'Jason Matthews',1951,2021),(5647513,'Cathal Maguire',NULL,NULL),(5647518,'Peter Kelly',NULL,NULL),(5648322,'Lars Berge',NULL,NULL),(5648690,'The Witches',NULL,NULL),(5649091,'Shaun Thomas',1997,NULL),(5650752,'Jongsoo Kim',NULL,NULL),(5651050,'Morli Patel',NULL,NULL),(5651291,'Melanie Straub',NULL,NULL),(5651469,'Luis Scott',NULL,NULL),(5651981,'Kenneth Huang',NULL,NULL),(5652167,'Kenneisha Thompson',NULL,NULL),(5653115,'Andrew Duncan',NULL,NULL),(5654463,'Ashok Selvan',1989,NULL),(5654942,'Gage Lansky',NULL,NULL),(5654965,'Namit Shah',NULL,NULL),(5656572,'Charles Graeber',NULL,NULL),(5657152,'Ami Tomite',1994,NULL),(5657522,'Mikki Daughtry',NULL,NULL),(5657902,'Antoine Mikeo',NULL,NULL),(5658722,'Jessica Pressler',NULL,NULL),(5659346,'Lily Pearl',NULL,NULL),(5659625,'Will Byles',NULL,NULL),(5662437,'Tian Wang',NULL,NULL),(5662879,'Tye Whipple',NULL,NULL),(5663444,'Artyom Efimov',NULL,NULL),(5663699,'Céline Devaux',1987,NULL),(5664243,'Kari Redmond',NULL,NULL),(5664508,'Sarah Beattie',NULL,NULL),(5664570,'Flavien Berger',NULL,NULL),(5665571,'Ai Kakuma',NULL,NULL),(5665988,'Miles Barstead',NULL,NULL),(5666501,'Justin Garak',NULL,NULL),(5668015,'Nida Manzoor',NULL,NULL),(5668454,'Maurílio Martins',NULL,NULL),(5668548,'Chloe Coleman',2008,NULL),(5668997,'André Novais Oliveira',NULL,NULL),(5669164,'Gustav Gerdener',NULL,NULL),(5669843,'Grant Schumacher',NULL,NULL),(5670040,'Jozef van Wissem',NULL,NULL),(5670423,'Sqürl',NULL,NULL),(5670483,'Paul Decauville',NULL,NULL),(5671504,'Fedor Goritzki',NULL,NULL),(5671538,'Thiago Macêdo Correia',NULL,NULL),(5671708,'Kim Caramele',NULL,NULL),(5672426,'Rosalie Ham',NULL,NULL),(5674565,'Léa Mysius',1989,NULL),(5674732,'Alex Thorleifson',NULL,NULL),(5675066,'Lee Jun-Ho',1990,NULL),(5679689,'Xin Shan',1989,NULL),(5681967,'Florence Lee',1864,1933),(5682519,'Sinoia Caves',NULL,NULL),(5683923,'Ravi Kashyap',NULL,NULL),(5684048,'Mikhail Tkachenko',1980,NULL),(5685205,'Edward Holcroft',NULL,NULL),(5685676,'Mirabai Pease',NULL,NULL),(5690823,'John Mitchell',NULL,NULL),(5692704,'Sam Aotaki',1994,NULL),(5693918,'Daiki Yamashita',1989,NULL),(5695570,'Keith Lucas',NULL,NULL),(5696074,'Eveline Hagenbeek',NULL,NULL),(5696714,'Rian Cahill',NULL,NULL),(5698677,'Lincoln Péricles',NULL,NULL),(5699674,'Lizzie Nastro',NULL,NULL),(5701256,'Charlie Berkeley',NULL,NULL),(5705004,'Diana Sakalauskaité',NULL,NULL),(5705627,'Rodrigo Duarte Clark',NULL,NULL),(5705818,'Kaya Jade Aguirre',NULL,NULL),(5706089,'Will Ropp',NULL,NULL),(5708540,'Desmond Eastwood',NULL,NULL),(5709125,'Ritu Arya',1988,NULL),(5709904,'Charlie Karumi',NULL,NULL),(5710414,'Thomas Cocquerel',NULL,NULL),(5710807,'Johnny Jewel',NULL,NULL),(5712002,'Roy Westad',NULL,NULL),(5712133,'Teresa Ting',NULL,NULL),(5715332,'Michael Heimler',NULL,NULL),(5715866,'Peter Rida Michail',1977,NULL),(5715934,'Rafael Mendoza',NULL,NULL),(5716066,'Àngel Messeguer',NULL,NULL),(5716139,'Júlia Rabello',1981,NULL),(5717494,'Ben Weatherill',NULL,NULL),(5720886,'Lamar Legend',NULL,NULL),(5721811,'Cassandra Van Dongen',NULL,NULL),(5722382,'Cary Murnion',NULL,NULL),(5722984,'Edward Snowden',1983,NULL),(5724719,'Achyuth Kumar',1966,NULL),(5728000,'Richard C. Morais',NULL,NULL),(5730649,'Lewis Pullman',1993,NULL),(5732579,'Jonathan Milott',NULL,NULL),(5734020,'Sook Yhun',NULL,NULL),(5734854,'Sara Lorimar',NULL,NULL),(5735148,'Liv Hewson',1995,NULL),(5738769,'Chris Davey',NULL,NULL),(5739084,'The Cryptkicker Five',NULL,NULL),(5739085,'Art on Fire',NULL,NULL),(5739770,'Suza Singh',NULL,NULL),(5739774,'Evane Jukes',NULL,NULL),(5739775,'Asha Annais',NULL,NULL),(5740235,'Daniel Hart',NULL,NULL),(5742365,'Catherine Hyein Kim',NULL,NULL),(5744125,'Andrew Hussie',NULL,NULL),(5744805,'Steve Ponce',NULL,NULL),(5747280,'Tilikum',1981,2017),(5747281,'Samantha Berg',NULL,NULL),(5747282,'Dean Gomersall',NULL,NULL),(5747284,'Dave Duffus',NULL,NULL),(5747900,'Jérémie Guez',NULL,NULL),(5750517,'Adrian Tomine',NULL,NULL),(5752523,'Melanie Stone',NULL,NULL),(5754425,'Cory Michael Smith',1986,NULL),(5756725,'Haley Alea Erickson',NULL,NULL),(5761796,'Marco Antonio Alvarado Garazatua',NULL,NULL),(5761798,'Abraham Siles Vallejos',NULL,NULL),(5761799,'Augusto Casafranca',NULL,NULL),(5761803,'Manuel Siles',NULL,NULL),(5762091,'Valdimar Jóhannsson',1978,NULL),(5762924,'Grace Hahn',NULL,NULL),(5765981,'Masa Lizdek',NULL,NULL),(5766106,'Kelly Lamor Wilson',NULL,NULL),(5769791,'Jean Alcócer',NULL,NULL),(5769792,'Paulina Bazán',NULL,NULL),(5771189,'Arryn Zech',NULL,NULL),(5773231,'Marie Pavlenko',NULL,NULL),(5775621,'Nikolai Witschl',NULL,NULL),(5777565,'Agathe Rousselle',1988,NULL),(5778020,'Pauline Guéna',NULL,NULL),(5781348,'Dandara de Morais',1990,NULL),(5783517,'Kenny Wong',NULL,NULL),(5783881,'Tali Pitakhelauri',NULL,NULL),(5787342,'Rickson Tevez',NULL,NULL),(5787486,'Gabriel Weinstein',NULL,NULL),(5789377,'Zack Gottsagen',1985,NULL),(5792317,'Shane McLean',NULL,NULL),(5795768,'Kyril Bonfiglioli',1928,1985),(5806267,'Daniel Hammond',NULL,NULL),(5808533,'Ryuichiro Inagaki',NULL,NULL),(5811897,'Steph Copeland',NULL,NULL),(5813285,'Barbara Dunkelman',1989,NULL),(5813286,'Kara Eberle',NULL,NULL),(5817249,'Vicky Kaushal',1988,NULL),(5820154,'Ilya Naishuller',1983,NULL),(5822258,'Zino Ventura',NULL,NULL),(5822515,'Mathew Delorenzi-Waters',NULL,NULL),(5823636,'Juan Camilo Román Estrada',NULL,NULL),(5823663,'Mahuia Bridgman-Cooper',NULL,NULL),(5824400,'Sophie Cookson',1990,NULL),(5825804,'Tyler Aser',NULL,NULL),(5826250,'Karen D. Arandjelovich',NULL,NULL),(5826963,'Hugo Dessioux',NULL,NULL),(5827798,'Rok Prasnikar',NULL,NULL),(5827806,'Antonio Gramentieri',NULL,NULL),(5831457,'Feyyaz Yigit',1988,NULL),(5831542,'Barkhad Abdi',1985,NULL),(5831543,'Barkhad Abdirahman',1994,NULL),(5835038,'Elias Schwarz',NULL,NULL),(5835039,'Lukas Schwarz',NULL,NULL),(5836719,'Ana Rita Gurgel',NULL,NULL),(5836720,'Caio Almeida',NULL,NULL),(5837900,'Marie Schlingmann',NULL,NULL),(5838435,'Lucía Pollán',NULL,NULL),(5840079,'Cherilyn MacNeil',NULL,NULL),(5840080,'The Major Minors',NULL,NULL),(5849491,'Maria Cuevas Barba',NULL,NULL),(5849613,'Lydia Genner',NULL,NULL),(5850281,'Allan Miller',NULL,NULL),(5851871,'Miss Lawrence',1982,NULL),(5851947,'Chanel Flowers',NULL,NULL),(5852657,'Rosanne Rubino',NULL,NULL),(5853559,'Imogen Archer',NULL,NULL),(5853561,'Sam Althuizen',NULL,NULL),(5854138,'Jed Tune',NULL,NULL),(5854804,'Ugo Broussot',NULL,NULL),(5855663,'Andrew Asper',NULL,NULL),(5856571,'Gautam Ved',NULL,NULL),(5857065,'Emily Precious',NULL,NULL),(5857152,'Jamie Demetriou',1987,NULL),(5858664,'Kevin Kwan',NULL,NULL),(5860325,'Lynsey Taylor Mackay',NULL,NULL),(5860326,'Dougie McConnell',NULL,NULL),(5860537,'Lucius',NULL,NULL),(5861076,'Gabrielle Marion-Rivard',NULL,NULL),(5861077,'Alexandre Landry',NULL,NULL),(5866140,'Michael Wood',NULL,NULL),(5869153,'Mira Barkhammar',NULL,NULL),(5869154,'Mira Grosin',NULL,NULL),(5869155,'Liv LeMoyne',NULL,NULL),(5873731,'Pablo Clements',NULL,NULL),(5873732,'James Griffith',NULL,NULL),(5874027,'Santiago A. Zapata',NULL,NULL),(5875349,'Johanna Knudsen Rostad',NULL,NULL),(5875357,'Frode Johannessen',NULL,NULL),(5876959,'Jan Miller Corran',NULL,NULL),(5878393,'Ani Alva Helfer',NULL,NULL),(5878394,'Roberto Valdivieso',NULL,NULL),(5879255,'Aileen Henry',NULL,NULL),(5879880,'Alex MacNicoll',NULL,NULL),(5884374,'Judith Pons',NULL,NULL),(5884393,'Juli Carrera',NULL,NULL),(5884394,'Maria Inziarte',NULL,NULL),(5884395,'Òscar Gràcia',NULL,NULL),(5885049,'Tracey Scott Wilson',NULL,NULL),(5886257,'Muneyuki Nagatomo',NULL,NULL),(5886258,'Masahide Iizuka',NULL,NULL),(5888481,'Neel Sethi',2003,NULL),(5889877,'Connor Corum',NULL,NULL),(5890504,'Gregory Garcia',NULL,NULL),(5893199,'Leah Popple',NULL,NULL),(5895463,'Tatsuma Minamikawa',NULL,NULL),(5896355,'Anya Taylor-Joy',1996,NULL),(5897057,'Jaeden Martell',2003,NULL),(5897824,'Noémie Devide',NULL,NULL),(5901828,'Jang Hyuk-jin',NULL,NULL),(5902069,'Alex Shinohara',NULL,NULL),(5903887,'Luke Anthony Pensabene',NULL,NULL),(5905770,'Martin Sofiedal',NULL,NULL),(5908010,'Mica Levi',NULL,NULL),(5910626,'Phil Falcone',NULL,NULL),(5911628,'Daniel Needs',NULL,NULL),(5915331,'Tabitha Orr',NULL,NULL),(5917366,'Johan Liljemark',NULL,NULL),(5917371,'Paola Hölmer',NULL,NULL),(5917526,'Lijian Xie',NULL,NULL),(5920943,'Cemre Ebuzziya',NULL,NULL),(5920962,'Levi Miller',2002,NULL),(5921025,'Bill Hinzman',NULL,NULL),(5923859,'Ryohei Suzuki',NULL,NULL),(5924413,'Erick Israel Consuelo',1993,NULL),(5926134,'Sonia Suhl',NULL,NULL),(5926669,'Michael Sanducci',NULL,NULL),(5926708,'Samuel D. Hunter',1981,NULL),(5927607,'Ted Osborne',1900,1968),(5927608,'Al Taliaferro',1905,1969),(5928339,'David Livingstone',NULL,NULL),(5931656,'Suresh Kanchusthambham',NULL,NULL),(5931657,'Manjunath Chikkanna',NULL,NULL),(5931658,'Manoj Jaganmurthy',NULL,NULL),(5931659,'Sowmya Jaganmurthy',NULL,NULL),(5932902,'Kathy Logan',NULL,NULL),(5933962,'Dietrich Teschner',NULL,NULL),(5934545,'Melanie Friedrich',NULL,NULL),(5935170,'Mr. Joseph Young',NULL,NULL),(5938033,'Toydrum',NULL,NULL),(5939164,'Zazie Beetz',1991,NULL),(5940977,'François Tremblay',NULL,NULL),(5941117,'Bob Bradley',NULL,NULL),(5941801,'William Robinson',NULL,NULL),(5943532,'Alberto Amieva',NULL,NULL),(5945690,'Qui Nguyen',NULL,NULL),(5946818,'Josh Wiggins',1998,NULL),(5947964,'Ella-Rae Smith',1998,NULL),(5949208,'Mohammad Jawad',NULL,NULL),(5949270,'Taylor Bateman',NULL,NULL),(5951166,'Cady Perez',NULL,NULL),(5954280,'Nicholas Galitzine',1994,NULL),(5956399,'Michelle Hendley',1991,NULL),(5956547,'Sheila Atim',1991,NULL),(5958525,'Flora Greeson',NULL,NULL),(5959612,'Sarah Jo Pender',1979,NULL),(5959917,'Carylanna Taylor',NULL,NULL),(5959919,'Jon Irabagon',NULL,NULL),(5961159,'Atika Chohan',NULL,NULL),(5966976,'Jay Carson',NULL,NULL),(5970913,'Wolfgang Beltracchi',1951,NULL),(5970914,'Helene Beltracchi',1958,NULL),(5971122,'Jay Brown',NULL,NULL),(5971246,'Rowan Russell',NULL,NULL),(5972126,'Microsoft Sam',NULL,NULL),(5974032,'Michèle Oshima',NULL,NULL),(5978223,'Candy Says',NULL,NULL),(5979724,'Guillermo Calderón',1971,NULL),(5980345,'Aitana Giralt',NULL,NULL),(5983049,'Hannah Rae',1997,NULL),(5983319,'James Ferraro',1986,NULL),(5984688,'Ellen Furman',NULL,NULL),(5988570,'Chiara Aurelia',2002,NULL),(5990921,'Elissa Matsueda',NULL,NULL),(5992157,'Yûma Takahashi',NULL,NULL),(5994557,'Gábor Czap',NULL,NULL),(5996313,'Rebecca Mullins',NULL,NULL),(5997114,'Noritomo Isogai',NULL,NULL),(5999355,'Jonah Hauer-King',1995,NULL),(5999730,'Kim Do-Young',NULL,NULL),(6004385,'Eden Villavicencio',NULL,NULL),(6004682,'Raphael Alejandro',2007,NULL),(6004732,'Khoi Dao',1999,NULL),(6005430,'David Kemp',NULL,NULL),(6005771,'Jen Isaacson',NULL,NULL),(6006955,'Hamish Phillips',NULL,NULL),(6008996,'Bruce Edward',NULL,NULL),(6010875,'Celeste Arias',NULL,NULL),(6011302,'Debbie Williams',NULL,NULL),(6012399,'Armaan Ralhan',1990,NULL),(6012564,'Moisés Sepúlveda',NULL,NULL),(6013063,'Vera Weit',NULL,NULL),(6014325,'Atto',NULL,NULL),(6015235,'Thomas Doherty',1995,NULL),(6015793,'Jordan Barber',NULL,NULL),(6016499,'Justin Olson',NULL,NULL),(6016511,'Finn Wolfhard',2002,NULL),(6017870,'Myriam Laloum',NULL,NULL),(6017944,'Lucy Armitage',NULL,NULL),(6018249,'Rodrigue Sleiman',NULL,NULL),(6018565,'Chris Bordeaux',NULL,NULL),(6019266,'Edward Aitken',NULL,NULL),(6020480,'Tamás Apor Méder',NULL,NULL),(6021232,'Brian Patrick Butler',NULL,NULL),(6023730,'Del Herbert-Jane',NULL,NULL),(6027351,'Ottomar Anschütz',1846,1907),(6027977,'David Ebert',NULL,NULL),(6029853,'Sofia Mali',NULL,NULL),(6031291,'Polly Stenham',NULL,NULL),(6032360,'Alexa Young',NULL,NULL),(6033035,'Christopher Wehner',NULL,NULL),(6033413,'Astrea Campbell-Cobb',NULL,NULL),(6033482,'Nate Pringle',NULL,NULL),(6035700,'Olivia Milch',NULL,NULL),(6037256,'Aaron Hilmer',1999,NULL),(6037589,'John Bisignano',NULL,NULL),(6038328,'Isabella Kai',2006,NULL),(6041096,'Tim Zimmermann',NULL,NULL),(6042133,'Fabien Polack',NULL,NULL),(6044084,'David Rothbaum',NULL,NULL),(6044874,'Hadley Robinson',1995,NULL),(6046765,'Sandra Vo-Anh',NULL,NULL),(6047793,'Diego Eslava',NULL,NULL),(6049037,'Clive Alonzo',NULL,NULL),(6049050,'Krystal Bracy',NULL,NULL),(6049147,'Missi Hale',NULL,NULL),(6049148,'Marcus Griffin',NULL,NULL),(6051155,'Leslie Grace',1995,NULL),(6054966,'Jagdeep Sidhu',1985,NULL),(6056595,'André Aciman',NULL,NULL),(6057203,'Lynn Reed',NULL,NULL),(6057204,'Yvette Marie Brown',NULL,NULL),(6057785,'Milo Parker',2002,NULL),(6058067,'David McAlister',NULL,NULL),(6064708,'Meghan Rienks',1993,NULL),(6066050,'Josie Rourke',NULL,NULL),(6068870,'Travis Johnson',NULL,NULL),(6071354,'Daníel Gylfason',NULL,NULL),(6073824,'Prashanth Neel',1980,NULL),(6073955,'Florence Pugh',1996,NULL),(6076218,'Mikhail Zhernevskiy',NULL,NULL),(6076229,'Alana Haim',1991,NULL),(6076231,'Este Haim',NULL,NULL),(6076271,'Dara Taylor',1987,NULL),(6077056,'Morfydd Clark',1989,NULL),(6077587,'Anton von Lucke',1989,NULL),(6077951,'Tom Glynn-Carney',1995,NULL),(6079248,'Choi Woo-sik',1990,NULL),(6079369,'Nicky Champa',1995,NULL),(6079583,'Wen Ling',NULL,NULL),(6081322,'Darby Camp',2007,NULL),(6082614,'Henrietta Ashworth',NULL,NULL),(6082617,'Consuelo Carreño',NULL,NULL),(6090597,'Melanie Joosten',NULL,NULL),(6094820,'Madeleine Stack',NULL,NULL),(6095067,'Alexis Dulguerian',NULL,NULL),(6096118,'Sophia Lillis',2002,NULL),(6097337,'Chris Duncan',NULL,NULL),(6097338,'Mark Heath',NULL,NULL),(6098952,'Lars Henriks',1991,NULL),(6099602,'Jason Drucker',NULL,NULL),(6100047,'Vikash Bhai',NULL,NULL),(6100536,'Michael Philippou',1992,NULL),(6101139,'Roly Witherow',NULL,NULL),(6103119,'Joël Mellenberg',NULL,NULL),(6103223,'Daniel García',NULL,NULL),(6105319,'Young Ah Yoo',NULL,NULL),(6108575,'Hannah Vandenbygaart',NULL,NULL),(6108596,'Sanchit Balhara',NULL,NULL),(6113423,'Matthew Goodhue',NULL,NULL),(6114277,'Andrey Kirushenko',NULL,NULL),(6115201,'Trevor Doherty',NULL,NULL),(6119056,'Tina Tamashiro',1997,NULL),(6119137,'Ingela Berger',NULL,NULL),(6119199,'Kaoru Adachi',NULL,NULL),(6120325,'Pavleen Gujral',NULL,NULL),(6121586,'Leonardo Mouramateus',NULL,NULL),(6123691,'Geeta Bajaj',NULL,NULL),(6124994,'Park Seo-joon',1988,NULL),(6125416,'Sarah Swire',NULL,NULL),(6127780,'Molly Evensen',NULL,NULL),(6128314,'Michael O. Lewis',NULL,NULL),(6129753,'Max Goldberg',NULL,NULL),(6129779,'Sunny Suljic',2005,NULL),(6130629,'Prasad Shetty',NULL,NULL),(6130755,'Víctor José Pintor',2001,NULL),(6132638,'McCaul Lombardi',1991,NULL),(6133203,'Er Zuo',NULL,NULL),(6135541,'Gabrielle Vincent',1928,2000),(6135945,'Cara AnnMarie',1979,NULL),(6136327,'Dana Guerin',NULL,NULL),(6139439,'Sofia Garretón',NULL,NULL),(6139440,'Natasha Garretón',NULL,NULL),(6139441,'Gill Pringle',NULL,NULL),(6144403,'Ari Katcher',NULL,NULL),(6147127,'Simone Peigniet',NULL,NULL),(6150131,'Andrew Lanham',NULL,NULL),(6152236,'Nanoka Hara',2003,NULL),(6152442,'J.C. Lee',NULL,NULL),(6154971,'Soma Chhaya',1998,NULL),(6155343,'Saloni Batra',NULL,NULL),(6160535,'Fisayo Akinade',1987,NULL),(6161516,'Camila Mendes',1994,NULL),(6162831,'Louis Ashbourne Serkis',NULL,NULL),(6163206,'Camille Claudel',1864,1943),(6165060,'Ilia Isorelýs Paulino',NULL,NULL),(6167249,'Teruhisa Yamamoto',NULL,NULL),(6167573,'Jonathan Sigsworth',NULL,NULL),(6167714,'Andrew Coles',NULL,NULL),(6170115,'Jules-Eugène Legris',1862,1926),(6170153,'Nadia Golon',NULL,NULL),(6170168,'Harris Dickinson',1996,NULL),(6171620,'Minnie Scarlet',NULL,NULL),(6172240,'Sarah Voigt',NULL,NULL),(6174515,'Tae-hwa Eom',NULL,NULL),(6177272,'Gianni Hoepli',NULL,NULL),(6177273,'Lav Kamenarovic',NULL,NULL),(6177274,'Gino Eprisi',NULL,NULL),(6177275,'Carlo Bissi',NULL,NULL),(6177276,'Vincenzo Gatti',NULL,NULL),(6177277,'Iberia Bollain',NULL,NULL),(6177278,'Gina Romanelli',NULL,NULL),(6179030,'Sage Correa',2007,NULL),(6180355,'Henry Allen',NULL,NULL),(6180835,'Gaurav Verma',NULL,NULL),(6183410,'Micheál Neeson',1995,NULL),(6185683,'Emily Rudd',1993,NULL),(6186324,'Jane Hawking',1944,NULL),(6186725,'Bogey',NULL,NULL),(6187995,'Gesaffelstein',NULL,NULL),(6191250,'Ekaterina Samsonov',2003,NULL),(6195774,'Dominique Fishback',1991,NULL),(6197687,'Tim Culley',NULL,NULL),(6198803,'Thomas Pa\'a Sibbett',NULL,NULL),(6199386,'Elisha Karmitz',NULL,NULL),(6200158,'Chris Bremner',NULL,NULL),(6201749,'Shelby Rebecca Wong',NULL,NULL),(6203017,'Fred Lima',NULL,NULL),(6203018,'Thomas Aquino',NULL,NULL),(6205098,'Ava Morse',NULL,NULL),(6209017,'Sumaiya Kaveh',NULL,NULL),(6211008,'Elisha Ali',NULL,NULL),(6212335,'Kislay Kislay',NULL,NULL),(6214568,'Sam Ewing',NULL,NULL),(6215655,'Tani Basu',NULL,NULL),(6216593,'Rose Williams',1994,NULL),(6218684,'Egor Olesov',NULL,NULL),(6220981,'Michael Paleodimos',NULL,NULL),(6221348,'David Alexander Corno',NULL,NULL),(6222422,'Junichi Matsumoto',NULL,NULL),(6222423,'Takeshi Matsubara',NULL,NULL),(6223233,'Karen Rinaldi',NULL,NULL),(6224331,'Jocelyn Clarke',NULL,NULL),(6224535,'Leopold Nilsson',NULL,NULL),(6224540,'Jonas Ernhill',NULL,NULL),(6225541,'Noorin Gulamgaus',1997,NULL),(6226190,'Paul Elam',1957,NULL),(6227084,'Jan Naszewski',NULL,NULL),(6230258,'Donovan Leitch Jr.',1967,NULL),(6231136,'Samantha Robinson',1991,NULL),(6232940,'James Roundell',NULL,NULL),(6233153,'B. Dolan',NULL,NULL),(6236783,'Owen Vaccaro',2005,NULL),(6236879,'Zackary Arthur',2006,NULL),(6237312,'Caroline Fox',NULL,NULL),(6237346,'Judah Lewis',2001,NULL),(6237589,'Gringe',NULL,NULL),(6240141,'Sophie Perry',NULL,NULL),(6244013,'Jack Dylan Grazer',2003,NULL),(6246343,'Francesca Romana Massaro',NULL,NULL),(6247887,'David Sandberg',NULL,NULL),(6249597,'Maxime Desprez',NULL,NULL),(6251401,'Mallory James Mahoney',2005,NULL),(6257330,'Tim Riley',NULL,NULL),(6258823,'Felipe Terra',NULL,NULL),(6259860,'Sofia Carson',1993,NULL),(6260398,'Jen Silverman',NULL,NULL),(6262759,'Shawn Miller',NULL,NULL),(6263504,'Hannah Parrott',NULL,NULL),(6264728,'Ciara Riley Wilson',2001,NULL),(6266674,'Kiera Allen',1997,NULL),(6267963,'Taylor Ortega',1989,NULL),(6269125,'Alex Aiono',1996,NULL),(6269336,'Thomas Gulamerian',NULL,NULL),(6269337,'Brian David',NULL,NULL),(6270594,'Sigurður Óli Pálmarsson',NULL,NULL),(6271481,'Tola Newbery',NULL,NULL),(6272600,'Maria Haras',NULL,NULL),(6273024,'Louis Partridge',2003,NULL),(6274516,'Erin Westerman',NULL,NULL),(6276553,'Afiya Bennett',NULL,NULL),(6276713,'Allegra Masters',NULL,NULL),(6276982,'Niceole R. Levy',NULL,NULL),(6277267,'Bhumi Pednekar',1989,NULL),(6280112,'Lex Scott Davis',1991,NULL),(6280772,'RW Smith',NULL,NULL),(6281424,'Alexis Manenti',NULL,NULL),(6283951,'Olivia Hamilton',NULL,NULL),(6286994,'David Grimm',NULL,NULL),(6287571,'Chris Kelly',NULL,NULL),(6288598,'Aruna Bhatia',NULL,NULL),(6290393,'Jeanne Ryan',NULL,NULL),(6292689,'Andrea Gordon',NULL,NULL),(6293442,'Samuel Potts',NULL,NULL),(6294201,'Durgesh Kumar',1984,NULL),(6294202,'Pradeep Nagar',1989,NULL),(6294482,'Rhys Frake-Waterfield',NULL,NULL),(6295217,'Bruce Davis',1963,NULL),(6298111,'Sandeep Goyat',NULL,NULL),(6299248,'Bowen Yang',1990,NULL),(6299693,'Drum & Lace',NULL,NULL),(6307801,'Michael Rubbestad',NULL,NULL),(6311728,'Graham Verchere',NULL,NULL),(6311892,'Sarah Gubbins',NULL,NULL),(6311995,'Gulab Singh Tanwar',NULL,NULL),(6312506,'Zoe Renee',1997,NULL),(6313373,'Artur Veeber',NULL,NULL),(6313374,'Tatjana Mülbeier',NULL,NULL),(6313378,'Dominique Dauwe',NULL,NULL),(6320498,'Silvero Pereira',NULL,NULL),(6322451,'P. Ramesh',NULL,NULL),(6324042,'Adam Dirks',NULL,NULL),(6324745,'John Reynolds',1991,NULL),(6326357,'Jon Michael Simpson',NULL,NULL),(6326494,'Michael O\'Shea',NULL,NULL),(6327552,'Shivani Raghuvanshi',1991,NULL),(6327727,'Nijirô Murakami',1997,NULL),(6327775,'Lina Kurttila',NULL,NULL),(6327776,'Peggy Sands',NULL,NULL),(6327777,'M. Wågensjö',NULL,NULL),(6327778,'Alle Eriksson',NULL,NULL),(6328029,'Piyush Gupta',NULL,NULL),(6328030,'Nikhil Mehrotra',NULL,NULL),(6328031,'Shreyas Jain',NULL,NULL),(6328300,'Winston Duke',1986,NULL),(6330013,'Ina Wood',NULL,NULL),(6331196,'Padraig Singal',NULL,NULL),(6331197,'Ross Hill',NULL,NULL),(6331625,'Steve Dunayer',NULL,NULL),(6331906,'Ayumu Nakajima',1988,NULL),(6335301,'Omar Guzmán',NULL,NULL),(6338857,'Robert Mirels',NULL,NULL),(6341515,'Hari Nef',1992,NULL),(6342949,'Drew Monson',NULL,NULL),(6343559,'Nate Stevenson',NULL,NULL),(6345366,'Grayson Thorne Kilpatrick',2004,NULL),(6348036,'Ron Wilcox',NULL,NULL),(6348823,'Noelle Benvenuti',NULL,NULL),(6354997,'Georgia Hirst',1994,NULL),(6356341,'Aiste Dirziute',NULL,NULL),(6359527,'Ari\'el Stachel',1991,NULL),(6365846,'David Kushner',NULL,NULL),(6366399,'Vikas Shukla',1986,NULL),(6368720,'Joey Morgan',1993,2021),(6369081,'Kimberly Henninger',NULL,NULL),(6369187,'Ricardo Contreras',NULL,NULL),(6370516,'Ray Robinson',NULL,NULL),(6372355,'Monika Bacardi',NULL,NULL),(6372520,'Jyoti Kapur Das',NULL,NULL),(6376179,'Project Itoh',1974,2009),(6376834,'Emily Tosta',1998,NULL),(6377764,'Midori Francis',1994,NULL),(6378889,'Michael Tuller',NULL,NULL),(6378892,'Cody Dierks',NULL,NULL),(6379380,'David A. Flood',NULL,NULL),(6382462,'Nathanaël Bergese',NULL,NULL),(6386826,'Miles Thorne',NULL,NULL),(6389731,'Amanda Yamate',NULL,NULL),(6390427,'Charlie Heaton',1994,NULL),(6390963,'Phoebe Gloeckner',NULL,NULL),(6391502,'Paula Hawkins',1972,NULL),(6394461,'Richard Boylan',NULL,NULL),(6394612,'Pham Anh Khoa',NULL,NULL),(6395789,'Michael Hampton',NULL,NULL),(6402840,'Tom Colomer',NULL,NULL),(6402841,'Josie Borrelly-Llop',NULL,NULL),(6405127,'Ivan Ayr',NULL,NULL),(6405128,'Kimsi Singh',NULL,NULL),(6406428,'Torkel Dommersnes Soldal',NULL,NULL),(6406593,'Jim Weedon',NULL,NULL),(6406825,'Elizabeth McGrath',NULL,NULL),(6414713,'Karidja Touré',1994,NULL),(6415238,'Joshua Noteboom',NULL,NULL),(6416434,'David Chabant',NULL,NULL),(6416435,'Jonathan Daniel',NULL,NULL),(6416436,'Bob Lennon',NULL,NULL),(6416437,'Maxime Phelipot',NULL,NULL),(6416438,'Redjak',NULL,NULL),(6416439,'Vayle',NULL,NULL),(6416440,'Nestadar',NULL,NULL),(6417610,'Bruce Wemple',NULL,NULL),(6419650,'Meysam Muini',NULL,NULL),(6421224,'JR Ralls',NULL,NULL),(6421226,'Anastasia Higham',NULL,NULL),(6421974,'Mark C. Adams',NULL,NULL),(6423045,'Thomas Yount',NULL,NULL),(6423183,'Carlos Kotkin',NULL,NULL),(6424616,'Charli XCX',1992,NULL),(6426666,'Matthew Derby',NULL,NULL),(6427328,'Jessica Taylor Haid',NULL,NULL),(6432607,'Bronte Carmichael',NULL,NULL),(6433012,'Ava Michelle',2002,NULL),(6436658,'Ashwiny Iyer Tiwari',1979,NULL),(6438644,'The Haxan Cloak',NULL,NULL),(6440362,'Mlle. Bodson',NULL,NULL),(6441597,'Rhys Connah',NULL,NULL),(6442992,'Victoria Pedretti',1995,NULL),(6444214,'Satender Bhardwaj',NULL,NULL),(6444995,'Christopher Nightingale',NULL,NULL),(6445791,'Sebastian Fitzner',NULL,NULL),(6446252,'Moisés Zonana',NULL,NULL),(6446613,'Selin Yeninci',1988,NULL),(6447214,'Haider I. Mohsin',1981,NULL),(6449075,'Shani Klein',1984,NULL),(6449076,'Heli Twito',NULL,NULL),(6449080,'Sehar Bhojani',NULL,NULL),(6450743,'Zach Aguilar',1998,NULL),(6451469,'Sennia Nanua',2002,NULL),(6452049,'Helen Hillman',NULL,NULL),(6455852,'Winslow M. Iwaki',NULL,NULL),(6457440,'Vinicius Garcia',NULL,NULL),(6457441,'Lu Horta',1971,NULL),(6457442,'Marco Aurélio Campos',NULL,NULL),(6458939,'Attila Vinczer',NULL,NULL),(6463103,'Cressida Bonas',1989,NULL),(6466214,'Josephine Langford',1997,NULL),(6466615,'Rami Nasr',NULL,NULL),(6467361,'Joe Murtagh',1990,NULL),(6469442,'Keenan Kampa',NULL,NULL),(6470031,'Jarrett Keisling',NULL,NULL),(6470216,'Mimi Cave',NULL,NULL),(6472360,'Satoshi Mizuno',NULL,NULL),(6475137,'Linus Andersson',NULL,NULL),(6475689,'Parker Finn',NULL,NULL),(6479944,'Gabe Martinez',NULL,NULL),(6481336,'Pradeep Joshi',NULL,NULL),(6481337,'Vira Sathidar',1958,2021),(6481960,'Ludovic Bruni',NULL,NULL),(6482412,'Lysandre Ménard',NULL,NULL),(6484560,'Friday Chamberlain',NULL,NULL),(6484968,'Lewis MacDougall',2002,NULL),(6485085,'Jason François',NULL,NULL),(6485086,'Michael Dauber',NULL,NULL),(6492240,'Nina Aranda',NULL,NULL),(6493698,'Stefaan De Winter',NULL,NULL),(6494022,'Thiana Valent',NULL,NULL),(6497646,'Edith Haagenrud-Sande',NULL,NULL),(6497779,'Glen Condie',NULL,NULL),(6500715,'Anastasiya Balyakina',1990,NULL),(6501450,'Shih-Ken Lin',NULL,NULL),(6502171,'Quentin Just',NULL,NULL),(6502355,'Natasha Rose Mills',NULL,NULL),(6506066,'Lachlan Anderson',NULL,NULL),(6506884,'Saroo Brierley',1981,NULL),(6507585,'Karnesh Ssharma',NULL,NULL),(6507706,'Camila Márdila',1988,NULL),(6507883,'Bryony Kimmings',NULL,NULL),(6511561,'Del Lowry',NULL,NULL),(6513884,'Rodney Osborne',NULL,NULL),(6513885,'Canon Buckingham',NULL,NULL),(6513890,'Stacy Krumholz',NULL,NULL),(6513892,'Austin Long',NULL,NULL),(6518269,'Maradona Dias Dos Santos',NULL,NULL),(6518675,'Cole Konis',NULL,NULL),(6523679,'Dominique Leborne',NULL,NULL),(6523680,'Matteo Leborne',NULL,NULL),(6523681,'Mailys Leborne',NULL,NULL),(6523716,'Sandra Redlaff',1987,NULL),(6525603,'John Clarence Stewart',1988,NULL),(6525901,'Henry Golding',1987,NULL),(6525945,'Lisa Collier Cool',NULL,NULL),(6526081,'Seo Younghwa',NULL,NULL),(6530002,'Kim Sung-hoon',NULL,NULL),(6531922,'Sambhaji Bhagat',NULL,NULL),(6532163,'Anton Petzold',2003,NULL),(6533699,'Brendan Hobin',NULL,NULL),(6537224,'Rohan Jagdale',NULL,NULL),(6537560,'Ena Imai',NULL,NULL),(6537765,'Dylan Parker',NULL,NULL),(6537766,'James Norton',NULL,NULL),(6538002,'Teng Cheng',NULL,NULL),(6539302,'Deborah Viegas',NULL,NULL),(6541046,'Pablo Rojo',NULL,NULL),(6541199,'Kolbeinn Arnbjörnsson',NULL,NULL),(6543415,'Jeanne Marie Laskas',1958,NULL),(6547285,'Pedro Lloyd Gardiner',NULL,NULL),(6548466,'Bryn Apprill',1996,NULL),(6550733,'Aaron R.F. Anderson',NULL,NULL),(6551426,'David Mourato',NULL,NULL),(6551427,'Cheyenne Domingues',1996,NULL),(6552202,'Brianna Hildebrand',1996,NULL),(6554923,'Kathryn Haynes',NULL,NULL),(6555302,'Rachael Deering',NULL,NULL),(6556385,'Greg Gilreath',NULL,NULL),(6556496,'Karrueche Tran',1988,NULL),(6556997,'Violett Beane',1996,NULL),(6558582,'Alexander Dynan',NULL,NULL),(6558641,'Brandon Cohen',NULL,NULL),(6560125,'Leander Nitsche',NULL,NULL),(6560386,'Ranjit Batra',NULL,NULL),(6561765,'Abraham Clinkscales',NULL,NULL),(6562625,'Mouna Hawa',1989,NULL),(6563744,'Guo Liuxing Zhong',NULL,NULL),(6563873,'Kyle Allen',1994,NULL),(6564541,'Beth Reekles',NULL,NULL),(6564737,'Joe Keery',1992,NULL),(6565274,'Christina Strain',NULL,NULL),(6565504,'Ariel Marx',NULL,NULL),(6567391,'Elijah Smith',NULL,NULL),(6567661,'Robyn Harding',NULL,NULL),(6568133,'Leona Axelsen',1989,NULL),(6569399,'Otmara Marrero',1989,NULL),(6570557,'Jessie Pinnick',NULL,NULL),(6570716,'Anju Inami',NULL,NULL),(6571089,'Keyra Smith',NULL,NULL),(6578009,'O\'Shea Jackson Jr.',1991,NULL),(6580193,'Alexis Agathocleous',NULL,NULL),(6580345,'Terrain Dandridge',NULL,NULL),(6580346,'Venice Brown',NULL,NULL),(6583483,'Patrick Thompson',NULL,NULL),(6585023,'Kristian Plummer',NULL,NULL),(6585518,'Robin Roemer',NULL,NULL),(6585697,'Moira Tracey',NULL,NULL),(6588801,'Ted Caplan',NULL,NULL),(6588867,'Anthony Ramos',1991,NULL),(6590106,'Randall Green',NULL,NULL),(6590527,'Aleks Mikic',NULL,NULL),(6590639,'Cody Fitzgerald',NULL,NULL),(6591098,'Molly Bloom',NULL,NULL),(6591968,'Amy Everson',NULL,NULL),(6592483,'Alexis & Sam',NULL,NULL),(6594362,'Nash Grier',1997,NULL),(6603079,'Bettina Barrow',NULL,NULL),(6607687,'Philip-Jaime Alcazar',NULL,NULL),(6612149,'Bobbin Ramsey',NULL,NULL),(6614229,'Jenny Han',NULL,NULL),(6616259,'Tati Gabrielle',1996,NULL),(6618222,'Lindsey Weber',NULL,NULL),(6618353,'Ricky Velez',NULL,NULL),(6620696,'Ilenia Pastorelli',1985,NULL),(6620975,'Anton Vasilev',1984,NULL),(6627231,'Julia Striegel',NULL,NULL),(6629515,'Ken Rogerson',NULL,NULL),(6630425,'Breton Vivian',NULL,NULL),(6638723,'Dougie Cash',NULL,NULL),(6639989,'Danny Ramirez',1992,NULL),(6641358,'Paulo Americano',NULL,NULL),(6643494,'Dalia Sofer',NULL,NULL),(6644089,'Karla Badillo',NULL,NULL),(6644616,'Nery Arredondo',NULL,NULL),(6646183,'Eldar Kim',NULL,NULL),(6646390,'Otto Bell',NULL,NULL),(6649029,'Chiho Saitô',NULL,NULL),(6650029,'Ruth Wellman',NULL,NULL),(6651162,'Darren Barnet',1991,NULL),(6651847,'Cherry Dollface',NULL,NULL),(6653217,'Claire Armstrong',NULL,NULL),(6654155,'Jemma Moore',NULL,NULL),(6657408,'Laila Ezz El Arab',NULL,NULL),(6658264,'Vanessa van Zuylen',NULL,NULL),(6658398,'Shawn Mendes',1998,NULL),(6659224,'Amrit Kaur',NULL,NULL),(6659953,'Cathleen Miller',NULL,NULL),(6665663,'Jordan Hill',NULL,NULL),(6666563,'Gregory Stokes',NULL,NULL),(6666567,'Richard \'Dick\' Savino',NULL,NULL),(6666670,'Chris Pianka',NULL,NULL),(6667085,'Deborah Ellis',NULL,NULL),(6669635,'Geová Manoel Dos Santos',NULL,NULL),(6670977,'Holly Brydson',NULL,NULL),(6672096,'Michelle Antoniades',NULL,NULL),(6674968,'Sergio Quintana',NULL,NULL),(6675440,'Lily-Rose Depp',1999,NULL),(6676088,'Amy Krouse Rosenthal',1965,2017),(6676089,'Tom Lichtenheld',NULL,NULL),(6676262,'Jackson A. Dunn',2003,NULL),(6676487,'Jeff Rowe',1986,NULL),(6678463,'Bruno Marra',NULL,NULL),(6679028,'Eiken Sakurai',NULL,NULL),(6679051,'Dan Friedkin',NULL,NULL),(6679415,'Faizal Abdullah',NULL,NULL),(6679704,'Zsolt Barcsai',1966,NULL),(6679706,'József Gábor Nagy',1965,2016),(6679708,'Pál Pásztor',NULL,NULL),(6680958,'Takahiro Kido',NULL,NULL),(6681837,'Daniel Damah',NULL,NULL),(6682916,'Karl Holt',NULL,NULL),(6683774,'Ramón Rivera',NULL,NULL),(6683776,'Keila Gentil',NULL,NULL),(6685476,'Antoinette Nwandu',1980,NULL),(6686435,'Kiana Cason',NULL,NULL),(6687155,'Oliver Coates',NULL,NULL),(6688164,'Mike Steib',NULL,NULL),(6689427,'Alex Quevedo',NULL,NULL),(6691132,'Agata Smoluch Del Sorbo',NULL,NULL),(6693889,'Maria Magalhães',NULL,NULL),(6699059,'Stella Chestnut',NULL,NULL),(6699375,'Fei Ren',NULL,NULL),(6702770,'Kitana Kiki Rodriguez',NULL,NULL),(6703006,'Beatriz Pomar',NULL,NULL),(6705452,'Yanet Mojica',NULL,NULL),(6705453,'Ricardo Ariel Toribio',NULL,NULL),(6705454,'Benjamín De Menil',NULL,NULL),(6705455,'Edilio Paredes',NULL,NULL),(6705456,'Ramón Cordero',1940,2017),(6705698,'Susumu Akizuki',NULL,NULL),(6707680,'Jonathan Herman',NULL,NULL),(6708916,'Isabel Orellana Guarello',NULL,NULL),(6710963,'Michael Cody',NULL,NULL),(6711056,'Joo-Suk Park',NULL,NULL),(6711534,'Ishan Talkies',NULL,NULL),(6721767,'Thor Macht',1994,2019),(6721779,'Aaron Dancik',NULL,NULL),(6724461,'Erina Tagawa',NULL,NULL),(6725563,'Marilyn Lima',NULL,NULL),(6725564,'Lorenzo Lefèbvre',NULL,NULL),(6727657,'Justin Crosby',NULL,NULL),(6728658,'Kim Sun-young',1976,NULL),(6728910,'Thomas Prenn',1994,NULL),(6730257,'Jeff Roberts',NULL,NULL),(6730259,'Brian Sullivan',NULL,NULL),(6730265,'Brittany McDonald',NULL,NULL),(6731603,'Mia Quiney',NULL,NULL),(6733166,'Assa Sylla',NULL,NULL),(6733167,'Lindsay Karamoh',NULL,NULL),(6733168,'Mariétou Touré',NULL,NULL),(6734178,'Nina Graafland',NULL,NULL),(6737285,'Julian Parker',NULL,NULL),(6739313,'Sophie Seligmann',NULL,NULL),(6741315,'Karan Singh Rathore',NULL,NULL),(6742493,'Alana Carithers',NULL,NULL),(6745676,'Sébastien Chassagne',NULL,NULL),(6745900,'Soudabeh Beizaee',NULL,NULL),(6747483,'Michel Burstin',NULL,NULL),(6748436,'Dafne Keen',2005,NULL),(6749497,'Tim Nagle',NULL,NULL),(6751867,'Bron Boier',NULL,NULL),(6756914,'Zahia Dehar',1992,NULL),(6757610,'Rachel Brun',NULL,NULL),(6757611,'Jay Myers',NULL,NULL),(6757627,'Heo Sung-tae',1977,NULL),(6760748,'Taichi Ueda',NULL,NULL),(6761683,'Felipe Sabino',NULL,NULL),(6765196,'Robert Damon Schneck',NULL,NULL),(6766997,'Bárbara Branco',1999,NULL),(6772473,'Charles Peguy',1873,1914),(6775870,'Harry Finkel',NULL,NULL),(6779847,'Shantell Yasmine Abeydeera',NULL,NULL),(6781043,'Quentin Dolmaire',1994,NULL),(6781688,'Abraham Attah',2002,NULL),(6782145,'Mike Makowsky',1991,NULL),(6783988,'Victoria Schulz',1990,NULL),(6784326,'Alfrelynn J. Roberts',NULL,NULL),(6786039,'Trevor Paglen',NULL,NULL),(6788548,'Mariel Kathryn Hunter',NULL,NULL),(6790237,'Mardi Rustam',NULL,NULL),(6790541,'Aric Hidir Amin',NULL,NULL),(6791934,'Melanie Martinez',1995,NULL),(6793636,'Yuma Uchida',1992,NULL),(6793763,'Julia Palha',1998,NULL),(6794954,'Kathryn Schott',NULL,NULL),(6797975,'Meghan Weinstein',NULL,NULL),(6800707,'Derek Kelly',NULL,NULL),(6800708,'Kirsty May Hamilton',NULL,NULL),(6801028,'Robert Reed Peterson',NULL,NULL),(6804048,'Torsten Wenzel',NULL,NULL),(6806246,'Kris Wu',1990,NULL),(6807422,'Rachel Zeffira',NULL,NULL),(6810599,'Ana Sofia Martins',NULL,NULL),(6810680,'Casey Rackham',NULL,NULL),(6812060,'Natasha Liu Bordizzo',1994,NULL),(6815606,'Maksim Budarin',NULL,NULL),(6815608,'Max Dankevich',1975,NULL),(6819854,'Justice Smith',1995,NULL),(6822222,'Rebecka Josephson',NULL,NULL),(6822247,'Blitz//Berlin',NULL,NULL),(6829691,'Théodore Pellerin',1997,NULL),(6830749,'Paula Cooper',NULL,NULL),(6835058,'Nobutaka Tsubota',NULL,NULL),(6835795,'Tony Harvey',NULL,NULL),(6835961,'Alexa Nisenson',NULL,NULL),(6836140,'Bishnu Adhikari',NULL,NULL),(6836141,'Jermaine Sullivan',NULL,NULL),(6836142,'Carolina Muñoz Marin',NULL,NULL),(6839059,'Lianna Liew',NULL,NULL),(6842463,'Ivan Atkinson',NULL,NULL),(6844518,'Kimberly Steward',NULL,NULL),(6845927,'Luke Spencer Roberts',NULL,NULL),(6846760,'Vanessa Silva',NULL,NULL),(6849771,'Anna Todd',NULL,NULL),(6850304,'Alex Lampsos',NULL,NULL),(6851510,'Jojo T. Gibbs',NULL,NULL),(6851864,'Shizuka Kurosaki',NULL,NULL),(6855102,'Tim Nenninger',NULL,NULL),(6855165,'Sebastian Chacon',1993,NULL),(6859370,'A.C. Mughil',NULL,NULL),(6874234,'Emanuele Arioli',1988,NULL),(6875258,'Rocci Boy Williams',NULL,NULL),(6875292,'Yasin Houicha',NULL,NULL),(6876620,'Rishi Bhilawadikar',NULL,NULL),(6878585,'Sliem Ben-Salah',NULL,NULL),(6881486,'Victor Surge',NULL,NULL),(6883785,'Taylor Hickson',1997,NULL),(6887079,'Peter C. Swords',NULL,NULL),(6888393,'Winona Mae',NULL,NULL),(6890017,'Mary Laws',NULL,NULL),(6891947,'Lyna Khoudri',1992,NULL),(6892146,'Incinur Dasdemir',1985,NULL),(6892406,'Amanda Totoro',NULL,NULL),(6892534,'Ashley Levinson',NULL,NULL),(6894585,'Morgan Allen',NULL,NULL),(6894739,'Tomomi Kyôtani',NULL,NULL),(6895563,'Ezgi Ay',NULL,NULL),(6897793,'Bob Green',NULL,NULL),(6899488,'Caleb Castille',NULL,NULL),(6902151,'Asif Ali Beg',NULL,NULL),(6903064,'Re Lee',2006,NULL),(6903135,'Qinghai Jia',NULL,NULL),(6904546,'Dinara Baktybaeva',NULL,NULL),(6904578,'Mireia Oriol',NULL,NULL),(6907789,'Ivan Reis',1976,NULL),(6907855,'Noah Schnapp',2004,NULL),(6911859,'India Mullen',NULL,NULL),(6912381,'Karen Schaler',NULL,NULL),(6916321,'Ferdia Walsh-Peelo',1999,NULL),(6918863,'Viktor Gyllenberg',NULL,NULL),(6924005,'Sandy Andraos',NULL,NULL),(6924006,'Myriam Geagea',NULL,NULL),(6924140,'Ekaterina Kononenko',NULL,NULL),(6926577,'Aydar Sharipov',NULL,NULL),(6931628,'Florence Clery',NULL,NULL),(6932317,'Tom Nettleship',NULL,NULL),(6932318,'Daisy Coole',NULL,NULL),(6934058,'Joonas Suotamo',1986,NULL),(6936276,'Jan Dressler',NULL,NULL),(6937255,'Arsen Shavlyuk',NULL,NULL),(6940530,'Kei Kajimoto',NULL,NULL),(6940704,'Ioanna Kementsetsidou',NULL,NULL),(6943420,'Tô Enjo',NULL,NULL),(6943463,'Lutz Hübner',NULL,NULL),(6946516,'Rekha John-Cheriyan',NULL,NULL),(6949652,'Erica Lindbeck',1992,NULL),(6951861,'Édouard Tremblay-Grenier',NULL,NULL),(6952259,'Allan Goldberg',NULL,NULL),(6952261,'David Perrico',NULL,NULL),(6952874,'Riley Lai Nelet',2007,NULL),(6953737,'Christopher Coutts',NULL,NULL),(6954008,'Ryo Narita',1993,NULL),(6955492,'Pauline Chalamet',1992,NULL),(6959883,'Katherine Center',NULL,NULL),(6960420,'Perico Cervantes',NULL,NULL),(6961996,'Marengast',NULL,NULL),(6962541,'Howard Skempton',NULL,NULL),(6964461,'Shunsuke Tanaka',1990,NULL),(6966629,'Boris Treyer',NULL,NULL),(6974206,'Mamoudou Athie',1988,NULL),(6974700,'Omid Memar',1999,NULL),(6975399,'Ehud Lavski',NULL,NULL),(6976096,'Tristan Byon',NULL,NULL),(6976735,'Rachel Sennott',1995,NULL),(6978705,'Frederick Charles Canada',NULL,NULL),(6978706,'Bill Geislinger',NULL,NULL),(6980752,'Pete Samuels',NULL,NULL),(6981474,'Alex Leung',NULL,NULL),(6981978,'Akari Kitô',1994,NULL),(6982717,'Ruby Barnhill',2004,NULL),(6983391,'Bruce Cook',1932,2003),(6984200,'Scott McEwen',NULL,NULL),(6984560,'Kregg Dailey',NULL,NULL),(6995530,'Antoine Reinartz',1985,NULL),(6996144,'Abigail Sussman',NULL,NULL),(6996153,'Max Brebant',2001,NULL),(6996469,'Ryan Tullock',NULL,NULL),(6997839,'Manal Issa',1992,NULL),(6998370,'Andi Bajgora',2002,NULL),(6999211,'Tom Taylor',NULL,NULL),(7008275,'Shin Arum',NULL,NULL),(7008753,'Francesco Russo',NULL,NULL),(7011392,'Lotte Buchan',NULL,NULL),(7011553,'John K. MacDonald',NULL,NULL),(7011791,'Prathiksha Srinivasan',NULL,NULL),(7015080,'Romane Denis',NULL,NULL),(7027696,'Benjamin Wainwright',NULL,NULL),(7030243,'Jacques Ellul',NULL,NULL),(7032189,'Edwin Linker',NULL,NULL),(7035606,'Corentin Fila',1988,NULL),(7039173,'Jamie McRae',NULL,NULL),(7040896,'Steven Matusko',NULL,NULL),(7040899,'Shane Amsterdam',NULL,NULL),(7043518,'Bowie Dinkel',NULL,NULL),(7044454,'Taylor Rae Almonte-Roman',NULL,NULL),(7047874,'Staz Nair',1991,NULL),(7053685,'Heather Hentila',NULL,NULL),(7054168,'Noga Landau',NULL,NULL),(7058755,'Vipin Kamboj',NULL,NULL),(7059572,'Phi Vu',NULL,NULL),(7063538,'Sara Sampelayo',NULL,NULL),(7066292,'Oona Yaffe',NULL,NULL),(7071849,'Hani Jazzar',NULL,NULL),(7072248,'Stephen Lister',NULL,NULL),(7073779,'Umair Aleem',NULL,NULL),(7074419,'Angelique Noire',NULL,NULL),(7077616,'Erick Alexander',NULL,NULL),(7078703,'Na-kel Smith',NULL,NULL),(7079932,'Hakim Faris',NULL,NULL),(7084500,'Jaclene Wilk',NULL,NULL),(7091896,'Henry Alexander Kelly',NULL,NULL),(7092177,'Caitlin Meares',NULL,NULL),(7093076,'Lana Condor',1997,NULL),(7098092,'Dominic MacHale',NULL,NULL),(7099587,'Andryus Daryala',NULL,NULL),(7100009,'Paul Pelletier',NULL,NULL),(7102804,'María Varod',NULL,NULL),(7103165,'Miho Aizawa',NULL,NULL),(7105194,'Nicholas Cafritz',NULL,NULL),(7106378,'Emma Jane Unsworth',NULL,NULL),(7107447,'Lara McDonnell',2003,NULL),(7107842,'Kevin Smith',NULL,NULL),(7110007,'Lauren Esposito',1997,NULL),(7110934,'James Howarth',NULL,NULL),(7113131,'Ryan Hallahan',NULL,NULL),(7113544,'Aaron Paul Stewart',NULL,NULL),(7116214,'Chico Chapas',NULL,NULL),(7118506,'Kristen McGuire',1985,NULL),(7124125,'Daiki Hamano',NULL,NULL),(7126592,'Kayhan Açikgöz',1987,NULL),(7132577,'Lyric Ross',2003,NULL),(7138199,'Vladislav Severtsev',NULL,NULL),(7139651,'Tamara Mintz',NULL,NULL),(7139652,'Cassandra Inman',NULL,NULL),(7144123,'Charlie Ives',NULL,NULL),(7144316,'Nine d\'Urso',NULL,NULL),(7144317,'Thibault Duteil',NULL,NULL),(7144318,'Maia Fontaine',1990,NULL),(7144319,'Corentin Lunedic',NULL,NULL),(7144320,'Djuna Widhoff',NULL,NULL),(7144321,'Alexandre Badaoui',NULL,NULL),(7144322,'Suzanne Angevin',NULL,NULL),(7146301,'Ngo Quyen',NULL,NULL),(7149730,'Tom England',NULL,NULL),(7149731,'Joshua Ford',NULL,NULL),(7152630,'Erika Olde',NULL,NULL),(7153679,'Joe Alwyn',1991,NULL),(7154275,'Lambert',NULL,NULL),(7155991,'Bohdan Turok',NULL,NULL),(7160313,'Jules Coudignac',NULL,NULL),(7161572,'Peter Rock',NULL,NULL),(7166189,'Chun-Hung Chen',NULL,NULL),(7167614,'Palmbomen',NULL,NULL),(7169972,'Jackson Trent',NULL,NULL),(7182217,'Carly Adams',NULL,NULL),(7182476,'Adrian Purcarescu',NULL,NULL),(7182477,'Corneliu Cozmei',NULL,NULL),(7183498,'Michael Chase',NULL,NULL),(7184199,'Rob Lainchbury',NULL,NULL),(7184459,'Saverio Raimondo',1984,NULL),(7187470,'Jae-Hoon Noh',NULL,NULL),(7187575,'Madeline Weinstein',NULL,NULL),(7187850,'Jaboukie Young-White',1994,NULL),(7188547,'Chris Berend',NULL,NULL),(7191024,'Ari Arad',NULL,NULL),(7194563,'Dylan Fox Williams',NULL,NULL),(7195971,'Miya Cech',2007,NULL),(7198520,'Jim DeFelice',NULL,NULL),(7199643,'Colten Reed Dietz',NULL,NULL),(7200284,'Zine El-Abidine Ben Ali',1936,2019),(7206142,'Mitsunori Miura',NULL,NULL),(7206640,'Jonathan Perera',NULL,NULL),(7208402,'Dom DiMercurio',NULL,NULL),(7208988,'Mateus Alves',NULL,NULL),(7210025,'Maria Bakalova',1996,NULL),(7210986,'Erin Kellyman',1998,NULL),(7212925,'J.M. Ken Niimura',NULL,NULL),(7215870,'Penelope Lawson',NULL,NULL),(7216022,'Austin Wright',1922,2003),(7219957,'Lukas Bärfuss',1971,NULL),(7221028,'Dale Hunter',NULL,NULL),(7222287,'Christian Stevens',NULL,NULL),(7224267,'Zhihong Bian',NULL,NULL),(7226510,'Nick Cuse',NULL,NULL),(7230194,'Elizabeth Martin',NULL,NULL),(7230327,'Ruben Lee Martinez',NULL,NULL),(7230577,'Mathilde Ollivier',1994,NULL),(7232332,'Karen Fukuhara',1992,NULL),(7242421,'Johann Pall Oddson',NULL,NULL),(7243307,'Lucy Farrington-Smith',NULL,NULL),(7248827,'Cynthia Erivo',1987,NULL),(7251506,'Vishavjot Mann',NULL,NULL),(7254012,'Vitor Araújo',NULL,NULL),(7255674,'Justin Cram',NULL,NULL),(7256256,'Fam Udeorji',NULL,NULL),(7257831,'Herizen F. Guardiola',NULL,NULL),(7258155,'Manuel Pinho Braga',NULL,NULL),(7273771,'Gisli Galdur',NULL,NULL),(7275822,'Elyot Milshtein',NULL,NULL),(7275956,'Eun-Taek Hong',NULL,NULL),(7275965,'Barbara O\'Connor',NULL,NULL),(7276328,'Kenneth Tynan',NULL,NULL),(7277325,'Eleni Young',NULL,NULL),(7281223,'Ernest Hart',1910,1985),(7281541,'Tony Francis Rainone',NULL,NULL),(7286250,'Jennifer Dong',NULL,NULL),(7286732,'Cixin Liu',1963,NULL),(7287299,'Rudhraksh Jaiswal',2003,NULL),(7287484,'Rodrigo Sebastian Gonzalez',NULL,NULL),(7288074,'Erica Fischer',1943,NULL),(7288448,'Tuva Jagell',NULL,NULL),(7288449,'Emrik Öhlander',NULL,NULL),(7288450,'Louise Nyvall',NULL,NULL),(7288451,'Alexander Gustavsson',NULL,NULL),(7288459,'Sophia Ersson',NULL,NULL),(7288990,'Laura Castrillón',NULL,NULL),(7290853,'Graham Ward',NULL,NULL),(7291339,'Bryce Gheisar',2004,NULL),(7291423,'Mrs. Robert L. Thomas',NULL,NULL),(7294678,'Arkadiusz Reikowski',NULL,NULL),(7294937,'Oakley Bull',2012,NULL),(7297814,'Ayah Jardaneh',NULL,NULL),(7298598,'Vincent Peugnet',NULL,NULL),(7304559,'Lisa Whalen',NULL,NULL),(7305905,'Mercedes Cantero',NULL,NULL),(7307076,'Rusty Firmin',NULL,NULL),(7308759,'Rogelio Herrera',NULL,NULL),(7309485,'Azhy Robertson',NULL,NULL),(7311883,'Nami Kamata',NULL,NULL),(7311884,'Moshe Cohen',NULL,NULL),(7311885,'Harry Kuegler',NULL,NULL),(7312850,'Thobias Thorwid',1991,NULL),(7313277,'Harry Krueger',NULL,NULL),(7314077,'Manuel Cucala',NULL,NULL),(7314443,'Bindhu Malini',NULL,NULL),(7316454,'Namit Malhotra',NULL,NULL),(7320022,'Steven Chew',NULL,NULL),(7321254,'Avin Manshadi',NULL,NULL),(7322143,'Günes Sensoy',2001,NULL),(7322144,'Doga Zeynep Doguslu',NULL,NULL),(7322145,'Tugba Sunguroglu',NULL,NULL),(7324434,'Joshua J. Williams',NULL,NULL),(7324744,'Aorere Paki',NULL,NULL),(7325081,'Brian C. Brown',NULL,NULL),(7326356,'Nasrin Sotoudeh',1963,NULL),(7326511,'Olivia Scott Welch',1998,NULL),(7328140,'Jessica Swale',NULL,NULL),(7328716,'Jake Bernstein',NULL,NULL),(7330969,'Carlos Casella',NULL,NULL),(7333899,'Anthony Weiss',NULL,NULL),(7334568,'Zaïd Errougui-Demonsant',NULL,NULL),(7335459,'Jared Lee Gosselin',NULL,NULL),(7339980,'Sai Madhav Burra',1973,NULL),(7340546,'Eliza Scanlen',1999,NULL),(7341118,'Lindsay Watson',NULL,NULL),(7341744,'Harrison Powell',NULL,NULL),(7343028,'Rahul Sharma',1995,NULL),(7343749,'Raimundo de los Reyes',NULL,NULL),(7346682,'Daphné Patakia',1992,NULL),(7350709,'Buddy Duress',NULL,NULL),(7352416,'Alain Bidard',NULL,NULL),(7352417,'Steffy Glissant',NULL,NULL),(7352418,'Josué Pade',NULL,NULL),(7352419,'Stefany De Chavigny',NULL,NULL),(7352420,'Youry Bemol',NULL,NULL),(7352421,'Celia Guitteaud',NULL,NULL),(7352423,'Maxime Lélue',NULL,NULL),(7352424,'Sarah Malléon',NULL,NULL),(7352558,'Yaroslav Lukashevich',NULL,NULL),(7354340,'Sam Robert Muik',NULL,NULL),(7356818,'Erica Sturdefant',NULL,NULL),(7363531,'Andra Day',1984,NULL),(7364828,'Ane Ulimoen Øverli',NULL,NULL),(7368024,'Déborah Lukumuena',1994,NULL),(7368157,'Chris Walley',NULL,NULL),(7368158,'Alex Murphy',NULL,NULL),(7368361,'Jean-Jacques Denis',NULL,NULL),(7372981,'Cameron Seely',NULL,NULL),(7375907,'Karl Alexander',NULL,NULL),(7377556,'Marion Bessay',NULL,NULL),(7379140,'Karine de Mirbeck',NULL,NULL),(7379141,'Matthieu Schaller',NULL,NULL),(7379173,'Eric Dumont',NULL,NULL),(7385657,'André Catoto',NULL,NULL),(7388900,'Yoshke Dimen',NULL,NULL),(7390412,'Sean M. Bobbitt',NULL,NULL),(7393322,'Oskars Jansons',NULL,NULL),(7393324,'Iain McCluskey',NULL,NULL),(7393325,'Kostas Gerontis',NULL,NULL),(7396608,'Nate Lane',NULL,NULL),(7398891,'Katy Jane',NULL,NULL),(7398892,'Zenna Turner',NULL,NULL),(7398894,'James Joshua Otto',NULL,NULL),(7403141,'Bai-Ke',1988,NULL),(7403142,'Gary Wang',NULL,NULL),(7403143,'Zhou Yu',NULL,NULL),(7407118,'Lars Hubrich',1974,NULL),(7408265,'Sarasa Fujita',NULL,NULL),(7409040,'Chris Spain',NULL,NULL),(7410448,'Elena López Riera',NULL,NULL),(7414233,'Nicole Maines',1997,NULL),(7414254,'Eleanor Catton',1985,NULL),(7415457,'Roberto Sosa',NULL,2020),(7415589,'Harinder S. Sikka',NULL,NULL),(7415871,'Noah Jupe',2005,NULL),(7416093,'Reza Akhlaghirad',NULL,NULL),(7418825,'Alex Convery',NULL,NULL),(7421663,'Ali Murtaza',NULL,NULL),(7425638,'Elisângela Rita',NULL,NULL),(7426133,'LaLa Nestor',NULL,NULL),(7426970,'Paola Lara',NULL,NULL),(7426971,'Juan Ramón López',NULL,NULL),(7426973,'Hanssel Casillas',NULL,NULL),(7427876,'Lily Hollander',NULL,NULL),(7429362,'Nick Laird',1975,NULL),(7430071,'Gazal Dhaliwal',NULL,NULL),(7431172,'Hai-Meng Hsieh',NULL,NULL),(7431173,'Xing Pei',NULL,NULL),(7432792,'Abby Johnson',NULL,NULL),(7434342,'Clare Dunne',NULL,NULL),(7435004,'James Robert Miller',NULL,NULL),(7436998,'Keaton Nigel Cooke',NULL,NULL),(7446421,'Margot Lee Shetterly',1969,NULL),(7447307,'Demetrius Shipp Jr.',NULL,NULL),(7448575,'C.H. Vijay Kumar',NULL,NULL),(7449762,'Jurate Sodyte',NULL,NULL),(7449763,'Martynas Budraitis',1969,NULL),(7449863,'Jorge Lendeborg Jr.',NULL,NULL),(7451938,'Babak Karimi-Tari',NULL,NULL),(7455013,'Yousef Panahi',NULL,NULL),(7456758,'Barra Convery',NULL,NULL),(7456759,'Michael McAndrew',NULL,NULL),(7456760,'Shane Kelly',NULL,NULL),(7456761,'Kevin McAndrew',NULL,NULL),(7464062,'Lorena Lobato',NULL,NULL),(7464063,'Ane Oliveira',NULL,NULL),(7464064,'Dime Cronista',NULL,NULL),(7464978,'Tanerélle',NULL,NULL),(7466099,'Cheyne Lempe',NULL,NULL),(7470813,'Hannah Turner',NULL,NULL),(7471342,'Julie Murphy',NULL,NULL),(7471755,'Kent Alexander',NULL,NULL),(7473774,'Jean McGianni Celestin',NULL,NULL),(7476686,'David Howard Thornton',1979,NULL),(7477071,'Mohit Chauhan',NULL,NULL),(7478662,'Fatin Amira',NULL,NULL),(7479714,'Mim Shaikh',NULL,NULL),(7481311,'Joshua Bassett',2000,NULL),(7482227,'Beatrice Alexandra Allen',NULL,NULL),(7483475,'Chosen Jacobs',2001,NULL),(7490724,'Hyein Park',NULL,NULL),(7492852,'Estee Braverman',NULL,NULL),(7495413,'Kay Nguyen',NULL,NULL),(7495619,'Wolfgang Herrndorf',1965,2013),(7495726,'Ali Jaafar',NULL,NULL),(7502810,'Josinaldo Alves',NULL,NULL),(7505663,'Lucio Besana',NULL,NULL),(7509185,'Sebastian Croft',2001,NULL),(7511512,'Sarah Catherine Hook',1995,NULL),(7513399,'Royalty Hightower',NULL,NULL),(7513400,'Alexis Neblett',2005,NULL),(7513401,'Da\'Sean Minor',NULL,NULL),(7514105,'Anders Wendin',NULL,NULL),(7515373,'Bobby Spears Jr.',NULL,NULL),(7519912,'Kamel Guemra',NULL,NULL),(7520458,'Didrik Søderlind',NULL,NULL),(7523745,'Nathan Lynn',1992,NULL),(7524232,'Monica Pinto',1981,NULL),(7525535,'Richard Hawley',NULL,NULL),(7525711,'Radina Drandova',NULL,NULL),(7526793,'Robin Hanley',NULL,NULL),(7529030,'Blanka Györfi-Tóth',NULL,NULL),(7529321,'Chiaki Kurakane',NULL,NULL),(7533256,'Megha Kohli',NULL,NULL),(7534357,'Freddie Crowder',NULL,NULL),(7535164,'Marcello Fonte',1978,NULL),(7540679,'Paul Brian Fagen',NULL,NULL),(7541028,'Aaron May',NULL,NULL),(7546159,'Dennis Meador',NULL,NULL),(7546166,'Gustav Möller',1988,NULL),(7548958,'Lyon Daniels',NULL,NULL),(7554519,'Fredrik Backman',1981,NULL),(7557188,'Anthony Bajon',1994,NULL),(7559701,'Miriam Fussenegger',NULL,NULL),(7559720,'Maria Salvino Dos Santos',NULL,NULL),(7565661,'Akash Chawla',NULL,NULL),(7565692,'Tanishk Bagchi',1980,NULL),(7567554,'Nicola Yoon',NULL,NULL),(7567556,'Ariana Greenblatt',NULL,NULL),(7567974,'Finn Little',2006,NULL),(7569539,'Albert Anguera',NULL,NULL),(7569541,'Javier Enjuanes',NULL,NULL),(7571075,'Jessica Sutton',1993,NULL),(7572158,'Mirell Ventura',NULL,NULL),(7573116,'Shûhô Kondô',NULL,NULL),(7580109,'Daryl McCormack',1993,NULL),(7580249,'Abhiruchi Chand',NULL,NULL),(7580514,'Javier Serrat',NULL,NULL),(7582935,'Duo Wang',1991,NULL),(7583273,'Ang Phula Sherpa',NULL,NULL),(7589794,'Guillaume Houzé',NULL,NULL),(7592245,'Rob Collins',NULL,NULL),(7594279,'Lovie Simone',1998,NULL),(7598168,'Elle Lorraine',NULL,NULL),(7600583,'Carme Calvell',NULL,NULL),(7603308,'Mark McKenna',NULL,NULL),(7603745,'Sasha Lane',1995,NULL),(7604939,'Dangelo Bonneli',NULL,NULL),(7610067,'Kit Dale',NULL,NULL),(7611435,'André Sørum',NULL,NULL),(7617596,'Malcolm Cumming',NULL,NULL),(7621162,'Erika Linder',1990,NULL),(7621163,'Stephanie Fabrizi',NULL,NULL),(7621404,'Kevin Rease',NULL,NULL),(7621667,'Sanya Malhotra',1992,NULL),(7621668,'Zaira Wasim',2000,NULL),(7623216,'Chris Hurst',NULL,NULL),(7623217,'Robert Geoffrey Hughes',NULL,NULL),(7624934,'Adam Mirels',NULL,NULL),(7626019,'Domee Shi',1989,NULL),(7628319,'Valery Kharkov',NULL,NULL),(7629302,'Deborah Davis',NULL,NULL),(7635388,'Auli\'i Cravalho',2000,NULL),(7636995,'Emmanuel Affadzi',NULL,NULL),(7636996,'Ricky Adelayitor',NULL,NULL),(7636997,'Andrew Adote',NULL,NULL),(7638496,'Jo Webb',NULL,NULL),(7638842,'Sergio Valdes',NULL,NULL),(7645119,'Joshua Wallace',NULL,NULL),(7647102,'Zeinab Hind Khadra',NULL,NULL),(7647106,'Sadek Sabbah',NULL,NULL),(7650165,'Tripoli',NULL,NULL),(7663202,'Diego Avelino',NULL,NULL),(7669131,'Jungmi Oh',NULL,NULL),(7681091,'Jane Harper',NULL,NULL),(7681231,'Emma Seligman',1995,NULL),(7682496,'Angira Dhar',1988,NULL),(7683186,'Neath Oum',1980,NULL),(7683379,'Alex R. Hibbert',2004,NULL),(7684864,'Shannon Purser',1997,NULL),(7685985,'Will Kane',NULL,NULL),(7692367,'Gabriele Israilovici',NULL,NULL),(7692698,'Katherine Langford',1996,NULL),(7694623,'Enrique Gruber',NULL,NULL),(7695036,'Nathan Johnson',1968,NULL),(7698350,'Becky Albertalli',1982,NULL),(7698912,'Lizzie Pickering',NULL,NULL),(7702379,'Declan Power',NULL,NULL),(7704618,'Khamosh Shah',NULL,NULL),(7705136,'Ahmet Kürsat Öçalan',1986,NULL),(7708571,'Antonia Ribero',NULL,NULL),(7712734,'Sasha Luss',1992,NULL),(7713299,'Ania Molina',NULL,NULL),(7717593,'Yoshito Ohyama',NULL,NULL),(7718357,'Keti Stamo',NULL,NULL),(7718974,'Seydou Doucouré',NULL,NULL),(7718975,'Claude Urbiztondo Llarch',NULL,NULL),(7720241,'Igi',NULL,NULL),(7720242,'Mrs. Gheirat',NULL,NULL),(7733137,'Roshan Mathew',1992,NULL),(7735158,'Leah Cohen',NULL,NULL),(7736820,'Matthew Orton',NULL,NULL),(7737419,'Brooklynn Prince',2010,NULL),(7738797,'Kyliegh Curran',2005,NULL),(7741350,'Bernard Bizel',NULL,NULL),(7742589,'Alex Huston Fischer',NULL,NULL),(7743119,'David Michael Conley',NULL,NULL),(7745324,'Renika Williams',NULL,NULL),(7751721,'Christian La Monte',NULL,NULL),(7752797,'Jack Madigan',NULL,NULL),(7752798,'Frank Madigan',NULL,NULL),(7753978,'Honami Satô',1989,NULL),(7764877,'Jessie Ok Gray',NULL,NULL),(7764978,'Maruo Kyôzuka',NULL,NULL),(7765306,'Paul Arato',NULL,NULL),(7768268,'Carlotta Mazzoncini',NULL,NULL),(7768970,'Song-won Lee',NULL,NULL),(7774887,'Jan Mattson',NULL,NULL),(7775717,'Youn Ho Cho',NULL,NULL),(7784671,'Briana Shann',NULL,NULL),(7785329,'María Evoli',1990,NULL),(7793337,'Jordan Beck',NULL,NULL),(7794622,'Lili Karamalikis',NULL,NULL),(7794623,'Tess Fowler',NULL,NULL),(7796669,'Disha Patani',1992,NULL),(7798700,'Marie Vien',NULL,NULL),(7800057,'Khris Davis',NULL,NULL),(7803906,'Tim Richards',NULL,NULL),(7809897,'Sebastián Peña Escobar',NULL,NULL),(7810955,'Vaibhavi Hankare',NULL,NULL),(7811397,'Billy Barratt',2007,NULL),(7812642,'Joe DeSoto',NULL,NULL),(7816195,'Nagnath S. Inamdar',NULL,NULL),(7817658,'Michael Koskoff',1942,2019),(7818935,'Yuuko Tone',NULL,NULL),(7819375,'Will Buie Jr.',2007,NULL),(7824203,'Logan Nelson',NULL,NULL),(7827939,'Malcolm T. Goldman',NULL,NULL),(7829921,'Ilirida Memedovski',NULL,NULL),(7832387,'Yuchang Peng',NULL,NULL),(7832790,'Jeffrey Ho',NULL,NULL),(7835741,'Yoshitoki Ôima',NULL,NULL),(7835801,'Emily Cantrill',NULL,NULL),(7839130,'Lauren Gibson',NULL,NULL),(7839151,'Joe Knopp',1974,NULL),(7840062,'Brian Hieggelke',NULL,NULL),(7848566,'Hugo Paturel',NULL,NULL),(7850004,'Bob Mitchell',NULL,NULL),(7851611,'Jharrel Jerome',1997,NULL),(7855800,'Jocelyne Aguado',NULL,NULL),(7856663,'Felipe Zilse',NULL,NULL),(7857257,'Stephan Irmscher',NULL,NULL),(7862639,'Liza Koshy',1996,NULL),(7865907,'Emy Ltr',NULL,NULL),(7867621,'Talia Ryder',2002,NULL),(7868231,'Lou Wilson',NULL,NULL),(7869716,'Gigi Qi',NULL,NULL),(7872246,'Frédéric Fiore',NULL,NULL),(7873490,'Ming Doyle',1984,NULL),(7873659,'Wes Tooke',NULL,NULL),(7874369,'Yasmina Drissi',NULL,NULL),(7876251,'Will McGillivray',NULL,NULL),(7879299,'Dana Drori',NULL,NULL),(7880370,'Fahad Enany',NULL,NULL),(7883110,'Lilly Grabowski',NULL,NULL),(7887725,'Fionn Whitehead',1997,NULL),(7888676,'Emile Mosseri',NULL,NULL),(7890417,'Valeriy Siver',NULL,NULL),(7893080,'Rajesh Shukla',NULL,NULL),(7896794,'Christopher Renz',NULL,NULL),(7897008,'Stuart Ross Fink',NULL,NULL),(7901417,'Kimberly Cheng',NULL,NULL),(7901648,'Vincent Bessonnet',NULL,NULL),(7902509,'Dmitriy Litvinov',NULL,NULL),(7906118,'Ben Knechtel',NULL,NULL),(7914228,'Richard Holmes',NULL,NULL),(7915369,'Andries Smit',NULL,NULL),(7915626,'Mondo Boys',NULL,NULL),(7915627,'Cristina Pinheiro',NULL,NULL),(7917371,'Fred Braceful',NULL,NULL),(7917803,'Beau Gadsdon',NULL,NULL),(7918125,'Rikako Aida',NULL,NULL),(7923441,'Muhammad Asif Ali',2001,NULL),(7931395,'Diego Gamaliel',NULL,NULL),(7931906,'Rayan Desaintanger',NULL,NULL),(7937946,'Liam Woon',NULL,NULL),(7939934,'Adrien Ferrand',NULL,NULL),(7939956,'Giorgia Whigham',1997,NULL),(7944796,'Vincenzo Cardia',NULL,NULL),(7946031,'Kivanç Kilinç',1982,NULL),(7954550,'Nell Barlow',NULL,NULL),(7956036,'Matthew Espinosa',NULL,NULL),(7956813,'Robert Gulaczyk',1983,NULL),(7959699,'Christie LeBlanc',NULL,NULL),(7961669,'René Dohmen',1966,NULL),(7963775,'Amy Doyle',NULL,NULL),(7965891,'Demusmaker',NULL,NULL),(7966281,'Ellise Chappell',1992,NULL),(7970811,'Beth Iley',NULL,NULL),(7971543,'Hye-jin Kim',NULL,NULL),(7974908,'Jacek Dehnel',1980,NULL),(7975619,'AnnJewel Lee Dixon',NULL,NULL),(7977610,'Joachim Dürbeck',NULL,NULL),(7979939,'Kevin Vechiatto',2006,NULL),(8000095,'Opal Sexton',NULL,NULL),(8006852,'Nicholas Searle',NULL,NULL),(8010991,'Molly Wright',NULL,NULL),(8012207,'Frank Harris',NULL,NULL),(8013928,'Agnes Brekke',NULL,NULL),(8016666,'Emily Sweet',NULL,NULL),(8019376,'Andrea Tariang',NULL,NULL),(8019843,'Madalena Almeida',NULL,NULL),(8020079,'Hye-Weon Rhee',NULL,NULL),(8021571,'Angie Thomas',1988,NULL),(8023748,'Helena Zengel',2008,NULL),(8024993,'Ivone Rodrigues',NULL,NULL),(8025915,'Meinhard Neumann',NULL,NULL),(8025916,'Reinhardt Wetrek',NULL,NULL),(8029259,'Ivone Rodrigues',NULL,NULL),(8029694,'Ivone M. Rodrigues',NULL,NULL),(8030368,'Leandro Fernandez',NULL,NULL),(8030441,'Tom Costello',NULL,NULL),(8032685,'Chris Tebbetts',NULL,NULL),(8034541,'Carl Formes',NULL,NULL),(8035441,'Parisa Caviani',NULL,NULL),(8043003,'Péline Liberty',NULL,NULL),(8045046,'Michelle La',NULL,NULL),(8047895,'Mehrdad Elie',NULL,NULL),(8048167,'Misha Osherovich',NULL,NULL),(8048359,'Sanjay Upadhyay',NULL,NULL),(8051777,'Tioreore Ngatai-Melbourne',NULL,NULL),(8052678,'Greg Lettieri',NULL,NULL),(8052728,'Radwimps',NULL,NULL),(8061218,'Sunny Pawar',NULL,NULL),(8064655,'Nate VanDeusen',NULL,NULL),(8065502,'Dempsey Bryk',NULL,NULL),(8066994,'Chung-Hyun Lee',NULL,NULL),(8070724,'Kirill Zaytsev',1987,NULL),(8072788,'Adam Nevill',NULL,NULL),(8073097,'James Tynion IV',NULL,NULL),(8074709,'Sydney Huddleston',NULL,NULL),(8075389,'Margaret Chardiet',NULL,NULL),(8075458,'Hannah R. Loyd',NULL,NULL),(8075925,'Millicent Simmonds',2003,NULL),(8081851,'Neeraj Singh',NULL,NULL),(8081852,'Pranjal Choudhary',NULL,NULL),(8082506,'Chun Zhang',NULL,NULL),(8083973,'Cory Finley',NULL,NULL),(8089997,'Jared Goudsmit',NULL,NULL),(8092250,'Sajid Qureshi',NULL,NULL),(8092862,'Riya Shukla',NULL,NULL),(8100358,'Simeon Ventsislavov',NULL,NULL),(8101777,'Gaspard Schlatter',NULL,NULL),(8101778,'Sixtine Murat',NULL,NULL),(8106664,'Clarissa \'Cyd\' DuBois',NULL,NULL),(8107538,'Zelie Rixhon',NULL,NULL),(8108856,'Mollie Wartelle',NULL,NULL),(8109082,'Kristine Froseth',1995,NULL),(8109205,'Paul Greco',1955,2008),(8111443,'Tobia De Angelis',2000,NULL),(8111444,'Benedetta Porcaroli',1998,NULL),(8117399,'Mohamed AlRafi',NULL,NULL),(8120239,'Lisa Klein',NULL,NULL),(8123233,'Maria Scenna',NULL,NULL),(8123837,'Finnegan Haid',NULL,NULL),(8126552,'Rabbi Ahmed',NULL,NULL),(8126580,'Douglas Lindsay',NULL,NULL),(8127866,'Qun Dong',NULL,NULL),(8129612,'Jong-Dae Kim',NULL,NULL),(8133513,'Alejandro Herrera',NULL,NULL),(8136461,'Madina Nalwanga',NULL,NULL),(8141375,'McColm Cephas Jr.',NULL,NULL),(8146780,'Mikihiko Fukazawa',NULL,NULL),(8148648,'Cleo Tavares',NULL,NULL),(8151551,'Hiroshi Nishijima',NULL,NULL),(8152221,'Bárbara Colen',NULL,NULL),(8152286,'Rodolfo Araya',NULL,NULL),(8152287,'Miguel Salguero',NULL,2018),(8152807,'Kévin Mischel',NULL,NULL),(8152917,'Matthew Wispy Clarke',NULL,NULL),(8154709,'Nate Barnes',NULL,NULL),(8156298,'Kiddy Smile',NULL,NULL),(8158369,'Daniel Marenco',NULL,NULL),(8158370,'Lylliam Quesada',NULL,NULL),(8159701,'Daniel Diemer',NULL,NULL),(8160206,'Reiko Imayasu',NULL,NULL),(8164577,'Chris Lobinger',NULL,NULL),(8165340,'Nellie',NULL,NULL),(8165602,'Bella Ramsey',2003,NULL),(8165603,'Tamara Smart',2005,NULL),(8166118,'Sarah Alderson',NULL,NULL),(8166302,'Rexal Ford',NULL,NULL),(8166889,'Fadette Drouard',NULL,NULL),(8179407,'Sobhita Dhulipala',1992,NULL),(8179488,'Adam Janota Bzowski',NULL,NULL),(8188622,'Jacob Batalon',1996,NULL),(8188756,'Todd Gerelds',NULL,NULL),(8188757,'Mark Shlabach',NULL,NULL),(8190400,'Mitchell Slaggert',NULL,NULL),(8190502,'Eric Vera',NULL,NULL),(8193990,'Heinz',NULL,NULL),(8194801,'Jie Chen',NULL,NULL),(8195372,'Akira Mizuno',NULL,NULL),(8197332,'Hélène \'Babouillec\' Nicolas',NULL,NULL),(8197333,'Véronique Truffert',NULL,NULL),(8197335,'Freddy Kunze',NULL,NULL),(8197336,'Satchie Noro',NULL,NULL),(8197361,'Jón Benónýsson',NULL,NULL),(8199669,'Maddie Baillio',1996,NULL),(8200231,'Nanaka Suwa',NULL,NULL),(8200605,'Nikita Smolyaninov',NULL,NULL),(8200606,'Ibragim Ismailov',NULL,NULL),(8205766,'Marianne Rendón',1990,NULL),(8205905,'Alice McMillan',NULL,NULL),(8208372,'Amee Dolleman',NULL,NULL),(8212878,'Ella Balinska',1996,NULL),(8217935,'Liesl Tommy',NULL,NULL),(8218149,'Matt Hickey',NULL,NULL),(8221259,'Hussain Sha Kiran',NULL,NULL),(8221332,'Nannie Co',NULL,NULL),(8224582,'Claudia Placer',NULL,NULL),(8227431,'Joseph Bryan III',NULL,NULL),(8230647,'Cora Kirk',NULL,NULL),(8231176,'Ollie Masters',NULL,NULL),(8237023,'Ian Urbina',NULL,NULL),(8237564,'Siddhant Chaturvedi',1993,NULL),(8238078,'Joseph Salas',NULL,NULL),(8240767,'Christy Casey',NULL,NULL),(8240775,'Jason Darwas',NULL,NULL),(8243301,'Han Jin-won',NULL,NULL),(8244590,'Hansi Armentrout',NULL,NULL),(8248123,'Victoria D. Wells',NULL,NULL),(8248695,'Hiroaki Takeda',NULL,NULL),(8248699,'Haruki Yokoyama',NULL,NULL),(8252632,'Tina Tippit',NULL,NULL),(8252801,'David Ridley',NULL,NULL),(8253762,'Clara Riedenstein',NULL,NULL),(8254774,'Virender Arora',NULL,NULL),(8254778,'Vipul K. Rawal',NULL,NULL),(8255139,'Gwenaël Mario Grisi',1989,NULL),(8263018,'Kris Knigge',NULL,NULL),(8264172,'Anna Cathcart',2003,NULL),(8264234,'Eiko Ishibashi',NULL,NULL),(8267733,'Alexandra Lainfiesta',NULL,NULL),(8269956,'Mikelen Walker',NULL,NULL),(8273413,'Arun Prabhu Purushothaman',1989,NULL),(8273415,'Vedanth',NULL,NULL),(8273416,'Shelly Calist',NULL,NULL),(8273848,'Romain Guillermic',NULL,NULL),(8275833,'Shangqing Su',NULL,NULL),(8275834,'Timmy Xu',1994,NULL),(8279109,'Lance Gray',NULL,NULL),(8280950,'Amit May Cohen',NULL,NULL),(8282195,'Guangtao Jiang',NULL,NULL),(8282196,'Shulan Pan',NULL,NULL),(8286241,'Kristín Þóra Haraldsdóttir',NULL,NULL),(8289379,'Mark Winks',1980,2021),(8291736,'Jack Binder',1902,1986),(8292247,'Sandra Escacena',2001,NULL),(8292248,'Iván Chavero',NULL,NULL),(8293167,'Pawo Choyning Dorji',1983,NULL),(8293427,'Michael Davis',NULL,NULL),(8301530,'Tiffany Sherie Neeley',NULL,NULL),(8302351,'Stephen Donnelly',NULL,NULL),(8302367,'Aline Belfort',NULL,NULL),(8306442,'Can Yesilyurt',1999,NULL),(8306717,'Lisa Eschenbrenner',NULL,NULL),(8306808,'B.P. Loh',NULL,NULL),(8306809,'K.C. Wong',NULL,NULL),(8306810,'Rick Ho',NULL,NULL),(8308968,'Benjamin Voisin',1996,NULL),(8311678,'Kaya Wilkins',1990,NULL),(8311902,'Sam Stratton',NULL,NULL),(8313008,'Mitch Frankenberger Pellicer',NULL,NULL),(8313926,'Asher Miles Fallica',NULL,NULL),(8314228,'Cailee Spaeny',1998,NULL),(8317425,'Yû Kamiya',NULL,NULL),(8320569,'Christopher Stark',NULL,NULL),(8322900,'Ben Vardy',NULL,NULL),(8329660,'DJ Dallenbach',1986,NULL),(8330829,'Olly Reid',NULL,NULL),(8332983,'Maya Korn',NULL,NULL),(8334734,'Robyn Scott',NULL,NULL),(8337206,'Moroccan Cannon',2011,NULL),(8337207,'Monroe Cannon',2011,NULL),(8337326,'Tyson Stock',NULL,NULL),(8337382,'Mia Petricevic',NULL,NULL),(8340357,'Thomas R. Burke',NULL,NULL),(8340690,'Aisholpan Nurgaiv',NULL,NULL),(8341683,'Stephanie Saul',NULL,NULL),(8344966,'Andrew Lynch',NULL,NULL),(8351641,'Olena Shulga',NULL,NULL),(8354080,'Stacy Mattingly',NULL,NULL),(8354848,'Philippe Azoury',NULL,NULL),(8356897,'Eun-ill Lee',NULL,NULL),(8359918,'Aniya Wendel',2001,NULL),(8362408,'João Lobo',NULL,NULL),(8365231,'Isis Hainsworth',1998,NULL),(8367841,'Lauren LaVera',NULL,NULL),(8368748,'Harrison Kreiss',NULL,NULL),(8369604,'Sana Jammelieh',NULL,NULL),(8369605,'Shaden Kanboura',NULL,NULL),(8374266,'Shantanu Maheshwari',1991,NULL),(8378253,'Laurence Roberts',NULL,NULL),(8378612,'Ines English',NULL,NULL),(8379911,'Taras Stasiuk',NULL,NULL),(8380569,'Amber Doig-Thorne',NULL,NULL),(8381788,'Mehdi Idir',NULL,NULL),(8389249,'David Semedo',NULL,NULL),(8390021,'Thomas Gioria',NULL,NULL),(8391271,'Fredrica Bailey',NULL,NULL),(8391281,'Dante Crichlow',NULL,NULL),(8395137,'Angelo Josue Lozano Corzo',NULL,NULL),(8398916,'Shinichiro Kobayashi',NULL,NULL),(8399408,'Che Tafari',NULL,NULL),(8401185,'Rachelle Vinberg',NULL,NULL),(8401186,'Nina Moran',NULL,NULL),(8401187,'Dede Lovelace',NULL,NULL),(8401191,'Kabrina Adams',NULL,NULL),(8401672,'Michael Merlob',NULL,NULL),(8402992,'Daisy Edgar-Jones',1998,NULL),(8405300,'Eva Noblezada',1996,NULL),(8409571,'Andreana Callegarini-Gradzik',NULL,NULL),(8409572,'Naomi Skwarna',NULL,NULL),(8412536,'Milly Shapiro',2002,NULL),(8414653,'Camryn Jones',NULL,NULL),(8418516,'Joële Walinga',NULL,NULL),(8420166,'Alice Feetham',NULL,NULL),(8420549,'Stephen Glover',NULL,NULL),(8421695,'Martin Kabanza',NULL,NULL),(8423767,'Patrick L. Reyes',NULL,NULL),(8424617,'Winnie Yuen-Ying Ho',NULL,NULL),(8435299,'Siobhan Dowd',1960,2007),(8437490,'Grace VanderWaal',2004,NULL),(8437705,'Dali Benssalah',1992,NULL),(8438061,'Simone Bucio',NULL,NULL),(8438062,'Ruth Ramos',1994,NULL),(8440165,'Jamal Olori',NULL,NULL),(8441593,'Dane Pizutti Krogman',NULL,NULL),(8442821,'Naama Or',NULL,NULL),(8442822,'Eliya Scemama',NULL,NULL),(8444876,'Ashleigh Philips',NULL,NULL),(8446720,'Sadie Rose',2001,NULL),(8447376,'Fernando Pereira Lopes',NULL,NULL),(8447708,'Colleen Hammond',NULL,NULL),(8450134,'McCabe Slye',NULL,NULL),(8451917,'Kea Peahu',2007,NULL),(8452852,'Yoru Sumino',NULL,NULL),(8458915,'Bria Vinaite',1993,NULL),(8460487,'KiKi Layne',1991,NULL),(8463815,'Lola Botha',NULL,NULL),(8463983,'Marchánt Davis',NULL,NULL),(8465623,'Giorgos Kissandrakis',NULL,NULL),(8465701,'Yoshikazu Tanaka',NULL,NULL),(8467055,'Alexxis Lemire',1996,NULL),(8467096,'Barry G. Bernson',NULL,NULL),(8467740,'Annabel Wolfe',2002,NULL),(8469859,'Emmanuel Quillet',NULL,NULL),(8490058,'Ari McCarthy',NULL,NULL),(8499674,'Chunbao Wei',NULL,NULL),(8505639,'Maddy Martin',NULL,NULL),(8509566,'Reza Diako',NULL,NULL),(8510480,'James Scully',1992,NULL),(8530984,'Maki Itô',NULL,NULL),(8533749,'YaYa Gosselin',2009,NULL),(8534591,'Isabella Ferreira',NULL,NULL),(8539879,'Chris Cimperman',NULL,NULL),(8540931,'Thomas Dam',1915,1989),(8543451,'Noée Abita',1999,NULL),(8543452,'Juan Cano',NULL,NULL),(8544588,'Lei Huang',NULL,NULL),(8547473,'Leonora Darby',NULL,NULL),(8549649,'Russell Marcus',NULL,NULL),(8550454,'Georgii Nik',NULL,NULL),(8556317,'Jessica Schiefauer',NULL,NULL),(8563655,'Ouch',NULL,NULL),(8564177,'Rob Lowe Gonzales-Gomez',NULL,NULL),(8565164,'José López',NULL,NULL),(8567129,'Jasmine Mathews',NULL,NULL),(8567338,'Sasha Calle',1995,NULL),(8574700,'Julian Lerner',2007,NULL),(8576688,'Philip Lees',NULL,NULL),(8578129,'Chelsea Quinn Yarbro',NULL,NULL),(8579661,'Meng Hee Wee',NULL,NULL),(8586970,'Cavern of Anti-Matter',NULL,NULL),(8588942,'Chiara Arrighi',NULL,NULL),(8589104,'Daniella Mir',NULL,NULL),(8590036,'Emily M. Danforth',NULL,NULL),(8594112,'Dmitriy Presnetsov',NULL,NULL),(8595535,'Nicolò Cabras',NULL,NULL),(8596780,'Wes Teshome',NULL,NULL),(8601223,'Rob Merritt',NULL,NULL),(8606215,'Miguel Ribeiro',NULL,NULL),(8606221,'Daniel Pizamiglio',NULL,NULL),(8606222,'Clara Bastos',NULL,NULL),(8606223,'Mauro Soares',NULL,NULL),(8609147,'Anna-Maree Thomas',NULL,NULL),(8609386,'Sam Chiplin',NULL,NULL),(8609670,'Deborah Wastell',NULL,NULL),(8610958,'Tim Sommers',NULL,NULL),(8611957,'Yalitza Aparicio',1993,NULL),(8612305,'Rashmika Mandanna',1996,NULL),(8614515,'Ilker Can Karagulle',NULL,NULL),(8624059,'Jacob Elordi',1997,NULL),(8625874,'Emma Nelson',2004,NULL),(8627157,'Violet McGraw',2011,NULL),(8632998,'Cameron Bloom',NULL,NULL),(8635807,'Srinidhi Shetty',1992,NULL),(8644854,'Véro Tshanda Beya Mputu',NULL,NULL),(8644855,'Gaetan Claudia',NULL,NULL),(8644856,'Papi Mpaka',NULL,NULL),(8644857,'Nadine Ndebo',NULL,NULL),(8648628,'Rys Nurgaiv',NULL,NULL),(8655850,'Hannah Reyer',NULL,NULL),(8659025,'Koyu Rankin',NULL,NULL),(8661566,'Rajshri Sudhakar',NULL,NULL),(8662749,'Eric Monette',1967,NULL),(8665872,'Eliazar Jimenez',NULL,NULL),(8674075,'Meredith Rose',NULL,NULL),(8675620,'AprilAnn Dais',NULL,NULL),(8685376,'Deema Azar',NULL,NULL),(8689321,'Elena Startu',1994,NULL),(8689322,'Artem Ohanyan',2003,NULL),(8689323,'Ilya Khoboko',2003,NULL),(8689324,'Nikita Vasilyev',2003,NULL),(8689326,'Arthur Musin',1989,NULL),(8691274,'Katrina Rossi',NULL,NULL),(8697009,'Sam Hart',NULL,NULL),(8698105,'Ammara Hikmat',NULL,NULL),(8703955,'Ryan Fritz',NULL,NULL),(8706003,'May de Lavergne',NULL,NULL),(8714831,'Jennifer Mathieu',NULL,NULL),(8720624,'Lily Fisher',NULL,NULL),(8720979,'Amy Lally',NULL,NULL),(8720982,'Jonathan Halperyn',NULL,NULL),(8721227,'Rex Lopez',NULL,NULL),(8728577,'Carlo Zen',NULL,NULL),(8731249,'Ayo Edebiri',1995,NULL),(8731522,'Tracy Jarvis',NULL,NULL),(8732504,'Shun-ying Fu',NULL,NULL),(8733387,'Masahiro Hikokubo',NULL,NULL),(8735191,'Jessica Zitter',NULL,NULL),(8738105,'Jessica Chancellor',NULL,NULL),(8740446,'Samuel Arnold',1991,NULL),(8748334,'Shay Hatten',1994,NULL),(8750616,'Asumiko Nakamura',NULL,NULL),(8752173,'Michael Abels',NULL,NULL),(8755384,'Luis Alfonso',NULL,NULL),(8755930,'Angelina Håkansson',NULL,NULL),(8758198,'Tim Federle',1980,NULL),(8758264,'Monica Bhargava',NULL,NULL),(8760655,'Do-yoon Kim',1981,NULL),(8766764,'Katherine Cortez',NULL,NULL),(8769457,'Ridoin El Aissati',NULL,NULL),(8772807,'Emma Louise Webb',NULL,NULL),(8775196,'Dylan Shapiro',NULL,NULL),(8775197,'Karina Aldape',NULL,NULL),(8776380,'Anthony John',NULL,NULL),(8785687,'Enas Lotfy',NULL,NULL),(8790881,'Sam Bixby',NULL,NULL),(8797209,'Aaron Louie',NULL,NULL),(8797210,'Jerry Fisher',NULL,NULL),(8800791,'Mark Lowell',1917,2008),(8802062,'Ibra Ake',NULL,NULL),(8805270,'Megan Gage',NULL,NULL),(8815175,'Susan Williams',NULL,NULL),(8815438,'Wayne Jacobsen',NULL,NULL),(8815470,'Djebril Zonga',NULL,NULL),(8816423,'Lauren Tsai',1998,NULL),(8816431,'Guy Sato',NULL,NULL),(8821143,'Abra',1989,NULL),(8823152,'Rosalie Chiang',2005,NULL),(8823532,'Katsuhiro Takei',NULL,NULL),(8823854,'Simon Carmody',NULL,NULL),(8824223,'Ruchang Ye',NULL,NULL),(8824422,'Paula L. Bird',NULL,NULL),(8825893,'Justina Humpf',2000,NULL),(8838215,'William Giraldi',NULL,NULL),(8838405,'Lucy Miller',NULL,NULL),(8844501,'Santosh Govindaraju',NULL,NULL),(8847729,'Zumrut Arol Bekce',NULL,NULL),(8847811,'Vicky Chen',2003,NULL),(8850465,'Reece Putinas',NULL,NULL),(8853855,'Song Kang',1994,NULL),(8857088,'Rebecca Humphreys',NULL,NULL),(8857089,'Ellie Currie',NULL,NULL),(8857090,'Jonathan Reid',NULL,NULL),(8857091,'Trinity Cully',NULL,NULL),(8857173,'Whitney Peak',2003,NULL),(8858219,'Balwinder Singh Janjua',NULL,NULL),(8861562,'Jamie Champagne',NULL,NULL),(8861563,'Jon Champagne',NULL,NULL),(8862419,'Wendy Jung',NULL,NULL),(8863183,'Devin Wade',NULL,NULL),(8863626,'Laurence Lafond-Beaulne',NULL,NULL),(8863627,'Camille Poliquin',NULL,NULL),(8864870,'Natalia Molina',NULL,NULL),(8871347,'Mauro Castillo',1978,NULL),(8872000,'Kuhoo Verma',1996,NULL),(8874944,'Celal Öztürk',NULL,NULL),(8877502,'Mohamedou Ould Slahi',NULL,NULL),(8880852,'Aaju Peter',NULL,NULL),(8883631,'Louis Steyn',NULL,NULL),(8883632,'T.J. Steyn',NULL,NULL),(8885840,'Jung Jae-il',NULL,NULL),(8886237,'Yuliia Sobol',1995,NULL),(8893140,'Tom Holt',NULL,NULL),(8901295,'Gareth Rich Lopez',NULL,NULL),(8908475,'Isabel May',2000,NULL),(8911148,'Troy James',NULL,NULL),(8911664,'Jun Fukuda',NULL,NULL),(8912882,'Christopher Rivera',NULL,NULL),(8914443,'Angel Caparros',NULL,NULL),(8914782,'Maggie Budzyna',NULL,NULL),(8915757,'Susanna Skaggs',2001,NULL),(8920557,'Syuleyman Alilov Letifov',NULL,NULL),(8920559,'Veneta Fragnova',NULL,NULL),(8921027,'Patrik Nökkvi Pétursson',NULL,NULL),(8923497,'Mark Lawrence',NULL,NULL),(8930454,'M.G. Saad',NULL,NULL),(8936188,'Hsiao-Yuan Ha',1981,NULL),(8940318,'Baptiste Goy',NULL,NULL),(8940319,'Axel Devillers',NULL,NULL),(8949167,'Judith C. Brown',NULL,NULL),(8953713,'Hailong Guan',NULL,NULL),(8958770,'Paul Mescal',1996,NULL),(8962949,'Júlia Gibert',NULL,NULL),(8967844,'Devrim Lingnau',1998,NULL),(8977430,'Alo Valenzuela',NULL,NULL),(8980932,'Marcela Rincón',NULL,NULL),(8980933,'Marcela Rincon',NULL,NULL),(8983821,'James Cummings',NULL,NULL),(8984706,'Frank Blake',NULL,NULL),(8986469,'Kate Kyriacou',NULL,NULL),(8988411,'Marc Fraize',NULL,NULL),(8995126,'Christopher McVay',NULL,NULL),(8995650,'Catharine Daddario',1992,NULL),(8996867,'Brandon Reiss',NULL,NULL),(8997361,'Alexandra Slade',NULL,NULL),(8999685,'Neil Raymond Ricco',NULL,NULL),(9001128,'Alexander Glinchenko',NULL,NULL),(9001131,'Olha Zhukovtsova-Kyiashko',1984,NULL),(9005000,'Will Stone',NULL,NULL),(9007992,'Ruby Rose O\'Hara',NULL,NULL),(9009942,'Cédric Le Gallo',NULL,NULL),(9012797,'Claudia Hughes',NULL,NULL),(9018272,'Zeinab Shabani',NULL,NULL),(9022931,'Marianna Pinto',NULL,NULL),(9026707,'Shin\'ichirô Ushijima',NULL,NULL),(9033567,'Evita Fechner',NULL,NULL),(9036891,'Chris Kozlowski',NULL,NULL),(9040089,'Carolina Carvalho',1994,NULL),(9044236,'Paul Joseph Smith',NULL,NULL),(9051938,'Vivienne Kjono',NULL,NULL),(9054338,'Steve Hickner',NULL,NULL),(9058955,'Calum O\'Rourke',NULL,NULL),(9060017,'Mike Reeb',NULL,NULL),(9060471,'Garrard Conley',NULL,NULL),(9060911,'Evan Whitten',NULL,NULL),(9063132,'Wang Nima',NULL,NULL),(9063133,'Olivia Hao',NULL,NULL),(9066973,'Samuel Vincent',NULL,NULL),(9067081,'Maribel del Pino',NULL,NULL),(9071083,'Sara Ali Khan',1995,NULL),(9075831,'Lise Leplat Prudhomme',NULL,NULL),(9079127,'Darcey Bell',NULL,NULL),(9082107,'Fumiyuki Gô',NULL,NULL),(9086041,'Francesco Marcocci',NULL,NULL),(9091071,'S.E.N.S. Project',NULL,NULL),(9096847,'Thuso Mbedu',1991,NULL),(9109803,'Vincent Mazel',NULL,NULL),(9112772,'Uvin Wang',NULL,NULL),(9113893,'Souheila Yacoub',1992,NULL),(9114061,'David Fox',NULL,NULL),(9116497,'Selahattin Pasali',1990,NULL),(9117702,'Era Balaj',NULL,NULL),(9119331,'Lisa Nur Sultan',NULL,NULL),(9121761,'Winslow Fegley',NULL,NULL),(9123581,'Joel Hefley',NULL,NULL),(9124071,'Chance Perdomo',1996,NULL),(9133740,'Huck Milner',2007,NULL),(9137077,'David Carrico',NULL,NULL),(9145536,'Ho-min Ju',NULL,NULL),(9150537,'Gabriella Baldacchino',2001,NULL),(9150568,'Brian Augustyn',1954,2022),(9150832,'Norifumi Kikushima',NULL,NULL),(9152292,'Julia Franz Richter',1991,NULL),(9156565,'Félix Lefebvre',1999,NULL),(9158817,'Noriaki Takagi',NULL,NULL),(9165472,'David Kuhn',NULL,NULL),(9166641,'Yu Tsang',NULL,NULL),(9169920,'Rish Shah',NULL,NULL),(9170232,'Hugo Vasquez',NULL,NULL),(9170233,'Claudia Herrán',NULL,NULL),(9170234,'Mauricio Fernandini',NULL,NULL),(9175586,'Nicholas Leone',NULL,NULL),(9175660,'Greg Clark',NULL,NULL),(9176319,'Mila Harris',NULL,NULL),(9177529,'Yaël Langmann',NULL,NULL),(9180058,'Park Gyuyoung',1993,NULL),(9184951,'Nicholas Compall',NULL,NULL),(9188905,'Catherine Ames',NULL,NULL),(9193091,'Hannah Bortz',NULL,NULL),(9193095,'Stefanie Borbe',NULL,NULL),(9195417,'Aditi Balan',1990,NULL),(9195543,'Avishma Lohith',NULL,NULL),(9202914,'Daoqing Ji',NULL,NULL),(9204083,'Ole Kirk Christiansen',1891,1958),(9204084,'Godtfred Kirk Christiansen',1920,1995),(9206992,'Lee Ji-Won',NULL,NULL),(9209737,'Jason Conzelman',NULL,NULL),(9209960,'Barbie Ferreira',1996,NULL),(9211909,'Luchs von Kyffhäuserbach',NULL,NULL),(9213404,'Lillie Rebecca McDonough',NULL,NULL),(9215920,'Sahar Sakhaei',NULL,NULL),(9215926,'Filipa Martins',NULL,NULL),(9216522,'Gregor Selkirk',NULL,NULL),(9222384,'Bei Ru',NULL,NULL),(9227539,'Jacopo Rosso Ciufoli',NULL,NULL),(9248109,'Jerónimo Barón',NULL,NULL),(9250489,'Dario De Mexico',NULL,NULL),(9250491,'Herman Eldeweis',NULL,NULL),(9251768,'Rory Friers',NULL,NULL),(9251769,'Niall Kennedy',NULL,NULL),(9252410,'Leon Kleuker',NULL,NULL),(9255008,'Joseph Bechor',NULL,NULL),(9256273,'Adam Burch',NULL,NULL),(9259302,'Ron Stallworth',NULL,NULL),(9261564,'Bonnie Zacherle',1946,NULL),(9262312,'Mohammad Mohammadian',1987,NULL),(9263896,'Triptii Dimri',1994,NULL),(9272817,'Yurino',NULL,NULL),(9273762,'David Haring',NULL,NULL),(9284520,'Régis de Martrin-Donos',NULL,NULL),(9286880,'Jeffery Rifflard',NULL,NULL),(9289456,'Grace Wacuka',NULL,NULL),(9294669,'Elizabeth Haggard',NULL,NULL),(9297648,'Péter Mátraházi',NULL,NULL),(9297649,'Ferenc Bóka',NULL,NULL),(9299964,'Dean Chaumoo',NULL,NULL),(9300501,'Herb Caillouet',NULL,NULL),(9304766,'Sofia Buenaventura',NULL,NULL),(9304769,'Karen Quintero',NULL,NULL),(9305936,'Celeste O\'Connor',1998,NULL),(9311474,'Jeon Jong-seo',1994,NULL),(9311475,'Gwang-hee Ok',NULL,NULL),(9311912,'Alexandra Bedford',NULL,NULL),(9317294,'Malea Emma Tjandrawidjaja',2011,NULL),(9318791,'Fiona Shaw',NULL,NULL),(9331937,'Zaira Romero',NULL,NULL),(9331938,'Rosy Rodríguez',NULL,NULL),(9331940,'Rafaela León',NULL,NULL),(9332853,'Tilly Baldwin',NULL,NULL),(9333156,'Diego A. Arellano',1997,NULL),(9334013,'Michelle Lotters',NULL,NULL),(9335353,'Manuel',NULL,NULL),(9342097,'Ruby Cruz',1998,NULL),(9342429,'Octavie Huvier',NULL,NULL),(9346140,'Jeanie Igoe',NULL,NULL),(9347978,'Cedric Joe',2005,NULL),(9348321,'Shoichirou Ikemiya',NULL,NULL),(9351707,'Sean Flynn',NULL,NULL),(9352309,'Peter Batchelder',NULL,NULL),(9353334,'Zaria Kelley',NULL,NULL),(9364231,'Beatrice Colin',NULL,NULL),(9365887,'Skread',NULL,NULL),(9378786,'Alessio Scalzotto',NULL,NULL),(9389247,'Samrat Chakraborty',NULL,NULL),(9389426,'The Glenroy Brothers',NULL,NULL),(9395116,'Sarah Gabriel',NULL,NULL),(9397414,'Yz Carbonell',NULL,NULL),(9399636,'Paul Young',NULL,NULL),(9400059,'Dan Collins',NULL,NULL),(9400205,'Jack Martini',NULL,NULL),(9400700,'Dongxu Yan',NULL,NULL),(9400701,'Junce Ye',NULL,NULL),(9400702,'Yang Zhixue',NULL,NULL),(9406221,'Christer Levin',NULL,NULL),(9406222,'Christian Saldert',NULL,NULL),(9411915,'Kim Sung-cheol',1991,NULL),(9414067,'David Brown',NULL,NULL),(9416658,'Don Bennechi',NULL,NULL),(9418760,'Ha-Young Lee',NULL,NULL),(9429903,'Ryan Welch',NULL,NULL),(9430043,'Jules Roy Sicotte',NULL,NULL),(9436710,'Randy Scornavacca',NULL,NULL),(9442886,'Pavel Burya',NULL,NULL),(9446930,'Murray',NULL,NULL),(9447832,'Geetika Vidya Ohlyan',1991,NULL),(9450235,'Molly McCann',NULL,NULL),(9451140,'Cristina Landes',NULL,NULL),(9451696,'Andrew Patterson',NULL,NULL),(9452466,'Ramsey',NULL,NULL),(9454271,'Doug Hall',NULL,NULL),(9454922,'Cynthia Bell',NULL,NULL),(9455420,'Johnny Collins',NULL,NULL),(9461750,'Chang-Yeon Sung',NULL,NULL),(9461976,'Dong-Cheol Kim',NULL,NULL),(9462632,'Sora Wakaki',NULL,NULL),(9470536,'Yeom Hye-ran',1976,NULL),(9484837,'Kôhei Horikoshi',NULL,NULL),(9485683,'Zaris-Angel Hator',NULL,NULL),(9486622,'Dogu Demirkol',1988,NULL),(9489622,'Srikanth Vissa',NULL,NULL),(9489667,'Karlene Faith',1938,2017),(9494455,'Owen Richards',NULL,NULL),(9500254,'Ferdia Shaw',NULL,NULL),(9511067,'Wilhelm Abraham',NULL,NULL),(9512526,'Chuck Southworth',NULL,NULL),(9515880,'Sallie Gardner',NULL,NULL),(9524976,'Chuxiao Qu',1994,NULL),(9533867,'Fuentealba Rodrigo',NULL,NULL),(9537602,'Diana Silvers',1997,NULL),(9540892,'Nancy Springer',NULL,NULL),(9545038,'Julien Rey',NULL,NULL),(9551905,'Victor Darlay',NULL,NULL),(9557586,'Padmashri Mohammad Ali',NULL,NULL),(9557587,'Pradeep Anthony',NULL,NULL),(9557596,'Arnold',NULL,NULL),(9566046,'Zahraa Aldoujaili',NULL,NULL),(9566047,'Yara Aliadotter',NULL,NULL),(9566048,'Fredrik Dahl',NULL,NULL),(9569682,'Jef Bailey',NULL,NULL),(9569934,'Nico Hiraga',1997,NULL),(9571584,'Omri Ilan',NULL,NULL),(9571585,'Lionel Calniquer',NULL,NULL),(9571714,'Ji-sun Choi',NULL,NULL),(9572798,'Jessica Bruder',NULL,NULL),(9574660,'Anand Bajpai',NULL,NULL),(9576433,'Carrie Freedle',NULL,NULL),(9579910,'Brandon Root',NULL,NULL),(9581901,'Julián Marras',NULL,NULL),(9583795,'Derek John Drescher',NULL,NULL),(9584508,'Linda May',NULL,NULL),(9586537,'Sunfish',NULL,NULL),(9590579,'Ana Brun',NULL,NULL),(9592688,'Lucas Marangon',NULL,NULL),(9593750,'Laïs Salameh',NULL,NULL),(9604750,'Félix Grenier',NULL,NULL),(9604751,'Alexandre Perreault',NULL,NULL),(9612607,'Katie McCormack',NULL,NULL),(9617279,'Bokhee An',NULL,NULL),(9629476,'Moreno Borja',NULL,NULL),(9634132,'Hemanth M. Rao',1983,NULL),(9636804,'Bo Hu',1988,2017),(9636805,'Yu Zhang',NULL,NULL),(9640481,'Gregory Mann',NULL,NULL),(9640815,'Hiroshi Fukazawa',NULL,NULL),(9641149,'Shaokun Xiang',NULL,NULL),(9642493,'Sadie Stanley',2001,NULL),(9648255,'Sarkar Abbas',NULL,NULL),(9653419,'Suzanne Lumière',NULL,NULL),(9656960,'Manish Jhanjholia',NULL,NULL),(9658994,'Tanya Sokolova',NULL,NULL),(9664001,'Mitsuhiro Nanbara',NULL,NULL),(9664944,'Shelly Chopra Dhar',NULL,NULL),(9667981,'Gregory Elek',NULL,NULL),(9667982,'Matthew Kearney',NULL,NULL),(9668238,'M. Sreeramakrishna',NULL,NULL),(9668853,'Eli Brown',1999,NULL),(9672613,'Hideto Amari',NULL,NULL),(9675249,'Raoul McFarland',NULL,NULL),(9679561,'Park Ji-Young',NULL,NULL),(9681752,'Julia Fox',1990,NULL),(9682332,'Kristen Roupenian',NULL,NULL),(9684601,'Myha\'la Herrold',1996,NULL),(9685533,'Marina Acton',NULL,NULL),(9689976,'Kyle Edward Ball',NULL,NULL),(9703734,'Stephanie Perkins',NULL,NULL),(9712997,'Giulia Benite',NULL,NULL),(9712998,'Gabriel Moreira',NULL,NULL),(9712999,'Laura Rauseo',2007,NULL),(9715487,'Russell Adams',NULL,NULL),(9724879,'Mette Narrative',1991,NULL),(9729124,'John Meacham',NULL,NULL),(9729714,'Birane Ba',NULL,NULL),(9735579,'Rose Lumière',NULL,NULL),(9735580,'Marcel Koehler',NULL,NULL),(9735581,'Jeanne-Joséphine Lumière',NULL,NULL),(9741802,'Olivia Rouyre',NULL,NULL),(9746223,'Violet Nelson',NULL,NULL),(9746224,'Charlie Hannah',NULL,NULL),(9747141,'Akiela S.Y. Wang',NULL,NULL),(9752887,'Shada Ismaeel',NULL,NULL),(9753992,'Charlotte Carel',NULL,NULL),(9753993,'Madeline Carel',NULL,NULL),(9758076,'Rémy Nadeau-Aubin',NULL,NULL),(9776045,'Samantha Mugatsia',NULL,NULL),(9776608,'Honorine Crosnier',NULL,NULL),(9776962,'Travis Hodgkins',NULL,NULL),(9778386,'Rui Tenreiro',NULL,NULL),(9789764,'Teoman Khos',NULL,NULL),(9792820,'Haralan Alexandrov',NULL,NULL),(9796962,'Juan Márquez',1984,NULL),(9797682,'Shinji Ozawa',NULL,NULL),(9801961,'Adriana Holtz',NULL,NULL),(9803391,'Yasunori Kawauchi',NULL,NULL),(9805545,'Ashley Nicole Williams',1998,NULL),(9807493,'Sébastien Raybaud',NULL,NULL),(9807731,'Isa Mazzei',NULL,NULL),(9808366,'Ben Chandler',NULL,NULL),(9819444,'Roger Dale Floyd',2012,NULL),(9822321,'Denis Chobanov',NULL,NULL),(9822497,'Seung-hee Yoo',NULL,NULL),(9823370,'Kai Wes',NULL,NULL),(9827373,'Ian Cooper',NULL,NULL),(9831079,'Akin Aksu',1986,NULL),(9833473,'Megan du Plessis',NULL,NULL),(9840359,'Milo Tissone',NULL,NULL),(9844093,'George Dewey',NULL,NULL),(9844100,'Alyssa Brindley',NULL,NULL),(9846718,'Annie Laks',NULL,NULL),(9846826,'Ted Dubost',NULL,NULL),(9853356,'Víctor Santos',NULL,NULL),(9858130,'Warren Lipka',NULL,NULL),(9858131,'Spencer Reinhard',NULL,NULL),(9858133,'Eric Borsuk',NULL,NULL),(9858585,'Mélanie Rover',NULL,NULL),(9858586,'Jacques Borderie',NULL,NULL),(9858587,'David Rey',NULL,NULL),(9859585,'Vilhelm Blomgren',NULL,NULL),(9860935,'Dylan Robert',2000,NULL),(9860936,'Kenza Fortas',NULL,NULL),(9860937,'Idir Azougli',NULL,NULL),(9860938,'Lisa Amedjout',NULL,NULL),(9861460,'Maginan',NULL,NULL),(9861461,'Aadhavan Theetchanya',NULL,NULL),(9862836,'Christine Leunens',1964,NULL),(9862858,'Zain Al Rafeea',2004,NULL),(9862859,'Yordanos Shiferaw',NULL,NULL),(9862860,'Boluwatife Treasure Bankole',NULL,NULL),(9865565,'Izaac Wang',2007,NULL),(9869437,'Elliott Fullam',NULL,NULL),(9869491,'Joana Antonin',NULL,NULL),(9869492,'Rosario Curiel',NULL,NULL),(9869493,'Judit Piulats',NULL,NULL),(9875384,'Milena Smit',1996,NULL),(9877392,'Roman Griffin Davis',2007,NULL),(9878616,'Michelle Keserwany',NULL,NULL),(9889948,'Chao Fan',NULL,NULL),(9889952,'Dongyan Fu',NULL,NULL),(9890028,'Hua Lun',NULL,NULL),(9891599,'Mackenzie Graham',NULL,NULL),(9896284,'Murray Paterson',NULL,NULL),(9896403,'David Litvak',NULL,NULL),(9902965,'Daisy',NULL,NULL),(9910224,'Gabriela Núñez',NULL,NULL),(9912452,'Sharon Elek',NULL,NULL),(9912453,'Sarah Hoover',NULL,NULL),(9912940,'Michael Abela',NULL,NULL),(9912941,'Brendan Archer',NULL,NULL),(9912942,'Joshua Barragan',NULL,NULL),(9913021,'Yvera',NULL,NULL),(9918681,'Vitor Cafaggi',NULL,NULL),(9918682,'Lu Cafaggi',NULL,NULL),(9921711,'Caden Finch',NULL,NULL),(9924187,'John Hart',NULL,NULL),(9926250,'Matthew Rogers',NULL,NULL),(9936180,'Saurabh H. Dikshit',NULL,NULL),(9937520,'Javon \'Wanna\' Walton',2006,NULL),(9940627,'Kim Soo-Kyung',NULL,NULL),(9946376,'Lee Do-hyun',1995,NULL),(9948845,'Diego Cortina Autrey',NULL,NULL),(9951474,'Shulamith Hareven',NULL,NULL),(9964894,'Brycen Hall',NULL,NULL),(9967933,'Owen Brady',NULL,NULL),(9974256,'Benjamin Evan Ainsworth',NULL,NULL),(9982294,'Sally Thorne',NULL,NULL),(9982380,'Gabriel Sky',NULL,NULL),(9982544,'Khadijha Red Thunder',NULL,NULL),(9984203,'Alexander Weinstein',NULL,NULL),(9985727,'Carlos Peralta',NULL,NULL),(9987234,'Michael Weist',NULL,NULL),(9990915,'Kazuki Okamura',NULL,NULL),(9991049,'Jason Micallef',NULL,NULL),(9992630,'Karin Cherches',NULL,NULL),(9992659,'Daniyar Alshinov',1987,NULL); +/*!40000 ALTER TABLE `People` ENABLE KEYS */; +UNLOCK TABLES; +/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; + +/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; +/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; +/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; +/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; + +-- Dump completed on 2023-09-28 10:32:19 diff --git a/bechdel_er_diagram.png b/bechdel_er_diagram.png new file mode 100644 index 0000000..318146a Binary files /dev/null and b/bechdel_er_diagram.png differ diff --git a/figures.key b/figures.key new file mode 100644 index 0000000..6f1d1e5 Binary files /dev/null and b/figures.key differ diff --git a/flask_config.json b/flask_config.json new file mode 100644 index 0000000..8129705 --- /dev/null +++ b/flask_config.json @@ -0,0 +1,4 @@ +{ + "BASIC_AUTH_USERNAME": "ironhack", + "BASIC_AUTH_PASSWORD": "ilovedata" +} \ No newline at end of file diff --git a/flask_config.template.json b/flask_config.template.json new file mode 100644 index 0000000..f0fac0c --- /dev/null +++ b/flask_config.template.json @@ -0,0 +1,4 @@ +{ + "BASIC_AUTH_USERNAME": "myusername", + "BASIC_AUTH_PASSWORD": "mypassword" +} \ No newline at end of file diff --git a/flask_tutorial.ipynb b/flask_tutorial.ipynb new file mode 100644 index 0000000..723c95e --- /dev/null +++ b/flask_tutorial.ipynb @@ -0,0 +1,1210 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Create a REST API with Flask to expose the data\n", + "Tutorial created by [Thomas Belhalfaoui](https://www.linkedin.com/in/belhalfaoui/?originalSubdomain=fr) for [Ironhack](https://www.ironhack.com/)." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 1. Very quick introduction to HTTP\n", + "\n", + "What happens when you type the address of a Website in your browser?\n", + "\n", + "\n", + "\n", + "Well, there is a program that runs indefinitely on some remote computer (called Web server application).\n", + "\n", + "> Be careful: the word _server_ has actually two different meanings:\n", + "> * The server machine,\n", + "> * The server application (a program that runs on this machine).\n", + "\n", + "The address (URL) you enter in the browser (e.g. `http://bechdeltest.com:8080/page1`) contains several elements, among which the most important ones are:\n", + "* The **hostname** or **domain** (`bechdeltest.com`), which gets converted to an IP address (`208.113.152.224`). You can also directly write the IP address instead of the hostname. The hostname or IP address is used to find the **server machine** among all machines on the Internet.\n", + "\n", + "* The **port number** (`8080`), directs traffic to the **server application** among all applications on the server machine.\n", + "\n", + "* The **route** (`/page1`), finds the right **function** that will generate the page, among all functions coded in the server application.\n", + "\n", + "When you (you are called the **client**) type the URL in a browser, the corresponding function of the corresponding application is called and it returns some text. This text is actually HTML code that is then interpreted by your browser as a page and displayed to you!" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 2. Create a simple Web server with Flask" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: Flask in /Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages (3.0.3)\n", + "Requirement already satisfied: Werkzeug>=3.0.0 in /Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages (from Flask) (3.0.3)\n", + "Requirement already satisfied: Jinja2>=3.1.2 in /Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages (from Flask) (3.1.4)\n", + "Requirement already satisfied: itsdangerous>=2.1.2 in /Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages (from Flask) (2.2.0)\n", + "Requirement already satisfied: click>=8.1.3 in /Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages (from Flask) (8.1.7)\n", + "Requirement already satisfied: blinker>=1.6.2 in /Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages (from Flask) (1.8.2)\n", + "Requirement already satisfied: MarkupSafe>=2.0 in /Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages (from Jinja2>=3.1.2->Flask) (2.1.5)\n", + "\n", + "\u001b[1m[\u001b[0m\u001b[34;49mnotice\u001b[0m\u001b[1;39;49m]\u001b[0m\u001b[39;49m A new release of pip is available: \u001b[0m\u001b[31;49m23.2.1\u001b[0m\u001b[39;49m -> \u001b[0m\u001b[32;49m24.0\u001b[0m\n", + "\u001b[1m[\u001b[0m\u001b[34;49mnotice\u001b[0m\u001b[1;39;49m]\u001b[0m\u001b[39;49m To update, run: \u001b[0m\u001b[32;49mpython3 -m pip install --upgrade pip\u001b[0m\n", + "Note: you may need to restart the kernel to use updated packages.\n" + ] + } + ], + "source": [ + "pip install Flask\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 2.1. Very first example\n", + "\n", + "Let's create a Python file that will contain our server. Call it `app1.py` and fill it with the following code:\n", + "```python\n", + "from flask import Flask\n", + "\n", + "app = Flask(__name__)\n", + "\n", + "@app.route(\"/\")\n", + "def hello_world():\n", + " return \"Hello!\"\n", + "```\n", + "\n", + "Let's try it first!\n", + "1. Open a terminal.\n", + "2. Activate a virtual environment if you have one (e.g. type `virtualenv venv/bin/activate` if your environment is in the `venv` folder). In any case, make sure that when you type `python` in your terminal, it is the right version of Python that shows up.\n", + "3. Type: \n", + "```bash\n", + "flask --app app1 run --port 8080\n", + "```\n", + "4. Open a browser and go to [http://localhost:8080/](http://localhost:8080/). The name `localhost` is a special host name: it is a shorthand that means \"your local computer\". You can also use the corresponding (special) IP address, which is 127.0.0.1: [http://127.0.0.1:8080/](http://127.0.0.1:8080/).\n", + "5. You should see a page with the word \"Hello\", which is the string returned by the `hello_world` function!\n", + "\n", + "Let's take a look at what happened:\n", + "* The Python script `app1.py` is running indefinitely. It means that if you want to stop it, you have to hit CTRL+C (also CTRL on Macs, not Command) to kill it.\n", + "* With the `--port 8080` option, we chose the port we want to use. The port number must be unique on a machine (you cannot have two programs with the same port number). It is used from the outside when somebody connects to your computer, so that it knows which program to route the call to. This it why we concatenate the port number to the URL (or IP address),separated by a colon (e.g. `localhost:8080`). The default Web port is 80, so these two are equivalent: just `localhost` or `localhost:80`.\n", + "\n", + "Let's analyze the content of the `app1.py` file.\n", + "* First, we see a global variable `app = Flask(__name__)`. It is an object which refers to our Flask application (the one that we run with the `flask` command). On a side note, `__name__` is a special Python variable that contains the name of the module (here `app1` because the file is named `app1.py`). We pass this name to Flask, so that the name of the application is also `app1`.\n", + "* Then, the line `@app.route(\"/\")` calls a method of `app` to declare a route. Actually, the `@` in Python sign means it is a _decorator_: it applies to the function that is defined just below and gives it some information. In this case, this is how we declare the mapping between the route `/` and the `hello_world` function.\n", + "* The route `/` is a special route called the _root_ of the server. It means that by default, when you just enter the URL of the server followed by nothing (or just by `/`), the function mapped to it (here `hello_world`) will be called. It is the homepage of a website." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 2.2. Create another route\n", + "Tip: You can add the `--debug` argument when you run Flask (e.g. `flask --app app1 run --port 8080 --debug`). Then as soon as you modify `app1.py`, the Flask will reload it automatically. Otherwise, you would have to kill Flask (CTRL+C from the terminal) and rerun it.\n", + "\n", + "Now, let's add a new `morning` route:\n", + "```python\n", + "@app.route(\"/morning\")\n", + "def good_morning():\n", + " return \"Good morning!\"\n", + "```\n", + "Go to [http://localhost:8080/morning](http://localhost:8080/morning). You should see a blank page with \"Good morning!\". " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 2.3. Route parameters" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### 2.3.1. One route parameter\n", + "What if we want to pass some infomation to the page? Or to say it differently: how to pass an argument to the `hello` function?\n", + "\n", + "Let's add a new `evening` route:\n", + "```python\n", + "@app.route(\"/evening/\")\n", + "def evening(firstname):\n", + " return f\"Good evening, {firstname}!\"\n", + "```\n", + "Then go to http://localhost:8080/evening/Andy. You should see a blank page with \"Good evening, Andy!\".\n", + "\n", + "What we did here is define a parameter `firstname` with ``. What is written in the URL after the slash gets automatically passed to the `good_evening` function through the `firstname` argument. We can then use its value, for instance to print it." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### 2.3.2. Multiple route parameters\n", + "\n", + "Of course, we can add as many parameters as we want on the same route. Let's try this:\n", + "```python\n", + "@app.route(\"/greetings//\")\n", + "def greetings(period_of_day, firstname):\n", + " return f\"Good {period_of_day}, {firstname}!\"\n", + "```\n", + "Go to [http://localhost:8080/greetings/afternoon/Andy](http://localhost:8080/greetings/afternoon/Andy).\n", + "\n", + "NB: What happens if you go to [http://localhost:8080/greetings/](http://localhost:8080/greetings/) or [http://localhost:8080/greetings/evening](http://localhost:8080/greetings/evening)?\n", + "\n", + "It shows a _404 Not Found_ error. So we can see that **route parameters are manadatory**, i.e. the route does not exist if you don't specify all route parameters." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### 2.3.3. Non-string route parameters\n", + "Last example: we want to create a route that computes the sum of two integers. By default, the route arguments are strings. But we can tell Flask to convert them to another type, here integer.\n", + "\n", + "```python\n", + "@app.route(\"/add//\")\n", + "def add(first, second):\n", + " return str(first + second)\n", + "```\n", + "Go to http://localhost:8080/add/3/5 and you should see the result.\n", + "\n", + "NB: What happens if you go to [http://localhost:8080/add/3/hello](http://localhost:8080/add/3/hello)? Well, Flask tries to convert `hello` to an integer but obviously fails. So it returns again a _404 Not Found_ error without even calling the `add` function." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 2.4. URL parameters" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### 2.4.1. First (optional) URL parameter\n", + "What if we want to add some optional parameters to a route?\n", + "\n", + "We have just seen that it is impossible to achieve with route parameters, since they are mandatory. This is one reason to look at _URL parameters_ (sometimes also called _query parameters_).\n", + "\n", + "Let's add the following function and route:\n", + "```python\n", + "@app.route(\"/afternoon\")\n", + "def good_afternoon():\n", + " firstname = request.args['firstname']\n", + " return f\"Good morning {firstname}!\"\n", + "```\n", + "Go to http://localhost:8080/afternoon?firstname=Andy and you should see the result.\n", + "\n", + "So what is this weird URL? Well, everything after the question mark (`?`) is what is called _URL parameters_.\n", + "\n", + "Yes, the names are confusing. Everything before the question mark is the _route_ (hence _route parameters_)\n", + "and the whole address (everything before and after the question mark) is called the _URL_ (hence _URL parameters_).\n", + "\n", + "And the syntax of the URL parameters is simple: `name=value`. Then we use the special global variable `request` (that we have imported beforehand with `from flask import request`). It contains a dictionary called `request.args` that contains all the URL parameters (the name of the variable is the key in the dictionary and the value of the variable is the value in the dictionary).\n", + "\n", + "It tells us that the key `firstname` does not exist in the dictionary `request.args` -- which is indeed the case. How could we get rid of this error and make the parameter optional?\n", + "\n", + "It is simple, we just need to use the `get` method which works on dictionaries and allows us to specify a default value in the case when the key does not exist:\n", + "\n", + "```python\n", + "@app.route(\"/afternoon2\")\n", + "def good_afternoon2():\n", + " firstname = request.args.get('firstname', 'you')\n", + " return f\"Good morning, {firstname}!\"\n", + "```\n", + "Then, go to http://localhost:8080/afternoon2 and http://localhost:8080/afternoon2?firstname=Andy. Both should work as expected." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### 2.4.2. A side note on errors\n", + "When you go to [http://localhost:8080/afternoon](http://localhost:8080/afternoon), you see the following error:\n", + "> werkzeug.exceptions.BadRequestKeyError: 400 Bad Request: The browser (or proxy) sent a request that this server could not understand.\n", + "> KeyError: 'firstname'\n", + "\n", + "First, of course (as always in programming), errors are very important! They are here to help you understand what went wrong. So don't forget to look at them and try to understand them.\n", + "\n", + "Then, notice that you see the error it two different places:\n", + "* In the terminal where you started Flask (this is the **server**),\n", + "* And in your brower (this is the **client**).\n", + "\n", + "Actually, the error is displayed in the browser only because you ran Flask with the `--debug` option. If you remove it, then you only get a _400 Bad Request_ error (try it!).\n", + "\n", + "This is because in real life (in production), for security reasons, we do not want to give too much information to the client about the internals of our code. Indeed, it would give information to an attacker and may ease their work in trying to attack our server. Or it may reveal sentitive information from our code that we do not want to expose.\n", + "\n", + "But, in any case, the errors are always displayed in the server logs (i.e. in the terminal). This is where you should always look :)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### 2.4.2. Multiple URL parameters\n", + "Of course, now we would like to add multiple URL parameters. It is fairly easy:\n", + "\n", + "```python\n", + "@app.route(\"/substract\")\n", + "def difference():\n", + " first = int(request.args.get('first', '0'))\n", + " second = int(request.args.get('second', '0'))\n", + " return str(first - second)\n", + "```\n", + "When you go to [http://localhost:8080/substract?first=15&second=4](http://localhost:8080/substract?first=15&second=4) you should see the result.\n", + "\n", + "We can check that parameters are indeed optional: if we omit one of them, it is set to the default value, which here is zero.\n", + "\n", + "Make sure it works by going to [http://localhost:8080/substract?second=5](http://localhost:8080/substract?second=5) or even [http://localhost:8080/substract](http://localhost:8080/substract).\n", + "\n", + "You probably noticed the new character `&` which is used to separate the two parameters. This is how we can add as many URL parameters as we want, separated by `&`, e.g. `name1=value1&name2=value2&name3=value3`.\n", + "\n", + "Notice also that the URL parameters are also strings. But this time, we have to make the conversion from string to integer manually, with the `int` function (there is no way to make Flask do it automatically)." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 2.5. From Web server to API\n", + "\n", + "What is the difference between the Web server we just created and an API? Well, there is (almost) none.\n", + "\n", + "> **An API is actually a Web server that, instead of returning some text (which is easy to understand for a human), it returns some data in a format that is easy to understand for another program (e.g. JSON)**.\n", + "\n", + "On a side note, API means _Application Programming Interface_.\n", + "\n", + "To rephrase it, a classical Web server is machine-to-human communication, whereas an API is machine-to-machine communication. The API aims at being called by another program to get some information.\n", + "\n", + "The idea is very simple: we create a Web server (same steps as before), but instead of returning text, we return a dictionary. Flask converts auomatically this dictionary into JSON (i.e. into the text version of the dictionary).\n", + "\n", + "Let's add a route to our Flask application:\n", + "\n", + "```python\n", + "@app.route(\"/hello\")\n", + "def hello_api():\n", + " return {\"message\": \"Hello!\", \"hey\": \"I'm an API!\"}\n", + "```\n", + "\n", + "Of course, you can go to you brower, type http://localhost:8080/hello and see the result in JSON format.\n", + "\n", + "But there is more. The whole purpose of the API is that we can call it from another program. So let's try! We will call the API from here, from our Jupyter Notebook, using the `requests` library (the same you would use for instance to get any Web page content if you do some scraping)." + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "ename": "ModuleNotFoundError", + "evalue": "No module named 'requests'", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mModuleNotFoundError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[3], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m \u001b[38;5;21;01mrequests\u001b[39;00m\n\u001b[1;32m 3\u001b[0m response \u001b[38;5;241m=\u001b[39m requests\u001b[38;5;241m.\u001b[39mget(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mhttp://localhost:8080/hello\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 5\u001b[0m \u001b[38;5;66;03m# The `response` object contains all the information about the response.\u001b[39;00m\n\u001b[1;32m 6\u001b[0m \u001b[38;5;66;03m# Let's look first at the raw text (the same as the one we see in the browser)\u001b[39;00m\n", + "\u001b[0;31mModuleNotFoundError\u001b[0m: No module named 'requests'" + ] + } + ], + "source": [ + "import requests\n", + "\n", + "response = requests.get(\"http://localhost:8080/hello\")\n", + "\n", + "# The `response` object contains all the information about the response.\n", + "# Let's look first at the raw text (the same as the one we see in the browser)\n", + "response.text" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'hey': \"I'm an API!\", 'message': 'Hello!'}" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# The Requests library can automatically convert this text back into a Python dictionary\n", + "result = response.json()\n", + "result" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "\"I'm an API!\"" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Then we can get the value of each field as we want.\n", + "result['hey']" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 3. A REST API to expose my data\n", + "\n", + "Here is our scenario:\n", + "* We collected some data and put it into a database (could be also multiple databases, possibly from different technologies).\n", + "* We want to create an API that anyone from the \"outside\" can call to get our data in a clean and usable form (it can be someone from another team in our company or anyone external in the case of open data).\n", + "\n", + "Our API will:\n", + "* Retrieve the data from whatever database it is stored in,\n", + "* Possibly transform it: merge, aggregate, filter.\n", + "* Format it in a way that is easy to understand for someone external." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 3.1. Presentation of the Bechdel dataset\n", + "\n", + "In this part of the tutorial, we will work on the Bechdel database. It is a mix of two data sources:\n", + "* The Bechdel test dataset: https://bechdeltest.com\n", + "* A subset of the IMDB datasets: https://developer.imdb.com/non-commercial-datasets/\n", + "\n", + "The dataset contains around 10 000 movies (or TV show episodes), along with the people related to it (actors and actresses, film directors, etc.). Each movie is given a rating from 0 to 3 which corresponds to number of criteria that the movie fulfills.\n", + "\n", + "As a reminder, the Bechdel test, named after the American cartoonist Alison Bechdel, is a measure of the representation of women in a film (or other fiction). The test asks whether the film:\n", + "1. Has at least two (named) women characters\n", + "2. Who talk to each other\n", + "3. About something other than a man.\n", + "More on this on Wikipedia: https://en.wikipedia.org/wiki/Bechdel_test\n", + "\n", + "Here is the Entity-Relation (ER) diagram of the database:\n", + "\n", + "" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 3.2. Import the data into a database\n", + "\n", + "A MySQL dump of the data is in the [bechdel.sql](bechdel.sql) file, in the form of SQL queris (`CREATE`, `INSERT`, ...).\n", + "\n", + "To import it into your local MySQL database, choose your favorite options (see the SQL lesson). Here are two possible ones:\n", + "\n", + "Option 1 - Use _MySQL Workbench_:\n", + "* Connect to your local MySQL server (which must be running),\n", + "* Choose _Server_ > _Data import_ > _Import from self-contained file_ and choose the `bechdel.sql` file.\n", + "* In _Default target schema_ click _New_ and name it `bechdel`.\n", + "* Choose _Start import_.\n", + "\n", + "Option 2 - In a terminal:\n", + "```bash\n", + "echo \"CREATE DATABASE bechdel;\" | mysql -u root -p\n", + "mysql -u root -p bechdel < bechdel.sql\n", + "```\n", + "Replace `root` by the username of your database if different. You can remove the `-p` if your database does not have a password.\n", + "\n", + "You should obtain the 5 tables presented above. You can check it by generating an ER diagram (e.g. with the _reverse-engineer_ feature in MySQL Workbench) and comparing it to the one above." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 3.3. What is a _REST_ API? What does it mean in our case?\n", + "\n", + "The goal of a REST API is to expose our data in an easy way for someone to retrieve. REST API is about conventions, so that everyone can understand easily how it works. But not all of them are strict nor are they written in a book. So the way that we present it here is one possible choice, but other options may be also valid, as long as they make sense.\n", + "\n", + "So the most important thing is to define _resources_ that will be exposed. Note that:\n", + "* Each resource type will have its own route. In our case:\n", + " * `/movies` for movies,\n", + " * `/people` for people.

\n", + "\n", + "* The REST resources do not necesserily have to match the entities (i.e. tables) from the SQL database (oftentimes, we will join several SQL tables together to create one REST resource). This is because:\n", + " * SQL is about **optimizing storage** (do not store redundant information),\n", + " * Whereas REST API is about **optimizing readability** (present the information in the most easy-to-use fashion).

\n", + "\n", + "* Usually, the same route is used to retrieve all resources of a given type or just a single one. For instance:\n", + " * Calling `/movies` will return all movies,\n", + " * Calling `/movies/53825` will return the movie with ID `53825` (yes, the convention is to keep _movies_ in the plural form, even if it returns only a single one)." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 3.4. Before we start: how to retrieve the data from the SQL database?\n", + "\n", + "The first thing we need to do is to find how to execute SQL queries from Python, to get the data we need.\n", + "\n", + "You may have seen the Pandas `read_sql` function, which is very handy when it comes to simply getting a whole SQL table into a Pandas dataframe. Sadly, it will be of no use here, since:\n", + "* Sometimes, we will need only one row of the table,\n", + "* We will need to make joins (to get all the information about movies or people).\n", + "\n", + "So let's use another library: `pymysql`. Of course, you need to install it first (`pip install pymysql` or `conda install pymysql` from a terminal, whichever package manager you are using).\n", + "\n", + "> NB: We could have used another library like `sqlalchemy`, which is called an ORM. But it would add yet another layer of abstraction, so we prefer to avoid it.\n", + "\n", + "Here is a simple example of how to run an SQL query with `pymysql`:" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Collecting pymysql\n", + " Obtaining dependency information for pymysql from https://files.pythonhosted.org/packages/0c/94/e4181a1f6286f545507528c78016e00065ea913276888db2262507693ce5/PyMySQL-1.1.1-py3-none-any.whl.metadata\n", + " Downloading PyMySQL-1.1.1-py3-none-any.whl.metadata (4.4 kB)\n", + "Downloading PyMySQL-1.1.1-py3-none-any.whl (44 kB)\n", + "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m45.0/45.0 kB\u001b[0m \u001b[31m1.8 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[?25hInstalling collected packages: pymysql\n", + "Successfully installed pymysql-1.1.1\n", + "\n", + "\u001b[1m[\u001b[0m\u001b[34;49mnotice\u001b[0m\u001b[1;39;49m]\u001b[0m\u001b[39;49m A new release of pip is available: \u001b[0m\u001b[31;49m23.2.1\u001b[0m\u001b[39;49m -> \u001b[0m\u001b[32;49m24.0\u001b[0m\n", + "\u001b[1m[\u001b[0m\u001b[34;49mnotice\u001b[0m\u001b[1;39;49m]\u001b[0m\u001b[39;49m To update, run: \u001b[0m\u001b[32;49mpython3 -m pip install --upgrade pip\u001b[0m\n", + "Note: you may need to restart the kernel to use updated packages.\n" + ] + } + ], + "source": [ + "pip install pymysql" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import pymysql\n", + "import os\n", + "\n", + "db_conn = pymysql.connect(\n", + " host=\"localhost\",\n", + " user=\"root\", # add also password=\"yourpassword\", if you have set up a password on your MySQL database\n", + " password=\"warp4818\", # or this if in windows and you have setup an environment variable for SQL\n", + " database=\"bechdel\",\n", + " cursorclass=pymysql.cursors.DictCursor # This makes pymysql return the result in a nice dictionary form\n", + ")\n", + "\n", + "# A cursor is an object that we can execute query on and that will handle data fetching for us.\n", + "# NB: A cursor is specific to a query and should NOT be reused for another query.\n", + "#\n", + "# The `with` block is a handy way of automatically making the cursor close as soon as we exit the block\n", + "with db_conn.cursor() as cursor:\n", + " cursor.execute(\"SELECT * FROM Movies LIMIT 1\")\n", + " # Here `fetchone` retrieves only the first row from the results (in the form of a dictionary).\n", + " # So we should only use it with queries that return 1 row (otherwise we would waste time querying multiple\n", + " # rows and throwing them away).\n", + " result = cursor.fetchone()\n", + "\n", + "# Don't forget to close the connection as soon as you finished. Otherwise, it will unnecessarily use\n", + "# resources on the MySQL database.\n", + "db_conn.close()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'movieId': 1,\n", + " 'movieType': 'short',\n", + " 'primaryTitle': 'Carmencita',\n", + " 'originalTitle': 'Carmencita',\n", + " 'isAdult': 1,\n", + " 'startYear': 1894,\n", + " 'endYear': None,\n", + " 'runtimeMinutes': '1'}" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# The result is indeed a dictionary that represents one row from the Movies table.\n", + "result" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: pymysql in /Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages (1.1.1)\n", + "\n", + "\u001b[1m[\u001b[0m\u001b[34;49mnotice\u001b[0m\u001b[1;39;49m]\u001b[0m\u001b[39;49m A new release of pip is available: \u001b[0m\u001b[31;49m23.2.1\u001b[0m\u001b[39;49m -> \u001b[0m\u001b[32;49m24.0\u001b[0m\n", + "\u001b[1m[\u001b[0m\u001b[34;49mnotice\u001b[0m\u001b[1;39;49m]\u001b[0m\u001b[39;49m To update, run: \u001b[0m\u001b[32;49mpython3 -m pip install --upgrade pip\u001b[0m\n", + "Note: you may need to restart the kernel to use updated packages.\n" + ] + } + ], + "source": [ + "pip install pymysql" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 4. The first real API route! 🙌\n", + "\n", + "### 4.1. Return a single movie based on its ID\n", + "Now, let's wrap the SQL code in a Flask API.\n", + "\n", + "Create a new `app2.py` file:\n", + "\n", + "```python\n", + "from flask import Flask\n", + "import pymysql\n", + "\n", + "app = Flask(__name__)\n", + "\n", + "@app.route(\"/movies/\")\n", + "def movie(movie_id):\n", + " db_conn = pymysql.connect(host=\"localhost\", user=\"root\", database=\"bechdel\",\n", + " cursorclass=pymysql.cursors.DictCursor)\n", + " with db_conn.cursor() as cursor:\n", + " cursor.execute(\"SELECT * FROM Movies WHERE movieId=%s\", (movie_id, ))\n", + " movie = cursor.fetchone()\n", + " db_conn.close() \n", + " return movie\n", + "```\n", + "Let's try it! Go to http://localhost:8080/movies/17009710 in your browser (or you can use `requests` in Python if you prefer). You should see JSON corresponding to the film _Anatomie d'une chute_ from Justine Triet. Looks good, doesn't it?\n", + "\n", + "> Maybe you noticed that we used the `%s` placeholder in the query instead of the movie ID, and that we gave the actual ID through the second parameter of the `execute` function (and **NOT** through direct string formatting or concatenation in Python!). This is for security reasons, to prevent SQL injections (more on this: https://en.wikipedia.org/wiki/SQL_injection).\n", + ">\n", + "> In short, if the user puts a weird movie ID (which is not an integer but addtional SQL syntax), it would be mixed with the rest of the query and result in displaying unwanted data or even deleting information. When you use the `execute` function, it isolates the parameters and makes sure it it safe." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 4.2. Add the Bechdel score\n", + "This is already good, but we are missing the Bechdel score (which is the whole purpose of this dataset)!\n", + "\n", + "How could we add it? Well, the simplest way is to add a `JOIN` in our query. Try to write it down (and test it in MySQL Workbench).\n", + "\n", + "Here is the answer (replace the `SELECT` query in `app2.py` with this one):\n", + "```sql\n", + "SELECT * FROM Movies M\n", + "JOIN Bechdel B ON B.movieId = M.movieId \n", + "WHERE M.movieId=%s\n", + "```\n", + "\n", + "> Tip: You can use triple double-quotes (e.g. `\"\"\"Blah blah\"\"\"`) in Python to create strings that spread across multiple lines." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 4.3. Add movie genre(s)\n", + "What about the movie genre(s)? Can we do the same as for the Bechdel score?\n", + "\n", + "Well... not really. Since one movie can have multiple genres, doing a `JOIN` would duplicate the data and this not what we want (e.g. for genre of the film, the title, year, etc. would be repeated). We want to add a `genre` field is a list (of strings).\n", + "\n", + "To do se, we will simply make another SQL query in Python. You can add this code in your route (just before closing the connection) and test it by going again to http://localhost:8080/movies/17009710:\n", + "\n", + "```python\n", + "with db_conn.cursor() as cursor:\n", + " cursor.execute(\"SELECT * FROM MoviesGenres WHERE movieId=%s\", (movie_id, ))\n", + " genres = cursor.fetchall()\n", + "movie['genres'] = [g['genre'] for g in genres]\n", + "```\n", + "\n", + "Notice the use of the `fetchall` function. It works the same as `fetchone` but is suitable for queries that return multiple rows: it fetches all the rows in a list (each row still being a dictionary).\n", + "\n", + "But be careful! Use `fetchall` only if the number of rows is not too big (typically a few dozens at most). Otherwise, for instance if you try `fetchall` on a `SELECT` query that returns 10 million rows, it will try to fetch them all at once: so it will most probably blow your MySQL server and/or your Flask application memory..." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 4.4. Add the people\n", + "\n", + "Now we can do the same with people (actors and actresses, directors, etc.).\n", + "\n", + "Try to write the Python and SQL code to make it work. Then you can compare to what we propose (code to be added at the end of the route, before closing the connection):\n", + "\n", + "```python\n", + "with db_conn.cursor() as cursor:\n", + " cursor.execute(\"\"\"\n", + " SELECT * FROM MoviesPeople MP\n", + " JOIN People P on P.personId = MP.personId\n", + " WHERE MP.movieId=%s\n", + " \"\"\", (movie_id, ))\n", + " people = cursor.fetchall()\n", + "movie['people'] = people\n", + "```\n", + "\n", + "Let's test it! http://localhost:8080/movies/17009710" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 4.5. Some cleanup and formatting\n", + "\n", + "You may have noticed that:\n", + "* Some `null` fields are returned. We would like to get rid of them.\n", + "* Some fields seem useless or redundant and could be removed:\n", + "* Some fields could be renamed for more clarity.\n", + "* Some fields could be added for more clarity.\n", + "\n", + "We choose to:\n", + "* Remove the `endYear` field which is very rarely filled and therefore rename `startYear` into simply `year`,\n", + "* Remove the `job` field which is either null or redundant with the `category` (renamed `role`). Instead, we could have chosen to build a field from both values (e.g. if `job`, which is more specific, is not null, then use `job` ; otherwise use `category`). We will leave this refinement to do by yourself if you want to.\n", + "* Rename `primaryTitle` into `englishTitle`, `rating` into `bechdelScore` and `primaryName` as `name`.\n", + "* Add a boolean `bechdelTest` field which is `True` if the movie passes the Bechdel test and `False` otherwise.\n", + "\n", + "To do so, the easiest way is to specify directly the fields we want to add and/or rename in the SQL queries.\n", + "\n", + "Let's replace the first (movie) query by this one:\n", + "```sql\n", + "SELECT\n", + " M.movieId,\n", + " M.originalTitle,\n", + " M.primaryTitle AS englishTitle,\n", + " B.rating AS bechdelScore,\n", + " M.runtimeMinutes,\n", + " M.startYear AS Year,\n", + " M.movieType,\n", + " M.isAdult\n", + "FROM Movies M\n", + "JOIN Bechdel B ON B.movieId = M.movieId \n", + "WHERE M.movieId=%s\n", + "```\n", + "\n", + "And replace the last (people) query by that one:\n", + "```sql\n", + "SELECT\n", + " P.personId,\n", + " P.primaryName AS name,\n", + " P.birthYear,\n", + " P.deathYear,\n", + " MP.job,\n", + " MP.category AS role\n", + "FROM MoviesPeople MP\n", + "JOIN People P on P.personId = MP.personId\n", + "WHERE MP.movieId=%s\n", + "```\n", + "\n", + "About the `null` fields, we can create a small function to remove them:\n", + "\n", + "```python\n", + "def remove_null_fields(obj):\n", + " return {k:v for k, v in obj.items() if v is not None}\n", + "```\n", + "\n", + "Then we can use this function in the first (movie) part:\n", + "```python\n", + "movie = remove_null_fields(movie)\n", + "```\n", + "And in the last (people) part:\n", + "```python\n", + "movie['people'] = [remove_null_fields(p) for p in people]\n", + "```" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 4.6. Handling errors\n", + "\n", + "What happens if you go to [http://localhost:8080/movies/999](http://localhost:8080/movies/999)?\n", + "\n", + "You get this error (in the terminal where you launched Flask from):\n", + "```\n", + " File \"app2.py\", line 32, in movie\n", + " movie = remove_null_fields(movie)\n", + " File \"app2.py\", line 8, in remove_null_fields\n", + " return {k:v for k, v in obj.items() if v is not None}\n", + "AttributeError: 'NoneType' object has no attribute 'items'\n", + "```\n", + "\n", + "It is important to look at it closely to understand what it tells us.\n", + "\n", + "In the `movie` function, when we call `remove_null_fields`, the variable `movie` (called `obj` inside the `remove_null_fields` function) is `None` (and therefore `obj.items()` throws an error since we cannot do `.anything` on a `None`).\n", + "\n", + "But where does this `None` come from? Well, there is no movie with ID `999`. And if we look at [the documentation of the `fetchone` function](https://peps.python.org/pep-0249/#fetchone), we see that it returns `None` when the `SELECT` query returns no result - which is the case here.\n", + "\n", + "> NB: When any Python error occurs within the function in Flask, it returns by default a _500 Internal Error_, which roughly means: \"something went wrong on the server\".\n", + ">\n", + "> It is perfectly fine to do so if an _truly_ unexpected error happens. In this case, we should look at the logs in the terminal and try to find the cause.\n", + "\n", + "But here, it is perfectly normal and expected that someone queries the `/movies` route with an ID that does not exist. Therefore, we should return a _404 Not Found_ error, to tell that no corresponding resource has been found.\n", + "\n", + "We can do so very easily with:\n", + "```python\n", + "from flask import abort\n", + " ...\n", + "if not movie:\n", + " abort(404)\n", + "```" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 4.7. Authentication\n", + "\n", + "Our first route works well now, but even... too well! If we deploy it in production, then anybody could access the data. If the data is open data, then it is probably something we want. But if there is personal or sensitive data, then definitely, we want to restrict access to our API. How can we do so?\n", + "\n", + "Let's install a library called `Flask-BasicAuth` that serves that purpose (do a `pip install Flask-BasicAuth` or `conda install Flask-BasicAuth`).\n", + "\n", + "Then, we have to slightly change the beginning of our app:\n", + "\n", + "```python\n", + "from flask import Flask\n", + "from flask_basicauth import BasicAuth\n", + "\n", + "app = Flask(__name__)\n", + "app.config.from_file(\"flask_config.json\", load=json.load)\n", + "auth = BasicAuth(app)\n", + "```\n", + "\n", + "We also need to add, just after each `@app.route(...)`:\n", + "```python\n", + "@auth.required\n", + "```\n", + "\n", + "\n", + "Notice that we load a file called `flask_config.json`, which looks like this:\n", + "```json\n", + "{\n", + " \"BASIC_AUTH_USERNAME\": \"ironhack\",\n", + " \"BASIC_AUTH_PASSWORD\": \"ilovedata\"\n", + "}\n", + "```\n", + "\n", + "We chose to do so (instead of putting the credentials directly in the `app2.py` file) for security reasons. Indeed, we most probably would like to commit `app2.py` in a Git repository, but we do not want the credentials to be committed along with it.\n", + "\n", + "This way, we can add `flask_config.json` to our `.gitignore` file and keep it local.\n", + "\n", + "The best practice is to also create another file, say `flask_config.template.json` (this one we commit), which looks like:\n", + "```json\n", + "{\n", + " \"BASIC_AUTH_USERNAME\": \"myusername\",\n", + " \"BASIC_AUTH_PASSWORD\": \"mypassword\"\n", + "}\n", + "```\n", + "This way, the person who clones the repository simply has to duplicate and modify this template file.\n", + "\n", + "> NB: Instead of adding `@auth.required` for each route, we could also protect all routes at once, simply by adding one variable to the configuration file: `\"BASIC_AUTH_FORCE\": true`.\n", + ">\n", + "> See https://flask-basicauth.readthedocs.io for more information. " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 6. The second route: return all movies\n", + "\n", + "Now it is time to write the second route: `/movies` (without ID). We expect it to return all the movies that exist in our database.\n", + "\n", + "Of course, if you paid attention to what we said before, **you should NOT return all the almost 10K movies at once**! We will implement a pagination mechanism to batch the results.\n", + "\n", + "### 6.1. Pagination\n", + "\n", + "#### 6.1.1. First paginated route\n", + "Here is the simplest example that returns all movies with a pagination mechanism:\n", + "\n", + "```python\n", + "from flask import request\n", + " ...\n", + "\n", + "PAGE_SIZE = 100\n", + "\n", + "@app.route(\"/movies\")\n", + "def movies():\n", + " page = int(request.args.get('page', 0))\n", + " db_conn = pymysql.connect(host=\"localhost\", user=\"root\", database=\"bechdel\",\n", + " cursorclass=pymysql.cursors.DictCursor)\n", + " with db_conn.cursor() as cursor:\n", + " cursor.execute(\"\"\"\n", + " SELECT * FROM Movies\n", + " ORDER BY movieId\n", + " LIMIT %s\n", + " OFFSET %s\n", + " \"\"\", (PAGE_SIZE, page * PAGE_SIZE))\n", + " movies = cursor.fetchall()\n", + " db_conn.close()\n", + " return {'movies': movies}\n", + "```\n", + "\n", + "You can test it with:\n", + "* http://localhost:8080/movies\n", + "* http://localhost:8080/movies?page=1\n", + "* http://localhost:8080/movies?page=2\n", + "* etc.\n", + "\n", + "Notice a couple of important things:\n", + "* We cannot return a list with Flask (only a dictionary, that gets converted to JSON). This is why we need `{'movies': movies}` and not just `movies`.\n", + "\n", + "* We use two SQL clauses: `LIMIT` and `OFFSET`:\n", + " - `LIMIT` sets the number of results that are returned (i.e. PAGE_SIZE),\n", + " - `OFFSET` decides how many of the first items we skip (it is `page * PAGE_SIZE`).

\n", + "\n", + "* The order of the results in SQL is not guaranteed to be consistent from query to query. So the meaning of \"the X first items\" can change from query to query! This is why we must not forget the `ORDER` clause, so that items are always sorted the same way.\n", + "\n", + "* We use URL parameters instead of route parameters, i.e. we do `/movies?page=5` and not `/movies/5`. Of course, the first reason if to avoid confusion with the previous route `/movies/` that returns a single movie. But also in the REST paradigm, route parameters are reserved for actual resources (i.e. movies, not batches of movies).\n", + "\n", + "* The `page` parameter is optional. If not specified, then it defaults to `0`." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### 6.1.2. Enhancements to the pagination mechanism\n", + "\n", + "We can think of several enhancements to our pagination mechanism:\n", + "1. It is a good practice to **let the client choose the number of results per page** (i.e. page size). Of course, it cannot be larger than some maximum size, that we hardcode.\n", + "\n", + "2. Another good practice is to give the client:\n", + " * The URL they need to call to get the next page,\n", + " * The URL of the last page.\n", + "\n", + "Let's do it with this updated version of the `movies` route:\n", + "```python\n", + "import math\n", + "from flask import request\n", + " ...\n", + "\n", + "PAGE_SIZE = 100\n", + "\n", + "@app.route(\"/movies\")\n", + "def movies():\n", + " page = int(request.args.get('page', 0))\n", + " page_size = int(request.args.get('page_size', MAX_PAGE_SIZE))\n", + " page_size = min(page_size, MAX_PAGE_SIZE)\n", + "\n", + " db_conn = pymysql.connect(host=\"localhost\", user=\"root\", database=\"bechdel\",\n", + " cursorclass=pymysql.cursors.DictCursor)\n", + " with db_conn.cursor() as cursor:\n", + " cursor.execute(\"\"\"\n", + " SELECT * FROM Movies\n", + " ORDER BY movieId\n", + " LIMIT %s\n", + " OFFSET %s\n", + " \"\"\", (page_size, page * page_size))\n", + " movies = cursor.fetchall()\n", + "\n", + " with db_conn.cursor() as cursor:\n", + " cursor.execute(\"SELECT COUNT(*) AS total FROM Movies\")\n", + " total = cursor.fetchone()\n", + " last_page = math.ceil(total['total'] / page_size)\n", + "\n", + " db_conn.close()\n", + " return {\n", + " 'movies': movies,\n", + " 'next_page': f'/movies?page={page+1}&page_size={page_size}',\n", + " 'last_page': f'/movies?page={last_page}&page_size={page_size}',\n", + " }\n", + "```\n", + "\n", + "A couple of remarks:\n", + "* The function `math.ceil` returns the next integer (e.g. `math.ceil(3.1) = 4`), which is what we want to account for the potential last page (when the total number of items is not a multiple of the page size).\n", + "\n", + "* The `PAGE_SIZE` constant becomes `MAX_PAGE_SIZE`. It is both the default value if `page` is not given and the maximum value (this is why we take the `min`).\n", + "\n", + "* We get the total number of films with a separate (fairly fast) SQL `COUNT` query." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### 6.1.3. The real movies route with pagination\n", + "\n", + "Now take some time on your own to write a `/movies` route that combines:\n", + "* What we just saw about pagination,\n", + "* What we did before for the single-movie route (adding Bechdel score, people and genres).\n", + "\n", + "You will also add an `include_details` parameter which takes value `0` or `1` (default is `0`, i.e. skip the details) to let the user decide explicitly whether or not to include the people and the genres (but the Bechdel score will always be included). Indeed, the user may choose to skip the details to speed the query up.\n", + "\n", + "Later we will share a working example [app2_answers.py](app2_answers.py).\n", + "\n", + "Some remarks:\n", + "\n", + "* To retrieve people and genres, you may be tempted to make one SQL query per film. It is possible but hightly suboptimal in terms of time (there is a large overhead for each query). So the best option is to make a single query using `WHERE movieId IN (%s, %s, %s, %s)` to retrieve all people / genres that match the list of movie IDs.\n", + "\n", + "* Then you neeed to group the people (and genres) by movie ID, so that you can get them back all at once later on. To do so, we use `defaultdict` (more specifically `defaultdict(list)`). It is simply a dictionary but when a key does not exist, it acts as if it were there, with the default value `[]`. So you can always do `the_dict['somekey'].append(something)`." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 7. API documentation - SwaggerUI and OpenAPI\n", + "\n", + "> The **OpenAPI Specification** is a specification for a machine-readable interface definition language for describing, producing, consuming and visualizing web services (source: https://en.wikipedia.org/wiki/OpenAPI_Specification).\n", + "\n", + "We will use it to generate a Web page which will serve two purposes:\n", + "1. It is the **documentation** of the API for anyone who would like to use it.\n", + "2. One can **call** the API directly from this page with a nice visual interface.\n", + "\n", + "The specification can be written in JSON or YAML format. We chose [YAML](https://en.wikipedia.org/wiki/YAML) and we wrote it in this file: [static/openapi.yaml](static/openapi.yaml).\n", + "\n", + "We will use a popular tool called `Swagger` (which also happens to be the previous name of `OpenAPI`...), which is the nice Web page that we want. \n", + "\n", + "In Flask, we can (there are other ways of course) install `flask_swagger_ui` (`pip install flask_swagger_ui` or `conda install flask_swagger_ui`). Then we add these lines at the beginning of `app2.py`:\n", + "\n", + "```python\n", + "from flask_swagger_ui import get_swaggerui_blueprint\n", + "...\n", + "swaggerui_blueprint = get_swaggerui_blueprint(\n", + " base_url='/docs',\n", + " api_url='/static/openapi.yaml',\n", + ")\n", + "app.register_blueprint(swaggerui_blueprint)\n", + "```\n", + "\n", + "Two remarks:\n", + "* The files in the `static` folder are automatically served by Flask. This is why we put our `openapi.yaml` file there.\n", + "\n", + "* It adds a new `/docs` route that will display the Swagger UI. Note that it is not protected with authentication (which is probably desirable, since we want the documentation to remain open).\n", + "\n", + "Now, let's try! Go to http://localhost:8080/docs and play with the UI!\n", + "

\n", + "\n", + "We recommend you take some time to read and understand the `openapi.yaml` file.\n", + "\n", + "Note that:\n", + "* The `info` block contains general information about the API (name, descripton, etc.)\n", + "\n", + "* In the `paths` block, each route is described by its own sub-block, with its expected inputs and outputs, but also the possible errors.\n", + "\n", + "* The `components` block contains objects (here `Movie` and `Person`) that can be reused multiple times (e.g. with `$ref: '#/components/schemas/Movie'`). It avoids duplicating the description of the objects.\n", + "\n", + "You can copy-paste the contents of `openapi.yaml` into https://editor.swagger.io, which is a very nice tool to facilitate the creation and edition of Open API specification files (which is otherwise quite tedious...). It will also tell you where the mistake is if you make any (which is very handy!)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 9. Calling the API with Requests\n", + "\n", + "Now, if we put ourselves in the shoes of an external user that would like to call our API from their Program, they can for instance write the following code in Python.\n", + "\n", + "But the whole point of making a REST API is that it is language-agnostic. It means that the client can use any language they want (not necessarily the one _you_ used to develop it) to make the query. So it makes your data available to anyone :)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [ + { + "ename": "ModuleNotFoundError", + "evalue": "No module named 'requests'", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mModuleNotFoundError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[1], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m \u001b[38;5;21;01mrequests\u001b[39;00m\n\u001b[1;32m 2\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01mrequests\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mauth\u001b[39;00m \u001b[38;5;28;01mimport\u001b[39;00m HTTPBasicAuth\n\u001b[1;32m 4\u001b[0m response \u001b[38;5;241m=\u001b[39m requests\u001b[38;5;241m.\u001b[39mget(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mhttp://localhost:8080/movies?page=50&page_size=3\u001b[39m\u001b[38;5;124m\"\u001b[39m,\n\u001b[1;32m 5\u001b[0m auth\u001b[38;5;241m=\u001b[39mHTTPBasicAuth(username\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mironhack\u001b[39m\u001b[38;5;124m\"\u001b[39m, password\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124milovedata\u001b[39m\u001b[38;5;124m\"\u001b[39m))\n", + "\u001b[0;31mModuleNotFoundError\u001b[0m: No module named 'requests'" + ] + } + ], + "source": [ + "import requests\n", + "from requests.auth import HTTPBasicAuth\n", + "\n", + "response = requests.get(\"http://localhost:8080/movies?page=50&page_size=3\",\n", + " auth=HTTPBasicAuth(username=\"ironhack\", password=\"ilovedata\"))\n", + "response_json = response.json()\n", + "response_json['movies']" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 9. Final considerations\n", + "\n", + "### 9.1. Possible improvements\n", + "This is of course a simplistic API and a lot could be improved.\n", + "\n", + "We leave it as en exercice for you to practice :)\n", + "\n", + "#### 9.1.1. Other routes\n", + "It would be nice to add two other routes to retrieve people, the same way we did it for movies: `/people` and `/people/`.\n", + "\n", + "#### 9.1.2. Filtering\n", + "A nice feature to have would be to allow filtering in `/movies` (resp. `/people`) route. Instead of returning all movies (resp. people), the user could choose to filter on one or multiple fields.\n", + "\n", + "For instance, a call could look like:\n", + "```\n", + "http://localhost:8080/movies?originalTitle=anatomie&year=2023\n", + "```\n", + "\n", + "Of course, it remains to be defined how the filtering exactly bevaves. We could for instance use:\n", + "* Exact match for integer fields like year,\n", + "* And \"contains\" for string fields like originalTitle (in SQL it would be: `originalTitle LIKE %anatomie%`).\n", + "\n", + "#### 9.1.3. Read-write\n", + "Our API is read-only. But we may want to allow some people to add or update data.\n", + "\n", + "To do so, we would create new routes with different _methods_. All the routes we created so far use the `GET` method. But there are other ones:\n", + "* `POST` and `PUT` are used to create or update an object.\n", + "* `DELETE` is used to delete an object.\n", + "\n", + "HTTP methods can be seen as \"words\" that we put before the URL. In other words, when you type `http://localhost:8080/movies/17009710` in your browser, under the hood, it makes this HTTP query:\n", + "```\n", + "GET http://localhost:8080/movies/17009710\n", + "```\n", + "\n", + "So the same route name `/movies/` can be reused with another method, e.g. to update the movie or create a new one if not exists:\n", + "```\n", + "POST http://localhost:8080/movies/17009710\n", + "```\n", + "\n", + "In Flask, it would look like:\n", + "```python\n", + "@app.route(\"/movies/\", methods=[\"POST\"])\n", + "def post_movie(movie_id):\n", + "```\n", + "\n", + "### 9.2. Real-life production setup\n", + "Before actually deploying it in production, there would be some mandatory steps to follow.\n", + "\n", + "We mention the most important ones here, even if they are beyond the scope of this course.\n", + "\n", + "#### 9.2.1. Public binding\n", + "\n", + "By default, our API is \"bound\" to your local IP address (`127.0.0.1` aka `localhost`)\", which means it is only accessible from our computer.\n", + "\n", + "If we deploy it in production, we must \"open\" it to the outside world, i.e. \"bind\" it to the public IP address of your computer (or whatever server you deploy it to).\n", + "\n", + "Fortunately, there is a generic IP address that stands for your public one: `0.0.0.0`. So you just need to run:\n", + "```bash\n", + "flask --app app2 run --host 0.0.0.0 --port 8080\n", + "```\n", + "\n", + "#### 9.2.2. Real backend (WSGI)\n", + "You may have noticed a warning from Flask:\n", + "> WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.\n", + "\n", + "Indeed, the performance of the server we run with the `flask` command are quite poor and it is not reliable. It is optimized for debugging.\n", + "\n", + "In real life, we would use another server (in Python they are called WGSI). A popular one is **Gunigorn**, which we highly recommend. More about it: https://docs.gunicorn.org\n", + "\n", + "#### 9.2.3. HTTPS\n", + "\n", + "You may also have noticed that the API is in HTTP, not HTTPS. It means the connection between the server and the client is not encrypted, which is a *very bad practice*.\n", + "\n", + "Before putting the API in production, we must enable HTTPS.\n", + "\n", + "This part would typically be handled by Gunicorn (but first, you would need to generate a certificate). \n", + "\n", + "#### 9.2.4. Authentication\n", + "The _basic authentication_ we used (login and password) is not very secure. Indeed, everybody is using the same login and password.\n", + "\n", + "So the first mandatory step would be to create a separate login and password for each user. And then even switch to another type of authentication\n", + "that is more secure, such as [OAuth2](https://en.wikipedia.org/wiki/OAuth).\n", + "\n", + "#### 9.2.5. API versioning\n", + "What happens if you deploy your API and then decide to change a route (rename, change parameters, etc.)? Well, the code written by your client who calls your API brakes.\n", + "\n", + "To avoid this, it is important to version your API.\n", + "\n", + "What it simply means, is that instead of `http://localhost:8080/movies/17009710` you have something like `http://localhost:8080/v1/movies/17009710`.\n", + "\n", + "This way, you can have different versions in production at the same time. This gives some time to your clients to update their code. And eventually, you can shutdown the old versions, after having properly warned them." + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "venv", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.11.6" + }, + "orig_nbformat": 4 + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/http.png b/http.png new file mode 100644 index 0000000..e68139f Binary files /dev/null and b/http.png differ diff --git a/static/openapi.yaml b/static/openapi.yaml new file mode 100644 index 0000000..813781c --- /dev/null +++ b/static/openapi.yaml @@ -0,0 +1,168 @@ +openapi: 3.0.3 +info: + title: Bechdel dataset API + description: |- + This API exposes the Bechdel dataset. It is a mix of two data sources: + * The [Bechdel test dataset](https://bechdeltest.com): + * A subset of the [IMDB datasets](https://developer.imdb.com/non-commercial-datasets/) + + The dataset contains around 10 000 movies (or TV show episodes), along with the people related to it (actors and actresses, film directors, etc.). Each movie is given a rating from 0 to 3 which corresponds to number of criteria that the movie fulfills. + + As a reminder, the Bechdel test, named after the American cartoonist Alison Bechdel, is a measure of the representation of women in a film (or other fiction). The tests asks whether the film: + 1. Has at least two (named) women characters + 2. Who talk to each other + 3. About something other than a man. + + More on this [on Wikipedia](https://en.wikipedia.org/wiki/Bechdel_test) + contact: + email: your@email.here + license: + name: CC BY-NC 3.0 + url: https://creativecommons.org/licenses/by-nc/3.0/ + version: 1.0.0 +paths: + /movies/{movieId}: + get: + summary: Get a movie by its ID + description: Return all the information about a movie including its Bechdel score. + parameters: + - name: movieId + in: path + description: ID of the movie + example: 17009710 + required: true + schema: + type: string + responses: + '200': + description: OK + content: + application/json: + schema: + $ref: '#/components/schemas/Movie' + '404': + description: Movie not found + '401': + description: Unauthorized + '500': + description: Internal server error + security: + - api_auth: [] + /movies: + get: + summary: Get all movies + description: Return all the information about a movie including its Bechdel score. + parameters: + - name: page + in: query + example: 0 + description: Index of the page (used for pagination) + schema: + type: integer + - name: page_size + in: query + example: 100 + description: Number of movies per page (used for pagination) + schema: + type: integer + - name: include_details + in: query + example: 0 + description: Whether or not to include people and genres (0 or 1) + schema: + type: integer + responses: + '200': + description: OK + content: + application/json: + schema: + type: object + properties: + movies: + type: array + items: + $ref: '#/components/schemas/Movie' + next_page: + type: integer + example: 0 + last_page: + type: integer + example: 1000 + '401': + description: Unauthorized + '500': + description: Internal server error + security: + - api_auth: [] +components: + schemas: + Person: + required: + - personId + type: object + properties: + personId: + type: integer + example: 2630323 + birthYear: + type: integer + example: 1962 + deathYear: + type: integer + example: 2015 + name: + type: string + example: Justine Triet + role: + type: string + example: actress + Movie: + required: + - movieId + type: object + properties: + movieId: + type: integer + example: 17009710 + originalTitle: + type: string + example: Anatomie d'une chute + englishTitle: + type: string + example: Anatomy of a Fall + bechdelScore: + type: integer + example: 3 + description: The number of Bechdel criteria the movie meets (from 0 to 3). + bechdelTest: + type: boolean + example: true + description: Whether or not the movie passes the Bechdel test. + runtimeMinutes: + type: integer + example: 150 + year: + type: integer + example: 2023 + movieType: + type: string + example: movie + isAdult: + type: boolean + example: false + genres: + type: array + items: + type: string + example: ["Crime", "Drama", "Thriller"] + people: + type: array + items: + $ref: '#/components/schemas/Person' + + securitySchemes: + api_auth: + type: http + scheme: basic + description: Please authenticate to use the API \ No newline at end of file